

/** page structure **/
#w {
  display: block;
  max-width: 1555px;
  min-width: 280px;
  margin: 0 auto;
  padding-bottom: 35px;
}

#w header {
  display: block;
  padding-top: 15px;
}

/** Glidejs styles **/
.slider {
	position: relative;
	width: 100%;
	height:750px;
	overflow: hidden; 
}
	
.slides {
  height: 100%;
  overflow: hidden;
  /**	
   * Prevent blinking issue
   * Not tested. Experimental.
   */
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;

   -webkit-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
   -moz-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
   -ms-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
   -o-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
   transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
	
.slide {
  height: 100%;
  float: left;
  clear: none;
}
.slide figure {
  display: block;
  position: relative;
  
}
.slide figure figcaption {
  position: absolute;
  right: 20%;
  font-size: 1.1em;
  font-weight: bold;
  padding: 8px 14px;
  color: #464646;
  background: rgba(255,255,255,0.8); 
}
.slide figure figcaption a {
  color: #5a7fbc;
  text-decoration: none;
}
.slide figure figcaption a:hover { text-decoration: underline; }

.slide figure img {
  max-height: 480px;
}



.slider-arrows {}

.slider-arrow {
  position: absolute;
  display: block;
  width:95px; height:95px; text-align: center; line-height:90px;
  font-family:Arial, Helvetica, sans-serif;
  /*font-family: 'Alegreya Sans', 'Trebuchet MS', sans-serif;*/
  text-decoration: none;
  font-size: 3.0em;
  color: #898989;
  border: 1px solid #898989;
  background: #fff;
  border-radius:1px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity:0.5;
}
.slider-arrow:hover {opacity:1.0;
  background: #fff;
  color: #aaa;
}
.slider-arrow--right { bottom: 0px; right: 200px; }
.slider-arrow--left { bottom: 0px; left: 610px; }


.slider-nav { display:none;
  position: absolute;
  bottom: 0px;
}

.slider-nav__item {
  width: 12px;
  height: 12px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  background: #fff;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
.slider-nav__item:hover { background: #bababa; }
.slider-nav__item--current, .slider-nav__item--current:hover { background: #999; }



/** responsive styles **/
@media (max-width: 1555px) {
#w { width:100%; padding: 0 15px; }
/*.slider-arrow { font-size: 1.8em; padding: 15px;}
.slider {
	width: 100%;
	height:750px;
}*/
} 

@media (max-width: 1366px) {
.slider-arrow--right { bottom: 0; right: 0px; }
.slider-arrow--left { bottom: 0; left:0px; }
}

@media (max-width: 768px) {
.slider {
	width: 100%;
	height:1200px;
}
.slider-arrow--right { display:none;}
.slider-arrow--left { display:none;}
}

@media (max-width: 640px) {
 
}