/*
 ________________________________________________________________________
|                  |                                                     |
|          Title:  |  Resize Images to Maximum Size when Mouse Hovers    |
|    Description:  |  Images skewed by using max-width/height are reset  |
|         Author:  |  -=Ben=-  and myf collab                            |
|   Date Created:  |  June 20, 2008                                      |
|   Last Updated:  |  Autust 1, 2008                                     |
|        Version:  |  1.0.0.4                                            |
|__________________|_____________________________________________________|

*/



@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document 
 url-prefix(http://),
 url-prefix(https://),
 url-prefix(file://),
 url-prefix(chrome://)
{


html > body:not(:only-child) img:hover 
{
  max-height: none !important;
  max-width: none !important;
  height: auto !important;
  width: auto !important;
}

}