/* Version 3, Seymour Johnson */

/* #region Standard elements */
body
{
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

main
{
  margin-top: 72px;
  background-color: #ffffff;
  padding-top: 20px;
}

input, select, textarea, input[type=text], input[type=password]
{
  font-family: 'Open Sans', sans-serif;
  border-radius: 1px;
}

h1, h2, h3
{
  font-family: 'Lato', sans-serif;
}

.formContainer h1
{
  color: #00519b;
}

input[type=submit], a.linkButton, label.linkButton
{
  background-color: #00519b;
  border-radius: 1px;
}

  input[type=submit]:hover, a.linkButton:hover, label.linkButton:hover
  {
    background-color: #001E68;
    cursor: pointer;
  }

a.colorLink
{
  color: #001E68;
  text-decoration: none;
}

.small
{
  font-size: 80%;
  font-weight: 400;
}

.text-muted
{
  color: #868e96 !important;
}

/* #endregion */

/* #region CustomInputs */

label i.cb-checked
{
  border: 2px solid #001E68;
  background-color: #001E68;
}

  label i.cb-checked:after
  {
    background-color: #001E68;
  }

label i.rb-selected
{
  border: 2px solid #001E68;
  background-color: #001E68;
}

  label i.rb-selected:after
  {
    background-color: #001E68;
  }

/* #endregion */


/* #region Header */
header *
{
  -webkit-transition: background-color 0.50s ease-in-out, margin 0.50s ease-in-out, max-width 0.50s ease-in-out;
  -moz-transition: background-color 0.50s ease-in-out, margin 0.50s ease-in-out, max-width 0.50s ease-in-out;
  -o-transition: background-color 0.50s ease-in-out, margin 0.50s ease-in-out, max-width 0.50s ease-in-out;
  transition: background-color 0.50s ease-in-out, margin 0.50s ease-in-out, max-width 0.50s ease-in-out;
}

header .wrapper
{
  max-width: 1500px;
}

header, #HomePage header.fixed
{
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  overflow: visible;
  z-index: 9999;
  height: 61px;
  box-shadow: 1px 0 3px 2px rgba(0,0,0,0.1);
}

#HomePage header
{
  height: 111px;
}

#HomePage nav
{
  line-height: 24px;
  padding-top: 40.5px;
  padding-bottom: 40.5px;
}

#HomePage header.fixed nav
{
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}




#HomePage #boardLogo
{
  max-width: 200px;
}

#boardLogo, #HomePage header.fixed #boardLogo
{
  display: inline-block;
  float: left;
  padding: 10px;
  margin-left: 40px;
  max-width: 140px;
}

.accountInfo
{
  display: inline-block;
  color: #00519b;
  margin: 2px;
  font-size: 14px;
  margin-right: 10px;
  line-height: 30px;
  height: 30px;
}

  .accountInfo a
  {
    background-color: #001E68;
    border-radius: 1px;
    padding: 0 8px;
    margin: 0;
    line-height: 26px;
  }

    .accountInfo a:hover
    {
      background-color: #001E68;
    }

    .accountInfo a:first-of-type
    {
      display: none;
    }
/* #endregion */

/* #region Menu */
nav
{
  display: inline-block;
  width: auto;
  background-color: transparent;
  clear: right;
  margin-top: 0;
  padding-top: 15.5px;
  padding-bottom: 15.5px;
}

  nav, nav ul, nav li, nav a, nav span
  {
    color: #00519b;
  }

    nav a:hover
    {
      color: #001E68;
    }

    nav span, nav a
    {
      font-size: 19px;
      white-space: nowrap;
      line-height: 26px;
    }

    nav ul ul a
    {
      font-size: 15px;
      line-height: 28px;
    }

    nav > ul > li
    {
      padding: 4px 4px 4px 16px;
    }

      nav > ul > li:hover, nav > ul a:hover
      {
        background-color: transparent;
      }

      nav > ul > li > a, nav > ul > li > span
      {
        padding: 2px 10px;
      }

    nav ul li > ul
    {
      display: inline-block;
      position: absolute;
      left: 0;
      top: 100%;
      z-index: 1;
      padding: 8px 16px;
      background-color: #f8f8f8;
      overflow: hidden;
      opacity: 0;
      max-height: 0px;
      box-shadow: 0 6px 21px -5px #000000;
      transition: max-height .1s ease, opacity .1s ease;
    }

    nav ul li:hover > ul
    {
      max-height: 800px;
      opacity: 1;
      transition: max-height .5s ease, opacity .7s ease;
    }

/* #endregion */

/* #region Footer */
footer
{
  background-color: #00519b;
  color: #ffffff;
}

  footer a:hover
  {
    color: #e6e63e;
  }

  footer .footerHeader
  {
    color: #d2d2d2;
    font-weight: bold;
    padding-top: 20px;
  }

  footer .subfooter
  {
    margin-top: 20px;
    text-align: left;
  }

    footer .subfooter a
    {
      text-decoration: none;
      text-transform: uppercase;
    }

  footer .links
  {
    text-align: left;
    width: 100%;
  }

  footer ul
  {
    margin: 0.75em -1em;
    padding: 0 1em;
    list-style: none;
  }

  footer li
  {
    line-height: 1.5em;
  }

  footer .social
  {
    text-align: right;
    display: block;
    padding-top: 10px;
    margin-top: 25%;
  }

    footer .social p
    {
      margin-top: 0;
    }

    footer .social .fa
    {
      border-radius: 50%;
      border: 1px solid #ffffff;
      background: none;
      font-size: 20px;
      height: 40px;
      width: 40px;
      line-height: 38px;
    }

    footer .social .x-twitterIcon
    {
      height: 40px;
      width: 40px;
      border-radius: 50%;
      border: 1px solid #ffffff;
      margin: 0 0 5px 0;
      background-color: transparent;
    }

      footer .fa:hover, footer .social .x-twitterIcon:hover
      {
        border: none;
      }

  footer .fa-facebook:hover
  {
    background-color: #3b5998;
  }

  footer .fa-twitter:hover
  {
    background-color: #00aced;
  }

  footer .social .x-twitterIcon:hover
  {
    background-color: #222222;
  }

  footer .fa-linkedin:hover
  {
    background-color: #007bb6;
  }

  footer .fa-youtube:hover
  {
    background-color: #971e1e;
  }

  footer .fa-instagram:hover
  {
    background-image: url("https://siteresource.blob.core.windows.net/assets/prod/ntqb/Instagram3-Background-Gradient3.png");
  }

  footer .address
  {
    width: 100%;
  }

    footer .address img
    {
      text-align: left;
      max-width: 175px;
      margin-top: -9px;
    }

  footer .termsPriv
  {
    text-align: right;
  }

  footer p
  {
    white-space: normal;
  }
/* #endregion */


/* #region Home Page customizations*/
.homeContainer
{
  background-color: #ffffff;
}

  .homeContainer .wrapper
  {
    z-index: 999;
    text-align: center;
  }

  .homeContainer h1, .homeContainer h2
  {
    text-shadow: 1px 1px 3px #000;
  }

.homeJS
{
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://siteresource.blob.core.windows.net/assets/prod/ntqb/job-fair.jpg') no-repeat;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://siteresource.blob.core.windows.net/assets/prod/ntqb/job-fair.jpg') no-repeat;
  background: -moz-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://siteresource.blob.core.windows.net/assets/prod/ntqb/job-fair.jpg') no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://siteresource.blob.core.windows.net/assets/prod/ntqb/job-fair.jpg') no-repeat;
  background-position: center 30%;
  background-size: cover;
  padding-top: 10px;
  margin-top: 72px;
  height: 100%;
}

  .homeJS h1
  {
    margin-top: 125px;
    font-size: 300%;
  }

  .homeJS h2
  {
    margin: 40px 60px;
  }

  .homeJS *
  {
    -webkit-transition: opacity 0s !important;
    -moz-transition: opacity 0s !important;
    -o-transition: opacity 0s !important;
    transition: opacity 0s !important;
  }

.homeCTA
{
  background-color: #bab4b4;
  color: #ffffff;
  padding: 5px 20px;
}

  .homeCTA h3
  {
    display: inline-block;
  }

  .homeCTA .homeButtons
  {
    padding-top: 49px;
  }

    .homeCTA .homeButtons a
    {
      margin-left: 20px;
      margin-top: -10px;
    }

.homeMap
{
  padding: 0;
  height: 500px;
}

.homeFeatured
{
  background-color: #ffffff;
}

.featuredJob
{
  border-radius: 3px;
}

  .featuredJob:hover
  {
    border: 1px solid #001E68;
    background-color: none;
    -webkit-box-shadow: inset 0px 0px 10px 0px #001E68;
    -moz-box-shadow: inset 0px 0px 10px 0px #001E68;
    box-shadow: inset 0px 0px 10px 0px #001E68;
    transition: box-shadow 0.20s ease-in-out;
  }

.featuredEmployers
{
  width: calc(100% - 40px);
}

.homeButtons
{
  display: inline-block;
  background-color: transparent;
  width: 100%;
}

  .homeButtons input[type=text], .homeButtons input[type=submit], .homeButtons a
  {
    vertical-align: middle;
    border: none;
  }

  .homeButtons input[type=submit], .homeButtons a
  {
    background-color: #00519b;
    border-radius: 1px;
    padding: 10px 20px;
  }

    .homeButtons input[type=submit]:hover, .homeButtons a:hover
    {
      background-color: #001E68;
    }
/* #endregion */

/* #region #JobSearch Page customizations*/

#JobSearch #jobList .premium
{
  border-left-color: #00519b;
}

#JobSearch #jobList .listRow .title
{
  color: #001E68;
}

#JobSearch #jobList .listRow
{
  width: 100%;
}

  #JobSearch #jobList .listRow .logo
  {
    display: inline-block;
    float: none;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }

    #JobSearch #jobList .listRow .logo img
    {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

  #JobSearch #jobList .listRow .abstract
  {
    width: calc(100% - 200px);
    padding-right: 10px;
  }

#JobSearch #jobList .socialContainer
{
  display: block;
  width: 35%;
}

#JobSearch #jobSearch
{
  width: 100%;
  display: inline-block;
  background-color: #efeeee;
  border: 1px solid #aaaaaa;
  padding: 20px;
}

label i.cb-unchecked
{
  border: 2px solid #aaaaaa;
}

#JobSearch #locationRadius
{
  clear: left;
}

#JobSearch #lbtnSaveAlert
{
  background-color: transparent;
  border: 2px solid #00519b;
  color: #00519b;
  display: inline-block;
  line-height: 28px;
  outline: 0;
  padding: 0 14px;
  vertical-align: middle;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 15px;
  margin-top: -2px;
}

  #JobSearch #lbtnSaveAlert:hover
  {
    background-color: #001E68;
    border: 2px solid #001E68;
    color: #ffffff;
  }

#jobList a, #jobList a:link, #jobList a:visited, #Job a, #Job a:link, #Job a:visited
{
  color: #001E68;
}

  #jobList a:hover, Job a:hover
  {
    color: #001E68;
  }

/* #endregion */

/* #region Non-Home Page customizations*/


.fa-bell-o, .fa-user-o, .fa-file-text-o
{
  font-size: 50px;
  background-color: none;
  color: #666666;
}

.dashBadge .fa
{
  color: #001E68;
}

#JobSeeker #salary, #JobSeeker #salaryPeriod
{
  display: none;
}

#Job #fixedBtns
{
  position: fixed;
  top: 75px;
  background-color: #ffffff;
}

#Job #relativeBtns
{
  position: relative;
  top: 0;
  background-color: transparent;
}

input#btnPostOptions:disabled
{
  background-image: none;
  background: #cccccc;
}

.slick-track
{
  margin: 0 auto;
}

#Purchase .listColumn
{
  padding: 12px 6px;
}

#EmployerDefaults #htmlJobDescription
{
  display: none;
}

#Employer #lblFreePostingDays, #EmployerDefaults #lblFreePostingDays
{
  font-size: 80%;
  vertical-align: middle;
}

.contentBlock p, .contentBlock ul li
{
  font-size: 14px;
}

.contentBlock p
{
  margin-top: 5px;
  margin-bottom: 5px;
}

.contentBlock ul
{
  margin-top: 0;
}

.contentBlock #cbMore ~ label:after
{
  content: "[ + ] Show More";
}

.contentBlock #cbMore:checked ~ label:after
{
  content: "[ - ] Show Less";
}
/* #endregion */

/* #region FAQ pages */
#faqJS h1, #faqEmp h1
{
  padding-bottom: 20px;
}

#faqJS .container:nth-of-type(1), #faqEmp .container:nth-of-type(1)
{
  padding: 20px;
  text-align: left;
  min-height: 580px;
}

#faqJS .topic, #faqEmp .topic
{
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dddddd;
  position: relative;
}

  #faqJS .topic .question, #faqEmp .topic .question
  {
    font-size: 120%;
    cursor: pointer;
    padding-left: 25px;
  }

  #faqJS .topic .reveal, #faqEmp .topic .reveal
  {
    display: none;
  }

  #faqJS .topic .details, #faqEmp .topic .details
  {
    display: none;
  }

.marginL20-10
{
  margin-left: 10px;
}

.marginL30-20
{
  margin-left: 20px;
}

.marginL10-5
{
  margin-left: 5px;
}

i.arrow
{
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  left: 5px;
  top: 14px;
}

  i.arrow.up
  {
    top: 19px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
/* #endregion */

/* #region NON Billing */

#BoardSettings #currencyFormat, #BoardSettings #invoiceLogoUrl, #EmailSettings #lblEmployerNotifications, #EmailSettings #employerPurchase, #EmployerDefaults #invoiceTerms, #EmployerDefaults #invoicing
{
  display: none;
}

#Employers #credits, #employerList #available, #employerList #balance, a#lnkPurchase, #btnPurchase, #Employer #invoicing
{
  display: none;
}

.dashBadge:nth-of-type(5) a.dashLink, .dashBadge:nth-of-type(5) .badgeHeading, .dashBadge:nth-of-type(5) .badgeColumn1, .dashBadge:nth-of-type(5) .badgeColumn2
{
  display: none;
}

#Job .modalInner .contentBlock p
{
  display: none;
}

/* #endregion */

/*#region Register and Login Page*/

.contentContainer
{
  max-width: 1920px;
  position: relative;
  min-height: 750px;
}

#RegisterAccount
{
  position: relative;
  min-height: 610px;
}

  #RegisterAccount #btnAccountSave, #RegisterAccount #tbEmailAddress, #Login #tbPassword, #Login input[type=text]
  {
    width: 482px;
  }

  #RegisterAccount h1
  {
    text-align: left;
  }

  #RegisterAccount .contentBlock
  {
    padding: 16px;
    width: 45%;
    float: right;
  }

  #RegisterAccount input[type=text], #RegisterAccount input[type=password], #RegisterAccount textarea, #RegisterAccount select
  {
    padding: 8px;
    float: left;
    width: 228px;
  }

#Login
{
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  min-height: 750px;
  padding: 0 30%;
}

  #Login #loginContainer
  {
    width: 100%;
    float: inherit;
    background: #ffffff;
    padding: 0 35px 35px 35px;
    margin-top: 50px;
    box-shadow: 0 0 21px -5px #000000;
  }

  #Login h1
  {
    padding-top: 35px;
    text-align: center;
  }

#lbtnForgotPassword
{
  text-decoration: none;
  text-align: right;
}

.divSignUpButton
{
  position: absolute;
  bottom: 10px;
  width: 100%;
}

a.signupButton
{
  background-color: #00519b;
  color: #ffffff;
  margin: 4px 8px 4px 8px;
  display: inline-block;
  padding: 4px 26px 7px 27px;
  border-radius: 6px;
  -webkit-appearance: none;
  border: none;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 0 14px -5px #000000;
}

  a.signupButton:hover
  {
    background-color: #001E68;
  }


#RegisterEmployer #dateFormat, #RegisterEmployer #timeZone, #RegisterContact #timeZone, #PostAccount #timeZone, #PostAccount #dateFormat
{
  display: none;
}

#registerSeekerContainer .formButtonContainer, #registerSeekerContainer h2,
#registerEmployerContainer .formButtonContainer, #registerEmployerContainer h2
{
  display: none;
}

#Login #noAccount
{
  margin-top: 14%;
  border-top: 1px #cfcfcf solid;
  text-align: center;
}

#Login #registerSeekerContainer, #Login #registerEmployerContainer
{
  width: 48%;
  margin-top: 10px;
  /*border-top: 1px #cfcfcf solid;*/
  display: inline-block;
}

  #Login #registerSeekerContainer .contentBlock, #Login #registerEmployerContainer .contentBlock
  {
    min-height: 85px;
  }

  #Login #registerSeekerContainer p, #Login #registerEmployerContainer p
  {
    text-align: center;
    padding-top: 5%;
  }

#Login .formItemContainer
{
  padding: 0 0;
  min-height: inherit;
  margin: 2px 0 2px 0;
}

#LoginForgot
{
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  height: 750px;
  padding: 0 30%;
}

  #LoginForgot h1
  {
    padding-top: 75px;
    text-align: center;
  }

  #LoginForgot #btnSendReset
  {
    width: 468px;
  }

  #LoginForgot #btnCancel
  {
    display: none;
  }

  #LoginForgot input#tbResetEmailAddress
  {
    width: 500px;
  }

/*#endregion*/

/*#region #RegisterEmployer */
#RegisterEmployer
{
  min-height: 750px;
}

  #RegisterEmployer .contentBlock
  {
    width: 45%;
    float: right;
    padding: 16px;
  }

  #RegisterEmployer #timeZone, #RegisterEmployer #dateFormat, #RegisterEmployer div#phone, #RegisterEmployer div#mobile, #RegisterEmployer #website, #RegisterEmployer #fieldEmployer1
  {
    display: none;
  }

  #RegisterEmployer #tbName, #RegisterEmployer #tbEmailAddress, #RegisterEmployer #btnSave, #RegisterEmployer #tbEmailAddress, #Login #btnLogin
  {
    width: 527px;
  }

  #RegisterEmployer .namePart, #RegisterEmployer .password, #RegisterEmployer .city, #RegisterEmployer .address
  {
    width: 251px;
  }

  #RegisterEmployer select#ddlState
  {
    height: 38px;
    margin: 0;
    width: 170px;
  }

  #RegisterEmployer #state
  {
    margin-right: 12px;
  }


  #RegisterEmployer .zipCode
  {
    width: 70px;
  }

  #RegisterEmployer div#field1
  {
    min-height: inherit;
    letter-spacing: .4px;
  }

/*#endregion*/

/* #region Media Queries */
@media only screen and (max-width: 1044px)
{
  main
  {
    padding-top: 0;
  }

  #boardLogo
  {
    max-width: 110px;
  }

  nav span, nav a
  {
    font-size: 16px;
  }

  nav > ul > li > a, nav > ul > li > span
  {
    padding: 2px 6px;
  }

  footer .footerHeader
  {
    padding-top: 0;
  }

  footer .social
  {
    margin-top: auto;
    text-align: center;
  }

  #Login
  {
    padding: 0 25%;
  }

  #RegisterEmployer .contentBlock, #RegisterAccount .contentBlock
  {
    width: 100%;
  }

  .homeJS h1
  {
    margin: 20px 0;
  }
}

@media only screen and (max-width: 920px)
{
  #boardLogo
  {
    max-width: 280px;
  }

  nav span, nav a
  {
    font-size: 15px;
  }

  nav > ul > li > a, nav > ul > li > span
  {
    padding: 2px 5px;
  }

  #JobSearch #jobList .socialContainer
  {
    width: 50%;
  }
}

@media only screen and (max-width: 767px)
{
  header, #HomePage header, #HomePage header.fixed
  {
    position: relative;
    background-color: #ffffff;
    overflow: visible;
    z-index: 9999;
    height: auto;
  }

    header .accountInfo
    {
      display: none;
    }

    header #HomePage #boardLogo
    {
      display: none;
    }

    #boardLogo, #HomePage #boardLogo, #HomePage header.fixed #boardLogo
    {
      max-width: 125px;
      padding: 10px 10px;
      margin-top: 0;
      margin-left: 10px;
      float: none;
    }

  .homeJS #boardLogo
  {
    display: block;
    min-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .menuButton
  {
    top: 20px;
    right: 20px;
  }

    .menuButton span
    {
      background-color: #001E68;
    }

  nav
  {
    margin-top: 0;
    float: none;
    clear: left;
    position: static;
  }

    nav ul li:hover > ul
    {
      padding: 0;
      background-color: #f8f8f8;
      border-top: 1px solid #505050;
    }

    nav li a, nav li span
    {
      border-bottom: 1px solid #505050;
    }

    nav > ul > li > a, nav > ul > li > span
    {
      padding: 6px 12px;
    }

    nav ul ul > li > a, nav ul ul > li > span
    {
      padding: 6px 10px 6px 30px;
    }

    nav > ul > li:first-child > a, nav > ul > li:first-child > span
    {
      border-top: 1px solid #505050;
    }

    nav ul li
    {
      padding: 0;
    }

    nav > ul > li:last-child a
    {
      border: none;
    }

    /* Test animation */
    nav li
    {
      overflow: hidden;
    }

      nav li:hover
      {
        overflow: visible;
      }

  .menuShow ul ul
  {
    display: block;
    overflow: hidden;
    max-height: 0px;
    opacity: 0;
    transition: max-height .1s ease, opacity .1s ease;
  }

  .menuShow ul li:hover > ul
  {
    max-height: 800px;
    opacity: 1;
    transition: max-height 1s ease, opacity 1s ease;
  }

  main
  {
    margin: 0;
  }


  footer .links
  {
    margin: auto;
    text-align: left;
  }

  footer .address, footer .termsPriv
  {
    text-align: center;
  }

  footer .address
  {
    margin-top: 10px;
    white-space: normal;
  }

  .homeJS
  {
    margin-top: 0;
  }

    .homeJS h1
    {
      font-size: 400%;
    }

    .homeJS h2
    {
      margin: 10px;
    }

  .homeButtons
  {
    width: 90%;
  }

    .homeButtons input[type=text], .homeButtons input[type=submit], .homeButtons a
    {
      width: 100%;
      margin: 4px auto;
    }

  .bottomButtons
  {
    text-align: center;
  }

  .homeMap
  {
    padding: 0 10px;
  }

  #Login
  {
    padding: 20px;
  }

    #Login #loginContainer
    {
      margin-top: 0;
    }

    #Login #noAccount
    {
      margin-top: 8%;
    }

    #Login #registerSeekerContainer, #Login #registerEmployerContainer
    {
      margin-top: 0;
    }

  #JobSearch #jobList .listRow .logo
  {
    margin: 10px 0;
    display: block;
    position: relative;
  }

    #JobSearch #jobList .listRow .logo img
    {
      position: relative;
      top: 0;
      left: 0;
      transform: none;
    }

  #JobSearch #jobList .listRow .abstract
  {
    width: auto;
    padding-right: 0;
  }

  #JobSearch #jobList .socialContainer
  {
    width: auto;
  }

  #Job #fixedBtns
  {
    top: 0;
    z-index: 999;
  }

  .customFields tbody tr td
  {
    display: block;
  }

  #faqJS .topic .question, #faqEmp .topic .question
  {
    font-size: 100%;
  }

  #faqJS .topic .details, #faqEmp .topic .details
  {
    font-size: 90%;
  }

  .marginL20-10
  {
    margin-left: 10px;
  }

  .marginL30-20
  {
    margin-left: 20px;
  }

  .marginL10-5
  {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 548px)
{
  #RegisterAccount #btnAccountSave, #RegisterAccount #tbEmailAddress, #Login #tbPassword, #Login input[type=text], #RegisterEmployer #tbName, #RegisterEmployer #tbEmailAddress, #RegisterEmployer #btnSave, #RegisterEmployer #tbEmailAddress, #Login #btnLogin
  {
    width: 382px;
  }

  #RegisterAccount input[type=text], #RegisterAccount input[type=password], #RegisterAccount textarea, #RegisterAccount select, #RegisterEmployer .namePart, #RegisterEmployer .password, #RegisterEmployer .city, #RegisterEmployer .address
  {
    width: 178px;
  }

  #Login #registerSeekerContainer, #Login #registerEmployerContainer
  {
    width: 100%;
    display: block;
  }

  #Login #registerEmployerContainer
  {
    border-top: none;
    margin-top: 5px;
  }

    #registerEmployerContainer h2, #registerEmployerContainer .contentBlock, #Login #registerEmployerContainer p
    {
      padding-top: 0;
    }

  .homeJS h1
  {
    font-size: 300%;
  }

  .homeJS h2
  {
    font-size: 160%;
    margin: 0;
  }

  .homeButtons
  {
    margin: 0;
  }
}

@media only screen and (max-width: 480px)
{
  #boardLogo
  {
    width: 240px;
    max-width: calc(94% - 36px);
    padding: 18px 10px;
    float: none;
  }

  #RegisterAccount input[type=text], #RegisterAccount input[type=password], #RegisterAccount textarea, #RegisterAccount select, #RegisterEmployer .namePart, #RegisterEmployer .password, #RegisterEmployer .city, #RegisterEmployer .address
  {
    width: 382px;
  }

  #RegisterEmployer #state
  {
    margin-right: 25px;
  }

  #RegisterEmployer select#ddlState, #RegisterEmployer .zipCode
  {
    width: 147px;
  }

  #RegisterEmployer #zipCode
  {
    margin-right: 0;
  }
}
/* #endregion */
