<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
	Page style
*/

#tourgallery
{
	width: 545px;
	height: 100px;
	position: relative;
}

/*
	Slideshow
*/

#tourgallery-item
{
	width: 545px;
	position: absolute;
	z-index: 100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

#tourgallery-item .slides_container
{
	overflow: hidden;
	position: relative;
	display: none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

#tourgallery-item .slides_container div#item
{
	width: 100px;
	height: 100px;
	display: block;
}

/*
	Pagination
*/

#tourgallery-item .pagination
{
	margin: 26px auto 0;
	width: 100px;
	position: absolute;
	top: -10000;
	display: none;
}

#tourgallery-item ul.pagination, #tourgallery-item .pagination ul, #tourgallery-item .pagination a
{
	position: absolute !important;
	top: -10000 !important;
	border: 1px green solid;
	visibility: hidden;
	display: none;
}

#tourgallery-item .pagination li
{
	float: left;
	margin: 0 1px;
	list-style: none;
	position: absolute;
	top: -10000;
	display: none;
}

#tourgallery-item .pagination li a
{
	display: block;
	width: 12px;
	height: 0;
	padding-top: 12px;
	background-image: url(../Images/pagination.png);
	background-position: 0 0;
	float: left;
	overflow: hidden;
	position: absolute;
	top: -10000;
	display: none;
}

#tourgallery-item .pagination li.current a
{
	background-position: 0 -12px;
	position: absolute;
	top: -10000;
	display: none;
}

/*
	Next/prev buttons
*/

#tourgallery-item .tour-next, #tourgallery-item .tour-prev
{
	position: absolute;
	left: -39px;
	top: 34px;
	width: 32px;
	height: 32px; /*display: none;*/
	z-index: 101;
}

#tourgallery-item .tour-next
{
	left: 552px;
}

/*#container .article img
{
	margin-right: 0px !important;
}*/

#menu
{
	z-index: 999 !important;
}
</pre></body></html>