/* 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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

body {
	text-align: center;
	background-color: #FFF;
	background-image: url(../assets/img_bodyBGR.jpg);
	background-position: 0px 0px;
	background-repeat: repeat-x;
	border: none;
}

#container {
	width: 950px;
	margin: auto;
}
	
	#header {
		position: relative;
		float: left;
		height: 200px;
		width: 100%;
		padding: 0px;
		margin: 0px;
		background-image: url(../assets/img_headerBGR.jpg);
		background-position: 0px 0px;
		background-repeat: no-repeat;
		border: none;
	}
	
		#logocontainer {
			position: relative;
			float: left;
			width: 205px;
			height: 200px;
			border: none;
		}
	
	#main {
		position: relative;
		float: left;
		display: inline;
		width: 100%;
		border: none;
	}
	
		#colleft {
			position: relative;
			float: left;
			display: inline;
			width: 200px;
			padding: 0px;
			margin: 0px;
		}
		
		#content {
			position: relative;
			float: left;
			display:inline;
			width: 730px;
			padding: 0px 5px 0px 5px;
			margin: 0px;
			border: none;		
		}
	#end {
		position: relative;
		float: left;
		width: 100%;
		height: 181px;
		background-image: url(../assets/img_footerBGR.jpg);
		background-position: 0px 0px;
		background-repeat: repeat-x;
	}
		#footer {
			
			position: relative;
			width: 550px;
			margin-left: auto;
			margin-right: auto;
		}
	
	
