@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #631204;
	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;
}
.twoColFixLtHdr #container {
	width: 1020px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/bdy_bg.gif);
	background-repeat: repeat-y;
	padding-left: 10px;
	background-color: #641204;
} 
.twoColFixLtHdr #header {
	width: 955px;
	height: 320px;
	background-image: url(../images/elb_head.jpg);
	padding-top: 20px;
	padding-left: 50px;
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 350px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 15px 0px;
	top: -100px;
	position: relative;
	height: 600px;
	background-image: url(../images/nav_bg.jpg);
	background-repeat: no-repeat;
}
.twoColFixLtHdr #sidebar_menu {
	height: 250px;
	padding-left: 55px;
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	color: #ffffff;
}
.twoColFixLtHdr #sidebar_menu a {
	text-decoration: none;
	color: #ffffff;
}
.twoColFixLtHdr #sub_sidebar {
	height: 350px;
	margin-top: 16px;
	background-image: url(../images/sub_side_bg.gif);
	padding-left: 40px;
	padding-top: 30px;
	font-family: Arial, Helvetica, sans-serif;
	color: #d9cebb;
	font-size: 18px;
}
.twoColFixLtHdr #mainContent {
	float: right;
	width: 630px;
	margin-top: 1px;
	height: 520px;
	background-image: url(../images/main_bg.gif);
	padding-top: 40px;
	padding-left: 40px;
	color: #d9cebb;
	font-size: 18px;
} 
.twoColFixLtHdr #mainContent a {
	text-decoration: none;
	color: #f19036;
}
.twoColFixLtHdr #wel_message {
	padding-top: 20px;

}
.twoColFixLtHdr #end_main {
	background-image: url(../images/end_main.jpg);
	background-repeat: no-repeat;
	float: left;
	width: 1004px;
	position: relative;
	top: -70px;
}
.twoColFixLtHdr #footer {
	padding: 0 10px 0px 20px;
	position: relative;
	top: -70px;
	width: 973px;
	color: #d9cebb;
	font-size: 10px;
} 
.twoColFixLtHdr #footer table {
	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 */
}
.twoColFixLtHdr #footer a {
	text-decoration: none;
	
}

ul.menu {
	display: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
	position:absolute;
	left: 200px;
	top: 20px;
}

ul.menu li {
	font: 12px arial, helvetica, sans-serif;
	padding-left: 10px;
}

a.nav_menu, li a {
	text-decoration: none;
	color: #060;
}

a.nav_menu {
	font-size: 24px;
	font-weight: bold;
}

li a:hover {
	background-color: #060;
	color: white;
}
div.mess {
	visibility:hidden;
	padding:5px;
}
.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;
}
