/* 3a) The anchor surrounding the thumbnail */
a.vte {
	cursor: url(http://www.tromsprodukt.no/images/imgs/zoomin.cur), pointer;
    outline: none;
}
/* 3b) The thumbnail */
a.vte img {
	border: 0px solid gray;
}
/* 3c) The expanded image when focused. Focus and blur occurs when two or more images
are expanded at the same time. */
img.vte-expanded-focus {
	border: 4px solid black;
	cursor: url(http://www.tromsprodukt.no/images/imgs/zoomout.cur), pointer;
}
/* 3d) The expanded image when blurred */
img.vte-expanded-blur {
	border: 4px solid black;
}
/* 3e (Optional) The caption below the image. You can delete this rule if you don't use captions. 
Must be declared before .vte-display-block */
.vte-caption {
    display: none;
    border: 4px solid black;
    border-top: none;
    padding: 8px;
    margin-top: -1px;
    background-color: white;
    color: green;
    font: .70em verdana;
}
/* 3f) Necessary rules for toggling the thumbnail and the full-size image */
.vte-display-block {
    display: block;
}
.vte-display-none {
    display: none;
}
