/* AGENT_SHEET */
/* ===== scrollbars.css ==============================================
  == 自定义滚动条样式
  == author : zbinlin
  == blog   : http://blog.bitcp.com/
  == version: 0.0.2.20110630
  ======================================================================= */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for HTML elements */
@-moz-document domain('mail.google.com') { 
/* ::::: scrollbar ::::: */
 
scrollbar {
    -moz-appearance: none !important;
    background: rgba(255, 255, 255, 0.1);
    width: 16px !important;
    min-width: 15px !important;
}
scrollbar[orient="horizontal"] {
    height: 16px;
    min-height: 15px !important;
}

/* ::::: borders for thumb and buttons ::::: */
 
scrollbar thumb {
    -moz-appearance: none !important;
    background: rgba(255, 255, 255, 0.5);
    border-style:none;
    border-width:0;
    min-height: 24px;
}
 
scrollbar thumb[orient="horizontal"] {
    min-width: 24px;
}
 
scrollbar thumb:hover {
    background: rgba(255, 255, 255, 0.8);
}
scrollbar thumb:active, scrollbar thumb[active="true"] {
    background: rgba(255, 255, 255, 0.9);
}
 
 
/* ::::: scrollbar button ::::: */
 
scrollbar scrollbarbutton {
    display: none !important;
    visibility: collapse !important
}
 
 
/* ::::: square at the corner of two scrollbars ::::: */
 }
scrollcorner {
    display: none !important;
    
}