<style>

/* standard set-up for all pages */
html {
    width: 100%;
    height: 100%;
}
body {
    font-family: Lato;
    font-size: medium;
    width: 95%;
    max-width: 850px;
    height: 100%;
    margin: auto;
}
body.wide {
    width: 95%;
    max-width: 1500px;
}
body.narrow {
    width: 95%;
    max-width: 600px;
}

/* links */
a:link, a:visited, a:active {
    text-decoration: none;
    color: darkmagenta;
}
a:hover {
    text-decoration: underline;
}

/* heading, padded for some text to the right */
h1 {
    display: inline;
    padding: 0px 10px 0px 0px;
}

/* page headers */
div#target_head {
    width:100%;
    padding: 0px 5px 5px 5px;
    background-color: antiquewhite;
}
#target_head div {
    padding-top: 6px;
}
#target_head .search {
    float: right;
    text-align: right;
/*    width: 153px;*/
    padding-right: 2px;
}
#target_head .links table {
    width: 100%;
    border-spacing: 0px;
}
#target_head .links td {
    width: auto;
    padding: 0px;
}
#target_head .best_fit {
}
#target_head .best_fit_title {
    position: absolute;
    width: 55px;
    padding-top: 0px;
}
#target_head .best_fit_line {
    padding-left: 60px;
    padding-top: 0px;
    padding-bottom: 3px;
}
/* body */
.bk-root {
    padding: 5px 5px 0px 5px;
}
.bk-root .bk-bs-nav>li>a {
    padding: 5px 15px;
}
.bk-Tabs {
    padding: 5px 5px 0px 5px;
}
.bk-GridPlot {
    padding: 5px 5px 0px 5px;
}
.bk-Column {
    padding: 5px 5px 0px 5px;
}
/* page footers */
div.footer {
    width: 100%;
    font-size: small;
    padding: 1px 5px 5px 5px;
    background-color: antiquewhite;
    margin: 0px;
    overflow: hidden;
}
.footer_home {
    float: left;
}
.footer_gen {
    float: right;
}

/* sample tables */
body.sample_table {
    width: 95%;
    max-width: 1500px;
}
div.dataTables_wrapper {
    padding: 5px;
}
thead.datatable_header {
    font-weight: bold;
}
table.dataTable {
    width: 100%;
}
table.dataTable th, table.dataTable td {
    white-space: nowrap;
}

/* thumbnail hovers, let hover thumbs overflow table */
div.dataTables_scrollBody {
    overflow: visible !important;
}
td.td_img_hover {
    float:left; /* must be floated for same cross browser position of larger image */
    position:relative;
}
td.td_img_hover img { 
    vertical-align:bottom;
    border-width: 2px;
    border-style: solid;
    border-color: gainsboro;
    border-radius: 5px;
}
td.td_img_hover:hover {
    border:0; /* IE6 needs this to show large image */
    z-index:1;
}
td.td_img_hover span {
    position:absolute;
    visibility:hidden;
    top:-100px;
    left:80px; 
}
td.td_img_hover:hover span {
    visibility:visible;
    top:-100px;
    left:80px; 
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 19px;
    left: -104px;
    background-color: antiquewhite;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 5px;
    text-align: right;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

</style>
