@charset "UTF-8";
.navigation {
  height: 60px;
  background: #ffffff;
}

.brand {
  position: absolute;
  padding-left: 0px;
  float: left;
  line-height: 30px;
  text-transform: uppercase;
  font-size: 20px;
}
.brand a,
.brand a:visited {
  color: #ffffff;
  text-decoration: none;
}

.nav-container {
  /*max-width: 1000px;*/
  margin: 0 auto;
}

nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 15px;
  line-height: 55px;
  border-right:1px solid #fff;
	border-bottom:1px solid #fff;
	border-left:1px solid #fff;
  background: skyblue;
  color: #3B3B3B;
  text-decoration: none;
}
nav ul li a:hover,
nav ul li a:visited:hover {
  background: gold; /* #E42217*/
  color: #3B3B3B;
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 15px;
}

.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 8;
  right: 0;
  background: #ffffff;
  height: 60px;
  width: 60px;
}

@media only screen and (max-width: 698px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 60px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 10px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }

  .nav-dropdown {
    position: static;
  }
}
@media screen and (min-width: 699px) {
  .nav-list {
    display: block !important;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #2B65EC;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
  background: linear-gradient(
    to bottom,
    #2B65EC, #2B65EC 20%,
    white 20%, white 40%,
    #2B65EC 40%, #2B65EC 60%,
    white 60%, white 80%,
    #2B65EC 80%, #2B65EC 100%)
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

article {
  margin: 0 auto;
  margin-left:-10px;
}

* {
box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 50%;
padding: 10px;
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 690px) {
.column {
width: 100%;
}
}
