/*---------------------------------- Slider ----------------------------------*/	      

/* pager */

#sliderInterruptBar {
	position: absolute;
	width: 5px;
	height: 900px;
	z-index: 100;
}

.cycle-slideshow {
    width: 100%;
    height: 400px;
    background-position: center;
    z-index: 50;
    background-size: cover;
    color: #fff;
    overflow: hidden;
    cursor: default;
    -moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	-ms-user-select: none; /* From IE10 only */
}

.cycle-slideshow ul, .cycle-slideshow li {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 50;
}
#slide1 {
	background-image: url("../img/slider1.jpg");
}
#slide2 {
	background-image: url("../img/slider2.jpg");
}
#slide3 {
	background-image: url("../img/slider3.jpg")
}
#slide4 {
	background-position: 50% 70%;
	background-image: url("../img/slider4.jpg")
}

.caption {
    font-weight: bold;
    color: #FFF; 
    /*font-size applied in slider.js*/
    position: absolute;
    width: auto;
    max-width: 92%;
    bottom: 4%;
    left: 4%;
    z-index: 101;
    padding: 5px;
    opacity: 1;
}

.captionBackground {
	display: block;
    position: absolute;
    bottom: 0%;
    width: 100%;
    height: 100px;
    background-color: #000;
    z-index: 99;
	opacity: .5;
}

.prev {
	position: absolute; 
	opacity: 0;
	top: 41%; 
	left: -1%; 
	width: 0; 
	height: 0; 
	z-index: 101;
	float: left;
	cursor: pointer;
	margin-top: 5px;
	margin-right: 6px;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-right: 20px solid #FFF;
}

.next {
	position: absolute; 
	opacity: 0;
	top: 41%; 
	right: -1%; 
	width: 0; 
	height: 0;
	z-index: 101; 
	float: right;
	cursor: pointer;
	margin-top: 5px;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 20px solid #FFF;
}

#progress { 
	position: absolute; 
	bottom: 0; 
	left: 0; 
	height: 7px; 
	width: 0px; 
	background: -moz-linear-gradient(left, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.8) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0.2)), color-stop(100%,rgba(255,255,255,0.8))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.8) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.8) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.8) 100%); /* IE10+ */
	background: linear-gradient(to right, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.8) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#77777777', endColorstr='#FFFFFFFF',GradientType=1 ); /* IE6-9 */
	z-index: 101; 
	-webkit-border-top-right-radius: 50px;
	-webkit-border-bottom-right-radius: 50px;
	-moz-border-radius-topright: 50px;
	-moz-border-radius-bottomright: 50px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
}

/*---------------------------------- Overview ------------------------------------*/
.overviewContainer {
	position: relative;
	display: block;
	float: left;
	height: 30px;
	width: 96%;
	padding: 20px 2% 20px 2%;
	background-color: #00AAFF;
}

.overviewSubContainer {
	width: 110%;
	height: 30px;
	margin-left: auto;
	margin-right: auto;
	
}

.overviewSubContainer p {
	color: #3F3F3F;
	color: #FFF;
	font-size: 20px;
	float: left;
	height: 15px;
	padding: 0 0 0 0;
	margin: 5px 3% 5px 0;
	cursor: default;
}

/*---------------------------------- News Area ----------------------------------*/
#newsContainer {
	position: relative;
	height: auto;
	width: 100%;
	float:left;
	margin-left: auto;
	margin-top: 0px;
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #FFF;
}
#newsSubContainer {
	width: 100%;
	height: 170px;
	margin-left: auto;
	margin-right: auto;
}

.newsBox {
	display: block;
	float: left;
	height: 100%;
	width: 200px;
	position: relative;
	padding-left: 15px;
	padding-right: 15px;
	background: none;
	border-radius: 5px;
	color: #000000;
}

.newsBox div {
	margin-left: auto;
	margin-right: auto;
}

.newsBox h4 {
	margin-top: 20px;
	text-align: center;
	font-size: 1.1em;
	color: #4F4F4F;
	cursor: default;
}

.newsBox p {
	text-align: center;
	margin: 0 0 0 5px;
	color: #6F6F6F	;
	font-size: 1em;
	cursor: default;
}

/*---------------------------------- End News Area ----------------------------------*/