@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #0b102d;
	background-image: url(../_images/bannerbg.jpg);
	background-repeat: repeat-x;
	padding-bottom: 10px;
	background-position: top center;
}


.twoColHybLtHdr #container {
	width: 984px;
	background: #FFFFFF;
	text-align: left;
	padding-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
	height: inherit;
	padding-top: 0px;
	margin-top: 0px;
} 
.twoColHybLtHdr #header {
	;
	height: 230px;
	background-color: #792062;
	width: 984px;
	padding-bottom: 15px;
} 
.twoColHybLtHdr #header h1 {
	margin: 0; 
	padding: 0px 0; 
	font-size: 2.0em;
}


.twoColHybLtHdr #sidebar1 {
	float: left;
	width: 160px;
	padding: 10px 0 0 10px;
	margin-top: 0px;
	background: #FFF;
	background-repeat: no-repeat;
}
.twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #sidebar1 p {
	margin-left: 1px; 
	margin-right: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000;
	line-height: 1.2;
}

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybLtHdr #mainContent {
	margin: 30px 5px 0 180px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	color: #000;
	padding-top: 10px;
	background-color: #FFF;
	height: inherit;
	background-repeat: no-repeat;
	border-left-style: solid;
	border-left-width: thin;
} 
a:link {
	color: #792062;
}
a:visited {
	color: #792062;
}
a:hover {
	color: #A0A0A4;
}
a:active {
	color: #792062;
}

.twoColHybLtHdr #container #mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin: 0em;
	padding-left: 10px;
	padding-right: 20px;
}
.twoColHybLtHdr #container #mainContent h1 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 16pt;
	padding-left: 10px;



















	margin: 1em 0px 0
.em;
	color: #792062;
}
.twoColHybLtHdr #container #mainContent h2 {
	font-family: Tahoma, Geneva, sans-serif;


















	font-size: 1
.em;
	font-style: normal;
	color: #792062;
	padding-left: 10px;
	font-size: 14pt;
}
.twoColHybLtHdr #container #mainContent h3{
	font-style: strong;
	color: #792062;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
	margin: 0px;
	padding-left: 10px;
}
.twoColHybLtHdr #container #mainContent ul {
	font-size: 12px;
	line-height: 16px;
	padding-right: 15px;
}
.twoColHybLtHdr #container #mainContent ol {
	font-size: 12px;
	line-height: 16px;
	padding-right: 15px;
}
.twoColHybLtHdr #footer {
	background:#000;
	width: 984px;
	font: Arial;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	clear: both;
	background-image: url(../_images/footer.jpg);
} 
.twoColHybLtHdr #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 */
	font-size: 11px;
}
.twoColHybLtHdr #footer p {
	color: #000;
}




/* 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;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
