/*
 ________________________________________________________________________
|                  |                                                     |
|          Title:  |  Auto Hide SideBar until Hovered Over WOW           |
|    Description:  |  Sidebar will only appear when your mouse is over it|
|         Author:  |  -=Ben=-    with help from LifeHacker               |
|   Date Created:  |  July 23, 2008                                      |
|   Last Updated:  |  November 10, 2008                                  |
|        Version:  |  1.0.0.3                                            |
|__________________|_____________________________________________________|

*/


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");



#sidebar
{
  visibility: collapse !important;

  /* The smallest your sidebar will shrink when hidden: */
  min-width: 0px !important;

  /* The max your sidebar will shrink when hidden: */
  max-width: 0px !important;
}


#sidebar-box:hover #sidebar
{
  visibility: visible !important;

  /* The LARGEST your sidebar will grow when hovered: */
  min-width: 500px !important;

  /* The smallest your sidebar can be when hovered: */
  max-width: 500px !important;
}
