@import 'footer.css';
@import 'header.css';
@import 'nav.css';
@import 'content.css';
@import 'text.css';
@import 'column.css';
@import 'form.css';

/* LAYOUT FRAMEWORK CONSTRUCT */
body
{
	margin : 0;
	padding :0;
	text-align :center;
	background-color : #F4D895;
	font: 12px  arial;
	color : Black;
}

div#page
{
	position : relative;
	text-align : left;
	margin-left : auto;
	margin-right : auto;
	
	width : 758px;
	background-color : #F9F5E6;	
}

div#header
{
	position : absolute;
	width : 550px;
	top : 0;
	right : 0;
	height : 165px;	
	background-color : #FFF;
	
}

div#nav
{
	position : absolute;
	top : 50px;
	left : 0px;	
	width : 195px;	
	color :  #FFF;	
	text-align : right;
}

div#main
{
	position : absolute;
	width : 550px;
	right : 0;	
	top : 165px;		
	background-color : #FFF;
	
}

div#content
{	
	width : 550px;	
	margin-top : 10px;
	text-align : center;
	
}

div#content_in
{
	width : 95%;
	margin-left : auto;
	margin-right : auto;
	text-align : justify;
	padding-bottom : 45px;
	border-top : 1px solid #6C4900;	
}


div#footer
{
	position : absolute;
	width : 758px;
	right : 0px;
	bottom : 0px;
	border-top : 1px solid #6C4900;
	border-bottom : 1px solid #6C4900;	
	clear : both;
	text-align :center;
	height : 30px;
	line-height : 30px;
	font-size : 11px;
	color : #6C4900;
}



	