﻿#PageContent h2 {
    color: #114996;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px; font-family: 'bold';
}


    .formContainer {text-align:center}
    .formContainer input {width:85%; padding: 10px; margin-bottom: 10px; border-radius:5px; border: 1px solid #ccc;font-family: regular;}
    .formContainer textarea {width:89%;border-radius:5px;border: 1px solid #ccc;font-family: regular; }
    .formContainer span {display:none; visibility:visible !important;position:relative;top:-5px;}
    .formContainer select { width: 90%; margin-top: 10px; padding: 10px; border: 1px solid #ccc;border-radius:5px; font-family: regular;}
    .formContainer input[type=checkbox] { /* float: right !important; */ text-align: right; width: 20px; }
    .formContainer .AgreementCheckBox { float: right; margin-bottom: 30px; margin-top: 15px; font-size:14px;margin-right:13px; }
    .formContainer select option { color: #000; padding: 5px !important; background-color:#fff;}
    .formContainer input[type=submit], #bWait { float: left; width: 150px; margin-left: 10px; background-color: #F26724; color: #fff; font-size: 18px; }
    .detailsUnderTitle {color:#565656;padding-right: 15px; padding-left: 15px;}
    .detailsUnderTitle a {color:#0A489B;}


/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-right: 25px;
  cursor: pointer;
  float:right;
  font-size:20px;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    right: 0;
    top: 3px;
    width: 17px;
    height: 17px;
    border: 1px solid #aaa;
    background: #f8f8f8;
    border-radius: 3px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
    content: '✔';
    position: absolute;
    top: 5px;
    right: 2px;
    font-size: 18px;
    line-height: 0.8;
    color: #F36A19;
    transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 1px dotted blue;
}

/* hover style just for information */
label:hover:before {
  border: 1px solid #4778d9!important;
}


select {
  -moz-appearance: none;
   -webkit-appearance: none;
   appearance: none;
       background-image: url(../../../000frames/site/images/select-arrow.png);
    background-repeat: no-repeat;
    background-size: 30px;
}