/**
 * 1) GERNERAL CSS
 **/

/* RESET CSS PROPERTIES */
* { margin: 0; padding: 0; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

/* HTML AND BODY */
html { height: 100%; }
body { height: 100%; width: 100%; display: table; color: #333; font-size: 100%; font-family: 'Lato', sans-serif, trebuchet ms, verdana, arial; position: relative; }

/* HIDING ELEMENTS // usability, responsive design buttons */
.donotdisplay,
	.printonly,
	.mobileonly { left: -9999px; position: absolute; }

/**
 * COLS AND SIDEBARS - start
 **/
 .colLeft { margin-right: 1%; float: left; }
.colRight { margin-left: 1%; float: right; }

.col-w100 { width: 100%; clear: both; overflow: hidden; }
.col-w90 { width: 89%; }
.col-w80 { width: 79%; }
.col-w75 { width: 74%; }
.col-w70 { width: 69%; }
.col-w66 { width: 65.666%; }
.col-w60 { width: 59%; }
.col-w50 { width: 49%; }
.col-w40 { width: 39%; }
.col-w33 { width: 32.333%; }
.col-w30 { width: 29%; }
.col-w25 { width: 24%; }
.col-w20 { width: 19%; }
.col-w10 { width: 9%; }

/**
 * COLS AND SIDEBARS - end
 **/

/**
 * GENERAL TEXT STYLES - start
 **/

	/* headlines */
	h1 { font-size: 180%; font-weight: 300; color: #333; padding: 1.5% 0 .5%; }
	h2 { font-size: 160%; font-weight: 400; color: #333;  padding: 2% 0 1%; }
	h3 { color: #333; font-size: 120%; padding: 1.5% 0 .5%; }
	h4 { color: #333; font-size: 90%; padding: 1% 0 0; }
	h5 { color: #333; font-size: 80%; padding: .5% 0 0; }

	/* abstracts */
	p { padding: .5% 0 .5%; -moz-hyphens: auto; -o-hyphens: auto; -webkit-hyphens: auto; -ms-hyphens: auto; -hyphens: auto; }
	a { color: #006bb2; text-decoration: none; }
	a:hover { color: #e20613; text-decoration: none; }
	a, a:active, a:focus { outline: none; }
	.disabled,
		a.disabled { text-decoration: line-through; }
	.right { text-align: right; }
	.left { text-align: left; }
	.center { text-align: center; }
	.justify {text-align: justify; }
	.floatleft { float: left; }
	.floatright { float: right; }
	.clearboth { clear: both; }
	.bold { font-weight: bold; }
	.italic { font-style: italic; }
	.small { font-size: 80%; }
	.large { font-size: 120%; }
	.honey { position: absolute; left: -9999px; }

	/* tables */
	table,
		th,
		td { border: none; }
	td,
		th { vertical-align: top; padding: 1% 2%; }
	th { text-align: left; }

/**
 * GENERAL TEXT STYLES - end
 */

/**
 * NAVIGATION - start
 **/

	/* horizontal main navigation */
		#horizontalNavi  { position: relative; list-style: none; }
	#horizontalNavi > li { position: relative; float: left;  font-size: 110%; font-weight: 400; display: block; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
	#horizontalNavi > li > a,
		#horizontalNavi > li > span.noLinking { display: block; padding: 0px 15px; color: #193573; font-weight: bold;
		-webkit-transition: background 0.3s ease-in;
		-moz-transition: background 0.3s ease-in;
		-o-transition: background 0.3s ease-in;
		-ms-transition: background 0.3s ease-in;
		transition: background 0.3s ease-in;}
	#horizontalNavi > li.active > a { color: #fff; font-weight: bold;}
	#horizontalNavi > li:hover > a { color: #333; background: #ccc; text-decoration: none; }

	/* dropdown for horizontal main navigation */
	#horizontalNavi ul {
		position:absolute;
		width:250px;
        overflow: hidden;
        height: 0;
		z-index:100;
		-webkit-transition: height 0.3s ease-in;
		-moz-transition: height 0.3s ease-in;
		-o-transition: height 0.3s ease-in;
		-ms-transition: height 0.3s ease-in;
		transition: height 0.3s ease-in;
    }

    #horizontalNavi > li:last-child > ul { right: 0; }

    #horizontalNavi ul:hover { overflow: inherit; }

	#horizontalNavi > li:hover ul,
		#horizontalNavi > li > a:hover ul { height:500px; /* default height */ }

    #horizontalNavi ul li {
    	list-style: none;
		background: #ccc;
		width: 100%;
		margin: 0;
		font-size: 100%;
    	font-weight: 400;
    	line-height: normal;
    	position: relative;
	}

	#horizontalNavi ul li:hover { background: #000; }
    #horizontalNavi ul li a,
    	#horizontalNavi ul li span.noLinking { display: block; padding: 0% 3%; text-decoration: none; color: #fff;
		-webkit-transition: background-color 0.3s ease;
		-moz-transition: background-color 0.3s ease;
		-o-transition: background-color 0.3s ease;
		-ms-transition: background-color 0.3s ease;
		transition: background-color 0.3s ease;     }
	#horizontalNavi ul li a:hover, #horizontalNavi ul li:hover > a { color: #fff; }
	#horizontalNavi ul li + li { border-top: 1px solid #fff; }

	#horizontalNavi .simpleDropDown.level-2 { left: 250px; height: 0; top: 0; border-top: none; }
	#horizontalNavi ul > li:hover ul.simpleDropDown.level-2,
		#horizontalNavi ul > li > a:hover ul.simpleDropDown.level-2 { height:500px; /* default height */ }

	#horizontalNavi .simpleDropDown.level-2 > li {
		list-style: none;
		background: #000;
		font-size: 100%; }
	#horizontalNavi .simpleDropDown.level-2 > li > a {
			-webkit-transition: background-color 0.3s ease;
		-moz-transition: background-color 0.3s ease;
		-o-transition: background-color 0.3s ease;
		-ms-transition: background-color 0.3s ease;
		transition: background-color 0.3s ease;
	}
	#horizontalNavi .simpleDropDown.level-2 > li:hover { background: #333; }

	/* micro navigation */
		#microNavi { overflow: hidden; padding: 1%  1% 0 0; list-style: none; }
	#microNavi li { float: left; }
	#microNavi li a { color: #323232; }
	#microNavi li a:hover { color: #E1001A; }

	/* footer navi */
		#footerNavi { overflow: hidden; width: 98%; padding: .3% 1%; }
	#footerNavi li {  }
	#footerNavi li a { color: #fff; padding: .5% 0;}
	#footerNavi li a:hover { color: #fff; text-decoration: underline; }

	/* subnavigation in sidebar */
		aside ul { list-style: none; margin: 0 0 20px; }
	aside ul.navi li { display: block; border-top: solid 1px #000; }
	aside ul.navi li  > a { display: block; margin: 3% 0; font-size: 120%; font-weight: 400; color: #000;  }
	aside ul.navi li:first-child { border-top: none; }
	aside ul.navi li:hover,
		aside ul.navi li:hover a,
		aside ul.navi li.activeItem,
		aside ul.navi li.activeItem a { color: #000; text-decoration: none; }
		aside ul.navi li.activeItem a { font-weight: 700 }
	aside .navi.depth-1 > li { }
	.navi.depth-2 { }
	aside ul.navi .navi.depth-2 { width: 95%; margin: 0 0 2% 5%; }
	aside ul.navi li.level-2 { border-top: dotted 1px #000; }
	aside ul.navi li.level-2:first-child { border-top: none; }
	aside ul.navi li.level-2 .navi { padding: .5% 2%; font-size: 120%; font-weight: 400; color: #000; }
	aside ul.navi li.level-2 .navi:hover { color: #ccc; }
	aside ul.navi li.level-2.activeItem .navi { font-weight: 700; }
	.navi.depth-3 { }
	.navi.depth-4 { }

/**
 * NAVIGATION - end
 **/

/* TEXT BLOCK SETTINGS */
/* #text img {	border: 5px solid #fff; margin: 5px;}*/
#text ul,
	#text ol { margin: 1% 0 1% 20px; }
#text ul li,
	#text ol li { padding: .25% 0; font-size: 100%; }
#text ul li p,
	#text ol li p { padding: 0; }
#text .map_canvas img,
	.tabContainer #map_canvas img { border: none; margin: 0px; -webkit-box-shadow: 0 0 0px #000; -moz-box-shadow: 0 0 0px #000; box-shadow: 0 0 0px #000; }
#text a { font-weight: 700; }

/* PAGINATION */
.Pages,
	.activePage{ display: inline-block; font-size: 100%; font-weight: bold; color: #152861;  margin-right: 2%; padding: 1% 2%; }
.activePage { color: #fff !important; text-decoration: underline; background: #152861; border: 1px solid #152861; }
a.activePage:hover { color: #fff !important; }
#page .Pages:link,
	.Pages:visited { cursor: pointer; text-decoration: none; border: 1px solid #152861; }
#page .Pages:hover { color: #fff !important; background: #152861; }

/* INPUTFIELDS */
.defaultField { overflow: hidden; }
.defaultField input,
	.defaultField textarea,
	.defaultField select { width: 100%; border: solid 1px #868788; padding: 5px 1%; margin: 5px 0%;
		-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
.defaultField input:focus,
	.defaultField textarea:focus,
	.defaultField select:focus { border: solid 1px #323232; }
.defaultField textarea { height: 200px; }
.defaultField input[type="checkbox"] { width: auto; margin-top: 5px; }
.defaultField label, .defaultField div.labelFake { padding: 5px 0; }
.defaultField label.noFloat { float: none; }
.defaultField .inputWrapper { overflow: hidden; }
input.fieldError, textarea.fieldError { border: solid 1px #c02e2e; }
div.fieldError { clear: left; color: #ff0000; font-size: 80%; margin-left: 1%; }
label.cbFloat { width: 200px; float: left; }
.defaultField.leftCB { margin: 2% 0; }
.defaultField.hidden { position: absolute; left: -9999px; }

.privacy label { display: inline-block; }
.privacy p { padding: .5% 0 .5% 1%; }

/* MESSAGES */
.msgList { list-style: none; padding: 0; margin: 1% 0; }
.msgList li { margin: .25% 0; padding: .5%; color: #fff; text-shadow: #333 1px 1px 0; }
.msgList li i { padding-right: .5%; }
.warningMsg { background: #e88615;  }
.errorMsg { background: #c02e2e; }
.successMsg { background: #469b2b; }
.arrayMsg { background: #404040;}
.fa.OpenTreeLevel, .fa.CloseTreeLevel {cursor:pointer;}
.fa.OpenTreeLevel:hover, .fa.CloseTreeLevel:hover {color:Orange;}
.Hide {display:none;}

/* WRAPPER */
.wrap { margin: 0 auto; max-width: 1140px; position: relative; width: 100%; }
.overflow { overflow: hidden; }

/* SINGLE CONTENT NAVIGATION */
#prevNextNav { padding: 2% 0 4%; }
#prevNextNav > li {float: left; width: 33%; list-style: none;}
#prevNextNav > li > a {color: #333; font-weight: bold;}
#prevNextNav > li > a:hover {color: #000; text-decoration: none;}

/* LANGUAGE */
#langList { list-style: none; overflow: hidden; position: absolute; right: 5px; top: 5px; }
#langList > li { float: left; overflow: hidden; }
#langList img { display: block; overflow: hidden; padding-left: 3px; }

/* PAGE ROW */
.page-row, .page-row-extended { width: 100%; display: table-row; }
.page-row-extended { height: 100%; }

/* scroll to top button */
a#scrollToTop { z-index: 15000; position: fixed; right: 10px; bottom: 35px; padding: 1%; display: inline-block; background: rgba(0, 75, 146, .8); border: solid 1px #fff; color: #fff; opacity: 0; }
a#scrollToTop:hover { background: rgba(0, 75, 146, 1);  }

/* infinit loading */
.hiddenData { opacity: 0; }
#loadData { margin-top: 2%; }
#loadDataBtn { background: #fff; color: #333; width: 100%; padding: 3% 0; margin-bottom: 1.5%; text-align: center; cursor: pointer; border: dotted 1px #ccc; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
#loadDataBtn:hover { background: #333; color: #fff; }

/**
 * 2) STYLES CORE DESIGN
 **/

/* BREADCRUMBS */
#breadcrumbs { overflow: hidden;  clear: both; }
#breadcrumb { list-style: none; overflow: hidden; padding: .5% 0; }
#breadcrumb li { list-style: none; color: #333; text-decoration: none; outline: none; display: block; float: left; position: relative; }
#breadcrumb li a { text-decoration: none; color: #333; }
#breadcrumb li a:hover { color: #000; }
#breadcrumb li.start { padding-right: .5%; }

/* CONTACT */
label.contact { float: left; width: 170px; }
input.contactfield { width: 300px; border: solid 1px #152861; }
input.button { border: none; color: #fff; background: #424242; padding: 1.5% 10%; margin-top: 2%; font-weight: bold;
	-webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; -ms-transition: all 0.3s ease; transition: all 0.3s ease; }
input.button:hover { background: #002660; color: #fff; cursor: pointer; }
.leftCB input {float: left; padding: 0 0 0 1%;}
.leftCB label {padding: 5px 0 0 1%;}

/* SEARCH */
#search { overflow: hidden; position: relative; }
#searchForm { }
#search label { position: absolute; left: -9999px; }
input#search_searchBox { border: none; background: transparent; width: 90%; padding: 10px; float: left; font-size: inherit; }
input#search_searchBox::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: 400; font-style: italic;
}
input#search_searchBox::-moz-placeholder { /* Firefox 19+ */
  font-weight: 400; font-style: italic;
}
input#search_searchBox:-ms-input-placeholder { /* IE 10+ */
  font-weight: 400; font-style: italic;
}
input#search_searchBox:-moz-placeholder { /* Firefox 18- */
  font-weight: 400; font-style: italic;
}
button#search_submitSearch { width: 10%; padding: 10px; margin-top: none; border: none; color: #333; font-weight: bold; font-size: inherit; cursor: pointer; }
button#search_submitSearch:hover { color: rgb( 255, 246, 217 ); }
ul#searchResults { list-style: none; }
ul#searchResults li { padding-bottom: 4%; margin-bottom: 4%; border-bottom: solid 1px #002900;  }
ul#searchResults p { padding: 0; }
p.searchLink { font-size: 90%; margin-top: 1%; }

/* SEARCH */
.ui-autocomplete.ui-menu { list-style:none; max-height: 600px; box-shadow: 2px 2px 4px #575759; border: solid 1px #575759; z-index: 999999; }
.ui-autocomplete a > div { width: 100%; padding: 2%; }
.ui-autocomplete a:hover { color: #fff; }
.ui-helper-hidden-accessible { display: none; }
.list_item_container { padding: 2px; background: #fff; overflow: hidden; z-index: 99; border: none; border-bottom: 1px solid #ebeced; }
.list_item_container.withimage { /*min-height: 120px;*/ }
.ui-menu-item.ui-state-focus .list_item_container { background-color: #575759; color: #fff; }
.ui-menu-item { display: block; overflow:hidden; }
.searchimage { width: 50px; height: 50px; max-width: 20%; margin-right: 1%; float: left; position: relative; background-position: center; background-size: contain; background-repeat: no-repeat; }
.searchimage img { /*display: block; width: auto; height: auto; max-width: 100%; max-height: 100%;*/ position: absolute; left: -9999px; }
.searchtext { width: 78% float: right; }
.searchlabel { display: block; font-weight: bold; font-size: 110%; }
.searchdescription { display: block; font-size: 90%; font-style: italic; }

/* SOCIAL SHARING */
#sharePage { text-align: center; overflow: hidden; clear: both; }
#social_share { list-style: none; overflow: hidden; width: 100%; }
#social_share li { display: inline; margin-right: 2%; padding: 1.5% 2% 1.5% 0 }
#social_share li:hover { -webkit-transition: background 0.3s ease-in;
		-moz-transition: background 0.3s ease-in;
		-o-transition: background 0.3s ease-in;
		-ms-transition: background 0.3s ease-in;
		transition: background 0.3s ease-in; }
#social_share a { font-weight: 300; text-decoration: none; ine-height: 30px; }
#social_share li:hover a { color: #fff; }
#social_share a > i {margin-right: 1%; text-align: center; width: 30px; line-height: 30px; color: #fff; }
#fb_share > a > i { background: #3b5998; }
#fb_share:hover { background: #3b5998; }
#google_share > a > i {  background: #d64136;  }
#google_share:hover { background: #d64136; }
#twitter_share > a > i {  background: #2daae1;  }
#twitter_share:hover { background: #2daae1; }
#xing_share > a > i {  background: #006464;  }
#xing_share:hover { background: #006464; }

/* MODULE LISTINGS */
.moduleList { list-style: none; overflow: hidden; width: 100%; }
.moduleList .moduleListItem { overflow: hidden; margin-top: 2%; padding-top: 2%; border-top: solid 1px #193573; width: 100%; }
.moduleList .moduleListItem:first-child {margin-top: 0%; padding-top: 0%; border-top: none; }
.moduleList .moduleListItemImage { width: 29%; float: left; margin-right: 1%; }
.moduleList .moduleListItemImage.bgImage { background-position: center; background-size: cover; background-repeat: no-repeat; min-height: 170px; }
.moduleList .moduleListItemImage img { width: 100%; height: auto; display: block; }
.moduleList .moduleListItemContent { width: 69%; float: right; margin-left: 1%; }
.moduleList .moduleListItemMore { clear: both; text-align: right; }
.moduleList .moduleListItemMore a { background: #193573; color: #fff; padding: 1% 2%; margin-top: 2%; display: inline-block;
	-webkit-transition: background 0.3s ease-in; -moz-transition: background 0.3s ease-in; -o-transition: background 0.3s ease-in; -ms-transition: background 0.3s ease-in; transition: background 0.3s ease-in; }
.moduleList .moduleListItemMore a:hover { background: #333; text-decoration: none; }

/* cookies */
#cookieInfo { background: #1a1a1a; border-top: solid 1px #fff; padding: .5% 0; position: fixed; left: 0; bottom: 0; width: 100%; font-size: 80%; z-index: 9999; }
#cookieInfo p, #cookieInfo strong, #cookieInfo a { color: #fff; }
#cookieInfo p { padding: 0; margin: 10px; }
#cookieInfo p a { color: #fff; text-decoration: underline; }
#cookieInfo .colRight { text-align: center; }
#cookieInfo a#setCookie { display: inline-block; margin: 10px; padding: 10px 20px; color: #fff; background: #004B92; border: 1px solid #fff; }
#cookieInfo a#setCookie:hover {  text-decoration: none; color: #004B92; background: #fff; }

/*
 * CONSENT TOOL
 */
body.consent-tool-open .ui-widget-overlay {
    background: rgba( 0, 0, 0, .8 );
    opacity: 1;
    filter: Alpha(Opacity=1);
    z-index: 10000000 !important;
}

body.consent-tool-open .ui-dialog {
	z-index: 10000001 !important;
}

body.consent-tool-open .ui-dialog.custom-details {
	max-height: 90vh !important;
	overflow-y: scroll;
}

@media only screen and ( min-width: 451px ) {
	body.consent-tool-open .ui-dialog.custom-basic {
		max-width: 450px;
		left: calc( 50% - 225px ) !important;
	}
}

@media only screen and ( max-width: 450px ) {
	body.consent-tool-open .ui-dialog.custom-basic {
		width: 90%;
		left: 5% !important;
	}
}

@media only screen and ( min-width: 961px ) {
	body.consent-tool-open .ui-dialog.custom-details {
		max-width: 960px;
		left: calc( 50% - 470px ) !important;
	}
}

@media only screen and ( max-width: 960px ) {
	body.consent-tool-open .ui-dialog.custom-details {
		width: 90%;
		left: 5% !important;
	}
}

#consent-tool {
    font-size: 90%;
}

#consent-tool ul {
	list-style: none;
}

#consent-tool h2 {
    padding: 0 0 15px;
    margin: 0;
    font-weight: 400;
    font-size: 145%;
    color: inherit;
}

#consent-tool header p {
    font-size: 90%;
}

#consent-tool ul#consent-tool-groups {
    overflow: hidden;
    margin: 10px 0;
    clear: both;
}

#consent-tool .basics ul#consent-tool-groups > li:nth-child(n+2) {
    padding-top: 5px;
    margin-top: 5px;
    border-top: dotted 2px #ddd;
}

#consent-tool i.fa.icon-disabled {
    text-decoration: none;
    color: #aaa;
}

#consent-tool i.fa.icon-red {
    color: #880000;
}

#consent-tool i.fa.icon-green {
    color: green;
}

#consent-tool button.ct-button {
    width: 100%;
    padding: 10px 15px;
    margin: 5px 0;
    cursor: pointer;
    color: #555;
    background: #f2f2f2;
    border: none;
    border-radius: 3px;
    outline: none;
}

#consent-tool button.ct-button.btn-highlight {
    background: green;
    color: #fff;
    font-weight: 600;
    padding: 15px;
}

#consent-tool button.ct-button.btn-narrow {
    font-size: 70%;
}

#consent-tool button.ct-button:hover {
    background: #333;
    color: #fff;
}

#consent-tool footer {
    text-align: center;
    background: #fff;
}

#consent-tool ul#consent-tool-links {
    display: inline-block;
    text-align: center;
    padding-top: 15px;
    font-size: 70%;
}

#consent-tool ul#consent-tool-links > li {
    display: inherit;
    position: relative;
}
#consent-tool ul#consent-tool-links > li:nth-child(n+2):before {
    content: '|';
    width: 15px;
    display: inline-block;
    text-align: center;
}

#consent-tool a.ct-link {
    color: #555;
}

#consent-tool a.ct-link:hover {
    color: #000;
}

#consent-tool span.ct-link.link-highlight {
    color: #000;
    cursor: pointer;
}

#consent-tool span.ct-link.link-highlight:hover {
    color: green;
}

#consent-tool .details ul#consent-tool-groups > li {
    padding: 15px;
    background: #f2f2f2;
}
#consent-tool .details ul#consent-tool-groups > li:nth-child(n+2) {
	margin-top: 5px;
}

#consent-tool .details button.ct-button {
    display: inline-block;
    width: auto;
    padding: 15px 30px;
}

#consent-tool .details span.ct-link span {
	padding: 15px 0;
	margin: 5px 0;
    display: inline-block;
    font-size: 80%;
    position: relative;
    color: #aaa;
}
#consent-tool .details span.ct-link span:nth-child(n+2):before {
    content: '|';
    width: 15px;
    display: inline-block;
    text-align: center;
}

#consent-tool .group-headline {
    padding-bottom: 10px;
}

#consent-tool .group-text,
#consent-tool .group-content {
    font-size: 90%;
}

#consent-tool p.group-toggle-content {
	padding: 0;
    text-align: center;
    font-size: 80%;
    text-decoration: underline;
    cursor: pointer;
}

@media only screen and ( min-width: 551px ) {
	#consent-tool .details span.ct-link {
	    float: right;
	}

	#consent-tool span.item-title {
	    display: block;
	    width: 200px;
	    float: left;
	}

	#consent-tool span.item-content {
	    width: calc( 100% - 200px );
	    float: right;
	}
}

@media only screen and ( max-width: 550px ) {
	.consent-tool-buttons.inline-buttons {
	    text-align: center;
	}

	#consent-tool .details button.ct-button {
	    width: 100%;
	}

	#consent-tool .details span.ct-link {
	    display: block
	}

	#consent-tool span.item-title {
	    display: block;
	    font-weight: 600;
	}

	#consent-tool span.item-content {
	    display: block;
	    font-style: italic;
	}
}

#consent-tool span.item-content a {
    color: inherit;
    text-decoration: underline;
}

#consent-tool ul.consent-tool-items > li {
    overflow: hidden;
    margin-top: 15px;
}

#consent-tool ul.consent-tool-items > li .item-wrap {
    background: #fff;
    padding: 10px;
}

#consent-tool ul.consent-tool-details > li {
	overflow: hidden;
}
#consent-tool ul.consent-tool-details > li:nth-child(n+2) {
    padding-top: 3px;
    margin-top: 3px;
    border-top: solid 1px #f2f2f2;
}

div#consent-config {
    padding: 10px 15px;
    cursor: pointer;
    background: #000;
    color: #aaa;
    font-size: 75%;
}

@media only screen and ( min-width: 901px ) {
	div#consent-config {
		position: fixed;
	    bottom: 0;
	    right: 100px;
	    background: #fff;
	    color: #555;
	    box-shadow: 0 0 5px #333;
	    z-index: 10000000;
	}
}

div#close-consent-modal {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 120%;
    text-align: center;
    cursor: pointer;
    color: #ccc;
}
div#close-consent-modal:hover {
	color: #000;
}

div#close-consent-modal span {
	left: -999999px;
	position: absolute;
}

/* FE LOGIN */
#loginForm, #lostPassword { width: 50%; }
#loginForm .login,
	#lostPassword .login { display: block; font-weight: 700; overflow: hidden; padding: 1% 0; }
#loginForm .inputlogin,
	#loginForm .submitBtn,
	#lostPassword .inputlogin,
	#lostPassword .submitBtn { width: 100%; padding: 2%; margin-bottom: 2%; border: 1px solid #555;
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
#loginForm .submitBtn,
	#lostPassword .submitBtn { width: auto; background: #333; color: #fff; font-weight: 700; margin-top: 2%; padding: 2% 5%; }
#loginForm .submitBtn:hover,
	#lostPassword .submitBtn:hover { cursor: pointer; background: #006bb2 ; }
.login main { min-height: auto; }

/**
 * 3) PROJECT ADAPTIONS
 **/
header, main, footer, aside, section { display: block; }

/* HEADER */


/* NAVIGATIONS */


/* SIDEBARS */
aside {}

/* MAIN */
main { }

/* CONTENT */
section {}

/* FOOTER */
footer { }

/* WIDGETS */

/* HOME */

/**
 * 4) STYLES REGULAR USED EXTENSIONS
 **/

/**
 * 5) STYLES PROJECT RELATED EXTENSIONS
 **/

/* RTE PLUGIN MANAGER*/
/* info box + image box */

.articleInfoBox,
	.articleGallery { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

/*.articleInfoBox,
	.articleImage,*/
	.articleGallery { width: 50%; }
.articleInfoBox.rightbox,
	.articleImage.rightbox,
	.articleGallery.rightbox { float: right; margin: 1% 0 1% 3%;  }
.articleInfoBox.leftbox,
	.articleImage.leftbox,
	.articleGallery.leftbox { float: left; margin: 1% 3% 1% 0;  }
.articleInfoBox > div,
	.articleGallery > div { padding: 1%; }
.articleInfoBox .infoHeadline,
	.articleGallery .infoHeadline { background: #004b92; font-size: 140%; overflow: hidden; color: #fff; }
.articleInfoBox .infoContent { font-size: 90%; }
.articleImage { background: #004b92; color: #fff; }
.articleImage img { width: 100% !important; height: auto !important; display: block; background: #fff; }
.articleImage p { font-size: 90%; font-weight: 400; padding: 1%; }
.articleGallery div.ihTitle { width: 50%; float: left; }
.articleGallery div.ihImages { width: 50%; float: right; text-align: right; }
.articleGallery p { padding: 0; }
.articleGallery img.loadKMModal { height: auto !important; width: 96% !important; padding: 2%; display: block; }

.infoContent li { list-style: none; }
.infoContent li::before { content: "\f054"; font-family: FontAwesome; margin-left: -10px; padding-right: 5px; color: #003366; }
.infoContent li li::before { content: "\f105"; }
.infoContent li a:hover { color: #99cc00; text-decoration: none; }

.rteImage { width: 100%; overflow: hidden; text-align: center; position: relative; z-index: 1;}
.rteImage > img.currentImg { width: auto !important; max-width: 100% !important; height: auto !important; max-height: 800px !important; position: relative; z-index: 10; }
.rteImage > img.newImage { position: absolute; top: 0; left; 0; z-index: 5; }
.rteImage > img.waiting { width: auto !important; position: absolute; top: 48%; left: 48%; z-index: 20; display: none; }
.rtePreview { width: 100%; overflow: hidden; }
.rtePreview > ul { width: auto; margin: 2% 0 !important; list-style: none; overflow-x: scroll; white-space: nowrap; }
.rtePreview > ul > li { width: 150px; height: 100px; display: inline-block; overflow: hidden; }
.rtePreview > ul > li > img { width: 100%; height: auto; cursor: pointer; }


/* - Popup-Gallery - */
.PluginContainer.PGalCon { clear: both; overflow: hidden; width: 100%; margin: 2% 0; }
.PluginContainer.PGalCon > ul { width: 100%; margin: 0 !important; padding: 0 !important; }
.PluginContainer.PGalCon > ul > li { padding: 0 !important; }
.PGalConItem { list-style: none; position: relative; overflow: hidden; float: left; width: 18.4%;  margin: 1%; }
.PGalConItem:nth-child(5n+1){ margin-left: 0; clear:both;}
.PGalConItem:nth-child(5n+5){ margin-right: 0; }
.PGalConItem a { display: block; height: 100%; width: 100%; position: relative; }
.PGalConItem img { width: 100%; height: auto; position: relative; display: block; z-index: 1; }
.PGalImageTitle { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; padding: 5%; background: rgba( 0, 51, 102, .85 ); color: #fff; font-size: 90%; cursor: pointer; opacity: 0; z-index: 2;
    -moz-transition: opacity 0.3s ease-in;
	-o-transition: opacity 0.3s ease-in;
	-ms-transition: opacity 0.3s ease-in;
	transition: opacity 0.3s ease-in;
}
.PGalImageTitle:hover { opacity: 1; }
.rightbox {float: right; ;}
.leftbox {float: left; }
.centerbox {margin: 0 auto;}

.PluginContainer.IBoxCon{
	border: 1px solid #193573;
	overflow: hidden;
}
.PluginContainer.IBoxCon .infoHeadline{
	background: #193573;
	padding: 1%;
	font-weight: bold;
}
.PluginContainer.IBoxCon .infoContent p{
	padding: 2px;
}
.PluginContainer.GMapCon {clear: both; overflow: hidden;}
.map_canvas {width: 100%; height: 100%;}
.GMQuarter {width: 25%; height: 1px;}
.GMHalf {width: 50%; height: 1px;}
.GMThreeQuarter {width: 75%; height: 1px;}
.GMFull {width: 100%; height: 1px;}
.GMSmall {width: 200px; height: 200px;}
.GMMedium {width: 400px; height: 400px;}
.GMBig {width: 800px; height: 800px;}
.GMUserdefined {width: 50%; height: 200px;}
.GMLeft {float: left;}
.GMCenter {margin: 0 auto;}
.GMRight {float: right;}

.GMUserdefined {width: 100%; height: 300px; margin-top: 5%;}

.PluginContainer.TColCon { clear: both; overflow: hidden; }

/* RTE plugin Listings */
ul.listing-1, ul.listing-2, ul.listing-3, ul.listing-4 { overflow: hidden; clear: both; margin: 1% 0 !important; display: flex; flex-wrap: wrap; }
ul.listing-1 > li, ul.listing-2 > li, ul.listing-3 > li, ul.listing-4 > li { list-style: none !important; border: solid 1px #ccc; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
ul.listing-1 > li > img, ul.listing-2 > li > img, ul.listing-3 > li > img , ul.listing-4 > li > img,
ul.listing-1 > li > a > img, ul.listing-2 > li > a > img, ul.listing-3 > li > a > img , ul.listing-4 > li > a > img,
ul.listing-1 > li > p > img, ul.listing-2 > li > p > img, ul.listing-3 > li > p > img , ul.listing-4 > li > p > img { width: 100% !important; height: auto !important; margin: 0; padding: 0; border: none; }
ul.listing-1 > li a, ul.listing-2 > li a, ul.listing-3 > li a, ul.listing-4 > li a { display: block; }
ul.col_01 > li { width: 100%; overflow: hidden; }
ul.col_02 > li { width: 49%; margin: 10px 1%; float: left; }
ul.col_02 > li:nth-child(2n+1) { margin-left: 0; clear: both; }
ul.col_02 > li:nth-child(2n+2) { margin-right: 0; }
ul.col_03 > li { width: 32%; margin: 10px 1%; float: left; }
ul.col_03 > li:nth-child(3n+1) { margin-left: 0; clear: both; }
ul.col_03 > li:nth-child(3n+3) { margin-right: 0; }
ul.col_04 > li { width: 23.5%; margin: 10px 1%; float: left; }
ul.col_04 > li:nth-child(4n+1) { margin-left: 0; clear: both; }
ul.col_04 > li:nth-child(4n+4) { margin-right: 0; }
ul.col_05 > li { width: 18.4%; margin: 10px 1%; float: left; }
ul.col_05 > li:nth-child(5n+1) { margin-left: 0; clear: both; }
ul.col_05 > li:nth-child(5n+5) { margin-right: 0; }
ul.col_06 > li { width: 15%; margin: 10px 1%; float: left; }
ul.col_06 > li:nth-child(6n+1) { margin-left: 0; clear: both; }
ul.col_06 > li:nth-child(6n+6) { margin-right: 0; }
ul.col_07 > li { width: 12.571%; margin: 10px 1%; float: left; }
ul.col_07 > li:nth-child(7n+1) { margin-left: 0; clear: both; }
ul.col_07 > li:nth-child(7n+7) { margin-right: 0; }
ul.col_08 > li { width: 10.75%; margin: 10px 1%; float: left; }
ul.col_08 > li:nth-child(8n+1) { margin-left: 0; clear: both; }
ul.col_08 > li:nth-child(8n+8) { margin-right: 0; }
ul.col_09 > li { width: 9.33%; margin: 10px 1%; float: left; }
ul.col_09 > li:nth-child(9n+1) { margin-left: 0; clear: both; }
ul.col_09 > li:nth-child(9n+9) { margin-right: 0; }
ul.col_10 > li { width: 8.2%; margin: 10px 1%; float: left; }
ul.col_10 > li:nth-child(10n+1) { margin-left: 0; clear: both; }
ul.col_10 > li:nth-child(10n+10) { margin-right: 0; }

/* RTE plugin Accordion */
ul.accList { margin: 10px 0 !important; overflow: hidden; clear: both; list-style: none; }
ul.accList li { width: 100%; overflow: hidden; clear: both; }
.toggleAllAccItems { padding: 1% !important; font-weight: bold; cursor: pointer; }
.toggleAllAccItems:hover { color: #ff8300; }
.accList h2 { width: 100%; padding: 0.5% 1%; background: #ff8300; cursor: pointer; }
.accList h2:hover { color: #fff; }
.toggleAccContent { width: 30px; margin-right: 10px; background: #1a1a1a; color: #fff; text-align: center; }
.accContent { margin: 1% 0; }

.PluginContainer.YTubeCon.rightbox:not(.col-w100) { margin-left: 2%; }
.PluginContainer.YTubeCon.leftbox:not(.col-w100) { margin-right: 2%; }
.PluginContainer.YTubeCon.centerbox:not(.col-w100) { margin: 0 2%; }
.PluginContainer .YTubeConWrap { position: relative; padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/ padding-top: 0px; height: 0 !important; width: 100% !important; overflow: hidden; }
.PluginContainer .YTubeConWrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/* BLOCK SCREEN */
.GMapLock { position: relative; width: 100%; height: 100%; display: table; }
.GMLOverlay { width: 100%; height: 100%; z-index: 10; background: #ddd; display: table-row; }
.GMLText { width: 100%; height: 100%; padding: 20px; color: #fff; display: table-cell; vertical-align: middle; }
.SecureButtonText { width: 50%; margin: 15px 0; float: left; }
.singleview .SecureButtonText { margin: 5px 0; width: 100%; }
.SecureHint { margin: 5px 0; }
.SecureHint > a { color: #333; text-decoration: underline; }
.SecureHint > a:hover { color: #000; text-decoration: underline; }
.secureBtn { width: 60%; padding: 5px 10px; margin: 0 20%; background: #ddd; color: #fff; border: 1px solid #fff; font-weight: 400; text-align: center; cursor: pointer; }
.singleview .secureBtn,
	.PluginContainer.col-w50 .secureBtn,
	.PluginContainer.col-w40 .secureBtn,
	.PluginContainer.col-w33 .secureBtn,
	.PluginContainer.col-w30 .secureBtn,
	.PluginContainer.col-w25 .secureBtn,
	.PluginContainer.col-w20 .secureBtn,
	.PluginContainer.col-w10 .secureBtn { width: 100%; margin: 0; }
.secureBtn:hover { background: #fff; color: #ddd;  }


/* BLOCK SCREEN PAGE STYLE */
.GMLOverlay { background: #717878; }
.SecureHint > a { color: #fff; text-decoration: underline; }
.SecureHint > a:hover { color: #EFC113; text-decoration: underline; }
.secureBtn { background: #e64415; color: #fff; }
.secureBtn:hover { background: #fff; color: #273E84; }

#pageMap .PluginContainer.GMapCon { background: #717878; }
#pageMap .GMapLock { max-width: 1140px; margin: 0 auto; }


/* PopUp Widget */
body .ui-widget-overlay {
    background: rgba( 0, 0, 0, .8 );
    opacity: 1;
    filter: Alpha(Opacity=1);
    z-index: 1000000 !important;
}

body .ui-dialog.modal-popup {
	z-index: 1000001 !important;
	border: none;
	overflow: visible;
}

body .ui-dialog.modal-popup.background-orange {
	background: #e64415;
	color: #fff;
}
body .ui-dialog.modal-popup.background-transparent {
	background: transparent;
	color: #fff;
}
body .ui-dialog.modal-popup.background-darkgrey {
	background: #383b3d;
	color: #fff;
}
body .ui-dialog.modal-popup.background-white {
	background: #fff;
	color: #383b3d;
}
body .ui-dialog.modal-popup h2,
body .ui-dialog.modal-popup a,
body .ui-dialog.modal-popup .ui-widget-content {
	color: #fff;
	line-height: normal;
}
body .ui-dialog.modal-popup.background-white h2,
body .ui-dialog.modal-popup.background-white .ui-widget-content {
	color: #383b3d;
}

body .ui-dialog.modal-popup .ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix {
    background: transparent;
    border: none;
    padding: 0;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 50000000000;
    width: 30px;
    display: block;
    height: 30px;
}

body .ui-dialog.modal-popup button.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-icon-only.ui-dialog-titlebar-close {
    background: #fff;
    border-radius: 25px;
}

body .ui-dialog.modal-popup.modal-small {
    width: 33.333% !important;
    max-width: 500px;
}

body .ui-dialog.modal-popup.modal-medium {
    width: 50% !important;
    max-width: 960px;
}

body .ui-dialog.modal-popup.modal-wide {
    width: 80% !important;
    max-width: 1280px;
}

body .ui-dialog.modal-popup.modal-extrawide {
    width: 96% !important;
    max-width: 1440px;
}

ul.widgetlist-footer {
    list-style: none;
}