/* CSS Document */
#tab {
	width: 412px;
	height: 216px;
	position: relative;
	background-color: #FFF;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
/*设置容器高宽等*/
html > body #tab {
	width: 730px;
	background-color: #FFF;
}
/*兼容IE6:IE6下宽度不够*/
#tab div {
	position: absolute;
	top: 30px;
	left: 0;
	width: 730px;
	height: 186px;
	background-color: #FFF;
	margin-top: 20px;
}
/*设置容器高宽等*/
#tab div { display:none;}
/*设置容器默认隐藏:不用ID是因为下面将利用class来控制容器显示,而class优先级低于id选择器*/
#tab .block {
	display: block;
	background-color: #FFF;
	/* [disabled]margin-top: 20px; */
}
/*选中的容器*/
#tab h3 {
	float: left;
	width: 103px;
	height: auto;
	font-size: 16px;
	cursor: pointer;
	background-color: #000000;
	text-align: center;
	color: #FFCF88;
	font-family: "Microsoft YaHei";
	font-weight: normal;
	padding-top: 10px;
	padding-bottom: 10px;
	letter-spacing: 2px;
}
/*默认标题样式*/
#tab .up {
	color: #fff;
	background-color: #FFD697;
}
/*选中的标题样式*/
/*修饰列表内容*/
#tab ul {
	list-style: none;
	padding: 0;
	height: 280px;
	background-color: #FFF;
	margin-top: 20px;
}
#tab li {
	margin-left: 5px;
	margin-right: 10px;
	height: auto;
	overflow: hidden;
	font-size: 16px;
	background-color: #FFF;
	color: #333;
	padding-bottom: 4px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #EAEAEA;
	margin-bottom: 10px;
}
#tab li a {
	display: inline;
	font-size: 16px;
	text-decoration: none;
	margin-right: 10px;
	background-color: #FFF;
	letter-spacing: 2px;
	color: #000000;
}
#tab li a:hover {
	color: #3399FF;
}

#tab li span{
	display: block;
	float: right;
	margin-right: 5px;
	color: #666666;
	background-color: #FFF;
}
a.tab_title:link {
	color: #5a5a5a;
	text-decoration: none;
	background-color: #FFF;
}
a.tab_title:visited {
	color: #5a5a5a;
	text-decoration: none;
	background-color: #FFF;
}
a.tab_title:hover {
	color: #333333;
	text-decoration: none;
	background-color: #FFF;
}
a.tab_title:active {
	color: #5a5a5a;
	text-decoration: none;
	background-color: #FFF;
}
a.tab_menu:link {
	color: #FF0000;
	text-decoration: none;
	background-color: #FFF;
}
a.tab_menu:hover {
	color: #8888e0;
	text-decoration: underline;
	background-color: #FFF;
}


