/***************/
/* main layout */
/***************/
body { margin: 0; padding: 0; color: #333; }

#bodyWrapper { width: 787px; margin: auto; background: url('../images/news_bg.gif') top right repeat-y; padding-top: 12px; }

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


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

#navContainer #logo    { margin-bottom: 20px; float: left; }
#navContainer #logmein { margin-top: 21px; margin-right: 95px; float: right; }

#navContainer a:link    { color: #999; }
#navContainer a:visited { color: #999; }
#navContainer a:hover   { color: #dfdfdf; }
#navContainer a:active  { color: #dfdfdf; }

ul.nav    { list-style: none; margin: 0; padding: 0; text-transform: lowercase; background: #fff; }
ul.nav li { display: inline; margin: 0; padding: 0; margin-right: 13px; }


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

#contentArea { float: left; width: 520px; padding-right: 27px; margin-top: 6px; } /* dont' really need that padding right so if IE hates it, remove */
#sideBar     { float: right; width: 196px; padding-right: 32px; padding-left: 12px; }

#contentArea ul.nav li { font-size: 1.1em; }

.borderBottom { border-bottom: 1px solid #dfdfdf; margin-bottom: 12px; padding-bottom: 16px; }

#sideBar ul            { list-style-image: none; }
#sideBar ul li         { list-style-image: none; }
#sideBar ul li a       { color: #333; font-weight: bold; text-decoration: none; }
#sideBar ul li a:hover { color: #f39302; font-weight: bold; text-decoration: none; }

#prodInfo ul            { list-style: none; list-style-image: none; margin: 0; padding: 0; }
#prodInfo ul li         { list-style: none; list-style-image: none; margin: 0; padding: 7px 4px; border-bottom: 1px solid #fff; }


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

/*********/
/* items */
/*********/
.item              { margin-bottom: 5px; border-bottom: 1px solid #fff; padding-bottom: 5px; }
.item .itemHeader  {  }
.item .itemTitle   { font-weight: bold; }
.item .itemDate    { color: #666; }
.item .itemContent {  }
.item .itemImage   { float: left; margin-right: 5px; margin-bottom: 5px; }


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

/*******************/
/* footer elements */
/*******************/
#footer { width: 787px; margin: auto; color: #999; }
#footer a { color: #999; }


/***********************/
/* 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-top: 9px;
  margin-right: 10px;
  width: 90px; /* default width for a default form, add new form ids and override */
}
div.formrow.indent { margin-left: 100px; } /* 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 */