/**
 * ) FONTS
 **/
/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/open-sans-v15-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url('fonts/open-sans-v15-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v15-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v15-latin-300.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v15-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v15-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}
 	
/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/open-sans-v15-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('fonts/open-sans-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v15-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/open-sans-v15-latin-italic.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Italic'), local('OpenSans-Italic'),
       url('fonts/open-sans-v15-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v15-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v15-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v15-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v15-latin-italic.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/open-sans-v15-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Bold'), local('OpenSans-Bold'),
       url('fonts/open-sans-v15-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v15-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v15-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v15-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v15-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* oswald-regular - latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/oswald-v16-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Oswald Regular'), local('Oswald-Regular'),
       url('fonts/oswald-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/oswald-v16-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/oswald-v16-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/oswald-v16-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/oswald-v16-latin-regular.svg#Oswald') format('svg'); /* Legacy iOS */
}

/* oswald-600 - latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/oswald-v16-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Oswald SemiBold'), local('Oswald-SemiBold'),
       url('fonts/oswald-v16-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/oswald-v16-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/oswald-v16-latin-600.woff') format('woff'), /* Modern Browsers */
       url('fonts/oswald-v16-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/oswald-v16-latin-600.svg#Oswald') format('svg'); /* Legacy iOS */
}

/**
 * 1) GERNERAL CSS
 **/

/* RESET CSS PROPERTIES */
* { margin: 0; padding: 0; }

/* HTML AND BODY */ 
html { height: 100%; }
body { height: 100%; width: 100%; color: #000; font-size: 80%; font-family: 'Open Sans', sans-serif, trebuchet ms, verdana, arial; background: #e2e2e2; 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-family: "Oswald", sans-serif; font-size: 230%; font-weight: 400; color: #700000; padding: 1.5% 0 .5%; }
	h2 { font-family: "Oswald", sans-serif; font-size: 160%; font-weight: 400; color: #333; padding: 2% 0 1%; }
	h3 { font-family: "Oswald", sans-serif; font-size: 120%; font-weight: 400; color: #333; 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: 1% 0 2%; -moz-hyphens: auto; -o-hyphens: auto; -webkit-hyphens: auto; -ms-hyphens: auto; -hyphens: auto; }
	p a { -moz-hyphens: none; -o-hyphens: none; -webkit-hyphens: none; -ms-hyphens: none; -hyphens: none; }
	a { color: #700000; text-decoration: none; }
	a, a:active, a:focus { outline: none; }
	a:hover { color: #06283D; text-decoration: 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%; }
	
	/* tables */
	table { margin: 1% 0 2%; }
	table, 
		th, 
		td { border: none; border-collapse: collapse; }
	td, 
		th { vertical-align: top; padding: 1% 10px 1% .5%; }
	tbody tr td { border-top: 1px dotted #ccc; }
	tbody tr:first-child td { border-top: none; }
	th { text-align: left; color: #fff; font-family: "Oswald", sans-serif; font-weight: 400; background: #06283d; }

/**
 * GENERAL TEXT STYLES - end
 */
 
/**
 * NAVIGATION - start
 **/

	/* horizontal main navigation */
		#horizontalNavi  { position: relative; list-style: none; float: right; font-family: "Oswald", sans-serif; }
	#horizontalNavi > li { position: relative; float: left;  font-size: 140%; display: block; line-height: 60px;
		-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
	#horizontalNavi > li > a { display: block; padding: 0px 15px; color: #fff; font-weight: 400; text-shadow: 1px 1px 1px #333;
		-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; background: rgb( 0, 110, 190 ); }
	#horizontalNavi > li:hover > a { color: #fff; background: rgb( 0, 110, 190 ); 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:hover ul, 
		#horizontalNavi > li > a:hover ul { height:500px; /* default height */ }
            
    #horizontalNavi ul li {
		background: rgb( 0, 110, 190 );
		width: 100%;
		margin: 0;
		font-size: 80%;
    	font-weight: 400;
    	line-height: 30px;
		-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:hover { background: #333; }
    #horizontalNavi ul li a { display: block; padding: 2.5% 3%; text-decoration: none; color: #fff; }
	#horizontalNavi ul li a:hover, #horizontalNavi ul li:hover > a { color: #fff; }
	#horizontalNavi ul li + li { border-top: 1px solid #fff; }
	
	/* 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: auto; text-align: center; padding: 2% 0; }
	#footerNavi li { display: inline-block; }
	#footerNavi li a { color: #333; padding: .5% 0; font-size: 90%; }
	#footerNavi li a:hover { color: #06283D; }
	
	/* subnavi inside content */
		#subNaviPreview { list-style: none; }
	#subNaviPreview li { border-top: 1px dotted #152861; margin: 2% 0; overflow: hidden; }
	#subNaviPreview li > a { padding: 2% 0; }
	#subNaviPreview li a:hover { text-decoration: none; }
	#subNaviPreview li.first { border-top: 2px solid #152861; }
	#subNaviPreview li img { background: rgb(0, 110, 190); float: left; width: 23%; height: auto; margin: 2% 2% 2% 0;
		-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; }
	#subNaviPreview li:hover img { background: rgb(94,193,215); }
	#subNaviPreview .naviTeaser { overflow: hidden; }
	
	/* subnavigation in sidebar */
		aside ul { list-style: none; overflow: hidden; }
	aside ul.navi li { display: block;  }
	aside ul.navi li > a { display: block; padding: 4% 0; font-size: 140%; font-weight: 400; font-family: "Oswald", sans-serif; text-align: center; color: #fff; border-top: solid 1px #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; }
	aside ul.navi li:first-child > a { border-top: none; }
	aside ul.navi li a:hover, 
		aside ul.navi li.activeItem a { background: #06283D; text-decoration: none; }
	.navi.depth-1 { }
	.navi.depth-2 { }
	aside ul.navi .navi.depth-2 { width: 90%; margin: -4% 0 2% 10%; }
	aside ul.navi li.level-2 { border-top: 1px dotted #003366; }
	aside ul.navi li.level-2:first-child { border-top: none; }
	aside ul.navi li.level-2 .navi { padding: 2.5% 2%; text-transform: none; }
	.navi.depth-3 { }
	.navi.depth-4 { }
 
/**
 * NAVIGATION - end
 **/

/* TEXT BLOCK SETTINGS */
#text ul, 
	#text ol { margin: 1% 0 1% 20px; }
#text ul li, 
	#text ol li { padding: .25% 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; }

/* 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: 97%; border: solid 1px #868788; padding: 1%; margin: 1% 0%; }
.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: 2%; }
.defaultField label, .defaultField div.labelFake { padding: 1% 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 { float: left; }

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

/* SHADOW */
.shadow { -webkit-box-shadow: 0 0 8px #000; -moz-box-shadow: 0 0 8px #000; box-shadow: 0 0 8px #000; }
.shadowSmall { -webkit-box-shadow: 0 0 2px #000; -moz-box-shadow: 0 0 2px #000; box-shadow: 0 0 2px #000; }

/* WRAPPER */
.wrap { margin: 0 auto; max-width: 1140px; position: relative; width: 100%; }
.overflow { overflow: hidden; }
.loading { width: 100%; height: 100%; background: url( 'https://www.minishettys-vom-oberlausitzblick.de/images/loading.gif' ) transparent center center no-repeat; }

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

/**
 * 2) STYLES CORE DESIGN
 **/
 
/* BREADCRUMBS */
#breadcrumbs {  }
ul#breadcrumb { overflow: hidden; }
ul#breadcrumb li { list-style: none; color: #fff; display: block; float: left; padding: 0; }
ul#breadcrumb li a { text-decoration: none; color: #fff; }
ul#breadcrumb li:hover a { color: #06283d; }
ul#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: #700000; padding: 1.5% 20%; margin-top: 2%; font-weight: bold; }
input.button:hover { background: #06283d; color: #fff ; cursor: pointer; }
.leftCB input {float: left; padding: 0 0 0 1%;}
.leftCB label {padding: 1.75% 0 0 1%;}

/* SEARCH */
#search { overflow: hidden; }
#search label { position: absolute; left: -9999px; }
input#search_searchBox { border: none; border-bottom: solid 1px #fff; background: transparent; width: 150px; float: left; color: #fff; }
input#search_searchBox:focus { border-bottom: solid 1px #06283D; }
button#search_submitSearch { border: none; background: transparent; color: #fff; }
button#search_submitSearch:hover { cursor: pointer; color: #06283D; }
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%; }
#searchForm { float: right; height: 18px; }

/* SOCIAL SHARING */
#share { clear: both; overflow: hidden; padding-bottom: 2%; }
#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; }

/**
 * 3) PROJECT ADAPTIONS
 **/
 
/* GENERAL SETTINGS */
 
/* HEADER */

header { overflow: hidden; height: 400px; position: relative; z-index: 50; background: url( 'https://www.minishettys-vom-oberlausitzblick.de/images/default/bg_header.jpg' ) transparent center center repeat-x; }
#mainImage { height: 340px; margin: 30px 0; background-position: center; background-repeat: no-repeat; background-size: cover; text-align: left; border: solid 2px #fff; }
#mainImage span { position: absolute; bottom: 2%; left: 2%; display: block; text-transform: uppercase; color: #fff; font-size: 300%; font-weight: 700; text-shadow: 1px 1px 1px #000; }
/*
#mainImage { 
	-webkit-border-radius: 50px; -webkit-border-top-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;
	-moz-border-radius: 50px; -moz-border-radius-topright: 5px; -moz-border-radius-bottomleft: 5px;
	border-radius: 50px; border-top-right-radius: 5px; border-bottom-left-radius: 5px;
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; 
	border: solid 2px #fff;
	overflow: hidden; } 
*/

/* MAIN */
main { }
main > .wrap { overflow: hidden; margin-top: 1%; background: #700000; overflow: hidden; }
#navAndSearch { height: 20px; padding: 5px 0; background: #700000; color: #fff; }
#navAndSearch #breadcrumb { width: 66%; padding: 0 2%; float: left;}
#navAndSearch #search { width: 26%; padding: 0 2%; float: right; }

hr.closeMain { border: none; clear: both; }

/* NAVIGATIONS */
nav { }

/* SIDEBARS */
aside#subNavi { width: 25%; float: left; }

/* CONTENT */
section {}
section#contentsection { background: #fff; width: 71%; padding: 0 2% 2%; float: right; min-height: 400px; }

/* FOOTER */
footer { overflow: hidden; color: #333; }

footer a { color: #333; }
footer a:hover { text-decoration: none; }


footer hr { border: none; border-bottom: solid 2px #fff; width: 80%; margin: 0 10%; clear: both;}
p.copyright { text-align: center; font-size: 90%; padding: 1%; } 

#moduleContent.kontakt { width: 48%; float: right; margin-left: 2%; overflow: hidden; }
.kontakt #text { float: left; margin-right: 2%; width: 48%; }


#text hr { border: none; border-bottom: solid 1px rgb(0, 110, 190); margin: 1% 0; padding: 1% 0; clear: both; }
#text img.border { border: 3px solid #700000; margin: 2%; padding: 2%; }

/* scroll to top button */ 
a#scrollToTop { z-index: 5000; position: fixed; right: 10px; bottom: 35px; padding: 1%; display: inline-block; background: rgba(6,40,61, 0.8); color: #fff; opacity: 0; }
a#scrollToTop:hover { background: rgba(112,0,0, 0.8); }

/* WIDGETS */

/**
 * 4) STYLES REGULAR USED EXTENSIONS
 **/
 
/* SLIDER HOME */
#sliderFrame { overflow: hidden; position: relative; width: 100%; height: 340px; z-index: 10; margin: 30px 0; }
ul#slider { list-style: none; position: relative; width: 1000%; height: 100%; overflow: hidden;  }
ul#slider > li.sliderItem { height: 100%; width: 10%; position: relative;float: left; background-position: center; background-repeat: no-repeat; background-size: cover; 
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; 
	border: solid 2px #fff; }
/*
ul#slider > li.sliderItem { -webkit-border-radius: 50px;
	-webkit-border-radius: 50px; -webkit-border-top-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;
	-moz-border-radius: 50px; -moz-border-radius-topright: 5px; -moz-border-radius-bottomleft: 5px;
	border-radius: 50px; border-top-right-radius: 5px; border-bottom-left-radius: 5px;
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; 
	border: solid 2px #fff;
	overflow: hidden; } 
*/

ul#slider > li .sliderTitle { position: absolute; bottom: 2%; left: 2%; text-align: left; }
ul#slider > li .sliderTitle .title { display: block; text-transform: uppercase; color: #fff; font-size: 300%; font-weight: 700; text-shadow: 1px 1px 1px #000; }
ul#slider > li .sliderTitle .subtitle { display: block; color: #fff; font-size: 120%; font-weight: 500; text-shadow: 1px 1px 1px #000; }

.paging { opacity: 0.5; position: absolute; top: 45%; z-index: 5000; }
.paging:hover { cursor: pointer; opacity: 1; }
#prevSlide { left: 0; }
#nextSlide { right: 0; }

/* NEWS */
ul#newsList { list-style-type: none; }
ul#newsList li { overflow: hidden; padding-bottom: 2%; margin-bottom: 2%; }
ul#newsList li:last-child { border-bottom: none; }
.mainNewsPic { width: 150px; height: 100px; float: left; margin: 0 1% 1% 0; padding: 0; border: 5px solid #fff; }
.lightbox img  { border: none; }

/* REFERENCES */
#ReferenceOverview { list-style: none; overflow: hidden; display: flex; flex-wrap: wrap; }
#ReferenceOverview li { float: left; overflow: hidden; width: 30.666%; margin: 2% 2% 20px; padding-bottom: 2%; text-align: center; }
	
#ReferenceOverview li img { width: 100%; height: auto; }
#ReferenceOverview li:nth-child(3n+1) { clear: both; margin-left: 0; }
#ReferenceOverview li:nth-child(3n+3) { margin-right: 0; }
/*#ReferenceOverview li:hover { background: #06283D;  border: solid 1px #06283D; }*/ 
.ReferenceOverviewTitle a { display: block; padding: 2% 5%; text-decoration: none; font-family: "Oswald",sans-serif; font-weight: 600; }

.ReferenceOverviewImage { max-height: 160px; overflow: hidden; }

.ReferenceImageBlock img { width: 100%; height: auto; display: block; }
.ReferenceImageBlock__ImageList { list-style: none; overflow: hidden; }
.ReferenceImageBlock__ImageList li { width: 49%; float: left; margin: 0 1%; }
.ReferenceImageBlock__ImageList li:nth-child( 2n+1 ){ margin-left: 0%; clear: both; }
.ReferenceImageBlock__ImageList li:nth-child( 2n+2 ){ margin-right: 0%; }
.ReferenceImageBlock__ImageList li img { width: 100%; height: auto; }

.ReferenceText { width: 65.666%; float: left; }

.ReferenceText td { border: 1px solid #333; }
.ReferenceText table tbody tr:first-child td { border-top: 1px solid #333; }

.backLinkBottom { clear: both; }

/* LINKS */
ul#linkList { list-style: none; }
ul#linkList li { overflow: hidden; margin: 5% 0 }
ul#linkList li img { float: left; margin-right: 4%; width: 36%; }
.linkWrapper { overflow: hidden; width: 60%; }
.linkWrapper h2 { padding: 0 0 1%; }

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

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

.articleInfoBox,
.articleGallery,
.articleImage {
	background: #eee; border: solid 1px #ccc; 
	-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: 2% 4%; }
.articleInfoBox .infoHeadline,
	.articleGallery .infoHeadline { background: rgb( 94, 193, 215 ); font-size: 140%; overflow: hidden; color: #fff; font-weight: 400; }
.articleInfoBox .infoContent { font-size: 90%; }
.articleImage { background: rgb( 94, 193, 215 ); color: #fff; border: 1px solid #ccc; }
.articleImage img { width: 100% !important; height: auto !important; display: block; }
.articleImage p { font-size: 90%; font-weight: 400; padding: 2% 4%; }
.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: rgb( 94, 193, 215 ); 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; }
.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: 90%; height: 90%; padding: 5%; background: rgba( 6, 40, 61, .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 #ccc;
    overflow: hidden;
    padding: 0;
}
.PluginContainer.IBoxCon .infoHeadline{
	font-family: "Oswald", sans-serif;
	background: rgb(94, 193, 215);
	padding: 2% 4%;
	font-weight: 400;
}
.PluginContainer.IBoxCon .infoContent p{
	padding: 2px;
}

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

.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: 400px; margin-bottom: 2%; }


textarea.link-textarea { width: 98%; height: 100px; border: 1px solid #ccc; padding: 1%; }