/* ---------------------------------------
	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;
}

.clearfix::after {
	display: block;
	content: "";
	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 > .inner > .clr,
.flexiblemodule > .inner > .clr,
.equalheights > .inner > .clr,
section > .inner:before,
.flexiblemodule > .inner:before,
.equalheights > .inner:before,
section > .inner:after,
.flexiblemodule > .inner:after,
.equalheights > .inner:after {
	display: none;
}

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

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

.flexiblemodule > .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 > .inner {
	display: flex;
	justify-content: flex-start;
}

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

.halign-right > .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;
}

.fack svg {
	vertical-align: baseline;
}

/* ---------------------------------------
	Article pagination
-----------------------------------------*/

.pagenavigation ul.pagination, .tck-article-pagination {
	list-style: none;
}

.tck-blog p.counter {
	float: right;
}

/* ---------------------------------------
	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 > .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"] > * {
	flex: 1 1 auto;
	box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

.tck-divider-container > 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 > svg {
	transform: rotateY(180deg) translate(50%);
}

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

.ckflip-horizontal.ckflip-vertical > 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 > 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
-----------------------------------------*/

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

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

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

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

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

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

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

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

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

#row6column2 { width: calc(30 / 100 * (100% - 0px - (1 * 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 {
	background: #EDEEF0;
	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, input[type="checkbox"] {
    border: none;
	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;
}

#row5 > .inner {
	background: #ffffff;
	padding-bottom: 6px;
}

#block18 > .inner {
	background: #ffffff;
	border-bottom: #0a3cc7 2px solid;
	min-height: 40px;
	color: #333333;
	text-align: right;
	line-height: 24px;
	font-size: 14px;
	font-family: Arial, sans-serif;
}

#block18 .tck-module-text {
	padding-top: 10px;
	text-align: right;
}

#block18 a {
	color: #1176a6;
}


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

#block19 > .inner {
	background: #000000;
	border-bottom: #0a3cc7 2px solid;
	min-height: 40px;
}

#block2 > .inner {
	background: #1C4587;
	padding-top: 10px;
	padding-bottom: 10px;
}

#block20 > .inner {
	background: #ffffff;
}

#block6 > .inner {
	background: #1C4587;
	margin-bottom: 20px;
}

#wrapper5 > .inner {
	padding-top: 10px;
}

#block14 > .inner {
	background: #ffffff;
	border-top: #FDCB2E 4px solid;
	border-bottom: #02A85A 8px solid;
	margin-top: 4px;
	margin-bottom: 4px;
}

#wrapper1 {
	margin-top: 10px;

                    }

#block16 > .inner {
	background: #000000;
	margin-bottom: 10px;
	text-align: center;
}

#block16 .tck-module-text {
	color: #ffffff;
	text-align: center;
}

#block3 > .inner {
	background: #ffffff;
	border-top: #edc709 5px solid;
	border-bottom: #edc709 5px solid;
	min-height: 10px;
}

#wrapper3 {
	background: #ffffff;

                    }

#block10 > .inner {
	background: #ffffff;
	-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;
}

#block21 > .inner {
	background: #ffffff;
	border: #0435b3 2px solid;
	margin-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}

#block21 div.moduletable h3, #block21 div.module h3, #block21 .widget h3, #block21 .tck-module h3,
#block21 div.moduletable_menu h3, #block21 div.module_menu h3, #block21 .tck-module-title {
	background: #ff0000;
	color: #ffffff;
	font-weight: bold;
	font-size: 12px;
}

#wrapper {
	background: #EDEEF0;
	margin-top: 20px;

                    }

#wrapper > .inner {
	min-height: 100px;
	margin-bottom: 20px;
}

#row4 > .inner {
	background: #ffffff;
}

#block13 > .inner {
	margin-right: 20px;
}

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

#block13 .tck-module-text {
	background: #ffffff;
	border-left: #0029F5 1px solid;
	color: #4d4d4d;
	padding-left: 10px;
	font-weight: bold;
	font-size: 12px;
}

#block13 a {
	color: #000000;
	font-weight: bold;
}


#block13 a:hover, #block13 a:focus  {
	color: #000000;
	font-weight: bold;
}

#block11 > .inner {
	margin-right: 20px;
}

#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 40px 0px 0px;
	-o-border-radius: 0px 40px 0px 0px;
	-webkit-border-radius: 0px 40px 0px 0px;
	border-radius: 0px 40px 0px 0px;
	color: #ffffff;
	padding-left: 6px;
	font-weight: bold;
	font-size: 14px;
}

#block11 .tck-module-text {
	background: #ffffff;
	border-left: #0029F5 1px solid;
	color: #4d4d4d;
	font-weight: bold;
	font-size: 12px;
}

#block11 a {
	color: #000000;
	font-weight: bold;
}


#block11 a:hover, #block11 a:focus  {
	color: #000000;
	font-weight: bold;
}

#block17 div.moduletable h3, #block17 div.module h3, #block17 .widget h3, #block17 .tck-module h3,
#block17 div.moduletable_menu h3, #block17 div.module_menu h3, #block17 .tck-module-title {
	background: #182fde;
	-moz-border-radius: 0px;
	-o-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-moz-border-radius: 0px 50px 0px 0px;
	-o-border-radius: 0px 50px 0px 0px;
	-webkit-border-radius: 0px 50px 0px 0px;
	border-radius: 0px 50px 0px 0px;
	color: #ffffff;
	padding-left: 10px;
	font-weight: bold;
	font-size: 14px;
}

#block17 .tck-module-text {
	background: #ffffff;
	border-left: #0029F5 1px solid;
	color: #4d4d4d;
	padding-left: 10px;
	font-weight: bold;
	font-size: 12px;
}

#block17 a {
	color: #000000;
	font-weight: bold;
}


#block17 a:hover, #block17 a:focus  {
	color: #000000;
	font-weight: bold;
}

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

#block9 > .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 url('../images/redeinst.png') top center no-repeat scroll;
	background: rgba(83,64,207,1) url('../images/redeinst.png') top center no-repeat scroll;
	background-size: contain;
	background: linear-gradient(to right,rgba(83,64,207,1),rgba(224,20,177,1) 25%,rgba(245,2,19,1) 25%, rgba(247,192,63,1) 100%);
	color: #ffffff;
	padding-left: 40px;
	font-weight: bold;
	font-size: 14px;
}

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

#block5 > .inner {
	border: #000000 2px solid;
	margin-bottom: 10px;
}

#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: #000000 url('../images/redetik.png') 0px center no-repeat scroll;
	background-size: contain;
	color: #ffffff;
	padding-left: 40px;
	font-weight: bold;
	font-size: 14px;
}

#block8 > .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 url('../images/redeyt.png') 0px center no-repeat scroll;
	background-size: contain;
	color: #ffffff;
	padding-left: 40px;
	font-weight: bold;
	font-size: 14px;
}

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

#block4 > .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;
}

#maincontent > .inner {
	background: #ffffff;
	border: #8c8c8c 2px solid;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-o-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	border-radius: 10px 10px 10px 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 15px;
}

#custom2 > .inner {
	border-top: #FDCB2E 5px solid;
	border-bottom: #02A85A 5px solid;
	min-height: 10px;
	margin-bottom: 10px;
}

#row6 > .inner {
	background: #ffffff;
}

#centralmov div.moduletable h3, #centralmov div.module h3, #centralmov .widget h3, #centralmov .tck-module h3,
#centralmov div.moduletable_menu h3, #centralmov div.module_menu h3, #centralmov .tck-module-title {
	border-bottom: #020040 1px solid;
	border-left: #020040 10px solid;
	color: #020040;
	padding-left: 15px;
	font-weight: bold;
	font-size: 14px;
}

#block22 div.moduletable h3, #block22 div.module h3, #block22 .widget h3, #block22 .tck-module h3,
#block22 div.moduletable_menu h3, #block22 div.module_menu h3, #block22 .tck-module-title {
	background: #182fde;
	-moz-border-radius: 0px;
	-o-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-moz-border-radius: 0px 50px 0px 0px;
	-o-border-radius: 0px 50px 0px 0px;
	-webkit-border-radius: 0px 50px 0px 0px;
	border-radius: 0px 50px 0px 0px;
	color: #ffffff;
	font-weight: bold;
	font-size: 14px;
}

#block22 .tck-module-text {
	background: #ffffff;
}

#custom1 > .inner {
	border-top: #FDCB2E 5px solid;
	border-bottom: #02A85A 5px solid;
	min-height: 10px;
	margin-bottom: 10px;
}

#block1 > .inner {
	background: #FDCB2E;
	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;
}
#blocks1 .n1 > .flexiblemodule { width: 100%; }
#blocks1 .n2 > .flexiblemodule { width: 50%; }
#blocks1 .n2 > .flexiblemodule + div { width: 50%; }
#blocks1 .n3 > .flexiblemodule { width: 33.333333333333%; }
#blocks1 .n3 > .flexiblemodule + div { width: 33.333333333333%; }
#blocks1 .n3 > .flexiblemodule + div + div { width: 33.333333333333%; }

#blocks1 > .inner {
	background: #ffffff;
}

#blocks1mod1 > .inner {
	margin-right: 20px;
	margin-left: 20px;
}

#blocks1mod1 div.moduletable h3, #blocks1mod1 div.module h3, #blocks1mod1 .widget h3, #blocks1mod1 .tck-module h3,
#blocks1mod1 div.moduletable_menu h3, #blocks1mod1 div.module_menu h3, #blocks1mod1 .tck-module-title {
	background: #FDCB2E;
	color: #00824E;
	padding-left: 20px;
	font-weight: bold;
	font-size: 14px;
}

#blocks1mod2 > .inner {
	margin-right: 20px;
	margin-left: 20px;
}

#blocks1mod2 div.moduletable h3, #blocks1mod2 div.module h3, #blocks1mod2 .widget h3, #blocks1mod2 .tck-module h3,
#blocks1mod2 div.moduletable_menu h3, #blocks1mod2 div.module_menu h3, #blocks1mod2 .tck-module-title {
	background: #00824E;
	color: #FDCB2E;
	padding-left: 20px;
	font-weight: bold;
	font-size: 14px;
}

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

#block7 > .inner {
	background: #ffffff;
	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: #FDCB2E;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
}

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

#footer > .inner {
	background: #1C4587;
	min-height: 30px;
	text-align: center;
}

#footer .tck-module-text {
	color: #ffffff;
}

#wrapper7 > .inner {
	background: #002273;
	min-height: 40px;
	margin-bottom: 30px;
}
