@charset "UTF-8";
/* CSS Document */
ul#pulldown-menu a {
	color: #00a6ba;
	text-decoration: none;
}
ul#pulldown-menu a:link,
ul#pulldown-menu a:visited {
	background-color: #000;
}
ul#pulldown-menu a:hover {
	background-color: #00a6ba;
	color: #FFF;
}
ul#pulldown-menu a:active {
	background-color: #666;
	color: #FFF;
}

ul#pulldown-menu li {
	float: left;
	position: relative;
	width: 80px;
	height: 30px;
	line-height: 30px;
	list-style: none;
	font-size: 10pt;
}
ul#pulldown-menu li a {
	display: block;
	width: 80px;
	height: 30px;
	text-align: center;
	list-style: none;
}

/* 下層のメニューを不可視に */
ul#pulldown-menu li ul {
	display: none;
	list-style: none;
}

/* 疑似要素 :hover で下層のメニューを可視に */
ul#pulldown-menu li:hover ul {
	display: block;
	position: absolute;
	z-index: 100;
	list-style: none;
}

ul#pulldown-menu li ul li {
	float: none;
	margin: 0;
	font-weight: normal;
	list-style: none;
}
