
/* LINK STYLES */

a.linkColor:link
{color:#ffffff; text-decoration: none;}

a.linkColor:visited
{color:#ffffff; text-decoration: none;}

a.linkColor:hover
{color:#8e006e; text-decoration: none;}

a.linkColor:active
{color:#e00070; text-decoration: none;}



/* DIV STYLES */

#fixed-menu
{
    position: fixed;
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    padding: 0px;
}

.spacer
{
    width: 100%;
    height:136px;
}

#content
{
    width: 100%;
    background-color: #ffffff;
    padding: 0px;
}

div.text
{
   margin: auto;
   text-align: justify;
   width: 86%;
}

div.textNotJustify
{
   margin: auto;
   text-align: left;
   width: 86%;
}

div.footer
{
   position: fixed;
   height: 120px;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #989898;
   color: white;
   text-align: center;
}

div.clear {
   width: 86%;
   margin: auto;
   clear: left;
   text-align: left;
   background-color: #ffffff;
   padding: 16px 0px 0px 0px;
}


/* TEXT */

p
{font-size: 13pt; line-height:130%; font-family: Work Sans, Verdana, sans-serif; color:#000000;}

p.header
{font-size: 16pt; font-family: Arial, Trebuchet, sans-serif; color:#007aa3;}

p.white
{font-size: 10pt; line-height:100%; font-family: Verdana, Trebuchet, sans-serif; color:#ffffff;}

p.whiteWS
{font-size: 10pt; line-height:120%; font-family: Work Sans, Verdana, sans-serif;  color:#ffffff;}


/* TEMPORARY CHANGES TO TEXT */

span.p
{font-size: 13pt; line-height:130%; font-family: Work Sans, Verdana, sans-serif; color:#000000;}

span.header
{font-size: 16pt; font-family: Arial, Trebuchet, sans-serif; color:#007aa3;}

span.accordionHeader
{font-size: 13pt; font-family: Verdana, Trebuchet, sans-serif; color:#007aa3;}

span.accordionEmphasis
{font-size: 11pt; font-style: italic; line-height:130%; font-family: Verdana, sans-serif; color:#101010;}

span.paymentEmphasis
{font-size: 12pt; line-height:130%; font-family: Verdana, sans-serif; color:#101010;}

span.small
{font-size: 11pt; font-family: Work Sans, Verdana, sans-serif; color:#101010; align:left;}

span.smallpayment
{font-size: 10pt; font-family: Verdana, Trebuchet, sans-serif; color:#101010; align:left;}


/* REMOVE LOGO FOR NARROW SCREENS */

@media (max-width:500px) {
  img#logo {
    display: none;
  }
}


/* MENU STYLE */

body {
  margin: 0;
  font-family: Arial, Trebuchet, sans-serif;
}

.mainmenu {
  overflow: hidden;
  background-color: #007aa3;
}

.mainmenu a {
  float: left;
  display: block;
  color: #ffffff;
  text-align: center;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 17px;
}

.mainmenu a:hover {
  background-color: #dfdfdf;
  color: black;
}

.mainmenu a.active {
  background-color: #007aa3;
  color: white;
}

.mainmenu .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .mainmenu a:not(:first-child) {display: none;}
  .mainmenu a:first-child {display: none;}
  .mainmenu a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .mainmenu.responsive {position: relative;}
  .mainmenu.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .mainmenu.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}


/* ACCORDION STYLE */

   .accordion {
     background-color: #eee;
     color: #444;
     cursor: pointer;
     padding: 10px;
     width: 100%;
     border: none;
     text-align: left;
     outline: none;
     font-size: 17px;
     transition: 0.4s;
   }

   .active, .accordion:hover {
     background-color: #ccc;
   }

   .accordion:after {
     content: '\002B';
     color: #777;
     font-weight: bold;
     float: right;
     margin-left: 5px;
   }

   .active:after {
     content: "\2212";
   }

   .panel {
     padding: 0 0px;
     background-color: white;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.2s ease-out;
   }



@media screen and (max-width: 600px) {
    footer {
        visibility: hidden;
        display: none;
    }
}