@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	border: 0;
	}
	
body  {
	font: 75% Verdana, Arial, sans-serif;
	line-height: 3ex;
	background: url(images/background2.gif) repeat #fff;
	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: #666;
}

#container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	/* border: 1px solid #ddd; */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 


.header { 
	background: url(images/woolachii.gif) top left no-repeat;
	padding: 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. It also squares the background image nicely */
	height: 200px;
	/* border-bottom: solid 1px #ddd; */
} 

.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 */
	display: none; 
}

.navi {
	height: 40px;
	margin-top: 160px;
	font-size: 133%;
	color: #f00;
	display: block;
	float: right;
	}
	
.navi ul {
	display: block;
	height: 40px;
	}
	
.header li {
	display: block;
	height: 40px;
	float: left;
	list-style: none;
	}

.header a {
	text-decoration: none;
	padding: 1em;
	height: 40px;
	}
	
.header a:link {
	color: #f00;
	}
	
.header a:visited {
	color: #f00;
	}

.header a:hover {
	color: #fff;
	background: #f00;
	}
	
.header a:active {
	color: #000;
	background: #ddd;
	}

a:link {
	color: #f00;
	}

a:visited {
	color: #666;
	}

a:hover {
	color: #f0f;
	}
	
a:active {
	color: #ff0;
	}

#mainContent {
    width: 488px;
	margin: 0px 236px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/* border-left: solid 1px #ddd;
	border-right: solid 1px #ddd; */
	/* the full width of main content + padding + borders = 488 + 20 + 20 + = 528, + 2 margins @ 236 ea = 1000px */
	}

h1, h2, h3 {
	margin-bottom: 1ex;
	line-height: normal;
	}

/* h2, h3 {
	margin-top: 1.5ex;
	}
*/

h1 {
	font-size: 220%;
	width: 488px;
	border-bottom: 1px solid #ddd;
	}
	
h2 	{
	font-size: 150%
	}
	
h3	{
	font-size: 120%
	}
	
.topheader {
	margin-top: 0;
	}
	
p { 
	margin-bottom: 2ex;
	}
	
.caption {
	font-size: 85%;
	line-height: normal;
	}
	
#sidebar1, #sidebar2 {
	position: absolute;
	top: 282px;
	width: 196px; 
	padding: 0px 20px;
	}
 
 #sidebar2 {
	margin-left: 764px;
	padding: 0px 20px;
	}

 #sidebar1 h2, #sidebar2 h2 {
 	width: 192px;
	padding: 4px;
	background: #666;
	color: #fff;
	} 
 /*
 #sidebar1 h3, #sidebar2 h3 {
 	width: 192px;
	padding: 0px 4px;
	background: #f00;
	color: #fff;
	}
	*/
 .sidelink {
 	text-align: right;
	margin-top: .75ex;
	margin-bottom: 4ex;
	font-weight: bold;
	}
	
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff;
	border-top: solid 1px #ccc; 
	border-bottom: solid 1px #ccc;
} 

#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 */
	color: #666;
	text-align:center;
}

.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: 20px;
}

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

.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;
}
