﻿/*Horizontal Orientation CSS*/
.jscarousal-horizontal-back, .jscarousal-horizontal-forward
{
	float: left;
	width: 24px;
	height: 80px;
	color: White;
	position: relative;
	cursor: pointer;
	margin-top:70px;
}
.jscarousal-horizontal-back
{
	background-image: url(../images/icon_left_arrow.png);
	background-repeat: no-repeat;
	background-position: left;
}
.jscarousal-horizontal-forward
{
	background-image: url(../images/icon_right_arrow.png);
	background-repeat: no-repeat;
	background-position: right;
}
.jscarousal-contents-horizontal
{
	width:960px;
	height: 200px;
	float: left;
	position: relative;
	overflow: hidden;
	margin:auto;
}
.jscarousal-contents-horizontal > div
{
	position: absolute;
	width: 100%;
	height: 200px;
}
.jscarousal-contents-horizontal > div > div
{
	float: left;
	margin-left:3px;
	margin-right:3px;
}
.jscarousal-contents-horizontal a img
{
	width: 300px;
	height: auto;
	margin-left:5px;
}
/*Horizontal Orientation CSS Ends*/



/*Common*/
.hidden
{
	display: none;
}
.visible
{
	display: block;
}
.thumbnail-active
{
	filter: alpha(opacity=80);
	opacity: 0.8;

}
.thumbnail-inactive
{
	filter: alpha(opacity=100);
	opacity: 1.0;
	
}