/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,800');
@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300');
@import url('https://fonts.googleapis.com/css?family=Oswald:400,300');
@import url('https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700,700i');

@media print {
.noprint {
    display: none;
}
body {
    font-size: 14px;
    line-height: 20px;
}
}

@media screen {
body {
    font-size: 18px;
    line-height: 27px;
}
}
html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}
body {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    color: #333;
    margin: 0px;
    /* padding: 20px; */
    background-color: #FFF;
    text-wrap: normal;
    word-wrap: break-word;
}
h1, h2, h3, h4, h5, h6 {
    font-family: Oswald, sans-serif;
    font-weight: 400;
    line-height: 1em;
    margin: 20px 0 10px 0;
    padding: 0px;
    color: #162f5b;
}
.fatbold {
    font-family: "Open Sans", sans-serif;
    font-size: 1.75em;
    font-weight: 800;
    line-height: 1.2em;
    color: #162f5b;
}
.smallgray {
    font-size: .85em;
    line-height: 1.2em;
    color: #666;
}
.grayital {
    color: #666;
    font-style: italic;
}
.redbold {
    font-weight: 700;
    color: #C00;
}
.smaller {
    font-size: .8em;
    line-height: 1.2em;
}
.smallest {
    font-size: .6em;
    line-height: .8em;
}
.tallthin {
    font-family: Oswald, sans-serif;
    font-size: 36px;
    color: #162f5b;
    text-decoration: none;
    margin-top: 5px;
    line-height: 1.2em;
    font-weight: 300;
}
.tallthin a, visited {
    color: #162f5b;
    text-decoration: none;
}
.tallthin a:hover {
    text-decoration: underline;
    color: black;
}
.inabox {
    background-color: #EEE;
    border: 1px #999 solid;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
}
.credited_pic_right {
    float: right;
    font-size: .8em;
    line-height: 1.2em;
    margin: 0px 0px 10px 15px;
    text-align: right;
    padding-top: 15px;
    width: 40%;
    max-width: 250px;
    color: #666666;
}
.round_input {
    font-family: "PT Sans", sans-serif;
    border-radius: 5px;
    border: solid 1px gray;
    padding: 5px;
    font-size: 18px;
    background-color: #F9F9F9;
    margin: 5px 3px;
}
.round_input:focus {
    background-color: #FFE;
}
.cool_button {
    font-family: "PT Sans", sans-serif;
    display: inline-block;
    vertical-align: baseline;
    margin: 5px 3px;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 18px;
    border-radius: .5em;
    color: white;
    border: none;
    background: #162f5b;
}
.cool_button:hover {
    background: #2856a7;
}
.cool_button:active {
    background: #a73128;
}
.dropdown select {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    border: 1px #666666 solid;
    color: #000000;
    border-radius: 5px;
    padding: 3px;
    font-size: 18px;
}
.twit_quote {
    color: black;
    text-decoration: none;
    background-image: url(/images/Twitter_logo_blue_32.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 20px 20px;
    transition: .2s;
    padding-right: 20px;
}
.twit_quote:hover {
    color: white !important;
    background-color: #56aeec;
    background-image: url(/images/Twitter_logo_white_32.png);
}
#funding-title {
    text-align: center;
    background-color: black;
    color: white;
    border-radius: 15px 15px 0px 0px;
    border: none;
    padding: 10px;
}
#funding-box {
    text-align: center;
    background-color: #ded79b;
    border-radius: 0px 0px 15px 15px;
    border: none;
    padding: 15px;
}

/* Stuff with the nomobile class will disappear when the screen is mobile */
@media screen and (max-width: 750px) {
.nomobile {
    display: none;
}
}

/* Stuff with the mobile class will appear only when the screen is mobile */
@media screen and (min-width: 751px) {
.mobile {
    display: none;
}
}
