 /*  
 
 RoyalSlider
 
 */
.royalSlider-event {	
	position:relative;
	/* set width and height of slider here, in px, % or em*/
	width:987px;
	height:330px;
	/* Used to prevent content "jumping" on page load. this property is removed when javascript is loaded and slider is instanciated */
	overflow:hidden;
}



/**
*  Slides area (set background here)
*/

.royalSlider-event .royalWrapper {
	overflow:hidden;	
	position:relative;

	width:100%; 
	height:100%;
}
.royalSlider-event .royalSlide,
.royalSlider-event .royalWrapper {
	/* Bakground behind slides */
	background: #111111; 
	background: -moz-linear-gradient(top, #111111 0%, #242424 100%); 	
	background: -webkit-linear-gradient(top, #111111 0%,#242424 100%); 
	background: -o-linear-gradient(top, #111111 0%,#242424 100%);
	background: -ms-linear-gradient(top, #111111 0%,#242424 100%); 	
	background: linear-gradient(top, #111111 0%,#242424 100%);
}
/* slides holder, grabbing container */
.royalSlider-event .royalSlidesContainer {
	position: relative;
	left: 0;
	top: 0 !important;
	list-style:none !important;
	margin:0 !important;
	padding:0 !important;
	border: 0 !important;
}


/* slide item */
.royalSlider-event .royalSlide {
	padding: 0 !important;
	margin: 0 !important;	
	border: 0 !important;
	list-style: none !important;
	
	position:relative;
	float:left;	
	
	overflow:hidden;	
}

/* 

	Direction Navigation (arrows) 

*/
.royalSlider-event .arrow
{	
	/*background:url(../img/controlsSprite.png) no-repeat 0 0;*/
	background-color: #C00;
	background-repeat: no-repeat;
	background-position: 0 0;

	/* change arrows size here */
	width: 45px;
	height: 90px;
	
	top:50%;
	margin-top:-45px;	
	
	cursor: pointer;
	display: block;
	position: absolute;		
	
	z-index:25;
	
}
.royalSlider-event .arrow:hover {
	
}
.royalSlider-event .arrow.disabled {
	
}
/* left arrow */
.royalSlider-event .arrow.left {
	background-position: top left;
	left: 0;	
}
/* right arrow */
.royalSlider-event .arrow.right {
	background-position: top right;
	right: 0;
}




/* Control navigation container (bullets or thumbs) */
.royalSlider-event .royalControlNavOverflow {
	width:100%;
	overflow:hidden;
	position:absolute;
	margin-top:-20px;
	z-index:25;
}
/* This container is inside ".royalControlNavContainer"  
   and is used for auto horizontal centering */
.royalSlider-event .royalControlNavCenterer {	
	float: left;
	position: relative;
	left: -50%;
}
/* Control navigation container*/ 
.royalSlider-event .royalControlNavContainer {
	float: left;
	position: relative;
	left: 50%;	
}


/* Scrollable thumbnails containers */
.royalSlider-event .royalControlNavThumbsContainer {		
	left:0;
	position:relative;
}
.royalSlider-event .thumbsAndArrowsContainer {
	overflow:hidden;
	width: 100%;
	position: relative;
}
.royalSlider-event .royalControlNavOverflow.royalThumbs {	
	width: auto;
	position: relative;
	overflow: hidden;
	margin-top:4px;	
}






/* 

	Control navigation (bullets, thumbnails)
	
*/
.royalSlider-event .royalControlNavOverflow a{	
	background:#0C0 none no-repeat scroll 0 0;
	
	width:20px;
	height:20px;	
	
	float:left;	
	cursor:pointer;	
	
	position:relative;
	display:block;
	
	text-indent: -9999px;	
}
/* Current control navigation item */
.royalSlider-event .royalControlNavOverflow a.current {	
	background-color: #C00;	
}
/* Hover state navigation item */
.royalSlider-event .royalControlNavOverflow a:hover {	
	background-color: #00C;
}

/* Thumbnails */
.royalSlider-event .royalControlNavOverflow a.royalThumb{	
	/*background: none no-repeat 0 0;*/
	/*background-color: ;*/
	width:144px;
	height:60px;	
	/* thumbnails spacing, use margin-right only */	
	margin-right:4px;
	
}
.royalSlider-event .royalControlNavOverflow a.royalThumb.current {	
	background-position: -3px -3px  !important;
	border:3px solid #C00 !important;
	width:138px;
	height:54px;
}
.royalSlider-event .royalControlNavOverflow a.royalThumb:hover {	
	background-position: -3px -3px;	
	border:3px solid #00C;
	width:138px;
	height:54px;
}



/* 

	Thumbnails navigation arrows 
	
*/
.royalSlider-event .thumbsArrow {	
	width: 38px;
	height: 68px;	
	
	cursor: pointer;
	display: block;
	position: relative;		
	z-index: 25;
	
	background: #C99;
	
}
.royalSlider-event .thumbsArrow.left {	
	float: left;
}
.royalSlider-event .thumbsArrow.right {	
	float: right;
}
.royalSlider-event .thumbsArrow:hover  {
	
}
.royalSlider-event .thumbsArrow.disabled {
	
}






/* Captions container */
.royalSlider-event .royalCaption {
	z-index:20;
	display:block;
	position:absolute;	
	left:0;
	top:0;
	/*font: normal normal normal 1em/1.5em Georgia, serif;
	color:#FFF;		*/
}
/* Caption item */
.royalSlider-event .royalCaptionItem {
	position:absolute;	
	left:0;
	top:0;
	margin: 0;
	padding: 0;
}



/* Loading (welcome) screen */
.royalSlider-event .royalLoadingScreen {
	background:#FFF;
	width:100%;
	height:100%;
	position:absolute;
	z-index:99;	
}
/* Loading screen text ("Loading...") */
.royalSlider-event .royalLoadingScreen p {		
	width:100%;
	position:absolute;	
	margin:0 auto;
	top: 45%;
	text-align:center;
}

/* single slide image preloader */
.royalSlider-event .royalPreloader {	
	position:absolute;
	width:24px;
	height:24px;
	left:50%;
	top:50%;
	margin-left:-12px;
	margin-top:-12px;	
	z-index:0;	
	background-image:url(../img/preloader.html);
}






.royalSlider-event .grab-cursor{cursor:move;}
.royalSlider-event .grab-cursor{cursor:url("../img/cursors/grab.html") 8 8,-moz-grab;}
.royalSlider-event .grab-cursor{*cursor:url(../img/cursors/grab-2.html);}
.royalSlider-event .grab-cursor{cursor:move\0/;} /* ie8 hack */

.royalSlider-event .grabbing-cursor{cursor:move;}
.royalSlider-event .grabbing-cursor{cursor:url("../img/cursors/grabbing.html") 8 8,-moz-grabbing;}
.royalSlider-event .grabbing-cursor{*cursor:url(../img/cursors/grabbing-2.html);}


/* Cursor used if mouse dragging is disabled */
.royalSlider-event .auto-cursor{cursor:auto;}

.royalSlider-event .royalHtmlContent {
	position: absolute;
	top: 0;
	left: 0;
}
.royalSlider-event .non-draggable {
	cursor: auto;
}
.royalSlider-event .fade-container .royalSlide{
	position: absolute;
	left: 0;
	top: 0;
	list-style-type: none;
	margin: 0;
	padding: 0;
	z-index: 10;
}
.royalSlider-event .royalImage {
	max-width:none;
	margin:0;
	padding: 0 !important;
	border: 0 !important;	
}

#slider-with-blocks-1 {
  width: 580px;
  height: 400px;
  margin:20px;
}

.rsContent {
  color: #FFF;
  font-size: 24px;
  line-height: 32px;
  float: left;
}
.bContainer {
  position: relative;
}
.rsABlock {
  position: relative;
  display: block;
  left: auto;
  top: auto;
}
.blockHeadline {
  font-size: 42px;
  line-height: 50px;
}
.blockSubHeadline {
  font-size: 32px;
  line-height: 40px
}
.txtCent {
  text-align: center; 
  width: 100%; 
}

.slide1 {
  background: #f06b50;
}
.slide1 .bContainer {
  /*top: 36%;*/
  top:0;
}
.slide2 {
    /*background: #ffbc11;*/
    color:#000;
}
.slide2 .bContainer {
  /*top: 24px;*/
  top:0;
}
.slide2 .txtCent {
  line-height: 44px;
}
.slide2 .blockHeadline {
   line-height: 66px;
}
.slide3 {
    /*background: #45aab8;*/
    color:#FFF;
}
.slide3 .bContainer {
   /*top: 24px;*/
  top:0;
}
.slide3 span {
  line-height: 44px;
}
.slide4 .bContainer {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  /*top: 24px;*/
  top:0;
}

.photoCopy {
  position: absolute;
  line-height: 24px;
  font-size: 12px;
  background: black;
  color: white;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0px 10px;
  position: absolute;
  left: 12px;
  bottom: 12px;
  top: auto;
  border-radius: 2px;
  z-index: 25;
}
.photoCopy a {
  color: #FFF;
}
.palmImg {
  left: 0;
  top: auto;
  bottom: -60px;
  position: absolute;
}


@media screen and (min-width: 0px) and (max-width: 960px) { 
  .rsContent {
    font-size: 22px;
    line-height: 28px;
  }
  .blockHeadline {
    font-size: 32px;
    line-height: 32px;
  }
  .blockSubHeadline {
    font-size: 26px;
    line-height: 32px
  }
}
@media screen and (min-width: 0px) and (max-width: 500px) { 
  .royalSlider-event,
  .rsOverflow {
    height: 330px !important;
  }
  .rsContent {
    font-size: 18px;
    line-height: 26px;
  }
  .blockHeadline {
    font-size: 24px;
    line-height: 32px;
  }
  .blockSubHeadline {
    font-size: 22px;
    line-height: 32px
  }
}
.rsMinW .rsOverflow, .rsMinW .rsSlide, .rsMinW .rsVideoFrameHolder, .rsMinW .rsThumbs {
    background: none repeat scroll 0 0 #151515;
}
.rsMinW .rsArrow {
    cursor: pointer;
    display: block;
    height: 44px;
    position: absolute;
    width: 30px;
    z-index: 21;
}
.rsMinW .rsArrowLeft {
    bottom: 2px;
    right: 39px;
}
.rsMinW .rsArrowRight {
    bottom: 2px;
    right: 9px;
}
.rsMinW .rsArrowIcn {
    background: url("../images/rs-minimal-white.png") repeat scroll 0 0 transparent;
    cursor: pointer;
    height: 24px;
    left: 50%;
    margin-left: -12px;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    width: 24px;
}
.rsMinW .rsArrowIcn:hover {
}
.rsMinW.rsHor .rsArrowLeft .rsArrowIcn {
    background-position: -68px -36px;
}
.rsMinW.rsHor .rsArrowRight .rsArrowIcn {
    background-position: -68px -68px;
}
.rsMinW.rsVer .rsArrowLeft .rsArrowIcn {
    background-position: -96px -32px;
}
.rsMinW.rsVer .rsArrowRight .rsArrowIcn {
    background-position: -96px -64px;
}
.rsMinW .rsArrowDisabled .rsArrowIcn {
    opacity: 0.3;
}
.rsMinW .rsBullets {
    bottom: 18px;
    height: auto;
    line-height: 8px;
    overflow: hidden;
    position: absolute;
    right: 78px;
    text-align: left;
    width: auto;
    z-index: 35;
}
.rsMinW .rsBullet {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.6);
    border-radius: 50% 50% 50% 50%;
    display: inline-block;
    height: 8px;
    margin: 0 5px;
    width: 8px;
}
.rsMinW .rsBullet.rsNavSelected {
    background: none repeat scroll 0 0 #FFFFFF;
}
.rsMinW .rsThumbs {
    background: none repeat scroll 0 0 #FFFFFF;
}
.rsMinW .rsThumbsHor {
    height: 72px;
    padding-bottom: 4px;
    width: 100%;
}
.rsMinW .rsThumbsVer {
    height: 100%;
    padding-right: 4px;
    position: absolute;
    right: 0;
    top: 0;
    width: 96px;
}
.rsMinW.rsWithThumbsHor .rsThumbsContainer {
    height: 100%;
    position: relative;
}
.rsMinW.rsWithThumbsVer .rsThumbsContainer {
    position: relative;
    width: 100%;
}
.rsMinW .rsThumb {
    color: #555555;
    float: left;
    height: 72px;
    overflow: hidden;
    width: 96px;
}
.rsMinW .rsThumb:hover {
    color: #000000;
}
.rsMinW .rsThumb img {
    height: 100%;
    width: 100%;
}
.rsMinW .rsThumb.rsNavSelected {
    background: none repeat scroll 0 0 #DADADA;
    color: #000000;
}
.rsMinW .rsThumb.rsNavSelected img {
    opacity: 0.3;
}
.rsMinW .rsTmb {
    display: block;
}
.rsMinW .rsThumbsArrow {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.75);
    cursor: pointer;
    display: block;
    height: 100%;
    position: absolute;
    width: 20px;
    z-index: 21;
}
.rsMinW .rsThumbsArrow:hover {
    background: none repeat scroll 0 0 #DDDDDD;
}
.rsMinW.rsWithThumbsVer .rsThumbsArrow {
    height: 20px;
    width: 100%;
}
.rsMinW.rsWithThumbsVer .rsThumbsArrowLeft {
    left: 0;
    top: 0;
}
.rsMinW.rsWithThumbsVer .rsThumbsArrowRight {
    bottom: 0;
    left: 0;
}
.rsMinW.rsWithThumbsHor .rsThumbsArrowLeft {
    left: 0;
    top: 0;
}
.rsMinW.rsWithThumbsHor .rsThumbsArrowRight {
    right: 0;
    top: 0;
}
.rsMinW .rsThumbsArrowIcn {
    background: url("../images/rs-minimal-white.png") repeat scroll 0 0 transparent;
    cursor: pointer;
    height: 16px;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.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;
}
.rsMinW .rsThumb {
    height: 44px;
    width: 59px;
}
.rsMinW .rsThumbsHor {
    height: 44px;
}
.rsMinW .rsThumbsVer {
    width: 59px;
}
.rsMinW .rsTabs {
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 12px;
    position: relative;
    text-align: center;
    width: 100%;
}
.rsMinW .rsTab {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #FFFFFF;
    background-image: linear-gradient(to bottom, #FEFEFE, #F4F4F4);
    border-color: #D9D9DD #F5F5F5 #D9D9DD #D9D9DD;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    box-shadow: 1px 0 0 #FFFFFF inset;
    color: #333333;
    cursor: pointer;
    display: inline-block;
    height: auto;
    min-width: 96px;
    padding: 5px 13px 6px;
    text-align: center;
    text-decoration: none;
    width: auto;
}
.rsMinW .rsTab:first-child {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}
.rsMinW .rsTab:last-child {
    border-bottom-right-radius: 4px;
    border-right: 1px solid #CFCFCF;
    border-top-right-radius: 4px;
}
.rsMinW .rsTab:active {
    background-color: #F4F4F4;
    border: 1px solid #D9D9DD;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
}
.rsMinW .rsTab.rsNavSelected {
    background: linear-gradient(to bottom, #ACACAC, #BBBBBB) repeat scroll 0 0 #ACACAC;
    border: 1px solid #999999;
    box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
    color: white;
    text-shadow: 1px 1px #838383;
}
.rsMinW .rsFullscreenBtn {
    cursor: pointer;
    display: block;
    height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    z-index: 22;
}
.rsMinW .rsFullscreenIcn {
    background: url("../images/rs-minimal-white.png") repeat scroll 0 0 rgba(255, 255, 255, 0.75);
    border-radius: 2px 2px 2px 2px;
    display: block;
    height: 32px;
    margin: 6px;
    width: 32px;
}
.rsMinW .rsFullscreenIcn:hover {
    background-color: #FFFFFF;
}
.rsMinW.rsFullscreen .rsFullscreenIcn {
    background-position: -32px 0;
}
.rsMinW .rsPlayBtn {
    cursor: pointer;
    height: 64px;
    margin-left: -32px;
    margin-top: -32px;
    width: 64px;
}
.rsMinW .rsPlayBtnIcon {
    background: url("../images/rs-minimal-white.png") no-repeat scroll 0 -32px rgba(238, 238, 238, 0.75);
    border-radius: 4px 4px 4px 4px;
    display: block;
    height: 64px;
    transition: all 0.3s ease 0s;
    width: 64px;
}
.rsMinW .rsPlayBtn:hover .rsPlayBtnIcon {
    background-color: #D5D5D5;
}
.rsMinW .rsBtnCenterer {
    height: 20px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 20px;
}
.rsMinW .rsCloseVideoBtn {
    cursor: pointer;
    height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    z-index: 23;
}
.rsDefault .rsCloseVideoBtn.rsiOSBtn {
    right: -6px;
    top: -38px;
}
.rsMinW .rsCloseVideoIcn {
    background: url("../../images/events/images/rs-minimal-white.html") repeat scroll -64px 0 rgba(238, 238, 238, 0.75);
    height: 32px;
    margin: 6px;
    width: 32px;
}
.rsMinW .rsCloseVideoIcn:hover {
    background-color: #D5D5D5;
}
.rsMinW .rsPreloader {
    background-image: url("../preloaders/preloader.html");
    height: 20px;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    top: 50%;
    width: 20px;
}
