@namespace url(http://www.w3.org/1999/xhtml);

/*: Comments like this are notes about overwriting
 *: the selector they talk about.
 */

/* Destroy images */
@-moz-document domain("google.com") 
{
  /* id */
 #logo > span, /*: a#logo */

  /* class */
 img.productTitle,
 img.productImage,

  /* alternate text */
 img[alt="Getting help"],
 img[alt="Gmail"],
 img[alt="Gmail by Google"],
 img[alt="iGoogle"],
 img[alt="The Start Page"],
 img[alt="Web History"],
 img[alt^="Go to Google"],
 img[alt^="Google"],

  /* source directory */
 img[src^="logos/"],

  /* source url */
 img[src^="http://bizsolutions.google.com/services/images/"],
 img[src^="http://www.google.com/options/icons/"],

  /* source file */
 img[src^="/images/news_comment_bubble"]
  {
    display: none !important;
  }
}