/*only for inclusion on pages where we want a custom colored scroll bar,
since this also can change the normal windows scroll bar on IE when there is not
a scroll bar present inside the html code, it seems. 

For example, this is included in PrivacyPolicy.php and Termsand Conditions.php
Also, tpl_header.php for the store. */

#mycustomscroll {
width:688px; height:550px; border:1px solid #262932; overflow:auto; padding:10px; margin:10px; background-color:#CCCDCE;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
text-align: left;
}
#mycustomscroll p { padding-bottom:10px; color:#000000; }
#mycustomscroll strong { color:#000000; }
#mycustomscroll a {color:#000066;}

	/* scroll-bar colors (only works on IE */
body {scrollbar-base-color: #23262e; scrollbar-highlight-color: #333743; scrollbar-arrow-color: #a7abb8; scrollbar-darkshadow-color:#0d0e0f; scrollbar-shadow-color:#17181c; }

