@charset "utf-8";
/* CSS Document */
*{margin:0;padding:0;}
body{font-size:14px;font-family:"Microsoft YaHei";}
ul,li{list-style:none;}

#tab{position:relative;}
#tab .tabList { padding:3px 0 0 5px;}
#tab .tabList ul li{
	float: left;
	border: 1px solid #ccc;
	padding: 5px 0;
	width: 68px;
	text-align: center;
	margin-left: -1px;
	position: relative;
	cursor: pointer;
}
#tab .tabCon{
	position: absolute;
	left: 0px;
	top: 69px;
	border-top: none;
	width: 770px;
	height: 380px;
}
#tab .tabCon div{
	padding: 0;
	position: absolute;
	opacity: 0;
	filter: alpha(opacity=0);
	width: 768px;
	height: 380px;
}
#tab .tabList li.cur{
	border-bottom:none;
	background:#fff;
}
#tab .tabCon div.cur{
	opacity:1;
	filter:alpha(opacity=100);
}
