/***************/
/* main layout */
/***************/
body { margin: 0; padding: 0; background: #fff url('../images/bg.gif'); color: #808285; }

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

/* specific link colours for this site */
a:link 	  { color: #00f; text-decoration: none; }
a:visited { color: #00f; text-decoration: none; }
a:hover   { color: #f60; text-decoration: underline; }
a:active  { color: #f30; text-decoration: underline; }
/* more text and link styles */
.linkNoUnder a:link, .linkNoUnder a:visited, .linkNoUnder a:active{ text-decoration:none; }
.linkNoUnder a:hover{ text-decoration:underline; }
.textWhite, .linkWhite a:link, .linkWhite a:visited, .linkWhite a:active, .linkWhite a:hover{ color:#FFFFFF; }
.textPink, .linkPink a:link, .linkPink a:visited, .linkPink a:active, .linkPink a:hover{ color:#B81F65; }
/* misc */
.pinkHeader{
	background-color:#B81F65;
	padding:5px;
}
.inputPink{
	background-color:#B81F65;
	color:#FDBB2F;
	border:1px solid #B81F65;
}

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

#navContainer #logo { float: left; }

#navContainer ul { float: right; }
#navContainer ul li { font-weight: bold; }
#navContainer ul li a { text-decoration: none; }

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


/********************/
/* content elements */
/********************/
#mainContainer {
  background: transparent url('../images/bg_content_middle.gif') repeat-y;
  padding: 0 50px 30px 40px;
}
#mainContainerBottom {
  background: transparent url('../images/bg_content_bottom.gif') bottom no-repeat;
  height: 6px;
  padding-top: 40px;
  padding-left: 36px;
  color: #d3df44;
  font-size: 0.9em;
}
#mainContainerBottom a { color: #d3df44; }
#sideMenu{
	background-color:#B81F65;
	color:#FFFFFF;
	padding:0px 10px;
	font-size:11px;
}
#sideMenu a, #sideMenu a:link, #sideMenu a:visited, #sideMenu a:active{
	color:#FFFFFF;
	text-decoration:none;
}
#sideMenu a:hover{
	color:#D2DE43;
	text-decoration:none;
}
#sideMenu ul{
	padding:0px;
	margin:10px 0px 0px 18px;
}
.hrYellow, .hrPink{
	height:1px;
	line-height:1px;
	font-size:1px;
	padding:0px;
	margin:5px 0px;
	border:none;
}
.hrYellow{
	color:#d2de43;
	background-color:#d2de43;
}
.hrPink{
	color:#ca578c;
	background-color:#ca578c;
}


.cocon    { font-family: /*'CoconPro-Light',*/ Arial, Helvetica, sans-serif; font-size: 1.1em; }
.coconreg { font-family: /*'CoconPro-Regular',*/ Arial, Helvetica, sans-serif; font-size: 1.3em; line-height: 1.2em; font-weight: bold; }


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 .itemHeader .itemTitle  { font-weight: bold; }
.item .itemHeader .itemDate   { font-style: italic; }
.item .itemContent            {  }
.item .itemContent .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 { }
#footer a { 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 */