﻿@import url(//fonts.googleapis.com/css?family=Roboto);

* {
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    padding: 4px;
    margin: 0px;
    vertical-align: top;
    width: 100%;
}

.wHolder {
    display: inline-block;
    width: 100%;
}

.wControl {
    display: inline-block;
    float: left;
    padding: 4px;
}

    .wControl table {
        vertical-align: top;
        border-spacing: 0px;
        -webkit-border-horizontal-spacing: 0px;
        -webkit-border-vertical-spacing: 0px;
    }

    .wControl span {
        font-family: 'Roboto', sans-serif;
        font-size: 16px;
        color: gray;
    }

        .wControl span:hover {
            color: black;
        }

@media only screen and (max-width : 599px) {
    .IS_MOBILE { }
    .HIDE_MOBILE { display: none }
    .HIDE_DESKTOP { }
    .LIMIT_MOBILE { max-width: 240px }
    .LEFT_TD { display: none }
    .ITEM_TITLES { display: inline }
    .w1-1 { width: 100%; }
    .w1-2 { width: 100%; }
    .w2-2 { width: 100%; }
    .w1-3 { width: 100%; }
    .w2-3 { width: 100%; }
    .w3-3 { width: 100%; }
    .w1-4 { width: 100%; }
    .w2-4 { width: 100%; }
    .w3-4 { width: 100%; }
    .w4-4 { width: 100%; }
    .w1-5 { width: 100%; }
    .w2-5 { width: 100%; }
    .w3-5 { width: 100%; }
    .w4-5 { width: 100%; }
    .w5-5 { width: 100%; }
    .w1-8 { width: 100%; }
    .w2-8 { width: 100%; }
    .w3-8 { width: 100%; }
    .w4-8 { width: 100%; }
    .w5-8 { width: 100%; }
    .w6-8 { width: 100%; }
    .w7-8 { width: 100%; }
    .w8-8 { width: 100%; }
}

@media only screen and (min-width : 600px) {
    .IS_DESKTOP { }
    .HIDE_MOBILE { }
    .HIDE_DESKTOP { display: none }
    .LIMIT_MOBILE { }
    .LEFT_TD { display: table-cell }
    .ITEM_TITLES { display: none }
    .w1-1 { width: 100%; }
    .w1-2 { width: 50%; }
    .w2-2 { width: 100%; }
    .w1-3 { width: 33%; }
    .w2-3 { width: 66%; }
    .w3-3 { width: 100%; }
    .w1-4 { width: 25%; }
    .w2-4 { width: 50%; }
    .w3-4 { width: 75%; }
    .w4-4 { width: 100%; }
    .w1-5 { width: 20%; }
    .w2-5 { width: 40%; }
    .w3-5 { width: 60%; }
    .w4-5 { width: 80%; }
    .w5-5 { width: 100%; }
    .w1-8 { width: 12.5%; }
    .w2-8 { width: 25%; }
    .w3-8 { width: 37.5%; }
    .w4-8 { width: 50%; }
    .w5-8 { width: 62.5%; }
    .w6-8 { width: 75%; }
    .w7-8 { width: 87.5%; }
    .w8-8 { width: 100%; }

}

.Frame {
    border: none;
    width: 100%;
}

select {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    outline: 0;
    border: 1px solid black;
    border-radius: 3px;
    display: block;
    text-align: left;
    color: black;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    font-weight: 300;
    min-height: 22px;
}

    select:hover {
        border: 1px solid #00C000;
        background-color: #FFFFFF;
    }

    select:focus {
        border: 1px solid #008000;
        background-color: #F0FFF0;
    }

    select option {
        margin: 40px;
        background: #738393;
        color: #fff;
        text-shadow: 0 1px 0 rgba(0,0,0,0.4);
    }

.RespCheck {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    outline: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    padding: 3px;
    margin: 1px;
    display: inline;
    text-align: center;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    font-weight: 300;
    min-height: 22px;
}

    .RespCheck:hover {
        border: 1px solid #00C000;
        background-color: #FFFFFF;
    }

    .RespCheck:focus {
        border: 1px solid #008000;
        background-color: #F0FFF0;
    }
.RespButton {
    background-color: #FFFFFF;
}

textarea {
    background-color: #FFFFFF;
    font-family: 'Roboto', sans-serif !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 1px solid black;
    border-radius: 3px;
    display: block;
    text-align: left;
    font-size: 13px;
    color: black;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    font-weight: 300;
    min-height: 22px;
}

    textarea:hover {
        border: 1px solid #00C000;
        background-color: #FFFFFF;
    }

    textarea:focus {
        border: 1px solid #008000;
        background-color: #F0FFF0;
    }

input[type=text] {
    background-color: #FFFFFF;
    font-family: 'Roboto', sans-serif !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 1px solid black;
    border-radius: 3px;
    display: block;
    text-align: left;
    font-size: 13px;
    color: black;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    font-weight: 300;
    min-height: 22px;
}

    input[type=text]:hover {
        border: 1px solid #00C000;
        background-color: #FFFFFF;
    }

    input[type=text]:focus {
        border: 1px solid #008000;
        background-color: #F0FFF0;
    }

.RespList {
    background-color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    display: block;
    text-align: left;
    color: black;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    font-weight: 300;
}

.RespCombo {
    background-color: #FFFFFF;
}
