/*
* jQuery Plugin - Resize and Crop - v0.2 - CSS
*/
div.resize-and-crop {
    overflow: hidden;
    display: -moz-inline-block; /* FF2 */
    display: inline-block;
    *display: inline; /* IE6&7 */
    *zoom: 1; /* IE6&7: give hasLayout property */
    /*vertical-align: top;*/ /* was added for Webkit but HAS SIDE EFFECTS */
    position: relative; /* important for absolute pos of child img */
    padding: 5px;
    background: none repeat scroll 0 0 #FFF;
    border: 1px solid #BBB;
}
