@charset "utf-8";
/* CSS Document */
body  {
	font: 100% 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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	font-size: 10px;
	background-color: #e1e1e1;
	margin-top: 5px;
}
.twoColFixLtHdr #container {
	width: 780px;
	margin: 0px auto;
	text-align: left;
	border-right-color: #717171;
	border-left-color: #717171;
	border-right-style: double;
	border-left-style: double;
	border-right-width: medium;
	border-left-width: medium;
	border-bottom-color: #717171;
	border-bottom-style: double;
	border-bottom-width: medium;
	background-color: #ffffff;
	border-top-color: #717171;
	border-top-style: double;
	border-top-width: medium;
} 

.twoColFixLtHdr #header {
	width: 780px;
	background-image: url(../images/header_background.gif);
	float: left;   
} 

.twoColFixLtHdr #logo {
	float: left;
    height: 100 px;
	margin-top: 0px;
	margin-left: 185px;

}
.twoColFixLtHdr #topmenu {
	text-align: center;
	float: left;
	width: 780px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-image: url(../images/red_bar.gif);
	background-repeat: no-repeat;
	margin-top: 5px;
	
}
.twoColFixLtHdr #topmenu h1 {
	font-size: 10px;
	color: #efefef;
}
.twoColFixLtHdr #topmenu a:link {
	color: #efefef;
}

.twoColFixLtHdr #topmenu a:visited {
	color: #efefef;
}
.twoColFixLtHdr #topmenu a:hover {
	text-decoration: none;
	color: #ffffff;
}
.twoColFixLtHdr #topmenu a:active {
	color: #efefef;
}

.twoColFixLtHdr #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 160px;
	margin-left: 10px;
	margin-top: 5px;
}
.twoColFixLtHdr #sidebar h1 {
	margin: 0;
	font-size: 11px;
	color: #efefef;
	background-image: url(../images/menu_heading_blue.gif);
	text-indent: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.twoColFixLtHdr #sidebar h2 {
	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: 0 0;
	font-size: 9px;
	color: #515151;
	text-indent: 15px;
}
.twoColFixLtHdr #sidebar p {
	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: 0 0;
	font-size: 9px;
	color: #000000;
	text-indent: 15px;
}
.twoColFixLtHdr #sidebar ul
{
	list-style-type:none;
	padding:0px;
	margin:0px;
}
.twoColFixLtHdr #sidebar li
{
	background-image:url(../images/menu_item.gif);
	background-repeat:no-repeat;
	padding-left:30px;
	display: block;
	border-bottom-color: #e1e1e1;
	border-bottom-style: solid;
	border-bottom-width: thin;
	padding-top: 5px;
	padding-bottom: 5px;

}

.twoColFixLtHdr #sidebar li:hover {
	background-image: url(../images/menu_item_over.gif);
}
.twoColFixLtHdr #sidebar a:link {
	color: #000;
}
.twoColFixLtHdr #sidebar a:visited {
	color: #000;
}
.twoColFixLtHdr #sidebar a:hover {
	color: #15317e;
}
.twoColFixLtHdr #sidebar a:active {
	color: #000;
}
.twoColFixLtHdr #address {
	margin-top: 10px;
	border-style: solid;
	border-color: #E0E0E0;
	border-width: 1px 1px 1px 1px;
	background-color: #efefef;
}
.twoColFixLtHdr #main {
	width: 590px;
	float: right;
	margin-top: 5px;
}
.twoColFixLtHdr #footer {
	width: 780px;
	float: left;
	text-align: center;
	color: #727272;
	background-color: #efefef;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 5px;
}
.twoColFixLtHdr #footer p {
	margin: 0;
	font-size: 9px;
}
.twoColFixLtHdr #footer a:link {
	text-decoration: none;
	color: #15317e;
}
.twoColFixLtHdr #footer a:visited {
	text-decoration: none;
	color: #15317e;
}
.twoColFixLtHdr #footer a:hover {
	text-decoration: underline;
	color: #15317e;
}
.twoColFixLtHdr #footer a:active {
	text-decoration: none;
	color: #15317e;
}
 
.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;
}

