.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; }

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

.mtDropdownMenu.top .items {
	margin-top: none;
	border-top: none;
	}

/* each TR.item is one menu item */
.mtDropdownMenu .item {
    color: #FFFFFF;
    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 */
	border: none;
	cursor: pointer;
	cursor: hand
	}

/* semi-transparent white background of each menu. */
.mtDropdownMenu .background {
	position: absolute;
	background: #CDE3FF;
	left: 0px;
	top: 0px;
	z-index: 100;
	-moz-opacity:.9;
	filter:alpha(opacity=80);
	}

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

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

/* mouse hover. */
.mtDropdownMenu .itemHover {
	font-size:11px;
	background: #6792C6;
	color: #FFFFFF; 
	cursor: pointer;
	cursor: hand
	}

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