.latest-articles-slider {
	position: relative;
	width: 650px;
	height: 320px;
}

.las-slide {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.las-slide-a {
	display: block;
	position: relative;	
	width: 100%;
	height: 100%;
}
.las-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: inset 0px 0px 20px #000;
	border-radius: 10px;
	z-index: 2;
}

/* higlight first item by CSS, to prevent delay when doing it in JS */
.las-slide:first-child {display: block;}

/* use CSS3 transition */
.css-transition .las-slide {
	display: block;
	opacity: 0;
	transition: opacity .5s ease-in-out;
}
.css-transition .las-slide.current {opacity: 1;}
.las-slide img {
	display: block;
	border-radius: 10px;
}
.las-slide .category-tag {
	position: absolute;
	top: 8px;
	right: 8px;
	padding: 2px 6px;
	border-radius: 3px;
	box-shadow: 0px 2px 2px #000;
	color: #fff;
	font-size: 12px;
	z-index: 5;
}
.las-slide-title {
	position: absolute;
	left: 0;
	bottom: 125px;
	overflow: hidden;
}

.las-single-slide .las-slide-title {
	bottom: 10px;
}

.las-slide-title-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.8;
	z-index: 1;
}
.las-slide-title-text {
	display: inline-block;
	position: relative;
	padding: 6px 16px;
	color: #fff;
	font-family: Georgia, serif;
	font-size: 20px;
	line-height: 22px;
	overflow: hidden;
	text-shadow: 0px 2px 2px #000;
	vertical-align: middle;
	z-index: 2;
}

.las-thumbs-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 125px;
	background: #000;
	border-radius: 0 0 10px 10px;
}

.las-thumbs {
	margin: 0 2px;
	padding-top: 6px;
}

.las-thumb {
	display: block;
	position: relative;
	float: left;
	width: 25%;
	cursor: pointer;
	list-style: none;
	text-align: center;
	z-index: 5;
}
.las-thumb img {
	display: block;
	margin: 0 auto;
	border-radius: 3px 3px 0 0;	
}

.las-thumb span {
	display: block;
	width: 139px;
	height: 50px;
	margin: 0 auto;
	padding: 6px 8px;
	background: #191919;
	border-radius: 0 0 3px 3px;
	color: #aeaeae;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 12px;
	line-height: 18px;
	overflow: hidden;
	text-align: left;
}
.las-thumb.current span {
	background: #111f2d;
	color: #fff;
}
.las-thumb .higlighted-border {
	display: none;
	position: absolute;
	width: 158px;
	height: 52px;
	top: 0;
	left: 2px;
	box-sizing: border-box;
	border: solid 4px #4F73B3;
	border-radius: 5px;
	cursor: pointer;
	z-index: 10;
}
.las-thumb .higlighted-border:before {
	content: '';
	position: absolute;
	top: -12px;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -2px;
	border: transparent solid;
	border-width: 4px;
	border-bottom-color: #4F73B3;
}
/* higlight first item with CSS, to prevent delay */
.las-thumb:first-child .higlighted-border {display: block;}
/* use CSS3 transition */
.css-transition .las-thumb .higlighted-border {
	display: block;
	opacity: 0;
	transition: opacity .5s ease-in-out;
}
.css-transition .las-thumb.current .higlighted-border {opacity: 1;}

.color-theme-blue{ background:#2751a7; }
.color-theme-acqua{ background:#1568af; }
.color-theme-navy-blue{ background:#2e3a87; }
.color-theme-orange{ background:#de7400; }
.color-theme-orange-dark{ background:#d94d00; }
.color-theme-green{ background:#3a782c; }
.color-theme-red{ background:#931f20; }
.color-theme-violete{ background:#3f335b; }
.color-theme-default{ background:#7D7326; }
