body.background {
    background: #FFFFFF;
    margin: 0pt;
    text-align: left;
}

div.base {
    /* float: left; */
    /* background: #FFFFFF; */
    margin-bottom: 3px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    overflow: hidden;
    /* position: relative; */
    word-wrap: break-word;
    text-align: left;
    /* width: 100%; */
    width: 500px;
    border-radius: 5px;
}

div.base2 {
    /* float: left; */
    /* background: #FFFFFF; */
    margin-bottom: 3px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    overflow: hidden;
    /* position: relative; */
    word-wrap: break-word;
    text-align: left;
    /* width: 100%; */
    /* width: 500px; */
    flex-grow: 1;
    border-radius: 5px;
}

#main {
    /* width: 650px; */
    /* width: 100%; */
    /* margin: 0 auto; */
    margin-left: 15px !important;
    /* margin-top: 50px; */
    /* padding: 10px; */
    /* float: left; */
    vertical-align: top;
    /* border: 1px solid #CCC; */
    /* background-color: #EEE; */
    display: flex;
}

form fieldset { border: 0; }
form fieldset p br { clear: left; }

label {
    margin-top: 5px;
    display: block;
    /* width: 100px; */
    width: 100%;
    padding: 0;
    /* float: left; */
}
input {
    font-family: Trebuchet MS;
    border: 1px solid #CCC;
    margin-bottom: 5px;
    background-color: #FFF;
    padding: 2px;
    cursor: pointer;
}
input:hover {
    border: 1px solid #222;
    background-color: #EEE;
}

.subbody {
    display: table;
    width: 50%;
    padding: 10px;
    margin: 5px;
    border: 1px solid #CCC;
    border-radius: 15px;
    vertical-align: top;
}

div.buttonbox {
    clear: both;
    float: left;
    margin-left: 15px;
    padding: 0px;
}

/* ul.buttonbox { */
/*     list-style-type: none; */
/* } */

/* ul.buttonbox li { */
/*     display: inline-block; */
/* } */

/* .menu { */
/*     background: #EF1818; */
/*     margin:3px; */
/*     overflow: hidden; */
/*     position: relative; */
/*     word-wrap: break-word; */
/*     text-align: left; */
/*     border-radius: 5px; */
/*     padding: 3px; */
/* } */

/* .menu_drop_down { */
/*     list-style-type: none; */
/*     width:200px; */
/*     margin:0px 0px 0px 0px; */
/*     height:23px; */
/*     padding:0px 0px 0px 0px; */
/*     font-family:Arial, Helvetica, sans-serif; */
/*     font-size:15px; */
/*     border-radius: 5px; */
/*     background-color: #ffe58b; */
/*     border: 1px solid #002232; */
/*     box-shadow:inset 0px 0px 1px #edf9ff; */
/* } */

/* ul.menubar { */
/*     list-style-type: none; */
/*     font-family: Arial, Helvetica, sans-serif; */
/*     font-size: 16px; */
/*     margin: 0px; */
/*     padding-top: 0px; */
/*     padding-left: 16px; */
/* } */

/* ul.menubar li { */
/*     display: inline; */
/*     padding-right: 5px; */
/* } */

/* .gen_horizontal_list { */
/*     margin:0px; */
/*     overflow: hidden; */
/*     position: relative; */
/*     word-wrap: break-word; */
/*     text-align: left; */
/*     border-radius: 5px; */
/*     padding: 0px; */
/* } */

/* ul.gen_horizontal_ul { */
/*     list-style-type: none; */
/*     font-family: Arial, Helvetica, sans-serif; */
/*     font-size: 16px; */
/*     margin: 0px; */
/*     padding: 0px; */
/* } */

/* ul.gen_horizontal_ul li { */
/*     float: left; */
/*     display: inline; */
/*     padding-right: 45px; */
/* } */

/* form { */
/*     display: inline; */
/* } */

.generic_text {
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 10px;
}

/* #search_results { */
/*     font-family: Arial, Helvetica, sans-serif; */
/*     width:100%; */
/*     border-collapse:collapse; */
/* } */

/* #search_results td, #search_results th { */
/*     font-size:1em; */
/*     border:1px solid #999999; */
/*     padding:3px 7px 2px 7px; */
/* } */

/* #search_results th { */
/*     font-size:1.1em; */
/*     text-align:left; */
/*     padding-top:5px; */
/*     padding-bottom:4px; */
/*     background-color:#888888; */
/*     color:#ffffff; */
/* } */

/* #search_results tr.alt td { */
/*     color:#000000; */
/*     background-color:#dddddd; */
/* } */

/* [> The switch - the box around the slider <] */
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
    margin-left: 5px;
    margin-top: 0px;
}

/* [> Hide default HTML checkbox <] */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch:before,
.switch:after {
    content: "";
    display: table;
}

.switch:after {
    clear: both;
}

/* [> The slider <] */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
}

/* [> Rounded sliders <] */
.slider.round {
    border-radius: 17px;
}
.slider.round:before {
    border-radius: 50%;
}

.container {
    /* position: relative; */
    /* border: solid 1px #ff0000; */
    vertical-align: top;
}

.container:before,
.container:after {
    content: "";
    display: table;
}

.container:after {
    clear: both;
}

.fixed_container {
    /* position: relative; */
    /* border: solid 1px #ff0000; */
    word-wrap: break-word;
    margin-top: 0;
    margin-bottom: 15px;
    width: 400px;
}

.fixed_container:before,
.fixed_container:after {
    content: "";
    display: table;
}

.fixed_container:after {
    clear: both;
}

.data {
    /* border: solid 1px #ff0000; */
    /* padding-top: 0; */
    /* float: right; */
    padding-top: 5px;
    padding-left: 35px;
    padding-botton; 15px;
}

.data:before,
.data:after {
    content: "";
    display: table;
}

.data:after {
    clear: both;
}

.output_iframe {
    border: none;
    height: 900px;
    width: 650px;
    padding: 0px;
}

.button_div {
    /* border: solid 1px #ff0000; */
    float: left;
    padding-right: 5px;
}

.button_div:before,
.button_div:after {
    content: "";
    display: table;
}

.button_div:after {
    clear: both;
}

.output_iframe {
    border: none;
    height: 1050px;
    width: 700px;
    padding: 0px;
}

.fixed_text {
    font-family: Monaco, Courier;
    font-size: 0.75em;
}

.align_top {
    vertical-align: top;
}

.align_right {
    text-align: right;
}


h1 {
    text-align: center;
}

textarea {
    border:none;
    height: 950px;
    width: 650px;

}

td {
    /* border: solid 1px #00ff00; */
    vertical-align: top;
}

.small_text {
    padding-top: 5px;
    font-size: 0.75em;
}

div.x {
    float: left;
    padding: 15px;
}
div.y {
    float: left;
    padding: 15px;
}

.small_banners .banner_block {
    display: block;
    max-width: 100%;
    height: auto;
    width: 25%;
    float:left;
}
.small_banners {
    float: left;
    clear: both;
    width: 100%;
    margin: 0 0 15px;
}
.main2 .subbody2 {
    display: block;
    height: auto;
    float:left;
}
.main2 {
    float: left;
    clear: both;
    width: 100%;
    max-width: 100%;
    margin: 0 0 15px;
}


div.subbody2 {
    padding-right: 200px;
    border: 1px solid #CCC;
    border-radius: 15px;
    vertical-align: top;
}

@media (max-width: 958px) {
    .main2 .subbody2 {
        width:50%;
    }
    .small_banners .banner_block {
        width:50%;
    }
}

#options {
max-width: 500px;
}

/* #result_div { */
/*     height: 900px; */
/*     width: 650px; */
/* } */
