@charset "utf-8";
body  {
	font: 10pt Verdana, Arial, Helvetica, sans-serif;
	margin: 10px 0 10px 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFFF00;
	background-color: #FCC;
	background-image: url(../images/background.png);
	background-repeat: repeat-x;
}
#container  {
	width: 760px;
	margin: 0 auto; /* this overrides the text-align: center on the body element. */
	background-color: #000;
} 
#header  {
	background-color: #DDDDDD;
	background-image: url(../images/header.png);
	background-repeat: no-repeat;
	padding-bottom: 0px;
	height: 150px;
} 
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 160px;
	padding: 10px;
	color: #9CBB7A;
}
#sidebar2  {
	float: right; /* since this element is floated, a width must be given */
	width: 160px;
	padding: 10px;
	text-align: left;
}
.oneColFixHdr #mainContent {
	padding: 10px;
	top: 0px;
	text-align: center;
}
.oneColFixHdr #container {
	width: 760px;
	text-align: left;
}


.twoColFixHdr #mainContent {
	padding: 10px;
	top: 0px;
	margin-left: 190px;
	width: 550px;
	color: #FFF;
}
.twoColFixHdr #container {
	background-repeat: repeat-y;
	background-image: url(../images/background_3.png);
}

.thrColFixHdr #mainContent {
	padding: 10px 0 10px 0;
	top: 0px;
	margin-left: 190px;
	width: 380px;
	color: #FFF;
} 
.thrColFixHdr #container {
	background-repeat: repeat;
	background-image: url(../images/background_2.png);
}


#footer  {
	padding: 10px;
	background-color: #fde25f;
	color: #000;
} 
#footer a  {
	color: #000;
} 
#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 */
}
.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 {
	margin: 0px;
	padding: 0px;
}
h1.black {
	color: #000;
}

