
/*------------------------------------
	#menu スタイル
-------------------------------------- */
dl#menu{
	background: url() left center repeat-x;
	float: left;
	margin: 0;
	padding: 0;
}

	dl#menu ul{
		list-style: none;
	}

	dl#menu dd{
		float: left;
		text-align: center;
		position: relative;
		width: 100px;
		height: 49px;
		margin: 0;
		padding: 0;
	}
		
		dl#menu dd a{
			display: block;
			color: #fff;
			font-weight: bold;
			text-decoration: none;
			letter-spacing: 1px;
			line-height: 30px;
			width: 100px;
			height: 34px;
		}
	
		dl#menu dd ul{
		/*
			グローバルメニュー下、プルダウンメニューのスタイル。
		*/

			background-image: url(image/dropdownmenu_bg.png);
			display: none;
			position: absolute;
			top: 49px;
			left: 0;
			margin: 0;
			padding: 0;
			z-index: 5;
		}
		
			dl#menu dd ul a{
				font-size: 11px;
				color: #eeeeee;
				height: auto;
				line-height: 30px;
				text-align: center;
				padding: 0px;
				width: 99px;
			}
		

			dl#menu dd ul li.rollOver{
			/*
				プルダウンメニュー、マウスオーバー時のスタイル。
			*/
				background-color: ;
			}
			
			dl#menu dd ul li.rollOver a.rollOverA{
				color: #ffaa00;
			}
		
			dl#menu dd ul li{
				position: relative;
			}
			
				dl#menu dd ul li ul{
					display: none;
					position: absolute;
					top: 0px;
					left: 135px;
					z-index: 5;
				}