/*** Print styles that only show when page is printed ***/
@media print{

	div#print {
		display: block;
		padding: 10px 10px 10px 5px;
		text-align: left;
		font-size: 10px;
		border: 1px solid silver;
	}

/* end print styles */
}


/*** Screen styles that only show when page is on screen ***/
@media screen{

	#print {
		display: none;
	}

}

/*******************************************************************/
/* General global tags */

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: Trebuchet MS, helvetica, arial, sans-serif;
	font-size: 13px;
}

img {
	border: none;
}

/* blue line */
hr {
	height:0px; 
    border:0px; 
    border-top: 1px solid #17257D; 
	padding-bottom: 1em;
	clear: both;
}

/* spaced lists */
ul.spaced,
ul.spaced li {
	padding-bottom: 1em;
}

/*******************************************************************/
/* Anchors */

/* Dark blue link color*/
a, .linkcolor{
	color: #17257D;
}

a {
	text-decoration: underline;
}

a:hover {
	color: #DC143C; /* Crimson */
	text-decoration: underline;
}

/*this avoids having image replacement sections display a dotted outline*/
a:focus {
	outline-style: none;
}

/*******************************************************************/
/* My Classes */

.off-left {
	position: absolute;
	left: -999px;
	width: 900px;
}

.left {
	text-align: left;
}

.center {
	text-align: center;
}

.content {
	margin: 0px;
	padding: 10px;
	clear: left;
}

.clear {
	clear: both;
}

.navyblue {
	color: #17257D;
}

.crimson {
	color: #DC143C;
}

/* Hide from user, but screen readers and text-only browsers can "see" this */
#preloader {
	position: absolute;
	top: -1000px;
}

/* doesn't work with HTML headings because it needs DIV to draw line on bottom */
div.heading {
	margin-bottom: 1em;
	padding: 5px;
	font-size: 18pt;
	font-style: italic;
	font-weight: bold;
	font-family: Century Gothic, sans-serif;
	border-bottom: 1px solid black;
}

.two-column {
	float: left;
	width: 400px;
	padding-right: 45px;
}