
    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_40bb8ed38e1fec87855d0bf6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d6b7346724227d9bd61d061b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_871cf5d808a21eca1fe279d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_9c16a588b157dcb458d26639.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_d28607a99f7ceecef1e2a75d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_c53b0a735ddd47809ed44330.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.767578;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_40bb8ed38e1fec87855d0bf6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b6910c5ceac625b5a4df6d2c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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_66e4fdfe1667bdc98c50b77d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_4f304761d38a2b0cb0c1c5f5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.112305;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_9a3acd8d3bc47f9bbc2c6126.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_8fe4274c3edc7c0c9e520edd.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.767578;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_d76da5be9376cbbb503614b2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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_097dc875c550f020158a8001.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_40bb8ed38e1fec87855d0bf6.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_83b72915b481e49b7d2bc840.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.767578;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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_49d79722d3ea3e4e0a0045b5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;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_1645b78504e290e17282afd7.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.284668;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_8fe4274c3edc7c0c9e520edd.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.311035;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.767578;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;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_e0172bcce0b39781277ee37a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284180;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_40bb8ed38e1fec87855d0bf6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_4c1488bf0bc98f109108c4c6.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.284668;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.767578;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_772586689f40c613a99d1960.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.311035;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_d4ceccf464781dc9f1e8c9d6.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.284180;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_20ac6f10a769df5d422fe9c2.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.284180;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_cb2b0152e4a3890742b54b2b.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.284668;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_4ee26e460f51bdbb10d86ea2.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.311035;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.767578;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_846b51860435f3be8fbafef5.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.284180;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_40bb8ed38e1fec87855d0bf6.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_737fd188b3a08874359514e0.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.284668;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.767578;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_fc2596d5882897bffd3fd6c5.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.284180;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_cdf5ee1e50f9c080e9a951b0.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.311035;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_f09203e833d6e211e1df0fc6.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.284180;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_9fa61ac661e382b09c3ce931.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.284668;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_1c6b399213d0b6d95a6181e3.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.311035;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.767578;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_d0140637ad11129e5d717d99.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.284180;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_40bb8ed38e1fec87855d0bf6.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_9f70d1f4a8c13d545f63239f.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.284668;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.767578;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_831d56a0a95fe02a7673503d.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.311035;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_834b356f5df902fb002ceeae.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.284180;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_64925eea028cfdd57e27702a.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.117188;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_68171c07dc4bb5a4eaa13038.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.284668;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_8fe4274c3edc7c0c9e520edd.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.311035;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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.767578;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_e59012e3803650106ab1454e.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.117188;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_69f8e8e0ded5a9b3bb35d5ac.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.284180;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_40bb8ed38e1fec87855d0bf6.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_54cdfb35e12ab02ea7983a5e.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_ae0d7876bf80b849689bb3cf.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_9667515123f733739fc7f9db.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.117188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_231d55d61d58e380e26da2f0.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.112305;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);}
.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);}
.v9{vertical-align:-82.080000px;}
.v7{vertical-align:-79.920000px;}
.v1{vertical-align:-74.880000px;}
.v4{vertical-align:-73.440000px;}
.v5{vertical-align:-72.000000px;}
.v3{vertical-align:-69.840000px;}
.v8{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.v6{vertical-align:33.120000px;}
.lsc{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.223800px;}
.ls13{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.109200px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.109200px;}
.ls10{letter-spacing:0.150000px;}
.ls9{letter-spacing:0.152400px;}
.ls14{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.305400px;}
.ls11{letter-spacing:0.792000px;}
.ls3{letter-spacing:1.008000px;}
.ls2{letter-spacing:15.120000px;}
.ls0{letter-spacing:16.740000px;}
.ls1{letter-spacing:18.900000px;}
.lsf{letter-spacing:28.224000px;}
.lse{letter-spacing:99.000000px;}
.ls12{letter-spacing:148.296000px;}
.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;}
}
.ws9{word-spacing:-18.792000px;}
.wsd{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.064000px;}
.ws2{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.450800px;}
.ws4{word-spacing:-15.840000px;}
.ws6{word-spacing:-11.836200px;}
.wsa{word-spacing:-11.609280px;}
.wsb{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._23{margin-left:-7.992000px;}
._1e{margin-left:-2.880000px;}
._0{margin-left:-1.391040px;}
._1{width:1.031040px;}
._9{width:2.064960px;}
._2{width:3.960000px;}
._3{width:5.042880px;}
._17{width:6.927840px;}
._16{width:8.064000px;}
._f{width:9.648000px;}
._1b{width:11.376000px;}
._1c{width:12.427200px;}
._6{width:13.440960px;}
._19{width:14.446080px;}
._11{width:15.744960px;}
._1d{width:16.992000px;}
._20{width:19.128000px;}
._24{width:20.160000px;}
._e{width:21.216960px;}
._d{width:22.608000px;}
._c{width:23.904000px;}
._1f{width:25.848000px;}
._18{width:26.928000px;}
._21{width:28.152000px;}
._22{width:29.471040px;}
._8{width:30.864960px;}
._7{width:32.016960px;}
._a{width:34.968960px;}
._4{width:36.360000px;}
._5{width:38.319840px;}
._14{width:42.312960px;}
._b{width:46.632960px;}
._1a{width:57.170880px;}
._12{width:59.112000px;}
._13{width:60.336000px;}
._10{width:63.432000px;}
._15{width:75.792960px;}
._26{width:145.751040px;}
._25{width:236.160000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,128);}
.fs7{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y48{bottom:5.212500px;}
.y2{bottom:5.220000px;}
.y8{bottom:9.900000px;}
.y7{bottom:32.220000px;}
.y47{bottom:51.703500px;}
.y3{bottom:51.840000px;}
.y4b{bottom:57.636000px;}
.y5{bottom:102.096000px;}
.yc9{bottom:120.996000px;}
.yf5{bottom:124.056000px;}
.y15d{bottom:133.596000px;}
.y192{bottom:134.316000px;}
.yf4{bottom:135.396000px;}
.y76{bottom:137.736000px;}
.yc8{bottom:139.896000px;}
.y172{bottom:141.516000px;}
.y1bf{bottom:144.396000px;}
.y11d{bottom:146.376000px;}
.y141{bottom:147.456000px;}
.y1a4{bottom:151.590000px;}
.yf3{bottom:154.650000px;}
.y15c{bottom:157.350000px;}
.ya1{bottom:157.530000px;}
.y11c{bottom:157.710000px;}
.y191{bottom:158.070000px;}
.yc7{bottom:158.790000px;}
.y140{bottom:159.510000px;}
.y75{bottom:161.490000px;}
.y171{bottom:162.750000px;}
.y1be{bottom:168.150000px;}
.yf2{bottom:168.870000px;}
.y11b{bottom:178.410000px;}
.ya0{bottom:180.930000px;}
.y15b{bottom:181.290000px;}
.y190{bottom:182.010000px;}
.y13f{bottom:184.890000px;}
.y74{bottom:185.430000px;}
.y170{bottom:186.510000px;}
.yf1{bottom:192.630000px;}
.y1a3{bottom:193.530000px;}
.yc6{bottom:197.490000px;}
.y11a{bottom:197.670000px;}
.y9f{bottom:204.690000px;}
.y18f{bottom:204.870000px;}
.y15a{bottom:205.050000px;}
.y13e{bottom:208.650000px;}
.y16f{bottom:209.010000px;}
.y1bd{bottom:209.910000px;}
.y73{bottom:210.090000px;}
.y119{bottom:211.890000px;}
.yf0{bottom:216.570000px;}
.yc5{bottom:216.750000px;}
.y1a2{bottom:217.290000px;}
.y18e{bottom:225.930000px;}
.y16e{bottom:227.550000px;}
.yc4{bottom:228.090000px;}
.y9e{bottom:228.450000px;}
.y159{bottom:228.810000px;}
.y13d{bottom:232.590000px;}
.y72{bottom:233.310000px;}
.y1bc{bottom:233.850000px;}
.y118{bottom:235.650000px;}
.yef{bottom:240.330000px;}
.y16d{bottom:241.590000px;}
.yc3{bottom:248.790000px;}
.y18d{bottom:249.690000px;}
.y16c{bottom:251.670000px;}
.y158{bottom:252.030000px;}
.y9d{bottom:252.210000px;}
.y13c{bottom:256.350000px;}
.y71{bottom:257.250000px;}
.y1a1{bottom:259.050000px;}
.y117{bottom:259.590000px;}
.yee{bottom:259.770000px;}
.yc2{bottom:268.050000px;}
.yed{bottom:271.110000px;}
.y18c{bottom:273.495000px;}
.y157{bottom:274.215000px;}
.y1bb{bottom:275.655000px;}
.y9c{bottom:276.195000px;}
.y13b{bottom:280.155000px;}
.y70{bottom:281.055000px;}
.yc1{bottom:282.315000px;}
.y1a0{bottom:282.855000px;}
.y116{bottom:283.395000px;}
.yec{bottom:290.415000px;}
.y156{bottom:297.075000px;}
.y18b{bottom:297.435000px;}
.y1ba{bottom:299.415000px;}
.y9b{bottom:299.955000px;}
.y115{bottom:302.835000px;}
.y13a{bottom:303.915000px;}
.yeb{bottom:304.635000px;}
.y6f{bottom:304.815000px;}
.yc0{bottom:306.075000px;}
.y114{bottom:314.175000px;}
.y155{bottom:318.135000px;}
.y18a{bottom:321.195000px;}
.y9a{bottom:323.715000px;}
.y19f{bottom:324.795000px;}
.ybf{bottom:325.515000px;}
.y139{bottom:327.855000px;}
.y6e{bottom:328.575000px;}
.y113{bottom:333.435000px;}
.ybe{bottom:336.855000px;}
.y1b9{bottom:341.175000px;}
.y154{bottom:341.895000px;}
.y189{bottom:344.955000px;}
.y99{bottom:347.475000px;}
.y112{bottom:347.655000px;}
.y19e{bottom:348.555000px;}
.y138{bottom:351.615000px;}
.y6d{bottom:352.335000px;}
.ybd{bottom:356.115000px;}
.y1b8{bottom:365.115000px;}
.y153{bottom:365.835000px;}
.y188{bottom:368.715000px;}
.ybc{bottom:370.515000px;}
.y98{bottom:371.415000px;}
.y111{bottom:371.595000px;}
.y137{bottom:375.375000px;}
.yea{bottom:376.095000px;}
.y6c{bottom:376.275000px;}
.y152{bottom:389.595000px;}
.y19d{bottom:390.315000px;}
.y46{bottom:392.655000px;}
.ybb{bottom:394.275000px;}
.y97{bottom:395.175000px;}
.y110{bottom:395.355000px;}
.y136{bottom:399.135000px;}
.ye9{bottom:399.855000px;}
.y6b{bottom:400.035000px;}
.y1b7{bottom:406.875000px;}
.y151{bottom:413.355000px;}
.y19c{bottom:414.075000px;}
.y45{bottom:416.415000px;}
.yba{bottom:418.035000px;}
.y96{bottom:418.935000px;}
.y10f{bottom:419.115000px;}
.y135{bottom:421.815000px;}
.ye8{bottom:423.615000px;}
.y6a{bottom:423.795000px;}
.y1b6{bottom:430.635000px;}
.y150{bottom:437.115000px;}
.y19b{bottom:437.475000px;}
.y44{bottom:440.175000px;}
.yb9{bottom:441.795000px;}
.y134{bottom:442.515000px;}
.y95{bottom:442.695000px;}
.y10e{bottom:442.875000px;}
.ye7{bottom:447.555000px;}
.y69{bottom:448.635000px;}
.y1b5{bottom:454.395000px;}
.y19a{bottom:459.435000px;}
.y14f{bottom:461.055000px;}
.y187{bottom:463.395000px;}
.y43{bottom:463.935000px;}
.yb8{bottom:465.555000px;}
.y94{bottom:466.635000px;}
.y10d{bottom:466.815000px;}
.ye6{bottom:466.995000px;}
.y68{bottom:471.855000px;}
.ye5{bottom:478.335000px;}
.y199{bottom:482.295000px;}
.y14e{bottom:484.815000px;}
.yb7{bottom:485.175000px;}
.y186{bottom:485.535000px;}
.y42{bottom:487.875000px;}
.y133{bottom:490.395000px;}
.y10c{bottom:490.575000px;}
.y93{bottom:491.295000px;}
.y67{bottom:495.615000px;}
.y1b4{bottom:496.335000px;}
.yb6{bottom:496.515000px;}
.ye4{bottom:499.035000px;}
.y32{bottom:502.815000px;}
.y16b{bottom:503.355000px;}
.y185{bottom:508.395000px;}
.y14d{bottom:508.575000px;}
.y10b{bottom:510.015000px;}
.y41{bottom:511.635000px;}
.y132{bottom:514.155000px;}
.y92{bottom:514.515000px;}
.yb5{bottom:517.215000px;}
.ye3{bottom:518.295000px;}
.y66{bottom:519.375000px;}
.y1b3{bottom:520.095000px;}
.y10a{bottom:521.355000px;}
.y31{bottom:524.595000px;}
.y16a{bottom:527.115000px;}
.y184{bottom:529.455000px;}
.y14c{bottom:532.335000px;}
.ye2{bottom:532.515000px;}
.y40{bottom:535.395000px;}
.yb4{bottom:536.475000px;}
.y131{bottom:538.095000px;}
.y91{bottom:538.275000px;}
.y109{bottom:542.055000px;}
.y65{bottom:543.315000px;}
.yb3{bottom:550.695000px;}
.y169{bottom:551.055000px;}
.y183{bottom:553.215000px;}
.y14b{bottom:556.125000px;}
.ye1{bottom:556.305000px;}
.y3f{bottom:559.155000px;}
.y108{bottom:561.345000px;}
.y130{bottom:561.885000px;}
.y90{bottom:562.245000px;}
.y30{bottom:564.375000px;}
.y64{bottom:567.105000px;}
.yb2{bottom:574.485000px;}
.y168{bottom:574.845000px;}
.y107{bottom:575.565000px;}
.y182{bottom:575.745000px;}
.y2f{bottom:578.235000px;}
.y14a{bottom:580.065000px;}
.ye0{bottom:580.245000px;}
.y3e{bottom:583.095000px;}
.y12f{bottom:585.645000px;}
.y8f{bottom:586.005000px;}
.y63{bottom:590.865000px;}
.y181{bottom:594.465000px;}
.yb1{bottom:598.245000px;}
.y167{bottom:598.605000px;}
.y106{bottom:599.325000px;}
.y149{bottom:603.825000px;}
.ydf{bottom:604.005000px;}
.y3d{bottom:606.885000px;}
.y2e{bottom:608.145000px;}
.y180{bottom:608.505000px;}
.y12e{bottom:609.405000px;}
.y8e{bottom:609.765000px;}
.y62{bottom:614.625000px;}
.y17f{bottom:618.405000px;}
.yb0{bottom:622.185000px;}
.y166{bottom:622.365000px;}
.y105{bottom:623.265000px;}
.y2d{bottom:624.525000px;}
.y148{bottom:627.585000px;}
.yde{bottom:627.765000px;}
.y3c{bottom:630.645000px;}
.y12d{bottom:633.345000px;}
.y8d{bottom:633.525000px;}
.y61{bottom:638.385000px;}
.y2c{bottom:640.545000px;}
.yaf{bottom:641.625000px;}
.y165{bottom:646.305000px;}
.y104{bottom:647.025000px;}
.y147{bottom:650.085000px;}
.y1b2{bottom:651.345000px;}
.ydd{bottom:651.525000px;}
.yae{bottom:652.965000px;}
.y3b{bottom:654.405000px;}
.y12c{bottom:657.105000px;}
.y8c{bottom:657.285000px;}
.y2b{bottom:659.625000px;}
.y60{bottom:662.325000px;}
.y164{bottom:670.065000px;}
.y103{bottom:670.785000px;}
.y146{bottom:670.965000px;}
.y1b1{bottom:675.105000px;}
.ydc{bottom:675.465000px;}
.y3a{bottom:678.345000px;}
.y2a{bottom:678.525000px;}
.y12b{bottom:680.865000px;}
.y8b{bottom:681.225000px;}
.y5f{bottom:686.085000px;}
.y102{bottom:690.225000px;}
.y145{bottom:692.565000px;}
.yad{bottom:693.645000px;}
.y163{bottom:693.825000px;}
.ydb{bottom:699.225000px;}
.y101{bottom:701.565000px;}
.y39{bottom:702.105000px;}
.y12a{bottom:704.625000px;}
.y8a{bottom:704.985000px;}
.y144{bottom:706.605000px;}
.y5e{bottom:709.845000px;}
.yac{bottom:711.285000px;}
.y29{bottom:715.425000px;}
.y143{bottom:716.685000px;}
.y1b0{bottom:716.865000px;}
.y162{bottom:717.585000px;}
.yda{bottom:718.665000px;}
.y100{bottom:722.265000px;}
.y38{bottom:725.865000px;}
.y129{bottom:728.565000px;}
.y89{bottom:728.745000px;}
.y28{bottom:728.925000px;}
.yd9{bottom:730.005000px;}
.y5d{bottom:733.605000px;}
.yab{bottom:735.045000px;}
.y1af{bottom:740.625000px;}
.yff{bottom:741.525000px;}
.y37{bottom:749.625000px;}
.y128{bottom:751.065000px;}
.yd8{bottom:752.325000px;}
.y88{bottom:754.305000px;}
.yfe{bottom:755.925000px;}
.y27{bottom:757.365000px;}
.y5c{bottom:757.545000px;}
.yaa{bottom:758.985000px;}
.y1ae{bottom:764.565000px;}
.y161{bottom:764.745000px;}
.y198{bottom:765.285000px;}
.yd7{bottom:772.125000px;}
.y26{bottom:772.305000px;}
.y36{bottom:773.565000px;}
.y87{bottom:778.425000px;}
.yfd{bottom:779.685000px;}
.y5b{bottom:781.305000px;}
.ya8{bottom:782.745000px;}
.y160{bottom:786.705000px;}
.y25{bottom:787.245000px;}
.y197{bottom:789.045000px;}
.ya9{bottom:791.025000px;}
.yd6{bottom:793.365000px;}
.y127{bottom:795.885000px;}
.y35{bottom:797.325000px;}
.y86{bottom:802.185000px;}
.y24{bottom:802.365000px;}
.yfc{bottom:803.445000px;}
.y5a{bottom:805.065000px;}
.y1ad{bottom:806.325000px;}
.ya7{bottom:806.505000px;}
.y15f{bottom:809.565000px;}
.y196{bottom:812.805000px;}
.y23{bottom:816.405000px;}
.yd5{bottom:817.125000px;}
.y34{bottom:817.485000px;}
.y126{bottom:819.825000px;}
.yfb{bottom:827.205000px;}
.y85{bottom:828.465000px;}
.y59{bottom:829.725000px;}
.y1ac{bottom:830.085000px;}
.ya6{bottom:830.265000px;}
.y15e{bottom:830.625000px;}
.y195{bottom:836.745000px;}
.y33{bottom:838.185000px;}
.yd4{bottom:840.930000px;}
.y125{bottom:843.630000px;}
.y22{bottom:847.005000px;}
.yfa{bottom:851.190000px;}
.y58{bottom:853.170000px;}
.y1c3{bottom:853.890000px;}
.ya5{bottom:854.250000px;}
.y84{bottom:854.610000px;}
.y194{bottom:859.290000px;}
.y21{bottom:859.425000px;}
.yd3{bottom:864.690000px;}
.y123{bottom:867.390000px;}
.yf9{bottom:870.630000px;}
.y1ab{bottom:871.890000px;}
.y124{bottom:875.670000px;}
.y57{bottom:876.930000px;}
.ya4{bottom:878.010000px;}
.y83{bottom:878.370000px;}
.y193{bottom:880.350000px;}
.yf8{bottom:881.970000px;}
.y17e{bottom:883.050000px;}
.y20{bottom:884.490000px;}
.y16{bottom:886.290000px;}
.yd2{bottom:888.450000px;}
.y122{bottom:891.150000px;}
.y1aa{bottom:895.830000px;}
.y56{bottom:900.690000px;}
.ya3{bottom:901.770000px;}
.y82{bottom:902.130000px;}
.yf7{bottom:902.670000px;}
.y17d{bottom:904.110000px;}
.y1f{bottom:907.890000px;}
.y15{bottom:908.070000px;}
.yd1{bottom:912.390000px;}
.y1c2{bottom:919.590000px;}
.yf6{bottom:921.930000px;}
.y55{bottom:924.450000px;}
.y81{bottom:925.890000px;}
.ya2{bottom:926.430000px;}
.y17c{bottom:927.870000px;}
.y121{bottom:935.430000px;}
.yd0{bottom:936.150000px;}
.y1a9{bottom:937.590000px;}
.y1e{bottom:939.390000px;}
.y14{bottom:944.790000px;}
.y54{bottom:948.390000px;}
.y80{bottom:949.830000px;}
.y17b{bottom:951.810000px;}
.y120{bottom:954.510000px;}
.y142{bottom:958.110000px;}
.ycf{bottom:959.910000px;}
.y1a8{bottom:961.350000px;}
.y1d{bottom:962.790000px;}
.y53{bottom:972.150000px;}
.y7f{bottom:973.590000px;}
.y11f{bottom:975.210000px;}
.y17a{bottom:975.570000px;}
.yce{bottom:983.670000px;}
.y1c1{bottom:985.110000px;}
.y13{bottom:985.470000px;}
.y1c{bottom:994.110000px;}
.y52{bottom:995.910000px;}
.y7e{bottom:997.350000px;}
.y11e{bottom:997.890000px;}
.y179{bottom:999.330000px;}
.y1a7{bottom:1003.110000px;}
.ycd{bottom:1003.290000px;}
.y12{bottom:1005.630000px;}
.ycc{bottom:1014.630000px;}
.y1b{bottom:1017.690000px;}
.y6{bottom:1019.130000px;}
.y51{bottom:1019.670000px;}
.y7d{bottom:1021.110000px;}
.y178{bottom:1023.090000px;}
.y11{bottom:1025.790000px;}
.y1a6{bottom:1027.050000px;}
.ycb{bottom:1035.330000px;}
.y1a{bottom:1037.310000px;}
.y50{bottom:1043.610000px;}
.y7c{bottom:1045.050000px;}
.y10{bottom:1045.950000px;}
.y177{bottom:1047.030000px;}
.y1a5{bottom:1050.810000px;}
.yca{bottom:1054.590000px;}
.y19{bottom:1054.770000px;}
.yf{bottom:1065.210000px;}
.y4f{bottom:1067.370000px;}
.y7b{bottom:1068.810000px;}
.y176{bottom:1070.790000px;}
.y1c0{bottom:1074.570000px;}
.ye{bottom:1080.330000px;}
.y18{bottom:1089.330000px;}
.y4e{bottom:1091.130000px;}
.y7a{bottom:1092.570000px;}
.y175{bottom:1094.550000px;}
.yd{bottom:1095.270000px;}
.yc{bottom:1110.210000px;}
.y79{bottom:1116.330000px;}
.y4d{bottom:1116.690000px;}
.y174{bottom:1117.770000px;}
.y17{bottom:1123.710000px;}
.yb{bottom:1125.330000px;}
.y4c{bottom:1137.780000px;}
.y173{bottom:1139.940000px;}
.ya{bottom:1140.300000px;}
.y9{bottom:1155.240000px;}
.y49{bottom:1189.800000px;}
.y77{bottom:1190.160000px;}
.y1{bottom:1190.340000px;}
.y4a{bottom:1194.300000px;}
.y78{bottom:1197.720000px;}
.y4{bottom:1207.440000px;}
.h2{height:19.620000px;}
.h15{height:20.872500px;}
.h4{height:20.916000px;}
.h10{height:29.678906px;}
.h11{height:35.332031px;}
.h1b{height:40.985156px;}
.h19{height:43.554375px;}
.hf{height:44.518359px;}
.h1a{height:47.321367px;}
.hc{height:47.344922px;}
.h7{height:47.505000px;}
.he{height:50.171484px;}
.h6{height:50.229844px;}
.h9{height:58.651172px;}
.h16{height:64.546875px;}
.h3{height:65.010937px;}
.h8{height:66.757500px;}
.ha{height:67.890938px;}
.h1c{height:70.628906px;}
.h5{height:70.664062px;}
.hd{height:72.562500px;}
.h18{height:75.093750px;}
.h12{height:76.317188px;}
.h13{height:80.464922px;}
.hb{height:121.179375px;}
.h17{height:1262.877945px;}
.h14{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:23.925000px;}
.w3{width:23.940000px;}
.w4{width:163.288500px;}
.w8{width:589.564500px;}
.w2{width:652.770000px;}
.w9{width:892.978125px;}
.w5{width:892.980000px;}
.w6{width:893.250000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x2{left:1.429500px;}
.x4{left:3.060000px;}
.x5{left:34.560000px;}
.x7{left:42.480000px;}
.x6{left:47.881500px;}
.x1{left:104.806500px;}
.x14{left:106.426500px;}
.x15{left:127.656000px;}
.x18{left:138.276000px;}
.x16{left:139.536000px;}
.x19{left:148.896000px;}
.x20{left:180.750000px;}
.x17{left:191.550000px;}
.x1c{left:218.550000px;}
.x12{left:234.210000px;}
.x9{left:246.090000px;}
.x8{left:256.170000px;}
.x1a{left:273.268125px;}
.x1b{left:279.390000px;}
.xa{left:301.935000px;}
.x11{left:332.715000px;}
.x1d{left:343.695000px;}
.xe{left:383.295000px;}
.x10{left:401.655000px;}
.xf{left:425.235000px;}
.xd{left:430.815000px;}
.xc{left:436.935000px;}
.x22{left:452.415000px;}
.xb{left:510.945000px;}
.x13{left:540.465000px;}
.x21{left:584.385000px;}
.x1e{left:589.243125px;}
.x1f{left:595.365000px;}
.x23{left:612.285000px;}
.x24{left:630.105000px;}
.x3{left:783.870000px;}
@media print{
.v9{vertical-align:-72.960000pt;}
.v7{vertical-align:-71.040000pt;}
.v1{vertical-align:-66.560000pt;}
.v4{vertical-align:-65.280000pt;}
.v5{vertical-align:-64.000000pt;}
.v3{vertical-align:-62.080000pt;}
.v8{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.v6{vertical-align:29.440000pt;}
.lsc{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.198933pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.097067pt;}
.ls10{letter-spacing:0.133333pt;}
.ls9{letter-spacing:0.135467pt;}
.ls14{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.271467pt;}
.ls11{letter-spacing:0.704000pt;}
.ls3{letter-spacing:0.896000pt;}
.ls2{letter-spacing:13.440000pt;}
.ls0{letter-spacing:14.880000pt;}
.ls1{letter-spacing:16.800000pt;}
.lsf{letter-spacing:25.088000pt;}
.lse{letter-spacing:88.000000pt;}
.ls12{letter-spacing:131.818667pt;}
.ws9{word-spacing:-16.704000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws2{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.622933pt;}
.ws4{word-spacing:-14.080000pt;}
.ws6{word-spacing:-10.521067pt;}
.wsa{word-spacing:-10.319360pt;}
.wsb{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._23{margin-left:-7.104000pt;}
._1e{margin-left:-2.560000pt;}
._0{margin-left:-1.236480pt;}
._1{width:0.916480pt;}
._9{width:1.835520pt;}
._2{width:3.520000pt;}
._3{width:4.482560pt;}
._17{width:6.158080pt;}
._16{width:7.168000pt;}
._f{width:8.576000pt;}
._1b{width:10.112000pt;}
._1c{width:11.046400pt;}
._6{width:11.947520pt;}
._19{width:12.840960pt;}
._11{width:13.995520pt;}
._1d{width:15.104000pt;}
._20{width:17.002667pt;}
._24{width:17.920000pt;}
._e{width:18.859520pt;}
._d{width:20.096000pt;}
._c{width:21.248000pt;}
._1f{width:22.976000pt;}
._18{width:23.936000pt;}
._21{width:25.024000pt;}
._22{width:26.196480pt;}
._8{width:27.435520pt;}
._7{width:28.459520pt;}
._a{width:31.083520pt;}
._4{width:32.320000pt;}
._5{width:34.062080pt;}
._14{width:37.611520pt;}
._b{width:41.451520pt;}
._1a{width:50.818560pt;}
._12{width:52.544000pt;}
._13{width:53.632000pt;}
._10{width:56.384000pt;}
._15{width:67.371520pt;}
._26{width:129.556480pt;}
._25{width:209.920000pt;}
.fs7{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:4.633333pt;}
.y2{bottom:4.640000pt;}
.y8{bottom:8.800000pt;}
.y7{bottom:28.640000pt;}
.y47{bottom:45.958667pt;}
.y3{bottom:46.080000pt;}
.y4b{bottom:51.232000pt;}
.y5{bottom:90.752000pt;}
.yc9{bottom:107.552000pt;}
.yf5{bottom:110.272000pt;}
.y15d{bottom:118.752000pt;}
.y192{bottom:119.392000pt;}
.yf4{bottom:120.352000pt;}
.y76{bottom:122.432000pt;}
.yc8{bottom:124.352000pt;}
.y172{bottom:125.792000pt;}
.y1bf{bottom:128.352000pt;}
.y11d{bottom:130.112000pt;}
.y141{bottom:131.072000pt;}
.y1a4{bottom:134.746667pt;}
.yf3{bottom:137.466667pt;}
.y15c{bottom:139.866667pt;}
.ya1{bottom:140.026667pt;}
.y11c{bottom:140.186667pt;}
.y191{bottom:140.506667pt;}
.yc7{bottom:141.146667pt;}
.y140{bottom:141.786667pt;}
.y75{bottom:143.546667pt;}
.y171{bottom:144.666667pt;}
.y1be{bottom:149.466667pt;}
.yf2{bottom:150.106667pt;}
.y11b{bottom:158.586667pt;}
.ya0{bottom:160.826667pt;}
.y15b{bottom:161.146667pt;}
.y190{bottom:161.786667pt;}
.y13f{bottom:164.346667pt;}
.y74{bottom:164.826667pt;}
.y170{bottom:165.786667pt;}
.yf1{bottom:171.226667pt;}
.y1a3{bottom:172.026667pt;}
.yc6{bottom:175.546667pt;}
.y11a{bottom:175.706667pt;}
.y9f{bottom:181.946667pt;}
.y18f{bottom:182.106667pt;}
.y15a{bottom:182.266667pt;}
.y13e{bottom:185.466667pt;}
.y16f{bottom:185.786667pt;}
.y1bd{bottom:186.586667pt;}
.y73{bottom:186.746667pt;}
.y119{bottom:188.346667pt;}
.yf0{bottom:192.506667pt;}
.yc5{bottom:192.666667pt;}
.y1a2{bottom:193.146667pt;}
.y18e{bottom:200.826667pt;}
.y16e{bottom:202.266667pt;}
.yc4{bottom:202.746667pt;}
.y9e{bottom:203.066667pt;}
.y159{bottom:203.386667pt;}
.y13d{bottom:206.746667pt;}
.y72{bottom:207.386667pt;}
.y1bc{bottom:207.866667pt;}
.y118{bottom:209.466667pt;}
.yef{bottom:213.626667pt;}
.y16d{bottom:214.746667pt;}
.yc3{bottom:221.146667pt;}
.y18d{bottom:221.946667pt;}
.y16c{bottom:223.706667pt;}
.y158{bottom:224.026667pt;}
.y9d{bottom:224.186667pt;}
.y13c{bottom:227.866667pt;}
.y71{bottom:228.666667pt;}
.y1a1{bottom:230.266667pt;}
.y117{bottom:230.746667pt;}
.yee{bottom:230.906667pt;}
.yc2{bottom:238.266667pt;}
.yed{bottom:240.986667pt;}
.y18c{bottom:243.106667pt;}
.y157{bottom:243.746667pt;}
.y1bb{bottom:245.026667pt;}
.y9c{bottom:245.506667pt;}
.y13b{bottom:249.026667pt;}
.y70{bottom:249.826667pt;}
.yc1{bottom:250.946667pt;}
.y1a0{bottom:251.426667pt;}
.y116{bottom:251.906667pt;}
.yec{bottom:258.146667pt;}
.y156{bottom:264.066667pt;}
.y18b{bottom:264.386667pt;}
.y1ba{bottom:266.146667pt;}
.y9b{bottom:266.626667pt;}
.y115{bottom:269.186667pt;}
.y13a{bottom:270.146667pt;}
.yeb{bottom:270.786667pt;}
.y6f{bottom:270.946667pt;}
.yc0{bottom:272.066667pt;}
.y114{bottom:279.266667pt;}
.y155{bottom:282.786667pt;}
.y18a{bottom:285.506667pt;}
.y9a{bottom:287.746667pt;}
.y19f{bottom:288.706667pt;}
.ybf{bottom:289.346667pt;}
.y139{bottom:291.426667pt;}
.y6e{bottom:292.066667pt;}
.y113{bottom:296.386667pt;}
.ybe{bottom:299.426667pt;}
.y1b9{bottom:303.266667pt;}
.y154{bottom:303.906667pt;}
.y189{bottom:306.626667pt;}
.y99{bottom:308.866667pt;}
.y112{bottom:309.026667pt;}
.y19e{bottom:309.826667pt;}
.y138{bottom:312.546667pt;}
.y6d{bottom:313.186667pt;}
.ybd{bottom:316.546667pt;}
.y1b8{bottom:324.546667pt;}
.y153{bottom:325.186667pt;}
.y188{bottom:327.746667pt;}
.ybc{bottom:329.346667pt;}
.y98{bottom:330.146667pt;}
.y111{bottom:330.306667pt;}
.y137{bottom:333.666667pt;}
.yea{bottom:334.306667pt;}
.y6c{bottom:334.466667pt;}
.y152{bottom:346.306667pt;}
.y19d{bottom:346.946667pt;}
.y46{bottom:349.026667pt;}
.ybb{bottom:350.466667pt;}
.y97{bottom:351.266667pt;}
.y110{bottom:351.426667pt;}
.y136{bottom:354.786667pt;}
.ye9{bottom:355.426667pt;}
.y6b{bottom:355.586667pt;}
.y1b7{bottom:361.666667pt;}
.y151{bottom:367.426667pt;}
.y19c{bottom:368.066667pt;}
.y45{bottom:370.146667pt;}
.yba{bottom:371.586667pt;}
.y96{bottom:372.386667pt;}
.y10f{bottom:372.546667pt;}
.y135{bottom:374.946667pt;}
.ye8{bottom:376.546667pt;}
.y6a{bottom:376.706667pt;}
.y1b6{bottom:382.786667pt;}
.y150{bottom:388.546667pt;}
.y19b{bottom:388.866667pt;}
.y44{bottom:391.266667pt;}
.yb9{bottom:392.706667pt;}
.y134{bottom:393.346667pt;}
.y95{bottom:393.506667pt;}
.y10e{bottom:393.666667pt;}
.ye7{bottom:397.826667pt;}
.y69{bottom:398.786667pt;}
.y1b5{bottom:403.906667pt;}
.y19a{bottom:408.386667pt;}
.y14f{bottom:409.826667pt;}
.y187{bottom:411.906667pt;}
.y43{bottom:412.386667pt;}
.yb8{bottom:413.826667pt;}
.y94{bottom:414.786667pt;}
.y10d{bottom:414.946667pt;}
.ye6{bottom:415.106667pt;}
.y68{bottom:419.426667pt;}
.ye5{bottom:425.186667pt;}
.y199{bottom:428.706667pt;}
.y14e{bottom:430.946667pt;}
.yb7{bottom:431.266667pt;}
.y186{bottom:431.586667pt;}
.y42{bottom:433.666667pt;}
.y133{bottom:435.906667pt;}
.y10c{bottom:436.066667pt;}
.y93{bottom:436.706667pt;}
.y67{bottom:440.546667pt;}
.y1b4{bottom:441.186667pt;}
.yb6{bottom:441.346667pt;}
.ye4{bottom:443.586667pt;}
.y32{bottom:446.946667pt;}
.y16b{bottom:447.426667pt;}
.y185{bottom:451.906667pt;}
.y14d{bottom:452.066667pt;}
.y10b{bottom:453.346667pt;}
.y41{bottom:454.786667pt;}
.y132{bottom:457.026667pt;}
.y92{bottom:457.346667pt;}
.yb5{bottom:459.746667pt;}
.ye3{bottom:460.706667pt;}
.y66{bottom:461.666667pt;}
.y1b3{bottom:462.306667pt;}
.y10a{bottom:463.426667pt;}
.y31{bottom:466.306667pt;}
.y16a{bottom:468.546667pt;}
.y184{bottom:470.626667pt;}
.y14c{bottom:473.186667pt;}
.ye2{bottom:473.346667pt;}
.y40{bottom:475.906667pt;}
.yb4{bottom:476.866667pt;}
.y131{bottom:478.306667pt;}
.y91{bottom:478.466667pt;}
.y109{bottom:481.826667pt;}
.y65{bottom:482.946667pt;}
.yb3{bottom:489.506667pt;}
.y169{bottom:489.826667pt;}
.y183{bottom:491.746667pt;}
.y14b{bottom:494.333333pt;}
.ye1{bottom:494.493333pt;}
.y3f{bottom:497.026667pt;}
.y108{bottom:498.973333pt;}
.y130{bottom:499.453333pt;}
.y90{bottom:499.773333pt;}
.y30{bottom:501.666667pt;}
.y64{bottom:504.093333pt;}
.yb2{bottom:510.653333pt;}
.y168{bottom:510.973333pt;}
.y107{bottom:511.613333pt;}
.y182{bottom:511.773333pt;}
.y2f{bottom:513.986667pt;}
.y14a{bottom:515.613333pt;}
.ye0{bottom:515.773333pt;}
.y3e{bottom:518.306667pt;}
.y12f{bottom:520.573333pt;}
.y8f{bottom:520.893333pt;}
.y63{bottom:525.213333pt;}
.y181{bottom:528.413333pt;}
.yb1{bottom:531.773333pt;}
.y167{bottom:532.093333pt;}
.y106{bottom:532.733333pt;}
.y149{bottom:536.733333pt;}
.ydf{bottom:536.893333pt;}
.y3d{bottom:539.453333pt;}
.y2e{bottom:540.573333pt;}
.y180{bottom:540.893333pt;}
.y12e{bottom:541.693333pt;}
.y8e{bottom:542.013333pt;}
.y62{bottom:546.333333pt;}
.y17f{bottom:549.693333pt;}
.yb0{bottom:553.053333pt;}
.y166{bottom:553.213333pt;}
.y105{bottom:554.013333pt;}
.y2d{bottom:555.133333pt;}
.y148{bottom:557.853333pt;}
.yde{bottom:558.013333pt;}
.y3c{bottom:560.573333pt;}
.y12d{bottom:562.973333pt;}
.y8d{bottom:563.133333pt;}
.y61{bottom:567.453333pt;}
.y2c{bottom:569.373333pt;}
.yaf{bottom:570.333333pt;}
.y165{bottom:574.493333pt;}
.y104{bottom:575.133333pt;}
.y147{bottom:577.853333pt;}
.y1b2{bottom:578.973333pt;}
.ydd{bottom:579.133333pt;}
.yae{bottom:580.413333pt;}
.y3b{bottom:581.693333pt;}
.y12c{bottom:584.093333pt;}
.y8c{bottom:584.253333pt;}
.y2b{bottom:586.333333pt;}
.y60{bottom:588.733333pt;}
.y164{bottom:595.613333pt;}
.y103{bottom:596.253333pt;}
.y146{bottom:596.413333pt;}
.y1b1{bottom:600.093333pt;}
.ydc{bottom:600.413333pt;}
.y3a{bottom:602.973333pt;}
.y2a{bottom:603.133333pt;}
.y12b{bottom:605.213333pt;}
.y8b{bottom:605.533333pt;}
.y5f{bottom:609.853333pt;}
.y102{bottom:613.533333pt;}
.y145{bottom:615.613333pt;}
.yad{bottom:616.573333pt;}
.y163{bottom:616.733333pt;}
.ydb{bottom:621.533333pt;}
.y101{bottom:623.613333pt;}
.y39{bottom:624.093333pt;}
.y12a{bottom:626.333333pt;}
.y8a{bottom:626.653333pt;}
.y144{bottom:628.093333pt;}
.y5e{bottom:630.973333pt;}
.yac{bottom:632.253333pt;}
.y29{bottom:635.933333pt;}
.y143{bottom:637.053333pt;}
.y1b0{bottom:637.213333pt;}
.y162{bottom:637.853333pt;}
.yda{bottom:638.813333pt;}
.y100{bottom:642.013333pt;}
.y38{bottom:645.213333pt;}
.y129{bottom:647.613333pt;}
.y89{bottom:647.773333pt;}
.y28{bottom:647.933333pt;}
.yd9{bottom:648.893333pt;}
.y5d{bottom:652.093333pt;}
.yab{bottom:653.373333pt;}
.y1af{bottom:658.333333pt;}
.yff{bottom:659.133333pt;}
.y37{bottom:666.333333pt;}
.y128{bottom:667.613333pt;}
.yd8{bottom:668.733333pt;}
.y88{bottom:670.493333pt;}
.yfe{bottom:671.933333pt;}
.y27{bottom:673.213333pt;}
.y5c{bottom:673.373333pt;}
.yaa{bottom:674.653333pt;}
.y1ae{bottom:679.613333pt;}
.y161{bottom:679.773333pt;}
.y198{bottom:680.253333pt;}
.yd7{bottom:686.333333pt;}
.y26{bottom:686.493333pt;}
.y36{bottom:687.613333pt;}
.y87{bottom:691.933333pt;}
.yfd{bottom:693.053333pt;}
.y5b{bottom:694.493333pt;}
.ya8{bottom:695.773333pt;}
.y160{bottom:699.293333pt;}
.y25{bottom:699.773333pt;}
.y197{bottom:701.373333pt;}
.ya9{bottom:703.133333pt;}
.yd6{bottom:705.213333pt;}
.y127{bottom:707.453333pt;}
.y35{bottom:708.733333pt;}
.y86{bottom:713.053333pt;}
.y24{bottom:713.213333pt;}
.yfc{bottom:714.173333pt;}
.y5a{bottom:715.613333pt;}
.y1ad{bottom:716.733333pt;}
.ya7{bottom:716.893333pt;}
.y15f{bottom:719.613333pt;}
.y196{bottom:722.493333pt;}
.y23{bottom:725.693333pt;}
.yd5{bottom:726.333333pt;}
.y34{bottom:726.653333pt;}
.y126{bottom:728.733333pt;}
.yfb{bottom:735.293333pt;}
.y85{bottom:736.413333pt;}
.y59{bottom:737.533333pt;}
.y1ac{bottom:737.853333pt;}
.ya6{bottom:738.013333pt;}
.y15e{bottom:738.333333pt;}
.y195{bottom:743.773333pt;}
.y33{bottom:745.053333pt;}
.yd4{bottom:747.493333pt;}
.y125{bottom:749.893333pt;}
.y22{bottom:752.893333pt;}
.yfa{bottom:756.613333pt;}
.y58{bottom:758.373333pt;}
.y1c3{bottom:759.013333pt;}
.ya5{bottom:759.333333pt;}
.y84{bottom:759.653333pt;}
.y194{bottom:763.813333pt;}
.y21{bottom:763.933333pt;}
.yd3{bottom:768.613333pt;}
.y123{bottom:771.013333pt;}
.yf9{bottom:773.893333pt;}
.y1ab{bottom:775.013333pt;}
.y124{bottom:778.373333pt;}
.y57{bottom:779.493333pt;}
.ya4{bottom:780.453333pt;}
.y83{bottom:780.773333pt;}
.y193{bottom:782.533333pt;}
.yf8{bottom:783.973333pt;}
.y17e{bottom:784.933333pt;}
.y20{bottom:786.213333pt;}
.y16{bottom:787.813333pt;}
.yd2{bottom:789.733333pt;}
.y122{bottom:792.133333pt;}
.y1aa{bottom:796.293333pt;}
.y56{bottom:800.613333pt;}
.ya3{bottom:801.573333pt;}
.y82{bottom:801.893333pt;}
.yf7{bottom:802.373333pt;}
.y17d{bottom:803.653333pt;}
.y1f{bottom:807.013333pt;}
.y15{bottom:807.173333pt;}
.yd1{bottom:811.013333pt;}
.y1c2{bottom:817.413333pt;}
.yf6{bottom:819.493333pt;}
.y55{bottom:821.733333pt;}
.y81{bottom:823.013333pt;}
.ya2{bottom:823.493333pt;}
.y17c{bottom:824.773333pt;}
.y121{bottom:831.493333pt;}
.yd0{bottom:832.133333pt;}
.y1a9{bottom:833.413333pt;}
.y1e{bottom:835.013333pt;}
.y14{bottom:839.813333pt;}
.y54{bottom:843.013333pt;}
.y80{bottom:844.293333pt;}
.y17b{bottom:846.053333pt;}
.y120{bottom:848.453333pt;}
.y142{bottom:851.653333pt;}
.ycf{bottom:853.253333pt;}
.y1a8{bottom:854.533333pt;}
.y1d{bottom:855.813333pt;}
.y53{bottom:864.133333pt;}
.y7f{bottom:865.413333pt;}
.y11f{bottom:866.853333pt;}
.y17a{bottom:867.173333pt;}
.yce{bottom:874.373333pt;}
.y1c1{bottom:875.653333pt;}
.y13{bottom:875.973333pt;}
.y1c{bottom:883.653333pt;}
.y52{bottom:885.253333pt;}
.y7e{bottom:886.533333pt;}
.y11e{bottom:887.013333pt;}
.y179{bottom:888.293333pt;}
.y1a7{bottom:891.653333pt;}
.ycd{bottom:891.813333pt;}
.y12{bottom:893.893333pt;}
.ycc{bottom:901.893333pt;}
.y1b{bottom:904.613333pt;}
.y6{bottom:905.893333pt;}
.y51{bottom:906.373333pt;}
.y7d{bottom:907.653333pt;}
.y178{bottom:909.413333pt;}
.y11{bottom:911.813333pt;}
.y1a6{bottom:912.933333pt;}
.ycb{bottom:920.293333pt;}
.y1a{bottom:922.053333pt;}
.y50{bottom:927.653333pt;}
.y7c{bottom:928.933333pt;}
.y10{bottom:929.733333pt;}
.y177{bottom:930.693333pt;}
.y1a5{bottom:934.053333pt;}
.yca{bottom:937.413333pt;}
.y19{bottom:937.573333pt;}
.yf{bottom:946.853333pt;}
.y4f{bottom:948.773333pt;}
.y7b{bottom:950.053333pt;}
.y176{bottom:951.813333pt;}
.y1c0{bottom:955.173333pt;}
.ye{bottom:960.293333pt;}
.y18{bottom:968.293333pt;}
.y4e{bottom:969.893333pt;}
.y7a{bottom:971.173333pt;}
.y175{bottom:972.933333pt;}
.yd{bottom:973.573333pt;}
.yc{bottom:986.853333pt;}
.y79{bottom:992.293333pt;}
.y4d{bottom:992.613333pt;}
.y174{bottom:993.573333pt;}
.y17{bottom:998.853333pt;}
.yb{bottom:1000.293333pt;}
.y4c{bottom:1011.360000pt;}
.y173{bottom:1013.280000pt;}
.ya{bottom:1013.600000pt;}
.y9{bottom:1026.880000pt;}
.y49{bottom:1057.600000pt;}
.y77{bottom:1057.920000pt;}
.y1{bottom:1058.080000pt;}
.y4a{bottom:1061.600000pt;}
.y78{bottom:1064.640000pt;}
.y4{bottom:1073.280000pt;}
.h2{height:17.440000pt;}
.h15{height:18.553333pt;}
.h4{height:18.592000pt;}
.h10{height:26.381250pt;}
.h11{height:31.406250pt;}
.h1b{height:36.431250pt;}
.h19{height:38.715000pt;}
.hf{height:39.571875pt;}
.h1a{height:42.063437pt;}
.hc{height:42.084375pt;}
.h7{height:42.226667pt;}
.he{height:44.596875pt;}
.h6{height:44.648750pt;}
.h9{height:52.134375pt;}
.h16{height:57.375000pt;}
.h3{height:57.787500pt;}
.h8{height:59.340000pt;}
.ha{height:60.347500pt;}
.h1c{height:62.781250pt;}
.h5{height:62.812500pt;}
.hd{height:64.500000pt;}
.h18{height:66.750000pt;}
.h12{height:67.837500pt;}
.h13{height:71.524375pt;}
.hb{height:107.715000pt;}
.h17{height:1122.558173pt;}
.h14{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:21.266667pt;}
.w3{width:21.280000pt;}
.w4{width:145.145333pt;}
.w8{width:524.057333pt;}
.w2{width:580.240000pt;}
.w9{width:793.758333pt;}
.w5{width:793.760000pt;}
.w6{width:794.000000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x2{left:1.270667pt;}
.x4{left:2.720000pt;}
.x5{left:30.720000pt;}
.x7{left:37.760000pt;}
.x6{left:42.561333pt;}
.x1{left:93.161333pt;}
.x14{left:94.601333pt;}
.x15{left:113.472000pt;}
.x18{left:122.912000pt;}
.x16{left:124.032000pt;}
.x19{left:132.352000pt;}
.x20{left:160.666667pt;}
.x17{left:170.266667pt;}
.x1c{left:194.266667pt;}
.x12{left:208.186667pt;}
.x9{left:218.746667pt;}
.x8{left:227.706667pt;}
.x1a{left:242.905000pt;}
.x1b{left:248.346667pt;}
.xa{left:268.386667pt;}
.x11{left:295.746667pt;}
.x1d{left:305.506667pt;}
.xe{left:340.706667pt;}
.x10{left:357.026667pt;}
.xf{left:377.986667pt;}
.xd{left:382.946667pt;}
.xc{left:388.386667pt;}
.x22{left:402.146667pt;}
.xb{left:454.173333pt;}
.x13{left:480.413333pt;}
.x21{left:519.453333pt;}
.x1e{left:523.771667pt;}
.x1f{left:529.213333pt;}
.x23{left:544.253333pt;}
.x24{left:560.093333pt;}
.x3{left:696.773333pt;}
}




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