/* .scrollgeneric is required for proper scrollbar display,
not for user customization, and is mandatory*/
.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: 11px;
	background-color: white;

}

.vscrollerbar {
	width: 11px;
	background-color: fff;
}

/* basic style ends here, this was actually all that is required to run fleXcroll,
albeit without images, my advice is to have this basic style and build the rest
on top of this. */


/* styles for scrollbar images start here */

/* バー中央 */
.vscrollerbar {
/* Main body of vertical scrollbar */
	background: #fff url(../img/scrol.jpg) -11px 0px repeat-y;
}

.vscrollerbar, .hscrollerbar {
/*padding information of these elements are only used for
padding of the scroll-bar with respect to the scroll-base,
the padding will automatically be turned off by the script
The greater the padding, the further away the scrollbar
stops away from both ends. This may be used, for example,
to provide space for our "faux" arrow heads.
*/
	padding: 11px;

/* z-index for scrollbars define the z-index for the content, if left at
"auto" or "0", they are set to "2", if defined, content z-index is set the
same as the scrollbars. Version 1.7.5 and higher does not need this setting
to function properly, earlier versions need this for proper operation */
	z-index: 2;
}

/* バー上 */
.vscrollerbarbeg {
/* Top image holder for vertical scrollbar*/
	background: url(../img/scrol.jpg) -44px 0px no-repeat;
	width: 11px;
/* Height of this class is normally set by the script, to fit the scrollbar, but Webkit (Safari's rendering
engine) currently has a bug on no-repeat for negatively positioned backgrounds, causing the top
image to repeat on certain sizes. In this style, we do not need our script to strech the
vscrollerbarbeg, so we can fix the problem by forcing the size using CSS with an !important decleration: */
	height: 11px !important;
}

/* バー下 */
.vscrollerbarend {
/* Bottom image holder for vertical scrollbar*/
	background: url(../img/scrol.jpg) -55px 0px no-repeat;
	width: 11px;
	height: 11px;
}

/* Following are for scrollbase images, may not always be required */

/* ベースの色 */
.vscrollerbase {
/* Vertical scrollbar's base body */ 
	background: #FFF url(../img/scrol.jpg) 0px 0px repeat-y;
}

/* 矢印↑ */
.vscrollerbasebeg {
/* Vertical scrollbar's base top-cap */
/* This may be used for holding the up arrow */
	background: url(../img/scrol.jpg) -22px 0px no-repeat;
	width: 11px;
/* height of this element is normally auto set by the script to fit the scrollbase, to cover the base... */
	height: 12px !important; /*  Safari BG repeat fix */
}

/* 矢印↓ */
.vscrollerbaseend {
/* Vertical scrollbar's base bottom-cap */
/* This may be used for holding the down arrow */
	background: url(../img/scrol.jpg) -33px 0px no-repeat;
	height: 12px;
	width: 11px;
}


