<?php
$fontFace = "Verdana, sans-serif";
$extraLargeFontSize = "16px";
$largeFontSize = "13px";
$mediumFontSize = "12px";
$baseFontSize = "11px";
$smallFontSize = "10px";
$tinyFontSize = "9px";
?>

.body { 
	font-family: <?= $fontFace ?>; 
	font-size: <?= $baseFontSize ?>; 
	font-weight: normal; 
	color: #666666; 
	background-color: #597eb7; 
	}
.body A:link { color: #4682B4; text-decoration: none; }
.body A:visited { color: #4682B4; text-decoration: none; }
.body A:hover { color: black; text-decoration: underline; }

.header {
	font-family: <?= $fontFace ?>;
	font-weight: bold;
	text-align: center;
	font-size: <?= $largeFontSize ?>;
	}
.header A:link { color: black; font-weight: bold; font-size: <?= $largeFontSize ?>; }
.header A:visited { color: black; font-weight: bold; font-size: <?= $largeFontSize ?>; }
.header A:active { color: black; font-weight: bold; font-size: <?= $largeFontSize ?>; }
.header A:hover { color: #4682B4; text-decoration: underline; }


