
    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_fb01d1b7dd8d9af37a922d69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.121000;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_281a5953f9644c959278fea2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_f0792e9ab8b13dab8e800c2c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896484;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_64a818ee790dc48947a49eb4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_15b80b9fb617cfc1882e1790.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.fff{font-family:fff;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.121000;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;}
.m2{transform:matrix(0.239997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239997,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.439224px;}
.ls5{letter-spacing:-0.384321px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.004240px;}
.ls2f{letter-spacing:0.006919px;}
.ls2d{letter-spacing:0.007517px;}
.ls26{letter-spacing:0.008075px;}
.lsd{letter-spacing:0.008146px;}
.ls17{letter-spacing:0.008593px;}
.ls28{letter-spacing:0.008633px;}
.lsb{letter-spacing:0.008704px;}
.ls9{letter-spacing:0.009039px;}
.ls2e{letter-spacing:0.009075px;}
.ls10{letter-spacing:0.009150px;}
.ls1b{letter-spacing:0.009597px;}
.ls1c{letter-spacing:0.010043px;}
.ls16{letter-spacing:0.012387px;}
.ls1e{letter-spacing:0.017520px;}
.ls1d{letter-spacing:0.030799px;}
.ls14{letter-spacing:0.031469px;}
.ls1a{letter-spacing:0.046534px;}
.ls30{letter-spacing:0.059590px;}
.lsf{letter-spacing:0.063719px;}
.ls18{letter-spacing:0.078784px;}
.ls2c{letter-spacing:0.211485px;}
.ls13{letter-spacing:0.214122px;}
.ls11{letter-spacing:0.342595px;}
.lsc{letter-spacing:0.380263px;}
.ls2b{letter-spacing:0.380674px;}
.lse{letter-spacing:0.385419px;}
.ls4{letter-spacing:0.395302px;}
.ls2a{letter-spacing:0.422971px;}
.ls12{letter-spacing:0.428243px;}
.ls29{letter-spacing:0.439236px;}
.ls2{letter-spacing:0.444714px;}
.ls27{letter-spacing:0.465268px;}
.ls15{letter-spacing:0.469831px;}
.lsa{letter-spacing:0.471068px;}
.ls3{letter-spacing:0.494127px;}
.ls1{letter-spacing:0.592952px;}
.ls6{letter-spacing:2.360829px;}
.ls22{letter-spacing:14.000821px;}
.ls23{letter-spacing:14.001378px;}
.ls20{letter-spacing:33.748042px;}
.ls1f{letter-spacing:33.748600px;}
.ls21{letter-spacing:40.211419px;}
.ls24{letter-spacing:40.212048px;}
.ls25{letter-spacing:701.531330px;}
.ls8{letter-spacing:710.280099px;}
.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;}
}
.ws0{word-spacing:-13.725748px;}
.wsb{word-spacing:-13.556687px;}
.ws1{word-spacing:-13.341427px;}
.ws2{word-spacing:-13.286524px;}
.ws9{word-spacing:-12.797887px;}
.wsa{word-spacing:-12.640226px;}
.ws4{word-spacing:-11.177151px;}
.ws6{word-spacing:-11.134326px;}
.ws5{word-spacing:-11.091502px;}
.ws7{word-spacing:-11.048678px;}
.wse{word-spacing:-11.039533px;}
.wsc{word-spacing:-10.997236px;}
.wsd{word-spacing:-10.954939px;}
.ws8{word-spacing:-10.920205px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-40.404485px;}
._1f{margin-left:-39.248773px;}
._c{margin-left:-5.051187px;}
._b{margin-left:-4.024278px;}
._a{margin-left:-2.909858px;}
._9{margin-left:-1.136492px;}
._8{width:1.262769px;}
._4{width:2.470635px;}
._7{width:4.062821px;}
._3{width:5.380493px;}
._10{width:6.478553px;}
._18{width:7.570730px;}
._14{width:8.762654px;}
._11{width:9.992344px;}
._e{width:11.639434px;}
._f{width:12.682591px;}
._15{width:13.810937px;}
._16{width:14.813345px;}
._19{width:16.151942px;}
._17{width:17.404248px;}
._6{width:18.721920px;}
._1c{width:20.214536px;}
._20{width:21.521972px;}
._5{width:22.620032px;}
._1b{width:24.102413px;}
._26{width:25.200473px;}
._27{width:26.298532px;}
._12{width:27.835370px;}
._13{width:29.032371px;}
._25{width:31.733928px;}
._1d{width:33.600853px;}
._1a{width:40.902728px;}
._28{width:42.220400px;}
._22{width:429.095884px;}
._0{width:434.886364px;}
._24{width:701.531330px;}
._2{width:710.280099px;}
._21{width:784.064777px;}
._d{width:793.842116px;}
._23{width:797.621383px;}
._1{width:807.129197px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.297063px;}
.fs3{font-size:42.824333px;}
.fs5{font-size:48.803960px;}
.fs2{font-size:49.412691px;}
.fs0{font-size:50.216150px;}
.fs4{font-size:54.226746px;}
.fs1{font-size:54.902990px;}
.yd5{bottom:-0.274200px;}
.y0{bottom:0.000000px;}
.y2{bottom:28.867033px;}
.y4{bottom:47.303055px;}
.y169{bottom:52.687203px;}
.y165{bottom:104.402026px;}
.y12c{bottom:104.402165px;}
.y1ec{bottom:108.519890px;}
.yff{bottom:110.716009px;}
.y198{bottom:113.149944px;}
.y5d{bottom:114.010189px;}
.yd3{bottom:117.304368px;}
.y1d3{bottom:118.127913px;}
.ya8{bottom:119.500488px;}
.y164{bottom:120.323893px;}
.y12b{bottom:120.324032px;}
.y1eb{bottom:124.441757px;}
.y20a{bottom:125.818446px;}
.yfe{bottom:126.363361px;}
.y1c2{bottom:126.705849px;}
.y197{bottom:128.875536px;}
.y5c{bottom:129.932056px;}
.y7f{bottom:131.304631px;}
.yd2{bottom:132.951720px;}
.y1d2{bottom:134.049780px;}
.y163{bottom:135.971245px;}
.y12a{bottom:135.971385px;}
.y12f{bottom:139.549704px;}
.y1ea{bottom:140.089109px;}
.ya7{bottom:142.285229px;}
.y196{bottom:144.330142px;}
.y5b{bottom:145.579408px;}
.y7e{bottom:146.951983px;}
.y1{bottom:148.500000px;}
.yd1{bottom:148.873587px;}
.y1d1{bottom:149.697132px;}
.y162{bottom:151.893112px;}
.y129{bottom:151.893252px;}
.y1c1{bottom:155.988239px;}
.y1e9{bottom:156.010976px;}
.yfd{bottom:157.932581px;}
.y195{bottom:160.055887px;}
.y5a{bottom:161.501275px;}
.y7d{bottom:162.873850px;}
.yd0{bottom:164.520940px;}
.ya6{bottom:164.795455px;}
.y3d{bottom:165.194100px;}
.y14b{bottom:165.619000px;}
.y161{bottom:167.540465px;}
.y128{bottom:167.540604px;}
.y7c{bottom:168.689976px;}
.y185{bottom:170.955000px;}
.y1c0{bottom:171.442957px;}
.y1e8{bottom:171.658329px;}
.yfc{bottom:173.854448px;}
.y194{bottom:175.510605px;}
.y59{bottom:177.148628px;}
.ycf{bottom:180.442807px;}
.ya5{bottom:180.717322px;}
.y14a{bottom:181.266352px;}
.y160{bottom:183.462332px;}
.y127{bottom:183.462471px;}
.y7b{bottom:184.611843px;}
.y1bf{bottom:187.168702px;}
.y1e7{bottom:187.580196px;}
.y2c{bottom:189.501800px;}
.y193{bottom:191.236350px;}
.y58{bottom:193.070495px;}
.yce{bottom:196.090159px;}
.y149{bottom:197.188219px;}
.y15f{bottom:199.109684px;}
.y126{bottom:199.109824px;}
.y190{bottom:199.961394px;}
.y7a{bottom:200.259196px;}
.y1be{bottom:202.623280px;}
.ya4{bottom:203.227548px;}
.y2b{bottom:205.138133px;}
.yfb{bottom:205.423668px;}
.y192{bottom:206.690928px;}
.y57{bottom:208.717847px;}
.yd8{bottom:208.997802px;}
.ycd{bottom:212.012026px;}
.y148{bottom:212.835571px;}
.y15e{bottom:215.031551px;}
.y125{bottom:215.031691px;}
.y18f{bottom:215.415972px;}
.y1d6{bottom:216.404126px;}
.y1bd{bottom:218.349026px;}
.ya3{bottom:219.149415px;}
.y2a{bottom:219.418490px;}
.y191{bottom:222.416673px;}
.y56{bottom:224.639714px;}
.ycc{bottom:227.659379px;}
.y147{bottom:228.757439px;}
.y15d{bottom:230.678904px;}
.y124{bottom:230.679043px;}
.y18e{bottom:231.141718px;}
.yab{bottom:232.864004px;}
.y1bc{bottom:233.803743px;}
.y29{bottom:233.970433px;}
.ya2{bottom:234.796768px;}
.y14c{bottom:235.894827px;}
.y79{bottom:239.738037px;}
.y55{bottom:240.287067px;}
.y1d0{bottom:242.483186px;}
.y146{bottom:244.404791px;}
.y18d{bottom:246.596435px;}
.y123{bottom:246.600910px;}
.y28{bottom:248.522515px;}
.y1bb{bottom:249.529488px;}
.yfa{bottom:250.718635px;}
.y78{bottom:255.385389px;}
.y54{bottom:256.208934px;}
.ycb{bottom:257.306994px;}
.ya1{bottom:257.581509px;}
.y1cf{bottom:258.130538px;}
.y15c{bottom:260.326519px;}
.y145{bottom:260.326658px;}
.y122{bottom:262.248263px;}
.y18c{bottom:262.322180px;}
.y27{bottom:263.071808px;}
.y1ba{bottom:264.984066px;}
.yf9{bottom:266.365987px;}
.y77{bottom:271.307256px;}
.y53{bottom:271.856286px;}
.yca{bottom:272.954346px;}
.ya0{bottom:273.228861px;}
.y1ce{bottom:274.052406px;}
.y15b{bottom:275.973871px;}
.y144{bottom:275.974010px;}
.y18b{bottom:277.776758px;}
.y121{bottom:278.170130px;}
.y26{bottom:278.993675px;}
.y1b9{bottom:280.709812px;}
.yf8{bottom:282.287854px;}
.y1e0{bottom:283.110004px;}
.y102{bottom:283.114189px;}
.y1ef{bottom:285.852364px;}
.y76{bottom:286.954608px;}
.y52{bottom:287.778153px;}
.yc9{bottom:288.601698px;}
.y9f{bottom:289.150728px;}
.y1cd{bottom:289.699758px;}
.y15a{bottom:291.895738px;}
.y143{bottom:291.895878px;}
.y18a{bottom:293.502504px;}
.y1f4{bottom:293.817482px;}
.y25{bottom:294.641027px;}
.y1b8{bottom:296.164390px;}
.yf7{bottom:297.935207px;}
.y1f7{bottom:297.940647px;}
.y75{bottom:302.876476px;}
.y51{bottom:303.425506px;}
.yc8{bottom:304.523565px;}
.y1cc{bottom:305.621625px;}
.y159{bottom:307.543090px;}
.y120{bottom:307.543230px;}
.y189{bottom:308.957221px;}
.y202{bottom:309.739349px;}
.y24{bottom:310.562894px;}
.y9e{bottom:311.660954px;}
.y1b7{bottom:311.890135px;}
.yf6{bottom:313.857074px;}
.y50{bottom:319.347373px;}
.yc7{bottom:320.170918px;}
.y1cb{bottom:321.268977px;}
.y158{bottom:323.464958px;}
.y11f{bottom:323.465097px;}
.y188{bottom:324.682967px;}
.y74{bottom:325.386702px;}
.y23{bottom:326.210247px;}
.y1b6{bottom:327.344853px;}
.y9d{bottom:327.577939px;}
.y1e6{bottom:327.582821px;}
.y205{bottom:328.963626px;}
.yf5{bottom:329.504426px;}
.y4f{bottom:334.994725px;}
.yc6{bottom:336.092785px;}
.y1ca{bottom:337.190845px;}
.y157{bottom:339.112310px;}
.y11e{bottom:339.112449px;}
.y187{bottom:340.137545px;}
.y73{bottom:341.308569px;}
.y22{bottom:342.132114px;}
.y1b5{bottom:343.070598px;}
.y9c{bottom:343.230174px;}
.yf4{bottom:345.426293px;}
.y4e{bottom:350.916592px;}
.yc5{bottom:351.740137px;}
.y1c9{bottom:352.838197px;}
.y156{bottom:355.034177px;}
.y11d{bottom:355.034317px;}
.y186{bottom:355.863290px;}
.y72{bottom:356.955921px;}
.y21{bottom:357.779466px;}
.y1b4{bottom:358.525176px;}
.y12e{bottom:358.608451px;}
.y9b{bottom:359.152041px;}
.yf3{bottom:361.073646px;}
.y1c6{bottom:363.674842px;}
.yd7{bottom:364.647780px;}
.y4d{bottom:366.563945px;}
.yc4{bottom:367.662004px;}
.y1c8{bottom:368.760064px;}
.y155{bottom:370.681529px;}
.y11c{bottom:370.681669px;}
.y20{bottom:373.701333px;}
.y1e5{bottom:374.799393px;}
.y71{bottom:379.740662px;}
.y9a{bottom:381.662267px;}
.y16a{bottom:381.843045px;}
.y4c{bottom:382.485812px;}
.yc3{bottom:383.309357px;}
.y142{bottom:384.407417px;}
.y154{bottom:386.603397px;}
.y11b{bottom:386.603536px;}
.y1b3{bottom:387.807608px;}
.y1f{bottom:389.348686px;}
.yf2{bottom:390.721260px;}
.y70{bottom:395.388015px;}
.y99{bottom:397.584134px;}
.y4b{bottom:398.133164px;}
.yc2{bottom:399.231224px;}
.y141{bottom:400.329284px;}
.y153{bottom:402.250749px;}
.y11a{bottom:402.250888px;}
.y1b2{bottom:403.262325px;}
.y1e{bottom:405.270553px;}
.yf1{bottom:406.368613px;}
.y184{bottom:407.329415px;}
.y6f{bottom:411.309882px;}
.y98{bottom:413.231486px;}
.y4a{bottom:414.055031px;}
.yc1{bottom:414.878576px;}
.y140{bottom:415.976636px;}
.y152{bottom:418.172616px;}
.y119{bottom:418.172756px;}
.y1b1{bottom:418.988071px;}
.yaa{bottom:420.088781px;}
.y1d{bottom:420.906885px;}
.yf0{bottom:422.290480px;}
.y183{bottom:423.055160px;}
.y101{bottom:423.112630px;}
.y49{bottom:429.702384px;}
.y13f{bottom:431.898503px;}
.y151{bottom:433.819968px;}
.y6e{bottom:433.820108px;}
.y1b0{bottom:434.442649px;}
.y1c{bottom:435.187243px;}
.y97{bottom:436.016228px;}
.yef{bottom:437.937832px;}
.y182{bottom:438.509878px;}
.y1ee{bottom:441.502342px;}
.yc0{bottom:444.526191px;}
.y48{bottom:445.624251px;}
.y118{bottom:447.545856px;}
.y6b{bottom:448.695227px;}
.y1b{bottom:449.739185px;}
.y150{bottom:449.741836px;}
.y6d{bottom:449.741975px;}
.y1af{bottom:450.168394px;}
.y96{bottom:451.663580px;}
.yee{bottom:453.859699px;}
.y181{bottom:454.235623px;}
.ybf{bottom:460.173543px;}
.y47{bottom:461.271603px;}
.y117{bottom:463.467723px;}
.y1a{bottom:464.291268px;}
.y6a{bottom:464.617095px;}
.y14f{bottom:465.389188px;}
.y6c{bottom:465.389327px;}
.y1ae{bottom:465.622972px;}
.y95{bottom:467.585447px;}
.y1f6{bottom:468.414432px;}
.yed{bottom:469.507052px;}
.y180{bottom:469.689643px;}
.y166{bottom:470.605112px;}
.ybe{bottom:476.095411px;}
.y46{bottom:477.193470px;}
.y19{bottom:478.840560px;}
.y116{bottom:479.115075px;}
.y1dd{bottom:481.311055px;}
.y201{bottom:481.311195px;}
.y1ad{bottom:481.348717px;}
.y1e4{bottom:483.232799px;}
.y17f{bottom:485.415388px;}
.yec{bottom:485.428919px;}
.yd6{bottom:488.723098px;}
.y94{bottom:490.095673px;}
.ybd{bottom:491.742763px;}
.y45{bottom:492.840823px;}
.y18{bottom:494.762427px;}
.y13e{bottom:495.036803px;}
.y115{bottom:495.036942px;}
.y1ac{bottom:496.803435px;}
.y1dc{bottom:496.958407px;}
.y200{bottom:496.958547px;}
.y1e3{bottom:499.154667px;}
.y17e{bottom:500.869967px;}
.y69{bottom:503.821421px;}
.y93{bottom:506.017540px;}
.ybc{bottom:507.664630px;}
.y44{bottom:508.762690px;}
.y17{bottom:510.409780px;}
.y13d{bottom:510.684155px;}
.y114{bottom:510.684295px;}
.y1ab{bottom:512.529180px;}
.y1db{bottom:512.880275px;}
.y1ff{bottom:512.880414px;}
.yeb{bottom:514.802019px;}
.y17d{bottom:516.595712px;}
.y68{bottom:519.743288px;}
.y92{bottom:521.664893px;}
.ybb{bottom:523.311982px;}
.y43{bottom:524.410042px;}
.y16{bottom:526.331647px;}
.y13c{bottom:526.606022px;}
.y113{bottom:526.606162px;}
.y1aa{bottom:527.983758px;}
.y1da{bottom:528.527627px;}
.y1fe{bottom:528.527766px;}
.yea{bottom:530.723886px;}
.y17c{bottom:532.050429px;}
.y1c5{bottom:533.134401px;}
.y209{bottom:533.744945px;}
.y67{bottom:535.390640px;}
.y91{bottom:537.586760px;}
.yba{bottom:539.233850px;}
.y42{bottom:540.331909px;}
.y207{bottom:541.481281px;}
.y15{bottom:541.978999px;}
.y13b{bottom:542.253375px;}
.y112{bottom:542.253514px;}
.y1d9{bottom:544.449494px;}
.y1fd{bottom:544.449634px;}
.ye9{bottom:546.371238px;}
.y17b{bottom:547.776175px;}
.y66{bottom:551.312507px;}
.yb9{bottom:554.881202px;}
.y40{bottom:555.207029px;}
.y41{bottom:555.979262px;}
.y65{bottom:557.128634px;}
.y1a9{bottom:557.266190px;}
.y14{bottom:557.900866px;}
.y13a{bottom:558.175242px;}
.y111{bottom:558.175381px;}
.y1d8{bottom:560.096846px;}
.y90{bottom:560.096986px;}
.ye8{bottom:562.293106px;}
.y17a{bottom:563.230753px;}
.y19a{bottom:566.752021px;}
.yb8{bottom:570.803069px;}
.y3f{bottom:570.854381px;}
.y1a8{bottom:572.720908px;}
.y64{bottom:573.050361px;}
.y206{bottom:573.050501px;}
.y13{bottom:573.548219px;}
.y139{bottom:573.822594px;}
.y110{bottom:573.822734px;}
.y1d7{bottom:576.018714px;}
.y8f{bottom:576.018853px;}
.y1d5{bottom:577.388499px;}
.ye7{bottom:577.940458px;}
.y1df{bottom:580.957333px;}
.yb7{bottom:586.450421px;}
.y3e{bottom:586.776248px;}
.y1a7{bottom:588.446653px;}
.y63{bottom:588.697714px;}
.y12{bottom:589.470086px;}
.y138{bottom:589.744461px;}
.y10f{bottom:589.744601px;}
.y8e{bottom:591.666205px;}
.y179{bottom:592.513185px;}
.ye6{bottom:593.862325px;}
.yb6{bottom:602.372289px;}
.y1c7{bottom:603.470348px;}
.y1a6{bottom:603.901231px;}
.y62{bottom:604.619581px;}
.y11{bottom:605.117438px;}
.y137{bottom:605.391814px;}
.y10e{bottom:605.391953px;}
.ya9{bottom:607.313418px;}
.y8d{bottom:607.588073px;}
.ye5{bottom:609.509677px;}
.y204{bottom:610.887692px;}
.y3c{bottom:619.117701px;}
.y1a5{bottom:619.626697px;}
.y10{bottom:621.039305px;}
.y136{bottom:621.313681px;}
.y10d{bottom:621.313820px;}
.ye4{bottom:625.431545px;}
.y8c{bottom:630.098299px;}
.yb5{bottom:631.745388px;}
.y3b{bottom:635.039568px;}
.y178{bottom:635.081275px;}
.yf{bottom:636.686658px;}
.y10c{bottom:636.961033px;}
.y1f3{bottom:636.961173px;}
.ye3{bottom:641.078897px;}
.y167{bottom:642.178352px;}
.y61{bottom:643.824046px;}
.y8b{bottom:646.020166px;}
.y3a{bottom:650.686920px;}
.y177{bottom:650.807020px;}
.ye{bottom:652.608525px;}
.y10b{bottom:652.882900px;}
.y1f2{bottom:652.883040px;}
.ye2{bottom:657.000764px;}
.y60{bottom:659.745914px;}
.y8a{bottom:661.667379px;}
.y176{bottom:666.261599px;}
.y14e{bottom:666.608648px;}
.y39{bottom:666.608787px;}
.yd{bottom:668.255877px;}
.y10a{bottom:668.530253px;}
.y1f1{bottom:668.530392px;}
.ydf{bottom:671.875744px;}
.ye1{bottom:672.648116px;}
.y100{bottom:673.746176px;}
.yb4{bottom:675.390476px;}
.y5f{bottom:675.393126px;}
.y89{bottom:677.589385px;}
.y175{bottom:681.987344px;}
.y14d{bottom:682.256000px;}
.y38{bottom:682.256140px;}
.y135{bottom:684.452120px;}
.y1f0{bottom:684.452259px;}
.y1c4{bottom:686.866819px;}
.yde{bottom:687.523096px;}
.ye0{bottom:688.569984px;}
.y1ed{bottom:691.864163px;}
.yb3{bottom:692.417378px;}
.y174{bottom:697.441922px;}
.y5e{bottom:698.177867px;}
.y37{bottom:698.178007px;}
.yc{bottom:698.727037px;}
.y134{bottom:700.099472px;}
.y88{bottom:700.099612px;}
.ydd{bottom:703.444964px;}
.yb2{bottom:709.707635px;}
.y1a4{bottom:710.998748px;}
.y173{bottom:713.167667px;}
.y109{bottom:713.825220px;}
.y36{bottom:713.825359px;}
.y133{bottom:716.021339px;}
.y87{bottom:716.021479px;}
.y1e2{bottom:717.943083px;}
.ydc{bottom:719.092316px;}
.y1f5{bottom:720.962748px;}
.y1a3{bottom:726.724493px;}
.yb1{bottom:726.727562px;}
.y172{bottom:728.622385px;}
.y108{bottom:729.747087px;}
.y35{bottom:729.747226px;}
.y132{bottom:731.668692px;}
.y86{bottom:731.668831px;}
.y1e1{bottom:733.864951px;}
.y1a2{bottom:742.179071px;}
.y171{bottom:744.348130px;}
.y107{bottom:745.394439px;}
.y34{bottom:745.394579px;}
.y131{bottom:747.590559px;}
.y1fc{bottom:747.590698px;}
.yb{bottom:750.884878px;}
.y85{bottom:754.453572px;}
.y1a1{bottom:757.904817px;}
.yb0{bottom:758.571296px;}
.y170{bottom:759.802708px;}
.y106{bottom:761.316306px;}
.y33{bottom:761.316446px;}
.y130{bottom:763.237911px;}
.y1fb{bottom:763.238051px;}
.ydb{bottom:765.434031px;}
.ya{bottom:766.257715px;}
.y12d{bottom:766.806745px;}
.y208{bottom:767.355775px;}
.y1de{bottom:768.453835px;}
.y84{bottom:770.100924px;}
.y1a0{bottom:773.359534px;}
.y16f{bottom:775.528453px;}
.y105{bottom:776.963659px;}
.y32{bottom:776.963798px;}
.y1fa{bottom:779.159918px;}
.y9{bottom:779.983463px;}
.yda{bottom:781.081383px;}
.y83{bottom:786.022792px;}
.y19f{bottom:789.085279px;}
.y16e{bottom:790.983171px;}
.y104{bottom:792.885526px;}
.y31{bottom:792.885665px;}
.y8{bottom:793.709210px;}
.y199{bottom:794.507926px;}
.y1f9{bottom:794.807270px;}
.y82{bottom:801.670004px;}
.yaf{bottom:801.670144px;}
.y19e{bottom:804.540973px;}
.y7{bottom:807.434958px;}
.yae{bottom:807.760785px;}
.y103{bottom:808.532878px;}
.y30{bottom:808.533018px;}
.y1f8{bottom:810.729137px;}
.y203{bottom:814.023317px;}
.y16d{bottom:820.265603px;}
.y19d{bottom:820.266858px;}
.y6{bottom:821.160706px;}
.yad{bottom:823.407998px;}
.y81{bottom:824.454745px;}
.y2f{bottom:824.454885px;}
.y16c{bottom:835.720181px;}
.y19c{bottom:835.721436px;}
.yac{bottom:839.329865px;}
.y80{bottom:840.102098px;}
.y2e{bottom:840.102237px;}
.y5{bottom:842.298357px;}
.y16b{bottom:851.445926px;}
.y19b{bottom:851.447181px;}
.yd9{bottom:856.023965px;}
.y2d{bottom:856.024104px;}
.y1c3{bottom:856.326378px;}
.y1d4{bottom:858.769114px;}
.yd4{bottom:888.129450px;}
.y168{bottom:899.436524px;}
.y3{bottom:904.613251px;}
.h12{height:11.253997px;}
.h8{height:33.633443px;}
.h9{height:34.309007px;}
.h6{height:37.370493px;}
.hd{height:37.575843px;}
.ha{height:38.121119px;}
.h15{height:43.346877px;}
.hf{height:43.887542px;}
.h3{height:44.061729px;}
.h13{height:46.797682px;}
.h4{height:47.381281px;}
.h16{height:47.580793px;}
.h19{height:47.581462px;}
.h1a{height:47.581908px;}
.h17{height:47.583024px;}
.h10{height:48.157418px;}
.h14{height:48.163306px;}
.h7{height:48.174157px;}
.hc{height:48.174715px;}
.h11{height:48.185316px;}
.he{height:48.193686px;}
.h5{height:48.763935px;}
.h18{height:923.615850px;}
.hb{height:935.134950px;}
.h2{height:967.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:30.198045px;}
.w5{width:645.160350px;}
.w3{width:653.208900px;}
.w2{width:670.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:11.850766px;}
.x8{left:41.327891px;}
.x1a{left:70.767807px;}
.x1c{left:73.765153px;}
.x18{left:76.561216px;}
.x1f{left:82.428146px;}
.xa{left:83.452410px;}
.x3{left:92.986500px;}
.x1b{left:95.981196px;}
.x1e{left:98.466193px;}
.x19{left:99.694405px;}
.x7{left:109.228495px;}
.x1{left:111.000000px;}
.x1d{left:112.031128px;}
.x9{left:120.534090px;}
.x4{left:125.406716px;}
.xc{left:137.959669px;}
.xd{left:146.839837px;}
.x16{left:175.710450px;}
.xe{left:181.380319px;}
.xf{left:184.634465px;}
.x10{left:226.783529px;}
.x6{left:272.459717px;}
.x15{left:287.329416px;}
.x11{left:293.967995px;}
.x5{left:336.124449px;}
.x12{left:355.661744px;}
.x13{left:428.255326px;}
.x22{left:538.289089px;}
.x20{left:576.282488px;}
.xb{left:579.278160px;}
.x21{left:587.291681px;}
.x14{left:589.629662px;}
.x2{left:612.025785px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.390421pt;}
.ls5{letter-spacing:-0.341619pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.003769pt;}
.ls2f{letter-spacing:0.006150pt;}
.ls2d{letter-spacing:0.006682pt;}
.ls26{letter-spacing:0.007178pt;}
.lsd{letter-spacing:0.007241pt;}
.ls17{letter-spacing:0.007638pt;}
.ls28{letter-spacing:0.007674pt;}
.lsb{letter-spacing:0.007737pt;}
.ls9{letter-spacing:0.008035pt;}
.ls2e{letter-spacing:0.008066pt;}
.ls10{letter-spacing:0.008134pt;}
.ls1b{letter-spacing:0.008531pt;}
.ls1c{letter-spacing:0.008927pt;}
.ls16{letter-spacing:0.011010pt;}
.ls1e{letter-spacing:0.015573pt;}
.ls1d{letter-spacing:0.027377pt;}
.ls14{letter-spacing:0.027972pt;}
.ls1a{letter-spacing:0.041363pt;}
.ls30{letter-spacing:0.052969pt;}
.lsf{letter-spacing:0.056639pt;}
.ls18{letter-spacing:0.070030pt;}
.ls2c{letter-spacing:0.187987pt;}
.ls13{letter-spacing:0.190330pt;}
.ls11{letter-spacing:0.304529pt;}
.lsc{letter-spacing:0.338012pt;}
.ls2b{letter-spacing:0.338377pt;}
.lse{letter-spacing:0.342595pt;}
.ls4{letter-spacing:0.351379pt;}
.ls2a{letter-spacing:0.375974pt;}
.ls12{letter-spacing:0.380661pt;}
.ls29{letter-spacing:0.390432pt;}
.ls2{letter-spacing:0.395302pt;}
.ls27{letter-spacing:0.413571pt;}
.ls15{letter-spacing:0.417628pt;}
.lsa{letter-spacing:0.418727pt;}
.ls3{letter-spacing:0.439224pt;}
.ls1{letter-spacing:0.527069pt;}
.ls6{letter-spacing:2.098514pt;}
.ls22{letter-spacing:12.445174pt;}
.ls23{letter-spacing:12.445670pt;}
.ls20{letter-spacing:29.998260pt;}
.ls1f{letter-spacing:29.998756pt;}
.ls21{letter-spacing:35.743483pt;}
.ls24{letter-spacing:35.744043pt;}
.ls25{letter-spacing:623.583404pt;}
.ls8{letter-spacing:631.360088pt;}
.ws0{word-spacing:-12.200665pt;}
.wsb{word-spacing:-12.050388pt;}
.ws1{word-spacing:-11.859046pt;}
.ws2{word-spacing:-11.810243pt;}
.ws9{word-spacing:-11.375900pt;}
.wsa{word-spacing:-11.235756pt;}
.ws4{word-spacing:-9.935245pt;}
.ws6{word-spacing:-9.897179pt;}
.ws5{word-spacing:-9.859113pt;}
.ws7{word-spacing:-9.821047pt;}
.wse{word-spacing:-9.812919pt;}
.wsc{word-spacing:-9.775321pt;}
.wsd{word-spacing:-9.737724pt;}
.ws8{word-spacing:-9.706849pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-35.915098pt;}
._1f{margin-left:-34.887798pt;}
._c{margin-left:-4.489944pt;}
._b{margin-left:-3.577136pt;}
._a{margin-left:-2.586541pt;}
._9{margin-left:-1.010215pt;}
._8{width:1.122461pt;}
._4{width:2.196120pt;}
._7{width:3.611397pt;}
._3{width:4.782661pt;}
._10{width:5.758714pt;}
._18{width:6.729537pt;}
._14{width:7.789026pt;}
._11{width:8.882084pt;}
._e{width:10.346164pt;}
._f{width:11.273414pt;}
._15{width:12.276388pt;}
._16{width:13.167417pt;}
._19{width:14.357282pt;}
._17{width:15.470443pt;}
._6{width:16.641706pt;}
._1c{width:17.968476pt;}
._20{width:19.130642pt;}
._5{width:20.106695pt;}
._1b{width:21.424367pt;}
._26{width:22.400420pt;}
._27{width:23.376473pt;}
._12{width:24.742551pt;}
._13{width:25.806552pt;}
._25{width:28.207936pt;}
._1d{width:29.867425pt;}
._1a{width:36.357980pt;}
._28{width:37.529244pt;}
._22{width:381.418564pt;}
._0{width:386.565657pt;}
._24{width:623.583404pt;}
._2{width:631.360088pt;}
._21{width:696.946468pt;}
._d{width:705.637436pt;}
._23{width:708.996785pt;}
._1{width:717.448175pt;}
.fs6{font-size:37.597389pt;}
.fs3{font-size:38.066073pt;}
.fs5{font-size:43.381298pt;}
.fs2{font-size:43.922392pt;}
.fs0{font-size:44.636578pt;}
.fs4{font-size:48.201552pt;}
.fs1{font-size:48.802658pt;}
.yd5{bottom:-0.243734pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:25.659585pt;}
.y4{bottom:42.047160pt;}
.y169{bottom:46.833069pt;}
.y165{bottom:92.801801pt;}
.y12c{bottom:92.801925pt;}
.y1ec{bottom:96.462124pt;}
.yff{bottom:98.414230pt;}
.y198{bottom:100.577728pt;}
.y5d{bottom:101.342390pt;}
.yd3{bottom:104.270549pt;}
.y1d3{bottom:105.002589pt;}
.ya8{bottom:106.222656pt;}
.y164{bottom:106.954572pt;}
.y12b{bottom:106.954696pt;}
.y1eb{bottom:110.614895pt;}
.y20a{bottom:111.838619pt;}
.yfe{bottom:112.322988pt;}
.y1c2{bottom:112.627422pt;}
.y197{bottom:114.556032pt;}
.y5c{bottom:115.495161pt;}
.y7f{bottom:116.715227pt;}
.yd2{bottom:118.179307pt;}
.y1d2{bottom:119.155360pt;}
.y163{bottom:120.863329pt;}
.y12a{bottom:120.863453pt;}
.y12f{bottom:124.044181pt;}
.y1ea{bottom:124.523652pt;}
.ya7{bottom:126.475759pt;}
.y196{bottom:128.293459pt;}
.y5b{bottom:129.403918pt;}
.y7e{bottom:130.623985pt;}
.y1{bottom:132.000000pt;}
.yd1{bottom:132.332078pt;}
.y1d1{bottom:133.064118pt;}
.y162{bottom:135.016100pt;}
.y129{bottom:135.016224pt;}
.y1c1{bottom:138.656213pt;}
.y1e9{bottom:138.676423pt;}
.yfd{bottom:140.384516pt;}
.y195{bottom:142.271900pt;}
.y5a{bottom:143.556689pt;}
.y7d{bottom:144.776756pt;}
.yd0{bottom:146.240835pt;}
.ya6{bottom:146.484849pt;}
.y3d{bottom:146.839200pt;}
.y14b{bottom:147.216889pt;}
.y161{bottom:148.924858pt;}
.y128{bottom:148.924982pt;}
.y7c{bottom:149.946645pt;}
.y185{bottom:151.960000pt;}
.y1c0{bottom:152.393740pt;}
.y1e8{bottom:152.585181pt;}
.yfc{bottom:154.537287pt;}
.y194{bottom:156.009426pt;}
.y59{bottom:157.465447pt;}
.ycf{bottom:160.393606pt;}
.ya5{bottom:160.637620pt;}
.y14a{bottom:161.125646pt;}
.y160{bottom:163.077628pt;}
.y127{bottom:163.077752pt;}
.y7b{bottom:164.099416pt;}
.y1bf{bottom:166.372180pt;}
.y1e7{bottom:166.737952pt;}
.y2c{bottom:168.446045pt;}
.y193{bottom:169.987867pt;}
.y58{bottom:171.618218pt;}
.yce{bottom:174.302364pt;}
.y149{bottom:175.278417pt;}
.y15f{bottom:176.986386pt;}
.y126{bottom:176.986510pt;}
.y190{bottom:177.743462pt;}
.y7a{bottom:178.008174pt;}
.y1be{bottom:180.109583pt;}
.ya4{bottom:180.646709pt;}
.y2b{bottom:182.345007pt;}
.yfb{bottom:182.598816pt;}
.y192{bottom:183.725269pt;}
.y57{bottom:185.526975pt;}
.yd8{bottom:185.775824pt;}
.ycd{bottom:188.455135pt;}
.y148{bottom:189.187175pt;}
.y15e{bottom:191.139157pt;}
.y125{bottom:191.139281pt;}
.y18f{bottom:191.480864pt;}
.y1d6{bottom:192.359223pt;}
.y1bd{bottom:194.088023pt;}
.ya3{bottom:194.799480pt;}
.y2a{bottom:195.038658pt;}
.y191{bottom:197.703710pt;}
.y56{bottom:199.679746pt;}
.ycc{bottom:202.363892pt;}
.y147{bottom:203.339945pt;}
.y15d{bottom:205.047914pt;}
.y124{bottom:205.048038pt;}
.y18e{bottom:205.459305pt;}
.yab{bottom:206.990226pt;}
.y1bc{bottom:207.825549pt;}
.y29{bottom:207.973718pt;}
.ya2{bottom:208.708238pt;}
.y14c{bottom:209.684291pt;}
.y79{bottom:213.100477pt;}
.y55{bottom:213.588504pt;}
.y1d0{bottom:215.540610pt;}
.y146{bottom:217.248703pt;}
.y18d{bottom:219.196831pt;}
.y123{bottom:219.200809pt;}
.y28{bottom:220.908902pt;}
.y1bb{bottom:221.803990pt;}
.yfa{bottom:222.861009pt;}
.y78{bottom:227.009235pt;}
.y54{bottom:227.741274pt;}
.ycb{bottom:228.717328pt;}
.ya1{bottom:228.961341pt;}
.y1cf{bottom:229.449368pt;}
.y15c{bottom:231.401350pt;}
.y145{bottom:231.401474pt;}
.y122{bottom:233.109567pt;}
.y18c{bottom:233.175271pt;}
.y27{bottom:233.841607pt;}
.y1ba{bottom:235.541392pt;}
.yf9{bottom:236.769766pt;}
.y77{bottom:241.162005pt;}
.y53{bottom:241.650032pt;}
.yca{bottom:242.626085pt;}
.ya0{bottom:242.870099pt;}
.y1ce{bottom:243.602138pt;}
.y15b{bottom:245.310107pt;}
.y144{bottom:245.310231pt;}
.y18b{bottom:246.912674pt;}
.y121{bottom:247.262338pt;}
.y26{bottom:247.994378pt;}
.y1b9{bottom:249.519833pt;}
.yf8{bottom:250.922537pt;}
.y1e0{bottom:251.653337pt;}
.y102{bottom:251.657057pt;}
.y1ef{bottom:254.090990pt;}
.y76{bottom:255.070763pt;}
.y52{bottom:255.802803pt;}
.yc9{bottom:256.534843pt;}
.y9f{bottom:257.022869pt;}
.y1cd{bottom:257.510896pt;}
.y15a{bottom:259.462878pt;}
.y143{bottom:259.463002pt;}
.y18a{bottom:260.891114pt;}
.y1f4{bottom:261.171095pt;}
.y25{bottom:261.903135pt;}
.y1b8{bottom:263.257235pt;}
.yf7{bottom:264.831295pt;}
.y1f7{bottom:264.836130pt;}
.y75{bottom:269.223534pt;}
.y51{bottom:269.711561pt;}
.yc8{bottom:270.687614pt;}
.y1cc{bottom:271.663667pt;}
.y159{bottom:273.371636pt;}
.y120{bottom:273.371760pt;}
.y189{bottom:274.628641pt;}
.y202{bottom:275.323866pt;}
.y24{bottom:276.055906pt;}
.y9e{bottom:277.031959pt;}
.y1b7{bottom:277.235676pt;}
.yf6{bottom:278.984066pt;}
.y50{bottom:283.864331pt;}
.yc7{bottom:284.596371pt;}
.y1cb{bottom:285.572424pt;}
.y158{bottom:287.524407pt;}
.y11f{bottom:287.524531pt;}
.y188{bottom:288.607081pt;}
.y74{bottom:289.232624pt;}
.y23{bottom:289.964664pt;}
.y1b6{bottom:290.973202pt;}
.y9d{bottom:291.180390pt;}
.y1e6{bottom:291.184730pt;}
.y205{bottom:292.412112pt;}
.yf5{bottom:292.892823pt;}
.y4f{bottom:297.773089pt;}
.yc6{bottom:298.749142pt;}
.y1ca{bottom:299.725195pt;}
.y157{bottom:301.433164pt;}
.y11e{bottom:301.433288pt;}
.y187{bottom:302.344484pt;}
.y73{bottom:303.385395pt;}
.y22{bottom:304.117435pt;}
.y1b5{bottom:304.951643pt;}
.y9c{bottom:305.093488pt;}
.yf4{bottom:307.045594pt;}
.y4e{bottom:311.925860pt;}
.yc5{bottom:312.657900pt;}
.y1c9{bottom:313.633953pt;}
.y156{bottom:315.585935pt;}
.y11d{bottom:315.586059pt;}
.y186{bottom:316.322924pt;}
.y72{bottom:317.294152pt;}
.y21{bottom:318.026192pt;}
.y1b4{bottom:318.689045pt;}
.y12e{bottom:318.763068pt;}
.y9b{bottom:319.246259pt;}
.yf3{bottom:320.954352pt;}
.y1c6{bottom:323.266526pt;}
.yd7{bottom:324.131360pt;}
.y4d{bottom:325.834617pt;}
.yc4{bottom:326.810671pt;}
.y1c8{bottom:327.786724pt;}
.y155{bottom:329.494693pt;}
.y11c{bottom:329.494817pt;}
.y20{bottom:332.178963pt;}
.y1e5{bottom:333.155016pt;}
.y71{bottom:337.547255pt;}
.y9a{bottom:339.255348pt;}
.y16a{bottom:339.416040pt;}
.y4c{bottom:339.987388pt;}
.yc3{bottom:340.719428pt;}
.y142{bottom:341.695481pt;}
.y154{bottom:343.647464pt;}
.y11b{bottom:343.647588pt;}
.y1b3{bottom:344.717874pt;}
.y1f{bottom:346.087721pt;}
.yf2{bottom:347.307787pt;}
.y70{bottom:351.456013pt;}
.y99{bottom:353.408119pt;}
.y4b{bottom:353.896146pt;}
.yc2{bottom:354.872199pt;}
.y141{bottom:355.848252pt;}
.y153{bottom:357.556221pt;}
.y11a{bottom:357.556345pt;}
.y1b2{bottom:358.455400pt;}
.y1e{bottom:360.240491pt;}
.yf1{bottom:361.216545pt;}
.y184{bottom:362.070591pt;}
.y6f{bottom:365.608784pt;}
.y98{bottom:367.316877pt;}
.y4a{bottom:368.048917pt;}
.yc1{bottom:368.780957pt;}
.y140{bottom:369.757010pt;}
.y152{bottom:371.708992pt;}
.y119{bottom:371.709116pt;}
.y1b1{bottom:372.433841pt;}
.yaa{bottom:373.412250pt;}
.y1d{bottom:374.139454pt;}
.yf0{bottom:375.369315pt;}
.y183{bottom:376.049031pt;}
.y101{bottom:376.100115pt;}
.y49{bottom:381.957674pt;}
.y13f{bottom:383.909781pt;}
.y151{bottom:385.617750pt;}
.y6e{bottom:385.617874pt;}
.y1b0{bottom:386.171243pt;}
.y1c{bottom:386.833105pt;}
.y97{bottom:387.569980pt;}
.yef{bottom:389.278073pt;}
.y182{bottom:389.786558pt;}
.y1ee{bottom:392.446526pt;}
.yc0{bottom:395.134392pt;}
.y48{bottom:396.110445pt;}
.y118{bottom:397.818538pt;}
.y6b{bottom:398.840202pt;}
.y1b{bottom:399.768165pt;}
.y150{bottom:399.770521pt;}
.y6d{bottom:399.770645pt;}
.y1af{bottom:400.149684pt;}
.y96{bottom:401.478738pt;}
.yee{bottom:403.430844pt;}
.y181{bottom:403.764998pt;}
.ybf{bottom:409.043150pt;}
.y47{bottom:410.019203pt;}
.y117{bottom:411.971309pt;}
.y1a{bottom:412.703349pt;}
.y6a{bottom:412.992973pt;}
.y14f{bottom:413.679278pt;}
.y6c{bottom:413.679402pt;}
.y1ae{bottom:413.887086pt;}
.y95{bottom:415.631508pt;}
.y1f6{bottom:416.368384pt;}
.yed{bottom:417.339602pt;}
.y180{bottom:417.501905pt;}
.y166{bottom:418.315655pt;}
.ybe{bottom:423.195920pt;}
.y46{bottom:424.171974pt;}
.y19{bottom:425.636053pt;}
.y116{bottom:425.880067pt;}
.y1dd{bottom:427.832049pt;}
.y201{bottom:427.832173pt;}
.y1ad{bottom:427.865526pt;}
.y1e4{bottom:429.540266pt;}
.y17f{bottom:431.480345pt;}
.yec{bottom:431.492372pt;}
.yd6{bottom:434.420532pt;}
.y94{bottom:435.640598pt;}
.ybd{bottom:437.104678pt;}
.y45{bottom:438.080731pt;}
.y18{bottom:439.788824pt;}
.y13e{bottom:440.032714pt;}
.y115{bottom:440.032838pt;}
.y1ac{bottom:441.603053pt;}
.y1dc{bottom:441.740807pt;}
.y200{bottom:441.740931pt;}
.y1e3{bottom:443.693037pt;}
.y17e{bottom:445.217748pt;}
.y69{bottom:447.841263pt;}
.y93{bottom:449.793369pt;}
.ybc{bottom:451.257449pt;}
.y44{bottom:452.233502pt;}
.y17{bottom:453.697582pt;}
.y13d{bottom:453.941471pt;}
.y114{bottom:453.941595pt;}
.y1ab{bottom:455.581493pt;}
.y1db{bottom:455.893577pt;}
.y1ff{bottom:455.893701pt;}
.yeb{bottom:457.601795pt;}
.y17d{bottom:459.196188pt;}
.y68{bottom:461.994034pt;}
.y92{bottom:463.702127pt;}
.ybb{bottom:465.166207pt;}
.y43{bottom:466.142260pt;}
.y16{bottom:467.850353pt;}
.y13c{bottom:468.094242pt;}
.y113{bottom:468.094366pt;}
.y1aa{bottom:469.318896pt;}
.y1da{bottom:469.802335pt;}
.y1fe{bottom:469.802459pt;}
.yea{bottom:471.754565pt;}
.y17c{bottom:472.933715pt;}
.y1c5{bottom:473.897245pt;}
.y209{bottom:474.439951pt;}
.y67{bottom:475.902791pt;}
.y91{bottom:477.854898pt;}
.yba{bottom:479.318977pt;}
.y42{bottom:480.295031pt;}
.y207{bottom:481.316694pt;}
.y15{bottom:481.759110pt;}
.y13b{bottom:482.003000pt;}
.y112{bottom:482.003124pt;}
.y1d9{bottom:483.955106pt;}
.y1fd{bottom:483.955230pt;}
.ye9{bottom:485.663323pt;}
.y17b{bottom:486.912155pt;}
.y66{bottom:490.055562pt;}
.yb9{bottom:493.227735pt;}
.y40{bottom:493.517359pt;}
.y41{bottom:494.203788pt;}
.y65{bottom:495.225452pt;}
.y1a9{bottom:495.347724pt;}
.y14{bottom:495.911881pt;}
.y13a{bottom:496.155770pt;}
.y111{bottom:496.155894pt;}
.y1d8{bottom:497.863864pt;}
.y90{bottom:497.863988pt;}
.ye8{bottom:499.816094pt;}
.y17a{bottom:500.649558pt;}
.y19a{bottom:503.779574pt;}
.yb8{bottom:507.380506pt;}
.y3f{bottom:507.426117pt;}
.y1a8{bottom:509.085251pt;}
.y64{bottom:509.378099pt;}
.y206{bottom:509.378223pt;}
.y13{bottom:509.820639pt;}
.y139{bottom:510.064528pt;}
.y110{bottom:510.064652pt;}
.y1d7{bottom:512.016634pt;}
.y8f{bottom:512.016758pt;}
.y1d5{bottom:513.234221pt;}
.ye7{bottom:513.724851pt;}
.y1df{bottom:516.406518pt;}
.yb7{bottom:521.289263pt;}
.y3e{bottom:521.578887pt;}
.y1a7{bottom:523.063691pt;}
.y63{bottom:523.286857pt;}
.y12{bottom:523.973410pt;}
.y138{bottom:524.217299pt;}
.y10f{bottom:524.217423pt;}
.y8e{bottom:525.925516pt;}
.y179{bottom:526.678386pt;}
.ye6{bottom:527.877622pt;}
.yb6{bottom:535.442034pt;}
.y1c7{bottom:536.418087pt;}
.y1a6{bottom:536.801094pt;}
.y62{bottom:537.439627pt;}
.y11{bottom:537.882167pt;}
.y137{bottom:538.126057pt;}
.y10e{bottom:538.126180pt;}
.ya9{bottom:539.834150pt;}
.y8d{bottom:540.078287pt;}
.ye5{bottom:541.786380pt;}
.y204{bottom:543.011282pt;}
.y3c{bottom:550.326845pt;}
.y1a5{bottom:550.779286pt;}
.y10{bottom:552.034938pt;}
.y136{bottom:552.278827pt;}
.y10d{bottom:552.278951pt;}
.ye4{bottom:555.939151pt;}
.y8c{bottom:560.087377pt;}
.yb5{bottom:561.551456pt;}
.y3b{bottom:564.479616pt;}
.y178{bottom:564.516689pt;}
.yf{bottom:565.943696pt;}
.y10c{bottom:566.187585pt;}
.y1f3{bottom:566.187709pt;}
.ye3{bottom:569.847908pt;}
.y167{bottom:570.825201pt;}
.y61{bottom:572.288041pt;}
.y8b{bottom:574.240148pt;}
.y3a{bottom:578.388373pt;}
.y177{bottom:578.495129pt;}
.ye{bottom:580.096467pt;}
.y10b{bottom:580.340356pt;}
.y1f2{bottom:580.340480pt;}
.ye2{bottom:584.000679pt;}
.y60{bottom:586.440812pt;}
.y8a{bottom:588.148781pt;}
.y176{bottom:592.232532pt;}
.y14e{bottom:592.541020pt;}
.y39{bottom:592.541144pt;}
.yd{bottom:594.005224pt;}
.y10a{bottom:594.249113pt;}
.y1f1{bottom:594.249237pt;}
.ydf{bottom:597.222884pt;}
.ye1{bottom:597.909437pt;}
.y100{bottom:598.885490pt;}
.yb4{bottom:600.347090pt;}
.y5f{bottom:600.349446pt;}
.y89{bottom:602.301676pt;}
.y175{bottom:606.210972pt;}
.y14d{bottom:606.449778pt;}
.y38{bottom:606.449902pt;}
.y135{bottom:608.401884pt;}
.y1f0{bottom:608.402008pt;}
.y1c4{bottom:610.548284pt;}
.yde{bottom:611.131641pt;}
.ye0{bottom:612.062208pt;}
.y1ed{bottom:614.990367pt;}
.yb3{bottom:615.482113pt;}
.y174{bottom:619.948375pt;}
.y5e{bottom:620.602549pt;}
.y37{bottom:620.602673pt;}
.yc{bottom:621.090699pt;}
.y134{bottom:622.310642pt;}
.y88{bottom:622.310766pt;}
.ydd{bottom:625.284412pt;}
.yb2{bottom:630.851231pt;}
.y1a4{bottom:631.998887pt;}
.y173{bottom:633.926815pt;}
.y109{bottom:634.511306pt;}
.y36{bottom:634.511430pt;}
.y133{bottom:636.463413pt;}
.y87{bottom:636.463537pt;}
.y1e2{bottom:638.171630pt;}
.ydc{bottom:639.193170pt;}
.y1f5{bottom:640.855776pt;}
.y1a3{bottom:645.977327pt;}
.yb1{bottom:645.980055pt;}
.y172{bottom:647.664342pt;}
.y108{bottom:648.664077pt;}
.y35{bottom:648.664201pt;}
.y132{bottom:650.372170pt;}
.y86{bottom:650.372294pt;}
.y1e1{bottom:652.324401pt;}
.y1a2{bottom:659.714730pt;}
.y171{bottom:661.642782pt;}
.y107{bottom:662.572835pt;}
.y34{bottom:662.572959pt;}
.y131{bottom:664.524941pt;}
.y1fc{bottom:664.525065pt;}
.yb{bottom:667.453225pt;}
.y85{bottom:670.625397pt;}
.y1a1{bottom:673.693170pt;}
.yb0{bottom:674.285597pt;}
.y170{bottom:675.380185pt;}
.y106{bottom:676.725606pt;}
.y33{bottom:676.725730pt;}
.y130{bottom:678.433699pt;}
.y1fb{bottom:678.433823pt;}
.ydb{bottom:680.385805pt;}
.ya{bottom:681.117969pt;}
.y12d{bottom:681.605996pt;}
.y208{bottom:682.094022pt;}
.y1de{bottom:683.070075pt;}
.y84{bottom:684.534155pt;}
.y1a0{bottom:687.430697pt;}
.y16f{bottom:689.358625pt;}
.y105{bottom:690.634363pt;}
.y32{bottom:690.634487pt;}
.y1fa{bottom:692.586594pt;}
.y9{bottom:693.318633pt;}
.yda{bottom:694.294563pt;}
.y83{bottom:698.686926pt;}
.y19f{bottom:701.409137pt;}
.y16e{bottom:703.096152pt;}
.y104{bottom:704.787134pt;}
.y31{bottom:704.787258pt;}
.y8{bottom:705.519298pt;}
.y199{bottom:706.229268pt;}
.y1f9{bottom:706.495351pt;}
.y82{bottom:712.595559pt;}
.yaf{bottom:712.595683pt;}
.y19e{bottom:715.147532pt;}
.y7{bottom:717.719963pt;}
.yae{bottom:718.009587pt;}
.y103{bottom:718.695892pt;}
.y30{bottom:718.696016pt;}
.y1f8{bottom:720.648122pt;}
.y203{bottom:723.576282pt;}
.y16d{bottom:729.124980pt;}
.y19d{bottom:729.126096pt;}
.y6{bottom:729.920627pt;}
.yad{bottom:731.918220pt;}
.y81{bottom:732.848663pt;}
.y2f{bottom:732.848787pt;}
.y16c{bottom:742.862383pt;}
.y19c{bottom:742.863499pt;}
.yac{bottom:746.070991pt;}
.y80{bottom:746.757420pt;}
.y2e{bottom:746.757544pt;}
.y5{bottom:748.709651pt;}
.y16b{bottom:756.840823pt;}
.y19b{bottom:756.841939pt;}
.yd9{bottom:760.910191pt;}
.y2d{bottom:760.910315pt;}
.y1c3{bottom:761.179002pt;}
.y1d4{bottom:763.350324pt;}
.yd4{bottom:789.448400pt;}
.y168{bottom:799.499132pt;}
.y3{bottom:804.100668pt;}
.h12{height:10.003553pt;}
.h8{height:29.896394pt;}
.h9{height:30.496895pt;}
.h6{height:33.218216pt;}
.hd{height:33.400749pt;}
.ha{height:33.885439pt;}
.h15{height:38.530557pt;}
.hf{height:39.011148pt;}
.h3{height:39.165981pt;}
.h13{height:41.597940pt;}
.h4{height:42.116694pt;}
.h16{height:42.294038pt;}
.h19{height:42.294633pt;}
.h1a{height:42.295030pt;}
.h17{height:42.296022pt;}
.h10{height:42.806594pt;}
.h14{height:42.811828pt;}
.h7{height:42.821473pt;}
.hc{height:42.821969pt;}
.h11{height:42.831392pt;}
.he{height:42.838832pt;}
.h5{height:43.345720pt;}
.h18{height:820.991867pt;}
.hb{height:831.231067pt;}
.h2{height:860.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:26.842707pt;}
.w5{width:573.475867pt;}
.w3{width:580.630133pt;}
.w2{width:596.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:10.534014pt;}
.x8{left:36.735903pt;}
.x1a{left:62.904717pt;}
.x1c{left:65.569025pt;}
.x18{left:68.054414pt;}
.x1f{left:73.269463pt;}
.xa{left:74.179920pt;}
.x3{left:82.654667pt;}
.x1b{left:85.316619pt;}
.x1e{left:87.525505pt;}
.x19{left:88.617249pt;}
.x7{left:97.091996pt;}
.x1{left:98.666667pt;}
.x1d{left:99.583225pt;}
.x9{left:107.141413pt;}
.x4{left:111.472636pt;}
.xc{left:122.630817pt;}
.xd{left:130.524300pt;}
.x16{left:156.187067pt;}
.xe{left:161.226950pt;}
.xf{left:164.119524pt;}
.x10{left:201.585359pt;}
.x6{left:242.186415pt;}
.x15{left:255.403926pt;}
.x11{left:261.304885pt;}
.x5{left:298.777288pt;}
.x12{left:316.143772pt;}
.x13{left:380.671401pt;}
.x22{left:478.479190pt;}
.x20{left:512.251100pt;}
.xb{left:514.913920pt;}
.x21{left:522.037050pt;}
.x14{left:524.115255pt;}
.x2{left:544.022920pt;}
}




    .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; }
  