body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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 */
	color: #000000;
}
.twoColHybLtHdr #container { 
	width: 80%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColHybLtHdr #header {
	padding: 0 1px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #9D9FA2;
} 
.twoColHybLtHdr #header h1 {
	margin: 0;
	padding: 0px;
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
*/
.twoColHybLtHdr #sidebar1 {
	float: left;
	width: 11em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
}
.twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
.twoColHybLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
.copywrite {
	font-family: Tahoma, Verdana, Arial, "45 Helvetica Light", sans-serif;
	font-size: 10px;
	letter-spacing: 0.2em;
	color: #333333;
}
.MainCaption {
	font-family: Tahoma, Verdana, Arial, "45 Helvetica Light", sans-serif;
	color: #666666;
	letter-spacing: .05em;
	font-size: 12px;
}
a:link, a:visited {
	font-family: Tahoma, Verdana, Arial, "45 Helvetica Light", sans-serif;
	font-size: 11px;
	color: #330000;
	text-decoration: none;
	display: block;
}
a:hover {
}
#sidebar1 a {
	font-family: Tahoma, Verdana, Arial, "45 Helvetica Light", sans-serif;
	font-size: 11px;
	color: #660000;
	text-decoration: none;
	display: block;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	margin: 1px;
	padding: 0px;
}
#sidebar1 a:hover {
	background-color: #FFFFFF;
}
.titles {
	font-family: Tahoma, Verdana, Arial, "45 Helvetica Light", sans-serif;
	font-size: 13px;
	font-weight: lighter;
	color: #333333;
	text-decoration: none;
}
#sidebar1 a.current {
	background-color: #FFFFFF;
	cursor: default;
}
