
/* Background */
.rsMinW .rsOverflow,
.rsMinW .rsSlide,
.rsMinW .rsVideoFrameHolder,
.rsMinW .rsThumbs {
	background: #151515;
}


/***************
*
*  1. Arrows
*
****************/

.rsMinW .rsArrow {
	height: 70px;
	width: 70px;
	position: absolute;
	display: block;
	cursor: pointer;
	z-index: 999999999999999;
  }


.rsMinW .rsArrowLeft { left: 12%; bottom: 53%; }
.rsMinW .rsArrowRight { right: 12%; bottom:53%; }

.rsMinW .rsArrowLeft .rsArrowIcn{background: url("../images/Arrow-left.png") no-repeat scroll left top transparent; opacity:.5;filter:alpha(opacity=50);}
.rsMinW .rsArrowRight .rsArrowIcn{background: url("../images/Arrow-Right.png") no-repeat scroll left top transparent; opacity:.5;filter:alpha(opacity=50);}

.rsMinW .rsArrowIcn {
	height: 70px;
	width: 70px;
	position: absolute;	
	cursor: pointer;	
}
.rsMinW .rsArrowIcn:hover {
 opacity:1;filter:alpha(opacity=100);
}

.rsMinW .rsArrowDisabled .rsArrowIcn { opacity: .5; }


/***************
*
*  2. Bullets
*
****************/

.rsMinW .rsBullets {
	position: absolute;
	z-index: 35;
	bottom: 18px;
	right: 78px;
	width: auto;
	height: auto;
	text-align: left;
	overflow: hidden;
	line-height: 8px;
}
.rsMinW .rsBullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	margin: 0 5px;
	border-radius: 50%;
	background: #aaa;
	background: rgba(255,255,255,0.6);

	*display:inline; 
	*zoom:1;
}
.rsMinW .rsBullet.rsNavSelected  {
	background: #FFF;
}





/***************
*
*  3. Thumbnails
*
****************/

.rsMinW .rsThumbs {
	background: #FFF;
}
.rsMinW .rsThumbsHor {
	padding-bottom: 4px;
	width: 100%;
	height: 72px;
}
.rsMinW .rsThumbsVer {
	padding-right: 4px;
	width: 96px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.rsMinW.rsWithThumbsHor .rsThumbsContainer {
	position: relative;
	height: 100%;
}
.rsMinW.rsWithThumbsVer .rsThumbsContainer {
	position: relative;
	width: 100%;
}
.rsMinW .rsThumb {
	float: left;
	overflow: hidden;
	width: 96px;
	height: 72px;
	color: #555;
}
.rsMinW .rsThumb:hover {
	color: #000;
}
.rsMinW .rsThumb img {
	width: 100%;
	height: 100%;
}
.rsMinW .rsThumb.rsNavSelected {
	background: #dadada;
	color: #000;
}
.rsMinW .rsThumb.rsNavSelected img {
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.rsMinW .rsTmb {
	display: block;
}

/* Thumbnails arrow icons */
.rsMinW .rsThumbsArrow {
	height: 100%;
	width: 20px;
	position: absolute;
	display: block;
	cursor: pointer;	
	z-index: 21;	
	background: #fff;
	background: rgba(255,255,255,0.75);
}
.rsMinW .rsThumbsArrow:hover {
	background: #ddd;
}
.rsMinW.rsWithThumbsVer .rsThumbsArrow {
	width: 100%;
	height: 20px;
}
.rsMinW.rsWithThumbsVer .rsThumbsArrowLeft { top: 0; left: 0; }
.rsMinW.rsWithThumbsVer .rsThumbsArrowRight { bottom: 0;  left: 0; }

.rsMinW.rsWithThumbsHor .rsThumbsArrowLeft { left: 0; top: 0; }
.rsMinW.rsWithThumbsHor .rsThumbsArrowRight { right: 0; top:0; }

.rsMinW .rsThumbsArrowIcn {		
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin-top:-8px;	
	margin-left: -8px;
	position: absolute;	
	cursor: pointer;	
	background: url('rs-minimal-white.png');
}

.rsMinW.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn { background-position: -128px -32px; }
.rsMinW.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn { background-position: -128px -48px; }

.rsMinW.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn { background-position: -144px -32px; }
.rsMinW.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn { background-position: -144px -48px; }

.rsMinW .rsThumbsArrowDisabled { display: none !important; }

/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
	.rsMinW .rsThumb {
		width: 59px;
		height: 44px;
	}
	.rsMinW .rsThumbsHor {
		height: 44px;
	}
	.rsMinW .rsThumbsVer {
		width: 59px;
	}
}




/***************
*
*  4. Tabs
*
****************/

.rsMinW .rsTabs {
	width: 100%;
	height: auto;
	margin: 0 auto;
	text-align:center;
	overflow: hidden; padding-top: 12px; position: relative;
}
.rsMinW .rsTab {
	display: inline-block;
	cursor: pointer;
	text-align: center;
	height: auto;
	width: auto;
	color: #333;
	padding: 5px 13px 6px;
	min-width: 96px;
	border: 1px solid #D9D9DD;
	border-right: 1px solid #f5f5f5;
	text-decoration: none;

	background-color: #FFF;
	background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4); 
	background-image:    -moz-linear-gradient(top, #fefefe, #f4f4f4);
	background-image:         linear-gradient(to bottom, #fefefe, #f4f4f4);

	-webkit-box-shadow: inset 1px 0 0 #fff;
	box-shadow: inset 1px 0 0 #fff;

	*display:inline; 
	*zoom:1;
}
.rsMinW .rsTab:first-child {
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.rsMinW .rsTab:last-child { 
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;

	border-right:  1px solid #cfcfcf;
}
.rsMinW .rsTab:active { 
	border: 1px solid #D9D9DD;   
	background-color: #f4f4f4;
	    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
	box-shadow:  0 1px 4px rgba(0, 0, 0, 0.2) inset;
}
.rsMinW .rsTab.rsNavSelected { 
		color: white;
	border: 1px solid #999;
	text-shadow: 1px 1px #838383;
	-webkit-box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
	box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
	background: #ACACAC;
	background-image: -webkit-linear-gradient(top, #ACACAC, #BBB);
	background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
	background-image: linear-gradient(to bottom, #ACACAC, #BBB);
}





/***************
*
*  5. Fullscreen button
*
****************/

.rsMinW .rsFullscreenBtn {
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	z-index: 22;
	display: block;
	position: absolute;
	cursor: pointer;
	
}
.rsMinW .rsFullscreenIcn {
	display: block;
	margin: 6px;
	width: 32px;
	height: 32px;

	background: url('rs-minimal-white.png') 0 0;
	background-color: #eee;
	/*background-color: #fff;
	background-color: rgba(255,255,255,0.75);*/
	border-radius: 2px;

}
.rsMinW .rsFullscreenIcn:hover {
	background-color: #fff;
}
.rsMinW.rsFullscreen .rsFullscreenIcn {
	background-position: -32px 0;
}

/***************
*
*  6. Play/close video button
*
****************/

.rsMinW .rsPlayBtn {
	-webkit-tap-highlight-color:rgba(0,0,0,0.3);
	width:64px;
	height:64px;
	margin-left:-32px;
	margin-top:-32px;
	cursor: pointer;
}
.rsMinW .rsPlayBtnIcon {
	width:64px;
	display:block;
	height:64px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background:url(rs-minimal-white.png) no-repeat 0 -32px;
	background-color: #eee;
	background-color: rgba(238,238,238,0.75);
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4c000000', endColorstr='#4c000000');
	-webkit-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;
}
.rsMinW .rsPlayBtn:hover .rsPlayBtnIcon {
	background-color: #d5d5d5;
}
.rsMinW .rsBtnCenterer {
	position:absolute;
	left:50%;
	top:50%;
	width: 20px;
	height: 20px;
}
.rsMinW .rsCloseVideoBtn {
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	z-index: 23;
	position: absolute;
	cursor: pointer;
	
}
.rsDefault .rsCloseVideoBtn.rsiOSBtn {
	top: -38px;
	right: -6px;
	/*top: -6px;
	right: -38px;*/
}
.rsMinW .rsCloseVideoIcn {
	margin: 6px;
	width: 32px;
	height: 32px;
	background: url('rs-minimal-white.png') -64px 0;
	background-color: #fff;
	background-color: rgba(238,238,238,0.75);
}
.rsMinW .rsCloseVideoIcn:hover {
	background-color: #d5d5d5;
}



/***************
*
*  7. Preloader
*
****************/

.rsMinW .rsPreloader {
	width:20px;
	height:20px;
	background-image:url(../images/loader.gif);
	left:50%;
	top:50%;
	margin-left:-10px;
	margin-top:-10px;	
}


#full-width-slider {
  width: 100%;
}
.coloredBlock {
  padding: 12px;
  background:none;
  color: #FFF;
  width: 200px;
}
.infoBlock {
  position: absolute;
  width: 100%;
  margin:0 auto;
  padding-bottom: 0;
  background: none;
  overflow: hidden;
}
.infoBlockLeftBlack {
  color: #FFF;
  background: none;
 }
.infoBlock h4 {
  margin: auto 0;
  padding-bottom: 3px;
}
.infoBlock p {
  font-size: 14px;
  margin: 4px 0 0;
}

.photosBy {
  position: absolute;
  line-height: 24px;
  font-size: 12px;
  background: #FFF;
  color: #000;
  padding: 0px 10px;
  position: absolute;
  border-radius: 2px;
  z-index: 25; 
} 
.photosBy a {
  color: #000;
}
.fullWidth {
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (min-width:960px) and (min-height:660px) 
{
  .heroSlider .rsOverflow,
  .royalSlider.heroSlider {
      /*height: 580px !important;*/
      height:500px !important;
	  width:100%!important;
	 overflow:hidden;
  }
}

@media screen and (min-width:960px) and (min-height:1000px) {
    .heroSlider .rsOverflow,
    .royalSlider.heroSlider {
		width:100%!important;
		overflow:hidden;
       height: 500px !important;
        /* height: 400px !important;*/
    }
}
@media screen and (min-width: 0px) and (max-width: 800px) {
  .royalSlider.heroSlider,
  .royalSlider.heroSlider .rsOverflow {
   height: 300px !important;
     /*height:150px !important;*/
  }
  .infoBlock {
    padding:10px;
    height: 100%;
    max-height: 100%;
    min-width: 40%;
  }
  .infoBlock h3 {
     font-size: 14px;
     line-height: 17px;
  }
}
/*.royalSlider { width:100%!important; height:auto!important; min-height:580px;}*/
.royalSlider { width:100%!important; height:auto!important; min-height:500px;}
.slideleft {padding-top: 30px!important;}
