@charset "utf-8";

body  {
	background-image:url(images/body_bg.jpg);
	background-repeat:repeat;
	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: #F1F2F3;
	font-family: Candara;
	font-size: 100%;
}
.twoColFixLtHdr #container {
	position:relative;
	z-index:3;
	width: 780px;  /* 780px 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. */
} 
#main_content_wrapper {
	padding-top: 20px;
	padding-right: 40px;
	padding-bottom: 10px;
	padding-left: 40px;
	line-height: 130%;
}
ul {
	list-style-position: outside;
	list-style-type: square;
	line-height: 120%;
}
#main_content_wrapper form {
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-color: #D4E052;
	border-bottom-color: #D4E052;
	border-left-color: #D4E052;
}
input {
	background-color: #D4DBF7;
	margin-left: 10px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
}
li {
	line-height: 180%;
}
h1 {
	display: block;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #D4E052;
	color: #D4DBF7;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	line-height: 100%;
	font-size: 120%;
}

.twoColFixLtHdr #container .quote_info {
	padding:5px;
}
.twoColFixLtHdr #header {
	background-image:url(images/header_backg.jpg);
	background-repeat:repeat-x;
	margin: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. */
	height:335px;
	display: block;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.twoColFixLtHdr #header #logo{
	z-index:3;
	position:absolute;top:0;left:260px;;
	width:136px;
	height:100px;
}
.twoColFixLtHdr #header h2 {
	z-index:2;
	position:relative;
	text-align:center;
}
h3 {
	font-size: 105%;
	font-weight: normal;
	color: #D4E052;
}
.twoColFixLtHdr #header #header_img {
	position:relative;
	margin:0 auto;
	width:780px;
}
.twoColFixLtHdr #header #header_img object {
	z-index:2;
	position:absolute;top:0px;left:0px;
	width:780;
	outline:none;
}
.twoColFixLtHdr #header #header_img form {
	z-index:2;
	position:absolute;
	top:0px;
	left:0px;
	width:780px;
}
.twoColFixLtHdr #header .menu {
	z-index:2;
	position:relative;
	color:#FFF;
	float:left;
	width:76px;
	font-size:14px;
	font-weight:bolder;
	background-image:url(images/menu_bg.png);
	background-repeat:repeat;
	display: block;
	padding-top: 30px;
	padding-right: 16px;
	padding-bottom: 30px;
	padding-left: 16px;
}
.twoColFixLtHdr #header .menu:hover {
	color:#D4E052;
	cursor:pointer;
	font-weight:bolder;
}
.twoColFixLtHdr #sidebar1 {
	z-index:3;
	position:relative;
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/*background-color: #5f717e;*/ /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
.twoColFixLtHdr #mainContent { 
	z-index:3;
	position:relative;
	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: 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#5f717e;
	text-align:center;
	font-size:12px;
} 
.twoColFixLtHdr #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 */
}
a {
	text-decoration:none;
	color:#009;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #99B5B1;
}
a:hover {
	color: #D4E052;
}
.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;
}
