
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_fbdb0f08f9846831dd80d03d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7498fb04ad97826f20c06eda.woff')format("woff");}.ff2{font-family:ff2;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e345a7401dc0aab05464f35a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a700ac1f2a5c30f6f7edc988.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_38eeeaf2552e800867a9eb1f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_40355f874be18edeb6b06532.woff')format("woff");}.ff6{font-family:ff6;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ce408c8ac2a68314a3247d7c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.733398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.830000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_05eae41cb8f477ef61136aa0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a699916a173d2bc19af7062c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.749000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f51f639cafae398b5951b2af.woff')format("woff");}.ffb{font-family:ffb;line-height:0.764000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7a603fd3b9ceeb0b99a0d349.woff')format("woff");}.ffc{font-family:ffc;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f606c72c243ba8735102240a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.854000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d714aaeaad70f8b2bab13cc5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.698242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.fff{font-family:fff;line-height:0.830000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_05eae41cb8f477ef61136aa0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a699916a173d2bc19af7062c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.749000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f51f639cafae398b5951b2af.woff')format("woff");}.ff12{font-family:ff12;line-height:0.764000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_d5dc796ec5298578e7d830cd.woff')format("woff");}.ff13{font-family:ff13;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_887c1a534025ea3ccaf63413.woff')format("woff");}.ff14{font-family:ff14;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.ff15{font-family:ff15;line-height:0.830000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_d39bec11f1acfa13c25d6e32.woff')format("woff");}.ff16{font-family:ff16;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a699916a173d2bc19af7062c.woff')format("woff");}.ff17{font-family:ff17;line-height:0.749000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f51f639cafae398b5951b2af.woff')format("woff");}.ff18{font-family:ff18;line-height:0.764000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_858fc6ea73dbe178747dec16.woff')format("woff");}.ff19{font-family:ff19;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_746627626c5e919c02235829.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_bb204579f92eb445c7297010.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.687988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.830000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_431cb27306241626e349649a.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_a699916a173d2bc19af7062c.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.749000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_f51f639cafae398b5951b2af.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.764000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_0db89cd6d6d7373149826eba.woff')format("woff");}.ff20{font-family:ff20;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_5bdeabf19902547b67cd3e3f.woff')format("woff");}.ff21{font-family:ff21;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_72693d1b0068a20ed9fbd5bd.woff')format("woff");}.ff22{font-family:ff22;line-height:0.697754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_4de81d2cf59309fcfbbaaffa.woff')format("woff");}.ff23{font-family:ff23;line-height:0.754000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_e07830e64f88ac561d866162.woff')format("woff");}.ff24{font-family:ff24;line-height:0.950000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_ca86bb150476b20720fbef98.woff')format("woff");}.ff25{font-family:ff25;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_3156a5b06be64a3c7cc382c6.woff')format("woff");}.ff26{font-family:ff26;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_97e3197bf9350166117c5e1e.woff')format("woff");}.ff27{font-family:ff27;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_4de81d2cf59309fcfbbaaffa.woff')format("woff");}.ff28{font-family:ff28;line-height:0.754000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_5d6c1e548e00f9ff01447cee.woff')format("woff");}.ff29{font-family:ff29;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_8595e45e8bba853b0a381b4c.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.687988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_e8a09e0622808b463ec6644b.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_a3d2ae00d77685bb355a01d0.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_4de81d2cf59309fcfbbaaffa.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.754000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_b65698bff4947f1fb895ffc8.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_eaa9b003750fc7dac1d19e28.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff30{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff31;src:url('chunks/assets/font_fe688c68891f77047cf33fd2.woff')format("woff");}.ff31{font-family:ff31;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_df9831eb658693d8863dad7b.woff')format("woff");}.ff32{font-family:ff32;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_18dd0f55f59391ce1c382355.woff')format("woff");}.ff33{font-family:ff33;line-height:1.461000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_aa68f322045cbcacd97cfa5d.woff')format("woff");}.ff34{font-family:ff34;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_30b76e68fd62165676023770.woff')format("woff");}.ff35{font-family:ff35;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_e03315ca4475d0a8fdb58377.woff')format("woff");}.ff36{font-family:ff36;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_bef13432a159787b464d8ab7.woff')format("woff");}.ff37{font-family:ff37;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_a89994c41c5cefa6184fcf0f.woff')format("woff");}.ff38{font-family:ff38;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_8c53776cc148aafd911e0080.woff')format("woff");}.ff39{font-family:ff39;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_784fdfb74fc97ad3a5eb6fdd.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_74f472a4f484692b93806d60.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_b0153b1d8241e20e700c6198.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_d46e5eb6c17788999ec0f57e.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_b65698bff4947f1fb895ffc8.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_971c8e12771c959507944e2a.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_a0bb1540e2d2f33441c3f00c.woff')format("woff");}.ff40{font-family:ff40;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_856df32b543209046f35fb1c.woff')format("woff");}.ff41{font-family:ff41;line-height:0.717000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_98ffbc3455a6f3e5c67cd17a.woff')format("woff");}.ff42{font-family:ff42;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_c81e0c1602a38c31b87caac3.woff')format("woff");}.ff43{font-family:ff43;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_1691fa3eaf110963d8adc003.woff')format("woff");}.ff44{font-family:ff44;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_1f23ac218b7281c1b6b86d6f.woff')format("woff");}.ff45{font-family:ff45;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_9eb1a5eda2d692b6953623a7.woff')format("woff");}.ff46{font-family:ff46;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_015e211431717c3f00127fba.woff')format("woff");}.ff47{font-family:ff47;line-height:0.687988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_655ff615b8756ef36b37e4a3.woff')format("woff");}.ff48{font-family:ff48;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_19eb53eb6ac8905f4045e594.woff')format("woff");}.ff49{font-family:ff49;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_08a239fe8da9c72a98241856.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_83007ddcd974f64c2017a78f.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.698242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_acc1946c2fd964911d9a645e.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.746000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_0aff172d214b8166590e4689.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.841000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_bd78d08af0f0b8979512f083.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_655ff615b8756ef36b37e4a3.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_f0a4da1a0ac90eda462341ca.woff')format("woff");}.ff50{font-family:ff50;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_72e93fc98fd63e4fedfd59c2.woff')format("woff");}.ff51{font-family:ff51;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_7639da195f4ad39137e5a19b.woff')format("woff");}.ff52{font-family:ff52;line-height:0.753000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_5e04e35940a04036181c2669.woff')format("woff");}.ff53{font-family:ff53;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_655ff615b8756ef36b37e4a3.woff')format("woff");}.ff54{font-family:ff54;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_f38677fb577304206a4f4aaa.woff')format("woff");}.ff55{font-family:ff55;line-height:0.687988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_12a0f61b08eaaebc6612b7e1.woff')format("woff");}.ff56{font-family:ff56;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_5adac6f7a2488ed9238b687a.woff')format("woff");}.ff57{font-family:ff57;line-height:0.697754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_48ceb535a3de57965934f872.woff')format("woff");}.ff58{font-family:ff58;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_48fc21a697342c1edaa6755d.woff')format("woff");}.ff59{font-family:ff59;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_6def00030f6d6bff298dddf0.woff')format("woff");}.ff5a{font-family:ff5a;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_28108c5a66b497e2e20181a8.woff')format("woff");}.ff5b{font-family:ff5b;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_35c1b78d83028d9bcce87ebe.woff')format("woff");}.ff5c{font-family:ff5c;line-height:0.755000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_12a0f61b08eaaebc6612b7e1.woff')format("woff");}.ff5d{font-family:ff5d;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_b07ea8e85d292e613341daa1.woff')format("woff");}.ff5e{font-family:ff5e;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_6399d73f22553de6c434ce54.woff')format("woff");}.ff5f{font-family:ff5f;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_44181160d044ba08936e3d1a.woff')format("woff");}.ff60{font-family:ff60;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_48fc21a697342c1edaa6755d.woff')format("woff");}.ff61{font-family:ff61;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_7b30a61e043f716cc1f1672d.woff')format("woff");}.ff62{font-family:ff62;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_35c1b78d83028d9bcce87ebe.woff')format("woff");}.ff63{font-family:ff63;line-height:0.755000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_9e1e3e64310cc5c6f8e223be.woff')format("woff");}.ff64{font-family:ff64;line-height:0.768000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_895a816026907bded8f397b0.woff')format("woff");}.ff65{font-family:ff65;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_890ec765c74348474f4ff3f2.woff')format("woff");}.ff66{font-family:ff66;line-height:0.950000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_6e43970655ac6763f295f699.woff')format("woff");}.ff67{font-family:ff67;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_b631fd589dd33b9f3c2f2caa.woff')format("woff");}.ff68{font-family:ff68;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_fb51ba05e30b011b49c077d0.woff')format("woff");}.ff69{font-family:ff69;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_6817049e8f62b5561a279913.woff')format("woff");}.ff6a{font-family:ff6a;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_041961e1b2d1538efe91a26d.woff')format("woff");}.ff6b{font-family:ff6b;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:114.164756px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000171px;}
.ls3{letter-spacing:0.035513px;}
.ls0{letter-spacing:3.865949px;}
.ls4{letter-spacing:10.342646px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-337.069959px;}
.ws0{word-spacing:-123.911149px;}
.ws16{word-spacing:-66.584634px;}
.ws1{word-spacing:-65.994865px;}
.ws19{word-spacing:-60.156212px;}
.wsf{word-spacing:-53.997245px;}
.ws3{word-spacing:-53.986590px;}
.ws10{word-spacing:-53.975337px;}
.ws11{word-spacing:-51.755144px;}
.ws12{word-spacing:-51.004217px;}
.ws14{word-spacing:-47.364237px;}
.wsd{word-spacing:-36.592531px;}
.ws17{word-spacing:-29.671039px;}
.ws2{word-spacing:-24.435747px;}
.wse{word-spacing:-21.062132px;}
.ws13{word-spacing:-21.000412px;}
.ws1b{word-spacing:-19.075262px;}
.ws18{word-spacing:-18.741544px;}
.ws1a{word-spacing:-18.134633px;}
.ws1e{word-spacing:-17.999082px;}
.ws1c{word-spacing:-16.287587px;}
.ws15{word-spacing:-15.548138px;}
.wsc{word-spacing:-13.964531px;}
.ws1d{word-spacing:-13.191770px;}
.ws1f{word-spacing:-12.951920px;}
.ws6{word-spacing:-11.641476px;}
.ws20{word-spacing:-11.632743px;}
.ws8{word-spacing:-10.479981px;}
.wsa{word-spacing:-10.479946px;}
.ws9{word-spacing:-10.479915px;}
.ws7{word-spacing:-9.315538px;}
.wsb{word-spacing:-9.315508px;}
.ws4{word-spacing:0.000000px;}
.ws21{word-spacing:25.581294px;}
._10{margin-left:-4.884910px;}
._3{margin-left:-3.884491px;}
._f{margin-left:-2.300916px;}
._2{margin-left:-1.199920px;}
._6{width:1.741035px;}
._1{width:2.999694px;}
._0{width:4.199986px;}
._4{width:5.952547px;}
._d{width:6.971837px;}
._5{width:8.152959px;}
._7{width:9.573523px;}
._c{width:11.483595px;}
._8{width:12.591471px;}
._b{width:13.928680px;}
._9{width:15.270653px;}
._e{width:16.473001px;}
._2d{width:17.538414px;}
._1d{width:20.672609px;}
._12{width:22.189589px;}
._a{width:23.448264px;}
._1e{width:24.955820px;}
._27{width:26.033772px;}
._15{width:27.689193px;}
._2e{width:28.907896px;}
._21{width:30.531021px;}
._20{width:33.625150px;}
._2a{width:35.720633px;}
._1b{width:36.731419px;}
._1a{width:38.563081px;}
._19{width:39.624549px;}
._11{width:41.281749px;}
._1c{width:46.517785px;}
._23{width:48.498126px;}
._26{width:49.998246px;}
._14{width:51.659880px;}
._13{width:52.768712px;}
._25{width:63.271878px;}
._28{width:67.322923px;}
._24{width:68.481738px;}
._2f{width:72.042380px;}
._16{width:73.697922px;}
._2c{width:78.370847px;}
._22{width:80.176880px;}
._18{width:83.084545px;}
._17{width:85.434637px;}
._29{width:86.997955px;}
._30{width:112.687983px;}
._1f{width:117.209954px;}
._2b{width:120.986483px;}
.fcc{color:rgb(77,77,78);}
.fca{color:rgb(0,0,255);}
.fc9{color:rgb(212,186,133);}
.fc8{color:rgb(44,55,32);}
.fcb{color:rgb(93,93,96);}
.fc7{color:rgb(43,71,67);}
.fc4{color:rgb(42,54,32);}
.fc5{color:transparent;}
.fc3{color:rgb(72,93,54);}
.fc2{color:rgb(253,254,254);}
.fc1{color:rgb(85,99,56);}
.fc6{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2c{font-size:36.013972px;}
.fs1{font-size:44.997704px;}
.fs11{font-size:48.018082px;}
.fsf{font-size:48.018239px;}
.fs14{font-size:53.990188px;}
.fs0{font-size:53.997245px;}
.fs10{font-size:54.020181px;}
.fs12{font-size:54.020342px;}
.fsd{font-size:54.020354px;}
.fse{font-size:54.020519px;}
.fs2a{font-size:59.962591px;}
.fs7{font-size:59.981939px;}
.fsc{font-size:60.007609px;}
.fs29{font-size:62.996786px;}
.fs23{font-size:65.949847px;}
.fs8{font-size:65.994864px;}
.fs6{font-size:71.982120px;}
.fs15{font-size:71.996327px;}
.fs26{font-size:74.966174px;}
.fs4{font-size:77.969377px;}
.fs1d{font-size:83.956633px;}
.fs1f{font-size:84.001650px;}
.fs1c{font-size:84.586875px;}
.fs19{font-size:84.593097px;}
.fsb{font-size:89.988906px;}
.fs1e{font-size:102.008434px;}
.fs13{font-size:107.950673px;}
.fs28{font-size:107.994490px;}
.fs16{font-size:107.995690px;}
.fs22{font-size:109.931420px;}
.fs18{font-size:114.027963px;}
.fs1b{font-size:116.909044px;}
.fs9{font-size:119.970202px;}
.fs21{font-size:120.015219px;}
.fs5{font-size:125.957458px;}
.fs3{font-size:131.989731px;}
.fs17{font-size:132.034748px;}
.fs25{font-size:139.957733px;}
.fs20{font-size:173.495373px;}
.fs2{font-size:179.977811px;}
.fs2b{font-size:179.990817px;}
.fs27{font-size:221.978641px;}
.fs1a{font-size:270.101768px;}
.fs24{font-size:284.012009px;}
.fsa{font-size:432.140973px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000021px;}
.y1e{bottom:0.171031px;}
.y1ce{bottom:2.306241px;}
.y7a{bottom:3.099629px;}
.y43{bottom:3.262760px;}
.y9c{bottom:3.379040px;}
.y90{bottom:3.419801px;}
.ybf{bottom:3.460567px;}
.y4{bottom:3.612902px;}
.y5c{bottom:3.632515px;}
.yb0{bottom:3.717262px;}
.y106{bottom:4.570500px;}
.y19{bottom:4.670677px;}
.y1c8{bottom:4.684043px;}
.y18d{bottom:4.712345px;}
.y92{bottom:4.713674px;}
.y199{bottom:4.714180px;}
.yec{bottom:5.033294px;}
.y1ca{bottom:5.657768px;}
.y1ab{bottom:5.743901px;}
.y1a5{bottom:5.768909px;}
.y1cc{bottom:5.770707px;}
.y1a7{bottom:5.771323px;}
.y1a9{bottom:5.797163px;}
.y170{bottom:5.802757px;}
.y172{bottom:5.981351px;}
.y194{bottom:7.881289px;}
.y18a{bottom:8.064300px;}
.y1af{bottom:8.187967px;}
.y1a2{bottom:13.810748px;}
.y1c7{bottom:20.433240px;}
.y3{bottom:20.487041px;}
.y79{bottom:21.106410px;}
.y42{bottom:21.269600px;}
.y9b{bottom:22.500565px;}
.y8f{bottom:22.541326px;}
.ybe{bottom:22.582092px;}
.y18c{bottom:22.711427px;}
.y198{bottom:22.713262px;}
.yaf{bottom:22.838787px;}
.y5b{bottom:23.890083px;}
.yeb{bottom:33.786222px;}
.y2{bottom:36.236237px;}
.y91{bottom:36.495019px;}
.y1a4{bottom:37.267301px;}
.y78{bottom:39.113190px;}
.y193{bottom:39.379682px;}
.y189{bottom:39.562692px;}
.y1ae{bottom:39.686360px;}
.y41{bottom:40.276820px;}
.y1{bottom:40.455019px;}
.y197{bottom:40.712344px;}
.y33{bottom:41.201929px;}
.y9a{bottom:41.622090px;}
.y8e{bottom:41.662851px;}
.ybd{bottom:41.703616px;}
.yae{bottom:41.960312px;}
.y5a{bottom:44.147650px;}
.y1cd{bottom:46.575019px;}
.y125{bottom:47.529253px;}
.y11f{bottom:48.859114px;}
.y5d{bottom:50.175019px;}
.ye9{bottom:51.138107px;}
.y105{bottom:51.975019px;}
.y190{bottom:53.198669px;}
.y77{bottom:58.120348px;}
.y196{bottom:58.711425px;}
.y1c6{bottom:60.615018px;}
.y99{bottom:60.743615px;}
.y8d{bottom:60.784376px;}
.ybc{bottom:60.825141px;}
.yad{bottom:61.081836px;}
.y1d{bottom:61.695018px;}
.y59{bottom:64.405218px;}
.y192{bottom:70.878075px;}
.y188{bottom:71.061085px;}
.y1ad{bottom:71.184753px;}
.ye8{bottom:72.521163px;}
.y11e{bottom:75.869291px;}
.y40{bottom:77.290879px;}
.y98{bottom:79.865140px;}
.y8c{bottom:79.905901px;}
.ybb{bottom:79.946666px;}
.yac{bottom:80.203361px;}
.y186{bottom:82.459694px;}
.ye7{bottom:93.904220px;}
.y76{bottom:95.134286px;}
.y3f{bottom:95.297719px;}
.ya0{bottom:97.695017px;}
.y97{bottom:98.986665px;}
.y8b{bottom:99.027426px;}
.yba{bottom:99.068191px;}
.yab{bottom:99.324886px;}
.y11d{bottom:102.879467px;}
.y154{bottom:104.531789px;}
.y58{bottom:104.920354px;}
.y185{bottom:111.720718px;}
.y75{bottom:113.141067px;}
.y3e{bottom:113.304558px;}
.ye6{bottom:115.287276px;}
.y140{bottom:117.551182px;}
.y96{bottom:118.108189px;}
.y8a{bottom:118.148951px;}
.yb9{bottom:118.189716px;}
.yaa{bottom:118.446411px;}
.y57{bottom:125.177922px;}
.y16d{bottom:125.225291px;}
.y153{bottom:125.914845px;}
.y11c{bottom:129.889644px;}
.y74{bottom:132.148224px;}
.y3d{bottom:132.311778px;}
.yf8{bottom:135.149398px;}
.ye5{bottom:136.670333px;}
.y95{bottom:137.229714px;}
.y89{bottom:137.270475px;}
.yb8{bottom:137.311241px;}
.ya9{bottom:137.567936px;}
.y13f{bottom:138.934238px;}
.y184{bottom:140.981743px;}
.y1aa{bottom:143.415015px;}
.y56{bottom:145.435489px;}
.y16c{bottom:146.608348px;}
.y152{bottom:147.297902px;}
.y104{bottom:150.819192px;}
.y94{bottom:156.351239px;}
.y88{bottom:156.392000px;}
.yb7{bottom:156.432766px;}
.yf7{bottom:156.532455px;}
.ya8{bottom:156.689461px;}
.y11b{bottom:156.899821px;}
.y44{bottom:158.175014px;}
.y1cb{bottom:159.255014px;}
.y13e{bottom:160.317295px;}
.y55{bottom:165.693057px;}
.y32{bottom:166.326645px;}
.y16b{bottom:167.991405px;}
.y151{bottom:168.680959px;}
.y73{bottom:169.162162px;}
.y3c{bottom:169.325837px;}
.y183{bottom:170.242768px;}
.ye4{bottom:171.770070px;}
.y87{bottom:175.513525px;}
.yb6{bottom:175.554291px;}
.ya7{bottom:175.810986px;}
.yf6{bottom:177.915511px;}
.y13d{bottom:181.700352px;}
.y11a{bottom:183.909998px;}
.y54{bottom:185.950625px;}
.y31{bottom:186.584278px;}
.y72{bottom:187.168943px;}
.y3b{bottom:187.332677px;}
.y1a8{bottom:188.775013px;}
.y16a{bottom:189.374461px;}
.y150{bottom:190.064015px;}
.y1a3{bottom:192.375013px;}
.ye3{bottom:193.153126px;}
.y86{bottom:194.635050px;}
.yb5{bottom:194.675815px;}
.ya6{bottom:194.932511px;}
.yf5{bottom:199.298568px;}
.y182{bottom:199.503793px;}
.y13c{bottom:203.083408px;}
.y3a{bottom:205.339517px;}
.y71{bottom:206.176100px;}
.y53{bottom:206.208193px;}
.y30{bottom:206.841910px;}
.y169{bottom:210.757518px;}
.y119{bottom:210.920174px;}
.y14f{bottom:211.447072px;}
.y85{bottom:213.756575px;}
.yb4{bottom:213.797340px;}
.ya5{bottom:214.054035px;}
.ye2{bottom:214.536183px;}
.y1c9{bottom:215.775012px;}
.yf4{bottom:220.681624px;}
.y39{bottom:223.346356px;}
.y13b{bottom:224.466465px;}
.y52{bottom:226.465761px;}
.y2f{bottom:227.099543px;}
.y181{bottom:228.764818px;}
.y168{bottom:232.140574px;}
.y14e{bottom:232.830129px;}
.y84{bottom:232.878100px;}
.ya4{bottom:233.175560px;}
.y1a6{bottom:234.495011px;}
.ye1{bottom:235.919239px;}
.y118{bottom:237.930351px;}
.y38{bottom:242.353576px;}
.y70{bottom:243.190039px;}
.y13a{bottom:245.849522px;}
.y51{bottom:246.723328px;}
.y2e{bottom:248.482600px;}
.y83{bottom:251.999625px;}
.ya3{bottom:252.297085px;}
.y167{bottom:253.523631px;}
.y14d{bottom:254.213185px;}
.ye0{bottom:257.302296px;}
.y180{bottom:258.025843px;}
.y6f{bottom:261.196819px;}
.yf3{bottom:263.447738px;}
.y117{bottom:264.940528px;}
.y50{bottom:266.980896px;}
.y139{bottom:267.232578px;}
.y82{bottom:271.121150px;}
.ya2{bottom:271.418610px;}
.y166{bottom:274.906688px;}
.y14c{bottom:275.596242px;}
.y6e{bottom:279.203600px;}
.yf2{bottom:284.830794px;}
.y4f{bottom:287.238464px;}
.y17f{bottom:287.286868px;}
.y138{bottom:288.615635px;}
.y2d{bottom:290.123289px;}
.y81{bottom:290.242674px;}
.ya1{bottom:290.540135px;}
.y116{bottom:291.950705px;}
.y165{bottom:296.289744px;}
.y14b{bottom:296.979298px;}
.y6d{bottom:297.210381px;}
.ydf{bottom:304.480945px;}
.yf1{bottom:306.213851px;}
.y4e{bottom:307.496032px;}
.y80{bottom:309.364199px;}
.y2c{bottom:310.380921px;}
.y6c{bottom:315.217161px;}
.y17e{bottom:316.547892px;}
.y1a0{bottom:316.691376px;}
.y164{bottom:317.672801px;}
.y115{bottom:318.960882px;}
.y1c5{bottom:321.190188px;}
.yde{bottom:325.864002px;}
.yf0{bottom:327.596908px;}
.y4d{bottom:327.753600px;}
.y7f{bottom:328.485724px;}
.y2b{bottom:331.763978px;}
.y19f{bottom:333.572736px;}
.y6b{bottom:334.224319px;}
.y163{bottom:339.055858px;}
.y1c4{bottom:342.573245px;}
.y15{bottom:345.683766px;}
.y17d{bottom:345.808917px;}
.y114{bottom:345.971058px;}
.ydd{bottom:347.247058px;}
.yef{bottom:348.979964px;}
.y137{bottom:350.086493px;}
.y19e{bottom:350.454097px;}
.y162{bottom:360.438914px;}
.y4c{bottom:368.268735px;}
.ydc{bottom:368.630115px;}
.y136{bottom:369.218702px;}
.y128{bottom:370.600467px;}
.y6a{bottom:371.238257px;}
.y2a{bottom:373.404667px;}
.y14{bottom:374.944790px;}
.y17c{bottom:375.069942px;}
.y1c3{bottom:377.425760px;}
.y161{bottom:381.821971px;}
.y14a{bottom:382.559872px;}
.y135{bottom:388.350910px;}
.y4b{bottom:388.526303px;}
.y69{bottom:389.245038px;}
.y19d{bottom:389.843943px;}
.ydb{bottom:390.013172px;}
.y29{bottom:393.662300px;}
.y1c2{bottom:394.307120px;}
.y122{bottom:395.862976px;}
.y149{bottom:403.942929px;}
.y13{bottom:404.205815px;}
.y17b{bottom:404.330967px;}
.yea{bottom:404.775004px;}
.y19c{bottom:406.725303px;}
.y68{bottom:407.251818px;}
.y134{bottom:407.483119px;}
.y4a{bottom:408.783871px;}
.y1c1{bottom:411.188481px;}
.yda{bottom:411.396228px;}
.y28{bottom:413.919932px;}
.y19b{bottom:423.606664px;}
.y148{bottom:425.325985px;}
.y67{bottom:426.258976px;}
.y133{bottom:426.615328px;}
.y171{bottom:426.735003px;}
.y1c0{bottom:428.069841px;}
.y37{bottom:428.895003px;}
.y49{bottom:429.041439px;}
.y7e{bottom:432.495003px;}
.yd9{bottom:432.779285px;}
.y16e{bottom:433.398884px;}
.y12{bottom:433.466840px;}
.y17a{bottom:433.591992px;}
.y27{bottom:434.177565px;}
.y9f{bottom:440.214333px;}
.y19a{bottom:441.613448px;}
.y132{bottom:445.747536px;}
.y147{bottom:446.709042px;}
.y48{bottom:449.299006px;}
.y26{bottom:454.435198px;}
.y121{bottom:455.510450px;}
.yb3{bottom:459.135002px;}
.y11{bottom:462.727865px;}
.y179{bottom:462.853017px;}
.y66{bottom:463.272914px;}
.y131{bottom:464.879745px;}
.yd8{bottom:466.850483px;}
.y146{bottom:468.092099px;}
.y1bf{bottom:468.408948px;}
.y47{bottom:469.556574px;}
.y9e{bottom:472.851630px;}
.y25{bottom:474.692830px;}
.y65{bottom:481.279695px;}
.y130{bottom:484.011953px;}
.y1be{bottom:487.541157px;}
.y145{bottom:489.475155px;}
.y46{bottom:489.814142px;}
.y10{bottom:491.988890px;}
.y178{bottom:492.114042px;}
.y24{bottom:496.075887px;}
.y64{bottom:499.286475px;}
.y12f{bottom:503.144162px;}
.y1bd{bottom:508.924214px;}
.y45{bottom:510.071710px;}
.y144{bottom:510.858212px;}
.y120{bottom:515.157924px;}
.y63{bottom:518.293633px;}
.yf{bottom:521.249915px;}
.y177{bottom:521.375067px;}
.y12e{bottom:522.276370px;}
.yc9{bottom:528.982969px;}
.y93{bottom:530.414999px;}
.y143{bottom:532.241269px;}
.y62{bottom:537.300790px;}
.y23{bottom:537.716576px;}
.y15e{bottom:538.801110px;}
.y12d{bottom:541.408579px;}
.y1bc{bottom:547.188631px;}
.ye{bottom:550.510940px;}
.y176{bottom:550.636091px;}
.yc8{bottom:551.491450px;}
.y61{bottom:555.307571px;}
.y22{bottom:557.974209px;}
.y15d{bottom:560.184166px;}
.y12c{bottom:560.540788px;}
.yd7{bottom:562.407615px;}
.y1bb{bottom:568.571687px;}
.yc7{bottom:573.999931px;}
.y60{bottom:574.314728px;}
.y21{bottom:578.231841px;}
.y12b{bottom:579.672996px;}
.y175{bottom:579.897116px;}
.y15c{bottom:581.567223px;}
.y142{bottom:586.204559px;}
.y1ba{bottom:589.954744px;}
.yd6{bottom:595.044912px;}
.y141{bottom:595.927787px;}
.yc6{bottom:596.508411px;}
.y12a{bottom:598.805205px;}
.y20{bottom:599.614898px;}
.y15b{bottom:602.950280px;}
.y174{bottom:609.158141px;}
.y5f{bottom:611.328666px;}
.y1b9{bottom:611.337801px;}
.y129{bottom:617.937413px;}
.yc5{bottom:619.016892px;}
.y16{bottom:620.127540px;}
.y103{bottom:621.498568px;}
.y15a{bottom:624.333336px;}
.yd5{bottom:627.682209px;}
.y5e{bottom:629.335447px;}
.yc4{bottom:641.525373px;}
.y1f{bottom:644.649462px;}
.y159{bottom:645.716393px;}
.y1b8{bottom:649.602218px;}
.y102{bottom:650.759592px;}
.yd4{bottom:660.319506px;}
.yc3{bottom:664.033853px;}
.y158{bottom:667.099450px;}
.y1b7{bottom:670.985274px;}
.y101{bottom:680.020617px;}
.y127{bottom:682.664812px;}
.yc2{bottom:686.542334px;}
.y113{bottom:687.105434px;}
.y157{bottom:688.482506px;}
.y1b6{bottom:692.368331px;}
.yc1{bottom:709.050815px;}
.y100{bottom:709.281642px;}
.y156{bottom:709.865563px;}
.y112{bottom:712.990187px;}
.yb2{bottom:715.609797px;}
.y36{bottom:719.381586px;}
.y1b{bottom:721.444887px;}
.y1b5{bottom:730.632748px;}
.y155{bottom:731.248620px;}
.yff{bottom:738.542667px;}
.y111{bottom:738.874940px;}
.y1a{bottom:743.953367px;}
.yb1{bottom:748.247094px;}
.y9d{bottom:748.255179px;}
.y1b4{bottom:752.015805px;}
.y7{bottom:763.511769px;}
.y110{bottom:764.759693px;}
.y35{bottom:767.014067px;}
.yfe{bottom:767.803692px;}
.y1b3{bottom:773.398861px;}
.y9{bottom:776.454129px;}
.y173{bottom:777.900334px;}
.y34{bottom:789.522547px;}
.y10f{bottom:790.644445px;}
.y1b2{bottom:794.781918px;}
.yfd{bottom:797.064717px;}
.y8{bottom:804.589730px;}
.y6{bottom:809.654155px;}
.y17{bottom:814.718547px;}
.y1b1{bottom:816.164975px;}
.y10e{bottom:816.529198px;}
.yd3{bottom:818.481347px;}
.y16f{bottom:821.654986px;}
.yfc{bottom:826.325742px;}
.y1b0{bottom:837.548031px;}
.yd2{bottom:840.989828px;}
.y10d{bottom:842.413951px;}
.y7d{bottom:854.597983px;}
.yfb{bottom:855.586767px;}
.yd1{bottom:863.498308px;}
.y10c{bottom:868.298704px;}
.yfa{bottom:884.847791px;}
.yd0{bottom:886.006789px;}
.y7c{bottom:887.235280px;}
.y10b{bottom:894.183456px;}
.ycf{bottom:908.515270px;}
.y195{bottom:917.054982px;}
.y10a{bottom:920.068209px;}
.yf9{bottom:929.321502px;}
.y18{bottom:940.814981px;}
.y18b{bottom:953.054981px;}
.yce{bottom:953.532231px;}
.ycd{bottom:976.040712px;}
.y109{bottom:978.590259px;}
.yee{bottom:996.440196px;}
.y191{bottom:996.614979px;}
.ycc{bottom:998.549192px;}
.y160{bottom:999.053124px;}
.y1a1{bottom:999.134979px;}
.y187{bottom:1003.454979px;}
.ycb{bottom:1021.057673px;}
.y15f{bottom:1030.564997px;}
.yd{bottom:1058.371512px;}
.yed{bottom:1063.965638px;}
.yc0{bottom:1091.754654px;}
.yc{bottom:1095.510505px;}
.y108{bottom:1096.572634px;}
.y107{bottom:1119.081114px;}
.y1ac{bottom:1125.854974px;}
.yb{bottom:1132.649498px;}
.y124{bottom:1157.770251px;}
.y18f{bottom:1160.039109px;}
.y126{bottom:1162.016627px;}
.y7b{bottom:1162.031545px;}
.yca{bottom:1163.507819px;}
.ya{bottom:1169.788492px;}
.y1c{bottom:1170.054451px;}
.y123{bottom:1192.658396px;}
.y18e{bottom:1194.927254px;}
.h5c{height:10.800000px;}
.he{height:18.359999px;}
.h26{height:19.439999px;}
.h4a{height:19.799999px;}
.h5d{height:25.146475px;}
.h5b{height:30.599999px;}
.h4{height:32.627730px;}
.h4f{height:37.439998px;}
.h20{height:37.454104px;}
.h1b{height:37.454227px;}
.h3{height:37.906066px;}
.h29{height:40.708602px;}
.h25{height:42.112347px;}
.h1d{height:42.135741px;}
.h21{height:42.135867px;}
.h16{height:42.135876px;}
.h1a{height:42.136005px;}
.h55{height:44.072504px;}
.h56{height:44.372317px;}
.h54{height:45.211794px;}
.h50{height:45.357686px;}
.h17{height:46.133382px;}
.h2{height:46.439998px;}
.h53{height:46.617622px;}
.h5a{height:46.770821px;}
.h15{height:46.805935px;}
.h1e{height:49.522855px;}
.h2c{height:49.532629px;}
.h44{height:49.726184px;}
.h10{height:49.760128px;}
.hf{height:49.785010px;}
.h18{height:50.260953px;}
.h27{height:50.270873px;}
.h59{height:50.541421px;}
.h35{height:50.759998px;}
.h58{height:51.119998px;}
.h3c{height:51.611180px;}
.hd{height:52.158919px;}
.h49{height:52.626254px;}
.h31{height:54.274519px;}
.h9{height:54.734503px;}
.h34{height:56.146054px;}
.hb{height:57.697339px;}
.h3b{height:60.448776px;}
.h3f{height:60.481188px;}
.h2f{height:62.695121px;}
.h3e{height:63.172212px;}
.h4c{height:63.303301px;}
.h39{height:64.878133px;}
.h36{height:64.882906px;}
.h51{height:65.486174px;}
.h14{height:67.851635px;}
.h3d{height:71.609921px;}
.h52{height:73.439997px;}
.h3a{height:75.781373px;}
.h4e{height:75.812132px;}
.h43{height:78.271171px;}
.h23{height:79.883498px;}
.h48{height:80.564785px;}
.h2a{height:81.394808px;}
.h42{height:83.979141px;}
.h2e{height:84.236638px;}
.h47{height:85.064860px;}
.h38{height:86.746511px;}
.h11{height:88.178098px;}
.h41{height:88.211186px;}
.ha{height:88.674050px;}
.h22{height:88.777949px;}
.h33{height:88.941811px;}
.h4d{height:90.359996px;}
.h30{height:90.457532px;}
.h8{height:92.656791px;}
.hc{height:93.208519px;}
.h7{height:95.640996px;}
.h46{height:99.649906px;}
.h6{height:126.344424px;}
.h57{height:126.353553px;}
.h40{height:149.206021px;}
.h4b{height:155.829006px;}
.h32{height:157.913558px;}
.h28{height:169.919993px;}
.h37{height:192.852662px;}
.h45{height:213.814662px;}
.h2d{height:227.519991px;}
.h19{height:254.519989px;}
.h2b{height:304.199987px;}
.h13{height:321.945025px;}
.h24{height:341.999986px;}
.h1c{height:523.799978px;}
.h1f{height:641.519973px;}
.h12{height:922.319962px;}
.h1{height:1263.000000px;}
.h5{height:1263.374947px;}
.h0{height:1263.374968px;}
.w3{width:3.600000px;}
.w9{width:10.440000px;}
.wd{width:20.519999px;}
.we{width:43.199998px;}
.wf{width:53.279998px;}
.w1c{width:61.559997px;}
.w4{width:102.599996px;}
.w18{width:151.919994px;}
.w17{width:153.359994px;}
.w16{width:158.759993px;}
.w1b{width:163.439993px;}
.w15{width:183.959992px;}
.w14{width:348.839985px;}
.w11{width:522.359978px;}
.wc{width:543.599977px;}
.w1a{width:573.839976px;}
.w13{width:574.199976px;}
.w10{width:596.519975px;}
.w19{width:620.999974px;}
.w12{width:637.199973px;}
.w6{width:651.959973px;}
.w5{width:652.679973px;}
.w7{width:663.839972px;}
.w1{width:675.359972px;}
.wa{width:760.679968px;}
.w8{width:782.279967px;}
.wb{width:822.599966px;}
.w2{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:1.397351px;}
.x14{left:20.724886px;}
.x13{left:23.236615px;}
.x19{left:26.383883px;}
.x27{left:31.355015px;}
.x1e{left:35.218052px;}
.x1a{left:36.505117px;}
.x18{left:43.199998px;}
.x29{left:48.763918px;}
.xe{left:52.919998px;}
.x8{left:55.291902px;}
.x2a{left:67.052058px;}
.x28{left:69.601847px;}
.x17{left:71.999997px;}
.x16{left:78.932528px;}
.xf{left:81.187144px;}
.x6{left:83.469211px;}
.x7{left:88.439157px;}
.x34{left:116.204629px;}
.x9{left:134.334236px;}
.x3f{left:139.942614px;}
.x1{left:155.879994px;}
.x43{left:163.978516px;}
.x3e{left:169.801521px;}
.x42{left:172.665383px;}
.x1f{left:175.319993px;}
.x41{left:178.485935px;}
.x40{left:188.458941px;}
.x1b{left:195.998194px;}
.xc{left:197.949498px;}
.x10{left:204.873018px;}
.x3d{left:206.747082px;}
.x12{left:209.519991px;}
.x39{left:212.039991px;}
.x3c{left:213.119991px;}
.x38{left:217.439991px;}
.x23{left:221.352167px;}
.x31{left:232.170741px;}
.x20{left:238.138853px;}
.x15{left:255.337351px;}
.x1d{left:256.422953px;}
.x2e{left:258.214889px;}
.xd{left:260.452937px;}
.x1c{left:272.417759px;}
.x2c{left:275.681940px;}
.x3b{left:280.579823px;}
.x47{left:325.079986px;}
.x48{left:327.239986px;}
.x3{left:365.113695px;}
.x25{left:394.006550px;}
.x36{left:395.279984px;}
.x32{left:404.797350px;}
.x35{left:414.030878px;}
.x2b{left:438.569484px;}
.x30{left:447.037408px;}
.x33{left:459.438864px;}
.x37{left:478.799980px;}
.x2f{left:500.670112px;}
.x44{left:520.919978px;}
.x4{left:534.929631px;}
.x45{left:551.770379px;}
.x46{left:567.508730px;}
.x26{left:593.101095px;}
.xb{left:596.519975px;}
.x2{left:601.282883px;}
.x22{left:651.346029px;}
.x21{left:660.857948px;}
.x5{left:730.912686px;}
.xa{left:749.767919px;}
.x49{left:771.839968px;}
.x24{left:835.199965px;}
.x2d{left:855.644976px;}
.x11{left:864.517716px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:101.479783pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000152pt;}
.ls3{letter-spacing:0.031567pt;}
.ls0{letter-spacing:3.436399pt;}
.ls4{letter-spacing:9.193463pt;}
.ws5{word-spacing:-299.617741pt;}
.ws0{word-spacing:-110.143243pt;}
.ws16{word-spacing:-59.186342pt;}
.ws1{word-spacing:-58.662102pt;}
.ws19{word-spacing:-53.472188pt;}
.wsf{word-spacing:-47.997551pt;}
.ws3{word-spacing:-47.988080pt;}
.ws10{word-spacing:-47.978077pt;}
.ws11{word-spacing:-46.004573pt;}
.ws12{word-spacing:-45.337082pt;}
.ws14{word-spacing:-42.101544pt;}
.wsd{word-spacing:-32.526694pt;}
.ws17{word-spacing:-26.374257pt;}
.ws2{word-spacing:-21.720664pt;}
.wse{word-spacing:-18.721895pt;}
.ws13{word-spacing:-18.667033pt;}
.ws1b{word-spacing:-16.955789pt;}
.ws18{word-spacing:-16.659150pt;}
.ws1a{word-spacing:-16.119674pt;}
.ws1e{word-spacing:-15.999184pt;}
.ws1c{word-spacing:-14.477855pt;}
.ws15{word-spacing:-13.820567pt;}
.wsc{word-spacing:-12.412917pt;}
.ws1d{word-spacing:-11.726018pt;}
.ws1f{word-spacing:-11.512817pt;}
.ws6{word-spacing:-10.347979pt;}
.ws20{word-spacing:-10.340216pt;}
.ws8{word-spacing:-9.315538pt;}
.wsa{word-spacing:-9.315508pt;}
.ws9{word-spacing:-9.315480pt;}
.ws7{word-spacing:-8.280479pt;}
.wsb{word-spacing:-8.280451pt;}
.ws4{word-spacing:0.000000pt;}
.ws21{word-spacing:22.738928pt;}
._10{margin-left:-4.342142pt;}
._3{margin-left:-3.452881pt;}
._f{margin-left:-2.045259pt;}
._2{margin-left:-1.066596pt;}
._6{width:1.547587pt;}
._1{width:2.666394pt;}
._0{width:3.733321pt;}
._4{width:5.291153pt;}
._d{width:6.197188pt;}
._5{width:7.247075pt;}
._7{width:8.509798pt;}
._c{width:10.207640pt;}
._8{width:11.192419pt;}
._b{width:12.381049pt;}
._9{width:13.573914pt;}
._e{width:14.642668pt;}
._2d{width:15.589701pt;}
._1d{width:18.375653pt;}
._12{width:19.724079pt;}
._a{width:20.842901pt;}
._1e{width:22.182951pt;}
._27{width:23.141131pt;}
._15{width:24.612616pt;}
._2e{width:25.695907pt;}
._21{width:27.138686pt;}
._20{width:29.889022pt;}
._2a{width:31.751674pt;}
._1b{width:32.650151pt;}
._1a{width:34.278294pt;}
._19{width:35.221821pt;}
._11{width:36.694888pt;}
._1c{width:41.349142pt;}
._23{width:43.109445pt;}
._26{width:44.442885pt;}
._14{width:45.919893pt;}
._13{width:46.905522pt;}
._25{width:56.241669pt;}
._28{width:59.842598pt;}
._24{width:60.872656pt;}
._2f{width:64.037671pt;}
._16{width:65.509264pt;}
._2c{width:69.662975pt;}
._22{width:71.268338pt;}
._18{width:73.852929pt;}
._17{width:75.941900pt;}
._29{width:77.331515pt;}
._30{width:100.167096pt;}
._1f{width:104.186626pt;}
._2b{width:107.543541pt;}
.fs2c{font-size:32.012420pt;}
.fs1{font-size:39.997959pt;}
.fs11{font-size:42.682739pt;}
.fsf{font-size:42.682879pt;}
.fs14{font-size:47.991278pt;}
.fs0{font-size:47.997551pt;}
.fs10{font-size:48.017938pt;}
.fs12{font-size:48.018082pt;}
.fsd{font-size:48.018092pt;}
.fse{font-size:48.018239pt;}
.fs2a{font-size:53.300081pt;}
.fs7{font-size:53.317279pt;}
.fsc{font-size:53.340097pt;}
.fs29{font-size:55.997143pt;}
.fs23{font-size:58.622086pt;}
.fs8{font-size:58.662102pt;}
.fs6{font-size:63.984107pt;}
.fs15{font-size:63.996735pt;}
.fs26{font-size:66.636599pt;}
.fs4{font-size:69.306113pt;}
.fs1d{font-size:74.628118pt;}
.fs1f{font-size:74.668133pt;}
.fs1c{font-size:75.188333pt;}
.fs19{font-size:75.193864pt;}
.fsb{font-size:79.990138pt;}
.fs1e{font-size:90.674164pt;}
.fs13{font-size:95.956154pt;}
.fs28{font-size:95.995102pt;}
.fs16{font-size:95.996169pt;}
.fs22{font-size:97.716817pt;}
.fs18{font-size:101.358189pt;}
.fs1b{font-size:103.919150pt;}
.fs9{font-size:106.640179pt;}
.fs21{font-size:106.680195pt;}
.fs5{font-size:111.962185pt;}
.fs3{font-size:117.324205pt;}
.fs17{font-size:117.364220pt;}
.fs25{font-size:124.406874pt;}
.fs20{font-size:154.218110pt;}
.fs2{font-size:159.980277pt;}
.fs2b{font-size:159.991837pt;}
.fs27{font-size:197.314347pt;}
.fs1a{font-size:240.090460pt;}
.fs24{font-size:252.455119pt;}
.fsa{font-size:384.125309pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000018pt;}
.y1e{bottom:0.152028pt;}
.y1ce{bottom:2.049992pt;}
.y7a{bottom:2.755226pt;}
.y43{bottom:2.900231pt;}
.y9c{bottom:3.003591pt;}
.y90{bottom:3.039823pt;}
.ybf{bottom:3.076059pt;}
.y4{bottom:3.211468pt;}
.y5c{bottom:3.228902pt;}
.yb0{bottom:3.304233pt;}
.y106{bottom:4.062667pt;}
.y19{bottom:4.151713pt;}
.y1c8{bottom:4.163594pt;}
.y18d{bottom:4.188751pt;}
.y92{bottom:4.189932pt;}
.y199{bottom:4.190383pt;}
.yec{bottom:4.474039pt;}
.y1ca{bottom:5.029127pt;}
.y1ab{bottom:5.105690pt;}
.y1a5{bottom:5.127919pt;}
.y1cc{bottom:5.129518pt;}
.y1a7{bottom:5.130065pt;}
.y1a9{bottom:5.153033pt;}
.y170{bottom:5.158006pt;}
.y172{bottom:5.316756pt;}
.y194{bottom:7.005590pt;}
.y18a{bottom:7.168266pt;}
.y1af{bottom:7.278193pt;}
.y1a2{bottom:12.276221pt;}
.y1c7{bottom:18.162880pt;}
.y3{bottom:18.210703pt;}
.y79{bottom:18.761253pt;}
.y42{bottom:18.906311pt;}
.y9b{bottom:20.000502pt;}
.y8f{bottom:20.036734pt;}
.ybe{bottom:20.072970pt;}
.y18c{bottom:20.187935pt;}
.y198{bottom:20.189566pt;}
.yaf{bottom:20.301144pt;}
.y5b{bottom:21.235629pt;}
.yeb{bottom:30.032198pt;}
.y2{bottom:32.209989pt;}
.y91{bottom:32.440017pt;}
.y1a4{bottom:33.126490pt;}
.y78{bottom:34.767280pt;}
.y193{bottom:35.004162pt;}
.y189{bottom:35.166838pt;}
.y1ae{bottom:35.276765pt;}
.y41{bottom:35.801618pt;}
.y1{bottom:35.960017pt;}
.y197{bottom:36.188750pt;}
.y33{bottom:36.623937pt;}
.y9a{bottom:36.997413pt;}
.y8e{bottom:37.033645pt;}
.ybd{bottom:37.069881pt;}
.yae{bottom:37.298055pt;}
.y5a{bottom:39.242356pt;}
.y1cd{bottom:41.400017pt;}
.y125{bottom:42.248225pt;}
.y11f{bottom:43.430323pt;}
.y5d{bottom:44.600017pt;}
.ye9{bottom:45.456095pt;}
.y105{bottom:46.200016pt;}
.y190{bottom:47.287706pt;}
.y77{bottom:51.662531pt;}
.y196{bottom:52.187934pt;}
.y1c6{bottom:53.880016pt;}
.y99{bottom:53.994324pt;}
.y8d{bottom:54.030556pt;}
.ybc{bottom:54.066792pt;}
.yad{bottom:54.294966pt;}
.y1d{bottom:54.840016pt;}
.y59{bottom:57.249083pt;}
.y192{bottom:63.002734pt;}
.y188{bottom:63.165409pt;}
.y1ad{bottom:63.275336pt;}
.ye8{bottom:64.463256pt;}
.y11e{bottom:67.439369pt;}
.y40{bottom:68.703004pt;}
.y98{bottom:70.991235pt;}
.y8c{bottom:71.027467pt;}
.ybb{bottom:71.063703pt;}
.yac{bottom:71.291877pt;}
.y186{bottom:73.297505pt;}
.ye7{bottom:83.470418pt;}
.y76{bottom:84.563810pt;}
.y3f{bottom:84.709083pt;}
.ya0{bottom:86.840015pt;}
.y97{bottom:87.988146pt;}
.y8b{bottom:88.024378pt;}
.yba{bottom:88.060614pt;}
.yab{bottom:88.288788pt;}
.y11d{bottom:91.448415pt;}
.y154{bottom:92.917146pt;}
.y58{bottom:93.262537pt;}
.y185{bottom:99.307305pt;}
.y75{bottom:100.569837pt;}
.y3e{bottom:100.715163pt;}
.ye6{bottom:102.477579pt;}
.y140{bottom:104.489939pt;}
.y96{bottom:104.985057pt;}
.y8a{bottom:105.021289pt;}
.yb9{bottom:105.057525pt;}
.yaa{bottom:105.285699pt;}
.y57{bottom:111.269264pt;}
.y16d{bottom:111.311370pt;}
.y153{bottom:111.924307pt;}
.y11c{bottom:115.457461pt;}
.y74{bottom:117.465088pt;}
.y3d{bottom:117.610469pt;}
.yf8{bottom:120.132798pt;}
.ye5{bottom:121.484741pt;}
.y95{bottom:121.981968pt;}
.y89{bottom:122.018200pt;}
.yb8{bottom:122.054436pt;}
.ya9{bottom:122.282610pt;}
.y13f{bottom:123.497101pt;}
.y184{bottom:125.317105pt;}
.y1aa{bottom:127.480013pt;}
.y56{bottom:129.275991pt;}
.y16c{bottom:130.318532pt;}
.y152{bottom:130.931468pt;}
.y104{bottom:134.061504pt;}
.y94{bottom:138.978879pt;}
.y88{bottom:139.015111pt;}
.yb7{bottom:139.051347pt;}
.yf7{bottom:139.139960pt;}
.ya8{bottom:139.279521pt;}
.y11b{bottom:139.466507pt;}
.y44{bottom:140.600013pt;}
.y1cb{bottom:141.560012pt;}
.y13e{bottom:142.504262pt;}
.y55{bottom:147.282718pt;}
.y32{bottom:147.845907pt;}
.y16b{bottom:149.325693pt;}
.y151{bottom:149.938630pt;}
.y73{bottom:150.366366pt;}
.y3c{bottom:150.511855pt;}
.y183{bottom:151.326905pt;}
.ye4{bottom:152.684506pt;}
.y87{bottom:156.012022pt;}
.yb6{bottom:156.048258pt;}
.ya7{bottom:156.276432pt;}
.yf6{bottom:158.147121pt;}
.y13d{bottom:161.511424pt;}
.y11a{bottom:163.475554pt;}
.y54{bottom:165.289444pt;}
.y31{bottom:165.852691pt;}
.y72{bottom:166.372394pt;}
.y3b{bottom:166.517935pt;}
.y1a8{bottom:167.800011pt;}
.y16a{bottom:168.332854pt;}
.y150{bottom:168.945791pt;}
.y1a3{bottom:171.000011pt;}
.ye3{bottom:171.691668pt;}
.y86{bottom:173.008933pt;}
.yb5{bottom:173.045169pt;}
.ya6{bottom:173.273343pt;}
.yf5{bottom:177.154283pt;}
.y182{bottom:177.336705pt;}
.y13c{bottom:180.518585pt;}
.y3a{bottom:182.524015pt;}
.y71{bottom:183.267645pt;}
.y53{bottom:183.296171pt;}
.y30{bottom:183.859476pt;}
.y169{bottom:187.340016pt;}
.y119{bottom:187.484600pt;}
.y14f{bottom:187.952953pt;}
.y85{bottom:190.005844pt;}
.yb4{bottom:190.042080pt;}
.ya5{bottom:190.270254pt;}
.ye2{bottom:190.698829pt;}
.y1c9{bottom:191.800010pt;}
.yf4{bottom:196.161444pt;}
.y39{bottom:198.530095pt;}
.y13b{bottom:199.525747pt;}
.y52{bottom:201.302898pt;}
.y2f{bottom:201.866260pt;}
.y181{bottom:203.346505pt;}
.y168{bottom:206.347177pt;}
.y14e{bottom:206.960114pt;}
.y84{bottom:207.002755pt;}
.ya4{bottom:207.267165pt;}
.y1a6{bottom:208.440010pt;}
.ye1{bottom:209.705991pt;}
.y118{bottom:211.493646pt;}
.y38{bottom:215.425401pt;}
.y70{bottom:216.168923pt;}
.y13a{bottom:218.532908pt;}
.y51{bottom:219.309625pt;}
.y2e{bottom:220.873422pt;}
.y83{bottom:223.999666pt;}
.ya3{bottom:224.264076pt;}
.y167{bottom:225.354339pt;}
.y14d{bottom:225.967276pt;}
.ye0{bottom:228.713152pt;}
.y180{bottom:229.356305pt;}
.y6f{bottom:232.174950pt;}
.yf3{bottom:234.175767pt;}
.y117{bottom:235.502692pt;}
.y50{bottom:237.316352pt;}
.y139{bottom:237.540069pt;}
.y82{bottom:240.996577pt;}
.ya2{bottom:241.260987pt;}
.y166{bottom:244.361500pt;}
.y14c{bottom:244.974437pt;}
.y6e{bottom:248.180978pt;}
.yf2{bottom:253.182928pt;}
.y4f{bottom:255.323079pt;}
.y17f{bottom:255.366105pt;}
.y138{bottom:256.547231pt;}
.y2d{bottom:257.887368pt;}
.y81{bottom:257.993488pt;}
.ya1{bottom:258.257898pt;}
.y116{bottom:259.511738pt;}
.y165{bottom:263.368662pt;}
.y14b{bottom:263.981599pt;}
.y6d{bottom:264.187005pt;}
.ydf{bottom:270.649729pt;}
.yf1{bottom:272.190090pt;}
.y4e{bottom:273.329806pt;}
.y80{bottom:274.990399pt;}
.y2c{bottom:275.894152pt;}
.y6c{bottom:280.193032pt;}
.y17e{bottom:281.375904pt;}
.y1a0{bottom:281.503445pt;}
.y164{bottom:282.375823pt;}
.y115{bottom:283.520784pt;}
.y1c5{bottom:285.502389pt;}
.yde{bottom:289.656890pt;}
.yf0{bottom:291.197251pt;}
.y4d{bottom:291.336533pt;}
.y7f{bottom:291.987310pt;}
.y2b{bottom:294.901314pt;}
.y19f{bottom:296.509099pt;}
.y6b{bottom:297.088283pt;}
.y163{bottom:301.382985pt;}
.y1c4{bottom:304.509551pt;}
.y15{bottom:307.274458pt;}
.y17d{bottom:307.385704pt;}
.y114{bottom:307.529830pt;}
.ydd{bottom:308.664052pt;}
.yef{bottom:310.204413pt;}
.y137{bottom:311.187994pt;}
.y19e{bottom:311.514752pt;}
.y162{bottom:320.390146pt;}
.y4c{bottom:327.349987pt;}
.ydc{bottom:327.671213pt;}
.y136{bottom:328.194402pt;}
.y128{bottom:329.422637pt;}
.y6a{bottom:329.989562pt;}
.y2a{bottom:331.915260pt;}
.y14{bottom:333.284258pt;}
.y17c{bottom:333.395504pt;}
.y1c3{bottom:335.489564pt;}
.y161{bottom:339.397307pt;}
.y14a{bottom:340.053220pt;}
.y135{bottom:345.200809pt;}
.y4b{bottom:345.356714pt;}
.y69{bottom:345.995589pt;}
.y19d{bottom:346.527949pt;}
.ydb{bottom:346.678375pt;}
.y29{bottom:349.922044pt;}
.y1c2{bottom:350.495218pt;}
.y122{bottom:351.878201pt;}
.y149{bottom:359.060381pt;}
.y13{bottom:359.294058pt;}
.y17b{bottom:359.405304pt;}
.yea{bottom:359.800003pt;}
.y19c{bottom:361.533603pt;}
.y68{bottom:362.001616pt;}
.y134{bottom:362.207217pt;}
.y4a{bottom:363.363441pt;}
.y1c1{bottom:365.500872pt;}
.yda{bottom:365.685536pt;}
.y28{bottom:367.928829pt;}
.y19b{bottom:376.539257pt;}
.y148{bottom:378.067543pt;}
.y67{bottom:378.896867pt;}
.y133{bottom:379.213625pt;}
.y171{bottom:379.320003pt;}
.y1c0{bottom:380.506526pt;}
.y37{bottom:381.240003pt;}
.y49{bottom:381.370168pt;}
.y7e{bottom:384.440002pt;}
.yd9{bottom:384.692698pt;}
.y16e{bottom:385.243453pt;}
.y12{bottom:385.303858pt;}
.y17a{bottom:385.415104pt;}
.y27{bottom:385.935613pt;}
.y9f{bottom:391.301630pt;}
.y19a{bottom:392.545287pt;}
.y132{bottom:396.220032pt;}
.y147{bottom:397.074704pt;}
.y48{bottom:399.376895pt;}
.y26{bottom:403.942398pt;}
.y121{bottom:404.898178pt;}
.yb3{bottom:408.120001pt;}
.y11{bottom:411.313658pt;}
.y179{bottom:411.424904pt;}
.y66{bottom:411.798146pt;}
.y131{bottom:413.226440pt;}
.yd8{bottom:414.978207pt;}
.y146{bottom:416.081866pt;}
.y1bf{bottom:416.363510pt;}
.y47{bottom:417.383621pt;}
.y9e{bottom:420.312560pt;}
.y25{bottom:421.949182pt;}
.y65{bottom:427.804173pt;}
.y130{bottom:430.232847pt;}
.y1be{bottom:433.369917pt;}
.y145{bottom:435.089027pt;}
.y46{bottom:435.390348pt;}
.y10{bottom:437.323458pt;}
.y178{bottom:437.434704pt;}
.y24{bottom:440.956344pt;}
.y64{bottom:443.810200pt;}
.y12f{bottom:447.239255pt;}
.y1bd{bottom:452.377079pt;}
.y45{bottom:453.397075pt;}
.y144{bottom:454.096188pt;}
.y120{bottom:457.918154pt;}
.y63{bottom:460.705451pt;}
.yf{bottom:463.333257pt;}
.y177{bottom:463.444504pt;}
.y12e{bottom:464.245663pt;}
.yc9{bottom:470.207084pt;}
.y93{bottom:471.479999pt;}
.y143{bottom:473.103350pt;}
.y62{bottom:477.600702pt;}
.y23{bottom:477.970290pt;}
.y15e{bottom:478.934320pt;}
.y12d{bottom:481.252070pt;}
.y1bc{bottom:486.389894pt;}
.ye{bottom:489.343057pt;}
.y176{bottom:489.454303pt;}
.yc8{bottom:490.214622pt;}
.y61{bottom:493.606730pt;}
.y22{bottom:495.977074pt;}
.y15d{bottom:497.941481pt;}
.y12c{bottom:498.258478pt;}
.yd7{bottom:499.917880pt;}
.y1bb{bottom:505.397055pt;}
.yc7{bottom:510.222161pt;}
.y60{bottom:510.501981pt;}
.y21{bottom:513.983859pt;}
.y12b{bottom:515.264885pt;}
.y175{bottom:515.464103pt;}
.y15c{bottom:516.948643pt;}
.y142{bottom:521.070719pt;}
.y1ba{bottom:524.404217pt;}
.yd6{bottom:528.928811pt;}
.y141{bottom:529.713588pt;}
.yc6{bottom:530.229699pt;}
.y12a{bottom:532.271293pt;}
.y20{bottom:532.991020pt;}
.y15b{bottom:535.955804pt;}
.y174{bottom:541.473903pt;}
.y5f{bottom:543.403259pt;}
.y1b9{bottom:543.411378pt;}
.y129{bottom:549.277701pt;}
.yc5{bottom:550.237237pt;}
.y16{bottom:551.224480pt;}
.y103{bottom:552.443171pt;}
.y15a{bottom:554.962966pt;}
.yd5{bottom:557.939741pt;}
.y5e{bottom:559.409286pt;}
.yc4{bottom:570.244776pt;}
.y1f{bottom:573.021744pt;}
.y159{bottom:573.970127pt;}
.y1b8{bottom:577.424194pt;}
.y102{bottom:578.452971pt;}
.yd4{bottom:586.950672pt;}
.yc3{bottom:590.252314pt;}
.y158{bottom:592.977289pt;}
.y1b7{bottom:596.431355pt;}
.y101{bottom:604.462771pt;}
.y127{bottom:606.813166pt;}
.yc2{bottom:610.259852pt;}
.y113{bottom:610.760386pt;}
.y157{bottom:611.984450pt;}
.y1b6{bottom:615.438516pt;}
.yc1{bottom:630.267391pt;}
.y100{bottom:630.472571pt;}
.y156{bottom:630.991611pt;}
.y112{bottom:633.769055pt;}
.yb2{bottom:636.097597pt;}
.y36{bottom:639.450298pt;}
.y1b{bottom:641.284344pt;}
.y1b5{bottom:649.451332pt;}
.y155{bottom:649.998773pt;}
.yff{bottom:656.482371pt;}
.y111{bottom:656.777724pt;}
.y1a{bottom:661.291882pt;}
.yb1{bottom:665.108528pt;}
.y9d{bottom:665.115715pt;}
.y1b4{bottom:668.458493pt;}
.y7{bottom:678.677128pt;}
.y110{bottom:679.786393pt;}
.y35{bottom:681.790281pt;}
.yfe{bottom:682.492171pt;}
.y1b3{bottom:687.465655pt;}
.y9{bottom:690.181448pt;}
.y173{bottom:691.466963pt;}
.y34{bottom:701.797820pt;}
.y10f{bottom:702.795063pt;}
.y1b2{bottom:706.472816pt;}
.yfd{bottom:708.501970pt;}
.y8{bottom:715.190871pt;}
.y6{bottom:719.692582pt;}
.y17{bottom:724.194264pt;}
.y1b1{bottom:725.479977pt;}
.y10e{bottom:725.803732pt;}
.yd3{bottom:727.538975pt;}
.y16f{bottom:730.359988pt;}
.yfc{bottom:734.511770pt;}
.y1b0{bottom:744.487139pt;}
.yd2{bottom:747.546513pt;}
.y10d{bottom:748.812401pt;}
.y7d{bottom:759.642651pt;}
.yfb{bottom:760.521570pt;}
.yd1{bottom:767.554052pt;}
.y10c{bottom:771.821070pt;}
.yfa{bottom:786.531370pt;}
.yd0{bottom:787.561590pt;}
.y7c{bottom:788.653582pt;}
.y10b{bottom:794.829739pt;}
.ycf{bottom:807.569129pt;}
.y195{bottom:815.159984pt;}
.y10a{bottom:817.838408pt;}
.yf9{bottom:826.063557pt;}
.y18{bottom:836.279984pt;}
.y18b{bottom:847.159983pt;}
.yce{bottom:847.584205pt;}
.ycd{bottom:867.591744pt;}
.y109{bottom:869.858008pt;}
.yee{bottom:885.724619pt;}
.y191{bottom:885.879981pt;}
.ycc{bottom:887.599282pt;}
.y160{bottom:888.047221pt;}
.y1a1{bottom:888.119981pt;}
.y187{bottom:891.959981pt;}
.ycb{bottom:907.606820pt;}
.y15f{bottom:916.057775pt;}
.yd{bottom:940.774678pt;}
.yed{bottom:945.747234pt;}
.yc0{bottom:970.448582pt;}
.yc{bottom:973.787116pt;}
.y108{bottom:974.731230pt;}
.y107{bottom:994.738768pt;}
.y1ac{bottom:1000.759977pt;}
.yb{bottom:1006.799554pt;}
.y124{bottom:1029.129112pt;}
.y18f{bottom:1031.145874pt;}
.y126{bottom:1032.903668pt;}
.y7b{bottom:1032.916929pt;}
.yca{bottom:1034.229172pt;}
.ya{bottom:1039.811993pt;}
.y1c{bottom:1040.048401pt;}
.y123{bottom:1060.140796pt;}
.y18e{bottom:1062.157559pt;}
.h5c{height:9.600000pt;}
.he{height:16.319999pt;}
.h26{height:17.279999pt;}
.h4a{height:17.599999pt;}
.h5d{height:22.352422pt;}
.h5b{height:27.199999pt;}
.h4{height:29.002427pt;}
.h4f{height:33.279999pt;}
.h20{height:33.292537pt;}
.h1b{height:33.292646pt;}
.h3{height:33.694281pt;}
.h29{height:36.185424pt;}
.h25{height:37.433197pt;}
.h1d{height:37.453992pt;}
.h21{height:37.454104pt;}
.h16{height:37.454112pt;}
.h1a{height:37.454227pt;}
.h55{height:39.175560pt;}
.h56{height:39.442060pt;}
.h54{height:40.188261pt;}
.h50{height:40.317943pt;}
.h17{height:41.007451pt;}
.h2{height:41.279998pt;}
.h53{height:41.437886pt;}
.h5a{height:41.574063pt;}
.h15{height:41.605276pt;}
.h1e{height:44.020316pt;}
.h2c{height:44.029004pt;}
.h44{height:44.201053pt;}
.h10{height:44.231225pt;}
.hf{height:44.253342pt;}
.h18{height:44.676403pt;}
.h27{height:44.685220pt;}
.h59{height:44.925708pt;}
.h35{height:45.119998pt;}
.h58{height:45.439998pt;}
.h3c{height:45.876605pt;}
.hd{height:46.363484pt;}
.h49{height:46.778893pt;}
.h31{height:48.244017pt;}
.h9{height:48.652891pt;}
.h34{height:49.907603pt;}
.hb{height:51.286524pt;}
.h3b{height:53.732245pt;}
.h3f{height:53.761056pt;}
.h2f{height:55.728997pt;}
.h3e{height:56.153077pt;}
.h4c{height:56.269601pt;}
.h39{height:57.669452pt;}
.h36{height:57.673694pt;}
.h51{height:58.209932pt;}
.h14{height:60.312564pt;}
.h3d{height:63.653263pt;}
.h52{height:65.279997pt;}
.h3a{height:67.361220pt;}
.h4e{height:67.388562pt;}
.h43{height:69.574374pt;}
.h23{height:71.007554pt;}
.h48{height:71.613142pt;}
.h2a{height:72.350940pt;}
.h42{height:74.648126pt;}
.h2e{height:74.877012pt;}
.h47{height:75.613209pt;}
.h38{height:77.108010pt;}
.h11{height:78.380532pt;}
.h41{height:78.409943pt;}
.ha{height:78.821378pt;}
.h22{height:78.913733pt;}
.h33{height:79.059388pt;}
.h4d{height:80.319997pt;}
.h30{height:80.406695pt;}
.h8{height:82.361592pt;}
.hc{height:82.852017pt;}
.h7{height:85.014219pt;}
.h46{height:88.577694pt;}
.h6{height:112.306154pt;}
.h57{height:112.314270pt;}
.h40{height:132.627574pt;}
.h4b{height:138.514672pt;}
.h32{height:140.367607pt;}
.h28{height:151.039994pt;}
.h37{height:171.424589pt;}
.h45{height:190.057477pt;}
.h2d{height:202.239992pt;}
.h19{height:226.239991pt;}
.h2b{height:270.399989pt;}
.h13{height:286.173355pt;}
.h24{height:303.999987pt;}
.h1c{height:465.599981pt;}
.h1f{height:570.239976pt;}
.h12{height:819.839966pt;}
.h1{height:1122.666667pt;}
.h5{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w3{width:3.200000pt;}
.w9{width:9.280000pt;}
.wd{width:18.239999pt;}
.we{width:38.399998pt;}
.wf{width:47.359998pt;}
.w1c{width:54.719998pt;}
.w4{width:91.199996pt;}
.w18{width:135.039994pt;}
.w17{width:136.319994pt;}
.w16{width:141.119994pt;}
.w1b{width:145.279994pt;}
.w15{width:163.519993pt;}
.w14{width:310.079987pt;}
.w11{width:464.319981pt;}
.wc{width:483.199980pt;}
.w1a{width:510.079979pt;}
.w13{width:510.399979pt;}
.w10{width:530.239978pt;}
.w19{width:551.999977pt;}
.w12{width:566.399976pt;}
.w6{width:579.519976pt;}
.w5{width:580.159976pt;}
.w7{width:590.079975pt;}
.w1{width:600.319975pt;}
.wa{width:676.159972pt;}
.w8{width:695.359971pt;}
.wb{width:731.199970pt;}
.w2{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:1.242090pt;}
.x14{left:18.422121pt;}
.x13{left:20.654769pt;}
.x19{left:23.452340pt;}
.x27{left:27.871124pt;}
.x1e{left:31.304935pt;}
.x1a{left:32.448993pt;}
.x18{left:38.399998pt;}
.x29{left:43.345705pt;}
.xe{left:47.039998pt;}
.x8{left:49.148357pt;}
.x2a{left:59.601830pt;}
.x28{left:61.868309pt;}
.x17{left:63.999997pt;}
.x16{left:70.162247pt;}
.xf{left:72.166350pt;}
.x6{left:74.194855pt;}
.x7{left:78.612584pt;}
.x34{left:103.293004pt;}
.x9{left:119.408209pt;}
.x3f{left:124.393435pt;}
.x1{left:138.559994pt;}
.x43{left:145.758681pt;}
.x3e{left:150.934685pt;}
.x42{left:153.480340pt;}
.x1f{left:155.839994pt;}
.x41{left:158.654165pt;}
.x40{left:167.519059pt;}
.x1b{left:174.220617pt;}
.xc{left:175.955109pt;}
.x10{left:182.109349pt;}
.x3d{left:183.775184pt;}
.x12{left:186.239992pt;}
.x39{left:188.479992pt;}
.x3c{left:189.439992pt;}
.x38{left:193.279992pt;}
.x23{left:196.757482pt;}
.x31{left:206.373992pt;}
.x20{left:211.678980pt;}
.x15{left:226.966535pt;}
.x1d{left:227.931514pt;}
.x2e{left:229.524346pt;}
.xd{left:231.513722pt;}
.x1c{left:242.149119pt;}
.x2c{left:245.050614pt;}
.x3b{left:249.404287pt;}
.x47{left:288.959988pt;}
.x48{left:290.879988pt;}
.x3{left:324.545507pt;}
.x25{left:350.228045pt;}
.x36{left:351.359985pt;}
.x32{left:359.819867pt;}
.x35{left:368.027447pt;}
.x2b{left:389.839542pt;}
.x30{left:397.366585pt;}
.x33{left:408.390101pt;}
.x37{left:425.599982pt;}
.x2f{left:445.040100pt;}
.x44{left:463.039981pt;}
.x4{left:475.493005pt;}
.x45{left:490.462559pt;}
.x46{left:504.452205pt;}
.x26{left:527.200974pt;}
.xb{left:530.239978pt;}
.x2{left:534.473674pt;}
.x22{left:578.974248pt;}
.x21{left:587.429288pt;}
.x5{left:649.700165pt;}
.xa{left:666.460372pt;}
.x49{left:686.079971pt;}
.x24{left:742.399969pt;}
.x2d{left:760.573312pt;}
.x11{left:768.460192pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  