/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel {
    display: none;
    margin-top: -95px;
    min-height: 216px;
    padding-top: 4;
    position: relative;
    width: 96%;
	margin-right: auto;
}
.state-wrapper {
    background: url("../images/slider-bg.png") no-repeat scroll center top rgba(0, 0, 0, 0);
    width: 100%;
    min-height: 280px;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 96%;
	margin: 0 auto;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
	margin-top: 12px;
}
.owl-carousel .owl-item .item > img {
    display: block;
    margin: 0 auto;
}
.owl-carousel .owl-item .item > h3,
.owl-carousel .owl-item .item > a h3 {
    color: #0956b6;
    font-size: 16px;
    text-align: center;
    font-family: raleway;
    text-transform: uppercase;
    padding-top: 5px;
}
.owl-carousel .owl-item .item > h4 {
    font-size: 13.16px;
    text-align: center;
    font-family: raleway;
    color: black;
    padding-bottom: 5px;
}
.owl-carousel .owl-item .item > p {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    line-height: 15px;
    margin: 0;
	min-height: 20px;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
	position: absolute;
	top: 37%;	
}
.owl-prev {
    background: url("../images/left-arrow.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    left: 15px;
    width: 24px;
    height: 41px;
    text-indent: 9999px;
}
.owl-next {
    background: url("../images/right-arrow.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    right: -20px;
    width: 24px;
    height: 41px;
    text-indent: 9999px;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

