/* ****************Color*************** */

#nav {background-color:#E8B827;}
#nav a {background-color:#fff; color:#E8B827;}
#nav a:hover {background-color:#000; color:#fff;}
#nav a:hover {border-left:#000;}

#nav a { 
border-left:1px solid #ffca2b; 
border-right:1px solid #cca223;
}

#nav ul ul a:last-child {border-bottom: 1px solid #999;}
	

/* ****************Layout*************** */

#nav {	
	position:relative;
}

#nav  ul {
float:left;
position:relative;
margin:0px;
padding:0px;
}

#nav li {
	float: left;
	list-style-type: none;
        position:relative;     
	width:125px;
        margin-left:0px;
}

#nav > ul > li:last-child a {
border-right:none;
}

#nav > ul > li:first-child a {
border-left:none;
}

#nav a {
	text-decoration: none;
	font-size:1em;
        cursor:pointer;
	display:block;
	text-align:center;
	padding:3px;
}

/* ****************Secondary*************** */

#nav ul ul {
left: 0px;
display:none;
position: absolute;
}

#nav ul li:hover ul {
display:block;

}

#nav li li {
}

/* **************** Tertiary*************** */

#nav ul li:hover ul ul {
display:none;
}

#nav ul ul li:hover ul {
display:block;
position:absolute;
left:188px;
top:-1px;
}

