 
/*.container{
    max-width: 400px;
    margin: auto;
}*/
 
.tabContainer {
    overflow-x: auto;
}
.tabContainer::-webkit-scrollbar {
    height: 5px;
}
.tabContainer::-webkit-scrollbar-track {
    background: #c00;
}
.tabContainer::-webkit-scrollbar-thumb {
    background: #c00;
}
 
.tab{
    display: table;
    margin-top: 10px;
}
 
.tab__button{
    display: table-cell;
    text-align: center;
    background-color: #888;
    vertical-align: middle;
    border-right: 3px solid white;
    border-bottom: 2px solid white;
    min-width: 80px;
}
 
.tab__button.active{
	background-color:#c70000;
	border-bottom: none;
}
 
.tab__button a{
    padding: 10px 5px;
    color: #fff;
    display: block;
    text-decoration: none;
    font-size: 12px;
	line-height:1.1em;
}
 
.contents__content{
    background-color: #FEFEFE;
}
 
.contents__content div{
    clear: left;
}
 
