/* CSS Document */

.example1 a{position:relative;
height: 10px;
text-align:left;
}/* set stacking context*/

.example1 a span{
z-index: 0;
visibility:hidden;/* hide message initially*/
position:absolute;
top:-500px;
left:-50px;
width:600px;
text-decoration: none;
border:0px;
padding:1px;
color:#fff;
}

.example1 a:hover{
z-index: 50;
visibility:visible;
text-decoration: none;
border: 0px;}/* ie bug needed to make span show*/

.example1 a:hover span{
z-index: 50;
visibility:visible;
text-decoration: none;
border: 0px;
}/* reveal image*/

.null{
z-index: 50;
text-decoration: none;
border: 10px;
color:#fff;
padding: 0px 2px 0px 2px;}


.example2 a{position:relative;
height: 10px;
text-align:left;
}/* set stacking context*/

.example2 a span{
z-index: 0;
visibility:hidden;/* hide message initially*/
position:absolute;
top:-350px;
left:-50px;
width:600px;
text-decoration: none;
border:0px;
padding:1px;
color:#fff;
}

.example2 a:hover{
z-index: 50;
visibility:visible;
text-decoration: none;
border: 0px;}/* ie bug needed to make span show*/

.example2 a:hover span{
z-index: 50;
visibility:visible;
text-decoration: none;
border: 0px;
}/* reveal image*/


