@charset "utf-8";
/* CSS Document */
.out span {
	display: none;
	z-index: 1;
}
.over span {
	background: #fff; /*子選單背景色*/
	display:block;
	position: absolute;
	top:33px; /*子選單上方與母選單的距離*/
	left:0px; /*左邊距離*/
	padding:5px; /*子選單內距*/
	border:1px solid #ccc; /*子選單邊線樣式與顏色*/
	text-align:left; /*子選單內容文字靠左*/
	color:#000; /*子選單文字顏色*/
	z-index: 99;
	white-space: nowrap;
}

.over span ul {
	margin-left: -10px;
	list-style-position: inside;
	list-style-image: none;
	list-style-type: none;
	margin-bottom: 0px;
}

.out {
	z-index: 1;
	float: left;
	position:relative;
}

.over {
	z-index: 98;
	float: left;
	position:relative;

}