.mtDropdownMenu {
	position: absolute;
	overflow: hidden;
	left: -1000px;
	top: -1000px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}


 .menuitems {
	position: relative;left: 0px;top: 0px;
	border: 1px solid #999;
	z-index: 2;
	width:100px;
	}


/* each TR.menuitem is one menu menuitem */
 .menuitem {
    color: #4A4B4B;
    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. */
 .background {
	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 */
 .shadowRight {
	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. */
 .shadowBottom {
	position: absolute;
	z-index: 1;
	left: 3px;
	height: 2px;
	-moz-opacity:.4;
	filter:alpha(opacity=40);
	}

/* mouse hover. */
 .menuitemHover {
 	background: #CCCCCC;
	font-size:11px;
	color: #000000;
	cursor: pointer;
	cursor: hand	
	}

/* dingbat that indicates there is a submenu */
 .menuitem img {
	margin-left: 10px;
	}

 

