﻿/* -------------------------
	Notes:
	
	1. Color Table:
			Background:					#000000;
			Content Background:			#101010;
			Nav Gray Background: 		#505050;
	
	2. Image Sizes: 
			Gallery: 		650px wide, 557px high
			Thumbs: 		75px x 75px
			Repair:  		xxpx wide,  xxpx high
	
------------------------- */

/* =Global
-------------------------
	Global Container
		Notes:
			
------------------------- */

#invisible {
	display:none;
}
html {
	padding: 0;
	margin: 0;
	font-size: 100%; /* ensures font consistency across browsers */
}
body {
	padding: 0;
	margin: 0;
	background-color: #000000;
	background-image: url('../images/background.jpg');
	background-repeat:no-repeat;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
}
h1 {
	font-size: 24px; 
	color:#e6e6e6
}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 0px 0px 20px 0px;
	color: #fddc79;
	font-weight: normal;
	font-size:24px;
}
h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 0px 0px 20px 0px;
	color: #fddc79;
	font-weight: normal;
	font-size:16px;
}
h4 {
	font-size: 12px; 
	color:#e6e6e6
}
img, a img {
	border: none;
}

/* =Navigation
-------------------------
	Navigation Container
	Notes:
		
------------------------- */
#nav a {
	text-decoration:none;
	display:block;
	padding:7px 15px;
	font-size:.9em;
}
#nav, #nav ul { 
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1em;
	text-transform:lowercase;
}
#nav li { 
	display:block;
	list-style:none;
	position:relative;
	float:left;
}
a:link, a:visited { 
	color: #fff; 
	text-decoration:none;
}
a:hover, a:focus { 
	color: #fff;	
	background-color: #505050;
	text-decoration:none; 
}

/* =Master
-------------------------
	Master Container
	Notes:
		margin: 0px auto; centers the container horizontally except in IE5, which is fixed in the body tag
------------------------- */
#container {
	position: relative;
	margin: 100px 250px;
	padding: 0;
	min-height:500px;
	width: 700px;
	font-size: 12px;
	text-align: left; /* unfix all other browsers from the IE fix in the body tag above */
}
#logo {
	float:left;
	position:relative;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-align:left;
	color: #fff;
}
#panel {
	float:left;
	position:relative;
	margin:0;
	padding:0;
	width:100%;
	font-size:17px;
	line-height:27px;
}
#navigation {
	float:left;
	position:relative;
	margin:25px 0 0 0;
	width:100%;
}
#bassLeft {
	float:left;
	position:relative;
}
#descriptionRight {
	float:left;
	position:relative;
	width:480px;
	margin-left:20px;
}
#artist {
	float:left;
	position:relative;
	width:100%;
	margin:10px 0 10px 0;
}
.translucent1 {
    opacity: .35;                /* Standard style for transparency */
    -moz-opacity: .35;           /* Transparency for older Mozillas */
    filter: alpha(opacity=35);   /* Transparency for IE */
    zoom: 1;					 /* Stupid damn fix for IE */
}
.translucent2 {
    opacity: .75;                /* Standard style for transparency */
    -moz-opacity: .75;           /* Transparency for older Mozillas */
    filter: alpha(opacity=75);   /* Transparency for IE */
    zoom: 1;					 /* Stupid damn fix for IE */
}
.opaque {
    opacity: .8;                /* Standard style for transparency */
    -moz-opacity: .8;           /* Transparency for older Mozillas */
    filter: alpha(opacity=80);   /* Transparency for IE */
    zoom: 1;					 /* Stupid damn fix for IE */
}
.rightText {
	text-align:right;
	float:right;
}
.centerText {
	text-align:center;
}
.leftText {
	text-align:left;
}
.topMargin {
	margin-top:15px;
}
.fontSmall {
	font-size:10px;
}
.invisible {
	display:none;
}

/* =Content
-------------------------
	Content Container
	Notes:
		
------------------------- */
#content-main {
	position: relative;
	float:left;
	width: 100%;
	margin: 20px 0 0 0;
	padding: 20px;
	color:#bbb;
	background-color:#000;
}
#contentBody {
	float:left;
	position:relative;
	width:100%;
	margin: 0;
	line-height: 23px;
}
#contentLeft {
	font-size: 10px;
	margin: 0 0 0 0;
	padding: 25px 0 0 0;
	display: block;
	width:100%;
}
#content a {
	color: #666666;
	text-decoration: none;
}
#footer {
	position:relative;
	float:left;
	margin:35px 0 0 225px;
	width:775px;
	border-top: 1px solid #3f2324;
	padding: 20px 20px 20px 0;
	color: #674f5d;
	background-color:#080008;
	font-size: 9px;
	line-height: 15px;
}
.footerLogo {
	padding: 0 0px 0 20px;
}
.clear {
	clear: left;
}


