/*
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.2.2
*/
/* Menu styles */

div.yuimenu {

    /*
    background-color:#a5dcff;
    border-top:1px solid #d40400;
    */
    margin-top:1px;
    
}

/* Submenus are positioned absolute and hidden by default */

div.yuimenu div.yuimenu,
div.yuimenubar div.yuimenu {

    position:absolute;
    visibility:hidden;

}

/* MenuBar Styles */

div.yuimenubar {
	padding-top:0px;
	padding-left:10px;
	
}

/*
    Applying a width triggers "haslayout" in IE so that the module's
    body clears its floated elements
*/
div.yuimenubar div.bd {

    width:100%;

}

/*
    Clear the module body for other browsers
*/
div.yuimenubar div.bd:after {

    content:'.';
    display:block;
    clear:both;
    visibility:hidden;
    height:0;

}


/* Matches the UL inside a Menu or MenuBar instance */

div.yuimenubar ul {

    list-style-type:none !important;
    margin:0;
    padding:0;

}

div.yuimenu ul {

    list-style-type:none;
    border:solid 1px #009933;
    border-width:1px 0 0 0;
    margin:12px 0 0 0;
    padding:2px 0;

}

div.yuimenu ul.first-of-type, 
div.yuimenu ul.hastitle {

    border-width:0;

}



/* MenuItem and MenuBarItem styles */

div.yuimenu li,
div.yuimenubar li {

    font-size:8pt;
    cursor:pointer;
    cursor:hand;
    white-space:nowrap;
    text-align:left;
}

div.yuimenu li {
		padding-bottom:0 !important;
    line-height:100% !important;
}

div.yuimenu li.yuimenuitem {

		width:160px;
    padding:7px 27px 7px 15px !important;
    background:url('bg-submenu.gif') no-repeat;
    
}

div.yuimenu li.yuimenuitem:last-child {

		border-bottom:none !important;

}

div.yuimenu li.yuimenuitem a {

		color:#fff;
    
}

div.yuimenu li.yuimenuitem a.selected {

		/* color:#c43636 !important; */
		color:#fc0 !important;
    
}

div.yuimenu li li,
div.yuimenubar li li {

    font-size:100%;

}


/* Matches the help text for a menu item */

div.yuimenu li.hashelptext em.helptext {

    font-style:normal;
    margin:0 0 0 40px;

}

div.yuimenu li a,
div.yuimenubar li a {
    
    /*
        "zoom:1" triggers "haslayout" in IE to ensure that the mouseover and 
        mouseout events bubble to the parent LI in IE.
    */
    zoom:1;
    color:#fff;
    text-decoration:none;
    
}

div.yuimenu li.hassubmenu,
div.yuimenu li.hashelptext {

    text-align:right;

}

div.yuimenu li.hassubmenu a.hassubmenu,
div.yuimenu li.hashelptext a.hashelptext {

    /*
        Need to apply float immediately for IE or help text will jump to the 
        next line 
    */

    *float:left;
    *display:inline; /* Prevent margin doubling in IE */
    text-align:left;

}

div.yuimenu.visible li.hassubmenu a.hassubmenu, 
div.yuimenu.visible li.hashelptext a.hashelptext {

    /*
        Apply the float only when the menu is visible to prevent the help
        text from wrapping to the next line in Opera.
    */

    float:left;

}


/* Matches selected menu items */

div.yuimenu li.selected,
div.yuimenubar li.selected {

    background-color:transparant;

}

div.yuimenu li.selected a.selected,
div.yuimenubar li.selected a.selected {

    text-decoration:none;

}

div.yuimenu li.selected a.selected,
div.yuimenu li.selected em.selected, 
div.yuimenubar li.selected a.selected {

    color:#f7ec01 !important;

}


/* Matches disabled menu items */

div.yuimenu li.disabled, 
div.yuimenubar li.disabled {

    cursor:default;

}

div.yuimenu li.disabled a.disabled,
div.yuimenu li.disabled em.disabled,
div.yuimenubar li.disabled a.disabled {

    color:#fff200;
    cursor:default;
    
}

div.yuimenubar li.yuimenubaritem {

    float:left;
    display:inline; /* Prevent margin doubling in IE */
    border-left:1px solid #cf534b;
    border-right:1px solid #9d1717;
    /*
    perubahan
    border-width:0 0 0 1px;
    border-style:solid;
    border-color:#fe1900;
    */
    padding:5px 8px;
    /*
    perubahan
    margin-left:6px;
    */
		margin-top:2px;

}

div.yuimenubar li.yuimenubaritem.first-of-type {

    /*
    perubahan
		border-width:0;
		*/
		border-left:none !important;
    

}

div.yuimenubar li.last-child {
		border-right:none !important;
}


/* Styles for the the submenu indicator for menu items */

div.yuimenu li.hassubmenu em.submenuindicator, 
div.yuimenubar li.hassubmenu em.submenuindicator {

    display:-moz-inline-box; /* Mozilla */
    display:inline-block; /* IE, Opera and Safari */
    vertical-align:middle;
    height:8px;
    width:8px;
    text-indent:9px;
    font:0/0 arial;
    overflow:hidden;
    /*
    perubahan
    background-image:url(map.gif);
    background-repeat:no-repeat;
		*/
		
}

div.yuimenubar li.hassubmenu em.submenuindicator {

    background-position:0 -24px;
    /*
    perubahan
    margin:0 0 0 5px;
    */

}

/* Styles for a menu item's "checked" state */

div.yuimenu li.checked {

    position:relative;

}

div.yuimenu li.checked em.checkedindicator {

    height:8px;
    width:8px;
    text-indent:9px;
    overflow:hidden;
    background-image:url(map.gif);
    background-position:0 -48px;
    background-repeat:no-repeat;
    position:absolute;
    left:6px;
    _left:-16px; /* Underscore hack b/c this is for IE 6 only */
    top:.5em;

}

div.yuimenu li.checked em.checkedindicator.selected {

    background-position:0 -56px;

}

div.yuimenu li.checked em.checkedindicator.disabled {

    background-position:0 -64px;

}