/* controls page layout*/
h1 { /* A lot of the static pages have this defined specifically*/
	font-family: Georgia, serif;
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 30px;
}
body {
	margin: 15px 0 0 0;
	text-align: center; /*centers the body in IE **Hack** */
	}
	
#page-container {
	width: 820px;
	background-color: rgb(14,65,118);
	border: 1px solid #000000;
	margin: auto; /*centers the body in FF*/
	text-align: left; /*sets the text alignment back to left for the rest of the page.  Needs to be done because of the IE **Hack** in BODY*/
	}

#header {
	height: 150px;
/*	background-color: black; /* ***TEMP*** */
/*	color: white; /* ***TEMP*** */
/*	text-align: center; /* ***TEMP*** */
	background-image: url(../../_img/Header/Header.jpg); 
	background-repeat: no-repeat;
	}
	
#nav {
	float:left;
	width:120px; /* **Hacked** because of IE */
	padding-top: 20px;
	padding-right: 0px;
	margin: 0 0 20px 0; /* **Hacked** because of IE.  Matches margin-top in #footer-nav and margin-bottom in * html #content*/
	padding-left: 0px;
	text-align: right;
	color: #FFFFFF; 
/*	font-family: Arial, Helvetica, Sans-serif, Tahoma;  what about text size?  Since these are links this will need to be set on the <a href> */ 
/*	background-color: green; /* ***TEMP*** */
	}

#content {
	float: left;
	width: 661px;  /* **Hacked** because of IE's problem with including the margins and padding in the total width.  Matches width int * html #content*/
/*	margin-right: 10px; */
	margin-bottom: 20px;
	padding-left: 15px;
	padding-right: 15px; 
	padding-bottom: 15px;
	background-color: white;
	min-height: 300px;
	}

/*\*/  
* html #content { 
	height: 300px;    /* **Hack** Min-Height for Internet Explorer.  http://www.cssplay.co.uk/boxes/minheight.html*/
	margin-bottom: 0; /* **Hacked** because of IE.  Matches margin-top in #footer-nav and margin bottom in #nav*/
	width: 661px;     /* 691**Hacked** because of IE's problem with including the margins and padding in the total width.  Matches width int #content*/
	}
/**/

#footer {
	clear: both;
	font-family: Tahoma, Arial, Helvetica, Sans-serif;
	text-align: center;
	font-size: 9px;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 18px;
	margin-bottom: 5px;
/*	background-color: blue; /* ***TEMP*** */ 
	}
#footer a {
	text-decoration: none;
	color: #FFFFFF;
	font-weight: normal;
}
#footer-nav {
	margin-top: 20px;
}