/**
 *
 * Sky jQuery Touch Carousel
 * URL: http://www.skyplugins.com
 * Version: 1.0.2
 * Author: Sky Plugins
 * Author URL: http://www.skyplugins.com
 *
 */

/**
*	Table of Contents
*	
*	1. Media Queries
*	2. Container Styles
*	3. Carousel Item Styles
*	4. Current Content Styles
*	5. Gradient Overlay Styles
*	6. Navigation Styles
*	7. Preloader Styles
*	8. Other Styles
*/

/**********************************************
*
* 1. Media Queries
*
**********************************************/
@media screen and (-webkit-min-device-pixel-ratio:0) { 
	html {
	margin: 0px;
	padding: 0px;
	}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.sky-carousel .sc-overlay {
	width: 160px !important;
	}
}

@media only screen and (max-width: 479px) {
	.sky-carousel .sc-overlay {
	width: 70px !important;
	}
}

/**********************************************
*
* 2. Container Styles
*
**********************************************/
.js .sky-carousel {
	visibility: hidden;
}

.sky-carousel {
	width: 100%;
	height: 700px;
	position: relative;
	overflow: hidden;
	background-color: #1461B9;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	cursor: pointer;
	
}

.sky-carousel .sky-carousel-container {
	position: relative;
	list-style-type: none;
	float: left;
	height: 100%;
	width: 650px;
	margin-left: 200px;
	top: -50px;
}

/**********************************************
*
* 3. Carousel Item Styles
*
**********************************************/
.sky-carousel .sky-carousel-container li {
	position: absolute;
}

.sky-carousel .sky-carousel-container li img {
	display: block;
	border: 0;
	max-width: none !important;
}

.sky-carousel .sky-carousel-container li a img {
	border: none;
}

.sky-carousel .sky-carousel-container .sc-content {
	display: none;
}

/**********************************************
*
* 4. Current Content Styles
*
**********************************************/
.sky-carousel .sc-content-wrapper {
	position: absolute;
	text-align: center;
	top: 88%;
	left: 50%;
	z-index: 4999;
	
}

.sky-carousel .sc-content-container {
	position: relative;
	left: -50%;
	font-family: 'Roboto', sans-serif;
}

.sky-carousel .sc-content-wrapper h2 {
	color: #FFF;
	font-size: 0.9em;
	float: none;
	margin-right: auto;
	margin-left: auto;
	font-family: 'Roboto', sans-serif;
	font-weight: normal;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	background-color: rgba(0, 0, 0, 0.8);
	direction: rtl;
	padding-right: 0.2em;
	padding-left: 0.2em;
	
}

.sky-carousel .sc-content-wrapper p {
	color: #000;
	font-size: 14px;
	padding: 0;
	background-color: #FFF;
	float: none;
	width: 400px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 10px;
	
}

.sky-carousel .sc-content-wrapper a {
	text-decoration: none;
	color: #444;
	border-bottom: 1px dotted #444;
	background-color: #30C;
}

/**********************************************
*
* 5. Gradient Overlay Styles
*
**********************************************/
.sky-carousel .sc-overlay {
	position: absolute;
	z-index: 4998;
	pointer-events: none;
	top: 0px;
	height: 0%;
}

.sky-carousel .sc-overlay-right {
	right: -0.1px;
}

.sky-carousel .sc-overlay-left {
	left: -0.1px;
}

/**********************************************
*
* 6. Navigation Styles
*
**********************************************/
.sky-carousel .sc-nav-button {
	position: absolute;
	top: 48%;
	z-index: 5000;
	width: 30px;
	height: 60px;
	margin-top: -30px;
	transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
}

.sky-carousel .sc-nav-button.sc-next {
	right: -0.1px;
	background-color: #ffd000;
	background-image: url(../images/next_arrow1.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.sky-carousel .sc-nav-button.sc-prev {
	left: -0.1px;
	background-color: #ffd000;
	background-image: url(../images/prev_arrow1.png);
	background-repeat: no-repeat;
	background-position: 14px 50%;
}

.no-touch .sky-carousel .sc-nav-button:hover {
	background-color: #FFFFFF;
}

/**********************************************
*
* 7. Preloader Styles
*
**********************************************/
.sky-carousel .sc-preloader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 24px;
	height: 24px;
	margin-top: -22px;
	margin-left: -22px;
	background: #f5f5f5 url("../images/preloader.gif") no-repeat 50% 50%;
	padding: 10px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

/**********************************************
*
* 8. Other Styles
*
**********************************************/
.sc-no-select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
