	
	#moving_tab {
		float: left;
		display: inline;
		clear: left;
		/* 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 */
		border-left: 1px solid #fff;	
		float: right;
		display: inline;
		padding-left: 10px;
		
	}
	
		#moving_tab .tabs {
			float: left;
			display: inline;
			clear: left;
			/* enable absolute position for .lava */
			position:relative;	
			height:30px;
			
			/* styling */
			padding-top:5px;
			cursor:default;
			margin-top:10px;
		}

div#leeg {
	height: 390px;
}

			
		#moving_tab .tabs .item {
			/* enable z-index */
			position:relative;
			z-index:10;
		
			/* display in one row */
			float:left;
			display:block;
			clear: left;

			/* width = half size of #moving_tab */
			width:auto;
			height: 30px;
			/* height = height of .tabs */
			font-size:14px;
			font-weight:700;	
			margin-top: 8px;	
			color: #fff;	
			cursor: pointer;}

		#moving_tab .tabs .item:hover {
			color: #ccc;}
			
		#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:150px;

			/* height = height of .tabs */
			height:30px;
			
			/* styling */
			background:transparent;

		}
		
		#moving_tab .content {
			/* enable absolute position for .panel */	
			position:relative;
			overflow:hidden;
			
			/* styling */
			border-top:0px solid #d9fafa;
			width: 300px;
			margin-top: 20px;
			padding-top: 0px;
			border-left: 1px solid #414141;
		}
		
		#moving_tab .panel {
			/* width is width of #moving_tab times 2 */
			position:relative;
			width:600px;
		}
		
		#moving_tab .panel ul {
			/* display in one row */
			float:left;
			clear: left;
			
			/* width is the same with #moving_tab */
			width:300px;
			/* remove all styles */
			padding:0;
			margin:0;
			list-style:none;
			margin-bottom: 4px;
			

		}
			/* styling */
			#moving_tab .panel ul li {
				padding:5px 0 5px 10px;	
				border-bottom:1px dotted #fff;
			}
