/* Swipeshow
 * http://ricostacruz.com/swipeshow
 * https://github.com/rstacruz/swipeshow
 *
 * Load this stylesheet when using jquery.swipeshow.js.
 *
 * This provides no styles or embelishments: just basic resets. For a sample
 * theme, also try:
 *
 *     http://ricostacruz.com/swipeshow/slideshow-theme.css
 *
 */

.swipeshow,
.swipeshow .slides,
.swipeshow .slide {
  /* Basic resets */
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;

  /* Prevent flickers */
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  /* In case you add padding */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.swipeshow {
  overflow: hidden;
  width: 300px;
}
#mainImg {
	margin: 0 auto 4px;
  height: 160px;
}
#recommendList {
	margin: 0 auto;
	height: 185px;
	border: 1px solid #649000;
	background: #649000;
}
/* iOS: disable text select, disable callout, image save panel (popup) */
.swipeshow img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
/* Cursor (open-hand) */
.swipeshow-active .slides {
  cursor: -moz-grab !important;
  cursor: ew-resize;
}
/* Cursor (closed-hand) */
html.swipeshow-grabbed,
html.swipeshow-grabbed * {
  cursor: -moz-grabbing !important;
  cursor: ew-resize;
}
/* Positioning */
.swipeshow .slides,
.swipeshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* First slide should be visible by default */
.swipeshow .slide {
  visibility: hidden;
}
.swipeshow .slide:first-child {
  visibility: visible;
}
#recommendList dl {
	width: 50%;
	float: left;
	padding: 10px 8px;
	box-sizing: border-box;
	background: #FFF;
	text-align: center;
}
.recommendSecond {
	border-left: 1px solid #649000;
}
#recommendList a { color: #433F39; }
#recommendList dt {
	height: 91px;
	vertical-align: middle;
}
.trouble { font-size: 11px; }
.itemName { font-size: 13px; }

/*-------------------------------------------------
  Next, Previous
---------------------------------------------------*/
.slideshow .next,
.slideshow .previous {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;

  position: absolute;
  text-align: center;
	background: #FFF;

  /*color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);

  font-size: 14pt;
  opacity: 0;

  -webkit-transition: opacity 300ms linear;
  -moz-transition: opacity 300ms linear;
  -ms-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;*/
}
.slideshow .previous {
  left: 0;
}
.slideshow .next {
  right: 0;
}
/*
.slideshow.no-touch:hover .next,
.slideshow.no-touch:hover .previous {
  opacity: 1;
  transition: none;
}
.slideshow .next:hover,
.slideshow .previous:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.slideshow .next:active,
.slideshow .previous:active {
  background-color: rgba(0, 0, 0, 0.4);
}
.slideshow .previous {
  left: 0;
}
.slideshow .next {
  right: 0;
}
.slideshow .previous:before {
  content: '\2039';
}
.slideshow .next:before {
  content: '\203a';
}
#mainImg.no-touch:hover .next,
#mainImg.no-touch:hover .previous {
  opacity: 1;
  transition: none;
}
#mainImg .next:hover,
#mainImg .previous:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
#mainImg .next:active,
#mainImg .previous:active {
  background-color: rgba(0, 0, 0, 0.4);
}
*/
/* Customize : mainImg */
#mainImg .next,
#mainImg .previous {
  width: 43px;
  height: 35px;
	bottom: 4px;
}
#mainImg .next:before,
#mainImg .previous:before,
#recommendList .next:before,
#recommendList .previous:before {
	overflow: hidden;
	position: absolute;
	top: 0;
	content: '';
	margin-top: 0;
	background: url(../../img/top/spr_slide_btn.png) no-repeat;
	background-position: 0 0;
	background-size: 164px 38px;
}
#mainImg .next:before,
#mainImg .previous:before {
  width: 48px;
  height: 35px;
}
#mainImg .next:before {
	right: 0;
	margin-right: 0;
	background-position: -48px 0;
}
#mainImg .previous:before {
	left: 0;
	margin-left: 0;
}
/* Customize : recommendList */
#recommendList .next,
#recommendList .previous {
  bottom: 0;
  width: 35px;
  height: 38px;
	background: #649000;
}
#recommendList .next:before,
#recommendList .previous:before {
  width: 35px;
  height: 38px;
}
#recommendList .next:before {
	right: 0;
	margin-right: 0;
	background-position: -129px 0;
}
#recommendList .previous:before {
	left: 0;
	margin-left: 0;
	background-position: -95px 0;
}
/*-------------------------------------------------
  Dots
---------------------------------------------------*/
.slideshow .dots,
.slideshow .dot-item,
.slideshow .dot {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
	background: #FFF;
}
.slideshow .dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0;
}
.slideshow .dot-item {
  display: inline-block;
  width: auto;
  height: 20px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
}
.slideshow .dot {
  display: inline-block;
  width: 13px;
  height: 13px;
	margin: 0 8px;
  border-radius: 14px;
  font-size: 0;
}
#mainImg .dot {
  background-color: rgba(181, 181, 181, 1);
}
#mainImg.no-touch .dot-item:hover .dot {
  background-color: rgba(112, 112, 112, 1);
}
#mainImg .dot-item:active .dot,
#mainImg .dot-item.active .dot {
  background-color: rgba(80, 114, 0, 1);
}
#recommendList .dots {
  bottom: 5px;
}
#recommendList .dots,
#recommendList .dot-item {
	background: #649000;
}
#recommendList .dot {
  background-color: rgba(100, 144, 0, 1);
	border: 1px solid #FFF;
}
#recommendList.no-touch .dot-item:hover .dot {
  background-color: rgba(124, 171, 22, 1);
}
#recommendList .dot-item:active .dot,
#recommendList .dot-item.active .dot {
  background-color: rgba(255, 255, 255, 1);
}