body {
	text-align: center;
}
#ttlinput {
	width: 8em;
}
#hoursinput, #minsinput {
	width: 3em;
}




.newPage{
    margin: 0;
    overflow-x: hidden;
    background-color: #000b73;
    position: relative;
    height: 100vh;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    font-weight: 400;
    font-size: 0.625em;
    line-height: 1.5;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Anton', sans-serif;
    color: #000b73;
    margin: 0;
    line-height: 1.25;
}
#content{
    background-color: #ffffff;
    width: 96%;
    max-width: 1200px;
    padding: 50px 50px 0px;
    transform: translate(-50%,-50%);
    position: absolute;
    left: 50%;
    top: 50%;
    box-sizing: border-box;
}
.contentCols{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.contentCol{
    width: 48%;
}
.leftCol #siteheader{
    text-align: center;
    margin-bottom: 20px;
}
.leftCol #siteheader h1{
    font-size: 6.4em;
}
.leftCol #siteheader h2{
    font-size: 2.9em;
}
.ttlCalc form{
    border-bottom: 2px solid #000b73;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.ttlCalc form .formCol{
    width: 50%;
    box-sizing: border-box;
    padding-left: 25px;
    padding-bottom: 25px;
}
.ttlCalc form .formCol:first-child{
    border-right: 2px solid #000b73;
    padding-right: 25px;
    padding-left: 0;
}
.ttlCalc form .formCol.twoCol{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.ttlCalc form .formCol.twoCol .fieldHolder{
    width: 45%;
}
.ttlCalc form .formCol label{
    font-size: 1.6em;
    display: block;
    font-weight: 700;
    margin-bottom: 3px;
}
.ttlCalc form .formCol input{
    font-size: 2.6em;
    padding: 5px 10px;
    background-color: #d9dbea;
    border: 0;
    color: #333333;
    width: 100% !important;
    line-height: 1;
    box-sizing: border-box;
}

.textBox{
    background-color: #d9dbea;
    padding: 20px 20px 5px;
}
.textBox h2{
    font-size: 3.6em;
    margin-bottom: 5px;
    text-align: center;
}
.textBox p{
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 1.8em;
}
#content #sitefooter p{
    font-size: 1.2em;
    margin: 10px 0;
    text-align: right;
}
#content #sitefooter p a{
    color: #000b73;
}
#content #sitefooter p a:hover{
    color: #d35e00;
}

@media only screen and (max-width: 1000px) {
    .newPage{
        height: auto;
    }
    .contentCols{
        flex-direction: column;
    }
    .contentCol{
        width: 100%;
    }
    .contentCol.rightCol{
        margin-top: 40px;
    }
    #content #sitefooter p{
        text-align: center;
    }
    #content{
        position: static;
        transform: translate(0,0);
        padding: 15px 15px 0px;
        margin: 10px auto;
    }
    #shareOptions{
        text-align: center;
    }
}