
/* -------------------------------
 *  Author: Stanley Xu
 *  All rights reserved.
 * ------------------------------- */

.chromeMenuContainer {
}

/* ######### Style for Drop Down Menu ######### */
.dropdownMenu {
	position: absolute;
	top: 0;
	border: 1px solid #BBB;
/*THEME CHANGE HERE*/
	border-bottom-width: 0;
	line-height: 18px;
	z-index: 100;
	background-color: white;
	width: 200px;
	visibility: hidden;
}
.dropdownMenu a {
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	border-bottom: 1px solid #BBB;
/*THEME CHANGE HERE*/
	padding: 3px 7px 3px 7px;
	text-decoration: none;
	font-weight: bold;
	color: black;
}
* html .dropdownMenu a {
/*IE only hack*/
	width: 100%;
}
.dropdownMenu a:hover {
/*THEME CHANGE HERE*/
	background-color: #F0F0F0;
}