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

body {
	background-color: #CCCCCC;
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(images/splash-fade.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	margin: 0px;
	text-align: left;
	font-size: 12px;
	line-height: 20px;
	color: #FFFFFF;
	letter-spacing: 1px;
}
a {
	color: #FFFF99;
	text-decoration: none;
}
a:active {
	color: #FFFF99;
	text-decoration: none;
}
a:visited {
	color: #FFFF99;
	text-decoration: none;
}
a:hover {
	color: #FF6600;
	text-decoration: none;
}
.splash #header {
	text-decoration: none;
	text-align: center;
	height: 40px;
	padding-top: 15px;
}
.splash #content {
	text-align: center;
}
.splash #footer {
	font-size: 10px;
	text-align: center;
	padding-top: 35px;
	padding-bottom: 10px;
	color: #666666;
	letter-spacing: 0px;
}
.splash #footer a {
	color: #666666;
} 
.splash #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: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
	
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	
}
.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;
	height:1px;
	font-size: 0px;
	line-height: 0px;
}
