.non-touch-hide {
  display: none;
}
.touch-hide {
  display: block;
}
.non-mobile-hide {
  display: none;
}
.mobile-hide {
  display: block;
}
* {
  --font-monospace: 'Courier New','Lucida Console',monospace;
  --font-sans-serif: 'OpenSans','Arial','Verdana',sans-serif;
  /*--font-sans-serif: 'Lato','Arial','Verdana',sans-serif;*/
  --font-serif: 'Lora','Times New Roman','Georgia',serif;
  font-family: var(--font-serif);
  font-weight: 400;
  color: #DDD;
  ::-webkit-font-smoothing: antialiased;
  --scrollbar-bg: #000000;
  --scrollbar-thumb: #808080;  --scrollbar-thumb-hover: #A0A0A0;
  --scrollbar-thumb-size: 8px;
  --scrollbar-shadow: calc(var(--scrollbar-thumb-size) / 3.0);
  --scrollbar-radius: calc(var(--scrollbar-thumb-size) / 2.0);
}
html {
  background: #000000;
  font-size: 16px;
  margin: 0;
  padding: 0;
  border: none;
}
body {
  margin-left: 10%;
  margin-right: 26px;
}
hr {
  border: 0.25px solid #FFFFFF;
}
table, th, td {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
a:link {
  cursor: pointer;
  color: #00C000;
}
a:visited {
  color: #00C000;
}
a:hover {
  color: #00F000;
}
h1 {
  color: #FFF;
  font-family: var(--font-sans-serif);
  font-weight: 300;
  font-size: 30px;
  margin: 0;
  padding: 0;
}
h2 {
  color: #FFF;
  font-family: var(--font-sans-serif);
  font-weight: bold;
  font-size: 24px;
  margin: 0;
  padding-bottom: 0.5em;
}
h3 {
  color: #FFF;
  font-family: var(--font-sans-serif);
  font-weight: bold;
  font-size: 18px;
  margin-block-start: 1em;
  margin-block-end: 0.5em;
}
embed {
  scrollbar-color: #FF0000;
  frameBorder: 0;
  border: 0;
  seamless: seamless;
  /*scrolling: no;*/
  overflow: hidden;
}
iframe {
  scrollbar-color: #00FF00;
  frameBorder: 0;
  border: 0;
  seamless: seamless;
  scrolling: yes
  overflow: hidden;
}
.center {
  text-align: center;
}
.center > div, .center > table {
  margin-left: auto;
  margin-right: auto;
}
.image-label {
  /*margin-left: 4px;*/
  font-family: var(--font-sans-serif);
  font-size: 12px;
  line-height: 14px;
  /*display: block;*/
}
.header a {
  font-family: var(--font-sans-serif);
  width: 100%;
  height: 130px;
}
.header-links {
  padding-top: 6px;
  font-size:12px;
  line-height: 16px;
}
.content-container {
  position: absolute;
  top: 130px;
  bottom: 0px;
  left: 10%;
  right: 26px;
}
.nav-top {
  height: 20px;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 22px;
}
.nav-bottom {
  height: 15px;
  position: absolute;
  bottom: 10px;
  left: 0px;
  right: 22px;
}
.content-body {
  position: absolute;
  top: 20px;
  bottom: 30px;
  left: 0px;
  right: 0px;
  overflow: hidden;
}

/* Set scrollbar background, including padding */
/* For Firefox */
section {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-bg);
}
::-webkit-scrollbar {
  background: var(--scrollbar-bg);
}

/* Set scrollbar thumb size */
.simplebar-track.simplebar-vertical {
  width: var(--scrollbar-thumb-size);
}
.simplebar-track.simplebar-horizontal {
  height: var(--scrollbar-thumb-size);
}

/* SimpleBar track does not cover scrollbar padding - see above */
.simplebar-track {
  background-color: var(--scrollbar-bg);
}
.simplebar-scrollbar {
  pointer-events: all;
  background-color: var(--scrollbar-thumb);
  border-radius: var(--scrollbar-radius);
  -webkit-box-shadow: inset 0 0 var(--scrollbar-shadow) #000000;
}
.simplebar-scrollbar:hover {
  background-color: var(--scrollbar-thumb-hover);
}

/* Override SimpleBar transitions */
.simplebar-scrollbar:before {
  transition: opacity 0s linear;
}
.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0;
}

/* This works everywhere except Windows Firefox; using SimpleBar instead */
/* scrollbar.width = thumb-width + 2*scrollbar-thumb.border */
/*
section {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-bg);
  scrollbar-width: 10px;
}
section:hover {
  scrollbar-color: var(--scrollbar-thumb-hover) var(--scrollbar-bg);
}

::-webkit-scrollbar {
  background: var(--scrollbar-bg);
  width: 22px;
}
::-webkit-scrollbar-track {
  background: var(--scrollbar-bg);
  background-clip: content-box;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
::-webkit-scrollbar-track-piece {
  background: var(--scrollbar-bg);
  background-color: var(--scrollbar-bg);
  width: 10px;
}
::-webkit-scrollbar-button {
  background: var(--scrollbar-bg);
  background-color: var(--scrollbar-bg);
  display: none;
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  background-color: var(--scrollbar-thumb);
  background-clip: padding-box;
  -webkit-box-shadow: inset 0 0 4px #000000;
  border: 6px solid var(--scrollbar-bg);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}
::-webkit-scrollbar-corner {
  background: var(--scrollbar-bg);
}
::-webkit-resizer {
  background: var(--scrollbar-bg);
}
*/

.not-allowed {
  cursor: not-allowed;
}
.drag-vertical {
  cursor: ns-resize ;
}
.drag-horizontal {
  cursor: ew-resize ;
}
.drag-both {
  cursor: move ;
}
.ctscan-container-size {
  width: 386px;
  height: 204px;
}
.ctscan {
  background-color: transparent;
  margin-left: 0px;
  margin-top: 0px;
  filter: grayscale(100%); /* Current draft standard */
}
.ctscan-container {
  overflow: hidden;
  display: block;
}
/*
.pdf-container {
  position:relative;
  overflow: hidden;
}
*/
.gif-size {
  width:240;
}
.goto {
  cursor: pointer;
  color: #00C000;
}
.goto:hover {
  color: #00F000;
  filter: brightness(150%);
}
.hover:hover {
  cursor: pointer;
  filter: brightness(150%);
}
.tool-column {
  position: relative;
  padding-left: 6px;
}
.tool-group-top {
  position:absolute;
  top:6px;
}
.tool-group-bottom {
  position:absolute;
  bottom:0px;
}
.nop {
  height: 8px;
}
.opentab {
  width: 18px;
  content:url(/bfree/img/opentab_gray_48.png);
}
.replay {
  display: none;
  width: 18px;
  content:url(/bfree/img/replay_gray_48.png);
}
.toggleplay {
  width: 18px;
  content:url(/bfree/img/play_gray_48.png);
}
.togglemute {
  width: 18px;
  content:url(/bfree/img/muted_gray_48.png);
}
.pgup {
  visibility: hidden;
  width: 18px;
  content:url(/bfree/img/up_gray_48.png);
}
.pgdn {
  width: 18px;
  content:url(/bfree/img/down_gray_48.png);
}
.right {
  float: right;
  overflow: auto;
}
.hidden {
  visibility: hidden;
}
.logo {
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 30px;
  width: 120px;
}
.scroll_dn {
  visibility: hidden;
  cursor: pointer;
  width: 30px;
  height: 15px;
}
.scroll_up {
  visibility: hidden;
  cursor: pointer;
  width: 30px;
  height: 15px;
}
.scroll_top {
  visibility: hidden;
  cursor: pointer;
  position: absolute;
  float: top;
  width: 30px;
  height: 15px;
  top: 16px;
}
.bold {
  color: #EEE;
  font-weight: bold;
}

/* Touch Device */
@media (hover:none) {
  .non-touch-hide {
    display: block;
  }
  .touch-hide {
    display: none;
  }
  .non-mobile-hide {
    display: none;
  }
  .mobile-hide {
    display: block;
  }
}

/* Mobile */
@media (max-width:600px) {
  .non-touch-hide {
    display: block;
  }
  .touch-hide {
    display: none;
  }
  .non-mobile-hide {
    display: block;
  }
  .mobile-hide {
    display: none;
  }
  * {
    font-family: var(--font-sans-serif);
  }
  html {
    font-size: 10px;
    line-height: 12px;
  }
  body {
    margin-right: 54px;
  }
  h1 {
    font-size: 18px;
  }
  h2 {
    font-size: 13px;
    font-weight: 800;
  }
  h3 {
    font-size: 11px;
  }
  .logo {
    top: 10px;
    right: 20px;
    width: 80px;
  }
  .image-label {
    font-size: 9px;
    line-height: 10px;
  }
  .header {
    height: 100px;
  }
  .header-links {
    padding-top: 10px;
    line-height: 12px;
  }
  .header-links a {
    font-size: 10px;
  }
  .content-container {
    top: 100px;
  }
  .nav-bottom {
    height: 15px;
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 22px;
  }
  .content-body {
    position: absolute;
    top: 20px;
    bottom: 60px;
    left: 0px;
    right: 0px;
    overflow: hidden;
  }
  .ctscan-container-size {
    width: 193px;
    height: 102px;
  }
  .gif-size {
    width:205;
  }
}
