:root {

	--CSS_RGB_EBEE_ORGANGE	:	rgb(244, 150, 0);
	--CSS_RGB_EBEE_GREY 	: 	rgb(181, 171, 161);

	--CSS_RGB_EBEE_RED	: 	rgb(116, 0, 0);
	--CSS_RGB_RED_2		:	rgb(226, 0, 38);	/*Garo*/
	--CSS_RGB_RED_3		:	rgb(226, 10, 21);	/*webasto*/


	--CSS_RGB_WHITE		:	rgb(255,255,255);

	--CSS_RGB_GREEN		:	rgb(132,189,0);		/*chago*/
	--CSS_RGB_BLUE		:	rgb(0,143,219);		/*ensto*/
	--CSS_RGB_BLACK		:	rgb(48,48,48);		/*RevolutionE/Hummer background*/
	--CSS_RGB_CYAN		:	rgb(40,231,156);	/*RevolutionE/Hummer accent*/
	--CSS_RGB_BLUE_2	:	rgb(0,79,158);		/*webasto*/
	--CSS_RGB_BLUE_3	:	rgb(0,177,178);		/*eluminocity*/
	--CSS_RGB_BLUE_4	:	rgb(0,57,77);		/*eluminocity*/
	--CSS_RGB_SKY_BLUE	:	rgb(0,137,198);		/*Mennekes*/

}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
	position: fixed;
 	top: 0;
}


.branded {
	/*background-color : automatic set by vendor configuration */
}
.menu_active {
	/*background-color : automatic set by vendor configuration */
}

.subtitle {
	/*color : automatic set by vendor configuration */
}

.branded_popup {
	/*border-color : automatic set by vendor configuration */
	border-left: 5px solid;
    border-bottom: 5px solid;
    border-top: 5px solid;
}


.logo {
	width: inherit;
    height: inherit;
    max-width: 250px;
    min-width: 130px;
}


.bodystyle {
/*	background-color: automatic set by vendor configuration */
	font-family: arial;
  	font-size: 12px;
}

.header {
	background-color: white;
	margin: -5px;
	height: 112px;
}

.title {
	margin-left: 208px;
	margin-top: -26px;
	font-size: 20px;
	color:  var(--CSS_RGB_EBEE_GREY);
}

.content_default { 
	min-width: 200px;
	margin-left: 180px;
	margin-right: 50px;
	margin-bottom: 50px;
	padding: 20px;
}

/** Table design for the default values */
div.content_default>table {
	border-color: var(--CSS_RGB_EBEE_GREY);
	background-color: var(--CSS_RGB_EBEE_GREY); 
	margin-bottom: 10px;
}
/** Content non-default values */
.content {
	min-width: 200px;
	margin-left: 180px;
	margin-right: 50px;
	margin-bottom: 50px;
	padding: 20px;
}

/** Table design for the parameter values */
div.content>table {
	border-color: var(--CSS_RGB_WHITE);
	background-color: white;
	margin-bottom: 10px;
}

/** properties of the menu bar **/
.nav_left {
	/* background-color: automatic set by vendor configuration */
	width: 150px;
	padding-top: 17px;
	margin-left: 10px;
	float: left;
}
/** Menu: unordered html list description position */
.nav_left ul { 
	list-style: none;
	margin: 0;
	padding: 0;
}
/** List item details */
.nav_left ul li {
	background-color: white;
	margin: 5px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 14px;
	border-radius: 2px;
	cursor: pointer;
	font-size: 14px;
}
/** Link on the list item details */
.nav_left ul a, .nav_left ul a:hover, .nav_left ul a:active {
	text-decoration: none; 
	color: #000;
} 


.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding-right: 5px;
	padding-left: 205px; 	
	opacity: 0.8;
}


/* Popup BEGIN */
.hover_bkgr{
    background:rgba(0,0,0,.6);
    cursor:pointer;
    display:none;
    height:100%;
    position:fixed;
    text-align:center;
    top: 0;
 	bottom: 0;
	left: 0;
	right: 0;
    width:100%;
    z-index:10000;
}

.hover_bkgr > div {
    background-color: #fff;
    display: inline-block;
    max-width: 551px;
    min-height: 100px;
    height: 400px;
    vertical-align: middle;
    position: relative;
    border-radius: 2px;
    padding: 20px 5%;
    margin: 20px;	
    overflow-y:scroll;
    border-radius: 2px;
}
.popupCloseButton {
    background-color: #fff;
    border: 1px solid #999;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 7px;
    right: 20px;
    width: 25px;
    text-align: center;
}
.popupCloseButton:hover {
    background-color: rgb(181, 171, 161);
}
a.trigger_html_popup {
    cursor: pointer;
    color:#00e;
    text-decoration: underline;
}

/* Popup END */
