/* ---------------------------------------------------------------------- */
/*	CROSS BROWSER DROPDOWN MENU
/* ---------------------------------------------------------------------- */
.fixed{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	opacity:.95;
	z-index:999;
}
ul,li{
list-style:none;	
}
ul.drop {
  z-index: 999;
  list-style:none;
}
ul.drop a{
	font-family: 'MitraBold', 'B Mitra Bold', Arial, sans-serif;
}
ul.drop>li {
  list-style:none;
  float:right;
  height:68px;
  position:relative;
}
ul.drop>li>a {
	/*font-size:18px;*/ /* fs */
    font-size:16px;
	padding:23px 22px 22px;
	border-right:1px dashed #0a9a97;
	display:block;
	color:#fff;
	background:url('../images/red.png') repeat-x;
	background-position:0 350%;
}
ul.drop>li:first-child>a{
}
ul.drop>li:last-child>a{
	border-left:1px dashed #0a9a97;
}
ul.drop>li.dropdown>a {
	padding-right:15px;
}
ul.drop>li:hover>a{
	background-position:0 0;
}
ul.drop>li.active>a  {
	cursor:default;
	padding-bottom:18px;
	border-bottom:4px solid #eb2b5d;
}
/*---------------------------------------------------------------------- */
/*	Start Level 1
/* ---------------------------------------------------------------------- */ 
ul.drop > li > ul {
  visibility: hidden;
  float:right;
  position: absolute;
  top:0;
  right:0;
  opacity: 0;
  margin:0;
  padding:0;
	-moz-transition: all 0.2s ;
	-o-transition: all 0.2s ;
	-webkit-transition: all 0.2s ;
	transition: all 0.2s ;
}
ul.drop > li:hover > ul {
  visibility: visible;
  opacity: 1;
  top:100%;
}
ul.drop > li > ul > li  a {
	display:block;
	clear:both;
	float:right;
	color:#fff;
	background:#eb2b5d;
	padding:13px;
	width:220px;
	text-align:right;
	direction:rtl;
	font-size:17px;
	-moz-transition: all 0.2s ;
	-o-transition: all 0.2s ;
	-webkit-transition: all 0.2s ;
	transition: all 0.2s ;
	border-bottom:1px dashed #c21542;
}
ul.drop > li > ul > li a:hover {
	background:#08bbb7;
	padding-right:25px;
	border-bottom-style:solid;
}