/**
 * CooSlider
 *
 * @author Nguyen Huu Phuoc <thenextcms@gmail.com>
 * @license MIT
 */ 
/**
 * Required styles
 */
.cooslider {
    margin: 0 auto; 
	position:relative;
	overflow:hidden
}
.slide_item {
    position: relative;
}
.slide_item samp, .slide_item p.readmore a{ font-weight:normal; font-family: 'Cabin', sans-serif; }
.slide_item h2, .slide_item .description, .slide_item .readmore{ padding: 0 3%; float:right; clear: both;  }
.slide_item .description, .slide_item p.readmore a{ font-family: 'Lato', sans-serif; font-weight:normal }
.slide_item h2{font-family: 'Cabin', sans-serif;}
.slide_item h2, .slide_item p {
    color: #fff;
	text-align:right;
	line-height:normal;
	margin:1% 0
}
.slide_item h2 {
    font-size: 200%;
    width: 60%;
	padding-top:4%
}
.cms-home .slide_item h2{ font-size: 500%; }
.slide_item p.description {
    font-size: 120%;
	width:45%
}
.cms-home .slide_item p.description{ font-size: 171%; }
.slide_item p.readmore {
    font-size: 125%;
}
.slide_item p.readmore a {
	background-color: #FFFFFF;
    border-radius: 3px 3px 3px 3px;
    float: left;
    margin: 0;
	font-size:72%;
    padding: 10px 23px;
    text-decoration: none;
}
.coo-slider-slide {
    overflow: hidden;
    position: relative;
}
.coo-slider-inner {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}
.coo-slider-item {
    display: none;
}
.coo-slider-item img {
    hight: auto;
    width: 100%;
}
.coo-slider-box img,
.coo-slider-circle img {
    max-width: inherit !important; /* Bootstrap fix */
}
.image-slider{ position:absolute; width:100%}
.content{ position:relative; max-width:1170px; margin:0 auto }

/* Support responsive video element */
.coo-slider-video-wrapper {
    padding: 0;
    position: relative;
    width: 100%;
}
.coo-slider-video-wrapper iframe,
.coo-slider-video-wrapper object,
.coo-slider-video-wrapper embed {
    position: absolute;
        left: 0;
        top: 0;
    width: 100%;
    height: 100%;
}

/**
 * Default theme
 */
.coo-slider-loading {
    background: url('images/loading.gif') no-repeat 50% 50%;
    min-height: 100px;
}

/* Pagination */
.coo-slider-pagination {
    list-style-type: none;
    margin: 0 auto;
    padding-bottom: 10px;
    position: absolute;
        bottom: 0;
    text-align: center;
    width: 100%;
    z-index: 9999;
}
.coo-slider-pagination li {
    display: inline-block;
    padding: 0 5px;
}
.coo-slider-pagination a {
    background-image: url(images/nav.png);
    background-repeat: no-repeat;
    background-position: 0 -160px;
    display: block;
    height: 12px;
    width: 12px;
    text-decoration: none;
    text-indent: -9999px;
}
.coo-slider-pagination .coo-slider-active a {
    background-position: -12px -160px;
}

/* Controls */
.coo-slider-control {
	background: url("images/nav.png") no-repeat 0 0 rgba(29, 29, 29, 0.55);
    border-radius: 3px 3px 3px 3px;
    height: 100px;
    outline: medium none;
    position: absolute;
    top: 38%;
    width: 50px;
    cursor: pointer;
    text-indent: -9999px;
    z-index: 999;
}
.ie8 .coo-slider-control{ background: url("images/nav.png") no-repeat 0 0}
.coo-slider-prev, .ie8 .coo-slider-prev {
    background-position: top left;
    left: 2%;
}

.coo-slider-prev:hover {
	background-color: rgba(0, 0, 0, 0.55);
}
.coo-slider-next, .ie8 .coo-slider-next {
    background-position: top right;
    right: 2%;
}
.coo-slider-next:hover {
    background-color: rgba(0, 0, 0, 0.55);
}