/**
 * safari.css
 * ----------
 * This is a specific override stylesheet to target the Apple Safari browser.
 * You will note that we do not have one for any other browser, thanks Apple.
 * This works by using the media query below to specifically target only Safari,
 * not other Webkit based browsers, through what may as well be some kind of
 * arcane art.
 *
 * Should work for Safari 6.1+ (9.0 is the latest version of Safari at this
 * time)
 *
 * @see Refer http://stackoverflow.com/questions/16348489/is-there-a-css-hack-for-safari-only-not-chrome
 *
 * Version: 2.0
 * Author: Lucas Bradd <lucas.bradd@pof.com.au>
 */

@media screen and ( min-color-index: 0 ) and ( -webkit-min-device-pixel-ratio: 0 ) {
    @media {
        .okay-safari {
            top: 0 !important;
        }
    }
}
