@charset "UTF-8";
body  {
	background-color: #960;
	background-image: url(images/background_tile.jpg);
	background-repeat: repeat;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
}



a:link {
	color: #663300;
	text-decoration: none;
}

a:visited {
	color: #663300;
	text-decoration: none;
}


a:hover {
	color: #996633;
	text-decoration: none;

}


#container {
	width: 840px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #C96;
	background-image: url(images/background_image.jpg);
	height: 840px;
	font-family: Arial, Helvetica, sans-serif;
} 

#header {
	padding: 95px 40px 0 20px;
	text-align: right;
	height: 50px;
	font-size: 20px;
	font-weight: bold;
	
} 


#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 130px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 25px 2px 15px 40px;
	height: 600px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}
.sidebarNav {
	font-size: 17px;
	font-weight: bold;
	color: #663300;

}

.sidebarHead {
	font-size: 14px;
	font-weight: bold;
	color: #330000;
	font-style: italic;
	margin-top: 0px;
}


.sidebarQuote {
	font-size: 15px;
	font-weight: bold;
	color: #960;
	font-style: italic;
	margin-top: 0px;
	font-stretch: wider;
	line-height: 20px;
}


.sidebarList {
	font-size: 12px;
	font-weight: bold;
	color: #996633;

}

#mainContent {
	margin: 0 0 0  0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 40px 0 30px;
	color: #2B2219;
	height: 650px;
	overflow: auto;
	
} 

#mainContent a:link {
	color: #663300;
	text-decoration: underline;
}

#mainContent a:visited {
	color: #663300;
	text-decoration: underline;
}


#mainContent a:hover {
	color: #996633;
	text-decoration: none;

}

.mainHeadline {
	font-size: 22px;
	font-weight: bold;
	color: #330000;
	margin-top: 0px;
	top: 0px;
}

.mainSubhead1 {
	font-size: 18px;
	font-weight: bold;
	color: #663300;

}


.mainSubhead2 {
	font-size: 14px;
	font-weight: bold;
	color: #663300;

}

.mainBody {
	font-size: 14px;
	color: #663300;

}


.mainCDtitle {
	font-size: 16px;
	font-weight: bold;
	color: #2B2219;

}

.mainCDinfo {
	font-size: 13px;
	color: #2B2219;
	font-style: italic;
}

.mainCDsongs {
	font-size: 13px;
	color: #2B2219;

}



.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


#footer {
	padding: 10px 10px 0 20px;
} 

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 12px;
	font-style: italic;
	text-align: center;
}
