/*
Theme created for use with Sequence.js (http://www.sequencejs.com/)

Theme: Basic Slide
Version: 1.0
Theme Author: Ian Lunn @IanLunn
Author URL: http://www.ianlunn.co.uk/
Theme URL: http://www.sequencejs.com/themes/basic-slide/

This is a FREE theme and is available under a MIT License:
http://www.opensource.org/licenses/mit-license.php

Sequence.js and its dependencies are (c) Ian Lunn Design 2012 - 2013 unless otherwise stated.
*/
/* CSS RESET - http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* !CSS RESET */
/* prefix declarations */
/* THEME STYLES */
/* when in fallback mode (for browsers that don't support transitions) hide anything outside of the Sequence container */
#sequence.sequence-fallback {
  overflow: hidden;
}

#sequence {
  /* the Sequence container */
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
#sequence > .sequence-canvas {
  /* required - make the Sequence canvas the same height and width as the container */
  height: 60%;
  width: 100%;
  
}
#sequence > .sequence-canvas > li {
  /* each Sequence frame */
  position: absolute;
  /* required - allows Sequence to change the z-index of frames, so the active frame is always on top */
  width: 100%;
  /* required - makes the frame the same width as the container */
  height: 60%;
  /* required - makes the frame the same height as the container */
  z-index: 1;
  /* required - allows Sequence to change the z-index of frames, so the active frame is always on top */
  
}
#sequence > .sequence-canvas li > * {
  /* each top level element to be animated */
  position: absolute;
  height:100%;
  width:100%;
  /* required - make each animated element within a Sequence frame position absolute so their left/right/top/bottom can be manipulated */
}

#sequence .slide {
  height: 60%;
  width: 100%;
  color: white;
  text-align: center;
  font-family: "Ubuntu", serif;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px #333333;
}

#sequence .slide1 {
  background: ; //#32742C
}

#sequence .slide {
  left: 100%;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: "left";
  -moz-transition-property: "left";
  -ms-transition-property: "left";
  -o-transition-property: "left";
  transition-property: "left";
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
#sequence .animate-in .slide {
  left: 0;
}
#sequence .animate-out .slide {
  left: -100%;
}



.sequence-next,
.sequence-prev {
  color: white;
  cursor: pointer;
  font-weight: bold;
  padding: 0;
  position: absolute;
  top: 45%;  z-index: 1000;
  width:16px;
  height:38px;
  margin-top: ;
}

.sequence-prev {
  left: 5%;
}

.sequence-next {
  right: 5%;
}

.sequence-prev img,
.sequence-next img {
  

}

.sequence-next,
.sequence-prev {
  position: absolute;
  opacity: .5;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}

.sequence-next:hover,
.sequence-prev:hover {
  opacity: .8;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}
