
/*
חייבים לתת צבע רקע לתפריט הנפתח
.second_ul
אחרת הוא נעלם כאשר הוא מעל טקסט
*/ 
 
 
/*  First Menu Elements */ 


#nav {

	list-style: none;
	margin: 0px;
		/*height: 24px;*/
	padding-right: 20px;
			
}


.top_li {

	float: right;
	display: inline;	
	position: relative;	
	text-align: right;	
	padding-left:12px;
	padding-top: 2px;
	padding-right: 5px;	
	font-size: 12px;	
	font-weight:bold;
	height: 19px;	
	
	font-family: Arial, sans-serif;
	color: white;
			
}


.top_li a:link, .top_li a:visited  
{
	
	color: white;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
	font-family: Arial, sans-serif;
	
} 

.top_li a:hover 
{
	color:#F8BF24;
	font-size:12px;
	font-weight:bold;
	text-decoration: none;
	font-family: Arial, sans-serif;
} 



/*****************************************/
/*   Drop Down menu elements   */
/*****************************************/


.second_ul {    /* second-level UL */
 
    display: none;
	position: absolute;
	top: 19px;
	right: 4px;
	width: 120px;
	list-style: none;
		
	background-color: white ;	
		
  	padding-left: 0px;
	padding-right: 0px;
	margin: 0;
	
	border-top: 2px solid #ECECF9;
			
}


.li_second {

	border: 0px solid white;
	line-height: 20px;
	padding-right:3px;
	padding-left:3px;
	margin-bottom: 1px;
	background-color: #B09FBF;

}


.li_second a:link, .li_second a:visited  
{
	color: #333333;
	font-family: Arial, sans-serif;
	font-size: 12px;
	text-decoration: none; 
	font-weight: normal; 
} 

.li_second a:hover 
{
	color: white;
	text-decoration: none; 
	font-weight: normal; 
}



li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
	/*background-color: #F5F0EA;*/	
}








