/* Menu stuff */
.nav { /* all lists */
  padding: 5px;
  margin: 0px 0px 0px 10px ;
  list-style: none;
}

.nav ul { /* all lists */
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav li { /* all list items */
  float: left;
  position: relative;
  text-align: left;
  background-color: transparent;
  color: #FFF;
  font-weight: bold;
  font-size: 10px;
  letter-spacing: 1px;
  border: 0px solid red;
  cursor: pointer;
  margin-right: 15px;
}

.nav li a {
	text-decoration: none;
	color: white;
	text-transform: uppercase;
}

.nav li a:hover {
	color: #f58205;
}
.nav li ul { /* second-level lists */
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  font-weight: normal;
  background-color: #ffc600;
  padding: 10px 3px;
  border: 1px solid #004480;
  border-width: 0 1px 1px 1px;
  width: 200px;
}
/*
.nav li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left 
  top: auto;
  left: auto;
}
*/
.nav li li a {
  text-decoration: none;
	color: white;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0;
  padding: 1px 10px;
}

.nav a:hover {
/*  border: 0 solid #963100;
  border-width: 0 0 0 4px;
  padding: 1px 6px;
*/
	background-color:  transparent;
}
.nav li:hover ul, .nav li.navOver ul { /* lists nested under hovered list items */
	color: #f58205;
	display: block;
}
.nav li li {
  display: block;
  float: none;
  text-align: left;
  background-color: transparent;
  border: 0;
  cursor: default;
  margin: 5px 0px;
}
