/*
body {
font-family:arial;
font-size:12px;	
}

a {
color:#333;
text-decoration:none;
display:block;
}

a:hover {
color:#888;
text-decoration:none;
}
*/

#moving_tab {
/* hide overlength child elements*/
overflow:hidden;

/* all the child elements are refering to this width */
width:300px;

/* fix ie 6 overflow bug */
position:relative

/* styling */
border:1px solid #ccc;
margin:0 auto;
}

#moving_tab .tabs {
	/* enable absolute position for .lava */
	position:relative;	
	height:25px;
	
	/* styling */
	/*padding-top:5px;*/
	cursor:default;
}

#moving_tab .tabs .item {
	/* enable z-index */
	position:relative;
	z-index:10;

	/* display in one row */
	float:left;
	display:block;

	/* width = half size of #moving_tab */
	width:150px;
	
	/* height = height of .tabs */
	text-align:center;
	font-weight: bold;
	padding-top: 5px;
	
	cursor: pointer;
}

#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:25px;
	
	/* styling */
	background:#aacf3c;

}

#moving_tab .content {
	/* enable absolute position for .panel */	
	position:relative;
	overflow:hidden;
	
	/* styling */
	background:transparent;
	/*border-top:1px solid #d9fafa;*/
	margin-top: 5px;
}

#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;
	
	/* width is the same with #moving_tab */
	width:300px;
	
	/* remove all styles */
	padding:0;
	margin:0;
	list-style:none;
	

}
/* styling */
#moving_tab .panel ul li {
	margin: 0;
	padding:7px 0 7px 10px;	
	border-bottom:1px dotted #ccc;
	width: 95%;
}

