/* CSS :: TEMPLATE */ 

/* IMPORTS */
@import url("nav-horizontal.css");
@import url("template-content.css");

/* TEMPLATE */
html,body {
	height: 100%;
	padding: 0px;
	margin: 0px;
}

body {
	background-color: #F2C024;
	background-attachment: scroll;
	background-position: top center;
	background-repeat: no-repeat;
	background-image: url(../assets/img_BGR.jpg);
}

body.clear {
	background-image: url(../assets/img_BGR_clear.jpg);
}

#container {
	width: 950px;
	height: 100%;
	margin: auto;
}
	
	#header {
		position: relative;
		float: left;
		clear: both;
		width: 925px;
		padding: 0 0 0 25px;
		margin: 0 0 15px 0;
		height: 115px;
	}
	
	#maincontainer {
		position: relative;
		float: left;
		clear: both;
		width: 925px;
		padding: 0 0 0 25px;
		margin: 0;
	}
	
		#left {
			position: relative;
			float: left;
			clear: left;
			width: 475px;
			margin: 0;
			padding: 0;
		}
		
		#left.detail {
			position: relative;
			float: left;
			clear: left;
			width: 475px;
			margin: 0;
			padding: 0;
			color:#666666;
			font-size:12px;
			line-height:18px;
		}
		
		#right {
			position: relative;
			float: right;
			clear: right;
			width: 450px;
			height: 649px;
			margin: 0;
			padding: 0;
			background-attachment: scroll;
			background-repeat: no-repeat;
			background-position: bottom right;
		}
	
	#footer {
		position: relative;
		float: left;
		width: 100%;
		clear: both;
		margin: 0;
		padding: 0;
	}

