body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    font-family: Sans-serif;
    line-height: 1.5em;
}

th, td {
    text-align: left;
    vertical-align: top;
}

td pre, td p {
    margin-top: 2px;
}

a {
    /* University CD color blue */
    color: #0052cc;
}

#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /* Disable scrollbars on the header frame. 
    To enable scrollbars, change "hidden" to "scroll" */
    overflow: hidden;
    /* University CD color mint */
    background: #a5d7d2;
}

#nav {
    position: absolute;
    top: 80px;
    left: 0;
    bottom: 50px;
    width: 230px;
    /* Scrollbars will appear on this frame only when there's enough content to require scrolling. 
    To disable scrollbars, change to "hidden", or use "scroll" to enable permanent scrollbars */
    overflow: auto;
    /* University CD color light gray */
    background: #dfe1e6;
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    /* University CD color anthrazit */
    background: #2d373d;
    text-align: center;
    vertical-align: middle;
}

#logo {
    padding: 10px;
}

#main {
    position: fixed;
    /* Set this to the height of the header */
    top: 100px;
    left: 230px;
    right: 0;
    bottom: 50px;
    overflow: auto;
    background: #fff;
}

.innertube {
    /* Provides padding for the content */
    margin: 15px;
}

pre {
    font-family: sans-serif;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul a {
    font-weight: bold;
    text-decoration: none;
}

footer a {
    color: #ffffff;
}

/*IE6 fix*/
* html body {
    /* Set the first value to the height of the header and last value to the width of the nav */
    padding: 100px 0 0 230px;
}

* html main {
    height: 100%;
    width: 100%;
}

.center {
    text-align: left;
}

.pagination {
    display: inline-block;
}

.pagination td {
    padding-right: 5px;
    padding-left: 5px;
}

.pagination a {
    float: left;
    padding: 0px 8px;
    text-decoration: none;
    /*     border: 1px solid #ddd;  */
}

.pagination a.active {
    background-color: gray;
    color: white;
    border-radius: 5px;
    /*     border: 1px solid #4CAF50; */
}

.pagination a.disabled {
    color: gray;
    pointer-events: none;
    border-radius: 5px;
}

.pagination a.inactive {
    color: black;
    pointer-events: none;
    border-radius: 5px;
}

.pagination a:hover:not(.active):not(.disabled):not(.inactive) {
    background-color: #ddd;
    border-radius: 5px;
}

.pagination a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.related-widget-wrapper {
    display: block;
    padding: 50px;
    color: red;
    background-color: gray;
}

.results th, .results td {
    border-bottom: 1px solid #ddd;
}
