/**************************************************
*
*	CONTAINER STYLES
*
**************************************************/

#horiz_container_outer
{

    overflow-x:hidden;
    overflow-y:hidden;
    position:relative;
    height:450px;
    margin:5px auto;
    list-style: none;
}

#horiz_container
{
    
    margin:0px;
    padding:0px;
    height:300px;
}

#horiz_container ul
{
    margin:0px; padding:0px;
    float:left;
}

#horiz_container_inner
{
    padding:5px;
    padding-left:0px;
}

#horiz_container li
{
    list-style:none;
    float:left;
    margin:0px;
    width: 400px;
}

#horiz_container li img
{
    padding:0px;
    margin:0px;
}




/**************************************************
*
*	SCROLLING STYLES
*
**************************************************/

#scrollbar
{
    position:relative;
    height:16px;
    display:block;
    font-size:1px;
    top:0px;
    margin:30px auto   30px;
    width: 70%;
}

#track
{
    position:absolute; left:0px; top:0;
    width:100%;
    height:16px;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#dragBar
{
    position:absolute; left:0px; top:0px;
    width:20px; height:14px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #EAEAEA;
    cursor: pointer;
}

#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;
}
