html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote,
pre, form, fieldset, table, th, td {
	margin: 0;
	padding: 0;
}

body {
	background-color: #000;
	line-height: 1.2em;
	font: 62.5%/1.6 "Georgia","Times New Roman", "Times", serif;
}

#mp3player {
position:absolute;
z-index:0;
width:322px;
margin-left: 10px;
margin-top: 5px;
}

a {
	outline: none;
}

#thephoto {
	position:absolute;
	width:1600px;
	height:900px;
	z-index: -2;
	top:0; left:0;
	}
	
#header_wrapper {
	margin: 0px auto;
	padding: 0px 25px 30px 25px;
	width: 938px;
}

#header {
	height: 65px;
	width: 100%;
}

#header h1 {
	color: #fff;
	float: left;
	font-size: 3.6em;
	letter-spacing: -1px;
	line-height: 85px;
	padding: 0px 0px 0px 46px;
}

#header h1 a {
	color: #fff;
	text-decoration: none;
}


.menu, .menu ul {
	float:right;
	letter-spacing: 3px;
	word-spacing:22px
	margin: 0;
	padding: 0px;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(graphics/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */

/* - - - ADxMenu: DESIGN styles - - - */

.menu{
	color: #fff;
	font-size:15px;
}

.menu ul li {
font-size: 12px;
text-align:center;
}

.menu ul {
	width: 7em;
}

.menu a {
	text-decoration: none;
	color: #fff;
	padding: .4em 1em;
	display: block;
	position: relative;
}

.menu a:hover, .menu li:hover>a {
	color: #bba563;
}


.menu li li {	/* create borders around each item */
	border: 1px solid #333;
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}



#logo_fade { 
float:right;
width: 500px;
top:0px; 
right:0px;
margin-top:65px;
padding:0px; 
}
/* Content */

#content {
	margin: 0 auto;
	min-height: 400px;
	padding: 0px 25px 5px 25px;
	width: 938px;
}

#content h1 { /* Stylized for usability, but should be reserved for header, use h2 */
	color: #fff;
	font-size: 4.8em;
}

#content h2 {
	border-bottom: 1px dotted #595858;
	color: #bba563;
	font-size: 3.0em;
	height: 42px;
	line-height: 38px;
	margin: 0px 0px 10px 0px;
}

#content h2.inline {
	border-bottom: 0px;
	height: auto;
}

#content h3 {
	color: #fff;
	font-size: 2.4em;
	line-height: 25px;
	margin: 5px 0px 7px 0px;
}

#content h3 a {
	color: #fff;
	font-size: 1.0em;
	text-decoration: none;
}

#content h3 a:hover {
	text-decoration: underline;
}

#content h4 {
	color: #fff;
	font-size: 1.8em;
}

#content h5 {
	color: #fff;
	font-size: 1.3em;
}

#content h6 {
	color: #fff;
	font-size: 1.1em;
}

#content p {
	color: #fff;
	font-size: 1.5em;
	padding: 8px 0px 8px 0px;
	text-align: justify;
}

#content a {
	color: #bba563;
	text-decoration: none;
}

#content a:hover {
	color: #bba563;
	text-decoration: underline;
}

#content ul li {
	font-size: 1.2em;
}

#content table {
	border-collapse: collapse;
	color: #fff;
	font-size: 1.2em;
	margin: 10px 0px 10px 0px;
}

#content tr {
}

#content tr.odd_row {
	background-color: #333;
}

#content th {
	text-align: left;
	padding: 2px 20px 3px 5px;
}

#content td {
	padding: 2px 25px 3px 5px;
}

#content blockquote {
	background-color: #262626;
	border: 1px solid #333;
	color: #fff;
	font-size: 1.1em;
	font-style: italic;
	line-height: 25px;
	margin: 10px 0px 10px 0px;
	padding: 20px 20px 20px 40px;
}

#content a.list_link { /* Group of links with gradient background */
	background: url(../graphics/link_gradient_bg.png) repeat-x;
	border: 1px solid #333;
	color: #fff;
	display: block;
	float: left;
	font-size: 1.2em;
	font-weight: 400;
	line-height: 32px;
	margin: 5px 0px 10px -1px;
	padding: 0px 10px 0px 10px;
	text-decoration: none;
}

#content a.list_link:hover {
	color: #ccc;
}

#content a.list_link:active {
	background: url(../graphics/link_bg_inverted.png) repeat-x;
}

#main_column {
	float: right;
	width: 550px;
}

#main_column img {
	width: 100%;
}
#main_column a.send{
	font-size: 16px;
	display:block;
	width:79px;
	height:23px;
	float:right;
	margin: 10px 18px 0 0;
	text-align:center;
	text-decoration:none;
	color: #ffffff;
	line-height:23px;
	background-image:url(../images/read_more.gif);
	background-repeat: no-repeat;
	background-position: center;
}
#main_column a.send:hover{
	text-decoration: underline;
}
#side_column {
	float: left;
	margin: 400px 0px 0px 0px;
	padding: 5px 0px;
	width: 360px;
}

#side_column h3 {
	border-bottom: 1px solid #333;
	color: #fff;
	font-size: 2.0em;
	line-height: 26px;
	padding: 2px 0px 10px 10px;
	margin: 0px;
}

#side_column ul {
	border-bottom: 1px solid #333;
	margin-bottom: 3px;
}

#side_column li {
	color: #fff;
	font-size: 1.2em;
	list-style-type: none;
}

#side_column li a {
	color: #ccc;
	display: block;
	font-size: 1.0em;
	font-weight: 400;
	padding: 3px 0px 3px 10px;
	text-decoration: none;
}

#side_column li a:hover {
	background-color: #262626;
}


/*--------------------------------------------------
PHOTOS
---------------------------------------------------*/
#photo_gallery{
	float: left;
	padding: 0px 25px 5px 25px;
	width: 900px;
}

#bread_crumbs { /* Small nav under each header */
}

#bread_crumbs ul {
	border: 1px solid #333;
	border-bottom: 1px solid #333;
	height: 35px;
	margin: -6px -1px 5px -1px;
}

#bread_crumbs li {
	color: #fff;
	display: inline;
	float: left;
	font-size: 1.2em;
	font-weight: bold;
	list-style-type: none;
	margin-right: -5px;
	padding: 7px 0px 0px 10px;
}

#bread_crumbs li a {
	color: #fff;
	display: inline;
	font-weight: 900;
	text-decoration: none;
	padding: 0px;
}

#bread_crumbs li a:hover {
	background-color: transparent;
	text-decoration: underline;
}

/*--------------------------------------------------
AWARDS
---------------------------------------------------*/
ul#awardslist { 
margin:0px; padding:0px;
}
ul#awardslist li {
	font-size:1.3em;
	padding-bottom: 5px;
	border-bottom:1px dotted #595858;
	list-style:none;
	text-align: left;
}

#side_column a.send{
	font-size: 16px;
	display:block;
	width:79px;
	height:23px;
	float:right;
	margin: 10px 18px 0 0;
	text-align:center;
	text-decoration:none;
	color: #ffffff;
	line-height:23px;
	background-image:url(../images/read_more.gif);
	background-repeat: no-repeat;
	background-position: center;
}
#side_column a.send:hover{
	text-decoration: underline;
}

/*--------------------------------------------------
SONGS
---------------------------------------------------*/
ul#songlist { 
margin:0px; padding:0px;
}
ul#songlist li {
	font-size:1.5em;
	padding:2px;
	border-bottom:1px dotted #595858;
	list-style:none;
	text-align: left;
	color: #fff;
}

#song_list {
	float: left;
	width: 400px;
	margin-top: 145px;
}

#song_list2 {
	float: right;
	width: 400px;
}

#song_list2 a.send{
	font-size: 16px;
	display:block;
	width:79px;
	height:23px;
	float:right;
	margin: 10px 18px 0 0;
	text-align:center;
	text-decoration:none;
	color: #ffffff;
	line-height:23px;
	background-image:url(../images/read_more.gif);
	background-repeat: no-repeat;
	background-position: center;
}
#song_list2 a.send:hover{
	text-decoration: underline;
}

/*--------------------------------------------------
FOOTER
---------------------------------------------------*/

#footer {
	margin: 0px auto 15px auto;
	min-height: 40px;
	padding: 0px 0px 15px 0px;
	width: 938px;
	border-top:thin solid #bba563;
}

#footer .footer_section {
	color: #ccc;
	float: right;
	width: 450px;
	font-size: 1em;
	letter-spacing:1px;
	padding: 0px;
	margin-right:0px;
	text-align: right;
}

#footer .footer_section ul {
	list-style-type: none;
}

#footer .footer_section li {
	font-size: 1.1em;
}

#footer .footer_section a {
	color: #fff;
	padding: 2px 0px 2px 0px;
	text-decoration: none;
}

#footer .footer_section a:hover {
	text-decoration: underline;
}


/* Home Page Styling */

/* Home Page Bio / Accordion */

#mini_bio {
	float: right;
	height: 650px;
	padding: 0px 12px 0px 0px;
	width: 448px;
}

#mini_bio .news p {
border-bottom: 1px dotted #595858;
	font-size:14px;
}

#mini_bio .news h3 {
color:#cccccc;
margin: 0 0 2px 0;
}

#discography {
	border-top: 1px solid #333;
	height: 150px;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 5px 0px;
	position: relative;
	width: 938px;
}

#discography h3 {
	font-size: 2.2em;
	letter-spacing: -1px;
	margin: 0px 0px 8px 0px;
}

#discography #view_albums { /* Right side link that goes to albums page */
	border: 1px solid #333;
	color: #ddd;
	float: right;
	font-weight: 400;
	padding: 3px 8px 3px 10px;
	position: absolute;
	right: 0px;
	top: -1px;
	text-decoration: none;
}

#discography #view_albums:hover {
	background-color: #333;
}

#discography .album_summary {
	border-right: 1px solid #333;
	float: left;
	height: 107px;
	list-style-type: none;
	margin: 3px 10px 0px 0px;
	overflow: hidden;
	position: relative;
}

#discography .album_summary img {
	height: 107px;
	float: left;
	margin-right: 15px;
	width: 107px;
}

#discography .album_summary h4 {
	display: none;
	font-size: 1.4em;
	font-weight: 400;
	left: 122px;
	position: absolute;
	top: 0px;
	width: 178px;
}

#discography .album_summary p {
	display: none;
	font-size: 1.0em;
	left: 122px;
	position: absolute;
	top: 20px;
	width: 178px;
}

#discography #first_album_summary {
	width: 300px;
}

#discography #first_album_summary h4, #discography #first_album_summary p {
	display: block;
}



/* Tour Info Page Styling */

#main_concert {
	border-bottom: 1px solid #333;
	height: 215px;
	margin: 0px 0px 15px 0px;
	padding: 0px 0px 15px 0px;
	width: 100%;
}

#main_concert h3 {
	font-size: 2.2em;
	margin-bottom: 0px;
}

#main_concert img {
	border: 1px solid #333;
	float: left;
	height: 215px;
	margin: 3px 27px 0px 0px;
	width: 273px;
}

#upcoming_concerts { /* Five upcoming concerts */
	float: right;
	margin: 0px 0px 0px 0px;
	width: 273px;
}

.summary_concert {
	border-bottom: 1px solid #333;
	height: 180px;
	margin: 0px 0px 15px 0px;
	width: 273px;
}

#content .summary_concert h4 {
	color: #fff;
	font-size: 2.0em;
	line-height: 24px;
}

#tour_dates {
float: right;
width: 550px;
min-height: 600px;
}

#tour_dates td { 
	padding:10px; 
	}

#tour_dates a:hover { 
	text-decoration:underline; 
	}

#list_tour_dates { /* Specialized list with three categories */
	float: right;
	list-style-type: none;
	margin: 0px 0px 10px 0px;
	width: 550px;
}

#list_tour_dates li {
	color: #fff;
	font-size: 1.2em;
	padding: 20px 0px 20px 5px;
}

#list_tour_dates li.odd {
	background-color: #272727;
}

#list_tour_dates li span.important {
	font-size: 1.1em;
}

#list_tour_dates li a {
	border-left: 1px solid #333;
	color: #fff;
	font-size: 1.0em;
	font-weight: 800;
	padding: 2px 0px 1px 10px;
	text-decoration: none;
}

#list_tour_dates li a:hover {
	color: #aaa;
}

#list_tour_dates li span.first_category {
	color:#bba563;
	display: block;
	float: left;
	width: 135px;
}

#list_tour_dates li span.second_category {
	display: block;
	float: left;
	width: 135px;
}

#list_tour_dates li span.fourth_category {
	display: block;
	float: left;
	width: 150px;
}

/* Tour Photos Page Styling */

#content #tour_albums {
	list-style-type: none;
	position: relative;
}

#content #tour_albums li {
	background-color: #333;
	float: left;
	height: 240px;
	margin: 0px 12px 11px 0px;
	width: 178px;
}

#content #tour_albums li.last_row_item {
	margin-right: 0px;
}

#content #tour_albums li h3 {
	font-size: 1.4em;
	margin: 5px 10px 7px 10px;
}

#content #tour_albums li img {
	height: 162px;
	margin: 0px 0px 10px 10px;
	width: 157px;
}

#content #tour_albums li p {
	font-size: 0.88em;
	margin: -13px 0px 0px 10px;
	text-align: center;
}

#content #tour_albums li div.photo_container {
	background-color: #222;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	display: none;
	height: 465px;
	left: -25px;
	overflow: hidden;
	padding: 20px 5px 20px 5px;
	position: absolute;
	top: -11px;
	width: 978px;
	z-index: 8;
}

#content #tour_albums li div.photo_container div.photo_buffer { /* Actual images are stored in this div */
	background-color: #222;
	overflow: hidden;
	position: relative;
	z-index: 5;
}

#content #tour_albums li div div.exit_container {
	background-color: #222;
	height: 25px;
	position: absolute;
	right: 5px;
	top: 0px;
	width: 100%;
	z-index: 10;
}

#content #tour_albums li div .exit {
	border: 1px solid #333;
	color: #ddd;
	float: right;
	font-size: 1.0em;
	font-weight: 400;
	margin: -1px 13px -5px 0px;
	padding: 2px 10px 2px 10px;
	text-decoration: none;
}

#content #tour_albums li div .exit:hover {
	background-color: #444;
}

#content #tour_albums li div img {
	border: 1px solid #333;
	float: left;
	
	margin: 15px 5px 0px 10px;
	width: 300px;
}

#content #tour_albums li div img:hover {
	cursor: pointer;
}

#content #tour_albums li div.album_controls {
	background-color: #222;
	bottom: 0px;
	height: 25px;
	position: absolute;
	width: 100%;
	z-index: 10;
}

#content #tour_albums li div.album_controls a {
	border: 1px solid #333;
	color: #555;
	display: block;
	float: left;
	left: 464px;
	font-weight: 400;
	height: 25px;
	margin-right: -1px;
	position: relative;
	text-decoration: none;
	top: 3px;
	width: 34px;
}

#content #tour_albums li div.album_controls .up_control {
	background: url(../graphics/arrow_up.png) no-repeat;
	background-position: -34px 0px;
	color: #aaa;
	cursor: default;
}

#content #tour_albums li div.album_controls .down_control {
	background: url(../graphics/arrow_down.png) no-repeat;
}

/* Merchandise Page Styling */

#content #merchandise_container {
	list-style-type: none;
	position: relative;
}

#content #merchandise_container li {
	background-color: #333;
	float: left;
	margin: 0px 12px 11px 0px;
	padding: 10px 0px 10px 0px;
	width: 178px;
}

#content #merchandise_container li.last_row_item {
	margin-right: 0px;
}

#content #merchandise_container li h3 {
	font-size: 1.4em;
	margin: -5px 10px 7px 10px;
}

#content #merchandise_container li img {
	height: 152px;
	margin: 0px 0px 10px 10px;
	width: 157px;
}

#content #merchandise_container li a {
	background-color: #444;
	border: 1px solid #555;
	color: #fff;
	float: right;
	font-size: 1.0em;
	font-weight: 400;
	margin: -5px 10px 0px 0px;
	padding: 3px 10px 2px 10px;
	text-decoration: none;
}

/* Album Page Styling */

#content .album_section {
	border: 1px solid #333;
	height: 80px;
	list-style-type: none;
	margin: 10px 0px 10px 0px;
	overflow: hidden;
	position: relative;
	width: 700px;
}

#content .album_section .album_cover {
	height: 80px;
	left: 10px;
	position: absolute;
	top: 10px;
	width: 80px;
	z-index: 4;
	background-image: url(covers/R1.jpg);
}

#content .album_section h3 {
	color: #fff;
	display: inline;
	float: left;
	font-size: 2em;
	height: 30px;
	letter-spacing: -0.5px;
	padding: 32px 5px 5px 0px;
	position: absolute;
	top: -1px;
	z-index: 4;
	left: 13px;
}

#content .album_section .buy_album {
	border-left: 1px solid #333;
	height: 75px;
	padding: 0px 10px 0px 20px;
	position: absolute;
	right: 10px;
	top: 12px;
	z-index: 6;
}

#content .album_section .buy_album a {
	background-color: #222;
	border: 1px solid #444;
	color: #fff;
	font-size: 1.0em;
	font-weight: 400;
	margin-left: 5px;
	padding: 5px 10px;
	text-decoration: none;
	position: relative;
	top: 27px;
	z-index: 6;
}

#content .album_section .buy_album a:hover {
	background-color: #333;
}

#content .album_section .open_album { /* Invisible link to open albums */
	display: block;
	height: 100px;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 936px;
	z-index: 5;
}

#content .album_info {
	border-top: 1px solid #333;
	left: 0px;
	min-height: 100px;
	padding: 10px 0px 10px 0px; /* Make sure to update album_ui.js if you change the top / bottom values, see help file */
	position: absolute;
	top: 100px;
	width: 916px;
}

#content .album_info .album_extras {
	float: left;
	list-style-type: none;
	margin-left: 10px;
	text-align: right;
	width: 135px;
}

#content .album_info .album_extras h4 {
	background-color: #222;
	color: #fff;
	font-size: 1.4em;
	margin: -5px 0px 0px 0px;
}

#content .album_info .album_extras p {
	font-size: .9em;
}

#content .album_info .album_extras p.important {
	border-bottom: 1px solid #333;
	color: #fff;
	font-weight: 400;
	margin-bottom: -5px;
	padding: 10px 0px 0px 0px;
}

#content .album_info .album_songs {
	float: right;
	width: 750px;
}

#content .album_info .album_songs li {
	color: #fff;
	font-size: 1.2em;
	height: 24px;
	font-size: 1.0em;
	list-style-type: none;
	padding: 5px 5px 2px 5px;
}

#content .album_info .album_songs li a {
	background-color: #222;
	border: 1px solid #333;
	color: #fff;
	float: right;
	font-size: .9em;
	font-weight: 400;
	margin: 0px 0px 0px 5px;
	padding: 1px 10px 1px 10px;
	position: relative;
	top: 0px;
	text-decoration: none;
}

#content .album_info .album_songs li a:hover {
	background-color: #333;
}

#content .album_info .album_songs .odd_song {
	background-color: #262626;
}

/* Bio Page Styling */

/* Contact Page Styling */

#contact_area {
	height: 500px;
	margin: 0px 0px 10px 0px;
	padding: 0px 10px 0px 10px;
	width: 500px;
	min-height: 650px;
	float: right;
}


/*--------------------------------------------------
CONTACT FORM
---------------------------------------------------*/
.contact_form{
	width:500px;
	float:left;
	margin: -30px 0 30px 0;
	padding:15px 0 0px 0;
}
.form_row{
	width:425px;
	padding:50px 0 10px 0;
	color:#a53d17;
}
label.contact{
	width:35px;
	float:left;
	font-size:12px;
	text-align:left;
	margin: -20px 0 0 0;
	color: white;
}
input.contact_input{
	width:225px;
	height:22px;
	background-color:#3f3f3f;
	color:#FFFFFF;
	border:1px #565656 solid;
	float:left;
	padding:4px 0 0 3px;
}
textarea.contact_textarea{
	width:425px;
	height:200px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#FFFFFF;
	background-color:#3f3f3f;
	border:1px #565656 solid;
	float:left;
	padding:4px 0 0 3px;
}
.contact_info{
	clear:both;
	float:left;
	width:560px;
	padding:20px 0 0 0;
}
#mainContent a.send{
	display:block;
	width:79px;
	height:23px;
	float:right;
	margin: 10px 18px 0 0;
	text-align:center;
	text-decoration:none;
	color: #ffffff;
	line-height:23px;
	background-image:url(../images/read_more.gif);
	background-repeat: no-repeat;
	background-position: center;
}
#mainContent a.send:hover{
	text-decoration: underline;
}



/* Predefined Classes */

.clear_div { /* For floated divs, this makes their height recognized in parent divs */
	clear: both;
}

.important {
	color: #fff;
	font-weight: 900;
}

.left_aligned {
	float: left;
}

.right_aligned {
	float: right;
}

img.left_aligned {
	float: left;
	margin: 8px 14px 0px 0px;
	max-width: 100%;
	width: auto;
}

img.right_aligned {
	float: right;
	margin: 9px 0px 0px 14px;
	max-width: 100%;
	width: auto;
}

.full_width { /* For images and margin positioning */
	margin: 10px 0px 10px 0px;
}

