@charset "utf-8";
/* CSS Document */

/* Customize the nav-justified links to be fill the entire space of the .navbar */

.nav-justified {
 
}
.nav-justified > li > a {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0;
  color: #fff;
  text-align: center;
  background-color: #3f6ea6; /* Old browsers */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3f6ea6), to(#1b487f));
  background-image: -webkit-linear-gradient(top, #3f6ea6 0%, #1b487f 100%);
  background-image:  -o-linear-gradient(top, #3f6ea6 0%, #1b487f 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(top), color-stop(0%, #3f6ea6), to(#1b487f));
  background-image:   linear-gradient(top, #3f6ea6 0%, #1b487f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f6ea6', endColorstr='#1b487f',GradientType=0 ); /* IE6-9 */
  background-repeat: repeat-x; /* Repeat the gradient */
  border-bottom: none;
}
.nav-justified > .active > a,
.nav-justified > .active > a:hover,
.nav-justified > .active > a:focus {
  background-color: #7ba2d0;
  background-image: none;

}
#home > .nav-justified > .home > a{
  background-color: #000 !important;
}

.nav-justified > li:first-child > a {
  border-radius: 0px 0px 0 0;
}
.nav-justified > li:last-child > a {
  border-bottom: 0;
  border-radius: 0 0 0px 0px;
}

@media (min-width: 768px) {
  .nav-justified {
    max-height: 52px;
  }
  .nav-justified > li > a {
    border-right: 1px solid #d5d5d5;
    border-left: 1px solid #fff;
  }
  .nav-justified > li:first-child > a {
    border-left: 0;
    border-radius: 0px 0 0 0px;
  }
  .nav-justified > li:last-child > a {
    border-right: 0;
    border-radius: 0 0px 0px 0;
  }
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
  /* Remove the padding we set earlier */
  .masthead,
  .marketing,
  .footer {
    padding-right: 0;
    padding-left: 0;
  }
}