/*
 * TKG image protection (deterrent only)
 * Prevents casual selection/drag/long-press saving of images.
 * Browser-delivered images can never be made 100% non-downloadable.
 */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}
