/* This enables only the most basic drop down styles.
This allows the menu to function while  letting the theme do the styling work. */
#cssmw {
}
  #cssmw li {
    float: left;
overflow: hidden;
  }
    #cssmw li ul {
      display: none;
      z-index: 2000;
    }
    #cssmw li:hover > ul {
      display: block;
      position: absolute;
    }
    #cssmw li:hover > ul li {
      clear: left;
    }