Export JPG Transparencies Error

I have a macro to export each page as a JPG. But there are some instances where some elements are PNG layers with transparencies and I think my export settings are causing an error. See the bottom shadow of the bottles.

'Exports jpg
        Set expflt = ActiveDocument.ExportBitmap(path, cdrJPEG, cdrSelection, cdrRGBColorImage, 0, 0, 300, 300, cdrNormalAntiAliasing, False, True, True, False, cdrCompressionNone)
        With expflt
        .Smoothing = 50
        .Compression = 15
        .Finish
        End With