@charset "utf-8";
/* CSS Document */

/* --------------------- NAV -------------------- */

/*

nav {
	height: 70px;
}

nav ul {
	list-style-type: none;
	height: 70px;
	margin: auto;
}

nav li {
	float: left;
}

nav ul a {
	padding-right: 25px;
	padding-left: 25px;
	display: block;
	text-decoration: none;
	height: 70px;
	line-height: 80px;
	font-size: 12px;
	color: #FFF;
    font-family: 'trajan_proregular';
}

nav ul a:hover {
	background-color: #606455;
}

nav ul li ul {
	//display:none;	
}

*/



#divNav {
	height: 70px;
}

/* remove the list style */
#nav {
	list-style-type: none;
	/*height: 70px;*/
	margin: auto;
}	

/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
#nav li {
	float:left; 
	display:block; 
	/*width:100px; */
	position:relative;
	z-index:500; 
	margin:0 1px;
}

#nav li:hover{
	background-color: #5c1d05;
}

/* this is the parent menu */
#nav li a {
	padding-right: 20px;
	padding-left: 20px;
	display: block;
	text-decoration: none;
	height: 35px;
	padding-top:35px;
	font-size: 12px;
	color: #FFF;
	font-family: 'trajan_proregular';
}

#nav li a:hover {
}

/* you can make a different style for default selected value */
#nav a.selected {
	color:#f00;
}

/* submenu, it's hidden by default */
#nav ul {
	background-color:#FFF;
	position:absolute; 
	left:0; 
	display:none; 
	/*margin:0 0 0 -1px; */
	padding:0; 
	list-style:none;
}

#nav ul li {
	/*float:left; */
	/*border-top:1px solid #fff;*/
}

/* display block will make the link fill the whole area of LI */
#nav ul a {

	height:auto;
	width:120px;
	padding: 8px 20px 8px 20px; 
	color:#666;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:12px;
	text-align:left;
}

#nav ul a:hover {
	background-color:#f5f5f5;
}

/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
/*
html #nav ul {
margin:0 0 0 -2px;
}
*/