﻿/* Style the Sequence container */
#sequence {
  position: relative;
  width: 100%;
  height: 300px;
  max-width: 100%;
  overflow: hidden;
  margin: 0px 0px 0px 0px;
  padding: 0;
  font-family: sans-serif;
}

#sequence::before {
    padding: 0px 0px 0px 0px;
}

/* Reset */
#sequence .seq-canvas,
#sequence .seq-canvas > * {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Make the canvas the same dimensions as the container and prevent lines from
   wrapping so each step can sit side-by-side */
#sequence .seq-canvas {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  position: absolute;
  height: 100%;
  width: 100%;
  /*white-space: nowrap;*/
  font-size: 0;
}

/* Make the steps the same size as the container and sit side-by-side */
#sequence .seq-canvas > * {
  /*display: inline-block;*/
  vertical-align: middle;
  width: 100%;
  height: 100%;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  white-space: normal;
  /*text-align: center;
  color: white;*/
}

#sequence .seq-canvas li {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

/* Used to vertically center align the .content element */
#sequence .seq-canvas > li:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  height: 100%;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

/* Vertically center align the .content element */
#sequence .content {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  margin: 0px 0px 0px 0px;
  padding: 0px 20px 0px 20px;
  font-size: 16px;
  width: 100%;
  height: 100%;
}

#sequence .content p {
    text-indent: 25px;
}

#sequence .background {
/*
  overflow: hidden;
  border-top: 1px solid gray;
  border-left: 1px solid gray;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: white;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1));
  background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1));
  background: -moz-linear-gradient(right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1));
  padding: 10px 10px 10px 10px;
  margin: 10px 10px auto auto;
  border-radius: 6px;
    */
}

/*Transistions*/
#Sequence .sequence-canvas li {
  position: absolute;
  opacity: 0;
/*  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  transition-property: opacity;
*/}

#Sequence .seq-in li {
  opacity: 1;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  transition-property: opacity;
}

#Sequence .seq-out li {
  opacity: 0;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  transition-property: opacity;
}