@charset "utf-8";
@import url("front.css");
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: #FFFFFF;
	background-color: #FFFFFF;
}
A  {
	text-decoration: none;
	color: #0000FF;
}
.thrColFixHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	min-height: 540px;
	position: relative;
} 

#main-content div {
	float: left;
	width: 148px;
	margin-right: 20px;
	text-align: left;
	vertical-align: top;
	margin-top: 0px;
}

#main-content div2 {
	float: left;
	width: 300px;
	margin-right: 20px;
	text-align: left;
	vertical-align: top;
	margin-top: 0px;
}


.thrColFixHdr #header {
	padding: 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. */
	background-color: #000000;
	height: 90px;
	background-position: center;
	text-align: center;
	margin: 0px;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 900px;

} 
.thrColFixHdr #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 */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* padding keeps the content of the div away from the edges */
	background-color: #FFFFFF;
	height: 410px;
	padding: 0px;
	border-right-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	border-bottom-width: thin;
	margin-top: 20px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px; /* padding keeps the content of the div away from the edges */
	margin-top: 25px;
	height: 400px;
}
.thrColFixHdr #mainContent {
	margin: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #FFFFFF;
	float: none;
	padding: 0px;
	margin-bottom: 0px;
	margin-top: 35px;
	margin-left: 165px;
	margin-right: 220px;
	padding-bottom: 0px;
	min-width: 510px;
} 
.thrColFixHdr #footer {
	background-color: #0000FF;
	float: none;
	width: 895px;
	padding-top: 10px;
	padding-right: 0px;
	padding-left: 5px;
	height: auto;
	position:absolute;
	bottom:0px;
	left: 0px;
	padding-bottom: 10px;
	font-size: 10px;
	color: #FFFFFF;
} 
.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: 8pt;
	line-height: 0px;
}

#navbar {
	margin: 0;
	padding: 0;
	height: 25px;
	width: 900px;
	float: inherit;
	position: absolute;
	background-color: #0000FF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	text-align: center;
	font-weight: bold;
	background-position: center;
}
#navbar li {
	list-style: none;
	float: left; }
#navbar li a {
	display: block;
	padding: 3px 18px;
	background-color: #0000FF;
	color: #fff;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
}
#navbar li ul {
	display: none;
	width: 10em; /* Width to help Opera out */
	background-color: #0000FF;
}
#navbar li:hover ul, #navbar li.hover ul {
	display: block;
	position: absolute;
	margin: 0;
	padding: 0; }
#navbar li:hover li, #navbar li.hover li {
	float: none; }
#navbar li:hover li a, #navbar li.hover li a {
	background-color: #0000FF;
	border-bottom: 1px solid #fff;
	color: #FFFFFF;
}
#navbar li li a:hover {
	background-color: #000000;
}
