﻿/* === CSS 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, font, 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
{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body
{
    background: #676268;
    font: normal 12px Arial,sans-serif;
}

h1
{
    font: 16px Arial,sans-seif;
    color: #B9122B;
    padding-bottom: 6px;
}

p
{
    color: #666;
    text-align: justify;
    margin: 15px 0 5px 0;
}

#tooltip
{
    position: absolute;
    border: 1px solid #333;
    background: #f7f5d1;
    padding: 2px 5px;
    color: #333;
    display: none;
}

#container
{
    margin: 10px auto;
    padding: 20px;
    width: 830px;
    height: auto;
    background: #FFF;
    border-top: 10px solid #B9122B;
    border-bottom: 10px solid #B9122B;
}

p a:link, a:visited
{
    color: #B9122B;
    text-decoration: none;
}

p a:hover
{
    color: #676268;
    text-decoration: underline;
}

ul
{
    list-style: square;
    color: #B9122B;
}

li
{
    margin: 15px;
}

.bullet
{
    color: #333333;
    font: 12px Arial,sans-seif;
}

#header
{
    height: 370px;
    clear: both;
}

#logo
{
    float: left;
    margin: 40px 20px 20px 40px;
    width: 250px;
}


.tabSection
{
    margin: 10px 0;
}


/* === Image Slider === */

#slider-container
{
    background: url(../img/slider/bg_slider.png) no-repeat;
    padding: 10px;
    width: 500px;
    float: left;
    height: 340px;
}

#slider
{
    float: left;
    margin: 0 auto;
    position: relative;
    width: 500px;
    height: 315px;
}

.scroll
{
    clear: left;
    height: 315px;
    overflow: auto;
    position: relative;
    width: 500px;
}


.scrollContainer div.panel
{
    height: 315px;
    width: 500px;
}

.scrollButtons
{
    cursor: pointer;
    position: absolute;
    top: 150px;
    background-image: none;
}

.scrollButtons.left
{
    left: -4px;
    z-index: 1;
}
.scrollButtons.right
{
    left: 476px;
}


/* === Contact Form === */
#form
{
    margin: 25px 0 25px 0;
    width: 475px;
}

.contact-input
{
    line-height: 12px;
    padding: 5px 8px;
    width: 350px;
}

.contact-select
{
    line-height: 16px;
    padding: 9px 10px;
    width: 350px;
}

.contact-textarea
{
    line-height: 20px;
    padding: 8px 10px;
    width: 350px;
    height: 100px;
}
.contact-input, .contact-textarea, .contact-select
{
    background: #eaeaea;
    border: 1px solid #CCCCCC;
    color: #808080;
    font: 12px Arial, Helvetica, sans-serif;
    margin: 0 0 20px;
}
.contact-input:focus, .contact-textarea:focus
{
    background: #f2f2f2;
    border-color: #B9122B;
}

#form label
{
    display: inline-block;
    float: left;
    height: 26px;
    line-height: 26px;
    width: 100px;
    font: 14px bold Arial, Helvetica, sans-serif;
    color: #B9122B;
}
.contact-submit
{
    font-weight: bold;
    cursor: pointer;
    padding: 2px 8px;
    float: right;
}

#error
{
    background: #FBE3E4;
    color: #8a1f11;
    padding: 8px;
    border: 1px solid #FBC2C4;
    font: 11px normal Arial, Helvetica, sans-serif;
}

#success
{
    background: #C4F78A;
    color: #333;
    padding: 8px;
    border: 1px solid #52DC23;
    font: 11px normal Arial, Helvetica, sans-serif;
}

