@CHARSET "BIG5";


	ul, li {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.abgne_tab {
		clear: left;
		width: 100%;
		margin: 10px 0; /*上下間格*/
	}
	ul.tabs {
		width: 100%;
		height: 32px;
		border-bottom: 1px solid #cccccc;
		border-left: 1px solid #cccccc;
	}
	ul.tabs li {
		float: left;
		height: 31px;/*標籤高*/
		line-height: 31px;
		overflow: hidden;
		position: relative;
		margin-bottom: -1px;	/* 讓 li 往下移來遮住 ul 的部份 border-bottom */
		border: 1px solid #cccccc;
		border-left: none;
		background: #cccccc;
	}
	ul.tabs li a {/*標籤內屬性*/
		display: block;
		padding: 0 20px;
		color: #000;
		border: 1px solid #cccccc;
		text-decoration: none;
	}
	ul.tabs li a:hover {/*非當前標籤 滑數經過時*/
		background: #cccccc;
	}
	ul.tabs li.active  {
		background: #cccccc;/*被選取標籤顏色 xxx*/
		border-bottom: 1px solid #cccccc;/*邊框的線粗及顏色*/
	}
	ul.tabs li.active a:hover {/*當前標籤 滑數經過時*/
		background: #cccccc;
	}
	div.tab_container {/*面板屬性*/
		clear: left;
		width: 100%;
		border: 1px solid #cccccc;/*邊框的線粗及顏色*/
		border-top: none;
		background: #cccccc;/*面板顏色*/
	}
	div.tab_container .tab_content {
		padding: 20px;/*標籤內文左右間格*/
	}
	div.tab_container .tab_content h2 {
		margin: 0 0 20px;
	}
