@font-face {
  font-family: txtiso;
  src: url(font/ISOCPEUR.woff2);
  font-weight: normal;
  font-style: normal;
}

body::-webkit-scrollbar {
  height: 20px;
  width: 20px;               /* width of the entire scrollbar */
}
 
body::-webkit-scrollbar-track {
  background: #E7E7E7;        /* color of the tracking area */
}
 
body::-webkit-scrollbar-thumb {
  background-color: white;    /* color of the scroll thumb */
  border-radius: 1px;       /* roundness of the scroll thumb */
  border: 1px solid black;  /* creates padding around scroll thumb */
}

body::-webkit-scrollbar-button {
  background-color: white;
  border: 1px solid black;
  height: 20px;
  width: 20px;
}

body::-webkit-scrollbar-button:horizontal:decrement {
    background-color: white;
    background-image: url('arrow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

body::-webkit-scrollbar-button:horizontal:decrement:hover {
    background-color: #00FF00;
    background-image: url('arrow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

body::-webkit-scrollbar-button:horizontal:increment {
    background-color: white;
    background-image: url('arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

body::-webkit-scrollbar-button:horizontal:increment:hover {
    background-color: #00FF00;
    background-image: url('arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}
 

body
  {background-color: #FFFFFF; font-family: txtiso, sans-serif; font-size: 16px;}
  
a
  {text-decoration: none; color: #000000; font-size: 16px;}

a:hover
  {text-decoration: underline; color: #000000; font-size: 16px;}

a:active
  {color: #00FF00; font-size: 16px;}

.nnn
  {border-style:solid; border-width:1px; color: #000000; font-size: 16px; letter-spacing:2pt}

.brightness {background-color: white; display: inline-block;}

.brightness img:hover {opacity: .75;}