body  {
	text-align: justify; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #006;
	background-color: #ebebeb;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	margin: 0;
	padding: 0px;
}
.twoColHybLtHdr #container {
	text-align: justify;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	padding: 0px;
	background-color: #FFF;
} 
.twoColHybLtHdr #header {
	background-color: #FFF;
	height:120px;
	margin: 0;
	padding: 0;
} 
.twoColHybLtHdr #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 */
} 

/* 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 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 0px;
	text-align: justify;
	border: thin none #999;
	margin: 0;
	text-indent: 2px;
} 
.twoColHybLtHdr #footer {
	padding: 0 10px;
	background-color: #EBEBEB;
} 
.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 */
	padding: 10px 0;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

/* 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-top: 8px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 10px;
}
.fltrtTopMargin0 {
	float: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 10px;
}
.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: small;
	line-height: normal;
}
#all {
	width: 800px;
	margin-right: auto;
	margin-left: auto;
}
h1 {
	font-size: medium;
	font-weight: bold;
	font-variant: normal;
	color: #333;
	text-align: left;
	background-color: #E6E6E6;
	margin: 2px;
}
h2 {
	font-size: small;
	font-weight: bold;
	color: #006;
	text-align: left;
}
h3 {
	font-size: small;
	font-style: italic;
	color: #333;
	text-align: center;
	background-color: #CCC;
}
h5 {
	font-size: small;
	text-decoration: underline;
	font-weight: normal;
}
.horizontalbox{ /*  */
	margin-bottom: 5px;
	float: left;
	clear: none;
	width: 100%;
}

.horizontalboxleft{ /*  */
	float: left;
	margin-bottom: 5px;
}
.horizontalboxright{ /*  */
	float: right;
	margin-bottom: 5px;
	width: 300px;
}
.imgframe {
	margin: 5px;
	float: right;
}
