/*reset included in html*/
/*orange #E5903D blue "skyblue" purple (butterfly) #4D29B4*/
@charset "UTF-8";
a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
}

.header {
  width: 100%;
  height: 150px;
  text-align: center;
  line-height: 150px;
 
}
.header img {
    max-height: 150px;
}
.lang {float:right;}
.header button {
  display: none;
}

.tab {
  position: relative;
  width: 100%;
  z-index: 20;
}
.tab ul {
  width: 100%;
  height: 100%;
  display: table;
  table-layout: fixed;
  background: #FFF;
}
.tab ul li {
  display: table-cell;
  text-align: center;
}
.tab ul li.current a {
background:#11A7E8;
}
.tab ul li a {
  display: block;
  padding: 20px;
  color: #FFF;
  background-color: #FE8300;
  transition: all 0.1s;
}
.tab ul li a:hover {
  color: #fff;
  background-color: #4D29B4;
}
.tab ul li .sub_tab {
  display: none;
}
.tab .close {
  display: none;
}

.container {
    
    line-height: 1.5;
    
}

.if_fixed_container {
  padding-top: 56px;
}

.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

.dim {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.dim.dim_show {
  display: block;
}



@media only screen and (max-width: 768px) {
  .header {
    height: 50px;
    line-height: 50px;
    position: fixed;
      /*added by piccante next line*/
      background:#FFF;
      z-index:100;
      
  }
    .header img {
    max-height: 50px;
}
    /*added by piccante so container is correct distance on mobile*/
    .container {padding-top:50px;
    }
    
  .header button {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 0;
    font: 0/0 a;
    transition: all 0.2s;
  }
  .header button:hover {
    background-color: #4D29B4;
  }
  .header button span {
    display: block;
    content: "";
    width: 25px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    background-color: #FE8300;
    border-radius: 2px;
     
  }
 
  .header button span:before, .header button span:after {
    display: block;
    content: "";
    width: 25px;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #FE8300;
    border-radius: 2px;
  }
  .header button span:before {
    top: -8px;
  }
  .header button span:after {
    top: 8px;
  }

  .tab {
    position: fixed;
    top: 0;
      /*was -90 and width 90%*/
    left: -100%;
    bottom: 0;
    width: 100%;
      /*added by piccante*/
      z-index:999;
  }
  .tab.show {
    left: 0;
  }
  .tab ul {
    display: block;
    padding-top: 50px;
  }
  .tab ul li {
    display: block;
    text-align: left;
  }
.tab ul li.current a {
background:#FE8300;
}
  .tab ul li .sub_tab {
    display: block;
    padding-top: 0;
  }
  .tab ul li .sub_tab li a {
    position: relative;
    padding: 10px 20px 10px 30px;
    font-size: 14px;
  }
  .tab ul li .sub_tab li a:before {
    display: inline-block;
    content: "┗";
  }
  .tab .close {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    outline: none;
    font: 0/0 a;
    background: transparent;
    transition: all 0.2s;
     
  }
  .tab .close:before {
    display: block;
    position: absolute;
    left: 13px;
    top: 24px;
    content: "×";
    font-size: 40px;
  background: #FFF;
    color:#E5903D ;
  }
  .tab .close:hover {
    background-color:#4D29B4 ;
  }
  .tab .close:hover:before {
    color: #fff;
  }
}
::-moz-selection {
  background-color: #f6e58d;
  color: #30336b;
}

::selection {
  background-color: #f6e58d;
  color: #30336b;
}