*, html {
	padding:0;
	margin:0;
}

body {
	font-family: lucida-console, arial, sans-serif;
	font-size: 76%;
	/*width: 750px;*/
	/*margin: 0 auto;*/
	/*margin-top: 30px;*/
	background-color: #0571b8;
}

h1 {
	font-family: georgia, serif; 
	color: #333399;
	margin-left: 10px;
	margin-bottom: 15px;
}

h2,h3 {
	font-family: georgia, serif; 
	color: #3399cc;
	margin-left: 10px;
}

p {
	color: #000033; 
	margin-left: 10px;
}

table {
	font-family: georgia;
	font-size: 18px;
	color: #3366CC;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

ul.horizontal_list {
	margin: 0 auto;
}

ul.horizontal_list li {
	width: 750px;
	clear: both;
	/*float: left;*/
	list-style: none;
	padding: 3px 10px 3px 10px;
	margin: 5px;
	color: #fff;	
}

/* ul is an unordered list */

/* ol is an ordered list  - this style puts a number in front of the list item */

ol {
	list-style: decimal;
	margin-left: 30px;
	margin-top: 15px;
	margin-bottom: 15px;
}


li,th,td {
	font-size: 100%;
}


/* styles for the 'a' tag */

/*a:link    {color:#3366cc}*/

a {
	text-decoration: none;
	font-weight: bold;
}

a.menu {
	text-decoration: none;
	font-weight: normal;
}

a:hover {
	text-decoration: underline;
	font-weight: bold;
}

a:hover.menu {
	text-decoration: underline;
	font-weight: normal;
}

a:visited {color:navy}
/*a:active  {color:#3366cc}*/
/*a:hover   {color:#3366cc}*/

/* from here down is the code I pasted from a site that had the layout format that I wanted */


/* ----- OUTTER-WRAP ----- */
/* This should keep the page centred when width is removed from the body tag*/

#outter-wrap {
	margin: 0 auto;
	width: 750px;
}

/* ----- HEADER ----- */



#header {
	width: 750px;
	height: 120px;
	background-color: #fff;
	border: 2px solid navy; /* john */
	margin: 30px 0 0 0;
}



/* FAUX LAYOUT WRAPPER */


/* 
This div is optional: When you delete it the navigation bar and the content block won't have the same size when one of them has a larger height then the other. I recommend you to leave this faux layout wrapper here.

IMPORTANT: In order to make this work you have to download http://csseasy.com/layouts/fixed/background_3.gif (copy past in your address bar) and place it in the same folder as this html file. DON'T HOTLINK to this file.
*/


#wrapper {
	width: 750px;
	background: url(background_3.gif) repeat-y; /* WARNING: IF YOU CHANGE THE COLORS OF THE LAYOUT YOU HAVE TO CHANGE THIS IMAGE! */
	overflow: auto; /* USE FIREFOX GUYS! WE ONLY NEED THIS LINE BECAUSE INTERNET EXPLODER ISN'T READING CODE PROPERLY */
	margin-top: 10px;
}


/* ----- NAVIGATION ----- */

#navigation {
	width: 150px;
	min-height: 310px; /* for modern browsers */
	height:auto !important; /* for modern browsers */
	height: 310px; /* for IE5.x and IE6 */
	background-color: #fff;
	border: 2px solid navy;
	padding: 10px;
	float: left;
	background-color: #48c4eb;
	font-size: 1.1em;
}

#navigation a {
	color: #fff;
	font-weight: bold;
}

#navigation img {
	margin-right: 3px;
}


/* ----- MAIN CONTENT ----- */

#content { 
	margin: 0px;
	float: right;
	border: 2px solid navy;
	width: 550px; /* JOHN CHANGED FROM 590 TO 580 */
	min-height: 350px; /* for modern browsers */
	height: auto !important; /* for modern browsers */
	height: 350px; /* for IE5.x and IE6 */
	background-color: #fff;
	padding: 5px 5px 30px 5px;
}

#content em {
	font-style: normal;
	font-weight: bold;
}

#content img {
	margin-left: 10px;
}

#content img.center {
	margin-bottom: 10px;
	text-align: center;
}

#content p, #content p.center {
	margin-bottom: 15px;
	line-height: 1.5em;
	padding-right: 10px;	
}

#content p.center {
	text-align: center;
}

#content p.author {
	color: #3399cc;
}

#content ul {
	margin-left: 30px;
	margin-bottom: 10px;
}

#content li {
	margin-bottom: 3px;
}

/* ----- CENTER ----- */

/*used in content.html to center the content*/


#center {
	text-align: center;
}

#center img {
	margin-bottom: 20px;
}

/* ----- FOOTER ----- */



#footer { 
	margin-top: 10px;
	padding-bottom: 50px;
	width: 750px;
	height: 100px;
	background-color: #0571b8;
}









