<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---------------------------------------
	Standard styles formatting
	created with Template Creator
        on https://www.template-creator.com
-----------------------------------------*/

html {
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
}

* {
	padding: 0;
	margin: 0;
}

ul, ol {
	padding: .75em 0 .75em 0;
	margin: 0 0 0 35px;
}

ul.menu,
ul.nav {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}

ul.menu li a,
ul.nav li a {
	text-decoration: none;
}


p {
	padding: 5px 0;
}

.flexiblecolumn {
	min-height: 0.1px; /* needed to keep the area of the column */
	box-sizing: border-box;
}

.clr {
	clear : both;
}

canvas, img, svg, video {
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
}


.column.column1 {
	width: 25%;
}

.column.column2 {
	width: 33.333333333333%;
}

.column.main {
	width: 75%;
}

.column.center {
	width: 66.666666666667%;
}

.noleft .center.column  {
	width: 75%;
}

.noleft .column2 {
	width: 25%;
}

.noleft .main {
	width: 100%;
}

.noright .column.center {
	width: 100%;
}

.flexiblemodule, .column, .logobloc, .flexiblecolumn {
	float: left;
}

.rtl .flexiblemodule, .rtl .column, .rtl .logobloc, .rtl .flexiblecolumn {
	float: right;
}

/* for equalheights */
section &gt; .inner &gt; .clr,
.flexiblemodule &gt; .inner &gt; .clr,
.equalheights &gt; .inner &gt; .clr,
section &gt; .inner:before,
.flexiblemodule &gt; .inner:before,
.equalheights &gt; .inner:before,
section &gt; .inner:after,
.flexiblemodule &gt; .inner:after,
.equalheights &gt; .inner:after {
	display: none;
}

section &gt; .inner,
.equalheights &gt; .inner,
.equalheights .maincenter &gt; .inner {
	display: flex;
	justify-content: space-between;
}

.flexiblemodule {
	display: flex;
	flex: 1 1 auto;
}

.flexiblemodule &gt; .inner {
	max-width:100%;
	width: 100%;
	box-sizing: border-box;
}

.videobackground { 
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background-size: cover;
	object-fit: cover;
}

.videobackground + *,
.videobackground_yt1 + * { 
	position: relative;
	z-index: 1;
}

/* for youtube video */
.videobackground_yt1 { 
	max-height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.videobackground_yt2 { 
	padding-bottom: 56.3%;
	position: relative;
}

.hasvideobackground {
	position: relative;
	overflow: hidden;
}

#finder-search .in.collapse {
	overflow: visible;
}

.valign-top {
	align-self: flex-start;
}

.valign-center {
	align-self: center;
}

.valign-bottom {
	align-self: flex-end;
}

.halign-left &gt; .inner {
	display: flex;
	justify-content: flex-start;
}

.halign-center &gt; .inner {
	display: flex;
	justify-content: center;
}

.halign-right &gt; .inner {
	display: flex;
	justify-content: flex-end;
}

.tck-logo-img {
	display: block;
}

.tck-logo-center img {
	margin-left: auto;
	margin-right: auto;
}

.tck-logo-right img {
	margin-left: auto;
}

.tck-wrapper,
.tck-relative,
.tck-module {
	position: relative;
}

.img_caption {
	max-width: 100%;
	width: auto !important;
}



/* ---------------------------------------
	Print default CSS
-----------------------------------------*/

@media print {

	.tck-container {
		width: 100% !important;
	}

	.scrollToTop, #login-form, .tck-noprint {
		display: none !important
	}

	.flexiblemodule, .column, .logobloc, .flexiblecolumn {
		float: none;
	}

	.column.main, .column.column1, .column.column2 {
		width: 85%;
		margin-right: 2%;
		margin-left: auto;
	}

	.column.center {
		width: 100%;
	}

	a[href]:after {
		content: "";
	}

}

/* ---------------------------------------
	Accessibility
-----------------------------------------*/

.breadcrumb &gt; .active {
	color: #000;
	font-weight: bold;
}

.muted {
	color: #666;
	font-weight: lighter;
}


/* ---------------------------------------
	CSS grid for content alignement
-----------------------------------------*/
[class*="tck-cols"] {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
}

[class*="tck-cols"] &gt; * {
	flex: 1 1 auto;
	box-sizing: border-box;
}

[class*="tck-gutter"] &gt; * {
	flex: 0 1 auto;
}

/* no gutter */
.tck-cols-2 &gt; * {
	width: 50%;
}

.tck-cols-3 &gt; * {
	width: 33.333%;
}

.tck-cols-4 &gt; * {
	width: 25%;
}
.tck-cols-8 &gt; * {
	width: 12.5%;
}

/* gutter 10px */
.tck-cols-2.tck-gutter-10 &gt; * {
	width: calc((100% - 10px) / 2);
}

.tck-cols-3.tck-gutter-10 &gt; * {
	width: calc((100% - 2 * 10px) / 3);
}

.tck-cols-4.tck-gutter-10 &gt; * {
	width: calc((100% - 3 * 10px) / 4);
}

.tck-cols-8.tck-gutter-10 &gt; * {
	width: calc((100% - 7 * 10px) / 8);
}

/* ---------------------------------------
	Shape divider
-----------------------------------------*/

.tck-divider-container {
	position: absolute;
	overflow: hidden;
	left: 0;
	width: 100%;
}

.tck-divider-container &gt; svg {
	position: relative;
	height: 100%;
	left: 50%;
	transform: translate(-50%);
	min-width: 100%;
	max-width: none;
	vertical-align: initial;
	display: block;
}

.tck-divider-container.tck-divider-top {
	top: 0px;
}

.tck-divider-container.tck-divider-bottom {
	bottom: 0px;
}

.tck-divider-container.tck-divider-over {
	z-index: 2;
}

.tck-divider-container.tck-divider-under {
	z-index: 0;
}

.ckflip-horizontal &gt; svg {
	transform: rotateY(180deg) translate(50%);
}

.ckflip-vertical &gt; svg {
	transform: rotateX(180deg) translate(-50%);
}

.ckflip-horizontal.ckflip-vertical &gt; svg {
	transform: rotate(180deg) translate(50%);
}

.tck-divider-container + .inner {
	position: relative;
}

/* ---------------------------------------
	System features
-----------------------------------------*/

.tck-edition {
	min-height: 50px;
	margin: 2px;
	border: 1px dashed grey;
	position: relative;
}
.tck-edition::before {
	content: "[" attr(data-position) "]";
	font-size: 14px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-family: Segoe UI, sans-serif;
	line-height: 1.2;
	padding: 3px 5px;
	background: #333;
	display: block !important;
	color: #fff;
	border-radius: 3px;
	border: 1px solid #666;
	opacity: 0.8;
	pointer-events: none;
	box-sizing: content-box;
	height: 20px;
	z-index: 1;
}

/* ---------------------------------------
	specific to images
-----------------------------------------*/

ul.actions {
	margin: 0;
	list-style: none;
}

ul.actions li a {
	text-decoration: none;
}


.tck-article-details-align-h &gt; dd {
	display: inline-block;
	margin-right: 10px; 
}

.tck-article-tools-right {
	float: right;
}

.tck-article-tools ul:not(.dropdown-menu) li {
	display: inline-block;
}

.tck-article-pagination-prev {
	float: left;
}

.tck-article-pagination-next {
	float: right;
}



/* ---------------------------------------
	Columns width
-----------------------------------------*/

#row2column1 { width: calc(100 / 100 * (100% - 0px - (0 * 0px))); }

#row3column1 { width: calc(100 / 100 * (100% - 0px - (0 * 0px))); }

#row1column1 { width: calc(100 / 100 * (100% - 0px - (0 * 0px))); }


/* ---------------------------------------
	Custom styling
-----------------------------------------*/

.container, .container-fluid,
.tck-container, .tck-container-fluid {
	margin: 0 auto;
	box-sizing: border-box;
}

.container, .tck-container {
	max-width: 1000px;
}

.container-fluid, .tck-container-fluid {
	max-width: 1000px;
}

body {
	color: #333333;
	line-height: 24px;
	font-size: 14px;
	font-family: Arial, sans-serif;
}

a {
	color: #1176a6;
}


a:hover,  a:focus {
	color: #2a4959;
}

h1, div.componentheading {
	font-weight: normal;
	line-height: 45px;
	font-size: 18px;
}

h2, div.contentheading {
	font-weight: normal;
	line-height: 36px;
	font-size: 30px;
}

h3 {
	font-weight: normal;
	line-height: 30px;
	font-size: 24px;
}

.button, button, button.btn, input.btn, .btn {
    border: none;
	background: #e8e8e8;
	color: #333333;
	padding-top: 7px;
	padding-right: 10px;
	padding-bottom: 7px;
	padding-left: 10px;
}

.button:hover, button:hover, button.btn:hover, input.btn:hover, .btn:hover,
.button:focus, button:focus, button.btn:focus, input.btn:focus, .btn:focus {
	background: #dedede;
	color: #000000;
}

.readmore a, .readmore .btn {
	padding-top: 7px;
	padding-right: 10px;
	padding-bottom: 7px;
	padding-left: 10px;
	font-weight: normal;
}

.invalid {border: red;}
                
input.inputbox, .registration input, .login input, .contact input, .contact textarea,  select,
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
    border: none;
	height: auto;
	background: #ffffff;
	border: #c7c7c7 1px solid;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;
}

input:focus, input.inputbox:focus, .registration input:focus, .login input:focus, .contact input:focus, .contact textarea:focus,  select:focus,
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
	border: #7d7d7d 1px solid;
}

#block2 &gt; .inner {
	background: #1a00b0;
	padding-top: 10px;
	padding-bottom: 10px;
}

#block3 &gt; .inner {
	border-top: #edc709 5px solid;
	border-bottom: #edc709 5px solid;
	min-height: 10px;
}

#block6 &gt; .inner {
	background: #FF0000;
	margin-bottom: 30px;
}

#block10 &gt; .inner {
	background: #dbdbdb;
	-moz-border-radius: 20px;
	-o-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	-moz-border-radius: 20px 20px 20px 20px;
	-o-border-radius: 20px 20px 20px 20px;
	-webkit-border-radius: 20px 20px 20px 20px;
	border-radius: 20px 20px 20px 20px;
}

#wrapper5 {
	background:  url('../images/barracor.png') center center repeat-x scroll;
	background-size: auto;
	min-height: 20px;
	margin-top: 10px;
	margin-bottom: 10px;

                    }

#wrapper5 &gt; .inner {
	margin-top: 10px;
	margin-bottom: 10px;
}

#wrapper &gt; .inner {
	min-height: 100px;
}

#block11 div.moduletable h3, #block11 div.module h3, #block11 .widget h3, #block11 .tck-module h3,
#block11 div.moduletable_menu h3, #block11 div.module_menu h3, #block11 .tck-module-title {
	background: #0029F5;
	-moz-border-radius: 0px;
	-o-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-moz-border-radius: 0px 20px 20px 0px;
	-o-border-radius: 0px 20px 20px 0px;
	-webkit-border-radius: 0px 20px 20px 0px;
	border-radius: 0px 20px 20px 0px;
	color: #ffffff;
	padding-left: 5px;
	text-align: left;
	font-weight: bold;
	font-size: 14px;
}

#row3 &gt; .inner {
	background: #f0f0f0;
	margin-top: 10px;
	margin-bottom: 10px;
}

#block8 &gt; .inner {
	border: #30519E 2px solid;
}

#block8 div.moduletable h3, #block8 div.module h3, #block8 .widget h3, #block8 .tck-module h3,
#block8 div.moduletable_menu h3, #block8 div.module_menu h3, #block8 .tck-module-title {
	background: #d60000;
	color: #ffffff;
	padding-left: 20px;
	font-weight: bold;
	font-size: 18px;
}

#block8 .tck-module-text {
	padding-right: 10px;
	padding-left: 10px;
}

#block9 &gt; .inner {
	border: #30519E 2px solid;
	margin-top: 10px;
}

#block9 div.moduletable h3, #block9 div.module h3, #block9 .widget h3, #block9 .tck-module h3,
#block9 div.moduletable_menu h3, #block9 div.module_menu h3, #block9 .tck-module-title {
	background: #5340cf;
	background-image: -o-linear-gradient(center left,#5340cf,#e014b1 25%,#f50213 25%, #F7C03F 100%);
	background-image: -webkit-gradient(linear, left top, right top,from(#5340cf),color-stop(25%,#e014b1),color-stop(25%,#f50213), color-stop(100%, #F7C03F));
	background-image: -moz-linear-gradient(center left,#5340cf,#e014b1 25%,#f50213 25%, #F7C03F 100%);
	background-image: linear-gradient(center left,#5340cf,#e014b1 25%,#f50213 25%, #F7C03F 100%);
	color: #ffffff;
	padding-left: 20px;
	font-weight: bold;
	font-size: 18px;
}

#block9 .tck-module-text {
	padding-right: 10px;
	padding-left: 10px;
}

#block4 &gt; .inner {
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	margin-top: 30px;
	margin-right: 30%;
	margin-left: 30%;
	box-shadow: rgba(0,51,255,0.7) 0px 0px 4px 4px;
	-moz-box-shadow: rgba(0,51,255,0.7) 0px 0px 4px 4px;
	-webkit-box-shadow: rgba(0,51,255,0.7) 0px 0px 4px 4px;
}

#block4 .tck-module-text {
	text-align: center;
}

#wrapper6 {
	background:  url('../images/barracor.png') center center repeat-x scroll;
	background-size: auto;
	min-height: 20px;

                    }

#block1 &gt; .inner {
	margin-bottom: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
}

#block1 div.moduletable h3, #block1 div.module h3, #block1 .widget h3, #block1 .tck-module h3,
#block1 div.moduletable_menu h3, #block1 div.module_menu h3, #block1 .tck-module-title {
	background: #d1d1d1;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
}

#block5 &gt; .inner {
	margin-bottom: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
}

#block5 div.moduletable h3, #block5 div.module h3, #block5 .widget h3, #block5 .tck-module h3,
#block5 div.moduletable_menu h3, #block5 div.module_menu h3, #block5 .tck-module-title {
	background: #d1d1d1;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
}

#block7 &gt; .inner {
	margin-bottom: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
}

#block7 div.moduletable h3, #block7 div.module h3, #block7 .widget h3, #block7 .tck-module h3,
#block7 div.moduletable_menu h3, #block7 div.module_menu h3, #block7 .tck-module-title {
	background: #d1d1d1;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
}

#block7 .tck-module-text {
	padding-top: 10px;
}

#footer &gt; .inner {
	background: #00078F;
	text-align: center;
}

#footer .tck-module-text {
	color: #ffffff;
}
</pre></body></html>