/***************
* MAIN MENU TABS
****************/

 /* Style the tab */
div.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
div.tab button {
	color: #274E78;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
/*     outline: 1px solid #ccc; */
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
div.tab button:hover{
    background-color: #ddd;
}

/* Create an active/current tablink class */
div.tab button.active {
	color: #EA880C;
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent{
    display: none;
    padding: 6px 12px;
/*     border: 1px solid #ccc; */
    border-top: none;
}

/*************
* SUBMENU TABS
**************/

 /* Style the tab */
div.subtab {
    overflow: hidden;
    border: 1px solid #EA880C;
    border-radius: 10px;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
div.subtab button {
	color: #274E78;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
/*     outline: 1px solid #ccc; */
    cursor: pointer;
    padding: 6px 8px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
div.subtab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
div.subtab button.active {
	color: #EA880C;
    background-color: #ccc;
}

/* Style the tab content */
.subtabcontent {
    display: none;
    padding: 6px 12px;
/*     border: 1px solid #ccc; */
    border-top: none;
}