/*
    these are just the default styles used in the Cycle2 demo pages.  
    you can use these styles or any others that you wish.
*/


/* set border-box so that percents can be used for width, padding, etc (personal preference) */
.cycle-slideshow, .cycle-slideshow * { position:relative; }


.cycle-slideshow { width: 100%; margin: 0px auto; padding: 0; position: relative;
    background: url() 50% 50% no-repeat; height: auto;
	z-index:10;

 }
 
 /* ook in responsive neerzetten */
 .cycle-slideshow div {
     -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  height:350px;
  width:100%;
 }

 .cycle-slideshow-home div {
     -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  height:450px;
  width:100%;
 }

.center {
    position: absolute;
    z-index: 141;
    left: 50%;
    margin-left: -500px;
    width: 500px;
    color: #adcd54;
    font-family: 'Margot Bd';
    font-size: 44px;
    line-height: 55px;
    padding: 13px 20px 13px 20px;
    top: 60px;
     text-shadow: 1px 1px 2px #a9a9a9;
}

/* slideshow images (for most of the demos, these are the actual "slides") */
.cycle-slideshow img { 
    /* 
    some of these styles will be set by the plugin (by default) but setting them here
    helps avoid flash-of-unstyled-content
    */
    position: absolute; top: 0; left: 0;
    width: 100%; padding: 0; display: block;
}

/* in case script does not load */
.cycle-slideshow img:first-child {
    position: static; z-index: 100;
}

/* pager */
.cycle-pager { 
    text-align: right; width:auto; z-index: 500; position: absolute; top: 243px; right:20px; overflow: hidden;
}
.cycle-pager .pager_item { 
   font-size:0px; width: 12px; height: 12px; 
    display: inline-block; color: #ddd; cursor: pointer;
	margin-left:7px; 
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border:3px solid #cbcac9;
}
.cycle-pager div.cycle-pager-active { 
	background-color: #cbcac9;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 3px solid #cbcac9;
	}


.cycle-pager > * { cursor: pointer;}




/* caption */
.cycle-caption { position: absolute; color: white; bottom: 15px; right: 15px; z-index: 700; }


/* overlay */
.cycle-overlay { 
    font-family: tahoma, arial;
    position: absolute; bottom: 0; width: 100%; z-index: 600;
    background: black; color: white; padding: 15px; opacity: .5;
}


/* prev / next links */

#prev { left: 0; width:30px; position:absolute; height:171px; display:block; background: url(../images/prev2.png) 50% 50% no-repeat;}
#next { right: 0; width:30px; position:absolute; height:171px; display:block; background: url(../images/next2.png) 50% 50% no-repeat;}


.disabled { opacity: .5; filter:alpha(opacity=50); }


/* display paused text on top of paused slideshow */
.cycle-paused:after {
    content: 'Paused'; color: white; background: black; padding: 10px;
    z-index: 500; position: absolute; top: 10px; right: 10px;
    border-radius: 10px;
    opacity: .5; filter: alpha(opacity=50);
}

/* 
    media queries 
    some style overrides to make things more pleasant on mobile devices
*/

@media all and (max-width: 670px) {
    .cycle-slideshow { width: 100%;}
    .cycle-overlay { padding: 4px }
	.cycle-pager { display:none; opacity:0; width:10px; }
	.center {
    position: absolute;
    z-index: 141;
    left: 0%;
    margin-left: 0px;
    width: 100%;
    color: #adcd54;
    font-family: 'Margot Bd';
    font-size: 28px;
    line-height: 34px;
    padding: 13px 20px 13px 20px;
    top: 60px;
    text-shadow: 1px 1px 2px #a9a9a9;
}

	
}

