/* --- begin example --- *//*

//this will hide a toolbar
#toolbar-id {
  display: none;
}

//this will show the toolbar if you move the cursor to navigator toolbox
#navigator-toolbox:hover > #toolbar-id {
  display: -moz-box;
}

*//*--- end example --- */


/* The following CSS code will hide navigation toolbar and personal toolbar
and show them again if you move the cursor to menubar */

/* begin css */

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#PersonalToolbar {
  display: none;
}


#navigator-toolbox:hover > #PersonalToolbar {
  display: -moz-box;
}

/* end css */