@charset "utf-8";
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;
	background-color: #FFF;
}
.whessoe #container {
	width: 920px;
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-right-color: #999;
	border-left-color: #999;
	border-right: 1px;
	border-left: 1px;
} 
.whessoe #header { 
	background: #FFFFFF;
	height: 23px;
	align: right;
}
.whessoe #headerimage {
	background: #FFFFFF;
	height: 90px;
}
.whessoe #menu { 
	background: #FFFFFF;
	height: 40px;
} 


.whessoe #titlepageimage { 
height: 280px;
width: 920px;
} 
.whessoe #pageimage { 
height: 222px;
width: 920px;
margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
padding: 0;
} 

.whessoe #pageimage_none { 
height: 2px;
width: 920px;
margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
padding: 0;
} 

.whessoe #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 */
}

.whessoe #sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 300px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 10px 10px 10px 10px; /* padding keeps the content of the div away from the edges */
}
.whessoe #sidebarstory {
	width: 280px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	margin: 20px 0px 0px 0px;
	padding: 10px 10px 10px 10px; /* padding keeps the content of the div away from the edges */
	border: #4C6888 solid 1px;
}

.whessoe #sidebarstory h3{
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	color: #3389c3;
}
.whessoe #sidebarstory p{
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	color: #666;
	line-height: 22px;
} 

.whessoe #sidebarnotes {
	width: 280px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 30px 10px 10px 10px; /* padding keeps the content of the div away from the edges */
}


.whessoe #sidebarnotes p{
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	color: #666;
	line-height: 22px;
} 
.whessoe #sidebarnotes li{
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	color: #666;
	line-height: 22px;
	list-style-type: square;
} 


.whessoe #mainContent { 
	margin: 0 0px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	float: left; /* since this element is floated, a width must be given */
	width: 500px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.whessoe #mainContent h1{
	font-size: 14px;
	font-family: Verdana, Geneva, sans-serif;
	color: #009;
	line-height: 20px;
} 
.whessoe #mainContent p{
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	color: #666;
	line-height: 22px;
	padding-right: 0px;
} 
.whessoe #mainContent h2{
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	color: #666;
}
.whessoe #mainContent li{
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	color: #666;
	line-height: 22px;
	list-style-type: square;
} 

.whessoe #footer {
	background:#fff;
	border-top: 1px;
	border-top-color: #666;
} 
.whessoe #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 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	color: #666;
}

.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;
}

a:link {
	color: #009;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #3389C3;
}
a:hover {
	text-decoration: underline;
	color: #F00;
}
a:active {
	text-decoration: none;
	color: #009;
}
