#nav-div {
  text-align: right;
  float: right;
  width: 550px;
  padding: 2px 0 0 0;
  }
  li ul.account li.account {width:150px;}
  li ul.account li.account a:hover{width:150px;}
#nav-div-clear {
  clear: right;
  height: 0px;
  overflow: hidden;
  }
  
#nav, #nav ul { /* all lists */
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-align: right;
  }

#nav a {
  display: block;
  color: #FFF;
  background: none;
  text-decoration: none;
  }

#nav li { /* all list items */
  float: left;
  padding: 0 5px;
  margin: 0;
  text-align: left; /* width needed or else Opera goes nuts */
  }

#nav li ul { /* second-level lists */
  position: absolute;
  background: orange;
  width: 250px;
  z-index: 100;
  left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
  }
  
#nav li ul li {
  background: #000;
  color: #FFF;
  border-bottom: 1px solid #A70000;
  width: 250px;
  }
  
#nav li ul li a {
  display: block;
  width: 250px;
  padding: 5px 0 5px 5px;
  text-decoration: none;
  color: #FFF;
  }
  
#nav li ul li a:hover {
  color: #FFF;
  background: #A70000;
  text-decoration: none;
  }

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
  left: auto;
  }