@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: #444;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-weight: 100;
}
a {
	color: #366;
	text-decoration: underline;
}
a:hover {
	color: #033;
	text-decoration: underline;
}
 #container {
	width: 968px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
	border:#999 solid 1px;
} 
 #header {
	padding:0px; /* 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-image: url(../test/images/banner.gif);
	background-repeat: no-repeat;
	height: 157px;
} 
 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 265px;
	padding-top: 35px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
h1 {
	font-size: 180%;
	line-height: 100%;
	color: #366;
	text-decoration: none;
	font-weight: normal;
}
.light{
	color: #8aa;
	
}
h2 {
	font-size: 170%;
	line-height: 100%;
	color: #366;
	text-decoration: none;
	font-weight: normal;
}
h3 {
	font-size: 130%;
	line-height: 120%;
	color: #366;
	text-decoration: none;
	font-weight: normal;
}
.positions{
	font-size:110%;
	line-height:100%;
	color:#333;	
}
#sidebar1 ul {
	padding: 0px;
	margin: 0px;
	color: #366;
}
.main li  {
	width: 255px;
	margin: 10px 0px 0px 0px;
	list-style-type: none;
	height: 26px;
	text-align: right;
	background-color: #CCC;
	padding-right: 10px;
	float: right;
	background-image: url(../test/images/nav_bkgd.jpg);
	background-repeat: repeat-y;
	font-size: 85%;
	line-height: 170%;
}
.main   li   a {
	height:26px;
	color: #366;
	text-decoration: none;
	}
.main li :hover {
	color: #033;
	display:block;
	height:26px;
	background-image: url(../test/images/nav_ro.jpg);
	background-repeat: repeat-y;
	}
	/*subnavs*/
.offset li  {
	width: 255px;
	list-style-type: none;
	height: 22px;
	text-align: right;
	float: right;
	background-image: url(../test/images/nav_light.gif);
	background-repeat: repeat-y;
	font-size: 75%;
	line-height: 170%;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-right: 10px;
}
.offset   li   a {
	height:22px;
	color: #366;
	display:block;
	text-decoration: none;
	}
.offset li :hover {
	color: #033;
	display:block;
	height:22px;
	background-image: url(../test/images/nav_ro.jpg);
	background-repeat: repeat-y;
	}
.address{
	display:block;
	color:#666;
	font-size:90%;
	line-height:130%;
	padding-left: 20px;
	padding-top:30px;
	padding-bottom:50px;
	float: left;
	width: 220px;
}
 #mainContent {
	margin-top: 40px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 265px;
	padding-top: 0;
	padding-right: 100px;
	padding-bottom: 0;
	padding-left: 30px;
	font-size: 85%;
	line-height: 140%;
	font-weight: lighter;
} 
 #footer {
	font-size: 70%;
	color: #FFF;
	background-color: #54878F;
	height: 27px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	line-height: 70%;
	margin-bottom: 23px;
	margin-top: 50px;
} 
 #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 */
	text-align: center;
}
#footer a {
	color: #FFF;
	text-decoration: underline;
}
#footer a:hover {
	color: #366;
	text-decoration: underline;
}
.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;
}
.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;
}

