@charset "utf-8";
body  {
	background: #ffffff;
	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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
}
.tbl_label {
	font-size: 10px;
	text-decoration: none;
}

.biol #container {
	width: 1023px;  /* this will create a container 80% of the browser width */
	background: #f0f6fc;
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: groove;
	border-right-style: groove;
	border-bottom-style: groove;
	border-left-style: groove;
	height: 600px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.body_txt_blue {
	font-size: 12px;
	color: #000066;
}

.biol #header {
	height: 149px;
	width: 1023px;
	background-color: #ffffff;
	background-image: url(../../images/header.png);
	background-repeat: no-repeat;
} 

.biol #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 */
}


.biol #sidebar1 {
	float: left;
	width: 180px; /* since this element is floated, a width must be given */
	background: #ebebeb; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
	height: 500px;
	font-size: 12px;
	position: relative;
	margin-top: 30px;
	margin-bottom: 20px;
	border-top: 1px solid #666666;
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;
	border-left: 1px none #666666;
}

a:link{
	color:#333333;
	text-decoration: none;
}
a:visited{
color:#333333;
text-decoration:none;
}
a:hover {
color:#FF0000;
text-decoration:none;
}
a:active{
color:#ff0000;
}

.biol #mainContent {
	margin: 0px 10px 0px 15px;
	width: 700px;
	padding-top: 30px;
	padding-left: 30px;
	padding-right: 30px;
	float: left;
	clear: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	left: 20px;
	position: relative;
} 
/*
.biol #footer {
	position: absolute;
   bottom: 0;
   left:0;
   background-color: #cccccc;
   width: 100%;
   text-align: center;
} 
   
.biol #footer p {
	margin: 0; 
	padding: 10px 0;
}
*/

.body_txt {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	width: 550px;
	margin-left: 20px;
}



/* Miscellaneous classes for reuse */
.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;
}

.tbl_border {
	background-color: #919999;
}

.tbl_white {
	background-color: #FFFFFF;
}


.tbl_gray {
	background-color: #efefef;
}

.tbl_gray_wborder {
	background-color: #efefef;
	padding: 15px;
}

.tbl_drk_gray_wborder {
	background-color: #C5C5C5;
	padding: 15px;
}

.tbl_td_info {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	line-height: 9px;
	font-weight: normal;
	color: #FFFFFF;
	background-color: #999999;
	word-spacing: normal;
	text-align: left;
	padding: 3px;
}
.tbl_results {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	text-decoration: none;
	background-color: #cccccc;
	border: 1px solid #999999;
}
.tbl_record_field {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: right;
	padding: 2px;
}
.tbl_record_content {
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	text-align: left;
}

.tbl_header {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #adbdcd;
	text-align: center;
	padding: 8px;
	color: #FFFFFF;
}
.tbl_td_error {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #FF0000;
	line-height: 9px;
}

#welcome {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 50px;
	padding: 20px;
	font-size: 16px;
}

#footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	background-image: url(../../images/footer.png);
	background-repeat: repeat;
	float: left;
	height: 37px;
	width: 1024px;
}

#footer p {
	margin:0px;
	text-align: center;
	padding-top: 16px;
	color: #FF0000;

}
#footer a:link{
	color:#00ff00;
	text-decoration: none;
}
#footer a:visited{
	color:#00ff00;
	text-decoration: none;
}
#footer a:hover{
	color:#ffffff;
	text-decoration: none;
}
#footer a:active{
	color:#ffffff;
	text-decoration: none;
}
