@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
@-moz-document url-prefix(chrome){
/* Remove the unwanted menus
   Id's for all toplevel menus:
   file-menu, edit-menu, view-menu, go-menu, 
   bookmarks-menu, tools-menu, helpMenu */
#view-menu, #edit-menu, #go-menu, #bookmarks-menu { display: none; }

/* Remove back button dropdown marker */
#back-button .toolbarbutton-menubutton-dropmarker {display: none }

/* Remove Back button when there's nothing to go Back to */
#back-button[disabled="true"] { display: none; }

/* Remove forward button dropdown marker */
#forward-button .toolbarbutton-menubutton-dropmarker {display: none }

/* Remove Forward button when there's nothing to go Forward to */
#forward-button[disabled="true"] { display: none; } 

/* Remove Stop button when there's nothing to Stop */
#stop-button[disabled="true"] { display: none; }

/* Remove Go button next to address bar */
#go-button-stack { display: none ; }

/* Remove magnifying glass of search bar */
/* remove this comment to enable this
.search-go-button-stack { display: none ; }
*/

}