br { display: block; line-height: 1.6em; } 

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }

input, textarea { 
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none; 
}

blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
strong, b { font-weight: bold; }
em, i { font-style: italic; }

table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; }

/** page structure **/
#w {
  display: block;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
  margin-top:0px;
}

/** Glidejs styles **/
.slider {
	position: relative;
	width: 100%;
	max-height: 500px;
	overflow: hidden;
  background:rgba(8, 8, 8, 1);
}
	
.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;
  text-align: center;
}

.slide figure img {
  max-height: 500px;
  max-width: 1200px;  /*auto*/
  margin:0 auto;
  width:100%;
  height:100%;
}

.slider-arrows {}

.slider-arrows a{
  color: rgba(255, 255, 255, 0.48) !important;
  text-decoration: none !important;
}

.slider-arrow {
  position: absolute;
  display: block;
  bottom:0%;
  line-height:0px;
  vertical-align:middle;
  padding: 20px;
  font-family: 'Alegreya Sans', 'Trebuchet MS', sans-serif;
  text-decoration: none;
  font-weight: 900;
  background: rgba(220, 220, 220, 0.12);
  font-size: 3.0em;
  color: #fff;
  border: 1px solid rgba(97, 97, 97, 0.0);
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.slider-arrow img{padding-top:100px;}
.slider-arrow{  background: rgba(220, 220, 220, 0.12); padding-top:300px; padding-bottom:300px; margin-bottom:-300px;}
.slider-arrow:hover {
  bottom:0%;
  background: #ddd;
  color: rgb(255, 255, 255) !important;
  background: rgba(214, 214, 214, 0.23);
  line-height: 500px;
  vertical-align:middle;
  position:absolute;
/*  text-shadow:1px 1px 1px rgba(53, 0, 0, 1);*/
}
.slider-arrow--right { bottom: 50%; right: -20px; border-top-left-radius: 8px; border-bottom-left-radius: 8px;}
.slider-arrow--left { bottom: 50%; left: -20px; border-top-right-radius: 8px; border-bottom-right-radius: 8px;}
.slider-arrow--right:hover{ right: 0px;}
.slider-arrow--left:hover{ left: 0px;}


.slider-nav {
  position: absolute;
  bottom: 5px;
}

.slider-nav__item {
  width: 12px;
  height: 12px;
  float: left;
  clear: none;
  display: block;
  margin: 5px 6px;
  background: rgba(228, 228, 228, 1);
  -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 screen and (max-width: 1050px) {
  #w { padding: 0 0px; }
  .slider-arrow { font-size: 1.8em; padding: 0px; }
} 

@media screen and (max-width: 650px) {
  h1 { font-size: 2.9em; }
}

@media screen and (max-width: 450px) {
  h1 { font-size: 2.1em; }
}