/* Carousel styles */

[data-carousel="true"] {
	height: 0;
	overflow: hidden;
}

@media (min-width : 768px) {
	[data-carousel="true"] {
		height: auto;
	}
}

.carousel-img {
	width: 100%;
}

.carousel-content {
	height: 200px;
	position: relative;
	word-wrap: break-word;
}

.carousel-title {
	font-size: 1.4rem;
	line-height: 2rem;
	max-height: 4rem;
	overflow: hidden;
}

.carousel-text {
	font-size: 1rem;
	line-height: 1.4rem;
	max-height: 7rem; /* x5 */
	overflow: hidden;
	text-align: justify;
}

.carousel-comments-read-more {
	bottom: 0;
	height: 21px;
	left: 0;
	position: absolute;
	text-align: right;
	width: 100%;
}

@media (min-width : 500px) {
	.carousel-img {
		float: left;
		width: 200px;
	}

	.carousel-content {
		margin-left: 220px;
	}

	.carousel-title {
		margin-top: 0;
	}
}

@media (min-width : 768px) {
	.carousel-img {
		float: none;
		width: 100%;
	}

	.carousel-content {
		margin-left: 0;
	}

	.carousel-title {
		margin-top: 10px;
	}
}

/* ----------------- */

/* Navigation styles */

.carousel-nav-ul {
	list-style: none;
	padding: 0;
}

.carousel-nav-item {
	border: 1px solid #888;
	border-radius: 4px;
	-webkit-box-shadow: 4px 4px 5px #888;
	box-shadow: 4px 4px 5px #888;
	margin-bottom: 10px;
}

.carousel-nav-item:hover {
	border-color: red;
	-webkit-box-shadow: 4px 4px 5px #a10000;
	box-shadow: 4px 4px 5px #a10000;
	cursor: pointer;
}

@media (min-width : 768px) {
	.carousel-nav-item.sel {
		background: #888; /* For browsers that do not support gradients */
		background: -moz-linear-gradient(#888, #666); /* For Firefox 3.6 to 15 */
		background: -o-linear-gradient(#888, #666); /* For Opera 11.1 to 12.0 */
		background: -webkit-linear-gradient(#888, #666); /* For Safari 5.1 to 6.0 */
		background: linear-gradient(#888, #666); /* Standard syntax */
	}

	.carousel-nav-item.sel a {
		color: #78ff13;
	}
}

.carousel-nav-item-img {
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px;
	float: left;
	height: 66px;
	width: 100px;
}

.carousel-nav-item-content {
	margin-left: 110px;
	word-wrap: break-word;
}

.carousel-nav-item-title {
	font-size: 1.4rem;
	line-height: 2rem;
	margin-top: 0;
	max-height: 4rem;
	overflow: hidden;
}

/* ----------------- */