<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*  LAST UPDATED BY RS ON 21/10/24 - added blockquote.css*/

@import "top-task.css";
@import "interested.css";
@import "blockquote.css";

/*  ESCAPE BUTTON */

.escape-button {
    background: #dc0050;
    color: #fff;
    font-weight: bold;
    border: none;
    font-size: 1.2em;
    padding: 7px 20px;
    width: 100%;
    border-radius: 10px;
    transition: 0.4s all;
    position: relative;
}

.escape-button:before {
    content: "\f06a";
    font-family: "FontAwesome";
    font-size: 1.2em;
    position: absolute;
    left: 10px;
    top: 10%;
} 

.escape-button:after {
    content: "\f06a";
    font-family: "FontAwesome";
    font-size: 1.2em;
    position: absolute;
    right: 10px;
    top: 10%;
} 

.escape-text {
    display: inline-block;
    width: 80%;
}
    
 .escape-button:hover {
     background: #a9003d;
 }
 
.escape-button:hover .escape-text {
    text-decoration: underline;
}

/*  SMALL SLIDESHOW FOR TELECARE */

.slideshow-container-small {
    width: 450px;
    max-width: 100%;
    font-size: 1em;
    position: relative;
    margin: -40px auto 40px auto;
    height: 320px;
}

.slideshow-container-small img {
    margin-top: 75px;
}

.slideCounterSmall {
    color: #f2f2f2;
    font-size: 0.8em;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.minor {
    height: 320px;
}

.mySlidesSmall {
    display: none;
    text-align: center;
    margin: auto;
}

.prevSmall, .nextSmall {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #fff !important;
    font-weight: bold;
    font-size: 18px;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(0, 46, 111, 0.9);
    text-decoration: none !important;
}

.prevSmall, .nextSmall {
    font-size: 12px;
    padding: 12px;
    text-decoration: none !important;
}

.nextSmall {
    right: 0;
    border-radius: 0 3px 3px 0;
}

.prevSmall {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.textSmall {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    background-color: rgba(0, 46, 111);
    padding: 8px 0;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.textSmall a {
    color: #fff !important;
    text-decoration: none !important;
    transition: 0.4s all;
}

.textSmall a:hover {
    text-decoration: underline !important;
}

.fadeSmall {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fadeSmall {
    from {opacity: .4} 
    to {opacity: 1}
}

@keyframes fadeSmall {
    from {opacity: .4} 
    to {opacity: 1}
}


@media only screen and (max-width: 450px) {
    
    .slideshow-container-small {
        width: 100%;
        float: none;
        margin-left: 0;
        height: 280px;
    }
    
    .slideshow-container-small img {
        width: 70%;
    }
    
}

</pre></body></html>