/*
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: Verdana, Arial, Tahoma, sans-serif;
background-color: #fff; 
text-align: center; /*** Centers the design in old IE versions ***/
}
body {
font-size: 70%;
}
p {padding: 7px 0 7px 0;}

ul {padding: 0 0 12px 18px;}
li {padding: 2px;}

.clear { clear: both; }

.rev {background: #fff;}

#mainContainer {
width: 760px;
margin: 0 auto; /*** Centers the design ***/
padding: 10px;
min-height: 300px;
background: #add8e6;
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: #fff;
padding: 10px;
}
/**************************
CONTENT AND COLUMNS
**************************/
#content {
float: left;
padding: 10px;
width: 760px;
}
* html #content {
position: relative;  /*** IE needs this  ***/
}