/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/

body, html {
background-color: #FFFFFE;
/*text-align: center; /*** Centers the design in old IE versions ***/
/*height: 100%;*/
font-family: Arial, sans-serif;
font-size: 12px;
}

.clear { clear: both; }

#mainContainer {
width: 945px;
margin: 10px;

/*margin: 0 auto; /*** Centers the design ***/
/*min-height: 100%;*/
background: white url(/examples/three-column-100-bg.gif) repeat-y; /*** This is our faux columns ***/
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
/*border: 1px solid #4b736b;*/
}
* html #mainContainer {
/*height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
padding-top: 10px;
}

/**************************
HEADER
**************************/
#header {
	
	padding-bottom: 20px;
}

/**************************
SUBHEADER
**************************/
* html #subheader {
	height: 200px;
	padding: 0;
	padding-top: 20px;
	}
#subheader {
	
	margin-top: 20px;
	padding-bottom: 20px;
	}
	
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
	padding-left: 200px;
}
* html .outer {
padding-right: 207px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.inner {
width: 745px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
padding-bottom: 30px;
}
* html .inner {
width: 100%;
}
/*** 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;
width: 725px;
margin-left: -200px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
width: 518px;
}
* html #content {
position: relative;  /*** IE needs this  ***/
}

.contentWrap{
}

/**************************
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: 200px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
}

/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 207px;
}
* html #right {
position: relative;  /*** IE needs this  ***/
margin-right: -207px; /*** IE gets this margin. ***/
}
}
/**************************
FOOTER ????
**************************/
#footer {
text-align: center;
width: 945px;
}
#footer #foot_text {
text-align: center;
font-size: small;
width: 945px;
}
