/*
Theme created for use with Sequence.js (http://www.sequencejs.com/)

Theme: Modern Slide In
Version: 1.3
Theme Author: Ian Lunn @IanLunn
Author URL: http://www.ianlunn.co.uk/
Theme URL: http://www.sequencejs.com/themes/modern-slide-in/

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 */
.sequence-theme {
  /* this container is just to ensure the background color stretches all the way across on bigger screens */
  background: #D9D9D9;
}

#sequence {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1280px;
  background-color: #fdfdfd;
 background-image: url("../images/index.jpg");
  background-repeat: no-repeat;
  background-position:center center;
  color: white;
  font-size: 0.625em;
  margin: 0 auto;
  position: relative;
  height: 600px;
  }
#sequence > .sequence-canvas {
  height: 100%;
  width: 100%;
}
#sequence > .sequence-canvas > li {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: -54%;
}
#sequence > .sequence-canvas > li img {
  height: 96%;
}
#sequence > .sequence-canvas li > * {
  position: absolute;
  /* only cause the left and opacity properties to transition */
  -webkit-transition-property: left, opacity;
  -moz-transition-property: left, opacity;
  -ms-transition-property: left, opacity;
  -o-transition-property: left, opacity;
  transition-property: left, opacity;
}

.sequence-next,
.sequence-prev {
  color: white;
  cursor: pointer;
  display: block;
    font-weight: bold;
  padding: 10px 15px;
  position: absolute;
  top: 50%;
  z-index: 1000;
  height: 75px;
  margin-top: -47.5px;
}

.sequence-pause {
  bottom: 0;
  cursor: pointer;
  position: absolute;
  z-index: 1000;
}

.sequence-paused {
  opacity: 0.3;
}

.sequence-prev {
  left: 3%;
}

.sequence-next {
  right: 3%;
}

.sequence-prev img,
.sequence-next img {
  height: 100%;
  width: auto;
}

#sequence-preloader {
  background: #d9d9d9;
}

.sequence-pagination {
  bottom: 1%;
  display: none;
  right: 6%;
  position: absolute;
  z-index: 10;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.sequence-pagination li {
  display: inline-block;
  *display: inline;
  /* Hack for IE7 and below as they don't support inline-block */
  height: 140px;
}
.sequence-pagination li img {
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: margin-bottom, opacity;
  -moz-transition-property: margin-bottom, opacity;
  -ms-transition-property: margin-bottom, opacity;
  -o-transition-property: margin-bottom, opacity;
  transition-property: margin-bottom, opacity;
}
.sequence-pagination li img:hover {
  margin-bottom: 4px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.sequence-pagination li.current img {
  opacity: 1;
}

h2 {
  color:#000;
  font-family: "Sirin Stencil", serif;
  font-weight: bold;
  text-transform: uppercase;
}

h3 {
  font-family: "Ruluko", serif;
}

.sequence-next,
.sequence-prev {
  position: absolute;
  opacity: 0.6;
  -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: 1;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}

.title {
  font-size: 3.4em;
  left: 65%;
  width: 35%;
  opacity: 0;
  bottom: -6%;
  z-index: 50;
  color:#000;
  text-align:center;
}

.animate-in .title {
  left: 50%;
  opacity: 1;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.animate-out .title {
  left: 35%;
  opacity: 0;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.subtitle {
  color: black;
  font-size: 2em;
  left: 35%;
  width: 35%;
  opacity: 0;
  top: 101%;
}

.animate-in .subtitle {
  left: 50%;
  opacity: 1;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.animate-out .subtitle {
  left: 65%;
  opacity: 0;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

 .nav_border1
{
	width:100%;
	height:7px;
	background:url(../images/bg.jpg) center center;
}
.nav_border
{
	width:100%;
	height:6px;
	background:#000;
}
.header_wrap2 {
	
	-webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	width:100%;
	margin-top:0px;
}
.header_wrap {
	background:url(../images/bg1.jpg) center center;
	-webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	width:100%;
	margin-top:0px;
}
.header_wrap1 {
	background:url(../images/bg2.jpg) center center;
	-webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	width:100%;
	margin-top:0px;
}
	
.logo {
	 -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
	width:261px;
	height:86px;
	
}
.logo img
{
margin-left:-10px;
width:100%;
}
.nev {
   float:right;
   color:#000;
  padding:15px 10px;
}
.nev ul {
	padding:0px;
}
.nev li {
	display:inline-block;
	position: relative;
	padding:5px;
}
.nev li a
{
	color:#000;
	text-decoration:none;
	padding:7px 10px;
	font-size:16px;
	font-weight:bold;
	display:block;
	font-family:"Droid Sans Mono";
    -webkit-transition:0.5s;
	-moz-transition:0.5s;
	-o-transition:0.5s;
	transition:0.5s;
	 -webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
/*.nev li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background:#000;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}


.nev li a:hover:before {
	
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}*/

.active_nevigation {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}


.active_nevigation:before, .active_nevigation:after{
  pointer-events: none;
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.active_nevigation:before{
  bottom: 100%;
  background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.active_nevigation:after{
  top: 100%;
  background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}

.nev li a:hover
{
	color:#000;
	text-decoration:none;
	-webkit-transition:0.5s;
	-moz-transition:0.5s;
	-o-transition:0.5s;
	transition:0.5s;
}

.mobile_nav
{
	display:none;
	color:#000;
	font-size:35px;
}
.mobile_nav i
{
	color:#000;
}
.social-media
{
  width:100%;
  padding-right:20px;
  margin-top:-17px;

	  
}
.social-media ul
{ 
padding:0;
float:right;

}
.social-media li
{
	
	display:inline-block;
	position: relative;
	margin-right:7px;
}
.social-media li a
{
	color:#000;
	padding:10px 5px 6px;
	border-radius:50%;
	background:url(../images/bg.jpg) center center;
	
	}
.social-media i
{
	font-size:20px;
	padding:5px 7px;
	color:#000;
	background:#fff;
	border-radius:50%;
	text-align:center;
	width:30px;
	height:30px;
	
}
.stokist1
{
	text-align:center;
}
.stokist1 img
{
	border:2px solid #ccc;
	width:95%;
	margin:20px;
}
.my_stokist
{
	padding:20px;
}
.my_stokist h4, .stokist_wrap h4
{
	text-align:center;
	font-size:35px;
	padding-bottom:35px;
}
.my_stokist h5
{
	text-align:center;
	font-size:20px;
	padding:5px 0;
}
.my_stokist h5:hover
{
color:#807585;
}
.my_stokist p
{
	font-size:15px;
	text-align:left;
	padding:5px 15px;
	font-family: 'Open Sans', sans-serif;
}   
.abt, .stokist
{
	padding:3% 0;
	height: 100%;
	width: 100%;
}
.about_wrap
{
	box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
	overflow:hidden;
}	
.abt_me {
    background: #fff none repeat scroll 0 0;
     
    margin-bottom: 50px;
    padding: 10px 20px;
    
	text-align:center;
}
.abt_me img
{
	border:4px solid #ccc;
	border-radius:50%;
	width:250px;
	height:250px;
	margin:20% 0;

}
.abt_collage img
{
	padding:2px;
	width:100%;
}

.abt_me h4
{
	text-align:center;
	font-size:35px;
	padding:5px 0;
}
.abt_me p
{
	font-size:15px;
	text-align:center;
	font-family: 'Open Sans', sans-serif;
}   
.stokist_store
{
	margin:2% 15%;
	padding:5px;
	font-family: 'Open Sans', sans-serif;
}
.store_place
{
	font-weight:bold;
	color:#333;
}
.stokist_coming
{
	overflow:hidden;
	text-align:center;
	padding:4% 0;
	}
.stokist_wrap
{
	box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
	overflow:hidden;
	margin:0 15%;
	padding:20px;
}
	
.contact_us_wrap
{
	text-align:center;
	overflow:hidden;
}
.contact_form {
    background: #daddda none repeat scroll 0 0;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
    height: 100%;
    margin-bottom: 50px;
    padding: 10px 20px;
    width: 100%;
}
.contact_form_wrap input {
    border: 1px solid #cdcdcd;
    color: #727272;
    margin: 10px 0;
    padding: 5px 10px;
    transition: all 0.3s ease 0s;
    width: 100%;
}
.contact_form_wrap input:hover, .contact_form_wrap input:focus, .contact_form_wrap textarea:hover, .contact_form_wrap textarea:focus {
    border: 1px dotted #666;
    transition: all 0.3s ease 0s;
}
.contact_form_wrap textarea {
    border: 1px solid #e0ddde;
    color: #727272;
    height: 80px;
    margin: 10px 0;
    padding: 7px 10px;
    transition: all 0.3s ease 0s;
    width: 100%;
}
.contact_form_wrap_button input {
    background: #000 none repeat scroll 0 0;
    border: 2px solid #000;
    color: #fff;
    display: block;
    font-size: 16px;
    margin: 15px auto;
    padding: 7px 10px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    width: 90px;
}
.contact_form_wrap_button input:hover, .contact_form_wrap_button input:focus {
    background: #fff none repeat scroll 0 0;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}
.contact_form_wrap_check p {
    margin: 10px 0;
	text-align:center;
}
.contact_form_wrap_check p input {
    margin-right: 5px;
}
.contact_form h2, .contact_address h2 {
    border-bottom: 4px solid #000;
    padding-bottom: 15px;
    text-align: center;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}
.contact_address {
    background:#daddda;
    border: 1px solid #ccc;
    margin: 30px 0;
	text-align:center;
	border-bottom:4px solid #000;
   line-height: 25px;
}

.contact_address p {
    font-size: 17px;
	text-align:center;
}
.contact_address h4 {
    font-size:24px;
}
.contact_mail {
    background:#fdfdfd;
    margin: 30px 0;
	line-height: 25px;
}
.contact_mail p {
    font-size: 12px;
	text-align:center;
}
.contact_mail h4 {
    font-size:20px;
	text-align:center;
}

.model {
  left: 30%;
  bottom: -48%;
  opacity: 0;
  position: relative;
  
  max-height: 568px !important;
  
  /* prevents the model from shrinking when the browser is resized */
  max-width: 266px;
}

.animate-in .model {
  left: 15%;
  opacity: 1;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}

.animate-out .model {
  left: 15%;
  opacity: 0;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.footer
{
height:50px;
 width:100%;
 margin-top:20px;
 text-align:center;
}
.footer p
{
 line-height:15px;
 font-size:14px;
  color:#000;
}
.footer a
{
	color:#000;
}
.footer img
{
	margin:0 5px;
}
.footer:hover img{
	-ms-transform: rotate(360deg); /* IE 9 */
    -webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
    transform: rotate(360deg);
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    transition: all 0.8s;
}
.collection_wrap
{
	padding:0;
}
.collection_title
{
	text-align:center;
	font-size:40px;
	font-family: 'Lobster Two', cursive;
	padding:5px 0;
}
.collection_name
{
	text-align:center;
	font-size:28px;
	font-family: 'Lobster Two', cursive;
	padding:5px 0;
}
.collection_title i
{
	font-size:25px;
	padding:3px;
}

/*collection*/
.SumoGallery *{border:0px; margin:0px; padding:0px;}

.SumoGallery{background-color: rgba(0, 0, 0, 0.9);position: fixed;top: 0px;left: 0px;right: 0px;bottom: 0px; z-index: 1;}

/** COMMMON STYLES **/
.SumoGallery a{cursor:pointer;transition: all 300ms;-webkit-transition: all 300ms;-moz-transition: all 300ms;
 -webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select: none;}
/** COMMMON STYLES **/

.SumoGallery .Sarrow{position: absolute;font-size: 0px;color: #000;opacity: 0.8;text-shadow: -1px 0px 3px rgba(0, 0, 0, 0.86);top: 50%;margin-top: -50px;padding: 10px;z-index: 10;}
.SumoGallery .Sarrow:hover{opacity:1;}
.SumoGallery .Sarrow.l{left:0px; width: 30px; height: 55px; background: url(../images/slider_prev1.png) no-repeat; }
.SumoGallery .Sarrow.r{right:0px; width: 30px; height: 55px; background: url(../images/slider_next1.png) no-repeat;}

.SumoGallery .Sheader{background-color: rgba(0, 0, 0, 0.8);height: 100%; position: relative;}
.SumoGallery .Sheader p{color: #fff;padding: 10px 50px;text-align: center;}
.SumoGallery .Sheader a{font-size: 50px;line-height: 40px;color: #fff;position: absolute;right: 5px;top: 0px;display: block;cursor: pointer;opacity: 0.8;}
.SumoGallery .Sheader a:hover{opacity:1}

.SumoGallery .Sbody{position: absolute;top: 40px;bottom: 75px;left: 0px;right: 0px;: all 300ms;-webkit-transition: all 300ms;-moz-transition: all 300ms;}
.SumoGallery .Sbody a{display: none;left: 0px;opacity: 1;
transition: none;-moz-transition: none;-webkit-transition: none;}
.SumoGallery .Sbody a.sel{display: block;background-image: url('loader.gif');position: absolute;width:100%;height:100%; background-repeat: no-repeat;background-position: center;z-index:1;}
.SumoGallery .Sbody a.anim{transition: all 200ms;-webkit-transition: all 200ms;-moz-transition: all 200ms;}
.SumoGallery .Sbody a.left{left: -100%;opacity: 0;}
.SumoGallery .Sbody a.right{left: 100%;opacity: 0;}

.SumoGallery .SimgCount{position: absolute;color: #BEBEBE;right: 10px;bottom: 95px;}
.SumoGallery .toggle-thumbs{position: absolute;color: #BEBEBE;right: 10px;bottom: 70px;z-index: 10;font-size: 23px;background-color: #000;border-radius: 3px;padding: 0px 5px;line-height: 20px;}
.SumoGallery .toggle-thumbs:hover{color: #4186F2;}

.SumoGallery .Sbody a img{position: absolute;top: 0px;left: 0px;right: 0px;bottom: 0px;margin: auto;max-width: 100%;max-height: 98%;-webkit-box-shadow: 0px 0px 35px rgba(0,0,0,0.5);box-shadow: 0px 0px 35px rgba(0,0,0,0.5);-moz-box-shadow: 0px 0px 35px rgba(0,0,0,0.5);border-radius: 2px;}

.SumoGallery .Sfooter{position: absolute;bottom: 0px;left: 0px;right: 0px;height: 50px;background-color: #000;padding: 12px 0px;transition: all 300ms;-webkit-transition: all 300ms;-moz-transition: all 300ms;}

.SumoGallery ul.Sthumbnails{list-style: none;display: block;text-align: center;overflow: auto;white-space: nowrap;height: 150px;padding-top: 5px;margin-top: -5px;}
.SumoGallery ul.Sthumbnails li{display: inline-block;margin: 0px 2px;}
.SumoGallery ul.Sthumbnails li a{display: block;height: 50px;width: 60px;background-repeat: no-repeat;position:relative;border-radius: 2px;background-size: cover;}
.SumoGallery ul.Sthumbnails li a:hover{top:-1px;}
.SumoGallery ul.Sthumbnails li.sel a{top:-3px;}
.SumoGallery ul.Sthumbnails li.sel a:after{content: '';position: absolute;width: 0px;height: 0px;padding: 3px;background-color: #F43110;box-shadow: 0px 0px 5px #F43110;border-radius: 50%;border: 0px;left: 0px;right: 0px;margin: auto;bottom: -10px;}


.SumoGallery.nothumbs {}
.SumoGallery.nothumbs .Sfooter{bottom: -74px;}
.SumoGallery.nothumbs .Sbody {bottom: 0px;}

.grid_collection div {
	text-align: center;
}

.collection_wrap2 {
	position: relative;
	overflow: hidden;
	font-size: 16px;
}
.collection_box
{
	margin-top:20px;
}
.collection_box p
{
	padding-top:10px;
}
.grid_collection div img {
	width: 100%;
	cursor: pointer;
}
a.button::before {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-box-shadow: #fdfdfd 0 2px 5px;
    -moz-box-shadow: #fdfdfd 0 2px 5px;
    border-radius: 3px;
    box-shadow: #fdfdfd 0 2px 5px;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    padding: 2px 0 0;
    position: absolute;
    top: 0;
    width: 100%; }
    
a.button:active::before { padding: 1px 0 0; }

/**
 * Grey
 */
a.button {
    -moz-box-shadow: inset 0 0 0 1px #fdfdfd;
    -webkit-box-shadow: inset 0 0 0 1px #fdfdfd;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #fdfdfd;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#fdfdfd), to(#fdfdfd));
    background: -moz-linear-gradient(#fdfdfd, #fdfdfd);
    background: linear-gradient(#fdfdfd, #fdfdfd);
    border: solid 1px #fdfdfd;
    border-bottom: solid 3px #fdfdfd;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px #f5f5f5;
    color: #000;
    display: inline-block;
    padding: 10px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px 0 #fafafa; }
    
a.button:hover {
	color: #000;
    background: #EBEBEB;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#EBEBEB), to(EAEAEA));
    background: -moz-linear-gradient(#EBEBEB, EAEAEA);
    background: linear-gradient(#EBEBEB, #EAEAEA);
    border: solid 1px #E0E0E0;
    border-bottom: solid 3px #b2b1b1;
    box-shadow: inset 0 0 0 1px #EBEBEB; text-decoration:none;}
    
a.button:active {
	color: #000
    background: EAEAEA;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(EAEAEA), to(#e3e3e3));
    background: -moz-linear-gradient(EAEAEA, #e3e3e3);
    background: linear-gradient(EAEAEA, #e3e3e3);
    border: solid 1px #E1E1E1; 
    box-shadow: inset 0 10px 15px 0 EAEAEA;
    top:2px; text-decoration:none;}


@media only screen and (min-width: 992px) {
  #sequence .title {
    width: 42%;
  }
}
@media only screen and (max-width: 838px) {
  #sequence {
    height: 550px;
  }
  #sequence .model {
    max-height: 530px !important;
    width: auto;
  }
}
@media only screen and (max-width: 768px) {
  #sequence {
    height: 500px;
  }
  #sequence .title {
    font-size: 2.8em;
  }
  #sequence .subtitle {
    font-size: 1.6em;
  }
  #sequence .sequence-next,
  #sequence .sequence-prev {
    height: 60px;
    margin-top: -40px;
  }
  #sequence .model {
    max-height: 495px !important;
    width: auto;
	padding-top:15px !important;
  }
}
@media only screen and (max-width: 568px) {
  #sequence .model {
    left: 50%;
    min-width: 40%;
    /*prevents the model from shrinking when the browser is resized*/
    width: 40%;
  }
  #sequence .animate-in .model {
    left: 50%;
    margin-left: -20%;
  }
  #sequence .animate-out .model {
    left: 50%;
    margin-left: -20%;
  }
  #sequence .title {
    background: #a1a1a1;
    background: rgba(0, 0, 0, 0.2);
    bottom: 0;
    left: 100%;
    padding: 4%;
    bottom: -50%;
    width: 100%;
    z-index: 10;
  }
  #sequence .animate-in .title {
    left: 0%;
  }
  #sequence .animate-out .title {
    left: -100%;
  }
  #sequence .subtitle {
    visibility: hidden;
  }
  #sequence .sequence-pagination {
    bottom: 40px;
  }
  #sequence .sequence-pagination li img {
    height: 100px;
  }
}
@media only screen and (max-width: 518px) {
  #sequence {
    height: 450px;
  }
}
@media only screen and (max-width: 468px) {
  #sequence {
    height: 415px;
  }
  #sequence .sequence-pagination {
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (max-width: 418px) {
  #sequence {
    height: 375px;
  }
}
@media only screen and (max-width: 368px) {
  #sequence {
    height: 325px;
  }
  #sequence .title {
    font-size: 2.2em;
  }
}
@media only screen and (max-width: 320px) and (orientation: portrait) {
  /*iphone portrait*/
  #sequence {
    height: 320px;
  }
  #sequence .model {
    min-width: 45%;
    width: 45%;
  }
  #sequence .animate-in .model {
    margin-left: -22.5%;
  }
  #sequence .animate-out .model {
    margin-left: -22.5%;
  }
}
@media only screen and (min-width: 321px) and (max-width: 480px) and (orientation: landscape) {
  #sequence {
    height: 260px;
  }
  #sequence .model {
    min-width: 24%;
    width: 24%;
  }
  #sequence .animate-in .model {
    left: 17.5%;
    margin-left: 0;
  }
  #sequence .animate-out .model {
    left: 17.5%;
    margin-left: 0;
  }
  #sequence .sequence-pagination {
    right: 17.5%;
  }
}
