.tab {
    overflow: hidden;
    border: 1px solid #d7e7f4;
    background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
	float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 16px;
    transition: 0.3s;
    color:#29487D; 
	font-weight:bolder;
	font-size:13pt;
}

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

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

/* Style the tab content */
.tabcontent, .tabcontent_2 {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
	background-color: #d7e7f4;
}