.gallerywrapper {
	position: relative; /*leave as is*/
	overflow: hidden; /*leave as is*/
	width: 100%;
	height:100%;
	margin:0;
	padding:0;
}
.sliderwrapper {
	position: relative; /*leave as is*/
	overflow: hidden; /*leave as is*/
	width: 100%;
	height: 300px;
	margin:0;
	padding:0;
}
.sliderwrapper .contentdiv {
	visibility: hidden; /*leave as is*/
	position: absolute; /*leave as is*/
	left: 0;  /*leave as is*/
	top: 0;  /*leave as is*/
	padding: 0;
	/*background: white;*/
	width: 100%; /*width of content DIVs within slider. Total width should equal slider's inner width (390+5+5=400) */
	height: 100%;
filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
.pagination {
	width: 100%;
	text-align: center;
	/* background-color: navy; */
	/* padding: 5px 10px; */
	position: absolute;
	top: 130px;
	z-index: 10000;
}
.pagination a {
	background: white;
	text-decoration: none;
	font-size: 20px;
	color: cadetblue;
	padding: 1px 10px;
	border-radius: 20px;
	opacity: 0.5;
}
.pagination a:hover, .pagination a.selected {
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	opacity:0.9
}
.prev {/* margin-left: 10px; */
	position: absolute;
	left: 10px;
	z-index:9999;
}
.next {/* margin-left: 10px; */
	position: absolute;
	right: 10px;
	z-index:9999;
}
