@charset "utf-8";
body  {
	background: #666666;
	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: #666666;
	background-image: url(bg.jpg);
	background-repeat: no-repeat;
	background-color: #f3eed7;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
}
h2 {
	font-size:medium;
	font-weight: normal;
}
h3 {
	font-size:small;
	font-weight: normal;
	margin-bottom:5px;
}
ul {
	margin-top:0px;
}

.twoColFixLt #container {
	width: 800px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 700px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.twoColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background-image: url(innerlfbg06.gif);
	background-repeat: no-repeat;
	height: 500px;
	margin: 0;
	padding: 0;
}
.twoColFixLt #mainContent {
	background-image: url(innerrtbg.gif);
	height: 500px;
	width: 560px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 10px;
} 
.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;
}

a {
	color:#000066;
	text-decoration: none;
}
a:hover{
	color:#00cc99;
	text-decoration: none;
}

