@charset "UTF-8";
body {
	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: #959595;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #333333;
	background-repeat: no-repeat;
}
.oneColLiqCtrHdr #container {
	width: 742px;  /* this will create a container 80% of the browser width */
	background: #333333;
	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. */
}
.oneColLiqCtrHdr #header {
	padding: 0 0 103 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #333333  ;
	background-image: url(images/head_bg.gif);
	
	
}
.oneColLiqCtrHdr #header h1 {
	margin-top:0px; /* 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: 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColLiqCtrHdr #mainContent {
	padding:10px ;
	background-color: #959595;
} 
.oneColLiqCtrHdr #footer {
	padding: 0;
	background-color: #333333;
	background-image: url(images/foot_bg.gif);
	background-repeat: no-repeat;
	text-align:center;
	height:17px;
	font-size:9px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	vertical-align:top;
	padding-top:2px;
		color:#000000;

} 
.oneColLiqCtrHdr #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:#000000;
}
	h1 {font-size:16px;
color:#FFFFFF;}

h2 {font-size:13px;
color:#FFFFFF;}
	
	p {font-size:11px;
	font-family:Arial, Helvetica, sans-serif;
	color:#FFFFFF;}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#nav a {
	font-weight: bold;
	color: #333333;
	font-size:12px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	vertical-align:text-top;
	
}

#nav a {
	text-decoration: none;
}



#nav li a:hover {
   width: 122px;
   color:#CC6600

}

li {
	float: left;
	position: relative;
	width: 121px;
	text-align: center;
	cursor: default;
	border-right: 1pt solid #666666 ;
	height:15px;
	margin-top:-2px;
	
}

li#last {
	float: left;
	position: relative;
	width: 121px;
	text-align: center;
	cursor: default;
	height:15px;
	margin-top:-2px;
	border-right: 0pt solid #666666 ;
	
}

li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	font-weight: normal;
	background-color: #fff;
	border-right: solid 1px #666666;
    border-left: solid 1px #666666;
   	border-bottom: solid 1px #666666;
}

li>ul {
	top: auto;
	left: auto;
}
li a:hover{
color:#CC6600;
width:122px;
}

li:hover ul, li.over ul {
	display: block;
	background-color:#FF6600
}
