/***************/
/* main layout */
/***************/
body { margin: 0; padding: 0; /* backgrounds? */ }

#bodyWrapper { width: 780px; margin: auto; }

/* specific link colours for this site */
a:link 	  { color: #c00; text-decoration: none; }
a:visited { color: #c00; text-decoration: none; }
a:hover   { color: #f00; text-decoration: underline; }
a:active  { color: #f00; text-decoration: underline; }


/*******************/
/* header elements */
/*******************/
#navContainer {  }

#navContainer img { float: left; }


/********************/
/* content elements */
/********************/
#mainContainer {
	margin: 0;
	padding: 0;
}

#sidebar { float: left; width: 176px; margin-right: 10px; }
#sidebarBottom { margin-left:20px;}
#mainContent { float: left; width: 553px; margin-top:100px; }

h1 { text-transform: uppercase; margin: 0; line-height: 1.8em; font-family: Arial, Helvetica, sans-serif; font-size: 18px; font-weight: bold; color: #c00; }

.newsItem { line-height: 200%; border-bottom: 1px solid #b2b2b2; }
.newsItem:first-child { border-top: 1px solid #b2b2b2; }
.newsImage { float: left; margin: 7px 14px 7px 0; }
.newsTitle { font-weight: bold; }
.newsMore { font-weight: bold; }

/* links for past/future events */
.timeLink {  }
#linkPast   {  }
#linkFuture {  }

.event { line-height: 200%; border-bottom: 1px solid #b2b2b2; }
.event:first-child { border-top: 1px solid #b2b2b2; }
.eventImage { float: left; margin: 7px 14px 7px 0; }
.eventTitle { font-weight: bold; }
.eventMore { font-weight: bold; }
#eventTime ul { padding:0; margin:0;}
#eventTime li { background-color:#000000; list-style:none; margin-bottom:5px; display:block;}
#eventTime li a { color:#FFFFFF; display:block; padding:3px;}
#eventTime li a:hover { background-color:#a90404; text-decoration:none;}

#sidebarBottom img { padding-bottom: 10px; }

.floatleft { float: left; }

hr {
	border-bottom: dashed #000 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 { }
#footer a { text-decoration: none; } /* for the clevercherry.com link */


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

/* 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 */