/*
Css styling for the navigation menu
*/
.nav{float: right; margin-top:30px;}
.nav ul{z-index:100;	/* margin: 0; */list-style-type:none; margin:0; padding:0;}

/*Top level list items*/
.nav ul li{position: relative; display: inline; float:left;	}
.nav ul li:hover{}

/*Top level menu link items style*/
.nav ul li a{color: #000;  cursor: pointer;
    display: inline; float: left;
	font-size:14px;  padding: 8px 10px;
    position: relative !important; text-align: center;
    text-decoration: none; text-transform: uppercase;}

.nav ul li.current-menu-item{ background: none repeat scroll 0 0 #00729E;}
.nav ul li.current-menu-item a {color:#fff !important;}
.nav ul li ul li.current-menu-item{border: none; }
.nav ul li.current-menu-parent{	/*background:#118d78;*/	 border-bottom:1px solid #fff;	}

* html .nav ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block; }

.nav ul li a:link, .nav ul li a:visited{color:#000; }

.nav ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
color:#000; }
.nav ul li a:hover{color:#333;
/*background of menu items during onmouseover (hover state)*/
/*
background-color:#118d78;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
*/
}
	
/*1st sub level menu*/
.nav ul li ul{position: absolute; left: 0;
margin-left:0px; display: none; /*collapse all sub menus to begin with*/
top:100%; margin-top:1px;}

/*Sub level menu list items (undo style from Top level List Items)*/
.nav ul li ul li{display: list-item; border:0; }
.nav ul li ul li:hover{border:0; }

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.nav ul li ul li ul{top:0; }

/* Sub level menu links style */
.nav ul li ul li a{	text-align:left; width: 200px; /*width of sub menus*/
	padding: 6px; margin:0; color:#fff !important;font-size:12px;	border-top: 1px solid #333;	background-color:#000;}

.nav ul li ul li a:hover{ background-color:#333;}
.nav ul li ul li ul li a{ color:#fff; margin-left:2px;}
.nav ul li ul li ul li a:hover{}

/* Holly Hack for IE \*/
* html .nav{height: 1%;} /*Holly Hack for IE7 and below*/

.nav ul ul ul{ left: 100%; top:0%; }
.nav ul li:hover > ul 	{ visibility: visible; display:block; }