/* CSS Document */

.main-nav {
  /* border-bottom: 2px solid #FFFFFF;
 background: rgba(1,95,163,0.81);*/
}

.main-nav:after {
  clear: both;
  content: "\00a0";
  display: block;
  height: 0;
  font: 0px/0 serif;
  overflow: hidden;
}

.nav-brand {
	float: left;
}

.nav-brand a {
  display: block;
  padding: 13px 11px 11px 5px;
  color: #FFF;
  font-family: Arial, sans-serif;
  font-stretch: extra-condensed;
  font-size: 18px;
  font-weight: normal;
  line-height: 15px;
  text-decoration: none;
}
.nav-brand a:hover {
	text-decoration: none;
	 color: #4677B9;
}

#main-menu {
  padding:0;
  clear: both;
  border-bottom: 0;
}
.sm-mint a, .sm-mint a:hover, .sm-mint a:focus, .sm-mint a:active {
  font-size: 20px;
}
.sm-mint li {
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
}
.sm-mint a:hover, .sm-mint ul a:hover {
	color: #FFFE6B;
}

.sm-mint a, .sm-mint ul a {
	color: white;
}
.sm-mint  {
    border: none;
}

.sm-mint a .sub-arrow {
    border-color: #FFF transparent transparent transparent;
}


.ssm-mint li a {
    border-right: solid 1px #87CD8C;
}
.ssm-mint li:last-child > a {
    border-right: none;
}
.sm-mint a.disabled {
    color: #EEE;
}
@media (min-width: 1024px) {
	#main-menu {
	float: left;
	clear: none;
	width:auto;
	}
	.nav-brand {
		display:none;
	}
}
@media (max-width: 1024px) { 
 	#menu-content {
		display:block;
		margin:0;
	} 
	.main-nav {
		/*background: #1583B5;*/
		background-color: rgba(0, 0, 0, 0.1);
	}
	#menu {
		height:39px;
	}
	.sm-mint li {
		border-left: none;
		border-right: none;
		border-top: 1px solid rgba(255, 255, 255, 0.5);
	}
	.sm-mint li a{
		border: none !important;
	}
	.sm-mint a {
		color:#FFF;
	}

}

.main-menu-btn {
  float: left;
  margin: 5px 10px 0 18px;
  position: relative;
  display: inline-block;
  width: 29px;
  height: 29px;
  text-indent: 29px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* hamburger icon */

.main-menu-btn-icon,
.main-menu-btn-icon:before,
.main-menu-btn-icon:after {
  position: absolute;
  top: 50%;
  left: 2px;
  height: 2px;
  width: 24px;
  background: #FFF;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.main-menu-btn-icon:before {
  content: '';
  top: -7px;
  left: 0;
}

.main-menu-btn-icon:after {
  content: '';
  top: 7px;
  left: 0;
}


/* x icon */

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
  height: 0;
  background: transparent;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* hide menu state checkbox (keep it visible to screen readers) */

#main-menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}


/* hide the menu in mobile view */

#main-menu-state:not(:checked) ~ #main-menu {
  display: none;
}

#main-menu-state:checked ~ #main-menu {
  display: block;
}

@media (min-width: 1024px) {
  /* hide the button in desktop view */
  .main-menu-btn {
   /*position: absolute;*/
    top: -99999px;
  }
  /* always show the menu in desktop view */
  #main-menu-state:not(:checked) ~ #main-menu {
    display: block;
  }
}


