/**
 * 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
===================================*/

.slider-nav {
	max-width:990px;
	width:100%;
	height:27px;
	margin-left:-495px;
	position:absolute;
	top:192px;
	left:50%;
	z-index:9999;
}

.slider-nav #slider-prev {
	width:15px;
	height:27px;
	display:block;
	transition:opacity .20s ease-in-out;
	-moz-transition:opacity .20s ease-in-out;
	-webkit-transition:opacity .20s ease-in-out;
	float:left;
}

.slider-nav #slider-next {
	width:15px;
	height:27px;
	display:block;
	transition:opacity .20s ease-in-out;
	-moz-transition:opacity .20s ease-in-out;
	-webkit-transition:opacity .20s ease-in-out;
	float:right;
}

.bx-wrapper {
	position: relative;
	margin: 0 auto 0;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

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

.bx-wrapper .bx-viewport {
	left: 0;
	background: none;
	
	/*fix other elements on the page moving (on Chrome)*/
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
    	-ms-transform: translatez(0);
    	-o-transform: translatez(0);
    	transform: translatez(0);
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/bx_loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}