.mtDropdownMenu {
	position: absolute;
	overflow: hidden;
	left: -1000px;
	top: -1000px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}

/* main container for the menu */
.mtDropdownMenu .content { 
	position: absolute; 
    color: white;
}

/* table comprises all menu items. each TR is one item */
.mtDropdownMenu .items {
	position: relative;
	left: 0px;
	top: 0px;
	border: 0;
	z-index: 2;
    color: white;
	}

.mtDropdownMenu.top .items {
	margin-top: 3px;
	}

/* each TR.item is one menu item */
.mtDropdownMenu .item, .item td {
    color: white;
	font-weight: bold;
    font-size: 11px;
    text-decoration: none;
	/* this is a hack for mac/ie5, whom incorrectly cascades the border properties of the parent table to each row */
	cursor: pointer;
	cursor: hand
	}

/* semi-transparent white background of each menu. */
.mtDropdownMenu .background {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	-moz-opacity:.7;
	filter:alpha(opacity=70);
	}

/* sliver of shadow on the right of the menu */
.mtDropdownMenu .shadowRight {
	position: absolute;
	z-index: 3;
	top: 3px;
	width: 0px;
	-moz-opacity:.4;
	filter:alpha(opacity=40);
	}

/* sliver of shadow on the bottom of the menu. */
.mtDropdownMenu .shadowBottom {
	position: absolute;
	z-index: 1;
	left: 3px;
	height: 0px;
	-moz-opacity:.4;
	filter:alpha(opacity=40);
	}

/* mouse hover. */
.mtDropdownMenu .itemHover, .itemHover td {
 	background: #7B2E49;
	color: white;
	font-weight: bold;
    font-size: 11px;
	cursor: pointer;
	cursor: hand	
	}

/* dingbat that indicates there is a submenu */
.mtDropdownMenu .item img {
	margin-left: 10px;
	}

/* dingbat that indicates there is a submenu */
.mtDropdownMenu .divider {
	height: 1px;
	background: white;
	}

