@charset "UTF-8";

/* Submenu items */
nav ul ul {
   display:none; /* Sub menus are hiden by default */
   position:absolute;
   z-index:999;

   left:0;
   right:auto; /*resets the right:50% on the parent ul */

}
nav ul ul li {
   left:auto;  /*resets the left:50% on the parent li */
   margin:0; /* Reset the 1px margin from the top menu */
   clear:left;
   width:100%;
}

/* Flip the last submenu so it stays within the page */
nav ul ul.last {
   left:auto; /* reset left:0; value */
   right:0; /* Set right value instead */
}

/* Make the sub menus appear on hover */
nav ul li:hover ul,
nav ul li.hover ul { /* This line is required for IE 6 and below */
   display:block; /* Show the sub menus */
}