jQuery(document).ready(function($){"use strict";$(".toggle").click(function(){$(".offset").toggleClass("show")});$(".offset ul li a").click(function(){$(".offset").removeClass("show")})});function showSubUl(evt){var liNode=findParentNodeOfType(evt.target,'LI');var parentUlNode=findParentNodeOfType(liNode.parentNode,'UL');var ulElement=getUlElement(liNode);var showElement=ulElement.style.visibility!="visible";var allUlChildElements=parentUlNode.getElementsByTagName('ul');for(var i=0;i<allUlChildElements.length;i++){allUlChildElements[i].style.visibility="hidden";allUlChildElements[i].style.display="none"}
var allShowSubElements=parentUlNode.getElementsByClassName('showsubopen');for(var i=0;i<allShowSubElements.length;i++){var opensubelement=allShowSubElements[i];opensubelement.classList.remove("showsubopen");opensubelement.classList.add("showsub")}
if(showElement){ulElement.style.visibility="visible";ulElement.style.display="block";var spanelement=liNode.getElementsByClassName("showsub")[0];spanelement.classList.remove("showsub");spanelement.classList.add("showsubopen")}}
function findParentNodeOfType(node,tagName){return node.tagName==tagName?node:findParentNodeOfType(node.parentNode,tagName)}
function getUlElement(parentLiNode){return parentLiNode.lastChild};(function($){$.fn.cardtable=function(options){var $tables=this,defaults={headIndex:0},settings=$.extend({},defaults,options),headIndex;if(options&&options.headIndex)
headIndex=options.headIndex;else headIndex=0;return $tables.each(function(){var $table=$(this);if($table.hasClass('stacktable')){return}
var table_css=$(this).prop('class');var $stacktable=$('<div></div>');if(typeof settings.myClass!=='undefined')$stacktable.addClass(settings.myClass);var markup='';var $caption,$topRow,headMarkup,bodyMarkup,tr_class;$table.addClass('stacktable large-only');$caption=$table.find(">caption").clone();$topRow=$table.find('>thead>tr,>tbody>tr,>tfoot>tr,>tr').eq(0);$table.siblings().filter('.small-only').remove();$table.find('>tbody>tr').each(function(){headMarkup='';bodyMarkup='';tr_class=$(this).prop('class');$(this).find('>td,>th').each(function(cellIndex){if($(this).html()!==''){bodyMarkup+='<tr class="'+tr_class+'">';if($topRow.find('>td,>th').eq(cellIndex).html()){bodyMarkup+='<td class="st-key">'+$topRow.find('>td,>th').eq(cellIndex).html()+'</td>'}else{bodyMarkup+='<td class="st-key"></td>'}
bodyMarkup+='<td class="st-val '+$(this).prop('class')+'">'+$(this).html()+'</td>';bodyMarkup+='</tr>'}});markup+='<table class=" '+table_css+' stacktable small-only"><tbody>'+headMarkup+bodyMarkup+'</tbody></table>'});$table.find('>tfoot>tr>td').each(function(rowIndex,value){if($.trim($(value).text())!==''){markup+='<table class="'+table_css+' stacktable small-only"><tbody><tr><td>'+$(value).html()+'</td></tr></tbody></table>'}});$stacktable.prepend($caption);$stacktable.append($(markup));$table.before($stacktable)})};$.fn.stacktable=function(options){var $tables=this,defaults={headIndex:0,displayHeader:!0},settings=$.extend({},defaults,options),headIndex;if(options&&options.headIndex)
headIndex=options.headIndex;else headIndex=0;return $tables.each(function(){var table_css=$(this).prop('class');var $stacktable=$('<table class="'+table_css+' stacktable small-only"><tbody></tbody></table>');if(typeof settings.myClass!=='undefined')$stacktable.addClass(settings.myClass);var markup='';var $table,$caption,$topRow,headMarkup,bodyMarkup,tr_class,displayHeader;$table=$(this);$table.addClass('stacktable large-only');$caption=$table.find(">caption").clone();$topRow=$table.find('>thead>tr,>tbody>tr,>tfoot>tr').eq(0);displayHeader=$table.data('display-header')===undefined?settings.displayHeader:$table.data('display-header');$table.find('>tbody>tr, >thead>tr').each(function(rowIndex){headMarkup='';bodyMarkup='';tr_class=$(this).prop('class');if(rowIndex===0){if(displayHeader){markup+='<tr class=" '+tr_class+' "><th class="st-head-row st-head-row-main" colspan="2">'+$(this).find('>th,>td').eq(headIndex).html()+'</th></tr>'}}else{$(this).find('>td,>th').each(function(cellIndex){if(cellIndex===headIndex){headMarkup='<tr class="'+tr_class+'"><th class="st-head-row" colspan="2">'+$(this).html()+'</th></tr>'}else{if($(this).html()!==''){bodyMarkup+='<tr class="'+tr_class+'">';if($topRow.find('>td,>th').eq(cellIndex).html()){bodyMarkup+='<td class="st-key">'+$topRow.find('>td,>th').eq(cellIndex).html()+'</td>'}else{bodyMarkup+='<td class="st-key"></td>'}
bodyMarkup+='<td class="st-val '+$(this).prop('class')+'">'+$(this).html()+'</td>';bodyMarkup+='</tr>'}}});markup+=headMarkup+bodyMarkup}});$stacktable.prepend($caption);$stacktable.append($(markup));$table.before($stacktable)})};$.fn.stackcolumns=function(options){var $tables=this,defaults={},settings=$.extend({},defaults,options);return $tables.each(function(){var $table=$(this);var $caption=$table.find(">caption").clone();var num_cols=$table.find('>thead>tr,>tbody>tr,>tfoot>tr').eq(0).find('>td,>th').length;if(num_cols<3)
return;var $stackcolumns=$('<table class="stacktable small-only"></table>');if(typeof settings.myClass!=='undefined')$stackcolumns.addClass(settings.myClass);$table.addClass('stacktable large-only');var tb=$('<tbody></tbody>');var col_i=1;while(col_i<num_cols){$table.find('>thead>tr,>tbody>tr,>tfoot>tr').each(function(index){var tem=$('<tr></tr>');if(index===0)tem.addClass("st-head-row st-head-row-main");var first=$(this).find('>td,>th').eq(0).clone().addClass("st-key");var target=col_i;if($(this).find("*[colspan]").length){var i=0;$(this).find('>td,>th').each(function(){var cs=$(this).attr("colspan");if(cs){cs=parseInt(cs,10);target-=cs-1;if((i+cs)>(col_i))
target+=i+cs-col_i-1;i+=cs}else{i++}
if(i>col_i)
return!1})}
var second=$(this).find('>td,>th').eq(target).clone().addClass("st-val").removeAttr("colspan");tem.append(first,second);tb.append(tem)});++col_i}
$stackcolumns.append($(tb));$stackcolumns.prepend($caption);$table.before($stackcolumns)})}}(jQuery));function Swipe(container,options){"use strict";var noop=function(){};var offloadFn=function(fn){setTimeout(fn||noop,0)};var browser={addEventListener:!!window.addEventListener,touch:('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch,transitions:(function(temp){var props=['transitionProperty','WebkitTransition','MozTransition','OTransition','msTransition'];for(var i in props)if(temp.style[props[i]]!==undefined)return!0;return!1})(document.createElement('swipe'))};if(!container)return;var element=container.children[0];var slides,slidePos,width,length;options=options||{};var index=parseInt(options.startSlide,10)||0;var speed=options.speed||300;options.continuous=options.continuous!==undefined?options.continuous:!0;function setup(){slides=element.children;length=slides.length;if(slides.length<2)options.continuous=!1;if(browser.transitions&&options.continuous&&slides.length<3){element.appendChild(slides[0].cloneNode(!0));element.appendChild(element.children[1].cloneNode(!0));slides=element.children}
slidePos=new Array(slides.length);width=container.getBoundingClientRect().width||container.offsetWidth;element.style.width=(slides.length*width)+'px';var pos=slides.length;while(pos--){var slide=slides[pos];slide.style.width=width+'px';slide.setAttribute('data-index',pos);if(browser.transitions){slide.style.left=(pos*-width)+'px';move(pos,index>pos?-width:(index<pos?width:0),0)}}
if(options.continuous&&browser.transitions){move(circle(index-1),-width,0);move(circle(index+1),width,0)}
if(!browser.transitions)element.style.left=(index*-width)+'px';container.style.visibility='visible'}
function prev(){if(options.continuous)slide(index-1);else if(index)slide(index-1)}
function next(){if(options.continuous)slide(index+1);else if(index<slides.length-1)slide(index+1)}
function circle(index){return(slides.length+(index%slides.length))%slides.length}
function slide(to,slideSpeed){if(index==to)return;if(browser.transitions){var direction=Math.abs(index-to)/(index-to);if(options.continuous){var natural_direction=direction;direction=-slidePos[circle(to)]/width;if(direction!==natural_direction)to=-direction*slides.length+to}
var diff=Math.abs(index-to)-1;while(diff--)move(circle((to>index?to:index)-diff-1),width*direction,0);to=circle(to);move(index,width*direction,slideSpeed||speed);move(to,0,slideSpeed||speed);if(options.continuous)move(circle(to-direction),-(width*direction),0)}else{to=circle(to);animate(index*-width,to*-width,slideSpeed||speed)}
index=to;offloadFn(options.callback&&options.callback(index,slides[index]))}
function move(index,dist,speed){translate(index,dist,speed);slidePos[index]=dist}
function translate(index,dist,speed){var slide=slides[index];var style=slide&&slide.style;if(!style)return;style.webkitTransitionDuration=style.MozTransitionDuration=style.msTransitionDuration=style.OTransitionDuration=style.transitionDuration=speed+'ms';style.webkitTransform='translate('+dist+'px,0)'+'translateZ(0)';style.msTransform=style.MozTransform=style.OTransform='translateX('+dist+'px)'}
function animate(from,to,speed){if(!speed){element.style.left=to+'px';return}
var start=+new Date;var timer=setInterval(function(){var timeElap=+new Date-start;if(timeElap>speed){element.style.left=to+'px';if(delay)begin();options.transitionEnd&&options.transitionEnd.call(event,index,slides[index]);clearInterval(timer);return}
element.style.left=(((to-from)*(Math.floor((timeElap/speed)*100)/100))+from)+'px'},4)}
var delay=options.auto||0;var interval;function begin(){interval=setTimeout(next,delay)}
function stop(){delay=0;clearTimeout(interval)}
var start={};var delta={};var isScrolling;var events={handleEvent:function(event){switch(event.type){case 'touchstart':this.start(event);break;case 'touchmove':this.move(event);break;case 'touchend':offloadFn(this.end(event));break;case 'webkitTransitionEnd':case 'msTransitionEnd':case 'oTransitionEnd':case 'otransitionend':case 'transitionend':offloadFn(this.transitionEnd(event));break;case 'resize':offloadFn(setup);break}
if(options.stopPropagation)event.stopPropagation()},start:function(event){var touches=event.touches[0];start={x:touches.pageX,y:touches.pageY,time:+new Date};isScrolling=undefined;delta={};element.addEventListener('touchmove',this,!1);element.addEventListener('touchend',this,!1)},move:function(event){if(event.touches.length>1||event.scale&&event.scale!==1)return
if(options.disableScroll)event.preventDefault();var touches=event.touches[0];delta={x:touches.pageX-start.x,y:touches.pageY-start.y}
if(typeof isScrolling=='undefined'){isScrolling=!!(isScrolling||Math.abs(delta.x)<Math.abs(delta.y))}
if(!isScrolling){event.preventDefault();stop();if(options.continuous){translate(circle(index-1),delta.x+slidePos[circle(index-1)],0);translate(index,delta.x+slidePos[index],0);translate(circle(index+1),delta.x+slidePos[circle(index+1)],0)}else{delta.x=delta.x/((!index&&delta.x>0||index==slides.length-1&&delta.x<0)?(Math.abs(delta.x)/width+1):1);translate(index-1,delta.x+slidePos[index-1],0);translate(index,delta.x+slidePos[index],0);translate(index+1,delta.x+slidePos[index+1],0)}}},end:function(event){var duration=+new Date-start.time;var isValidSlide=Number(duration)<250&&Math.abs(delta.x)>20||Math.abs(delta.x)>width/2;var isPastBounds=!index&&delta.x>0||index==slides.length-1&&delta.x<0;if(options.continuous)isPastBounds=!1;var direction=delta.x<0;if(!isScrolling){if(isValidSlide&&!isPastBounds){if(direction){if(options.continuous){move(circle(index-1),-width,0);move(circle(index+2),width,0)}else{move(index-1,-width,0)}
move(index,slidePos[index]-width,speed);move(circle(index+1),slidePos[circle(index+1)]-width,speed);index=circle(index+1)}else{if(options.continuous){move(circle(index+1),width,0);move(circle(index-2),-width,0)}else{move(index+1,width,0)}
move(index,slidePos[index]+width,speed);move(circle(index-1),slidePos[circle(index-1)]+width,speed);index=circle(index-1)}
options.callback&&options.callback(index,slides[index])}else{if(options.continuous){move(circle(index-1),-width,speed);move(index,0,speed);move(circle(index+1),width,speed)}else{move(index-1,-width,speed);move(index,0,speed);move(index+1,width,speed)}}}
element.removeEventListener('touchmove',events,!1)
element.removeEventListener('touchend',events,!1)},transitionEnd:function(event){if(parseInt(event.target.getAttribute('data-index'),10)==index){if(delay)begin();options.transitionEnd&&options.transitionEnd.call(event,index,slides[index])}}}
setup();if(delay)begin();if(browser.addEventListener){if(browser.touch)element.addEventListener('touchstart',events,!1);if(browser.transitions){element.addEventListener('webkitTransitionEnd',events,!1);element.addEventListener('msTransitionEnd',events,!1);element.addEventListener('oTransitionEnd',events,!1);element.addEventListener('otransitionend',events,!1);element.addEventListener('transitionend',events,!1)}
window.addEventListener('resize',events,!1)}else{window.onresize=function(){setup()}}
return{setup:function(){setup()},slide:function(to,speed){stop();slide(to,speed)},prev:function(){stop();prev()},next:function(){stop();next()},stop:function(){stop()},getPos:function(){return index},getNumSlides:function(){return length},kill:function(){stop();element.style.width='';element.style.left='';var pos=slides.length;while(pos--){var slide=slides[pos];slide.style.width='';slide.style.left='';if(browser.transitions)translate(pos,0,0)}
if(browser.addEventListener){element.removeEventListener('touchstart',events,!1);element.removeEventListener('webkitTransitionEnd',events,!1);element.removeEventListener('msTransitionEnd',events,!1);element.removeEventListener('oTransitionEnd',events,!1);element.removeEventListener('otransitionend',events,!1);element.removeEventListener('transitionend',events,!1);window.removeEventListener('resize',events,!1)}else{window.onresize=null}}}}
if(window.jQuery||window.Zepto){(function($){$.fn.Swipe=function(params){return this.each(function(){$(this).data('Swipe',new Swipe($(this)[0],params))})}})(window.jQuery||window.Zepto)}
function openTab(evt,tabcontentid,group_counter){var i,tab_content,tab_links;tab_content=document.getElementsByClassName("tab_content group_"+group_counter);for(i=0;i<tab_content.length;i++){tab_content[i].style.display="none"}
tab_links=document.getElementsByClassName("tab_links group_"+group_counter);for(i=0;i<tab_links.length;i++){tab_links[i].className=tab_links[i].className.replace(" active","")}
document.getElementById(tabcontentid).style.display="block";evt.currentTarget.className+=" active"}
var defaulttabs=document.getElementsByClassName("defaulttab");for(var i=0;i<defaulttabs.length;i++){defaulttabs[i].click()}
var acc=document.getElementsByClassName("accordion_item");var i;for(i=0;i<acc.length;i++){acc[i].onclick=function(){this.classList.toggle("accordion_act");this.nextElementSibling.classList.toggle("show");var panel=this.nextElementSibling;if(panel.style.maxHeight){panel.style.maxHeight=null}else{panel.style.maxHeight=panel.scrollHeight+"px"}}}
!function(t){var n={};function r(e){if(n[e])return n[e].exports;var o=n[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=t,r.c=n,r.d=function(t,n,e){r.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:e})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,n){if(1&n&&(t=r(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(r.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var o in t)r.d(e,o,function(n){return t[n]}.bind(null,o));return e},r.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(n,"a",n),n},r.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},r.p="",r(r.s=46)}([function(t,n,r){(function(n){var r=function(t){return t&&t.Math==Math&&t};t.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n&&n)||Function("return this")()}).call(this,r(52))},function(t,n,r){var e=r(0),o=r(30),i=r(2),u=r(31),c=r(40),f=r(64),a=o("wks"),s=e.Symbol,p=f?s:s&&s.withoutSetter||u;t.exports=function(t){return i(a,t)||(c&&i(s,t)?a[t]=s[t]:a[t]=p("Symbol."+t)),a[t]}},function(t,n){var r={}.hasOwnProperty;t.exports=function(t,n){return r.call(t,n)}},function(t,n){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,n,r){var e=r(5),o=r(6),i=r(11);t.exports=e?function(t,n,r){return o.f(t,n,i(1,r))}:function(t,n,r){return t[n]=r,t}},function(t,n,r){var e=r(3);t.exports=!e((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(t,n,r){var e=r(5),o=r(28),i=r(8),u=r(16),c=Object.defineProperty;n.f=e?c:function(t,n,r){if(i(t),n=u(n,!0),i(r),o)try{return c(t,n,r)}catch(t){}if("get"in r||"set"in r)throw TypeError("Accessors not supported");return"value"in r&&(t[n]=r.value),t}},function(t,n){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,n,r){var e=r(7);t.exports=function(t){if(!e(t))throw TypeError(String(t)+" is not an object");return t}},function(t,n){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,n,r){var e=r(0),o=r(19).f,i=r(4),u=r(32),c=r(15),f=r(56),a=r(61);t.exports=function(t,n){var r,s,p,l,v,y=t.target,h=t.global,g=t.stat;if(r=h?e:g?e[y]||c(y,{}):(e[y]||{}).prototype)for(s in n){if(l=n[s],p=t.noTargetGet?(v=o(r,s))&&v.value:r[s],!a(h?s:y+(g?".":"#")+s,t.forced)&&void 0!==p){if(typeof l==typeof p)continue;f(l,p)}(t.sham||p&&p.sham)&&i(l,"sham",!0),u(r,s,l,t)}}},function(t,n){t.exports=function(t,n){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:n}}},function(t,n){t.exports=!1},function(t,n){t.exports={}},function(t,n){var r=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?e:r)(t)}},function(t,n,r){var e=r(0),o=r(4);t.exports=function(t,n){try{o(e,t,n)}catch(r){e[t]=n}return n}},function(t,n,r){var e=r(7);t.exports=function(t,n){if(!e(t))return t;var r,o;if(n&&"function"==typeof(r=t.toString)&&!e(o=r.call(t)))return o;if("function"==typeof(r=t.valueOf)&&!e(o=r.call(t)))return o;if(!n&&"function"==typeof(r=t.toString)&&!e(o=r.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,n,r){var e=r(30),o=r(31),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,n){t.exports={}},function(t,n,r){var e=r(5),o=r(54),i=r(11),u=r(20),c=r(16),f=r(2),a=r(28),s=Object.getOwnPropertyDescriptor;n.f=e?s:function(t,n){if(t=u(t),n=c(n,!0),a)try{return s(t,n)}catch(t){}if(f(t,n))return i(!o.f.call(t,n),t[n])}},function(t,n,r){var e=r(55),o=r(9);t.exports=function(t){return e(o(t))}},function(t,n){var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},function(t,n,r){var e=r(14),o=Math.min;t.exports=function(t){return t>0?o(e(t),9007199254740991):0}},function(t,n){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,n,r){var e=r(0),o=r(43),i=Function.call;t.exports=function(t,n,r){return o(i,e[t].prototype[n],r)}},function(t,n,r){var e,o,i,u=r(51),c=r(0),f=r(7),a=r(4),s=r(2),p=r(17),l=r(18),v=c.WeakMap;if(u){var y=new v,h=y.get,g=y.has,d=y.set;e=function(t,n){return d.call(y,t,n),n},o=function(t){return h.call(y,t)||{}},i=function(t){return g.call(y,t)}}else{var x=p("state");l[x]=!0,e=function(t,n){return a(t,x,n),n},o=function(t){return s(t,x)?t[x]:{}},i=function(t){return s(t,x)}}t.exports={set:e,get:o,has:i,enforce:function(t){return i(t)?o(t):e(t,{})},getterFor:function(t){return function(n){var r;if(!f(n)||(r=o(n)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return r}}}},function(t,n,r){var e=r(27),o=Function.toString;"function"!=typeof e.inspectSource&&(e.inspectSource=function(t){return o.call(t)}),t.exports=e.inspectSource},function(t,n,r){var e=r(0),o=r(15),i=e["__core-js_shared__"]||o("__core-js_shared__",{});t.exports=i},function(t,n,r){var e=r(5),o=r(3),i=r(29);t.exports=!e&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,n,r){var e=r(0),o=r(7),i=e.document,u=o(i)&&o(i.createElement);t.exports=function(t){return u?i.createElement(t):{}}},function(t,n,r){var e=r(12),o=r(27);(t.exports=function(t,n){return o[t]||(o[t]=void 0!==n?n:{})})("versions",[]).push({version:"3.6.4",mode:e?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},function(t,n){var r=0,e=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++r+e).toString(36)}},function(t,n,r){var e=r(0),o=r(4),i=r(2),u=r(15),c=r(26),f=r(25),a=f.get,s=f.enforce,p=String(String).split("String");(t.exports=function(t,n,r,c){var f=!!c&&!!c.unsafe,a=!!c&&!!c.enumerable,l=!!c&&!!c.noTargetGet;"function"==typeof r&&("string"!=typeof n||i(r,"name")||o(r,"name",n),s(r).source=p.join("string"==typeof n?n:"")),t!==e?(f?!l&&t[n]&&(a=!0):delete t[n],a?t[n]=r:o(t,n,r)):a?t[n]=r:u(n,r)})(Function.prototype,"toString",(function(){return"function"==typeof this&&a(this).source||c(this)}))},function(t,n,r){var e=r(34),o=r(0),i=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,n){return arguments.length<2?i(e[t])||i(o[t]):e[t]&&e[t][n]||o[t]&&o[t][n]}},function(t,n,r){var e=r(0);t.exports=e},function(t,n,r){var e=r(2),o=r(20),i=r(36).indexOf,u=r(18);t.exports=function(t,n){var r,c=o(t),f=0,a=[];for(r in c)!e(u,r)&&e(c,r)&&a.push(r);for(;n.length>f;)e(c,r=n[f++])&&(~i(a,r)||a.push(r));return a}},function(t,n,r){var e=r(20),o=r(22),i=r(59),u=function(t){return function(n,r,u){var c,f=e(n),a=o(f.length),s=i(u,a);if(t&&r!=r){for(;a>s;)if((c=f[s++])!=c)return!0}else for(;a>s;s++)if((t||s in f)&&f[s]===r)return t||s||0;return!t&&-1}};t.exports={includes:u(!0),indexOf:u(!1)}},function(t,n,r){"use strict";var e,o,i,u=r(38),c=r(4),f=r(2),a=r(1),s=r(12),p=a("iterator"),l=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(e=o):l=!0),null==e&&(e={}),s||f(e,p)||c(e,p,(function(){return this})),t.exports={IteratorPrototype:e,BUGGY_SAFARI_ITERATORS:l}},function(t,n,r){var e=r(2),o=r(39),i=r(17),u=r(63),c=i("IE_PROTO"),f=Object.prototype;t.exports=u?Object.getPrototypeOf:function(t){return t=o(t),e(t,c)?t[c]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?f:null}},function(t,n,r){var e=r(9);t.exports=function(t){return Object(e(t))}},function(t,n,r){var e=r(3);t.exports=!!Object.getOwnPropertySymbols&&!e((function(){return!String(Symbol())}))},function(t,n,r){var e,o=r(8),i=r(65),u=r(23),c=r(18),f=r(67),a=r(29),s=r(17),p=s("IE_PROTO"),l=function(){},v=function(t){return"<script>"+t+"<\/script>"},y=function(){try{e=document.domain&&new ActiveXObject("htmlfile")}catch(t){}var t,n;y=e?function(t){t.write(v("")),t.close();var n=t.parentWindow.Object;return t=null,n}(e):((n=a("iframe")).style.display="none",f.appendChild(n),n.src=String("javascript:"),(t=n.contentWindow.document).open(),t.write(v("document.F=Object")),t.close(),t.F);for(var r=u.length;r--;)delete y.prototype[u[r]];return y()};c[p]=!0,t.exports=Object.create||function(t,n){var r;return null!==t?(l.prototype=o(t),r=new l,l.prototype=null,r[p]=t):r=y(),void 0===n?r:i(r,n)}},function(t,n,r){var e=r(6).f,o=r(2),i=r(1)("toStringTag");t.exports=function(t,n,r){t&&!o(t=r?t:t.prototype,i)&&e(t,i,{configurable:!0,value:n})}},function(t,n,r){var e=r(72);t.exports=function(t,n,r){if(e(t),void 0===n)return t;switch(r){case 0:return function(){return t.call(n)};case 1:return function(r){return t.call(n,r)};case 2:return function(r,e){return t.call(n,r,e)};case 3:return function(r,e,o){return t.call(n,r,e,o)}}return function(){return t.apply(n,arguments)}}},function(t,n,r){var e=r(88);t.exports=function(t){if(e(t))throw TypeError("The method doesn't accept regular expressions");return t}},function(t,n,r){var e=r(1)("match");t.exports=function(t){var n=/./;try{"/./"[t](n)}catch(r){try{return n[e]=!1,"/./"[t](n)}catch(t){}}return!1}},function(t,n,r){"use strict";r.r(n);r(47),r(80),r(85),r(89);[Element.prototype,CharacterData.prototype,DocumentType.prototype].forEach((function(t){t.hasOwnProperty("remove")||Object.defineProperty(t,"remove",{configurable:!0,enumerable:!0,writable:!0,value:function(){null!==this.parentNode&&this.parentNode.removeChild(this)}})}))},function(t,n,r){var e=r(48);t.exports=e},function(t,n,r){r(49),r(70);var e=r(34);t.exports=e.Array.from},function(t,n,r){"use strict";var e=r(50).charAt,o=r(25),i=r(53),u=o.set,c=o.getterFor("String Iterator");i(String,"String",(function(t){u(this,{type:"String Iterator",string:String(t),index:0})}),(function(){var t,n=c(this),r=n.string,o=n.index;return o>=r.length?{value:void 0,done:!0}:(t=e(r,o),n.index+=t.length,{value:t,done:!1})}))},function(t,n,r){var e=r(14),o=r(9),i=function(t){return function(n,r){var i,u,c=String(o(n)),f=e(r),a=c.length;return f<0||f>=a?t?"":void 0:(i=c.charCodeAt(f))<55296||i>56319||f+1===a||(u=c.charCodeAt(f+1))<56320||u>57343?t?c.charAt(f):i:t?c.slice(f,f+2):u-56320+(i-55296<<10)+65536}};t.exports={codeAt:i(!1),charAt:i(!0)}},function(t,n,r){var e=r(0),o=r(26),i=e.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,n){var r;r=function(){return this}();try{r=r||new Function("return this")()}catch(t){"object"==typeof window&&(r=window)}t.exports=r},function(t,n,r){"use strict";var e=r(10),o=r(62),i=r(38),u=r(68),c=r(42),f=r(4),a=r(32),s=r(1),p=r(12),l=r(13),v=r(37),y=v.IteratorPrototype,h=v.BUGGY_SAFARI_ITERATORS,g=s("iterator"),d=function(){return this};t.exports=function(t,n,r,s,v,x,b){o(r,n,s);var m,O,S,w=function(t){if(t===v&&T)return T;if(!h&&t in A)return A[t];switch(t){case"keys":case"values":case"entries":return function(){return new r(this,t)}}return function(){return new r(this)}},j=n+" Iterator",_=!1,A=t.prototype,P=A[g]||A["@@iterator"]||v&&A[v],T=!h&&P||w(v),E="Array"==n&&A.entries||P;if(E&&(m=i(E.call(new t)),y!==Object.prototype&&m.next&&(p||i(m)===y||(u?u(m,y):"function"!=typeof m[g]&&f(m,g,d)),c(m,j,!0,!0),p&&(l[j]=d))),"values"==v&&P&&"values"!==P.name&&(_=!0,T=function(){return P.call(this)}),p&&!b||A[g]===T||f(A,g,T),l[n]=T,v)if(O={values:w("values"),keys:x?T:w("keys"),entries:w("entries")},b)for(S in O)!h&&!_&&S in A||a(A,S,O[S]);else e({target:n,proto:!0,forced:h||_},O);return O}},function(t,n,r){"use strict";var e={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!e.call({1:2},1);n.f=i?function(t){var n=o(this,t);return!!n&&n.enumerable}:e},function(t,n,r){var e=r(3),o=r(21),i="".split;t.exports=e((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,n,r){var e=r(2),o=r(57),i=r(19),u=r(6);t.exports=function(t,n){for(var r=o(n),c=u.f,f=i.f,a=0;a<r.length;a++){var s=r[a];e(t,s)||c(t,s,f(n,s))}}},function(t,n,r){var e=r(33),o=r(58),i=r(60),u=r(8);t.exports=e("Reflect","ownKeys")||function(t){var n=o.f(u(t)),r=i.f;return r?n.concat(r(t)):n}},function(t,n,r){var e=r(35),o=r(23).concat("length","prototype");n.f=Object.getOwnPropertyNames||function(t){return e(t,o)}},function(t,n,r){var e=r(14),o=Math.max,i=Math.min;t.exports=function(t,n){var r=e(t);return r<0?o(r+n,0):i(r,n)}},function(t,n){n.f=Object.getOwnPropertySymbols},function(t,n,r){var e=r(3),o=/#|\.prototype\./,i=function(t,n){var r=c[u(t)];return r==a||r!=f&&("function"==typeof n?e(n):!!n)},u=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},c=i.data={},f=i.NATIVE="N",a=i.POLYFILL="P";t.exports=i},function(t,n,r){"use strict";var e=r(37).IteratorPrototype,o=r(41),i=r(11),u=r(42),c=r(13),f=function(){return this};t.exports=function(t,n,r){var a=n+" Iterator";return t.prototype=o(e,{next:i(1,r)}),u(t,a,!1,!0),c[a]=f,t}},function(t,n,r){var e=r(3);t.exports=!e((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},function(t,n,r){var e=r(40);t.exports=e&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,n,r){var e=r(5),o=r(6),i=r(8),u=r(66);t.exports=e?Object.defineProperties:function(t,n){i(t);for(var r,e=u(n),c=e.length,f=0;c>f;)o.f(t,r=e[f++],n[r]);return t}},function(t,n,r){var e=r(35),o=r(23);t.exports=Object.keys||function(t){return e(t,o)}},function(t,n,r){var e=r(33);t.exports=e("document","documentElement")},function(t,n,r){var e=r(8),o=r(69);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,n=!1,r={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(r,[]),n=r instanceof Array}catch(t){}return function(r,i){return e(r),o(i),n?t.call(r,i):r.__proto__=i,r}}():void 0)},function(t,n,r){var e=r(7);t.exports=function(t){if(!e(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},function(t,n,r){var e=r(10),o=r(71);e({target:"Array",stat:!0,forced:!r(79)((function(t){Array.from(t)}))},{from:o})},function(t,n,r){"use strict";var e=r(43),o=r(39),i=r(73),u=r(74),c=r(22),f=r(75),a=r(76);t.exports=function(t){var n,r,s,p,l,v,y=o(t),h="function"==typeof this?this:Array,g=arguments.length,d=g>1?arguments[1]:void 0,x=void 0!==d,b=a(y),m=0;if(x&&(d=e(d,g>2?arguments[2]:void 0,2)),null==b||h==Array&&u(b))for(r=new h(n=c(y.length));n>m;m++)v=x?d(y[m],m):y[m],f(r,m,v);else for(l=(p=b.call(y)).next,r=new h;!(s=l.call(p)).done;m++)v=x?i(p,d,[s.value,m],!0):s.value,f(r,m,v);return r.length=m,r}},function(t,n){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},function(t,n,r){var e=r(8);t.exports=function(t,n,r,o){try{return o?n(e(r)[0],r[1]):n(r)}catch(n){var i=t.return;throw void 0!==i&&e(i.call(t)),n}}},function(t,n,r){var e=r(1),o=r(13),i=e("iterator"),u=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||u[i]===t)}},function(t,n,r){"use strict";var e=r(16),o=r(6),i=r(11);t.exports=function(t,n,r){var u=e(n);u in t?o.f(t,u,i(0,r)):t[u]=r}},function(t,n,r){var e=r(77),o=r(13),i=r(1)("iterator");t.exports=function(t){if(null!=t)return t[i]||t["@@iterator"]||o[e(t)]}},function(t,n,r){var e=r(78),o=r(21),i=r(1)("toStringTag"),u="Arguments"==o(function(){return arguments}());t.exports=e?o:function(t){var n,r,e;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,n){try{return t[n]}catch(t){}}(n=Object(t),i))?r:u?o(n):"Object"==(e=o(n))&&"function"==typeof n.callee?"Arguments":e}},function(t,n,r){var e={};e[r(1)("toStringTag")]="z",t.exports="[object z]"===String(e)},function(t,n,r){var e=r(1)("iterator"),o=!1;try{var i=0,u={next:function(){return{done:!!i++}},return:function(){o=!0}};u[e]=function(){return this},Array.from(u,(function(){throw 2}))}catch(t){}t.exports=function(t,n){if(!n&&!o)return!1;var r=!1;try{var i={};i[e]=function(){return{next:function(){return{done:r=!0}}}},t(i)}catch(t){}return r}},function(t,n,r){var e=r(81);t.exports=e},function(t,n,r){r(82);var e=r(24);t.exports=e("Array","includes")},function(t,n,r){"use strict";var e=r(10),o=r(36).includes,i=r(83);e({target:"Array",proto:!0,forced:!r(84)("indexOf",{ACCESSORS:!0,1:0})},{includes:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("includes")},function(t,n,r){var e=r(1),o=r(41),i=r(6),u=e("unscopables"),c=Array.prototype;null==c[u]&&i.f(c,u,{configurable:!0,value:o(null)}),t.exports=function(t){c[u][t]=!0}},function(t,n,r){var e=r(5),o=r(3),i=r(2),u=Object.defineProperty,c={},f=function(t){throw t};t.exports=function(t,n){if(i(c,t))return c[t];n||(n={});var r=[][t],a=!!i(n,"ACCESSORS")&&n.ACCESSORS,s=i(n,0)?n[0]:f,p=i(n,1)?n[1]:void 0;return c[t]=!!r&&!o((function(){if(a&&!e)return!0;var t={length:-1};a?u(t,1,{enumerable:!0,get:f}):t[1]=1,r.call(t,s,p)}))}},function(t,n,r){var e=r(86);t.exports=e},function(t,n,r){r(87);var e=r(24);t.exports=e("String","startsWith")},function(t,n,r){"use strict";var e,o=r(10),i=r(19).f,u=r(22),c=r(44),f=r(9),a=r(45),s=r(12),p="".startsWith,l=Math.min,v=a("startsWith");o({target:"String",proto:!0,forced:!!(s||v||(e=i(String.prototype,"startsWith"),!e||e.writable))&&!v},{startsWith:function(t){var n=String(f(this));c(t);var r=u(l(arguments.length>1?arguments[1]:void 0,n.length)),e=String(t);return p?p.call(n,e,r):n.slice(r,r+e.length)===e}})},function(t,n,r){var e=r(7),o=r(21),i=r(1)("match");t.exports=function(t){var n;return e(t)&&(void 0!==(n=t[i])?!!n:"RegExp"==o(t))}},function(t,n,r){var e=r(90);t.exports=e},function(t,n,r){r(91);var e=r(24);t.exports=e("String","includes")},function(t,n,r){"use strict";var e=r(10),o=r(44),i=r(9);e({target:"String",proto:!0,forced:!r(45)("includes")},{includes:function(t){return!!~String(i(this)).indexOf(o(t),arguments.length>1?arguments[1]:void 0)}})}]);"use strict";window.cookieconsent={googlesitetag:{gt_id:'UA-17433108-1'},pardot:{piAId:'63422',piCId:'1410'},options:{option1:{cookies:['googlesitetag','pardot'],text_en:"\n        <label for=\"option1\">Marketing / Analyse</label>\n        <p class=\"cookieconsent-banner__p\">\n          By performance and marketing cookies we mean cookies which are technically not required. \n          We use performance and marketing cookies only if you have given us your prior consent. \n          With such cookies, we collect information about how users interact with our website and which pages have been visited. \n          This helps us to understand user activity on our website on an aggregated as well as on a personal \n          level to provide you relevant content and services.\n        </p>\n        <p class=\"cookieconsent-banner__p\">\n          <a href=\"https://www.hitex.com/company/support/privacy-policy/cookies/\" title=\"Link to Cookie Informations\">More details</a>\n        </p>\n      ",text_de:"\n        <label for=\"option1\">Marketing / Analyse</label>\n        <p class=\"cookieconsent-banner__p\">\n          Wir verwenden Performance und Marketing Cookies nur, wenn Sie uns zuvor Ihre Einwilligung gegeben haben.\n          Mit solchen Cookies erfassen wir Informationen dar\xFCber, wie Besucher mit unserer Webseite interagieren und welche Seiten sie besucht haben.\n          Dies hilft uns, die Benutzeraktivit\xE4ten auf unserer Website sowohl auf aggregierter als auch auf pers\xF6nlicher Ebene zu verstehen,\n          um Ihnen relevante Inhalte und Dienste anbieten zu k\xF6nnen.\n        </p>\n        <p class=\"cookieconsent-banner__p\">\n          <a href=\"https://www.hitex.com/company/support/privacy-policy/cookies/\" title=\"Link zu den Cookie Informationen\">Weitere Informationen</a>\n        </p>\n      "},}};var cookieconsent_cookie_fn={'googlesitetag':{allow:enableGooglesitetag,deny:disableGooglesitetag},'pardot':{allow:enablePardot,deny:disablePardot},'youtube':{allow:enableYoutube,deny:disableYoutube}};function disablePardot(){deleteScriptIncluding("pardot.com")}
function deleteScriptIncluding(includeText){var htmlCollection=document.getElementsByTagName('script');var scriptElements=Array.prototype.slice.call(htmlCollection);scriptElements.forEach(function(sc){if(sc.src.includes(includeText)){sc.remove()}})}
var piAId;var piCId;var piHostname;function enablePardot(){piAId=window.cookieconsent.pardot.piAId;piCId=window.cookieconsent.pardot.piCId;piHostname='pi.pardot.com';var s=document.createElement('script');s.type='text/javascript';s.src=('https:'==document.location.protocol?'https://pi':'http://cdn')+'.pardot.com/pd.js';var c=document.getElementsByTagName('script')[0];c.parentNode.insertBefore(s,c)}
function enableGooglesitetag(){window['ga-disable-'+window.cookieconsent.googlesitetag.gt_id]=!1;if(window.cookieconsent.googlesitetag.script_loaded){return}
var firstScriptElement=document.getElementsByTagName('script')[0];var gtScriptElement=document.createElement('script');gtScriptElement.async=!0;gtScriptElement.src="https://www.googletagmanager.com/gtag/js?id="+window.cookieconsent.googlesitetag.gt_id;firstScriptElement.parentNode.insertBefore(gtScriptElement,firstScriptElement);window.dataLayer=window.dataLayer||[];function gtag(){window.dataLayer.push(arguments)}
gtag('js',new Date());gtag('config',window.cookieconsent.googlesitetag.gt_id,{'anonymize_ip':!0});window.cookieconsent.googlesitetag.script_loaded=!0}
function disableGooglesitetag(){window['ga-disable-'+window.cookieconsent.googlesitetag.gt_id]=!0}
function showYoutubeVideo(contentElementId){var yt_parent_div=document.getElementById(contentElementId);var yt_iframe=yt_parent_div.querySelector('iframe');var yt_overlay_div=yt_parent_div.querySelector('.js-ytbanner');yt_iframe.src=yt_parent_div.dataset.yt_video_src;yt_overlay_div.style.visibility="hidden"}
function hideYoutubeVideo(contentElementId){var yt_parent_div=document.getElementById(contentElementId);var yt_iframe=yt_parent_div.querySelector('iframe');var yt_overlay_div=yt_parent_div.querySelector('.js-ytbanner');yt_iframe.src="";yt_overlay_div.style.visibility="visible"}
function enableYoutube(){var yt_divs=Array.from(document.getElementsByClassName("youtubevideo"));yt_divs.forEach(function(yt_parent_div){showYoutubeVideo(yt_parent_div.id)})}
function disableYoutube(){var yt_divs=Array.from(document.getElementsByClassName("youtubevideo"));yt_divs.forEach(function(yt_parent_div){hideYoutubeVideo(yt_parent_div.id)})}
var consentBanner=document.createElement("DIV");consentBanner.className="cookieconsent";document.body.appendChild(consentBanner);function showCookieConsentBanner(){if(document.documentElement.lang==='en'){consentBanner.innerHTML="\n      <div class='cookieconsent__overlay'>\n        <div class='cookieconsent-banner'>\n          <h3 class=\"cookieconsent-banner__h3\">Use of cookies</h3>\n          <p class=\"cookieconsent-banner__p\">We would like to use cookies to better understand your use of this website. This enables us to improve your future user experience on our website and to provide you with interest-based advertising and tailored content on our website as outside our website by partners. You can change or revoke your cookie settings at any time. </p>\n          <p class=\"cookieconsent-banner__p\"><a href=\"https://www.hitex.com/company/support/privacy-policy/\" title=\"Link to Privacy Policy\">Privacy Policy</a> and <a href=\"https://www.hitex.com/imprint/\" title=\"Link to Imprint\">Imprint</a></p>\n          <!-- <button onclick='denyAll()'> Deny </button> -->\n          <button class=\"cookieconsent-banner__button--settings\" onclick='showCookieConsentSettings()' title=\"Link to view and change cookie settings\">View and change cookie settings</button>\n          <button class=\"cookieconsent-banner__button\" onclick='allowAll()'>Accept</button>\n        </div>\n      </div>\n    "}else{consentBanner.innerHTML="\n      <div class='cookieconsent__overlay'>\n        <div class='cookieconsent-banner'>\n          <h3 class=\"cookieconsent-banner__h3\">Nutzung von Cookies</h3>\n          <p class=\"cookieconsent-banner__p\">Wir m\xF6chten Cookies verwenden, um Ihre Nutzung dieser Webseite besser zu verstehen. Dies erm\xF6glicht es uns, Ihr zuk\xFCnftiges Nutzererlebnis auf unserer Webseite zu verbessern und Ihnen interessenbezogene Werbung und ma\xDFgeschneiderte Inhalte sowohl auf unserer Webseite als auch au\xDFerhalb unserer Webseite durch Partner zu pr\xE4sentieren. Sie k\xF6nnen Ihre Cookie-Einstellungen jederzeit \xE4ndern oder widerrufen. </p>\n          <p class=\"cookieconsent-banner__p\"><a href=\"https://www.hitex.com/company/support/privacy-policy/\" title=\"Link zur Datenschutzerkl\xE4rung\">Datenschutzerkl\xE4rung</a> und <a href=\"https://www.hitex.com/imprint/\" title=\"Link zum Impressum\">Impressum</a></p>\n          <!-- <button onclick='denyAll()'> Deny </button> -->\n          <button class=\"cookieconsent-banner__button--settings\" onclick='showCookieConsentSettings()' title=\"Link zum Anzeigen und \xC4ndern der Cookie Einstellungen\">Anzeigen und \xC4ndern der Cookie Einstellungen</button>\n          <button class=\"cookieconsent-banner__button\" onclick='allowAll()'>Akzeptieren</button>\n        </div>\n      </div>\n    "}}
function hideCookieConsentBanner(){var buttontext=document.documentElement.lang==='en'?'Cookie Settings':'Cookie Einstellungen';consentBanner.innerHTML="\n    <button class=\"cookieconsent__settings-button\" onclick=\"showCookieConsentBanner()\">".concat(buttontext,"</button>\n  ")}
function showCookieConsentSettings(){var checkboxes="";Object.keys(window.cookieconsent.options).forEach(function(key){var cookie=window.cookieconsent.options[key];var lang=document.documentElement.lang;var checked=cookie.allow?'checked':'';checkboxes+="<input class='js-cookieconsent__checkbox' type='checkbox' value='".concat(key,"' ").concat(checked,"> ").concat(cookie['text_'+lang])});if(document.documentElement.lang==='en'){consentBanner.innerHTML="    \n      <div class='cookieconsent__overlay'>\n        <div class='cookieconsent-banner'>\n          <h3 class=\"cookieconsent-banner__h3\">Manage Cookie Preferences</h3>\n          <div class=\"cookieconsent-banner__settings\">\n            <input disabled=\"\" type=\"checkbox\" name=\"technical-required-cookies\" value=\"technical-required-cookies\" checked=\"\">\n            <label class=\"cookieconsent-banner__settings-label--required\" for=\"technical-required-cookies\">Technically required cookies - always selected by default</label>\n            <p class=\"cookieconsent-banner__p\">By technically required cookies we mean cookies without those the technical provision of the online service cannot be ensured. These include e.g. cookies supporting essential services like a smooth reproduction of video or audio footage. So called \u2018functional cookies\u2019 are also assigned belonging to this category. Functional cookies store information in order to provide you comfortable use of our online services (e.g. language selection). The legal basis for the processing of personal data by means of cookies of this category is Hitex\u2019s legitimate interest. This includes, among other things, the interest in having a professional external presentation as well as an optimal balancing of the loads on the server due to technical reasons.</p>\n            <p class=\"cookieconsent-banner__p\"><a href=\"https://www.hitex.com/company/support/privacy-policy/cookies/\" title=\"Link to Cookie Informations\">More details</a></p>\n            ".concat(checkboxes,"\n          </div>\n          <button class=\"cookieconsent-banner__button is-centered\" onclick='allowOnly()'>Confirm Selection</button>\n          <!-- <button onclick='showCookieConsentBanner()'> zur\xFCck </button> -->\n        </div>\n      </div> \n    ")}else{consentBanner.innerHTML="    \n    <div class='cookieconsent__overlay'>\n      <div class='cookieconsent-banner'>\n        <h3 class=\"cookieconsent-banner__h3\">Cookie Einstellungen verwalten</h3>\n        <div class=\"cookieconsent-banner__settings\">\n          <input disabled=\"\" type=\"checkbox\" name=\"technical-required-cookies\" value=\"technical-required-cookies\" checked=\"\">\n          <label class=\"cookieconsent-banner__settings-label--required\" for=\"technical-required-cookies\">Technisch erforderliche Cookies - standardm\xE4\xDFig immer ausgew\xE4hlt</label>\n          <p class=\"cookieconsent-banner__p\">Unter technisch erforderlichen Cookies verstehen wir Cookies, ohne die die technische Bereitstellung des Online-Angebots nicht gew\xE4hrleistet werden kann. Dazu geh\xF6ren z.B. Cookies, die wesentliche Dienste wie eine reibungslose Wiedergabe von Video- oder Audioaufnahmen unterst\xFCtzen. Dieser Kategorie werden auch so genannte \"funktionale Cookies\" zugeordnet. Funktionale Cookies speichern Informationen, um Ihnen eine komfortable Nutzung unserer Online-Services (z.B. Sprachauswahl) zu erm\xF6glichen. Rechtsgrundlage f\xFCr die Verarbeitung personenbezogener Daten mit Hilfe von Cookies dieser Kategorie sind berechtigte Interessen von Hitex. Hierzu geh\xF6ren u.a. das Interesse an einer professionellen Au\xDFendarstellung sowie an einer optimalen Verteilung der Lasten auf dem Server aus technischen Gr\xFCnden.</p>\n          <p class=\"cookieconsent-banner__p\"><a href=\"https://www.hitex.com/company/support/privacy-policy/cookies/\" title=\"Link to Cookie Informations\">More details</a></p>\n          ".concat(checkboxes,"\n        </div>\n        <button class=\"cookieconsent-banner__button is-centered\" onclick='allowOnly()'>Auswahl best\xE4tigen</button>\n        <!-- <button onclick='showCookieConsentBanner()'> zur\xFCck </button> -->\n      </div>\n    </div> \n  ")}}
function readCookieConsentCookie(){var cc=getCookie('cookieconsent');if(cc===""){showCookieConsentBanner()}else{hideCookieConsentBanner();updateCookieConsent(cc)}}
function updateCookieConsent(cc){if(cc==="allow"){Object.keys(window.cookieconsent.options).forEach(allowOption)}else if(cc==="deny"){Object.keys(window.cookieconsent.options).forEach(denyOption)}else if(cc.startsWith("allowOnly:")){var allowedOptions=cc.substring("allowOnly:".length).split(",");allowedOptions.filter(notNullOrEmpty).forEach(allowOption);Object.keys(window.cookieconsent.options).filter(function(key){return!allowedOptions.includes(key)}).forEach(denyOption)}}
function notNullOrEmpty(str){return str&&str.trim().length>0}
function allowOption(key){if(!window.cookieconsent.options[key].allow){window.cookieconsent.options[key].allow=!0;window.cookieconsent.options[key].cookies.forEach(function(cookie){return cookieconsent_cookie_fn[cookie].allow()})}}
function denyOption(key){if(window.cookieconsent.options[key].allow){window.cookieconsent.options[key].allow=!1;window.cookieconsent.options[key].cookies.forEach(function(cookie){return cookieconsent_cookie_fn[cookie].deny()})}}
function allowAll(){var value="allow";saveCookieConsent(value);updateCookieConsent(value);hideCookieConsentBanner()}
function denyAll(){var value="deny";saveCookieConsent(value);updateCookieConsent(value);hideCookieConsentBanner()}
function allowOnly(){var value="allowOnly:"+Array.from(document.getElementsByClassName("js-cookieconsent__checkbox")).filter(function(el){return el.checked}).map(function(el){return el.value}).join(',');saveCookieConsent(value);updateCookieConsent(value);hideCookieConsentBanner()}
function saveCookieConsent(value){setCookie('cookieconsent',value,365)}
function setCookie(cname,cvalue,exdays){var d=new Date();d.setTime(d.getTime()+exdays*24*60*60*1000);var expires="expires="+d.toUTCString();document.cookie=cname+"="+cvalue+";"+expires+";path=/"}
function getCookie(cname){var name=cname+"=";var ca=document.cookie.split(';');for(var i=0;i<ca.length;i++){var c=ca[i].trim();if(c.indexOf(name)==0){return c.substring(name.length,c.length)}}
return""}
readCookieConsentCookie();$(document).ready(function(){$('.contenttable').cardtable()});window.mySwipe=new Swipe(document.getElementById('slider'),prevBtn=document.getElementById('prev'),nextBtn=document.getElementById('next'),{startSlide:1,speed:700,auto:4000,continuous:!0,disableScroll:!1,stopPropagation:!1,callback:function(index,elem){},transitionEnd:function(index,elem){}});prevBtn.onclick=mySwipe.prev;nextBtn.onclick=mySwipe.next;var mn=$(".nav_main");mns="nav_scrolled";hdr=$('header').height();$(window).scroll(function(){if($(this).scrollTop()>hdr){mn.addClass(mns)}else{mn.removeClass(mns)}});$(function(){calcspacing()});$(window).resize(function(){calcspacing()});var calcspacing=function calcspacing(){var ws=$(window).width();var container=$('.container').width();ws=(ws-container)/2+10-20;$('.header_img_title_wrap').css('padding-left',ws)}