/* Frame */
.frame 
{
    height: 120px;
    /*line-height: 200px;*/
    overflow: hidden;
    border-top-style: dotted;
    border-top-width: 1px;
    border-top-color: black;
    margin-top:20px;
}

/* Scrollbar */
.hzscrollbar 
{
    margin: 0 0 1em 0;
    height: 2px;
    background: #ccc;
    line-height: 0;
    margin-top: 4px;
}

.hzscrollbar .handle 
{
    width: 100px;
    height: 100%;
    background: #292a33;
    cursor: pointer;
}

.hzscrollbar .handle .mousearea 
{
    position: absolute;
    top: -9px;
    left: 0;
    width: 100%;
    height: 20px;
}

/* Pages */
.hzpages 
{
    list-style: none;
    padding: 0;
    text-align: center;
}

.hzpages li 
{
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 4px;
    text-indent: -999px;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
}

.hzpages li:hover 
{
    background: #aaa;
}

.hzpages li.active 
{
    background: #666;
}

/* Controls */
.nav-link
{
    height:120px;
    width:40px;
    text-align:center;
    
    border-top-style: dotted;
    border-top-width: 1px;
    border-top-color: black;
    
    border-left-style: dotted;
    border-left-width: 1px;
    border-left-color: black;
    
    border-right-style: dotted;
    border-right-width: 1px;
    border-right-color: black;
    
    opacity:0.4;
    filter: alpha(opacity=40); /* For IE8 and earlier */
}

.nav-link:hover
{
    cursor: pointer;
    opacity:1.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}

.nav-link span
{
    margin-top:40px;
}

