@charset "utf-8";
/* CSS Document */
#menu dl {
border-right: solid 1px #E6E6E6;
border-left: solid 1px #E6E6E6;
border-bottom: solid 1px #E6E6E6;
background-color: #fff;
}

#menu dd {
        position: relative;
		color: #333;
		font-size: 13px;
        margin: 0;
		height: 35px;
        line-height: 2px;
		width: 182px;
		border-bottom: dotted 1px #E6E6E6;
		}

#menu dd a {
        color: #333;
        text-decoration: none;
		display: block;
        width: 182px;
        height: 35px;
        text-align: center;
		line-height: 2em;
		background-image: url(/inc/images/2nd/submenu_bk.gif);
		background-repeat: no-repeat;
		background-position: top center;

}



#menu dd a:link,
#menu dd a:visited {
		height: 35px;
}
#menu dd a:hover,
#menu dd a:active {
background-position: center -35px;
}


/* 下層のメニューを不可視に */
#menu .submenu {
        display: none;
}

/* 疑似要素 :hover で下層のメニューを可視に */
#menu li:hover .submenu{
        display: block;
        position: absolute;
		z-index:8000;
}

#menu li dd {
        float: none;
        margin: 0;
        font-weight: normal;
}


#menu { /* IE6 対策 */
        behavior: url("/csshover3.htc");
}



