.el-backgroundbox {
	box-sizing: border-box;		
}

/* Overlay */

.el-backgroundbox {
	background-color: #f3f3f3;
}
.el-backgroundbox .overlay {
	min-height: 100px;
	height: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	box-sizing: border-box;
}
.el-backgroundbox.caTop .overlay {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.el-backgroundbox.caOver .overlay {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding-top: 0px !important;
	z-index: 2;
}
.el-backgroundbox.caOver:before {
	content: '';
	display: block;
	background-color: #fff;
	width: 100%;
	height: 80px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.el-backgroundbox.caBottom .overlay {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.el-backgroundbox .bhBackgroundImage {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.el-backgroundbox.spaceAround .bhContainer {
	height: 100%;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-around;
}

/* Grüne Box */

.el-backgroundbox.greenbox {
    background-color: #39DB4E;
    background-image: url(background-box.jpg);
    background-repeat: repeat;
    background-position: center center;
    background-size: 1920px 750px;
}

/* Ausrichtung horizontal */

.el-backgroundbox.caHLeft .overlay > .bhContainer > .bhElement {
	margin-left: 0px;
	margin-right: auto;
}
.el-backgroundbox.caHRight .overlay > .bhContainer > .bhElement {
	margin-right: 0px;
	margin-left: auto;
}

/* PADDING */

/* right left */
.el-backgroundbox.paddingRLdefault .bhElementInner .overlay {
	padding: 0px;
}
.el-backgroundbox.paddingRL40 .bhElementInner .overlay {
	padding: 0 40px;
}
.el-backgroundbox.paddingRL60 .bhElementInner .overlay {
	padding: 0 60px;
}
.el-backgroundbox.paddingRL80 .bhElementInner .overlay {
	padding: 0 80px;
}

/* top */
.el-backgroundbox.paddingTopDefault .bhElementInner .overlay {
	padding-top: 0px;
}
.el-backgroundbox.paddingTop40 .bhElementInner .overlay {
	padding-top: 40px;
}
.el-backgroundbox.paddingTop60 .bhElementInner .overlay {
	padding-top: 60px;
}
.el-backgroundbox.paddingTop100 .bhElementInner .overlay {
	padding-top: 100px;
}
.el-backgroundbox.paddingTop125 .bhElementInner .overlay {
	padding-top: 125px;
}
.el-backgroundbox.paddingTop150 .bhElementInner .overlay {
	padding-top: 150px;
}
.el-backgroundbox.paddingTop200 .bhElementInner .overlay {
	padding-top: 200px;
}

/* bottom */
.el-backgroundbox.paddingBottomDefault .bhElementInner .overlay {
	padding-bottom: 0px;
}
.el-backgroundbox.paddingBottom40 .bhElementInner .overlay {
	padding-bottom: 40px;
}
.el-backgroundbox.paddingBottom60 .bhElementInner .overlay {
	padding-bottom: 60px;
}
.el-backgroundbox.paddingBottom100 .bhElementInner .overlay {
	padding-bottom: 100px;
}
.el-backgroundbox.paddingBottom125 .bhElementInner .overlay {
	padding-bottom: 125px;
}
.el-backgroundbox.paddingBottom150 .bhElementInner .overlay {
	padding-bottom: 150px;
}
.el-backgroundbox.paddingBottom200 .bhElementInner .overlay {
	padding-bottom: 200px;
}