body {
	font: 100% Arial, Helvetica, sans-serif;
	margin: 0 auto; /* zero body margin and padding for differing browser defaults */
	padding: 0;
	text-align: center; /* center the container in IE 5* browsers */
	color: #ffffff;
	background-color: #000000;
	}

/* All links are not blue. */
a {
	color: #ffffff;
	background-color: inherit;
	}

/* ---------- The following is for the home page only: ---------- */
#containerhome { 
	width: 800px;
	height: 688px;
	margin: 5% auto; /*auto margins (in conjunction with a width) center page if needed */
	text-align: center; /* to override text-align: center on body element. */
	color: #ffffff;
	background-color: #000000;
	background-image: url(reflections_homepage_800x688.jpg);
	background-repeat: no-repeat;
	}  


/*  Home page navigation bar  ------------------- */
#sidebarhomeLeftNavi {
	margin: 100px auto auto 20px;
	float: left; 
	font-size: 150%;
	width: 20em; /* since this element is floated, a width must be given */
	}

ul#navihome {
	font-size: 80%;
	text-align: left;
	list-style-type: none;
	}

li.navihomelist a:link {
	color: red;
	text-decoration: none;
	}

li.navihomelist  a:visited {
	color: red;
	text-decoration: none;
	}

li.navihomelist  a:hover {
	color: #f39823;
	text-decoration: none;
	}


/*  Home page footer ------------------- */
#footerhome { 
	margin: 0; /* zero margins of first element in footer to avoid  possibility of margin collapse or space between divs */
	padding: 10px 0; /* padding on this element creates space without margin collapse issue */
	clear: both;
	}

#footerhome p { 
	margin-top: 415px;
	text-align: center;
	font-size: 70%;
	color: #ffffff;
	background-color: transparent;
	}



/* ---------- The following is for the non-home pages: ------------ */
#container { 
	width: 800px;
	margin: 5% auto; /*auto margins (in conjunction with a width) center page if needed */
	text-align: center; /* to override text-align: center on body element. */
	color: #ffffff;
	background-color: #333333;
	}  


/*  Non-home pages navigation bar  ------------------- */
#sidebarLeftNavi {
	margin: 0px auto auto 0px;
	height: 750px;
	float: left; 
	font-size: 150%;
	width: 8em; /* since this element is floated, a width must be given */
	background-image: url(reflections_navibar_189x750.jpg);
	background-repeat: no-repeat;
	}

ul#navi {
	margin: 150px auto auto 0px;
	font-size: 80%;
	text-align: left;
	list-style-type: none;
	}

li.navilist a:link {
	color: red;
	text-decoration: none;
	}

li.navilist  a:visited {
	color: red;
	text-decoration: none;
	}

li.navilist  a:hover {
	color: #f39823;
	text-decoration: none;
	}
	
/*  Non-home pages content  ------------------- */
#mainContent {
	width: 70%;
	padding: 0;
	margin: 0;
	text-align: left;
	}

#mainContent h1 {
	padding-top: 4%;
	font-size: 1.5em;
	color: #f39823;
	background-color: transparent;
	}

#mainContent h3 {
	font-size: 1.1em;
	color: #999999;
	background-color: transparent;
	}
	
#mainContent p, table.signup td {
	font-size: 0.9em;
	padding-right: 5%;
	}
	
img#discography {
	border: none;
	padding: 0 20px 5px 0
	}

span.album {
	color: #87ab35;
	font-style: italic;
	font-weight: bold;
	}
	
table#shows {
	text-align: center;
	color: #666666;
	}
	
table#shows th {
	font-size: 0.9em;
	color: #666666;
	}

table#shows td {
	font-size: 0.7em;
	color: #ffffff;
	}

	
/*  Non-home pages footer  ------------------- */
#footer { 
	margin: 0; /* zero margins of first element in footer to avoid  possibility of margin collapse or space between divs */
	padding: 10px 0; /* padding on this element creates space without margin collapse issue */
	clear: both;
	}

#footer p { 
	margin: 0;
	text-align: center;
	font-size: 70%;
	color: #ffffff;
	background-color: transparent;
	}



/* -------below items for right-hand sidebar:

  <div id="sidebar2">
  <!-- end #sidebar2 --></div> -----*/

#sidebar2 {
	float: right; 
	width: 11em; /* needs width since floated */
	background: transparent; /* background color displayed for height of content only in column */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
	}
#sidebar1 h3, .thrColHybHdr #sidebar1 p, .thrColHybHdr #sidebar2 p, .thrColHybHdr #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	}

	
	
	/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent {
 	margin: 0 12em 0 12em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */ 
	padding: 0 2em 0 2em; /* padding here creates white space "inside the box." */
	} 

/* Miscellaneous classes for reuse */
.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 { /* placed on div or break element; final element before close of container fully containing float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	}