.scrollbar_container {  
    position:relative;
} 

.scrollbar_track {  
    position:absolute;  
    top:0;  
    right:0;  
    height:95%;  
    width:11px;  
    cursor:pointer;
    /*background:url("../imagens/scrollbar_track.png") center top repeat-y;*/
    background-color: #eee;
    margin:3px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
} 

.scrollbar_handle {  
    width:11px;  
    /*background-image:url("../imagens/scrollbar.gif");*/
    cursor:pointer;  
    /*height:13px;*/
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background: #c5deea;
    background: -moz-linear-gradient(left,  #c5deea 0%, #8abbd7 31%, #066dab 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#c5deea), color-stop(31%,#8abbd7), color-stop(100%,#066dab));
    background: -webkit-linear-gradient(left,  #c5deea 0%,#8abbd7 31%,#066dab 100%);
    background: -o-linear-gradient(left,  #c5deea 0%,#8abbd7 31%,#066dab 100%);
    background: -ms-linear-gradient(left,  #c5deea 0%,#8abbd7 31%,#066dab 100%);
    background: linear-gradient(to right,  #c5deea 0%,#8abbd7 31%,#066dab 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c5deea', endColorstr='#066dab',GradientType=1 );
} 

.scrollbar_arrow_up,.scrollbar_arrow_down
{
    position:absolute;  
    right:0;
    width: 11px;
    height: 11px;
    background-repeat: no-repeat;
    cursor: pointer;
    display: block;
    margin:3px;
    background-color:#ddd;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.scrollbar_arrow_up
{
    background-image:url("../imagens/arrow_up.png");
    top:-12px;
}

.scrollbar_arrow_down
{
    background-image:url("../imagens/arrow_down.png");
    top:auto;
    bottom:0px;
}

.scrollbar_content {  
    overflow:hidden !important;
}