/* --- core_nav navigation classes  ---- */

#top_nav_container 
{
	position:absolute;
	top:0px;
	height:32px;
	z-index:100;
	width:925px;
	text-align:right;
	margin: auto 0;
	margin-right:50px;
	overflow:hidden;
}

/* --- main_nav navigation  ---- */
.main_nav
{
	width:100%;
	background-color:#1d1f21;
	text-align:left;
	margin: 0 auto;
	height:65px;	
}

#lava 
{
	/* you must set it to relative, so that you can use absolute position for children elements */
	position:relative; 
	width:955px; 
	height:65px;
	margin: 0 auto;	
	padding-left:35px;		
}

#lava ul 
{
	/* remove the list style and spaces*/
	margin:0;
	padding:0;
	list-style:none;
	display:inline;
	position:absolute;	/* position absolute so that z-index can be defined */
	/* center the menu, depend on the width of you menu left:200px; */
	top:20px;
	/* should be higher than #box */
	z-index:100;
	width: 953px;	
}

#lava ul li 
{	
	/* give some spaces between the list items */
	margin:0 10px; 
	/* display the list item in single row */
	float:left;
}

#lava ul li.selected a
{
	color:#f7662a;
}

#lava ul li.unselected a
{
	color: #d1d1d1;
}

#lava ul li.unselected a:hover
{
	color: #f7662a;
}













/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */

