@charset "UTF-8";
html{ overflow-y: scroll; }
body  {
	background-image:url("Images/background.gif");
	background-repeat:repeat-x;
	background-color:#E8E7EF;
	padding: 0;
	text-align: center;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 100%;
	margin-top: 50;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #5DA5FF;
}

.headline {
	color: #5DA5FF;
	font-size: 120%;
	font-weight: bold;
}

a:link {
	color: #5DA5FF;
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
	color: #5DA5FF;
}
a:hover {
	text-decoration: none;
	color: #3D75FF;
}
a:active {
	text-decoration: none;
	color: #FF5555;
}

a.active {
	color: #FF5555;
}

.layout #container {
	width: 900px;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.layout #header {
	text-align: left;
	padding: 0;
	width: 900px;
} 
.layout #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0;
}
.layout #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 270px;
	padding-top: 30px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 40px;
	margin: 0px;
	font-size: 100%;
}
.layout #mainContent {
	padding-top: 15px;
	width: 560px;
	float: right;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
} 

.layout #imagecontainer {
}

.layout #imagecontainer ul li {
	display: block;
	float: left;
	padding-bottom: 1em;
}

.layout #footer {
	text-align: center;
	clear: both;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	margin: 0px;
} 
.layout #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 */
}

#navhoriz {
	float: right;
	margin-bottom: 50px;
	width: 900px;
}
#navhoriz ul li {
	display: inline;
	float: left;
	background-color: transparent;
	font-size: 185%;
	color: #5DA5FF;
	text-decoration: none;
	float: left;
	width: auto;
	padding-right: 30px;
}
#navhoriz ul li a {
	display: inline;
	color: #5DA5FF;
	text-decoration: none;
	float: left;
	width: auto;
}
#navhoriz ul li a:hover {
	color: #3D75FF;
}

#navhoriz ul li a:active, #navhoriz ul li a.active, #navhoriz ul li a.activesmaller {
	color: #FF5555;
}

.smaller {
	font-size: 60%;
	vertical-align: bottom;
	margin-top: 10px;
}

.activesmaller {
	font-size: 60%;
	vertical-align: bottom;
	margin-top: 10px;
}

#navhoriz2 {
	float: right;
	width: 900px;
	margin-bottom: 50px;
}
#navhoriz2 ul li {
	display: inline;
	float: left;
	background-color: transparent;
}
#navhoriz2 ul li a {
	color: #5DA5FF;
	text-decoration: none;
	float: left;
	width: 80px;
	width: 150px;
	padding-top: 0em;
	padding-bottom: 0em;
	padding-left: 0em;
	font-size: 90%;
	padding-right: 1em;
}
#navhoriz2 ul li a:hover {
	color: #3D75FF;
}

#navhoriz2 ul li a:active, #navhoriz2 ul li a.active {
	color: #FF5555;
}

.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;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

