/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.0
*/
/* Menu & MenuBar styles */

.yuimenubar {

    visibility: visible;
    position: static;
    padding: 0px;
       

}

.yuimenu .yuimenu,
.yuimenubar .yuimenu {

    visibility: hidden;
    position: absolute;
    top: -10000px;
    left: -10000px;

}
.first-of-type .yuimenu li, .first-of-type .yuimenubar li
{
padding:0px;
margin:0px;
height:auto;
}
.first-of-type .yuimenu li a.yuimenuitemlabel{
line-height:14px!important;
height:auto!important;
padding:7px 9px;
width:147px;
}
.yuimenubar li, 
.yuimenu li {

    list-style-type: none;
	padding:0px;
	margin:0px;
	height:37px;
}

.yuimenuitemlabel,
.yuimenubaritemlabel {

    text-align: left;

   

}


/* 
    The following style rule trigger the "hasLayout" property in 
    IE (http://msdn2.microsoft.com/en-us/library/ms533776.aspx) for a
    MenuBar instance's <ul> element, allowing both to clear their floated 
    child <li> elements.
*/

.yuimenubar ul {
padding:0px; margin:0px;
    *zoom: 1;

}


/* 
    Remove the "hasLayout" trigger for submenus of MenuBar instances as it 
    is unnecessary. 
*/

.yuimenubar .yuimenu ul {

    *zoom: normal;

}

/*
    The following style rule allows a MenuBar instance's <ul> element to clear
    its floated <li> elements in Firefox, Safari and and Opera.
*/

.yuimenubar>.bd>ul:after {

  
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
   
}

.yuimenubaritem {

    float: left;
    text-align: left;  
    
}

.yuimenubaritemlabel,
.yuimenuitemlabel {

    display: block;

}

.yuimenuitemlabel .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.
*/

.yui-menu-shadow {

    position: absolute;
    visibility: hidden;
	display:none;
    z-index: -1;

}

.yui-menu-shadow-visible {

    top: 2px;
    right: -3px;
    left: -3px;
    bottom: -3px;
    visibility: visible;

}


/*

There are two known issues with YAHOO.widget.Overlay (the superclass class of 
Menu) that manifest in Gecko-based browsers on Mac OS X:

    1) Elements with scrollbars will poke through Overlay instances floating 
       above them.
    
    2) An Overlay's scrollbars and the scrollbars of its child nodes remain  
       visible when the Overlay is hidden.

To fix these bugs in Menu (a subclass of YAHOO.widget.Overlay):

    1) The "overflow" property of a Menu instance's shadow element and child 
       nodes is toggled between "hidden" and "auto" (through the application  
       and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes)
       as its "visibility" configuration property is toggled between 
       "false" and "true."
    
    2) The "display" property of <select> elements that are child nodes of the 
       Menu instance's root element is set to "none" when it is hidden.

PLEASE NOTE:  
  
    1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are 
       applied only for Gecko on Mac OS X and are added/removed to/from the 
       Overlay's root HTML element (DIV) via the "hideMacGeckoScrollbars" and 
       "showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.
    
    2) There may be instances where the CSS for a web page or application 
       contains style rules whose specificity override the rules implemented by 
       the Menu CSS files to fix this bug.  In such cases, is necessary to 
       leverage the provided "hide-scrollbars" and "show-scrollbars" classes to 
       write custom style rules to guard against this bug.

** For more information on this issue, see:

   + https://bugzilla.mozilla.org/show_bug.cgi?id=187435
   + SourceForge bug #1723530

*/

.hide-scrollbars * {

	overflow: hidden;

}

.hide-scrollbars select {

	display: none;

}


/*

The following style rule (".yuimenu.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.

*/

.yuimenu.show-scrollbars,
.yuimenubar.show-scrollbars {

	overflow: visible; 

}

.yuimenu.hide-scrollbars .yui-menu-shadow,
.yuimenubar.hide-scrollbars .yui-menu-shadow {

    overflow: hidden;

}

.yuimenu.show-scrollbars .yui-menu-shadow,
.yuimenubar.show-scrollbars .yui-menu-shadow {

    overflow: auto;

}




/***********************************************************************************/





#yuimenu {
	padding: 0px;
	/* width: 735px; */
}


/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.0
*/
/* MenuBar style rules */

.yui-skin-mm .yuimenubar {

   /*
    font-size: 93%;  /* 12px */
  /*  line-height: 3;  /* 2 = ~24px */
   /* *line-height: 2.9; /* 1.9 For IE */
    /*border: solid 0px #000;
    background: #000;
    mukesh*/
    
}


/* MenuBarItem style rules */

.yui-skin-mm .yuimenubarnav .yuimenubaritem {

  /*  border-right: solid 1px #444;mukesh*/

}

/* !!! BJA - This should be the ID of the first and last menu items */
/*
#yui-gen0 {
	
	border-left: #000;

}
#yui-gen6 {
	
	border-right: #000;

}
mukesh*/	
.yui-skin-mm .yuimenubaritemlabel {

    padding-top: 0px;
    *padding-top: 10px; 
   /* padding: 0px 27px;*/
    color: #fff;
    text-decoration: none;
    /*font-family: Times New Roman, Times, serif; */
    font-family:Tahoma; 
    font-size:11px; 
    z-index:500; 
    cursor:pointer;
    
    font-weight:bold; 
    text-decoration: none;
   /* text-transform: uppercase;*/
    *position: relative; /*  Necessary to get negative margins in IE. */
    margin: -1px 0;

}
.yui-skin-mm .yuimenubarnav .yuimenubaritemlabel {
	line-height:37px;
    *display: inline-block;
	padding:0px 15px;
}
.yui-skin-mm .yuimenubarnav .yuimenubaritemlabel-hassubmenu {
line-height:39px;
    *display: inline-block;
}

.yui-skin-mm .yuimenubarnav .yuimenubaritemlabel-hassubmenu {

    /*background: url(menubaritem_submenuindicator.png) right center no-repeat;mukesh*/

}



/* MenuBarItem states */

/* Selected MenuBarItem */

.yui-skin-mm .yuimenubaritem-selected {

    background:#516e9f; 
    width:auto;

}

.yui-skin-mm .yuimenubaritemlabel-selected {

   /* border-color: #444; mukesh*/ /* #888; */

}

.yui-skin-mm .yuimenubarnav .yuimenubaritemlabel-selected {
     /*
    border-left-width: 1px;
    margin-left: -1px;    
    *left: -1px;  mukesh*/  /* For IE */
     
}


/* Disabled  MenuBarItem */

.yui-skin-mm .yuimenubaritemlabel-disabled {

    cursor: default;
    color: #666;

}

.yui-skin-mm .yuimenubarnav .yuimenubaritemlabel-hassubmenu-disabled {

    background-image: url(menubaritem_submenuindicator_disabled.png);

}



/* Menu style rules */

.yui-skin-mm .yuimenu {

    font-size: 93%;  /* 12px */
    line-height: 1.5;  /* 18px */
    *line-height: 1.45; /* For IE */

}

.yui-skin-mm .yuimenubar .yuimenu,
.yui-skin-mm .yuimenu .yuimenu {

    font-size: 100%;
}	
.yui-skin-mm .yuimenu .bd{
    width:175px;
    margin:0;
	position:static;
	float:left;
	padding:0px 0px 5px 0px;
	background-color:#516e9f;
}

.yui-skin-mm .yuimenu ul {
margin:0px;
   padding:0px;
    border-width: 0px 0 0 0;
    /*
    border-color: #ccc;
    border-style: solid;
    mukesh*/
}

.yui-skin-mm .yuimenu ul.first-of-type {
padding:5px;
width:165px;

}


/* Group titles */

.yui-skin-mm .yuimenu h6 { 


}

.yui-skin-mm .yuimenu ul.hastitle,
.yui-skin-mm .yuimenu h6.first-of-type {

    border-width: 0;

}


/* Top and bottom scroll controls */

.yui-skin-mm .yuimenu .yui-menu-body-scrolled {

    overflow: hidden;

}

.yui-skin-mm .yuimenu .topscrollbar,
.yui-skin-mm .yuimenu .bottomscrollbar {

   

}


/* MenuItem style rules */

.yui-skin-mm .yuimenuitem {

    /*
        For IE 7 Quirks and IE 6 Strict Mode and Quirks Mode:
        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 0px #fff;
	line-height:14px;
	padding-top:5px;
		padding-bottom:5px;
	
}

.yui-skin-mm .yuimenuitemlabel {
display:block; width:100%;
    padding: 0px;
    color: #fff;
    float: left;
    text-decoration: none;
    text-transform: none;
    cursor: hand; 
    cursor: pointer; /* default; */

}

.yui-skin-mm .yuimenuitemlabel .helptext {

    margin-top: -1.5em;
    *margin-top: -1.45em;  /* For IE*/
    
}

.yui-skin-mm .yuimenuitem-hassubmenu {
 
    background-image: url(menuitem_submenuindicator.png);
    background-position: right center;
    background-repeat: no-repeat;

}

.yui-skin-mm .yuimenuitem-checked {

    background-image: url(menuitem_checkbox.png);
    background-position: left center;
    background-repeat: no-repeat;

}


/* Menu states */


/* Visible Menu */

.yui-skin-mm .yui-menu-shadow-visible {
display:none;


    /*
        Opacity can be expensive, so defer the use of opacity until the 
        menu is visible.
    */

    opacity: .12;
    *filter: alpha(opacity=12);  /* For IE */

}



/* MenuItem states */


/* Selected MenuItem */

.yui-skin-mm .yuimenuitem-selected {

    /*background-color: #32302d;mukesh*/
    background:#6183b4; 
}
.yui-skin-mm .yuimenuitem-hassubmenu-selected {
	background-image: url(menu-hover-icon.png);
    background-position: 153px center;
    background-repeat: no-repeat;
}

/* Disabled MenuItem */

.yui-skin-mm .yuimenuitemlabel-disabled {

    cursor: default;
    color: #666;

}

.yui-skin-mm .yuimenuitem-hassubmenu-disabled {

    background-image: url(menuitem_submenuindicator_disabled.png);

}


.yui-skin-mm .yuimenuitem-checked-disabled {

    background-image: url(menuitem_checkbox_disabled.png);

}



.yui-skin-mm .yuimenuitem {
	
    font-family:Tahoma; 
    font-size:11px; 
    z-index:500; 
    cursor:pointer; 
    font-weight:bold; 
    list-style:none; 
    float: left;
    text-align: justify;
    left:0;
    width:auto; 
    margin:0px; 
    padding:0px;
	width:165px;
}

.yui-skin-mm .yuimenuitem .yuimenuitemlabel {
height:23px;
line-height:23px;
width:147px;
padding:0px 9px; 
}


