@charset "utf-8";
/* CSS Document */

*{margin:0;padding:0;}
ul,li{list-style:none;}
.tabList{
	width:960px;
	height:550px;
}
#tab{position:relative;}
#tab .tabList ul li{
	float:left;
	background:#FFF;
	background:-moz-linear-gradient(top, #fefefe, #ededed);	
	background:-o-linear-gradient(left top,left bottom, from(#fefefe), to(#ededed));
	background:-webkit-gradient(linear,left top,left bottom, from(#fefefe), to(#ededed));
	padding:10px 0;
	width:200px;
	text-align:center;
	font-size:26px;
	margin-left:-1px;
	position:relative;
	cursor:pointer;
	color:#000;
}
#tab .tabCon{
	position:absolute;
	left:-300px;
	top:32px;
	width:9600px;
	height:530px;
}
#tab .tabCon div{
	padding:10px;
	position:absolute;
	opacity:0;
	filter:alpha(opacity=0);
}
#tab .tabList li.cur{
	border-bottom:none;
	background:#F00;
}

#tab .tabCon div.cur{
	opacity:1;
	filter:alpha(opacity=100);
}