
body {font-family: "Lato", sans-serif;}

ul.tab {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Float the list items side by side */
ul.tab li {float: left;}

/* Style the links inside the list items */
ul.tab li a {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of links on hover */
ul.tab li a:hover {
    background-color: #ccc;
}

/* Create an active/current tablink class */
ul.tab li a:focus, .active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
.tabs {
	background-color: #ffffff;
	color: #000000;
}
.tab-table {
    width:100%;
}
.tab-table, table, th, td {
    border: 0px solid black;
    border-collapse: collapse;
}
.tab-table tr {
    border: 0px solid black;
    border-collapse: collapse;
}
.tab-table, td {
    border: 0px solid black;
    border-collapse: collapse;
}
.tab-table, th, td {
    padding: 0px;
    text-align: left;
}
.tab-table#t01 tr:nth-child(even) {
    background-color: #fff;
}
.tab-table#t01 tr:nth-child(odd) {
   background-color:#eee;
}
.tab-table#t01 th {
    background-color: black;
    color: white;
}