html {
    /* position: relative;  */
    overflow-x:hidden;
    overflow-y:hidden; 
    /* width: 100%; */
   height: 100%; 
   background:#333333;
   color:silver;
   stroke: silver;

}
:root{
   --selected-color:rgb(255, 173, 42);
 }
body {
   font-family:"Tahoma","San-Serif" , "Microsoft Yahei UI Light";
   font-size: 125%;
   margin: 0px 0px 0px 0px;
}
.clickable {
   cursor: pointer;
}

.offtag {
   color: rgb(190, 119, 13);
}

.juan {
   color: goldenrod;
}

.pb {
   color: gold;
}
.lb {
   color:yellowgreen;
}

.folio {
   color:pink
}

@keyframes cursorblinker {
   50% {
     opacity: 0.1
   }
 }
 .foliocursor {
   background:lightcoral;
   z-index:999;
   position:absolute;
   animation: cursorblinker 3s linear infinite;
 }
 .foliochar {
   color:brown;
   font-weight: bolder;
   font-size:1.5em;
   z-index:999;
   position:absolute;
 }