﻿/*These styles control enlarged hover images*/

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #ffffff;
padding: 5px;
left: -1000px;
border: 2px solid gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 1px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 50px; /*position where enlarged image should offset horizontally */

}


/*These styles control enlarged hover images on the right side of the screenshotsMain page*/

.thumbnailRight{
position: relative;
z-index: 0;
}

.thumbnailRight:hover{
background-color: transparent;
z-index: 50;
}

.thumbnailRight span{ /*CSS for enlarged image*/
position: absolute;
background-color: #ffffff;
padding: 5px;
left: -1000px;
border: 2px solid gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnailRight span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 1px;
}

.thumbnailRight:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: -120px; /*position where enlarged image should offset horizontally */

}


/*These styles control enlarged hover images on the right side of the screenshotsMasterTask page*/

.thumbnailLeft{
position: relative;
z-index: 0;
}

.thumbnailLeftt:hover{
background-color: transparent;
z-index: 50;
}

.thumbnailLeft span{ /*CSS for enlarged image*/
position: absolute;
background-color: #ffffff;
padding: 5px;
left: -1000px;
border: 2px solid gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnaiLeft span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 1px;
}

.thumbnailLeft:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 225px; /*position where enlarged image should offset horizontally */

}






