/**************************************************
*
*	CONTAINER STYLES
*
**************************************************/

#horiz_container_outer {
	width: 100%;
	overflow-x: hidden;
	overflow-y: hidden;
	position: relative;
	height: 100%;
	margin: 0;
	background: #000;
}
#horiz_container {
	margin: 0px;
	padding: 0px;
}
#horiz_container ul {
	margin: 0px;
	padding: 0px;
	float: left;
}
#horiz_container_inner { padding: 0px; }
#horiz_container li {
	list-style: none;
	margin: 0px;
}
#horiz_container li img {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
	opacity: 0.6;
	transition: all 0.3s ease 0s;
}
#horiz_container li:hover img {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}
#horiz_container li img {
	padding: 0px;
	margin: 0px;
}
/**************************************************
*
*	SCROLLING STYLES
*
**************************************************/

#scrollbar {
	position: relative;
	width: 100%;
	height: 12px;
	display: block;
	font-size: 1px;
	top: -7px;
	margin: 0px auto;
}
#track {
	position: absolute;
	left: 0px;
	top: 0;
	width: 100%;
	height: 12px;
	background: #111;
}
#dragBar {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 20px;
	height: 10px;
	background: #D9B384;
}
#left_scroll {
	position: absolute;
	border-color: transparent gray transparent transparent;
	border-style: solid;
	border-width: 5px;
	width: 0;
	height: 0px;
	cursor: pointer;
	top: 1px;
	left: -15px;
}
#right_scroll {
	position: absolute;
	right: -15px;
	top: 1px;
	border-color: transparent transparent transparent gray;
	border-style: solid;
	border-width: 5px;
	width: 0;
	height: 0px;
	cursor: pointer;
}
/* prevent selection problem */
#scrollbar, #track, #dragBar, #left, #right {
	-moz-user-select: none;
	-khtml-user-select: none;
}
