@charset "UTF-8";
body  {
	font: 70%/1.4em Verdana, Arial, Helvetica, sans-serif;
	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;
	color: #000000;
}
#container  {
	width: 900px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 300px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 32px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
	text-decoration: none;
}

#sidebar1  ul li:hover {
	color: #FFFFFF;
	background-color: #2089BE;
}
#sidebar1  ul  li  ul  {
	border: 1px solid #999999;
	line-height: 1.3em;
}


#sidebar2  {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
#sidebar1 a {
	text-decoration: none;
	color: #000000;
	display: block;
	padding-top: 6px;
	padding-bottom: 6px;
}
.last {
}

.activelink {
	text-decoration: none;
	color: #000;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
	font-weight: bold;
}

.nolink {
	text-decoration: none;
	color: #fff;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
}
#container  #image  {
	height: 125px;
}
#sidebar1 a:hover {
	color: #FFFFFF;
	background-color: #0172BC;
}
#mainContent  {
	margin: 0 0px 0 350px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.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;
}
#container  #mainContent  h3  {
	padding-top: 20px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 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;
}
#container  #sidebar1  #nav1  {
	float: left;
	width: 130px;
}
#container  #sidebar1  #nav2  {
	float: right;
	width: 130px;
}
#header {
	height: 80px;
	padding: 0px;
	vertical-align: bottom;
	position: relative;
}
.img {
	bottom:0;
	padding-top: 20px;
}

#clear {
	clear:both;
	}
	
.imageLeft {
	text-align: left;
	margin-right: 10px;
}
#container  #footer  a  {
	color: #FFFFFF;
	text-decoration: none;
}
#container  #footer  a:hover  {
	color: #FFFFFF;
	text-decoration: underline;
}
ul  {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
	}
	
ul   li  {
	position: relative;
	}
	
li   ul  {
	position: absolute;
	left: 149px;
	top: 0;
	display: none;
	}

	
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	padding: 5px;
	border-bottom: 0;
	}
#container  #footer  {
	color: #FFFFFF;
	background-color: #00436E;
	height: 23px;
	padding-top: 5px;
	padding-left: 10px;
}
	
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { 
	display: block; }
	
	
	li:active ul, { 
	display: block; }
	
	.thrColFix #container #mainContent ol {
	list-style-type: disc;
	margin-left: 10px;
	padding-left: 0px;
}

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace»
	(" over", "");
   }
   }
  }
 }
}
window.onload=startList;
