/* 
Version: 1.0
(date)

Screen layout: */

/******************************/
/***** STRUCTURE & LAYOUT *****/
/******************************/

body {
	/*
	settings for body:
	black background
	off-white text
	Times New Roman font
	*/
    <meta http-equiv="Page-Enter" content="blendTrans(Duration=4)">
	font-family: <font size="2" 
    face="Times New Roman, Arial Narrow, sans-serif"></font>;
	color: #FFFFFF;
	margin: 10px 0 0 0;
	padding: 0;
	background: #1C1C1C;
}
#wrap {
	/* sets the width of the site and centers it */
	width: 760px;
	background: #1C1C1C;
	clear: both;
	margin: 0 auto;
}

#header {
	/*
	this is the header div
	it will load the image to 500x85 pixels
	for best results, make your image this same size
	*/
	width: 500px;
	height: 85px;
	background: #1C1C1C url(../images/top.jpg) no-repeat;
	float: right;
}

#sitemenu {
	/*
	this is the picture behind the sitemenu
	it will load the image to 255x535 pixels
	for best results, make your image this same size
	*/
	width: 255px;
	height: 535px;
	background: #1C1C1C url(../images/Guitar1.jpg) no-repeat;
	float: left;
}

#main {
	/* 
	this is the main div
	the negative margin-top is to move the content up closer to the header image
	*/
	width: 500px;
	background: #1C1C1C;
	float: right;
	margin-top: -13px;
}

#main table {
	/* these are the settings for the table in the main div */
	padding: 10px 0 0 20px;
	text-align: center;
	vertical-align: top;
	color: #400040;
}

th {
	/* settings for table headers */
	font-size: 1.1em;
	font-style: italic;
	font-weight: bold;
	color: #cc9900;
	background: #1C1C1C;
}

table.shows {
	/* font size for shows class in table */
	font-size: 0.8em;
}

table.pictures {
	/*
       	font size for pictures class in table
        this is not being used right now
	*/
	font-size: 0.65em;
}

table.photo {
	/* sets padding around photos */
	padding: 0 50px;
}

#footer {
	/* settings for everything in the footer div */
	background: #1C1C1C;
	width: 760px;
	margin: 15px auto 5px auto;
	padding: 0 0 0 0;
	font-size: 0.65em ;
}

/***************************/
/***** SITE NAVIGATION *****/
/***************************/

#sitemenu ul {
	/*
	sets where the sitemenu links are in the sitemenu div
	70px from top
	45px from right
	*/
	padding: 0;
	margin: 70px 45px 0 0;
}

#sitemenu ul li {
	list-style: none;
	padding: 0 0 5px 0; /* makes next link 5px below previous one */
	text-align: right;
	color: #FFFFFF;
       	font-size: 14px;
}

/*****************/
/***** LINKS *****/
/*****************/

#sitemenu a {
	/* sets links for sitemenu */
	color: #FFFFFF;
	text-decoration: none;
}

#sitemenu a:hover {
	color: #cc0000;
	text-decoration: none;
}

#main a {
	/* sets links for anything in the main div */
	color: #cc9900;
}

#main a:hover {
	text-decoration: underline;
	color: #cc0000;
}

#footer a {
	/* sets links for anything in the footer div */
	text-decoration: none;
	color: #cc9900; 
}

#footer a:hover {
	text-decoration: underline;
	color: #cc0000;
}

/**************************/
/***** FONTS & COLORS *****/
/**************************/

h1 {
	/* this is the page title */
	margin: 0 0 0 20px;
	text-align: right;
	color: #FFF4BB; 
	border-bottom: 1px solid #cc9900;
	font-size: 1.4em;
	font-style: italic;
}

h2 {
	/* this is for a sub-heading inside a page title */
	text-align: left;
	font-style: italic;
	font-size: 1.1em;
	margin-left: 60px;
	width: 250px;
	color: #FFF4BB;
	padding-left: 5px;
}

p {
	/* settings for a paragraph */
	font-size: 0.9em;
	padding-left: 40px;
}

/*****************/
/***** LISTS *****/
/*****************/

#main ul {
	/*
	sets where the links are in the main div
	120px from left
	*/
	padding: 0;
	margin: 0 0 0 120px;
}

#main ul li {
	margin: 0;
	list-style: none;
	padding: 0 0 2px 0; /* next link is 2px below previous one */
	font-size: 0.8em;
}

/******************/
/***** IMAGES *****/
/******************/

img.photo {
	margin: 0 0 0 90px; /* images start 90px from left */
}

td.photos img {
	/*
	settings for the thumbnails
	for best results, create your thumbnails to the same size
	*/
	width: 96px;
	height: 72px;
	border: #999999 1px solid;
}

/*****************/
/***** FIXES *****/
/*****************/

/*
this is a fix for a CSS problem
don't modify any of this
*/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-table;
}
/* Hides from IE-mac */
html .clearfix {
	height: 1%;
}
.clearfix {display: block;}
/* End hide from IE-mac */
