/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

body {
    font-size: 1em;
    line-height: 1.4; 
}

footer nav {
    display: block;
}
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}




span.click-area {
  height: 100%;
  width: 100%;
  background: purple;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10000;
}






/* General Fonts
-------------------------------------------------- */

@font-face {
    font-family: 'intro_boldregular';
    src: url('../fonts/intro-bold-webfont.eot');
    src: url('../fonts/intro-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/intro-bold-webfont.woff') format('woff'),
         url('../fonts/intro-bold-webfont.ttf') format('truetype'),
         url('../fonts/intro-bold-webfont.svg#intro_boldregular') format('svg');
    font-weight: bolder;
    font-style: normal;

}

/* CSS3 Animations
--------------------------------------------------*/
@-webkit-keyframes spaceboots {
	0% { -webkit-transform: translate(2px, 1px) rotate(0deg); }
	10% { -webkit-transform: translate(-1px, -2px) rotate(-1deg); }
	20% { -webkit-transform: translate(-3px, 0px) rotate(1deg); }
	30% { -webkit-transform: translate(0px, 2px) rotate(0deg); }
	40% { -webkit-transform: translate(1px, -1px) rotate(1deg); }
	50% { -webkit-transform: translate(-1px, 2px) rotate(-1deg); }
	60% { -webkit-transform: translate(-3px, 1px) rotate(0deg); }
	70% { -webkit-transform: translate(2px, 1px) rotate(-1deg); }
	80% { -webkit-transform: translate(-1px, -1px) rotate(1deg); }
	90% { -webkit-transform: translate(2px, 2px) rotate(0deg); }
	100% { -webkit-transform: translate(1px, -2px) rotate(-1deg); }
}
.shake:hover,
.shake:focus {
	-webkit-animation-name: spaceboots;
	-webkit-animation-duration: 0.8s;
	-webkit-transform-origin:50% 50%;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
}
.shake {
	display:inline-block
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}
 

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}


.clearfix:after, .video-container:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {

    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}





/* ==========================================================================
     General Styles
   ========================================================================== */

.container {
	max-width: 1020px;
	margin: 0 auto; 
}
 
/*---------------------------/
/------ Footer Styles ------/
/-------------------------*/

footer {
  background: url("../img/backgrounds/footer_BG.png") repeat-x center;
  position:relative;
  float:left;
  width:100%;
  min-width:320px;
  height: auto;
}

footer nav{ 
float: none;
margin: 20px auto auto;
width: 340px;
}

footer nav li {
  list-style: none;
  display: inline;
  float: left;
  margin-right: 20px;
}


footer nav li:last-child {
  margin-right: 0
}

footer p{
  clear:both;
  text-align: center;
  font-size: 10px;
  color:#fff;
  width:75%;
  margin:0 auto;
  padding: 20px 0px 40px;
}

.border { 
  width:100%;
  height:31px;
  background: url("../img/divider.png") repeat-x center;
} 


/* ==========================================================================
     Header and Nav Styles
   ========================================================================== */
    

#list_icon{
	display: none;
}
   
header{
	height: 89px;
	background: url("../img/header_bg.gif") repeat-x center bottom;
	width: 100%;
	position: fixed;
	z-index: 9999;
}


.logo {
	margin-left: 20px;
	margin-top: 8px;
	float: left;
}

#panel {
	float: right; 
	margin-top: 15px;
}

#panel li {
	float: left;
	display: inline;
	margin-right: 25px; 
}

/* Global Navigation link style */
nav li a{
	color: white;
	font-size: 18px;
	font-family: 'intro_boldregular';
	text-decoration: none; 
	text-shadow: 0px 0px 4px #f35f1b;
	transition: 0.4s ease-in-out all;
	-webkit-transition: 0.4s ease-in-out all;
	-moz-transition: 0.4s ease-in-out all; 
}
 
#panel li a:hover {
	color: #f46608; 
	text-shadow: none;
}

/* Social Buttons */

#panel li ul {
	float: left;
	margin: 0;
	padding: 0;
}

#panel li ul li{
	margin-top: -5px;
	margin-right: 5px;
}








 

@media all and (min-width : 490px) and (max-width : 800px) {  
	#panel li {
		float: left;
		display: inline;
		margin-right: 10px; 
	} 
}

/* -- Mobile Header view --- */ 
@media all and (max-width : 767px) { 
 
  #panel li {
    float: left;
    display: inline;
    margin-right: 10px; 
  } 
  
  .logo {
    margin-left: 5px;
  }
  
  .logo img {
    width: 100px;
  } 	

   nav li a{
    color: white;
    font-size: 14px;
    font-family: 'intro_boldregular';
    text-decoration: none; 
    text-shadow: 0px 0px 4px #f35f1b;
    transition: 0.4s ease-in-out all;
    -webkit-transition: 0.4s ease-in-out all;
    -moz-transition: 0.4s ease-in-out all; 
  }

		.logo{ 
			margin-top: 5px;
			float: left;
		}

		.logo img {
			width: 87px;
		}

		header {
			height: 69px !important; 
			position: absolute;
		}
		 
		#list_icon { 
			display: block;
			float: right;
			margin-top: 8px;
			margin-right: 13px
		}
		  
		/*---------------------------/
		/------ Mobile Navigation Panel -------/
		/-------------------------*/

		#panel {
			display: none;
			width: 100%; 
			background: #f35f1b; 
			z-index: 100001;
			position: absolute;
			top: 60px;
			margin-top: 9px;
		}

		#panel ul {
			padding: 0;
			margin: 0;
		}
		 
		#panel ul li{
			height: 50px;
			text-align: center;
			list-style: none;
			background: #ff930f; /* Old browsers */
			background: -moz-linear-gradient(top,  #ff930f 0%, #ff7708 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff930f), color-stop(100%,#ff7708)); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top,  #ff930f 0%,#ff7708 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top,  #ff930f 0%,#ff7708 100%); /* Opera 11.10+ */
			background: -ms-linear-gradient(top,  #ff930f 0%,#ff7708 100%); /* IE10+ */
			background: linear-gradient(to bottom,  #ff930f 0%,#ff7708 100%); /* W3C */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff930f', endColorstr='#ff7708',GradientType=0 ); /* IE6-9 */ 
			padding: 0; 
			line-height: 50px;
			margin: 0;
			width: 100%;
			border-bottom: 1px solid #f35f1b;
		}

		#panel ul li a{
			text-decoration: none;
			font-family: 'intro_boldregular';
			font-size: 28px;
			color: white;
		}

		#panel ul li ul {
			width: 155px;
			float: none;
			margin: 0 auto;
		}

		#panel ul li ul li{
			display: inline;
			float: left;
			background: none;
			width: 25px;
			text-align: center;
			margin-left: 13px;
		} 

    .home_scroll {
      display: none;
    }

  footer nav {
      float: none;
      margin: 20px auto auto;
      width: 230px;
  }

  footer nav li {
    list-style: none;
    display: inline;
    float: left;
    margin-right: 5px;
    font-size: 6px;
  }  

}






/* Lush Demo Component Styles
   ================================================== */

.lush-slider {
  position: relative;
  margin: 0 auto;
  /*max-width: 1400px;*/
  min-width: 400px;
  min-height: 100px;
}

.lush-slider img {
  max-width: none;
}

h1, h2, h3 {
    font-family: Arial;
    text-shadow: 0 1px 0 rgba(104,104,104,0.55);
    font-weight: bold;
}

h1 { font-size: 70px; padding: 8px 16px; line-height: 80px; } 
h2 { font-size: 40px; padding: 4px 8px; line-height: 50px;  }
h3 { font-size: 20px; padding: 3px 6px; line-height: 30px;  }

           
.t-white {
  background: white;
  color: #303030;
  text-shadow: 0 5px 0 rgba(204,204,204,0.75) !important;
}

.t-red {
  background: #f05c58;
  color: white;
  text-align: center;
}

.t-orange {
  background: #ec8723;
  color: #eee;
}

.t-yellow {
  background: #face0d;
  color: #eee;
}

.t-yellow-b {
  color: #face0d;
}

.t-white-b {
  color: #fff;
}

.rounded {
  border-radius: 5px;
}


.bg-black {
  background: black;
  opacity: 0.5;
  filter: alpha(opacity = 50);
}

#demo-box {
  max-height: 450px;
  margin: 0 auto;
  background: white;
  font-size: 20px;
}

#demo-basic {
  max-height: 300px;
  margin: 0 auto;
  background: white;
  font-size: 20px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 8px solid #FFD784;
}
#demo-basic p {
  white-space: normal !important;
  width: 470px;
}
#demo-basic h3 {
  font-size: 150%;
  width: 470px;
}

.lush-external {
  width: 50px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
}
#go-envato { background-image: url("../img/tf-envato.png"); }
#go-ad { background-image: url("../img/ad.png"); }
#go-tf { background-image: url("../img/tf.png"); }
#go-cc { background-image: url("../img/cc.png"); }



/*!
 * Lush Content Slider - Animation Stylesheet
 * http://geedmo.com
 *
 * Version: 1.0
 * Created: 27/01/2013
 *
 * Copyright (c) 2013, Geedmo. All rights reserved.
 * Released under CodeCanyon Regular License: http://codecanyon.net/licenses
 *
 * News: http://codecanyon.net/user/geedmo/portfolio
 * ======================================================= */


/* ==================================
 * FADE ANIMATIONS
 * ================================== */
@-webkit-keyframes fadeIn {
    0%   { opacity: 0; }    
    100% { opacity: 1; }
}
@-moz-keyframes fadeIn {
    0%   { opacity: 0; }    
    100% { opacity: 1; }
}
@-o-keyframes fadeIn {
    0%   { opacity: 0; }    
    100% { opacity: 1; }
}
@keyframes fadeIn {
    0%   { opacity: 0; }    
    100% { opacity: 1; }
}


/* FADE OUT */
@-webkit-keyframes fadeOut {
    0%   { opacity: 1; }    
    100% { opacity: 0; }
}
@-moz-keyframes fadeOut {
    0%   { opacity: 1; }    
    100% { opacity: 0; }
}
@-o-keyframes fadeOut {
    0%   { opacity: 1; }    
    100% { opacity: 0; }
}
@keyframes fadeOut {
    0%   { opacity: 1; }    
    100% { opacity: 0; }
}


/* ==================================
 * IN ANIMATIONS
 * ================================== */

/* BACK LEFT - FRON RIGHT */
@-webkit-keyframes backLeftIn {
    0%   { -webkit-transform: perspective(400px) rotateY(90deg); }    
    100% { -webkit-transform: perspective(400px) rotateY(0deg); }
}
@-moz-keyframes backLeftIn {
    0%   { -moz-transform: perspective(400px) rotateY(90deg); }    
    100% { -moz-transform: perspective(400px) rotateY(0deg); }
}
@-o-keyframes backLeftIn {
    0%   { -o-transform: perspective(400px) rotateY(90deg); opacity: 0; }
    100% { -o-transform: perspective(400px) rotateY(0deg); }
}
@keyframes backLeftIn {
    0%   { transform: perspective(1000px) rotateY(90deg);  }    
    100% { transform: perspective(400px) rotateY(0deg); }
}

/* BACK RIGHT - FRONT LEFT*/
@-webkit-keyframes backRightIn {
    0%   { -webkit-transform: perspective(400px) rotateY(-90deg); }    
    100% { -webkit-transform: perspective(400px) rotateY(0deg); }
}
@-moz-keyframes backRightIn {
    0%   { -moz-transform: perspective(400px) rotateY(-90deg); }    
    100% { -moz-transform: perspective(400px) rotateY(0deg); }
}
@-o-keyframes backRightIn {
    0%   { -o-transform: perspective(400px) rotateY(-90deg); }
    100% { -o-transform: perspective(400px) rotateY(0deg); }
}
@keyframes backRightIn {
    0%   { transform: perspective(400px) rotateY(-90deg); }    
    100% { transform: perspective(400px) rotateY(0deg); }
}


/* BACK BOTTOM - FRONT TOP*/
@-webkit-keyframes backBottomIn {
    0%   { -webkit-transform: perspective(400px) rotateX(90deg); }    
    100% { -webkit-transform: perspective(400px) rotateX(0deg); }
}
@-moz-keyframes backBottomIn {
    0%   { -moz-transform: perspective(400px) rotateX(90deg); }    
    100% { -moz-transform: perspective(400px) rotateX(0deg); }
}
@-o-keyframes backBottomIn {
    0%   { -o-transform: perspective(400px) rotateX(90deg); }
    100% { -o-transform: perspective(400px) rotateX(0deg); }
}
@keyframes backBottomIn {
    0%   { transform: perspective(400px) rotateX(90deg); }    
    100% { transform: perspective(400px) rotateX(0deg); }
}

/* BACK TOP - FRONT BOTTOM */
@-webkit-keyframes backTopIn {
    0%   { -webkit-transform: perspective(400px) rotateX(-90deg); }    
    100% { -webkit-transform: perspective(400px) rotateX(0deg); }
}
@-moz-keyframes backTopIn {
    0%   { -moz-transform: perspective(400px) rotateX(-90deg); }    
    100% { -moz-transform: perspective(400px) rotateX(0deg); }
}
@-o-keyframes backTopIn {
    0%   { -o-transform: perspective(400px) rotateX(-90deg); }
    100% { -o-transform: perspective(400px) rotateX(0deg); }
}
@keyframes backTopIn {
    0%   { transform: perspective(400px) rotateX(-90deg); }    
    100% { transform: perspective(400px) rotateX(0deg); }
}

/* ==================================
 * OUT ANIMATIONS
 * ================================== */


/* BACK LEFT - FRON RIGHT */
@-webkit-keyframes backLeftOut {
    0%   { -webkit-transform: perspective(400px) rotateY(0deg); }    
    100% { -webkit-transform: perspective(400px) rotateY(90deg); }
}
@-moz-keyframes backLeftOut {
    0%   { -moz-transform: perspective(400px) rotateY(0deg); }    
    100% { -moz-transform: perspective(400px) rotateY(90deg); }
}
@-o-keyframes backLeftOut {
    0%   { -o-transform: perspective(400px) rotateY(0deg); }
    100% { -o-transform: perspective(400px) rotateY(90deg); }
}
@keyframes backLeftOut {
    0%   { transform: perspective(400px) rotateY(0deg); }    
    100% { transform: perspective(400px) rotateY(90deg); }
}

/* BACK RIGHT - FRONT LEFT*/
@-webkit-keyframes backRightOut {
    0%   { -webkit-transform: perspective(400px) rotateY(0deg); }    
    100% { -webkit-transform: perspective(400px) rotateY(-90deg); }
}
@-moz-keyframes backRightOut {
    0%   { -moz-transform: perspective(400px) rotateY(0deg); }    
    100% { -moz-transform: perspective(400px) rotateY(-90deg); }
}
@-o-keyframes backRightOut {
    0%   { -o-transform: perspective(400px) rotateY(0deg); }
    100% { -o-transform: perspective(400px) rotateY(-90deg); }
}
@keyframes backRightOut {
    0%   { transform: perspective(400px) rotateY(0deg); }    
    100% { transform: perspective(400px) rotateY(-90deg); }
}


/* BACK BOTTOM - FRONT TOP*/
@-webkit-keyframes backBottomOut {
    0%   { -webkit-transform: perspective(400px) rotateX(0deg); }    
    100% { -webkit-transform: perspective(400px) rotateX(90deg); }
}
@-moz-keyframes backBottomOut {
    0%   { -moz-transform: perspective(400px) rotateX(0deg); }    
    100% { -moz-transform: perspective(400px) rotateX(90deg); }
}
@-o-keyframes backBottomOut {
    0%   { -o-transform: perspective(400px) rotateX(0deg); }
    100% { -o-transform: perspective(400px) rotateX(90deg); }
}
@keyframes backBottomOut {
    0%   { transform: perspective(400px) rotateX(0deg); }    
    100% { transform: perspective(400px) rotateX(90deg); }
}

/* BACK TOP - FRONT BOTTOM */
@-webkit-keyframes backTopOut {
    0%   { -webkit-transform: perspective(400px) rotateX(0deg); }    
    100% { -webkit-transform: perspective(400px) rotateX(-90deg); }
}
@-moz-keyframes backTopOut {
    0%   { -moz-transform: perspective(400px) rotateX(0deg); }    
    100% { -moz-transform: perspective(400px) rotateX(-90deg); }
}
@-o-keyframes backTopOut {
    0%   { -o-transform: perspective(400px) rotateX(0deg); }
    100% { -o-transform: perspective(400px) rotateX(-90deg); }
}
@keyframes backTopOut {
    0%   { transform: perspective(400px) rotateX(0deg); }    
    100% { transform: perspective(400px) rotateX(-90deg); }
}


/* LUSH MAIN _-------------------------------- */

/*!
 * Lush Content Slider - LESS Stylesheet
 * http://geedmo.com
 *
 * Version: 1.3
 * Created: 27/01/2013
 * Updated: 15/03/2013
 *
 * Copyright (c) 2013, Geedmo. All rights reserved.
 * Released under CodeCanyon Regular License: http://codecanyon.net/licenses
 *
 * News: http://codecanyon.net/user/geedmo/portfolio
 * ======================================================= */
/* ================================
  * Lush Container
  * ================================*/
.lush-slider {
  position: relative;
  list-style-type: none;
  padding: 0;
  *zoom: 1;
}
.lush-slider:before,
.lush-slider:after {
  content: "";
  display: table;
}
.lush-slider:after {
  clear: both;
}
.lush-slider:before,
.lush-slider:after {
  display: table;
  content: "";
  line-height: 0;
}
.lush-slider:after {
  clear: both;
}
.lush-slider .lush {
  float: left;
  width: 100%;
  height: 100%;
}
.lush-slider li {
  display: none;
}
.lush {
  overflow: hidden;
  position: relative;
}
.lush img {
  border: none;
}
.lush a img {
  max-width: 100%;
}
.lush * {
  white-space: nowrap;
  margin: 0;
}
.flexslider .slides img {
  width: auto !important;
  max-width: none;
}
.flexslider .slides img:first-child {
  width: 100% !important;
}
 
#slider2 .slider_text2_2_5 img:first-child {
  width: auto !important;
}

.clearfix:after, footer nav:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}


/* ================================
  * Lush IN Transitions
  * ================================*/
.lush .in {
  /* SLIDE */

  /* DIAGONALS */

  /* SLIDE 3D */

  /* FADE */

  /* SLIDE FADING */

  /* SCALE */

  /* ROTATE */

  /* SCALE ROTATE */

  /* UNFOLD */
  /* ANIMATIONS */

  /* FLIP */

}
.lush .in.left,
.lush .in.l {
  margin-left: -100%;
}
.lush .in.left.live,
.lush .in.l.live {
  margin-left: 0;
}
.lush .in.right,
.lush .in.r {
  margin-left: 100%;
}
.lush .in.right.live,
.lush .in.r.live {
  margin-left: 0;
}
.lush .in.top,
.lush .in.t {
  margin-top: -100%;
  margin-bottom: 100%;
}
.lush .in.top.live,
.lush .in.t.live {
  margin-top: 0;
  margin-bottom: 0;
}
.lush .in.bottom,
.lush .in.b {
  margin-bottom: -100%;
  margin-top: 100%;
}
.lush .in.bottom.live,
.lush .in.b.live {
  margin-bottom: 0;
  margin-top: 0;
}
.lush .in.left-bottom,
.lush .in.lb {
  margin-left: -100%;
  margin-bottom: -100%;
  margin-top: 100%;
}
.lush .in.left-bottom.live,
.lush .in.lb.live {
  margin-left: 0;
}
.lush .in.left-bottom.live,
.lush .in.lb.live {
  margin-bottom: 0;
  margin-top: 0;
}
.lush .in.right-bottom,
.lush .in.rb {
  margin-left: 100%;
  margin-bottom: -100%;
  margin-top: 100%;
}
.lush .in.right-bottom.live,
.lush .in.rb.live {
  margin-left: 0;
}
.lush .in.right-bottom.live,
.lush .in.rb.live {
  margin-bottom: 0;
  margin-top: 0;
}
.lush .in.left-top,
.lush .in.lt {
  margin-left: -100%;
  margin-top: -100%;
  margin-bottom: 100%;
}
.lush .in.left-top.live,
.lush .in.lt.live {
  margin-left: 0;
}
.lush .in.left-top.live,
.lush .in.lt.live {
  margin-top: 0;
  margin-bottom: 0;
}
.lush .in.right-top,
.lush .in.rt {
  margin-left: 100%;
  margin-top: -100%;
  margin-bottom: 100%;
}
.lush .in.right-top.live,
.lush .in.rt.live {
  margin-left: 0;
}
.lush .in.right-top.live,
.lush .in.rt.live {
  margin-top: 0;
  margin-bottom: 0;
}
.lush .in.left3d,
.lush .in.l3d {
  -webkit-transform: translate3d(-200%, 0px, 0px);
  -moz-transform: translate3d(-200%, 0px, 0px);
  -ms-transform: translate3d(-200%, 0px, 0px);
  -o-transform: translate3d(-200%, 0px, 0px);
  transform: translate3d(-200%, 0px, 0px);
}
.lush .in.left3d.live,
.lush .in.l3d.live {
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.lush .in.right3d,
.lush .in.r3d {
  -webkit-transform: translate3d(200%, 0px, 0px);
  -moz-transform: translate3d(200%, 0px, 0px);
  -ms-transform: translate3d(200%, 0px, 0px);
  -o-transform: translate3d(200%, 0px, 0px);
  transform: translate3d(200%, 0px, 0px);
}
.lush .in.right3d.live,
.lush .in.r3d.live {
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.lush .in.top3d,
.lush .in.t3d {
  -webkit-transform: translate3d(0px, -200%, 0px);
  -moz-transform: translate3d(0px, -200%, 0px);
  -ms-transform: translate3d(0px, -200%, 0px);
  -o-transform: translate3d(0px, -200%, 0px);
  transform: translate3d(0px, -200%, 0px);
}
.lush .in.top3d.live,
.lush .in.t3d.live {
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.lush .in.bottom3d,
.lush .in.b3d {
  -webkit-transform: translate3d(0px, 200%, 0px);
  -moz-transform: translate3d(0px, 200%, 0px);
  -ms-transform: translate3d(0px, 200%, 0px);
  -o-transform: translate3d(0px, 200%, 0px);
  transform: translate3d(0px, 200%, 0px);
}
.lush .in.bottom3d.live,
.lush .in.b3d.live {
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.lush .in.fade {
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.fade.live {
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.left-fade,
.lush .in.lf {
  margin-left: -50px;
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.left-fade.live,
.lush .in.lf.live {
  margin-left: 0;
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.right-fade,
.lush .in.rf {
  margin-left: 50px;
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.right-fade.live,
.lush .in.rf.live {
  margin-left: 0;
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.top-fade,
.lush .in.tf {
  margin-top: -50px;
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.top-fade.live,
.lush .in.tf.live {
  margin-top: 0;
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.bottom-fade,
.lush .in.bf {
  margin-top: 50px;
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.bottom-fade.live,
.lush .in.bf.live {
  margin-top: 0;
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.front {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.front.live {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.back {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.back.live {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.left-top-rotate,
.lush .in.ltr {
  -webkit-transform-origin: -50% 0 0;
  -moz-transform-origin: -50% 0 0;
  -ms-transform-origin: -50% 0 0;
  -o-transform-origin: -50% 0 0;
  transform-origin: -50% 0 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.left-top-rotate.live,
.lush .in.ltr.live {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.right-top-rotate,
.lush .in.rtr {
  -webkit-transform-origin: 150% 0 0;
  -moz-transform-origin: 150% 0 0;
  -ms-transform-origin: 150% 0 0;
  -o-transform-origin: 150% 0 0;
  transform-origin: 150% 0 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.right-top-rotate.live,
.lush .in.rtr.live {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.left-bottom-rotate,
.lush .in.lbr {
  -webkit-transform-origin: -50% 0 0;
  -moz-transform-origin: -50% 0 0;
  -ms-transform-origin: -50% 0 0;
  -o-transform-origin: -50% 0 0;
  transform-origin: -50% 0 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.left-bottom-rotate.live,
.lush .in.lbr.live {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.right-bottom-rotate,
.lush .in.rbr {
  -webkit-transform-origin: 150% 0 0;
  -moz-transform-origin: 150% 0 0;
  -ms-transform-origin: 150% 0 0;
  -o-transform-origin: 150% 0 0;
  transform-origin: 150% 0 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.right-bottom-rotate.live,
.lush .in.rbr.live {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.front-rotate,
.lush .in.fr {
  -webkit-transform: rotate(90deg) scale(2);
  -moz-transform: rotate(90deg) scale(2);
  -ms-transform: rotate(90deg) scale(2);
  -o-transform: rotate(90deg) scale(2);
  transform: rotate(90deg) scale(2);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.front-rotate.live,
.lush .in.fr.live {
  -webkit-transform: rotate(0) scale(1);
  -moz-transform: rotate(0) scale(1);
  -ms-transform: rotate(0) scale(1);
  -o-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.back-rotate,
.lush .in.br {
  -webkit-transform: rotate(90deg) scale(0);
  -moz-transform: rotate(90deg) scale(0);
  -ms-transform: rotate(90deg) scale(0);
  -o-transform: rotate(90deg) scale(0);
  transform: rotate(90deg) scale(0);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.back-rotate.live,
.lush .in.br.live {
  -webkit-transform: rotate(0) scale(1);
  -moz-transform: rotate(0) scale(1);
  -ms-transform: rotate(0) scale(1);
  -o-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.front-rotate2,
.lush .in.fr2 {
  -webkit-transform: rotate(-30deg) scale(2) translate(-100%);
  -moz-transform: rotate(-30deg) scale(2) translate(-100%);
  -ms-transform: rotate(-30deg) scale(2) translate(-100%);
  -o-transform: rotate(-30deg) scale(2) translate(-100%);
  transform: rotate(-30deg) scale(2) translate(-100%);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.front-rotate2.live,
.lush .in.fr2.live {
  -webkit-transform: rotate(0) scale(1) translate(0, 0);
  -moz-transform: rotate(0) scale(1) translate(0, 0);
  -ms-transform: rotate(0) scale(1) translate(0, 0);
  -o-transform: rotate(0) scale(1) translate(0, 0);
  transform: rotate(0) scale(1) translate(0, 0);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.back-rotate2,
.lush .in.br2 {
  -webkit-transform: rotate(30deg) scale(0) translate(100%);
  -moz-transform: rotate(30deg) scale(0) translate(100%);
  -ms-transform: rotate(30deg) scale(0) translate(100%);
  -o-transform: rotate(30deg) scale(0) translate(100%);
  transform: rotate(30deg) scale(0) translate(100%);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .in.back-rotate2.live,
.lush .in.br2.live {
  -webkit-transform: rotate(0) scale(1) translate(0, 0);
  -moz-transform: rotate(0) scale(1) translate(0, 0);
  -ms-transform: rotate(0) scale(1) translate(0, 0);
  -o-transform: rotate(0) scale(1) translate(0, 0);
  transform: rotate(0) scale(1) translate(0, 0);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.left-unfold {
  width: 0;
}
.lush .in.left-unfold.live .inner {
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  -webkit-transform: rotate3d(0,0,0,0);
  -moz-transform: rotate3d(0,0,0,0);
  -ms-transform: rotate3d(0,0,0,0);
  -o-transform: rotate3d(0,0,0,0);
  transform: rotate3d(0,0,0,0);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .in.back-left {
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform-origin: 0 center 0;
  -moz-transform-origin: 0 center 0;
  -ms-transform-origin: 0 center 0;
  -o-transform-origin: 0 center 0;
  transform-origin: 0 center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .in.back-left.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeIn, backLeftIn;
  -moz-animation-name: fadeIn, backLeftIn;
  -o-animation-name: fadeIn, backLeftIn;
  animation-name: fadeIn, backLeftIn;
}
.lush .in.back-right {
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform-origin: right center 0;
  -moz-transform-origin: right center 0;
  -ms-transform-origin: right center 0;
  -o-transform-origin: right center 0;
  transform-origin: right center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .in.back-right.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeIn, backRightIn;
  -moz-animation-name: fadeIn, backRightIn;
  -o-animation-name: fadeIn, backRightIn;
  animation-name: fadeIn, backRightIn;
}
.lush .in.front-right {
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform-origin: right center 0;
  -moz-transform-origin: right center 0;
  -ms-transform-origin: right center 0;
  -o-transform-origin: right center 0;
  transform-origin: right center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .in.front-right.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeIn, backLeftIn;
  -moz-animation-name: fadeIn, backLeftIn;
  -o-animation-name: fadeIn, backLeftIn;
  animation-name: fadeIn, backLeftIn;
}
.lush .in.front-left {
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform-origin: 0 center 0;
  -moz-transform-origin: 0 center 0;
  -ms-transform-origin: 0 center 0;
  -o-transform-origin: 0 center 0;
  transform-origin: 0 center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .in.front-left.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeIn, backRightIn;
  -moz-animation-name: fadeIn, backRightIn;
  -o-animation-name: fadeIn, backRightIn;
  animation-name: fadeIn, backRightIn;
}
.lush .in.back-bottom {
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform-origin: bottom center 0;
  -moz-transform-origin: bottom center 0;
  -ms-transform-origin: bottom center 0;
  -o-transform-origin: bottom center 0;
  transform-origin: bottom center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .in.back-bottom.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeIn, backBottomIn;
  -moz-animation-name: fadeIn, backBottomIn;
  -o-animation-name: fadeIn, backBottomIn;
  animation-name: fadeIn, backBottomIn;
}
.lush .in.back-top {
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform-origin: top center 0;
  -moz-transform-origin: top center 0;
  -ms-transform-origin: top center 0;
  -o-transform-origin: top center 0;
  transform-origin: top center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .in.back-top.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeIn, backTopIn;
  -moz-animation-name: fadeIn, backTopIn;
  -o-animation-name: fadeIn, backTopIn;
  animation-name: fadeIn, backTopIn;
}
.lush .in.front-bottom {
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform-origin: bottom center 0;
  -moz-transform-origin: bottom center 0;
  -ms-transform-origin: bottom center 0;
  -o-transform-origin: bottom center 0;
  transform-origin: bottom center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .in.front-bottom.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeIn, backTopIn;
  -moz-animation-name: fadeIn, backTopIn;
  -o-animation-name: fadeIn, backTopIn;
  animation-name: fadeIn, backTopIn;
}
.lush .in.front-top {
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform-origin: top center 0;
  -moz-transform-origin: top center 0;
  -ms-transform-origin: top center 0;
  -o-transform-origin: top center 0;
  transform-origin: top center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .in.front-top.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeIn, backBottomIn;
  -moz-animation-name: fadeIn, backBottomIn;
  -o-animation-name: fadeIn, backBottomIn;
  animation-name: fadeIn, backBottomIn;
}
.lush .in.flip {
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform-origin: center center 0;
  -moz-transform-origin: center center 0;
  -ms-transform-origin: center center 0;
  -o-transform-origin: center center 0;
  transform-origin: center center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .in.flip.live {
  -webkit-animation-name: fadeIn, backRightIn;
  -moz-animation-name: fadeIn, backRightIn;
  -o-animation-name: fadeIn, backRightIn;
  animation-name: fadeIn, backRightIn;
}
.lush .in.flip-h {
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform-origin: center center 0;
  -moz-transform-origin: center center 0;
  -ms-transform-origin: center center 0;
  -o-transform-origin: center center 0;
  transform-origin: center center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .in.flip-h.live {
  -webkit-animation-name: fadeIn, backTopIn;
  -moz-animation-name: fadeIn, backTopIn;
  -o-animation-name: fadeIn, backTopIn;
  animation-name: fadeIn, backTopIn;
}
/* ================================
  * Lush OUT Transitions 
  * ================================*/
.lush .out {
  /* SLIDE */

  /* DIAGONAL */
  /* SLIDE 3D */

  /* FADE */

  /* SLIDE FADING */

  /* SCALE */

  /* ROTATE */

  /* SCALE ROTATE */

  /* ANIMATIONS */

  /* FLIP */

}
.lush .out.left,
.lush .out.l {
  margin-left: 0;
}
.lush .out.left.live,
.lush .out.l.live {
  margin-left: -100%;
}
.lush .out.right,
.lush .out.r {
  margin-left: 0;
}
.lush .out.right.live,
.lush .out.r.live {
  margin-left: 100%;
}
.lush .out.top,
.lush .out.t {
  margin-top: 0;
  margin-bottom: 0;
}
.lush .out.top.live,
.lush .out.t.live {
  margin-top: -100%;
  margin-bottom: 100%;
}
.lush .out.bottom,
.lush .out.b {
  margin-top: 0;
  margin-bottom: 0;
}
.lush .out.bottom.live,
.lush .out.b.live {
  margin-top: 100%;
  margin-bottom: -100%;
}
.lush .out.left-bottom,
.lush .out.lb {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.lush .out.left-bottom.live,
.lush .out.lb.live {
  margin-left: -100%;
}
.lush .out.left-bottom.live,
.lush .out.lb.live {
  margin-top: 100%;
  margin-bottom: -100%;
}
.lush .out.right-bottom,
.lush .out.rb {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.lush .out.right-bottom.live,
.lush .out.rb.live {
  margin-left: 100%;
}
.lush .out.right-bottom.live,
.lush .out.rb.live {
  margin-top: 100%;
  margin-bottom: -100%;
}
.lush .out.left-top,
.lush .out.lt {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.lush .out.left-top.live,
.lush .out.lt.live {
  margin-left: -100%;
}
.lush .out.left-top.live,
.lush .out.lt.live {
  margin-top: -100%;
  margin-bottom: 100%;
}
.lush .out.right-top,
.lush .out.rt {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.lush .out.right-top.live,
.lush .out.rt.live {
  margin-left: 100%;
}
.lush .out.right-top.live,
.lush .out.rt.live {
  margin-top: -100%;
  margin-bottom: 100%;
}
.lush .out.left3d,
.lush .out.l3d {
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.lush .out.left3d.live,
.lush .out.l3d.live {
  -webkit-transform: translate3d(-200%, 0px, 0px);
  -moz-transform: translate3d(-200%, 0px, 0px);
  -ms-transform: translate3d(-200%, 0px, 0px);
  -o-transform: translate3d(-200%, 0px, 0px);
  transform: translate3d(-200%, 0px, 0px);
}
.lush .out.right3d,
.lush .out.r3d {
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.lush .out.right3d.live,
.lush .out.r3d.live {
  -webkit-transform: translate3d(200%, 0px, 0px);
  -moz-transform: translate3d(200%, 0px, 0px);
  -ms-transform: translate3d(200%, 0px, 0px);
  -o-transform: translate3d(200%, 0px, 0px);
  transform: translate3d(200%, 0px, 0px);
}
.lush .out.top3d,
.lush .out.t3d {
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.lush .out.top3d.live,
.lush .out.t3d.live {
  -webkit-transform: translate3d(0px, -200%, 0px);
  -moz-transform: translate3d(0px, -200%, 0px);
  -ms-transform: translate3d(0px, -200%, 0px);
  -o-transform: translate3d(0px, -200%, 0px);
  transform: translate3d(0px, -200%, 0px);
}
.lush .out.bottom3d,
.lush .out.b3d {
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.lush .out.bottom3d.live,
.lush .out.b3d.live {
  -webkit-transform: translate3d(0px, 200%, 0px);
  -moz-transform: translate3d(0px, 200%, 0px);
  -ms-transform: translate3d(0px, 200%, 0px);
  -o-transform: translate3d(0px, 200%, 0px);
  transform: translate3d(0px, 200%, 0px);
}
.lush .out.fade {
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .out.fade.live {
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.left-fade.live,
.lush .out.lf.live {
  margin-left: 0;
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  margin-left: -50px;
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.right-fade,
.lush .out.rf {
  margin-left: 0;
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .out.right-fade.live,
.lush .out.rf.live {
  margin-left: 50px;
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.top-fade,
.lush .out.tf {
  margin-top: 0;
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .out.top-fade.live,
.lush .out.tf.live {
  margin-top: -50px;
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.bottom-fade,
.lush .out.bf {
  margin-top: 0;
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .out.bottom-fade.live,
.lush .out.bf.live {
  margin-top: 50px;
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.front {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .out.front.live {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.back {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.lush .out.back.live {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.lush .out.left-bottom-rotate,
.lush .out.lbr {
  -webkit-transform-origin: -50% 0 0;
  -moz-transform-origin: -50% 0 0;
  -ms-transform-origin: -50% 0 0;
  -o-transform-origin: -50% 0 0;
  transform-origin: -50% 0 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .out.left-bottom-rotate.live,
.lush .out.lbr.live {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.right-bottom-rotate,
.lush .out.rbr {
  -webkit-transform-origin: 150% 0 0;
  -moz-transform-origin: 150% 0 0;
  -ms-transform-origin: 150% 0 0;
  -o-transform-origin: 150% 0 0;
  transform-origin: 150% 0 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .out.right-bottom-rotate.live,
.lush .out.rbr.live {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.front-rotate,
.lush .out.fr {
  -webkit-transform: rotate(0) scale(1);
  -moz-transform: rotate(0) scale(1);
  -ms-transform: rotate(0) scale(1);
  -o-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .out.front-rotate.live,
.lush .out.fr.live {
  -webkit-transform: rotate(90deg) scale(2);
  -moz-transform: rotate(90deg) scale(2);
  -ms-transform: rotate(90deg) scale(2);
  -o-transform: rotate(90deg) scale(2);
  transform: rotate(90deg) scale(2);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.back-rotate,
.lush .out.br {
  -webkit-transform: rotate(0) scale(1);
  -moz-transform: rotate(0) scale(1);
  -ms-transform: rotate(0) scale(1);
  -o-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .out.back-rotate.live,
.lush .out.br.live {
  -webkit-transform: rotate(90deg) scale(0);
  -moz-transform: rotate(90deg) scale(0);
  -ms-transform: rotate(90deg) scale(0);
  -o-transform: rotate(90deg) scale(0);
  transform: rotate(90deg) scale(0);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.front-rotate2,
.lush .out.fr2 {
  -webkit-transform: rotate(0) scale(1) translate(0, 0);
  -moz-transform: rotate(0) scale(1) translate(0, 0);
  -ms-transform: rotate(0) scale(1) translate(0, 0);
  -o-transform: rotate(0) scale(1) translate(0, 0);
  transform: rotate(0) scale(1) translate(0, 0);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .out.front-rotate2.live,
.lush .out.fr2.live {
  -webkit-transform: rotate(-30deg) scale(2) translate(-100%);
  -moz-transform: rotate(-30deg) scale(2) translate(-100%);
  -ms-transform: rotate(-30deg) scale(2) translate(-100%);
  -o-transform: rotate(-30deg) scale(2) translate(-100%);
  transform: rotate(-30deg) scale(2) translate(-100%);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.back-rotate2,
.lush .out.br2 {
  -webkit-transform: rotate(0) scale(1) translate(0, 0);
  -moz-transform: rotate(0) scale(1) translate(0, 0);
  -ms-transform: rotate(0) scale(1) translate(0, 0);
  -o-transform: rotate(0) scale(1) translate(0, 0);
  transform: rotate(0) scale(1) translate(0, 0);
  visibility: visible;
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
.lush .out.back-rotate2.live,
.lush .out.br2.live {
  -webkit-transform: rotate(30deg) scale(0) translate(100%);
  -moz-transform: rotate(30deg) scale(0) translate(100%);
  -ms-transform: rotate(30deg) scale(0) translate(100%);
  -o-transform: rotate(30deg) scale(0) translate(100%);
  transform: rotate(30deg) scale(0) translate(100%);
  visibility: hidden;
  zoom: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lush .out.back-left {
  -webkit-transform-origin: 0 center 0;
  -moz-transform-origin: 0 center 0;
  -ms-transform-origin: 0 center 0;
  -o-transform-origin: 0 center 0;
  transform-origin: 0 center 0;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .out.back-left.live {
  -webkit-animation-name: fadeOut, backLeftOut;
  -moz-animation-name: fadeOut, backLeftOut;
  -o-animation-name: fadeOut, backLeftOut;
  animation-name: fadeOut, backLeftOut;
}
.lush .out.back-right {
  -webkit-transform-origin: right center 0;
  -moz-transform-origin: right center 0;
  -ms-transform-origin: right center 0;
  -o-transform-origin: right center 0;
  transform-origin: right center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .out.back-right.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeOut, backRightOut;
  -moz-animation-name: fadeOut, backRightOut;
  -o-animation-name: fadeOut, backRightOut;
  animation-name: fadeOut, backRightOut;
}
.lush .out.front-right {
  -webkit-transform-origin: right center 0;
  -moz-transform-origin: right center 0;
  -ms-transform-origin: right center 0;
  -o-transform-origin: right center 0;
  transform-origin: right center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .out.front-right.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeOut, backLeftOut;
  -moz-animation-name: fadeOut, backLeftOut;
  -o-animation-name: fadeOut, backLeftOut;
  animation-name: fadeOut, backLeftOut;
}
.lush .out.front-left {
  -webkit-transform-origin: 0 center 0;
  -moz-transform-origin: 0 center 0;
  -ms-transform-origin: 0 center 0;
  -o-transform-origin: 0 center 0;
  transform-origin: 0 center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .out.front-left.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeOut, backRightOut;
  -moz-animation-name: fadeOut, backRightOut;
  -o-animation-name: fadeOut, backRightOut;
  animation-name: fadeOut, backRightOut;
}
.lush .out.back-bottom {
  -webkit-transform-origin: bottom center 0;
  -moz-transform-origin: bottom center 0;
  -ms-transform-origin: bottom center 0;
  -o-transform-origin: bottom center 0;
  transform-origin: bottom center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .out.back-bottom.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeOut, backBottomOut;
  -moz-animation-name: fadeOut, backBottomOut;
  -o-animation-name: fadeOut, backBottomOut;
  animation-name: fadeOut, backBottomOut;
}
.lush .out.back-top {
  -webkit-transform-origin: top center 0;
  -moz-transform-origin: top center 0;
  -ms-transform-origin: top center 0;
  -o-transform-origin: top center 0;
  transform-origin: top center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .out.back-top.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeOut, backTopOut;
  -moz-animation-name: fadeOut, backTopOut;
  -o-animation-name: fadeOut, backTopOut;
  animation-name: fadeOut, backTopOut;
}
.lush .out.front-bottom {
  -webkit-transform-origin: bottom center 0;
  -moz-transform-origin: bottom center 0;
  -ms-transform-origin: bottom center 0;
  -o-transform-origin: bottom center 0;
  transform-origin: bottom center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .out.front-bottom.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeOut, backTopOut;
  -moz-animation-name: fadeOut, backTopOut;
  -o-animation-name: fadeOut, backTopOut;
  animation-name: fadeOut, backTopOut;
}
.lush .out.front-top {
  -webkit-transform-origin: top center 0;
  -moz-transform-origin: top center 0;
  -ms-transform-origin: top center 0;
  -o-transform-origin: top center 0;
  transform-origin: top center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .out.front-top.live {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: fadeOut, backBottomOut;
  -moz-animation-name: fadeOut, backBottomOut;
  -o-animation-name: fadeOut, backBottomOut;
  animation-name: fadeOut, backBottomOut;
}
.lush .out.flip {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform-origin: center center 0;
  -moz-transform-origin: center center 0;
  -ms-transform-origin: center center 0;
  -o-transform-origin: center center 0;
  transform-origin: center center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .out.flip.live {
  -webkit-animation-name: fadeOut, backLeftOut;
  -moz-animation-name: fadeOut, backLeftOut;
  -o-animation-name: fadeOut, backLeftOut;
  animation-name: fadeOut, backLeftOut;
}
.lush .out.flip-h {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform-origin: center center 0;
  -moz-transform-origin: center center 0;
  -ms-transform-origin: center center 0;
  -o-transform-origin: center center 0;
  transform-origin: center center 0;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.lush .out.flip-h.live {
  -webkit-animation-name: fadeOut, backBottomOut;
  -moz-animation-name: fadeOut, backBottomOut;
  -o-animation-name: fadeOut, backBottomOut;
  animation-name: fadeOut, backBottomOut;
}
/* ================================
  * Lush Navigation Controls
  * ================================*/
.lush-nav {
  position: absolute;
  display: block !important;
  bottom: 20px;
  font-size: 0;
  white-space: nowrap;
  background-color: transparent;
  width: auto;
  float: none;
  zoom: 1;
  opacity: 0.4;
  filter: alpha(opacity=40);
  -webkit-transition: opacity 0.2s linear 0;
  -moz-transition: opacity 0.2s linear 0s;
  -o-transition: opacity 0.2s linear 0;
  transition: opacity 0.2s linear 0;
}
.lush-nav:hover {
  zoom: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s linear 0;
  -moz-transition: opacity 0.2s linear 0s;
  -o-transition: opacity 0.2s linear 0;
  transition: opacity 0.2s linear 0;
}
.lush-nav a {
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 40px;
  height: 42px;
}
.lush-nav a:focus {
  outline: none;
}
.lush-nav .lush-page {
  background-position: -40px 0;
}
.lush-nav .lush-page:hover,
.lush-nav .lush-page.current {
  background-position: -40px -42px;
}
.lush-nav .lush-prev {
  background-position: 0 0;
}
.lush-nav .lush-prev:hover {
  background-position: 0 -42px;
}
.lush-nav .lush-next {
  background-position: -80px 0;
}
.lush-nav .lush-next:hover {
  background-position: -80px -42px;
}
/* ================================
  * Skin White default
  * ================================*/
.lush-slider {
  padding: 15px;
  border: 1px solid #ddd;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #fff;
}
.lush-slider .lush-nav a {
  background-image: url('../skin/lush-skin.png');
}
/* ================================
  * Skin Dark
  * ================================*/
.lush-slider.dark {
  border: none;
  background: #202020;
  -webkit-box-shadow: 0 1px 2px #202020;
  -moz-box-shadow: 0 1px 2px #202020;
  box-shadow: 0 1px 2px #202020;
}
.lush-slider.dark .lush-nav a {
  background-image: url('../skin/lush-skin-dark.png');
}
/* ================================
  * Skin Silver
  * ================================*/
.lush-slider.silver {
  border: none;
  background-color: #e4e4e2;
  background-image: -webkit-gradient(linear, left center, right center, from(#cccbc7), to(#e4e4e2));
  background-image: -webkit-linear-gradient(left, #cccbc7, #e4e4e2);
  background-image: -moz-linear-gradient(left, #cccbc7, #e4e4e2);
  background-image: -o-linear-gradient(left, #cccbc7, #e4e4e2);
  background-image: linear-gradient(left, #cccbc7, #e4e4e2);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, StartColorStr='#cccbc7', EndColorStr='#e4e4e2');
  -webkit-box-shadow: 0 1px 2px #202020;
  -moz-box-shadow: 0 1px 2px #202020;
  box-shadow: 0 1px 2px #202020;
}
.lush-slider.silver .lush-nav a {
  background-image: url('../skin/lush-skin-silver.png');
}
.lush-slider.no-skin {
  background: transparent;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
/* ================================
  * Slider shadows
  * ================================*/
.lush-shadow {
  display: block !important;
  /* alway force to show shadow. Disable from plugin options. */

  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  bottom: 0;
  height: 30px;
  margin-bottom: -30px;
  position: absolute;
  width: 100%;
}
.shadow-a .lush-shadow {
  background-image: url('../img/shadow-a.png');
}
.shadow-b .lush-shadow {
  background-image: url('../img/shadow-b.png');
}
.shadow-c .lush-shadow {
  background-image: url('../img/shadow-c.png');
}
.shadow-d .lush-shadow {
  background-image: url('../img/shadow-d.png');
}
.no-shadow .lush-shadow {
  display: none;
} 



