.tabs
{
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: block;
}

.tabs section
{
    float: left;
    z-index: 1;
    height: 100% !important;
}

.tabs section h1
{
	width: 100%;
    cursor: hand;
    cursor: pointer;
    color: #999;
    background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(top, #efefef 96%, #cacaca 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(96%,#efefef), color-stop(100%,#cacaca)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #efefef 96%,#cacaca 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #efefef 96%,#cacaca 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #efefef 96%,#cacaca 100%); /* IE10+ */
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#cacaca',GradientType=0 );  IE6-9*/ 
	background: linear-gradient(top, #efefef 96%,#cacaca 100%); /* W3C */
}

.ie9 .tabs section h1, .ie8 .tabs section h1, .ie7 .tabs section h1 {
	border-bottom: 1px solid #b8b8b8; /* remember to reduce padding by 1px */
}

.tabs section.current h1
{
    cursor: default;
    background: #fff;
    color: #333;
    border-right: 1px solid #b8b8b8;
    border-bottom: 1px dotted #ddd; /* remember to reduce padding by 1px */
}

.tabs section.current h1 span {
	color: #666;
}

.tabs section ol, .tabs section ul
{
    position: absolute;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: none;
    /*width:300px;
    float: left;*/
}

.tabs section.current ol, .tabs section.current ul
{
    display: block;

}

.tabs li {
	float: left;
	width: 100%;
}

.tabs a {
	text-decoration: none;
}

.tabs .more_button {
	display: none;
	position: absolute;
	bottom: -1px;
	left:0;
	z-index: 3;
}

.tabs .current .more_button {
	display: block;
	margin-left: 0;
}