 .dropdown{
	background: transparent; /*background of menu bar (default state)*/
 	font-size: 12px;
	margin:0;
	padding:0;
	
}

.dropdown ul{
	z-index:100;
	list-style-type: none;
	list-style-position:outside;
	border:0;
	margin: 0;
	padding: 10px;
	border:0;
}

/*Top level list items*/
.dropdown ul li{
	position: relative;
	display: inline;
	float: right;
	text-align:center;
	margin: 0;
	padding: 0;
	border:0;
direction:rtl;
}

/*Top level menu link items style*/
.dropdown ul li a{
	display: block;
	color: white;
	padding: 10px 25px ;
	color: #2d2b2b;
	text-decoration: none;
}

* html .dropdown ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}

.dropdown ul li a:link, .dropdown ul li a:visited{
	color: white;
}
.dropdown ul li ul li a:link, .dropdown ul li ul li a:visited{
	color: white;
}

.dropdown ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: transparent url(../../images/menu_nv.png) top repeat-x; 
	color: white;
}

.dropdown ul li a:hover{
	background: transparent url(../../images/menu_nv.png) top repeat-x;  /*background of menu items during onmouseover (hover state)*/
	color: white;
}

.dropdown ul li ul li a.selected{
	background: #bf0d0d; 
	color: white;
}

.dropdown ul li ul li a:hover{
	background: #bf0d0d; 
}

.dropdown ul li a.active{
	background: transparent url(../../images/menu_nv.png) top repeat-x;  /*background of menu items during onmouseover (hover state)*/
	color: white;
}

/*1st sub level menu*/
.dropdown ul li ul{
	position: absolute;
	right: 0px; 
	padding:0px !important;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	font-size: 11px;
	

	}

/*Sub level menu list items (undo style from Top level List Items)*/
.dropdown ul li ul li{
	display: list-item;
	float: none;
	text-align:right;
	
	
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.dropdown ul li ul li ul{
	top: 0;
	right: 165px !important;
	
}

/* Sub level menu links style */
.dropdown ul li ul li a{
	width: 155px; /*width of sub menus*/
	padding: 5px ;
	margin: 0;
	border-top-width: 0;
	border-bottom: 1px solid #ff0005;
	background: #a70c0a; /*background of menu items (default state)*/	
	}

/* Holly Hack for IE \*/
* html .dropdown{height: 1%;} /*Holly Hack for IE7 and below*/