* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
color: #ffffff; 
font-family: Verdana, Arial, Tahoma, sans-serif;
height: 100%;
min-height: 100%;
background: url(/images/leftbg.gif) 0 repeat-y #ffffff;  /*** This is the left column background "faked" with an image. You can also position the image using left top repeat-y. The 100px is added to have control of where the vertically repeating starts. The background color #fff (white) will be the background color for our content area ***/
}
body {
font-size: 70%;
min-width: 760px; /* Don't work in IE */
background-color: #FFFFFF;

}
.clear { clear: both; }
#mainContainer {
min-height: 100%;
}
* 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 ***/

}
/**************************
HEADER
**************************/
#header {
background: #ffffff;
padding: 0px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 250px; /*** Same width as margin-left for the float-wrap div ***/
z-index:1;
}
.inner {
width: 100%;
padding-bottom: 227px; /*** Padding-bottom value is the same value as the total height of the footer ***/
}
/*** 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: 100%;
margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}
#content {
float: right;
margin-right: -165px; /*** Same length as .outer padding-left but with negative value ***/
width: 100%;
position: relative; /*** IE needs this  ***/
}
.contentWrap{
margin-top: 35px;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 0px;
width:480px;
z-index:1000;
}
/**************************
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;
padding: 0px;
position: relative; /*** IE needs this  ***/
margin-left: -85px;
}
/**************************
FOOTER
**************************/
#footer {
height: 227px; /*** The drawback with this solution is that the height of the footer can't have a flexible height. If you add so much content to the footer that it extends 45px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin-top: -227px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
text-align: center;
color: #fff;
background: #000099;
}
#footer p {
clear: both;
}