/* узлы */
.menu{
	width:100%;
	background:#ffffff;
	font-family:Arial, Helvetica, sans-serif;
	border-radius: 5px;
}

.menu ul {
	margin: 0;
	padding: 5px;
	list-style: none;

	width: 100%; /* Width of Menu Items */
	z-index: 100;
	border-bottom: 0px solid #F4A460;
	}

.menu ul li {
	position: relative;
/*	margin-left:-35px;*/
	}
	
.menu li ul {
	position: absolute;
	top: -10px;
	left: 100%;*
	top: 0;
	display: none;
}

.menu ul li a {
	display: block;
	text-decoration: none;
	/*	color: #777;*/
	color:#FFFFFF;
	background: #1B8DCC;
	/*	background:blue url(image/menu_c1.jpg) repeat-y left top;*/
	padding: 5px;
	border: 1px solid #E5EDBC; /* IE6 Bug */
	border-bottom: 0;
}

.menu ul li a:hover{
	background: #FFFFB2;
	color:#81250C;
}	
	
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
		
li:hover ul { display: block;
	width: 200px;
} /*  The magic */
