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


/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  /*font-size: 62.5%;*/
}

body {
 /* font-size: 1.6rem;*/
/*  font-family: "Jaldi", sans-serif;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  /*color: #a0f6aa;*/
  text-decoration: none;
}



/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-accordion-menu {
font-size: 14px;
  /*width: 90%;*/
  max-width: 600px;
/*  background: #4d5158;*/
  margin: 0px auto;
  list-style: none;
 
}
.cd-accordion-menu ul {
  /* by default hide all sub menus */
  display: none;
  list-style: none;
}
.cd-accordion-menu li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cd-accordion-menu input[type=checkbox] {
  /* hide native checkbox */
  position: absolute;
  opacity: 0;
}
.cd-accordion-menu label, .cd-accordion-menu a {
  position: relative;
  display: block;
  padding: 9px 18px 9px 18px;
  background: rgba(255,255,255,0.00);
  color: #000;

  border-top: 3px solid black;
}
.acc-end {
  border-top: 3px solid black;
}
.no-touch .cd-accordion-menu label:hover, .no-touch .cd-accordion-menu a:hover {
  background: rgba(255,255,255,0.90);
}
.cd-accordion-menu label::before, .cd-accordion-menu label::after, .cd-accordion-menu a::after {
  /* icons */
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu label {
  cursor: pointer;
}
.cd-accordion-menu label::before, .cd-accordion-menu label::after {
  background-image: url(../img/cd-icons.svg);
  background-repeat: no-repeat;
}
.cd-accordion-menu label::before {
  /* arrow icon */
  left: -3px;
  background-position: 0 0;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.cd-accordion-menu label::after {
  /* folder icons */
  display: none;
}
.cd-accordion-menu a::after {
  display: none;
}
.cd-accordion-menu input[type=checkbox]:checked + label::before {
  /* rotate arrow */
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu input[type=checkbox]:checked + label::after {
  /* show open folder icon if item is checked */
  background-position: -32px 0;
}
.cd-accordion-menu input[type=checkbox]:checked + label + ul,
.cd-accordion-menu input[type=checkbox]:checked + label:nth-of-type(n) + ul {
  /* use label:nth-of-type(n) to fix a bug on safari (<= 8.0.8) with multiple adjacent-sibling selectors*/
  /* show children when item is checked */
  display: block;
}
.cd-accordion-menu ul label,
.cd-accordion-menu ul a {
  background: rgba(255,255,255,0.00);
  /*box-shadow: inset 0 -1px #41444a;*/
  border-top: 1px solid black;
  padding-left: 32px;
}
.no-touch .cd-accordion-menu ul label:hover, .no-touch
.cd-accordion-menu ul a:hover {
  background: rgba(255,255,255,1.00);
}
.cd-accordion-menu > li:last-of-type > label,
.cd-accordion-menu > li:last-of-type > a,
.cd-accordion-menu > li > ul > li:last-of-type label,
.cd-accordion-menu > li > ul > li:last-of-type a {
  box-shadow: none;
}
.cd-accordion-menu ul label::before {
  left: 10px;
}
.cd-accordion-menu ul label::after,
.cd-accordion-menu ul a::after {
  left: 59px;
}
/*LEVEL 3:*/
.cd-accordion-menu ul ul label,
.cd-accordion-menu ul ul a {
  padding-left: 46px;
  border-top: 0px dotted #999;
  color: #333;
  padding: 2px 0 2px 46px;
}
.last { padding-bottom: 8px;}
.cd-accordion-menu ul ul label::before {
  left: 18px;
  display: none;
}
.cd-accordion-menu ul ul label::after,
.cd-accordion-menu ul ul a::after {
  left: 17px;
}
/*Level 4:*/
.cd-accordion-menu ul ul ul label,
.cd-accordion-menu ul ul ul a {
  padding-left: 48px;
}
.cd-accordion-menu ul ul ul label::before {
  left: 72px;
}
.cd-accordion-menu ul ul ul label::after,
.cd-accordion-menu ul ul ul a::after {
  left: 15px;
}





@media only screen and (max-width: 1140px) {

.cd-accordion-menu {
  width: 79%;
  margin: 40px 16% 40px 5%; 
}

}





















/* ======================================================
   Nav
   ====================================================== */
   
   
   

.m-nav-button {
	float: left;
}

   
/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}



/* Button styling */
.menu-toggle {
  display: inline-block;
  padding: 17px 15px .75em 0px;
  line-height: 1em;
  font-size: 1em;
  color: #333;
}

.menu-toggle:hover,
.menu-toggle:focus {
  color: #000;
}


/*
 Default styles + Mobile first
 Offscreen menu style
*/
.main-menu {
	position: absolute;
	left: -320px;
	top: 0;
	height: 100%;
	overflow-y: hidden;
	overflow-x: visible;
	transition: left 0.3s ease,
	box-shadow 0.3s ease;
	z-index: 999;
	
}

.menu-content {
	width: 320px;
	background: rgba(255,255,255,0.90);
	height: 100%;	
	overflow-x: hidden;
}
.menu-scroll {
	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
	width: 340px;
	/*padding-right: 28px;*/
}
.menu-close  {
  display: block;
  padding: .75em 15px;
  line-height: 1em;
  font-size: 1em;
  color: #333;
  text-decoration: none;
}
.menu-close :hover,
.menu-close :focus {
  background: rgba(255,255,255,0.90);
  color: #ccc;
}
.main-menu .menu-close {
  position: absolute;
  right: 0;
  top: 0;
}




/*
 On small devices, allow it to toggle...
*/
/*
 :target for non-JavaScript
 aria-expanded="true/false" will be for JavaScript
*/
.main-menu:target,
.main-menu[aria-expanded="true"] {
  left: 0;
  outline: none;
  -moz-box-shadow: 3px 0 12px rgba(0,0,0,.25);
  -webkit-box-shadow: 3px 0 12px rgba(0,0,0,.25);
  box-shadow: 3px 0 12px rgba(0,0,0,.25);
}

.main-menu:target .menu-close,
.main-menu[aria-expanded="true"] .menu-close {
  z-index: 1001;
}

.main-menu:target div,
.main-menu[aria-expanded="true"] div {
  position: relative;
  z-index: 1000;
}

/* 
 We could us `.main-menu:target:after`, but
 it wouldn't be clickable.
*/
.main-menu:target + .backdrop,
.main-menu[aria-expanded="true"] + .backdrop {
  position: absolute;
  display: block;  
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: #fff;
  background: rgba(255,255,255,.90);
  cursor: default;
}

@supports (position: fixed) {
  .main-menu,
  .main-menu:target + .backdrop,
  .main-menu[aria-expanded="true"] + .backdrop {
    position: fixed;
  }
}







/*
 Larger screen styling
 Horizontal menu
*/
@media (min-width: 1140px) {
  .menu-toggle,
  .main-menu .menu-close {
    display: none;
  }
  
  /* Undo positioning of off-canvas menu */
  .main-menu {
    position: fixed;
		left: auto;
		top: auto;
		/*height: auto;*/
		height: 100%;
	
	overflow-y: hidden;
	overflow-x: visible;

  }
  
  .menu-content {
    /*height: auto;*/
    /*width: auto;*/
    background: none;	
	margin: 0px 0 0 0;
	padding-top: 80px;
	padding-bottom: 80px;
	position: ;
	width: 65%;
	height: 100%;
  }
  

  
 header h1 {
	float: none;
 }
  
  .menu-close {
    color: #06c;
    border: 0 !important; /* Remove borders from off-canvas styling */
  }
  
  .menu-close:hover,
  .menu-close:focus {
    background: none; /* Remove background from off-canvas styling */
    color: #c00;
  }
  
  
  
  


/* Note: if possible hide expanded menu on big screens*/
  
 .main-menu:target,
.main-menu[aria-expanded="true"] {
  	left: 5%;
  outline: none;
  -moz-box-shadow: 3px 0 12px rgba(0,0,0,.0);
  -webkit-box-shadow: 3px 0 12px rgba(0,0,0,.0);
  box-shadow: 3px 0 12px rgba(0,0,0,.0);
}

.main-menu:target + .backdrop,
.main-menu[aria-expanded="true"] + .backdrop {
  position: absolute;
  display: block;  
  content: "";
  left: 0;
  top: 0;
  width: 320px;
  height: 100%;
  z-index: 998;
  /*background: #fff;*/
  background: rgba(255,255,255,.0);
  cursor: default;
}





}


@media (min-width: 1200px) {

  .menu-content {
	width: 70%;
  }
}

@media (min-width: 1400px) {

  .menu-content {
	width: 85%;
  }
}
   