/***************/
/* main layout */
/***************/
body { margin: 0; padding: 0; background: #b9cbe3 url(../images/bg.png) no-repeat center top; min-width: 780px; }

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

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


/*******************/
/* header elements */
/*******************/

#header {
	border: 1px solid #c1c1c1;
	background: #fff url(../images/headerbg.png) no-repeat right top;
	color: #000;
	
	height: 93px;
	margin-top: 20px;
	
	padding: 18px 0 18px 29px;
}

#header #headerLogo  { float: left; }
#header #headerFlash { float: right; margin-top: 65px; }

#nav {
	border: 1px solid #d44349;
	background: #a7132b url(../images/navbg.png) repeat-x left top;
	color: #fff;
	
	height: 45px;
	
	margin: 1px 0;
}

#nav ul { position: static !important; }
#nav ul li { font-weight: bold; margin-right: 0; position: static !important; }
#nav ul li a { text-decoration: none; }

/* kill me! */
#nav ul ul    { position: absolute !important; }
#nav ul ul li { position: static !important; }

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


/********************/
/* content elements */
/********************/
#mainContainer {
	border: 1px solid #c1c1c1;
	background: #fff;
	color: #000;
	
	padding: 17px 25px 20px 19px;
}

#frontLinks { float: right; width: 243px; } 
#frontLinks a { display: block; margin-bottom: 10px; }

#topLinks { margin-bottom: 20px;}
#topLinks a { float: left; margin-right: 21px; }

h1, h2, h3, h4, h5, h6 { font-family: 'Arial Narrow', 'Arial', helvetica, sans-serif; font-weight: normal; color: #ab0019; }


.link { padding-top: 15px; border-top: 1px dashed #ab0019; margin-top: 15px; text-align: right; }
.document { padding-top: 15px; border-top: 1px dashed #ab0019; margin-top: 15px; }


hr {
  margin: 10px 0;
	border-bottom: 1px dashed #ab0019;
  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 { color: #000; text-decoration: none; } /* for the clevercherry.com link */


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