/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want!
All you have to do is ensure the script has the correct CSS property name
(like 'visibility' or 'display') that changes to show/hide menus.

If you want to extend this layout, one good resource for UL/LI formatting is:
    http://www.alistapart.com/articles/taminglists/
Alternatively, you can use any other CSS dropdown layout instead. More here:
    http://www.alvit.de/css-showcase/
Consult your favourite CSS reference for customising fonts/borders/etc.

Otherwise, you can just change the #RGB border/background colours where
suitable to customise for your site -- easy :).

*/



/* HORIZONTAL FREESTYLE MENU LAYOUT */
#navbar > li{
    padding-bottom: 10px;
}
#navbar li:hover{
    background: white;
    color: black;
}
#navbar li.active{
    color: white;
    font-weight: bold;
}
#navbar li a{
    color: black;
}
#navbar li ul{
    display: none;
}
#navbar li:hover ul{
    display: block;
    position: absolute;
    background: white;
    color: black;
    width: 170px;
    margin-top: 30px;
    z-index: 10000;
    padding-bottom: 10px;
}
#navbar li:hover ul li a{
    color: black;
}