/*
 * Author:            Will (war59312@gmail.com)
 * Description:       Removes the gmail logo, unnecessary linke breaks, and email address from the printer friendly email message page for Gmail version 3
*/

/* +++ changelog +++
March 11, 2009
- seems google is sending different code to firefox on linux, fixed code to work on both windows and linux..
March 10, 2009
- fixed "mail account history", whoops.. ha-ha I am only human after all.. ;)
March 7, 2009
- original release
*/

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("mail.google.com") {

/* HEADER - LOGO */
IMG[src*="mail/help/images/logo1.gif"] { 
    display: none !important; 
  }

/* HEADER - E-MAIL ADDRESS */
HTML > BODY > TABLE:first-child > TBODY > TR > TD:last-child > FONT > B > SPAN,
HTML > BODY > TABLE:first-child > TBODY > TR > TD:last-child > FONT > B { 
    display: none !important; 
  }

/* HIDE LINE BREAKS BEFORE AND AFTER EMAIL MESSAGE */
HTML > BODY > TABLE:first-child + HR, HTML > BODY > HR:last-child,
HTML > BODY > TABLE:first-child + HR + FONT + BR + HR + TABLE + HR { 
    display: none !important; 
  }

}