	
#moving_tab {
	/* hide overlength child elements*/
	overflow:hidden;
	
	/* all the child elements are refering to this width */
	width:640px;

	/* fix ie 6 overflow bug */
	position:relative;
	
	/* styling */
	border:0px solid #ccc;	
	margin:0 auto;
}
	
#moving_tab .tabs {
	/* enable absolute position for .lava */
	position:relative;	
	height:21px;
/*	border:1xp #666666;*/
	
	/* styling */
	padding-top:5px;
	cursor:pointer;
}
	
#moving_tab .tabs .item {
	/* enable z-index */
	position:relative;
	z-index:10;
	color:#CCCCCC;

	/* display in one row */
	float:left;
	display:block;

	/* width = half size of #moving_tab */
	width:213px;
	
	/* height = height of .tabs */
	text-align:center;
	font-size:11px;
	font-weight:700;	
}

#moving_tab .tabs .lava {
	/* Set it to absolute */
	position:absolute;
	top:0; left:0;
	
	/* display the lava in bottom most layer */
	z-index:0;		
		
	/* width = half size of #moving_tab */
	width:213px;

	/* height = height of .tabs */
	height:25px;
	
	/* styling */
	background:#0C435E;

}		
#moving_tab .content {
	/* enable absolute position for .panel */	
	position:relative;
	overflow:hidden;
	
	/* styling */
	background:#0C435E;
	border-top:0px solid #d9fafa;
}

#moving_tab .panel {
	/* width is width of #moving_tab times 2 */
	position:relative;
	width:1920px;
}
#moving_tab .panel ul {
	/* display in one row */
	float:left;
	
	/* width is the same with #moving_tab */
	width:640px;
	
	/* remove all styles */
	padding:0;
	margin:0;
	list-style:none;
}
/* styling */
#moving_tab .panel ul li {
	padding:5px 0 5px 10px;	
	border-bottom:0px dotted #fff;
}