/*
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;
 width: 147px;
 list-style: none;
 background-color: #ffffff;
 border: 1px solid #000000;
 text-align: left;
/* background: #F87217 url(listmenu_o.gif) left repeat-y;
 border: 1px solid #654;*/
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 left: 130px;
 width: 145px;
 border: 1px #000000 solid;
}

.menulist ul ul { left: 135px; }

/* 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: 1px 4px 1px 6px;
 color: #000000;
 text-decoration: none;
 border: 1px solid transparent;
 font-family: Copperplate Gothic Bold;
 font-size: 11px;
 /* HACK: MSIE doesn't support transparent borders */
 *border: none;
 *margin: 1px;
}

/*
 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: #000000;
 background-color: #F87217;
 padding: 1px 4px 1px 6px;
 border: 1px solid #F87217;
 margin: 0;
 display: block;

}
.menulist a.highlighted {
 color: #FFF;
 background-color: #666666;
 border: 1px 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 {
 float: right;
}

/*
 HACK: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 Yeah, I know this is invalid CSS.
 If it bothers you, put it in a conditional comment :).
*/

.menulist li {
 *float: left;
 *height: 1%;
}
.menulist a {
 *height: 1%;
}



/* End Hack */



/* PV misc additions */

.nohand {
	cursor: default;
}

