/* 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: 6px 11px 4px 20px;
  color: #FFF;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 17px;
  text-decoration: none;
}
.nav-brand a:hover {
  text-decoration: none;
	
}

#main-menu {
  padding:0;
  clear: both;
  border-bottom: 0;
}


/*********************************************************************************************** 2025 */ 
.sm-mint a.disabled {
    color: #AAA;
}  
/* couleur survol et active */
.sm-mint a.current {
   color: #444;
}
.sm-mint ul a.current {
    color:  #444;
}
.sm-mint a:hover, .sm-mint a:focus, .sm-mint a:active, .sm-mint a.highlighted {
    color:  #444;
  }
/*
.sm-clean ul a:hover, .sm-clean ul a:focus, .sm-clean ul a:active, .sm-clean ul a.highlighted {
    background: #F5EEDE;
    color:  #93752A;
  }
*/
/********************************************************************************************** 2025 */



@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: #4C4C4C;
		border: solid 1px #4C4C4C;
	}
	#menu {
		height:66px;
	}
	.sm-mint li {
		border-left: none;
		border-right: none;
	}
	.sm-mint li a{
		border: none !important;
	}
	.sm-mint a {
		color:#888;
	}

}

.main-menu-btn {
  float: right;
  margin: 7px 10px;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  text-indent: 50px;
  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: 4px;
  width: 37px;
  background: #FFF;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.main-menu-btn-icon:before {
  content: '';
  top: -12px;
  left: 0;
}

.main-menu-btn-icon:after {
  content: '';
  top: 12px;
  left: 0;
}

/*
.main-menu-btn {
  float: left;
  margin: 5px 10px;
  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);
}

.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;
  }
}


/* IGNORE: Unrelated generic demo styles 

body {
  margin: 8px;
  background: #fff;
  color: #aaa;
  font: 16px/1.5em 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.demo-text {
  margin: 3em 22px;
}

.demo-text p {
  margin-bottom: 1em;
}

.demo-text a {
  color: #999;
}
*/