#theForm {
    font-family: 'OpenSans', sans-serif;
    color: #663333;
    font-size: 10pt;
    font-weight: 100;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
}
#errorMessage {
    position:relative;
    top:-27px;
    right: 82px;
    font-family: 'OpenSans', sans-serif;
    font-size: 10pt;
    font-weight: 500;
    color:red;
    text-align:right;
    width: 400px;
    z-index:auto;
    float: right;
}
#flexBox {
    display: flex;
    flex-wrap: wrap;
    width: 100%; /* or any desired width */
    padding-top: 8px;
}
.theFormContent {
    padding-top: 6px;
    padding-bottom: 6px;
}
.inputLabel{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2px;
}
.flexContent {
    flex-basis: 50%; /* Each item takes 50% width */
    /* or you can use: flex: 0 0 50%; */
    text-align: right;
}
.nonFlexContent {
    width: 100%;
    text-align: right;
}
.flexTxtInputLeft {
    /*width: 200px;*/
    width: 100%;
    margin-right: 20px;
}
.flexTxtInputRight {
    /*width: 200px;*/
    width: 95%;
    margin-left: 20px;
}
#other{
    width: 99%;
    height: 60px;
    margin-top: 4px;
}
input[type="submit"] {
    background-color: white;
    border-radius: 5px;
    border: solid 1px gray;
    width: 90px;
    height: 20px;
    line-height: 14px;
    font-family: 'OpenSans', sans-serif;
    font-size: 9pt;
    font-weight: 300;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
    opacity: 1;
    color: #663333;
    text-align: center;
}
input[type="submit"]:hover {
    background-color: #f3f2eb;
}
