﻿body {
    background-color: #1b1a3a;
    /*background-color: #BADA55;*/
    color: #1b1a3a;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 300;
    font-size: 15px;
    /*margin:0px;*/
}

a {
    text-decoration: none;
}


header {
    background-color: white;
    text-align: center;
    padding: 5px;
   }

    header h1 {
        font-family: 'Times New Roman', Times, serif;
        font-size: 22px;
        margin-top: 3px;
    }

    header div {
        font-family: 'Times New Roman', Times, serif;
        font-size: 10px;
        font-weight: 900;
        margin-top: -10px;
    }

#bapanel {
    width: 50px;
    height: 25px;
    display: block;
    float: left;
}

#dnvpanel {
    width: 50px;
    height: 25px;
    display: block;
    float: right;
}

#homepanel {
   background-color: darkorange;
   color: white;
   width: 100%;
   border-radius: 2px;
}

#menu{
    background:url(../images/menu.svg) no-repeat center center ;
    background-color: darkorange;
    line-height: 22px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    text-decoration: none;
    border: 2px solid black;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
    z-index:300;
}

nav {
    background-color: #007B9A;
    width: 100%;
    position: fixed;
    bottom:-178px;
    -moz-transition:  1s; /* Firefox 4 */
    -webkit-transition:  1s; /* Safari and Chrome */
    -o-transition:  1s; /* Opera */
    transition: 1s;
    z-index:200;
}

nav:target{
        padding-top: 1px;
        bottom: 0;
    }

    nav ul {
        padding: 2px 0px 2px 0px;
        margin: 0px 4px 0px 0px;
    }

        nav ul li {
            background-color: darkorange;
            width: 100%;
            list-style-type: none;
            margin: 2px;
        }

            nav ul li a {
                color: white;
                display: block;
                line-height: 20px;
                margin: 1px;
                text-decoration: none;
            }

            nav ul li div {
                display: none;
                visibility: hidden;
            }

section {
    background-color: #BADA55;
    padding: 0px;
    overflow: hidden;
}

article {
    background-color: #FFFFFF;
    padding: 8px;
    border-radius: 15px;
    margin: 10px;
    overflow: hidden;
    position: relative;
}

    article.top p {
        margin-top: -10px;
        font-weight: 600;
        text-align: center;
    }

.outofstock {
    border-radius: 0px;
    position: absolute;
    width: 50%;
    height: 50%;
    left: -7px;
    margin-top: -10px;
    margin-left: 7px;
    z-index: 100;
    /*opacity: 0;*/
}

article.tiledlarge img, article.tiledmedium img, article.tiledsmall img {
    border-radius: 15px;
    height: 125px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.clickme {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 15px;
    margin: 10px auto;
    width: 150px;
    color: #ccc;
    background-color: #555;
    background: -webkit-linear-gradient(#888, #555);
    background: linear-gradient(#888, #555);
    border: 0 none;
    border-radius: 5px;
    text-align: center;
    text-shadow: 0 -1px 0 #000;
    cursor: pointer;
    -webkit-transition: all 150ms ease;
    transition: all 150ms ease;
}

    .clickme:hover, .clickme:focus {
        color: #FFF;
    }

footer {
    display: none;
    background-color: black;
    color: white;
    clear: both;
    text-align: center;
    padding: 5px;
}

.modalDialog{
    display: none;
    visibility: hidden;
}

.paypal {
   display: none;
   visibility: hidden;
}

img.floatleft {
    width: 100%;
    float: left;
    margin: 0px 20px 10px 0px;
}


#contact-form {
    background-color: #F2F7F9;
    padding: 20px;
    border: 6px solid #8FB5C1;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    position: relative;
}

    #contact-form h1 {
        font-size: 42px;
    }

    #contact-form h2 {
        margin-bottom: 15px;
        font-style: italic;
        font-weight: normal;
    }

    #contact-form input,
    #contact-form select,
    #contact-form textarea,
    #contact-form label {
        font-size: 15px;
        margin-bottom: 2px;
    }

    #contact-form input,
    #contact-form select,
    #contact-form textarea {
        width: 95%;
        border: 1px solid #CEE1E8;
        margin-bottom: 20px;
        padding: 4px;
    }

        #contact-form input:focus,
        #contact-form select:focus,
        #contact-form textarea:focus {
            border: 1px solid #AFCDD8;
            background-color: #EBF2F4;
        }

    #contact-form textarea {
        height: 150px;
        resize: none;
    }

    #contact-form label {
        display: block;
    }

    #contact-form .required {
        font-weight: bold;
        color: #F00;
    }

    #contact-form #submit-button {
        width: 150px;
        background-color: #333;
        color: #FFF;
        border: none;
        display: block;
        float: left;
        margin-bottom: 0px;
        margin-right: 6px;
        background-color: #8FB5C1;
        -moz-border-radius: 8px;
    }

        #contact-form #submit-button:hover {
            background-color: #A6CFDD;
        }

        #contact-form #submit-button:active {
            position: relative;
            top: 1px;
        }

    #contact-form #loading {
        width: 32px;
        height: 32px;
        background-image: url(../img/loading.gif);
        display: block;
        position: absolute;
        right: 130px;
        bottom: 16px;
        display: none;
    }

    #contact-form .fullname{
        display:none;
    }

#errors {
    border: solid 1px #E58E8E;
    padding: 10px;
    margin: 25px 0px;
    display: block;
    width: 437px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #FFE6E6 url(../img/cancel_48.png) no-repeat 405px center;
    display: none;
}

    #errors li {
        padding: 2px;
        list-style: none;
    }

        #errors li:before {
            content: ' - ';
        }

    #errors #info {
        font-weight: bold;
    }

        #errors #info:before {
            content: '';
        }

#success {
    border: solid 1px #83D186;
    padding: 25px 10px;
    margin: 25px 0px;
    display: block;
    width: 437px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #D3EDD3 url(../img/accepted_48.png) no-repeat 405px center;
    font-weight: bold;
    display: none;
}

    #errors.visible, #success.visible {
        display: block;
    }

#req-field-desc {
    font-style: italic;
}

/* Remove box shadow firefox, chrome and opera put around required fields. It looks rubbish. */
input:required, textarea:required {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

/* Normalize placeholder styles */

/* chrome, safari */
::-webkit-input-placeholder {
    color: #CCC;
    font-style: italic;
}

/* mozilla */
input:-moz-placeholder, textarea:-moz-placeholder {
    color: #CCC;
    font-style: italic;
}

/* ie (faux placeholder) */
input.placeholder-text, textarea.placeholder-text {
    color: #CCC;
    font-style: italic;
}
