#menu_container{
	position: relative;
}
#menu {
	position: absolute;
	height: 40px;
	direction: rtl;
	margin-right: -10px;
	margin-top: 211px;
	right: 0px;
	background-color: #182554;
	background-image:url(/images/top_menu_bg.png);
	background-position: center top;
	width: 1000px;
	z-index: 4;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
ul#nav {
	width: 980px;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
ul#nav li {
	float: right;
	margin: 0px;
	padding: 0px;
	padding: 0 15px;
	background-image:url(../images/vertical_line_white.png);
	background-position: left center;
	background-repeat:no-repeat;
	
}
ul#nav li a {
	font: normal 18px alef;
	line-height: 37px;
	color: #fff;
	text-decoration: none;
	margin: 0px;
	display: block;
}
ul#nav li:last-child{
	background: none;
}
/* APPLIES THE ACTIVE STATE */
ul#nav .current a, ul#nav li:hover a, ul#nav li.active a {
	color: #fff;
	text-decoration: none;
}

/* THE SUBMENU LIST HIDDEN BY DEFAULT */
ul#nav ul {
	display: none;
	padding: 0px;
	z-index: 0;
	list-style: none;
}


/* WHEN THE FIRST LEVEL MENU ITEM IS HOVERED, THE CHILD MENU APPEARS */
ul#nav li:hover ul, ul#nav li.active ul {
	position: absolute;
	right: 0px;
	display: block;
	width: 1000px;
	height: 33px;
	position: absolute;
	margin: 0px 0px 0px 0px;
	background: #F7931E;
	padding: 0px;
	padding-top: 7px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	z-index: 2;
}
ul#nav li:hover ul li, ul#nav li.active ul li {
	float: none;
	padding-left: 10px;
	background-image:url(../images/vertical_line_blue.png);
	background-position: left center;
	background-repeat:no-repeat;
}
ul#nav li:hover ul li a, ul#nav li.active ul li a{
	font: normal 19px alef;
	color: #0C2453;
	text-decoration: none;
}
ul#nav li:hover ul li:last-child, ul#nav li.active ul li:last-child{
	background: none;
}
ul#nav li:hover ul li a:hover, ul#nav li.active ul li a:hover {
	text-decoration: none;
}
