#nav-utilities {
    background: #dda85b;
    border-radius: 0 0 3px 3px;
    color: white;
    font-size: 0.85em;
    font-weight: 400;
    margin: 10px;
    padding: 0.25em 1.5em;
    position: absolute;
    right: 0;
    top: 0;
    margin-left: 10px;
}

#nav-utilities li {

    margin-left: 10px;
    padding-left: 10px;
}
#vunavb{
  background: #000000;
  border-radius: 0 0 3px 3px;
  color: #fff;
  font-size: 0.85em;
  font-weight: 400;
  padding: 0.25em 8.5em;
  position: absolute;
  right: 110px;
  top: 100;
/*
*    list-style:none;
*    font-weight:bold;
*    margin-bottom:5px;
*    float:right; /* Clear floats */
*    width:100%;
*      position:relative;
*          z-index:5;
*          */
}
#vunavb li{
    float:left;
*    margin-right:12px;
    position:relative;
  text-align: -webkit-match-parent;
   list-style-type: none;
}
#vunavb a{
    display:block;
    padding:8px;
    color:#fff;
    background: #000000;
    text-decoration:none;

}
#vunavb a:hover{
    color:#fff;
    background:#dda85b;
    text-decoration:underline;
}

/*--- DROPDOWN ---*/
#vunavb ul{
    background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
    background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
    list-style:none;
    position: absolute;
    left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#vunavb ul li{
    padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
    float:none;
    list-style-type: none;
  text-align: -webkit-match-parent;
}
#vunavb ul a{
border-radius: 3px;
  color: #fff;
  display: block;
  padding: 0.15em 1em;
  text-decoration: none;
  text-shadow: 0 1px 0 #000;
  list-style-type: none;
}
#vunavb li:hover ul{ /* Display the dropdown on hover */
  left:0; /* Bring back on-screen when needed */
  text-align: -webkit-match-parent;
}
#vunavb li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
    background:#dda85b;
    text-decoration:underline;
  text-align: -webkit-match-parent;
}
#vunavb li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
    text-decoration:none;
    background: #000000;
}
#vunavb li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    background:#dda85b;
}
