@charset "utf-8";
/* CSS Document */

/* Style the tab */
.tab {
    overflow: hidden;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    float: left;
	width: 50%;
    border: 1px solid black;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
	font-size: 21pt;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #6791B3;
	color: white;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #6791B3;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
}