/* Main menu */
 
#menu		/* 全体背景 */
{
    width: 950px;
    margin: 10px 2px 10px 2px;
    padding: 5px 0 0 0;
    list-style: none;  
    background: #FFFFFF;	/* 898989 */
	border-top: 3px dotted #898989; 
	border-bottom: 3px dotted #898989;
}
 
#menu li
{
    float: left;
    padding: 0 0 3px 0;
    position: relative;
	width: 158px;
	margin:  0px 0px 0px 0px;
/*	border-bottom: 1px dotted #898989; */
}
 
#menu a 
{
    float: left;
    height: 26px;
    padding: 0 10px 0px 10px;
	color: #222222;		/* FFFFFF */　	/* 通常文字色 */　
    text-transform: uppercase;
	line-height: 26px;
    font-size: 13px;
    text-decoration: none;
    text-shadow: 0 0px 0 #000;
}
 
#menu li:hover > a
{
	color: #1722E2;		/* CCCCCC */　	/* オンマウス文字色 */
	font-weight: normal;
}
 
*html #menu li a:hover /* IE6 */
{
    color: #1722E2;
	font-weight: normal;
}

#menu li:hover > ul
{
    display: block;
}
 
/* Sub-menu */
 
#menu ul
{
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 28px;
    left: 0;
    z-index: 99999;    
}
 
#menu ul li
{
    float: none;
    margin: 0;
    padding: 0 0 0 0px;
    display: block;
	text-align:left
}
 
#menu ul a
{
    padding: 8px;
    height: auto;
	width: 146px;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: left;
    text-transform: none;
    font-size: 13px; 
	color: #FFFFFF;			/* 000000 */
    background: #555555;	/* DCDDDD */
/*	border: 1px solid #898989; */
}
 
*html #menu ul a /* IE6 */
{
    height: 10px;
    width: 146px;
}
 
*:first-child+html #menu ul a /* IE7 */
{
    height: 10px;
    width: 146px;
}
 
#menu ul a:hover
{
	color: #FFBE08;			/* F5BF2C */
    background: #707070;
/*	border: 1px solid #898989; */
}

 
#menu ul li:first-child a:after
{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #444;
}


 
/* Clear floated elements */
#menu:after
{
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
 
* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */