
.ncmenu {

    visibility: hidden;
    position: absolute;
    z-index:10000;
    top: 0px;
    left: 0px;

}


.ncmenu {
	margin:0px;
	padding:0px;
}

.ncmenu ul.menucontainer {
 	border-width: 0pt;
 	border-color: #000000;
 	border-style: solid;
 	padding: 1px 0pt;
}


	
.ncmenu li {

    list-style-type: none;    
	color: #000000;
	text-decoration: none;
	display: block;
	padding: 2px 2px 2px 2px;
}

.ncmenu li.ncmenuitem {

    list-style-type: none;    
	color: #000000;
	text-decoration: none;
	display: block;
	padding: 2px 2px 2px 2px;
}

.ncmenu li.ncmenuitem-highlight {

    background-color: #0b3d91; 
    color:#fff;  
    cursor:pointer;
}

.ncmenu li a:hover {

        background-color: #0b3d91; 
        color:#fff  

}

.ncmenu li a {

	color: #428bca;
	text-decoration: none;
	display: block;
	padding: 2px 2px 2px 2px;
}



.ncmenu ul,
.ncmenu li,
.ncmenu h6 { 

    margin: 0;
    padding: 0;

}

.ncmenuitemlabel {

    text-align: left;
    white-space: nowrap;

}



.ncmenu ul {

    *zoom: normal;

}


.ncmenuitemlabel {

    display: block;

}

.ncmenuitemlabel .helptext {

    font-style: normal;
    display: block;
    
    /*
        The value for the left margin controls how much the help text is
        offset from the text of the menu item.  This value will need to 
        be customized depending on the longest text label of a menu item.
    */
    
    margin: -1em 0 0 10em;
    
}

/*
    PLEASE NOTE: The <div> element used for a menu's shadow is appended 
    to its root element via JavaScript once it has been rendered.  The 
    code that creates the shadow lives in the menu's public "onRender" 
    event handler that is a prototype method of YAHOO.widget.Menu.  
    Implementers wishing to remove a menu's shadow or add any other markup
    required for a given skin for menu should override the "onRender" method.
*/

.nc-menu-shadow {

    position: absolute;
    visibility: hidden;
    z-index: -1;

}

.nc-menu-shadow-visible {

    top: 2px;
    right: -3px;
    left: -3px;
    bottom: -3px;
    visibility: visible;

}


.hide-scrollbars * {

	overflow: hidden;

}

.hide-scrollbars select {

	display: none;

}


/*

The following style rule (".ncmenu.show-scrollbars") overrides the 
".show-scrollbars" rule defined in container-core.css which sets the 
"overflow" property of a YAHOO.widget.Overlay instance's root HTML element to 
"auto" when it is visible.  Without this override, a Menu would have scrollbars
when one of its submenus is visible.

*/

.ncmenu.show-scrollbars {

	overflow: visible; 

}

.ncmenu.hide-scrollbars .nc-menu-shadow {

    overflow: hidden;

}

.ncmenu.show-scrollbars .nc-menu-shadow {

    overflow: auto;

}



/* Menu style rules */

.ncmenu {

    background-color: #fff;
    border: solid 2px #0b3d91;
    padding: 1px;
    
}

.nc-menu-shadow {

    display: none;

}

.ncmenu ul {

    border: solid 1px #c4c4be;
    border-width: 1px 0 0 0;
    padding: 10px 0;

}

.ncmenu .nc-menu-body-scrolled {

    overflow: hidden;

}


/* Group titles */

.ncmenu h6 { 

    font-size: 100%;
    font-weight: normal;
    border: solid 1px #c4c4be;
    color: #b9b9b9;    

}


.ncmenu h6 {

    border-width: 1px 0 0 0;
    padding: 5px 10px 0 10px;

}

.ncmenu ul.first-of-type, 
.ncmenu ul.hastitle,
.ncmenu h6.first-of-type {

    border-width: 0;

}



/* Top and bottom scroll controls */

.ncmenu .topscrollbar,
.ncmenu .bottomscrollbar {

    height: 16px;
    background-position: center center;
    background-repeat: no-repeat;

}

.ncmenu .topscrollbar {

    background-image: url(menu_up_arrow.png);

}

.ncmenu .topscrollbar_disabled {

    background-image: url(menu_up_arrow_disabled.png);

}

.ncmenu .bottomscrollbar {

    background-image: url(menu_down_arrow.png);

}

.ncmenu .bottomscrollbar_disabled {

    background-image: url(menu_down_arrow_disabled.png);

}


/* MenuItem and MenuBarItem styles */

.ncmenuitem {

    /*
        For IE: Used to collapse superfluous white space between <li> elements
        that is triggered by the "display" property of the <a> elements being
        set to "block."
    */

    *border-bottom: solid 1px #f6f7ee;

}

.ncmenuitemlabel {

    font-size: 85%;
    color: #000;
    text-decoration: none;

}

.ncmenuitemlabel {

    padding: 2px 24px;
    
}

.ncmenuitem-hassubmenu {

    background: url(menuitem_submenuindicator.png) right center no-repeat;

}

.ncmenuitem-checked {

    background: url(menuitem_checkbox.png) left center no-repeat;

}

.ncmenuitemlabel .helptext {

    margin-top: -1.1em;
    *margin-top: -1.2em;  /* For IE*/
    
}



/* MenuItem states */


/* Selected MenuItem */

.ncmenuitem-selected {

    background-color: #8c8ad0;

}

.ncmenuitemlabel-selected {

    text-decoration: underline;
    color: #fff;

}

.ncmenuitem-hassubmenu-selected {

    background-image: url(menuitem_submenuindicator_selected.png);

}

.ncmenuitem-checked-selected {

    background-image: url(menuitem_checkbox_selected.png);

}


/* Disabled MenuItem */

.ncmenuitemlabel-disabled {

    cursor: default;
    color: #b9b9b9;

}

.ncmenuitem-hassubmenu-disabled {

    background-image: url(menuitem_submenuindicator_disabled.png);

}

.ncmenuitem-checked-disabled {

    background-image: url(menuitem_checkbox_disabled.png);

}