<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sliderArea{
	width:600px;
	height:370px;
	margin:0 auto;
}
.sliderArea .titleBar{
	border:solid 2px #cccccc;
	padding:18px;
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(220,220,220,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(220,220,220,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(220,220,220,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(220,220,220,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(220,220,220,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(220,220,220,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dcdcdc',GradientType=0 ); /* IE6-9 */
}

.sliderArea .titleBar h3 {
	width:auto !important;
	border-bottom:none !important;
	background:none !important;
	color:#333333 !important;
	margin:0 !important;
	padding:0 0 0 10px !important;
	height:auto !important;
	display:inline-block !important;
	position:relative !important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	font-size:30px !important;
	border-left:solid 14px #de0000;
}

.slider {
  position: relative;
  width: 360px;
  height: 100%;
  overflow: hidden;
  text-align:center;
  padding-top:20px;
	margin: 0 auto;
}

.slides {
  height: 100%;
  /* Clear fix */
  overflow: hidden;
  *zoom: 1;
  /**
   * Prevent blinking issue
   * Not tested. Experimental.
   */
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.slide {
  height: 100%;
  float: left;
  clear: none;
}

.slider-arrow {
  position: absolute;
  display: block;
  margin-bottom: 0;
  bottom:50px;
}

.slider-arrow--right {
  top: 300px;
  right: 0;
  content:"";
  background:url(../img/slider_arrow.png) -41px 0 no-repeat;
  width:41px;
  height:41px;
}

.slider-arrow--left {
  top: 300px;
  left: 0;
  content:"";
  background:url(../img/slider_arrow.png) 0 0 no-repeat;
  width:41px;
  height:41px;
}

.slider-nav {
  position: absolute;
  top: 310px;
}

.slider-nav__item {
  width: 16px;
  height: 16px;
  float: left;
  clear: none;
  display: block;
  margin: 0 10px;
  background: #cccccc;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}

.slider-nav__item:hover {
  background: #000;
}

.slider-nav__item--current {
  background: #000;
}
</pre></body></html>