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

/* 

ToC

	1. defaults
	2. structure
	3. links and navigation
	4. fonts
	5. images
	6. footer

*/



/* --------- 1. defaults  --------- */

* {/* zero margins and padding */
margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
padding: 0;
}

body {
background-color: #ffffff;
color: #000000;
font-family: Georgia, serif;
font-size: 14pt 
text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
		
/*  --------- 2. structure  --------- */

#container { 
width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
background: #ffffff;
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
display: none;
/*background-color: #96afce;
height: 154px; 
border-bottom: 10px solid #9999cc;*/
}

#header h1 {
display: none; 
}

#strapline { 
display: none;
}

#sidebarLeft {
display: none;
}

#sidebarRight {
width: 170px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
float: right; /* since this element is floated, a width must be given */
padding: 10px; /* padding keeps the content of the div away from the edges */
}

#mainContent { 
margin: 0 200px 0 0; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
padding: 0 10px 20px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#mainContent ul {
margin-left: 2em;
}

#mainContent ul li {
list-style: square;
}

#mainContent h3 {
font-size: 1.2em;
font-weight: bold;
margin-top: 20px;
margin-bottom: 10px;
}


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
float: right;
margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
float: left;
margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
clear:both;
font-size: 1px;
height:0;
line-height: 0px;
}

.photoLeft {
padding-right: 10px;
}

.photoRight {
padding-left: 10px;
}

img.scmPhotos {
background-color: #ededed;
margin-right: 5px;
padding: 5px; 
border: 1px solid #ccc; 
}

img.spotlight {
display: block;
margin: 1em auto;
}

img.partners {
display: block; 
margin: 1em auto
}

.listServ {
background-color: #333399;
color: #ffffff;
margin-top: none;
}

.listServ p {
padding: 10px;
}

/* ---------- 3. links and navigation ---------- */

a {/* default link style */
color: #333399;
text-decoration: none;
}

a:hover {
color: #ff0000;
text-decoration: none;
}

.top {
font-size: 0.9em;
}
		
/* -- main navigation -- */
#nav {
display: none;
}
		
/* ---------- 4. fonts ---------- */

h1 {
font-size: 18pt;
}

h2 {
font-size: 16pt;
}

h2 {
font-size: 14pt;
margin-bottom: 10pt;
}

p, li {
margin: 0 10pt 5pt 0;
}

/* ---------- 5. images ---------- */

a img {/* remove borders from linked images */
border: 0;
}
		
.logo img {
display: none;
}

img.cal {
margin-top: 10px;
}
		
/* ---------- 6. footer ---------- */

#footer { 
background:#dcd7d7; 
padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
#footer p {
margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
</pre></body></html>