/* lja-rollpic */
/* manages roll-over pics pictures
in /index.html and nothing else */
/* Derive from css at http://www.dynamicdrive.com/style/ */

.rollpic{
position: absolute;
padding: 0;
margin: 0;
z-index: 0;

}

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

.rollpic span{ /*CSS for revealed image text span*/
position: absolute;
background-color: grey;
xpadding: 5px;
left: -100em;
xborder: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.rollpic span img{ /*CSS for revealed image*/
border-width: 0;
xpadding: 2px;

}

.rollpic:hover span{ /*CSS for revealed image on hover*/
visibility: visible;
top:  0em;
left: 0em; /*position where revealed image should offset horizontally */

}
