@charset "UTF-8";
body  {
	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: 80%;
	background-color: #999;
	background-image: url(images_layout/BKGND.jpg);
	background-repeat: repeat-y;
	background-position: center;
}
.Titles {
	font-weight: bold;
	color: #600;
}
h1 {
	font-size: 160%;
}
h2 {
	font-size: 120%;
}
#container  {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header  {
	height: 275px;
	background-color: #000;
} 
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 177px;
	background-color: #000;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 100px;
	padding-left: 15px;
	font-size: 90%;
	line-height: 130%;
}
#sidebar2  {
	float: right; /* since this element is floated, a width must be given */
	width: 280px; /* padding keeps the content of the div away from the edges */
	background-color: #FFF;
	text-align: center;
	padding-top: 33px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	border: 1px solid #999;
}
#sidebar2 table tr td {
	padding: 1px;
}
#mainContent  {
	margin-top: 0;
	margin-right: 300px;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 22px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	font-size: 95%;
} 
#footer  {
	clear: both;
	padding-top: 10;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-color: #999;
	height: 33px;
} 
#sidebar1 table tr td {
	color: #F00;
	font-size: 90%;
}
#footer p  {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	text-align: center;
}
* {
	margin: 0px;
	padding: 0px;
}
.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;
}
h1,h2,h3,h4,h5,h6 {
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: 12px;
	font-weight: normal;
	color: #333;
}
body,td,th {
	color: #333;
	font-size: 85%;
}
#sidebar2 p {
	color: #666;
	font-size: 90%;
}
a:link {
	color: #F00;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #F00;
}
a:hover {
	text-decoration: none;
	color: #600;
}
a:active {
	text-decoration: none;
	color: #F00;
}
#sidebar1 a:link {
	color: #CCC;
}
#sidebar1 a:visited {
	color: #CCC;
}
#sidebar1 a:hover {
	color: #F00;
}
#sidebar1 a:active {
	color: #CCC;
}

