/*
 * Swiper Scrollbar 2.4.1
 * Scrollbar plugin for Swiper
 *
 * http://www.idangero.us/sliders/swiper/plugins/scrollbar.php
 *
 * Copyright 2010-2014, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under GPL & MIT
 *
 * Released on: June 27, 2014
*/
.swiper-container {
  width:100%;
  height:90px;
  position:relative;
}
.swiper-slide{
	width:204px;
}
.swiper-scrollbar {
  background:none;
  position:absolute;
  right:11px;
  top:0;
  height:100%;
  width:1px;
  background-color:#666666;
}
.swiper-scrollbar .swiper-scrollbar-drag {
	background-color:#555555;	
	position:absolute;
	cursor:pointer;
	right:-5px;
	width:11px;
	height:11px;
	border-radius:5px; -moz-border-radius:5px;  -webkit-border-radius:5px;
	
	filter:alpha(opacity=96); /* IE */
		-moz-opacity:0.96; /* 老版Mozilla */
		-khtml-opacity:0.96; /* 老版Safari */
		opacity: 0.96; /* 支持opacity的浏览器*/
}

