
/* CSS Document */


#maincontainer{
	width: 780px; /*Width of main container*/
	margin: 0 auto; /*Center container on page*/
}


#topsection{
	height: 40px;
	border-bottom: 1px solid #cccccc;
}

#sectionheader{
	height: 40px;
	border-bottom: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	clear: both;
}


#contentwrapper{
	float: left;
	width: 100%;
}

#leftcolumn{
	margin-right: 520px; /*Margin for content column. Should be (RightColumnWidth + LeftColumnWidth)*/
}

#middlecolumn{
	float: left;
	width: 260px; /*Width of left column in pixel*/
	margin-left: -520px; /*Set margin to -(LeftColumnWidth + RightColumnWidth)*/
}

#rightcolumn{
	float: left;
	width: 260px; /*Width of right column in pixels*/
	margin-left: -260px; /*Set margin to -RightColumnWidth*/
}

.innertubeleft{
	margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
	margin-top: 0;
	margin-left: 0px;
}

.innertubemiddle{
	margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
	margin-top: 0;
}

.innertuberight{
	margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
	margin-top: 0;
	margin-right: 0px;
}


#topsection h1{
	margin: 0;
	padding-top: 10px;
	font-size: 16px;
	font-weight: bold;
	color: #666666;
}

#sectionheader h1{
	margin: 0;
	padding-top: 10px;
	font-size: 16px;
	font-weight: bold;
	color: #666666;
}

p {
	margin: 0;
	padding-top: 15px;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
}

#maincontainer A:link {
	text-decoration: none;
	color: #666666;
}
#maincontainer A:visited {
	text-decoration: none;
	color: #666666;
}
#maincontainer A:active {
	text-decoration: none;
	color: #666666;
}
#maincontainer A:hover {
	text-decoration: underline; 
	color: #F36F20;
}


#sitefooter{/*Instead of normal footer*/
	width: 780px;
	clear: both;/*Needs this to stay below the other divs*/
	border-top: 1px solid #cccccc;
}