
    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_72c5015975bdad59ac562bec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4aba89bf9342e032370aa136.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909668;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_908ce31b46cacd22ad5453ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911621;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_22aaf2e9acc6283f78682535.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936035;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_ca168b7c0b1b29fde77153ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_41cb8ebad8a5e45a7c8fa1f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_3677945f979710623859edcf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906250;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_ce7aecd9b3b0895611f1b2e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.991211;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_11b3df6a7b5b51f2e4a1dd4e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.884766;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_cae7dc56d19b8e3085c0958f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937500;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_629341a3b8f382e8cdaf434c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.585840;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_c3abe8a74aa2c397107a68b5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911621;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_2b13471f6a44e1df3e1f022f.woff2')format("woff");}.fff{font-family:fff;line-height:0.712402;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_b891aeb296cf1657efe1751d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.887971;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_145633cee49319b870c9face.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.908691;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_9b395ac274e16c395d938a77.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.909668;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_5c2ddd6754e11c2051fcf3db.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.897461;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_79db55a1ae1302ae335aab25.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.906250;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_7f6872678ffec2bd754d4a12.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.906738;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_d94bcde46c323252b0f6114c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.033203;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_d50c6a8ed81db0b994182493.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;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_7474706c5d4259b978ed94e9.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.033203;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_5695cc944636f945b33478ce.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.681641;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_6a788f20e39c91a28579ee9d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.863281;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_c5c8277c1a26b66a9ab4d706.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.686523;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_7a5f404087797f85167503c8.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.459961;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_dd3ab9ce96baa8277c36a6b6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.975849;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_567b469459b390e98b4b0aff.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.455566;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_8b6cfe500777dd9649e292bb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910645;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_c888354451bc2b63355def90.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.909668;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_4244a702fea7c6cfe9f65815.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.103063;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_5308006f7e1a8a9028c44cd8.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.706055;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_ddf0affe62048586bb1a96a4.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.909668;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_1edfd9c8504a6eb2885ddd83.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.670410;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_c9f94d0f80ea68cef75645dd.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.722000;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_2f43b12df485b63ec1f26f0c.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.984863;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_44312dadd12e894e644a26b5.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.691406;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_d5fb147bdfcb4c6d2353277c.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.984863;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_b2eaa27ac62f691526e0e78b.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.053000;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_1efa5e7c7b573f024144a58d.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.908691;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;}
.m9{transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246374,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,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);}
.mb{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.ma{transform:matrix(2.643333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.643333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.643333,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(6.103333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.103333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.103333,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-23.759568px;}
.v7{vertical-align:-21.240000px;}
.v4{vertical-align:-14.040000px;}
.v5{vertical-align:-1.799280px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440792px;}
.v6{vertical-align:20.882088px;}
.v2{vertical-align:30.240000px;}
.ls23{letter-spacing:-4.355208px;}
.ls16{letter-spacing:-4.324752px;}
.ls7{letter-spacing:-3.595500px;}
.ls61{letter-spacing:-3.425040px;}
.ls30{letter-spacing:-3.316104px;}
.ls25{letter-spacing:-3.297996px;}
.ls53{letter-spacing:-2.952072px;}
.ls35{letter-spacing:-2.946384px;}
.ls27{letter-spacing:-2.931552px;}
.ls8{letter-spacing:-2.884500px;}
.ls63{letter-spacing:-2.883168px;}
.ls2{letter-spacing:-2.582352px;}
.ls51{letter-spacing:-2.576664px;}
.ls24{letter-spacing:-2.565108px;}
.ls17{letter-spacing:-2.525328px;}
.ls10{letter-spacing:-2.519100px;}
.ls5a{letter-spacing:-2.518488px;}
.ls22{letter-spacing:-2.226420px;}
.ls3a{letter-spacing:-2.218320px;}
.ls6{letter-spacing:-2.212632px;}
.ls4f{letter-spacing:-2.206944px;}
.ls67{letter-spacing:-2.167488px;}
.ls18{letter-spacing:-2.162376px;}
.ls13{letter-spacing:-2.156544px;}
.lsa{letter-spacing:-1.848600px;}
.ls3{letter-spacing:-1.842912px;}
.ls36{letter-spacing:-1.837224px;}
.ls26{letter-spacing:-1.832220px;}
.ls3b{letter-spacing:-1.831536px;}
.ls62{letter-spacing:-1.814760px;}
.ls1e{letter-spacing:-1.809648px;}
.ls1a{letter-spacing:-1.804536px;}
.ls64{letter-spacing:-1.799424px;}
.ls34{letter-spacing:-1.478880px;}
.ls3e{letter-spacing:-1.473192px;}
.ls38{letter-spacing:-1.447200px;}
.ls1b{letter-spacing:-1.446696px;}
.ls1d{letter-spacing:-1.441584px;}
.ls14{letter-spacing:-1.435500px;}
.ls1f{letter-spacing:-1.313784px;}
.ls21{letter-spacing:-1.278000px;}
.ls20{letter-spacing:-1.262664px;}
.ls3d{letter-spacing:-1.114848px;}
.ls33{letter-spacing:-1.109160px;}
.ls9{letter-spacing:-1.103472px;}
.ls3c{letter-spacing:-1.090800px;}
.ls68{letter-spacing:-1.083744px;}
.ls65{letter-spacing:-1.078632px;}
.ls31{letter-spacing:-0.745128px;}
.lsc{letter-spacing:-0.739440px;}
.ls52{letter-spacing:-0.733752px;}
.ls19{letter-spacing:-0.731016px;}
.ls11{letter-spacing:-0.719316px;}
.ls37{letter-spacing:-0.712800px;}
.ls40{letter-spacing:-0.580176px;}
.ls3f{letter-spacing:-0.551736px;}
.ls5c{letter-spacing:-0.506232px;}
.ls5d{letter-spacing:-0.460728px;}
.lsd{letter-spacing:-0.375408px;}
.ls58{letter-spacing:-0.373464px;}
.ls5{letter-spacing:-0.369720px;}
.ls57{letter-spacing:-0.368676px;}
.ls1c{letter-spacing:-0.368064px;}
.ls59{letter-spacing:-0.363888px;}
.ls39{letter-spacing:-0.363600px;}
.lsf{letter-spacing:-0.358020px;}
.ls5e{letter-spacing:-0.086400px;}
.ls32{letter-spacing:-0.079200px;}
.ls1{letter-spacing:-0.072000px;}
.ls50{letter-spacing:-0.064800px;}
.ls60{letter-spacing:-0.050400px;}
.ls5f{letter-spacing:-0.028800px;}
.ls5b{letter-spacing:-0.021600px;}
.lsb{letter-spacing:-0.011376px;}
.ls55{letter-spacing:-0.009576px;}
.ls56{letter-spacing:-0.006120px;}
.ls4{letter-spacing:-0.005688px;}
.ls54{letter-spacing:-0.004788px;}
.lse{letter-spacing:-0.004212px;}
.ls0{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.004788px;}
.ls4a{letter-spacing:0.361656px;}
.ls4e{letter-spacing:0.373464px;}
.ls2d{letter-spacing:1.457784px;}
.ls2c{letter-spacing:1.821312px;}
.ls2a{letter-spacing:6.139584px;}
.ls29{letter-spacing:7.935192px;}
.ls28{letter-spacing:8.204400px;}
.ls2e{letter-spacing:8.564400px;}
.ls66{letter-spacing:9.365184px;}
.ls15{letter-spacing:9.499392px;}
.ls12{letter-spacing:20.857500px;}
.ls2f{letter-spacing:49.327848px;}
.ls2b{letter-spacing:49.331520px;}
.ls45{letter-spacing:58.323600px;}
.ls42{letter-spacing:65.883600px;}
.ls4c{letter-spacing:66.603600px;}
.ls48{letter-spacing:81.363600px;}
.ls46{letter-spacing:81.723600px;}
.ls43{letter-spacing:101.523600px;}
.ls44{letter-spacing:124.203600px;}
.ls4b{letter-spacing:282.596400px;}
.ls47{letter-spacing:321.123600px;}
.ls4d{letter-spacing:336.243600px;}
.ls49{letter-spacing:524.883600px;}
.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;}
}
.wsd{word-spacing:-23.028300px;}
.ws49{word-spacing:-17.935200px;}
.ws1{word-spacing:-14.025960px;}
.ws14{word-spacing:-12.214800px;}
.ws42{word-spacing:-11.874240px;}
.ws1b{word-spacing:-11.869452px;}
.ws21{word-spacing:-11.505564px;}
.ws33{word-spacing:-11.500776px;}
.ws4a{word-spacing:-11.491776px;}
.ws5{word-spacing:-11.128824px;}
.ws6{word-spacing:-11.123712px;}
.ws4{word-spacing:-10.770984px;}
.ws2{word-spacing:-10.441548px;}
.ws50{word-spacing:-10.080864px;}
.ws7{word-spacing:-8.824140px;}
.ws3{word-spacing:-8.608608px;}
.ws11{word-spacing:-1.465776px;}
.ws51{word-spacing:-1.078632px;}
.ws18{word-spacing:-0.750816px;}
.ws10{word-spacing:-0.727776px;}
.ws48{word-spacing:-0.381096px;}
.ws8{word-spacing:-0.375408px;}
.ws1a{word-spacing:-0.369720px;}
.wsc{word-spacing:-0.366444px;}
.ws12{word-spacing:-0.054000px;}
.ws3f{word-spacing:-0.047880px;}
.ws13{word-spacing:-0.036720px;}
.wsa{word-spacing:-0.011376px;}
.ws9{word-spacing:-0.005688px;}
.ws43{word-spacing:-0.004212px;}
.ws0{word-spacing:0.000000px;}
.ws4f{word-spacing:0.005112px;}
.ws4c{word-spacing:0.020448px;}
.ws47{word-spacing:0.085320px;}
.ws19{word-spacing:0.176328px;}
.ws4b{word-spacing:0.189144px;}
.ws15{word-spacing:0.327240px;}
.ws17{word-spacing:0.358344px;}
.wsb{word-spacing:0.364032px;}
.wsf{word-spacing:0.368064px;}
.ws45{word-spacing:0.369720px;}
.wse{word-spacing:0.373176px;}
.ws52{word-spacing:0.731016px;}
.ws16{word-spacing:1.054440px;}
.ws4e{word-spacing:1.088856px;}
.ws44{word-spacing:1.103472px;}
.ws4d{word-spacing:1.446696px;}
.ws46{word-spacing:2.565288px;}
.ws27{word-spacing:35.260200px;}
.ws1e{word-spacing:42.800580px;}
.ws2e{word-spacing:43.176600px;}
.ws2d{word-spacing:43.180200px;}
.ws30{word-spacing:50.736600px;}
.ws2b{word-spacing:50.740200px;}
.ws31{word-spacing:51.100200px;}
.ws29{word-spacing:51.460200px;}
.ws3c{word-spacing:57.220200px;}
.ws24{word-spacing:58.640580px;}
.ws22{word-spacing:61.520580px;}
.ws3a{word-spacing:61.578468px;}
.ws1f{word-spacing:61.880580px;}
.ws3e{word-spacing:63.340200px;}
.ws41{word-spacing:66.220200px;}
.ws2c{word-spacing:69.497820px;}
.ws39{word-spacing:73.457496px;}
.ws25{word-spacing:77.723640px;}
.ws26{word-spacing:88.922736px;}
.ws2f{word-spacing:93.940200px;}
.ws28{word-spacing:94.300200px;}
.ws20{word-spacing:101.534328px;}
.ws34{word-spacing:102.220200px;}
.ws1c{word-spacing:103.698504px;}
.ws32{word-spacing:109.420200px;}
.ws23{word-spacing:109.458468px;}
.ws2a{word-spacing:164.170944px;}
.ws1d{word-spacing:176.763384px;}
.ws3b{word-spacing:193.708116px;}
.ws38{word-spacing:292.642560px;}
.ws3d{word-spacing:305.980200px;}
.ws36{word-spacing:321.100200px;}
.ws40{word-spacing:389.532528px;}
.ws35{word-spacing:394.205616px;}
.ws37{word-spacing:524.860200px;}
._10{margin-left:-25.887600px;}
._12{margin-left:-24.515100px;}
._11{margin-left:-23.425200px;}
._13{margin-left:-22.352400px;}
._14{margin-left:-20.317500px;}
._16{margin-left:-12.774384px;}
._2e{margin-left:-10.796544px;}
._2f{margin-left:-9.586800px;}
._d{margin-left:-3.486528px;}
._c{margin-left:-2.155500px;}
._3{margin-left:-1.120536px;}
._0{width:1.097784px;}
._2{width:2.525472px;}
._17{width:3.694176px;}
._8{width:7.195320px;}
._4{width:9.021168px;}
._1{width:10.465920px;}
._b{width:11.741148px;}
._e{width:13.071024px;}
._7{width:15.528240px;}
._6{width:16.557768px;}
._15{width:17.674776px;}
._9{width:18.793152px;}
._5{width:20.636064px;}
._18{width:22.086504px;}
._a{width:23.089500px;}
._f{width:24.318000px;}
._1b{width:25.396920px;}
._1a{width:27.234144px;}
._2b{width:29.065680px;}
._2a{width:30.180528px;}
._19{width:32.381784px;}
._2d{width:34.130988px;}
._2c{width:36.789984px;}
._22{width:89.881560px;}
._23{width:97.220340px;}
._25{width:106.188264px;}
._29{width:123.864228px;}
._20{width:132.120072px;}
._28{width:135.720648px;}
._24{width:140.417676px;}
._1e{width:147.963564px;}
._26{width:164.491740px;}
._21{width:174.963096px;}
._1f{width:190.801800px;}
._27{width:450.261036px;}
._1c{width:473.408712px;}
._1d{width:531.707400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:4.680000px;}
.fs14{font-size:30.600000px;}
.fs12{font-size:36.000000px;}
.fs13{font-size:36.360000px;}
.fs11{font-size:36.720000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:42.120000px;}
.fsb{font-size:44.280000px;}
.fs6{font-size:45.000000px;}
.fsc{font-size:47.880000px;}
.fsd{font-size:51.120000px;}
.fse{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:79.920000px;}
.fs8{font-size:81.000000px;}
.fs10{font-size:97.200000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:2.519850px;}
.y46{bottom:2.699850px;}
.yf2{bottom:3.149850px;}
.y49{bottom:3.239850px;}
.y5c{bottom:66.167850px;}
.y5e{bottom:73.817448px;}
.y5a{bottom:74.178000px;}
.y59{bottom:76.697355px;}
.y58{bottom:87.137850px;}
.y4{bottom:97.125005px;}
.y2d{bottom:116.387850px;}
.y105{bottom:117.465906px;}
.yed{bottom:120.527850px;}
.y122{bottom:123.406662px;}
.y85{bottom:124.305906px;}
.y2c{bottom:131.597850px;}
.y3c{bottom:133.486338px;}
.ybd{bottom:136.635798px;}
.y104{bottom:137.536014px;}
.y20{bottom:139.264499px;}
.yec{bottom:139.787850px;}
.y121{bottom:143.476770px;}
.y84{bottom:144.376014px;}
.y2b{bottom:149.687850px;}
.y3b{bottom:153.556446px;}
.ybc{bottom:156.705906px;}
.y103{bottom:157.606122px;}
.yeb{bottom:160.307454px;}
.y120{bottom:163.546878px;}
.y83{bottom:164.446122px;}
.y3a{bottom:173.626554px;}
.ybb{bottom:176.776014px;}
.y102{bottom:177.676230px;}
.yea{bottom:180.737679px;}
.y11f{bottom:183.616986px;}
.y82{bottom:184.516230px;}
.y39{bottom:193.696662px;}
.y2a{bottom:195.406986px;}
.yba{bottom:196.846122px;}
.y17{bottom:196.933500px;}
.y101{bottom:197.746338px;}
.ye9{bottom:201.257850px;}
.y11e{bottom:203.687094px;}
.y81{bottom:204.586338px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y38{bottom:213.766770px;}
.y29{bottom:215.477094px;}
.yb9{bottom:216.916230px;}
.y100{bottom:217.816446px;}
.ye8{bottom:221.777454px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y11d{bottom:223.757202px;}
.y80{bottom:224.656446px;}
.y37{bottom:233.836878px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y28{bottom:235.547202px;}
.yb8{bottom:236.986338px;}
.yff{bottom:237.886554px;}
.ye7{bottom:242.207850px;}
.y11c{bottom:243.827310px;}
.y7f{bottom:244.726554px;}
.y36{bottom:253.906986px;}
.y27{bottom:255.617310px;}
.yb7{bottom:257.056446px;}
.yfe{bottom:257.956662px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.ye6{bottom:262.727850px;}
.y11b{bottom:263.897418px;}
.y7e{bottom:264.796662px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y35{bottom:273.977094px;}
.y26{bottom:275.687418px;}
.yb6{bottom:277.126554px;}
.yfd{bottom:278.026770px;}
.ye5{bottom:283.247454px;}
.y11a{bottom:283.967526px;}
.y7d{bottom:284.866770px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y34{bottom:294.047202px;}
.y25{bottom:295.757526px;}
.yb5{bottom:297.196662px;}
.yfc{bottom:298.096878px;}
.ye4{bottom:303.677850px;}
.y119{bottom:304.037634px;}
.y7c{bottom:304.936878px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y33{bottom:314.117310px;}
.y24{bottom:315.827634px;}
.yb4{bottom:317.266770px;}
.yfb{bottom:318.166986px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y118{bottom:324.107742px;}
.ye3{bottom:324.197679px;}
.y7b{bottom:325.006986px;}
.y32{bottom:334.187418px;}
.y23{bottom:335.897742px;}
.yb3{bottom:337.336878px;}
.yfa{bottom:338.237094px;}
.y116{bottom:344.177742px;}
.y117{bottom:344.177850px;}
.ye2{bottom:344.717328px;}
.y7a{bottom:345.077094px;}
.ye{bottom:348.133500px;}
.y31{bottom:354.257526px;}
.y22{bottom:355.967850px;}
.yb2{bottom:357.406986px;}
.yf9{bottom:358.307202px;}
.y114{bottom:364.247310px;}
.y115{bottom:364.247850px;}
.y79{bottom:365.147202px;}
.ye1{bottom:365.147724px;}
.y30{bottom:374.327634px;}
.yb1{bottom:377.477094px;}
.yf8{bottom:378.377310px;}
.yde{bottom:378.467940px;}
.y113{bottom:384.317418px;}
.y78{bottom:385.217310px;}
.ye0{bottom:385.667895px;}
.yd{bottom:386.785499px;}
.ydd{bottom:392.867850px;}
.y2f{bottom:394.397742px;}
.yb0{bottom:397.547202px;}
.yf7{bottom:398.447418px;}
.y112{bottom:404.387526px;}
.y77{bottom:405.287418px;}
.y12d{bottom:405.557742px;}
.ydf{bottom:406.188066px;}
.yc{bottom:408.044999px;}
.y21{bottom:411.317850px;}
.y2e{bottom:414.467850px;}
.yaf{bottom:417.617310px;}
.yf6{bottom:418.517526px;}
.y111{bottom:424.457634px;}
.y76{bottom:425.357526px;}
.y12c{bottom:425.627850px;}
.yee{bottom:432.107850px;}
.yae{bottom:437.687418px;}
.yf5{bottom:438.587634px;}
.y110{bottom:444.527742px;}
.y75{bottom:445.427634px;}
.yad{bottom:457.757526px;}
.yf4{bottom:458.657742px;}
.y10f{bottom:464.597850px;}
.y74{bottom:465.497742px;}
.yac{bottom:477.827634px;}
.yf3{bottom:478.727850px;}
.y12b{bottom:482.417850px;}
.yf1{bottom:483.408000px;}
.ycf{bottom:485.566122px;}
.y73{bottom:485.567850px;}
.yf0{bottom:486.557940px;}
.yab{bottom:497.897742px;}
.y57{bottom:500.687850px;}
.yef{bottom:500.957850px;}
.y143{bottom:501.585744px;}
.yb{bottom:502.864502px;}
.yce{bottom:505.636230px;}
.y142{bottom:516.255906px;}
.yaa{bottom:516.347850px;}
.ya9{bottom:517.967850px;}
.ya{bottom:520.864502px;}
.y10e{bottom:521.387850px;}
.ycd{bottom:525.706338px;}
.y127{bottom:527.867940px;}
.y141{bottom:530.926068px;}
.ya8{bottom:536.417850px;}
.ya6{bottom:538.037310px;}
.ya7{bottom:538.037850px;}
.y9{bottom:538.864499px;}
.y126{bottom:542.267850px;}
.y72{bottom:542.357850px;}
.ycc{bottom:545.776446px;}
.y56{bottom:546.768426px;}
.y140{bottom:550.096068px;}
.y8{bottom:556.864499px;}
.ya5{bottom:558.107418px;}
.y55{bottom:562.068642px;}
.y13f{bottom:564.766230px;}
.ycb{bottom:565.846554px;}
.y12a{bottom:565.847742px;}
.y54{bottom:577.278120px;}
.ya4{bottom:578.177526px;}
.y13e{bottom:579.436392px;}
.yca{bottom:585.916662px;}
.y129{bottom:585.917850px;}
.y53{bottom:592.578336px;}
.ya3{bottom:598.247634px;}
.y13d{bottom:598.606392px;}
.y10d{bottom:604.815168px;}
.yc9{bottom:605.986770px;}
.y52{bottom:607.878552px;}
.y13c{bottom:613.276554px;}
.ya2{bottom:618.317742px;}
.y51{bottom:623.088030px;}
.y10c{bottom:624.885276px;}
.y71{bottom:625.785906px;}
.yc8{bottom:626.056878px;}
.y13b{bottom:632.446554px;}
.ya1{bottom:636.767850px;}
.ya0{bottom:638.387850px;}
.y50{bottom:638.388246px;}
.y128{bottom:642.707850px;}
.y10b{bottom:644.955384px;}
.y7{bottom:645.510000px;}
.y70{bottom:645.856014px;}
.yc7{bottom:646.126986px;}
.y13a{bottom:647.116716px;}
.y4f{bottom:653.688462px;}
.y139{bottom:661.786878px;}
.y10a{bottom:665.025492px;}
.y6f{bottom:665.926122px;}
.yc6{bottom:666.197094px;}
.y6{bottom:666.771000px;}
.y4e{bottom:668.897940px;}
.y138{bottom:676.457040px;}
.y9f{bottom:677.987400px;}
.y4d{bottom:684.198156px;}
.y109{bottom:685.095600px;}
.y6e{bottom:685.996230px;}
.yc5{bottom:686.267202px;}
.y137{bottom:695.627040px;}
.y96{bottom:695.897850px;}
.y99{bottom:695.987850px;}
.y98{bottom:696.617850px;}
.y94{bottom:698.867850px;}
.y4c{bottom:699.498372px;}
.y108{bottom:705.165708px;}
.y97{bottom:705.437742px;}
.y9a{bottom:705.437850px;}
.y6d{bottom:706.066338px;}
.yc4{bottom:706.337310px;}
.y95{bottom:706.517850px;}
.y93{bottom:708.767850px;}
.y136{bottom:710.297202px;}
.y92{bottom:712.637850px;}
.y4b{bottom:714.707850px;}
.y9b{bottom:720.737850px;}
.y9d{bottom:721.367850px;}
.y9e{bottom:724.247850px;}
.y135{bottom:724.967364px;}
.y107{bottom:725.235816px;}
.y6c{bottom:726.136446px;}
.y5{bottom:726.298500px;}
.yc3{bottom:726.407418px;}
.y9c{bottom:730.187742px;}
.y48{bottom:739.008000px;}
.y4a{bottom:742.247850px;}
.y134{bottom:744.137364px;}
.y106{bottom:745.305924px;}
.ydc{bottom:746.204502px;}
.y6b{bottom:746.206554px;}
.yc2{bottom:746.477526px;}
.y3{bottom:752.599495px;}
.y133{bottom:758.807526px;}
.ydb{bottom:766.274610px;}
.y91{bottom:766.274916px;}
.y6a{bottom:766.276662px;}
.yc1{bottom:766.547634px;}
.y132{bottom:773.477688px;}
.y125{bottom:778.517940px;}
.yda{bottom:786.344718px;}
.y90{bottom:786.345024px;}
.y69{bottom:786.346770px;}
.yc0{bottom:786.617742px;}
.y131{bottom:788.147850px;}
.y45{bottom:789.678000px;}
.y47{bottom:792.377850px;}
.y124{bottom:792.917850px;}
.y123{bottom:794.447850px;}
.yd9{bottom:806.414826px;}
.y8f{bottom:806.415132px;}
.y68{bottom:806.416878px;}
.ybf{bottom:806.687850px;}
.y44{bottom:822.347850px;}
.yd8{bottom:826.484934px;}
.y8e{bottom:826.485240px;}
.y67{bottom:826.486986px;}
.y130{bottom:843.677850px;}
.yd7{bottom:846.555042px;}
.y8d{bottom:846.555348px;}
.y66{bottom:846.557094px;}
.y43{bottom:861.047850px;}
.ybe{bottom:863.477850px;}
.yd6{bottom:866.625150px;}
.y8c{bottom:866.625456px;}
.y65{bottom:866.627202px;}
.y2{bottom:879.369000px;}
.yd5{bottom:886.695258px;}
.y8b{bottom:886.695564px;}
.y64{bottom:886.697310px;}
.yd4{bottom:906.765366px;}
.y8a{bottom:906.765672px;}
.y63{bottom:906.767418px;}
.y42{bottom:926.567652px;}
.yd3{bottom:926.835474px;}
.y89{bottom:926.835780px;}
.y62{bottom:926.837526px;}
.y12f{bottom:927.107850px;}
.y41{bottom:939.167850px;}
.yd2{bottom:946.905582px;}
.y88{bottom:946.905888px;}
.y61{bottom:946.907634px;}
.y40{bottom:963.287850px;}
.y1{bottom:966.726000px;}
.yd1{bottom:966.975690px;}
.y87{bottom:966.975996px;}
.y60{bottom:966.977742px;}
.y12e{bottom:983.897850px;}
.yd0{bottom:987.045798px;}
.y86{bottom:987.046104px;}
.y5f{bottom:987.047850px;}
.y3f{bottom:1000.637304px;}
.y3e{bottom:1013.237502px;}
.y3d{bottom:1025.837700px;}
.y5d{bottom:1032.767700px;}
.h15{height:11.880000px;}
.h10{height:12.780000px;}
.h27{height:14.580000px;}
.h11{height:14.670000px;}
.h1e{height:24.468750px;}
.h1f{height:25.190508px;}
.h20{height:25.192793px;}
.h1a{height:25.209141px;}
.h1d{height:25.567734px;}
.h28{height:26.790480px;}
.h1c{height:27.367014px;}
.h1b{height:28.353516px;}
.hc{height:29.163164px;}
.hb{height:31.311035px;}
.h7{height:32.130000px;}
.h12{height:33.244805px;}
.h14{height:33.478594px;}
.h17{height:33.486328px;}
.hd{height:33.852305px;}
.h26{height:35.278770px;}
.h13{height:35.644219px;}
.h16{height:37.441406px;}
.ha{height:39.604922px;}
.h25{height:41.755235px;}
.h24{height:42.128264px;}
.h21{height:42.128768px;}
.h23{height:42.486680px;}
.h22{height:42.487364px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:50.027344px;}
.h2{height:55.080000px;}
.he{height:59.761230px;}
.hf{height:60.487910px;}
.h18{height:64.076484px;}
.h19{height:66.635156px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1119.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:12.420000px;}
.w6{width:41.760000px;}
.w4{width:45.540000px;}
.w7{width:49.320000px;}
.w2{width:637.794021px;}
.w3{width:799.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:39.870000px;}
.x47{left:43.470000px;}
.x5{left:89.280000px;}
.x46{left:90.540000px;}
.x44{left:94.770216px;}
.xe{left:96.120000px;}
.x7{left:99.449941px;}
.x1{left:102.045000px;}
.x6{left:104.310000px;}
.x2{left:106.297500px;}
.x40{left:107.459775px;}
.x42{left:112.499406px;}
.x3c{left:114.569550px;}
.x43{left:125.100000px;}
.x3b{left:126.360000px;}
.x41{left:130.050000px;}
.xf{left:132.300000px;}
.x45{left:153.000000px;}
.xa{left:183.240000px;}
.x4{left:203.484001px;}
.x3f{left:243.359568px;}
.xb{left:252.180000px;}
.x3e{left:269.279406px;}
.xd{left:305.099865px;}
.x3d{left:362.699271px;}
.xc{left:401.760000px;}
.x8{left:416.610000px;}
.x38{left:425.610000px;}
.x9{left:431.640168px;}
.x39{left:441.090000px;}
.x3a{left:449.910000px;}
.x3{left:454.959000px;}
.x2e{left:457.200000px;}
.x2f{left:466.470000px;}
.x30{left:483.390000px;}
.x31{left:489.960000px;}
.x32{left:516.690000px;}
.x14{left:526.950000px;}
.x15{left:529.020000px;}
.x10{left:536.220000px;}
.x16{left:537.750000px;}
.x48{left:540.900000px;}
.x33{left:542.880000px;}
.x34{left:549.450000px;}
.x49{left:552.870000px;}
.x17{left:557.640000px;}
.x23{left:559.890000px;}
.x24{left:579.600918px;}
.x1b{left:586.170000px;}
.x18{left:589.590000px;}
.x19{left:592.920000px;}
.x1a{left:603.720000px;}
.x1c{left:609.390000px;}
.x25{left:611.460000px;}
.x26{left:614.880000px;}
.x1d{left:618.120000px;}
.x27{left:625.590000px;}
.x28{left:629.010000px;}
.x4a{left:632.880000px;}
.x1e{left:638.010000px;}
.x29{left:641.340000px;}
.x2a{left:644.760000px;}
.x12{left:646.290000px;}
.x2b{left:655.470000px;}
.x35{left:656.820000px;}
.x22{left:666.540000px;}
.x1f{left:669.960000px;}
.x20{left:673.290000px;}
.x36{left:683.010000px;}
.x21{left:684.090000px;}
.x37{left:689.940000px;}
.x2c{left:693.090000px;}
.x2d{left:695.070450px;}
.x13{left:699.480189px;}
@media print{
.v3{vertical-align:-21.119616pt;}
.v7{vertical-align:-18.880000pt;}
.v4{vertical-align:-12.480000pt;}
.v5{vertical-align:-1.599360pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280704pt;}
.v6{vertical-align:18.561856pt;}
.v2{vertical-align:26.880000pt;}
.ls23{letter-spacing:-3.871296pt;}
.ls16{letter-spacing:-3.844224pt;}
.ls7{letter-spacing:-3.196000pt;}
.ls61{letter-spacing:-3.044480pt;}
.ls30{letter-spacing:-2.947648pt;}
.ls25{letter-spacing:-2.931552pt;}
.ls53{letter-spacing:-2.624064pt;}
.ls35{letter-spacing:-2.619008pt;}
.ls27{letter-spacing:-2.605824pt;}
.ls8{letter-spacing:-2.564000pt;}
.ls63{letter-spacing:-2.562816pt;}
.ls2{letter-spacing:-2.295424pt;}
.ls51{letter-spacing:-2.290368pt;}
.ls24{letter-spacing:-2.280096pt;}
.ls17{letter-spacing:-2.244736pt;}
.ls10{letter-spacing:-2.239200pt;}
.ls5a{letter-spacing:-2.238656pt;}
.ls22{letter-spacing:-1.979040pt;}
.ls3a{letter-spacing:-1.971840pt;}
.ls6{letter-spacing:-1.966784pt;}
.ls4f{letter-spacing:-1.961728pt;}
.ls67{letter-spacing:-1.926656pt;}
.ls18{letter-spacing:-1.922112pt;}
.ls13{letter-spacing:-1.916928pt;}
.lsa{letter-spacing:-1.643200pt;}
.ls3{letter-spacing:-1.638144pt;}
.ls36{letter-spacing:-1.633088pt;}
.ls26{letter-spacing:-1.628640pt;}
.ls3b{letter-spacing:-1.628032pt;}
.ls62{letter-spacing:-1.613120pt;}
.ls1e{letter-spacing:-1.608576pt;}
.ls1a{letter-spacing:-1.604032pt;}
.ls64{letter-spacing:-1.599488pt;}
.ls34{letter-spacing:-1.314560pt;}
.ls3e{letter-spacing:-1.309504pt;}
.ls38{letter-spacing:-1.286400pt;}
.ls1b{letter-spacing:-1.285952pt;}
.ls1d{letter-spacing:-1.281408pt;}
.ls14{letter-spacing:-1.276000pt;}
.ls1f{letter-spacing:-1.167808pt;}
.ls21{letter-spacing:-1.136000pt;}
.ls20{letter-spacing:-1.122368pt;}
.ls3d{letter-spacing:-0.990976pt;}
.ls33{letter-spacing:-0.985920pt;}
.ls9{letter-spacing:-0.980864pt;}
.ls3c{letter-spacing:-0.969600pt;}
.ls68{letter-spacing:-0.963328pt;}
.ls65{letter-spacing:-0.958784pt;}
.ls31{letter-spacing:-0.662336pt;}
.lsc{letter-spacing:-0.657280pt;}
.ls52{letter-spacing:-0.652224pt;}
.ls19{letter-spacing:-0.649792pt;}
.ls11{letter-spacing:-0.639392pt;}
.ls37{letter-spacing:-0.633600pt;}
.ls40{letter-spacing:-0.515712pt;}
.ls3f{letter-spacing:-0.490432pt;}
.ls5c{letter-spacing:-0.449984pt;}
.ls5d{letter-spacing:-0.409536pt;}
.lsd{letter-spacing:-0.333696pt;}
.ls58{letter-spacing:-0.331968pt;}
.ls5{letter-spacing:-0.328640pt;}
.ls57{letter-spacing:-0.327712pt;}
.ls1c{letter-spacing:-0.327168pt;}
.ls59{letter-spacing:-0.323456pt;}
.ls39{letter-spacing:-0.323200pt;}
.lsf{letter-spacing:-0.318240pt;}
.ls5e{letter-spacing:-0.076800pt;}
.ls32{letter-spacing:-0.070400pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls50{letter-spacing:-0.057600pt;}
.ls60{letter-spacing:-0.044800pt;}
.ls5f{letter-spacing:-0.025600pt;}
.ls5b{letter-spacing:-0.019200pt;}
.lsb{letter-spacing:-0.010112pt;}
.ls55{letter-spacing:-0.008512pt;}
.ls56{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:-0.005056pt;}
.ls54{letter-spacing:-0.004256pt;}
.lse{letter-spacing:-0.003744pt;}
.ls0{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.004256pt;}
.ls4a{letter-spacing:0.321472pt;}
.ls4e{letter-spacing:0.331968pt;}
.ls2d{letter-spacing:1.295808pt;}
.ls2c{letter-spacing:1.618944pt;}
.ls2a{letter-spacing:5.457408pt;}
.ls29{letter-spacing:7.053504pt;}
.ls28{letter-spacing:7.292800pt;}
.ls2e{letter-spacing:7.612800pt;}
.ls66{letter-spacing:8.324608pt;}
.ls15{letter-spacing:8.443904pt;}
.ls12{letter-spacing:18.540000pt;}
.ls2f{letter-spacing:43.846976pt;}
.ls2b{letter-spacing:43.850240pt;}
.ls45{letter-spacing:51.843200pt;}
.ls42{letter-spacing:58.563200pt;}
.ls4c{letter-spacing:59.203200pt;}
.ls48{letter-spacing:72.323200pt;}
.ls46{letter-spacing:72.643200pt;}
.ls43{letter-spacing:90.243200pt;}
.ls44{letter-spacing:110.403200pt;}
.ls4b{letter-spacing:251.196800pt;}
.ls47{letter-spacing:285.443200pt;}
.ls4d{letter-spacing:298.883200pt;}
.ls49{letter-spacing:466.563200pt;}
.wsd{word-spacing:-20.469600pt;}
.ws49{word-spacing:-15.942400pt;}
.ws1{word-spacing:-12.467520pt;}
.ws14{word-spacing:-10.857600pt;}
.ws42{word-spacing:-10.554880pt;}
.ws1b{word-spacing:-10.550624pt;}
.ws21{word-spacing:-10.227168pt;}
.ws33{word-spacing:-10.222912pt;}
.ws4a{word-spacing:-10.214912pt;}
.ws5{word-spacing:-9.892288pt;}
.ws6{word-spacing:-9.887744pt;}
.ws4{word-spacing:-9.574208pt;}
.ws2{word-spacing:-9.281376pt;}
.ws50{word-spacing:-8.960768pt;}
.ws7{word-spacing:-7.843680pt;}
.ws3{word-spacing:-7.652096pt;}
.ws11{word-spacing:-1.302912pt;}
.ws51{word-spacing:-0.958784pt;}
.ws18{word-spacing:-0.667392pt;}
.ws10{word-spacing:-0.646912pt;}
.ws48{word-spacing:-0.338752pt;}
.ws8{word-spacing:-0.333696pt;}
.ws1a{word-spacing:-0.328640pt;}
.wsc{word-spacing:-0.325728pt;}
.ws12{word-spacing:-0.048000pt;}
.ws3f{word-spacing:-0.042560pt;}
.ws13{word-spacing:-0.032640pt;}
.wsa{word-spacing:-0.010112pt;}
.ws9{word-spacing:-0.005056pt;}
.ws43{word-spacing:-0.003744pt;}
.ws0{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.004544pt;}
.ws4c{word-spacing:0.018176pt;}
.ws47{word-spacing:0.075840pt;}
.ws19{word-spacing:0.156736pt;}
.ws4b{word-spacing:0.168128pt;}
.ws15{word-spacing:0.290880pt;}
.ws17{word-spacing:0.318528pt;}
.wsb{word-spacing:0.323584pt;}
.wsf{word-spacing:0.327168pt;}
.ws45{word-spacing:0.328640pt;}
.wse{word-spacing:0.331712pt;}
.ws52{word-spacing:0.649792pt;}
.ws16{word-spacing:0.937280pt;}
.ws4e{word-spacing:0.967872pt;}
.ws44{word-spacing:0.980864pt;}
.ws4d{word-spacing:1.285952pt;}
.ws46{word-spacing:2.280256pt;}
.ws27{word-spacing:31.342400pt;}
.ws1e{word-spacing:38.044960pt;}
.ws2e{word-spacing:38.379200pt;}
.ws2d{word-spacing:38.382400pt;}
.ws30{word-spacing:45.099200pt;}
.ws2b{word-spacing:45.102400pt;}
.ws31{word-spacing:45.422400pt;}
.ws29{word-spacing:45.742400pt;}
.ws3c{word-spacing:50.862400pt;}
.ws24{word-spacing:52.124960pt;}
.ws22{word-spacing:54.684960pt;}
.ws3a{word-spacing:54.736416pt;}
.ws1f{word-spacing:55.004960pt;}
.ws3e{word-spacing:56.302400pt;}
.ws41{word-spacing:58.862400pt;}
.ws2c{word-spacing:61.775840pt;}
.ws39{word-spacing:65.295552pt;}
.ws25{word-spacing:69.087680pt;}
.ws26{word-spacing:79.042432pt;}
.ws2f{word-spacing:83.502400pt;}
.ws28{word-spacing:83.822400pt;}
.ws20{word-spacing:90.252736pt;}
.ws34{word-spacing:90.862400pt;}
.ws1c{word-spacing:92.176448pt;}
.ws32{word-spacing:97.262400pt;}
.ws23{word-spacing:97.296416pt;}
.ws2a{word-spacing:145.929728pt;}
.ws1d{word-spacing:157.123008pt;}
.ws3b{word-spacing:172.184992pt;}
.ws38{word-spacing:260.126720pt;}
.ws3d{word-spacing:271.982400pt;}
.ws36{word-spacing:285.422400pt;}
.ws40{word-spacing:346.251136pt;}
.ws35{word-spacing:350.404992pt;}
.ws37{word-spacing:466.542400pt;}
._10{margin-left:-23.011200pt;}
._12{margin-left:-21.791200pt;}
._11{margin-left:-20.822400pt;}
._13{margin-left:-19.868800pt;}
._14{margin-left:-18.060000pt;}
._16{margin-left:-11.355008pt;}
._2e{margin-left:-9.596928pt;}
._2f{margin-left:-8.521600pt;}
._d{margin-left:-3.099136pt;}
._c{margin-left:-1.916000pt;}
._3{margin-left:-0.996032pt;}
._0{width:0.975808pt;}
._2{width:2.244864pt;}
._17{width:3.283712pt;}
._8{width:6.395840pt;}
._4{width:8.018816pt;}
._1{width:9.303040pt;}
._b{width:10.436576pt;}
._e{width:11.618688pt;}
._7{width:13.802880pt;}
._6{width:14.718016pt;}
._15{width:15.710912pt;}
._9{width:16.705024pt;}
._5{width:18.343168pt;}
._18{width:19.632448pt;}
._a{width:20.524000pt;}
._f{width:21.616000pt;}
._1b{width:22.575040pt;}
._1a{width:24.208128pt;}
._2b{width:25.836160pt;}
._2a{width:26.827136pt;}
._19{width:28.783808pt;}
._2d{width:30.338656pt;}
._2c{width:32.702208pt;}
._22{width:79.894720pt;}
._23{width:86.418080pt;}
._25{width:94.389568pt;}
._29{width:110.101536pt;}
._20{width:117.440064pt;}
._28{width:120.640576pt;}
._24{width:124.815712pt;}
._1e{width:131.523168pt;}
._26{width:146.214880pt;}
._21{width:155.522752pt;}
._1f{width:169.601600pt;}
._27{width:400.232032pt;}
._1c{width:420.807744pt;}
._1d{width:472.628800pt;}
.fs9{font-size:4.160000pt;}
.fs14{font-size:27.200000pt;}
.fs12{font-size:32.000000pt;}
.fs13{font-size:32.320000pt;}
.fs11{font-size:32.640000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:37.440000pt;}
.fsb{font-size:39.360000pt;}
.fs6{font-size:40.000000pt;}
.fsc{font-size:42.560000pt;}
.fsd{font-size:45.440000pt;}
.fse{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:71.040000pt;}
.fs8{font-size:72.000000pt;}
.fs10{font-size:86.400000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:2.239867pt;}
.y46{bottom:2.399867pt;}
.yf2{bottom:2.799867pt;}
.y49{bottom:2.879867pt;}
.y5c{bottom:58.815867pt;}
.y5e{bottom:65.615509pt;}
.y5a{bottom:65.936000pt;}
.y59{bottom:68.175427pt;}
.y58{bottom:77.455867pt;}
.y4{bottom:86.333337pt;}
.y2d{bottom:103.455867pt;}
.y105{bottom:104.414139pt;}
.yed{bottom:107.135867pt;}
.y122{bottom:109.694811pt;}
.y85{bottom:110.494139pt;}
.y2c{bottom:116.975867pt;}
.y3c{bottom:118.654523pt;}
.ybd{bottom:121.454043pt;}
.y104{bottom:122.254235pt;}
.y20{bottom:123.790666pt;}
.yec{bottom:124.255867pt;}
.y121{bottom:127.534907pt;}
.y84{bottom:128.334235pt;}
.y2b{bottom:133.055867pt;}
.y3b{bottom:136.494619pt;}
.ybc{bottom:139.294139pt;}
.y103{bottom:140.094331pt;}
.yeb{bottom:142.495515pt;}
.y120{bottom:145.375003pt;}
.y83{bottom:146.174331pt;}
.y3a{bottom:154.334715pt;}
.ybb{bottom:157.134235pt;}
.y102{bottom:157.934427pt;}
.yea{bottom:160.655715pt;}
.y11f{bottom:163.215099pt;}
.y82{bottom:164.014427pt;}
.y39{bottom:172.174811pt;}
.y2a{bottom:173.695099pt;}
.yba{bottom:174.974331pt;}
.y17{bottom:175.052000pt;}
.y101{bottom:175.774523pt;}
.ye9{bottom:178.895867pt;}
.y11e{bottom:181.055195pt;}
.y81{bottom:181.854523pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y38{bottom:190.014907pt;}
.y29{bottom:191.535195pt;}
.yb9{bottom:192.814427pt;}
.y100{bottom:193.614619pt;}
.ye8{bottom:197.135515pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y11d{bottom:198.895291pt;}
.y80{bottom:199.694619pt;}
.y37{bottom:207.855003pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y28{bottom:209.375291pt;}
.yb8{bottom:210.654523pt;}
.yff{bottom:211.454715pt;}
.ye7{bottom:215.295867pt;}
.y11c{bottom:216.735387pt;}
.y7f{bottom:217.534715pt;}
.y36{bottom:225.695099pt;}
.y27{bottom:227.215387pt;}
.yb7{bottom:228.494619pt;}
.yfe{bottom:229.294811pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.ye6{bottom:233.535867pt;}
.y11b{bottom:234.575483pt;}
.y7e{bottom:235.374811pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y35{bottom:243.535195pt;}
.y26{bottom:245.055483pt;}
.yb6{bottom:246.334715pt;}
.yfd{bottom:247.134907pt;}
.ye5{bottom:251.775515pt;}
.y11a{bottom:252.415579pt;}
.y7d{bottom:253.214907pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y34{bottom:261.375291pt;}
.y25{bottom:262.895579pt;}
.yb5{bottom:264.174811pt;}
.yfc{bottom:264.975003pt;}
.ye4{bottom:269.935867pt;}
.y119{bottom:270.255675pt;}
.y7c{bottom:271.055003pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y33{bottom:279.215387pt;}
.y24{bottom:280.735675pt;}
.yb4{bottom:282.014907pt;}
.yfb{bottom:282.815099pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y118{bottom:288.095771pt;}
.ye3{bottom:288.175715pt;}
.y7b{bottom:288.895099pt;}
.y32{bottom:297.055483pt;}
.y23{bottom:298.575771pt;}
.yb3{bottom:299.855003pt;}
.yfa{bottom:300.655195pt;}
.y116{bottom:305.935771pt;}
.y117{bottom:305.935867pt;}
.ye2{bottom:306.415403pt;}
.y7a{bottom:306.735195pt;}
.ye{bottom:309.452000pt;}
.y31{bottom:314.895579pt;}
.y22{bottom:316.415867pt;}
.yb2{bottom:317.695099pt;}
.yf9{bottom:318.495291pt;}
.y114{bottom:323.775387pt;}
.y115{bottom:323.775867pt;}
.y79{bottom:324.575291pt;}
.ye1{bottom:324.575755pt;}
.y30{bottom:332.735675pt;}
.yb1{bottom:335.535195pt;}
.yf8{bottom:336.335387pt;}
.yde{bottom:336.415947pt;}
.y113{bottom:341.615483pt;}
.y78{bottom:342.415387pt;}
.ye0{bottom:342.815907pt;}
.yd{bottom:343.809333pt;}
.ydd{bottom:349.215867pt;}
.y2f{bottom:350.575771pt;}
.yb0{bottom:353.375291pt;}
.yf7{bottom:354.175483pt;}
.y112{bottom:359.455579pt;}
.y77{bottom:360.255483pt;}
.y12d{bottom:360.495771pt;}
.ydf{bottom:361.056059pt;}
.yc{bottom:362.706666pt;}
.y21{bottom:365.615867pt;}
.y2e{bottom:368.415867pt;}
.yaf{bottom:371.215387pt;}
.yf6{bottom:372.015579pt;}
.y111{bottom:377.295675pt;}
.y76{bottom:378.095579pt;}
.y12c{bottom:378.335867pt;}
.yee{bottom:384.095867pt;}
.yae{bottom:389.055483pt;}
.yf5{bottom:389.855675pt;}
.y110{bottom:395.135771pt;}
.y75{bottom:395.935675pt;}
.yad{bottom:406.895579pt;}
.yf4{bottom:407.695771pt;}
.y10f{bottom:412.975867pt;}
.y74{bottom:413.775771pt;}
.yac{bottom:424.735675pt;}
.yf3{bottom:425.535867pt;}
.y12b{bottom:428.815867pt;}
.yf1{bottom:429.696000pt;}
.ycf{bottom:431.614331pt;}
.y73{bottom:431.615867pt;}
.yf0{bottom:432.495947pt;}
.yab{bottom:442.575771pt;}
.y57{bottom:445.055867pt;}
.yef{bottom:445.295867pt;}
.y143{bottom:445.853995pt;}
.yb{bottom:446.990669pt;}
.yce{bottom:449.454427pt;}
.y142{bottom:458.894139pt;}
.yaa{bottom:458.975867pt;}
.ya9{bottom:460.415867pt;}
.ya{bottom:462.990669pt;}
.y10e{bottom:463.455867pt;}
.ycd{bottom:467.294523pt;}
.y127{bottom:469.215947pt;}
.y141{bottom:471.934283pt;}
.ya8{bottom:476.815867pt;}
.ya6{bottom:478.255387pt;}
.ya7{bottom:478.255867pt;}
.y9{bottom:478.990666pt;}
.y126{bottom:482.015867pt;}
.y72{bottom:482.095867pt;}
.ycc{bottom:485.134619pt;}
.y56{bottom:486.016379pt;}
.y140{bottom:488.974283pt;}
.y8{bottom:494.990666pt;}
.ya5{bottom:496.095483pt;}
.y55{bottom:499.616571pt;}
.y13f{bottom:502.014427pt;}
.ycb{bottom:502.974715pt;}
.y12a{bottom:502.975771pt;}
.y54{bottom:513.136107pt;}
.ya4{bottom:513.935579pt;}
.y13e{bottom:515.054571pt;}
.yca{bottom:520.814811pt;}
.y129{bottom:520.815867pt;}
.y53{bottom:526.736299pt;}
.ya3{bottom:531.775675pt;}
.y13d{bottom:532.094571pt;}
.y10d{bottom:537.613483pt;}
.yc9{bottom:538.654907pt;}
.y52{bottom:540.336491pt;}
.y13c{bottom:545.134715pt;}
.ya2{bottom:549.615771pt;}
.y51{bottom:553.856027pt;}
.y10c{bottom:555.453579pt;}
.y71{bottom:556.254139pt;}
.yc8{bottom:556.495003pt;}
.y13b{bottom:562.174715pt;}
.ya1{bottom:566.015867pt;}
.ya0{bottom:567.455867pt;}
.y50{bottom:567.456219pt;}
.y128{bottom:571.295867pt;}
.y10b{bottom:573.293675pt;}
.y7{bottom:573.786667pt;}
.y70{bottom:574.094235pt;}
.yc7{bottom:574.335099pt;}
.y13a{bottom:575.214859pt;}
.y4f{bottom:581.056411pt;}
.y139{bottom:588.255003pt;}
.y10a{bottom:591.133771pt;}
.y6f{bottom:591.934331pt;}
.yc6{bottom:592.175195pt;}
.y6{bottom:592.685334pt;}
.y4e{bottom:594.575947pt;}
.y138{bottom:601.295147pt;}
.y9f{bottom:602.655467pt;}
.y4d{bottom:608.176139pt;}
.y109{bottom:608.973867pt;}
.y6e{bottom:609.774427pt;}
.yc5{bottom:610.015291pt;}
.y137{bottom:618.335147pt;}
.y96{bottom:618.575867pt;}
.y99{bottom:618.655867pt;}
.y98{bottom:619.215867pt;}
.y94{bottom:621.215867pt;}
.y4c{bottom:621.776331pt;}
.y108{bottom:626.813963pt;}
.y97{bottom:627.055771pt;}
.y9a{bottom:627.055867pt;}
.y6d{bottom:627.614523pt;}
.yc4{bottom:627.855387pt;}
.y95{bottom:628.015867pt;}
.y93{bottom:630.015867pt;}
.y136{bottom:631.375291pt;}
.y92{bottom:633.455867pt;}
.y4b{bottom:635.295867pt;}
.y9b{bottom:640.655867pt;}
.y9d{bottom:641.215867pt;}
.y9e{bottom:643.775867pt;}
.y135{bottom:644.415435pt;}
.y107{bottom:644.654059pt;}
.y6c{bottom:645.454619pt;}
.y5{bottom:645.598667pt;}
.yc3{bottom:645.695483pt;}
.y9c{bottom:649.055771pt;}
.y48{bottom:656.896000pt;}
.y4a{bottom:659.775867pt;}
.y134{bottom:661.455435pt;}
.y106{bottom:662.494155pt;}
.ydc{bottom:663.292891pt;}
.y6b{bottom:663.294715pt;}
.yc2{bottom:663.535579pt;}
.y3{bottom:668.977329pt;}
.y133{bottom:674.495579pt;}
.ydb{bottom:681.132987pt;}
.y91{bottom:681.133259pt;}
.y6a{bottom:681.134811pt;}
.yc1{bottom:681.375675pt;}
.y132{bottom:687.535723pt;}
.y125{bottom:692.015947pt;}
.yda{bottom:698.973083pt;}
.y90{bottom:698.973355pt;}
.y69{bottom:698.974907pt;}
.yc0{bottom:699.215771pt;}
.y131{bottom:700.575867pt;}
.y45{bottom:701.936000pt;}
.y47{bottom:704.335867pt;}
.y124{bottom:704.815867pt;}
.y123{bottom:706.175867pt;}
.yd9{bottom:716.813179pt;}
.y8f{bottom:716.813451pt;}
.y68{bottom:716.815003pt;}
.ybf{bottom:717.055867pt;}
.y44{bottom:730.975867pt;}
.yd8{bottom:734.653275pt;}
.y8e{bottom:734.653547pt;}
.y67{bottom:734.655099pt;}
.y130{bottom:749.935867pt;}
.yd7{bottom:752.493371pt;}
.y8d{bottom:752.493643pt;}
.y66{bottom:752.495195pt;}
.y43{bottom:765.375867pt;}
.ybe{bottom:767.535867pt;}
.yd6{bottom:770.333467pt;}
.y8c{bottom:770.333739pt;}
.y65{bottom:770.335291pt;}
.y2{bottom:781.661334pt;}
.yd5{bottom:788.173563pt;}
.y8b{bottom:788.173835pt;}
.y64{bottom:788.175387pt;}
.yd4{bottom:806.013659pt;}
.y8a{bottom:806.013931pt;}
.y63{bottom:806.015483pt;}
.y42{bottom:823.615691pt;}
.yd3{bottom:823.853755pt;}
.y89{bottom:823.854027pt;}
.y62{bottom:823.855579pt;}
.y12f{bottom:824.095867pt;}
.y41{bottom:834.815867pt;}
.yd2{bottom:841.693851pt;}
.y88{bottom:841.694123pt;}
.y61{bottom:841.695675pt;}
.y40{bottom:856.255867pt;}
.y1{bottom:859.312000pt;}
.yd1{bottom:859.533947pt;}
.y87{bottom:859.534219pt;}
.y60{bottom:859.535771pt;}
.y12e{bottom:874.575867pt;}
.yd0{bottom:877.374043pt;}
.y86{bottom:877.374315pt;}
.y5f{bottom:877.375867pt;}
.y3f{bottom:889.455381pt;}
.y3e{bottom:900.655557pt;}
.y3d{bottom:911.855733pt;}
.y5d{bottom:918.015733pt;}
.h15{height:10.560000pt;}
.h10{height:11.360000pt;}
.h27{height:12.960000pt;}
.h11{height:13.040000pt;}
.h1e{height:21.750000pt;}
.h1f{height:22.391562pt;}
.h20{height:22.393594pt;}
.h1a{height:22.408125pt;}
.h1d{height:22.726875pt;}
.h28{height:23.813760pt;}
.h1c{height:24.326235pt;}
.h1b{height:25.203125pt;}
.hc{height:25.922812pt;}
.hb{height:27.832031pt;}
.h7{height:28.560000pt;}
.h12{height:29.550937pt;}
.h14{height:29.758750pt;}
.h17{height:29.765625pt;}
.hd{height:30.090937pt;}
.h26{height:31.358906pt;}
.h13{height:31.683750pt;}
.h16{height:33.281250pt;}
.ha{height:35.204375pt;}
.h25{height:37.115764pt;}
.h24{height:37.447345pt;}
.h21{height:37.447794pt;}
.h23{height:37.765938pt;}
.h22{height:37.766545pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:44.468750pt;}
.h2{height:48.960000pt;}
.he{height:53.121094pt;}
.hf{height:53.767031pt;}
.h18{height:56.956875pt;}
.h19{height:59.231250pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:994.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:11.040000pt;}
.w6{width:37.120000pt;}
.w4{width:40.480000pt;}
.w7{width:43.840000pt;}
.w2{width:566.928019pt;}
.w3{width:710.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:35.440000pt;}
.x47{left:38.640000pt;}
.x5{left:79.360000pt;}
.x46{left:80.480000pt;}
.x44{left:84.240192pt;}
.xe{left:85.440000pt;}
.x7{left:88.399947pt;}
.x1{left:90.706667pt;}
.x6{left:92.720000pt;}
.x2{left:94.486667pt;}
.x40{left:95.519800pt;}
.x42{left:99.999472pt;}
.x3c{left:101.839600pt;}
.x43{left:111.200000pt;}
.x3b{left:112.320000pt;}
.x41{left:115.600000pt;}
.xf{left:117.600000pt;}
.x45{left:136.000000pt;}
.xa{left:162.880000pt;}
.x4{left:180.874667pt;}
.x3f{left:216.319616pt;}
.xb{left:224.160000pt;}
.x3e{left:239.359472pt;}
.xd{left:271.199880pt;}
.x3d{left:322.399352pt;}
.xc{left:357.120000pt;}
.x8{left:370.320000pt;}
.x38{left:378.320000pt;}
.x9{left:383.680149pt;}
.x39{left:392.080000pt;}
.x3a{left:399.920000pt;}
.x3{left:404.408000pt;}
.x2e{left:406.400000pt;}
.x2f{left:414.640000pt;}
.x30{left:429.680000pt;}
.x31{left:435.520000pt;}
.x32{left:459.280000pt;}
.x14{left:468.400000pt;}
.x15{left:470.240000pt;}
.x10{left:476.640000pt;}
.x16{left:478.000000pt;}
.x48{left:480.800000pt;}
.x33{left:482.560000pt;}
.x34{left:488.400000pt;}
.x49{left:491.440000pt;}
.x17{left:495.680000pt;}
.x23{left:497.680000pt;}
.x24{left:515.200816pt;}
.x1b{left:521.040000pt;}
.x18{left:524.080000pt;}
.x19{left:527.040000pt;}
.x1a{left:536.640000pt;}
.x1c{left:541.680000pt;}
.x25{left:543.520000pt;}
.x26{left:546.560000pt;}
.x1d{left:549.440000pt;}
.x27{left:556.080000pt;}
.x28{left:559.120000pt;}
.x4a{left:562.560000pt;}
.x1e{left:567.120000pt;}
.x29{left:570.080000pt;}
.x2a{left:573.120000pt;}
.x12{left:574.480000pt;}
.x2b{left:582.640000pt;}
.x35{left:583.840000pt;}
.x22{left:592.480000pt;}
.x1f{left:595.520000pt;}
.x20{left:598.480000pt;}
.x36{left:607.120000pt;}
.x21{left:608.080000pt;}
.x37{left:613.280000pt;}
.x2c{left:616.080000pt;}
.x2d{left:617.840400pt;}
.x13{left:621.760168pt;}
}




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