body {
	font-size: 1em;
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	color: #23282D;
	background: #EFEFEF;
	line-height: 2;
}
textarea {
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

#wrap {
	width: 70%;
	min-width: 300px;
	margin: 0 auto;
	padding: 20px 5%;
	background: #FFF;
	border: 1px solid #666;
}

h1, h2, h3, p, form {
	padding: .2em .2em 1em 0;
}
h1 {
	font-size: 200%;
	padding-bottom: 5px;
	border-bottom: 2px solid #0598f4;
}
h2 {
	font-size: 150%;
	padding-bottom: 6px;
}
h3 {
	font-size: 120%;
	padding-bottom: 6px;
}
h2.itemHeading,
h3.itemHeading {
	border: 1px solid #666;
	padding: 3px 6px;
	margin-bottom: 15px;
	line-height: 2;
	background-color: #0598f4;
	color: #EEE;
	font-size: 125%;
}
h4 {
	font-size: 110%;
	padding-bottom: 4px;
}
hr {
	color: #333;
}

header {
	margin: 0;
	padding: 60px 0 2px 0;
	background-color: #FFF;
}
header .logo {
	float: right;
	margin-top: -20px;
}
header h1 {
	margin: 0;
	padding: 0;
	color: #0598f4;
	font-size: 45px;
	line-height: 1;
}
header p {
	color: #575757;
}
header h1 a {
	color: #0598f4;
	text-decoration: none;
}


nav.top-menu {
	display: flex;
	gap: 1rem;
}

nav.top-menu a {
	display: inline-block;
	padding: 0.5rem 1rem;
	margin: 0 .25em;
	background-color: #0598f4;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

nav.top-menu a:hover,
nav.top-menu a:focus {
	background-color: #037ac0;
	color: #ffffff;
	text-decoration: none;
}






/* Tables */
.eeTable {
	width: 100%;
}
.eeTable, .eeTable th, .eeTable td {
	border: 1px solid #0698f3;
	border-collapse: collapse;
}
.eeTable th {
	padding: 5px;
	background-color: #0698f3;
	color: #FFF;
	font-weight: bold;
}
.eeTable td {
	padding: 5px;
}


#notifications {
	background-color: #fafafa;
}
#notifications p {
	color: #000;
	font-weight: bold;
	line-height: 1.5;
	padding: 5px;
	padding-bottom: 10px;
}
#notifications span {
	display: block;
}
#notifications .messages {
	color: green;
}
#notifications .warnings {
	color: orange;
}
#notifications .errors {
	color: red;
}



.footnote {
	display: block;
	line-height: 1;
	font-size: 75%;
	font-style: italic;
	text-align: right;
}



/* Tool Tips */

.tooltip {
    display: none;
    background: transparent url('../../images/tooltip-top.png');
    font-size: 80%;
    height: 70px;
    width: 160px;
    padding: 25px;
    color: #eee;
    line-height: 1;
}

.tooltip.bottom {
  background: url('../../images/tooltip-bottom.png');
  padding-top: 40px;
  height: 55px;
}
 
.tooltip.bottom {
  background: url('../../images/tooltip-bottom.png');
}

sup.tip {
/* 	float: right; */
	position: absolute;
	right: 10px;
	top: 5px;
	width: 2em;
	height: 2em;
	background: #008d0d;
	color: #FFF;
	font-weight: normal;
	line-height: 2;
	text-align: center;
	-moz-border-radius: 1em;
	-khtml-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
}

sup.tipSmall {
	float: left;
	width: 1.25em;
	height: 1.25em;
	font-size: 70%;
	line-height: 1.25;
	-moz-border-radius: .625em;
	-khtml-border-radius: .625em;
	-webkit-border-radius: .625em;
	border-radius: .625em;
}


footer {
	clear: both;
	margin-top: 50px;
	text-align: center;
}

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

.eeClear,
.clearing {
	clear: both;
}

.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}

.eeHide,
.hideOnLoad {
	display: none !important;
}