/*

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

*/



/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 0px;
 list-style: none;
border: thin solid 1px 1px 1px 1px black;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 right: 250px;
border: thin solid black;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 0px 0px 0px 0px;
 color: #000;
 background-color: #fff6e5;
 text-decoration: none;
 border: 0px solid transparent;
 margin: 0;

}
/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist li a {
 border-width: 0;
 margin: 250px;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 background-color: #e0d8b3;
 padding: 0px 0px 0px 0px;
 border: 0px solid #ADF;
 margin: 0;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #e0d8b3;
 border: 0px solid #CDE;
 margin: 0;
}

/*
 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(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
}

/*
 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 li {
 float: left;
}

* html .menulist li {
 float: left;
}
* html .menulist a {
}
/* End Hacks */
/*

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

*/



/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist2, .menulist2 ul {
 margin: 0;
 padding: 0px;
 list-style: none;
 border: 0px solid #654;
 background-color: #fff6e5;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist2 ul {
 display: none;
 position: absolute;
 top: 0;
 left: 250px;
 background-color: #fff6e5;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist2 li {
 position: relative;
}

/* Links inside the menu */
.menulist2 li a {
 display: block;
 padding: 0px 0px 0px 0px;
 color: #000;
 background-color: #fff6e5;
 text-decoration: none;
 border: 0px solid transparent;
 margin: 0;

}
/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist2 li a {
 border-width: 0;
 margin: 0px;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist2 a:hover, .menulist2 a.highlighted:hover, .menulist2 a:focus {
 color: #FFF;
 background-color: #e0d8b3;
 padding: 0px 0px 0px 0px;
 border: 0px solid #ADF;
 margin: 0;
}
.menulist2 a.highlighted {
 color: #FFF;
 background-color: #e0d8b3;
 border: 0px solid #CDE;
 margin: 0;
}

/*
 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(out.gif);
    }
    .menulist2 a#xyz:hover, .menulist2 a.highlighted#xyz, .menulist2 a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist2 a .subind {
}

/*
 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 li {
 float: left;
}

* html .menulist2 li {
 float: left;
}
* html .menulist2 a {
}
/* End Hacks */



/*

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

*/



/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist3, .menulist3 ul {
 margin: 0;
 padding: 0px;
 list-style: none;
 border: 0px solid #654;
 background-color: #fff6e5;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist3 ul {
 display: none;
 position: absolute;
 top: 0;
 right: 250px;
 background-color: #fff6e5;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist3 li {
 position: relative;
}

/* Links inside the menu */
.menulist3 li a {
 display: block;
 padding: 0px 0px 0px 0px;
 color: #000;
 background-color: #fff6e5;
 text-decoration: none;
 border: 0px solid transparent;
 margin: 0;

}
/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist3 li a {
 border-width: 0;
 margin: 0px;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist3 a:hover, .menulist3 a.highlighted:hover, .menulist3 a:focus {
 color: #FFF;
 background-color: #e0d8b3;
 padding: 0px 0px 0px 0px;
 border: 0px solid #ADF;
 margin: 0;
}
.menulist3 a.highlighted {
 color: #FFF;
 background-color: #e0d8b3;
 border: 0px solid #CDE;
 margin: 0;
}

/*
 If you want per-item e0d8b3 images in your menu items, here's how to do it.
 e0d8b3) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 e0d8b3) Copy and paste these next lines for each link you want to have an image:
    e0d8b3menulist3 a#xyz {
      background-image: url(out.gif);
    }
    .menulist3 a#xyz:hover, .menulist3 a.highlighted#xyz, .menulist3 a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist3 a .subind {
}

/*
 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 li {
 float: left;
}

* html .menulist3 li {
 float: left;
}
* html .menulist3 a {
}
/* End Hacks */
/*

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

*/



/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist4, .menulist4 ul {
 margin: 0;
 padding: 0px;
 list-style: none;
 border: 0px solid #654;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist4 ul {
 display: none;
 position: absolute;
 top: 0;
 left: 250px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist4 li {
 position: relative;
}

/* Links inside the menu */
.menulist4 li a {
 display: block;
 padding: 0px 0px 0px 0px;
 color: #000;
 background-color: #fff6e5;
 text-decoration: none;
 border: 0px solid transparent;
 margin: 0;

}
/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist4 li a {
 border-width: 0;
 margin: 0px;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist4 a:hover, .menulist4 a.highlighted:hover, .menulist4 a:focus {
 color: #FFF;
 background-color: #e0d8b3;
 padding: 0px 0px 0px 0px;
 border: 0px solid #ADF;
 margin: 0;
}
.menulist4 a.highlighted {
 color: #FFF;
 background-color: #e0d8b3;
 border: 0px solid #CDE;
 margin: 0;
}

/*
 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:
    .menulist4 a#xyz {
      background-image: url(out.gif);
    }
    .menulist4 a#xyz:hover, .menulist4 a.highlighted#xyz, .menulist4 a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist4 a .subind {
}

/*
 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 .menulist4 li {
 float: left;
}

* html .menulist4 li {
 float: left;
}
* html .menulist4 a {
}
/* End Hacks */
