@charset "utf-8";
/* CSS Document */
.center {
    width:60%;
    margin:20px auto 0 auto;
}

.marginbot {
    margin-bottom:15px;
}

ul.list li {
    list-style-type:none;
    margin-left:20px;
}

ul.tabs {
    width:100%;
    height:35px;
    margin: 0;
    padding: 0;
}

ul.tabs li {
    list-style-type:none;
    display:block;
    float:left;
    color:#fff;
    padding:8px;
    margin:0 5px 0 0;
    background-color:#929292;
    cursor:pointer;
	text-transform:uppercase;
	font-size:10px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
}

ul.tabs li:hover {
	background-color:#fff;
    color: #333;
}

ul.tabs li.current {
    background-color:#fff;
    padding:8px;
	position:relative;
	color:#333;
}
ul.tabs li.current:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -3px;
    background-color: #FFFFFF;
    left: 0;
    z-index: 999;
}
.tabscontent {
    padding:8px 0 0 0;
    display:none;
    width:100%;
    text-align:justify;
}
#tabsholder .postbox{
	border:none!important;
}