/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
color: #000; 
font-family: Georgia, "Times New Roman", Times, serif;
background-color: #FDE6D0; 
text-align: center; /*** Centers the design in old IE versions ***/
}
body {
font-size: 85%;
}
.small_txt {
	font-size: 1em;
	font-style: oblique;
}
p {padding: 8px 0 8px 0;}

a {
color: #006633;
}
a:hover{
color: #339967;
text-decoration: none;
}

h1, h2, h3 {
font-weight: bold;
padding-bottom: 5px;
}
h1 {
	font-size: 1.75em;
	font-style: oblique;
	text-align: center;
}
blockquote {
	background-color: #FDDFC1;
	display: block;
	border: thin inset #339967;
	margin-top: 10px;
	margin-bottom: 10px;
}

h2 {
	font-size: 1.4em;
	text-align: center;
}
td {
	font-size: small;
}
#herald {
	border: thin solid #339967;
	display: block;
	padding: 5px;
}


h3 {
font-size: 1.3em;
}
h1 a, #header h2{
color: #FDE6D0;
}
.clear { clear: both; }
#mainContainer {
width: 760px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
	background: #339967 url(../images/rounded_top.gif) no-repeat top;
	padding: 0px;
	min-height: 165px;
	width: 760px;
	color: #FDE6D0;
	text-align: center;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
margin-top: 50px; /*** We need to add some space for our top menu ***/
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
/*** No need to do anything with a one column solution ***/
}
* html .inner {
/***  And therefor no need for hacking IE either ***/
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
float: left;

}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
	float: left;
	width: 740px;
	background: #fecb99;
	margin: 0px;
	padding: 10px;
}
#mainContainer .float-wrap #content .contentWrap img {
	padding: 10px;
}

* html #content {
position: relative;  /*** IE needs this  ***/
}
.contentWrap {
padding: 10px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
FOOTER
**************************/
#footer {
	width: 760px;
	margin: 0 auto;
	text-align: center;
	background-color: #339967;
	color: #FDE6D0;
	padding: 0px;
}
#mainContainer #footer p {
}

.bold_italic {font-size: 1em; font-style: oblique; font-weight: bold; }
#footer a {
	color: #FDE6D0;
}
