@charset "utf-8";
* {
	margin: 0px;

}


body  {
	font-family: "Century Gothic", Geneva, Arial, Helvetica, sans-serif;
	font-weight: normal;
	background: #f6f7f0;
	margin: 0;
	padding: 0;
	color: #5a471b;
}


#container {
	width: 950px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header {
	background: #f6f7f0;
	padding: 0;
	margin: 0;
} 

#footer {
	background:#f6f7f0;
} 


#main-menu-container
 {
 width: 950px;
 height: 25px;
 margin: 0;
 padding: 0;
 }

#main-menu-container ul
{
	padding-left: 0;
	margin-left: 0;
	margin-top: 0px;
 	background-color: #f7941d;
	float: left;
	width: 100%;
}

#main-menu-container ul li { display: inline; margin-right: 33px; margin-top: 0px; margin-bottom: 0px;}


	
#content
	{
	padding-top: 25px;
	padding-bottom: 25px;
	color: #5a471b;
	font-size: 13px;
 	line-height: 1.8em;
	}
	
#footer ul li { display: inline; padding-right: 20px; font-size: 13px;}


#footer a:link {text-decoration: none; color: #5a471b; } 
#footer a:visited {text-decoration: none; color: #5a471b;  } 
#footer a:hover {text-decoration: none; color: #5a471b; } 
#footer a:active {text-decoration: none; color: #5a471b;  } 

.content_home a:link {text-decoration: none; color: #5a471b; } 
.content_home a:visited {text-decoration: none; color: #5a471b;  } 
.content_home a:hover {text-decoration: none; color: #5a471b; } 
.content_home a:active {text-decoration: none; color: #5a471b;  } 





/* General resources */

.orange {
	color: #f7941d;
	}
	
.bkh_large_text {
	font-size: 24px;
	}
	
.with_dashed_borders {
	border: 3px dashed #f7941d;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	visibility: hidden;
}
