p {
	font-family: "Times New Roman", Times, serif;
	font-size: 12pt;
	line-height: 14pt;
}

h2 {
	font-size: 14pt;
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
}
.copyright {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 15px;
	color: #666666;
}
a {
	color: #535744;
}
ul {
	font-family: "Times New Roman", Times, serif;
	font-size: 12pt;
	line-height: 14pt;
}
input {
	background-color: #F2F2DF;
	border: 1px solid #000000;
}

/* Image preview hover classes */

.thumbnail{
	position: relative;
	z-index: 0;
}

.thumbnail:hover{
	background-color: transparent;
	z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: lightyellow;
	padding: 5px;
	left: -1000px;
	border: 1px dashed gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: -25px;
	left: 50px; /*position where enlarged image should offset horizontally */
}

/* End image preview hover classes */