﻿/* --------------------------------------------------------------------------------------------- */
/* This is the base stylesheet for the new template. */
/* --------------------------------------------------------------------------------------------- */

html {
    height: 100%;
    min-height: 100%;
}

body {
    height: 100%;
    min-height: 100%;
    width: 100%;
    min-width: 1086px; 
    background-color: #666666;    
}

.clearfix {
    clear: both;
    height: 1px;
    margin: 0 0;
    padding: 0 0;
    font-size: 0px;
    line-height: 0px;
}

/* --------------------------------------------------------------------------------------------- */
/* The basic layout (gradiant, wrapper, etc). */

form#frmMaster {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
}

/* By default, the gradient does nothing, so that we can choose what we want to happen here. */
div.gradient {
    position: relative;
    top: 0;
    height: 600px;
    margin: 0 0 -600px 0;
    z-index: 1;
}

div.wrapper {
    position: relative;
    height: auto !important;
    height: 100%;
    min-height: 100%;
    width: 1086px;
    margin: 0 Auto;
    z-index: 2;
    background-color: #FFFFFF;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
    /* -moz-box-shadow: 0px 0px 10px 5px #303030;
    -webkit-box-shadow: 0px 0px 10px 5px #303030;
    box-shadow: 0px 0px 10px 5px #303030; */
}

div.header {
    overflow: auto;
    position: relative;
    width: 100%;
    top: 0px;
    margin: 0 0;
    z-index: 5;    
    background-color: #DDDDDD; 
}

div.header-logo {
    float: left;
    height: 120px;
    width: 518px;
    margin: 15px 0 15px 15px;    
    background-color: #808080;
}

div.header-contact {
    float: right;
    height: 120px;
    width: 518px;
    margin: 15px 15px 15px 0;
    background-color: #808080;
}

div.menu {
    position: relative;
    clear: both;
    height: 50px;
    width: 100%;
    margin: 0 0;    
    z-index: 99999;
    background-color: #CCCCCC;
}

div.content {
    position: relative;
    overflow: hidden;
    margin: 0 15px;
    padding: 30px 0 134px 0; /* The bottom margin should be equal to the height of the footer DIV plus 30. */
    z-index: 5;    
}

div.footer {
    clear: both;
    position: absolute;
    height: 104px;
    width: 100%;
    bottom: 0px;
    margin: 0 0;
    z-index: 5;
    font-size: 14px;
    color: #000000;
    line-height: 24px;
    text-align: center;
    background-color: #DDDDDD;   
}

div.footer div {
    margin-top: 16px;
}

div.footer a, div.footer a:visited {
    color: #000000;
    text-decoration: none;
}

div.footer a:hover {
    color: #FF0000;
}

/* --------------------------------------------------------------------------------------------- */
/* JQuery Cycle. */

div.rotator, div.cycle {
    overflow: hidden;
}

/* --------------------------------------------------------------------------------------------- */
/* Contact Form - Tall Version */

div.contact-form-tall {
    margin: 0 auto 24px auto;
    padding: 20px;
    font-size: 14px;
    line-height: 20px;
    border: 1px solid #000000;
    background-color: #FDFDFD;
}

div.contact-form-tall div.seperator {
    clear: both;
    height: 1px;
    font-size: 0px;
    line-height: 0px;
    margin-bottom: 12px;
}

div.contact-form-tall label {
    display: inline-block;
    margin-bottom: 2px;
    font-weight: bold;
}

div.contact-form-tall .contact-text {
    width: 440px;
    resize: none;
}

div.contact-form-tall table.citystatezip td
{
    padding-right: 4px;
}

div.contact-form-tall .contact-text-city
{
    width: 270px;
}

div.contact-form-tall .contact-text-state
{
    width: 50px;
}

div.contact-form-tall .contact-text-zip
{
    width: 100px;
}

div.contact-form-tall table#radContact td
{
    padding-right: 15px;
}

div.contact-form-tall table#radContact label {
    padding-left: 5px;
}

div.contact-form-tall #recaptcha_area {
    margin: 0 auto;
}

div.contact-form-tall .recaptchatable, 
div.contact-form-tall #recaptcha_area tr, 
div.contact-form-tall #recaptcha_area td, 
div.contact-form-tall #recaptcha_area th {
    line-height:0;
}

/* --------------------------------------------------------------------------------------------- */
/* Styles for when the site is printed. */

@media print {

    body {
        background: none;
    }

    div.gradient {
        display: none;
    }

    div.wrapper {
        border-left: 0px none;
        border-right: 0px none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    div.header {
        display: none;
    }

    div.menu {
        display: none;
    }

    div.footer {
        display: none;
    }

}