
input, select, textarea{
    font: 16px Verdana;
    border: 2px solid #3B3833;
    background-color: #27241F;
    color: #FFFFFF;
    padding: 8px;
    margin: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    z-index:9999;
}


button{
    position: relative;
    top: 0;
    width:200px; height:60px;
    font: 18px bahnschrift; color: #fff;
    margin: 15px; border: 0; border-radius: 1px;
    background-color: #111;
    background-image: url('../img/red_button_off.png');
    text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
    box-shadow: 0 2px 0 #111;
    transition: box-shadow 0.1s, top 0.1s;
}

button:hover{
    filter: sepia(10%) brightness(.9);
    /*background-image: url('../img/red_button_on.png');*/ }

button:active, button:active {
    top: 1px;
    box-shadow: 0 1px 0 #111;
}

button:disabled, button[disabled]{ color: #666666; background-image: url('../img/button-med-disabled.png'); }



button.sml{
    font: 18px bahnschrift;
    color: #fff;
    margin: 15px;
    border: 0;
    background-color: #000;
    background-image: url('../img/small-button.png');
    width:60px;
    height:60px;
}
button.sml:hover {
    border: 0;
    background-image: url('../img/small-button-on.png');
    width:60px;
    height:60px;
}

/*** BUTTON 134x40 ***/
button.medLong{
    width:134px; height:40px; margin: 10px 0 0 0;
    background-image: url('../img/button-134x40.png'); }
button.medLong:hover{  background-image: url('../img/button-134x40-on.png'); }
button.medLong:disabled, button.medLong[disabled]{ background-image: url('../img/button-134x40-disabled.png'); }

/*** BUTTON 50x50 ***/
button.med{
    width:50px; height:50px; margin:0; padding:0;
    font: 24px bahnschrift;
    background-image: url('../img/button-50x50.png'); }
button.med:hover {  background-image: url('../img/button-50x50-on.png'); }
button.med:disabled, button.med[disabled]{ background-image: url('../img/button-50x50-disabled.png'); }



/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 25px;
    width: 25px;
    background-color: #27241F;
    border: 2px solid #F2DAC3;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #3B3833;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #9A6B33;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    cursor: pointer;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 25px;
    width: 25px;
    background-color: #27241F;
    border: 2px solid #3B3833;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #3B3833;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #9A6B33;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}