﻿/*Horizontal Orientation CSS*/
.jscarousal-horizontal
{
	width: 740px;
	height: 118px;
	background-color: #121212;
	border: solid 1px #7A7677;
	margin: 0;
	padding: 0;
	padding: 22px 8px 22px 8px;
	position: relative; /*overflow: hidden;*/
}
.jscarousal-horizontal-back, .jscarousal-horizontal-forward
{
	float: left;
	width: 23px;
	height: 98px;
	background-color: #121212;
	color: White;
	position: relative;
	top: 6px;
	cursor: pointer;
}
.jscarousal-horizontal-back
{
	background-image: url(left_arrow.jpg);
	background-repeat: no-repeat;
	background-position: left;
}
.jscarousal-horizontal-forward
{
	background-image: url(right_arrow.jpg);
	background-repeat: no-repeat;
	background-position: right;
}
.jscarousal-contents-horizontal
{
	width: 690px;
	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-left: 8px;
	margin-right: 8px;
}
.jscarousal-contents-horizontal img
{
	width: 120px;
	height: 94px;
	border: solid 1px #7A7677;
}
/*Horizontal Orientation CSS Ends*/

/*Vertical Orientation CSS Starts*/
.jscarousal-vertical
{
	width: 16%;
	height: 500px;
	background-color: transparent;
	border: solid 0px #7A7677;
	margin: 0 0 0 0;
	padding: 0;
	position: relative;
	overflow: hidden;
}
.jscarousal-vertical-back
{
	background-color: #ffffff;
    color: White;
    cursor: pointer;
    height: 200px;
    position: absolute;
    right: 40%;
    top: -17%;
    width:26%;
    z-index: 100;
}
 .jscarousal-vertical-forward
{
	background-color: #ffffff;
    bottom: -17%;
    color: White;
    cursor: pointer;
    height: 200px;
    position: absolute;
    right: 40%;
    width:26%;
    z-index: 100;
}
.jscarousal-vertical-forward:hover,.jscarousal-vertical-back:hover {
	opacity: 1;
}
.jscarousal-vertical-back
{
	background-image: url("../img/right-arrow.png");
    background-position: -2px 55%;
    background-repeat: no-repeat;
    background-size: 100% 30%;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    opacity: 0.4;
}
.jscarousal-vertical-forward
{
	background-image: url('../img/left-arrow.png');
	background-position: 2px 55%;
    background-repeat: no-repeat;
    background-size: 100% 30%;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    opacity: 0.4;
}
.jscarousal-contents-vertical
{
	overflow: hidden;
	width: 200px;
	height: 410px;
}
.jscarousal-contents-vertical > div
{
	position: absolute;
	top: 40px;
	/*width: 100%;*/
	margin: 10px 0 0;
	width: 200px;
	height: 400px;
	overflow: hidden;
}
.jscarousal-contents-vertical > div > div
{
	height: 125px;
    margin: 0 12px 12px;
    width: 180px;
}
.jscarousal-contents-vertical > div > div span
{
	display: block;
	width: 70%;
	text-align: center;
}
.jscarousal-contents-vertical img
{
	/*width: 177px;*/
	width: 100%;
	height: 80px;
}
.jscarousal-contents-vertical img:hover
{
	cursor: pointer;
}
.jscarousal-contents-vertical .visible img {
	opacity: 0.5;
}
.jscarousal-contents-vertical .visible div:hover img{
	opacity: 1;
}
/*Vertical 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;
}
