
html
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	padding: 0px;
	margin: 0px;
}

*, *:before, *:after
{
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	padding: 0px;
	margin: 0px;
}	

body
{
	font-family: 'ABBvoice', Verdana, Arial;
	font-size: 100%;
	line-height: 100%;
	font-weight: lighter;
	color: #6e6e6e;
	
	-webkit-text-size-adjust: 100%;
	
	padding: 0px;
	margin: 0px;
}

html, body, .wrapper
{
	height: 100%;
}

body > .wrapper { height: auto; min-height: 100%; }

h1,
h2,
h3
{
	font-weight: bold !important;
	line-height: 100%;
	
	color: #262626;
}

h1
{
	font-size: 200%;
	font-weight: bold !important;
	margin: 30px 0px 10px 0px;
}

h2
{
	font-size: 28px;
	font-weight: bold !important;
	margin: 30px 0px 10px 0px;
}

h3
{
	font-size: 22px;
	margin: 0px 0px 10px 0px;
	line-height: 30px;
}

h4
{
	font-size: 18px;
	font-weight: bold !important;
	margin: 0px 0px 10px 0px;
}

h1.shadowBlack,
h2.shadowBlack,
h3.shadowBlack,
h4.shadowBlack
{
	text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

h1.abbline,
h2.abbline,
h3.abbline
{
	margin-top:0px;
}
h1.abbline::before,
h2.abbline::before,
h3.abbline::before
{
	content: "— \a";
	content: "\2014";
	
	color: #ff000f;
	display: block;
}

sup
{
	font-size: 0.6em;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
	top: -0.6em;
}

span.nowrap
{
	white-space: nowrap;
}

p
{
	margin: 0px 0px 10px 0px;
	line-height: 100%;
}
p.header1
{
	font-size: 200%;
	color: #262626;
}
p.header2
{
	font-size: 150% !important;
	color: #262626;
}
p.header3
{
	font-size: 120%;
	color: #262626;
}

ul
{
	margin: 0px 0px 0px 10px;
	padding: 0px 0px 0px 10px;
}
ul li
{
	margin: 0px 0px 12px 5px;
	padding: 0px;
	font-size: 18px;
    line-height: 22px;
}

a
{
	text-decoration: none;
	color: #6e6e6e;
	
	-webkit-transition: opacity .3s, background-color .3s, color .3s, border-color .3s;
	-moz-transition: opacity .3s, background-color .3s, color .3s, border-color .3s;
	-o-transition: opacity .3s, background-color .3s, color .3s, border-color .3s;
	transition: opacity .3s, background-color .3s, color .3s, border-color .3s;
	transition-timing-function: ease-in;
}
a:hover
{
	color: #000;
}

input[type="text"], 
input[type="password"], 
input[type="file"], 
input[type="email"], 
input[type="phone"], 
input[type="date"], 
input[type="time"], 
input[type="number"], 
input[type="search"], 
select, textarea
{
	background-color: #fff;
	border: none;
	border-bottom: 1px solid #a9a9a9;
	outline: 0;
	
	margin: 0;
	padding: 0.4em;
	
	color: #262626;
	text-align: left;
	font-size: 100%;
	font-weight: normal;

	width: 100%;

	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;

	
}

input[type="checkbox"]
{
	background-color: #f4f4f4;
	color: #000;
	outline: 0;
	margin: 0;

	width: 20px;
	height: 20px;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	border: 1px solid #e2e2e2;
	
}
input[type="checkbox"]:checked
{
	background-color: #ccc;
	background-image: url('images/checkicon.png');
	background-repeat: no-repeat;
	background-size: cover;
	
}


select:not([size]):not([multiple])
{
	background-image: url('/en/ss/images/sortUp.png');
	background-repeat:no-repeat;
	background-position: center right;
}

input[type="button"], 
input[type="submit"]
{
	
	background-color: #ff0000;
	color: #fff;
	
	padding: 10px 25px;
	text-align: center;
	font-size: 100%;
	font-weight: regular;
	
	border: 0px;
	
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	
	-webkit-transition: background-color .3s, color .3s;
	-moz-transition: background-color .3s, color .3s;
	-o-transition: background-color .3s, color .3s;
	transition: background-color .3s, color .3s;
	transition-timing-function: ease-in;

}
input[type="button"].fullWidth, 
input[type="submit"].fullWidth
{
	width: 100%;
}

input[type="button"]:hover, 
input[type="submit"]:hover
{
	background-color: #ce0000;
	cursor: pointer;
}


/* ABBLINK BIG RED BUTTON */

div.sectionContent a.abblink01
{
	background-color: #ff0000;
	color: #fff;
	display: inline-block;
	padding: 10px 25px;
	text-align: center;
	font-size: 21;
	font-weight: bold;
	
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	text-transform: uppercase;
	
}
div.sectionContent a.abblink01.fullWidth
{
	width: 100%;
}
div.sectionContent a.abblink01.textLeft{ text-align: left; }
div.sectionContent a.abblink01.textCenter{ text-align: center; }
div.sectionContent a.abblink01.textRight{ text-align: right; }

div.sectionContent a.abblink01:hover
{
	/* color: #f4f4f4; */
	background-color: #ce0000;
}


/*
LAYOUT SECTION
LAYOUT SECTION
*/

div.section
{
	display: inline-block;
	float: left;
	width: 100%;
}
div.innersection
{
	display: inline-block;
	float: left;
	width: 100%;
}
div.container_12
{
	display: inline-block;
/*	float: left;*/
	width: 100%;
	padding: 10px;
}

div.box_00,
div.box_01,
div.box_02,
div.box_03,
div.box_04,
div.box_05,
div.box_06,
div.box_07,
div.box_08,
div.box_09,
div.box_10,
div.box_11,
div.box_12 { display: inline-block; float: left; padding: 0px 10px 0px 10px; }

div.box_push { padding-top: 10px; }
	
div.box_alpha { padding-left: 0px; }
div.box_omega { padding-right: 0px; }

div.box_paragraph { margin-bottom: 10px; }


div.box_00 { width: 0%; }
div.box_01 { width: 8.33333333%; }
div.box_02 { width: 16.66666667%; }
div.box_03 { width: 25%; }
div.box_04 { width: 33.33333333%; }
div.box_05 { width: 41.66666667%; }
div.box_06 { width: 50%; }
div.box_07 { width: 58.33333333%; }
div.box_08 { width: 66.66666667%; }
div.box_09 { width: 75%; }
div.box_10 { width: 83.33333333%; }
div.box_11 { width: 91.66666667%; }
div.box_12 { width: 100%; }




img{
	vertical-align:middle;
	display:block;
	max-width:100%;
}




div.sectionHeader
{
	background: #fff;
    box-shadow: 0px 1.5px 4px rgba( 0,0,0,0.24 ), 0px 1.5px 6px rgba( 0,0,0,0.12 );
    position: relative;
    	z-index: 1;
}
div.sectionHeader div.abblogocontainer
{
	height: 75px;
	padding: 20px 10px;
}
div.sectionHeader img
{
	max-width: 100%;
}
div.sectionHeader img.abblogo
{
	height: 35px;
}



div.sectionMenu
{
    
}
div.sectionMenu a.menuitem
{

}
div.sectionMenu a.menuitem:hover
{

}

div.sectionMenu table
{
	width: 100%;
}


/* must be same height as the footer */

div.sectionContent
{
	font-size: 100%;
	line-height: 110%;
	color: #262626;
	
	overflow: inherit; 
	/*	min-height: 500px; */
	/*	height: auto; */
	
	/* set to footer height */
	/* WHY ?? */
/*	padding-bottom: 100px;*/
}
div.sectionContent a
{
	color: red;
	font-size: 18px;
   line-height: 26px;
	display: inline-block;
}
div.sectionContent a:not(.abblink01):hover{
	text-decoration: underline;
}
div.sectionContent p
{
	margin-bottom: 16px;
   font-size: 18px;
   line-height: 26px;
}
div.sectionContent ul
{
	margin-bottom: 16px;
}

/* must be same height as the footer */

div.sectionFooter
{
	background-color: #6e6e6e;
	
	font-size: 90%;
	color: #fff;
	
	position: relative;
	bottom: 0;
	
   height: 100px;
   margin-top: 30px;
   /* negative value of footer height */
	/* WHY ?? */
	/* margin-top: -100px; */
   clear: both;
}

div.sectionFooter table.socialtable
{
	border-collapse: collapse;
}
div.sectionFooter table.socialtable td
{
	min-width: 5px;
}
div.sectionFooter table.socialtable td a
{
	display: block;
	height: 30px;
	width: 30px;
	
	background-image: url('/en2/images/abb_logo_red02.png');
	background-repeat:no-repeat;
	background-position: center center;
	background-size: contain;
}
div.sectionFooter table.socialtable td a.facebook{ background-image: url('/en2/ico_facebook.png'); }
div.sectionFooter table.socialtable td a.twitter{ background-image: url('/en2/ico_twitter.png'); }
div.sectionFooter table.socialtable td a.youtube{ background-image: url('/en2/ico_youtube.png'); }
div.sectionFooter table.socialtable td a.linkedin{ background-image: url('/en2/ico_linkedin.png'); }


/* PREDEFINED PADDINGS AND MARGINS */

div.container_padding_top_large { padding-top: 30px; }
div.container_padding_bottom_large { padding-bottom: 30px; }
div.container_padding_left_large { padding-left: 30px; }
div.container_padding_right_large { padding-right: 30px; }

div.container_padding_top_medium { padding-top: 20px; }
div.container_padding_bottom_medium { padding-bottom: 20px; }
div.container_padding_left_medium { padding-left: 20px; }
div.container_padding_right_medium { padding-right: 20px; }

div.container_margin_top_large { margin-top: 30px; }
div.container_margin_bottom_large { margin-bottom: 30px; }
div.container_margin_left_large { margin-left: 30px; }
div.container_margin_right_large { margin-right: 30px; }

div.container_margin_top_medium { margin-top: 20px; }
div.container_margin_bottom_medium { margin-bottom: 20px; }
div.container_margin_left_medium { margin-left: 20px; }
div.container_margin_right_medium { margin-right: 20px; }



		

		
		
a.sectionMenuBurger
{
	display: inline-block;
	position: absolute;
	z-index: 4;
	
	right: 20px;
	top: 10px;
	
	padding: 20px;
	
	background-color: #f4f4f4;
	background-color: #fff;
	background-image: url('/en/ss/images/menuburger.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
a.sectionMenuBurger:hover
{
	cursor: pointer;
}	
a.sectionMenuBurger.sectionMenuBurger_close
{
	background-image: url('/en/ss/images/menuburger_close.png');
}
		




div.dialogBox
{
	color: #fff;
	
	background-color: #a9a9a9;
	
	background-image: url('/en/ss/images/instruction.png');
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: 10px 10px;
	
	padding: 10px 10px 10px 40px;
	
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	
	min-height: 40px;
}

div.dialogSuccess
{
	background-color: #00b704;
}
div.dialogError
{
	background-color: #b70000;
}







/* mobile */
@media all and (max-width: 768px)
{

	div.container_12
	{
		width: 100%;
	}
	

	div.mobile_box_00 { width: 0%; }
	div.mobile_box_01 { width: 8.33333333%; }
	div.mobile_box_02 { width: 16.66666667%; }
	div.mobile_box_03 { width: 25%; }
	div.mobile_box_04 { width: 33.33333333%; }
	div.mobile_box_05 { width: 41.66666667%; }
	div.mobile_box_06 { width: 50%; }
	div.mobile_box_07 { width: 58.33333333%; }
	div.mobile_box_08 { width: 66.66666667%; }
	div.mobile_box_09 { width: 75%; }
	div.mobile_box_10 { width: 83.33333333%; }
	div.mobile_box_11 { width: 91.66666667%; }
	div.mobile_box_12 { width: 100%; }
	
	
	div.mobile_text-left { text-align: left; }
	div.mobile_text-center { text-align: center; }
	div.mobile_text-right { text-align: right; }


	.hideMobile { display: none; }
	.hideTablet { display: ; }
	.hideScreen { display: ; }
	
	
	.mobile_margin_top_large { margin-top: 30px; }
	.mobile_margin_right_large { margin-right: 30px; }
	.mobile_margin_bottom_large { margin-bottom: 30px; }
	.mobile_margin_left_large { margin-left: 30px; }
	
	.mobile_margin_top_medium { margin-top: 20px; }
	.mobile_margin_right_medium { margin-right: 20px; }
	.mobile_margin_bottom_medium { margin-bottom: 20px; }
	.mobile_margin_left_medium { margin-left: 20px; }
	
	.mobile_margin_top_small { margin-top: 10px; }
	.mobile_margin_right_small { margin-right: 10px; }
	.mobile_margin_bottom_small { margin-bottom: 10px; }
	.mobile_margin_left_small { margin-left: 10px; }
	
	.mobile_margin_top_tiny { margin-top: 5px; }
	.mobile_margin_right_tiny { margin-right: 5px; }
	.mobile_margin_bottom_tiny { margin-bottom: 5px; }
	.mobile_margin_left_tiny { margin-left: 5px; }
	

	
	
	div.sectionMenu
	{	
		position: relative;
		
		z-index: 10;
		
		overflow-y: auto;
	}
	div.sectionMenu table
	{	
		width: 100%;
		border-collapse: collapse;
	}
	div.sectionMenu table td
	{	
		padding-bottom: 20px;
		text-align: right;
	}
	
	.sectionMenuBackground
	{
		background-color: rgba(0,0,0, 0.7);
	}
	
	div.sectionMenu a.menuitem
	{	
		display: block;
		width: 100%;
		background: rgba( 255,255,255, 0.9 );
		border: 1px solid #fff;
		padding: 20px 20px 20px 20px;
		margin-bottom: 0px;
		
		margin-left: 0%;
		margin-right: 0%;
	}
	div.sectionMenu a.menuitem:hover
	{
		background-color: #f4f4f4;
	}
	
	
	div.sectionFooter table.socialtable
	{
		margin: 0px auto;
	}
	

}

/* tablet - mobile (landscape) */
/* @media all and (min-width: 426px) and (max-width: 1023px) */
@media all and (min-width: 768px) and (max-width: 1024px)
{

	div.container_12
	{
		width: 100%;
	}
	

	div.tablet_box_00 { width: 0%; }
	div.tablet_box_01 { width: 8.33333333%; }
	div.tablet_box_02 { width: 16.66666667%; }
	div.tablet_box_03 { width: 25%; }
	div.tablet_box_04 { width: 33.33333333%; }
	div.tablet_box_05 { width: 41.66666667%; }
	div.tablet_box_06 { width: 50%; }
	div.tablet_box_07 { width: 58.33333333%; }
	div.tablet_box_08 { width: 66.66666667%; }
	div.tablet_box_09 { width: 75%; }
	div.tablet_box_10 { width: 83.33333333%; }
	div.tablet_box_11 { width: 91.66666667%; }
	div.tablet_box_12 { width: 100%; }
	
	
	div.tablet_text-left { text-align: left; }
	div.tablet_text-center { text-align: center; }
	div.tablet_text-right { text-align: right; }
	
	
	.hideMobile { display: ; }
	.hideTablet { display: none; }
	.hideScreen { display: ; }
	
	
	.tablet_margin_top_large { margin-top: 30px; }
	.tablet_margin_right_large { margin-right: 30px; }
	.tablet_margin_bottom_large { margin-bottom: 30px; }
	.tablet_margin_left_large { margin-left: 30px; }
	
	.tablet_margin_top_medium { margin-top: 20px; }
	.tablet_margin_right_medium { margin-right: 20px; }
	.tablet_margin_bottom_medium { margin-bottom: 20px; }
	.tablet_margin_left_medium { margin-left: 20px; }
	
	.tablet_margin_top_small { margin-top: 10px; }
	.tablet_margin_right_small { margin-right: 10px; }
	.tablet_margin_bottom_small { margin-bottom: 10px; }
	.tablet_margin_left_small { margin-left: 10px; }
	
	.tablet_margin_top_tiny { margin-top: 5px; }
	.tablet_margin_right_tiny { margin-right: 5px; }
	.tablet_margin_bottom_tiny { margin-bottom: 5px; }
	.tablet_margin_left_tiny { margin-left: 5px; }
	
	
	
	
	div.sectionMenu
	{	
		position: relative;
		
		z-index: 10;
		
		overflow-y: auto;
	}
	div.sectionMenu table
	{	
		width: 100%;
		border-collapse: collapse;
	}
	div.sectionMenu table td
	{	
		padding-bottom: 20px;
	}
	
	.sectionMenuBackground
	{
		background-color: rgba(0,0,0, 0.7);
	}
	
	div.sectionMenu a.menuitem
	{	
		display: block;
		width: 60%;
		background: rgba( 255,255,255, 0.9 );
		border: 1px solid #fff;
		padding: 20px 20px 20px 20px;
		margin-bottom: 0px;
		
		margin-left: 20%;
		margin-right: 20%;
	}
	div.sectionMenu a.menuitem:hover
	{
		background-color: #f4f4f4;
	}

}



/* monitor - tablet (lanscape) */
@media all and (min-width: 1024px)
{
	
	div.container_12
	{
		width: 1024px;
		
		margin-left: calc((100% - 1024px)/2);
		margin-right: calc((100% - 1024px)/2);
	}
	

	div.screen_box_00 { width: 0%; }
	div.screen_box_01 { width: 8.33333333%; }
	div.screen_box_02 { width: 16.66666667%; }
	div.screen_box_03 { width: 25%; }
	div.screen_box_04 { width: 33.33333333%; }
	div.screen_box_05 { width: 41.66666667%; }
	div.screen_box_06 { width: 50%; }
	div.screen_box_07 { width: 58.33333333%; }
	div.screen_box_08 { width: 66.66666667%; }
	div.screen_box_09 { width: 75%; }
	div.screen_box_10 { width: 83.33333333%; }
	div.screen_box_11 { width: 91.66666667%; }
	div.screen_box_12 { width: 100%; }
	
	
	div.screen_text-left { text-align: left; }
	div.screen_text-center { text-align: center; }
	div.screen_text-right { text-align: right; }
	
	
	.hideMobile { display: ; }
	.hideTablet { display: ; }
	.hideScreen { display: none; }
	
	
	.screen_margin_top_large { margin-top: 30px; }
	.screen_margin_right_large { margin-right: 30px; }
	.screen_margin_bottom_large { margin-bottom: 30px; }
	.screen_margin_left_large { margin-left: 30px; }
	
	.screen_margin_top_medium { margin-top: 20px; }
	.screen_margin_right_medium { margin-right: 20px; }
	.screen_margin_bottom_medium { margin-bottom: 20px; }
	.screen_margin_left_medium { margin-left: 20px; }
	
	.screen_margin_top_small { margin-top: 10px; }
	.screen_margin_right_small { margin-right: 10px; }
	.screen_margin_bottom_small { margin-bottom: 10px; }
	.screen_margin_left_small { margin-left: 10px; }
	
	.screen_margin_top_tiny { margin-top: 5px; }
	.screen_margin_right_tiny { margin-right: 5px; }
	.screen_margin_bottom_tiny { margin-bottom: 5px; }
	.screen_margin_left_tiny { margin-left: 5px; }
	
	
	div.sectionMenu
	{	
		
	}
	div.sectionMenu table
	{	
		width: 100%;
		border-collapse: collapse;
	}
	div.sectionMenu table td
	{	
		height: 75px;
		/*
		padding: 20px 0px;
		*/
		text-align: right;
		vertical-align: bottom; 
	}
	
	.sectionMenuBackground
	{
	
	}
	
	div.sectionMenu a.menuitem
	{
		display: inline-block;
		line-height: 100%;
		white-space: nowrap;
		padding: 17px 7px;
		border-bottom: 2px solid #fff;
	}
	div.sectionMenu a.menuitem:hover
	{
		background-color: #fff;
		color: #000;
		
		border-bottom: 2px solid #ff0000;
	}
	
}
	

.brochures_container > div{
	display: flex;
	flex-direction: column;
}
@media screen and (min-width: 1025px){
	.brochures_container img{
		max-height: 425px;
	}
}
.brochures_container h3{
	margin-top:20px;
}
.brochures_container p{
	margin-top: auto;
}