body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666;
	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: #000;
}
#home {}
#about {}
#schedule {}
#gold {}
#silver {}
#contact {}

#container { /* this contains the page's entire content, excluding the background outside the 750px width */
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background:  url(images/header.jpg) no-repeat top;
	display: block;
	height: 150px;
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 165px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB url(images/link_end.jpg) bottom repeat-x; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 15px 0px;
}
#sidebar1 ul{
	list-style: none;
	font: 100% Times;
	font-weight: bold;
}
#sidebar1 li{
	line-height: 25px;
	text-indent: 20px;
	text-decoration: none;
	padding: 2px;
	margin: 0 0 0 -35px;
	line-height: 25px;
}
#sidebar1 li a:link, #sidebar1 li a:visited {
	background: url(images/link.jpg) right no-repeat;
	text-decoration: none;
	display: block;
	width: 150px;
	height: 25px;
	color: #000;
	margin: 0px 0px 0px 0px;
}
#sidebar1 li a:hover{
	background: url(images/link.jpg) left;
	color: #900;
	margin: 0;
}
#goldband { 
	background: url(images/goldband.jpg) no-repeat top;
	display: block;
	height: 48px;
	padding: 0;
}
#silverband { 
	background: url(images/silverband.jpg) no-repeat top;
	display: block;
	height: 48px;
	padding: 0;
}
#mainContent {
	font-size: 80%;
	margin: 0 20px 0 200px;
	padding: 0 20px 0 0;
	background: url(images/watermark.jpg) bottom right no-repeat;
}
#contact #mainContent {
	background: #fff;
}

a:link.download_na, a:visited.download_na{
	background: url(images/download_na.jpg) right no-repeat;
	text-decoration: none;
	display: block;
	width: 130px;
	height: 42px;
	color: #000;
	font-size: 1.2em;
	font-weight: bold;
	margin: 0;
	padding: 0 0 0 0;
}
a:hover.download_na{background: url(images/download_na.jpg) left no-repeat; color: #900;}

a:link.download, a:visited.download{
	background: url(images/download.jpg) right no-repeat;
	text-decoration: none;
	display: block;
	width: 130px;
	height: 42px;
	color: #000;
	font-size: 1.2em;
	font-weight: bold;
	margin: 0;
	padding: 0 0 0 0;
}
a:hover.download{background: url(images/download.jpg) left no-repeat; color: #900;}

#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(images/copyright.jpg) bottom repeat-x;
	height: 35px;
} 
#footer p {
	font-size: 0.8em;
	margin: 0 0 0 0;
	padding: 5px 0 0 0;
	color: #666;
}
#footer .design {
	margin: 0 0 0 0;
	padding: 0px;
	font-size: 0.6em;
	color: #999;
	font-weight: bold;
}
td {vertical-align: top; padding: 5px 10px}
#footer a:link, #footer a:visited{color: #999; text-decoration: none;}
#footer a:hover{color: #3686ff}
h1 {font-size: 1.5em; color: #999;}
h2 {font-size: 1.4em; color: #666;}
.b {font-weight: bold;}
.i {font-style: italic;}
.igray1 {font-style: italic; color: #999;}
.bi {font-weight: bold; font-style: italic;}
.contact {text-align: center; font-size: 1.2 em;}
.gray1 {color: #999;}
.alginDown {vertical-align: bottom;}
.noinfo {color: #777; font-style: italic;}
.warning {border: dotted; border-color: #f00; padding: 5px; background: #eee; }
.note {font-size: 1.2em; border: dotted; border-color: #00f; padding: 5px; background: #eee; }
/* gold band song list */
.goldsongs {padding: 0; margin: 0;}
.a {background: #eee;}
.b {background: #ccc;}
.title {font-style: italic; text-align: left; width: 300px}
.comp {text-align: right; font-weight: bold; color: #666;}
.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;
}

</style><!--[if IE 5]>
<style type="text/css">
/* place css box model fixes for IE 5* in this conditional comment */
#sidebar1 {
	width: 165px;
}
</style>
<![endif]--><!--[if IE]>
<style type="text/css">
/* place css fixes for all versions of IE in this conditional comment */
#sidebar1 { padding-top: 30px;}
#goldband { 
	background:  url(images/goldband.jpg) no-repeat top 0px;
	display: block;
	height: 48px;
	padding: 0;
}
#silverband { 
	background:  url(images/silverband.jpg) no-repeat top 0px;
	display: block;
	height: 48px;
	padding: 0;
}
#mainContent {
	zoom: 1;
	padding: 20px 0px;
}
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>