<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---- CSS for Navigation ---- */
.dropdown-menu .show &gt; .dropdown-toggle::after{
    transform: rotate(-90deg);
}
.navbar-custom {
    background-color: #11467d;
}
/* change the brand and text color */
.navbar-custom .navbar-brand, .navbar-custom .navbar-text {
    color: white;
}
/* change the link color */
.navbar-custom .navbar-nav .nav-link {
    color: white;
}
/* change the color of active or hovered links */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link {
    color: orange;
}
li.dropdown:hover &gt; .dropdown-menu {
    display: block;
}
a.dropdown-item:hover {
    color: orange;
}
/* ---- CSS for Carousel ---- */
.carousel {
    background-color: black;
}
.carousel-caption {
    color: white;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .carousel-caption {
	color: white;
	content: "";
	display: block;
	position: absolute;
	bottom: -25px;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
    }
}
.carousel-indicators li {
    bottom: -10px;
    border-radius: 12px;
    width: 12px;
    height: 12px;
    background-color: #404040;
}
.carousel-item:after {

}
/* ---- CSS for Custom ---- */
body {
    padding-top: 54px;
}
.bg-white {
    background-color: white;
}
@media (min-width: 992px) {
    body {
	padding-top: 56px;
    }
    .bg-white {
	background-color: white;
    }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    body {
	padding-top: 81px;
    }
    .bg-white {
	background-color: white;
    }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    body {
	padding-top: 54px;
    }
    .bg-white {
	background-color: white;
    }
}
.crop-text-1 {
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.crop-text-2 {
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.crop-text-3 {
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.bg-grey {
    background-image: url('../images/2018/bg.jpg');
}
.bg-darkblue-more {
    background-color: #11467d;
}
.bg-darkblue {
    background-color: #2d67a4;
}
.border-darkblue {
    border: solid 1px #2d67a4;
}
.border-grey {
    border: solid 1px lightgray;
}
/* Thumbnail styling */
.thumbnail {
    position: relative;
    width: 200px;
    height: 150px;
    overflow: hidden;
}
@media (max-width: 1199.98px) {
    .thumbnail {
	position: relative;
	width: 150px;
	height: 100px;
	overflow: hidden;
    }
}
@media (max-width: 991.98px) {
    .thumbnail {
	position: relative;
	width: 200px;
	height: 150px;
	overflow: hidden;
    }
}
.thumbnail img {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    width: auto;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.thumbnail img.portrait {
    width: 100%;
    height: auto;
}
.zoom:hover {
    /* transform: scale(1.2); */
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.white {
    color: white;
}
a:hover, a.white:hover {
    color: orange;
}
/* ---- CSS for Footer ---- */
.footer {
    padding-top: 40px;
    color: whitesmoke;
    background-color: #2d67a4;
}</pre></body></html>