/***************/
/* main layout */
/***************/
body { margin: 0; padding: 0; background: #f7f7f7 url('../images/bg.gif') top center no-repeat; }
#bodyWrapper { width: 598px; margin: auto; }

/* specific link colours for this site */

a:link {
	color: #CCCCCC;
}
a:visited {
	color: #CCCCCC;
}
a:hover {
	color: #FFFFFF;
}
a:active {
	color: #CCCCCC;
}
/*******************/
/* header elements */
/*******************/
#navContainer { background-color: #2b4127; height: 99px; }

#navContainer img { float: left; }

#navContainer ul {
	float: right;
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: 16px;
	width: 255px; /* 263px */
}
#navContainer ul li { display: block; float: left; font-weight: bold; margin: 0 8px 3px 7px; }
#navContainer ul li a { text-decoration: none; }


/********************/
/* content elements */
/********************/
#mainContainer {
	margin: 0;
	padding: 0;
	background: #2b4127 repeat-y;
	color: #ccc;
	padding: 20px 10px;
}
#mainContainer.news { background-image: url('../images/main_bg.gif'); }

#mainContainer p { margin-bottom: 15px; }

#leftSection	{ float: left;	width: 328px; }
#rightSection	{ float: right;	width: 230px; }

.section { margin-bottom: 30px; }

.floatleft { float: left; }

hr {
	border-bottom: dashed #455043 1px;
	height: 1px;
	border-top: none;
	border-left: none;
	border-right: none;
}

/*****************/
/* photo gallery */
/*****************/
div.galleryItem { /* one gallery item */
	width: 100px;
	height: 100px;
	float: left;
	margin: 5px;
}

/*******************/
/* footer elements */
/*******************/
#footer { background-color: #000; color: #ccc; height: 28px; padding: 5px 12px; }
#footer a { text-decoration: none; color: #fff; } /* for the clevercherry.com link */
#footer a.clevercherry { color: #a40c0c; }


/***********************/
/* general form styles */
/***********************/
#contactform	{ float: left; }  /* the contact form itself */
#contact		{ float: right; } /* contact info or whatever on right */

#mailText	{ height: 15px; padding: 3px 6px; background-color: #ccc; color: #000; border: none; }
#mailSubmit	{  }


/* all form elements are contained within a formrow div, with a label and
 *  then the element, this is the best way (but still not good) to emulate
 *  a table */
div.formrow {
	clear: both;
	text-align: left;
	margin-bottom: 10px;
}

div.formrow label {
	float: left;
	text-align: right;
	margin-right: 10px;
	width: 80px; /* default width for a default form, add new form ids and override */
}
div.formrow.indent { margin-left: 90px; } /* label width + label margin-right, override as above */

/* message and error boxes, not just useful in contact form */
div.box { border: 1px solid #080; color: #080; padding: 3px 5px; margin-bottom: 15px; float: left; } /* you may need to clearfix this */
div.box.nomargin { margin-bottom: 0; } /* if before something with a margin-top */
div.box.error { border-color: #f00; color: #f00; } /* error box in red */