img {  
    /* Responsive images (ensure images don't scale beyond their parents) */  
    height: auto; /* Part 2: Scale the height according to the width, otherwise you get stretching */  
    max-width: 100%; /* Part 1: Set a maxium relative to the parent */  
    min-width: auto\9; /* IE7-8 need help adjusting responsive images */   
}
  
img[width] {
  min-width: 0; /* Overwrite min-width: auto when img width set */
}
  

/* Prevent max-width from affecting Google Maps*/
#map_canvas img,.google-maps img {  
    max-width: none;

}
