.mtDropdownMenu {
	position: absolute;
	overflow: hidden;
	left: -1000px;
	top: -1000px;
	}

/* main container for the menu */
.mtDropdownMenu .content {
position: absolute;
border: 1px solid #E6E6E6;
}

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

.mtDropdownMenu.top .items {
	margin-top: 0px;
	border-top: 1px solid #B1B1B1;
	}

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

/* semi-transparent white background of each menu. */
.mtDropdownMenu .background {
	background-color : #E6E6E6;
/*	background-image : url('/img/r_bg.gif');*/
	border: 1px solid #B1B1B1;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	-moz-opacity:.9;
	filter:alpha(opacity=90);
	}

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

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

/* mouse hover. */
.mtDropdownMenu .itemHover, .mtDropdownMenu .itemHover TD {
 	background: #909194;
	font-size:11px;
	font-weight: bold;
	color: #FFFFFF;
	padding:3px;
	cursor: pointer;
	cursor: hand	
	}

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