@charset "UTF-8";
body  {
	color: #999999;
	font-size: 100%;
	background-color: #990000;
	font-family: Lucida Grande, Verdana,Arial, Helvetica, sans-serif;
}

.indexpage #header {
	padding: 0 px;
} 


.indexpage #header_cell {
	font-family: Lucida Grande,Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #333333;
} 

.indexpage #main_container {
	width: 52em;
	margin: 0 auto;
	border: 1px solid #000000;
	text-align: left;
} 



.topbanner{
	overflow: hidden;
	background-image: url(../images/header_img.jpg);
	height: 12em;
	background-position: -1em;
}

.indexpage #main_content {
	margin: 0 0.1em 20px 15em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	background-image: url(../images/main_bkg.png);
	word-spacing: 2px;
	padding: 0.5em 0.5em 0.5em 0.5em;
	line-height: 1.9;
	text-align: justify;
} 



.indexpage #sidebar1 {
	float: left;
	width: 13em; /* since this element is floated, a width must be given */
	padding: 0.5em 0.5em 0.5em 0.5em; /* top and bottom padding create visual space within this div */
	background-image: url(../images/main_bkg.png);
}




.indexpage #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}


.indexpage #footer {
	padding 5px 5px 5px 5px;
	text-align: center;
	font-size: 9px;
	font-family: "Lucida Grande";
	border-top: sold  #000000;	
} 
.indexpage #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 */
}







/* 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;
}
