/*
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 {
	margin: 0;
	padding: 0;
	background-color: #183b12;
	font-family: Tahoma, sans-serif;
	font-size: 10pt;
}
body {
min-width: 760px;
}

.clear { clear: both; }
#mainContainer {
min-height: 300px;
background: #54543E;
}
* 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 {
	height: 122px;
	text-align: right;
	background:#183b12;
	padding: 10px
}
#nav {
	background-color: #003366;
	height: 20px;
}

#nav-text{
	text-align: right;
	font:10pt "Tahoma", sans-serif;
	color: #FFFFFF;
	padding-top: 1px;
	padding-right: 20px;
}

#nav-text a {color:#FFFFFF; text-decoration: none;}
#nav-text a:hover {color:#FFFFFF; text-decoration: underline;}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
border-left: 20px solid #003366; /*** This is the width and the color for our left column ***/
border-right: 20px solid #003366; /*** This is the width and the color for our right column ***/
border-bottom: 20px solid #003366;
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 100%; 
}
* html .inner {
/*** No need for hacking IE on this layout ***/
}
/*** 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. It blows 
my mind that all this hacking is being caused by the mighty Gecko engine! (shakes head ruefully)
***/
.float-wrap {
float: left;
width: 100%;
margin-left: -165px; /*** Same length as .outer border-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
color: #E8DFA7;
background: #54543E;
min-height: 300px;
margin-right: -165px;  /*** Same length as .outer border-left but with negative value ***/
width: 100%;
}

a {color: #E8DFA7; text-decoration: underline;}
a:hover {text-decoration: none;}

* html #content {
position: relative;
}
.contentWrap{
padding: 5px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
	float: left;
	width: 29px;
	padding: 5px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
height: 250px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
	float: right;
	width: 18px;
	padding: 5px;
	margin-right: -130px; /** This negative margin-right value is the width of the right column + the padding, in this example 130px. ***/
}
* html #right {
height: 250px;
position: relative;  /*** IE needs this  ***/
}
/**************************
FOOTER
**************************/
#footer {
	background-color: #183B12;
}

#footer-text {
	text-align: center;
	vertical-align: bottom;
	font-family: Verdana, sans-serif;
	font-size: 8pt;
	color: #E8DFA7;
}
