@charset "UTF-8";
/* CSS Document */

.kioskpic{
position: relative;
z-index: 0;
}

.kioskpic:hover{
background-color: transparent;
z-index: 50;
}

.kioskpic span{ /*CSS for enlarged image*/
position: absolute;
left: -1000px;
visibility: hidden;
border-style: solid;
border-width: 2px;
border-color: #0b4f80;
text-decoration: none;
}

.kioskpic  img{ /*CSS for enlarged image*/
border-style: solid;
border-width: 2px;
border-color: #0b4f80;
}

.kioskpic span img{ /*CSS for enlarged image*/
border-style: solid;
border-width: 2px;
border-color: #0b4f80;
}

.kioskpic:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -200px; /*position where enlarged image should offset vertically   */
left: 60px; /*position where enlarged image should offset horizontally */

}

.rightpicture{
position: relative;
z-index: 0;
}

.rightpicture:hover{
background-color: transparent;
z-index: 50;
}

.rightpicture span{ /*CSS for enlarged image*/
position: absolute;
left: -1000px;
visibility: hidden;
border-style: solid;
border-width: 2px;
border-color: #0b4f80;
text-decoration: none;
}

.rightpicture  img{ /*CSS for enlarged image*/
border-style: solid;
border-width: 2px;
border-color: #0b4f80;
}

.rightpicture span img{ /*CSS for enlarged image*/
border-style: solid;
border-width: 2px;
border-color: #0b4f80;
}

.rightpicture:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -200px; /*position where enlarged image should offset vertically   */
left: 60px; /*position where enlarged image should offset horizontally */

}

