@charset "utf-8";
body  {
	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: #666;
	font-family: Tahoma, Geneva, sans-serif;
	background-color:#46284c;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	font-size: 14px;
}
.twoColFixLtHdr #container {
	width: 900px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #fff;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	
} 

.twoColFixLtHdr #wrapper {
	background-color: #fff;
	background-image: url(../images/content-bg.gif);
	background-repeat: repeat-y;
} 

.twoColFixLtHdr #clear {
	background-color: #fff;
	background-image: url(../images/page-bg.png);
	background-repeat: repeat-y;
} 
.twoColFixLtHdr #header {
	margin: 0px;
	background-color: #fff;
} 

.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px;
	background-color: #fef3e6;
	margin-left: 0px;
}
.twoColFixLtHdr #menu {
	
	background-color: #fef3e6;
	margin-left: 40px;
	margin-right: 40px;
}


.twoColFixLtHdr #main {
background-image: url(../images/content-bg.png);
	background-repeat: repeat-y;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 260px;
	padding-top: 0px;
	padding-bottom: 0;
	width: 620px;
	min-height:400px;
} 
.twoColFixLtHdr #main-header {
	background-image: url(../images/content-top.jpg);
	background-repeat: no-repeat;
	padding-right: 0px;
	width: 724px;
	margin-left: 0px;
	background-color: #fff;
	height: 31px;
} 

.twoColFixLtHdr #main-footer {
	background-image: url(../images/content-bottom.jpg);
	background-repeat: no-repeat;
	padding-left: 0px;
	padding-right: 20px;
	width: 724px;
	margin-left: 0px;
	background-color: #fff;
	height: 20px;
} 
.twoColFixLtHdr #mainContent {
	background-image: url(../images/content-bg.jpg);
	background-repeat: repeat-y;
	padding-left: 30px;
	padding-right: 20px;
	margin-left:40px;
	min-height:400px;
	
} 
.twoColFixLtHdr #footer {
	padding-top: 0;
	padding-right: 30px;
	padding-bottom: 0;
	padding-left: 40px;
	text-align: center;
	font-size: 0.75em;
	background-color: #46284c;
	border-top-width: 15px;
	border-top-style: solid;
	border-top-color: #f6870c;	
} 

.twoColFixLtHdr #footer a{
	color:#999;
} 

.twoColFixLtHdr #footer p{
	color:#999;
} 

.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: 40px;
}
.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;
}

