/*

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 */


/* All <ul> tags in the menu including the first level */
.menumusic {
 margin: 0;
 padding: 0;
 list-style: none;
 text-align: left;
width: 880px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menumusic ul {
 display: none;
 left: -1px;
 margin: 0px;
 padding: 0px;
 list-style: none;
 border: solid 1px #E0E0E0;
 width: 195px;
 position: absolute;
 padding-bottom: 15px;
 padding-top: 5px;
 margin-top: 7px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menumusic ul ul {
 top: -1px; margin-top: 0;
 left: 130px;
}

/*
 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.
*/

.menumusic li {
 float: left;
 display: block;
 position: relative;
 text-align: left;
 padding: 0 23 0 23px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menumusic ul li {
 float: none;
 margin: 0;
 border: 0px;
 text-align: left;
 
 padding: 0px;
 border-bottom: dashed 1px #CDCDCD;
 padding: 2 0 2 19px;
/* width: 195px; */
 
}

.menumusic ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
 
}

/* Links inside the menu */
.menumusic a {
 display: block;
 color: #003399;
 text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menumusic a:hover, .menumusic a.highlighted:hover, .menumusic a:focus {
 color: black;
 display: block;
}

.menumusic ul li a:hover, .menumusic ul li a.highlighted:hover, .menumusic ul li a:focus {
 display: block;
 color: #003399;
 text-decoration: underline;
 
}

/*
 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:
    .menumusic a#xyz {
      background-image: url(out.gif);
    }
    .menumusic a#xyz:hover, .menumusic a.highlighted#xyz, .menumusic a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menumusic a .subind {
 display: none;
}
.menumusic ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menumusic a {
 float: left;
}
.menumusic ul a {
 float: none;
}
/* \*/
.menumusic a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menumusic ul li {
 float: left;
 width: 100%;
}

* html .menumusic ul li {
 float: left;
 height: 1%;
 
}
* html .menumusic ul a {
 height: 1%;
}

/* End Hacks */