/* CSS Document 

 
#scroller-header a {
    text-decoration:none; 
    color:#867863; 
    padding:0 2px;
}
 
#scroller-header a:hover {
    text-decoration:none; 
    color:#4b412f
}
 
a.selected {
    text-decoration:underline !important; 
    color:#4b412f !important;
}
 
#scroller-header {
    background:url(images/header.gif) no-repeat;
    width:277px;
    height:24px;
    padding:35px 0 0 15px;
    font-weight:700;
}
 
#scroller-body {
    background:url(images/body.gif) no-repeat bottom center;
    width:277px;
    padding-bottom:30px;
 
}
 
#mask {
    width:250px;
    overflow:hidden;
    margin:0 auto;
}
 
#panel {
 
}
 
#panel div {
float:left;
 
}
 
 
 extra optional styling for each tab content 
#panel-1 {
}
 
#panel-2 {
}
 
#panel-3 {
}*/

 
#moving_tab {
    /* hide overlength child elements*/
    overflow:hidden;
     
    /* all the child elements are refering to this width */
    width:228px;
 
    /* 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:30px;
	 
	/* styling */
	padding-top:5px;
	cursor:default;
	background: #1d8f00;
}

#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:113px;
	 
	/* height = height of .tabs */
	text-align:center;
	font-weight:bold;   
	color:#FFF; 
	
	
}

#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:115px;

	/* height = height of .tabs */
	height:30px;
	 
	/* styling */
	background:#abe3eb;
	color:#FFF;
}
 
#moving_tab .content {
	/* enable absolute position for .panel */  
	position:relative;
	overflow:hidden;
	 
	/* styling */
	background:#FFF;
	/*border-top:1px solid #d9fafa;*/
}
 
#moving_tab .panel {
	/* width is width of #moving_tab times 2 */
	position:relative;
	width:460px;
}
 
#moving_tab .panel ul {
	/* display in one row */
	float:left;
	 
	/* width is the same with #moving_tab */
	
	/* remove all styles */
	padding:0;
	margin:0;
	width: 225px;
	list-style:none;
	margin:0;
	padding-top: 5px;
	padding-bottom:5px;
	padding-left: 21px;
	padding-right:5px;
	color:#333;
	list-style-image:url(../images/list_icon.gif);
}
	/* styling */
	#moving_tab .panel ul li {
		/*padding:5px 0 5px 10px; 
		border-bottom:1px dotted #fff;*/
		margin-bottom:5px;
	}