/*
  Menu behaviour
*/
#nav {
    background-color: transparent;
    margin-left: 30px;
    margin-top: 30px;
    padding: 0px;
    float: left;
    display: block;
    font-size: 14pt;
    font-family: calibri,verdana,arial,sans-serif;
    font-style: normal;
    z-index: 10;
    background-color: #42634a;
    border:1px outset #42634a;
    border-radius: 7px;
}

#nav ul {
    list-style: none outside;
    z-index: 5;
}

#nav ul>li {
    float: left;
    display: inline;
    position: relative;
    color: white;
    background: #42634a;
    border: 2px outset #42634a;
    border-radius: 5px;
    margin-right: 3px;
}

#nav ul>li:last-child {
    margin-right: 0px;
}

#nav ul>li:hover {
    color: yellow;
}

#nav ul>li:active {
    border: 2px inset rgb(0,40,10);
}

#nav ul>li ul {
/*    background-color: rgb(0,40,10);
    list-style: none;*/
    display: none;
    position: absolute;
    left: 0;
    z-index: 5;
}

#nav ul>li:hover ul {
    display: inline;
    /* IE7 vertical location bug: must offset top by height of....*/
    top: 1em; /*....1st level list item +....*/
    margin-top: 5px;
}

#nav ul>li ul>li {
    display: inline;
    white-space: nowrap;
    min-width: 7.5em; /* Big enough for most items, will self-expand */
}

/*#nav>ul>li>ul>li:hover {
    position: relative;
}*/

#nav a {
    color: white;
    text-decoration: none;
    padding: 1px 3px 1px 3px;
}

#nav a:hover {
    color: yellow;
}

