/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Feb 9, 2016, 8:43:57 PM
    Author     : wwingle
*/

.bold-green-font {
    font-weight: bold;
    color: green;
}

.bold-font {
    font-weight: bold;
}

.right-text {
    text-align: right;
}

.large-font {
    font-size: 15px;
}

.italic-darkblue-font {
    font-style: italic;
    color: darkblue;
}

.italic-purple-font {
    font-style: italic;
    color: purple;
}

.underline-blue-font {
    text-decoration: underline;
    color: blue;
}

.gold-border {
    border: 3px solid gold;
}

.deeppink-border {
    border: 3px solid deeppink;
}

.orange-background {
    background-color: orange;
    text-align: center;
}

.yellow-background {
    background-color: yellow;
    text-align: center;
}

.orchid-background {
    background-color: orchid;
}

.beige-background {
    background-color: beige;
}

 /* Style the tab */
div.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the links inside the tab */
div.tab a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of links on hover */
div.tab a:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
div.tab a:focus, .active {
    background-color: #ccc;
}

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