/* 
	Designed by Dave Shea www.brightcreative.com
	
	Bugfixed by Andrew Tay (www.andrewtay.com) for HostBaby.com October 2008
   All styles that have been changed are indented
	
	VINYL SOUL - ORIGINAL
	
	OCTOBER 2008:
	- moved #emailsignup from upper-left corner to below #navigation, changing both divs from psotion: absolute
	  to float: left; in the process. this was necessary because #emailsignup was actually sitting behind the
	  #banner image, which made it impossible to use, even when no #banner image was chosen
	- the #emailsignup fix inadvertedly corrected another bug where IE6 wasn't painting the background image in
	  the #content area correctly, likely due to a hasLayout problem
	- hid band name from #banner properly using text-indent
	- fixed an incorrectly used box model hack that was hiding important code from IE5 (#navigation padding)	
	- solved the infamous IE #navigation link bug, where only the text portion of the links were active. By
	  giving hasLayout to #navigation li a, the entire link blocks are now hoverable and clickable
	  
*/


body {
	background: #43180D url(/shared/vinylsoul/body-bg.gif);
	color: #000;
	padding: 0;
	margin: 0;
	text-align: center;
	font: x-small Helvetica, Arial, Verdana, sans-serif;
	voice-family: "\"}\"";
	voice-family:inherit;
	font-size: small;
}
 html>body {
	font-size: small;
}
ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
form {
	margin: 0;
}
a {
	color: #B05905;
	font-weight: bold;
}
a:hover {
	color: #ffdd99;
}
address {
	font-style: normal;
}
h1 {
	margin: 0 0 12px 0;
	text-transform: lowercase;
	font-weight: normal;
	padding: 0 30px 0 0;
	background: url(/shared/vinylsoul/h1-martini.gif) right center no-repeat;
	text-align: right;
}
h2 {
	font-size: 1.2em;
	font-weight: bold;
	position: relative;
	left: -32px;
	padding-left: 32px;
	text-transform: capitalize;
	margin: 2em 0 0 0;
	voice-family: "\"}\"";
	voice-family:inherit;
	background: url(/shared/vinylsoul/h2-arrow.gif) 18px 3px no-repeat;
}
h2 a {
	color: #fff;
}
h3 {
	font-size: 1.5em;
	text-transform: lowercase;
	margin: 0.5em 0 -3px 0;
}
h4 {
	font-size: 1em;
	margin-top: 0;
	color: #FFD02E;
	text-transform: lowercase;
}

/* ------- */

#container {
	background: url(/shared/vinylsoul/container-bg.gif) bottom left no-repeat;
	text-align: left;
	margin: 0;
}

			/* NEW!! All of this code serves to move the #emailsignup from the upper-left corner (where it was
				covered up by the #banner image to the whitespace (okay, brownstripyspace) below #navigation. This
				looks better if it sits right below the nav, which can only be achieved by floating #navigation
				and #emailsignup. Designed to be forgiving if, in the future, there are more nav links. */
				
         #emailsignup {
         /*	position: absolute;			NEW!! now using float: left so #emailsignup can sit right below nav */
				float: left;
				clear: both;				/* NEW!! forces #emailsignup to sit below nav instead of floating beside */
				margin-left: 8px;
				margin-top: 0;
				width: 185px;							
				padding: 15px 33px 15px 40px;													/* NEW!! creates "invisible" */
				background: #43180D url(/shared/vinylsoul/body-bg.gif) -8px 0;		/*			background */
				display: inline;			/* NEW!! cures IE doubled float margin bug */
         	color: #fff;
         	text-transform: lowercase;
         	font-weight: normal;
         	font-size: 1em;
				line-height: 1.4;			/* NEW!! increases spacing */
         }

         /* NEW!! An ultra-safe hack for IE6 and IE5 only, combining the Tan hack and the Pixy hack. The
         	* html makes sure that only IE5/6 see any of this (and the underscores act as a backup). The
         	backslashes pass real values to IE6 that override the fake values for IE5 (box model problem). */
         
            * html #emailsignup { 		
            	_width: 258px;			/* fake width for IE5win only = real width + padding + border */
               _w\idth: 185px;
               }

					
         #emailsignup input {
         	width: 60px;			
				line-height: 1.2;			/* NEW!! resets line-height */
         }
			
			#emailsignup input#list_email {
				width: 118px;	
			}
			
         #content {
         	background: url(/shared/vinylsoul/content-bg.gif) top right repeat-y;
         	color: #fff;
         	margin: 0 0 0 332px;
         	padding: 20px 70px 20px 0;
				min-height: 346px;
         }

         /* NEW!! An ultra-safe hack for IE6 and IE5 only, combining the Tan hack and the Pixy hack. The
         	* html makes sure that only IE5/6 see any of this (and the underscores act as a backup). These
				heights are much higher than the standard min-height in order to push the #footer below the floats,
				which were pushing #footer 3px to the right due to the IE float model problem. */
         
         * html #content { 		
            _height: 490px;		/* fake height for IE5win only = real min-height + padding + border */
            _he\ight: 450px;		/* IE6 treats this as min-height */
            }


			/* NEW!! In the better browsers, incl. FF2, FF3, Opera, and Safari, #banner automatically extends to
				the full width of the viewport because they implement the float model correctly. But not IE5/6/7, so
				we give them some help by eliminating width: 100% (which would wreck the layout in IE), and by using
				the same background-image in #banner .band, which happens to be positioned absolutely exactly
				where we needed. Lucky day. If the user chooses his/her/its own background, it will override this
				without any trouble, but it doesn't work so well with a semi-transparent logo. */

         #banner {
         	background: #fff url(/shared/vinylsoul/banner-bg.gif) 0 0 repeat-x;
         	height: 162px;
         /*	width: 100%; 		NEW!! This messed up the new layout in IE5/6/7, but it wasn't needed anyway */
         	margin: 0;
         }
			
         #banner .band {
         	width: 316px;
         	overflow: hidden;
         	background: #fff url(/shared/vinylsoul/banner-bg.gif) 0 0 repeat-x;	/* NEW!! needed for IE */
background: url(/images/logo-cropped-alltopleft.jpg) 0 0 no-repeat;
         	position: absolute;
         	top: 0;
         	left: 0;
         	height: 162px;
         	font-size: 1px;
         	color: #fff;
				text-indent: -9999px;		/* NEW!! This hides the band name properly */
         /* IE5 hacks \*/
         	voice-family: "\"}\"";
         	voice-family:inherit;
         	height: 0;
         	padding-top: 162px;
         /* end hacks */
          }


#banner .photo {
	width: 196px;
	overflow: hidden;
background: url(/images/Paul_In_Heaven-cropped-alltopright.jpg) 0 0 no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	height: 162px;
	font-size: 1px;
	color: #fff;
/* IE5 hacks \*/
	voice-family: "\"}\"";
	voice-family:inherit;
	height: 0;
	padding-top: 162px;
/* end hacks */
}
 #banner {
}

         #navigation {
         	width: 266px;
         /*	position: absolute;			NEW!! now using float: left so #emailsignup can sit right below nav
         	top: 162px; 	*/
         	background: url(/shared/vinylsoul/nav-bg.gif) 0 0 repeat-y;
				float: left;				/* NEW!! now using float: left so #emailsignup can sit right below nav */
				margin-top: 162px;		/* NEW!! now using float: left so #emailsignup can sit right below nav */
         }
         
         #navigation ul {
         	margin: 0;
         	background: url(/shared/vinylsoul/nav-ul-bg.gif) bottom left no-repeat;
         /*	padding: 0;
         	voice-family: "\"}\"";		NEW!! this hack accomplished nothing, yet it broke the layout in IE5
         	voice-family:inherit; 				by denying it the padding it needed to display the last nav link */
         	padding: 0 0 45px 0;
         }
         
#navigation li {
	display: inline;
}
#navigation li a {
	display: block;
	color: #fff;
	text-decoration: none;
	text-transform: lowercase;
	padding: 0.5em 50px 0.5em 59px;
	margin: 0;
	font-weight: normal;
	font-size: 1.1em;
}
#navigation li a:hover {
	background: url(/shared/vinylsoul/nav-li-arrow2.gif) 44px 11px no-repeat;
}

/* ------- */

.name, .act {
	font-weight: bold;
	text-transform: lowercase;
	color: #FFD02E;
	margin-right: 0.7em;
}
address {
	margin-top: 1em;
}
#postForm {
	border: solid 2px #B05905;
	border-width: 0 1px 2px 0;
	margin: 15px 35px 30px 35px;
	padding: 10px;
	background: #EAB428;
}
#postForm input, #postForm label, #postForm textarea {
	display: block;
	text-align: left;
	width: 300px;
	margin: 0 auto 10px auto;
}
#postForm label {
	color: #fff;
	padding: 3px;
	margin-bottom: 1px;
	width: 294px;
	font-weight: bold;
}
#postForm input[type="submit"] {
	width: 200px;
	margin: 0 auto;
}

/* Captcha stuff */
#postForm img#gbimage {
	width: 100px;
	display: block;
	margin: auto;
}

#postForm input[type="submit"] {
	text-align: center;
}

.guestbook h3 {
	font-size: 1em;
	margin-top: 0;
	color: #FFD02E;
	text-transform: lowercase;
}
.links h3, .music h3 {
	font-size: 1.2em;
}
.music .artist, .music .caption {
	display: inline;
	padding-right: 10px;
	font-weight: bold;
	color: #FFD02E;
}
.music .description {
	line-height: 150%;
	font-style: italic;
}
.music #content ul {
	border: solid 2px #B05905;
	border-width: 0 1px 2px 0;
	margin: 15px 35px 30px 35px;
	padding: 10px;
	background: #EAB428;
}
.music #content li a {
	font-weight: normal;
	color: #fff;
}
.music #content li a:hover {
	color: #f00;
}
.music .mp3_hifi_download, .music .mp3_lofi_download {
	padding: 6px 0 6px 25px;
	background: url(/shared/vinylsoul/ico-cd.gif) no-repeat;
	display: block;
}
.music .mp3_hifi_play, .music .mp3_lofi_play {
	padding: 6px 0 6px 25px;
	background: url(/shared/vinylsoul/ico-play.gif) no-repeat;
	display: block;
}
.photos dt {
	font-weight: bold;
	font-size: 1.1em;
	font-style: italic;
	color: #fff;
}
.photos dd {
	margin: 0 0 20px 0;
	padding: 2px;
	background: #fff;
	text-align: center;
}
.press h2 {
	margin-left: 40px;
	margin-right: 40px;
	margin-top: 10px;
}
.press .caption {
	margin: 0 40px 40px;
	padding: 5px 5px 5px 30px;
	background: url(/shared/vinylsoul/ico-speech.gif) no-repeat;
}


#footer {
	margin: 0 0 0 273px;
	height: 120px;
	background: url(/shared/vinylsoul/footer-bg.gif) bottom left no-repeat;
}
#footer p {
	margin: 0;
	color: #fff;
	text-align: center;
	background: url(/shared/vinylsoul/footer-p-bg.gif) bottom right no-repeat;
	padding: 15px 20px 0 20px;
	height: 120px;
	voice-family: "\"}\"";
	voice-family:inherit;
	height: 105px;
}

/* -- selected links --*/
.home #navhome, .blog #navblog, .index #navindex, .music #navmusic, .contact #navcontact,   .press #navpress, .news #navnews, .photos #navphotos, .guestbook #navguestbook,  .links #navlinks, .calendar #navcalendar, .bio #navbio, .products #navproducts {
	font-weight: bold;
	background: url(/shared/vinylsoul/nav-li-arrow.gif) 44px 11px no-repeat;
}

/* accessibility tweaks */
#accessibility {
	position: absolute;
	left: -9999px;
}


			/* NEW!! These two lines give hasLayout to the #navigation links in IE5/6/7, which allows the links to
				to behave properly as blocks--i.e. placing the mouse anywhere in the block causes the hover effect
				to appear, and you can click anywhere in the block to activate the link. The first line is seen
				by all browsers but does not change appearance. The second line is seen only by IE5 & IE6 due
				to an utra-safe hack (combined * html and underscore hack). */
				
			#navigation li a {min-height: 0;}			/* NEW!! triggers hasLayout in IE7 */
			* html #navigation li a {_height: 0;}		/* NEW!! triggers hasLayout in IE6 & IE5 */
			

#splashimage { text-align: center; margin: 100px auto; }
#splashimage a img { border: 0; }




