/*

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 */

/* MENU 1*/


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
text-align:left;
font-size: 15px;
font-weight: bold;
font-family: "trebuchet ms", "lucida fax", lucida grande, verdana, "trebuchet ms", arial, sans-serif;
 list-style: none;
 width: 790px;
display:inline;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 width: 262px;
}


/*
 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;
 display: block;
 position: relative;
 background: #fff;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li a {
padding: 1px 60px;
background-image: url(img/btn_submenu1_off.gif);
width: 142px;
height: 19px;
}
.menulist ul li a:hover {
padding: 1px 60px;
background-image: url(img/btn_submenu1_on.gif);
width: 142px;
height: 19px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 0;
 color: #fff;
 text-decoration: none;
background-image: url(img/btn_band_off.gif);
width: 262px;
height: 70px;
}
.menulist li a:hover {
 display: block;
 padding: 0;
 color: #fff;
 text-decoration: none;
background-image: url(img/btn_band_on.gif);
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 background-color: #A64;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #C86;
}


/* 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;
}
/* */


/*
 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 .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */





/* MENU 2*/




/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist2 ul {
 display: none;
text-align:left;
 position: absolute;
font-size: 15px;
font-weight: bold;
font-family: "trebuchet ms", "lucida fax", lucida grande, verdana, "trebuchet ms", arial, sans-serif;
 width: 261px;
}


/*
 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.
*/
.menulist2 li {
 float: left;
 display: block;
 position: relative;
 background: #fff;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist2 ul li a {
padding: 1px 57px;
background-image: url(img/btn_submenu2_off.gif);
width: 147px;
height: 19px;
}
.menulist2 ul li a:hover {
padding: 1px 57px;
background-image: url(img/btn_submenu2_on.gif);
width: 147px;
height: 19px;
}
.menulist2 ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist2 li a {
 display: block;
margin-left: 1px;
 color: #fff;
 text-decoration: none;
background-image: url(img/btn_event_off.gif);
width: 261px;
height: 70px;
}
.menulist2 li a:hover {
 display: block;
margin-left: 1px;
 color: #fff;
 text-decoration: none;
background-image: url(img/btn_event_on.gif);
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist2 a:hover, .menulist2 a.highlighted:hover, .menulist2 a:focus {
 color: #FFF;
 background-color: #A64;
}
.menulist2 a.highlighted {
 color: #FFF;
 background-color: #C86;
}


/* Only style submenu indicators within submenus. */
.menulist2 a .subind {
 display: none;
}
.menulist2 ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist2 a {
 float: left;
}
.menulist2 ul a {
 float: none;
}
/* \*/
.menulist2 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 .menulist2 ul li {
 float: left;
 width: 100%;
}

* html .menulist2 ul li {
 float: left;
 height: 1%;
}
* html .menulist2 ul a {
 height: 1%;
}
/* End Hacks */





/* MENU 3*/




/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist3 ul {
 display: none;
 position: absolute;
 text-align:left;
 font-size: 15px;
 font-weight: bold;
 font-family: "trebuchet ms", "lucida fax", lucida grande, verdana, "trebuchet ms", arial, sans-serif;
 width: 261px;
}


/*
 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.
*/
.menulist3 li {
 float: left;
 display: block;
 position: relative;
 background: #fff;
}


/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist3 ul li a {
padding: 1px 65px;
background-image: url(img/btn_submenu3_off.gif);
width: 131px;
height: 19px;
}
.menulist3 ul li a:hover {
padding: 1px 65px;
background-image: url(img/btn_submenu3_on.gif);
width: 131px;
height: 19px;
}
.menulist3 ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}


/* Links inside the menu */
.menulist3 li a {
 display: block;
 margin-left: 1px;
 color: #fff;
 text-decoration: none;
 background-image: url(img/btn_specials_off.gif);
 width: 261px;
 height: 70px;
}
.menulist3 li a:hover {
 display: block;
 margin-left: 1px;
 color: #fff;
 text-decoration: none;
 background-image: url(img/btn_specials_on.gif);
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist3 a:hover, .menulist3 a.highlighted:hover, .menulist3 a:focus {
 color: #FFF;
 background-color: #A64;
}
.menulist3 a.highlighted {
 color: #FFF;
 background-color: #C86;
}


/* Only style submenu indicators within submenus. */
.menulist3 a .subind {
 display: none;
}
.menulist3 ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist3 a {
 float: left;
}
.menulist3 ul a {
 float: none;
}
/* \*/
.menulist3 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 .menulist3 ul li {
 float: left;
 width: 100%;
}

* html .menulist3 ul li {
 float: left;
 height: 1%;
}
* html .menulist3 ul a {
 height: 1%;
}
/* End Hacks */