/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

.scrollgeneric {
line-height: 1px;
font-size: 0px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbase {
width: 12px;
background-color: #894556;
}


.vscrollerbar {
width: 12px;
background: #120B0D;
border: dotted 1px #F1F0FF;

/* do not forget to put colors for backgrounds for before image(s) can load , this is more important for
the scrollbar itself than the scrollbase, as user can live without an image on the base but cannot see
any scrollbar when images cannot load. */
}

.vscrollerbasebeg {
/* height of this element is auto set to fit the scrollbase, to cover the base */
/* this element can be used to place a faux top arrow image */
height: 10px;
width: 12px;
background: url(../img/freccia_giu.gif) no-repeat;
}

.vscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 10px;
width: 12px;
background: url(../img/freccia_su.gif) no-repeat;
}


.hscrollerbase {
height: 10px;
background-color: white;
}
.hscrollerbar {
height: 10px;
background-color: black;
}

.scrollerjogbox {
width: 10px;
height: 10px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: #894556;
}

.vscrollerbar, .hscrollerbar {
/* paddings of these elements will decide how far the scrollbar will stop in both ends, and are not actually
used for styling, and are set to 0 by the script, here we will set them the size of our faux arrows */
padding: 10px;
z-index: 2;
}




/* All comments can be freely removed from the css */


#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 590px;
height: 280px;
max-width:5900px;
min-height: 280px;
max-height: 280px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0.3em auto;
padding-right: 10px;
float:left;





	font-size:9pt;
	color:#F1F0FF;
	font-family:verdana,arial, helvetica,sans-serif;
	font-weight: normal;
}
