/* CSS Document */

body{

background: #ffffff url(background_img.jpg) repeat-x;
}

.innertube{
	margin: 0px; /*Margins for inner DIV inside each column (to provide padding)*/

}

.innertube p {
	text-align: left;
	color:#000000;
}



.innertube li {
	padding-bottom: 20px;
	list-style: none;
} 

.innertube a {
	text-decoration: none;
	color:#ffffff;
	font-size: 16px;
	text-transform:uppercase;
	font-weight: bold;
	display: inline;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	margin: 0px;
	background:#ffffff;
	border: 0px solid #ffffff;	
}

#maincontainer{
	width: 840px; /*Width of main container*/
	margin: 0 auto; /*Center container on page*/
}

#topsection{
	background: #ffffff;
	height: ; /*Height of top section*/
	text-align: center;
}

#contentwrapper{
	float: left;
	width: 100%;
}

#contentcolumn{
	margin: 0 180px 0 180px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
	text-align: center;

}

#leftcolumn{
	float: left;
	width: 180px; /*Width of left column in pixel*/
	margin-left: -840px; /*Set margin to that of -(MainContainerWidth)*/
	background: #ffffff;
	text-align: left;

}

#rightcolumn{
	float: left;
	width: 180px; /*Width of right column*/
	margin-left: -180px; /*Set left margin to -(RightColumnWidth)*/
	background: #ffffff;

}

#footer{
	clear: left;
	width: 100%;
	background: #990000 repeat-x;
	color: #FFF;
	text-align: center;
	padding: 4px 0;
}


