/*

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!

*/



/* VERTICAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 background: #D6561E;
 font-family: georgia, times, serif;
 font-size: 8pt;
 text-transform: capitalize;
 font-weight: bold;
 margin: 0;
 padding: 0;
 width: 150px;
 list-style: none;
}

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

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist li {
 position: relative;
 border-bottom: 1px dotted #E7AD0F;
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 3px;
 color: #ffffff;
 text-decoration: none;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #D6561E;
 background-color: #ffffff;
}
.menulist a.highlighted {
 color: #D6561E;
 background-color: #ffffff;
}

    .menulist a#nav {
      display: block; padding: 8px 8px;
    }
    .menulist a#nav:hover, .menulist a.highlighted#subnav, .menulist a:focus {
      display: block; padding: 8px 8px;
    }

    .menulist a#navon {
      background: #E7AD0F; color: #D6561E; font-weight: bold; display: block; padding: 8px 8px;
    }
    .menulist a#navon:hover, .menulist a.highlighted#subnavon, .menulist a:focus {
      display: block; padding: 8px 8px;
    }

    .menulist a#subnav {
      background: #E7AD0F; color: #ffffff; font-weight: normal; border-top: 1px dotted #ffffff; 
    }
    .menulist a#subnav:hover, .menulist a.highlighted#subnav, .menulist a:focus {
     background: #E7AD0F; color: #D6561E;
    }

    .menulist a#subnavon {
      background: #E7AD0F; color: #ffffff; font-weight: normal; border-top: 1px dotted #ffffff; display: block; padding: 8px 8px;
    }
    .menulist a#subnavon:hover, .menulist a.highlighted#subnavon, .menulist a:focus {
     background: #E7AD0F; color: #D6561E;
    }

    .menulist a#subnavonlive {
      background: #E7AD0F; color: #D6561E; font-weight: normal; border-top: 1px dotted #ffffff; display: block; padding: 8px 8px;
    }
    .menulist a#subnavonlive:hover, .menulist a.highlighted#subnavonlive, .menulist a:focus {
     background: #E7AD0F; color: #D6561E;
    }


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.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 */
