@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
}
body {
	background: #FFCC66;
	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 */
}
.twoColFixLtHdr #container {
	width: 933px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.twoColFixLtHdr #header {
	background-image: url(../images/top.png);
	background-repeat: no-repeat;
	background-position: center top;
	height: 96px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
}
.twoColFixLtHdr #navigation {
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #000;
	border-left-color: #000;
	background-color: #CC6;
}
.twoColFixLtHdr #content {
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #000;
	border-left-color: #000;
	background-color: #FFF;
	background-image: url(../images/middle.png);
	background-repeat: no-repeat;
	background-position: 800px 0px;
	padding: 20px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #666;
}
.twoColFixLtHdr #footer-top {
	background-image: url(../images/footer-top.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 10px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
}
.twoColFixLtHdr #footer-middle {
	background-image: url(../images/footer-middle.png);
	background-repeat: repeat-y;
	/*background-position: center bottom;*/
	height: 60px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
}
.twoColFixLtHdr #footer-bottom {
	background-image: url(../images/footer-bottom.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 10px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
}
.twoColFixLtHdr #bottom {
	padding-top: 15px;
}
.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: 20px;
	margin-bottom: 20px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
.left  {
	float: left;
	width: 325px;
}
.right  {
	float: right;
	width: 565px;
}
.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;
}
