﻿/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/
@charset "utf-8";

.bxWrapper {
	position: relative;
	margin: 40px 0 90px 50px;
	*zoom: 1;
	clear: both;
}
div.thumbnail .bxWrapper {
	margin: 0 0 0 42px;
}
.bxWrapper img {
	max-width: 100%;
}
.bxPager {
	margin: 0 0 0 60px;
}
.bxPager ul {
	position: absolute;
	top: 30px;
	right: 8px;
}
.bxPager ul li {
	float: left;
	position: relative;
}
.bxPager ul li a {
	float: left;
	width: 22px;
	height: 22px;
	margin-right: 6px;
}
.bxPager ul li a img {
	position: absolute;
}
.bxPager ul li a.active img.active,
.bxPager ul li a:hover img.active {
	display: none;
}
.bxPager ul li a:hover img {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
.bxPager ul li a:focus {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}


/** THEME
===================================*/

.bxWrapper .bxViewport {
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
	-ms-transform: translatez(0);
	-o-transform: translatez(0);
	transform: translatez(0);
}
.bxWrapper .bxPager,
.bxWrapper .bxControlsAuto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bxWrapper .bxLoading {
	min-height: 50px;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bxWrapper .bxPager {
	text-align: center;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
	display: none;
}
.bxWrapper .bxPager .bxPagerItem,
.bxWrapper .bxControlsAuto .bxControlsAutoItem {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}
.bxWrapper .bxPager.bxDefaultPager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.bxWrapper .bxPager.bxDefaultPager a:hover,
.bxWrapper .bxPager.bxDefaultPager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bxWrapper .bxPrev {
	left: -45px;
	background: url(../../img/detail/btn_slider_left.gif) no-repeat 0 0;
}
.bxWrapper .bxNext {
	right: -45px;
	background: url(../../img/detail/btn_slider_right.gif) no-repeat 0 0;
}
.bxWrapper .bxPrev:hover {
	background-position: 0 0;
}
.bxWrapper .bxNext:hover {
	background-position: 0 0;
}
.bxWrapper .bxControlsDirection a {
	position: absolute;
	top: 33%;
	margin-top: -16px;
	outline: 0;
	width: 16px;
	height: 57px;
	text-indent: -9999px;
	z-index: 100;
}
.bxWrapper .bxControlsDirection a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
.bxWrapper .bxControlsDirection a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bxWrapper .bxControlsAuto {
	text-align: center;
}
.bxWrapper .bxControlsAuto .bxStart {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	margin: 0 3px;
}
.bxWrapper .bxControlsAuto .bxStart:hover,
.bxWrapper .bxControlsAuto .bxStart.active {
	background-position: -86px 0;
}
.bxWrapper .bxControlsAuto .bxStop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	margin: 0 3px;
}
.bxWrapper .bxControlsAuto .bxStop:hover,
.bxWrapper .bxControlsAuto .bxStop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bxWrapper .bxControls.bxHasControlsAuto.bxHasPager .bxPager {
	text-align: left;
	width: 80%;
}
.bxWrapper .bxControls.bxHasControlsAuto.bxHasPager .bxControlsAuto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bxWrapper .bxCaption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}
.bxWrapper .bxCaption span {
	color: #fff;
	font-family: Arial;
	display: block;
	padding: 10px;
}