/* 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;
	background-repeat: repeat-y;
	background-attachment: scroll;
	background-position: center top;
	background-image: url(../assets/img_bodybgr.jpg);
}

#pagecontainer {
	position: relative;
	float: left;
	width: 100%;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center top;
	background-image: url(../assets/img_topbanner.jpg);
}

#container {
	width: 950px;
	height: 100%;
	margin: auto;
}
	
	#header {
		position: relative;
		float: left;
		height: 20px;
		width: 100%;
	}
	
	#topbanner {
		position: relative;
		float: left;
		height: 120px;
		width: 100%;
	}
	
	#maincontainer {
		position: relative;
		float: left;
		width: 100%;
		background-attachment: scroll;
		background-repeat: repeat-y;
		background-position: top center;
		background-image: url(../assets/img_mainbgr.gif);
	}
	
		#main {
			position: relative;
			float: left;
			width: 100%;
		}
	
	#footer {
		position: relative;
		float: left;
		width: 948px;
		height: 24px;
		background-attachment: scroll;
		background-repeat: no-repeat;
		background-position: right center;
		background-image: url(../assets/img_footerbgrR.jpg);
		border-width: 0px 1px 1px 1px;
		border-style: solid;
		border-color: #EAEBEB;
	}
