data:text/css,
                    .scroll-pane {
                       -fx-background-color: transparent;
                    }
                    .scroll-pane > .viewport {
                       -fx-background-color: transparent;
                    }
                    .scroll-bar:horizontal {
                        -fx-pref-height: 8;
                        -fx-padding: 0;
                    }
                    .scroll-bar:vertical {
                        -fx-pref-width: 8;
                        -fx-padding: 0;
                    }
                    /* The main scrollbar **track** CSS class  */
                    .scroll-pane .scroll-bar:horizontal .track{
                    	-fx-background-color:%s;
                    	-fx-border-color: transparent;
                    	-fx-background-radius: 0em;
                    	-fx-border-radius:2em;
                    }
                    .scroll-pane .scroll-bar:horizontal .thumb {
                        -fx-background-color: %s;
                    }
                    .scroll-pane .scroll-bar:vertical .track{
                    	-fx-background-color:%s;
                    	-fx-border-color:transparent;
                    	-fx-background-radius: 0em;
                    	-fx-border-radius:2em;
                    }
                    .scroll-pane .scroll-bar:vertical .thumb {
                        -fx-background-color: %s;
                    }

                    /* The increment and decrement button CSS class of scrollbar */
                    .scroll-pane .scroll-bar:horizontal .increment-button ,
                    .scroll-pane .scroll-bar:horizontal .decrement-button {
                         -fx-background-color:%s;
                    	-fx-background-radius: 0em;
                    	-fx-padding:0 0 0 0;

                    }
                    /* The increment and decrement button CSS class of scrollbar */
                    .scroll-pane .scroll-bar:vertical .increment-button ,
                    .scroll-pane .scroll-bar:vertical .decrement-button {
                         -fx-background-color:%s;
                    	-fx-background-radius: 0em;
                    	-fx-padding:0 8 0 8;

                    }
                    /* The increment and decrement arrow CSS class of scrollbar */
                    .scroll-pane .scroll-bar:vertical  .increment-arrow,
                    .scroll-pane .scroll-bar:vertical  .decrement-arrow {
                    	-fx-shape: "";
                    	-fx-padding:0;
                    	-fx-background-color:%s
                    }