/* 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: #4279BD;
	background-image: url(../assets/img_repeatBGR.jpg);
	background-repeat: repeat-x;
}

#container {
	width: 800px;
	height: 100%;
	margin: auto;
}
	
	#header {
		position: relative;
		float: left;
		height: 25px;
		width: 100%;
		background-color: #E5EADD;
		border: none;
	}
	
	#imgcontainer {
		position: relative;
		float: left;
		width: 100%;
		height: 276px;
		border: none;
	}
		
	#maincontainer {
		position: relative;
		float: left;
		width: 100%;
	}
	
		#main {
			position: relative;
			float: left;
			width: 100%;
			background-image: url(../assets/img_main_bgr.jpg);
		}
	
	#footer {
		position: relative;
		float: left;
		clear: both;
		width: 800px;
		height: 40px;
		background-color: #4279BD;
	}
	
	#end {
		position: relative;
		float: left;
		width: 100%;
		height: 20px;
	}
