<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.swipebox {
	overflow: hidden!important;
}

#swipebox-overlay img {
	border: none!important;
}

#swipebox-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999!important;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

#swipebox-slider {
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	white-space: nowrap;
	position: absolute;
	display: none;
}

#swipebox-slider .slide {
	background: url("img/swipebox-loader.gif") no-repeat center center;
	height: 100%;
	width: 100%;
	line-height: 1px;
	text-align: center;
	display: inline-block;
}

#swipebox-slider .slide:before {
	content: "";
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px;
}

#swipebox-slider .slide img {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}

#swipebox-top, #swipebox-bottom {
	position: absolute;
	left: 0;
	z-index: 999;
	height: 50px;
	width: 100%;
}

#swipebox-top {
	top: -50px;
}

#swipebox-top.visible-bars {
	top: 0;
}

#swipebox-top.force-visible-bars {
	top: 0!important;
}

#swipebox-bottom {
	bottom: -50px;
	text-align: center;
}

#swipebox-bottom.visible-bars {
	bottom: 0;
}

#swipebox-bottom.force-visible-bars {
	bottom: 0!important;
}

#swipebox-caption {
	text-align:center;
	margin-top:10px;
	font-size: 20px;
	font-size: 2.0rem;
}

#swipebox-bottom #swipebox-prev, #swipebox-bottom #swipebox-next,
#swipebox-top #swipebox-close {
	background-image: url("img/swipebox-icons.png");
	background-repeat: no-repeat;
	border: none!important;
	text-decoration: none!important;
	cursor: pointer;
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
}

#swipebox-top #swipebox-close {
	background-position: 15px 12px;
	right: 40px;
}

#swipebox-bottom #swipebox-prev {
	background-position: -32px 13px;
	right: 100px;
}

#swipebox-bottom #swipebox-next {
	background-position: -78px 13px;
	right: 40px;
}

#swipebox-bottom #swipebox-prev.disabled,
#swipebox-bottom #swipebox-next.disabled {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
	opacity: 0.3;
}

#swipebox-slider.rightSpring {
	-moz-animation: rightSpring 0.3s;
	-webkit-animation: rightSpring 0.3s;
}

#swipebox-slider.leftSpring {
	-moz-animation: leftSpring 0.3s;
	-webkit-animation: leftSpring 0.3s;
}

@-moz-keyframes rightSpring {
  0% {
    margin-left: 0px;
  }

  50% {
    margin-left: -30px;
  }

  100% {
    margin-left: 0px;
  }
}

@-moz-keyframes leftSpring {
  0% {
    margin-left: 0px;
  }

  50% {
    margin-left: 30px;
  }

  100% {
    margin-left: 0px;
  }
}

@-webkit-keyframes rightSpring {
  0% {
    margin-left: 0px;
  }

  50% {
    margin-left: -30px;
  }

  100% {
    margin-left: 0px;
  }
}

@-webkit-keyframes leftSpring {
  0% {
    margin-left: 0px;
  }

  50% {
    margin-left: 30px;
  }

  100% {
    margin-left: 0px;
  }
}

/* Skin 
--------------------------*/

#swipebox-overlay {
	background: #0d0d0d;
}

#swipebox-top, #swipebox-bottom {
	text-shadow: 1px 1px 1px black;
	background: #222;
	-moz-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.05);
}

#swipebox-bottom {
	-webkit-box-shadow: 0 -1px -1px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 -1px -1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 -1px -1px 1px rgba(0, 0, 0, 0.05);
}

/* Responsive 
--------------------------*/

@media screen and (max-width: 490px) {

	#swipebox-caption {
		text-align:left;
		padding-left:15px;
		font-size: 16px;
		font-size: 1.6rem;
	}
	#swipebox-top #swipebox-close {
		right: 15px;
	}
	#swipebox-bottom #swipebox-prev {
		right: 60px;
	}
	#swipebox-bottom #swipebox-next {
		right: 15px;
	}

}</pre></body></html>