div.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #3498db;
}

/* Style the links inside the tab */
div.tab a {
    float: left;
    display: block;
    color: #FFF;
    text-align: center;
    padding: 5px 15px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
	border-radius: 5px;
}

/* Change background color of links on hover */
div.tab a:hover {
    background-color: #607D8B;
}

/* Create an active/current tablink class */
div.tab a:focus, .activenew {
    background-color: #2a4b5a;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}