/*-------scrollbar style----------*/
div.scrollholder
{
    position: relative;
    width: 100%; height: 196px;
    overflow: auto;
    z-index: 1;
	float:left;

}

div.scroll
{
    position: absolute;
    left: 0; top: 0;
    width:290px;/* Using %s brings IE vs. Firefox discrepencies in rendering */
    z-index: 2;
}

/* <Scroll> */
div.track
{
    position: relative;
    float:right;
    top: 0; 
    width: 20px; height: 196px;
    font-size: 0;
    z-index: 3;
	background:transparent;

	
}

div.drag_bar
{
    position: absolute;
    width: 8px; height: 29px;
	margin-left:3px;
    cursor: pointer;
    z-index: 4;
    background:#F7931E;


}  