@charset "UTF-8";
body  {
	font:11px Verdana,Arial;
	background-image: url(../images/bg.png);
	background-repeat: repeat-x;
	background-position: center 78px;
}
#container {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 950px;
}
 #header {	
} 
 #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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#banner {
	width: 950px;
	height: 279px;
	background-image: url(../images/banner.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	margin: 4px 0 0 0;
}
#menu-container {
	height: 47px;
	padding-left: 80px;
	margin: -13px 0 0 0;
}
#menu-container2 {
	height: 47px;
	background-image: url(/images/menu_bg.png);
	border-top-width: thin;
	border-bottom-width: thin;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #999999;
	padding-left: 1px;
}
#menu .span {
	margin-top: 5px;
}
 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 239px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 0px;
}
 #mainContent { 
	margin: 0 0 0 250px; /* 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
 #footer {
	padding: 0 10px 0 20px;
} 
 #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 */
}
.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;
}

A:link {
	color: #3c7ba7;
	text-decoration: none;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 8pt;
}

A:visited {
	color: #3c7ba7;
	text-decoration: none;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 8pt;
}

A:hover {
	color: #FF6600;
	text-decoration: underline;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 8pt;
}

A:active {
	color: #3c7ba7;
	text-decoration: none;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 8pt;
}

/* ----------------------- Classes ---------------------------------- */

.clearfloat {
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
p {
	text-align: justify;
	margin: 10px;
	padding: 10px;
}
ul.menu {list-style:none; margin:0; padding:0}
ul.menu * {margin:0; padding:0}
ul.menu a {                     /*Change Color of Text in Drop Down Menu Items*/
	display:block;
	color:#FFFFFF;
	text-decoration:none;
	height: 25px;
}
ul.menu li {            /*This is the Main Menu Item Box*/
	position:relative;
	float:left;
	margin-right:1px;
}
ul.menu ul {
	position:absolute;
	top:47px;         /*Distance between the Main Nav and the First Drop Down Box*/
	left:0;
	display:none;
	opacity:0;
	list-style:none;
}
ul.menu ul li {
	position:relative;
	border-top:none;
	margin:0;
}
ul.menu ul li a {      /*Padding Fix Here?*/
	display:block;
	width: 185px;
	background-color: #2b65a0;
	padding: 5px 3px 1px 6px;
}
ul.menu ul li a:hover {
	background: #333;
}
ul.menu ul ul {
	left:194px;     /*This is where you would adjust the flyout left or right lower the number goes left higher the number it goes right*/
	top:0px;        /*This is where you would adjust the flyout up or down*/
}
ul.menu .menulink {
	padding:15px 7px 5px;  /*Padding Fix Here?*/
	font-weight:bold;
	color: #FFFFFF;
	text-align: center;
	width: 140px;
}
ul.menu .menulink:hover, ul.menu .menuhover {
}
ul.menu .sub {
	background-image: url(../images/arrow.png);
	background-repeat: no-repeat;
	background-position: 180px 10px;
	background-color: #2b65a0;
}
ul.menu .topline {
}