@charset "utf-8";
/* CSS Document */

.bdopopup {
	float: left;
	clear: left; /* if you float right then clear right */
}

.bdopopup a { 
	display:block;
	text-decoration: none;
	cursor: default;
/* add cursor:default; to this rule to disable the hand cursor */
}
.bdopopup span img {
	border: 1px solid #FFFFFF; /* adds a border around the image */
	margin-bottom: 2px; /* pushes the text down from the image */
}

.bdopopup a span {  /* this is for the large image and the caption */
	position: absolute;
	display: none;
	color: #FFCC00; /* caption text colour */
	text-decoration: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px; /* caption text size */
	background-color: #000000;
	font-weight: bold;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 13px;
	padding-left: 10px;
}

.bdopopup img {
border-width: 0;
}

.bdopopup a:hover span {
	display: block;
	position: absolute;
	top: 238px;
	left: 320px;
	z-index: 100;
}
