 /* Style the list */
ul.tabbs {
    list-style-type: none;
    margin: 0;
    padding: 10px;
	height:50px;
    overflow: hidden;
    background-color: #433a3b;
}

/* Float the list items side by side */
ul.tabbs li {float: left;}

/* Style the links inside the list items */
ul.tabbs li a {
    display: inline-block;
    color: black;
    text-align: center;
	color:#FFFFFF;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

/* Change background color of links on hover */
ul.tabbs li a:hover {background-color: #433a3b;
border-bottom:4px #e96656 solid;}

/* Create an active/current tablink class */
ul.tabbs li a:focus, .active {border-bottom:4px #e96656 solid;}

/* Style the tab content */
.tabbscontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
}