#outer_box {
    background-image: linear-gradient(to right, #f7e7ca, white);
    border-radius: 9px;
    padding: .01em 1.2em .3em;
    margin-top: .6em;
}

#contact_form {
    font-size: 90%;
}

label {
    float: left;
    width: 14em;
    text-align: right;
    font-family: Montserrat, Verdana, Arial, Helvetica, sans-serif;
    font-weight:bold;
    margin-top: 5px;
}

input, textarea {
    width: 16em;
    margin-left: 1em;
    margin-bottom: 1em;
    border: 1px solid #137baf;
    font-family: Montserrat, Verdana, Arial, Helvetica, sans-serif;
    border-radius: 5px;
    padding: 5px;
}

#buttons input {
    width: 10em;
    margin-right: 0;
    margin-top: 0.5em;
    border: 0;
    padding: 0.5em;
    background-color: #22A2E1;
    color: white;
    font-weight: bold;
	cursor: pointer;
}

input[type=checkbox]
{
    -ms-transform: scale(1.5); /* IE */
    -moz-transform: scale(1.5); /* FF */
    -webkit-transform: scale(1.5); /* Safari and Chrome */
    -o-transform: scale(1.5); /* Opera */
    transform: scale(1.5);
    border: 1px solid #137baf !important;
}

#contact_form span {
    color: red;
    font-weight: bold;
    font-size: 80%;
    margin: -.2em 0 .2em .1em;
}


/* Match jQuery UI tooltip text style to the rest of the page */
.ui-tooltip-content {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size:80%;
}


/* Responsive form layout: columns stack instead of being beside each other on smaller screens */
@media only screen and (max-width: 810px) {
    label, input, span.col3, textarea {
    width: 96%;
    margin-top: 0;
    margin-left: 0;
    }
    label {
        text-align: left;
        margin-bottom: .3em;
    }
    input[type=radio] {
        margin: 0 .8em 1.2em .6em;
    }
    span.col3 {
        display: block;
        padding-bottom: 1em;
    }
  }