/***************/
/* main layout */
/***************/
body { margin: 0; padding: 0; background: #00adef; }

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

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


/***********************/
/* whole page elements */
/***********************/

#sidebar    { float: left;  width: 112px; }
#notSidebar { float: right; width: 764px; }

/*******************/
/* header elements */
/*******************/

#logoHeader img { float: right; }

#header { padding: 0; margin-bottom: 10px; }

#navContainer {  }

#sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#sidebar ul li         {
	background-image:url(../images/bg_button.jpg);
	background-position:top left;
	background-repeat:repeat;
	margin-bottom: 20px;
}
#sidebar ul li a       {
	display: block;
	text-decoration: none;
	color: #fff;
	border: 2px solid #fff;
	padding: 1px 4px 0;
}
#sidebar ul li a:hover { display: block; text-decoration: none; background-color: #f6be26; color: #000; }


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

.boxlike {
  border: 4px solid #fff;
  padding: 8px;
  background: #fff url('../images/bg_box_big.gif') bottom left repeat-x;
  color: #000;
}

.title {
  padding: 8px 8px 8px 18px;
  width: 213px;
  height: 18px;
  background: #00adef url('../images/bg_title.gif') top left no-repeat;
  font-size: 1.29em;
  border-width: 2px;
  margin-bottom: 20px;
}

#introText { margin: 10px 0; min-height: 60px; background-color:#FFFFFF; background-image:url(../images/bg_box_front_top_yellow_fade.gif); }
#news, #nextMeeting, #special { float: left; width: 218px; height: 214px; margin-right: 19px; background: #fff url('../images/bg_box_front.gif') bottom left repeat-x; }

/*******************************************/
/* new front-page 3-columns, strechy-style */
/*******************************************/
#newsFront {
  border: 4px solid #fff;
  padding: 10px;
}
#nextMeetingFront {
	background: #fff url('../images/bg_box_front_yellow.gif') bottom repeat-x;
  border: 4px solid #fff;
  padding: 10px;
}
#specialFront {
  border: 4px solid #fff;
  padding: 10px;
}


ul.notreallyalist { list-style: none; margin: 0; padding: 0; }
ul.notreallyalist li { margin: 0; padding: 0; }

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

/********/
/* news */
/********/
.newsItem                         { margin-top: 10px; }
.newsItem:first-child             { margin-top: 0px; }
.newsItem .newsTitle              { font-weight: bold; }
.newsItem .newsDate               { font-style: italic; }
.newsItem .newsContent            { margin-top: 20px; }
.newsItem .newsContent .newsImage { float: left; margin-right: 5px; margin-bottom: 5px; }

/*****************/
/* photo gallery */
/*****************/
#galleryContainer img {
	border: 3px solid #fff;
}

/*******************/
/* footer elements */
/*******************/
#footer { margin-top: 20px; border-top: 1px solid #fff; font-size: 0.86em; }
#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 */