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

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

/* specific link colours for this site */
a:link 	  { color: #a7a5a6; text-decoration: none; }
a:hover   { color: #9f0202; text-decoration: none; }


/*******************/
/* header elements */
/*******************/
#navContainer { padding:17px 0px 0px 41px; }

#navContainer #logo { float: left; }

/* only use these ones here to aply specific styles to
 * the header UL that contains the links to the other
 * pages */
#navContainer ul { float: left; }
#navContainer ul li { font-weight: bold; }
#navContainer ul li a { text-decoration: none; }

/* only use this (<ul class="nav">) when you want the
 * UL to display as a horizontal list of things rather
 * than th usual vertical list) */
ul.nav    { list-style: none; margin: 0; padding: 0; }
ul.nav li { display: inline; margin:0px; padding:0px; }


/********************/
/* content elements */
/********************/

#mainContainer {  }

#homeContent { font-weight:bold; margin:540px 0px 0px 0px; padding:0px 70px 47px 41px; font-size:13px;}

#mainContent { margin:20px 0px 0px 0px; padding:0px 450px 47px 41px; min-height:600px;}

#musicContent { margin:0px 0px 0px 0px; padding:0px 0px 130px 41px; float:left; width:419px;}

#mp3PlayerContainer { width:438px; float:right;}

#tableBg {background-color:#222222; padding-left:10px; }



hr {
  margin: 18px 0;
  border-bottom: solid #666 1px;
  height: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
}

/*********/
/* items */
/*********/
.item              { padding-bottom: 7px; border-bottom: 1px solid #9f0202; margin-bottom: 7px; }
.item .itemImage   { float: left; margin-right: 10px; border: 1px solid #9f0202; }
.item .itemDetail  { margin-left: 62px; width: 365px; }
.item .itemHeader  {  }
.item .itemTitle   { font-weight: bold; }
.item .itemDate    { font-style: italic; }
.item .itemContent { margin-top: 4px; }
.item .itemMore    {  }

#itemBack          {  }

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

/*******************/
/* footer elements */
/*******************/
#footer { float:right; color:#666666; padding-top:3px; }
#footer a { text-decoration: none; color:#666666; } /* for the clevercherry.com link */
#footer a:hover { text-decoration: none; color:#9f0202; }


/***********************/
/* 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;
  border:0px;
}

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.message { border: 1px solid #080; color: #080; padding: 3px 5px; margin-bottom: 15px; float: left; } /* you may need to clearfix this */
div.message.nomargin { margin-bottom: 0; } /* if before something with a margin-top */
div.message.info { border-color: #880; color: #880; } /* info box in yellow */
div.message.warn { border-color: #f40; color: #f40; } /* warning box in orange */
div.message.error { border-color: #f00; color: #f00; } /* error box in red */