/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

/* Basic styling with no images starts here */

/* IMPORTANT:
Note that, even if you are not expecting to use horizontal scrollbars,
you should at least define colors for it, e.g. you never know what font size
your users will force on the page
*/

.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

/* For scrollbars, defining a color for background alongside with an image 
is always a good idea, this way the scrollbars are visible until images load */
.vscrollerbase {
/* vscrollerbase is the div that holds the scrollbar (parent of vscrollerbar) */
width: 15px;
visibility: visible !important;
}

.vscrollerbar {

	background:#fff;
	width: 2px;
	border: 1px solid #fff;
	margin-left: 5px;
}

.hscrollerbase {
/* hscrollerbase is the div that holds the scrollbar (parent of hscrollerbar) */
height: 15px;
}

.hscrollerbar {
margin-top: 5px;
height: 3px;
width: 100px;
background-color: #fff;
}