/*
 * 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;
}
.swiper-wrapper {
	position:relative;
	width:100%;
	-webkit-transition-property:-webkit-transform, left, top;
	-webkit-transition-duration:0s;
	-webkit-transform:translate3d(0px,0,0);
	-webkit-transition-timing-function:ease;
	
	-moz-transition-property:-moz-transform, left, top;
	-moz-transition-duration:0s;
	-moz-transform:translate3d(0px,0,0);
	-moz-transition-timing-function:ease;
	
	-o-transition-property:-o-transform, left, top;
	-o-transition-duration:0s;
	-o-transform:translate3d(0px,0,0);
	-o-transition-timing-function:ease;
	-o-transform:translate(0px,0px);
	
	-ms-transition-property:-ms-transform, left, top;
	-ms-transition-duration:0s;
	-ms-transform:translate3d(0px,0,0);
	-ms-transition-timing-function:ease;
	
	transition-property:transform, left, top;
	transition-duration:0s;
	transform:translate3d(0px,0,0);
	transition-timing-function:ease;

	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.swiper-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.swiper-slide {
	float: left;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

/* 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 {
	/* Specify Swiper's Size: */
	/*width: 100%;*/
	/*height:100%;*/
}
.swiper-slide {
	/* Specify Slides's Size: */
	/*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: */	
	
}



.tabs {
	margin:40px 0 30px;
	text-align:center;
}
.tabs a {
	display:inline-block;
	vertical-align:bottom;
	margin:0 2px;
	padding:5px 10px;
	color:#007dc3;
	font-size:17px;
	line-height:20px;
	text-decoration: none;
	border:solid 1px rgba(108,174,223,0);
	border-radius:50px;
    -webkit-transition: all 250ms;
    transition: all 250ms;
}
.tabs a:hover,
.tabs a.active {
	color:#414042;
}
.tabs a.active {
	border:solid 1px rgba(108,174,223,1);
}



.pagination {
  z-index:500;
  width:100%;
  margin:20px 0;
  position:relative;
  text-align:center;
}
.swiper-pagination-switch {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #222;
  margin-right: 5px;
  opacity: 0.8;
  border: 1px solid #fff;
  cursor: pointer;
}
.swiper-visible-switch {
  background: #aaa;
}
.swiper-active-switch {
  background: #6caedf;
}







.arrowL,
.arrowR {
	width: 36px;
	height: 100%;
	position:absolute;
	z-index:100;
}
.arrowL {
	left:0;
}
.arrowR {
	right:0;
}
.arrowL a,
.arrowR a {
	display:block;
	width:36px;
	height:100%;
	background-position:center;
	background-size:36px;
	background-repeat:no-repeat;
}
.arrowL a {background-image:url('../links/btn/arrowL.png');}
.arrowR a {background-image:url('../links/btn/arrowR.png');}




@media all and (max-width: 1020px)
{
.tabs {
	margin:20px 0 10px;
}
.tabs a {
	padding:5px;
	font-size:13px;
	line-height:15px;
}
}




@media all and (max-width: 500px)
{
.tabs a {
	width:8px;
	height:8px;
	padding:0;
	font-size:0;
	line-height:0;
	border:solid 1px rgba(108,174,223,1);
}
.tabs a:hover,
.tabs a.active {
	background-color:rgba(108,174,223,1);
}
}