/* CSS Document */

#maincontainer{
width: 983px; /*Width of main container*/
margin: 0 auto; /*Center container on page*/
background:#f0f9fd;
height:auto;

}


#contentwrapper{
float: left;
width: 100%;
background:#f0f9fd;/*body bg color here*/
height:auto;

}

#contentcolumn{
margin: 0 230px 0 200px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
background:#f0f9fd;
height:auto;

}

#leftcolumn{
float: left;
width: 200px; /*Width of left column in pixel*/
margin-left: -983px; /*Set margin to that of -(MainContainerWidth)*/
background:#f0f9fd;
height:auto;

}

#rightcolumn{
float: left;
width: 230px; /*Width of right column*/
margin-left: -230px; /*Set left margin to -(RightColumnWidth)*/
background:#f0f9fd;
height:auto;
}

#footer{
clear: left;
width: 981px;
height:70px;
background:url(../images/foot-bg.gif) repeat-x;
border-left:#FFFFFF 1px solid;
border-right:#FFFFFF 1px solid;
text-align: center;
padding-top:40px;

}


.innertube{
margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
margin-top: 0;
background:#f0f9fd;
height:auto;

}