body {
	background-color: #C0C0C0; background-attachment: fixed; font-family: arial, helvetica, ms sans serif; font-size: 12px;
}
body.popup { background-color: #FFFFFF; }
h2 {
 	font-family: arial, helvetica, ms sans serif; font-size: 12px; border-top: 1px solid black;
	text-decoration: overline; margin-left: 40px;
}
h3 { font-family: arial, helvetica, ms sans serif; font-size: 12px;	font-weight: bold; }
p {	font-family: arial, helvetica, ms sans serif; font-size: 12px; }
a:link, a:visited, a:active { font-family: arial, helvetica, ms sans serif;	font-size: 12px; color: blue; text-decoration: none; }
a:hover { color: navy; }
td.tab { color: black; text-decoration: none;  font-weight: bold; font-size: 150%; font-family: verdana;}
a.tab:link, a.tab:visited, a.tab:active { color: black; text-decoration: none;  font-weight: bold; font-size: 100%; font-family: verdana;}
a.tab:hover { color: black; }
ul { font-family: arial, helvetica, ms sans serif; font-size: 12px; }
ol { font-family: arial, helvetica, ms sans serif; font-size: 12px; }
th {
 	font-family: arial, helvetica, ms sans serif; background: #D0D0D0;
	border: thin; vertical-align: top; text-align: left; font-size: 12px; font-weight: bold;
}
td { font-family: arial, helvetica, ms sans serif; font-size: 12px; vertical-align: top; }
td.topimage { vertical-align: bottom; text-align: center; }
td.dag { font-size: 24px; font-weight: bold; }
td.number { text-align: right; }
td.darkcel { background-color: #eee; }

table.border {
border-collapse: collapse;
}
td.border {
border: 1px solid #ccc;
}
th.border {
background-color: #ddd;
}
th.border, td.border {
padding: 4px;
text-align: left;
}
tr.border:nth-child(even) {
background-color: #eee;
}
tr.border:nth-child(odd) {
background-color: #fff;
}            

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Tooltip arrow */
.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;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}