﻿/*Horizontal Orientation CSS*/
.jscarousal-horizontal {
	width: 705px;
	height: 123px;
	margin: 0 auto;
	padding: 0;
	position: relative; /*overflow: hidden;*/
	border: none;
}

.jscarousal-horizontal-back, .jscarousal-horizontal-forward {
	float: left;
	width: 50px;
	height: 50px;
	position: relative;
	top: 35px;
	cursor: pointer;
}

.jscarousal-horizontal-back {
	background-image: url(../images/left_arrow.svg);
	background-repeat: no-repeat;
	background-position: left;
}

.jscarousal-horizontal-forward {
	background-image: url(../images/right_arrow.svg);
	background-repeat: no-repeat;
	background-position: right;
}

.jscarousal-contents-horizontal {
	width: 605px;
	height: 124px;
	float: left;
	position: relative;
	overflow: hidden;
}

.jscarousal-contents-horizontal > div {
	position: absolute;
	width: 100%;
	height: 124px;
}

.jscarousal-contents-horizontal > div > div {
	float: left;
	margin: 0 4.5px 0 4.5px;
}

.jscarousal-contents-horizontal img {
	width: 77px;
	height: 100px;
	border: none;
}

.jscarousal-contents-horizontal span {
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
	font-size: 15px;
	text-align: center;
	color: #000000;
	display: block;
}
/*Horizontal Orientation CSS Ends*/



/*Common*/
.hidden {
	display: none;
}

.visible {
	display: block;
}

.thumbnail-active {
	filter: alpha(opacity=100);
	opacity: 1.0;
	cursor: pointer;
}

.thumbnail-inactive {
	filter: alpha(opacity=20);
	opacity: 0.2;
	cursor: pointer;
}

.thumbnail-text {
	color: #7A7677;
	font-weight: bold;
	text-align: left;
	display: block;
	padding: 10px 2px 2px 0px;
}
