

/* Some gallery settings are configurable in the CMS and are therefore set in a <style> block in the HTML <head>. */

#gallery>div {
    position: relative;
}
#gallery img {
    border-style: solid;
}
#gallery img#gallery-large,
#gallery img.active {
   
}
#gallery .thumbs td img {
	cursor: pointer;
}
#gallery .thumbs td img.active {}
#gallery .thumbs td.last img {
    margin-right: 0;
}
#gallery .caption {
	background: #fff;
	position: absolute; /*Note: Without position, opacity doesn't work in IE */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; /* IE 8 */
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75); /* Older IEs */
	opacity: 0.75; /* Real browsers */
}
#gallery .caption .title {
    font-weight: bold;
    color: #aaa;
    font-size: 1.3em;
    text-align: left;
}
#gallery .caption .description {
    color: #000;
    text-align: left;
}
img.further_image {
    display: none;
}

