/*************************
    - Basic settings -
*************************/
.js .smart-carousel {
	visibility:hidden;
}

.smart-carousel {
	width:100%;
	height:450px;
	position:relative;
	background:transparent;
	overflow:hidden;
	margin:0 auto;
}

.smart-carousel .smart-carousel-container {
	position:relative;
	list-style-type:none;
	float:left;
	margin:0;
	padding:0;
}

/************************
    - Carousel item -
*
************************/
.smart-carousel .smart-carousel-container li {
	position:absolute;
	border:0;
}

.smart-carousel .smart-carousel-container li img {
	display:block;
	border:0;
	max-width:none !important;
}

.smart-carousel .smart-carousel-container li a img {
	border:none;
}

.smart-carousel .smart-carousel-container .sc-content {
	display:none;
}

/**************************
    - Current content -
**************************/
.smart-carousel .sc-content-wrapper {
	position:absolute;
	text-align:center;	
	width:100%;
	top:8%;
	left:50%;
	z-index:4999;
}

.smart-carousel .sc-content-container {
	position:relative;
	left:-50%;
	font-family:"Open Sans", Arial, Helvetica, sans-serif;
	padding:0 20px;
}

.smart-carousel .sc-content-wrapper h2 {
	color:#444;
	font-size:22px;
	font-weight:bold;
	margin:0;
	padding:0;
}

.smart-carousel .sc-content-wrapper p {
	color:#777;
	font-size:14px;
	margin:0;
	padding:0;
}

.smart-carousel .sc-content-wrapper a {
	color:#f8806c !important;
	text-decoration:none;
	-webkit-transition:all 0.3s;
	   -moz-transition:all 0.3s;	
			transition:all 0.3s;
}

.smart-carousel .sc-content-wrapper a:hover {
	color:#fb6148 !important;
	text-decoration:none;	
}

/* Content background */
.smart-carousel.content-bg .sc-content-container {
	position:relative;
	left:-50%;
	padding:0;
}

.smart-carousel.content-bg .sc-content-wrapper .sc-content-container .sc-content {
	padding:14px;
	min-width:240px;
	-webkit-border-radius:3px;
	   -moz-border-radius:3px;
			border-radius:3px;
	background-color:#252525;
	background-image:-webkit-linear-gradient(top, rgb(61,61,61) 0%, rgb(33,33,33) 100%);
	   background-image:-moz-linear-gradient(top, rgb(61,61,61) 0%, rgb(33,33,33) 100%);
			background-image:linear-gradient(top, rgb(61,61,61) 0%, rgb(33,33,33) 100%);
}

.smart-carousel.content-bg .sc-content-wrapper .sc-content-container:after {
	position:absolute;
	display:block;
	content:"";
	border:8px solid transparent;
	border-top:8px solid #212121;
	width:0;
	height:0;
	left:50%;
	margin-left:-10px;	
}

.smart-carousel.content-bg .sc-content-wrapper h2 {
	color:#fff;
	font-weight:bold;
	font-size:18px;
	line-height:18px;
	margin:0 0 2px 0;
	padding:0;
}

.smart-carousel.content-bg .sc-content-wrapper p {
	color:#d6d6d6;
	font-size:12px;
	margin:0;
	padding:0;
}

.smart-carousel.content-bg .sc-content-wrapper a {
	text-decoration:none;
	color:#d6d6d6;
}

/***************************
    - Gradient overlay -
***************************/
.smart-carousel .sc-overlay {
	position:absolute;
	height:100%;
	z-index:4998;
	pointer-events:none;
	top:0;
}

.smart-carousel .sc-overlay-left {
	left:-0.1px;
}

.smart-carousel .sc-overlay-right {
	right:-0.1px;
}

/*********************
    - Navigation -
*********************/
.smart-carousel .sc-nav-button {
	position:absolute;
	top:50%;
	z-index:5000;
	width:40px;
	height:55px;
	margin-top:-30px;
	-webkit-transition:all 0.3s;
	   -moz-transition:all 0.3s;	
			transition:all 0.3s;
}

.smart-carousel .sc-nav-button.sc-prev {
	background:#666 url(smart-carousel/prev_arrow.png) no-repeat 15px 50%;
	left:0px;
}

.smart-carousel .sc-nav-button.sc-next {
	background:#666 url(smart-carousel/next_arrow.png) no-repeat 15px 50%;
	right:0px;
}

.no-touch .smart-carousel .sc-nav-button:hover {
	background-color:#ea4848;
}

/* Round navigation */
.smart-carousel.round-nav .sc-nav-button {
	position:absolute;
	top:50%;
	z-index:5000;
	width:40px;
	height:39px;
	margin-top:-20px;
	-webkit-border-radius:50%;
	   -moz-border-radius:50%;
			border-radius:50%;
}

.smart-carousel.round-nav .sc-nav-button.sc-next {
	background:#999 url(smart-carousel/next_arrow.png) no-repeat 15px 50%;
	right:15px;
}

.smart-carousel.round-nav .sc-nav-button.sc-prev {
	background:#999 url(smart-carousel/prev_arrow.png) no-repeat 15px 50%;	
	left:15px;
}

.no-touch .smart-carousel.round-nav .sc-nav-button:hover {
	background-color:#ea4848;
}

/********************
    - Preloader -
********************/
.smart-carousel .sc-preloader {
	position:absolute;
	left:50%;
	top:50%;
	width:24px;
	height:24px;
	margin-top:-22px;
	margin-left:-22px;
	background:#f5f5f5 url(smart-carousel/preloader.gif) no-repeat 50% 50%;
	padding:10px;
	-webkit-border-radius:4px;
	   -moz-border-radius:4px;
			border-radius:4px;
}

/****************
    - Other -
****************/
.sc-no-select {
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	   -moz-user-select:none;
			user-select:none;
}

/************************
    - 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) {
	.smart-carousel .sc-overlay {
		width:160px !important;
	}
}

@media only screen and (max-width:479px) {
	.smart-carousel .sc-overlay {
		width:70px !important;
	}
}