/* CSS fallbacks for the handful of skin images not available in the archive.
   Everything else now loads from local images/skin/ and images/containers/. */

/* icon-1.png / icon-2.png (toplinks) — not archived, not used on this page */
.toplinks,
A.toplinks:link,
A.toplinks:active,
A.toplinks:visited,
A.toplinks:hover {
    background-image: none !important;
    padding-left: 5px;
}

/* eip_toolbar.gif, eip_edit.gif — admin edit-in-place toolbar; not visible to visitors */
.eipbackimg  { background-image: none !important; background-color: #99cccc; }
.eipbutton_edit { background-image: none !important; }

/* no_avatar.gif — user profile default avatar; not visible on home page */
#UserProfile .ProfilePhoto { background-image: none !important; }

/* === SLIDESHOW BASIC LAYOUT ===
   The original DNN slideshow JS can't run (dependencies were server-side).
   Show the first slide image statically so photos are visible. */

#mss-outer-container_438 {
    width: 200px;
    height: 125px;
    overflow: hidden;
    position: relative;
    border: 2px solid #5a1212;
}

#mss-container_438 {
    width: 200px;
    height: 125px;
    position: relative;
}

#slide-wrapper_438,
#slide-outer_438 {
    width: 200px;
    height: 125px;
    overflow: hidden;
    position: relative;
}

.slide {
    display: none;
    width: 200px;
    height: 125px;
    position: relative;
}

.slide:first-child {
    display: block;
}

.slide-inner {
    width: 200px;
    height: 125px;
    overflow: hidden;
}

.slide-inner img {
    width: 200px;
    height: 125px;
    object-fit: cover;
    display: block;
}

#slide-loading_438 {
    display: none !important;
}
