/**************************************************
*
*	CONTAINER STYLES
*
**************************************************/
ul, li {
	list-style:none;
}
#horiz_container_outer {
	width:100%;
	overflow-x:hidden;
	overflow-y:hidden;
	position:relative;
	height:100px;
	padding:0px;
	margin:0px;
	float:left;
	clear:left;
}
#horiz_container {
	float:left;
	width:170px;
	padding:0px;
	margin:0px;
	height:100px;
}

#horiz_container ul
{
	margin:0px; 
	padding:0px;
	float:left;
}

#horiz_container_inner
{
	padding:0px;
	margin:0px;
}

#horiz_container li {
	float:left;
	list-style:none;
	display: inline-table;
	margin:0px;
	margin-left:10px;
	margin-right:10px;
}

#horiz_container li img
{
	padding:0px;
	margin:0px;
}




/**************************************************
*
*	SCROLLING STYLES
*
**************************************************/

#scrollbar 
{ 
    position:relative; 
    width:415px; height:12px;
    display:block;
    font-size:1px;
    top:0px;
    margin:0px auto;
	margin-top:40px;
}

#track 
{ 
    position:absolute; left:0px; top:0;
    width:415px; height:22px; 
    background: #676767;
    -webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

#dragBar  {
	cursor:pointer;
	position:absolute;
	left:0px;
	top:0px;
	z-index:10;
	width:20px;
	height:20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background-image: -webkit-gradient(
    	linear,
	    left bottom,
    	left top,
	    color-stop(0.39, rgb(229,229,229)),
    	color-stop(0.7, rgb(245,245,245))
	);
	background-image: url(-moz-linear-gradient(%20center%20bottom,%20rgb(229,229,229)
%2039%25,%20rgb(245,245,245)%2070%25%20));
	background-color: #CCC;
}
  
#left_scroll
{ 
	position:absolute; 
	border-color: transparent gray transparent transparent;
	border-style: solid;
	border-width: 10px;
	width: 0;
	height: 0px;
	cursor:pointer;
	top:1px;
	left:-25px;
}  

#right_scroll 
{ 
	position:absolute; 
	right:-25px; 
	top:1px;
	border-color: transparent transparent transparent gray;
	border-style: solid;
	border-width: 10px;
	width: 0;
	height: 0px;
	cursor:pointer;
}

/* Prevent selection problem */
#scrollbar, #track, #dragBar, #left, #right {
    -moz-user-select: none;
    -khtml-user-select: none;
}