﻿/* style a set of fields */
fieldset 
{
    padding: 0px 10px;
}

/* the legend for the set */
fieldset legend 
{
    padding-bottom: 15px;
    font-size: 140%;
    font-weight: bolder;
    color: #fff;
}

/* field labels */
fieldset label 
{
    font-size: 90%;
    padding-right: 5px;
    vertical-align: top;
    color: #fff;
    font-weight: bolder;
}

/* styling for the ul which they exist within */
fieldset ol 
{
    display: block !important;
    float: right;
    list-style: none;
}

/* style each list item */
fieldset li 
{
    display: inline-block;
    float: right;
    padding: 6px 20px;
}

/* text box styling */
.textbox
{
    width: 200px;
}

/* setup the submit button */
.submit
{
    font-size: 80%;
    border: none;
    color: #fff;
    font-weight: bolder;
    background: #000;
    width: 75px;
    height: 25px;
}

/* the message section of the form */
.textarea
{
    width: 200px;
    height: 100px;
    overflow: hidden;
}

/* style the validation error message */
.validation
{
    background: #dedede;
    clear: both;
    width: 378px;
    border: solid 1px #000;
    list-style: none;
    line-height: 120%;
    font-size: 70%;
    margin: 0px;
    padding: 5px 5px 8px 5px;
    list-style-position: outside;
    color: #00476b;
    margin-bottom: 10px;
}

/* and the strong text sections */
.validation strong 
{
    color: Red;
}

/* show a response when form submitted */
.formResponse 
{
    margin-top: 10px;
    display: none;
    text-align: center;
    color: #75c4f0;
    font-size: 100%;
    font-weight: bolder;
}

/* show the reponse message when necessary */
.formResponse.show 
{
    display: block !important;
}

.popupBox 
{
    position: absolute;
    left: 0px;
    top: 0px;
}

.popupBox.hidden
{
    display: none;
}