/* Overall styles and page container */
html, body{ 
	margin: 10px 0; 
	padding:0; 
	text-align:center;
	background-color: #D5F8D0;
	font-family: Arial, Helvetica, sans-serif;
} 
 
#pagewidth{ 
	width:740px; 
	text-align:left;  
	margin-left:auto; 
	margin-right:auto;  
} 

/* Links */

a:link {
	color: #337837;
}

a:hover {
	text-decoration: none;
}

/* Page header */
 
#header{
	position:relative; 
	height:150px;
	background-image: url(../images/bg-header.jpg);
	background-repeat: no-repeat;
	width:100%;
} 

/* Horizontal top navigation */

#topnav {
	background-color: #337837;
	font-size: 80%;
	padding: 3px 0;
	height: 1.2em;
}

#currentlink a{
	font-weight: bold;
}

/* Main content container */
 
#maincol{
	background-color: #FFFFFF;  
	float: right; 
	display:inline; 
	position: relative; 
	width: 728px;
	font-size: 80%;
	padding: 5px;
	border-left: 1px solid #337837;
	border-right: 1px solid #337837;
	line-height: 150%;
	background-image: url(../images/bg-maincol.gif);
	background-position: bottom;
	background-repeat: no-repeat;
 }
 
/* Headers */

h1 {
	color: #BF5D36;
	font-size: 130%;
}

h2 {
	font-size: 110%;
}

/* Page footer */
 
#footer {
	background-color:#337837; 
	clear:both;
	font-size: 70%;
	color: #FFF;
	padding: 4px;
} 

#footer a {
	color: #FFF;
}

#footer #footer_right {
	float: right;
	width: 60%;
	text-align: right;
}

/* Photos on the home page */

#homepics img {
	border: 1px solid black;
}
 
/* Box to contain the news items on the news menu - images contained within a floated div */

.newsbox {
	width: 100%;
	float: right;
	border-bottom: 1px solid #000;
	padding: 0.25em 0;
	margin: 0.5em 0;
}

.newsbox .newboximg_right {
	float: right;
	border: 1px solid #000;
	margin: 0.25em;
}

.newsbox .newboximg_left {
	float: left;
	border: 1px solid #000;
	margin: 0.25em;
}

.newsbox h2 {
	font-size: 110%;
	margin-bottom: 0;
	background-color: #337837;
	color: #FFF;
	font-weight: 600;
	padding: 2px;
}

.newsbox h2 a {
	color: #FFF;
}

/* Breadcrumb trail */

.breadcrumb {
	font-size: 70%;
}

/* Form styles */

input, select, textarea {
	border: 1px solid #337837;
}

textarea {
	width: 100%;
}

.checkbox {
	border: none;
}

/* Text styles */

.red_text {
	color: red;
}
 
 /* *** Float containers fix:
 http://www.csscreator.com/attributes/containedfloat.php *** */ 
.clearfix:after {
 content: "."; 
 display: block; 
height: 0; 
 clear: both; 
 visibility: hidden;
 }
 
.clearfix{display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */  

