﻿/* ------------------------------------------------------------------------------ */
/* ########################## On to the styling ################################# */
/* ------------------------------------------------------------------------------ */

/* Generals */
.uniForm fieldset
{
}
.uniForm legend
{
    color: #333;
    font-weight: bold;
    font-size: 100%;
    margin: 0;
    padding: 1.5em 0;
}

/* This is the main unit that contains our form elements */
.uniForm .ctrlHolder
{
    padding: 12px;
    border-bottom: 0px solid #c2bfbf;
}

.uniForm .buttonHolder
{
    text-align: right;
    margin: 1.5em 0 0 0;
}
.uniForm .primaryAction
{
    font-weight: bold;
}
.uniForm .resetButton, .uniForm .secondaryAction
{
    float: left;
    text-align: left;
    background-color: yellow;
}
.uniForm button.secondaryAction
{
    background: transparent;
    border: none;
    color: #006280; /* Match the color of your links */
    margin: 0;
    padding: 0;
    text-decoration: underline;
}


/* This class gets added to div.ctrlHolder to highlight the row */
.uniForm .focused
{
    background: #fffcdf;
    color: #000;
}

/* .inlineLabel is used for inputs within labels - checkboxes and radio buttons */
.uniForm .inlineLabel input, .uniForm .inlineLabels .inlineLabel input, .uniForm .blockLabels .inlineLabel input
{
    float: none;
    display: inline;
    margin: 0;
}
.uniForm .inlineLabel span
{
    float: left;
    width: 90%;
}

/* .inlineLabel within .buttonHolder (useful for TOS checkboxes) */
.uniForm .buttonHolder .inlineLabel
{
    float: left;
    margin: .25em 0 0 0;
    text-align: left;
}

/* Classes to control the widths of the fields */
.uniForm .small
{
    width: 30% !important;
}
.uniForm .medium
{
    width: 45% !important;
}
.uniForm .large
{
}
/* Large is default and should match the value you set for .textInput, textarea or select */
.uniForm .auto
{
    width: auto !important;
}

.uniForm textarea, .uniForm .blockLabels textarea
{
    width: 100%; /* <- Required property */
    height: 12em;
}

/* .inlineLabels */
.uniForm .inlineLabels .ctrlHolder
{
}

.uniForm .inlineLabels label, .uniForm .inlineLabels .label
{
    width: 32%; /* <- Required property */
    margin: .3em 2% 0 0; /* <- Required property */
}

.uniForm .inlineLabels input[type="text"], .uniForm .inlineLabels input[type="password"], .uniForm .inlineLabels input[type="file"], .uniForm .inlineLabels select, .uniForm .inlineLabels textarea
{
    width: 64%; /* <- Required property */
}
.uniForm .inlineLabels textarea
{
    height: 12em;
}

.uniForm .inlineLabels .formHint
{
    width: auto; /* <- Required property */
    margin-top: 0;
    margin-left: 34%;
    font-size: .9em;
    color: #777;
    position: static;
}

.uniForm .inlineLabels .multiField
{
    width: 66%; /* <- Required property */
    margin: 0 0 .3em 0;
}
.uniForm .inlineLabels .multiField .inlineLabel
{
    display: block;
    margin: 0 0 .5em 0;
}
.uniForm .inlineLabels .multiField .inlineLabel input
{
    float: left;
    margin: 0 .2em 0 0;
}
.uniForm .inlineLabels .multiField .blockLabel
{
    float: left;
    width: 36%; /*<--- made 10% bigger*/
    margin: 0 3% 0 0;
}
.uniForm .inlineLabels .multiField .blockLabel input[type="text"], .uniForm .inlineLabels .multiField .blockLabel input[type="password"], .uniForm .inlineLabels .multiField .blockLabel select, .uniForm .inlineLabels .multiField .blockLabel select
{
    width: 100%;
    margin: .3em 0 0 0;
}


/* ------------------------------------------------------------------------------ */

.field-validation-error
{
    color: #FF0000;
    display: block;
    background: #ffdfdf;
    border: 1px solid #df7d7d;
    border-width: 1px 0;
    margin: 0 0 1.5em 0;
    padding: 7px;
}

.input-validation-error
{
    border: 1px solid #FF0000;
    background-color: #ffeeee;
}

.validation-summary-errors
{
    font-weight: bold;
    color: #FF0000;
}


.uniForm input[type="text"], .uniForm input[type="password"], .uniForm select, .uniForm textarea
{
    border: 2px solid #dfdfdf;
    background: #fff;
}
.ctrlHolder.focused input[type="text"], .ctrlHolder.focused input[type="password"]
{
    border-color: #DFD77D;
}


fieldset.smallForm
{
    width: 50%;
}

/* BUTTONS */



.buttonHolder a, button
{
    display: block;
    float: right;
    margin: 0;
    background-color: #1E1A14;
    border: 1px solid #b29e85;
    border-top: 1px solid #b29e85;
    border-left: 1px solid #b29e85;
    /*font-family: "Lucida Grande" , Tahoma, Arial, Verdana, sans-serif;*/
    font-size: 1em;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    padding: 5px 10px 6px 7px; /* Links */
}



button
{
    width: auto;
    overflow: visible;
    padding: 5px 10px 6px 7px; /* IE6 */
}
button[type]
{
    padding: 5px 10px 6px 7px; /* Firefox */
    line-height: 10px; /* Safari */
}
*:first-child + html button[type]
{
    padding: 5px 10px 6px 7px; /* IE7 */
}
button img, .buttonHolder a img
{
    margin: 0 3px -3px 0 !important;
    padding: 0;
    border: none;
    width: 16px;
    height: 16px;
    display:none;
}


/* POSITIVE */

button.positive, .buttonHolder a.submitButton
{
    color: #529214;
}
.buttonHolder a.submitButton:hover, button.submitButton:hover
{
    
    border: 1px solid #b29e85;
    color: #fff;
}
.buttonHolder a.submitButton:active
{
    
    border: 1px solid #b29e85;
    color: #fff;
}
