@charset "UTF-8";
body {
  background: #ffffff;
  color: #555555;
  font-family: Arial, Sans-Serif;
  font-size: 100%;
  line-height: 1.4em;
}

/*** HEADER ***/
#header {
  width: 100%;
  min-height: 170px;
  position: relative;
}
#logo img {
  border: 0px;
  margin-top:15px;
  float: left;
}
#nav {
  position: absolute;
  bottom: 0; right: 0;
}
#nav h1 {
  float: right;
  margin-bottom: 40px;
}
#subnav {
  clear: right;
  position: absolute;
  bottom: 0; right: 0;
  margin-bottom: 10px;
  padding: 0px;
}
ul.subnav1 {                         /* this is the "welcome" part of the nav that lists user's name */
  float: right;
  font-size: .7em;
  font-weight: bold;
  color: #00467f;
  padding: 0px 3px 0px 0px;
  margin: 0px;
}
ul.subnav2 {                         /* this is the rest of the nav.  we split it up so we can show it on two lines sometimes */
  clear: right;
  float: right;
  font-size: .7em;
  font-weight: bold;
  color: #00467f;
  padding-left: 0px;
  margin: 0px;
}
ul.subnav1 a, ul.subnav2 a {
  text-decoration: none;
  color: #00467f;
}
ul.subnav1 li, ul.subnav2 li {
  display: inline;
  padding: 0px 5px 0px 7px;
}
ul.subnav2 li {
  border-left: 1px solid #00467f;
}

/*** CONTENT ***/
#content {
  background: #dddddd;
  background: url(../images/sitebackground1.jpg); background-repeat: no-repeat; background-position: center center; background-size: cover; background-attachment: fixed; height: 100%; overflow-x: hidden;
  padding: 20px 0px 20px 0px;
  border: 1px solid #333333;
  border-radius: 5px;

}
h1 {
  font-size: 1.5em;
  color: #333333;
  float: right;
}
h2 {
  font-size: 1.1em;
  color: #00467f;
  margin-bottom: 0px;
}
.tiny {
  font-size: .7em;
  font-weight: bold;
  text-decoration: none;
  color: #00467f;
}
#tasks {
  overflow: auto;
  text-align: center;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  
}
.task {
  background: #ffffff;
  border: 1px solid #333333;
  padding: 10px 20px 10px 20px;
  display: inline-block;
  margin: 10px;
  min-height: 200px;
  vertical-align:top ;
  border-radius: 5px;
}
.task ul {
  margin-left: auto;
  margin-right: auto;
}
.task ul li {
  text-align: left;
  width: auto;
  margin-left: -20px;
}
.task a {
  color: #555555;
  text-decoration: none;
}
.task a:hover {
  text-decoration: underline;
}
.next_links {
  color: #00467f;
  text-align: center;
  margin-bottom: 0px;
  border-top: 1px solid #555555;
  margin-top: 30px;
  padding-top: 5px;
}
.next_links a, .link, #print {
  font-size: .8em;
  font-weight: bold;
  text-decoration: none;
  color: #00467f;
}
#print img {
  border:none;
}
.next_links a:hover, .link:hover {
  text-decoration: underline;
}



/*** FORMS ***/
#form {
  margin-left: auto;
  margin-right: auto;
  padding: 10px 10px 5px 10px;
  border: 1px solid #333333;
  background: #ffffff;
  max-width: 1500px;
  border-radius: 5px;
}
#form.report {
  width:850px;
}
#form h2 {
  text-align: center;
}
#form.alternate {
  display:none;
}
label {
  float: left;
  color: #00467f;
  clear: left;
}
label.file { width:70px;}
.value {
  font-size: .8em;
  line-height: 1.5em;
  font-weight: bold;
  margin-left: 20px;
  margin-top: 2px;
}
.val_outdent {
  margin-left: 0px;
}
.error_message {
  font-size: .8em;
  color: #b6121b;
  font-weight: bold;
  font-style: italic;
}
input.error {
  background-color: #ffdddd;
  color: #000000;
}
select.error {
  background-color: #ffdddd;
  color: #000000;
}
textarea.error {
  background-color: #ffdddd;
  color: #000000;
}
.checkbox_block {
  margin-left: 50px;
}
.checkboxindent {
  margin-left: 30px;
}
.subhead {
  margin-left: 15px;
}

/*** REPORTS ***/

table.compact {
  border-collapse: collapse;
  float: left;
  width: 700px;
  margin-left: 0px;
}
table.report {
  border-collapse: collapse;
  float: left;
  width: 850px;
  margin-left: 0px;
}
table.report th {
  color: #00467f;
  padding:0;
  margin:0;
}
table.report th img {
  height:8px;
  width: 14px;
  border:none;
}
table.report th a {
  text-decoration:none;
}
table.report tr td {
  border: 1px solid #333333;
  padding: 3px;
  text-align: center;
  font-weight: normal;
}
table.report td.hard_right {
  border-right: 3px solid #333333;
}
table.report td.hard_left {
  border-left: 3px solid #333333;
}
table.inner_table {
  border:0;
  width:100%;
}
table.inner_table td {
  border:0;
}
#sidebar {
  float:right;
}
.popup_background {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index:1001;
  -moz-opacity: 0.8;
  opacity:.80;
  filter: alpha(opacity=80);
}
.popup_box_content {
  background: #ffffff;
  position: fixed;
  text-align: left;
  top: 25%;
  left: 30%;
  right: 30%;
  width: 40%;
  padding: 16px;
  z-index:1002;
  overflow: auto;
}


/*** FOOTER ***/
#footer {
  clear: both;
  width: 100%;
  margin-top: 10px;
  min-height: 30px;
  position: relative;
}


/* for reports */
.dt-buttons {position: relative; top: -8px;}
.actionaname {
    font-size: 12px;
    position: relative;
     top: -5px;
    right: 3px; 
}
.actionicon {
  width: 22px;
  height: 22px;
  position: relative;
  top: 2px;
  
}
button.dt-button, div.dt-button, a.dt-button {
  padding: 0.001em 0.65em;
}
.forreport {display: none;}
/* for screens smaller than a tablet  @media all and (max-width: 767px) { */
@media (max-width: 767px) {
  
  #content {
    background: #fff;
    padding: 0px 0px 0px 0px;
    border: 0px;
  }
  
  #logo img {                         /* don't float the logo */
    float: none;
    width: auto;
    height: auto;
  }
  #header {                           /* center the logo */
    text-align: center;
  }
  #nav {                              /* center the nav */
    position: relative;
    text-align: center;
  }
  #subnav {
    position: relative;
  }
  #nav h1 {
    float: none;
    margin-bottom: 0px;
  }
  ul.subnav1 {
    float: none;
    padding: 0px;
    margin: 0px 0px 5px 0px;
  }
  ul.subnav2 {
    float: none;
    padding: 0px;
    margin: 5px 0px 0px 0px;
  }
  ul.subnav2 li {                      /* turn off the left borders so that we can... */
    border-left: 0px;
  }
  ul.subnav2 li + li {
    border-left: 1px solid #00467f;    /* ...turn them back on for all but the first li */
  }

  input {
    float:left;
    clear: both;
  }
  select {
    float: left;
    clear: both;
  }
  p {
    float: left;
    clear: both;
    font-size: .8em;
  }
  ol li {
    float: left;
    clear: both;
    font-size: .8em;
  }
  .val {
    float: left;
    clear: both;
    margin-left: 20px;
    margin-top: 5px;
    width: 160px !important;
  }
  label {
    width: auto !important;
  }
  .val_no_indent {
    float: left;
    clear: both;
  }
  .val_inline {
    float: left;
  }
 
  .checkbox_block {
    width: 150px;
    margin-left: 25px;
  }
  .checkboxindent {
    margin-left: 0px;
  }
  .subhead {
    margin-left: 0px;
  }
  .error_message {
    float: left;
    clear: left;
    margin-left: 20px;
  }
  #form.alternate {
    display:block;
  }

  h3 {
    text-align: center;
  }
  h2 {
    font-size: .8em;
  }
  .task ul li {
    font-size: .8em;
  }
  .task {
    margin: 10px 0px 10px 0px;
  }
  p.next_links {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .expendable {
    display:none;
   }

  .value {
    font-size: .8em;
    font-weight: bold;
    margin-left: 20px;
    margin-top: 2px;
    clear: left;
  }
  #divforcoapplicant {clear: left; margin-top: 50px;}
  .creditorgroup {border-bottom: 1px solid #cccccc; padding-bottom: 60px; }


  .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: left;
  
}
#resultsApplicationTable_filter label {float: left !important; margin-bottom: 5px;}
#resultsContractsTable_filter label {float: left !important; margin-bottom: 5px;}



}

fieldset {border: 0px;}
legend {font-weight: bold; color: #00467f;}

.my_account #form, .login #form, .needhelp #form  {max-width: 600px;}
.my_account #form p {font-size: 0.86em;}
.my_account .success_message { color: #155724; font-weight: bold;}
.my_account .form-group {max-width: 180px; margin: 3px auto;}
.my_account .form-group input[type=password] {padding: 2px;}
.my_account #dealer-currentpassword, .my_account #new-pw, .my_account #confirm-new-pw {width: 170px;}
.login #username-login, .login #login-pw {width: 170px;}
#help_form #company_name , #help_form #email_address {width: 240px;}
#help_form #problem {width: 246px;}
#help_form #issue {width: 240px;}
.my_account .btn-block {width: 178px;}
.login .error_message {float: none !important;}

.my_account .passwordrequirements { max-width: 380px; margin: 0 auto; }
.my_account .error_span_message { padding: 0px; margin: 0px;}
.my_account #errorsheadline {color: black; display: block; margin-left: -40px; font-style: normal; }
.my_account .error_message .success_message {display: block; margin-left: 130px; color: green !important;}
.my_account label { width: 200px; }
@media (max-width: 767px) { .my_account #form {max-width: 250px;}}


#needhelp {text-align: right; font-size: 14px;}
#needhelp a {color: #00467f; margin-right: 20px;}


.needhelp label { width: 220px; }


@media (max-width: 767px) { .needhelp #form {max-width: 250px;} }  


.show-password-checkbox label {font-size: 12px;}
.show-password-checkbox .show-Passwords {position: relative; top: -20px; left: 70px;}

.report .odd {
  background: rgb(215,231,239);
  background: linear-gradient(120deg, rgba(215,231,239,0.8379726890756303) 0%, rgba(239,239,239,1) 100%);
}