/*



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!



*/

/* OFFICE-STYLE FREESTYLE MENU LAYOUT *//* All <ul> tags in the menu including the first level */

.menulist, .menulist ul {

 margin: 0;

 padding: 0px;

 width: 198px;

 list-style: none;

 background: #0a0060;

 border: 0px solid #002201;}



/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */

.menulist ul {

 visibility: hidden;

 position: absolute;



 z-index: 99;

 top: 0;

 left: 198px;

}



/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */

.menulist li {

 position: relative;

}



/* Links inside the menu */

.menulist a {

 display: block;

 padding: 3px 4px 4px 6px;



font-family: verdana, helvetica, arial, sans-serif;



font-size: 12px;



font-weight: normal;



color: #ffffff;

 text-decoration: none;



 z-index: 99;

 border: 1px solid #002201;

}

/* IE fix because it doesn't support transparent borders */

* html .menulist a {

 border: 1px;



 z-index: 99;

 margin: 0px;

}


.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {



font-family: verdana, helvetica, arial, sans-serif;



font-size: 12px;



font-weight: normal;

color: #000000;

 background-color: #bab2fb;

 padding: 3px 5px 4px 6px;

 border: 1px solid #002201; */

 margin: 0;

}

.menulist a.highlighted {



font-family: verdana, helvetica, arial, sans-serif;



font-size: 12px;



font-weight: normal;

 color: #000000;

 background-color: #bab2fb;

  border: 1px solid #002201; */

 margin: 0;

}


.menulist a .subind {

 float: right;

}



/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/

* html .menulist li {

 float: left;

 height: 1%;

}

* html .menulist a {

 height: 1%;

}

/* End Hack */


