/* *************************************************************
   CMS Custom Colors and settings 
************************************************************* */
.cmsMenu {
    text-align: left;
    width: 100px;
    padding: 0px;
    margin: 0px;

    line-height: 1.1em;
    font-weight: normal;
    font-family: arial, helvetica, sans-serif;
    font-size: 12px;
}

/******************************************************************
HORIZONTAL MENU (menulist)
******************************************************************/
#listMenuRoot {
 width: 100px;
 height: auto;
 position: relative;
 z-index: 100;
} 

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

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 2.4em; /* I'm using ems rather than px to allow people to zoom their font */
 left: 0px;
 width: 100px;
 padding-bottom:1px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 0px;
 left: 100px;
}

/*
 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.
*/
.menulist li {
 float: left;
 position: relative;
 background: #FFF;
 margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin-right: 0;
 margin-bottom: -1px;
 text-align: left;
}

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

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover {
 color: #FFF;
 background-color: #A64;
 text-decoration: none;
}

.menulist a.highlighted {
 color: #FFF;
 background-color: #C86;
 text-decoration: none;
}

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
 z-index: 99;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */

/******************************************************************
VERTICAL MENU (menulistVert)
******************************************************************/

/* All <ul> tags in the menu including the first level */
.menulistVert, .menulistVert ul {
 margin: 0;
 padding: 0;
 width: 100px;
 list-style: none;
 z-index: 100;
}

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

/*
 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.
*/
.menulistVert li {
 position: relative;
 background: #EEE;
 margin-bottom: 0px;
}
.menulistVert ul>li:last-child {
 margin-bottom: 1px;
}

.menulistVert li li {
 margin-bottom: 3px;
}

.menulistVert li li a {
 padding: 2px;
}

/* Links inside the menu */
.menulistVert a {
 display: block;
 color: #000;
 background-color: #bdb182;
 text-decoration: none;
 padding-left: 5px;
}

.menulistVert a img { /* corrects image padding caused by text adjustment */
 margin-left: -5px;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulistVert a:hover, .menulistVert a.highlighted:hover, .menulistVert a:focus {
 color: #000;
 background-color: #cec293;
 text-decoration: underline;

}
.menulistVert a.highlighted {
 color: #000;
 background-color: #cec293;
 text-decoration: none;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulistVert a .subind {
 float: right;
 
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulistVert li {
 float: left;
 height: 1%;
}
* html .menulistVert a {
 height: 1%;
}
.menulistVert .disabled { color: #888; }
/* End Hack */


/*************************************************
 File browser options
*************************************************/

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
#browsermenu_fm UL, #browsermenu_go UL {
 visibility: hidden;
 position: absolute;
 top: 3px;
 left: 0;
 width: 170px;
}

#browsermenu_fm UL LI A, #browsermenu_go UL LI A {
 padding: 0;
 margin: 0;
}





