#menu {
  width: 1000px;
  height: 30px;
  clear: both;
}

ul#nav {
  float: right;
  width: 1000px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #f3b568;
}

ul#nav li {
  display: inline;
}

ul#nav li a {
  float: right;
  font: normal 12px Verdana, Geneva, sans-serif;
  line-height: 30px;
  color: #fff;
  text-decoration: none;
  /*text-shadow: 1px 1px 1px #880000;*/
  padding: 0 10px;
  background: #f3b568;
	border-left:2px solid #E6E7E8;
}


ul#nav li:last-child a { 
	border:none;
}



/* APPLIES THE ACTIVE STATE */
ul#nav .current a, 
ul#nav li:hover > a  {
  color: #fff;
  text-decoration: none;
  /*text-shadow: 1px 1px 1px #330000;*/
  background: #F89F32;
}

/* THE SUBMENU LIST HIDDEN BY DEFAULT */
ul#nav  ul {
  display: none;
}

/* WHEN THE FIRST LEVEL MENU ITEM IS HOVERED, THE CHILD MENU APPEARS */
ul#nav li.current > ul {
  position: absolute;
  display: block;
  width: 1000px;
  height: 30px;
  margin: 35px 0 0 0;
  background: #F89F32;
	border:none;
}

ul#nav li.current > ul li a {
  float: right;
  font: normal 12px Verdana, Geneva, sans-serif;
  line-height: 30px;
  color: #fff;
  text-decoration: none;
  margin: 0;
  padding: 0 10px;
  background: #F89F32; 
	border:none;
}

ul#nav li:hover > ul li a:hover {
  color: #120000;
  text-decoration: none;
  text-shadow: none;
}

ul#nav li.current > ul .current a {
	color: #000;
  text-decoration: none;
  background: #F89F32;
}

