/*page start -----------------------------------------------------*/
html {
    height: 100%;
    position: relative;
    background-color: #fff;
	max-width: 1500px;
	margin: 0 auto;
}

body {
    max-width: 1500px;
    min-height: 100%;
    margin: 0 auto;
    display: table;
    height: 100%;
    position: relative;
    font-family: 'HeidelbergGothicMl';

    background-attachment: fixed;
    background-position: top left;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    -webkit-box-shadow: 0 0 35px -10px #000;
    -moz-box-shadow: 0 0 35px -10px #000;
    box-shadow: 0 0 35px -10px #000;
}

:lang(ru_RU),
:lang(ru_RU) body.home > main > article .welcome-box .header > p  {
	font-family: 'HeidelbergGothicMl', Arial;
}

body.home > main > article,
body.home > header {
    background: none;
}

body.home > header > nav,
body.home > main > aside {
    background-color: rgba(255, 255, 255, 0.5);
}
body.home > main > article .welcome-box .header > p {
	font-family: 'HeidelbergGothicMlbold';
}

h1 {
    font-family: 'HeidelbergGothicMl';
    font-weight: normal;
    font-size: 28px;
	line-height: 32px;
}

h2 {
    font-family: 'HeidelbergGothicMlbold';
    font-weight: normal;
	line-height: 26px;
}

h3 {
    font-family: 'HeidelbergGothicMllightitalic';
    font-weight: normal;
    font-size: 23px;
	line-height: 26px;
}

/*.italic {	
    font-style: italic;
}*/

.hg_bold {
	font-family: 'HeidelbergGothicMlbold' !important;
}

a {
    transition: color .3s ease-in-out, background-color .3s ease-in-out, opacity .3s ease-in-out;
}

a:hover {
    text-decoration: underline;
}

a, a:hover, a:active, a:focus {
    outline: 0;
}

/* rating fix */
div.rating-cancel,
div.star-rating {
    text-align: left;
}

input[type="text"],
input[type="search"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type=submit],
button,
textarea {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
	border-radius: 12px;
    background-clip: padding-box;
	-webkit-background-clip: padding-box;
}

/* UM module changes 06 2015 */
#newsletter_privacy_error {
	margin-bottom: 15px;
	color: red;
}

.pi-form-input .pi-checkbox-control {
	display: block;
	width: 100%;
}

.pi-form-control__has-error input[type="checkbox"], .pi-form-control__has-error label {
	color:red;
}

.pi-form-control__has-error input[type="text"] {
	background-color: red;
}
/* --- */

.newsletter-subscription #form_error, .newsletter-subscription #term_error, .newsletter-subscription #contact_form_error, .newsletter-subscription #contact_term_error, 
.newsletter-subscription #request_form_error, .newsletter-subscription #request_term_error  {
	color: red;
	display:none;
}

.newsletter-subscription input::-webkit-input-placeholder {
	color:gray;
}

.newsletter-subscription input::-moz-placeholder {
	color:gray;
}

.newsletter-subscription input:-ms-input-placeholder {
	color:gray;
}

.newsletter-subscription inputinput:-moz-placeholder {
	color:gray;
}

.newsletter-subscription .error input::-webkit-input-placeholder {
	color:white;
}

.newsletter-subscription .error input::-moz-placeholder {
	opacity: 1;
	color:white;
}

.newsletter-subscription .error input:-moz-placeholder {
	opacity: 1;
	color:white;
}

.newsletter-subscription .error input:-ms-input-placeholder {
	color:white;
}

span.circle_20.grey.resultcircle span {
	display: block;
	position: relative;
	top: 3px;
}

input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #000;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #000;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #000;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #000;
}

input[type="text"],
input[type="search"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea  {
    padding: 4px 8px;
    border: solid 1px rgba(0, 0, 0, 0.2);

}

select {
    margin: 0;
    vertical-align: middle;
    cursor: pointer;
    font-weight: normal;
    display: inline-block;
    height: 30px;
    padding: 4px 8px;
    vertical-align: middle;
    border: solid 1px rgba(0, 0, 0, 0.2);

    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

select.compare {
	max-width: 210px;
}

button, input[type=submit] {
    padding: 4px 16px;
    color: #fff;
    font-weight: bold;
    border: none;
	background: #2E6BA2;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#2E6BA2), to(#003F75));
	background: -webkit-linear-gradient(#2E6BA2, #003F75);
	background: -moz-linear-gradient(#2E6BA2, #003F75);
	background: -ms-linear-gradient(#2E6BA2, #003F75);
	background: -o-linear-gradient(#2E6BA2, #003F75);
	background: linear-gradient(#2E6BA2, #003F75);
}

button:hover, input[type=submit]:hover {
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#003F75), to(#2E6BA2));
	background: -webkit-linear-gradient(#003F75, #2E6BA2);
	background: -moz-linear-gradient(#003F75, #2E6BA2);
	background: -ms-linear-gradient(#003F75, #2E6BA2);
	background: -o-linear-gradient(#003F75, #2E6BA2);
	background: linear-gradient(#003F75, #2E6BA2);
}
.redbutton {
	background: #eb6545;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#eb6545), to(#b93313));
	background: -webkit-linear-gradient(#eb6545, #b93313);
	background: -moz-linear-gradient(#eb6545, #b93313);
	background: -ms-linear-gradient(#eb6545, #b93313);
	background: -o-linear-gradient(#eb6545, #b93313);
	background: linear-gradient(#eb6545 , #b93313);
}
.redbutton:hover {
	background: #003F75;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#b93313), to(#eb6545));
	background: -webkit-linear-gradient(#b93313, #eb6545);
	background: -moz-linear-gradient(#b93313, #eb6545);
	background: -ms-linear-gradient(#b93313, #eb6545);
	background: -o-linear-gradient(#b93313, #eb6545);
	background: linear-gradient(#b93313 , #eb6545);
}

body > header,
body > nav,
body > main,
body > footer {
    display: table-row;
}

body > main > article,
body > main > aside {
    display: table-cell;
}

body > header,
body > main > aside {
    background-color: rgba(255, 255, 255, 0.5);
}

body > header {
    height: 100px;
}

body > header:before {
    display: table-cell;
    width: 66.66%;
    content: ' ';
}

body > nav {
    height: 100px;

    color: #fff;
    font-family: 'HeidelbergGothicMlLight';
    position: relative;
    z-index: 20;
}

body > nav:after {
    display: table-cell;

    content: ' ';
}

body > main {
    font-size: 15px;
}

body > header,
body > footer,
body > main > article > footer {
    font-size: 14px;
}

body > footer {
	font-size: 14px;
}

body > main > article {
    padding: 0 0 48px 0;
    vertical-align: top;
    background-color: #fff;
}

body > header:before,
body > main > article {
    width: 66.66%;
    position: relative;
    z-index: 10;
}

body > main > aside {
    width: 33.33%;
}

body > footer {
    height: 105px;
    position: relative;
    z-index: 10;
}

body > aside {
    display: none;
}
/*page end -----------------------------------------------------*/

/*content start -----------------------------------------------------*/
body > main > aside a {
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

body > main > aside > ul {
    margin: 88px 0 0 0;
    padding: 0;
    list-style: none;
    min-height: 600px;
}

body > main > aside > ul > li {
    margin: 22px 0 0 0;
    width: 100%;
    height: 130px;
    background-color: #fff;
    position: relative;
    vertical-align: top;
}

body > header form.search fieldset {
	border: none;
	margin: -1px 0 0;
	padding: 0;
}

body > header form.search .search_wrapper {
	width: 200px;
	height: 25px;
	border-radius: 12px;
	background-color: white;
	border: 1px solid lightgrey;
}

body > main > aside > ul > li.finance {
    margin: 22px 0 0 0;
    width: 100%;
    height: 135px;
    background-color: #fff;
    position: relative;
}

body > main > aside > ul > li.finance table {
    margin-top: 8px;
    width: 100%;
}

body > main > aside > ul > li.finance table th {
    text-align: left;
}

body > main > aside > ul > li.finance table th:before {
    color: #004b8d;
    font-family: 'IcoMoon';
    font-size: 13px;
    content: '\e00b';
    font-style: normal;
    height: 13px;
}

body > main > aside > ul > li.finance table .minus {
    color: #f00;
}

body > main > aside > ul > li.finance table .plus {
    color: #00AA00;
}

body > main > aside > ul > li > figure {
    height: 135px;
    width: 125px;
    max-width: 160px;
    float: left;
    overflow: hidden;
}

body > main > aside > ul > li > figure.big {
    height: 135px;
    width: 510px;
	max-width:510px;
	position: relative;
}

body > main > aside > ul > li > figure.big h1 {
	position: absolute;
	bottom: 0px;
	right: 0;
	background-color: #FFF;
	padding: 4px 20px 2px 10px;
	max-width: 300px;
	letter-spacing: -1px;
	color: #014B8C;
	line-height: 32px;
}

body > main > aside > ul > li > figure {
    height: 135px;
    width: 125px;
    max-width: 160px;
    float: left;
    overflow: hidden;
}

body > main > aside > ul > li > div {
    overflow: hidden;
    padding: 0 16px;
}

body > main > aside > ul > li > div.videocontainer_video {
	display: block;
	width: 121px;
	height: 130px;
	float: left;
	padding-left:0;
	padding-right:0;
}

body > main > aside > ul > li > div > h1 {
    letter-spacing: -1px;
    color: #014b8c;
    margin: 0;
    padding: 12px 0 0 0;
    border-bottom: solid 1px #a8b1b6;
    line-height: 32px;
}

body > main > aside > ul > li.red > div > h1 {
    color: #e53e16;
}

body > main > aside > ul > li.blue > div > h1 {
    color: #004b8d;
}

body > main > aside > ul > li.grey > div > h1 {
    color: rgb(125,131,139);
}

body > main > aside > ul > li > div > p {
    margin: 8px 0 0 0;
	line-height: 18px;
}


body > main > article h1 {
    margin: 36px 24px 21px 48px;
}

body > main > article > section {
	margin-bottom: 16px;
}

body > main > article > section > h1 {
    margin: 0px 72px 21px 48px;
}

body > main > article h2, body > main > article h3{

	margin: 0px 72px 15px 48px;

}

body > main > article a {
    color: #004b8d;
}

body > main > article hr {
    background: #A8B1B6;
    border-top: 1px solid #A8B1B6;
    color: #A8B1B6;
    margin: 24px 72px 24px 48px;
}

body > main > article p,
body > main > article ul,
body > main > article footer {
    margin: 0 24px 0px 48px;
}

body > main > article p,
body > main > article ul {
margin-bottom: 18px;
line-height: 21px;
}

body > main > article p.list {
    margin-left: 16px;
}
body > main > article p.list:before {
    content: "-";
    margin-left: -16px;
    display: inline-block;
}

body > main > article div.sitemap {
    margin: 0 48px 60px 48px;
}

body > main > article div.sitemap h2 {
    margin: 0;
    color: #004B8D;
    font-size: 17px;
    font-style: normal;
}

body > main > article div.sitemap a {
    margin: 0;
    color: #000;
    font-size: 17px;
    font-style: normal;
    text-decoration: none;
}

body > main > article div.sitemap a:hover {
    text-decoration: underline;
}

body > main > article div.sitemap  ul ul li {
	list-style-type: disc;
	list-style-position: outside;
	display: list-item;
	margin-left: 15px;
	
}

body > main > article div.sitemap > ul > li {
    width: 33%;
	list-style-type: none;
}


body > main > article div.sitemap ul,
body > main > article div.sitemap ul li {
    padding: 0;
    margin: 0;
}

body > main > article div.sitemap > ul {    
    padding-bottom: 50px;
    margin: 0;
}


body > main > article > *:first-child {
    margin-bottom: 16px;
    margin-top: 16px;
    position: relative;
}

body > main > article h1,
body > main > article h2 {
    letter-spacing: -1px;
}

body > main > article ul {
    list-style-type: none;
    padding: 0;
}

body > main > article ul > li {
    display: block;
    position: relative;
    padding: 0 0 6px 24px;
}
body > main > article ol > li {
	list-style-position: outside;
    margin-left: 32px;
    padding: 0 0 6px;
}

body > main > article ul.bullet {
	list-style-type: disc;
}

body > main > article div.text-col ul.bullet {

}



body > main > article ul.bullet > li {
	display: list-item;
	list-style-position: outside;
    margin-left: 23px;
    padding: 0 0 6px;
}

body > main > article  ul.check > li:before {
    content: '\e002';
    font-family: IcoMoon;
    display: block;
    float: left;
    height: 100%;
    position: absolute;
    left: 0;
    color: #014b8c;
}
body > main > article ul.dashed-list > li {
    list-style-position: outside;
    margin-left: 23px;
    padding: 0 0 6px;
}
body > main > article ul.dashed-list > li:before {
    color: #000000;
    content: "-";
    margin-left: -16px;
	padding-right: 10px
}

body > main > article .selected {
    font-weight: bold;
}

body > main > article .breadcrumb {
    list-style: none;
    display: inline-block;
    padding: 0;
	max-width: 870px;
}

body > main > article .breadcrumb > li {
    float: left;
    display: inline-block;
    padding: 0;
}

body > main > article .breadcrumb > li:before {
    display: none;
}

body > main > article .breadcrumb > li:after {
    content: '\00a0>\00a0';
}

body > main > article .breadcrumb > li.selected:after {
    content: '';
}

body > main > article .breadcrumb > li > a {
    color: #000;
    text-decoration: none;
}

body > main > article .breadcrumb > li > a:hover {
    text-decoration: underline;
}

body > main > article .tabs {
    height: auto;
	margin-bottom: 40px;
}

body > main > article .tabs > nav {
    margin: 10px 72px 0 48px;
}

body > main > article .tabs > nav > ul {
    list-style: none;
    padding: 0;
    width: 100%;
    display: table;
    border: solid 1px #cfcfcf;
    background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
    background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
    height: 35px;
    margin: 0;
}

body > main > article .tabs > nav > ul > li {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 0;
    border-left: solid 1px #cfcfcf;
    padding: 0 20px;
	line-height: 18px;
}

body > main > article .tabs > nav > ul > li:before {
    display: none;
}

body > main > article .tabs > nav > ul > li.selected,
body > main > article .tabs > nav > ul > li:hover {
    background-image: -webkit-linear-gradient(top, #3c3c3c, #6e6e6e);
    background-image: linear-gradient(to bottom, #3c3c3c, #6e6e6e);
}

body > main > article .tabs > nav > ul > li.selected > a,
body > main > article .tabs > nav > ul > li:hover > a {
    color: #fff;
    font-weight: normal;
}

body > main > article .tabs > nav > ul > li.selected:after {
    content: ' ';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    margin: 0 auto;
    right: 0;
    left: 0;
    bottom: -6px;
    border-top: 6px solid #6e6e6e;
}

body > main > article .tabs > nav > ul > li.selected > a {
    color: #fff;
}

body > main > article .tabs > nav > ul > li > a {
    color: #000;
    text-decoration: none;
    width: 100%;
    display: inline-block;
    /*border-left: solid 1px #cfcfcf;*/
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
}

body > main > article .tabs > nav > ul > li.selected > a,
body > main > article .tabs > nav > ul > li:first-child > a {
    border-left: none;
}

body > main > article .tabs > section {
    display: none;
}

body > main > article .accordion p {
	margin-right: 72px;
	padding-left: 18px;
}


body > main > article .accordion > h3 {
    position: relative;
    padding: 0 0 0 18px;
	margin-bottom: 15px;
}

body > main > article .accordion > h3 + div {
    display: none;
}

body > main > article .accordion > h3.selected {
    font-weight: normal;
}

body > main > article .accordion > h3.selected + div {
    display: block;
}

body > main > article .accordion > h3:hover {
    cursor: pointer;
}

body > main > article .accordion > h3:before {
    position: absolute;
    left: 0;
    background: transparent url("../../img/icons/accordion_plus.png") no-repeat top left;
    top: 5px;
    content: ' ';
    height: 14px;
    width: 14px;
}

body > main > article .accordion > h3.selected:before {
    background-image: url("../../img/icons/accordion_minus.png");
}

body > main > article .gray-background {
    margin: 48px 0 40px 0;
    background-color: #f1f2f4;
    padding: 16px 48px;
    overflow: hidden;
}

body > main > article .gray-background.first {
    margin-top: 0px;
}

body > main > article .gray-background a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

body > main > article .gray-backgrounde > ul {
    list-style: none;
    display: table;
    width: 100%;
    margin: 0;
}

body > main > article .gray-background > ul > li {
    display: table-cell;
    width: 33.33%;
    padding: 0;
    background: url('../../img/border-grey.png');
    padding: 15px;
    vertical-align: middle;
    /*height: 112px;*/
    overflow: hidden;
}

body > main > article .gray-background.video > ul > li {
	background-color: #FFF;
	margin: 0;
	display: block;
	overflow: hidden;
	float: left;
	width: 28%;
}

body > main > article .gray-background > ul > li > div > h2 {
    margin: 12px 12px 0 12px;
}

body > main > article .gray-background > ul > li > div > p {
    margin: 8px 12px 0 12px;
}

body > main > article .gray-background > ul > li > a > img {
    display: block;
    width: 100%;
}

body > main > article .gray-background > ul > li:first-child {
    border-left: none;
}

body > main > article .gray-background > ul > li {
    border-left: solid 8px #f1f2f4;
}

body > main > article .gray-background > ul.length_1  {
	width: 100%;
	max-width: 870px;
	margin: 0;
}

body > main > article .gray-background > ul.length_1 > li {
	margin: 0 auto;
	float: none;
}

body > main > article .gray-background > ul.length_2 > li:first-child {
	margin-left: 13%;
	margin-right: 20px;
}


body > main > article .gray-background > ul > li:first-child,
body > main > article .gray-background > ul > li + li {
    border-right: solid 8px #f1f2f4;
}

body > main > article .gray-background > ul > li + li + li {
    border-right: none;
}

body > main > article .gray-background > ul > li:before {
    display: none;
}

body > main > article > footer {
    margin: 0px 72px 0 48px;
}

body > main > article > footer > ul {
    display: table;
    list-style: none;
    width: 100%;
    border-top: solid 1px #a8b1b6;
    border-bottom: solid 1px #a8b1b6;
    margin: 0;
}

body > main > article > footer > ul > li {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    border-left: solid 1px #a8b1b6;
    border-top: solid 6px #fff;
    border-bottom: solid 6px #fff
}

body > main > article > footer > ul > li:before {
    display: none;
}

body > main > article > footer > ul > li:first-child {
    border-left: none;
    width: 308px;
}

/*body > main > article > footer > ul > li + li a:before {*/
body > main > article > footer > ul > li.contactus a:before {
    content: '>\00a0';
}

/*body > main > article > footer > ul > li + li + li > a:before {*/
body > main > article > footer > ul > li.printlink > a:before {
    content: '\e00f';
    font-family: 'IcoMoon';
    font-weight: normal;
    margin: 0 6px 0 0;
}

/*body > main > article > footer > ul > li + li + li + li > a:before {*/
body > main > article > footer > ul > li.totop > a:before {
    content: '\e010';
    font-family: 'IcoMoon';
    font-weight: normal;
    margin: 0 2px 0 0;
}

body > main > article > footer > ul > li a:hover > span {
    text-decoration: underline;
}

body > main > article > footer > ul > li a {
    text-decoration: none !important;
    color: #000;
    font-weight: bold;
}

body > main > article > section > .textimage{
	margin: 0px;
	display: table;
}

body > main > article > section > .textimage > .wrapper {
	display: table-row;
	width: 100%;
}

body > main  > article > section >  .textimage > .wrapper > .image-col {
	display: table-cell;
	vertical-align: top;
	position: relative;
	width: 320px;
	padding-bottom: 20px;
	margin-left: 20px;
	margin-top: 24px;
	padding-right: 60px;
}

body > main  > article > section >  .textimage > .wrapper > .image-col > a {
    display: block;
    height: auto;
    text-align: right;
    width: auto;
}

body > main  > article > section >  .textimage > .wrapper > .image-col > a > button {
	margin-top: 24px;
}


body > main  > article > section > .textimage > .wrapper > .text-col {
	display: table-cell;
	vertical-align: top;
	width: 100%;
}
body > main  > article > section > .textimage > .wrapper > .text-col.empty-content {
	width: 48px;
}

body > main  > article > section > .textimage > .wrapper.float-left >  .image-col {
	padding-left: 48px;
}

body > main  > article > section > .textimage > .wrapper > .text-col  > p {
	margin: 0 60px 18px 48px;
}

body > main > article .slider {
    margin: 0 48px;
    position: relative;
    padding: 15px;
    background: url('../../img/border-grey.png');
	width: 840px;
}

body > main > article .slider > div {
    position: relative;
    overflow: auto;
    width: 100% !important;
    margin: 0;
}

body > main > article .slider > div + a + div {
    display: none;
}

body > main > article .slider > a {
    position: absolute;
    left: -48px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    height: 36px;
    width: 48px;
    font-family: 'IcoMoon';
    color: #a8b1b6;
    text-decoration: none;
    text-align: center;
}

body > main > article .slider > a > span {
    display: none;
}

body > main > article .slider > a:before {
    font-family: 'IcoMoon';
    font-size: 36px;
    color: #a8b1b6;
    content: '\e00c';
}

body > main > article .slider > a + div + a {
    left: inherit;
    right: -48px;
}

body > main > article .slider > a + div + a:before {
    content: '\e00b';
}

body > main > article .slider > div > ul {
    list-style: none;
    padding: 0;
    overflow: hidden;
    margin: 0;
	/*height: 311px;*/
}

body > main > article .slider > div > ul > li {
    background: #fff;
    list-style: none;
    float: left;
    padding: 0;
	/*border: 0px solid transparent;
	border-right-width: 1px;*/
	display: table;
}

body > main > article .slider > div > ul > li .image {
    display: block;
    position: relative;
}

/*body > main > article .slider > div > ul > li .image:hover {
    opacity: .7;
}*/

body > main > article .slider > div > ul > li .image img {
    display: block;
    width: 100%;
    width: 100%;
}

body > main > article .slider > div > ul > li > a {
    position: relative;
    text-decoration: none;
}

body > main > article .slider > div > ul > li .image:after {
    position: absolute;
    bottom: 12px;
    right: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    content: '\e000';
    display: inline-block;
    font-family: 'IcoMoon';
    text-align: center;
    vertical-align: middle;
    line-height: 24px;
    color: #000;
}

body > main > article .slider > div > ul > li:before {
    display: none;
}

body > main > article .slider .wrapper {
    background: #ffffff;
    display: table-row;
    /*font-size: 12px;*/
}

body > main > article .slider .wrapper .image-col {
    display: table-cell;
    vertical-align: top;
/*    
	width: 71%;
*/	
    position: relative;
}
body > main > article .slider .wrapper .image-col img {
	display: table-cell;
}

body > main > article .slider .wrapper .text-col {
    display: table-cell;
    padding: 12px;
    width: 40%;
    /*position: relative;*/
}

body > main > article .slider .wrapper .text-col .bottom {
    position: absolute;
    bottom: 10px;
	margin-bottom: 0;
}

body > main > article .slider .wrapper .text-col .title {
    margin-bottom: 18px;
    margin-top: 0;
	margin-left: 0px;
	margin-right: 0px;
    font-size: 22px;
}

body > main > article .slider .wrapper .text-col p {
    color: #555;
    margin-left: 0;
    margin-right: 0;
}

body > main > article .slider .wrapper .text-col a {
    color: #232122;
}

body > main > article .slider .wrapper .text-col a:hover {
    color: #616060;
}

body > main > article .slider ul {
	line-height: 0px;
}

body > main > article .slider ol.dots {
	position: absolute;
	bottom: 0;
	left: 16px;
}

body > main > article .slider .dots li {
	display: inline-block;
	margin: 0 4px;
	text-indent: -999em;
	border: 2px solid #FFF;
	cursor: pointer;
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 12px;
	background: #A8B1B6;
	margin-right: 8px;
	padding: 0;
	border-color: rgba(0, 0, 0, 0);
}

body > main > article .slider .dots li.active {	
	background-color: #004B8D;
}

body > main > article .wrapperlength_1 .slider  .dots{
	display: none;
}



p.alignbottom {
	position: absolute;
	bottom: 18px;
	margin: 0;
}



body > main > article .singleslider {
    margin: 0 48px;
    position: relative;
    padding: 15px;
    background: url('../../img/border-grey.png');
	display: inline-block;
}

body > main > article .singleslider > div {
    position: relative;
    overflow: auto;
    /*width: 100% !important;*/
    margin: 0;
    height: auto !important;
}

body > main > article .singleslider > div + a + div {
    display: none;
}

body > main > article .singleslider > a {
    position: absolute;
    left: -48px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    height: 36px;
    width: 48px;
    font-family: 'IcoMoon';
    color: #a8b1b6;
    text-decoration: none;
    text-align: center;
}

body > main > article .singleslider > a > span {
    display: none;
}

body > main > article .singleslider > a:before {
    font-family: 'IcoMoon';
    font-size: 36px;
    color: #a8b1b6;
    content: '\e00c';
}

body > main > article .singleslider > a + div + a {
    left: inherit;
    right: -48px;
}

body > main > article .singleslider > a + div + a:before {
    content: '\e00b';
}

body > main > article .singleslider > div > ul {
    list-style: none;
    padding: 0;
    overflow: hidden;
    margin: 0;
}

body > main > article .singleslider > div > ul > li {
    background: #fff;
    list-style: none;
    float: left;
    padding: 0;
}

body > main > article .singleslider > div > ul > li .image {
    height: auto !important;
    width: 100% !important;
    display: block;
    position: relative;
}

body > main > article .singleslider > div > ul > li .image:hover {
    opacity: .7;
}

body > main > article .singleslider > div > ul > li .image img {
    display: block;
    width: 100%;
    width: 100%;
}

body > main > article .singleslider > div > ul > li > a {
    position: relative;
    text-decoration: none;
}

body > main > article .singleslider > div > ul > li .image:after {
    position: absolute;
    bottom: 12px;
    right: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    content: '\e000';
    display: inline-block;
    font-family: 'IcoMoon';
    text-align: center;
    vertical-align: middle;
    line-height: 24px;
    color: #000;
}

body > main > article .singleslider > div > ul > li:before {
    display: none;
}

body > main > article .singleslider .wrapper {
    background: #ffffff;
    display: table;
    /*font-size: 12px;*/
}

body > main > article .singleslider .wrapper .image-col {
    display: table-cell;
    vertical-align: top;
    width: 71%;
    position: relative;
}

body > main > article .singleslider .wrapper .image-col img{
	display: table-cell;
}

body > main > article .singleslider .wrapper .text-col {
    display: table-cell;
    padding: 12px;
    width: 40%;
    position: relative;
}

body > main > article .singleslider .wrapper .text-col .bottom {
    position: absolute;
    bottom: 10px;
}

body > main > article .singleslider .wrapper .text-col .title {
    margin-bottom: 18px;
    margin-top: 0;
    font-size: 22px;
}

body > main > article .singleslider .wrapper .text-col p {
    color: #555;
    margin-left: 0;
    margin-right: 0;
}

body > main > article .singleslider .wrapper .text-col a {
    color: #232122;
}

body > main > article .singleslider .wrapper .text-col a:hover {
    color: #616060;
}

body > main > article div.singleslider.singleimage {
	display: inline-block;
}

body > main > article div.singleslider.singleimage .wrapper .image-col {
	display: block;
}

body > main > article div.singleslider.singleimage.float-right {
	float: right;
}


body > main > article .article-rating .wrapper {
    border-bottom: 1px solid #a8b1b6;
    border-top: 1px solid #a8b1b6;
    color: #333;
    margin-top: 24px;
    display: table;
    padding: 12px 0;
    width: 100%;
}

body > main > article .article-rating .wrapper .rating {
    text-align: right;
}

body > main > article .article-rating .wrapper .rating .stars {
    display: inline-block;
}

body > main > article .article-rating .wrapper > div {
    display: table-cell;
}

body > main > article > footer .short {
    display: none;
}

body > main > article .products-box {
    background-color: #F1F2F4;
    margin: 48px 0;
    padding: 48px 48px;
}

body > main > article .products-box .list {
    display: table-cell;
    vertical-align: top;
    padding-right: 42px;
    width: 35%;
}

body > main > article .products-box.right .list {
    padding-right: 0;
    padding-left: 52px;
}

body > main > article .products-box .list .title {
    margin: 0 0 16px;
}

body > main > article .products-box .list .form {
    padding-bottom: 22px;
    margin-bottom: 8px;
}

body > main > article .products-box .list .products {
    border-top: 1px solid #A8B1B6;
    padding: 20px 0 0;
    margin: 0;
}

body > main > article .products-box .list .products .item {
    padding: 0;
    margin-bottom: 20px;
}

body > main > article .products-box .list .products .item:before {
    display: none;
}

body > main > article .products-box .list .products .item a.active {
    background: #fff;
    margin: -5px -10px;
    padding: 5px 10px;
    height: 60px;
    overflow: hidden;
}

body > main > article .products-box .list .products .item a:after {
    content: "";
    transition: all 0.3s ease-in-out;
    border-bottom: 32px solid transparent;
    border-left: 20px solid #FFFFFF;
    border-top: 32px solid transparent;
    height: 0;
    position: absolute;
    right: -20px;
    top: 0;
    width: 0;
    opacity: 0;
}

body > main > article .products-box .list .products .item a.active:after {
    border-bottom: 36px solid transparent;
    border-left: 20px solid #FFFFFF;
    border-top: 36px solid transparent;
    height: 0;
    position: absolute;
    right: -30px;
    top: 0;
    width: 0;
    opacity: 1;
}


body > main > article .products-box.right .list .products .item a:after {
    border-left: none;
    border-right: 20px solid #FFFFFF;
    left: -20px;
}

body > main > article .products-box.right .list .products .item a.active:after {
    border-left: none;
    border-right: 30px solid #FFFFFF;
    left: -40px;
}

body > main > article .products-box .list .products .item a {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease-in-out;
    height: 60px;
    overflow: hidden;
}

body > main > article .products-box .list .products .item a * {
    transition: color .3s ease-in-out;
}

body > main > article .products-box .list .products .item a:hover * {
    color: #666;
}

body > main > article .products-box .list .products .item h3 {
    color: #000;
    font-size: 15px;
	line-height: 21px;
	font-family: 'HeidelbergGothicMlbold';
    margin: 0 0 2px;
    font-style: normal;
	white-space: nowrap;
	width: 264px;
	overflow: hidden;
	text-overflow: ellipsis;
}

body > main > article .products-box .list .products .item p {
    margin: 0;
    color: #333;
    font-size: 13px;
    line-height: 15px;
	height: 30px;
	overflow: hidden;
}

body > main > article .products-box .pagination, body > main > article .press-list .pagination {
    margin: 0;
    color: #333;
}

body > main > article .products-box .pagination a, body > main > article .press-list .pagination a {
    text-decoration: none;
}

body > main > article .products-box .pagination a:hover, body > main > article .press-list .pagination a:hover {
    text-decoration: none;
}

body > main > article .products-box .pagination .pages, body > main > article .press-list .pagination .pages {
    margin: 0;
    padding: 0;
    display: inline-block;
}

body > main > article .products-box .pagination .pages li, body > main > article .press-list .pagination .pages li{
    color: #666;
    display: inline-block;
    border-right: 1px #000 solid;
    padding: 0px 8px;
    margin-left: -4px;
}

body > main > article .products-box .pagination .pages li:last-child, body > main > article .press-list .pagination .pages li:last-child {
    display: inline-block;
    border-right: 0;
}

body > main > article .products-box .pagination .pages li:before, body > main > article .press-list .pagination .pages li:before {
    display: none;
}

body > main > article .products-box .pagination .pages li a, body > main > article .press-list .pagination .pages li a {
    color: #000;
    display: inline-block;
    text-decoration: none;
}

body > main > article .products-box .pagination .pages li a:hover, body > main > article .press-list .pagination .pages li a:hover {
    text-decoration: underline;
}

body > main > article .products-box .pagination .prev:before,
body > main > article .press-list .pagination .prev:before {
    font-family: 'IcoMoon';
    color: #a8b1b6;
    content: '\e00c';
    vertical-align: middle;
    font-size: 18px;
}

body > main > article .products-box .pagination .next:before, body > main > article .press-list .pagination .next:before {
    font-family: 'IcoMoon';
    color: #a8b1b6;
    content: '\e00b';
    vertical-align: middle;
    font-size: 18px;
}

body > main > article .products-box .pagination.buttons, body > main > article .press-list .pagination {
    border-top: 1px solid #a8b1b6;
    padding-top: 16px;
}

body > main > article .products-box .pagination.buttons .pages li, body > main > article .press-list .pagination .pages li {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 18px;
    text-align: center;
}

body > main > article .products-box .pagination.buttons .pages li a, body > main > article .press-list .pagination .pages li a {
    border: 1px solid #b2babf;
    background: #fff;
    display: inline-block;
    border-radius: 5px;
    width: 24px;
    height: 24px;
    line-height: 26px;
    text-align: center;
}

body > main > article .products-box .pagination.buttons .prev:hover,
body > main > article .products-box .pagination.buttons .next:hover,
body > main > article .press-list .pagination .prev:hover,
body > main > article .press-list .pagination .next:hover,
body > main > article .products-box .pagination.buttons .pages li a:hover,
body > main > article .press-list .pagination .pages li a:hover {
    background: #1a5d99;
    color: #fff;
    text-decoration: none;
    border: 1px solid #000;
}

body > main > article .products-box .pagination.buttons .pages li span.active, body > main > article .press-list .pagination .pages li a.current_page span  {
    border: 1px solid #000;
    background: #1a5d99;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    width: 24px;
    height: 24px;
    line-height: 26px;
    text-align: center;
	position: relative;
	top: -5px;
}

body > main > article .press-list .pagination .pages li a.current_page span {
	top: -1px;
}

body > main > article .products-box .pagination.buttons .prev:hover:before,
body > main > article .products-box .pagination.buttons .next:hover:before,
body > main > article .press-list .pagination .prev:hover:before,
body > main > article .press-list .pagination .next:hover:before {
    color: #fff;
}

body > main > article .products-box .pagination.buttons .prev,
body > main > article .products-box .pagination.buttons .next,
body > main > article .press-list .pagination .prev,
body > main > article .press-list .pagination .next {
    border: 1px solid #b2babf;
    background: #fff;
    display: inline-block;
    border-radius: 5px;
    width: 24px;
    height: 24px;
    line-height: 26px;
    text-align: center;
}

body > main > article .products-box .pagination.buttons .prev:before,
body > main > article .press-list .pagination .prev:before {
    font-family: 'IcoMoon';
    color: #000;
    display: inline-block;
    content: '\e00d';
    vertical-align: middle;
    font-size: 8px;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    transform: rotate(180deg);
}

body > main > article .products-box .pagination.buttons .next:before,
body > main > article .press-list .pagination .next:before {
    font-family: 'IcoMoon';
    color: #000;
    content: '\e00d';
    display: inline-block;
    vertical-align: middle;
    font-size: 8px;
}

body > main > article .products-box .content {
    display: table-cell;
    width: 65%;
    vertical-align: top;
}

body > main > article .products-box .content .wrapper {
    position: relative;
    padding: 15px;
    background: url('../../img/border-grey.png');
}

body > main > article .products-box .content .text {
    display: none;
    background: #fff;
    padding: 16px;
}

body > main > article .products-box .content .text .title {
    margin: 0 0 10px;
    font-size: 28px;
	line-height:32px;
	letter-spacing: -1;
	font-family: 'HeidelbergGothicMl';
}

body > main > article .products-box .content .text .image-wrapper {
    position:relative;
}

body > main > article .products-box .content .text img {
    display: block;
    width: 100%;
    margin: 0 0 16px;
}

body > main > article .products-box .content .text .eyecatcher img {
	position: absolute;
	bottom: 0;
	left: 0;
    margin: 0;
}

body > main > article .products-box .content .text .eyecatcher img {
    margin: 0;
}

body > main > article .products-box .content .text p {
    margin: 0 0 16px;
}

body > main > article .products-box .content .text p:last-of-type {
    margin: 0;
}

body > main > article .products-box .content .text p {
	position: relative;
}

body > main > article .products-box .content .text p .right {
	position: absolute;
	right: 0;
}

.newsletter-subscription .error input, .newsletter-subscription .error textarea {
	background-color: red;
}

.newsletter-subscription .error input[type='radio'], .newsletter-subscription .error input[type='checkbox'] {
	background-color: none;
}

.newsletter-subscription {
    margin: 36px 48px;
    max-width: 600px;
}

.newsletter-subscription.download {
    margin: 16px 48px;
}

.newsletter-subscription .row {
    display: table;
    margin-bottom: 20px;
    width: 100%;
}

.newsletter-subscription .terms {
    margin: 40px 0 10px;
}

.newsletter-subscription .row input[type='text'],
.newsletter-subscription .row input[type='email'],
.newsletter-subscription .row input[type='tel'] {
    width: 88%;
}

.newsletter-subscription .row > div {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

.newsletter-subscription .row > div.form_help {
	position: absolute;
	width: initial;
}

.newsletter-subscription .row > div.form_help img {
	vertical-align: middle;
}

.newsletter-subscription .row > div.form_help .image_title {
	display: none;
	color: gray;
}

.newsletter-subscription #contact_person, .newsletter-subscription #contact_salutation, .newsletter-subscription #request_salutation, .newsletter-subscription #hdylat, .newsletter-subscription #used_machines_salutation {
	width: 94%;
}

.newsletter-subscription .row .error select, .newsletter-subscription .row .error label, .newsletter-subscription .row label.error {
    color: red;
}

body > main > article .twogrid {
    padding: 48px 48px 8px;
}

body > main > article .twogrid.nopadding {
    padding: 0px 0px 40px;
}
body > main > article .twogrid.nopadding.wrapperlength_1 {
	margin: 0 24px 0px 0px;
}


body > main > article .twogrid .row {
    display: table;
    width: 100%;
}

body > main > article .twogrid .row > div {
    background: url('../../img/border-grey.png');
    /*display: table-cell;*/
	float: left;
    width: 43%;

    padding: 15px;
    /*border-left: 20px solid #fff;*/
    border-right: 40px solid #fff;
	margin-bottom: 16px;
    vertical-align: top;
	
	min-width: 300px;
}

body > main > article .twogrid.contactbox.fullview .row > div > div {
	height: 294px;
}

body > main > article .twogrid .row > div:first-child {
    border-left: 0;
}

body > main > article .twogrid .row > div:last-child {
    border-right: 0;
}

body > main > article .twogrid .row > div > div {
    background: #fff;
    overflow: hidden;
}

body > main > article .twogrid .row > div > div img {
    float: left;
    margin-right: 12px;
    /*width: 167px;*/
}

body > main > article .twogrid.contactbox.fullview .row p.fullview {
	display: block !important;
	margin: 10px 0 0 138px;
}

body > main > article .twogrid.contactbox .row > div.half {
	max-width: 44%;
	display: table;
}

body > main > article .twogrid.contactbox .row > div > div img {
    float: left;
    margin-right: 12px;
    height: 147px;
	width: auto;
}

body > main > article .twogrid .row > div > div .video-container {
    width: 167px;
    height: 182px;
}

div.video {
	margin-left: 48px;
	margin-right: 72px;
}

.videocontainer {
    padding: 15px;
    background: url('../../img/border-grey.png');
	width: 425px;
}

.videocontainer_video > div {
	position:absolute; 
	min-height:130px;
}

body > main > article .teaserList > li.videoelement > div {
	padding: 0;
}

iframe.youtubeteaser {
	width: 225px;
	height: 165px;
}

iframe.contentvideo {
	width: 425px;
	height: 349px;
}



@media all and (max-width: 900px) {
    body > main > article .twogrid .row > div > div {
        font-size: 12px;
    }

    body > main > article .twogrid .row > div > div img {
        /*max-width: 40%;*/
    }
}

body > main > article .twogrid .row > div > div h2 {
    color: #004b8d;
    margin: 12px 0 5px;
	font-family: 'HeidelbergGothicMl';
	letter-spacing: -1px;
	font-size: 28px;
	line-height: 32px;
}

@media all and (max-width: 1400px) {
    body > main > article .twogrid .row > div > div h2 {
        font-size: 18px;
    }

    body > main > article .twogrid .row > div > div p {
        font-size: 14px;
    }
}

body > main > article .twogrid .row > div > div p {
    margin: 0;
	margin-bottom: 18px;
}

body > main > article .twogrid.contactbox .row > div > div p {
    margin: 10px 0 0 138px ;
    padding: 0 8px;
}

body > main > article .twogrid .row > div > div p a {
    display: block;
    margin: 0;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}


body > main > article .twogrid .row > div > div.regular {
	padding: 0 ;
}

body > main > article .twogrid .row > div > div.regular p a{
    font-weight: normal;
    display: inline-block;
}
body > main > article .twogrid .row > div > div.regular  a.alignright{
    text-align: right;
    display: block;
	margin-left: 10px;
	margin-right: 10px;
}

body > main > article .twogrid .row > div > div.regular button {
	margin: 5px 0;
}

body > main > article .twogrid .row > div > div.regular.branchoffice {
	padding: 0 10px 5px 10px;
}

body > main > article .twogrid .row > div > div p a:hover {
    text-decoration: underline;
}

body > main > article .twogrid .row > div > div.regular {
	min-height:178px;
}
body > main > article .twogrid .row > div > div.regular > div.textfull {
	margin-left: 12px;
}
body > main > article .twogrid .row > div > div.regular > div.textright {
	margin-left: 146px;
}
body > main > article .twogrid .row > div > div.regular > div.videocontainer_box {
	float: left;
}


body > main > article .twogrid.contactbox .row > div > div {
	padding-left: 0;
	padding-bottom: 0;
}

body > main > article .squaremenu {
    margin: 0 70px 20px 48px;
}

body > main > article .squaremenu .wrapper {
    display: table;
    width: 100%;
	margin-bottom: 20px;
}
/*
body > main > article .squaremenu .wrapper.length_1 {
    display: table;
    width: 98%;
}

body > main > article .squaremenu .wrapper.length_1 div a {
    margin: 0 auto;
	width: 33%;
}

body > main > article .squaremenu .wrapper.length_2 {
    display: table;
    width: 98%;
}

body > main > article .squaremenu .wrapper.length_2 div a {
    margin: 0 auto;
	width: 66%;
}
*/
body > main > article .squaremenu .wrapper > div {
    display: block;
	float: left;
    width: 18%;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
	margin-bottom: 20px;
}

body > main > article .squaremenu .wrapper > div:first-child {
    border-left: 0;
}

body > main > article .squaremenu .wrapper > div:last-child {
    border-right: 0;
}

body > main > article .squaremenu .wrapper > div:nth-child(5),
body > main > article .squaremenu .wrapper > div:nth-child(10),
body > main > article .squaremenu .wrapper > div:nth-child(15),
body > main > article .squaremenu .wrapper > div:nth-child(20),
body > main > article .squaremenu .wrapper > div:nth-child(25),
body > main > article .squaremenu .wrapper > div:nth-child(30),
body > main > article .squaremenu .wrapper > div:nth-child(35),
body > main > article .squaremenu .wrapper > div:nth-child(40),
body > main > article .squaremenu .wrapper > div:nth-child(45) {
	clear: right;
	border-right: 0;
}

body > main > article .squaremenu .wrapper > div:nth-child(6),
body > main > article .squaremenu .wrapper > div:nth-child(11),
body > main > article .squaremenu .wrapper > div:nth-child(16),
body > main > article .squaremenu .wrapper > div:nth-child(21),
body > main > article .squaremenu .wrapper > div:nth-child(26),
body > main > article .squaremenu .wrapper > div:nth-child(31),
body > main > article .squaremenu .wrapper > div:nth-child(36),
body > main > article .squaremenu .wrapper > div:nth-child(41),
body > main > article .squaremenu .wrapper > div:nth-child(46) {
	border-left: 0;
}

body > main > article .squaremenu .wrapper > div a {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    height: 150px;
    width: 100%;
	background: #b6bdc2; /* Old browsers */
    background: -moz-linear-gradient(top, #b6bdc2 0%, #8c9398 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b6bdc2), color-stop(100%, #8c9398)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #b6bdc2 0%, #8c9398 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #b6bdc2 0%, #8c9398 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #b6bdc2 0%, #8c9398 100%); /* IE10+ */
    background: linear-gradient(to bottom, #b6bdc2 0%, #8c9398 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b6bdc2', endColorstr='#8c9398', GradientType=0); /* IE6-9 */

}

body > main > article .squaremenu .wrapper > div a .desription {
    position: absolute;
    padding: 10px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity .3s ease-in-out;

    background: #2b5983; /* Old browsers */
    background: -moz-linear-gradient(top, #2b5983 0%, #012f59 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b5983), color-stop(100%, #012f59)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #2b5983 0%, #012f59 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #2b5983 0%, #012f59 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #2b5983 0%, #012f59 100%); /* IE10+ */
    background: linear-gradient(to bottom, #2b5983 0%, #012f59 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b5983', endColorstr='#012f59', GradientType=0); /* IE6-9 */

}

body > main > article .squaremenu .wrapper > div a:hover .desription {
    opacity: 1;
}

body > main > article .squaremenu .wrapper > div a .heading {
    position: absolute;
    padding: 10px;
    bottom: 0;
    left: 0;
    right: 0;
}

@media all and (max-width: 1400px) {
    body > main > article .squaremenu .wrapper > div a {
        font-size: 13px;
    }
}

body > main > article .locales-alphabetical {
    margin: 12px 48px 36px;
}

body > main > article .locales-alphabetical a {
    background: #d3d8da;
    color: #333;
    display: inline-block;
    border-radius: 30px;
    text-decoration: none;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 22px;
    margin-right: 5px;
    margin-bottom: 10px;
}

body > main > article .locales-alphabetical a:hover {
    background: #1d598d;
    color: #fff;
}

body > main > article .locale-letter {
    margin: 12px 48px 36px;
}

body > main > article .locale-letter .letter {
    background: #d3d8da;
    display: inline-block;
    border-radius: 30px;
    height: 20px;
    width: 20px;
    line-height: 22px;
    text-align: center;
}

body > main > article .locale-letter .locales {
    border-bottom: 1px solid #a8b1b6;
    padding: 26px 0 20px;
}

body > main > article .locale-letter .locales a {
    color: #000;
    display: inline-block;
    width: 24.5%;
    text-decoration: none;
}

body > main > article .locale-letter .locales a:hover {
    color: #666;
    text-decoration: underline;
}

.event-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: top;
	margin-top: -1px;
}
.date .event-color {	
	margin-right: 15px;
}
.event-color.measure {
    background: #232122;
}

.event-color.events {
    background: #004b8d;
}

.event-color.print-academy {
    background: #e63e16;
}

.event-color.inhouse {
    background: #535353;
}

.event-color.others {
    background: #a8b1b6;
}

a.event-color:hover {
    opacity: .7;
}

a.all-events {
	margin-left: 5px;
}

body > main > article .gray-background strong a.event-label-link {
	font-weight: bold;
}

button.event-country-submit {
	margin-left:10px;
}
body > main > article .event-labels {
    background: #fff;
    margin: 16px -48px 0;
    padding: 0 48px;
    display: table;
    width: 100%;
	padding-bottom: 3px;
	padding-top: 1px;
}

body > main > article .event-labels a {
    color: #333;
    text-decoration: none;
}

body > main > article .gray-background a.event-label-link {
	font-weight: normal;
}

body > main > article .event-labels a:hover {
    opacity: 0.7;
    text-decoration: none;
}

body > main > article .event-labels > * {
    display: table-cell;
}

body > main > article .event-list {
    margin: 16px 48px 0;
}

body > main > article .event-list .event {
    display: table;
    width: 100%;
    border-bottom: 1px solid #a8b1b6;
    padding: 10px 0;
}

body > main > article .event-list .event > * {
    display: table-cell;
}

body > main > article .event-list .event .color {
    width: 3%;
}

body > main > article .event-list .event .date {
    width: 24%;
}

body > main > article .event-list .event .eventcity {
    width: 13%;
}

body > main > article .event-list .event .desription {
    width: 50%;
}

body > main > article .event-list .event .more {
    width: 10%;
}

body > main > article .event-list .event .more a {
    color: #000;
    text-decoration: none;
}

body > main > article .event-list .event .more a:hover {
    color: #444;
    text-decoration: underline;
}

body > main > article .download-list {
    margin: 36px 0 0;
}

body > main > article .download-list ul {
    display: block;
}

body > main > article .download-list ul li {
    display: inline-block;
    padding: 0;
    width: 32%;
    margin-bottom: 24px;
    vertical-align: top;
}

body > main > article .download-list ul li:before {
    display: none;
}

body > main > article .download-list ul li .check {
    float: left;
    margin-right: 10px;
}

body > main > article .download-list ul li .check > * {
    display: inline-block;
    vertical-align: top;
}

body > main > article .download-list ul li img {
    display: inline-block;
    box-shadow: 0 0 3px #aaa;
}

body > main > article .download-list .submit {
    margin: 0px 48px 0;
}

body > main > article .press-search {
    background: #F1F2F4;
    margin: 16px 0;
    padding: 16px 48px;
}

body > main > article .press-search .row {
    display: table;
    width: 100%;
    margin-bottom: 16px;
}

body > main > article .press-search .row:last-child {
    margin-bottom: 0;
}

body > main > article .press-search .row > div {
    display: table-cell;
    width: 20%;
}

body > main > article .press-search .row > div input[type="text"] {
    width: 90%;
}

body > main > article .press-search .row > div select {
    width: 90%;
}

body > main > article .press-list {
    margin: 0 48px;
}

body > main > article .press-list .filter {
    margin: 12px 0;
}

body > main > article .press-list .filter a {
    color: #000;
    display: inline-block;
    margin-left: 12px;
    text-decoration: none;
}

body > main > article .press-list .filter a:hover {
    text-decoration: underline;
}

body > main > article .press-list .list {

}

body > main > article .press-list .list .item {
    display: table;
    border-top: 1px solid #a8b1b6;
    padding: 16px 0;
	width: 95%;
}

body > main > article .press-list .list .item .image {
    height: 87px;
    width: 156px;
}

body > main > article .press-list .list .item .image  .image_container {
	display:block;
	background-color: lightgrey;
	text-align: center;
	vertical-align: middle;
}

body > main > article .press-list .list .item .image span {
	width: 10px;
	height: 100%;
	display: inline-block;
	margin-left: -10px;
	vertical-align: middle;
}

body > main > article .press-list .list .item .image img {
    vertical-align: middle;
}



body > main > article .press-list .list .item > * {
    display: table-cell;
    vertical-align: top;
}

body > main > article .press-list .list .item .checkbox {
    padding-right: 8px;
}

body > main > article .press-list .list .item .description {
    padding-left: 12px;
}

body > main > article .press-list .list .item .description h3 {
    color: #000;
    margin: 0 0 3px;
    font-weight: bold;
    font-style: normal;
    font-size: 15px;
}

body > main > article .press-list .list .item .description  p {
    margin: 0;
}

body > main > article .press-list .list .item .copyright {
	margin-top: 5px;
}

body > main > article .press-list .list .item .copyrightimg {
	margin-top: 5px;
	font-size: 11px;
}

body > main > article .press-list .pagination {
	width: 95%;
	text-align: right;
}

body > main > article .press-list .pagination a {
	margin-right: 5px;
}

body > main > article .press-list .pagination a.current_page {
	font-weight: bold;
}

body .news-sliding {
    background: rgba(0, 0, 0, 0.5);
    margin: 0;
    color: #fff;
    padding: 2px 0;
    display: table;
	table-layout: fixed;
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
    top: -89px;
    transition: background-color .6s;
}
body .news-sliding.hidden {
    background: rgba(255, 255, 255, 0.0);
}

body .news-sliding > * {
    display: table-cell;
    vertical-align: middle;
}

body .news-sliding .title {
	width: 35px;
    font-weight: bold;
    padding-left: 12px;
    padding-right: 6px;
}

body .news-sliding .text {
    overflow: hidden;
    text-align: right;
}

body .news-sliding .close {
	width: 16px;
    line-height: 27px;
    padding-left: 10px;
    padding-right: 10px;
}

body .news-sliding .close a {
    display: inline-block;
    border-radius: 16px;
    color: #aaa;
    background: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 17px;
}
body .news-sliding .close a.x-button {
    width: 18px;
}
body .news-sliding .close a.ticker-hidden{
    display: inline-block;
    width: 140px;
	margin-left:-119px;
}

body .news-sliding .close a:hover {
    opacity: 0.7;
    text-decoration: none;
}

body .news-sliding .tickercontainer {
    width: 100%;
    height: 27px;
    margin: 0;
    padding: 0;
    overflow: hidden;
	padding-top: 2px;
}

body .news-sliding .tickercontainer .mask {
    position: relative;
    left: 10px;
    top: 4px;
    overflow: hidden;
    height: 17px;
}

body .news-sliding ul.newsticker {
    position: relative;
    list-style-type: none;
    margin: 0;
    padding: 0;
	font-size: 14px;
}

body .news-sliding ul.newsticker li {
    float: left;
    margin: 0;
    padding: 0;
}

body .news-sliding ul.newsticker li:before {
    display: none;
}

body .news-sliding ul.newsticker a {
    white-space: nowrap;
    padding: 0;
    font: bold 10px Verdana;
    margin: 0 50px 0 0;
}

body .news-sliding ul.newsticker span {
    margin: 0 10px 0 0;
}

body .stock-price {
    background: rgba(255, 255, 255, 0.5);
    text-align: right;
	font-size: 14px;
    height: 31px;
    line-height: 30px;
    padding: 0 15px;
    text-align: right;
    color: #666666;
	margin-bottom: -30px;
}

body .stock-price .arrow:before {
    display: inline-block;
    color: #004b8d;
    font-family: 'IcoMoon';
    font-size: 13px;
    content: '\e00b';
    font-style: normal;
    height: 31px;
}

body .stock-price .up.arrow:before {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    color: #0c0;
}

body .stock-price .down.arrow:before {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    color: #c00;
}

.fading-backgrounds > * {
    position: absolute;
    background: #000 top left;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.fading-backgrounds .welcome-box {
    display: none;
}
.fading-backgrounds .welcome-box .header {
    background: #fff;
    padding: 10px 20px 10px 64px;
    width: 350px;
    text-align: right;
}
.fading-backgrounds .welcome-box .header h3 {
    color: #014B8C;
    margin: 0 0 10px;
    font-style: normal;
    font-size: 28px;
}
.fading-backgrounds .welcome-box .header p {
    margin: 0;
	line-height: 32px;
}


body > main > article .welcome-box {
    margin-top: 89px;
    margin-bottom: 150px;
}

body > main > article .welcome-box .header {
    background: #fff;
    padding: 15px 20px 10px 60px;
    width: 420px;
	height: 154px;
}

body > main > article .welcome-box .header h3 {
    color: #014B8C;
    margin: 0 0 10px;
    font-style: normal;
    font-size: 28px;
}


body > main > article .welcome-box .header h1 {
    color: #014B8C;
    margin: 0 0 10px;
    font-style: normal;
    font-size: 28px;
}

body > main > article .welcome-box .header p {
    margin: 0;
	line-height: 18px;
}

body > main > article .welcome-box .header h1 p {
    margin: 0;
	line-height: 32px;
}

body > main > article .welcome-box .slider-controll {
    text-align: left;
    padding-top: 6px;
    float: left;
}

body > main > article .welcome-box .slider-footer {
	width: 415px;
	background-color: white;
	padding-right: 25px;
	padding-left: 60px;
	padding-bottom: 15px;
	position: relative;
}
body > main > article .welcome-box .slider-footer #slider-more-btn {
	float: right;
	margin-top: -2px;
}

body > main > article .welcome-box .slider-controll a {
    display: inline-block;
    height: 12px;
    width: 12px;
    border-radius: 12px;
    background: #a8b1b6;
    margin-right: 8px;
}

body > main > article .welcome-box .slider-controll a.active {
    display: inline-block;
    background: #004b8d;
}

body > main > article .welcome-box .slider-controll a:not(.active):hover {
    background: #888;
}

.video-container {
    position: relative;
    z-index: 5;
}

body > main > article .table-collcapsable {
    margin: 16px 48px;
}
table tr.primary {
	cursor: pointer;
}
body > main > article .table-collcapsable .inner{
    overflow-x: auto;
}
body > main > article .table-collcapsable table {
    /*table-layout: fixed;*/
    width: 100%;
}
body > main > article .table-collcapsable table th{
    text-align: left;
}
body > main > article .table-collcapsable table .arrow{
    text-align: left;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    display: inline-block;

}
body > main > article .table-collcapsable table .arrow.active{
    text-align: left;
    text-decoration: none;

    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
body > main > article .table-collcapsable table .arrow:before{
    color: #000;
    font-family: 'IcoMoon';
    font-size: 13px;
    content: '\e00d';
    font-style: normal;
    height: 13px;
}
body > main > article .table-collcapsable tr{
    background: #eaecee;
    border-bottom: 1px solid #FFFFFF;
}
body > main > article .table-collcapsable tr.secondary{
    display: none;
}
body > main > article .table-collcapsable tr .arrow-width{
    width: 12px;
}
body > main > article .table-collcapsable tr.even{
    background: #f3f4f5;
}
body > main > article .table-collcapsable .center{
    text-align: center;
}
body > main > article .table-collcapsable tr th,
body > main > article .table-collcapsable tr td{
    padding: 4px 6px 3px;
    vertical-align: top;
}

th.machvalue {
	position: relative;
}


span.bull {
	background: transparent url('/global/media/technical_files/img/icons/compare_icons/01_Icons_Tabelle_Standard_72dpi.png') top left no-repeat;
}
span.null {
	background: transparent url('../../img/icons/compare_icons/01_Icons_Tabelle_Option_72dpi.png') top left no-repeat;
}
span.minus {
	background: transparent url('../../img/icons/compare_icons/01_Icons_Tabelle_nverfuegbar_72dpi.png') top left no-repeat;
}
span.nullasterisk {
	background: transparent url('../../img/icons/compare_icons/oasterisk_space_small.png') top left no-repeat;
}
span.bull, span.minus,span.null, span.nullasterisk {
	text-indent: -9999px;
	background-size: 10px;
	display: block;
	background-position: center center;
}

p.legend img {
	vertical-align: bottom;
}

.video-container:after {
    background: url('../../img/play-icon.png') center center no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    z-index: 10;
}

.video-container img {
    height: 100%;
}

.mfp-iframe {
    width: 640px;
    height: 360px;
}

/* Ersatz fuer float */
/* TODO: remove comment */

.view-table {
    display: table;
    width: 100%;
}

.view-row {
    display: table-row;
}

.view-cell {
    display: table-cell;
}

.padding-left {
    padding-left: 50px;
}
.padding-right {
    padding-right: 50px;
}

.nowrap {
    white-space: nowrap;
}

hr {
    border: 0;
    border-top: 1px solid #a8b1b6;
    margin: 45px;
}


.clearfix:after {
	content:'';
    display:block;
    clear: both;
}

div.document_links {
	padding: 0 48px;
}

div.document_links table {
	width: 100%;
}
div.document_links table tr:nth-child(odd) {
	background-color: #f3f4f5;
}


div.document_links table tr:nth-child(even) {
	background-color: #eaecee;
}

.document_links td {
	padding: 5px 13px;
	vertical-align: top;
	line-height: 16px;
}

form.usedmachine-catselect {
	margin-bottom: 20px;
}

body > main > article form.usedmachine-catselect  select {
	font-size: 13px;
}

.newsletter-subscription .row select {
	width: 47%;
}

.newsletter-subscription .single_line_content div {
	width: 90%;
}

.newsletter-subscription .row input.single_text, .newsletter-subscription .row textarea.single_text {
	width: 94%;
}

.newsletter-subscription .row textarea.large_text {
	width: 94%;
}

.newsletter-subscription .single_line div {
	width: 100%;
}

.newsletter-subscription .row label {
	margin-left: 5px;
	margin-right: 10px;
}

body > main > article > div.tabs + section > div.slider:first-child {
	margin-top: 25px;
}



body > main > article .teaserList > li > div {
	background-color: white;
	padding-top: 12px;
	padding-bottom: 12px;
}

body > main > article .teaserList > li > div.videowrapper {
	background-color: white;
	padding-top: 0px;
	padding-bottom: 0px;
}


body > main > article .teaserList > li > div > h2 {
	margin-top: 0 !important;
}
/*content end -----------------------------------------------------*/

/*header start -----------------------------------------------------*/
body > header > h1 {
    display: none;
}

body > header > nav {
    display: table-cell;
    width: 33.33%;
    margin: 0;
    padding: 12px 18px 0 25px;
    list-style: none;
    min-width: 340px;
    position: relative;
    z-index: 30;
}

body > header > nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body > header > nav > *,
body > header > nav > ul > li {
    float: left;
    white-space: nowrap;
}

body > header > nav a {
    color: #000;
}

body > header > nav a,
body > header > nav a:before,
body > header > nav a:after,
body > header > nav a span,
body > header > nav a span:before,
body > header > nav a span:after {
    display: inline-block;
}

body > header > nav a,
body > header > nav a:hover:before,
body > header > nav a:hover:after,
body > header > nav a:hover span:before,
body > header > nav a:hover span:after {
    text-decoration: none !important;
}

body > header > nav a:before,
body > header > nav a:after,
body > header > nav button[type=submit]:after {
    vertical-align: middle;
    line-height: 100%;

    font-family: 'IcoMoon';
    font-size: 20px;
}
.icomoon_ext {
    font-family: 'IcoMoon_ext';
}

body > header > nav > ul > li > a:before {
    margin: 0 6px 0 0;
}

body > header .contact a:hover span,
body > header .language a:hover span,
body > header .country > ul a:hover,
body > header .login > form > a:hover {
    text-decoration: underline !important;
}

body > header .selected a span {
    font-weight: bold;
}

body > header .selected a span:before,
body > header .selected a span:after {
    font-weight: normal;
}

body > header .login > a:hover > span,
body > header .country > a:hover > span {
    text-decoration: none;
}

body > header .language,
body > header .country {
    float: right;
}
.countrylist {
	display: none;
}

body > header .social,
body > header .country,
body > header .account {
    margin: 20px 0 0 0;
    height: 34px;
}

body > header .social
{
    width: 40%;
}
body > header .account {
	width: 30%;
}

body > header .country {
    width: 30%;
}

body > header .social > li > a,
body > header .contact > a,
body > header .login > a,
body > header .country > a {
    height: 32px;
    padding: 10px 0 0 0;
}

body > header .country:hover > ul,
body > header .login:hover > form {
    display: block;
}

body > header .login:hover > a,
body > header .login > form,
body > header .country:hover > a,
body > header .country > ul {
    background-color: rgba(255, 255, 255, 0.9);
}

body > header .country > a {
    float: right;
    padding: 10px 5px 0 5px;

}

body > header .login:hover > a,
body > header .country:hover > a {
    -webkit-box-shadow: 2px 0 2px -2px #000, -2px 0 2px -2px #000;
    -moz-box-shadow: 2px 0 2px -2px #000, -2px 0 2px -2px #000;
    box-shadow: 2px 0 2px -2px #000, -2px 0 2px -2px #000;
}

body > header .login > form,
body > header .country > ul {
    position: absolute;
    width: 100%;
    right: 0;
    top: 100px;
    padding: 11px 0 44px 0;
    list-style: none;
    display: none;
    z-index: 97;

    -webkit-box-shadow: 2px 0 2px -2px #000, -2px 0 2px -2px #000, 0 4px 10px -6px #000;
    -moz-box-shadow: 2px 0 2px -2px #000, -2px 0 2px -2px #000, 0 4px 10px -6px #000;
    box-shadow: 2px 0 2px -2px #000, -2px 0 2px -2px #000, 0 4px 10px -6px #000;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    body > header .login > form,
    body > header .country > ul {
        width: 100%;
    }
}

body > header .language > li > a > span:before,
body > header .login > a span:before {
    content: '\00a0';
}

body > header .contact.piped > a > span:after,
body > header .language > li:first-child > a > span:after {
    content: '\00a0|';
}

body > header .language > li:first-child > a:before,
body > header .language > li:last-child > a:after,
body > header .contact > a:before,
body > header .login > a:after {
    content: '\00a0';
}

body > header .search > fieldset {
    position: relative;
    padding: 0;
    border: none;
    margin: 0;
	border: none !important; 
}

body > header .search * {
    float: left;
}

body > header .search input {
    width: 160px;
	border: none;
	margin-top: 1px;
	height: 17px;
}

body > header .search button[type=submit]:after {
    position: absolute;
    left: 205px;
    top: 19px;
    color: #000;
    content: '\e000';
    font-size: 12px;
    font-weight: normal;
}

body > header .search button[type=submit] > span {
    display: none;
}

body > header .search button[type=submit] {
    border: none;
    padding: 0;
}

body > header .language {
    line-height: 26px;
}

body > header .social {
    clear: left;
}

body > header .social a * {
    display: none;
}

body > header .social > .facebook a:before {
    content: '\e006';
}

body > header .social > .youtube a:before {
    content: '\e003';
}

body > header .social > .xing a:before {
    content: '\e005';
}

body > header .social > .twitter a:before {
    content: '\e004';
}
body > header .social > .googleplus a:before {
	font-family: 'IcoMoon_ext';
    content: '\e603';
}
body > header .social > .linkedin a:before {
	font-family: 'IcoMoon_ext';
    content: '\e606';
}

body > header .login {
    text-align: left !important;
}

body > header .login > form {
    height: 77px;
}

body > header .login > form > * {
    float: left;

}

body > header .login > form > input[type=text],
body > header .login > form > input[type=password] {
    width: 150px;
}

body > header .login > form > button {
    margin: 8px 0 0 18px;
    clear: both;
}

body > header .login > form > label,
body > header .login > form > a {
    line-height: 24px;
}

body > header .login > form > label {
    margin: 8px 0 0 4px;
}

body > header .login > form > a {
    margin: 8px 0 0 0;
}

body > header .login > form > label:after {
    content: '\00a0|\00a0';
    vertical-align: top;
}

body > header .login > form > input[type="checkbox"] {
    height: 24px;
    margin: 8px 0 0 12px;
}

body > header .login > form > input:first-child {
    margin: 24px 8px 0 18px;
}

body > header .login > form > input:first-child + input {
    margin: 24px 0 0 0;
}

body > header .contact {
    text-align: right !important;
}
body > header .contact > .contact_link {
	margin-left: 38px;
}

body > header .country > a:before {
    content: '\e007';
    margin: 0 6px 0 0;
}

body > header .country > ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

body > header .country > ul > li > a {
    padding: 8px 0 0 20px;
}
/*header end -----------------------------------------------------*/

/*navigation start -----------------------------------------------------*/
body > nav:after {
    background-color: #fff;
    background-image: url(../../img/logo2xnew.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 30px;
	min-width: 510px;
}

body > nav a {
    color: #fff;
    text-decoration: none;
}

body > nav > ul > li > ul > li {
    font-size: 14px;
}

body > nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body > nav > ul {
    height: 100px;
    display: table;
    width: 990px;
	min-width: 990px;
    list-style: none;
    padding: 0;
	
	background-color: #004b8d;
}

body > nav > ul > li {
    display: table-cell;
    text-align: center;
    vertical-align: bottom;
}

body > nav > ul > li:first-child {
    text-align: left;
    padding: 0 0 0 37px;
}

body > nav > ul > li:last-child {
    /*text-align: right;*/
    padding: 0 37px 0 0;
}

body > nav h1 {
    height: 60px;
    display: inline-block;
    margin: 0;
    padding: 26px 19px 0 19px;
    white-space: nowrap;

    font-size: 21px;
}

body > nav h2 {
    font-style: normal;
    font-weight: bold;
}

body > nav li h1:hover, body > nav li h1.hovered {
    cursor: pointer;
    color: #000;
	
    background: -moz-linear-gradient(top, #b1b9bc, #abb2b8);
    background-image: -webkit-linear-gradient(top, #b1b9bc, #abb2b8);
    background-image: linear-gradient(to bottom, #b1b9bc, #abb2b8);
    -webkit-box-shadow: 2px 0 2px -2px #000, -2px 0 2px -2px #000;
    -moz-box-shadow: 2px 0 2px -2px #000, -2px 0 2px -2px #000;
    box-shadow: 2px 0 2px -2px #000, -2px 0 2px -2px #000;
}

body > nav.nojs > ul > li > h1:hover + ul {
    display: block;
}

body > nav.nojs > ul > li > ul:hover {
    display: block;
}

body > nav > ul > li > ul {
    display: none;
    position: absolute;
    width: 100%;
    height: 268px;
    left: 0;
    z-index: 500;
    text-align: left;

	
    background: -moz-linear-gradient(top, #abb2b8, #979fa2);
    background-image: -webkit-linear-gradient(top, #abb2b8, #979fa2);
    background-image: linear-gradient(to bottom, #abb2b8, #979fa2);
    -webkit-box-shadow: 0 4px 10px -6px #000;
    -moz-box-shadow: 0 4px 10px -6px #000;
    box-shadow: 0 4px 10px -6px #000;
}

body > nav > ul > li > ul > li {
    display: inline-block;
    float: left;
    margin: 18px 0 0 60px;
    min-width: 105px;
}

body > nav > ul > li > ul > li > ul > li {
    margin: 0 0 3px 0;
}

body > nav h2 {
    font-size: inherit;
}

body > nav h2,
body > nav a {
    line-height: 16px;
}

body > a.homelink {
	display: block;
    height: 100px;
    left: 990px;
    position: absolute;
    right: 0;
    top: 100px;
    max-width: 510px;
    z-index: 21;
}

/*navigation end -----------------------------------------------------*/

/*footer start -----------------------------------------------------*/
body > footer a:hover {
    text-decoration: underline;
}

body > footer > ul:before {
    height: 20px;
    content: ' ';
    width: 100%;
    display: block;

    background-image: url('../../img/border-white.png');
    background-color: #a8b1b6;
}

body > footer > ul {
    height: 105px;
    margin: 0;
    position: absolute;
    width: 100%;
    padding: 0;
    list-style: none;

    background-color: #a8b1b6;
}

body > footer > ul > li {
    float: left;
    line-height: 24px;
    margin: 8px 0 0 0;
}

body > footer > ul > li:first-child {
    margin: 8px 0 0 22px;
}

body > footer > ul > .copyright {
    float: right;
    margin: 8px 18px 0 0;
}

body > footer > ul > li:before {
    content: ' | ';
}

body > footer > ul.footerlinks > li:first-child:before,
body > footer > ul.footerlinks > .copyright:before {
    content: '';
}

body > footer > ul > li:after {
    content: '\00a0';
}

body > footer > ul > li > a {
    text-decoration: none;
}

body > footer > ul > li,
body > footer > ul > li > a {
    color: #fff;
}

body > footer > ul.language > li.selected {
	font-weight: bold;
}

body > footer .desktop,
body > footer .country,
body > footer .social,
body > footer .language {
    display: none;
}
/*footer end -----------------------------------------------------*/

/*image resolution start -----------------------------------------------------*/
img.overview_box {
	width: 134px !important;
	height: 178px !important;
}
img.contact_img {
	width: 134px !important;
	height: 178px !important;
}
img.download_img {
	width: 90px !important;
	height: 120px !important;
}
img.teaser_img {
	width: 121px !important;
	height: 130px !important;
}
img.content_page_img {
	width: 840px !important;
	height: 560px !important;
}
img.content_page_img_small {
	width: 355px !important;
	height: 235px !important;
}
img.slider_testimonial_img {
	width: 549px !important;
	height: 366px !important;
}
img.search_result_img, div.search_result_img {
	width: 182px !important;
	height: 121px !important;
}
img.search_result_img_portrait {
	/*width: 156px !important;*/
	height: 117px !important;
}
img.slider_image_img {
	width: 840px !important;
	height: 300px !important;
}
img.quick_preview_img {
	width: 500px !important;
	height: 179px !important;
}
img.media_link_icon {
	width: 21px !important;
	height: 28px !important;
}


.video_16_9 {
	width: 228px !important;
	height: 128px !important;
}
.video_4_3 {
	width: 170px !important;
	height: 128px !important;
}
/*image resolution end -----------------------------------------------------*/


.mfp-wrap img.slider_testimonial_img {
	max-width: 750px;
	width: auto !important;
	height: auto !important;
}


/*co2map start -----------------------------------------------------*/
.doubleredarrow {
	background: url('../../img/icons/double-arrow-red.png');
	height: 28px;
	width: 24px;
	display: inline-block;
	position: relative;
}
#co2searchbutton {
	height: 33px;
	margin-left: 20px;
	vertical-align: top;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	width: 170px;
}
#noMatches {
	margin-left: 388px;
}
#sbco2n {
	width: 270px;
	margin-left: 8px;
	display: inline-block;
	font-family: 'HeidelbergGothicMlbold';
	line-height: 1.3;
}
#cO2map_wrapper {
	margin: 16px auto 16px auto;
}
.greyBackgroundWrapper {
	padding: 17px 48px 17px 48px;
	background-color: #f0f2f3;
}
#co2searchbynumber {
	margin-left: 48px;
}
#seachbypostalcode #co2digits {
	float: left;
	margin: 0 0 0 15px;
}
#seachbypostalcode {
	margin: 20px 0 20px 0;
}
#searchbyletter {
	margin: 20px 0 0 0;
}
#search_by_number #suchfeld {
	border: 2px solid #e53e16;
	height: 21px;
	margin-left: 20px;
	display: inline-block;
	vertical-align: top;
	width: 375px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

#searchletters {
	margin: 0 0 20px 48px;
}
#co2digits li, #searchletters li  {
	list-style-type: none;
	float: left;
	margin-right: 10px;
	padding: 0;
}
#seachbypostalcode {
	margin-top: 10px;
	margin-left: 48px;
}
#seachbypostalcode .co2label {
	float: left;
}
.resultgroup {
	margin-left: 48px;
	margin-bottom: 20px;
}
.resultgroup span {
	margin-bottom: 15px;
}
.co2results {
}
.co2results hr {
	margin: 0 0 20px 0;
}
.co2result {
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
	width: 200px;
	line-height: 1.4;
}
.co2result h3 {
	margin: 10px 0 0 0;
	font-size: 15px;
	line-height: 1.4;
	font-family: HeidelbergGothicMlbold;
}
.co2result p {
	margin: 0;
}
#singleResult {
	margin-top: 20px;
}
.resultcircle {
	display: block;
}
.circle_20 {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	text-align: center;
}
.circle_20 a {
	color: black;
	text-decoration: none;
}
#cO2map_wrapper .grey {
	background-color: lightgrey;
}
#cO2map_wrapper .grey:hover {
	background-color: grey;
}
.co2resultbutton {
	margin: 10px 0;
}
.co2resultbutton a{
	color: white;
	text-decoration: none;
}
#mapwrapper {
	margin: 20px 0 20px 48px;
}
/*co2map end -----------------------------------------------------*/

/*lightbox -----------------------------------------------------*/
.form_lightbox .mfp-content {
	width: 695px; 
}

.image_box .magnific_image {
	display:block;
}

.image_box .mfp-container .mfp-content {
	width: auto;
}

/*lightbox end -----------------------------------------------------*/

a.link_bold {
	font-weight: bold !important;
}
.pagination a {
	display: inline-block;
	background: white;
	width: 26px;
	height: 22px;
	text-align: center;
	border-radius: 5px;
	
	vertical-align: text-bottom;
	text-decoration: none;
	border: 1px solid #b2babf;
}
.pagination a.current_page {
	background-color: #1a5d99;
	color: white;
	font-weight: normal;
}

.tabletonly, .phoneonly {
	display: none;
}

ul.social_share_privacy_area {
  padding: 0;
  margin: 0px 0 0 0px;
  height: 20px;
  display: table;
  width: 100%;
  text-align: left;
}

.social_share_privacy_area > li {
	float: none;
    height: 25px;
    padding: 8px 20px 0 0;
	display: table-cell;
}

ul.socialshare-row .social_share_privacy_area li.twitter.info_off {
  width: 383px;
  float: none;  
  height: 13px;
  padding: 0;
}
ul.socialshare-row .social_share_privacy_area li.settings_info {
  position: relative;
  top: 8px;
}

ul.social_share_privacy_area iframe {
	height: 20px !important;
	max-height: 20px !important;
}

.social_share_privacy_area li.twitter.info_off {
	width: 160px;
	float: left;
	height: 13px;
	padding: 0;
}

.social_share_privacy_area li.settings_info {
  position: relative;
  top: 10px;
}

ul.socialshare-row li.facebook.help_info.clearfix {
  width: 250px;
  padding-left: 40px;
}

ul.socialshare-row li.twitter.help_info.clearfix {
  width: 220px;
  padding-left: 150px;
}

ul.socialshare-row .social_share_privacy_area li.settings_info .settings_info_menu {
	padding-left: 60px;
}

/*.social_share_privacy_area span.info,
.social_share_privacy_area a.switch,
.social_share_privacy_area .settings_info {
	display: none;
}*/

/* chartanalyzer */

body > main > article > section > div.chartanalyzer {
	margin: 0 60px 0 48px; 
	width: 90%;
}
iframe#chartanalyzer {
	max-width: 882px; 
	min-height: 900px;
}

/* machine comparison */
table.enhanced-table.comparison tr td,
table.enhanced-table.comparison tr th {
	min-width: 25%;
}
table.enhanced-table.comparison td:first-child,
table.enhanced-table.comparison td.datavaluename
 {
	min-width: 100px;
	max-width: 25%;
}

/*table.enhanced-table.comparison tr.secondary td:first-child {
	text-indent: 23px;
}*/

table.enhanced-table.comparison tr.secondary td.datavaluename {
	padding-left: 29px;
}



iframe.stockchart {
	margin-top: 20px;
	margin-left: -10px;
	width: 155px;
}

ul.stockchart {
	margin-top: 10px;
}

/* table layout */

table.domtable {
	margin-bottom: 25px;
}
table td.background-color_000080 {
	background-color: #004b8d;
}
table td.color_FFFFFF  {
	color: #fff;
}

.popup-youtube {
	width: 100%; 
	height: 100%; 
	position: absolute; 
	z-index: 1000; 
	top: 0px; 
	left: 0px;
}

/* IE8 and IE9 column-count fix */
ul.helperlist li  a{
	padding-left: 20px;
	padding-bottom: 0px;
	padding-right: 0px;
	padding-top: 8px;
}