<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---------------------------------------------------------------------------------------------------- */
/* GENERAL 																								*/

body {
	background: rgb(20,36,51);
	background: -moz-linear-gradient(90deg, rgba(20,36,51,1) 0%, rgba(31,54,77,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(20,36,51,1) 0%, rgba(31,54,77,1) 100%);
	background: linear-gradient(90deg, rgba(20,36,51,1) 0%, rgba(31,54,77,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#142433",endColorstr="#1f364d",GradientType=1);
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	color: #333333;
}

/* ------------------------------------------------------------ */
/* LINK															*/

a {
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

/* ---------------------------------------------------------------------------------------------------- */
/* FOOTER																								*/

footer .quicklinks a {
	color: #ffffff;
	text-decoration: none;
}

footer .quicklinks a:hover {
	text-decoration: underline;
}

footer .dropdown-toggle {
	background: none;
	border: 0;
	padding: 0;
	color: #ffffff;
}

footer .dropdown-toggle:hover {
	background: none;
	border: 0;
	color: #ffffff;
	text-decoration: underline;
}

footer .dropdown-toggle .icon16 {
	opacity: 1.0;
}

/* ---------------------------------------------------------------------------------------------------- */
/* HERO																									*/

.hero {

}

.hero-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	overflow: hidden;
}

.hero-bg img {
	max-width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hero-bg-transition {
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

/* ------------------------------------------------------------ */
/* HERO - CUSTOM												*/

.hero-custom {
	background: linear-gradient(90deg, rgba(20,36,51,1) 0%, rgba(31,54,77,1) 100%);
	padding: 20px 0;
	position: relative;
	color: #ffffff;
}

.hero-custom .container {
	position: relative;
	z-index: 2;
}

.hero-custom a {
	color: #ffffff;
}

/* ---------------------------------------------------------------------------------------------------- */
/* SECTION																								*/

.section-standard {
	padding: 30px 0;
	background: #ffffff;
}

/* ---------------------------------------------------------------------------------------------------- */
/* CTA																									*/

.cta {

}

.cta-eventlogin {
	background: #EDEEF2;
	border-radius: 4px;
	padding: 20px;
}

/* ---------------------------------------------------------------------------------------------------- */
/* VALIDATION																							*/

/* ------------------------------------------------------------ */
/* VALIDATION - ERROR											*/

.form .stateError input[type="text"],
.form .stateError input[type="password"],
.form .stateError input[type="email"],
.form .stateError input[type="number"],
.form .stateError input[type="tel"],
.form .stateError input[type="date"],
.form .stateError input[type="time"] {
	background: #fdf3f2;
	border: 1px solid red;
}

.form .stateError select {
	background: #fdf3f2;
	border: 1px solid red;
}

.form .stateError textarea {
	background: #fdf3f2;
	border: 1px solid red;
}

.form .stateError .helptext {
	margin: 5px 0 -5px 0;
	color: red;
	font-size: 0.9em;
}

/* ---------------------------------------------------------------------------------------------------- */
/* EVENTLIST																							*/

.eventlist {
	margin: -18px;
	display: flex;
	flex-wrap: wrap;
}

.event {
	background: #ffffff;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	margin: 18px;
	position: relative;
	color: #333333;
	text-decoration: none;

	transition: box-shadow 0.2s ease-in-out;
}

.event:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	text-decoration: none;
}

/* ------------------------------------------------------------ */
/* EVENT LIST - RIBBON											*/

.event-ribbon {
	height: 30px;
	border-radius: 3px 0 0 3px;
	padding: 0 10px;
	position: absolute;
	top: 20px;
	right: 0;
	z-index: 1;
	line-height: 30px;
}

/* ------------------------------------------------------------ */
/* EVENT LIST - THUMB											*/

.event-thumb {
	border-radius: 4px 4px 0 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
	flex: 0 1 auto;
}

.event-thumb img {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* ------------------------------------------------------------ */
/* EVENT LIST - DATE											*/

.event-date {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	color: #ffffff;
}

.event-date-day {
	font-size: 3.2em;
	line-height: 1em;
}

.event-date-month {
	font-size: 1.6em;
	line-height: 1em;
	text-transform: uppercase;
}

/* ------------------------------------------------------------ */
/* EVENT LIST - BODY											*/

.event-body {
	padding: 15px;
	flex: 1 0 0;
}

.event-body h3 {
	margin: 0 0 20px 0;
}

.event-body p {
	margin: 0;
}

.event-facts {
	margin-bottom: 20px;
}

.event-facts-item {
	margin: 5px 0;
}

.event-facts-item .icon16 {
	margin-right: 5px;
	opacity: 0.4;
}

/* ---------------------------------------------------------------------------------------------------- */
/* EVENT LIST (LIST VIEW)																				*/

.eventlist.view-list {
	margin: -12px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.eventlist.view-list .event {
	max-width: 100%;
	margin: 12px;
	display: flex;
	justify-content: flex-start;
}

/* ------------------------------------------------------------ */
/* EVENT LIST (LIST VIEW) - THUMB								*/

.eventlist.view-list .event-thumb {
	min-width: 160px;
	max-width: 160px;
	height: 100px;
	border-radius: 4px;
	margin: 15px 0 15px 15px;
	padding: 0;
}

/* ---------------------------------------------------------------------------------------------------- */
/* EVENT LIST (GRID VIEW)																				*/

.eventlist.view-grid {
	margin: -18px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.eventlist.view-grid .event {
	min-width: calc(33.3333% - 36px);
	max-width: calc(33.3333% - 36px);
}

/* ---------------------------------------------------------------------------------------------------- */
/* LEGACY CSS FOR DIALOG																				*/

.choice-group-head {
	background: url(../images/bg_dark_semitrans.png) repeat 0 0;
	padding: 10px;
	color: #FFFFFF;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.choice-group-head h2 {
	float: left;
	margin: 1px 3px 0 0!important;
	font-size: 1.3em!important;
}

li.choice-group-head h2 {
	line-height: 1.3em!important
}

.choice-group-head p {
	margin: 6px 10px 0;
	padding: 5px 10px;
	display: inline-block;
}

tr.choice-group-head td {
	padding: 6px 8px;
	color: #e5e5e5;
	font-weight: bold;
}

.ui-dialog .ui-dialog-content {
	line-height: 1.5em;
}

.ui-dialog .ui-dialog-content {
	padding: 0.5em 2.5em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td {
	vertical-align: middle;
	border: 1px solid #ececec;
	padding: 5px 10px;
}

/* ---------------------------------------------------------------------------------------------------- */
/* TOOLBAR																								*/

.toolbar {
	margin: 0 -10px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.toolbar-group {
	margin: 0 10px;
}

/* ------------------------------------------------------------ */
/* TOOLBAR - INPUT												*/

.toolbar input {

}

/* ------------------------------------------------------------ */
/* TOOLBAR - BUTTON												*/

.toolbar .btn {

}

@media only screen and (max-width: 768px) {
	/* ---------------------------------------------------------------------------------------------------- */
	/* EVENT LIST 																							*/

	.eventlist,
	.eventlist.view-list,
	.eventlist.view-grid {
		margin: -18px;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.event,
	.eventlist.view-list .event,
	.eventlist.view-grid .event {
		max-width: 100%;
		margin: 18px;
		display: flex;
		flex-direction: column;
		flex: 1 1 100%;
	}

	.event-thumb,
	.eventlist.view-list .event-thumb,
	.eventlist.view-grid .event-thumb {
		min-width: 0;
		max-width: 100%;
		height: auto;
		border-radius: 4px 4px 0 0;
		margin: 0;
		padding-bottom: 56.25%;
	}
}

@media only screen and (max-width: 480px) {
	/* ---------------------------------------------------------------------------------------------------- */
	/* HERO																									*/

	.hero-bg img {
		max-width: none;
		max-height: 100%;
	}
}</pre></body></html>