body{
    margin:0;
    padding:0;
    background-color:#000;
    /*
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    */
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
}
    
/* Menu Home */
ul {
    list-style-type: none;
    margin:0;
    padding:0;
}
ul li {}
ul li a {
    display: block;
    padding: 18px 10px 18px 10px;
    border-bottom: 1px solid #808080; /*#E7E7E7;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box; 
    color: #fff; /*#000*/
    text-decoration:none;
}
ul li a:hover, ul li a:active {
    /*
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#058cf5), color-stop(100%,#015ee6));
    background: -webkit-linear-gradient(top, #058cf5 0%,#015ee6 100%);
    background: linear-gradient(top, #058cf5 0%,#015ee6 100%);
    */
    background-color:#058cf5;
    color: #fff; 
}
ul li a:after {
    content: "〉";
    float: right;
    font-weight: bold;
    color: #808080;
    font-size: 13px;
    text-shadow: 1px 0 1px #808080;
}
ul li a:hover:after, ul li a:hover:after {
    color: #fff;
    text-shadow: 1px 0 1px #fff;
}


/* Interna */
.js_loader {
    position:fixed; z-index:8;
    left:0;
    top:0;
    background-color:#000;
    height:100%;
    width:100%;
}
.js_loaderContent {
    position:absolute; z-index:9;
    width:80px;
    height:80px;
    top:50%;
    left:50%;
    margin:-40px 0 0 -40px;
}
.lds-spinner {
    color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}