a:hover {
   color: red;
   }

a.home {
   text-decoration: none;
}

hr {
   height: 1px;
   border-top: none;
   }

body {
   background-color: #FAEBD7;           /* antiquewhite */
   }

h1,h2,h3,h4,h5,h6 {
   font-family: sans-serif;
   color: #00008B;                      /* darkblue */
   }

table.titlebox {
   text-align: center;
   width: 100%;
   }

td.title {
   font-family: sans-serif;
   font-weight: bold;
   color: blue;
   font-size: 220%;
   text-align: center;
   width: 70%;
   }

td.subtitle {
   font-family: sans-serif;
   font-weight: bold;
   color: red;
   font-size: 150%;
   text-align: center;
   width: 70%;
   }

td.smalltitle {
   font-family: sans-serif;
   font-weight: bold;
   color: #00008B;                      /* darkblue */
   font-size: 150%;
   width: 15%;
   }

td.sidebox {
   background-color: #FAEBD7;           /* antiquewhite */
   width: 15%;
   }

table.sidebar {
   font-family: serif;
   font-size: 90%;
   color: black;
   text-align: center;
   }

td.main {
   background-color: #FAEBD7;           /* antiquewhite */
   font-family: serif;
   font-size: 100%;
   color: black;
   }

table.doc {
   background-color: white;
   font-family: serif;
   font-size: 100%;
   color: black;
   }

td.docname {
   padding-left: 15px;
   }

td.doclink {
   text-align: center;
   }

td.docinfo {
   padding-left: 15px;
   }

table.impl {
   background-color: white;
   font-family: serif;
   font-size: 100%;
   color: black;
   }

td.implname {
   padding-left: 15px;
   }

td.impllink {
   text-align: center;
   }

table.file {
   background-color: white;
   font-family: serif;
   font-size: 100%;
   color: black;
   }

td.fversion {
   text-align: center;
   }

td.flink {
   text-align: center;
   }

td.fname {
   padding-left: 15px;
   }

table.ver {
   background-color: white;
   font-family: serif;
   font-size: 100%;
   color: black;
   }

td.verfeat {
   text-align: left;
   }

td.vername {
   padding-left: 15px;
   }

td.verblank {
   background-color: #D3D3D3;           /* lightgrey */
   }

p.center {
   text-align: center;
   }

p.footnote {
   font-size: smaller;
   }

div.display {
   text-align: center;
   }

table.special {
   border: thick solid black;
   background-color: white;
   color: black;
   font-family: sans-serif;
   font-weight: bold;
   margin-left: 25%;
   margin-right: 25%;
   text-align: center;
   }

ul.none {
   list-style-type: none;
}

.tooltip {
   position: relative;
   display: inline-block;
/*   border-bottom: 1px dotted black; */
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

