/*********************************************************************************
 **|
 **|    I M P O R T
 **|
 *********************************************************************************/
@import url('reset.css');
@import url('font.css');
@import url('external.css');

/*********************************************************************************
 **|
 **|    M A S T E R P L A N
 **|
 *********************************************************************************/
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

html { min-width: 980px; }

body {
    background: #fff;
    color: #424346;
    font: normal 13px/22px 'Aller-Regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(64, 204, 82, 0.9);
    color: #fff;
}

::-moz-selection {
    background: rgba(64, 204, 82, 0.9);
    color: #fff;  
}

h1 { font-size: 28px; line-height: 36px; }
h2 { font-size: 24px; line-height: 36px; }
h3 { font-size: 20px; line-height: 28px; }
h4 { font-size: 18px; line-height: 24px; }
h5 { font-size: 16px; line-height: 22px; }
h6 { font-size: 14px; line-height: 20px; }

a, a:visited, a:link {
    color: #787878;
    text-decoration: underline;
    -webkit-transition: all 0.15s cubic-bezier(0, 0, 0.58, 1);
    -moz-transition: all 0.15s cubic-bezier(0, 0, 0.58, 1);
    -o-transition: all 0.15s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.15s cubic-bezier(0, 0, 0.58, 1);
}

a:hover {
    color: #ff7419;
}

.button {
    margin: 0;
    padding: 0 30px;
    height: 36px;
    background-color: #39b54a;
    border: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #fff;
    font-family: 'Aller-BoldItalic';
    font-size: 14px;
    line-height: 36px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 1px rgba(0, 0, 0, 0.75);
    outline: none;
    cursor: pointer;
}

.button:hover {
    background-color: #40cc52;
}

.global-container {
    width: 100%;
    height: 100%;   
}

.wrapper {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    width: 840px;
}

.content-grid,
.grid-2-column,
.grid-3-column,
.grid-4-column {
    margin: 0 auto;
    width: 800px;
    *zoom: 1;
}

.content-grid,
.grid-2-column:after,
.grid-3-column:after,
.grid-4-column:after {
    content: " ";
    display: table;
    clear: both;
}

.grid-2-column .column {
    float: left;
    margin-right: 12px;
    width: 394px;
}

.grid-3-column .column {
    float: left;
    margin-right: 10px;
    width: 260px;
}

.grid-4-column .column {
    float: left;
    margin-right: 12px;
    width: 191px;
}

.grid-2-column .column.last,
.grid-3-column .column.last,
.grid-4-column .column.last { margin-right: 0; }

/***************************************************************
 * TOP BAR / HEADER
 ***************************************************************/
#top-bar {
    margin: 0;
    width: 100%;
    height: 44px;
    background-color: #39b54a;
    border-bottom: 4px solid #eaebee;
}

#top-bar .our-address {
    padding-top: 14px;
    color: #fff;
    font-family: 'Aller-Italic';
    font-size: 12px;
    line-height: 1;
    text-align: center;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.28);
    text-transform: uppercase;
}

#header {
    margin: 1px 0;
    height: 98px;
    background: #fff;
}

#logo {
    float: left;
}

#logo h1 a {
    display: block;
    width: 180px;
    height: 98px;
    background: url('../images/logo.png') no-repeat 0 0;
    text-indent: -9999px;
}

/***************************************************************
 * NAVIGATION
 ***************************************************************/
#nav {
    float: right;
}

#nav ul li {
    float: left;
}

#nav ul li a {
    display: block;
    margin: 0 0 0 1px;
    padding: 38px 22px 0;
    height: 98px;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    color: #1a1b1e;
    font-family: 'Aller-Bold';
    font-size: 16px;
    text-decoration: none;
}

#nav ul li a:hover {
    border-color: #048dcd transparent;
}

#nav ul li a.active {
    color: #39b54a;
}

/***************************************************************
 * HOME
 ***************************************************************/
/* Slider */
#slider-container {
    margin: 0 0 20px 0;
    width: 100%;
    height: 420px;
    background: url('../images/slider_bg.jpg') no-repeat center center;
    background-size: cover;
}

#slider {
    position: relative;
    width: 800px;
    height: 420px;
}

#slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 420px;
}

#slide-1 {
    background-image: url('../images/slider/initial.png');
    background-position: center center;
    background-repeat: no-repeat;
}

#slide-nav span {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    background-color: #424345;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);   
    cursor: pointer;    
}

#slide-nav span.prev {
    left: -50px;
    background-image: url('../images/arrow_left.png');
}

#slide-nav span.next {
    right: -50px;
    background-image: url('../images/arrow_right.png');
}

#slide-nav span:hover {
    background-color: #39b54a;
}

/* Depot Points */
#depot-points {
    margin-bottom: 30px;
}

#depot-points img {
    margin-bottom: 4px;
    width: 260px;
    height: 190px;
    border: none;
}

#depot-points h4 {
    margin-bottom: 4px;
    color: #1a1b1e;
    font-family: 'Aller-BoldItalic';
    font-size: 16px;
    text-align: center;
}

#depot-points h4 a {
    color: #1a1b1e;
    text-decoration: none;
}

#depot-points p {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

#depot-summary {
    margin: 40px 0 0;
    padding: 20px;
    border: 1px solid #eaebee;
    text-align: justify;
}

#depot-summary h3 {
    margin: 10px 0 8px;
    color: #39b54a;
    font-family: 'Aller-Display';
    text-transform: uppercase;
}

#depot-summary p {
    margin-bottom: 20px;
}

/***************************************************************
 * PAGE
 ***************************************************************/
h2.page-title {
    margin: 0 0 30px 0;
    padding: 34px 0 30px;
    border-top: 4px solid #39b54a;
    border-bottom: 4px solid #39b54a;
    color: #1a1b1e;
    font-family: 'Aller-Display';
    font-size: 28px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

#main {
    padding-bottom: 60px;
}

#main .content-grid .column {
    float: left;
    margin-right: 20px;
    width: 480px;  
}

#main .content-grid .column.last {
    margin-right: 0;
    width: 300px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-bottom: 6px;
    color: #39b54a;
    font-family: 'Aller-BoldItalic';
}

.entry-content em { font-family: 'Aller-Italic'; }

.entry-content strong { font-family: 'Aller-Bold'; }

.entry-content p {
    margin-bottom: 20px;
}

.entry-content img {
    border: 0;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 20px 0;
    padding-left: 40px;
}

.entry-content ol {
    list-style-type: decimal;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 10px;
}

.bottle-prices {
    margin: 30px 0;
    background: #fff;
    border: 1px solid #eaebee;
    color: #048dcd;
    font-family: 'Aller-Italic';
    font-size: 18px;
    text-align: center;
}

.bottle-prices .column {
    padding: 30px 0;
    width: 393px;
}

/***************************************************************
 * CONTACT FORM
 ***************************************************************/
#btm-contact-footer {
    margin: 0;
    width: 100%;
    height: 540px;
    background: url('../images/contact_bg.jpg') no-repeat center center;
    border-top: 1px solid #eaebee;
}

.btm-contact-header {
    margin: 0;
    padding: 50px 0;
    color: #fff;
    text-align: center;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.4);
}

.btm-contact-header h3 {
    margin: 0 0 10px 0;
    font-family: 'Aller-BoldItalic';
    font-size: 24px;
}

.btm-contact-header p {
    font-size: 16px;
    line-height: 18px;
}

#contact-form-container .field-container {
    margin-bottom: 5px;
}

#contact-form-container .field-container input[type=text],
#contact-form-container .field-container textarea {
    padding: 0 12px;
    width: 394px;
    height: 36px;
    background: #fff;
    border: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #b2b3b5;
    -webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    outline: none;
}

#contact-form-container .field-container textarea {
    padding: 12px;
    height: 150px;
    resize: none;
}

#contact-form-container .field-container input[type=text]:focus,
#contact-form-container .field-container textarea:focus {
    color: #7a7b7e;
}

#contact-form-container .submit-container {}

#contact-form-container .submit-container .submit-button {
    float: left;
}

#contact-successful {
    display: none;
    float: left;
    margin-top: 10px;
    margin-left: 10px;
    height: 36px;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    text-shadow: 1px 1px 0 #000;
}

#contact-successful span {
    margin-right: 4px;
    color: #39b54a;
    font-family: 'IconSweets-Regular';
}

#map-container img {
    margin: 0;
    width: 394px;
    height: 274px;
    border: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
}


/***************************************************************
 * FOOTER
 ***************************************************************/
#footer {
    background-color: #1a1b1c;
    color: #666;
    font-size: 12px;
}

#footer-widgets {
    padding: 40px 0 50px;
}

#footer-widgets h4 {
    margin-bottom: 8px;
    font-family: 'Aller-BoldItalic';
    color: #fff;
}

#footer-widgets p {
    margin-bottom: 12px;
}

#footer-widgets .contact-info ul {}

#footer-widgets .contact-info ul li {
    margin-bottom: 4px;
    font-family: 'Aller-Italic';
    line-height: 25px;
    height: 25px;
}

#footer-widgets .contact-info ul li .icon {
    display: block;
    float: left;
    margin-right: 12px;
    width: 25px;
    height: 25px;
    background-position: center center;
    background-repeat: no-repeat;
}

#footer-widgets .contact-info ul li.phone .icon {
    background-image: url('../images/icon_phone.png');
}

#footer-widgets .contact-info ul li.email .icon {
    background-image: url('../images/icon_email.png');

}

#footer-widgets .contact-info ul li.address .icon {
    background-image: url('../images/icon_address.png');
}

#footer-widgets .mailing-list #mailing-list-form {
    display: block;
    margin-bottom: 12px;
}

#footer-widgets .mailing-list input#mailing-email {
    float: left;
    margin-right: 5px;
    padding: 0 12px;
    width: 270px;
    height: 36px;
    background: #2a2b2c;
    border: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #828385;
    -webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    outline: none;
}

#footer-widgets .mailing-list input#mailing-email:focus {
    background: #333436;
    color: #e3e4e6;
}

#footer-widgets .mailing-list input.submit-button {
    float: left;
}

#footer-widgets .mailing-list .mailing-response {
    display: none;
    color: #b3b4b6;
    font-size: 12px;
}

#footer-widgets .mailing-list .mailing-response span {
    margin-right: 4px;
    color: #39b54a;
    font-family: 'IconSweets-Regular';
}

#absolute-footer {
    height: 60px;
    background-color: #2a2b2c;
    color: #828385;
}

#absolute-footer .copyright {
    float: left;
    padding-top: 25px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
    line-height: 1;
}

#absolute-footer .back-to-top {
    float: right;
    margin-top: 16px;
    width: 32px;
    height: 28px;
    background-color: #424345;
    background-image: url('../images/arrow_up.png');
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);   
    cursor: pointer;
}

#absolute-footer .back-to-top:hover {
    background-color: #525355;
}

/*********************************************************************************
 **|
 **|    H E L P E R   C L A S S E S
 **|
 *********************************************************************************/
.ir {background-color: transparent;border: 0;overflow: hidden;*text-indent: -9999px;}
.ir:before {content: "";display: block;width: 0;height: 150%;}
.hidden {display: none !important;visibility: hidden;}
.visuallyhidden {border: 0;clip: rect(0 0 0 0);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {clip: auto;height: auto;margin: 0;overflow: visible;position: static;width: auto;}
.invisible {visibility: hidden;}
.clearfix:before,
.clearfix:after {content: " ";display: table;}
.clearfix:after {clear: both;}
.clearfix {*zoom: 1;}

/*********************************************************************************
 **|
 **|    P R I N T   S T Y L E S
 **|
 *********************************************************************************/
@media print {
    * {background: transparent !important;color: #000 !important;box-shadow: none !important;text-shadow: none !important;}
    a,
    a:visited {text-decoration: underline;}
    a[href]:after {content: " (" attr(href) ")";}
    abbr[title]:after {content: " (" attr(title) ")";}
    /*
     * Don't show links for images, or javascript/internal links
     */
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {content: "";}
    pre,
    blockquote {border: 1px solid #999;page-break-inside: avoid;}
    thead {display: table-header-group; /* h5bp.com/t */}
    tr,
    img {page-break-inside: avoid;}
    img {max-width: 100% !important;}
    @page {margin: 0.5cm;}
    p,
    h2,
    h3 {orphans: 3;widows: 3;}
    h2,
    h3 {page-break-after: avoid;}
}