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:1100px;
  max-width: 1200px;
  min-width: 500px;
  margin: 0 auto;
  padding-bottom: 35px;
  margin-top:20px;
}

/** Glidejs styles **/
.slider {
	position: relative;
	width: 100%;
	max-height: 700px;
	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: 800px;
  max-width:900px;
  margin-left:-80px;
}

.slider-arrows {}

.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-color: rgba(41, 41, 41, 0.0);
  font-size: 3.0em;
  color: #fff;
  border: 1px solid rgba(97, 97, 97, 0.0);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.slider-arrow img{padding-top:100px;}
.slider-arrow:hover {
  bottom:0%;
  background: #ddd;
  color: #aaa;
  background: rgba(41, 41, 41, 0.5);
  line-height:757px;
  vertical-align:middle;
  position:absolute;
}
.slider-arrow--right { bottom: 50%; right: 0px; border-top-left-radius: 8px; border-bottom-left-radius: 8px;}
.slider-arrow--left { bottom: 50%; left: 0px; border-top-right-radius: 8px; border-bottom-right-radius: 8px;}


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

.slider-nav__item {
  width: 12px;
  height: 12px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  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 15px; }
  .slider-arrow { font-size: 1.8em; padding: 15px; }
} 

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

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