@charset "utf-8";
/* CSS Document */

body {
    font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
       line-height: 1.2em;
	background-color: #d1e9db;
	background-repeat:no-repeat;
	background-position:top left;
	background-attachment:fixed;	

	

	color: #000; 
}


h1, h2, h3, h4, h5, h6 {
	margin-top: 10px;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

@font-face {

    font-family: futura;

    src: local(futura), url('FuturaStd-Medium.ttf') format('opentype');

}


/*--------------*/


#nav{
	height:30px;
	background:url(images/menubar_06.png) top repeat-x !important;
    
}
 
.button{
	font-weight:bold;
    
}



#nav ul {  
	margin:0;
	padding:0px;
	list-style:none;
}

#nav ul li{
	position: relative;
	display: inline;
	float: left;
	border-right: 1px solid #CCCCCC;
	margin: 0 !important;
}


#nav ul li a{
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	display: block;
	background:url(images/menubar_06.png) top repeat-x !important;
	color: #000000;
	padding: 8px 10px;
	border-right: 1px solid #999999;
	text-decoration: none;
	font-size: 14px;
}

#nav ul li a.button:hover{
	background:#000000 !important;
	color:#FFF;
}


/*--------------*/



/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;

}
a:visited {
	color: #6E6C64;

}


/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 960px;
	
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}



.menubar{
	margin: 0;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	
	color:#000000; 
	width:960px;
	font-size:14px; 
	font-family:Arial, Helvetica, sans-serif; 
	font-weight:normal; 
	white-space:nowrap; 
	padding:3px;
}


#content {
    width: 650px; /* whatever you want the width to be */;
    overflow: auto; /* this will automatically create a scroll bar for the div tag, not iframes it will be a div tag */
    
    font-size:14px; 
    font: Arial, Helvetica, sans-serif; 
    font-weight:normal;	
   
}

p{
    margin-left: 20px;
    padding: 10px;
}


/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background: #CCC49F;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}