:root{
	--LightPink: #fbf4f7;
	--DarkPink: #800080;
	--TFBackground: #ace2b7; 
	--TFHoverBackground: #1a7034;
	--TFHoverColor: white;
	--TFARefColor: black;
	--TFGreen: rgb(9, 132, 83); 
}

* {
	box-sizing: border-box;
}

.header {
	background-color: white;
	border-bottom: 3px solid rgb(3, 113, 69);
	height: 165px;
}

.logo {
	
	float: left;
	max-width: 100%;
	height: 160px;
}

.notice{
	margin-left: 40px;
	margin-right: 40px;
	text-align: justify;
}
.disclaimer{
	margin-left: 60px;
	margin-right: 60px;
	text-align: center;
}
#welcome{

	text-align: center;
	vertical-align: middle;
	font-style: italic;
	font-size: 200%;
	font-family: 'Sacramento', cursive; /* Font from Google Fonts page */
}
body{
	font-family: Arial, Helvetica, sans-serif;
	background: white; 
	margin: 0;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
	text-align: center;
}


.menubox{
	float: right;
}
a {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	width: 1.5in;
	color: var(--TFARefColor);

}
a:hover{
	/*border-bottom-style: double;
	border-bottom-width: 2px;
	border-bottom-color: black;*/
	background-color: var(--TFHoverBackground);
	color: var(--TFHoverColor);
}

.clearfloats { clear: both;}