@charset "UTF-8";

.twoColFixLtHdr #container {
	width: 780px;
	margin: 0 auto;
	text-align: left;
} 
.twoColFixLtHdr #header {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.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: 0 0 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 105px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
}
.twoColFixLtHdr #sidebar1 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 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #FFFFFF;
	font-size: 24px;
}

.twoColFixLtHdr #mainContent {
	margin: 0 0 0 110px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	color: #FFFFFF;
	text-align: center;
} 
.twoColFixLtHdr #footer h1 {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	color: #FFFFFF;
	font-size: 18px;
	font-weight: normal;
}
.twoColFixLtHdr #footer h2 {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: normal;
}
.twoColFixLtHdr #footer h3 {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: normal;
}


.twoColFixLtHdr #footer a,.twoColFixLtHdr #sidebar1 a {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: normal;
}
.twoColFixLtHdr #footer a:hover,.twoColFixLtHdr #sidebar1 a:hover {
	color: #FFFFFF;
	text-decoration: underline;
	font-weight: normal;
}


.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;
}
