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

@-ms-viewport{
width: extend-to-zoom;
zoom: 1.0;
}

/** RESET AND LAYOUT
===================================*/
#slider{ 
	width: 1100px; 
	margin:0 auto; 
	background: white;
        z-index: 1;
	
}
// 06-Apr-2015 Fawad. Added to fix image stacking issue in Mac Safari and iOS
#slider .bx-wrapper .bx-viewport .bxslider .slide { width: 210px !important; z-index: 1; }

.bx-wrapper {
	position: relative;
	margin:0 auto;
        z-index: 3;

	
}

.bx-wrapper img {
	width: 210px;
	height: 115px;
	display: block;
	margin: 0 auto;
	margin-top: 0px;
        z-index: 9;
}
  

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


	
	/*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);


.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 400px;
}

/* LOADER */

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

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: -40px;
	display:none;
	
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
/*	display: inline-block;*/
	*zoom: 1;
	*display: inline;
	
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: lightgrey;
/*	text-indent: -9999px;*/
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 10px;
	bottom:20px;
	margin-top: 10px;
	
	
	
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background-color: red;
	background-image: linear-gradient(red, #890000);
	width:10px;
	height:10px;
	
	
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: -32px;
	background: url(controls.png) no-repeat 0 -105px;
        z-index: 10;
}

.bx-wrapper .bx-next {
	right: -32px;
	background: url(controls.png) no-repeat -29px -105px;
        z-index: 10;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0px 3px;
}

.bx-wrapper .bx-next:hover {
	background-position: -29px 3px;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 25%;
	margin-top: -16px;
	outline: 0;
	width: 18px;
	height: 100px;
	/*text-indent: -99px;*/
	z-index: 9;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}


/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {

	position: absolute;
	margin: 0 auto;
	bottom: 0px;
	background: rgba(0, 0, 0, 0.7);
	width: 210px;
	//height: 43px;

}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: 0.85em;
	text-align: center;
        padding: 5px;
	
}


