<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> /* https://stackoverflow.com/questions/356809/best-way-to-center-a-div-on-a-page-vertically-and-horizontally */

/*

html, body {
    width: 100%;
	height: 100%;
	background-color: red;
	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
    margin: auto;
    }

    body {font-size: 18px !important;
    font-family: "Crimson Pro", sans-serif;
    line-height: 1.6;
    background-color: #d5d4da !important;
    }

#left, #header, #footer, #main {background-color: #d5d4da;}

#left {width: 250px;
    height: calc(100% - 55px);
    margin-left: 5px;
    position: fixed;
    overflow: hidden;
    }

#header {width: calc(100% - 265px);
    margin-left: 260px;
    margin-top: 5px;
    height: 45px;
    border-bottom: 1px solid black;
    }

#footer {width: calc(100% - 35px);
    bottom: 5px;
    height: 40px;
    position: fixed;
    margin-left: 5px;

    text-align: left;
    vertical-align: middle;
    line-height: 40px;
    padding-left: 5px;
    }

#main {width: calc(100% - 275px);
    margin-left: 260px;
    margin-top: 5px;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    height: calc(100% - 110px);
    padding: 5px 5px 0px 5px;
    }

.headlinks {text-align: left;
    vertical-align: middle;
    line-height: 45px;
    padding-left: 5px;
    }

hr.cooltip  {
    border:none;
    width: 95%;
    margin-left: 2%;
    border-bottom: 1px solid #1f1209;
    box-shadow: 0 20px 20px -20px #333;
    }

*/</pre></body></html>