 div.multi_drop_menus * {
 margin:0; padding:0;
 }
div.multi_drop_menus {
	/*text-indent:-999px;*/
    margin:0px;
	margin-top: 2px;
 	float:left;
 	width:100%;
 	line-height: 17px;
 }
#read {
	background-image: url(images/read.gif);
	background-repeat: no-repeat;
	height: 16px;
	width: 59px;
	float: left;
	display: inline;
	background-position: 0px -16px;
}
#read:hover, #read_active {
	background-image: url(images/read.gif);
	background-repeat: no-repeat;
	height: 16px;
	width: 59px;
	background-position: 0px 0px;
}
#dance {
	background-image: url(images/dance.gif);
	background-repeat: no-repeat;
	width: 66px;
	height: 16px;
	float: left;
	display: inline;
	background-position: 0px -16px;
}
#dance:hover, #dance_active {
	background-image: url(images/dance.gif);
	background-repeat: no-repeat;
	width: 66px;
	height: 16px;
	background-position: 0px 0px;
}
#watch {
	background-image: url(images/watch.gif);
	background-repeat: no-repeat;
	width: 66px;
	height: 16px;
	float: left;
	display: inline;
	background-position: 0px -16px;
}
#watch:hover, #watch_active {
	background-image: url(images/watch.gif);
	background-repeat: no-repeat;
	width: 66px;
	height: 16px;
	background-position: 0px 0px;
}
#more {
	background-image: url(images/more.gif);
	background-repeat: no-repeat;
	width: 101px;
	height: 16px;
	float: left;
	display: inline;
	background-position: 0px -16px;
}
#more:hover, #more_active {
	background-image: url(images/more.gif);
	background-repeat: no-repeat;
	width: 101px;
	height: 16px;
	background-position: 0px 0px;
}
div.multi_drop_menus a {
 	color:#4c1b17;
 	display:block; /* makes link fill li so entire area is "hot" */
 	text-decoration:none;  /* removes the underlining from the links */
 	height: 16px;
 	margin: 0px;
	padding: 0px;
}
div.multi_drop_menus a:hover {
	 color:#ac8d8d; /* type color of a hovered menu choice */
}
div.multi_drop_menus li {
 	float:left;  /*causes the list to align horizontally instead of stack */
 	list-style-type:none; /* removes the bullet off each list item */
 	position:relative; /* positioning context for the absolutely positioned drop-down */
 	letter-spacing: 0.02em;
}
div.multi_drop_menus ul {
 	display:inline;  /* fixes margin-doubling bug in IE6 */
 	float:right; 
} 
div.multi_drop_menus ul li ul {
 	padding-top: 12px;
 	width:12em; 
 	position:absolute; 
 	display:none;
}
div.multi_drop_menus ul li ul li {
	width:100%;
	padding:0;
	background-image: none;
	text-indent:10px;
}
div.multi_drop_menus ul li:hover ul {
	display:block;
	z-index:1000; /* Safari needs this to display menu on top of other page elements */
} 
