/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 3px;
	*zoom: 1;
}
.bx-wrapper img { 
	max-width: 100%;
	margin:auto;
}

/** THEME
===================================*/

/* PAGER */

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	float:left;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: none repeat scroll 0 0 #e3e3e3;
    display: block;
    height: 12px;
    margin: 0 5px;
    outline: 0 none;
    text-indent: -9999px;
    width: 12px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #b3b3b3;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

#bx-pager {
    height: 55px;
    overflow: hidden;
}
#bx-pager a {
    display: block;
    float: left;
    height: 55px;
    margin-right: 4px;
    overflow: hidden;
    width: 97px;
	opacity: 0.7;
	box-sizing:border-box;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
#bx-pager a:last-child { margin-right:0;}
#bx-pager a:hover { opacity:1;}
#bx-pager .active {
	opacity:1;
	padding:2px;
	background:#9fb4ca;
}
#bx-pager .active span {
	width: 93px;
	height: 51px;
	overflow:hidden;
	display:block;
}

/* IMAGE CAPTIONS */

.bx-caption {
    color:#004175;
	font-size:16px;
	line-height:18px;
	padding: 6px 10px;
}
.bx-caption:hover { text-decoration:underline;}