/*
Copyright (c) 2006, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.txt
Version: 0.12.1
*/

div.yuimenu {
    position: absolute;
    top: 10px;
    left: 0;
    background-color: #b0c67e;
    width: 150px;
    font-weight: normal;
    text-transform: none;
    z-index: 1;
}

div.yuimenu ul {
    list-style-type:none;
    margin: 2px;
    padding:0;
}

/* MenuItem and MenuBarItem styles */
div.yuimenu li {
    position:relative;
    line-height:1.8em;
    cursor:pointer;
    cursor:hand;
    white-space:nowrap;
    text-align:left;
}
div.yuimenu li.yuimenuitem {
  padding-left: 5px;
  border:1px solid white;
}

div.yuimenu li a {
    /*
        "zoom:1" triggers "haslayout" in IE to ensure that the mouseover and 
        mouseout events bubble to the parent LI in IE.
    */
    zoom:1;
    color:white;
    text-decoration:none;
}

/* Matches focused and selected menu items */
div.yuimenu .selected {background-color: #686f46;}
