<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.artist-t{
position: relative;
z-index: 0;
text-decoration:none !important;
font-weight:normal !important;
//font-size: 12px;
font-size: 14px;
}

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

.artist-t span{ /*CSS for enlarged image*/
position: absolute;
background-color: transparent;
padding: 0px;
left: -1000px;
border: 0px ridge brown;
visibility: hidden;
}

.artist-t span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;
width:90px;
}

.artist-t:hover span{ /*CSS for enlarged image on hover*/
visibility: visible; 
margin-top:-160px;
//margin-top:-150px; /* For IE and earlier */
left: 8px; /*position where enlarged image should offset horizontally */
}
</pre></body></html>