<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

html,body {
	height: 96%;
}
body {
	margin-top: 2%;
	margin-bottom: 2%;
	background-color: #6699CC;
	font-family: Verdana, Geneva,"Trebuchet MS", sans-serif;
	font-size: small/100%;
	color: #000066;
}

/* ************************* END GENERAL STYLING ************************* */


/* *************************  START DIV STYLING  ************************* */


#container { /* &lt;DIV #1&gt; */
	width: 700px; 
	margin-left: auto;  /* This keeps the template centered. */
	margin-right: auto; /* This keeps the template centered. */
	background-color: #FFFFFF; 
	border: 2px solid #f4f4f4;
		
}
#header { /* &lt;DIV #2&gt; */
	width: auto; 
	height: auto; 
	margin: 0 auto;
	text-align: center; 

}
	#header h1 {
		font-size: 150%;
		color: #000066;
		letter-spacing: 3px; 
	}
	
	#header h2 {
		position: relative; /* All sizes, paddings and margins are measured relative to #header h1. */
		vertical-align: center; /* Appear in the center of the #header. */
		font-size: 80%; /* 70% of the size of the font-size from the body. */
		font-weight: 100; /* a very sleek and lightweight font. 600 for big font. */
		text-transform: uppercase; /* ALL CAPS ON THIS LINE */
		color: #000066;
		letter-spacing: 1px; 
	}
	

#core_container { /* &lt;DIV #3&gt; */
/* main content */
	width: 100%; /* same as the #container */
	background-color: #FFFFFF; 
}

#core_left { /* &lt;DIV #4&gt; */
	width: 180px; /* A fixed width to display the images correctly below each other. */
	float: left; /* Stay on the left side of the #core_container. */
	padding: 12px; /* 12px space inside this div before anything happens. */
	_padding: 6px; /* IE HACK. 6px space for IE, because of the boxmodel error. Remove this and check the page in IE... :( */
	height: auto; /* Height is automaticlly calculated. No need to set it. */
	background-color: #FFFFFF;
}
	#core_left img { 
		border: 1px solid #000066;
		padding: 2px 2px 2px 2px;
	}
	#core_left p {
		font-size: 70%; /* The fontsize is __% of the fontsize of the body tag. */
	}
	
#footer {
	background-color: #transparent;
	clear: left;
	color: #000000;
	font-size: 100%;
	font-family: Times, "Trebuchet MS", Verdana, sans-serif;
	margin: 0 auto;
	padding-bottom: 4px;	
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	text-align: center;
	width: 680px;
	}</pre></body></html>