window.addEventListener('load', function () {
var slideshowWrapper = document.querySelector('[data-section-id="67ef5d11f69e0c06ea5e72b1"] .slideshow-wrapper');
if (slideshowWrapper) {
var afterElement = document.createElement('div');
afterElement.style.position = 'absolute';
afterElement.style.bottom = '0';
afterElement.style.left = '0';
afterElement.style.width = '100%';
afterElement.style.height = '60px';
afterElement.style.backgroundImage = 'url("https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Example.jpg/640px-Example.jpg")';
afterElement.style.backgroundSize = 'cover';
afterElement.style.backgroundRepeat = 'no-repeat';
afterElement.style.backgroundPosition = 'center bottom';
afterElement.style.zIndex = '9999999';
afterElement.style.border = '3px solid red';
slideshowWrapper.appendChild(afterElement);
}
});