@charset "utf-8";
/* CSS Document */
body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #D4E1F0;	
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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 */
	color: #000000;}

.twoColFixLtHdr #wrapper { 
	width: 930px;  
	background:  url(images/bg_dropshadow.jpg); background-repeat:repeat-y; 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */	
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLtHdr #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: url(images/header.jpg); background-repeat:no-repeat; 
    width: 900px;
	height: 200px;
	margin: 0 auto;	
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 280px; /* 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 */
	background: #eeeeee; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	margin: 20px 0 20px 20px;
}
.twoColFixLtHdr #topNav { 
	width: 900px; 
	height: 27px; 
	background:  #eeeeee; 
	margin: 0 auto 0 auto; /* the auto margins (in conjunction with a width) center the page */	
	text-align: left; /* this overrides the text-align: center on the body element. */	
	padding: 0;
}
.twoColFixLtHdr #mainContent { 
	margin: 10px 0 0 350px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 30px 20px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	line-height: 1.5em;
} 
.twoColFixLtHdr #footer { 
    width: 900px;
	height: 99px;	
	margin: 0 auto;
	background: #6e96c8;	
}  
.twoColFixLtHdr #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 */
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
h1 { 
    color: #6e96c8;
    font-size: 1.4em;
	line-height: 1.3em;
	margin-top: 3px; 
	margin-bottom: 6px;	
	}
h2 { 
    color: #6e96c8;
    font-size: 1.2em;
	line-height: 1em;
	margin-top: 3px; 
	margin-bottom: 3px;	
	}
h3 { 
    font-size: 1.1em; 
	color: #6e96c8;
	font-weight: bold;
	margin-bottom: 4px;
	}
h3.secondary { 
    font-size: 1.1em; 
	color: #000000;
	font-weight: bold;
	margin-bottom: 4px;
	}
h4 { 
    font-size: 1em; 
}
h5 { 
    font-size: .9em;
}
h6 { 
    font-size: .8em; 
}
#navcontainer ul
{
padding-left: 0;
margin-left: 0;
background-color: #eee;
color: #194373;
width: 100%;
height: auto;
font-family: arial, helvetica, sans-serif;
}

#navcontainer ul li { display: inline; }

#navcontainer ul li a
{
padding: 0.5em 1em;
background-color: #eee;
color: #194373;
text-decoration: none;
float: left;
border-right: 1px solid #fff;
font-size: 90%;
}
#navcontainer ul li a:hover
{
background-color: #fff;
color: #6e96c8;
font-size: 90%;
}
ul.main {
   padding-left: 0;
   margin-left: 10px;
   margin-top: 3px;
   }
ol.main {
   padding-left: 20px;
   margin-left: 10px;
   margin-top: 3px;
   }
* { padding: 0; margin: 0; } /* this universal selector prevents unwanted gaps between divs */
#footerboxleft {  
	color: #194373;  
	float: left;   
	width: 430px;
	height: 77px;		
	text-align: left;
	padding: 10px;
	 font-weight: bold;			
	}
#footerboxright { 
	color: #194373;   
	float: left;   
	width: 430px;
	height: 77px;	
	text-align: right;
	padding: 10px;
	font-size: .8em;
	 font-weight: bold;			
	}
a.ftr:link {font-size: .85em; color: #194373; text-decoration: none; font-weight: bold;}
a.ftr:hover {font-size: .85em; color: #ffffff; text-decoration: none; font-weight: bold; }
a.ftr:active {font-size: .85em; color: #194373; text-decoration: none; font-weight: bold; }
a.ftr:visited {font-size: .85em; color: #194373; text-decoration: none; font-weight: bold; }

a.hdr:link {font-size: .85em; color: #194373; text-decoration: none; font-weight: bold;}
a.hdr:hover {font-size: .85em; color: #ffffff; text-decoration: none; font-weight: bold; }
a.hdr:active {font-size: .85em; color: #194373; text-decoration: none; font-weight: bold; }
a.hdr:visited {font-size: .85em; color: #194373; text-decoration: none; font-weight: bold; }

.copyright {color: #194373; font-size: .7em; margin-top: 10px; font-weight: bold;}
#logo {
	width:200px;
	height:200px;
	top: 0;
	float: left;	 
}
#topright {
	width:175px;
	height:75px;		
	padding-top: 20px;
	float: right;
	padding-right: 10px;	 
}
.licensetable {
      padding: 20px;	  	 
   }
.license {
    width: 400px;
	border: 1px solid #cccccc;	  
	}
.licensefee {
    width: 50px;
	border: 1px solid #cccccc;	  
	}
.highlightyellow {
    background-color: #FFFFC0;
	}
.highlightblue {
    background-color: #BEDAF4;
	}
.creditsyellow {
    width: 255px;
	padding: 10px;
	background-color: #FFFFC0;
	}
.creditsblue {
    width: 255px;
	padding: 10px;
	background-color: #BEDAF4;
	}