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

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

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


/*******************/
/* header elements */
/*******************/
#navContainer { background: #fff url('../images/topbg.jpg') top center no-repeat; height: 174px; font-style: normal; }

#navContainer ul#mainMenu {
	float: right;
	list-style: none;
	margin: 0;
	padding: 0;
}
#navContainer ul#mainMenu li { display: inline; font-weight: bold; margin-left: 7px; margin-right: 7px; }
#navContainer ul#mainMenu li a { text-decoration: none; }

#navContainer #logo {
  padding-top: 32px;
  padding-left: 14px;
}



/********************/
/* content elements */
/********************/
#mainContainer {
	margin: 0;
	padding: 0;
  background: #fff url('../images/midbg.jpg') top center no-repeat;
  min-height: 142px;
}
#innerContent { background: url('../images/botbg.jpg') bottom right no-repeat; }

#coolers   { float: left; width: 200px; padding-top: 130px; text-align: center; }
#mainPane  { float: left; width: 555px; padding: 60px 20px 80px; }
#rightPane {  }

.floatleft { float: left; }

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

.subTitles { font-size:16px; background-color:#A5EFFB; padding:2px;}
/*****************/
/* photo gallery */
/*****************/
div.galleryItem { /* one gallery item */
	width: 100px;
	height: 100px;
	float: left;
	margin: 5px;
}


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