/* RESET */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

a {
    color: white;
    text-decoration: inherit;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* COMMONS */
header, section, footer {
    width: 100%;
    margin: 0px auto;
}

body {
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    font-family: 'Open Sans', Arial, sans-serif;
    background-position:center;
    background-repeat: no-repeat !important;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;

    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;

    transition: all 30s linear;
    -moz-transition: all 30s linear;
    -webkit-transition: all 30s linear;
}


header {
    position: relative;
    background: black;
    text-align: center;
    display: block;
    padding: 20px 0px;
}

    section h1 {
     font-size: 40px;
     margin-bottom: 20px;
     font-weight: 600;
     text-transform: uppercase;
    }

header p strong {
    font-weight: normal;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    color: white !important;
}

section {
    overflow: hidden;
    margin: 10% auto 0px auto;
    font-size: 18px;
    max-width: 960px;
}

section p {
    margin-bottom: 40px;
}

section strong, section b {
    font-weight: bold;
}

section i, section em {
    font-style: italic;
}

section a {
    text-decoration: underline;
}

section ul {
    margin: 5px 0px 5px 0px;
}

section ul li {
    padding: 0px 0px 5px 10px;
}

section table {
    width: 100%;
    margin: 20px 0px;
}

section table thead tr th {
    font-weight: bold;
}

section table th, section table td {
    padding: 5px;
}

footer {
    position: fixed;
    bottom: 0px;
    background: black;
}

footer p {
    font-size: 12px;
    text-align: center;
    padding: 20px 10px 20px 10px;
}

.email{
    background: black;
    padding: 20px;
    display: inline-block;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    color: white !important;
    text-shadow: 0 0 0 !important;
}

/* PARKING */
#parking header p {
    z-index: 9;
    position: relative;
}

#parking header p strong {
    font-size: 20px;
    text-transform: uppercase;
}

#parking footer {
    border-top-style: dashed;
}

/* SELL */
#sell header p {
    width: 960px;
    margin: 0px auto;
}

#sell header p strong {
    font-size: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
}

#sell footer {
    border-top-style: dotted;
}

/* MOBILE */
@media screen and (max-width: 980px) {

    body{
    background-size:cover; 
    -moz-transition: inherit;
    -webkit-transition: all 0s linear;
    transition: all 0s linear;
    background-position:center;
    }
    body:hover{
    background-size:cover;
    }
    section h1 {
     font-size: 30px;
     margin-bottom: 20px;
     font-weight: 600;

    }

    section {
        width: 100%;
        text-align: center;
        margin: 20% auto 0px auto;
    }

    #sell header p {
        width: 100%;
        text-align: center;
    }

    footer {
        position: fixed;
    }
    footer a {
        display: block;
        margin-top: 10px;
    }
}

/* PRINT */
@media print {
    * {
        background: none !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
        border: none !important;
    }

    :after, :before {
        display: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: ' (' attr(href) ')';
    }

    th, td {
        border: 1px solid #000 !important;
    }

    thead {
        display: table-header-group;
    }

    @page {
        margin: 0.5cm;
    }

    tr, p, h1 {
        orphans: 3;
        widows: 3;
        page-break-after: avoid;
    }
}

/* RED */
body.red {
    background-color: #DC3932;
    background-image: url("/images/red.jpg");
}

.red section h1 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.red header p strong {
    color: #fff;
}

#parking.red header p strong {
    color: #000;
    background-color: #fff;
}

.red section p, .red section li, .red section td, .red section th {
    color: #fff;
}

.red section a {
    color: #ff2c2a;
}

.red section table thead tr th {
    border-bottom: 1px solid #9E0B0F;
}

.red section table tfoot tr td {
    border-top: 1px solid #9E0B0F;
}

.red footer {
    border-top-color: #9E0B0F;
}

.red footer p {
    color: #ff2c2a;
}

footer a {
    color: red;
}
/* YELLOW */
body.yellow {
    background-color: #F6D72E;
    background-image: url("/images/yellow.jpg");
}

.yellow header h1 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.yellow header p strong {
    color: #000;
}

#parking.yellow header p strong {
    color: #fff;
    background-color: #000;
}

.yellow section p, .yellow section li, .yellow section td, .yellow section th {
    color: #000;
}

.yellow section a {
     color: #f4cec3;
}

.yellow section table thead tr th {
    border-bottom: 1px solid #000;
}

.yellow section table tfoot tr td {
    border-top: 1px solid #000;
}

.yellow footer {
    border-top-color: #666;
}

.yellow footer p {
    color: #eeb5a9;
}
footer a {
    color: #F6D72E;
}
/* GRAY */
body.gray {
    background-color: #DDE0E2;
    background-image: url("/images/gray.jpg");
}

.gray header h1 {
    color: #000;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.gray header p strong {
    color: #000;
}

#parking.gray header p strong {
    color: #fff;
    background-color: #000;
}

.gray section p, .gray section li, .gray section td, .gray section th {
    color: #000;
}

.gray section a {
    color:  #bfc8cf;
}

.gray section table thead tr th {
    border-bottom: 1px solid #000;
}

.gray section table tfoot tr td {
    border-top: 1px solid #000;
}

.gray footer {
    border-top-color: #666;
}

.gray footer p {
    color:  #bfc8cf;
}
footer a {
    color: #666;
}

/* BLUE */
body.blue {
    background-color: #5BA2B8;
    background-image: url("/images/blue.jpg");
}

.blue header h1 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.blue header p strong {
    color: #fff;
}

#parking.blue header p strong {
    color: #fff;
    background-color: #000;
}

 .blue section li, .blue section td, .blue section th {
    color: #163F4C;
}
.blue section p {
    margin-bottom: 40px;
    text-shadow: 0 1px 1px white;
}
.blue section a {
    color: #fff;
}

.blue section table thead tr th {
    border-bottom: 1px solid #163F4C;
}

.blue section table tfoot tr td {
    border-top: 1px solid #163F4C;
}

.blue footer {
    border-top-color: #163F4C;
}

.blue footer p {
    color: #04b3ed;;
}

footer a {
    color: #163F4C;
}

/* GREEN */
body.green {
    background-color: #34887A;
    background-image: url("/images/green.jpg");
}
.green .email{
    color: white;
}

.green section h1 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.green header p strong {
    color: #fff;
}

#parking.green header p strong {
    color: #fff;
    background-color: #000;
}

.green section p, .green section li, .green section td, .green section th {
    color: #fff;
}

.green section a {
    color: #fff;
}

.green section table thead tr th {
    border-bottom: 1px solid #155B4F;
}

.green section table tfoot tr td {
    border-top: 1px solid #155B4F;
}

.green footer {
    border-top-color: #155B4F;
}

.green footer p {
    color: #7f8815;
}
footer a {
    color: #155B4F;
}

/* BLACK */
body.black {
    background-color: #313233;
    background-image: url("/images/black.jpg");
}

.black header h1 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.black header p strong {
    color: #ddd;
}

.black section li, .black section td, .black section th {
    color: #999;
}

.black section a {
    color: #fff;
}
.black .email{
    color: white;
}
.black section table thead tr th {
    border-bottom: 1px solid #999;
}

.black section table tfoot tr td {
    border-top: 1px solid #999;
}

.black footer {
    border-top-color: #999;
}

.black footer p {
    color: #edc594;
}

footer a {
    color: #fff;
}

/* GOLD */
body.gold {
    background-color: #BE9B63;
    background-image: url("/images/gold.jpg");
}

.gold header h1 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.gold header p strong {
    color: #876A40;
}

#parking.gold header p strong {
    color: #000;
    background-color: #fff;
}

.gold section p, .gold section li, .gold section td, .gold section th {
    color: #563B10;
}

.gold section a {
    color: #fff;
}

.gold section table thead tr th {
    border-bottom: 1px solid #563B10;
}

.gold section table tfoot tr td {
    border-top: 1px solid #563B10;
}

.gold footer {
    border-top-color: #563B10;
}

.gold footer p {
    color: #563B10;
}

footer a {
    color: #876A40;
}

/* VIOLET */
body.violet {
    background-color: #FF73FF;
    background-image: url("/images/violet.jpg");
}

.violet header h1 {
    color: #8500B2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.violet header p strong {
    color: #000;
}

#parking.violet header p strong {
    color: #fff;
    background-color: #000;
}

.violet section p, .violet section li, .violet section td, .violet section th {
    color: #8500B2;
}

.violet section a {
    color: #884f82;
}

.violet section table thead tr th {
    border-bottom: 1px solid #8500B2;
}

.violet section table tfoot tr td {
    border-top: 1px solid #8500B2;
}

.violet footer {
    border-top-color: #4C0066;
}

.violet footer p {
    color: #884f82;
}

footer a {
    color: #ffffff;
    font-weight: bold;
}