/*
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 you want it to change.

One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
Consult your favourite CSS reference for editing fonts/borders/etc.

Otherwise, even if you're not very experienced at CSS, you can just go through and change
the #RGB border/background colours where suitable to customise for your site!
*/

/* This is for the message that will appear if javascript is off * /
.nojsdiv {
 visibility: hidden;
}


/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* ********************************************************************* */
/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 font: 12px Arial; 
 margin: 0;
 padding: 0;
 padding-left:3px;
 list-style: none;
 line-height: 23px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 z-index: 9001;
 top: 1.7em; /* I'm using ems rather than px to allow people to zoom their font */
 left: 0px;
 width: 300px;
}

/* Second level submenus - position across from parent instead */
.menulist ul ul {
 top: 0px;
 left: 101%;
 width: 225px;
}

/* Third level submenus - position across from parent instead */
.menulist ul ul ul {
 top: 0px;
 left: 101%;
 width: 200px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 float: left;
 position: relative;
 background: #006699;
 border: 1px solid #330;
 margin-right: -1px;
 text-align: left;
 z-index: 1001;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin-right: 0;
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

.submenulist ul li {
 float: none;
 margin-right: 0px;
 margin-bottom: -1px;
 margin-left: -4px;
 background: #f5f5f5;
 text-align: left;
 z-index: 1001;
}
.submenulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a, .menulist a:visited {
 font: 12px Arial; 
 padding: 3px;
 color: #FFF;
 text-decoration:  none;
}

.submenulist a, .submenulist a:visited {
 display: block;
 padding: 3px;
 color: #000;
 text-decoration:  none;
 background-color: #cccccc;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 font: 12px Arial; 
 color: blue;
 background-color: #99CC66;
 text-decoration:  none;
}
.menulist  a.highlighted {
 color: blue;
 background-color: #99CC66;
 text-decoration:  none;
}
.submenulist a:hover, .submenulist a.highlighted:hover, .submenulist a:focus {
 color: white;
 background-color: #6699CC;
 text-decoration:  none;
}
.submenulist  a.highlighted {
 color: white;
 background-color: #6699CC;
 text-decoration:  none;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
*/
    .menulist a#xyz {
      background-image: url(/images/arrow.gif) no-repeat 2px 2px;
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(/images/arrow.gif) no-repeat left top;
    }

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 position: relative;
 float:right;
 height: 1%;
 margin:0px;
 margin-bottom:1px;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */