<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
  ver 1.3
*/

.disp_block, .disp_hid_ld, .disp_vis_ld, .disp_hid_bd, .disp_vis_bd, .disp_hid_ad, .disp_vis_ad, .disp_hid_tl,
  .disp_vis_tl, .disp_hid_tp, .disp_vis_tp, .disp_hid_at, .disp_vis_at, .disp_hid_ap, .disp_vis_ap, .disp_hid_pp, .disp_vis_pp {
    position: static !important;   
}

.disp_none {
    display: none !important;
}


/* 
  large desktops
*/

@media (min-width: 1920px) {
  .disp_hid_ld {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}

@media (max-width: 1919px) {
  .disp_vis_ld {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
  }
}


/* 
  bigger desktops
*/

@media (min-width: 1367px) {
  .disp_hid_bd {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
  }
}

@media (max-width: 1366px) {
  .disp_vis_bd {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
  }
}

/* 
  all desktops
*/

@media (min-width: 1024px) {
  .disp_hid_ad {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
  }
}

@media (max-width: 1023px) {
  .disp_vis_ad {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}


/* 
  tablets landscape
*/

@media (orientation:landscape) and (min-width: 962px) and (max-width: 1366px) {
  .disp_hid_tl {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}

@media (orientation:portrait), (max-width: 961px), (min-width: 1367px) {
  .disp_vis_tl {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}


/* 
  tablets portrait
*/

@media (orientation:portrait), (min-width: 600px) and (max-width: 1024px) {
  .disp_hid_tp {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}

@media (orientation:portrait), (max-width: 599px),  (min-width: 1025px) {
  .disp_vis_tp {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}


/* 
  all tablets
*/

@media (min-width: 768px) and (max-width: 1025px) {
  .disp_hid_at {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}

@media (max-width: 767px), (min-width: 1024px) {
  .disp_vis_at {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}


/* 
  all phones
*/

@media (max-width: 767px) {
  .disp_hid_ap {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}

@media (min-width: 768px) {
  .disp_vis_ap {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}


/* 
  phones portrait
*/

@media (orientation:portrait) and (max-width: 567px) {
  .disp_hid_pp {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}

@media (orientation:portrait), (min-width: 568px) {
  .disp_vis_pp {
      position: absolute !important;
      top: -9999px !important;
      left: -9999px !important;
  }
}</pre></body></html>