	#moving_tab {
		/* hide overlength child elements*/
		overflow:hidden;
		
		/* all the child elements are refering to this width */
		width:600px;

		/* fix ie 6 overflow bug */
		position:relative;
		
		/* styling */
		margin:0 auto;
	}
	
		#moving_tab .tabs {
			/* enable absolute position for .lava */
			position:relative;	
			height:22px;
			
			/* styling */
			padding-top:8px;
			cursor:default;
		}
	
		#moving_tab .tabs .item {
			/* enable z-index */
			position:relative;
			z-index:10;
			cursor:pointer;
			text-decoration:none;
		
			/* display in one row */
			float:left;
			display:block;

			/* width = half size of #moving_tab */
			width:150px;
			
			/* height = height of .tabs */
			text-align:center;
			font-size:14px;
			font-weight:600;
			color:#fff;
			padding:0px;
		}
		#moving_tab .tabs .item:hover{
		text-decoration:underline;}
		#moving_tab .tabs .onFocus{
		color:#333333;
		}
		#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:148px;
			/* height = height of .tabs */
			height:33px;
			/* styling */
			background:#FFF;
			border:1px solid #FFF;
			-moz-border-radius: 4px; -webkit-border-radius: 4px;

		}
		
		#moving_tab .tabcontent {
			/* enable absolute position for .panel */	
			position:relative;
			overflow:hidden;
			
			/* styling */
			min-height:300px;
			padding-top:20px;
		}
		
		#moving_tab .panel {
			/* width is width of #moving_tab times 2 */
			position:relative;
			width:2400px;
		}
		
		#moving_tab .panel ul {
			/* display in one row */
			float:left;
			
			/* width is the same with #moving_tab */
			width:600px;
			
			/* remove all styles */
			padding:0;
			margin:0;
			list-style:none;
			background-color:#FFFFFF;
			

		}
			/* styling */
			#moving_tab .panel ul li {
				padding:10px 0 5px 10px;
				border-bottom:1px solid #DDD;
			}
			#moving_tab .panel ul li.rssfeed-icon {
			padding-top:0px;
			border:none;
			}