/* listmenu_o.css */

/* includes
VERTICAL MENU
HORIZONTAL MENU
CONTEXT MENU
*/

/*

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

*/


/******************************************************************************/
/* {BEG: VERTICAL MENU */

/* OFFICE-STYLE FREESTYLE MENU LAYOUT */

/* ALL <UL> TAGS IN THE MENU INCLUDING THE FIRST LEVEL */
.menulist, .menulist ul 
{
    margin: 0;
    padding: 1px;
    width: 250px;
    list-style: none;
    background: #F0F0F8 url(/images/listmenu_o.png) 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: 250px;
}

/* 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: 3px 4px 3px 30px;
    color: #000;
    text-decoration: none;
    border: 1px solid transparent;
    margin: 0;
 font-family: arial, helvetica, sans-serif;
 font-size: 9pt;
}

/* HACKS: MSIE6 DOESN'T SUPPORT TRANSPARENT BORDERS, MIMIC WITH MARGINS */
* html .menulist li a 
{
    border-width: 0;
    margin: 1px;
}

/* LIST 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: #007722;	/* GREEN */
    background-color: #0558A0;	/* BLUE */
    padding: 2px 5px 4px 29px;
    border: 1px solid #ADF;
    margin: 0;
    /* background-color: #46A; */
}

.menulist a.highlighted 
{
    color: #FFF;
    background-color: #009911;	/* MED GREEN */
    background-color: #4D87CE;	/* MED GREEN */
    border: 1px solid #CDE;
    margin: 0;
    /* background-color: #68C; */
    /* background-color: #6080C0; */	/* MED BLUE */
}

/*
 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;
}

/*
 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;
    width: 100%;
}

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

* html .menulist a 
{
    height: 1%;
}
/* 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 :).

*/



/* HORIZONTAL FREESTYLE MENU LAYOUT */


.current-page 
{ 
    color: #CC0000;
    background-color: #FFFFFF;
}

.current-page a
{ 
    color: #FF0000;
    background-color: #0000FF;
    text-decoration: none;
    font-weight: normal;
}
/* }END: VERTICAL MENU */
/******************************************************************************/

/******************************************************************************/
/* {BEG: HORIZONTAL MENU */

/* ALL <UL> TAGS IN THE MENU INCLUDING THE FIRST LEVEL */
.menubar, .menubar  ul 
{
    padding: 0;
    padding: 1px;
    width: 500px;
    list-style: none;
    background: #F0F0F8 url(/images/listmenu_o.png) left repeat-y;
    border: 1px solid #654;
    margin: 0;
}

/* SUBMENUS (<UL> TAGS) ARE HIDDEN AND ABSOLUTELY POSITIONED DOWNWARDS FROM THEIR PARENT */
.menubar ul 
{
    display: none;
    position: absolute;
    top: 1.0em; 
    margin-top: 13px; /* I'M USING EMS AND PX TO ALLOW PEOPLE TO ZOOM THEIR FONT */
    left: -1px;
    width: 150px;
}

/* SECOND AND THIRD ETC. LEVEL SUBMENUS - POSITION ACROSS FROM PARENT INSTEAD */
.menubar ul ul 
{
    top: -1px; 
    margin-top: 0;
    left: 148px;
}

/*
 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.
*/
.menubar li 
{
    float: left;
    display: block;
    position: relative;
    border: 1px solid #CCCCCC;
    /* border: 1px solid #330; */
    margin-right: -1px;
    background-color: #CCCCCC;
    /*background: #FED; */
    width: 120px;
    font-family: arial, helvetica, sans-serif;
    font-size: 9pt;
}

/* ITEMS IN SUBMENUS - OVERRIDE FLOAT/BORDER/MARGIN FROM ABOVE, RESTORING DEFAULT VERTICAL STYLE */
.menubar ul li 
{
    float: none;
    margin-bottom: -1px;
    margin: 0;
}
.menubar ul>li:last-child 
{
    margin-bottom: 1px; /* MOZILLA FIX */
}

/* LINKS INSIDE THE MENU */
.menubar a 
{
    color: #000;
    display: block;
    padding: 3px;
    text-decoration: none;
    font-weight: bold;
}

/* LIST ITEMS: 'hover' IS mouseover, 'highlighted' ARE PARENT ITEMS TO VISIBLE MENUS */
.menubar a:hover, .menubar a.highlighted:hover, .menubar a:focus 
{
    color: #FFF;
    background-color: #007722;	/* GREEN */
    background-color: #282828;	/* GREY DARK */
    /*background-color: #A64;*/
}
.menubar a.highlighted 
{
    color: #FFF;
    background-color: #009911;	/* GREEN MED */
    background-color: #3C3C3C;	/* GREY MED */
    /* background-color: #C86; */
}

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

/* ONLY STYLE SUBMENU INDICATORS WITHIN SUBMENUS. */
.menubar a .subind 
{
    display: block;
    float: right;
}
.menubar ul a .subind 
{
    display: block;
    float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */

.menubar a 
{
    float: left;
}
.menubar ul a 
{
    float: none;
}
/* \*/
.menubar a 
{
    float: none;
}

/* }END: HORIZONTAL MENU */
/******************************************************************************/

/******************************************************************************/
/* {BEG: MENU HACKS */
/*
 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 .menubar ul li 
{
    float: left;
    width: 100%;
}

* html .menubar ul li {
 float: left;
 height: 1%;
}
* html .menubar ul a {
 height: 1%;
}
/* }END: MENU HACKS */
/******************************************************************************/

/******************************************************************************/
/* {BEG: CONTEXT MENU */

body
{
    font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
    margin-left:0px;
}

#contextMenu
{	/* THE MENU CONTAINER */
    border:1px solid #202867;	/* BORDER AROUND THE ENTIRE MENU */
    background-color:#D5D3CD;	/* BACKGROUND COLOR OF THE MENU */
    margin:0px;
    padding:0px;
    width:175;	/* WIDTH OF CONTEXT MENU */
    /* font-family:arial; */
    font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
    font-size:08pt;
    /* background-image:url('images/context_gradient.gif'); */
    /* background-repeat:repeat-y; */
    
    /* NEVER CHANGE THESE TWO VALUES */
    display:none;
    position:absolute;
}

#contextMenu a
{	/* LINKS IN THE CONTEXT MENU */
    text-decoration:none;
    line-height:20px;
    vertical-align:middle;	
    height:18px;
    color: #000;
    
    /* DON'T CHANGE THESE 3 VALUES */
    display:block;	
    width:100%;
    clear:both;
}

#contextMenu a:hover
{	/* MOUSE OVER LINKS IN THE CONTEXT MENU */
    color: #FFF;
}

#contextMenu li
{	/* EACH MENU ITEM */
    list-style-type:none;
    padding:1px;
    margin:1px;
    cursor:default;
 /*   cursor:pointer;	 */
    clear:both;
}

#contextMenu li div
{	/* DYNAMICALLY CREATED DIVS */
    cursor:pointer;	
}

#contextMenu .contextMenuHighlighted
{	/* HIGHLIGHTED CONTEXT MENU ITEM */
    border:1px solid #000;
    padding:0px;
    color: #FFFFFF;
    background-color:#0A246A;
    /* background-color:#E2EBED; */
}

#contextMenu img
{
    border:0px;
}

#contextMenu .imageBox
{	/* DYNAMICALLY CREATED DIVS FOR IMAGES IN THE MENU */

    float:left;
    padding-left:2px;
    padding-top:3px;
    vertical-align:middle;
    
    width: 30px;	/* IE 5.x */
    width/* */:/**/28px;	/* OTHER BROWSERS */
    width: /**/28px;
}

#contextMenu .itemTxt
{
    float:left;		
    width: 120px;	/* IE 5.x */
    width/* */:/**/140px;	/* OTHER BROWSERS */
    width: /**/140px;		
}

/* }END: CONTEXT MENU */
/******************************************************************************/

/******************************************************************************/
/* {BEG: JSDO MENU */

.jsdomenudiv 
{
	BORDER-RIGHT: #000000 outset; BORDER-TOP: #ffffff outset; Z-INDEX: 10; VISIBILITY: hidden; BORDER-LEFT: #ffffff outset; CURSOR: default; BORDER-BOTTOM: #000000 outset; POSITION: absolute; BACKGROUND-COLOR: #cccccc
}
.jsdomenuitem 
{
	BORDER-RIGHT: medium none; PADDING-RIGHT: 15px; BORDER-TOP: medium none; PADDING-LEFT: 10px; FONT-SIZE: 12px; PADDING-BOTTOM: 2px; BORDER-LEFT: medium none; COLOR: #000000; PADDING-TOP: 2px; BORDER-BOTTOM: medium none; FONT-FAMILY: sans, Verdana, Geneva, Arial, sans-serif; POSITION: relative; BACKGROUND-COLOR: #cccccc
}
.jsdomenuitemover 
{
	BORDER-RIGHT: medium none; PADDING-RIGHT: 15px; BORDER-TOP: medium none; PADDING-LEFT: 10px; FONT-SIZE: 12px; PADDING-BOTTOM: 2px; BORDER-LEFT: medium none; COLOR: #ffffff; PADDING-TOP: 2px; BORDER-BOTTOM: medium none; FONT-FAMILY: sans, Verdana, Geneva, Arial, sans-serif; POSITION: relative; BACKGROUND-COLOR: #000099
}
.jsdomenusep 
{
	WIDTH: 95%; TEXT-ALIGN: center
}

/* }END: JSDO MENU */
/******************************************************************************/

/* ALL <UL> TAGS IN THE MENU INCLUDING THE FIRST LEVEL */
.menulist2, .menulist2 ul 
{
    margin: 0;
    padding: 1px;
    width: 250px;
    list-style: none;
    background: #F0F0F8 url(/images/listmenu_o.png) left repeat-y;
    border: 1px solid #654;
}

/* SUBMENUS (<UL> TAGS) ARE HIDDEN AND ABSOLUTELY POSITIONED ACROSS FROM THEIR PARENT */
.menulist2 ul 
{
    display: none;
    position: absolute;
    top: 0;
    left: 250px;
}

/* 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: 3px 4px 3px 30px;
    color: #000;
    text-decoration: none;
    border: 1px solid transparent;
    margin: 0;
    font-family: arial, helvetica, sans-serif;
    font-size: 9pt;
}

/* HACKS: MSIE6 DOESN'T SUPPORT TRANSPARENT BORDERS, MIMIC WITH MARGINS */
* html .menulist2 li a 
{
    border-width: 0;
    margin: 1px;
}

/* LIST 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: #46A;	/* BLUE */
    background-color: #007722;	/* GREEN */
    background-color: #0558A0;	/* BLUE */
    padding: 2px 5px 4px 29px;
    border: 1px solid #ADF;
    margin: 0;
}

.menulist2 a.highlighted 
{
    color: #FFF;
    background-color: #6080C0;	/* MED BLUE */
    background-color: #68C;	/* LT BLUE */
    background-color: #009911;	/* MED GREEN */
    background-color: #4D87CE;	/* MED BLUE */
    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:
    .menulist2 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 
{
    float: right;
}

/*
 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;
    width: 100%;
}

* html .menulist2 li 
{
    float: left;
    height: 1%;
}

* html .menulist2 a 
{
    height: 1%;
}
/* END HACKS */
