/* ---------------------------------------
	Standard styles formatting
	created with Template Creator
        on http://www.template-creator.com
-----------------------------------------*/

html {
	height: 101/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 {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.menu 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;
}

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

table img {
	max-width: none;
}


.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 + * { 
	position: relative;
	z-index: 1;
}

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

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

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

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

.tck-article {
	clear: both;
}

.tck-wrapper {
	position: relative;
}

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

.tck-divider-container.pbck-divider-top {
	top: -1px;
}

.tck-divider-container.pbck-divider-bottom {
	bottom: -1px;
}

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

.tck-divider-container.pbck-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-aign: 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;
}



.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
-----------------------------------------*/

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

#row1column2 { width: calc(18.75 / 100 * (100% - (5 * 5px))); }

#row1column3 { width: calc(18.75 / 100 * (100% - (5 * 5px))); }

#row1column4 { width: calc(18.75 / 100 * (100% - (5 * 5px))); }

#row1column5 { width: calc(18.75 / 100 * (100% - (5 * 5px))); }

#row1column6 { width: calc(25 / 100 * (100% - (5 * 5px))); }


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

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

.container, .tck-container {
	width: 1050px;
}

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

body {
	background: #ecece6;
	background: rgba(236,236,230,0.8);
	-pie-background: rgba(236,236,230,0.8);
	color: #333333;
	text-align: left;
	line-height: 140%;
	font-size: 12px;
	font-family: Arial, sans-serif;
}

a {
	color: #628d27;
	text-decoration: none;
}


a:hover,  a:focus {
	color: #628d27;
	text-decoration: underline;
}

h1, div.componentheading {
	text-transform: uppercase;
	line-height: 130%;
	font-size: 22px;
}

h2, div.contentheading {
	text-transform: uppercase;
	line-height: 130%;
	font-size: 22px;
	font-family: archivo_narrowregular;
}

h3 {
	background: #dedede;
	color: #333333;
	margin-bottom: 5px;
	padding: 10px;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 20px;
	font-family: archivo_narrowregular;
}

.button, button, button.btn, input.btn, .btn {
    border: none;
	background: #628d27;
	color: #ffffff;
	margin: 5px;
	padding: 5px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	display:inline-block;
}

.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: #b3c43d;
	color: #000000;
	margin: 5px;
	padding: 5px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.readmore a, .readmore .btn {
	background: #628d27;
	color: #ffffff;
	margin: 3px;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 7px;
	padding-left: 5px;
	text-align: center;
}

.readmore a:hover,
.readmore a:focus {
	background: #b3c43d;
	color: #000000;
	margin: 3px;
	padding-top: 7px;
	padding-right: 5px;
	padding-bottom: 7px;
	padding-left: 5px;
	text-align: center;
	text-decoration: none;
}

.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;
	border: #000000 1px solid;
	color: #000000;
	padding: 3px;
	text-align: left;
}

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: #000000 1px solid;
}

#wrapper7 {
	background: #000000;
	background: rgba(0,0,0,0.85);
	-pie-background: rgba(0,0,0,0.85);

                    }
#blocks7 .n1 > .flexiblemodule { width: 100%; }
#blocks7 .n2 > .flexiblemodule { width: 10%; }
#blocks7 .n2 > .flexiblemodule + div { width: 90%; }
#blocks7 .n3 > .flexiblemodule { width: 10%; }
#blocks7 .n3 > .flexiblemodule + div { width: 8%; }
#blocks7 .n3 > .flexiblemodule + div + div { width: 82%; }

#blocks7 > .inner {
	background: #;
}

#blocks7mod1 > .inner {
	margin-top: 5px;
	margin-right: 10px;
	text-align: center;
}

#blocks7mod1 div.moduletable, #blocks7mod1 div.module, #blocks7mod1 .widget, #blocks7mod1 .tck-module,
#blocks7mod1 div.moduletable_menu, #blocks7mod1 div.module_menu {
	margin-top: 5px;
}

#blocks7mod3 > .inner {
	padding-top: 5px;
	padding-right: 10px;
	text-align: left;
}

#blocks7mod2 > .inner {
	color: #ffffff;
	margin-left: 5px;
	text-align: right;
	font-size: 12px;
}

#blocks7mod2 a {
	font-weight: normal;
}


#blocks7mod2 a:hover, #blocks7mod2 a:focus  {
	font-weight: normal;
}

#blocks7mod2 ul.menu li a, #blocks7mod2 ul.menu li span.separator {

}

#blocks7mod2 ul.menu li a, #blocks7mod2 ul.menu li span.separator {
    display: block;
	background: #668D21;
	-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;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 14px;
	font-family: archivo_narrowregular;
}

#blocks7mod2 ul.menu li:hover > a, #blocks7mod2 ul.menu li:hover > span.separator,
#blocks7mod2 ul.menu li:focus > a, #blocks7mod2 ul.menu li:focus > span.separator {
	background: #b3c43d;
	-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;
	color: #333333;
	font-weight: normal;
}

#blocks7mod2 ul.menu li.active > a, #blocks7mod2 ul.menu li.active > span.separator {
	background: #b3c43d;
	-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;
	color: #333333;
}

#blocks7mod2 ul.menu li ul {
	background: #333333;
}

#blocks7mod2 ul.menu li li a, #blocks7mod2 ul.menu li li span.separator {
	color: #ffffff;
	padding: 8px;
	font-size: 11px;
	font-family: Verdana, sans-serif;
}

#blocks7mod2 ul.menu li li:hover > a, #blocks7mod2 ul.menu li li:hover > span.separator,
#blocks7mod2 ul.menu li li:focus > a, #blocks7mod2 ul.menu li li:focus > span.separator {
	color: #fffffff;
	font-size: 11px;
}

#blocks7mod2 ul.menu li li.active > a, #blocks7mod2 ul.menu li li.active > span.separator {
	color: #ffffff;
	font-size: 11px;
}

#blocks7mod2 ul.menu li li ul, #blocks7mod2 ul.menu li li ul {
	background: #666666;
}

#row1 {
	padding-top: 3px;

                    }

#row1 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#block6 > .inner {
	text-align: center;
}

#block7 > .inner {
	color: #555555;
	text-align: left;
	font-weight: normal;
	line-height: 150%;
	font-size: 12px;
}

#block7 div.moduletable, #block7 div.module, #block7 .widget, #block7 .tck-module,
#block7 div.moduletable_menu, #block7 div.module_menu {
	background: #ffffff;
	border: #B3C43D 1px solid;
	margin-bottom: 10px;
	padding-top: 8px;
	padding-right: 3px;
	padding-bottom: 8px;
	padding-left: 3px;
}

#block7 .tck-module-text {
	line-height: 160%;
	font-size: 14px;
	font-family: archivo_narrowregular;
}

#block7 a {
	color: #555555;
}


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

#block8 > .inner {
	color: #555555;
	text-align: left;
	font-weight: normal;
	line-height: 150%;
	font-size: 12px;
}

#block8 div.moduletable, #block8 div.module, #block8 .widget, #block8 .tck-module,
#block8 div.moduletable_menu, #block8 div.module_menu {
	background: #ffffff;
	border: #B3C43D 1px solid;
	margin-bottom: 10px;
	padding-top: 8px;
	padding-right: 3px;
	padding-bottom: 8px;
	padding-left: 3px;
}

#block8 .tck-module-text {
	line-height: 160%;
	font-size: 14px;
	font-family: archivo_narrowregular;
}

#block8 a {
	color: #555555;
}


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

#block9 > .inner {
	color: #555555;
	text-align: left;
	font-weight: normal;
	line-height: 150%;
	font-size: 12px;
}

#block9 div.moduletable, #block9 div.module, #block9 .widget, #block9 .tck-module,
#block9 div.moduletable_menu, #block9 div.module_menu {
	background: #ffffff;
	border: #B3C43D 1px solid;
	margin-bottom: 10px;
	padding-top: 8px;
	padding-right: 3px;
	padding-bottom: 8px;
	padding-left: 3px;
}

#block9 .tck-module-text {
	line-height: 160%;
	font-size: 14px;
	font-family: archivo_narrowregular;
}

#block9 a {
	color: #555555;
}


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

#block10 > .inner {
	color: #555555;
	text-align: left;
	font-weight: normal;
	line-height: 150%;
	font-size: 12px;
}

#block10 div.moduletable, #block10 div.module, #block10 .widget, #block10 .tck-module,
#block10 div.moduletable_menu, #block10 div.module_menu {
	background: #ffffff;
	border: #B3C43D 1px solid;
	margin-bottom: 10px;
	padding-top: 8px;
	padding-right: 3px;
	padding-bottom: 8px;
	padding-left: 3px;
}

#block10 .tck-module-text {
	line-height: 160%;
	font-size: 14px;
	font-family: archivo_narrowregular;
}

#block10 a {
	color: #555555;
}


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

#block11 > .inner {
	color: #ffffff;
	text-align: center;
}

#block11 div.moduletable, #block11 div.module, #block11 .widget, #block11 .tck-module,
#block11 div.moduletable_menu, #block11 div.module_menu {
	background: #93bcf5;
	margin-bottom: 5px;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
}

#block11 a {
	color: #ffffff;
}


#block11 a:hover, #block11 a:focus  {
	color: #ffffff;
}

#wrapper6 {
	background: #5e4d3b;

                    }
#modules1 .n1 > .flexiblemodule { width: 100%; }
#modules1 .n2 > .flexiblemodule { width: 50%; }
#modules1 .n2 > .flexiblemodule + div { width: 50%; }
#modules1 .n3 > .flexiblemodule { width: 50%; }
#modules1 .n3 > .flexiblemodule + div { width: 25%; }
#modules1 .n3 > .flexiblemodule + div + div { width: 25%; }
#modules1 .n4 > .flexiblemodule { width: 25%; }
#modules1 .n4 > .flexiblemodule + div { width: 25%; }
#modules1 .n4 > .flexiblemodule + div + div { width: 25%; }
#modules1 .n4 > .flexiblemodule + div + div + div { width: 25%; }
#modules1 .n5 > .flexiblemodule { width: 21.25%; }
#modules1 .n5 > .flexiblemodule + div { width: 21.25%; }
#modules1 .n5 > .flexiblemodule + div + div { width: 21.25%; }
#modules1 .n5 > .flexiblemodule + div + div + div { width: 21.25%; }
#modules1 .n5 > .flexiblemodule + div + div + div + div { width: 15%; }

#modules1 > .inner {
	background: #5e4d3b;
	padding-right: 5px;
	padding-left: 5px;
}

#modules1mod3 > .inner {
	margin-top: 10px;
	margin-right: 10px;
	margin-left: 10px;
}

#modules1mod4 > .inner {
	margin-top: 10px;
	margin-right: 10px;
	margin-left: 10px;
	text-align: center;
}

#modules1mod5 > .inner {
	margin-top: 10px;
	margin-right: 10px;
	margin-left: 10px;
}

#modules1mod1 > .inner {
	background: #f52011;
	color: #ffffff;
	margin-top: 10px;
	margin-right: 10px;
	margin-left: 10px;
	padding: 5px;
}

#modules1mod1 a {
	color: #ffffff;
}


#modules1mod1 a:hover, #modules1mod1 a:focus  {
	color: #ffffff;
}

#modules1mod2 > .inner {
	margin-top: 5px;
	margin-right: 10px;
	margin-left: 10px;
}

#wrapper4 {
	background: #000000;

                    }

#module5 > .inner {
	background: #000000;
}

#wrapper5 {
	background: #3D6EB1;
	background: rgba(61,110,177,0.75);
	-pie-background: rgba(61,110,177,0.75);

                    }
#blocks8 .n1 > .flexiblemodule { width: 100%; }
#blocks8 .n2 > .flexiblemodule { width: 50%; }
#blocks8 .n2 > .flexiblemodule + div { width: 50%; }
#blocks8 .n3 > .flexiblemodule { width: 33.333333333333%; }
#blocks8 .n3 > .flexiblemodule + div { width: 33.333333333333%; }
#blocks8 .n3 > .flexiblemodule + div + div { width: 33.333333333333%; }
#blocks8 .n4 > .flexiblemodule { width: 25%; }
#blocks8 .n4 > .flexiblemodule + div { width: 25%; }
#blocks8 .n4 > .flexiblemodule + div + div { width: 25%; }
#blocks8 .n4 > .flexiblemodule + div + div + div { width: 25%; }

#blocks8mod1 > .inner {
	padding: 20px;
	text-align: center;
}

#blocks8mod2 > .inner {
	padding: 20px;
	text-align: left;
}

#blocks8mod3 > .inner {
	padding: 20px;
	text-align: center;
}

#blocks8mod4 > .inner {
	padding: 20px;
	text-align: center;
}

#wrapper8 > .inner {
	margin-top: 30px;
	margin-bottom: 15px;
}
#blocks2 .n1 > .flexiblemodule { width: 100%; }
#blocks2 .n2 > .flexiblemodule { width: 50%; }
#blocks2 .n2 > .flexiblemodule + div { width: 50%; }
#blocks2 .n3 > .flexiblemodule { width: 33.333333333333%; }
#blocks2 .n3 > .flexiblemodule + div { width: 33.333333333333%; }
#blocks2 .n3 > .flexiblemodule + div + div { width: 33.333333333333%; }
#blocks2 .n4 > .flexiblemodule { width: 25%; }
#blocks2 .n4 > .flexiblemodule + div { width: 25%; }
#blocks2 .n4 > .flexiblemodule + div + div { width: 25%; }
#blocks2 .n4 > .flexiblemodule + div + div + div { width: 25%; }

/*shadow start*/
#blocks2mod1 {
	position: relative;
	z-index: 0;
}

#blocks2mod1 > .inner {
	position: relative;
}

#blocks2mod1 > .inner:before {
	content: "";
	display: block;
	z-index: -1;  position: absolute; height:10px; bottom: 15px; left: 10px;  width: 45%; max-width:45%; background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333; -webkit-transform: rotate(-3deg);  -moz-transform: rotate(-3deg);  -o-transform: rotate(-3deg);  -ms-transform: rotate(-3deg);  transform: rotate(-3deg);
}

#blocks2mod1 > .inner:after {
	content: "";
	display: block;
	visibility: visible;z-index: -1;  position: absolute; height:10px; bottom: 15px;  width: 45%;  max-width:45%;  background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333;   right: 10px;  left: auto;-webkit-transform: rotate(3deg);  -moz-transform: rotate(3deg);  -o-transform: rotate(3deg);  -ms-transform: rotate(3deg);  transform: rotate(3deg);
}
/*shadow end*/

#blocks2mod1 > .inner {
	background: #ffffff;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	text-align: center;
	text-transform: none;
}

#blocks2mod1 div.moduletable h3, #blocks2mod1 div.module h3, #blocks2mod1 .widget h3, #blocks2mod1 .tck-module h3,
#blocks2mod1 div.moduletable_menu h3, #blocks2mod1 div.module_menu h3, #blocks2mod1 .tck-module-title {
	background: #ffffff;
	border-top: #628d27 3px solid;
	color: #628d27;
	margin: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	text-transform: none;
	font-size: 24px;
	font-family: archivo_narrowregular;
}

/*shadow start*/
#blocks2mod2 {
	position: relative;
	z-index: 0;
}

#blocks2mod2 > .inner {
	position: relative;
}

#blocks2mod2 > .inner:before {
	content: "";
	display: block;
	z-index: -1;  position: absolute; height:10px; bottom: 15px; left: 10px;  width: 45%; max-width:45%; background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333; -webkit-transform: rotate(-3deg);  -moz-transform: rotate(-3deg);  -o-transform: rotate(-3deg);  -ms-transform: rotate(-3deg);  transform: rotate(-3deg);
}

#blocks2mod2 > .inner:after {
	content: "";
	display: block;
	visibility: visible;z-index: -1;  position: absolute; height:10px; bottom: 15px;  width: 45%;  max-width:45%;  background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333;   right: 10px;  left: auto;-webkit-transform: rotate(3deg);  -moz-transform: rotate(3deg);  -o-transform: rotate(3deg);  -ms-transform: rotate(3deg);  transform: rotate(3deg);
}
/*shadow end*/

#blocks2mod2 > .inner {
	background: #ffffff;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	text-align: center;
	text-transform: none;
}

#blocks2mod2 div.moduletable h3, #blocks2mod2 div.module h3, #blocks2mod2 .widget h3, #blocks2mod2 .tck-module h3,
#blocks2mod2 div.moduletable_menu h3, #blocks2mod2 div.module_menu h3, #blocks2mod2 .tck-module-title {
	background: #ffffff;
	border-top: #628d27 3px solid;
	color: #628d27;
	margin: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-transform: none;
	font-size: 24px;
	font-family: archivo_narrowregular;
}

/*shadow start*/
#blocks2mod3 {
	position: relative;
	z-index: 0;
}

#blocks2mod3 > .inner {
	position: relative;
}

#blocks2mod3 > .inner:before {
	content: "";
	display: block;
	z-index: -1;  position: absolute; height:10px; bottom: 15px; left: 10px;  width: 45%; max-width:45%; background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333; -webkit-transform: rotate(-3deg);  -moz-transform: rotate(-3deg);  -o-transform: rotate(-3deg);  -ms-transform: rotate(-3deg);  transform: rotate(-3deg);
}

#blocks2mod3 > .inner:after {
	content: "";
	display: block;
	visibility: visible;z-index: -1;  position: absolute; height:10px; bottom: 15px;  width: 45%;  max-width:45%;  background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333;   right: 10px;  left: auto;-webkit-transform: rotate(3deg);  -moz-transform: rotate(3deg);  -o-transform: rotate(3deg);  -ms-transform: rotate(3deg);  transform: rotate(3deg);
}
/*shadow end*/

#blocks2mod3 > .inner {
	background: #ffffff;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	text-align: center;
	text-transform: none;
}

#blocks2mod3 div.moduletable h3, #blocks2mod3 div.module h3, #blocks2mod3 .widget h3, #blocks2mod3 .tck-module h3,
#blocks2mod3 div.moduletable_menu h3, #blocks2mod3 div.module_menu h3, #blocks2mod3 .tck-module-title {
	background: #ffffff;
	border-top: #628d27 3px solid;
	color: #628d27;
	margin: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-transform: none;
	font-size: 24px;
	font-family: archivo_narrowregular;
}

/*shadow start*/
#blocks2mod4 {
	position: relative;
	z-index: 0;
}

#blocks2mod4 > .inner {
	position: relative;
}

#blocks2mod4 > .inner:before {
	content: "";
	display: block;
	z-index: -1;  position: absolute; height:10px; bottom: 15px; left: 10px;  width: 45%; max-width:45%; background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333; -webkit-transform: rotate(-3deg);  -moz-transform: rotate(-3deg);  -o-transform: rotate(-3deg);  -ms-transform: rotate(-3deg);  transform: rotate(-3deg);
}

#blocks2mod4 > .inner:after {
	content: "";
	display: block;
	visibility: visible;z-index: -1;  position: absolute; height:10px; bottom: 15px;  width: 45%;  max-width:45%;  background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333;   right: 10px;  left: auto;-webkit-transform: rotate(3deg);  -moz-transform: rotate(3deg);  -o-transform: rotate(3deg);  -ms-transform: rotate(3deg);  transform: rotate(3deg);
}
/*shadow end*/

#blocks2mod4 > .inner {
	background: #ffffff;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	text-align: center;
	text-transform: none;
}

#blocks2mod4 div.moduletable h3, #blocks2mod4 div.module h3, #blocks2mod4 .widget h3, #blocks2mod4 .tck-module h3,
#blocks2mod4 div.moduletable_menu h3, #blocks2mod4 div.module_menu h3, #blocks2mod4 .tck-module-title {
	background: #ffffff;
	border-top: #628d27 3px solid;
	color: #628d27;
	margin: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-transform: none;
	font-size: 24px;
	font-family: archivo_narrowregular;
}

#wrapper3 {
	background: #628d27;

                    }
#modules5 .n1 > .flexiblemodule { width: 100%; }
#modules5 .n2 > .flexiblemodule { width: 20%; }
#modules5 .n2 > .flexiblemodule + div { width: 80%; }

#modules5 > .inner {
	padding: 10px;
}

#modules5mod1 > .inner {
	text-align: center;
}

#modules5mod2 > .inner {
	text-align: center;
}

#wrapper9 > .inner {
	margin-top: 15px;
	margin-bottom: 15px;
}

#block1 div.moduletable, #block1 div.module, #block1 .widget, #block1 .tck-module,
#block1 div.moduletable_menu, #block1 div.module_menu {
	background: #ffffff;
	padding: 10px;
	box-shadow: #777777 0px 10px 6px -6px;
	-moz-box-shadow: #777777 0px 10px 6px -6px;
	-webkit-box-shadow: #777777 0px 10px 6px -6px;
}

#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: #ffffff;
	border-top: #f52011 3px solid;
	color: #f52011;
	text-align: center;
	font-weight: normal;
	text-transform: none;
	font-size: 28px;
	font-family: archivo_narrowbold;
}

#wrapper > .inner {
	background: #ffffff;
	box-shadow: #c2c4c4 0px 10px 6px -6px;
	-moz-box-shadow: #c2c4c4 0px 10px 6px -6px;
	-webkit-box-shadow: #c2c4c4 0px 10px 6px -6px;
}

#maincontent > .inner {
	background: #ffffff;
	margin-top: 5px;
	padding: 5px;
}

#left > .inner {
	margin-right: 10px;
	padding: 10px;
}

#left div.moduletable, #left div.module, #left .widget, #left .tck-module,
#left div.moduletable_menu, #left div.module_menu {
	margin-bottom: 15px;
}

#center > .inner {
	background: #ffffff;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	text-align: justify;
	line-height: 160%;
	font-size: 12px;
}

#centertop > .inner {
	background: #f2f2f2;
	margin-bottom: 5px;
	padding-top: 3px;
	padding-bottom: 3px;
	text-align: left;
}

#centertop div.moduletable, #centertop div.module, #centertop .widget, #centertop .tck-module,
#centertop div.moduletable_menu, #centertop div.module_menu {
	margin-bottom: 5px;
	padding: 5px;
}

#right > .inner {
	margin-left: 20px;
	padding: 0px;
	text-align: left;
	hr {
border-bottom: 1px dotted #ccc;
}
}

#right div.moduletable, #right div.module, #right .widget, #right .tck-module,
#right div.moduletable_menu, #right div.module_menu {
	background: #f2f2f2;
	margin-bottom: 15px;
	padding: 0px;
}

#right div.moduletable h3, #right div.module h3, #right .widget h3, #right .tck-module h3,
#right div.moduletable_menu h3, #right div.module_menu h3, #right .tck-module-title {
	padding-right: 5px;
	padding-left: 5px;
}

#wrapper11 > .inner {
	margin-top: 30px;
	margin-bottom: 15px;
}

#block2 div.moduletable, #block2 div.module, #block2 .widget, #block2 .tck-module,
#block2 div.moduletable_menu, #block2 div.module_menu {
	background: #ffffff;
	margin-bottom: 15px;
	padding-right: 10px;
	padding-left: 10px;
}

#block2 div.moduletable h3, #block2 div.module h3, #block2 .widget h3, #block2 .tck-module h3,
#block2 div.moduletable_menu h3, #block2 div.module_menu h3, #block2 .tck-module-title {
	background: #ffffff;
	border-top: #3D6EB1 3px solid;
	color: #3D6EB1;
	text-align: center;
	font-weight: normal;
	text-transform: none;
	font-size: 28px;
	font-family: archivo_narrowbold;
}

#wrapper12 {
	background: #999999;

                    }

#wrapper12 > .inner {
	padding-top: 10px;
	padding-bottom: 10px;
}
#blocks3 .n1 > .flexiblemodule { width: 100%; }
#blocks3 .n2 > .flexiblemodule { width: 65%; }
#blocks3 .n2 > .flexiblemodule + div { width: 35%; }
#blocks3 .n3 > .flexiblemodule { width: 33.333333333333%; }
#blocks3 .n3 > .flexiblemodule + div { width: 33.333333333333%; }
#blocks3 .n3 > .flexiblemodule + div + div { width: 33.333333333333%; }
#blocks3 .n4 > .flexiblemodule { width: 25%; }
#blocks3 .n4 > .flexiblemodule + div { width: 25%; }
#blocks3 .n4 > .flexiblemodule + div + div { width: 25%; }
#blocks3 .n4 > .flexiblemodule + div + div + div { width: 25%; }
#blocks3 .n5 > .flexiblemodule { width: 20%; }
#blocks3 .n5 > .flexiblemodule + div { width: 20%; }
#blocks3 .n5 > .flexiblemodule + div + div { width: 20%; }
#blocks3 .n5 > .flexiblemodule + div + div + div { width: 20%; }
#blocks3 .n5 > .flexiblemodule + div + div + div + div { width: 20%; }

#blocks3mod1 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#blocks3mod2 > .inner {
	background: #ffffff;
	margin-right: 5px;
	margin-left: 5px;
	text-align: center;
}

#blocks3mod3 > .inner {
	background: #;
	margin-right: 5px;
	margin-left: 5px;
}

#blocks3mod4 > .inner {
	background: #;
	margin-right: 5px;
	margin-left: 5px;
}

#blocks3mod5 > .inner {
	background: #;
	margin-right: 5px;
	margin-left: 5px;
}

#wrapper15 > .inner {
	margin-top: 30px;
	margin-bottom: 15px;
}

#block4 div.moduletable, #block4 div.module, #block4 .widget, #block4 .tck-module,
#block4 div.moduletable_menu, #block4 div.module_menu {
	background: #ffffff;
	margin-bottom: 15px;
	padding-right: 10px;
	padding-left: 10px;
}

#block4 div.moduletable h3, #block4 div.module h3, #block4 .widget h3, #block4 .tck-module h3,
#block4 div.moduletable_menu h3, #block4 div.module_menu h3, #block4 .tck-module-title {
	background: #ffffff;
	border-top: #628d27 3px solid;
	color: #628d27;
	text-align: center;
	font-weight: normal;
	text-transform: none;
	font-size: 28px;
	font-family: archivo_narrowbold;
}

#wrapper16 {
	background: #999999;

                    }

#wrapper16 > .inner {
	padding-top: 10px;
	padding-bottom: 10px;
}
#blocks5 .n1 > .flexiblemodule { width: 100%; }
#blocks5 .n2 > .flexiblemodule { width: 50%; }
#blocks5 .n2 > .flexiblemodule + div { width: 50%; }
#blocks5 .n3 > .flexiblemodule { width: 33.333333333333%; }
#blocks5 .n3 > .flexiblemodule + div { width: 33.333333333333%; }
#blocks5 .n3 > .flexiblemodule + div + div { width: 33.333333333333%; }
#blocks5 .n4 > .flexiblemodule { width: 25%; }
#blocks5 .n4 > .flexiblemodule + div { width: 25%; }
#blocks5 .n4 > .flexiblemodule + div + div { width: 25%; }
#blocks5 .n4 > .flexiblemodule + div + div + div { width: 25%; }
#blocks5 .n5 > .flexiblemodule { width: 20%; }
#blocks5 .n5 > .flexiblemodule + div { width: 20%; }
#blocks5 .n5 > .flexiblemodule + div + div { width: 20%; }
#blocks5 .n5 > .flexiblemodule + div + div + div { width: 20%; }
#blocks5 .n5 > .flexiblemodule + div + div + div + div { width: 20%; }

#blocks5mod1 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#blocks5mod2 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#blocks5mod3 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#blocks5mod4 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#blocks5mod5 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#wrapper13 > .inner {
	margin-top: 30px;
	margin-bottom: 15px;
	padding-bottom: 10px;
}
#blocks4 .n1 > .flexiblemodule { width: 100%; }
#blocks4 .n2 > .flexiblemodule { width: 75%; }
#blocks4 .n2 > .flexiblemodule + div { width: 25%; }

/*shadow start*/
#blocks4mod1 {
	position: relative;
	z-index: 0;
}

#blocks4mod1 > .inner {
	position: relative;
}

#blocks4mod1 > .inner:before {
	content: "";
	display: block;
	z-index: -1;  position: absolute; height:10px; bottom: 15px; left: 10px;  width: 45%; max-width:45%; background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333; -webkit-transform: rotate(-3deg);  -moz-transform: rotate(-3deg);  -o-transform: rotate(-3deg);  -ms-transform: rotate(-3deg);  transform: rotate(-3deg);
}

#blocks4mod1 > .inner:after {
	content: "";
	display: block;
	visibility: visible;z-index: -1;  position: absolute; height:10px; bottom: 15px;  width: 45%;  max-width:45%;  background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333;   right: 10px;  left: auto;-webkit-transform: rotate(3deg);  -moz-transform: rotate(3deg);  -o-transform: rotate(3deg);  -ms-transform: rotate(3deg);  transform: rotate(3deg);
}
/*shadow end*/

#blocks4mod1 > .inner {
	background: #ffffff;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	padding-right: 5px;
	padding-left: 5px;
}

#blocks4mod1 div.moduletable h3, #blocks4mod1 div.module h3, #blocks4mod1 .widget h3, #blocks4mod1 .tck-module h3,
#blocks4mod1 div.moduletable_menu h3, #blocks4mod1 div.module_menu h3, #blocks4mod1 .tck-module-title {
	background: #ffffff;
	border-top: #f20559 3px solid;
	color: #f20559;
	text-align: center;
	font-weight: normal;
	text-transform: none;
	font-size: 28px;
	font-family: archivo_narrowbold;
}

/*shadow start*/
#blocks4mod2 {
	position: relative;
	z-index: 0;
}

#blocks4mod2 > .inner {
	position: relative;
}

#blocks4mod2 > .inner:before {
	content: "";
	display: block;
	z-index: -1;  position: absolute; height:10px; bottom: 15px; left: 10px;  width: 45%; max-width:45%; background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333; -webkit-transform: rotate(-3deg);  -moz-transform: rotate(-3deg);  -o-transform: rotate(-3deg);  -ms-transform: rotate(-3deg);  transform: rotate(-3deg);
}

#blocks4mod2 > .inner:after {
	content: "";
	display: block;
	visibility: visible;z-index: -1;  position: absolute; height:10px; bottom: 15px;  width: 45%;  max-width:45%;  background: transparent;  -webkit-box-shadow: 0 15px 10px #333333;  -moz-box-shadow: 0 15px 10px #333333;  box-shadow: 0 15px 10px #333333;   right: 10px;  left: auto;-webkit-transform: rotate(3deg);  -moz-transform: rotate(3deg);  -o-transform: rotate(3deg);  -ms-transform: rotate(3deg);  transform: rotate(3deg);
}
/*shadow end*/

#blocks4mod2 > .inner {
	background: #ffffff;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}

#blocks4mod2 div.moduletable h3, #blocks4mod2 div.module h3, #blocks4mod2 .widget h3, #blocks4mod2 .tck-module h3,
#blocks4mod2 div.moduletable_menu h3, #blocks4mod2 div.module_menu h3, #blocks4mod2 .tck-module-title {
	background: #ffffff;
	border-top: #f20559 3px solid;
	color: #f20559;
	text-align: center;
	font-weight: normal;
	text-transform: none;
	font-size: 28px;
	font-family: archivo_narrowbold;
}

#wrapper14 {
	background: #999999;

                    }

#block3 > .inner {
	color: #ffffff;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}

#block3 div.moduletable h3, #block3 div.module h3, #block3 .widget h3, #block3 .tck-module h3,
#block3 div.moduletable_menu h3, #block3 div.module_menu h3, #block3 .tck-module-title {
	background: #999999;
	color: #ffffff;
	margin: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	text-transform: uppercase;
	font-size: 28px;
}

#block3 a {
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
}


#block3 a:hover, #block3 a:focus  {
	color: #ffffff;
	font-weight: bold;
	text-decoration: underline;
}

#wrapper17 {
	background:  url('../images/marion.jpg') center center no-repeat scroll;
	background-size: cover;

                    }

#wrapper17 > .inner {
	color: #ffffff;
	margin-top: 15px;
	margin-bottom: 15px;
	box-shadow: #777777 0px 10px 6px -6px;
	-moz-box-shadow: #777777 0px 10px 6px -6px;
	-webkit-box-shadow: #777777 0px 10px 6px -6px;
}

#wrapper17 a {
	color: #ffffff;
}


#wrapper17 a:hover, #wrapper17 a:focus  {
	color: #ffffff;
}

#block5 div.moduletable, #block5 div.module, #block5 .widget, #block5 .tck-module,
#block5 div.moduletable_menu, #block5 div.module_menu {
	margin-bottom: 15px;
	padding: 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: #ffffff;
	border-top: #860691 3px solid;
	color: #860691;
	text-align: center;
	font-weight: normal;
	text-transform: none;
	font-size: 28px;
	font-family: archivo_narrowbold;
}
#blocks6 .n1 > .flexiblemodule { width: 100%; }
#blocks6 .n2 > .flexiblemodule { width: 25%; }
#blocks6 .n2 > .flexiblemodule + div { width: 75%; }

#blocks6mod1 > .inner {
	margin: 10px;
	padding: 10px;
}

#blocks6mod2 > .inner {
	margin: 10px;
	padding: 10px;
}

#wrapper2 > .inner {
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
}
#modules4 .n1 > .flexiblemodule { width: 100%; }
#modules4 .n2 > .flexiblemodule { width: 50%; }
#modules4 .n2 > .flexiblemodule + div { width: 50%; }

#modules4mod1 > .inner {
	padding: 10px;
}

#modules4mod2 > .inner {
	background: #;
	margin-top: 20px;
	margin-bottom: 20px;
}

#modules4mod2 div.moduletable, #modules4mod2 div.module, #modules4mod2 .widget, #modules4mod2 .tck-module,
#modules4mod2 div.moduletable_menu, #modules4mod2 div.module_menu {
	background: #ffffff;
	margin-bottom: 10px;
}

#modules4mod2 div.moduletable h3, #modules4mod2 div.module h3, #modules4mod2 .widget h3, #modules4mod2 .tck-module h3,
#modules4mod2 div.moduletable_menu h3, #modules4mod2 div.module_menu h3, #modules4mod2 .tck-module-title {
	background: #ffffff;
	border-top: #5e4d3b 3px solid;
	color: #5e4d3b;
	text-align: center;
	text-transform: none;
	font-size: 28px;
	font-family: archivo_narrowbold;
}
#modulesbottom .n1 > .flexiblemodule { width: 100%; }
#modulesbottom .n2 > .flexiblemodule { width: 50%; }
#modulesbottom .n2 > .flexiblemodule + div { width: 50%; }
#modulesbottom .n3 > .flexiblemodule { width: 33.333333333333%; }
#modulesbottom .n3 > .flexiblemodule + div { width: 33.333333333333%; }
#modulesbottom .n3 > .flexiblemodule + div + div { width: 33.333333333333%; }
#modulesbottom .n4 > .flexiblemodule { width: 25%; }
#modulesbottom .n4 > .flexiblemodule + div { width: 25%; }
#modulesbottom .n4 > .flexiblemodule + div + div { width: 25%; }
#modulesbottom .n4 > .flexiblemodule + div + div + div { width: 25%; }
#modulesbottom .n5 > .flexiblemodule { width: 20%; }
#modulesbottom .n5 > .flexiblemodule + div { width: 20%; }
#modulesbottom .n5 > .flexiblemodule + div + div { width: 20%; }
#modulesbottom .n5 > .flexiblemodule + div + div + div { width: 20%; }
#modulesbottom .n5 > .flexiblemodule + div + div + div + div { width: 20%; }

#modulesbottom > .inner {
	background: #ebf3f7;
	background: rgba(235,243,247,0.8);
	-pie-background: rgba(235,243,247,0.8);
	padding-right: 5px;
	padding-left: 5px;
}

#modulesbottommod1 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#modulesbottommod2 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#modulesbottommod3 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#modulesbottommod4 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#modulesbottommod5 > .inner {
	margin-right: 5px;
	margin-left: 5px;
}

#footer > .inner {
	padding: 10px;
}

#wrapper19 > .inner {
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
}
#block12 .n1 > .flexiblemodule { width: 100%; }
#block12 .n2 > .flexiblemodule { width: 50%; }
#block12 .n2 > .flexiblemodule + div { width: 50%; }

#block13 > .inner {
	padding: 10px;
}

#block14 > .inner {
	background: #;
	margin-top: 20px;
	margin-bottom: 20px;
}

#block14 div.moduletable, #block14 div.module, #block14 .widget, #block14 .tck-module,
#block14 div.moduletable_menu, #block14 div.module_menu {
	background: #ffffff;
	margin-bottom: 10px;
}

#block14 div.moduletable h3, #block14 div.module h3, #block14 .widget h3, #block14 .tck-module h3,
#block14 div.moduletable_menu h3, #block14 div.module_menu h3, #block14 .tck-module-title {
	background: #ffffff;
	border-top: #5e4d3b 3px solid;
	color: #5e4d3b;
	text-align: center;
	text-transform: none;
	font-size: 28px;
	font-family: archivo_narrowbold;
}

#wrapperbas {
	background: #5e4d3b;

                    }

#wrapperbas > .inner {
	background: #5e4d3b;
	margin-bottom: 20px;
}

#module1 > .inner {
	padding: 10px;
	text-align: center;
}

#module2 > .inner {
	color: #ffffff;
	padding: 10px;
	text-align: center;
}

#module2 a {
	color: #ffffff;
}


#module2 a:hover, #module2 a:focus  {
	color: #ffffff;
}
#modules3 .n1 > .flexiblemodule { width: 100%; }
#modules3 .n2 > .flexiblemodule { width: 50%; }
#modules3 .n2 > .flexiblemodule + div { width: 50%; }
#modules3 .n3 > .flexiblemodule { width: 33.333333333333%; }
#modules3 .n3 > .flexiblemodule + div { width: 33.333333333333%; }
#modules3 .n3 > .flexiblemodule + div + div { width: 33.333333333333%; }
#modules3 .n4 > .flexiblemodule { width: 25%; }
#modules3 .n4 > .flexiblemodule + div { width: 25%; }
#modules3 .n4 > .flexiblemodule + div + div { width: 25%; }
#modules3 .n4 > .flexiblemodule + div + div + div { width: 25%; }
#modules3 .n5 > .flexiblemodule { width: 20%; }
#modules3 .n5 > .flexiblemodule + div { width: 20%; }
#modules3 .n5 > .flexiblemodule + div + div { width: 20%; }
#modules3 .n5 > .flexiblemodule + div + div + div { width: 20%; }
#modules3 .n5 > .flexiblemodule + div + div + div + div { width: 20%; }

#module3 > .inner {
	position:absolute;
}
