
    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_ab2f6c4f0ffd8ffcf33281ae.woff')format("woff");}.ff1{font-family:ff1;line-height:0.946671;font-style:normal;font-weight: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_96a4330a4d09957b6f78fe06.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;font-style:normal;font-weight: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_3e8a7e8853bc7b0080e5cf99.woff')format("woff");}.ff3{font-family:ff3;line-height:1.127000;font-style:normal;font-weight: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_c341c3189a3731058ccedeb7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.877000;font-style:normal;font-weight: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_9484da6ab23f417560c9703b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.127000;font-style:normal;font-weight: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_1cb6871e04024d1605e213d3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1c16db64eaca71534f72812a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.734000;font-style:normal;font-weight: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_ec19975ed1823fda4e0492b7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.729004;font-style:normal;font-weight: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_bdd94e521637809f184517ed.woff')format("woff");}.ff9{font-family:ff9;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_890606508c36d1da415ff7d7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.042000;font-style:normal;font-weight: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_13eb7eed3c61a3d6ce6622a3.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ec19975ed1823fda4e0492b7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.729004;font-style:normal;font-weight: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_e4df77573b7e0cc8020dc38a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.738000;font-style:normal;font-weight: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_e503083ae62aa3b58cbdf790.woff')format("woff");}.ffe{font-family:ffe;line-height:1.005371;font-style:normal;font-weight: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_89cdcb0b3f3737548df06b9d.woff')format("woff");}.fff{font-family:fff;line-height:1.043000;font-style:normal;font-weight: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_577c272a6e451bc365824e55.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5c76a666ff161e85ccaf307c.woff')format("woff");}.ff11{font-family:ff11;line-height:1.077637;font-style:normal;font-weight: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_b25484f3ead3a34d213e21ec.woff')format("woff");}.ff12{font-family:ff12;line-height:0.729004;font-style:normal;font-weight: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_dbca357a215a4cb55efe764f.woff')format("woff");}.ff13{font-family:ff13;line-height:0.972000;font-style:normal;font-weight: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_e4df77573b7e0cc8020dc38a.woff')format("woff");}.ff14{font-family:ff14;line-height:0.738000;font-style:normal;font-weight: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_01be063cf0126ff279fbc3b1.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a55533b537fa8a81ee142a6f.woff')format("woff");}.ff16{font-family:ff16;line-height:1.127000;font-style:normal;font-weight: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_5739d138c40f68555997b0bc.woff')format("woff");}.ff17{font-family:ff17;line-height:1.086426;font-style:normal;font-weight: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_ec19975ed1823fda4e0492b7.woff')format("woff");}.ff18{font-family:ff18;line-height:0.729004;font-style:normal;font-weight: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_c242665f04051fdd7dc321a2.woff')format("woff");}.ff19{font-family:ff19;line-height:1.127000;font-style:normal;font-weight: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_98a4d2d765d319e34e8ec30a.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_ec19975ed1823fda4e0492b7.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.729004;font-style:normal;font-weight: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_897186b24f3765b784361f33.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.972000;font-style:normal;font-weight: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_b25484f3ead3a34d213e21ec.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.729004;font-style:normal;font-weight: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_b636c8f4b895424b96abd1c4.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.086426;font-style:normal;font-weight: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_328d3bc584997c03d6b52e48.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.047000;font-style:normal;font-weight: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_67b36918eff4c3d506081af7.woff')format("woff");}.ff20{font-family:ff20;line-height:1.127000;font-style:normal;font-weight: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_6aebc37ae96697e23a77dcb3.woff')format("woff");}.ff21{font-family:ff21;line-height:1.000488;font-style:normal;font-weight: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_ec19975ed1823fda4e0492b7.woff')format("woff");}.ff22{font-family:ff22;line-height:0.729004;font-style:normal;font-weight: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_d18578675e63e4f2d2e49383.woff')format("woff");}.ff23{font-family:ff23;line-height:1.127000;font-style:normal;font-weight: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_807b2be03fba8bf50377401d.woff')format("woff");}.ff24{font-family:ff24;line-height:1.086426;font-style:normal;font-weight: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_1c16db64eaca71534f72812a.woff')format("woff");}.ff25{font-family:ff25;line-height:0.734000;font-style:normal;font-weight: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_ec19975ed1823fda4e0492b7.woff')format("woff");}.ff26{font-family:ff26;line-height:0.729004;font-style:normal;font-weight: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_df843d524cb9ae9b72b8f81f.woff')format("woff");}.ff27{font-family:ff27;line-height:0.972000;font-style:normal;font-weight: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_64ad8384d05344a2dba3418b.woff')format("woff");}.ff28{font-family:ff28;line-height:1.043000;font-style:normal;font-weight: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_4a639b0042045b69654f411e.woff')format("woff");}.ff29{font-family:ff29;line-height:1.011719;font-style:normal;font-weight: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_6a60dfdb208d38267c66556f.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.729004;font-style:normal;font-weight: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_b35ae3577c94aaf81fc7e83e.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.011719;font-style:normal;font-weight: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_e4df77573b7e0cc8020dc38a.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.738000;font-style:normal;font-weight: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_cdd55d13f73a50e0da0260d3.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.127000;font-style:normal;font-weight: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_ec19975ed1823fda4e0492b7.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.729004;font-style:normal;font-weight: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_1ff85d6f8f3faf524688752f.woff')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_ec19975ed1823fda4e0492b7.woff')format("woff");}.ff30{font-family:ff30;line-height:0.729004;font-style:normal;font-weight: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_72fa93b28bcd6cf89d2958eb.woff')format("woff");}.ff31{font-family:ff31;line-height:1.127000;font-style:normal;font-weight: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_71d22de8d8394aa310979dd0.woff')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_ec19975ed1823fda4e0492b7.woff')format("woff");}.ff33{font-family:ff33;line-height:0.729004;font-style:normal;font-weight: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_d838786e372878a3269400a0.woff')format("woff");}.ff34{font-family:ff34;line-height:0.977000;font-style:normal;font-weight: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_f9b1cd231f24e73cbc55c20e.woff')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_ec19975ed1823fda4e0492b7.woff')format("woff");}.ff36{font-family:ff36;line-height:0.729004;font-style:normal;font-weight: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_d5eaef0c6db8cdc764ab185f.woff')format("woff");}.ff37{font-family:ff37;line-height:0.973000;font-style:normal;font-weight: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_3aca8624b38e9239036e3ca8.woff')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_ec19975ed1823fda4e0492b7.woff')format("woff");}.ff39{font-family:ff39;line-height:0.729004;font-style:normal;font-weight: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_f048870f36ee8408ba7d1440.woff')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_ec19975ed1823fda4e0492b7.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.729004;font-style:normal;font-weight: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_8d9834b942f1f40bdf61628a.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.248258,-0.029458,0.029458,0.248258,0,0);-ms-transform:matrix(0.248258,-0.029458,0.029458,0.248258,0,0);-webkit-transform:matrix(0.248258,-0.029458,0.029458,0.248258,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.944920px;}
.ls3{letter-spacing:2.944929px;}
.ls2{letter-spacing:2.953859px;}
.ls4{letter-spacing:2.953873px;}
.ls5{letter-spacing:2.953918px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-408.452399px;}
.wsc{word-spacing:-150.221595px;}
.wsb{word-spacing:-144.234349px;}
.ws6{word-spacing:-93.691689px;}
.ws1a{word-spacing:-90.024925px;}
.ws1{word-spacing:-83.015873px;}
.ws20{word-spacing:-75.020771px;}
.ws2{word-spacing:-74.267950px;}
.ws3{word-spacing:-45.301874px;}
.ws1f{word-spacing:-43.642865px;}
.wsd{word-spacing:-30.293711px;}
.ws1c{word-spacing:-30.257401px;}
.ws14{word-spacing:-29.086322px;}
.ws1d{word-spacing:-28.992393px;}
.ws10{word-spacing:-28.441774px;}
.ws11{word-spacing:-28.404707px;}
.ws8{word-spacing:-27.833539px;}
.ws15{word-spacing:-24.202288px;}
.ws4{word-spacing:-20.571037px;}
.ws18{word-spacing:-18.192569px;}
.ws13{word-spacing:-17.820364px;}
.ws16{word-spacing:-0.150042px;}
.ws1b{word-spacing:-0.143769px;}
.wse{word-spacing:-0.141038px;}
.ws1e{word-spacing:-0.140858px;}
.ws12{word-spacing:-0.140854px;}
.ws7{word-spacing:-0.138022px;}
.ws9{word-spacing:-0.120015px;}
.ws19{word-spacing:-0.090214px;}
.wsf{word-spacing:-0.088368px;}
.wsa{word-spacing:-0.061988px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:275.588232px;}
._f{margin-left:-14.330774px;}
._10{margin-left:-11.523072px;}
._0{margin-left:-8.627061px;}
._2{margin-left:-6.589197px;}
._4{margin-left:-5.507032px;}
._3{margin-left:-3.321659px;}
._9{margin-left:-2.291928px;}
._1{margin-left:-1.101705px;}
._6{width:2.429644px;}
._5{width:3.474137px;}
._c{width:26.238622px;}
._b{width:34.254803px;}
._8{width:67.221314px;}
._d{width:72.880307px;}
._11{width:78.309160px;}
._a{width:102.825247px;}
._e{width:130.078301px;}
._7{width:229.282375px;}
.fc2{color:rgb(254,45,173);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:61.988358px;}
.fs17{font-size:72.027138px;}
.fsc{font-size:85.982396px;}
.fs14{font-size:88.368291px;}
.fs11{font-size:90.033923px;}
.fs18{font-size:90.213995px;}
.fs7{font-size:102.008434px;}
.fs1{font-size:108.040707px;}
.fs6{font-size:120.015219px;}
.fsa{font-size:138.022003px;}
.fs15{font-size:140.551186px;}
.fs16{font-size:140.854333px;}
.fs1a{font-size:140.858076px;}
.fs13{font-size:141.038140px;}
.fs19{font-size:143.768572px;}
.fse{font-size:144.234349px;}
.fs12{font-size:150.041541px;}
.fsf{font-size:150.221595px;}
.fs10{font-size:156.208860px;}
.fs0{font-size:156.799414px;}
.fsb{font-size:162.241133px;}
.fs3{font-size:168.048326px;}
.fs5{font-size:168.408452px;}
.fs4{font-size:276.089033px;}
.fs2{font-size:318.089867px;}
.fs9{font-size:348.296243px;}
.fs8{font-size:1518.410405px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y10b{bottom:23.563764px;}
.y4{bottom:24.569813px;}
.ya9{bottom:25.719346px;}
.ydf{bottom:27.493159px;}
.yb{bottom:29.260981px;}
.y8{bottom:29.261031px;}
.yd{bottom:29.261075px;}
.y66{bottom:39.549898px;}
.y16f{bottom:43.422309px;}
.y11a{bottom:47.851571px;}
.yd0{bottom:48.118171px;}
.y52{bottom:48.432574px;}
.y47{bottom:49.518657px;}
.y45{bottom:49.518672px;}
.y14a{bottom:49.817905px;}
.y94{bottom:50.348763px;}
.y49{bottom:50.644081px;}
.y4b{bottom:50.644096px;}
.yed{bottom:54.323738px;}
.y31{bottom:55.176201px;}
.yde{bottom:69.133848px;}
.y51{bottom:69.815631px;}
.ya8{bottom:75.238004px;}
.y10a{bottom:75.333269px;}
.y65{bottom:89.068555px;}
.ycf{bottom:89.758860px;}
.y50{bottom:91.198687px;}
.y30{bottom:93.440618px;}
.y16e{bottom:95.191815px;}
.y119{bottom:97.244735px;}
.y93{bottom:98.948365px;}
.y149{bottom:99.211069px;}
.yfe{bottom:101.715280px;}
.yec{bottom:102.923340px;}
.y152{bottom:108.145608px;}
.ydd{bottom:110.774538px;}
.y4f{bottom:112.581744px;}
.ya7{bottom:124.756661px;}
.y109{bottom:127.102775px;}
.yce{bottom:131.399550px;}
.ye{bottom:131.573326px;}
.y2f{bottom:131.705035px;}
.y4e{bottom:135.090225px;}
.y64{bottom:138.587213px;}
.y118{bottom:146.637899px;}
.y16d{bottom:146.961320px;}
.y92{bottom:147.547967px;}
.y148{bottom:148.604233px;}
.yfd{bottom:150.314882px;}
.yeb{bottom:151.522942px;}
.ydc{bottom:152.415227px;}
.y7d{bottom:155.639392px;}
.y151{bottom:156.745210px;}
.y11{bottom:161.770329px;}
.y133{bottom:169.339126px;}
.y2e{bottom:169.969453px;}
.ycd{bottom:173.040239px;}
.ya6{bottom:174.275319px;}
.y15a{bottom:177.820465px;}
.y108{bottom:178.872280px;}
.y75{bottom:182.415116px;}
.y164{bottom:184.014363px;}
.yd2{bottom:185.419903px;}
.y63{bottom:188.105870px;}
.y8f{bottom:192.323179px;}
.ydb{bottom:194.055916px;}
.y117{bottom:196.031063px;}
.y91{bottom:196.147569px;}
.y43{bottom:197.337995px;}
.y147{bottom:197.997397px;}
.y16c{bottom:198.730826px;}
.yfc{bottom:198.914484px;}
.yea{bottom:200.122544px;}
.y181{bottom:202.554361px;}
.y7c{bottom:204.134398px;}
.y150{bottom:205.344812px;}
.y2d{bottom:208.233870px;}
.ycc{bottom:214.680928px;}
.y132{bottom:217.938728px;}
.y3{bottom:218.917982px;}
.ya5{bottom:223.793976px;}
.y159{bottom:229.589970px;}
.y107{bottom:230.641786px;}
.y74{bottom:230.808349px;}
.yda{bottom:235.696605px;}
.y163{bottom:235.783869px;}
.y62{bottom:237.624528px;}
.y8e{bottom:240.716413px;}
.y42{bottom:244.605804px;}
.y90{bottom:244.747171px;}
.y116{bottom:245.424227px;}
.y2c{bottom:246.498287px;}
.y146{bottom:247.390561px;}
.yfb{bottom:247.514086px;}
.ye9{bottom:248.722146px;}
.y16b{bottom:250.500331px;}
.y7b{bottom:252.629404px;}
.y14f{bottom:253.944414px;}
.ycb{bottom:256.321617px;}
.y131{bottom:266.538330px;}
.yd1{bottom:268.701282px;}
.y2{bottom:273.019187px;}
.yd9{bottom:277.337295px;}
.y180{bottom:278.708098px;}
.y73{bottom:279.201583px;}
.y9a{bottom:280.581102px;}
.y106{bottom:282.411291px;}
.y2b{bottom:284.762704px;}
.y162{bottom:287.553374px;}
.y8d{bottom:289.109646px;}
.y41{bottom:291.873614px;}
.y115{bottom:294.817391px;}
.yfa{bottom:296.113689px;}
.y145{bottom:296.783725px;}
.ye8{bottom:297.321749px;}
.yca{bottom:297.962306px;}
.y7a{bottom:301.124409px;}
.y14e{bottom:302.544016px;}
.y130{bottom:315.137932px;}
.y61{bottom:316.920184px;}
.yd8{bottom:318.977984px;}
.y2a{bottom:323.027121px;}
.yc{bottom:325.565690px;}
.y72{bottom:327.594816px;}
.y15{bottom:329.878024px;}
.y17f{bottom:330.477604px;}
.y105{bottom:334.180797px;}
.yb0{bottom:337.368099px;}
.y8c{bottom:337.502880px;}
.y40{bottom:339.141423px;}
.y161{bottom:339.322880px;}
.yc9{bottom:339.602996px;}
.y114{bottom:344.210555px;}
.yf9{bottom:344.713291px;}
.y144{bottom:346.176889px;}
.y79{bottom:349.619415px;}
.y14d{bottom:351.143618px;}
.yff{bottom:356.526892px;}
.yd7{bottom:360.618673px;}
.y29{bottom:361.291538px;}
.y12f{bottom:363.737534px;}
.y14{bottom:380.522105px;}
.yc8{bottom:381.243685px;}
.y17e{bottom:382.247109px;}
.y104{bottom:385.950302px;}
.y3f{bottom:386.409233px;}
.yaf{bottom:386.886757px;}
.y67{bottom:389.692914px;}
.y160{bottom:391.092385px;}
.yf8{bottom:393.312893px;}
.y113{bottom:393.603719px;}
.y28{bottom:399.555955px;}
.y14c{bottom:399.743220px;}
.ye7{bottom:399.744499px;}
.yd6{bottom:402.259362px;}
.y35{bottom:407.963868px;}
.y59{bottom:418.670748px;}
.yc7{bottom:422.884374px;}
.y3e{bottom:433.677042px;}
.y17d{bottom:434.016615px;}
.yae{bottom:436.405414px;}
.y103{bottom:437.719808px;}
.y27{bottom:437.820372px;}
.y99{bottom:438.682847px;}
.yf7{bottom:441.912495px;}
.yd5{bottom:443.900052px;}
.y13b{bottom:444.307049px;}
.y8b{bottom:446.330254px;}
.y14b{bottom:448.342822px;}
.ye6{bottom:449.137663px;}
.yc6{bottom:464.525063px;}
.y58{bottom:468.189405px;}
.y26{bottom:476.084790px;}
.y4a{bottom:480.702565px;}
.y48{bottom:481.828004px;}
.y12e{bottom:481.960311px;}
.y127{bottom:482.947989px;}
.yb9{bottom:483.792052px;}
.y44{bottom:485.711100px;}
.yad{bottom:485.924072px;}
.y102{bottom:489.489313px;}
.y34{bottom:490.119822px;}
.yf6{bottom:490.512097px;}
.y13a{bottom:493.700213px;}
.y8a{bottom:494.723487px;}
.ye5{bottom:498.530827px;}
.yc5{bottom:506.165753px;}
.y165{bottom:512.917516px;}
.y25{bottom:514.349207px;}
.y57{bottom:517.708063px;}
.ya{bottom:519.558220px;}
.y98{bottom:520.838801px;}
.yb8{bottom:525.432742px;}
.y12d{bottom:531.353475px;}
.y126{bottom:531.547591px;}
.yac{bottom:535.442729px;}
.y17c{bottom:537.555626px;}
.yf5{bottom:539.111699px;}
.y101{bottom:541.258819px;}
.y139{bottom:543.093377px;}
.y89{bottom:543.116721px;}
.y13{bottom:547.097069px;}
.yc4{bottom:547.806442px;}
.y24{bottom:552.613624px;}
.yb7{bottom:567.073431px;}
.y56{bottom:567.226720px;}
.y46{bottom:574.674120px;}
.y125{bottom:580.147194px;}
.y12c{bottom:580.746639px;}
.yab{bottom:584.961387px;}
.y71{bottom:585.791353px;}
.yf4{bottom:587.711301px;}
.y17b{bottom:589.325131px;}
.yc3{bottom:589.447131px;}
.y23{bottom:590.878041px;}
.y88{bottom:591.509954px;}
.y138{bottom:592.486541px;}
.y6{bottom:601.679997px;}
.y86{bottom:602.844258px;}
.y100{bottom:605.707260px;}
.yb6{bottom:608.714120px;}
.ye4{bottom:611.127011px;}
.y55{bottom:616.745378px;}
.y124{bottom:628.746796px;}
.y22{bottom:629.142458px;}
.y12b{bottom:630.139803px;}
.yc2{bottom:631.087820px;}
.y70{bottom:634.184586px;}
.yaa{bottom:634.480044px;}
.yf3{bottom:636.310903px;}
.y87{bottom:639.903187px;}
.y17a{bottom:641.094637px;}
.y143{bottom:641.577393px;}
.y137{bottom:641.879705px;}
.y15f{bottom:643.746014px;}
.yb5{bottom:650.354809px;}
.y85{bottom:651.237491px;}
.ye3{bottom:659.726613px;}
.y54{bottom:666.264035px;}
.y21{bottom:667.406875px;}
.yc1{bottom:672.728509px;}
.y123{bottom:677.346398px;}
.y12a{bottom:679.532967px;}
.y6f{bottom:682.577820px;}
.yf2{bottom:684.910505px;}
.y142{bottom:689.970626px;}
.y9d{bottom:691.267202px;}
.y136{bottom:691.272869px;}
.yb4{bottom:691.995498px;}
.y179{bottom:692.864142px;}
.y33{bottom:694.720807px;}
.y15e{bottom:695.515520px;}
.y84{bottom:699.630724px;}
.y20{bottom:705.671292px;}
.ye2{bottom:708.326215px;}
.y112{bottom:711.584674px;}
.y5{bottom:711.971552px;}
.y9{bottom:713.509972px;}
.yc0{bottom:714.369199px;}
.y53{bottom:715.782693px;}
.y3d{bottom:717.283898px;}
.y6e{bottom:721.045824px;}
.y122{bottom:725.946000px;}
.y129{bottom:728.926131px;}
.yf1{bottom:733.510107px;}
.yb3{bottom:733.636188px;}
.y141{bottom:738.363859px;}
.y135{bottom:740.666033px;}
.y12{bottom:743.706935px;}
.y1f{bottom:743.935709px;}
.y178{bottom:744.633648px;}
.y15d{bottom:747.285026px;}
.y83{bottom:748.023958px;}
.ya4{bottom:748.446696px;}
.ybf{bottom:756.009888px;}
.y111{bottom:763.354179px;}
.y3c{bottom:764.551708px;}
.y60{bottom:765.870650px;}
.y6d{bottom:769.439057px;}
.y121{bottom:774.545602px;}
.yb2{bottom:775.276877px;}
.y128{bottom:778.319295px;}
.yf0{bottom:782.109709px;}
.y1e{bottom:782.200127px;}
.y140{bottom:786.757093px;}
.y134{bottom:790.059197px;}
.y177{bottom:796.403153px;}
.y82{bottom:796.417191px;}
.ybe{bottom:797.650577px;}
.ya3{bottom:797.965354px;}
.y15c{bottom:799.054531px;}
.y3b{bottom:811.819517px;}
.y110{bottom:815.123685px;}
.y6c{bottom:817.832291px;}
.y1d{bottom:820.464544px;}
.y120{bottom:823.145204px;}
.yef{bottom:830.709311px;}
.y81{bottom:844.810425px;}
.y5f{bottom:847.300938px;}
.ya2{bottom:847.484011px;}
.y176{bottom:848.172659px;}
.y1c{bottom:858.728961px;}
.y3a{bottom:859.087326px;}
.y6b{bottom:866.225524px;}
.y10f{bottom:866.893190px;}
.y11f{bottom:871.744806px;}
.yee{bottom:879.308913px;}
.y1b{bottom:896.993378px;}
.ya1{bottom:897.002669px;}
.ybd{bottom:902.066908px;}
.y158{bottom:902.593542px;}
.y39{bottom:906.355136px;}
.y7{bottom:907.461764px;}
.y175{bottom:912.583518px;}
.y10e{bottom:918.662696px;}
.y5e{bottom:926.046673px;}
.y1a{bottom:935.257795px;}
.y16a{bottom:935.835193px;}
.y10{bottom:940.316848px;}
.ya0{bottom:946.521326px;}
.y13f{bottom:953.526916px;}
.y38{bottom:953.622945px;}
.ybc{bottom:953.836414px;}
.y157{bottom:954.363048px;}
.y11e{bottom:957.420765px;}
.y174{bottom:964.353023px;}
.y10d{bottom:970.432201px;}
.y19{bottom:973.522212px;}
.y5d{bottom:977.816179px;}
.y169{bottom:987.604698px;}
.y80{bottom:995.692280px;}
.y9f{bottom:996.039984px;}
.y37{bottom:1000.890755px;}
.y6a{bottom:1001.142388px;}
.ye1{bottom:1002.372098px;}
.y13e{bottom:1005.296421px;}
.ybb{bottom:1005.605919px;}
.y156{bottom:1006.132553px;}
.y11d{bottom:1009.190271px;}
.y18{bottom:1011.786629px;}
.y173{bottom:1016.122529px;}
.y10c{bottom:1022.201707px;}
.y5c{bottom:1029.585685px;}
.y168{bottom:1039.374204px;}
.y9e{bottom:1045.558641px;}
.y7f{bottom:1047.461785px;}
.y36{bottom:1048.158564px;}
.y17{bottom:1050.051046px;}
.y69{bottom:1052.911894px;}
.ye0{bottom:1054.141603px;}
.y13d{bottom:1057.065927px;}
.y155{bottom:1057.902059px;}
.yba{bottom:1058.876031px;}
.y11c{bottom:1060.959776px;}
.y172{bottom:1067.892034px;}
.y5b{bottom:1081.355190px;}
.y167{bottom:1091.143709px;}
.y97{bottom:1095.229464px;}
.y78{bottom:1103.727260px;}
.yd4{bottom:1106.656706px;}
.y13c{bottom:1108.835433px;}
.yf{bottom:1108.925417px;}
.y11b{bottom:1112.347837px;}
.y171{bottom:1119.661540px;}
.y4d{bottom:1122.280450px;}
.y16{bottom:1123.203609px;}
.y96{bottom:1125.615913px;}
.y77{bottom:1134.113709px;}
.y9c{bottom:1134.806598px;}
.y15b{bottom:1136.342443px;}
.yd3{bottom:1138.168579px;}
.y166{bottom:1142.913215px;}
.y95{bottom:1156.002362px;}
.y5a{bottom:1160.544863px;}
.y154{bottom:1163.566887px;}
.y76{bottom:1164.500158px;}
.y170{bottom:1171.431046px;}
.y9b{bottom:1173.071015px;}
.yb1{bottom:1180.965692px;}
.y32{bottom:1186.326577px;}
.y4c{bottom:1198.809284px;}
.y7e{bottom:1200.368154px;}
.y153{bottom:1201.831304px;}
.y68{bottom:1204.881924px;}
.h18{height:47.429569px;}
.h2d{height:54.090693px;}
.h26{height:65.283801px;}
.h17{height:65.326469px;}
.h2e{height:67.748596px;}
.h1d{height:68.404680px;}
.h21{height:73.956665px;}
.hd{height:75.360723px;}
.h31{height:75.501361px;}
.h4{height:79.817183px;}
.h15{height:82.665912px;}
.hc{height:88.663587px;}
.h8{height:90.033879px;}
.h6{height:90.033923px;}
.h9{height:90.034009px;}
.h2b{height:90.128617px;}
.h13{height:91.828051px;}
.h11{height:101.966451px;}
.h25{height:104.058890px;}
.h36{height:104.061655px;}
.h24{height:104.194680px;}
.h35{height:106.211841px;}
.h34{height:107.360163px;}
.h37{height:108.721507px;}
.h33{height:109.581417px;}
.h23{height:110.846119px;}
.h2c{height:112.677681px;}
.h32{height:114.362718px;}
.h22{height:117.629264px;}
.h2f{height:117.882972px;}
.h20{height:118.036803px;}
.h19{height:119.444070px;}
.h1a{height:119.896197px;}
.h30{height:120.321940px;}
.h14{height:120.420348px;}
.h2a{height:120.711755px;}
.h12{height:121.545787px;}
.h1b{height:124.402259px;}
.h1f{height:125.571876px;}
.h29{height:125.722566px;}
.h1c{height:129.360463px;}
.h16{height:131.253077px;}
.h3{height:144.815459px;}
.h1e{height:145.043573px;}
.h7{height:145.697898px;}
.hb{height:150.557156px;}
.he{height:199.612371px;}
.ha{height:246.823595px;}
.h28{height:257.390924px;}
.h10{height:281.771661px;}
.h5{height:284.372341px;}
.h27{height:1122.105290px;}
.hf{height:1228.394018px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:88.908498px;}
.w4{width:120.420391px;}
.w3{width:121.545744px;}
.w6{width:121.545798px;}
.w5{width:121.545830px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x64{left:4.361018px;}
.x22{left:5.662292px;}
.x2c{left:6.945976px;}
.x35{left:9.689198px;}
.x1e{left:13.522665px;}
.x33{left:15.227747px;}
.x39{left:17.044280px;}
.x66{left:18.129878px;}
.x62{left:19.483904px;}
.x1c{left:21.611671px;}
.x6{left:23.721829px;}
.x2a{left:25.585812px;}
.x7{left:27.150856px;}
.x20{left:29.788580px;}
.x2b{left:31.986661px;}
.x21{left:35.011240px;}
.x5a{left:36.593866px;}
.x2d{left:37.912722px;}
.x5f{left:40.005307px;}
.x59{left:41.341748px;}
.x3c{left:42.647677px;}
.x3a{left:44.388567px;}
.xc{left:45.970077px;}
.x7f{left:49.416412px;}
.x3b{left:50.701493px;}
.x4a{left:53.342022px;}
.x44{left:55.022684px;}
.xb6{left:56.047673px;}
.x67{left:57.414210px;}
.x68{left:60.298110px;}
.x40{left:61.340364px;}
.x42{left:63.731890px;}
.x8b{left:65.473716px;}
.x43{left:66.738882px;}
.x12{left:68.551048px;}
.x7b{left:70.291938px;}
.x8d{left:71.347023px;}
.x95{left:72.577956px;}
.x79{left:73.873537px;}
.x16{left:75.057405px;}
.x17{left:77.079652px;}
.x54{left:78.134737px;}
.x41{left:79.329564px;}
.x4{left:81.452564px;}
.x88{left:84.711433px;}
.x8c{left:85.836857px;}
.xb3{left:87.665672px;}
.xb{left:89.334072px;}
.x13{left:91.182622px;}
.x85{left:93.178822px;}
.x19{left:94.418216px;}
.x89{left:96.194276px;}
.x4c{left:98.185084px;}
.x4d{left:99.292923px;}
.xd{left:100.513118px;}
.x69{left:102.466341px;}
.x6a{left:104.189647px;}
.x7e{left:105.675734px;}
.xa1{left:106.903389px;}
.x14{left:114.394492px;}
.x53{left:116.100213px;}
.xb2{left:117.155298px;}
.xac{left:119.810595px;}
.x37{left:121.463562px;}
.xab{left:124.083690px;}
.x4e{left:125.177676px;}
.x8e{left:126.633479px;}
.x78{left:128.456603px;}
.xaf{left:130.625217px;}
.x18{left:132.946404px;}
.x7a{left:138.195783px;}
.xf{left:142.644725px;}
.x61{left:144.190224px;}
.x1{left:150.320366px;}
.xa2{left:152.993020px;}
.x36{left:155.843524px;}
.x2{left:159.453620px;}
.xa9{left:164.980129px;}
.x11{left:166.251922px;}
.x30{left:168.021647px;}
.x7d{left:169.954115px;}
.xa8{left:172.621480px;}
.x6b{left:174.880344px;}
.x5d{left:176.249183px;}
.x5c{left:193.010374px;}
.x38{left:195.512946px;}
.x84{left:197.185049px;}
.x5{left:199.657257px;}
.x34{left:201.661919px;}
.x9{left:207.907969px;}
.x10{left:218.558093px;}
.x5e{left:220.650678px;}
.xae{left:239.448782px;}
.x8f{left:242.728002px;}
.xb1{left:248.284783px;}
.x24{left:250.069972px;}
.x32{left:251.760089px;}
.xe{left:254.147620px;}
.x63{left:256.420832px;}
.x31{left:262.258328px;}
.x8{left:265.062411px;}
.x86{left:268.129505px;}
.xaa{left:274.638634px;}
.x87{left:288.299219px;}
.xad{left:295.781200px;}
.x4b{left:297.944118px;}
.x7c{left:300.933526px;}
.x23{left:323.398381px;}
.xa{left:332.372914px;}
.x5b{left:352.767686px;}
.x90{left:355.481422px;}
.x60{left:358.057919px;}
.x65{left:359.291623px;}
.xb4{left:362.269136px;}
.xb0{left:368.036934px;}
.x15{left:369.074440px;}
.x3{left:375.021546px;}
.x1a{left:376.600713px;}
.x2e{left:378.881035px;}
.xb5{left:379.924225px;}
.x1f{left:382.124734px;}
.x1d{left:386.268338px;}
.x8a{left:395.504314px;}
.x2f{left:442.977456px;}
.xa5{left:450.357073px;}
.xa3{left:453.282613px;}
.xa6{left:463.871991px;}
.x6c{left:475.720953px;}
.x46{left:478.339289px;}
.x71{left:479.659937px;}
.x48{left:481.156084px;}
.x47{left:482.819806px;}
.x51{left:485.076070px;}
.x3d{left:488.046281px;}
.x82{left:490.218758px;}
.x80{left:491.638447px;}
.xa4{left:493.683780px;}
.x73{left:495.468628px;}
.x6d{left:497.209518px;}
.x4f{left:498.809760px;}
.xa7{left:501.042500px;}
.x49{left:503.113911px;}
.x70{left:506.195326px;}
.x93{left:507.494611px;}
.x6e{left:509.008886px;}
.x83{left:510.804255px;}
.x55{left:512.372474px;}
.x58{left:515.343917px;}
.x74{left:517.203379px;}
.x81{left:520.890653px;}
.x92{left:522.373584px;}
.x57{left:525.380791px;}
.x9d{left:527.195603px;}
.x45{left:528.975718px;}
.x50{left:529.987523px;}
.x3f{left:535.015149px;}
.x9c{left:537.138849px;}
.x3e{left:541.029134px;}
.x52{left:542.472695px;}
.x56{left:545.735176px;}
.x9b{left:556.253572px;}
.xa0{left:562.840524px;}
.x9e{left:570.199244px;}
.x9f{left:571.599196px;}
.x94{left:586.681617px;}
.x91{left:594.506988px;}
.x72{left:618.597051px;}
.x75{left:627.125655px;}
.x6f{left:630.537097px;}
.x1b{left:633.130930px;}
.x96{left:635.124821px;}
.x99{left:640.455406px;}
.x27{left:641.783883px;}
.x28{left:643.190663px;}
.x9a{left:646.970565px;}
.x98{left:651.134524px;}
.x97{left:653.252399px;}
.x25{left:687.855930px;}
.x26{left:738.623104px;}
.x29{left:743.019292px;}
.x76{left:795.007268px;}
.x77{left:837.105161px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.617706pt;}
.ls3{letter-spacing:2.617714pt;}
.ls2{letter-spacing:2.625653pt;}
.ls4{letter-spacing:2.625665pt;}
.ls5{letter-spacing:2.625705pt;}
.ws5{word-spacing:-363.068799pt;}
.wsc{word-spacing:-133.530307pt;}
.wsb{word-spacing:-128.208310pt;}
.ws6{word-spacing:-83.281502pt;}
.ws1a{word-spacing:-80.022155pt;}
.ws1{word-spacing:-73.791887pt;}
.ws20{word-spacing:-66.685129pt;}
.ws2{word-spacing:-66.015955pt;}
.ws3{word-spacing:-40.268332pt;}
.ws1f{word-spacing:-38.793658pt;}
.wsd{word-spacing:-26.927743pt;}
.ws1c{word-spacing:-26.895468pt;}
.ws14{word-spacing:-25.854508pt;}
.ws1d{word-spacing:-25.771016pt;}
.ws10{word-spacing:-25.281577pt;}
.ws11{word-spacing:-25.248629pt;}
.ws8{word-spacing:-24.740924pt;}
.ws15{word-spacing:-21.513145pt;}
.ws4{word-spacing:-18.285366pt;}
.ws18{word-spacing:-16.171172pt;}
.ws13{word-spacing:-15.840323pt;}
.ws16{word-spacing:-0.133370pt;}
.ws1b{word-spacing:-0.127794pt;}
.wse{word-spacing:-0.125367pt;}
.ws1e{word-spacing:-0.125207pt;}
.ws12{word-spacing:-0.125204pt;}
.ws7{word-spacing:-0.122686pt;}
.ws9{word-spacing:-0.106680pt;}
.ws19{word-spacing:-0.080190pt;}
.wsf{word-spacing:-0.078550pt;}
.wsa{word-spacing:-0.055101pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:244.967318pt;}
._f{margin-left:-12.738466pt;}
._10{margin-left:-10.242731pt;}
._0{margin-left:-7.668499pt;}
._2{margin-left:-5.857064pt;}
._4{margin-left:-4.895139pt;}
._3{margin-left:-2.952586pt;}
._9{margin-left:-2.037270pt;}
._1{margin-left:-0.979293pt;}
._6{width:2.159684pt;}
._5{width:3.088122pt;}
._c{width:23.323219pt;}
._b{width:30.448714pt;}
._8{width:59.752279pt;}
._d{width:64.782495pt;}
._11{width:69.608142pt;}
._a{width:91.400219pt;}
._e{width:115.625157pt;}
._7{width:203.806556pt;}
.fsd{font-size:55.100763pt;}
.fs17{font-size:64.024123pt;}
.fsc{font-size:76.428797pt;}
.fs14{font-size:78.549592pt;}
.fs11{font-size:80.030153pt;}
.fs18{font-size:80.190218pt;}
.fs7{font-size:90.674164pt;}
.fs1{font-size:96.036184pt;}
.fs6{font-size:106.680195pt;}
.fsa{font-size:122.686225pt;}
.fs15{font-size:124.934388pt;}
.fs16{font-size:125.203852pt;}
.fs1a{font-size:125.207179pt;}
.fs13{font-size:125.367235pt;}
.fs19{font-size:127.794286pt;}
.fse{font-size:128.208310pt;}
.fs12{font-size:133.370259pt;}
.fsf{font-size:133.530307pt;}
.fs10{font-size:138.852320pt;}
.fs0{font-size:139.377257pt;}
.fsb{font-size:144.214341pt;}
.fs3{font-size:149.376289pt;}
.fs5{font-size:149.696402pt;}
.fs4{font-size:245.412474pt;}
.fs2{font-size:282.746548pt;}
.fs9{font-size:309.596661pt;}
.fs8{font-size:1349.698138pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y10b{bottom:20.945568pt;}
.y4{bottom:21.839834pt;}
.ya9{bottom:22.861641pt;}
.ydf{bottom:24.438364pt;}
.yb{bottom:26.009761pt;}
.y8{bottom:26.009806pt;}
.yd{bottom:26.009844pt;}
.y66{bottom:35.155465pt;}
.y16f{bottom:38.597608pt;}
.y11a{bottom:42.534730pt;}
.yd0{bottom:42.771708pt;}
.y52{bottom:43.051177pt;}
.y47{bottom:44.016584pt;}
.y45{bottom:44.016597pt;}
.y14a{bottom:44.282582pt;}
.y94{bottom:44.754456pt;}
.y49{bottom:45.016961pt;}
.y4b{bottom:45.016974pt;}
.yed{bottom:48.287767pt;}
.y31{bottom:49.045512pt;}
.yde{bottom:61.452310pt;}
.y51{bottom:62.058339pt;}
.ya8{bottom:66.878226pt;}
.y10a{bottom:66.962906pt;}
.y65{bottom:79.172049pt;}
.ycf{bottom:79.785654pt;}
.y50{bottom:81.065500pt;}
.y30{bottom:83.058327pt;}
.y16e{bottom:84.614946pt;}
.y119{bottom:86.439765pt;}
.y93{bottom:87.954102pt;}
.y149{bottom:88.187617pt;}
.yfe{bottom:90.413583pt;}
.yec{bottom:91.487414pt;}
.y152{bottom:96.129429pt;}
.ydd{bottom:98.466256pt;}
.y4f{bottom:100.072661pt;}
.ya7{bottom:110.894810pt;}
.y109{bottom:112.980244pt;}
.yce{bottom:116.799600pt;}
.ye{bottom:116.954068pt;}
.y2f{bottom:117.071143pt;}
.y4e{bottom:120.080200pt;}
.y64{bottom:123.188634pt;}
.y118{bottom:130.344799pt;}
.y16d{bottom:130.632284pt;}
.y92{bottom:131.153748pt;}
.y148{bottom:132.092652pt;}
.yfd{bottom:133.613229pt;}
.yeb{bottom:134.687060pt;}
.ydc{bottom:135.480202pt;}
.y7d{bottom:138.346126pt;}
.y151{bottom:139.329076pt;}
.y11{bottom:143.795848pt;}
.y133{bottom:150.523667pt;}
.y2e{bottom:151.083958pt;}
.ycd{bottom:153.813546pt;}
.ya6{bottom:154.911395pt;}
.y15a{bottom:158.062635pt;}
.y108{bottom:158.997582pt;}
.y75{bottom:162.146770pt;}
.y164{bottom:163.568323pt;}
.yd2{bottom:164.817692pt;}
.y63{bottom:167.205218pt;}
.y8f{bottom:170.953937pt;}
.ydb{bottom:172.494148pt;}
.y117{bottom:174.249834pt;}
.y91{bottom:174.353394pt;}
.y43{bottom:175.411551pt;}
.y147{bottom:175.997686pt;}
.y16c{bottom:176.649623pt;}
.yfc{bottom:176.812875pt;}
.yea{bottom:177.886706pt;}
.y181{bottom:180.048321pt;}
.y7c{bottom:181.452798pt;}
.y150{bottom:182.528722pt;}
.y2d{bottom:185.096773pt;}
.ycc{bottom:190.827492pt;}
.y132{bottom:193.723313pt;}
.y3{bottom:194.593762pt;}
.ya5{bottom:198.927979pt;}
.y159{bottom:204.079974pt;}
.y107{bottom:205.014921pt;}
.y74{bottom:205.162977pt;}
.yda{bottom:209.508094pt;}
.y163{bottom:209.585661pt;}
.y62{bottom:211.221802pt;}
.y8e{bottom:213.970145pt;}
.y42{bottom:217.427382pt;}
.y90{bottom:217.553041pt;}
.y116{bottom:218.154869pt;}
.y2c{bottom:219.109588pt;}
.y146{bottom:219.902721pt;}
.yfb{bottom:220.012521pt;}
.ye9{bottom:221.086352pt;}
.y16b{bottom:222.666961pt;}
.y7b{bottom:224.559470pt;}
.y14f{bottom:225.728368pt;}
.ycb{bottom:227.841438pt;}
.y131{bottom:236.922960pt;}
.yd1{bottom:238.845584pt;}
.y2{bottom:242.683722pt;}
.yd9{bottom:246.522040pt;}
.y180{bottom:247.740532pt;}
.y73{bottom:248.179185pt;}
.y9a{bottom:249.405424pt;}
.y106{bottom:251.032259pt;}
.y2b{bottom:253.122404pt;}
.y162{bottom:255.602999pt;}
.y8d{bottom:256.986352pt;}
.y41{bottom:259.443212pt;}
.y115{bottom:262.059903pt;}
.yfa{bottom:263.212168pt;}
.y145{bottom:263.807756pt;}
.ye8{bottom:264.285999pt;}
.yca{bottom:264.855384pt;}
.y7a{bottom:267.666142pt;}
.y14e{bottom:268.928014pt;}
.y130{bottom:280.122606pt;}
.y61{bottom:281.706831pt;}
.yd8{bottom:283.535986pt;}
.y2a{bottom:287.135219pt;}
.yc{bottom:289.391725pt;}
.y72{bottom:291.195392pt;}
.y15{bottom:293.224910pt;}
.y17f{bottom:293.757870pt;}
.y105{bottom:297.049597pt;}
.yb0{bottom:299.882755pt;}
.y8c{bottom:300.002560pt;}
.y40{bottom:301.459043pt;}
.y161{bottom:301.620338pt;}
.yc9{bottom:301.869330pt;}
.y114{bottom:305.964938pt;}
.yf9{bottom:306.411814pt;}
.y144{bottom:307.712790pt;}
.y79{bottom:310.772813pt;}
.y14d{bottom:312.127661pt;}
.yff{bottom:316.912793pt;}
.yd7{bottom:320.549932pt;}
.y29{bottom:321.148034pt;}
.y12f{bottom:323.322252pt;}
.y14{bottom:338.241871pt;}
.yc8{bottom:338.883275pt;}
.y17e{bottom:339.775208pt;}
.y104{bottom:343.066935pt;}
.y3f{bottom:343.474873pt;}
.yaf{bottom:343.899339pt;}
.y67{bottom:346.393701pt;}
.y160{bottom:347.637676pt;}
.yf8{bottom:349.611460pt;}
.y113{bottom:349.869973pt;}
.y28{bottom:355.160849pt;}
.y14c{bottom:355.327307pt;}
.ye7{bottom:355.328443pt;}
.yd6{bottom:357.563878pt;}
.y35{bottom:362.634549pt;}
.y59{bottom:372.151776pt;}
.yc7{bottom:375.897221pt;}
.y3e{bottom:385.490704pt;}
.y17d{bottom:385.792546pt;}
.yae{bottom:387.915924pt;}
.y103{bottom:389.084274pt;}
.y27{bottom:389.173664pt;}
.y99{bottom:389.940308pt;}
.yf7{bottom:392.811106pt;}
.yd5{bottom:394.577824pt;}
.y13b{bottom:394.939599pt;}
.y8b{bottom:396.738003pt;}
.y14b{bottom:398.526953pt;}
.ye6{bottom:399.233478pt;}
.yc6{bottom:412.911167pt;}
.y58{bottom:416.168360pt;}
.y26{bottom:423.186480pt;}
.y4a{bottom:427.291169pt;}
.y48{bottom:428.291559pt;}
.y12e{bottom:428.409165pt;}
.y127{bottom:429.287102pt;}
.yb9{bottom:430.037380pt;}
.y44{bottom:431.743200pt;}
.yad{bottom:431.932508pt;}
.y102{bottom:435.101612pt;}
.y34{bottom:435.662064pt;}
.yf6{bottom:436.010753pt;}
.y13a{bottom:438.844634pt;}
.y8a{bottom:439.754211pt;}
.ye5{bottom:443.138513pt;}
.yc5{bottom:449.925113pt;}
.y165{bottom:455.926681pt;}
.y25{bottom:457.199295pt;}
.y57{bottom:460.184945pt;}
.ya{bottom:461.829529pt;}
.y98{bottom:462.967823pt;}
.yb8{bottom:467.051326pt;}
.y12d{bottom:472.314200pt;}
.y126{bottom:472.486748pt;}
.yac{bottom:475.949092pt;}
.y17c{bottom:477.827223pt;}
.yf5{bottom:479.210399pt;}
.y101{bottom:481.118950pt;}
.y139{bottom:482.749668pt;}
.y89{bottom:482.770418pt;}
.y13{bottom:486.308506pt;}
.yc4{bottom:486.939059pt;}
.y24{bottom:491.212110pt;}
.yb7{bottom:504.065272pt;}
.y56{bottom:504.201529pt;}
.y46{bottom:510.821440pt;}
.y125{bottom:515.686394pt;}
.y12c{bottom:516.219234pt;}
.yab{bottom:519.965677pt;}
.y71{bottom:520.703425pt;}
.yf4{bottom:522.410045pt;}
.y17b{bottom:523.844561pt;}
.yc3{bottom:523.953005pt;}
.y23{bottom:525.224925pt;}
.y88{bottom:525.786626pt;}
.y138{bottom:526.654703pt;}
.y6{bottom:534.826664pt;}
.y86{bottom:535.861562pt;}
.y100{bottom:538.406454pt;}
.yb6{bottom:541.079218pt;}
.ye4{bottom:543.224009pt;}
.y55{bottom:548.218113pt;}
.y124{bottom:558.886040pt;}
.y22{bottom:559.237741pt;}
.y12b{bottom:560.124269pt;}
.yc2{bottom:560.966951pt;}
.y70{bottom:563.719632pt;}
.yaa{bottom:563.982261pt;}
.yf3{bottom:565.609691pt;}
.y87{bottom:568.802833pt;}
.y17a{bottom:569.861899pt;}
.y143{bottom:570.291016pt;}
.y137{bottom:570.559738pt;}
.y15f{bottom:572.218680pt;}
.yb5{bottom:578.093164pt;}
.y85{bottom:578.877770pt;}
.ye3{bottom:586.423656pt;}
.y54{bottom:592.234698pt;}
.y21{bottom:593.250556pt;}
.yc1{bottom:597.980897pt;}
.y123{bottom:602.085687pt;}
.y12a{bottom:604.029304pt;}
.y6f{bottom:606.735840pt;}
.yf2{bottom:608.809338pt;}
.y142{bottom:613.307223pt;}
.y9d{bottom:614.459735pt;}
.y136{bottom:614.464772pt;}
.yb4{bottom:615.107110pt;}
.y179{bottom:615.879238pt;}
.y33{bottom:617.529607pt;}
.y15e{bottom:618.236018pt;}
.y84{bottom:621.893977pt;}
.y20{bottom:627.263371pt;}
.ye2{bottom:629.623302pt;}
.y112{bottom:632.519710pt;}
.y5{bottom:632.863602pt;}
.y9{bottom:634.231086pt;}
.yc0{bottom:634.994843pt;}
.y53{bottom:636.251282pt;}
.y3d{bottom:637.585687pt;}
.y6e{bottom:640.929621pt;}
.y122{bottom:645.285333pt;}
.y129{bottom:647.934338pt;}
.yf1{bottom:652.008984pt;}
.yb3{bottom:652.121056pt;}
.y141{bottom:656.323431pt;}
.y135{bottom:658.369807pt;}
.y12{bottom:661.072831pt;}
.y1f{bottom:661.276186pt;}
.y178{bottom:661.896576pt;}
.y15d{bottom:664.253356pt;}
.y83{bottom:664.910185pt;}
.ya4{bottom:665.285952pt;}
.ybf{bottom:672.008789pt;}
.y111{bottom:678.537048pt;}
.y3c{bottom:679.601518pt;}
.y60{bottom:680.773911pt;}
.y6d{bottom:683.945829pt;}
.y121{bottom:688.484979pt;}
.yb2{bottom:689.135002pt;}
.y128{bottom:691.839373pt;}
.yf0{bottom:695.208630pt;}
.y1e{bottom:695.289001pt;}
.y140{bottom:699.339638pt;}
.y134{bottom:702.274841pt;}
.y177{bottom:707.913914pt;}
.y82{bottom:707.926392pt;}
.ybe{bottom:709.022735pt;}
.ya3{bottom:709.302537pt;}
.y15c{bottom:710.270694pt;}
.y3b{bottom:721.617348pt;}
.y110{bottom:724.554386pt;}
.y6c{bottom:726.962036pt;}
.y1d{bottom:729.301817pt;}
.y120{bottom:731.684626pt;}
.yef{bottom:738.408276pt;}
.y81{bottom:750.942600pt;}
.y5f{bottom:753.156390pt;}
.ya2{bottom:753.319121pt;}
.y176{bottom:753.931252pt;}
.y1c{bottom:763.314632pt;}
.y3a{bottom:763.633179pt;}
.y6b{bottom:769.978244pt;}
.y10f{bottom:770.571725pt;}
.y11f{bottom:774.884272pt;}
.yee{bottom:781.607923pt;}
.y1b{bottom:797.327447pt;}
.ya1{bottom:797.335706pt;}
.ybd{bottom:801.837252pt;}
.y158{bottom:802.305371pt;}
.y39{bottom:805.649010pt;}
.y7{bottom:806.632679pt;}
.y175{bottom:811.185349pt;}
.y10e{bottom:816.589063pt;}
.y5e{bottom:823.152599pt;}
.y1a{bottom:831.340262pt;}
.y16a{bottom:831.853505pt;}
.y10{bottom:835.837198pt;}
.ya0{bottom:841.352290pt;}
.y13f{bottom:847.579481pt;}
.y38{bottom:847.664840pt;}
.ybc{bottom:847.854590pt;}
.y157{bottom:848.322709pt;}
.y11e{bottom:851.040680pt;}
.y174{bottom:857.202687pt;}
.y10d{bottom:862.606401pt;}
.y19{bottom:865.353078pt;}
.y5d{bottom:869.169937pt;}
.y169{bottom:877.870843pt;}
.y80{bottom:885.059804pt;}
.y9f{bottom:885.368874pt;}
.y37{bottom:889.680671pt;}
.y6a{bottom:889.904345pt;}
.ye1{bottom:890.997420pt;}
.y13e{bottom:893.596819pt;}
.ybb{bottom:893.871928pt;}
.y156{bottom:894.340047pt;}
.y11d{bottom:897.058018pt;}
.y18{bottom:899.365893pt;}
.y173{bottom:903.220026pt;}
.y10c{bottom:908.623739pt;}
.y5c{bottom:915.187275pt;}
.y168{bottom:923.888181pt;}
.y9e{bottom:929.385459pt;}
.y7f{bottom:931.077143pt;}
.y36{bottom:931.696501pt;}
.y17{bottom:933.378708pt;}
.y69{bottom:935.921683pt;}
.ye0{bottom:937.014758pt;}
.y13d{bottom:939.614157pt;}
.y155{bottom:940.357385pt;}
.yba{bottom:941.223139pt;}
.y11c{bottom:943.075357pt;}
.y172{bottom:949.237364pt;}
.y5b{bottom:961.204613pt;}
.y167{bottom:969.905519pt;}
.y97{bottom:973.537302pt;}
.y78{bottom:981.090898pt;}
.yd4{bottom:983.694850pt;}
.y13c{bottom:985.631496pt;}
.yf{bottom:985.711481pt;}
.y11b{bottom:988.753633pt;}
.y171{bottom:995.254702pt;}
.y4d{bottom:997.582622pt;}
.y16{bottom:998.403208pt;}
.y96{bottom:1000.547478pt;}
.y77{bottom:1008.101075pt;}
.y9c{bottom:1008.716976pt;}
.y15b{bottom:1010.082172pt;}
.yd3{bottom:1011.705404pt;}
.y166{bottom:1015.922858pt;}
.y95{bottom:1027.557655pt;}
.y5a{bottom:1031.595433pt;}
.y154{bottom:1034.281677pt;}
.y76{bottom:1035.111252pt;}
.y170{bottom:1041.272040pt;}
.y9b{bottom:1042.729791pt;}
.yb1{bottom:1049.747281pt;}
.y32{bottom:1054.512513pt;}
.y4c{bottom:1065.608252pt;}
.y7e{bottom:1066.993915pt;}
.y153{bottom:1068.294492pt;}
.y68{bottom:1071.006154pt;}
.h18{height:42.159617pt;}
.h2d{height:48.080616pt;}
.h26{height:58.030045pt;}
.h17{height:58.067972pt;}
.h2e{height:60.220974pt;}
.h1d{height:60.804160pt;}
.h21{height:65.739258pt;}
.hd{height:66.987310pt;}
.h31{height:67.112321pt;}
.h4{height:70.948607pt;}
.h15{height:73.480811pt;}
.hc{height:78.812077pt;}
.h8{height:80.030115pt;}
.h6{height:80.030153pt;}
.h9{height:80.030230pt;}
.h2b{height:80.114326pt;}
.h13{height:81.624934pt;}
.h11{height:90.636845pt;}
.h25{height:92.496791pt;}
.h36{height:92.499249pt;}
.h24{height:92.617494pt;}
.h35{height:94.410525pt;}
.h34{height:95.431256pt;}
.h37{height:96.641340pt;}
.h33{height:97.405704pt;}
.h23{height:98.529884pt;}
.h2c{height:100.157938pt;}
.h32{height:101.655749pt;}
.h22{height:104.559346pt;}
.h2f{height:104.784864pt;}
.h20{height:104.921602pt;}
.h19{height:106.172507pt;}
.h1a{height:106.574398pt;}
.h30{height:106.952835pt;}
.h14{height:107.040309pt;}
.h2a{height:107.299337pt;}
.h12{height:108.040699pt;}
.h1b{height:110.579786pt;}
.h1f{height:111.619445pt;}
.h29{height:111.753392pt;}
.h1c{height:114.987078pt;}
.h16{height:116.669402pt;}
.h3{height:128.724852pt;}
.h1e{height:128.927620pt;}
.h7{height:129.509243pt;}
.hb{height:133.828583pt;}
.he{height:177.433218pt;}
.ha{height:219.398751pt;}
.h28{height:228.791932pt;}
.h10{height:250.463698pt;}
.h5{height:252.775414pt;}
.h27{height:997.426924pt;}
.hf{height:1091.905794pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:79.029776pt;}
.w4{width:107.040348pt;}
.w3{width:108.040661pt;}
.w6{width:108.040709pt;}
.w5{width:108.040738pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x64{left:3.876461pt;}
.x22{left:5.033148pt;}
.x2c{left:6.174201pt;}
.x35{left:8.612620pt;}
.x1e{left:12.020146pt;}
.x33{left:13.535775pt;}
.x39{left:15.150471pt;}
.x66{left:16.115447pt;}
.x62{left:17.319025pt;}
.x1c{left:19.210375pt;}
.x6{left:21.086070pt;}
.x2a{left:22.742944pt;}
.x7{left:24.134094pt;}
.x20{left:26.478738pt;}
.x2b{left:28.432588pt;}
.x21{left:31.121103pt;}
.x5a{left:32.527881pt;}
.x2d{left:33.700197pt;}
.x5f{left:35.560273pt;}
.x59{left:36.748221pt;}
.x3c{left:37.909046pt;}
.x3a{left:39.456504pt;}
.xc{left:40.862291pt;}
.x7f{left:43.925699pt;}
.x3b{left:45.067993pt;}
.x4a{left:47.415131pt;}
.x44{left:48.909053pt;}
.xb6{left:49.820154pt;}
.x67{left:51.034854pt;}
.x68{left:53.598320pt;}
.x40{left:54.524768pt;}
.x42{left:56.650569pt;}
.x8b{left:58.198859pt;}
.x43{left:59.323451pt;}
.x12{left:60.934265pt;}
.x7b{left:62.481723pt;}
.x8d{left:63.419576pt;}
.x95{left:64.513738pt;}
.x79{left:65.665366pt;}
.x16{left:66.717694pt;}
.x17{left:68.515246pt;}
.x54{left:69.453099pt;}
.x41{left:70.515168pt;}
.x4{left:72.402279pt;}
.x88{left:75.299052pt;}
.x8c{left:76.299429pt;}
.xb3{left:77.925041pt;}
.xb{left:79.408064pt;}
.x13{left:81.051219pt;}
.x85{left:82.825619pt;}
.x19{left:83.927303pt;}
.x89{left:85.506023pt;}
.x4c{left:87.275630pt;}
.x4d{left:88.260376pt;}
.xd{left:89.344994pt;}
.x69{left:91.081192pt;}
.x6a{left:92.613019pt;}
.x7e{left:93.933985pt;}
.xa1{left:95.025234pt;}
.x14{left:101.683993pt;}
.x53{left:103.200189pt;}
.xb2{left:104.138043pt;}
.xac{left:106.498307pt;}
.x37{left:107.967611pt;}
.xab{left:110.296613pt;}
.x4e{left:111.269046pt;}
.x8e{left:112.563092pt;}
.x78{left:114.183647pt;}
.xaf{left:116.111304pt;}
.x18{left:118.174581pt;}
.x7a{left:122.840696pt;}
.xf{left:126.795311pt;}
.x61{left:128.169088pt;}
.x1{left:133.618103pt;}
.xa2{left:135.993795pt;}
.x36{left:138.527577pt;}
.x2{left:141.736551pt;}
.xa9{left:146.649004pt;}
.x11{left:147.779486pt;}
.x30{left:149.352575pt;}
.x7d{left:151.070325pt;}
.xa8{left:153.441316pt;}
.x6b{left:155.449195pt;}
.x5d{left:156.665941pt;}
.x5c{left:171.564777pt;}
.x38{left:173.789286pt;}
.x84{left:175.275599pt;}
.x5{left:177.473118pt;}
.x34{left:179.255039pt;}
.x9{left:184.807083pt;}
.x10{left:194.273861pt;}
.x5e{left:196.133936pt;}
.xae{left:212.843362pt;}
.x8f{left:215.758224pt;}
.xb1{left:220.697585pt;}
.x24{left:222.284419pt;}
.x32{left:223.786746pt;}
.xe{left:225.908995pt;}
.x63{left:227.929628pt;}
.x31{left:233.118514pt;}
.x8{left:235.611032pt;}
.x86{left:238.337338pt;}
.xaa{left:244.123230pt;}
.x87{left:256.265973pt;}
.xad{left:262.916622pt;}
.x4b{left:264.839216pt;}
.x7c{left:267.496467pt;}
.x23{left:287.465228pt;}
.xa{left:295.442591pt;}
.x5b{left:313.571276pt;}
.x90{left:315.983486pt;}
.x60{left:318.273706pt;}
.x65{left:319.370331pt;}
.xb4{left:322.017009pt;}
.xb0{left:327.143941pt;}
.x15{left:328.066169pt;}
.x3{left:333.352485pt;}
.x1a{left:334.756189pt;}
.x2e{left:336.783142pt;}
.xb5{left:337.710422pt;}
.x1f{left:339.666431pt;}
.x1d{left:343.349634pt;}
.x8a{left:351.559390pt;}
.x2f{left:393.757739pt;}
.xa5{left:400.317398pt;}
.xa3{left:402.917878pt;}
.xa6{left:412.330658pt;}
.x6c{left:422.863069pt;}
.x46{left:425.190479pt;}
.x71{left:426.364389pt;}
.x48{left:427.694297pt;}
.x47{left:429.173160pt;}
.x51{left:431.178729pt;}
.x3d{left:433.818916pt;}
.x82{left:435.750007pt;}
.x80{left:437.011953pt;}
.xa4{left:438.830027pt;}
.x73{left:440.416558pt;}
.x6d{left:441.964016pt;}
.x4f{left:443.386453pt;}
.xa7{left:445.371111pt;}
.x49{left:447.212366pt;}
.x70{left:449.951401pt;}
.x93{left:451.106321pt;}
.x6e{left:452.452343pt;}
.x83{left:454.048227pt;}
.x55{left:455.442199pt;}
.x58{left:458.083482pt;}
.x74{left:459.736337pt;}
.x81{left:463.013914pt;}
.x92{left:464.332075pt;}
.x57{left:467.005148pt;}
.x9d{left:468.618314pt;}
.x45{left:470.200638pt;}
.x50{left:471.100020pt;}
.x3f{left:475.569022pt;}
.x9c{left:477.456754pt;}
.x3e{left:480.914786pt;}
.x52{left:482.197952pt;}
.x56{left:485.097934pt;}
.x9b{left:494.447620pt;}
.xa0{left:500.302688pt;}
.x9e{left:506.843773pt;}
.x9f{left:508.088174pt;}
.x94{left:521.494771pt;}
.x91{left:528.450656pt;}
.x72{left:549.864045pt;}
.x75{left:557.445027pt;}
.x6f{left:560.477419pt;}
.x1b{left:562.783049pt;}
.x96{left:564.555397pt;}
.x99{left:569.293694pt;}
.x27{left:570.474563pt;}
.x28{left:571.725034pt;}
.x9a{left:575.084947pt;}
.x98{left:578.786244pt;}
.x97{left:580.668800pt;}
.x25{left:611.427493pt;}
.x26{left:656.553871pt;}
.x29{left:660.461593pt;}
.x76{left:706.673127pt;}
.x77{left:744.093476pt;}
}




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