/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.help {
  position: relative;
  z-index: 0;
}
.help:hover {
  background-color: transparent;
  z-index: 50;
}

fieldset .help img {
	position: relative;
	top: 3px;
  left: 1px;
  cursor: help;
}

.help span {
  position: absolute;
  padding: 10px;
  left: -1000px;
  width: 230px;
  border: 4px solid #F67B19;
	-moz-border-radius: 8px;
	-khtml-border-radius: 8px;
	-webkit-border-radius: 8px;
	background-color: black;
	opacity: .9;
  visibility: hidden;
  font-size: 12px;
	text-align: center;
  text-decoration: none;
	color: #F4F4F4;
}
.help:hover span {
  visibility: visible;
  top: 19px;
  left: -240px; /*position where enlarged image should offset horizontally */
}
