/*CSS used on weddings page*/

/*horizontal image*/
.ipoph{
position: relative;
z-index: 0;
}

.ipoph:hover{
background-color: transparent;
z-index: 50;
}

.ipoph span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFF;
padding: 7px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;

filter:alpha(opacity=80);
-moz-opacity: 0.80;
opacity: 0.80;
}

.ipoph span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.ipoph:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 100;
left: -400px; /*position where enlarged image should offset horizontally */
}

/*vertical image*/
.ipopv{
position: relative;
z-index: 0;
}

.ipopv:hover{
background-color: transparent;
z-index: 50;
}

.ipopv span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFF;
padding: 7px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;

filter:alpha(opacity=80);
-moz-opacity: 0.80;
opacity: 0.80;
}

.ipopv span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.ipopv:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 100;
left: -315px; /*position where enlarged image should offset horizontally */
}