﻿.DevelopmentWarning {
    background-color: #FF1E00;
    text-align: center;
    width: 100%;
    color: #FFFFFF;
}

.FooterText {
    padding-top: 30px;
    padding-bottom: 10px;
}

.button {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 6px;
    background-color: #F7D125;
    color: Black;
    cursor: pointer;
    border: none;
    box-shadow: 1px 1px 1px #777;
    white-space: normal;
}


.button.delete {
    background-color: #ccc;
    float: right;
}

.button:hover {
    box-shadow: 0px 0px 0px #777;
}

input[type=submit] {
    margin: 10px;
    padding: 0.25em;
    width: 20em;
    font: bold 1em arial, sans-serif;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 6px;
    background-color: #F7D125;
    color: Black;
    cursor: pointer;
    box-shadow: 1px 1px 1px #777;
}

.headPlaceHolder
{
    margin-bottom: 30px;
}

.result_box {
    border-top: 4px solid #f8ca49;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.2);
    padding: 20px;
}

/* Tooltip container */
.form_tooltip {
    position: relative;
    display: inline-block;
    background-color: #F7D125;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
}

    /* Tooltip text */
    .form_tooltip .form_tooltiptext {
        visibility: hidden;
        width: 400px;
        background-color: #C2C2C2;
        color: #000;
        text-align: left;
        padding: 10px;
        border-radius: 6px;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .form_tooltip:hover .form_tooltiptext {
        visibility: visible;
    }