﻿/* CSS FOR MENU ITEM OF TYPE "top" */

.Custom_menuItem_top_regular,.Custom_menuItem_top_over,.Custom_menuItem_top_click,.Custom_menuItem_top_disabled,.Custom_menuItem_top_active{
	height:40px;
}
.Custom_menuItem_top_regular div,.Custom_menuItem_top_over div,.Custom_menuItem_top_click div,.Custom_menuItem_top_disabled div,.Custom_menuItem_top_active div{
	padding-top:0px;
	padding-bottom:0px;
}
.Custom_menuItem_top_regular{	/* Top level menu item - Regular state */
	padding-left:0px;
	padding-right:0px;
	margin-right:0px;
	padding-top:0px;
	padding-bottom:0px;	
	cursor:pointer;
	line-height:0px;
	margin-top:0px;
}

.Custom_menuItem_top_over{ /*  ﾄｯﾌﾟﾊﾞｰﾏｳｽｵｰﾊﾞｰ時背景色　 Top level menu item - Mouse over state */
	padding-left:0px;
	padding-right:0px;
	margin-right:0px;
	border:0px solid #B2AFC2;
	background-color:#FFFFFF;
	cursor:pointer;
	line-height:0px;
	margin-top:0px;
}

.Custom_menuItem_top_active{	/* Top level menu item - Active state - this is typical the state for menu item 1 when a sub group is expanded and the mouse is located over one of the sub menu items */
	padding-left:0px;
	padding-right:0px;
	margin-right:0px;
	border:0px solid #B2AFC2;
	border-bottom:0px solid #FFF;
	cursor:pointer;
	line-height:0px;
	margin-top:0px;
}

.Custom_menuItem_top_click{	/* Top level menu item - Mouse click state */
	padding-left:0px;
	padding-right:0px;
	margin-right:0px;
	border:0px solid #B2AFC2;
	background-color:#FFFFFF;
	cursor:pointer;
	line-height:0px;
	margin-top:0px;
	z-index:20000;
}

.Custom_menuItem_top_disabled{	/* Disabled menu item */
	padding-left:0px;
	padding-right:0px;
	margin-right:0px;
	padding-top:0px;
	padding-bottom:0px;
	cursor:default;
	line-height:0px;
	margin-top:0px;	
}

.Custom_menuItem_top_disabled img,.Custom_menuItem_top_disabled div{
	filter:alpha(opacity=30);
	opacity:0.3;

}

.Custom_menuItem_top_disabled div,.Custom_menuItem_top_active div, .Custom_menuItem_top_click div, .Custom_menuItem_top_regular div,.Custom_menuItem_top_over div{	/* divs for the text,icon and arrow of a menu item */
	float:left;
	padding-left:0px;
	padding-right:0px;
}

/* CSS FOR THE SMALL ARROW DIV - WHEN YOU CLICK ON THIS DIV, SUB ELEMENTS WILL SHOW */
.Custom_menuItem_top_arrowShowSub{
	width:0px;
	background-repeat:no-repeat;
	background-position:center center;
	background-image:none;
	margin:0px;
	margin-right:0px;
	/* ma\rgin-right:-3px;	/* Size of padding-right of top menu items - used to get the arrow to apear at the right of the menu item */
	
	padding:0px;
	height:16px;
	margin-left:0px;
	float:right;
}

.Custom_menuItem_top_over .Custom_menuItem_top_arrowShowSub,
.Custom_menuItem_top_click .Custom_menuItem_top_arrowShowSub
{	/* Sub menu arrows */
	margin-left:0px;
	border-left:0px solid #B2AFC2;　　　/* ｻﾌﾞﾒﾆｭｰｸﾘｯｸ時背景色   */  
}



/* CSS FOR MENU ITEM OF TYPE "sub" */

.Custom_menuItem_sub_regular, .Custom_menuItem_sub_over,.Custom_menuItem_sub_click,.Custom_menuItem_sub_disabled,.Custom_menuItem_sub_active{	/* Commom css for regular, mouse over and mouse click items */
	clear:both;	
	line-height:18px;
	height:18px;	
	padding-left:4px;
	padding-right:4px;
	padding-top:2px;
	padding-bottom:2px;	
	cursor:pointer;	
	margin:0px;
	background-repeat:no-repeat;
}
.Custom_menuItem_sub_disabled{
	cursor:default;
}
.Custom_menuItem_sub_disabled div,.Custom_menuItem_sub_disabled{	/* Disabled sub menu item - Here, we apply the rules on the divs inside the element, i.e. the div for the icon, text and arrow */
	filter:alpha(opacity=30);
	opacity:0.3;
}
.Custom_menuItem_sub_regular{	/* Regular menu item */
	margin-left:0px;	/* size of margin above + 1 pixel */
	padding-top:3px;	/* Size of padding-top above + 1 pixel */
	padding-bottom:3px;	/* Size of padding-bottom above + 1 pixel */
}

.Custom_menuItem_sub_over,.Custom_menuItem_sub_click,.Custom_menuItem_sub_active{
	border:1px solid #FFCC00;
}


.Custom_menuItem_sub_regular div, .Custom_menuItem_sub_over div,.Custom_menuItem_sub_click div{
	float:left;	/* To get the icons and text of sub elements side by side */
}

.Custom_menuItem_sub_over,.Custom_menuItem_sub_active{	/* Mouse over effect */	
	background-color:#FFF299;		
}

.Custom_menuItem_sub_click{	/* Mouse click effect */
	background-color:#FFCC00;
}

.Custom_menuItem_sub_click div, .Custom_menuItem_sub_regular div,.Custom_menuItem_sub_over div,.Custom_menuItem_sub_active div,.Custom_menuItem_sub_disabled div{	/* divs for the text,icon and arrow of a menu item */
	float:left;
	padding-left:0px;
	padding-right:0px;
	
}
.Custom_menuItem_sub_arrowShowSub{	/* Arrow div for sub elements (Right pointing arrow ) */
	background-image:url('menu-bar-right-arrow.gif');	/* Path relative to the css file */
	width:18px;
	height:18px;
	text-align:right;
	position:absolute;
	right:0px;
	background-repeat:no-repeat;
	background-position: center right;
}


.Custom_menuItem_separator_sub{	/* Separator of type "sub" */
	height:1px;
	margin-top:1px;
	margin-bottom:1px;
	margin-left:24px;
	padding-right:3px;
	background-color:#aeaeae;
	
}



