/* this is the clipping region for the menu. it's width and height get set by script, depending on the size of the items table */
.transMenu {
	position:absolute;
	overflow:hidden;
	left:-1000px;
	top:-1000px;
	}

/* this is the main container for the menu itself. it's width and height get set by script, depending on the size of the items table */
.transMenu .content {
	position:absolute;
	}

/* подменю сдвиг */
.transMenu .items {
	position:relative;
	left:0px; top:0px;
	z-index:2;
	}

.transMenu.top .items {
	border-top:none;
	}

/* подменю осн */
.transMenu .item {
	background:#e3e3e3;
	color:#0000cc;
    font-size:12px;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    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:hand;
	cursor:hand;
	}
	/* подменю активное */
.transMenu .item.hover {
	background:#0000cc;
	 font-family:Verdana, Arial, Helvetica, sans-serif;
	color:white;
	 font-size:11px;
	font-weight:bold;
	}

/* отступ до картинки - ширина подменю */
.transMenu .item img {
	margin-left:10px;
	}

/* тень подменю*/
.transMenu .background {
	position:absolute;
	left:0px; top:0px;
	z-index:1;
	-moz-opacity:.8;
	filter:alpha(opacity=90);
	}

/* тень от ниспадающ. меню справа */
.transMenu .shadowRight {
	position:absolute;
	z-index:3;
	top:9px; width:4px;
	-moz-opacity:.4;
	filter:alpha(opacity=50);
	}

/* тень от ниспадающ. меню снизу */
.transMenu .shadowBottom {
	position:absolute;
	z-index:1;
	left:3px; height:4px;
	-moz-opacity:.4;
	filter:alpha(opacity=50);
	}