/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

#mycustomscroll {
/* Typical fixed height and fixed width example */
width:363px;
height:287px;
overflow-x:hidden;
overflow-y:auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0.3em auto;
padding-right: 12px;
font-size:14px;
}

#mycustomscroll2 {
/* full width content */
width:600px;
height:250px;
overflow-x:hidden;
overflow-y:auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0;
padding-right:12px;
font-size:14px;
}


#mycustomscroll2b {
/* full width content */
width:600px;
height:250px;
overflow-x:hidden;
overflow-y:auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0;
padding-right:11px;
font-size:14px;
}



#localinspired {
/* full width content */
width:800px;
height:290px;
overflow-x:hidden;
overflow-y:auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0;
padding-right:11px;
font-size:14px;
}

#mycustomscroll3 {
/* full width content */
width:600px;
height:300px;
overflow-x:hidden;
overflow-y:auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0;
padding-right:12px;
font-size:14px;
}


#mycustomscroll-cal {
/* full width content */
width:289px;
height:248px;
overflow-x:hidden;
overflow-y:auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
text-align:justify;
margin: 0;
padding-right: 12px;
font-size:14px;
}


#mycustomscroll-calb {
/* full width content */
width:289px;
height:248px;
overflow-x:hidden;
overflow-y:hidden;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
text-align:justify;
margin: 0;
padding-right: 10px;
font-size:14px;
}

/*  scrollgeneric is used for corrective styling of elements, and should not be modified or removed */ 
.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbar {
width: 12px;
height: 25px !important;
background: #4e5150 url(/_javascript/flexcroll/scrollbar.gif) -12px -25px repeat-y;
/* 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. */
}
.vscrollerbarbeg {
/* height of this element is normally auto set to fit the scrollbase, to cover the base... */
height: 14px !important;
/* ...unless we force the size using an !important decleration */
/* forcing would not be required if Webkit-Safari did not have a background-repeat bug*/
/* this may be fixed by the time Safari 3.0 is released. */
width: 12px;
background: url(/_javascript/flexcroll/scrollbar.gif) -36px -14px no-repeat;
}
.vscrollerbarend {
/* height of this element should be set */
height: 14px;
width: 12px;
background: url(/_javascript/flexcroll/scrollbar.gif) -36px 0px no-repeat;
}

.vscrollerbase {
width: 12px;
background: #111313 url(/_javascript/flexcroll/scrollbar.gif) 0px 0px repeat-y;
}
.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 */
width: 12px;
height: 11px !important; /*Again, the safari fix, normally this line is not needed.*/
background: url(/_javascript/flexcroll/scrollbar.gif) -24px -11px no-repeat;
}
.vscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 11px;
width: 12px;
background: url(/_javascript/flexcroll/scrollbar.gif)  -24px 0px no-repeat;
}

/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
.hscrollerbase {
height: 14px; background-color: white;
}
.hscrollerbar {
height: 14px; background-color: black;
}

.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: 11px;
z-index: 2;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 12px;
height: 14px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #191a1a;
}


/* Scroll Bar Master Styling Ends Here */

