@charset "UTF-8";
/* CSS Document */

body {
	font: 100% Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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 */
	color: #000000;
	background-color: #9CC;
	
}


h1 {
	font-size:28px;
	color: #006;
}
h2 {
	font-size:18px;
	color: #006;
}
h3 {
	font-size:16px;
	color: #006
}
h4 {
	font-size:24px;
	color: #006
}
a:link {
	color: #006;
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
	color: #006;
}
a:hover {
	text-decoration: none;
	color: #066;
}
a:active {
	text-decoration: underline;
	color: #FFF;
}

.b:link {
	color: #FFF;
	text-decoration: underline;
}

.b:visited {
	text-decoration: underline;
	color: #222;
}

.b:hover {
	text-decoration: none;
	color: #FFF;
}

.b:active {
	text-decoration: underline;
	color: #FFF;
}

.smalltext {
	font-size:10px;
	}

.bluetext {
	color:#006;
}

.mediumtext {
	font-size:12px;
}

.centering {
	text-align: center;
}
.border {
	border: 1px solid #006;
}

