/***************/
/* main layout */
/***************/
html { height: 100%; }
body { margin: 0; padding: 0; height: 100%; background: #004a64 url('../images/back.gif') top left repeat-x; }

#bodyWrapper { width: 750px; margin: auto; background: #a9c56c; }

/* specific link colours for this site */
a:link 	  { color: #0055a5; text-decoration: none; }
a:visited { color: #0055a5; text-decoration: none; }
a:hover   { color: #a9c56c; text-decoration: underline; }
a:active  { color: #a9c56c; text-decoration: underline; }
ul.nav a:focus { outline: none; }

/*******************/
/* header elements */
/*******************/
#navContainer { background: #fff; }

#navContainer #navHeader { height: 112px; background: url('../images/tagline.png') top center no-repeat; }

#navContainer #logo       { float: left; }

#navContainer #worldClock {
  float: right;
  width: 248px;
  height: 49px; /* 92 - 43 */
  background: url('../images/world_clock.png') top left no-repeat;
  color: #fff;
  padding-top: 43px;
}
#navContainer #worldClock .worldClock { float: left; width: 41px; text-align: center; line-height: 1.3em; }

#navContainer #mainNav { background: url('../images/nav/bg.gif') top left repeat-x; display: block; }

ul.nav    { list-style: none; margin: 0; padding: 0; }
ul.nav li { float: left; }


/********************/
/* content elements */
/********************/
#mainContainer {
  margin: 0;
  padding: 14px 13px 0;
  background: #fff url('../images/watermark.png') top right no-repeat;
}


#leftPane  { float: left;  width: 355px; }
#rightPane { float: right; width: 355px; }


hr {
  border-bottom: dashed #000 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; border: 1px solid #a9a9a9; }


/*********************/
/* locations regions */
/*********************/
.region { float: left; margin-right: 6px; width: 140px; } /* will fit (all) 5 on */


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

/*******************/
/* footer elements */
/*******************/
#footer { background: #a9c56c; color: #fff; }
#footer p { float: right; margin: 0; width: 263px; padding-top: 11px; }


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