
    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_065efed8540628f397977d1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_c2b4b2da252e6b19627b57c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.706543;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_7ae1714637bd664df0d290cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_899bddb48ef53f4ca31dc92e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_9e0c691890f3f0a5ea7e3e87.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_8d992d080aee1ee1f9d07ca6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_8685ab231112c47560ef7ea8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_31d8cc3b77d75b84cbb43db5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988281;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_19fdbdbe103dcdfb12ed32bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_a143bb19b5b5872cdd7bdf74.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_2de52cbf4ed913d5c7a7fb37.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_f2336b607c35c08c26c73e79.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_4718c8bd70dede27cee1f018.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_0513e1c4414ce982ba182f5b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_bf47adea47fbd570af80fb16.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_b72b40baa65d1c0d09e4766f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_a43fe947a908a9549ff872e3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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_72bd2dd50ad94d3f9f7f19fd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938965;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_993d81bf6b39c89341434a87.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;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_799aff48e6a4043235261992.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938965;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_30b1495f7264b538110d59d3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;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_46aca95bae56b6f16b4fdc65.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938965;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_a2981ae0025152d03425ca0f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938477;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_865c37ec3047a7bb3a4504e6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938965;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_498af0c38509092734727e6a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;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_9c66510bff68e336ef67eb4a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938965;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_073bda565731f9600df16e3d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;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_6c6f352320dddcea7d436176.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938965;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_5a631ed0ac2502072f7ea676.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;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_a36f8b221d3be10c1f703d0c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938965;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_d7a6c4430230ba3845742adf.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;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_8de0d766df18e225a2861ee4.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938965;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_3bbcd2d16a57230213543f17.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938477;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_42f9d3546197ab2928346718.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.938965;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_68eb64161fb377d5c2b44e24.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.938477;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_9d06c31ce8e96d4801fde787.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938965;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_e6e576dcc3ecb2c4bbfb187f.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938477;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_e5cee1c139081315b5c309e1.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938965;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_3e474a553dcaf5cd84d2546a.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.938477;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_0f6d981451b1ab38aab91762.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.938965;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_138168b266e738e645f46aae.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.938965;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_f4cf5ece407be5de35523ddd.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_6cfce580448e0f8695907f3b.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_9382212f99b8a06b0f892758.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_02a89cd1d55d6937667e51ce.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_b96906b64cdc77f3794860ac.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_d9ac16d7a1eda0c0b2359161.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938477;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:ff30;src:url('chunks/assets/font_a2b0e9283a95b05a764ae619.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.938965;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:ff31;src:url('chunks/assets/font_6ad6d6c62eea44426e2e4942.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_bf8ec270bbb3a27537229579.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_5829f2c525a87e33984104fd.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_ab24d76f7af7d2eeacac8391.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_189e8bc2039020a0525297d5.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_e83a42cae50ffdc687d0e69c.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_b021369e8a9e09deb912f2f2.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_793d591df41a2d9b012f0cba.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_a18fb04344c3f45949d04765.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_eec9a833a7198350a328c684.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_5cf384bfef9038c2d881ba2a.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_6761dee89c592da3cd8e4fdb.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.666504;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;}
.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;}
.v1{vertical-align:24.120000px;}
.v2{vertical-align:28.140000px;}
.lsf{letter-spacing:-1.768800px;}
.ls12{letter-spacing:-1.527600px;}
.lsc{letter-spacing:-1.326600px;}
.lsa{letter-spacing:-0.884400px;}
.ls1{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.442200px;}
.ls3{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.361800px;}
.lse{letter-spacing:0.442200px;}
.ls2{letter-spacing:0.554400px;}
.ls6{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.884400px;}
.ls10{letter-spacing:1.045200px;}
.ls9{letter-spacing:1.326600px;}
.ls8{letter-spacing:1.768800px;}
.ls7{letter-spacing:1.809000px;}
.ls14{letter-spacing:844.464000px;}
.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;}
}
.ws6{word-spacing:-17.064000px;}
.ws4{word-spacing:-16.826400px;}
.ws2d{word-spacing:-16.632000px;}
.ws2c{word-spacing:-16.488000px;}
.ws5{word-spacing:-16.344000px;}
.ws3{word-spacing:-16.286400px;}
.ws2{word-spacing:-15.984000px;}
.ws1{word-spacing:-15.768000px;}
.wsa{word-spacing:-12.944400px;}
.wse{word-spacing:-12.502200px;}
.wsc{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.617800px;}
.ws17{word-spacing:-11.175600px;}
.ws8{word-spacing:-10.733400px;}
.ws9{word-spacing:-10.291200px;}
.wsf{word-spacing:-9.849000px;}
.ws2b{word-spacing:-9.406800px;}
.ws0{word-spacing:0.000000px;}
.ws22{word-spacing:15.195600px;}
.ws16{word-spacing:27.255600px;}
.ws7{word-spacing:30.351000px;}
.ws1b{word-spacing:55.395600px;}
.ws1d{word-spacing:63.435600px;}
.ws29{word-spacing:91.575600px;}
.ws28{word-spacing:119.715600px;}
.ws2a{word-spacing:167.955600px;}
.ws24{word-spacing:204.135600px;}
.ws13{word-spacing:224.235600px;}
.ws25{word-spacing:240.315600px;}
.ws23{word-spacing:242.968800px;}
.ws20{word-spacing:252.375600px;}
.ws1e{word-spacing:264.435600px;}
.ws14{word-spacing:265.722000px;}
.ws15{word-spacing:268.455600px;}
.ws26{word-spacing:276.495600px;}
.ws1a{word-spacing:277.782000px;}
.ws21{word-spacing:280.515600px;}
.wsb{word-spacing:284.535600px;}
.ws1c{word-spacing:293.862000px;}
.ws12{word-spacing:297.882000px;}
.ws19{word-spacing:313.962000px;}
.ws27{word-spacing:324.735600px;}
.ws18{word-spacing:340.815600px;}
.ws10{word-spacing:342.102000px;}
.ws1f{word-spacing:359.589000px;}
.wsd{word-spacing:370.242000px;}
._9{margin-left:-3.819000px;}
._8{margin-left:-2.808000px;}
._0{margin-left:-1.152600px;}
._1{width:1.152000px;}
._5{width:2.592000px;}
._4{width:3.618600px;}
._6{width:4.877400px;}
._7{width:6.246000px;}
._2{width:11.448000px;}
._3{width:12.744600px;}
._d{width:97.840800px;}
._a{width:117.094800px;}
._11{width:163.590000px;}
._e{width:285.527400px;}
._f{width:306.438600px;}
._10{width:361.984800px;}
._b{width:370.603800px;}
._c{width:518.888400px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:40.200000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:192.000000px;}
.fs1{font-size:288.150000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:2.010000px;}
.y56{bottom:2.010075px;}
.y4b{bottom:3.015075px;}
.y32{bottom:4.500000px;}
.y27{bottom:4.545000px;}
.y29{bottom:6.375000px;}
.yb{bottom:6.750000px;}
.y34{bottom:7.485000px;}
.y2b{bottom:7.500000px;}
.y2e{bottom:7.530000px;}
.y126{bottom:8.625000px;}
.y21{bottom:9.000000px;}
.y47{bottom:9.045075px;}
.y129{bottom:10.125000px;}
.y1f{bottom:10.500000px;}
.y23{bottom:11.250000px;}
.yd4{bottom:15.075000px;}
.y7c{bottom:15.075075px;}
.y30{bottom:15.375000px;}
.y25{bottom:15.420000px;}
.ya1{bottom:16.080000px;}
.y4a{bottom:16.080075px;}
.ydf{bottom:17.085000px;}
.y61{bottom:17.085075px;}
.yc6{bottom:18.090075px;}
.yb5{bottom:22.110000px;}
.y45{bottom:22.110075px;}
.y31{bottom:26.250000px;}
.y136{bottom:26.280000px;}
.y13b{bottom:26.610000px;}
.y121{bottom:26.625000px;}
.y26{bottom:26.670000px;}
.yd3{bottom:28.140000px;}
.y65{bottom:28.140075px;}
.ya0{bottom:29.145000px;}
.y49{bottom:29.145075px;}
.y77{bottom:30.150075px;}
.yaf{bottom:31.155075px;}
.yde{bottom:32.160000px;}
.y60{bottom:32.160075px;}
.y22{bottom:33.375000px;}
.yc5{bottom:34.170075px;}
.yb6{bottom:35.175000px;}
.y46{bottom:35.175075px;}
.y138{bottom:37.485000px;}
.yd2{bottom:41.205000px;}
.y64{bottom:41.205075px;}
.y9c{bottom:42.210000px;}
.y48{bottom:42.210075px;}
.y76{bottom:43.215075px;}
.y106{bottom:44.220075px;}
.yae{bottom:45.225075px;}
.y11c{bottom:46.230075px;}
.ydd{bottom:47.235000px;}
.y5f{bottom:47.235075px;}
.ya4{bottom:48.240000px;}
.y4f{bottom:48.240075px;}
.y123{bottom:48.375000px;}
.y135{bottom:48.405000px;}
.y13a{bottom:48.750000px;}
.yc4{bottom:49.245075px;}
.yd1{bottom:54.270000px;}
.y59{bottom:54.270075px;}
.y9a{bottom:55.275000px;}
.y55{bottom:55.275075px;}
.y75{bottom:56.280075px;}
.y105{bottom:58.290075px;}
.y2{bottom:59.250000px;}
.yad{bottom:59.295075px;}
.y11b{bottom:60.300075px;}
.ya3{bottom:61.305000px;}
.y4d{bottom:61.305075px;}
.ydc{bottom:62.310000px;}
.y5e{bottom:62.310075px;}
.yc3{bottom:64.320075px;}
.y43{bottom:66.000000px;}
.yd0{bottom:67.335000px;}
.y58{bottom:67.335075px;}
.y9b{bottom:68.340000px;}
.y54{bottom:68.340075px;}
.y74{bottom:69.345075px;}
.y139{bottom:70.500000px;}
.y104{bottom:72.360075px;}
.yac{bottom:73.365075px;}
.ybc{bottom:74.370000px;}
.y4e{bottom:74.370075px;}
.y94{bottom:75.375075px;}
.ye7{bottom:76.380075px;}
.ydb{bottom:77.385000px;}
.y5d{bottom:77.385075px;}
.yc2{bottom:79.395075px;}
.ycf{bottom:80.400000px;}
.y63{bottom:80.400075px;}
.y9f{bottom:81.405000px;}
.y53{bottom:81.405075px;}
.y73{bottom:82.410075px;}
.y42{bottom:84.375000px;}
.y103{bottom:86.430075px;}
.yc9{bottom:87.435000px;}
.y7a{bottom:87.435075px;}
.y93{bottom:88.440075px;}
.yd9{bottom:88.913325px;}
.y99{bottom:89.918325px;}
.ye6{bottom:90.450075px;}
.y5c{bottom:91.455075px;}
.yda{bottom:92.460000px;}
.y83{bottom:92.460075px;}
.yce{bottom:93.465000px;}
.y62{bottom:93.465075px;}
.y9e{bottom:94.470000px;}
.y52{bottom:94.470075px;}
.y72{bottom:95.475075px;}
.y82{bottom:100.500075px;}
.y92{bottom:101.505075px;}
.yea{bottom:101.978325px;}
.y11a{bottom:102.510075px;}
.y41{bottom:102.787500px;}
.ybb{bottom:102.983325px;}
.ye5{bottom:104.520075px;}
.y5b{bottom:105.525075px;}
.y7b{bottom:106.530075px;}
.y9d{bottom:107.535000px;}
.y51{bottom:107.535075px;}
.y71{bottom:108.540075px;}
.y91{bottom:114.570075px;}
.yab{bottom:115.575075px;}
.yf4{bottom:116.048325px;}
.y119{bottom:116.580075px;}
.ye4{bottom:118.590075px;}
.y5a{bottom:119.595075px;}
.y50{bottom:120.600075px;}
.y40{bottom:120.787500px;}
.y70{bottom:121.605075px;}
.yf7{bottom:126.630075px;}
.y90{bottom:127.635075px;}
.y102{bottom:128.640075px;}
.ybf{bottom:129.113325px;}
.yaa{bottom:129.645075px;}
.y118{bottom:130.650075px;}
.ye3{bottom:132.660075px;}
.y68{bottom:133.665075px;}
.y6f{bottom:134.670075px;}
.y3f{bottom:139.162500px;}
.yb4{bottom:140.168325px;}
.y8f{bottom:140.700075px;}
.y101{bottom:142.710075px;}
.ya9{bottom:143.715075px;}
.y117{bottom:144.720075px;}
.y10f{bottom:145.725075px;}
.y67{bottom:146.730075px;}
.y6e{bottom:147.735075px;}
.y10d{bottom:153.233250px;}
.y8e{bottom:153.765075px;}
.y78{bottom:154.238250px;}
.yc8{bottom:155.243250px;}
.y100{bottom:156.780075px;}
.y3e{bottom:157.545000px;}
.ya8{bottom:157.785075px;}
.y116{bottom:158.790075px;}
.yf8{bottom:159.795075px;}
.y6d{bottom:160.800075px;}
.y8d{bottom:166.830075px;}
.y113{bottom:167.303250px;}
.yf1{bottom:168.308250px;}
.yff{bottom:170.850075px;}
.ya7{bottom:171.855075px;}
.y114{bottom:172.860075px;}
.y6c{bottom:173.865075px;}
.y3d{bottom:175.905000px;}
.y107{bottom:180.368250px;}
.y95{bottom:181.373250px;}
.y87{bottom:182.378250px;}
.yfe{bottom:184.920075px;}
.ya6{bottom:185.925075px;}
.y6b{bottom:186.930075px;}
.yb3{bottom:193.433250px;}
.y3c{bottom:194.295000px;}
.ycd{bottom:194.438250px;}
.yfd{bottom:198.990075px;}
.y6a{bottom:199.995075px;}
.yd8{bottom:207.503250px;}
.y80{bottom:208.508250px;}
.yfc{bottom:212.055075px;}
.y3b{bottom:212.700000px;}
.y69{bottom:213.060075px;}
.yba{bottom:221.573250px;}
.yfb{bottom:225.120075px;}
.y8c{bottom:226.125075px;}
.y3a{bottom:230.700000px;}
.y10c{bottom:232.628250px;}
.yb2{bottom:233.633250px;}
.yf3{bottom:234.638250px;}
.yfa{bottom:238.185075px;}
.y8b{bottom:239.190075px;}
.y112{bottom:246.698250px;}
.ybe{bottom:247.703250px;}
.y39{bottom:249.075000px;}
.yf9{bottom:251.250075px;}
.y96{bottom:252.255075px;}
.yc7{bottom:260.768250px;}
.y38{bottom:267.450000px;}
.y13e{bottom:272.700000px;}
.y66{bottom:272.828250px;}
.yf0{bottom:273.833250px;}
.y37{bottom:285.825000px;}
.yee{bottom:286.898250px;}
.y13d{bottom:297.450000px;}
.y86{bottom:299.963250px;}
.y36{bottom:300.450000px;}
.yd7{bottom:312.023250px;}
.ye2{bottom:313.028250px;}
.y11e{bottom:314.033250px;}
.y13c{bottom:314.325000px;}
.y98{bottom:326.093250px;}
.y7f{bottom:327.098250px;}
.y35{bottom:331.575000px;}
.y10b{bottom:338.153250px;}
.yf6{bottom:339.158250px;}
.yb9{bottom:340.163250px;}
.y137{bottom:345.495000px;}
.yb1{bottom:352.223250px;}
.ye9{bottom:365.288250px;}
.ybd{bottom:366.293250px;}
.yef{bottom:378.353250px;}
.y33{bottom:378.870000px;}
.y111{bottom:391.418250px;}
.yed{bottom:404.483250px;}
.ycc{bottom:405.488250px;}
.y2f{bottom:410.370000px;}
.y85{bottom:418.553250px;}
.yd6{bottom:430.613250px;}
.yf2{bottom:431.618250px;}
.y134{bottom:436.995000px;}
.y89{bottom:444.683250px;}
.y2d{bottom:457.620000px;}
.y7e{bottom:457.748250px;}
.y115{bottom:458.753250px;}
.yb0{bottom:470.813250px;}
.yc1{bottom:483.878250px;}
.y11d{bottom:484.883250px;}
.y2c{bottom:488.775000px;}
.y57{bottom:496.943250px;}
.y133{bottom:506.400000px;}
.y10a{bottom:509.003250px;}
.yd5{bottom:510.008250px;}
.y2a{bottom:520.275000px;}
.ycb{bottom:523.073250px;}
.yec{bottom:536.138250px;}
.y132{bottom:537.525000px;}
.y84{bottom:550.208250px;}
.y28{bottom:551.400000px;}
.y8a{bottom:562.268250px;}
.y131{bottom:568.650000px;}
.y88{bottom:575.333250px;}
.y7d{bottom:576.338250px;}
.y24{bottom:580.650000px;}
.ye8{bottom:588.398250px;}
.yb8{bottom:589.403250px;}
.y130{bottom:600.195000px;}
.ya5{bottom:601.463250px;}
.y110{bottom:602.468250px;}
.y4c{bottom:627.593250px;}
.y20{bottom:627.945000px;}
.yf5{bottom:628.598250px;}
.y12f{bottom:631.320000px;}
.yca{bottom:641.663250px;}
.y10e{bottom:655.733250px;}
.y12e{bottom:662.820000px;}
.y109{bottom:666.788250px;}
.yeb{bottom:667.793250px;}
.y159{bottom:670.695000px;}
.y81{bottom:680.858250px;}
.y79{bottom:681.863250px;}
.y1e{bottom:688.695000px;}
.y158{bottom:689.070000px;}
.y97{bottom:693.923250px;}
.y12d{bottom:693.945000px;}
.yc0{bottom:694.928250px;}
.ye0{bottom:706.988250px;}
.y157{bottom:707.475000px;}
.yb7{bottom:707.993250px;}
.ye1{bottom:720.053250px;}
.y1d{bottom:720.975000px;}
.y12c{bottom:725.100000px;}
.y156{bottom:725.850000px;}
.y7{bottom:729.975000px;}
.y108{bottom:733.118250px;}
.y155{bottom:744.225000px;}
.y1c{bottom:745.350000px;}
.y12b{bottom:756.600000px;}
.y44{bottom:759.248250px;}
.y154{bottom:762.600000px;}
.y1b{bottom:769.350000px;}
.y153{bottom:780.975000px;}
.y12a{bottom:787.725000px;}
.y1a{bottom:793.350000px;}
.y152{bottom:798.975000px;}
.y6{bottom:816.975000px;}
.y151{bottom:817.350000px;}
.y19{bottom:817.725000px;}
.y128{bottom:819.225000px;}
.y150{bottom:835.755000px;}
.y18{bottom:841.755000px;}
.y127{bottom:850.380000px;}
.y14f{bottom:854.130000px;}
.y17{bottom:866.130000px;}
.y14e{bottom:872.505000px;}
.y125{bottom:881.505000px;}
.y16{bottom:890.130000px;}
.y14d{bottom:890.880000px;}
.y14c{bottom:908.880000px;}
.y124{bottom:910.755000px;}
.y15{bottom:914.505000px;}
.y5{bottom:919.755000px;}
.y14b{bottom:927.255000px;}
.y14{bottom:938.505000px;}
.y14a{bottom:945.630000px;}
.y122{bottom:958.425000px;}
.y13{bottom:962.925000px;}
.y149{bottom:964.050000px;}
.y148{bottom:982.425000px;}
.y12{bottom:986.925000px;}
.y147{bottom:1000.800000px;}
.y11{bottom:1011.300000px;}
.y4{bottom:1016.550000px;}
.y146{bottom:1018.800000px;}
.y120{bottom:1027.425000px;}
.y10{bottom:1035.300000px;}
.y145{bottom:1037.175000px;}
.y144{bottom:1055.550000px;}
.yf{bottom:1059.300000px;}
.y143{bottom:1073.925000px;}
.y11f{bottom:1078.425000px;}
.ye{bottom:1083.705000px;}
.y142{bottom:1092.330000px;}
.yd{bottom:1107.705000px;}
.y141{bottom:1110.705000px;}
.y3{bottom:1113.330000px;}
.y9{bottom:1118.580000px;}
.y140{bottom:1128.705000px;}
.yc{bottom:1135.455000px;}
.y13f{bottom:1147.080000px;}
.y8{bottom:1171.830000px;}
.y1{bottom:1195.080000px;}
.ya{bottom:1249.125000px;}
.h32{height:25.125000px;}
.ha{height:25.875000px;}
.h37{height:26.130000px;}
.hb{height:27.750000px;}
.h6{height:27.787500px;}
.hc{height:28.125000px;}
.h3a{height:28.162500px;}
.h13{height:29.266699px;}
.h15{height:29.286328px;}
.h30{height:29.305957px;}
.h2c{height:34.566504px;}
.h20{height:38.190000px;}
.h21{height:39.195000px;}
.h1{height:43.066406px;}
.hd{height:43.875000px;}
.h9{height:43.912500px;}
.h38{height:44.250000px;}
.hf{height:47.988281px;}
.h28{height:51.255000px;}
.h4{height:51.679688px;}
.h12{height:52.260000px;}
.h7{height:52.277344px;}
.h22{height:53.386699px;}
.h25{height:53.406328px;}
.h8{height:57.375000px;}
.h26{height:57.406699px;}
.h34{height:64.320000px;}
.h27{height:65.325000px;}
.h39{height:65.625000px;}
.h3b{height:66.037500px;}
.he{height:71.613281px;}
.h2d{height:77.385000px;}
.h5{height:77.519531px;}
.h1f{height:78.390000px;}
.h3c{height:88.125000px;}
.h2b{height:90.450000px;}
.h24{height:91.455000px;}
.h23{height:103.515000px;}
.h19{height:104.520000px;}
.h1a{height:116.580000px;}
.h18{height:117.585000px;}
.h16{height:129.645000px;}
.h14{height:130.650000px;}
.h3{height:134.156250px;}
.h2a{height:142.710000px;}
.h1b{height:143.715000px;}
.h33{height:155.775000px;}
.h29{height:156.780000px;}
.h36{height:168.840000px;}
.h31{height:169.845000px;}
.h35{height:182.910000px;}
.h2e{height:196.980000px;}
.h2{height:206.826416px;}
.h1e{height:210.045000px;}
.h17{height:223.110000px;}
.h1c{height:249.240000px;}
.h2f{height:261.300000px;}
.h1d{height:262.305000px;}
.h10{height:892.913400px;}
.h11{height:893.250000px;}
.h0{height:1263.750000px;}
.w8{width:69.345000px;}
.w9{width:145.725000px;}
.wc{width:152.760000px;}
.wa{width:169.845000px;}
.w3{width:229.995000px;}
.wd{width:301.245000px;}
.we{width:421.320000px;}
.w4{width:492.570000px;}
.wb{width:532.650000px;}
.w2{width:725.550000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.w7{width:1102.485000px;}
.w5{width:1262.834700px;}
.w6{width:1263.000000px;}
.x0{left:0.000000px;}
.xf{left:2.010000px;}
.x1f{left:3.015000px;}
.x21{left:4.020000px;}
.x1e{left:5.025000px;}
.xc{left:6.750000px;}
.x8{left:8.250000px;}
.x12{left:10.050000px;}
.x28{left:11.055000px;}
.x1b{left:12.060000px;}
.x2d{left:13.065000px;}
.x17{left:14.070000px;}
.x32{left:15.075000px;}
.x2b{left:16.080000px;}
.x18{left:17.085000px;}
.x9{left:18.750000px;}
.x3b{left:20.100000px;}
.x2e{left:21.105000px;}
.x1a{left:22.110000px;}
.x1d{left:23.115000px;}
.x24{left:24.120000px;}
.x2a{left:25.125000px;}
.x3a{left:26.130000px;}
.x3d{left:27.135000px;}
.x19{left:28.140000px;}
.x27{left:29.145000px;}
.x39{left:30.150000px;}
.x25{left:31.155000px;}
.x1c{left:32.160000px;}
.x30{left:33.165000px;}
.xb{left:34.875000px;}
.x50{left:36.180000px;}
.x22{left:38.190000px;}
.x4e{left:39.195000px;}
.x31{left:40.200000px;}
.x26{left:41.205000px;}
.x23{left:43.215000px;}
.x36{left:44.220000px;}
.x3f{left:45.225000px;}
.x49{left:47.235000px;}
.x2f{left:48.240000px;}
.x4f{left:50.250000px;}
.x45{left:52.260000px;}
.x38{left:53.265000px;}
.x34{left:54.270000px;}
.x20{left:55.275000px;}
.x47{left:56.280000px;}
.x3c{left:57.285000px;}
.x40{left:58.290000px;}
.x2c{left:59.295000px;}
.x29{left:60.300000px;}
.x3e{left:62.310000px;}
.x2{left:63.787487px;}
.x44{left:66.330000px;}
.x37{left:67.335000px;}
.xd{left:75.375000px;}
.x1{left:90.787487px;}
.x7{left:95.662487px;}
.x13{left:102.510000px;}
.x14{left:273.360000px;}
.xa{left:323.775000px;}
.x5{left:340.649987px;}
.x52{left:355.274987px;}
.x53{left:395.025000px;}
.x6{left:452.069987px;}
.x4{left:685.799987px;}
.x3{left:728.174987px;}
.x46{left:733.650000px;}
.x42{left:736.665000px;}
.x41{left:737.670000px;}
.x15{left:740.685000px;}
.x43{left:753.750000px;}
.x35{left:758.775000px;}
.xe{left:807.015000px;}
.x33{left:862.290000px;}
.x10{left:877.365000px;}
.x11{left:950.730000px;}
.x48{left:970.830000px;}
.x4b{left:983.895000px;}
.x4c{left:985.905000px;}
.x4a{left:987.915000px;}
.x51{left:1011.030000px;}
.x4d{left:1017.060000px;}
.x16{left:1024.095000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.v2{vertical-align:25.013333pt;}
.lsf{letter-spacing:-1.572267pt;}
.ls12{letter-spacing:-1.357867pt;}
.lsc{letter-spacing:-1.179200pt;}
.lsa{letter-spacing:-0.786133pt;}
.ls1{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.393067pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.321600pt;}
.lse{letter-spacing:0.393067pt;}
.ls2{letter-spacing:0.492800pt;}
.ls6{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.786133pt;}
.ls10{letter-spacing:0.929067pt;}
.ls9{letter-spacing:1.179200pt;}
.ls8{letter-spacing:1.572267pt;}
.ls7{letter-spacing:1.608000pt;}
.ls14{letter-spacing:750.634667pt;}
.ws6{word-spacing:-15.168000pt;}
.ws4{word-spacing:-14.956800pt;}
.ws2d{word-spacing:-14.784000pt;}
.ws2c{word-spacing:-14.656000pt;}
.ws5{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.476800pt;}
.ws2{word-spacing:-14.208000pt;}
.ws1{word-spacing:-14.016000pt;}
.wsa{word-spacing:-11.506133pt;}
.wse{word-spacing:-11.113067pt;}
.wsc{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.326933pt;}
.ws17{word-spacing:-9.933867pt;}
.ws8{word-spacing:-9.540800pt;}
.ws9{word-spacing:-9.147733pt;}
.wsf{word-spacing:-8.754667pt;}
.ws2b{word-spacing:-8.361600pt;}
.ws0{word-spacing:0.000000pt;}
.ws22{word-spacing:13.507200pt;}
.ws16{word-spacing:24.227200pt;}
.ws7{word-spacing:26.978667pt;}
.ws1b{word-spacing:49.240533pt;}
.ws1d{word-spacing:56.387200pt;}
.ws29{word-spacing:81.400533pt;}
.ws28{word-spacing:106.413867pt;}
.ws2a{word-spacing:149.293867pt;}
.ws24{word-spacing:181.453867pt;}
.ws13{word-spacing:199.320533pt;}
.ws25{word-spacing:213.613867pt;}
.ws23{word-spacing:215.972267pt;}
.ws20{word-spacing:224.333867pt;}
.ws1e{word-spacing:235.053867pt;}
.ws14{word-spacing:236.197333pt;}
.ws15{word-spacing:238.627200pt;}
.ws26{word-spacing:245.773867pt;}
.ws1a{word-spacing:246.917333pt;}
.ws21{word-spacing:249.347200pt;}
.wsb{word-spacing:252.920533pt;}
.ws1c{word-spacing:261.210667pt;}
.ws12{word-spacing:264.784000pt;}
.ws19{word-spacing:279.077333pt;}
.ws27{word-spacing:288.653867pt;}
.ws18{word-spacing:302.947200pt;}
.ws10{word-spacing:304.090667pt;}
.ws1f{word-spacing:319.634667pt;}
.wsd{word-spacing:329.104000pt;}
._9{margin-left:-3.394667pt;}
._8{margin-left:-2.496000pt;}
._0{margin-left:-1.024533pt;}
._1{width:1.024000pt;}
._5{width:2.304000pt;}
._4{width:3.216533pt;}
._6{width:4.335467pt;}
._7{width:5.552000pt;}
._2{width:10.176000pt;}
._3{width:11.328533pt;}
._d{width:86.969600pt;}
._a{width:104.084267pt;}
._11{width:145.413333pt;}
._e{width:253.802133pt;}
._f{width:272.389867pt;}
._10{width:321.764267pt;}
._b{width:329.425600pt;}
._c{width:461.234133pt;}
.fs5{font-size:35.733333pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:170.666667pt;}
.fs1{font-size:256.133333pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:1.786667pt;}
.y56{bottom:1.786733pt;}
.y4b{bottom:2.680067pt;}
.y32{bottom:4.000000pt;}
.y27{bottom:4.040000pt;}
.y29{bottom:5.666667pt;}
.yb{bottom:6.000000pt;}
.y34{bottom:6.653333pt;}
.y2b{bottom:6.666667pt;}
.y2e{bottom:6.693333pt;}
.y126{bottom:7.666667pt;}
.y21{bottom:8.000000pt;}
.y47{bottom:8.040067pt;}
.y129{bottom:9.000000pt;}
.y1f{bottom:9.333333pt;}
.y23{bottom:10.000000pt;}
.yd4{bottom:13.400000pt;}
.y7c{bottom:13.400067pt;}
.y30{bottom:13.666667pt;}
.y25{bottom:13.706667pt;}
.ya1{bottom:14.293333pt;}
.y4a{bottom:14.293400pt;}
.ydf{bottom:15.186667pt;}
.y61{bottom:15.186733pt;}
.yc6{bottom:16.080067pt;}
.yb5{bottom:19.653333pt;}
.y45{bottom:19.653400pt;}
.y31{bottom:23.333333pt;}
.y136{bottom:23.360000pt;}
.y13b{bottom:23.653333pt;}
.y121{bottom:23.666667pt;}
.y26{bottom:23.706667pt;}
.yd3{bottom:25.013333pt;}
.y65{bottom:25.013400pt;}
.ya0{bottom:25.906667pt;}
.y49{bottom:25.906733pt;}
.y77{bottom:26.800067pt;}
.yaf{bottom:27.693400pt;}
.yde{bottom:28.586667pt;}
.y60{bottom:28.586733pt;}
.y22{bottom:29.666667pt;}
.yc5{bottom:30.373400pt;}
.yb6{bottom:31.266667pt;}
.y46{bottom:31.266733pt;}
.y138{bottom:33.320000pt;}
.yd2{bottom:36.626667pt;}
.y64{bottom:36.626733pt;}
.y9c{bottom:37.520000pt;}
.y48{bottom:37.520067pt;}
.y76{bottom:38.413400pt;}
.y106{bottom:39.306733pt;}
.yae{bottom:40.200067pt;}
.y11c{bottom:41.093400pt;}
.ydd{bottom:41.986667pt;}
.y5f{bottom:41.986733pt;}
.ya4{bottom:42.880000pt;}
.y4f{bottom:42.880067pt;}
.y123{bottom:43.000000pt;}
.y135{bottom:43.026667pt;}
.y13a{bottom:43.333333pt;}
.yc4{bottom:43.773400pt;}
.yd1{bottom:48.240000pt;}
.y59{bottom:48.240067pt;}
.y9a{bottom:49.133333pt;}
.y55{bottom:49.133400pt;}
.y75{bottom:50.026733pt;}
.y105{bottom:51.813400pt;}
.y2{bottom:52.666667pt;}
.yad{bottom:52.706733pt;}
.y11b{bottom:53.600067pt;}
.ya3{bottom:54.493333pt;}
.y4d{bottom:54.493400pt;}
.ydc{bottom:55.386667pt;}
.y5e{bottom:55.386733pt;}
.yc3{bottom:57.173400pt;}
.y43{bottom:58.666667pt;}
.yd0{bottom:59.853333pt;}
.y58{bottom:59.853400pt;}
.y9b{bottom:60.746667pt;}
.y54{bottom:60.746733pt;}
.y74{bottom:61.640067pt;}
.y139{bottom:62.666667pt;}
.y104{bottom:64.320067pt;}
.yac{bottom:65.213400pt;}
.ybc{bottom:66.106667pt;}
.y4e{bottom:66.106733pt;}
.y94{bottom:67.000067pt;}
.ye7{bottom:67.893400pt;}
.ydb{bottom:68.786667pt;}
.y5d{bottom:68.786733pt;}
.yc2{bottom:70.573400pt;}
.ycf{bottom:71.466667pt;}
.y63{bottom:71.466733pt;}
.y9f{bottom:72.360000pt;}
.y53{bottom:72.360067pt;}
.y73{bottom:73.253400pt;}
.y42{bottom:75.000000pt;}
.y103{bottom:76.826733pt;}
.yc9{bottom:77.720000pt;}
.y7a{bottom:77.720067pt;}
.y93{bottom:78.613400pt;}
.yd9{bottom:79.034067pt;}
.y99{bottom:79.927400pt;}
.ye6{bottom:80.400067pt;}
.y5c{bottom:81.293400pt;}
.yda{bottom:82.186667pt;}
.y83{bottom:82.186733pt;}
.yce{bottom:83.080000pt;}
.y62{bottom:83.080067pt;}
.y9e{bottom:83.973333pt;}
.y52{bottom:83.973400pt;}
.y72{bottom:84.866733pt;}
.y82{bottom:89.333400pt;}
.y92{bottom:90.226733pt;}
.yea{bottom:90.647400pt;}
.y11a{bottom:91.120067pt;}
.y41{bottom:91.366667pt;}
.ybb{bottom:91.540733pt;}
.ye5{bottom:92.906733pt;}
.y5b{bottom:93.800067pt;}
.y7b{bottom:94.693400pt;}
.y9d{bottom:95.586667pt;}
.y51{bottom:95.586733pt;}
.y71{bottom:96.480067pt;}
.y91{bottom:101.840067pt;}
.yab{bottom:102.733400pt;}
.yf4{bottom:103.154067pt;}
.y119{bottom:103.626733pt;}
.ye4{bottom:105.413400pt;}
.y5a{bottom:106.306733pt;}
.y50{bottom:107.200067pt;}
.y40{bottom:107.366667pt;}
.y70{bottom:108.093400pt;}
.yf7{bottom:112.560067pt;}
.y90{bottom:113.453400pt;}
.y102{bottom:114.346733pt;}
.ybf{bottom:114.767400pt;}
.yaa{bottom:115.240067pt;}
.y118{bottom:116.133400pt;}
.ye3{bottom:117.920067pt;}
.y68{bottom:118.813400pt;}
.y6f{bottom:119.706733pt;}
.y3f{bottom:123.700000pt;}
.yb4{bottom:124.594067pt;}
.y8f{bottom:125.066733pt;}
.y101{bottom:126.853400pt;}
.ya9{bottom:127.746733pt;}
.y117{bottom:128.640067pt;}
.y10f{bottom:129.533400pt;}
.y67{bottom:130.426733pt;}
.y6e{bottom:131.320067pt;}
.y10d{bottom:136.207333pt;}
.y8e{bottom:136.680067pt;}
.y78{bottom:137.100667pt;}
.yc8{bottom:137.994000pt;}
.y100{bottom:139.360067pt;}
.y3e{bottom:140.040000pt;}
.ya8{bottom:140.253400pt;}
.y116{bottom:141.146733pt;}
.yf8{bottom:142.040067pt;}
.y6d{bottom:142.933400pt;}
.y8d{bottom:148.293400pt;}
.y113{bottom:148.714000pt;}
.yf1{bottom:149.607333pt;}
.yff{bottom:151.866733pt;}
.ya7{bottom:152.760067pt;}
.y114{bottom:153.653400pt;}
.y6c{bottom:154.546733pt;}
.y3d{bottom:156.360000pt;}
.y107{bottom:160.327333pt;}
.y95{bottom:161.220667pt;}
.y87{bottom:162.114000pt;}
.yfe{bottom:164.373400pt;}
.ya6{bottom:165.266733pt;}
.y6b{bottom:166.160067pt;}
.yb3{bottom:171.940667pt;}
.y3c{bottom:172.706667pt;}
.ycd{bottom:172.834000pt;}
.yfd{bottom:176.880067pt;}
.y6a{bottom:177.773400pt;}
.yd8{bottom:184.447333pt;}
.y80{bottom:185.340667pt;}
.yfc{bottom:188.493400pt;}
.y3b{bottom:189.066667pt;}
.y69{bottom:189.386733pt;}
.yba{bottom:196.954000pt;}
.yfb{bottom:200.106733pt;}
.y8c{bottom:201.000067pt;}
.y3a{bottom:205.066667pt;}
.y10c{bottom:206.780667pt;}
.yb2{bottom:207.674000pt;}
.yf3{bottom:208.567333pt;}
.yfa{bottom:211.720067pt;}
.y8b{bottom:212.613400pt;}
.y112{bottom:219.287333pt;}
.ybe{bottom:220.180667pt;}
.y39{bottom:221.400000pt;}
.yf9{bottom:223.333400pt;}
.y96{bottom:224.226733pt;}
.yc7{bottom:231.794000pt;}
.y38{bottom:237.733333pt;}
.y13e{bottom:242.400000pt;}
.y66{bottom:242.514000pt;}
.yf0{bottom:243.407333pt;}
.y37{bottom:254.066667pt;}
.yee{bottom:255.020667pt;}
.y13d{bottom:264.400000pt;}
.y86{bottom:266.634000pt;}
.y36{bottom:267.066667pt;}
.yd7{bottom:277.354000pt;}
.ye2{bottom:278.247333pt;}
.y11e{bottom:279.140667pt;}
.y13c{bottom:279.400000pt;}
.y98{bottom:289.860667pt;}
.y7f{bottom:290.754000pt;}
.y35{bottom:294.733333pt;}
.y10b{bottom:300.580667pt;}
.yf6{bottom:301.474000pt;}
.yb9{bottom:302.367333pt;}
.y137{bottom:307.106667pt;}
.yb1{bottom:313.087333pt;}
.ye9{bottom:324.700667pt;}
.ybd{bottom:325.594000pt;}
.yef{bottom:336.314000pt;}
.y33{bottom:336.773333pt;}
.y111{bottom:347.927333pt;}
.yed{bottom:359.540667pt;}
.ycc{bottom:360.434000pt;}
.y2f{bottom:364.773333pt;}
.y85{bottom:372.047333pt;}
.yd6{bottom:382.767333pt;}
.yf2{bottom:383.660667pt;}
.y134{bottom:388.440000pt;}
.y89{bottom:395.274000pt;}
.y2d{bottom:406.773333pt;}
.y7e{bottom:406.887333pt;}
.y115{bottom:407.780667pt;}
.yb0{bottom:418.500667pt;}
.yc1{bottom:430.114000pt;}
.y11d{bottom:431.007333pt;}
.y2c{bottom:434.466667pt;}
.y57{bottom:441.727333pt;}
.y133{bottom:450.133333pt;}
.y10a{bottom:452.447333pt;}
.yd5{bottom:453.340667pt;}
.y2a{bottom:462.466667pt;}
.ycb{bottom:464.954000pt;}
.yec{bottom:476.567333pt;}
.y132{bottom:477.800000pt;}
.y84{bottom:489.074000pt;}
.y28{bottom:490.133333pt;}
.y8a{bottom:499.794000pt;}
.y131{bottom:505.466667pt;}
.y88{bottom:511.407333pt;}
.y7d{bottom:512.300667pt;}
.y24{bottom:516.133333pt;}
.ye8{bottom:523.020667pt;}
.yb8{bottom:523.914000pt;}
.y130{bottom:533.506667pt;}
.ya5{bottom:534.634000pt;}
.y110{bottom:535.527333pt;}
.y4c{bottom:557.860667pt;}
.y20{bottom:558.173333pt;}
.yf5{bottom:558.754000pt;}
.y12f{bottom:561.173333pt;}
.yca{bottom:570.367333pt;}
.y10e{bottom:582.874000pt;}
.y12e{bottom:589.173333pt;}
.y109{bottom:592.700667pt;}
.yeb{bottom:593.594000pt;}
.y159{bottom:596.173333pt;}
.y81{bottom:605.207333pt;}
.y79{bottom:606.100667pt;}
.y1e{bottom:612.173333pt;}
.y158{bottom:612.506667pt;}
.y97{bottom:616.820667pt;}
.y12d{bottom:616.840000pt;}
.yc0{bottom:617.714000pt;}
.ye0{bottom:628.434000pt;}
.y157{bottom:628.866667pt;}
.yb7{bottom:629.327333pt;}
.ye1{bottom:640.047333pt;}
.y1d{bottom:640.866667pt;}
.y12c{bottom:644.533333pt;}
.y156{bottom:645.200000pt;}
.y7{bottom:648.866667pt;}
.y108{bottom:651.660667pt;}
.y155{bottom:661.533333pt;}
.y1c{bottom:662.533333pt;}
.y12b{bottom:672.533333pt;}
.y44{bottom:674.887333pt;}
.y154{bottom:677.866667pt;}
.y1b{bottom:683.866667pt;}
.y153{bottom:694.200000pt;}
.y12a{bottom:700.200000pt;}
.y1a{bottom:705.200000pt;}
.y152{bottom:710.200000pt;}
.y6{bottom:726.200000pt;}
.y151{bottom:726.533333pt;}
.y19{bottom:726.866667pt;}
.y128{bottom:728.200000pt;}
.y150{bottom:742.893333pt;}
.y18{bottom:748.226667pt;}
.y127{bottom:755.893333pt;}
.y14f{bottom:759.226667pt;}
.y17{bottom:769.893333pt;}
.y14e{bottom:775.560000pt;}
.y125{bottom:783.560000pt;}
.y16{bottom:791.226667pt;}
.y14d{bottom:791.893333pt;}
.y14c{bottom:807.893333pt;}
.y124{bottom:809.560000pt;}
.y15{bottom:812.893333pt;}
.y5{bottom:817.560000pt;}
.y14b{bottom:824.226667pt;}
.y14{bottom:834.226667pt;}
.y14a{bottom:840.560000pt;}
.y122{bottom:851.933333pt;}
.y13{bottom:855.933333pt;}
.y149{bottom:856.933333pt;}
.y148{bottom:873.266667pt;}
.y12{bottom:877.266667pt;}
.y147{bottom:889.600000pt;}
.y11{bottom:898.933333pt;}
.y4{bottom:903.600000pt;}
.y146{bottom:905.600000pt;}
.y120{bottom:913.266667pt;}
.y10{bottom:920.266667pt;}
.y145{bottom:921.933333pt;}
.y144{bottom:938.266667pt;}
.yf{bottom:941.600000pt;}
.y143{bottom:954.600000pt;}
.y11f{bottom:958.600000pt;}
.ye{bottom:963.293333pt;}
.y142{bottom:970.960000pt;}
.yd{bottom:984.626667pt;}
.y141{bottom:987.293333pt;}
.y3{bottom:989.626667pt;}
.y9{bottom:994.293333pt;}
.y140{bottom:1003.293333pt;}
.yc{bottom:1009.293333pt;}
.y13f{bottom:1019.626667pt;}
.y8{bottom:1041.626667pt;}
.y1{bottom:1062.293333pt;}
.ya{bottom:1110.333333pt;}
.h32{height:22.333333pt;}
.ha{height:23.000000pt;}
.h37{height:23.226667pt;}
.hb{height:24.666667pt;}
.h6{height:24.700000pt;}
.hc{height:25.000000pt;}
.h3a{height:25.033333pt;}
.h13{height:26.014844pt;}
.h15{height:26.032292pt;}
.h30{height:26.049740pt;}
.h2c{height:30.725781pt;}
.h20{height:33.946667pt;}
.h21{height:34.840000pt;}
.h1{height:38.281250pt;}
.hd{height:39.000000pt;}
.h9{height:39.033333pt;}
.h38{height:39.333333pt;}
.hf{height:42.656250pt;}
.h28{height:45.560000pt;}
.h4{height:45.937500pt;}
.h12{height:46.453333pt;}
.h7{height:46.468750pt;}
.h22{height:47.454844pt;}
.h25{height:47.472292pt;}
.h8{height:51.000000pt;}
.h26{height:51.028177pt;}
.h34{height:57.173333pt;}
.h27{height:58.066667pt;}
.h39{height:58.333333pt;}
.h3b{height:58.700000pt;}
.he{height:63.656250pt;}
.h2d{height:68.786667pt;}
.h5{height:68.906250pt;}
.h1f{height:69.680000pt;}
.h3c{height:78.333333pt;}
.h2b{height:80.400000pt;}
.h24{height:81.293333pt;}
.h23{height:92.013333pt;}
.h19{height:92.906667pt;}
.h1a{height:103.626667pt;}
.h18{height:104.520000pt;}
.h16{height:115.240000pt;}
.h14{height:116.133333pt;}
.h3{height:119.250000pt;}
.h2a{height:126.853333pt;}
.h1b{height:127.746667pt;}
.h33{height:138.466667pt;}
.h29{height:139.360000pt;}
.h36{height:150.080000pt;}
.h31{height:150.973333pt;}
.h35{height:162.586667pt;}
.h2e{height:175.093333pt;}
.h2{height:183.845703pt;}
.h1e{height:186.706667pt;}
.h17{height:198.320000pt;}
.h1c{height:221.546667pt;}
.h2f{height:232.266667pt;}
.h1d{height:233.160000pt;}
.h10{height:793.700800pt;}
.h11{height:794.000000pt;}
.h0{height:1123.333333pt;}
.w8{width:61.640000pt;}
.w9{width:129.533333pt;}
.wc{width:135.786667pt;}
.wa{width:150.973333pt;}
.w3{width:204.440000pt;}
.wd{width:267.773333pt;}
.we{width:374.506667pt;}
.w4{width:437.840000pt;}
.wb{width:473.466667pt;}
.w2{width:644.933333pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.w7{width:979.986667pt;}
.w5{width:1122.519733pt;}
.w6{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xf{left:1.786667pt;}
.x1f{left:2.680000pt;}
.x21{left:3.573333pt;}
.x1e{left:4.466667pt;}
.xc{left:6.000000pt;}
.x8{left:7.333333pt;}
.x12{left:8.933333pt;}
.x28{left:9.826667pt;}
.x1b{left:10.720000pt;}
.x2d{left:11.613333pt;}
.x17{left:12.506667pt;}
.x32{left:13.400000pt;}
.x2b{left:14.293333pt;}
.x18{left:15.186667pt;}
.x9{left:16.666667pt;}
.x3b{left:17.866667pt;}
.x2e{left:18.760000pt;}
.x1a{left:19.653333pt;}
.x1d{left:20.546667pt;}
.x24{left:21.440000pt;}
.x2a{left:22.333333pt;}
.x3a{left:23.226667pt;}
.x3d{left:24.120000pt;}
.x19{left:25.013333pt;}
.x27{left:25.906667pt;}
.x39{left:26.800000pt;}
.x25{left:27.693333pt;}
.x1c{left:28.586667pt;}
.x30{left:29.480000pt;}
.xb{left:31.000000pt;}
.x50{left:32.160000pt;}
.x22{left:33.946667pt;}
.x4e{left:34.840000pt;}
.x31{left:35.733333pt;}
.x26{left:36.626667pt;}
.x23{left:38.413333pt;}
.x36{left:39.306667pt;}
.x3f{left:40.200000pt;}
.x49{left:41.986667pt;}
.x2f{left:42.880000pt;}
.x4f{left:44.666667pt;}
.x45{left:46.453333pt;}
.x38{left:47.346667pt;}
.x34{left:48.240000pt;}
.x20{left:49.133333pt;}
.x47{left:50.026667pt;}
.x3c{left:50.920000pt;}
.x40{left:51.813333pt;}
.x2c{left:52.706667pt;}
.x29{left:53.600000pt;}
.x3e{left:55.386667pt;}
.x2{left:56.699988pt;}
.x44{left:58.960000pt;}
.x37{left:59.853333pt;}
.xd{left:67.000000pt;}
.x1{left:80.699988pt;}
.x7{left:85.033322pt;}
.x13{left:91.120000pt;}
.x14{left:242.986667pt;}
.xa{left:287.800000pt;}
.x5{left:302.799988pt;}
.x52{left:315.799988pt;}
.x53{left:351.133333pt;}
.x6{left:401.839988pt;}
.x4{left:609.599988pt;}
.x3{left:647.266655pt;}
.x46{left:652.133333pt;}
.x42{left:654.813333pt;}
.x41{left:655.706667pt;}
.x15{left:658.386667pt;}
.x43{left:670.000000pt;}
.x35{left:674.466667pt;}
.xe{left:717.346667pt;}
.x33{left:766.480000pt;}
.x10{left:779.880000pt;}
.x11{left:845.093333pt;}
.x48{left:862.960000pt;}
.x4b{left:874.573333pt;}
.x4c{left:876.360000pt;}
.x4a{left:878.146667pt;}
.x51{left:898.693333pt;}
.x4d{left:904.053333pt;}
.x16{left:910.306667pt;}
}




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