/*
 ______________________________________________________________________
|                  |                                                   |
|          Title:  |  CustomizeGoogle Extension - Fix Missing Favicons |
|    Description:  |  Google Results without favicons show no favicon  |
|         Author:  |  -=Ben=-  and USBman                              |
|   Date Created:  |  August 15, 2008                                  |
|   Date Updated:  |  August 21, 2008                                  |
|        Version:  |  1.0.0.1                                          |
|__________________|___________________________________________________|

*/

@-moz-document url-prefix(http://google.com), domain(google.com), domain(google.ca) 
{

/* Remove the Generic Favicon */
IMG[src*="ImageReadyq"]
{
  display: none !important;
}

/* Corrects the layout of those results - From USBman */
.g > .r + [src*="ImageReadyq"] + [cellspacing="0"][cellpadding="0"][border="0"]
{
padding-left:20px !important;
}

}