#nav { 
	padding-top: 7px;
	position: absolute;
	top: 50px;
	right: 0px;
}


#nav ul{
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
#nav ul li{
	position: relative;
	display: inline;
	float: left;
}

/*Top level menu link items style*/
#nav ul li a {
	display: block; 
	width: auto;
	height: 31px;
	line-height: 28px;
	padding: 0 8px;
	margin-right: 6px;
	margin-bottom: 10px;
	font-size: 14px;
	color: #d6d6ce;	
	text-decoration: none;
	font-weight: 400;
	outline: none;
	text-align: center;


	transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-webkit-transition: color .2s ease-in-out;

}

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

#nav ul li.current_page_item a, #nav ul li a.active, #nav ul li a:hover, #nav ul li:hover a, #nav ul li.current_page_parent a, #nav ul li.current-page-ancestor a { 
	color: #538ddc;
}

/*1st sub level menu*/
#nav ul li ul.sub-menu {
	position: absolute;
	min-width: 180px;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	background: #04151F;
}


/*Sub level menu list items (undo style from Top level List Items)*/
#nav ul li ul li{
	display: list-item;
	float: none;
	width: 200px;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
#nav ul li ul li ul{
	position: absolute;
	top: 0 !important;
	margin-left:200px;
}

/* Sub level menu links style */
#nav ul li ul li a{
	font-weight: 400;
	min-width: 160px; /*width of sub menus*/
	overflow: hidden;
	height: auto;
	padding: 7px 20px;
	margin: 0 2px;
	font-size: 14px;
	text-align: left;
	background: none;
	color: #d6d6ce !important;
	border-top: 1px solid #333;
	border-bottom: 1px solid #eee;
	line-height: 125%;
}

#nav ul li ul li a.selected, #nav ul li ul li a:hover,  #nav ul li ul li.current_page_item a {
	color: #538ddc !important;
}

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


/* Sub menu indicators
--------------------------------------------- */
@font-face {
  font-family: 'entypo';
  src: url('../fonts/entypo.eot?40834763');
  src: url('../fonts/entypo.eot?40834763#iefix') format('embedded-opentype'),
       url('../fonts/entypo.woff?40834763') format('woff'),
       url('../fonts/entypo.ttf?40834763') format('truetype'),
       url('../fonts/entypo.svg?40834763#entypo') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
.main-menu > .menu-item-has-children > a:after {
    content: "\e760";
    font-family: 'entypo';
    padding-left: 0.5em;
    speak: none;
}
 
ul.sub-menu li.has-children > a:after {
    content: "\e762";
    font-family: 'entypo';
    padding-left: 1em;
    speak: none;
}

.right { 
	float: right !important;
}

.last a, .last a:hover { 
	background: none !important; 
	margin-right: 0 !important; 
	padding: 0 0 0 18px !important;
}