﻿
.tabContainer {
    border-radius: 4px 4px 0 0;
    margin: 1px 1px 0 1px;
    padding: 2px;
    height: 55px;
    cursor: pointer;
}

.tabContainer span {
    display: inline-block;
    text-align: center;
    padding: 0 10px;
    font-family: 'Segoe UI';
}

.unselectedTab {
    background-color: rgb(217, 217, 217);
    color: rgb(89, 89, 89);
    border-radius: 4px 4px 0 0;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.unselectedTab:focus {
    background: rgb(51, 51, 153);
    color: white;
}

.selectedTab {
    background-color: rgb(51, 51, 153);
    color: white;
    border-radius: 4px 4px 0 0;
    border: none;
    text-align: center;
    text-decoration: none;
}

.tabTable, .tabTable tr, .tabTable td {
    border-collapse: collapse;
    border: 0;
    border-style: none;
    border-width: 0;
    padding: 0;
}

.tabTable td:first-child div.tabContainer { margin-left: 15px; }

.tabTable td:last-child div.tabContainer { margin-right: 15px; }

.pdfButton {
    height: 30px;
    width: 30px;
}

.initiallyHidden {
    display: none;
}