/* ::. In The Name oF ALLAH The Most beneficient oF The Most Mericful .:: */

/* MENU */

#nav {
 background: #e5e5e5;
float:left;
 margin: 0; padding: 0;
 border: 0px solid white;
 border-bottom: none;
}

#nav li a, #nav li {
 float: left;
}

#nav li {
 list-style: none;
 position: relative;
}

#nav li a {
 padding:10px 30px;
 text-decoration: none;
 color: white;

 font-family: helvetica, arial, sans-serif;
 background: #292929;
 background: -moz-linear-gradient(top, black, #12890A 1px, green 25px);
 background: -webkit-gradient(linear, left top, left 25, from(black), color-stop(4%, #12890A), to(green));
 border-right: 1px solid #12890A;
 border-left: 1px solid #12890A;
 border-bottom: 0px solid #12890A;
 border-top: 0px solid #12890A;
}

#nav li a:hover {
 background: #2a0d65;
 background: -moz-linear-gradient(top, red, #BA1616);
 background: -webkit-gradient(linear, left top, left bottom, from(red), to(#BA1616));
}


/* Submenu */

.hasChildren {
	position: absolute;
	width: 5px; height: 5px;
	background: black;
	right : 0;
	bottom: 0;
	
}

#nav li ul {
 display: none;
 position: absolute;
 left: 0;
 top: 100%;
 padding: 0; margin: 0;
	z-index: 9999;
}

#nav li:hover > ul {
 display: block;
}

#nav li ul li, #nav li ul li a {
 float: none;
}

#nav li ul li {
 _display: inline; /* for IE6 */
}

#nav li ul li a {
	font-size:14px;
 width: 150px; height: 15px;
 display: block;
}

/* SUBSUB Menu */

#nav li ul li ul {
 display: none;
}

#nav li ul li:hover ul {
 left: 100%;
 top: 0;
}


#nav li ul 