<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
CSS Name: Shadow Design with CSS3
Description: Gives your scrollGallery a shadow style. Lines of description are limited depending on the font-size.
Author: Benedikt Morschheuser
Version: 1.0
*/

div.bmo_scrollGallery div.bmo_the_gallery_thumbs div.bmo_the_gallery_image a{
	width:100%;	/*dont use padding or margins here, use the % width and hight to reduce the size of the inner images*/
	height:100%;
}

div.bmo_scrollGallery div.bmo_the_gallery_thumbs div.bmo_the_gallery_image a img{
    padding:3px;
    -moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0 0 3px #888;
	-webkit-box-shadow: 0 0 3px #888;
	box-shadow: 0 0 3px #888;
	max-width:75%;
	max-height:75%;
}

div.bmo_scrollGallery div.bmo_the_gallery_images div.bmo_the_gallery_image img{
	background: url("../imgs/ajax-loader.gif") no-repeat scroll center center #ffffff;
	/*styles to center images*/
	vertical-align:top;
	display:inline;
	max-height:82%; /*dont use padding or margins here, use the % width and hight to reduce the size of the inner images*/
	max-width:95%;
    
    margin-top:2px;
    padding:5px;
    -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 0 5px #888;
	-webkit-box-shadow: 0 0 5px #888;
	box-shadow: 0 0 5px #888;
}

div.bmo_scrollGallery div.bmo_the_gallery_images div.bmo_the_gallery_image div.bmo_the_gallery_caption{
    min-height:15%;
    bottom:0px;
}

div.bmo_scrollGallery div.bmo_the_gallery_images div.bmo_the_gallery_image div.bmo_the_gallery_caption div.bmo_the_gallery_caption_text{
    background-color:transparent;
    color:#000;
    width:100%;
    text-align:center;
}

div.bmo_scrollGallery a.bmo_the_gallery_image_arrows{
	display: block;
	width:50%;
    height: auto;
    min-height: 82%;
    outline: medium none;
    overflow: hidden;
    position: absolute;
    top: 0;
	cursor:pointer;
}


/*schrift unter bild:
img max- height:80%;
zusÃ¤tzlich auf img ein paading-bottom. Das geht!

oder das vertical align auf top setzen und max-heit auf 70% und caption mit top:70% possitionieren
breite der caption dann 100% und mit text-aling center text zentrieren
*/</pre></body></html>