@charset "utf-8";
/* CSS Document */

/*Vertical scrollbar - set width and height of a div you want to add a scrollbar to*/
#vertical-scrollbar-demo {
            height: 100px;
            width: 400px;
}
/*Vertical and horizontal scrollbar - set width and height of a div you want to add a scrollbar to*/
#vertical-horizontal-scrollbar-demo {
            width: 838px;
            height: 550px;
			padding:50px 0 0;
}

/* Vertical and horizontal scrollbar - one extra step required - add width of overview - overall width of scrolled content*/
#vertical-horizontal-scrollbar-demo .overview {
           width: 838px;
}



