/*
 * Swiper - Mobile Touch Slider CSS
 * http://www.idangero.us/sliders/swiper
 *
 * Vladimir Kharlampidi, The iDangero.us
 * http://www.idangero.us/
 * 
 * Copyright 2012-2013, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us
 *
 * Licensed under GPL & MIT
 *
*/

/* ===============================================================
Basic Swiper Styles 
================================================================*/
.swiper-container {
	margin:0 auto;
	position:relative;
	overflow:hidden;
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;
	/* Fix of Webkit flickering */
	z-index:1;
}
#main-slider .swiper-container {
	/*background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI0OSUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMC4yIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjIiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjIiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);

	*/
	/*
background: -moz-linear-gradient(left, rgba(255,255,255,0.05) 49.99%, rgba(0,0,0,0.05) 49.99%, rgba(0,0,0,0.05) 100%); 
background: -webkit-gradient(linear, left top, right top, color-stop(49.99%,rgba(255,255,255,0.05)), color-stop(49.99%,rgba(0,0,0,0.05)), color-stop(100%,rgba(0,0,0,0.05)));  
background: -webkit-linear-gradient(left, rgba(255,255,255,0.05) 49.99%,rgba(0,0,0,0.05) 49.99%,rgba(0,0,0,0.05) 100%);  
background: -o-linear-gradient(left, rgba(255,255,255,0.05) 49.99%,rgba(0,0,0,0.05) 49.99%,rgba(0,0,0,0.05) 100%); 
background: -ms-linear-gradient(left, rgba(255,255,255,0.05) 49.99%,rgba(0,0,0,0.05) 49.99%,rgba(0,0,0,0.05) 100%); 
background: linear-gradient(to right, rgba(255,255,255,0.05) 49.99%,rgba(0,0,0,0.05) 49.99%,rgba(0,0,0,0.05) 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33ffffff', endColorstr='#33000000',GradientType=1 ); 

*/
}

/*
#main-slider .swiper-slide{
opacity:0;
transform:scale(0);
}
#main-slider .swiper-slide:not(.swiper-slide-visible){
  opacity: 1;
-webkit-animation: outAnimScale 0.6s ease-in 0s both;
-moz-animation: outAnimScale 0.6s ease-in 0s both;
-o-animation: outAnimScale 0.6s ease-in 0s both;
-ms-animation: outAnimScale 0.6s ease-in 0s both;
animation: outAnimScale 0.6s ease-in 0s both;
}

#main-slider .swiper-slide-visible{
opacity:1;
-webkit-animation: inAnimScale 1s ease-in 0s both;
-moz-animation: inAnimScale 1s ease-in 0s both;
-o-animation: inAnimScale 1s ease-in 0s both;
-ms-animation: inAnimScale 1s ease-in 0s both;
animation: inAnimScale 1s ease-in 0s both;
}
*/
.swiper-wrapper {
	position:relative;
	width:100%;
	-webkit-transition-property:-webkit-transform;
	-webkit-transition-duration:0.5s;
	-webkit-transform:translate3d(0px,0,0);
	-webkit-transition-timing-function:ease;
	
	-moz-transition-property:-moz-transform;
	-moz-transition-duration:0.5s;
	-moz-transform:translate3d(0px,0,0);
	-moz-transition-timing-function:ease;
	
	-o-transition-property:-o-transform;
	-o-transition-duration:0.5s;
	-o-transform:translate3d(0px,0,0);
	-o-transition-timing-function:ease;
	-o-transform:translate(0px,0px);
	
	-ms-transition-property:-ms-transform;
	-ms-transition-duration:0.5s;
	-ms-transform:translate3d(0px,0,0);
	-ms-transition-timing-function:ease;
	
	transition-property:transform;
	transition-duration:0.5s;
	transform:translate3d(0px,0,0);
	transition-timing-function:ease;
}
.swiper-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	margin: 0 auto;
}
.swiper-slide {
	float: left;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
}

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container ,.swiper-slide {
	width: 100%;
	height: 100%;
}
.swiper-slide-active {
	/* Specific active slide styling: */
	
}
.swiper-slide-visible {
	/* Specific visible slide styling: */	

}
/* ===============================================================
Pagination Styles
================================================================*/
.swiper-pagination-switch {
	/* Stylize pagination button: */	

}
.swiper-active-switch {
	/* Specific active button style: */	
	
}
.swiper-visible-switch {
	/* Specific visible button style: */	
	
}
