/* Menu Styles */

.third-level-menu
{
    position: absolute;
    top: 0;
    right: -250px;
    width: 250px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    border: 1px solid blue;
    z-index:10000;
}

.third-level-menu > li
{
    height: 20px;
    background: white;
}
.third-level-menu > li:hover { background: #CCCCCC; }

.second-level-menu
{
    position: absolute;
    top: 20px;
    left: 0;
    width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index:9999;
    border: 1px solid blue;
}

.second-level-menu > li
{
    position: relative;
    height: 20px;
    background: white;
    color:black;
}
.second-level-menu > li:hover { background: #CCCCCC; }

.top-level-menu
{
    list-style: none;
    padding:0;
    margin:0;
}

.top-level-menu > li
{
    position: relative;
    float: left;
    height: 20px;
    max-width: 120px;
    /*background: #999999;*/
}
.top-level-menu > li:hover { 
		background: #CCCCCC;     
 }

.top-level-menu li:hover > ul
{
    /* On hover, display the next level's menu */
    display: inline;
}


/* Menu Link Styles */

.top-level-menu a /* Apply to all links inside the multi-level menu */
{
    font: bold 11px Arial, Helvetica, sans-serif;
    color: white;
    text-decoration: none;
    padding: 0 0 0 0px;
    
    /* Make the link cover the entire list item-container */
    display: block;
    line-height: 20px;
    background-image: url(p7exp/trigger.gif);
    background-repeat: no-repeat;
    background-position: right center;

}
.second-level-menu a /* Apply to all links inside the multi-level menu */
{
    color: blue;
    background-image: none;
    font-size:9px;
}

.subtree{
    display: block;
    background-image: url(p7exp/trigger.gif);
    background-repeat: no-repeat;
    background-position: right center;
}

.top-level-menu a:hover { color: #000000; }