/* ############################################################################
   ##
   ##  Global Website Stylesheet
   ##
   ######################################################################### */

/* ####################################
   HTML Element Styles
   ################################## */

body {
	font-size: 75%;
	font-family: arial, helvetica, sans-serif;
	line-height: 140%;
	margin: 0px;
	/* Hack for Acuity admin system, overridden in global_nonadmin.css */
	background-color: #f7ecd2;
}

h1 {
	font-family: times new roman, serif;
	font-size: 250%;
	font-style: italic;
	font-weight: normal;
	color: #62232E;
	margin-top: 0.25em;
}

h2 {
	font-family: times new roman, serif;
	font-size: 200%;
	font-style: italic;
	font-weight: normal;
	color: #95565F;
	margin-top: 0.25em;
}

h3 {
	font-size: 135%;
	font-weight: bold;
}

h4 {
	font-size: 100%;
	margin-bottom: 0.1em;
	text-decoration: none;
}

h5 {
	font-weight: normal;
	font-style: italic;
	margin-bottom: 0.1em;
}

h6 {
	font-size: 91.7%;
	font-weight: normal;
	margin-bottom: 0.1em;
	text-decoration: underline;
}

p {
	margin-top: 0px;
}

a:link {
	color: #871428;
}

a:visited {
	color: #871428;
}

a:hover {
	color: #b08019;
}

a:active {
	color: #871428;
}

img.fx {
	FILTER: progid:DXImageTransform.Microsoft.Fade(Overlap=1.00,Duration=0.35,);
}

/* ####################################
   Form Styles
   ################################## */
form {
	margin-top: 0px;
	margin-bottom: 0px;
}

input {
}

input.blank {
	border: 0px;
	margin: 0px;
	padding: 0px;
	background-color: transparent;
	background: url('/images/templates/spacer.gif');
}

input.submitbutton {
}

input.submit-small {
}

select {
}

textarea {
}

/* ####################################
   Main Menu - Standards Version
   ################################## */


/* ####################################
   Sub Menu
   ################################## */


/* ####################################
   Table Styles
   ################################## */

thead, th, table.table-header, tr.table-header, td.table-header {
}

tfoot, table.table-footer, tr.table-footer, td.table-footer {
}

table.table-bgdark, tr.table-bgdark, td.table-bgdark {
	background: #e0e0e0;
}

table.table-bglight, tr.table-bglight, td.table-bglight {
	background: #f0f0f0;
}

table.table-bgtransparent, tr.table-bgtransparent, td.table-bgtransparent {
	background: transparent;
}

/* ####################################
   Page Objects
   ################################## */

#bgleft {
	background-image: url('/images/templates/bg_shadow_left.gif');
	background-repeat: repeat-y;
	background-position: top right;
	vertical-align: top;
}

#bgright {
	background-image: url('/images/templates/bg_shadow_right.gif');
	background-repeat: repeat-y;
	vertical-align: top;
}

#guitarleft {
	width: 100%;
	height: 840px;
	background-image: url('/images/templates/guitar_left.jpg');
	background-repeat: no-repeat;
	background-position: top right;
}

#guitarright {
	width: 100%;
	height: 840px;
	background-image: url('/images/templates/guitar_right.jpg');
	background-repeat: no-repeat;
}

#content {
	position: relative;
}

#footer {
	font-family: verdana, arial, helvetica;
	font-size: 9px;
	margin-bottom: 0.5em;
}

/* ####################################
   Main Menu
   ################################## */

/* Entire nav object */
#MenuContainer {
	position: relative;
	padding: 0;
	margin: 0;
	
	font-family: georgia, times new roman, times, serif;
	font-size: 91.7%;
	
	list-style: none;

	z-index: 10;
}

/* Nav object and all lists (ul) in nav object */
#MenuContainer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* All anchor tags (links) in nav object */
#MenuContainer a {
	display: block;
	color: #000000;
	text-decoration: none;
	padding: 6px 10px; 
}

/* All anchor tags (links) in nav object - hover state */
#MenuContainer a:hover {
	text-decoration: none;
}

/* All list items (li) in nav object */
#MenuContainer li {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

#MenuContainer li:hover, #MenuContainer li.sfhover {
	background: #E4BD5D;
}

/* All list items (li) in nav object, hover state */
#MenuContainer li:hover ul {
	left: auto;
}

/* Third level list (ul) */
#MenuContainer li ul ul {
	position: relative;
}

/* Second level list (ul) */
#MenuContainer li ul {
	position: absolute;
	
	border: #E0D5B7 1px solid;
	border-top: 0;
	width: 160px;
	left: -999em;
	z-index: 20; /* Higher than top level */
}

/* Second level list items (li) */
#MenuContainer li ul li {    
	position: relative;
	/* IE7 behaving badly, so fix height */
	
	text-align: left;
			
	background: #fefcf2;
	border: #E0D5B7 1px solid;
	border-bottom: 0px;
	border-left: 0px;
	
	/* Odd little size hack for Mozilla, doesn't affect IE... Check against widths of other items if width changes. */
	width: 100%;
}

/* Second level list items (li) - mouseover */
#MenuContainer li ul li:hover, #MenuContainer li ul li.sfhover {
	background: #E4BD5D;
}

/* Second level list items (li) - anchor tags (links) */
#MenuContainer li ul li a {
	font-weight: normal;
	text-decoration: none;
}

/* Second level list items (li) - anchor tags (links)
  - width=100% pushes the link to the width of the li. Mozilla does it anyway but behaves
    badly with this setting so it's only switched on for IE. */
* html #MenuContainer li ul li a {
	width: 100%;
}

/* Second level list items (li) - anchor tags (links) - mouseover */
#MenuContainer li ul li a:hover {
	text-decoration: none;
	color: #000000;
}

/* CSS trick for menu placement, don't touch */
#MenuContainer li:hover ul ul, #MenuContainer li.sfhover ul ul {
	left: -999em;
	border: 0;
}

/* CSS trick for menu placement, don't touch */
#MenuContainer li:hover ul, #MenuContainer li li:hover ul, #MenuContainer li.sfhover ul, #MenuContainer li li.sfhover ul {
	left: auto;
}

#MenuContainer li.li-level1-first {
    /*
    border-left: 0px;
    */
}

/* Individual Elements */

#Menu_Item_58 {
	display: none;
}

#Menu_Item_255 {
	text-indent: -999em;
	margin: 0;
	padding: 0;
	width: 110px;
	height: 27px;
	background: transparent url('/images/templates/header_about_off.gif') no-repeat;
}

	li#Menu_Item_255:hover, #Menu_Item_255.sfhover {
		background: transparent url('/images/templates/header_about_on.gif') no-repeat;
	}

	#Menu_Item_255 li {
		text-indent: 0;
	}
	

#Menu_Item_254 {
	text-indent: -999em;
	margin: 0;
	padding: 0;
	width: 93px;
	height: 27px;
	background: transparent url('/images/templates/header_news_off.gif') no-repeat;
}

	li#Menu_Item_254:hover, #Menu_Item_254.sfhover {
		background: transparent url('/images/templates/header_news_on.gif') no-repeat;
	}

	#Menu_Item_254 li {
		text-indent: 0;
	}

#Menu_Item_258 {
	text-indent: -999em;
	margin: 0;
	padding: 0;
	width: 75px;
	height: 27px;
	background: transparent url('/images/templates/header_gallery_off.gif') no-repeat;
}

	li#Menu_Item_258:hover, #Menu_Item_258.sfhover {
		background: transparent url('/images/templates/header_gallery_on.gif') no-repeat;
	}

	#Menu_Item_258 li {
		text-indent: 0;
	}

#Menu_Item_259 {
	text-indent: -999em;
	margin: 0;
	padding: 0;
	width: 106px;
	height: 27px;
	background: transparent url('/images/templates/header_discography_off.gif') no-repeat;
}

	li#Menu_Item_259:hover, #Menu_Item_259.sfhover {
		background: transparent url('/images/templates/header_discography_on.gif') no-repeat;
	}

	#Menu_Item_259 li {
		text-indent: 0;
	}

#Menu_Item_302 {
	text-indent: -999em;
	margin: 0;
	padding: 0;
	width: 98px;
	height: 27px;
	background: transparent url('/images/templates/header_downloads_off.gif') no-repeat;
}

	li#Menu_Item_302:hover, #Menu_Item_302.sfhover {
		background: transparent url('/images/templates/header_downloads_on.gif') no-repeat;
	}

	#Menu_Item_302 li {
		text-indent: 0;
	}

#Menu_Item_315 {
	text-indent: -999em;
	margin: 0;
	padding: 0;
	width: 119px;
	height: 27px;
	background: transparent url('/images/templates/header_music_off.gif') no-repeat;
}

	li#Menu_Item_315:hover, #Menu_Item_315.sfhover {
		background: transparent url('/images/templates/header_music_on.gif') no-repeat;
	}

	#Menu_Item_315 li {
		text-indent: 0;
	}

#Menu_Item_482 {
	text-indent: -999em;
	margin: 0;
	padding: 0;
	width: 59px;
	height: 27px;
	background: transparent url('/images/templates/header_shop_off.gif') no-repeat;
}

	li#Menu_Item_482:hover, #Menu_Item_482.sfhover {
		background: transparent url('/images/templates/header_shop_on.gif') no-repeat;
	}

	#Menu_Item_482 li {
		text-indent: 0;
	}

/* ####################################
   MP3 Player
   ################################## */

object#mp3player {
    display: block;
    padding: 6px;
    margin-bottom: 1.25em;
    background-color: #999999;
    border: #787878 1px solid;
}

embed#mp3player {
    padding: 0;
    background-color: transparent;
    border: 0;
}

/* ####################################
   Custom Element Styles
   ################################## */
   
.big {
	font-size: 116.7%;
}

.small {
	font-size: 75%;
}

.hidden {
	display: none;
}

.date {
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 91.7%;
	color: #b08019;
	margin-bottom: 0.1em;
}

.author {
	font-size: 91.7%;
	color: #999999;
}

.paging {
	margin: 0;
}

.pdf {
	padding-left: 20px;
	padding-top: 2px;
	background-image: url("/images/templates/icons/16x16_adobe.gif");
	background-repeat: no-repeat;
	min-height: 16px;
	_height: 16px;
}

.smoothborder {
	padding: 1px;
	border: 4px #debd7f solid;
}


.underlined {
	border-bottom: 1px solid;
}

.galleryLink {
	/* Placeholder for a class name used to help with image galleries. */
}

.validationFailed {
    background: #ecdede;
    border: #cc0000 2px solid;
}

div.plainpage {
	border-top: 1px #CCB185 solid;
	margin-left: 2px;
	margin-right: 12px;
	padding-top: 1em;
	width: 666px;
}

/* ##  Feature Boxes  ## */

div.box-outer {
	position: relative;
	width: 670px;
	_width: 664px;
	margin-right: 12px;
	_margin-right: 0px;
	margin-bottom: 12px;
	_margin-bottom: 4px;
	FILTER: progid:DXImageTransform.Microsoft.Shadow(direction=-60,color=#D2BA8F,strength=4);
}

table.box-inner {
	width: 670px;
	_width: 664px;
	border: #CCB186 1px solid;
	background-color: #ffffff;
	FILTER: progid:DXImageTransform.Microsoft.Shadow(direction=120,color=#D2BA8F,strength=4);
}

div.plainpage div.box-outer {
	width: 660px;
	_width: 658px;
}

div.plainpage table.box-inner {
	width: 660px;
	_width: 658px;
}

td.box-content {
	border: #ffffff 8px solid;
	background-color: #f7ecd2;
	/* Hack for Acuity admin system, overridden in global_nonadmin.css */
	font-size: 75%;
}

div.box-double-outer {
	position: relative;
	width: 328px;
	float: left;
	margin-right: 13px;
	_margin-right: 0px;
	margin-bottom: 12px;
	_margin-bottom: 4px;
	FILTER: progid:DXImageTransform.Microsoft.Shadow(direction=-60,color=#D2BA8F,strength=4);
}

table.box-double-inner {
	width: 328px;
	border: #CCB186 1px solid;
	background-color: #ffffff;
	FILTER: progid:DXImageTransform.Microsoft.Shadow(direction=120,color=#D2BA8F,strength=4);
}

div.plainpage div.box-double-outer {
	width: 320px;
	_width: 325px;
	margin-left: 4px;
	margin-right: 8px;
	_margin-left: 0px;
	_margin-right: 0px;
}

div.plainpage table.box-double-inner {
	width: 320px;
	_width: 325px;
}

.box-double-end {
	clear: both;
}

div.box-outer-right {
	position: relative;
	width: 262px;
	float: right;
	margin-bottom: 0.75em;
	margin-left: 1em;
	margin-right: 1em;
	_margin-right: 0px;
	FILTER: progid:DXImageTransform.Microsoft.Shadow(direction=-60,color=#D2BA8F,strength=4);
}

table.box-inner-right {
	width: 262px;
	border: #CCB186 1px solid;
	background-color: #ffffff;
	FILTER: progid:DXImageTransform.Microsoft.Shadow(direction=120,color=#D2BA8F,strength=4);
}

table.box-inner-right .box-content {
	padding-bottom: 0px;
}

table.box-inner-right .box-content p {
	margin-bottom: 0.75em;
}

div.box-outer-left {
	position: relative;
	width: 262px;
	float: left;
	margin-bottom: 0.75em;
	margin-right: 1em;
	FILTER: progid:DXImageTransform.Microsoft.Shadow(direction=-60,color=#D2BA8F,strength=4);
}

table.box-inner-left {
	width: 262px;
	border: #CCB186 1px solid;
	background-color: #ffffff;
	FILTER: progid:DXImageTransform.Microsoft.Shadow(direction=120,color=#D2BA8F,strength=4);
}

table.box-inner-left .box-content {
	padding-bottom: 0px;
}

table.box-inner-left .box-content p {
	margin-bottom: 0.75em;
}

/* ####################################
   Message Boxes
   ################################## */

ul.warnings {
	margin-top: 0.5em;
	margin-bottom: 1.35em;
	list-style: url('/images/templates/icons/16x16_warning.gif') square;
}

	ul.warnings li {
		margin-bottom: 0.7em;
	}

div.messageError, p.messageError {
	margin: 15px 0; 
	padding: 15px;
	border: 1px solid #EC5F35;
}

	div.messageError h1, div.messageError h2, div.messageError h3, div.messageError h4 {
		font-family: arial, helvetica, sans-serif;
		font-size: 125%;
		font-weight: bold;
		margin-top: 0;
		margin-bottom: 0; 
		padding-bottom: 0; 
		color: #EC5F35;
		border: none;
		background: none;
	}

	div.messageError .code {
		margin-top: 2px; 
		padding-top: 0; 
		font-size: 91.7%; 
		font-weight: bold; 
		color: #EC5F35;
	}

div.messageConfirm, p.messageConfirm {
	margin: 15px 0; 
	padding: 15px;
	border: 1px solid #939f38;
}

	div.messageConfirm h1, div.messageConfirm h2, div.messageConfirm h3, div.messageConfirm h4 {
		font-family: arial, helvetica, sans-serif;
		font-size: 125%;
		font-weight: bold;
		margin-top: 0;
		margin-bottom: 0; 
		padding-bottom: 0; 
		color: #939f38;
		border: none;
		background: none;
	}

div.messageInfo, p.messageInfo {
	margin: 15px 0; 
	padding: 15px;
	border: 1px solid #EC5F35;
}

	div.messageInfo h1, div.messageInfo h2, div.messageInfo h3, div.messageInfo h4 {
		font-family: arial, helvetica, sans-serif;
		font-size: 125%;
		font-weight: bold;
		margin-top: 0;
		margin-bottom: 0; 
		padding-bottom: 0; 
		color: #EC5F35;
		border: none;
		background: none;
	}

