﻿
.summarylabelcolor {
    font-size: 17px;
    font-family: Trebuchet MS;
    font-weight: bold;
    color: steelblue;
}

.summarylabelcolorright {
    font-size: 17px;
    font-family: Trebuchet MS;
    font-weight: bold;
    color: steelblue;
    text-align: right;
}

.summarylabelcolor20 {
    font-size: 20px;
    font-family: Trebuchet MS;
    font-weight: bold;
    color: steelblue;
}

.summarylabel {
    font-size: 17px;
    font-family: Trebuchet MS;
    font-weight: bold;
}

.summarylabelright {
    font-size: 17px;
    font-family: Trebuchet MS;
    font-weight: bold;
    text-align: right;
}

.summarylabellarge {
    font-size: 25px;
    font-family: Trebuchet MS;
    font-weight: bold;
}

.summaryHeader {
    font-size: 20px;
    font-family: Trebuchet MS;
    font-weight: bold;
    color: #a36107;
    color: #E35000;
}

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

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    font-family: Calibri;
    font-weight: bold;
}

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

/* Create an active/current tablink class */
.tab button.active {
    background-color: #fff;
    border-bottom-style: solid;
    border-bottom-color: blueviolet;
    color: steelblue;
}

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

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted red;
    color:red;
    font-style:italic;
}

/* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: white;
        color: black;
        font-family: Trebuchet MS;
        font-style:italic;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
        font-size:smaller;
    }

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}




.btnSubmit {
    background-color: #00008B;
    border: 0px solid #000;
    color: #fff;
    padding: 5px 15px 5px 15px;
    cursor: pointer
}

.btnSubmit:hover {
    opacity: 0.7
}

.separator {
    margin-top: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

