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

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

/* specific link colours for this site */
a:link 	  { color: #00f; text-decoration: none; }
a:visited { color: #00f; text-decoration: none; }
a:hover   { color: #f60; text-decoration: underline; }
a:active  { color: #f30; text-decoration: underline; }


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

#navContainer #logo { float: left; }

#navContainer ul { float: right; }
#navContainer ul li { font-weight: bold; }
#navContainer ul li a { text-decoration: none; }

ul.nav    { list-style: none; margin: 0; padding: 0; }
ul.nav li { display: inline; margin-right: 10px; }


/********************/
/* content elements */
/********************/
#mainContainer {  }



hr {
  margin: 18px 0;
  border-bottom: solid #666 1px;
  height: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
}

/*********/
/* items */
/*********/
.item              { margin-bottom: 10px; }
.item .itemHeader  {  }
.item .itemTitle   { font-weight: bold; }
.item .itemDate    { font-style: italic; }
.item .itemContent {  }
.item .itemImage   { float: left; margin-right: 5px; margin-bottom: 5px; }
.item .itemMore    {  }

#itemBack          {  }

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

.formTextField { background-color:#d4e1f2; width:372px; border:0px; height:15px; margin:5px 0px 5px 0px;}
.formText { font-family:Verdana, Arial, Helvetica, sans-serif; line-height:1.5em;}
.formTextBold { font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:bold;}

.nowidth { width: auto; }

.required { background: #d4e1f2 url(../images/required_star.gif) scroll no-repeat right top; }

.indent { margin-left:43px;}

#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;
  width:200px;
}

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

/* message and error boxes, not just useful in contact form */
#messages,
#errors   { padding: 10px; }

.message { display: inline-block; border: 1px solid #080; color: #080; padding: 3px 5px; margin-bottom: 15px; } /* you may need to clearfix this */
.message.nomargin { margin-bottom: 0; } /* if before something with a margin-top */
.message.info { border-color: #880; color: #880; } /* info box in yellow */
.message.warn { border-color: #f40; color: #f40; } /* warning box in orange */
.message.error { border-color: #f00; color: #f00; } /* error box in red */