/* 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;
	text-decoration:none;
}

/* 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;
	text-decoration:none;
}

/* this table comprises all menu items. each TR is one item. It is relatively positioned so that the shadow and background transparent divs can be positioned underneath it */
.transMenu .items {
	position:relative;
	left:0px; top:0px;
	z-index:2;
	text-decoration:none;
}

.transMenu.top .items {
	/*border-top:none;*/
	text-decoration:none;
}

/* each TR.item is one menu item */
.transMenu .item 
{ font-family:"Times New Roman", Times, serif; font-size:16px; color:#666666; font-style: oblique; font-weight:bold; padding: 0px 10px 0px 0px; 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;
}
td.itemmenu{white-space:nowrap; }

tr.sepa td
{
	height:2px;
	line-height:2px;
	background:url("img/razdelitel_menu_transparent_56.png") repeat-x scroll 0px 0px transparent;
	padding:2px 2px 2px 5px;
}
table.items{ border:1px solid #000000; }

div.shadowBottom, div.shadowRight{ display:none!important; }
div.background{background-color:#FFFFFF!important;}


