
/**********************************************
*
* 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: 99%;
	height: 250px;
	position: relative;
	background: url('../images/base.jpg') no-repeat;
	overflow: hidden;
	margin: 0 auto;
}

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

/**********************************************
*
* 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: 4%;
	left: 50%;
	z-index: 4999;
}

.sky-carousel .sc-content-container {
	position: relative;
		background-color: #e0e0e0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
padding: 14px;
background-image: linear-gradient(top, rgb(182,182,182) 0%, rgb(253,253,253) 100%);
background-image: -o-linear-gradient(top, rgb(182,182,182) 0%, rgb(253,253,253) 100%);
background-image: -moz-linear-gradient(top, rgb(182,182,182) 0%, rgb(253,253,253) 100%);
background-image: -webkit-linear-gradient(top, rgb(182,182,182) 0%, rgb(253,253,253) 100%);
background-image: -ms-linear-gradient(top, rgb(182,182,182) 0%, rgb(253,253,253) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgb(182, 182, 182)), color-stop(1, rgb(253, 253, 253)));
box-shadow: 0px 2px 1px rgba(44, 44, 44, 0.1);
-webkit-box-shadow: 0px 2px 1px rgba(44, 44, 44, 0.1);
-moz-box-shadow: 0px 2px 1px rgba(44, 44, 44, 0.1);
min-width: 80px;
max-width: 100px;
margin-left: 550px;
margin-top: -10px;
}

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

.sky-carousel .sc-content-wrapper p {
	color: #777;
	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%;
	pointer-events: none;
	top: 0;
	z-index: 4998;
}

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

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

/**********************************************
*
* 6. Navigation Styles
*
**********************************************/
.sky-carousel .sc-nav-button {
	position: absolute;
	top: 50%;
	z-index: 5000;
	width: 40px;
	height: 60px;
	margin-top: -30px;
}

.sky-carousel .sc-nav-button.sc-next {
	right: -0.1px;
}

.sky-carousel .sc-nav-button.sc-prev {
	left: -0.1px;
}

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

/**********************************************
*
* 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/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;
}