* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  line-height: 22px;
  color: #555;
}

body {
  margin: 0;
  padding: 0;
  background: #EBEBEB;
}
@media (max-width: 640px) {
  body {
    padding-top: 100px;
    background: #fff;
  }
}

h1, h2, h3, h4, h5 {
  font-family: "Merriweather", serif;
  font-weight: 400;
}

h1 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 38px;
  color: #004fa3;
}
@media (max-width: 640px) {
  h1 {
    font-size: 27px;
    line-height: 33px;
    text-align: center;
  }
}

h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 26px;
  color: #004fa3;
}
@media (max-width: 640px) {
  h2 {
    font-size: 20px;
    line-height: 26px;
  }
}

h3 {
  margin: 0 0 5px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #004fa3;
}

h4 {
  margin: 0 0 3px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
  color: #004fa3;
}

p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #004fa3;
  text-decoration: none;
  transition: color 200ms ease;
}
a:hover {
  color: #669;
  text-decoration: underline;
}
a.current {
  color: #f3cf1e;
}

.full-wdith {
  width: 100%;
}

main {
  margin: auto;
  width: 100%;
  max-width: 820px;
  background: #fff;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 820px) {
  main {
    border-right: 0;
    border-left: 0;
  }
}

main header {
  width: 100%;
}
@media (max-width: 640px) {
  main header {
    position: fixed;
    top: 0;
    background: #fff;
  }
}
main header .main-logo {
  float: left;
  margin: 25px 0 25px 30px;
}
@media (max-width: 640px) {
  main header .main-logo {
    margin: 20px 0 20px 20px;
  }
}
main header .main-logo img {
  display: block;
  width: 200px;
}
main header .main-logo {
  /*
  @include breakpoint(between) {
  	display: block;
  	float: none;
  	margin: auto;
  	width: 60%;
  	};

  img {
  	@include breakpoint(between) {
  		width: 100%;
  		height: auto;
  		};
  	}
  */
}
main header #nav-wrapper {
  margin: 20px 0 0;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  clear: both;
}
@media (max-width: 640px) {
  main header #nav-wrapper {
    margin-bottom: 4px;
    height: 6px;
    background: #004fa3;
    border: 0;
  }
}
main header #nav-wrapper nav#primary-menu {
  margin: 1px 0;
  background: #004fa3;
}
@media (max-width: 640px) {
  main header #nav-wrapper nav#primary-menu {
    display: none;
  }
}
main header #nav-wrapper nav#primary-menu ul, main header #nav-wrapper nav#primary-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #004fa3;
  overflow: visible;
}
main header #nav-wrapper nav#primary-menu li {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
main header #nav-wrapper nav#primary-menu > ul > li:hover .submenu {
  display: block;
  opacity: 1;
}
main header #nav-wrapper nav#primary-menu a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 30px;
  border-right: 1px solid #fff;
  font-size: 12px;
  color: #fff;
}
main header #nav-wrapper nav#primary-menu a:hover {
  background: rgb(0, 103.717791411, 214);
}
@media (max-width: 820px) {
  main header #nav-wrapper nav#primary-menu a {
    padding: 0 20px;
    height: 44px;
    line-height: 44px;
  }
}
@media (max-width: 640px) {
  main header #nav-wrapper nav#primary-menu a {
    padding: 0 10px;
  }
}
main header #nav-wrapper nav#primary-menu .submenu {
  display: none;
  opacity: 0;
  position: absolute;
  top: 30px;
  left: 0;
  border-top: 1px solid #aaa;
}
@media (max-width: 820px) {
  main header #nav-wrapper nav#primary-menu .submenu {
    top: 44px;
  }
}
main header #nav-wrapper nav#primary-menu .submenu a {
  height: 24px;
  line-height: 24px;
  padding: 0 20px;
}
main header nav#secondary-menu {
  float: right;
  margin: 20px 20px 0 0;
}
@media (max-width: 640px) {
  main header nav#secondary-menu {
    display: none;
  }
}
main header nav#secondary-menu ul, main header nav#secondary-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
main header nav#secondary-menu li {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  white-space: nowrap;
}
main header nav#secondary-menu a {
  display: inline-block;
  font-size: 12px;
  color: #000;
}
main header nav#mobile-menu-toggle {
  display: none;
  float: right;
  margin: 20px;
}
@media (max-width: 640px) {
  main header nav#mobile-menu-toggle {
    display: block;
  }
}

#mobile-menu-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 250ms linear;
}
#mobile-menu-wrapper.show {
  display: block;
  opacity: 1;
}
#mobile-menu-wrapper header {
  height: 84px;
  border-bottom: 2px solid #666;
}
#mobile-menu-wrapper #mobile-menu {
  position: relative;
  padding: 20px;
  height: 90%;
  overflow: scroll;
}
#mobile-menu-wrapper #mobile-menu ul, #mobile-menu-wrapper #mobile-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#mobile-menu-wrapper #mobile-menu ul ul, #mobile-menu-wrapper #mobile-menu li ul {
  margin: 20px 0 0 20px;
}
#mobile-menu-wrapper #mobile-menu ul ul li::before, #mobile-menu-wrapper #mobile-menu li ul li::before {
  content: "- ";
}
#mobile-menu-wrapper #mobile-menu li {
  display: block;
  margin: 5px 0;
  min-height: 44px;
}
#mobile-menu-wrapper #mobile-menu a {
  display: inline;
  font-size: 18px;
  color: #f3cf1e;
}
#mobile-menu-wrapper #mobile-menu a:hover {
  text-decoration: none;
}

.mobile-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  text-indent: -9999em;
  cursor: pointer;
}
.mobile-btn.open-menu {
  background: url("/images/icon-menu.svg") no-repeat center;
  background-size: 24px 24px;
}
.mobile-btn.close-menu {
  background: url("/images/icon-closex-white.svg") no-repeat center;
  background-size: 24px 24px;
  float: right;
  margin: 20px;
}

.gold-bar {
  margin: 1px 0;
  height: 6px;
  background: #f3cf1e;
}

.home-contain {
  padding: 40px 40px 0;
}
@media (max-width: 640px) {
  .home-contain {
    padding: 20px 0 0;
  }
}

.content-wrapper {
  display: flex;
  margin: 30px;
}
@media (max-width: 640px) {
  .content-wrapper {
    display: block;
    margin: 20px;
  }
}

.content-menu {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 165px;
  padding-right: 20px;
}
@media (max-width: 640px) {
  .content-menu {
    display: flex;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 20px;
    padding-right: 0;
  }
}

.content-menu span,
.content-menu a {
  display: block;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
}
.content-menu span:first-child,
.content-menu a:first-child {
  margin-top: 0;
}
@media (max-width: 640px) {
  .content-menu span,
  .content-menu a {
    flex-grow: 1;
    flex-shrink: 1;
    margin-top: 0;
    padding: 12px 0;
    font-size: 11px;
    border-bottom: 3px solid #efefef;
    text-align: center;
    text-transform: uppercase;
  }
}

.content-menu span,
.content-menu .current {
  color: #f3cf1e;
}
@media (max-width: 640px) {
  .content-menu span,
  .content-menu .current {
    color: #004fa3;
    border-bottom: 3px solid #004fa3;
  }
}

@media (max-width: 640px) {
  .content-menu a {
    color: #666;
  }
}

.content-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 550px;
  min-height: 300px;
}
.content-body img {
  width: 50%;
  height: auto;
}
@media (max-width: 640px) {
  .content-body img {
    display: block;
    margin: 0 0 20px;
    min-height: 0;
    padding: 0;
    width: 100%;
  }
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
}
.team-grid .team-member {
  flex: 0 0 25%;
  padding: 0 5px 20px;
  text-align: center;
}
@media (max-width: 820px) {
  .team-grid .team-member {
    flex: 0 0 33%;
  }
}
@media (max-width: 640px) {
  .team-grid .team-member {
    flex: 0 0 50%;
  }
}
.team-grid .team-member:hover {
  text-decoration: none;
}
.team-grid .team-member img {
  display: block;
  margin: 0 auto 5px;
  outline: 1px solid #aaa;
  outline-offset: -1px;
  width: 100px;
}
.team-grid .team-member .title {
  margin: 0;
  font-size: 11px;
  line-height: 17px;
}

.biopic {
  float: right;
  margin: 0 0 30px 30px;
  outline: 1px solid #aaa;
  outline-offset: -1px;
  width: 140px !important;
}

@media (max-width: 640px) {
  footer {
    padding: 50px 0;
    background: #004fa3;
  }
}
footer .c {
  font-size: 12px;
  text-align: center;
}
@media (max-width: 640px) {
  footer .c {
    color: #fff;
  }
}

input[type=text] {
  width: 280px;
  height: auto;
  padding: 6px 0 6px 8px;
  border: 1px solid #CCC;
  font-size: 15px;
}
@media (max-width: 640px) {
  input[type=text] {
    width: 95%;
  }
}

input[type=text].small {
  width: 100px;
}
@media (max-width: 640px) {
  input[type=text].small {
    width: 95%;
  }
}

input[type=submit] {
  height: auto;
  padding: 6px 8px;
  border: 0;
  background: #004fa3;
  color: #FFF;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
@media (max-width: 640px) {
  input[type=submit] {
    width: 100%;
    padding: 10px 12px;
  }
}

input[type=submit]:hover {
  background: rgb(0, 103.717791411, 214);
}

label {
  display: block;
  padding-left: 20px;
}

input[type=checkbox] {
  float: left;
  margin-left: -20px;
}

._header01 {
  font-size: 15px;
  color: #2E42A7;
  font-weight: bold;
  text-decoration: none;
}

._headerlogin {
  font-size: 13px;
  color: #2E42A7;
  font-weight: bold;
  text-decoration: none;
}

._header02 {
  font-size: 13px;
  color: #2E42A7;
  font-weight: bold;
  text-decoration: none;
}

._header03 {
  font-size: 11px;
  color: #2E42A7;
  font-weight: bold;
  text-decoration: none;
}

._header03a {
  font-size: 11px;
  color: #999999;
  font-weight: bold;
  text-decoration: none;
  font-style: italic;
}

._header04 {
  font-size: 11px;
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
}

._bodytext {
  font-size: 11px;
  color: #666666;
  line-height: 1.5em;
}

._bodytext2 {
  font-style: italic;
}

._bodytext3 {
  font-weight: bold;
}

._nav01 {
  font-size: 13px;
  color: #2E42A7;
  font-weight: bold;
  text-decoration: none;
}

._nav02 {
  font-size: 10px;
  color: #2E42A7;
  font-weight: bold;
  text-decoration: none;
}

._nav01a {
  font-size: 13px;
  color: #DCB300;
  font-weight: bold;
  text-decoration: none;
}

._nav02a {
  font-size: 10px;
  color: #DCB300;
  font-weight: bold;
  text-decoration: none;
}

._topnavibg1 {
  background-color: #707070;
}

._adminlinks {
  font-size: 12px;
  color: #0000FF;
  text-decoration: none;
}

._adminlinks:hover {
  font-size: 12px;
  color: #0000FF;
  text-decoration: underline;
}

._footer {
  font-size: 10px;
}

.portfolioTable {
  border: 1px solid #99A0C8;
}/*# sourceMappingURL=text.css.map */