ul#vertical-menu {
 list-style:none;
 border-width:1px 2px 2px 2px;
 width:185px;
 padding: 5px;
}

ul#vertical-menu  li a {
 text-decoration:none;
 display:block;
 padding:8px;
 background:#000000;
 color:#eee
}

ul#vertical-menu  li a:hover {
 background:#FE9A2E;
 color:#000000;
}

/* Main menu settings */
#centeredmenu {
   clear:both;
   float:left;
   margin:0;
   width:100%;
   font-family:Verdana, Geneva, sans-serif; /* Menu font */
   font-size:75%; /* Menu text size */
   z-index:1000; /* This makes the dropdown menus appear above the page content below */
   position:relative;
   padding-top:5px;
   padding-bottom:5px;
}

/* Top menu items */
#centeredmenu ul {
   margin:0;
   padding:0;
   list-style:none;
   float:right;
   position:relative;
   right:50%;
}
#centeredmenu ul li {
   padding:0px 5px;
   float:left;
   position:relative;
   left:50%;
}
#centeredmenu ul li a {
   display:block;
   margin:0;
   padding:.6em .9em .8em;
   font-size:1em;
   line-height:1em;
   background:#000000;
   text-decoration:none;
   color:#eee;
   font-weight:normal;
   border-bottom:2px solid #000;
}

#centeredmenu ul li a:hover {
  background:#FE9A2E; /* Top menu items background colour */
  color:#000000;
  border-bottom:2px solid #ddd;
}
#centeredmenu ul li:hover a,
#centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
   background:#FE9A2E; /* Top menu items background colour */
   color:#000000;
   border-bottom:1px solid #ddd;
}

/* Submenu items */
#centeredmenu ul ul {
   display:none; /* Sub menus are hiden by default */
   position:absolute;
   top:2.5em;
   left:0;
   right:auto; /*resets the right:50% on the parent ul */
   width:10em; /* width of the drop-down menus */


}
#centeredmenu 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%;

}
#centeredmenu ul ul li a,
#centeredmenu ul li.active li a,
#centeredmenu ul li:hover ul li a,
#centeredmenu ul li.hover ul li a { /* This line is required for IE 6 and below */
   font-size:.8em;
   font-weight:normal; /* resets the bold set for the top level menu items */
   background:#000000;
   color:#eee;
   line-height:3.0em; /* overwrite line-height value from top menu */
   border-bottom:1px solid #ddd; /* sub menu item horizontal lines */
   text-align:center;;
}
#centeredmenu ul ul li a:hover,
#centeredmenu ul li.active ul li a:hover,
#centeredmenu ul li:hover ul li a:hover,
#centeredmenu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
   background:#FE9A2E; /* Sub menu items background colour */
   color:#000000;
}


/* Make the sub menus appear on hover */
#centeredmenu ul li:hover ul,
#centeredmenu ul li.hover ul { /* This line is required for IE 6 and below */
   display:block; /* Show the sub menus */
}