/* CSS :: TEMPLATE */ 

/* IMPORTS */
@import url("nav.css");
@import url("template-content.css");

/* TEMPLATE */

/* !!! DEBUG PURPOSES ONLY !!!
div {border: solid 1px #f00;} 
*/

html,body {
	height: 100%;
	padding: 0px;
	margin: 0px;
}

body {
	text-align: center;
	background-color: #FFF;
}

#topbar {
	width: 100%;
	height: 20px;
	background-color: #EA321A;
	padding: 2px 0px 0px 0px;
}

#container {
	width: 950px;
	height: 100%;
	margin: auto;
}
	
	#navtop {
		position: relative;
		float: left;
		padding: 0px;
		height: 32px;
		width: 100%;
	}
	
	#topbanner {
		position: relative;
		float: left;
		display: inline;
		width: 950px;
		height: 240px;
		background-color: #EA321A;
		background-attachment: scroll;
		background-position: top right;
		background-repeat: no-repeat;
		background-image: url(../assets/img_topbanner.jpg);
		border-bottom: 1px solid #FFF;
	}
		
	#topbanner.collapse {
		height: 120px;
		background-image: url(../assets/img_topbanner_red.jpg);
	}	
	
	#main {
		position: relative;
		float: left;
		width: 100%;
		padding-bottom:15px;
	}
	
		#colleft {
			position: relative;
			float: left;
			display: inline;
			width: 230px;
		}
		
		#maincontent {
			position: relative;
			float: left;
			width: 720px;
			padding: 25px 0px 0px 0px;			
		}

	#footer {
		position: relative;
		float: left;
		display: inline;
		width: 100%;
		margin: 0px;
		padding: 0px;
	}
	
		#footer_top {
			position: relative;
			float: left;
			display: inline;
			width: 100%;
			height: 88px;
			border-top: 1px solid #D9D9D9;
			border-bottom: 4px solid #666;
			margin: 0px;
			padding: 0px;
		}
		
		#footer_bottom {
			position: relative;
			float: left;
			display: inline;
			width: 100%;
		}


