@charset "UTF-8";
body  {
	background: #333333;
	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 */
	background-image: url(back.jpg);
}
.layered-histories #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #333333;
	text-align: left;
	margin: auto; /* the auto margins (in conjunction with a width) center the page */
	border: 5px solid #000000; /* this overrides the text-align: center on the body element. */
	top: 0px;
} 
.layered-histories #header {
	background: #333333;
	padding: 0px 12px 12px 12px;  /* 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. */
}
.layered-histories #nav { 
	padding: 5px 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#666666;
	height: 20px;
	margin: auto;
	text-align: center; 
	border: 5px solid #333333;
}
.layered-histories #mainContent {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#333333;
	text-align: center;
	padding: 0px 12px 12px 12px;
}  
.layered-histories #imageContect {
	padding: 0 10px 0 200px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	padding-left: 400px;
	background-color: #FFFFFF;
}
.layered-histories #footer { 
	padding: 0 10px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#E9E9E9; 
} 
.layered-histories #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 */
}
.style1 {
	font-size: 12px;
	color: #FFCC33;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: normal;
}
.style2 {
	font-size: 12px;
	color: #FFCC33;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: bold;
	text-align: left;
}
.style3 {
	font-size: 24px;
	color: #FFCC33;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: bold;
	text-align: left;
}
.style4 {
	font-size: 18px;
	color: #FFCC33;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: bold;
	text-align: left;
}
.style5 {
	font-size: 12px;
	color: #CCFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: bold;
	text-align: right;
}
.style6 {
font-size: 12px;
	color: #CCFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: normal;
	text-align: right;
}
.style7 {
	font-size: 10px;
	color: #CCFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: normal;
	background-color: #333333;
	text-align: center;
	padding: 5px;
	}
.style8 {
	font-size: 12px;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: normal;
	text-align: justify;
	white-space: normal;
	padding: 12px;
	word-spacing: normal;
}
.style9 {
	font-size: 12px;
	color: #CCFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: bold;
	background-color: #333333;
	text-align: left;
}
.style10 {
	font-size: 12px;
	color: #CCFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
	font-weight: bold;
	background-color: #333333;
	text-align: right;
	padding: 5px;
}
.style11 {
	font-size: 9px;
	color: ##66CCCC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: normal;
}
a:link {
	color: #66CCCC;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #66CCCC;
}
a:hover {
	text-decoration: none;
	color: #CC3300;
}
a:active {
	text-decoration: none;
	color: #CC3300;
}
a {
	font-weight: normal;
}  

/* 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;
}
