﻿body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif, serif;
    background-color: rgb(218, 222, 226);
}

span.largelabel {
    width: 600px;
    border-style: solid;
    border-width: 1px;
    padding: 5px 5px 5px 5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    display: inline-block;
}

span.largelabelnoborder {
    font-size: large;
    border-style: none;
    padding: 5px 5px 5px 5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    display: inline-block;
}

label.largelabelnoborder {
    font-size: 23pt;
    border-style: none;
    padding: 5px 5px 5px 5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    display: inline-block;
}

label.hiddenlabel {
    display: none;
}

span.vlargelabelnoborder {
    font-size: 20pt;
    border-style: none;
    padding: 5px 5px 5px 5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    display: inline-block;
}

input.displayxml {
    border: none;
    padding: 0px;
    width: 648px;
    height: 150px;
    display: inline-block;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

div.singlecontroldiv {
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0px;
    display: block;
    break-after: always;
}

div.simplefloatlabel {
    width: 100px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    float: left;
    padding-right: 10px;
}

span.errormessage {
    color: darkred;
}

/* Style inputs, select elements and textareas */
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
}

/* Style the label to display next to the inputs */
label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

/* Style the submit button */
input[type=submit]:disabled {
    font-size: 20pt;
    background-color: #b5d1b6;
    color: grey;
    padding: 10px 10px 10px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: left;
}

input[type=submit] {
    font-size: 20pt;
    background-color: #4CAF50;
    color: white;
    padding: 10px 10px 10px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: left;
}

/* Style the container */
.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

/* Floating column for labels: 25% width */
.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

.row {
    margin-top: 15px;
}

.buttonrow {
    margin-top: 15px;
    margin-right: 30px;
    float: left;
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Clear floats after the columns */
.rowafter {
    content: " ";
    display: table;
    clear: both;
}

.red{
    color: red;
    font-weight:bold;
}

.largeCheckbox input {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    } 
}



