@charset "utf-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
}
.twoColElsLtHdr #container { 
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-y;
	width: 1000px;
	margin: auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColElsLtHdr #header { 
	background-image: url(../images/banner.jpg);
	background-repeat: no-repeat;
	height: 208px;
} 
.twoColElsLtHdr #header h1 {
	margin: 0;
	padding: 10px 0;
}
.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 190px;
	padding-left: 10px;
}
.twoColElsLtHdr #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;
}

.twoColElsLtHdr #mainContent {
	margin: 0 30px 0 210px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
} 
.twoColElsLtHdr #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	background-image: url(../images/footer.jpg);
	height: 78px;
} 
.twoColElsLtHdr #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 */
}

/* 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;
}
#navi {
	float: left;
	padding: 0;
	width: 180px;
	margin: 0;
}
#navi ul {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 5px;
}
#navi li {
	padding-left: 10px;
	padding-top: 2px;
	padding-bottom: 2px;
	width: 170px;
}
#navi li:hover {
	background-color: #FFFFFF;
}
#navi a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
}
#navi li:hover a{
	color: #FF0000;
}