/* CSS for 1024x768 align absolute vertically & horizontally center of page starts */
/* source: http://perishablepress.com/absolutely-centered-layout/ */
body {
	background-color: #FFFFFF; /* cosmetic */
	margin: 0px; /* required */
}
div#wrapper {
	background-color: #FFFFFF; /* cosmetic */
	height: 0px; /* set to taste */

	/* required */
	position: absolute;
	overflow: visible;
	display: block;
	width: 100%;
	left: 0px;
	top: 50%;
}
div#center {
	border: 0px solid #FFFFFF;
	overflow: hidden;
	position: absolute;
	left: 50%;
	margin-left: -512px;
	width: 1024px;
	height: 768px;
	top: -384px;
	background-color: #FFFFFF;
}
/* CSS for 1024x768 align absolute vertically & horizontally center of page ends */
/* ---- */
/* ---------------------------Text Styles starts--------------------------------- */
/* ---- */
body {
	font-family: Arial;
	color: #5b686e; /* Grey R91 G104 B110 */
	font-size: 15px;
	line-height: 24px;
	text-align: left;
}
a:link {
	color: #5b686e; /* Grey R91 G104 B110 */
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #5b686e; /* Grey R91 G104 B110 */
}
a:hover {
	text-decoration: underline;
	color: #F76114; /* Orange R247 G97 B20 */
	letter-spacing: normal;
}
a:active {
	text-decoration: underline;
	color: #F76114; /* Dark Orange R214 G112 B59 */
}
/* Top Navigation */
.topnav {
	font-family: Arial;
	text-align: center;
	font-size: 19px;
	line-height: 19px;
	color: #5b686e; /* Grey R91 G104 B110 */
}
.topnav a:link {
	text-decoration: none;
	color: #5b686e; /* Grey R91 G104 B110 */
}
.topnav a:visited {
	text-decoration: none;
	color: #5b686e; /* Grey R91 G104 B110 */
}
.topnav a:hover {
	color: #F76114; /* Orange R247 G97 B20 */
	font-size: 19px;
}
.topnav a:active {
	text-decoration: none;
	color: #F76114; /* Dark Orange R214 G112 B59 */
	font-size: 18px;
	font-weight: bold;
}
.topnav-atpage {
	font-family: Arial;
	text-align: center;
	font-size: 19px;
	line-height: 19px;
	color: #C75516; /* Dark Orange R214 G112 B59 */
}
.copyright_text {
	font-size: 11px;
	color: #6e7c83; /* Grey R110 G124 B131 */
}