@charset "UTF-8";
/********************************** LOGIN BOX ***********************************/
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
body {
  margin: 0;
}
#loginWrap {
  overflow: hidden;
  width: 252px;
  /*height: 374px;*/
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  -webkit-box-shadow: 0 0 10px #a9a9a9;
     -moz-box-shadow: 0 0 10px #a9a9a9;
          box-shadow: 0 0 10px #a9a9a9;
  margin: 5px;
}
#loginSection1 {
  /*max-height: 286px; *//*was 272 2020-04-09*/
  /*padding: 20px 15px;*/
  max-height: 287px;
padding: 13px 15px 20px 15px;
  background: rgba(22, 144, 200, 1); /*#1690c8*/
}
#loginSection2 {
  max-height: 102px;
  padding: 20px 15px 23px;
  background: rgba(0, 70, 119, 0.9); /*#004677*/
}
.loginTitle {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.loginTitle img {
  position: relative;
  bottom: -2px;
  width: 14px;
  margin-right: 5px;
}
.loginLinks a {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-decoration: underline;
}
select, input[type="text"], input[type="password"] {
  width: 100%;
  height: 28px;
  padding-left: 10px;
  border: none;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  margin-top: 12px;
  background: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
}
select {
  padding-left: 5px;
}
#select2 option:first-of-type {
  color: #aaa;
}

.submitBtn {
  display: block;
  width: 78px;
  padding: 6px 12px;
  border: 1px solid #ea7200;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  margin: 12px auto;
  background-color: #fff;
  color: #ea7200;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.submitBtn:hover {
  background-color: #ea7200;
  color: #fff;
}


@media only screen and (min-width: 1441px) {
#loginSection2 {
  padding: 20px 15px 23px;
}
}
@media only screen and (max-width: 1440px) {
#loginSection2 {
	padding: 7px 15px 11px;
}
}
@media only screen and (max-width: 992px) {
#loginSection2 {
  padding: 20px 15px 23px;
}
}
/*********************************** SPEEDBUMP **********************************/
.popupBG {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}
.extlinkContent {
  position: absolute;
  z-index: 10000;
  top: 30%;
  left: 37%;
  width: 30%;
  padding: 1%;
  border: 2px solid #999;
  background: #fff;
}
.extlinkContent p {
    word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  .extlinkContent {
    left: 0;
    width: 100%;
  }
}
.loginLinks {
    text-align: center;
}