<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
#0079c8 = theme color
#003050 = theme color darkened
#00F2FF = theme color lightened
#ffffff = theme background color
@head-image = header image
@logo = logo image
*/



body {
    font-family:  Panton-Regular, Arial, Trebuchet MS, sans-serif;
}

.btn {
	background-color : #0079c8;
}

.vm-btn {
	background-color : #0079c8;
	background : linear-gradient(#0079c8, #003050);
}

.vm-btn:hover, .vm-btn:active, .vm-btn:focus {
    background: linear-gradient(#00F2FF, #0079c8);
}

body .content .page-head {
	background-color : #ffffff;
	background-image : @head-image;
}

body .introductionController h2, body .selfRegistrationController h2, 
body .registrationController h2, .diversityController h2 {
	color: #0079c8;
}

body .content .page-foot .footer-links {
	background-color : #0079c8;
	border-top-color : #00F2FF;
	color: white;
}

.controller .progress {
	border-color : #0079c8 !important;
}

.controller .icon, .sjtController .icon {
	border-color : #0079c8 !important;
	color : #0079c8 !important;
}

.controller .response-pane .response-row-header,
.sjtController .response-pane .response-row-header,
#spinner,
.html-content h1, .html-content h2, .html-content h3, .html-content h4,
.tickbox:hover .fa, .radiobox:hover .fa,
.title,
dt,
.click,
.theme-as-color {
	color : #0079c8 !important;
}

.response-text span {
	font-family:  Panton-Regular, Arial, Trebuchet MS, sans-serif !important;
}

body .content .page-foot ul a.footer-link:hover, body .content .page-foot ul a.footer-link:active, body .content .page-foot ul a.footer-link:focus {
	color : #00F2FF !important;
}

.theme-as-bgcolor {
	background-color : #0079c8 !important;
}

.theme-as-bordercolor {
	border-color : #0079c8 !important;
}

.themebg-as-color {
	color : #ffffff !important;
}

.themebg-as-bgcolor {
	background-color : #ffffff !important;
}

.themebg-as-bordercolor {
	border-color : #ffffff !important;
}

.themelightened-as-bordercolor{
	border-color:#00F2FF !important;
}

.themelightened-as-text{
	color:#00F2FF !important;
}

.click:hover {
	color: #00F2FF !important;
}

.throb {
    animation: throb-animation 2s linear normal;
    animation-iteration-count: 1;
}

@keyframes throb-animation {

    0% {
		color: #0079c8;
    }

    50% {
        color: #00F2FF;
    }

    100% {
        color: #0079c8;
    }
}

.response-option-bg.circle {
	border: 1px solid #0079c8;
}

.response-option-bg.circle i {
    color: #0079c8;
}</pre></body></html>