@charset "utf-8";

#container { 
	position: relative; /* adding position: relative allows you to position sidebars relative to this container */
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* With only two specified, first is the top and bottom and second is the left and right side - the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header {
	height: 60px; 
	padding: 10px 10px 0 0;
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	font-weight: bold;
	color: #666;
} 

#nav {
	position: absolute;
	top: 90px;
	left: 0;
	width: 125px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0px 10px 15px 0px; 
}

#related {
	position: absolute;
	top: 300px; /* Positioned below header and navigation */
	left: 0;
	width: 140px; 
	padding: 25px 10px 15px 0px;
}

#maincontent { 
	margin: 0 0 0 150px; 
	padding: 0px 10px 10px 10px;
	min-height: 500px;
	background-color: white;
	}

#maincontenthome { 
	margin: 0 0 0 150px; 
	padding: 0px 10px 10px 40px;
	background-image: url(images/home_image.jpg);
	background-position: top;
	background-repeat: no-repeat;
	min-height: 500px;
	}

#footer { 
	padding: 0; 
} 

.hide	{	/* Used with Skip navigation link to make it invisible in CSS-capable browsers */
	position: absolute;
	left: -9999px; }
	
body  {
	color: #003;	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	margin: 0; 
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	background-image: url(images/background.jpg);
	background-position: top;
}

body.home  {
	color: #003;	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	margin: 0; 
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	background-image: url(images/background.jpg);
	background-position: top;
}

p  {
	margin: 0 0 15px 0; 
}

p.disclaimer  {
	margin: 0 0 15px 0;
	font-size: 10px;
}

.seealso {
	font-style: italic;
	font-size: 11px;
}

p.footnote {
	font-size: 11px;
	color: #333;
}

h1  {
	font-size: 21px;
	font-weight: bold;
	margin: 0 0 5px 0;
	padding: 0;
	text-align: left; 
	color: #003;
}

h2  {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 5px 0;
	padding: 0;
	text-align: left; 
	color: #666;
}

h3  {
	font-size: 14px;
	font-weight: bold;
	margin: 0 0 5px 0;
	padding: 0;
	text-align: left; 
	color: #003;
}

h1.home  {
	font-size: 42px;
	font-weight: bold;
	margin: 0 0 5px 0;
	padding: 0;
	text-align: center; 
	color: #003;
}

h2.home  {
	font-size: 24px;
	font-style: italic;
	margin: 0 0 5px 0;
	padding: 0;
	text-align: center; 
	color: #666;
}

table {
	width: 100%;
}

table.team {
	padding: 0 0 15px 200px;
	border: none;
}

table.team tr {
	vertical-align: top;
}

table tr td {
	padding-right: 40px;
}

img	{	/* Turns off borders on all images, and treats all images as block-level elements */
	display: block;
	border: 0;
	}

img.withintext	{	
	display: block;
	border: 0;
	margin: 15px;
	}

img.team	{	
	display: block;
	border: 0;
	margin: 5px;
	border-color: #000000;
	border-style: solid;
	border-width: 2px;
	}
	
#nav ul {	
	list-style: none;
	background: white;
	border: #ccc;
	font-weight: bold;
	font-size: 10px;
	width: 125px;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #ccc;
	}

#nav ul li	{
	position: relative;
	text-align: right;
	width: 125px;
	margin: 0;
	padding: 0;
	font: 10px/12px verdana, arial, sans-serif;
	color: #003;
	background: white;
	}

#nav li ul  {	/* Controls the location of submenu items */
	position: absolute;
	left: 124px;
	top: 0;
	width: 125px;
	display: none; /* Submenus are not displayed by default */
	}

#nav li ul li  {	/* Controls the width of submenu items */
	text-align: left;
	width: 125px;
	}
	
#nav ul li a {
	display: block;	/* Makes the menu link take up the entire space designated by the list item */
	text-decoration: none;
	color: #003;
	font-weight: bold;
	background: white;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}
	
#nav li:hover ul  { 
	display: block; }


/* Fix IE. Hide from IE Mac - Workaround for IE to make list items in menu stack closely \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
		
#nav a:link	{	/* Values need to be listed in this order link, visited, hover, active */
	font-weight: bold;
	text-decoration: none;
	color: #006;
	}
 
#nav a:visited	{
	font-weight: bold;
	text-decoration: none;
	color: #006;
	}

#nav a:hover	{
	font-weight: bold;
	color: white;
	background: #006;
	border-left: 1px solid white;
	border-right: 1px solid white;
	}

#nav a:active	{
	font-weight: bold;
	text-decoration: none;
	}

#nav li.here a:link {  /* To be used for the you-are-here effect  */
	text-decoration: none;
	background: #ccc;
	}
#nav li.here a:visited {
	text-decoration: none;
	background: #ccc;
	}

#nav li.nothere a:link {  /* To be used for the you-are-here effect  */
	font-weight: bold;
	text-decoration: none;
	color: #006;
	background: white;
	}

#nav li.nothere a:visited {
	font-weight: bold;
	text-decoration: none;
	color: #006;
	background: white;
	}
	
#related ul {	
	list-style: none;
	font-weight: bold;
	font-size: 10px;
	margin: 0;
	padding: 0;
	}

#related ul li	{
	margin: 0;
	padding: 0 0 5px 0;
	font: 10px/12px verdana, arial, sans-serif;
	color: #006;
	}

#related p {	
	font-weight: bold;
	font-size: 10px;
	margin: 0;
	padding: 0;
	}
				
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #666;
	text-align: right;
	font-size: 10px;
	font-weight: normal;
}

a:link {text-decoration: underline; color: #900; background: none;}

a:visited {text-decoration: underline; color: #900; background: none;}

a:hover {text-decoration: underline; color: blue; background: #ddd;}

a:active {text-decoration: none; color: blue; background: #ddd;}
	