.tabsContainer{
	width: 990px;
	height: 350px;
	border: 2px solid #454545;
	overflow:hidden;
	position: relative;
	margin:0 auto;
}

.tabsContainer .tabContainer.current{
	background : gold;
}
.tabsContainer .tabContainer{
	width: 990px;
	height: 500px;
	display:none;
	float:left;
	background: #dde;
}
.tabsContainer .tabList{
	position:absolute;
	bottom: 0px;
	height: 30px;
	line-height: 30px;
	text-align:center;
	display:inline-block;
	right: 0px;
}
.tabsContainer .tabList .tabItem a{
	text-decoration:none;
	background: gold;
	padding: 2px 5px;
}

.tabsContainer .tabList .tabItem{
	float:left;
	width: 30px;
	list-style-type:none;
	margin: 2px;
	background: lightgreen;
	border-radius: 5px;
}
.tabsContainer .tabList .tabItem a.current{
	background: red;
	color:#FFF;
}