/* Help preview in layer */
.Help{
position: absolute;
z-index: 0;
text-decoration: none;
}

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

.Help span{ /*CSS for enlarged text*/
position: absolute;
visibility: hidden;
border: 1px solid #C1C1C1;
background-color: #ffffff;
padding: 10px;
width: 300px;
font-weight: normal;
text-decoration: none;
z-index: 100;
}

.Help span img{ /*CSS for enlarged text*/
border-width: 0;
padding: 10px;
}

.Help:hover span{ /*CSS for enlarged text on hover*/
visibility: visible;
top: -100px;
left: -100px; /*position where enlarged text should offset horizontally */
}



