/*
CSS Name: CSS3 Shadow-Design 
Description: Gives your NextGEN scrollGallery a shadow style.
Author: Benedikt Morschheuser
Version: 1.1
ImgMargins: 0px 0px 0px 0px;
ThumbMargins: 4px 4px 4px 4px;
*/

/* ----------- Styles extend -------------*/
.scrollGallery2{
}
.scrollGallery2 .scrollGallery2Head{
}
.scrollGallery2 .scrollGallery2Foot{
}
.scrollGallery2 .thumbarea{
}
.scrollGallery2 .thumbarea ul li img{
	-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;/*ThumbMargins = border+margins*/
	margin: 0px 4px 0px 4px; /*never use here bottom and top margins.*/
}
.scrollGallery2 .imagearea{
}
.scrollGallery2 .imagearea ul li img{
	max-height: 95%;
    max-width: 95%;
	-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;
}


.scrollGallery2 .imagearea ul li .caption_container div{
	border:1px solid #fff;
	font-size: 0.8em;
    font-weight: bold;
    padding-bottom: 5px;
}

.scrollGallery2 .prev_button{
}
.scrollGallery2 .next_button{
}
.scrollGallery2 .prev_arrow{
}
.scrollGallery2 .next_arrow{
}



