/*body {
 font-family: helvetica, arial, sans-serif;
 background: #e3e3e3;
 text-align: center;
}*/

/* MENU */

#nav 
{
	width:980px;  
font-family: helvetica, arial, sans-serif;
font-size:14px;
position:relative;
 background: #744604;
 float: left;
 margin: 0; padding: 0;
 /*border: 1px solid white;*/
 border-bottom: none;
 z-index:100;
}

#nav ul{margin:0; padding:0}

#nav li a, #nav li {
 float: left;
}

#nav li {
 list-style: none;
 position: relative;
}

#nav li a {
 padding: 0.6em .8em;
 text-decoration: none;
 color: white;
 background: #744604;
 /*background: -moz-linear-gradient(top, black, #3c3c3c 1px, #292929 25px);
 background: -webkit-gradient(linear, left top, left 25, from(black), color-stop(4%, #3c3c3c), to(#292929));
 
 border-left: 1px solid #292929;
 border-bottom: 1px solid #232323;
 border-top: 1px solid #545454;*/
 border-right: 1px solid #9c5d00;
}

#nav li a:hover {
 background: #cb7e09;
 background: -moz-linear-gradient(top, #b26b00, #e58f0d);
 background: -webkit-gradient(linear, left top, left bottom, from(#b26b00), to(#765119));
}


/* Submenu */

.hasChildren {
	position: absolute;
	width:auto;
	/*width: 5px; height: 5px;*/
	background: black; background-color:transparent;
	right : 0;
	bottom: 0;
}

#nav li ul {
 display: none;
 position: absolute;
 left: 0;
 top: 100%;
 padding: 0; margin: 0;
}

#nav li:hover > ul {
 display: block;
}

#nav li ul li, #nav li ul li a {
 float: none;
}

#nav li ul li {
 display: inline; /* for IE6 */
}

#nav li ul li a {
width: 150px;
/*width:auto;*/
 display: block;
}

/* SUBSUB Menu */

#nav li ul li ul {
 display: none;
}

#nav li ul li:hover ul {
left: 100%;
top: 0;
}


