@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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #0168B2;
}
#greyFrame {
	background-color: #999;
	width: 960px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
.oneColFixCtrHdr #container {
	width: 940px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #0168B2;
}
.oneColFixCtrHdr #header {
	background-color: #DDDDDD;
	background-image: url(images/header.png);
	height: 135px;
	width: 940px;
}

.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	clear: both;
	height: 300px;
	width: 940px;
	background-color: #1CADCF;
}
#bottomMain {
	clear: both;
	height: 166px;
	width: 940px;
	background-color: #6D8896;
	background-image: url(../Templates/bottomMain.png);
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#01AEF0;
}
.oneColFixCtrHdr #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 */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: xx-small;
	color: #FFF;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul li {
	position: relative;
	float: left;
        width: 100px;

}
li ul {
	position: absolute;
	top: 30px;
	display: none;
}
ul li a {
	display: block;
	text-decoration: none;
	line-height: 20px;
	color: #FFFFFF;
	padding: 5px;
	margin: 0 2px;
	background-color: #0168B2;
}

ul li a:hover {
	background: #00AEEF;
	background-color: #01AEF0;
}
li:hover ul, li.over ul { display: block; }
td img {display: block;}.navbar {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #FFF;
	font-size: small;
	margin-left: 120px;
	background-color: #0168B2;
}
