body {
	font: 95% Geneva, Helvetica, Arial, sans-serif;
	line-height:1.2em;
	background-color:#fff;
	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: #333;
}

a:link {color:#666; text-decoration:underline;}
a:visited {color:#666; text-decoration:underline;}
a:hover {color:#cc3300; text-decoration:overline;}
a:active {color:#cc3300; text-decoration:overline;}

.location {color:#999;
	font-size:14px; margin-top: -15px;}

.twoColElsLtHdr #container { 
	width:100%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background-repeat:repeat;
	margin:0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColElsLtHdr #header { 
	width:100%;
	padding: 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. */
	text-align:left;
	background-color:#e3e3e3;
} 


.twoColElsLtHdr #sidebar1 {
	float: left; 
	width: 12.5em; /* since this element is floated, a width must be given */
	padding:7px;

}
.twoColElsLtHdr #sidebar1 h2, h3{
	margin-left: 5px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 5px;
	
}

.twoColElsLtHdr #sidebar1 p {
	margin-left: 5px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 5px;
	font-size:13px;
}

/* 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.
*/
.twoColElsLtHdr #mainContent {
		margin: 1px 1.5em 1px 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
		border-left: 1px solid #999;
		padding-left:7px;
		
	
} 
.twoColElsLtHdr #footer {
margin-top:10px; 
	background:#414141;
	border-top:1px solid #000; 
	text-align:center;
	padding-bottom:10px;
	bottom:0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColElsLtHdr #footer p {
	margin: 5px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:11px;
	color:#ececec;
}

/* 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 { /* 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;
}

h1 {border-bottom:1px solid #ccc; padding:5px; line-height:1.2em;}

/* 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 { /* 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;
}

h1, h2, h3 {
	line-height:1.2em;
	font-family:Futura, Geneva, Helvetica;
	color:#990000;
	font-weight:300;
	/* [disabled]line-height:1.2em; */
}

.stickytooltip{
box-shadow: 5px 5px 8px #818181; /*shadow for CSS3 capable browsers.*/
-webkit-box-shadow: 5px 5px 8px #818181;
-moz-box-shadow: 5px 5px 8px #818181;
display:none;
position:absolute;
display:none;
border:5px solid black; /*Border around tooltip*/
background:white;
z-index:7000;
}


.stickytooltip .stickystatus{ /*Style for footer bar within tooltip*/
background:black;
color:white;
padding-top:5px;
text-align:center;
font:bold 11px Arial;
}

#artbox {padding:5px; float:left; width:650px; border-bottom:solid 1px #999;}

.fancy {border:none; color:#09f; padding:0;}

a.topbutton {padding:2px 7px 2px 7px; background:#ececec; font-size:11px; border: 1px solid #ccc;
	-moz-border-radius:1em;
	-webkit-border-radius:1em;
	border-radius:1em;
	text-decoration:none;}
	
	a.topbutton:hover {background:#990000; color:#fff; border: 1px solid #ccc;
	-moz-border-radius:1em;
	-webkit-border-radius:1em;
	border-radius:1em;
	text-decoration:none;}
	
	.artistlist {
	margin: 5px;
	padding: 5px;
	float: left;
	width: 250px;
}
