/* CSS Document */

/* Images Show*/
.thumbnailed{
position: relative;
z-index: 0;
}
.thumbnailed:hover{
background-color: #FFFFFF;
z-index: 50;
}
.thumbnailed span{ /*CSS for enlarged image*/
position: absolute;
background-color: #000000;
padding: 5px;
left: -1000px;
top: 15%;
border: 1px solid #CCCCCC;
visibility: hidden;
color: #FFFFFF;
text-decoration: none;
}
.thumbnailed span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbnailed:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 15%; /*position where enlarged image should offset horizontally */
	background-color: #000000;
	left: 10%;
	position: fixed;
}

/* --------------------------*/
.thumbnail{
position: relative;
z-index: 0;
}
.thumbnail:hover{
background-color: transparent;
z-index: 50;
}
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #000000;
padding: 5px;
left: -1000px;
border: 1px solid #CC0000;
visibility: hidden;
color: #FFFFFF;
text-decoration: none;
}
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 100%;
left: 0px; /*position where enlarged image should offset horizontally */
}

/* --------------------------*/
.thumbnailer{
position: relative;
z-index: 0;
}
.thumbnailer:hover{
background-color: transparent;
z-index: 50;
}
.thumbnailer span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFFFFF;
padding: 5px;
left: -1000px;
border: 1px solid #CC0000;
visibility: hidden;
color: black;
text-decoration: none;
}
.thumbnailer span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbnailer:hover span{ /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 50%;
	left: -50%; /*position where enlarged image should offset horizontally */
	position: relative;
}

/* --------------------------*/
.thumbflash{
position: relative;
z-index: 0;
}
.thumbflash:hover{
background-color: transparent;
z-index: 50;
}
.thumbflash span{ /*CSS for enlarged image*/
position: absolute;
background-color: #000000;
padding: 5px;
left: -1000px;
border: 1px solid #CC0000;
visibility: hidden;
color: #FFFFFF;
text-decoration: none;
}
.thumbflash span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbflash:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 100%;
left: 0px; /*position where enlarged image should offset horizontally */
}

/* --------------------------*/
.thumbflasher{
position: relative;
z-index: 0;
}
.thumbflasher:hover{
background-color: transparent;
z-index: 50;
}
.thumbflasher span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFFFFF;
padding: 5px;
left: -1000px;
border: 1px solid #CC0000;
visibility: hidden;
color: black;
text-decoration: none;
}
.thumbflasher span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbflasher:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 100%;
left: 0px; /*position where enlarged image should offset horizontally */
}
/* Images Show End*/
