/*

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 :).

*/



/* VERTICAL FREESTYLE MENU LAYOUT */


.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width: 176px;
 list-style: none;
}

.menulist ul {
background-color:#CCDFEE;
 display: none;
 position: absolute;
 top: -1px;
 left: 174px;
 border:1px solid #000;
}

.menulist li {
font-family: Arial, Helvetica, sans-serif;
font-size:11px;
 position: relative;
 margin-bottom: -1px;
}

.menulist a {
 display: block;
 height:17px;
 border-top:1px solid #fff;
 border-bottom:0;
 color: #000;
 margin-bottom:1px;
 width:100%;
 text-indent:5px;
 background-color:#;
 text-decoration: none;
}

.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 margin-bottom:1px;
 background-color:#336699
}

.menulist a.highlighted {
 color: #FFF;
 margin-bottom:1px;
 background-color:#336699
}

.header {
font-family: Arial, Helvetica, sans-serif; 
display:block;
background-color:#003366;
font-weight:bold;
color:#ffffff;
text-indent:5px;
} 
a.sub {background:#CCDFEE url(../styles/sub.gif) no-repeat right center; } 
a.sub:hover{background:#336699 url(../styles/sub.gif) no-repeat right center;}
li.header{ line-height:17px; padding-bottom:2px;}

li.spacer{font-size:3px; background-color:#83add5; height:9px; padding:0; border:0; border-top:1px solid #ffffff;}
img.spacer-img{ height:7px;width:100%; margin:0; }

li:hover > a {color:#ffffff; background:#336699;margin:0;}
 li:hover > a.sub {color:#ffffff;background:#336699 url(../styles/sub-w.gif) no-repeat right center;} 
 
 .menulist a .subind {
 float: right;
}

*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}