@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFCC;
	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-size: 80%;
}
#container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 15px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #5F44B9;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#containerArtists { 
	width: 510px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 15px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #8DAAC7;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	padding: 0 ;  /* 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. */
	border-bottom: 1px solid #8DAAC7;
} 
#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 */
}
#menu {
	width: 200px; 
    clear:right;
	float: left;
	margin: 0 10px 20px 0;
 	padding: 15px 10px 15px 20px;
	height:auto; 
}
#menu ul{
	margin: 0;
	padding: 5px 0px 5px 10px;
	float: left;
	list-style-type: none;
	width: 255px;
	font-size: 14px;
}

#menu li{
	margin:0;
    margin-right: 2px;
	padding: 0;	
}

#menu a {
	width: 155px;
	border-right: #000099 1px solid; 
	border-bottom: #000099 1px solid; 
	color: #fff; 
	background: url(../img/bgbutton02a.png) no-repeat top left transparent; 
	text-decoration: none;
	font-weight: normal; font-size: 90%; text-align: left;
	padding: 2px 10px 2px 10px; 
	margin: 2px 0px 2px 0px;
	display: block;
}
#menu a:hover {
	border-right: #000 1px solid; 
	border-bottom: #000 1px solid;
	color: #fff;
	background: url(../img/bgbutton02hovera.png) no-repeat top left transparent; 
	text-decoration: none;
}

#menu a.current{
	border-right: #000099 1px solid; 
	border-bottom: #000099 1px solid; 
	background: url(../img/bgbutton02hovera.png) no-repeat top left transparent;    
	color: #fff; text-decoration: none;
}
#mainContent { 
	margin: 0 0 0 250px; /* 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#midContent { 
	float:left;
	width: 445px;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#listContent { 
	float:left;
	width: 220px;
	padding: 0 0 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#5F44B9;
} 
#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 */
	text-align:center;
	color:#fff;
}
.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;
}
h2.block {clear:both; margin:0 0 1.0em 0; padding:2px 0 2px 10px; background:rgb(190,190,190); font-family:"trebuchet ms",arial,sans-serif; color:rgb(255,255,255); font-weight:bold; font-size:120%;}

.middle {
	float: left;
	width: 300px;
	margin: 0 10px;
	padding: 1% 1%;
}
.right {
	float: left;
	width: 300px;
	margin: 0 10px;
	padding: 1% 1%;
	
}
.artists {
	padding:0;
	margin: 0;
}
th {
	text-align:left;
}
img.left {float:left; margin:3px 10px 7px 0; padding:1px; border:1px solid rgb(150,150,150);}
img.right {float:right; margin:3px 0 7px 10px; padding:1px; border:1px solid rgb(150,150,150);}
img.leftnoborder {float:left; margin:3px 10px 7px 0; padding:1px; }
img.rightnoborder {float:right; margin:3px 0 7px 10px; padding:1px; }

/*Pop Up Boxes for Artists/Venues */

#artistContainer {
	width: 450px;
	background: #FFFFCC;
	margin: 0 0 0 10px;
	padding-left: 6px;
	text-align: left;
}
#venueContainer {
	width: 570px;
	background: #FFFFCC;
	margin: 0 0 0 10px;
	padding-left: 6px;
	text-align: left;
	min-height: 550px;
}
.indented {
	margin-left: 40px;
}
.googleholder {
	padding: 15px 0 0 15px;

}
