/**************************************************
   Below is the CSS code that is applied 
   across the site.
**************************************************/

body{
	font-family: Helvetica, Arial, sans-serif;
	font-size: small;
	color: #222222;
	line-height: 1.5;
	margin: 0;
}

h1{
	font-size: 180%;
	margin: 10px 0 10px 0;
	padding: 10px 0 10px 20px;
	color: #154053;
}

h2{
	margin: 0 0 0.75em 0;
	font-size: 160%;
	color: #007f33;
}

h3{
	margin: 0 0 0.25em 0;
	font-size: 110%;
}

a{
	color: #5299b7;
	text-decoration: none;
}

a:hover{
	color: #2e8eb7;
	text-decoration: underline;
}

p{
	margin: 0 0 1.15em 0;
}


/**************************************************
   The "column" div positions the center column that
   is used across all pages. It is a container for
   everything that appears on each page such as the
   header, first-level navigation, footer, etc.
**************************************************/

div#column{
	width: 960px;
	margin: 5px auto;
}


/**************************************************
   The "header" div positions the logo and background
   image used to color the top of each page. The 
   code is also used to position the first-level 
   navigation bar which is why they've been 
   grouped together.
   
   The "firstnav" div styles the first-level 
   navigation bar.
**************************************************/

div#header{
	width: 960px;
	margin: 0 0 5px 0;
	background: url(../images/headerbackground.png) repeat-x top left;
	overflow: auto;
	border-bottom: 1px solid #f3f3f3;
}

div#header img{
	float: left;
	border: none;
}

div#firstnav{
	background: #004d6f url(../images/firstnavbackground.png) repeat-x top left;
	overflow: auto;
	margin-bottom: 2px;
}

div#firstnav ul{
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
}

div#firstnav ul li{
	float: left;
}

div#firstnav ul li a{
	display: block;
	text-decoration: none;
	margin: 2px 0;
	padding: 1px 20px;
	float: left;
	color: #dddddd;
}

div#firstnav ul li a:visited{
	color: #dddddd;
}

div#firstnav ul li a:hover{
	color: #ffffff;
}

div#firstnav ul li a.current{
	font-weight: bold;
	color: #ffffff;
	cursor: text;
}

div#firstnav ul li a.current:hover{
	text-decoration: none;
}


/**************************************************
   The "secondnav" div positions and styles the 
   second-level navigation. 
**************************************************/

div#secondnav{
	float: left;
	width: 233px;
}

div#secondnav ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

div#secondnav ul li a{
	display: block;
	text-decoration: none;
	padding: 5px 0 5px 20px;
	margin: 0 20px 0 0;
	font-weight: bold;
	border-top: 1px solid #ebebeb;
	border-left: 1px solid #ebebeb;
	color: #888888;
}

div#secondnav ul li a:hover{
	color: #154053;
}

div#secondnav ul li a:active{
	color: #154053;
}

div#secondnav ul li a.current{
	color: #154053;
}

div#secondnav ul li a.current:hover{
	cursor: text;
}


/**************************************************
   The "content_narrow" and "content_wide" divs 
   position and style the container that holds the 
   main text and images (the meat) of each page.
**************************************************/

div#content_narrow{
	overflow: auto;
	background-color: #ffffff;
	border-top: 1px solid #ebebeb;
	border-left: 1px solid #ebebeb;
	padding: 10px 20px 0 20px;
	margin-top: 10px;
	width: 435px;
}

div#content_wide{
	overflow: auto;
	background-color: #ffffff;
	border-top: 1px solid #ebebeb;
	border-left: 1px solid #ebebeb;
	padding: 10px 0 0 20px;
	margin-top: 10px;
}


/**************************************************
   The following CSS for the content_wide div is
   used to position and style
   the text and images on the Technology 
   pages. However, they can be used anywhere the
   "content_wide" div (defined in web.css) is used.
**************************************************/

div#content_wide p{
	width: 435px;
}

div#content_wide img{
	width: 435px;
	border: 1px solid #ccc;
}

div#content_wide span.caption{
	width: 425px;
	float: left;
	color: gray;
	font-style: italic;
	font-size: 85%;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	padding: 2px 5px;
	margin-bottom: 10px;
}


/**************************************************
   The footer div positions and styles the text at 
   the very bottom of each page.
**************************************************/

div#footer{
	margin-top: 30px;
	background-color: #eee;
	float: left;
	width: 960px;
}

div#footer p.links{
	color: gray;
	float: left;
	padding: 10px 0 10px 20px;
	margin: 0;
}

div#footer p.links a{
	color: gray;
}

div#footer p.copyright{
	color: gray;
	float: right;
	padding: 10px 20px 0 300px;
	margin: 0;
}

div#footer p.tinyinfo{
	color: gray;
	float: right;
	padding: 5px 20px 0 0;
	margin: 0;
	font-size: 80%;
}

