  /* 
infomap.css
Steve Boerner
Modified April 25, 2013
	Removed border and margin from img definition
	Added top margin to h1
*/

#infoMap {
	position: relative;
}

#infoImage {
	width: 600px;
	height: 400px; /* Override this as needed */
	position: relative;
}

.infoPoint {
	width: 20px;
	height: 20px;
	position: absolute;
	z-index: 200; 
	background-image: url('/pr/Review/css/img/infogold.png');
	background-repeat: no-repeat;
	background-position: center center;
}

.infoPoint:hover {
	background-image: url('/pr/Review/css/img/infoblue.png');
	background-repeat: no-repeat;
	background-position: center center;
}

#infoTip {
	width: 200px;
	height: auto;
	position: absolute;
	z-index: 201;
	background-color: rgba(255,255,255,0.8);
	padding: 8px 10px 10px 10px;
}

#infoTip h1 {
	font-family: "Verdana", "Arial", "Helvetica", sans-serif;
	font-size: 80%;
	color: #03c;
	line-height: 120%;
	margin: 5px 0 0 0;
	border: none;
}

#infoTip p {
	font-family: "Verdana", "Arial", "Helvetica", sans-serif;
	font-size: 75%;
	color: #000;
	line-height: 120%;
	margin: 5px 0 0 0;
	padding: 0;
}

#infoTip img {
	/* margin-bottom: 10px; */
	/* border: #bbb solid 1px; */
}
