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

#bodyWrapper { width: 843px; margin: auto; margin-top: 71px; }

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


/*******************/
/* header elements */
/*******************/
#header { margin-bottom: 48px; }

#header #logo      { float: left; }
#header #strapline { float: right; }

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


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

#nav         { float: left; width: 114px; text-align: right; }
#nav ul      { list-style: none; margin: 0; padding: 0; }
#nav ul li   { margin: 0; padding: 0; }
#nav ul li a {  }

#mainContent { float: right; width: 710px; }


.contentbox { background: #ebebeb; padding: 25px 20px 43px 24px; margin-bottom: 19px; }

.eventThumb { float: left; margin-left: 19px; margin-bottom: 4px; }
.eventThumb a:link,
.eventThumb a:visited { color: #585858; }
.eventThumb a:hover,
.eventThumb a:active  { color: #585858; }


hr {
  margin: 18px 0;
  border-bottom: solid #b70062 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    {  }

.leftImage { float: left; margin-right: 10px; margin-bottom: 10px; }

#itemBack          {  }

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

/*******************/
/* footer elements */
/*******************/
#footer { text-align: right; color: #db0a8c; }


/***********************/
/* general form styles */
/***********************/
#contactform	{ float: left; }  /* the contact form itself */
#contact		{ float: right; } /* contact info or whatever on right */

.required { color: #f00; }

/* 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: 110px; /* default width for a default form, add new form ids and override */
}
div.formrow.indent { margin-left: 120px; } /* label width + label margin-right, override as above */

/* message and error boxes, not just useful in contact form */
#messages,
#errors,
#warnings,
#info { margin-bottom: 10px; }
.message { border: 1px solid #080; background: #efe; color: #080; padding: 3px 5px; margin-bottom: 15px; float: left; } /* you may need to clearfix this */
.message.nomargin { margin-bottom: 0; } /* if before something with a margin-top */
.message.info { border-color: #880; background: #ffe; color: #880; } /* info box in yellow */
.message.warn { border-color: #f40; background: #ffe; color: #f40; } /* warning box in orange */
.message.error { border-color: #f00; background: #fee; color: #f00; } /* error box in red */