
* {margin: 0; padding: 0;}

body { font: 1.0em verdana, arial, sans-serif; background-image: url(music_box_background_vert_1.jpg);text-align:center; }


div#container {position:relative; /* min-width:720px; max-width:820px; margin-left:auto; margin-right:auto; */ width:820px; margin:auto; background-color:#e9eee9; border-top: 1px solid #cc3333; border-left: 2px solid #cc3333; border-right: 2px solid #cc3333; border-bottom: 2px solid #cc3333;text-align:left;}

 /*styles for header - text-align centers graphic */
div#header {height:100px; background-color:#000000; text-align:center; border-bottom: 2px solid #cc3333;  border-top: 1px solid #cc3333;}
div#header h2 {color: #cc3333; margin-top: 18px; margin-right: 20px; text-align: right; }
div#header img {float:left;}	
	

div#maincontent {border: 0px solid; margin: 0 10px 10px 10px;}
div#maincontent  img {float:left; border: 1px solid; margin: 20px 15px 5px 0;}
div#maincontent p {padding: 10px 10px 0 0; margin: 20px 0 0 0; border: 0px solid;font-size: .8em;}
div#maincontent h3 {color: #000; padding: 20px 0 10px 0; text-align: center; }
div#maincontent a {text-decoration:none; font-size: 1em; color: #000; background-color:#c0c0c0;}
div#maincontent a:hover {text-decoration:none; color:#cc3333;}
div#maincontent ul {margin-left:  250px;}
div#maincontent ul li{margin-left:  30px; margin-top:10px; margin-bottom:5px;}
div#maincontent ul li ul{margin-left:  30px; margin-top:3px; margin-bottom:3px;}
div#maincontent ul li ul li{margin-left:  30px; margin-top:0px; margin-bottom:0px;}
div#maincontent a:hover {background-color:#e9eee9;}
div#maincontent a:visited {background-color:#c0c0c0;}

div#picturecontainer {border: 0px solid; margin: 0px; padding: 0px;}
div#picturecontainer img {border: 1px solid;  padding: 0px; float:none; margin: 0px;}
div#picturecontainer p {border: 0px solid; text-align:center; font-size: .9em}
div#picturecontainer a {background-color:#e9eee9; margin:0px; padding:0px;}

.clearthefloats {clear:both;}

.leftalignpara {text-align: left;}
.rightalignpara {text-align: right;}	

.currentpagecolor {color: #000; background-color: #e9e9e9;}

.clearfix:after {content: "."; display: block; height:0; clear: both; visibility:hidden;}

.clearfix {display: inline-block;}

* html .clearfix {height: 1%;}
.clearfix {display: block;}


/* the horizontal menu starts here second style --------------- */
div#listmenu {
	width:100%; 	/* makes the div full width */
	float:left; /*makes the div enclose the list */
	border-top:1px solid #000;	/* draws line on top edge of div */
	border-bottom:1px solid #000;	 /* draws line on bottom edge of div */
	font-size:.7em;	/* SET FONT-SIZE HERE */
	background-color:#000000; /* colors the div */
	margin-top:0px; /* TEMPORARY-pushes the div away from the top of the browser */
	}
div#listmenu ul {margin:0 0 0 30px;/* indents ul from edge of container */
	}
div#listmenu li {
	z-index:100; /* had to add this to make the drop be on top in Safari */
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color:#c0c0c0; /*sets the background of the menu items */
	border-right:1px solid #000; /* creates dividing lines between the li elements */
	}
div#listmenu li:first-child {
	border-left:1px solid #000; /*the first vertical line on the menu */
	}
div#listmenu li:hover { 
	background-color:#FFF; /*sets the background of the menu items */
	}
div#listmenu a {

	display:block; /*makes rolled list items in drop down highlight link text, and wrapped lines indent correctly */
	padding:0 6px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#000000;	/* sets the type color */
	}
div#listmenu a:hover {
	color:#F33;
	}
/* the horizontal menu ends here */

/* the drop-down starts here */
div#listmenu ul li ul {
	margin:0; /* prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove TEMP above */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:10em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:-1px; /*aligns the drop exactly under the menu */
	}
div#listmenu ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #000; /*  three sides of each drop-down item */
	 border-bottom:1px solid #000; 
	 border-right:1px solid #000; 
	padding: 0 0 1px;
	}
div#listmenu ul li ul li:first-child {
	border-top:1px solid #000; /*the top edge of the dropdown */
	}
/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* pop-out starts here */
body div#listmenu ul li ul li ul  {
	visibility:hidden; /* same effect as display:none in this situation */
	left:10em;
	}
div#listmenu ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */
/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#listmenu ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #000; /* adds the rightmost menu vertical line to the ul */
	margin-left:15px; /* IE doubles the given value above - why? */
	}
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#listmenu ul li ul {
	border-top:1px solid #000;
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* end of hack zone */
/* END OF LIST-BASED MENU -----------*/