/**
*
* Sky Touch Carousel Default Skin
* URL: http://www.skyplugins.com
* Version: 1.0.1
* 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-left: 1px;
	}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.sky-carousel .sc-overlay {
		width: 125px !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: 960px;
	height: 420px;
	position: relative;
	/*border: 1px solid #e7e7e7;*/
	/*background: #f5f5f5;  Update by Duncan*/
	/*background: -webkit-gradient(linear, left top, left bottom, color-stop(80%,#f5f5f5), color-stop(100%,#E0F0FA));  Chrome,Safari4+ */
	/*background: -webkit-linear-gradient(top, #f5f5f5 80%,#E0F0FA 100%);
	 Update by Duncan - added gradient background to the Half/Half selection */
	overflow: hidden;
	margin: 0 auto;
	
}

.sky-carousel .sky-carousel-container {
	position: relative;
	list-style-type: none;
	float: left;
	margin: 0;
	padding: 0;
}

.sky-carousel2{/* Update by Duncan - added class */
	 /*border-top:1px solid #79B7E0; Update by Duncan - border colour to devide containers */
	}

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

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

.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;	
	width: 100%;
	top: 84%;
	/*left: 33%;*/
    left: 86%;
	z-index: 9999;
}

/*.sc-content { background-color: white; width: 200px; opacity: .9; border-radius: 8px; padding: 5px; } Update by Duncan - added class */
.sc-content { background-color: white; width: 200px; opacity: .9; border-radius: 8px; padding: 5px; }

.sky-carousel .sc-content-container {
	position: relative;
	left: -50%;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	padding: 0 20px;
}

.sky-carousel .sc-content-wrapper h2 {
	color: #004171;
	font-size: 22px;
	margin: 0;
	padding: 0;
}

.sky-carousel .sc-content-wrapper p {
	color: #00B1E6;
	font-size: 14px;
	margin: 0;
	padding: 0;
}

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

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

.sky-carousel .sc-overlay-left {
	left: -0.1px;
	top: 30px;
	height:315px;
}

.sky-carousel .sc-overlay-right {
	right: -0.1px;
	top: 30px;
	height:315px;
}

/**********************************************
*
* 6. Navigation Styles
*
**********************************************/
.sky-carousel .sc-nav-button {
	position: absolute;
	top: 70%;
	z-index: 10000;
	width: 40px;
	height: 100px;
	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;
	border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; /* Added by Duncan */
   /* border: 1px dashed #fff;
    background-color: #222 !important;*/ /* Adjust by Duncan 00B1E6 EB690B*/
}

.sky-carousel .sc-nav-button.sc-next {
	background: #f7eb19 url("../sc-graphics/next_arrow.png") no-repeat center 50%;/* 16px change to 'center' by Duncan */
	right: -0.1px;
    border-right:none;
}

.sky-carousel .sc-nav-button.sc-prev {
	background: #f7eb19 url("../sc-graphics/prev_arrow.png") no-repeat center 50%;/* 14px change to 'center' by Duncan */
	left: -0.1px;
    border-left:none;
}

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

/**********************************************
*
* 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("../sc-graphics/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;
}