/* dropdown.css */
/* 2012/06/06 */

* {
	padding:0;
	margin:0;
}

#dropdown {
	width:938px;/* 帯バージョン width:950px */
	height:27px;
	background:#4040FF;
	border:solid #4040FF;
	border-width:0 0 0 14px;
}

#dropdown dl {
	float:left;
}

#dropdown dt {
	width:230px; /* 一つ々のプルダウンの幅 */
	height:17px;
	padding:5px 0;/* 帯バージョン padding:5px 0 5px 6px; */
	/* 9ac1c9 */	
	text-align:center;
	cursor:pointer;
	background:url("icon2.gif") repeat;
	font-size:85%;
	line-height:1.3em;
}

/* 帯バージョン（HTMLに class="end" を追加） */
#dropdown dt.end {
	padding-left:0;
}
/* end */


#dropdown dt:hover {
	background:#eaf0f2;
	background:url("icon2_over.gif") no-repeat;
}

/* プルダウン横幅 */
#dropdown dd {
	width:230px;
	background:#9ac1c9;
	position:absolute;
	overflow:hidden;
	display:none;
	z-index:200;
	opacity:0;
}

/*　プルダウン内部(淵) */
#dropdown ul {
	width:230px;
	border:solid #9ac1c9;
	border-width:0 0px 0px 0px;
	list-style:none;
}

#dropdown li {
	font-size:80%;
	display:inline;
	text-align:left;
}

#dropdown a {
	width:230px;/* IE6 */
	padding:5px;
	background:#eaf0f2;
	color:#547f71;
	border-bottom:1px solid #b9d6dc;
	display:block;
	text-decoration:none;
}

#dropdown a:hover {
	background:#FBD16B; /*プルダウン選択時のバックグラウンド色 */
	background:url("select2.gif") no-repeat; /* 同じく背景画像 (こちらが優先) */
}

#dropdown .none {
	border-bottom:none;	
}
