/* CSS Document */

body {
	font-family: Arial, Helvetica, sans-serif;
	color: #ffffff;
	border: 0;
	background-color: #000000;
	font-size: small;
}

/* TEXT LINK PROPERTIES (for white text) */
a:link {
	font-family: Arial;
	color: #ffffff;
	text-decoration: none;
}

a:visited {
	font-family: Arial;
	color: #ffffff;
	text-decoration: none;
}
a:hover {
	font-family: Arial;
	color: #666666;
	text-decoration: underline;	
}

/* TEXT LINK PROPERTIES (for black text) */
a.black:link {
	font-family: Arial;
	color: #000000;
	text-decoration: none;
}

a.black:visited {
	font-family: Arial;
	color: #000000;
	text-decoration: none;
}
a.black:hover {
	font-family: Arial;
	color: #666666;
	text-decoration: underline;	
}

/* IMAGE LINK PROPERTIES (for black border & blue hover) */
a.img:link {
	color: #000000;
	text-decoration: none;
}

a.img:visited {
	color: #000000;
	text-decoration: none;
}

a.img:hover {
	color: #000099;
	text-decoration: none;	
}

/* IMAGE LINK PROPERTIES (for white border & blue hover) */
a.gallery_img:link {
	color: #ffffff;
	text-decoration: none;
}

a.gallery_img:visited {
	color: #ffffff;
	text-decoration: none;
}
a.gallery_img:hover {
	color: #000099;
	text-decoration: none;	
}

/* Thin Solid Border */
.thin_border {
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}

/* White Table Cell */
td.white {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	background-color: #FFFFFF;
	padding: 10px;
}

/* Return to Gallery (close window) BUTTON */
.return_to_gallery_button {
	background-color: #333333;
	border: thin solid #ffffff;
	color: #FFFFFF;
}

/* Add vertical space to text */
.vertical_space {
	line-height: 150%;
}