
    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_e737898ad7ad61c179b854c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;font-style:normal;font-weight: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_35e3cbcd8674ec12f20d38f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128418;font-style:normal;font-weight: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_acf339bec60a046fb6b5d7ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.726000;font-style:normal;font-weight: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_2d30a3c8d4f6d5b406a29c32.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;font-style:normal;font-weight: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_e5c646399e67520b7a76d01f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;font-style:normal;font-weight: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_ed8fc85f77f4b72fdcb62b27.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.711000;font-style:normal;font-weight: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_60fbf0bf84b4081243c90a31.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.159000;font-style:normal;font-weight: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_3f9dbbff7a466ae71319df99.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_467b7e2da7e8b699a0394fce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895000;font-style:normal;font-weight: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_0dbfef3dd03695eaafe13dcb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911133;font-style:normal;font-weight: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_4424b754ea0805d5b0cc4b69.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_de3a34a8b231e9aa88b39bc6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.173000;font-style:normal;font-weight: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_acf339bec60a046fb6b5d7ea.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.726000;font-style:normal;font-weight: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_ae8b805a44fefe0c49b1695a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912598;font-style:normal;font-weight: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_0f77cc9e22c3c961b08ccbf2.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0bebc77848e205a4ea55ccb8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.039571;font-style:normal;font-weight: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_230c043b09d22595c5c9dcbe.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_87dcefe98d14a89f8a0f1f66.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_e447e0baf88b13c33afdb494.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.091309;font-style:normal;font-weight: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_bd0f4464712c0b57bb79ebe7.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_ff526a3de7ac316c1c25e372.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.097000;font-style:normal;font-weight: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_acf339bec60a046fb6b5d7ea.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.726000;font-style:normal;font-weight: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_cd98ee9f63b6b2707f59c4f0.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.159000;font-style:normal;font-weight: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_c9e6c418e9912774566443b5.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_87dcefe98d14a89f8a0f1f66.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_86c8bd1dfd96c055d9a78b59.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.849609;font-style:normal;font-weight: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_bebb7ef39026e9b58719e181.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_19cb0c3a2f4834e52ae4424c.woff2')format("woff");}.ff1c{font-family:ff1c;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;}
.m1{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250000,-0.000175,0.000175,0.250000,0,0);-ms-transform:matrix(0.250000,-0.000175,0.000175,0.250000,0,0);-webkit-transform:matrix(0.250000,-0.000175,0.000175,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-20.502000px;}
.v4{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.840000px;}
.v1{vertical-align:21.015000px;}
.v2{vertical-align:35.973000px;}
.ls28{letter-spacing:-0.288000px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000600px;}
.ls26{letter-spacing:0.048000px;}
.lse{letter-spacing:0.057600px;}
.ls17{letter-spacing:0.063000px;}
.ls24{letter-spacing:0.096000px;}
.lsf{letter-spacing:0.126000px;}
.ls25{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.189000px;}
.ls2a{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.252000px;}
.ls23{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.315000px;}
.ls9{letter-spacing:0.378000px;}
.ls29{letter-spacing:0.384000px;}
.ls1a{letter-spacing:0.441000px;}
.ls22{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.567000px;}
.ls8{letter-spacing:0.630000px;}
.ls18{letter-spacing:0.693000px;}
.ls2c{letter-spacing:0.819000px;}
.ls3{letter-spacing:0.882000px;}
.ls1{letter-spacing:0.945000px;}
.ls2d{letter-spacing:1.197000px;}
.ls2b{letter-spacing:1.260000px;}
.ls5{letter-spacing:7.152000px;}
.ls27{letter-spacing:10.103400px;}
.ls1c{letter-spacing:13.068600px;}
.lsa{letter-spacing:13.567200px;}
.ls2e{letter-spacing:14.616000px;}
.ls20{letter-spacing:15.624000px;}
.ls1d{letter-spacing:15.939000px;}
.ls19{letter-spacing:16.705200px;}
.ls21{letter-spacing:36.623400px;}
.lsd{letter-spacing:90.090000px;}
.ls1b{letter-spacing:170.040000px;}
.ls12{letter-spacing:195.370200px;}
.ls14{letter-spacing:216.024000px;}
.ls13{letter-spacing:218.802000px;}
.ls6{letter-spacing:233.996688px;}
.ls15{letter-spacing:258.247800px;}
.ls16{letter-spacing:258.259200px;}
.ls10{letter-spacing:317.523000px;}
.ls1e{letter-spacing:318.823680px;}
.ls1f{letter-spacing:320.433120px;}
.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;}
}
.ws2{word-spacing:-243.750384px;}
.ws2a{word-spacing:-185.040000px;}
.ws31{word-spacing:-30.366000px;}
.ws2d{word-spacing:-18.348000px;}
.ws4{word-spacing:-16.680000px;}
.ws9{word-spacing:-16.380000px;}
.ws30{word-spacing:-16.317000px;}
.ws2e{word-spacing:-16.254000px;}
.ws0{word-spacing:-16.065000px;}
.ws2f{word-spacing:-15.939000px;}
.ws5{word-spacing:-15.750000px;}
.ws2b{word-spacing:-12.000000px;}
.ws1f{word-spacing:-9.450000px;}
.wsf{word-spacing:-2.898000px;}
.wsb{word-spacing:-2.835000px;}
.wsc{word-spacing:-2.772000px;}
.ws12{word-spacing:-1.890000px;}
.ws10{word-spacing:-1.071000px;}
.wsd{word-spacing:-0.126000px;}
.ws1c{word-spacing:-0.063000px;}
.ws22{word-spacing:-0.037800px;}
.ws3{word-spacing:0.000000px;}
.ws29{word-spacing:0.945000px;}
.ws2c{word-spacing:2.688000px;}
.ws6{word-spacing:3.465000px;}
.ws28{word-spacing:3.528000px;}
.ws8{word-spacing:3.654000px;}
.wsa{word-spacing:4.284000px;}
.ws7{word-spacing:4.473000px;}
.wse{word-spacing:5.229000px;}
.ws11{word-spacing:19.341000px;}
.ws1{word-spacing:54.658800px;}
.ws14{word-spacing:101.493000px;}
.ws20{word-spacing:123.228000px;}
.ws24{word-spacing:172.995000px;}
.ws21{word-spacing:185.535000px;}
.ws27{word-spacing:190.008000px;}
.ws26{word-spacing:204.495000px;}
.ws23{word-spacing:209.664000px;}
.ws25{word-spacing:221.502600px;}
.ws13{word-spacing:298.935000px;}
.ws1a{word-spacing:301.770000px;}
.ws17{word-spacing:301.773000px;}
.ws1d{word-spacing:383.586000px;}
.ws1e{word-spacing:383.607000px;}
.ws1b{word-spacing:414.078000px;}
.ws15{word-spacing:461.836200px;}
.ws16{word-spacing:503.893200px;}
.ws18{word-spacing:1026.645000px;}
.ws19{word-spacing:1229.442000px;}
._f{margin-left:-233.996688px;}
._48{margin-left:-170.040000px;}
._39{margin-left:-16.587000px;}
._20{margin-left:-15.435000px;}
._4a{margin-left:-12.048000px;}
._c{margin-left:-8.658000px;}
._6{margin-left:-6.435000px;}
._e{margin-left:-5.316000px;}
._d{margin-left:-4.272000px;}
._4{margin-left:-3.204000px;}
._0{margin-left:-2.112000px;}
._1{margin-left:-1.056000px;}
._5{width:1.953000px;}
._7{width:3.339000px;}
._a{width:4.599000px;}
._14{width:5.733000px;}
._1b{width:6.867000px;}
._1a{width:8.190000px;}
._2{width:9.198000px;}
._17{width:10.800000px;}
._11{width:12.600000px;}
._9{width:14.421000px;}
._4b{width:15.579000px;}
._12{width:16.821000px;}
._10{width:18.585000px;}
._8{width:20.097000px;}
._38{width:21.105000px;}
._15{width:22.113000px;}
._18{width:23.373000px;}
._1f{width:24.822000px;}
._3{width:25.893000px;}
._21{width:26.946000px;}
._42{width:28.395000px;}
._13{width:30.126000px;}
._45{width:31.254000px;}
._46{width:32.640000px;}
._44{width:35.847000px;}
._49{width:37.233000px;}
._43{width:38.493000px;}
._47{width:40.635000px;}
._1d{width:62.811000px;}
._31{width:66.021000px;}
._1e{width:73.584000px;}
._19{width:88.074000px;}
._1c{width:114.471000px;}
._34{width:159.131400px;}
._3a{width:188.071800px;}
._40{width:189.421200px;}
._3e{width:203.235600px;}
._3f{width:205.752600px;}
._3b{width:211.456200px;}
._3c{width:220.245000px;}
._3d{width:237.252600px;}
._41{width:239.590200px;}
._26{width:257.985000px;}
._22{width:268.254000px;}
._2f{width:274.725000px;}
._24{width:306.936000px;}
._2e{width:317.523000px;}
._2b{width:340.263000px;}
._29{width:394.443000px;}
._33{width:429.348000px;}
._35{width:447.483000px;}
._2d{width:459.144000px;}
._37{width:461.469000px;}
._27{width:464.082000px;}
._25{width:479.386200px;}
._2a{width:582.097800px;}
._36{width:602.523000px;}
._32{width:721.668000px;}
._28{width:888.780000px;}
._23{width:931.120800px;}
._b{width:947.262000px;}
._16{width:948.996000px;}
._2c{width:1051.089000px;}
._30{width:1182.258000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:26.880000px;}
.fsc{font-size:28.800000px;}
.fsb{font-size:30.240000px;}
.fs8{font-size:37.800000px;}
.fs7{font-size:46.008000px;}
.fs3{font-size:48.000000px;}
.fs9{font-size:48.000012px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs4{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y20b{bottom:21.090000px;}
.y20{bottom:30.315780px;}
.y1f{bottom:30.718350px;}
.y205{bottom:56.876400px;}
.y151{bottom:88.794750px;}
.yc4{bottom:89.079150px;}
.y4c{bottom:89.112750px;}
.y19c{bottom:89.140350px;}
.y180{bottom:89.155650px;}
.y87{bottom:89.220900px;}
.y1dd{bottom:89.232150px;}
.y11{bottom:89.263650px;}
.y203{bottom:89.272650px;}
.y1c3{bottom:89.277150px;}
.y8{bottom:89.279400px;}
.y22e{bottom:89.290650px;}
.y119{bottom:89.750550px;}
.y20d{bottom:89.784450px;}
.y150{bottom:103.794750px;}
.y4b{bottom:104.112750px;}
.y19b{bottom:104.140350px;}
.y20c{bottom:104.784450px;}
.yc3{bottom:107.081400px;}
.y17f{bottom:107.157900px;}
.y86{bottom:107.223150px;}
.y1dc{bottom:107.234400px;}
.y10{bottom:107.265900px;}
.y202{bottom:107.274900px;}
.y1c2{bottom:107.279400px;}
.y7{bottom:107.281650px;}
.y22d{bottom:107.290650px;}
.y4a{bottom:119.112750px;}
.y117{bottom:119.857500px;}
.y209{bottom:121.822200px;}
.yc2{bottom:125.083650px;}
.y17e{bottom:125.160150px;}
.y85{bottom:125.225400px;}
.y1db{bottom:125.236650px;}
.yf{bottom:125.268150px;}
.y201{bottom:125.277150px;}
.y1c1{bottom:125.281650px;}
.y6{bottom:125.283900px;}
.y22c{bottom:125.290650px;}
.y118{bottom:128.850750px;}
.y14f{bottom:136.708650px;}
.y116{bottom:137.859750px;}
.yc1{bottom:143.085900px;}
.y17d{bottom:143.162400px;}
.y84{bottom:143.227650px;}
.y1da{bottom:143.238900px;}
.ye{bottom:143.270400px;}
.y200{bottom:143.279400px;}
.y1c0{bottom:143.283900px;}
.y5{bottom:143.286150px;}
.y22b{bottom:143.290650px;}
.y115{bottom:155.862000px;}
.yc0{bottom:161.088150px;}
.y17c{bottom:161.164650px;}
.y83{bottom:161.229900px;}
.y1d9{bottom:161.241150px;}
.yd{bottom:161.272650px;}
.y1ff{bottom:161.281650px;}
.y1bf{bottom:161.286150px;}
.y4{bottom:161.288400px;}
.y22a{bottom:161.290650px;}
.y14e{bottom:162.702000px;}
.ybf{bottom:179.090400px;}
.y17b{bottom:179.166900px;}
.y82{bottom:179.232150px;}
.y1d8{bottom:179.243400px;}
.yc{bottom:179.274900px;}
.y1fe{bottom:179.283900px;}
.y1be{bottom:179.288400px;}
.y3{bottom:179.290650px;}
.y112{bottom:179.871000px;}
.y14d{bottom:188.695200px;}
.y114{bottom:188.874000px;}
.ybe{bottom:197.092650px;}
.y17a{bottom:197.169150px;}
.y81{bottom:197.234400px;}
.y1d7{bottom:197.245650px;}
.yb{bottom:197.277150px;}
.y1fd{bottom:197.286150px;}
.y1bd{bottom:197.290650px;}
.y111{bottom:197.873250px;}
.y113{bottom:197.876250px;}
.y2{bottom:214.623150px;}
.y14c{bottom:214.688700px;}
.ybd{bottom:215.094900px;}
.y179{bottom:215.171400px;}
.y80{bottom:215.236650px;}
.y1d6{bottom:215.247900px;}
.ya{bottom:215.279400px;}
.y1fc{bottom:215.288400px;}
.y248{bottom:215.290650px;}
.y110{bottom:215.875500px;}
.y1b3{bottom:232.253700px;}
.y1{bottom:232.624650px;}
.ybc{bottom:233.097150px;}
.y1fb{bottom:233.171400px;}
.y178{bottom:233.173650px;}
.y7f{bottom:233.238900px;}
.y1d5{bottom:233.250150px;}
.y9{bottom:233.281650px;}
.y229{bottom:233.290650px;}
.y10d{bottom:238.319250px;}
.y14b{bottom:240.681900px;}
.y10f{bottom:248.383500px;}
.y109{bottom:248.823750px;}
.ybb{bottom:251.099400px;}
.y1fa{bottom:251.173650px;}
.y177{bottom:251.175900px;}
.y7e{bottom:251.241150px;}
.y1d4{bottom:251.252400px;}
.y3f{bottom:251.283900px;}
.y247{bottom:251.290650px;}
.y228{bottom:255.250650px;}
.y107{bottom:256.317750px;}
.y10c{bottom:256.321500px;}
.y14a{bottom:266.676150px;}
.yba{bottom:269.101650px;}
.y1f9{bottom:269.175900px;}
.y176{bottom:269.178150px;}
.y7d{bottom:269.243400px;}
.y1d3{bottom:269.254650px;}
.y3e{bottom:269.286150px;}
.y227{bottom:269.290650px;}
.y20a{bottom:273.474750px;}
.y106{bottom:276.446250px;}
.y10b{bottom:276.450000px;}
.y1d{bottom:281.443200px;}
.y10e{bottom:284.388000px;}
.y108{bottom:284.702250px;}
.yb9{bottom:287.103900px;}
.y1f8{bottom:287.178150px;}
.y175{bottom:287.180400px;}
.y265{bottom:287.209650px;}
.y7c{bottom:287.245650px;}
.y1d2{bottom:287.256900px;}
.y3d{bottom:287.288400px;}
.y226{bottom:287.290650px;}
.y149{bottom:292.789650px;}
.y105{bottom:294.448500px;}
.y10a{bottom:294.452250px;}
.y1b4{bottom:298.221450px;}
.y1c{bottom:303.943200px;}
.yb8{bottom:305.106150px;}
.y1f7{bottom:305.180400px;}
.y174{bottom:305.182650px;}
.y264{bottom:305.211900px;}
.y3c{bottom:305.234400px;}
.y7b{bottom:305.247900px;}
.y1d1{bottom:305.259150px;}
.y225{bottom:305.290650px;}
.y104{bottom:315.270000px;}
.y103{bottom:315.275100px;}
.yb7{bottom:323.108400px;}
.y1f6{bottom:323.182650px;}
.y173{bottom:323.184900px;}
.y263{bottom:323.214150px;}
.y3b{bottom:323.236650px;}
.y7a{bottom:323.250150px;}
.y1d0{bottom:323.261400px;}
.y224{bottom:323.290650px;}
.y1b{bottom:326.443200px;}
.y102{bottom:333.277350px;}
.yb6{bottom:341.110650px;}
.y1f5{bottom:341.184900px;}
.y172{bottom:341.187150px;}
.y262{bottom:341.216400px;}
.y137{bottom:341.225400px;}
.y147{bottom:341.234400px;}
.y3a{bottom:341.238900px;}
.y79{bottom:341.252400px;}
.y1cf{bottom:341.263650px;}
.y246{bottom:341.290650px;}
.y223{bottom:345.250650px;}
.y1a{bottom:348.943200px;}
.y101{bottom:356.020350px;}
.yb5{bottom:359.112900px;}
.y1f4{bottom:359.187150px;}
.y171{bottom:359.189400px;}
.y261{bottom:359.218650px;}
.y136{bottom:359.227650px;}
.y146{bottom:359.236650px;}
.y39{bottom:359.241150px;}
.y78{bottom:359.254650px;}
.y1ce{bottom:359.265900px;}
.y222{bottom:359.290650px;}
.y19{bottom:371.443200px;}
.yb4{bottom:377.115150px;}
.y1f3{bottom:377.189400px;}
.y170{bottom:377.191650px;}
.y260{bottom:377.220900px;}
.y135{bottom:377.229900px;}
.y145{bottom:377.238900px;}
.y38{bottom:377.243400px;}
.y77{bottom:377.256900px;}
.y1cd{bottom:377.268150px;}
.y221{bottom:377.290650px;}
.y18{bottom:393.943200px;}
.yb3{bottom:395.117400px;}
.y1f2{bottom:395.191650px;}
.y16f{bottom:395.193900px;}
.y25f{bottom:395.223150px;}
.y134{bottom:395.232150px;}
.y144{bottom:395.241150px;}
.y37{bottom:395.245650px;}
.y76{bottom:395.259150px;}
.y1cc{bottom:395.270400px;}
.y245{bottom:395.290650px;}
.y220{bottom:399.250650px;}
.yb2{bottom:413.119650px;}
.y1f1{bottom:413.193900px;}
.y16e{bottom:413.196150px;}
.y25e{bottom:413.225400px;}
.y133{bottom:413.234400px;}
.y143{bottom:413.243400px;}
.y36{bottom:413.247900px;}
.yee{bottom:413.254650px;}
.y75{bottom:413.261400px;}
.y1cb{bottom:413.272650px;}
.yd8{bottom:413.288400px;}
.y21f{bottom:413.290650px;}
.y17{bottom:416.443200px;}
.yb1{bottom:431.121900px;}
.y1f0{bottom:431.196150px;}
.y16d{bottom:431.198400px;}
.y25d{bottom:431.227650px;}
.y132{bottom:431.236650px;}
.y142{bottom:431.245650px;}
.y35{bottom:431.250150px;}
.yed{bottom:431.256900px;}
.y74{bottom:431.263650px;}
.y1ca{bottom:431.274900px;}
.yd7{bottom:431.290650px;}
.y21e{bottom:435.250650px;}
.y16{bottom:438.943200px;}
.yb0{bottom:449.124150px;}
.y1ef{bottom:449.198400px;}
.y16c{bottom:449.200650px;}
.y25c{bottom:449.229900px;}
.y131{bottom:449.238900px;}
.y141{bottom:449.247900px;}
.y34{bottom:449.252400px;}
.yec{bottom:449.259150px;}
.y73{bottom:449.265900px;}
.y1c9{bottom:449.277150px;}
.y21d{bottom:449.290650px;}
.yd6{bottom:457.866750px;}
.y15{bottom:461.443200px;}
.yaf{bottom:467.126400px;}
.y1ee{bottom:467.200650px;}
.y16b{bottom:467.202900px;}
.y25b{bottom:467.232150px;}
.y130{bottom:467.241150px;}
.y140{bottom:467.250150px;}
.y33{bottom:467.254650px;}
.yeb{bottom:467.261400px;}
.y72{bottom:467.268150px;}
.y1c8{bottom:467.279400px;}
.y244{bottom:467.290650px;}
.y21c{bottom:471.250650px;}
.yd5{bottom:475.868250px;}
.yae{bottom:485.128650px;}
.y1ed{bottom:485.202900px;}
.y16a{bottom:485.205150px;}
.y25a{bottom:485.234400px;}
.y12f{bottom:485.243400px;}
.y13f{bottom:485.252400px;}
.y32{bottom:485.256900px;}
.yea{bottom:485.263650px;}
.y71{bottom:485.270400px;}
.y1c7{bottom:485.281650px;}
.y21b{bottom:485.290650px;}
.yd4{bottom:493.869750px;}
.y204{bottom:498.545700px;}
.y14{bottom:498.943200px;}
.y208{bottom:501.967800px;}
.yad{bottom:503.130900px;}
.y1ec{bottom:503.205150px;}
.y169{bottom:503.207400px;}
.y259{bottom:503.236650px;}
.y12e{bottom:503.245650px;}
.y13e{bottom:503.254650px;}
.y31{bottom:503.259150px;}
.ye9{bottom:503.265900px;}
.y70{bottom:503.272650px;}
.y1c6{bottom:503.283900px;}
.y21a{bottom:503.290650px;}
.y207{bottom:516.967800px;}
.yac{bottom:521.133150px;}
.y1eb{bottom:521.207400px;}
.y168{bottom:521.209650px;}
.y258{bottom:521.238900px;}
.y12d{bottom:521.247900px;}
.y13d{bottom:521.256900px;}
.y30{bottom:521.261400px;}
.ye8{bottom:521.268150px;}
.y6f{bottom:521.274900px;}
.y1c5{bottom:521.286150px;}
.y243{bottom:521.290650px;}
.y219{bottom:525.250650px;}
.y13{bottom:536.443200px;}
.yab{bottom:539.135400px;}
.y1ea{bottom:539.209650px;}
.y167{bottom:539.211900px;}
.y257{bottom:539.241150px;}
.y12c{bottom:539.250150px;}
.yd3{bottom:539.259150px;}
.y2f{bottom:539.263650px;}
.ye7{bottom:539.270400px;}
.y6e{bottom:539.277150px;}
.y1c4{bottom:539.288400px;}
.y218{bottom:539.290650px;}
.yaa{bottom:557.137650px;}
.y1e9{bottom:557.211900px;}
.y166{bottom:557.214150px;}
.y256{bottom:557.243400px;}
.y12b{bottom:557.252400px;}
.yd2{bottom:557.261400px;}
.y2e{bottom:557.265900px;}
.ye6{bottom:557.272650px;}
.y6d{bottom:557.279400px;}
.y217{bottom:557.290650px;}
.ya9{bottom:575.139900px;}
.y1e8{bottom:575.214150px;}
.y165{bottom:575.216400px;}
.y255{bottom:575.245650px;}
.y12a{bottom:575.254650px;}
.yd1{bottom:575.263650px;}
.y2d{bottom:575.268150px;}
.ye5{bottom:575.274900px;}
.y6c{bottom:575.281650px;}
.y216{bottom:575.290650px;}
.ya8{bottom:593.142150px;}
.y1e7{bottom:593.216400px;}
.y164{bottom:593.218650px;}
.y254{bottom:593.247900px;}
.y129{bottom:593.256900px;}
.yd0{bottom:593.265900px;}
.y2c{bottom:593.270400px;}
.ye4{bottom:593.277150px;}
.y6b{bottom:593.283900px;}
.y215{bottom:593.290650px;}
.y1e{bottom:603.775200px;}
.ya7{bottom:611.144400px;}
.y1e6{bottom:611.218650px;}
.y163{bottom:611.220900px;}
.y253{bottom:611.250150px;}
.y128{bottom:611.259150px;}
.ycf{bottom:611.268150px;}
.y2b{bottom:611.272650px;}
.ye3{bottom:611.279400px;}
.y6a{bottom:611.286150px;}
.y214{bottom:611.290650px;}
.y21{bottom:620.290650px;}
.ya6{bottom:629.146650px;}
.y1e5{bottom:629.220900px;}
.y162{bottom:629.223150px;}
.y252{bottom:629.252400px;}
.y127{bottom:629.261400px;}
.yce{bottom:629.270400px;}
.y2a{bottom:629.274900px;}
.ye2{bottom:629.281650px;}
.y69{bottom:629.288400px;}
.y213{bottom:629.290650px;}
.ya5{bottom:647.148900px;}
.y1e4{bottom:647.223150px;}
.y161{bottom:647.225400px;}
.y251{bottom:647.254650px;}
.y126{bottom:647.263650px;}
.ycd{bottom:647.272650px;}
.y68{bottom:647.274900px;}
.y29{bottom:647.277150px;}
.ye1{bottom:647.283900px;}
.y1b2{bottom:647.290650px;}
.y212{bottom:651.250650px;}
.ya4{bottom:665.151150px;}
.y1e3{bottom:665.225400px;}
.y160{bottom:665.227650px;}
.y250{bottom:665.256900px;}
.y125{bottom:665.265900px;}
.ycc{bottom:665.274900px;}
.y67{bottom:665.277150px;}
.y28{bottom:665.279400px;}
.ye0{bottom:665.286150px;}
.y211{bottom:665.290650px;}
.y1b1{bottom:665.292150px;}
.y206{bottom:677.098800px;}
.ya3{bottom:683.153400px;}
.y1e2{bottom:683.227650px;}
.y15f{bottom:683.229900px;}
.y44{bottom:683.259150px;}
.y124{bottom:683.268150px;}
.ycb{bottom:683.277150px;}
.y66{bottom:683.279400px;}
.y27{bottom:683.281650px;}
.ydf{bottom:683.288400px;}
.y210{bottom:683.290650px;}
.ya2{bottom:701.155650px;}
.y1e1{bottom:701.229900px;}
.y15e{bottom:701.232150px;}
.y43{bottom:701.261400px;}
.y123{bottom:701.270400px;}
.yca{bottom:701.279400px;}
.y65{bottom:701.281650px;}
.y26{bottom:701.283900px;}
.yde{bottom:701.290650px;}
.y20f{bottom:705.250650px;}
.y19a{bottom:719.092650px;}
.ya1{bottom:719.157900px;}
.y1e0{bottom:719.232150px;}
.y15d{bottom:719.234400px;}
.y42{bottom:719.263650px;}
.y122{bottom:719.272650px;}
.ydd{bottom:719.279400px;}
.yc9{bottom:719.281650px;}
.y64{bottom:719.283900px;}
.y25{bottom:719.286150px;}
.y242{bottom:719.290650px;}
.y20e{bottom:720.790650px;}
.y199{bottom:737.094900px;}
.ya0{bottom:737.160150px;}
.y1df{bottom:737.234400px;}
.y15c{bottom:737.236650px;}
.y41{bottom:737.265900px;}
.y121{bottom:737.274900px;}
.ydc{bottom:737.281650px;}
.yc8{bottom:737.283900px;}
.y63{bottom:737.286150px;}
.y24{bottom:737.288400px;}
.y241{bottom:737.290650px;}
.y198{bottom:755.097150px;}
.y9f{bottom:755.162400px;}
.y1de{bottom:755.236650px;}
.y15b{bottom:755.238900px;}
.y40{bottom:755.268150px;}
.y120{bottom:755.277150px;}
.ydb{bottom:755.283900px;}
.yc7{bottom:755.286150px;}
.y62{bottom:755.288400px;}
.y23{bottom:755.290650px;}
.y197{bottom:773.099400px;}
.y9e{bottom:773.164650px;}
.y15a{bottom:773.241150px;}
.y24f{bottom:773.270400px;}
.y11f{bottom:773.279400px;}
.yda{bottom:773.286150px;}
.yc6{bottom:773.288400px;}
.y61{bottom:773.290650px;}
.y196{bottom:791.101650px;}
.y9d{bottom:791.166900px;}
.y13c{bottom:791.218650px;}
.y159{bottom:791.243400px;}
.y24e{bottom:791.272650px;}
.y11e{bottom:791.281650px;}
.yd9{bottom:791.288400px;}
.yc5{bottom:791.290650px;}
.y60{bottom:799.869750px;}
.y195{bottom:809.103900px;}
.y9c{bottom:809.169150px;}
.y13b{bottom:809.220900px;}
.y158{bottom:809.245650px;}
.y1b0{bottom:809.250150px;}
.y24d{bottom:809.274900px;}
.y11d{bottom:809.283900px;}
.y240{bottom:809.290650px;}
.y194{bottom:827.106150px;}
.y9b{bottom:827.171400px;}
.y13a{bottom:827.223150px;}
.y157{bottom:827.247900px;}
.y1af{bottom:827.252400px;}
.y24c{bottom:827.277150px;}
.y11c{bottom:827.286150px;}
.y23f{bottom:827.290650px;}
.y100{bottom:839.148750px;}
.y193{bottom:845.108400px;}
.y9a{bottom:845.173650px;}
.y139{bottom:845.225400px;}
.y156{bottom:845.250150px;}
.y1ae{bottom:845.254650px;}
.y5f{bottom:845.279400px;}
.y11b{bottom:845.288400px;}
.y23e{bottom:845.290650px;}
.yff{bottom:854.148750px;}
.y192{bottom:863.110650px;}
.y99{bottom:863.175900px;}
.y138{bottom:863.227650px;}
.y155{bottom:863.252400px;}
.y1ad{bottom:863.256900px;}
.y5e{bottom:863.281650px;}
.y11a{bottom:863.290650px;}
.y191{bottom:881.112900px;}
.y98{bottom:881.178150px;}
.y154{bottom:881.254650px;}
.y1ac{bottom:881.259150px;}
.y5d{bottom:881.283900px;}
.y23d{bottom:881.290650px;}
.yfe{bottom:882.808350px;}
.yfd{bottom:891.817350px;}
.y190{bottom:899.115150px;}
.y97{bottom:899.180400px;}
.y153{bottom:899.256900px;}
.y1ab{bottom:899.261400px;}
.y5c{bottom:899.286150px;}
.y23c{bottom:899.290650px;}
.y148{bottom:915.802500px;}
.y18f{bottom:917.117400px;}
.y96{bottom:917.182650px;}
.y152{bottom:917.259150px;}
.y1aa{bottom:917.263650px;}
.y5b{bottom:917.288400px;}
.y23b{bottom:917.290650px;}
.yfc{bottom:923.695350px;}
.yfb{bottom:932.701650px;}
.y18e{bottom:935.119650px;}
.y95{bottom:935.184900px;}
.y5a{bottom:935.261400px;}
.y1a9{bottom:935.265900px;}
.y23a{bottom:935.290650px;}
.y18d{bottom:953.121900px;}
.y94{bottom:953.187150px;}
.y59{bottom:953.263650px;}
.y1a8{bottom:953.268150px;}
.y239{bottom:953.290650px;}
.yfa{bottom:962.443050px;}
.y18c{bottom:971.124150px;}
.y93{bottom:971.189400px;}
.y58{bottom:971.265900px;}
.y1a7{bottom:971.270400px;}
.y238{bottom:971.290650px;}
.y24b{bottom:971.798250px;}
.yf9{bottom:980.445300px;}
.y18b{bottom:989.126400px;}
.y92{bottom:989.191650px;}
.y57{bottom:989.268150px;}
.y1a6{bottom:989.272650px;}
.y237{bottom:989.290650px;}
.y24a{bottom:989.799750px;}
.yf8{bottom:1001.688450px;}
.y18a{bottom:1007.128650px;}
.y91{bottom:1007.193900px;}
.y56{bottom:1007.270400px;}
.y1a5{bottom:1007.274900px;}
.y236{bottom:1007.290650px;}
.y249{bottom:1015.869750px;}
.yf7{bottom:1022.935200px;}
.y189{bottom:1025.130900px;}
.y90{bottom:1025.196150px;}
.y55{bottom:1025.272650px;}
.y1a4{bottom:1025.277150px;}
.y235{bottom:1025.290650px;}
.yf6{bottom:1031.932650px;}
.y188{bottom:1043.133150px;}
.y8f{bottom:1043.198400px;}
.y54{bottom:1043.274900px;}
.y1a3{bottom:1043.279400px;}
.y234{bottom:1043.290650px;}
.y187{bottom:1061.135400px;}
.y8e{bottom:1061.200650px;}
.y53{bottom:1061.277150px;}
.y1a2{bottom:1061.281650px;}
.y233{bottom:1061.290650px;}
.yf5{bottom:1061.684400px;}
.y1bc{bottom:1068.046500px;}
.yf4{bottom:1070.691900px;}
.y186{bottom:1079.137650px;}
.y8d{bottom:1079.202900px;}
.y52{bottom:1079.279400px;}
.y1a1{bottom:1079.283900px;}
.y232{bottom:1079.290650px;}
.y1bb{bottom:1083.046500px;}
.y185{bottom:1097.139900px;}
.y8c{bottom:1097.205150px;}
.y51{bottom:1097.281650px;}
.y1a0{bottom:1097.286150px;}
.y231{bottom:1097.290650px;}
.y1ba{bottom:1098.046500px;}
.yf3{bottom:1100.938200px;}
.y49{bottom:1113.042600px;}
.y1b9{bottom:1113.046500px;}
.y184{bottom:1115.142150px;}
.y8b{bottom:1115.207400px;}
.y50{bottom:1115.283900px;}
.y19f{bottom:1115.288400px;}
.y230{bottom:1115.290650px;}
.yf2{bottom:1122.651450px;}
.y48{bottom:1128.042600px;}
.y1b8{bottom:1128.046500px;}
.y183{bottom:1133.144400px;}
.y8a{bottom:1133.209650px;}
.y4f{bottom:1133.286150px;}
.y19e{bottom:1133.290650px;}
.y47{bottom:1143.042600px;}
.y1b7{bottom:1143.046500px;}
.yf0{bottom:1147.662450px;}
.y182{bottom:1151.146650px;}
.y89{bottom:1151.211900px;}
.y4e{bottom:1151.288400px;}
.y22f{bottom:1151.290650px;}
.yef{bottom:1156.671450px;}
.y46{bottom:1158.042600px;}
.y1b6{bottom:1158.046500px;}
.yf1{bottom:1165.664700px;}
.y181{bottom:1169.148900px;}
.y88{bottom:1169.214150px;}
.y4d{bottom:1169.290650px;}
.y19d{bottom:1169.638500px;}
.y45{bottom:1173.042600px;}
.y1b5{bottom:1173.046500px;}
.y12{bottom:1209.027150px;}
.y22{bottom:1300.356900px;}
.h2e{height:26.986050px;}
.h2b{height:26.989650px;}
.h2f{height:27.964687px;}
.h2c{height:29.678906px;}
.h9{height:32.205600px;}
.h1f{height:40.560000px;}
.h27{height:41.660156px;}
.h30{height:42.234375px;}
.h10{height:43.804688px;}
.h1c{height:43.819087px;}
.h18{height:43.891687px;}
.h16{height:43.896973px;}
.ha{height:46.128000px;}
.hd{height:46.128011px;}
.h13{height:47.117813px;}
.hb{height:50.062500px;}
.h14{height:54.120000px;}
.h4{height:54.780000px;}
.h22{height:55.155762px;}
.h23{height:55.443762px;}
.h3{height:57.493652px;}
.hf{height:57.556652px;}
.h28{height:57.592652px;}
.he{height:57.610652px;}
.h25{height:57.655652px;}
.hc{height:57.718652px;}
.h29{height:57.970652px;}
.h12{height:59.532000px;}
.h2{height:60.258000px;}
.h11{height:61.800293px;}
.h24{height:63.492188px;}
.h7{height:64.160156px;}
.h6{height:68.630859px;}
.h1a{height:79.777687px;}
.h19{height:79.783688px;}
.h1e{height:79.788487px;}
.h21{height:79.804688px;}
.h1d{height:79.819088px;}
.h1b{height:79.823887px;}
.h17{height:79.869973px;}
.h15{height:97.773293px;}
.h20{height:115.793288px;}
.h5{height:120.516000px;}
.h2d{height:283.119000px;}
.h8{height:569.271000px;}
.h2a{height:683.500500px;}
.h26{height:949.792500px;}
.h1{height:1279.500000px;}
.h0{height:1279.841700px;}
.w2{width:350.589000px;}
.w3{width:361.416000px;}
.w5{width:385.650000px;}
.w4{width:389.929500px;}
.w1{width:909.750000px;}
.w0{width:909.920700px;}
.x0{left:0.000000px;}
.x20{left:10.755900px;}
.x8{left:13.003200px;}
.x1e{left:29.155950px;}
.x1{left:80.786700px;}
.xa{left:85.036200px;}
.x18{left:88.647450px;}
.x11{left:94.023450px;}
.xd{left:95.245200px;}
.x22{left:97.793700px;}
.x9{left:99.494700px;}
.x6{left:100.503750px;}
.x21{left:110.890650px;}
.x3{left:115.233900px;}
.x19{left:118.396650px;}
.x1d{left:135.015300px;}
.x1a{left:153.001500px;}
.x4{left:208.936350px;}
.x12{left:214.684200px;}
.x7{left:230.131290px;}
.x1b{left:305.786100px;}
.x16{left:315.379800px;}
.x13{left:373.192200px;}
.x1c{left:434.951700px;}
.x1f{left:451.987200px;}
.x2{left:463.432950px;}
.x15{left:464.527050px;}
.xb{left:467.584950px;}
.x24{left:476.210700px;}
.xe{left:477.859050px;}
.x23{left:480.437850px;}
.x10{left:482.171850px;}
.xf{left:485.419050px;}
.x5{left:497.051700px;}
.x14{left:522.335700px;}
.xc{left:663.202200px;}
.x17{left:688.003800px;}
@media print{
.v3{vertical-align:-18.224000pt;}
.v4{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.080000pt;}
.v1{vertical-align:18.680000pt;}
.v2{vertical-align:31.976000pt;}
.ls28{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000533pt;}
.ls26{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.051200pt;}
.ls17{letter-spacing:0.056000pt;}
.ls24{letter-spacing:0.085333pt;}
.lsf{letter-spacing:0.112000pt;}
.ls25{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.168000pt;}
.ls2a{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.224000pt;}
.ls23{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.280000pt;}
.ls9{letter-spacing:0.336000pt;}
.ls29{letter-spacing:0.341333pt;}
.ls1a{letter-spacing:0.392000pt;}
.ls22{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.504000pt;}
.ls8{letter-spacing:0.560000pt;}
.ls18{letter-spacing:0.616000pt;}
.ls2c{letter-spacing:0.728000pt;}
.ls3{letter-spacing:0.784000pt;}
.ls1{letter-spacing:0.840000pt;}
.ls2d{letter-spacing:1.064000pt;}
.ls2b{letter-spacing:1.120000pt;}
.ls5{letter-spacing:6.357333pt;}
.ls27{letter-spacing:8.980800pt;}
.ls1c{letter-spacing:11.616533pt;}
.lsa{letter-spacing:12.059733pt;}
.ls2e{letter-spacing:12.992000pt;}
.ls20{letter-spacing:13.888000pt;}
.ls1d{letter-spacing:14.168000pt;}
.ls19{letter-spacing:14.849067pt;}
.ls21{letter-spacing:32.554133pt;}
.lsd{letter-spacing:80.080000pt;}
.ls1b{letter-spacing:151.146667pt;}
.ls12{letter-spacing:173.662400pt;}
.ls14{letter-spacing:192.021333pt;}
.ls13{letter-spacing:194.490667pt;}
.ls6{letter-spacing:207.997056pt;}
.ls15{letter-spacing:229.553600pt;}
.ls16{letter-spacing:229.563733pt;}
.ls10{letter-spacing:282.242667pt;}
.ls1e{letter-spacing:283.398827pt;}
.ls1f{letter-spacing:284.829440pt;}
.ws2{word-spacing:-216.667008pt;}
.ws2a{word-spacing:-164.480000pt;}
.ws31{word-spacing:-26.992000pt;}
.ws2d{word-spacing:-16.309333pt;}
.ws4{word-spacing:-14.826667pt;}
.ws9{word-spacing:-14.560000pt;}
.ws30{word-spacing:-14.504000pt;}
.ws2e{word-spacing:-14.448000pt;}
.ws0{word-spacing:-14.280000pt;}
.ws2f{word-spacing:-14.168000pt;}
.ws5{word-spacing:-14.000000pt;}
.ws2b{word-spacing:-10.666667pt;}
.ws1f{word-spacing:-8.400000pt;}
.wsf{word-spacing:-2.576000pt;}
.wsb{word-spacing:-2.520000pt;}
.wsc{word-spacing:-2.464000pt;}
.ws12{word-spacing:-1.680000pt;}
.ws10{word-spacing:-0.952000pt;}
.wsd{word-spacing:-0.112000pt;}
.ws1c{word-spacing:-0.056000pt;}
.ws22{word-spacing:-0.033600pt;}
.ws3{word-spacing:0.000000pt;}
.ws29{word-spacing:0.840000pt;}
.ws2c{word-spacing:2.389333pt;}
.ws6{word-spacing:3.080000pt;}
.ws28{word-spacing:3.136000pt;}
.ws8{word-spacing:3.248000pt;}
.wsa{word-spacing:3.808000pt;}
.ws7{word-spacing:3.976000pt;}
.wse{word-spacing:4.648000pt;}
.ws11{word-spacing:17.192000pt;}
.ws1{word-spacing:48.585600pt;}
.ws14{word-spacing:90.216000pt;}
.ws20{word-spacing:109.536000pt;}
.ws24{word-spacing:153.773333pt;}
.ws21{word-spacing:164.920000pt;}
.ws27{word-spacing:168.896000pt;}
.ws26{word-spacing:181.773333pt;}
.ws23{word-spacing:186.368000pt;}
.ws25{word-spacing:196.891200pt;}
.ws13{word-spacing:265.720000pt;}
.ws1a{word-spacing:268.240000pt;}
.ws17{word-spacing:268.242667pt;}
.ws1d{word-spacing:340.965333pt;}
.ws1e{word-spacing:340.984000pt;}
.ws1b{word-spacing:368.069333pt;}
.ws15{word-spacing:410.521067pt;}
.ws16{word-spacing:447.905067pt;}
.ws18{word-spacing:912.573333pt;}
.ws19{word-spacing:1092.837333pt;}
._f{margin-left:-207.997056pt;}
._48{margin-left:-151.146667pt;}
._39{margin-left:-14.744000pt;}
._20{margin-left:-13.720000pt;}
._4a{margin-left:-10.709333pt;}
._c{margin-left:-7.696000pt;}
._6{margin-left:-5.720000pt;}
._e{margin-left:-4.725333pt;}
._d{margin-left:-3.797333pt;}
._4{margin-left:-2.848000pt;}
._0{margin-left:-1.877333pt;}
._1{margin-left:-0.938667pt;}
._5{width:1.736000pt;}
._7{width:2.968000pt;}
._a{width:4.088000pt;}
._14{width:5.096000pt;}
._1b{width:6.104000pt;}
._1a{width:7.280000pt;}
._2{width:8.176000pt;}
._17{width:9.600000pt;}
._11{width:11.200000pt;}
._9{width:12.818667pt;}
._4b{width:13.848000pt;}
._12{width:14.952000pt;}
._10{width:16.520000pt;}
._8{width:17.864000pt;}
._38{width:18.760000pt;}
._15{width:19.656000pt;}
._18{width:20.776000pt;}
._1f{width:22.064000pt;}
._3{width:23.016000pt;}
._21{width:23.952000pt;}
._42{width:25.240000pt;}
._13{width:26.778667pt;}
._45{width:27.781333pt;}
._46{width:29.013333pt;}
._44{width:31.864000pt;}
._49{width:33.096000pt;}
._43{width:34.216000pt;}
._47{width:36.120000pt;}
._1d{width:55.832000pt;}
._31{width:58.685333pt;}
._1e{width:65.408000pt;}
._19{width:78.288000pt;}
._1c{width:101.752000pt;}
._34{width:141.450133pt;}
._3a{width:167.174933pt;}
._40{width:168.374400pt;}
._3e{width:180.653867pt;}
._3f{width:182.891200pt;}
._3b{width:187.961067pt;}
._3c{width:195.773333pt;}
._3d{width:210.891200pt;}
._41{width:212.969067pt;}
._26{width:229.320000pt;}
._22{width:238.448000pt;}
._2f{width:244.200000pt;}
._24{width:272.832000pt;}
._2e{width:282.242667pt;}
._2b{width:302.456000pt;}
._29{width:350.616000pt;}
._33{width:381.642667pt;}
._35{width:397.762667pt;}
._2d{width:408.128000pt;}
._37{width:410.194667pt;}
._27{width:412.517333pt;}
._25{width:426.121067pt;}
._2a{width:517.420267pt;}
._36{width:535.576000pt;}
._32{width:641.482667pt;}
._28{width:790.026667pt;}
._23{width:827.662933pt;}
._b{width:842.010667pt;}
._16{width:843.552000pt;}
._2c{width:934.301333pt;}
._30{width:1050.896000pt;}
.fsa{font-size:23.893333pt;}
.fsc{font-size:25.600000pt;}
.fsb{font-size:26.880000pt;}
.fs8{font-size:33.600000pt;}
.fs7{font-size:40.896000pt;}
.fs3{font-size:42.666667pt;}
.fs9{font-size:42.666677pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs4{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y20b{bottom:18.746667pt;}
.y20{bottom:26.947360pt;}
.y1f{bottom:27.305200pt;}
.y205{bottom:50.556800pt;}
.y151{bottom:78.928667pt;}
.yc4{bottom:79.181467pt;}
.y4c{bottom:79.211333pt;}
.y19c{bottom:79.235867pt;}
.y180{bottom:79.249467pt;}
.y87{bottom:79.307467pt;}
.y1dd{bottom:79.317467pt;}
.y11{bottom:79.345467pt;}
.y203{bottom:79.353467pt;}
.y1c3{bottom:79.357467pt;}
.y8{bottom:79.359467pt;}
.y22e{bottom:79.369467pt;}
.y119{bottom:79.778267pt;}
.y20d{bottom:79.808400pt;}
.y150{bottom:92.262000pt;}
.y4b{bottom:92.544667pt;}
.y19b{bottom:92.569200pt;}
.y20c{bottom:93.141733pt;}
.yc3{bottom:95.183467pt;}
.y17f{bottom:95.251467pt;}
.y86{bottom:95.309467pt;}
.y1dc{bottom:95.319467pt;}
.y10{bottom:95.347467pt;}
.y202{bottom:95.355467pt;}
.y1c2{bottom:95.359467pt;}
.y7{bottom:95.361467pt;}
.y22d{bottom:95.369467pt;}
.y4a{bottom:105.878000pt;}
.y117{bottom:106.540000pt;}
.y209{bottom:108.286400pt;}
.yc2{bottom:111.185467pt;}
.y17e{bottom:111.253467pt;}
.y85{bottom:111.311467pt;}
.y1db{bottom:111.321467pt;}
.yf{bottom:111.349467pt;}
.y201{bottom:111.357467pt;}
.y1c1{bottom:111.361467pt;}
.y6{bottom:111.363467pt;}
.y22c{bottom:111.369467pt;}
.y118{bottom:114.534000pt;}
.y14f{bottom:121.518800pt;}
.y116{bottom:122.542000pt;}
.yc1{bottom:127.187467pt;}
.y17d{bottom:127.255467pt;}
.y84{bottom:127.313467pt;}
.y1da{bottom:127.323467pt;}
.ye{bottom:127.351467pt;}
.y200{bottom:127.359467pt;}
.y1c0{bottom:127.363467pt;}
.y5{bottom:127.365467pt;}
.y22b{bottom:127.369467pt;}
.y115{bottom:138.544000pt;}
.yc0{bottom:143.189467pt;}
.y17c{bottom:143.257467pt;}
.y83{bottom:143.315467pt;}
.y1d9{bottom:143.325467pt;}
.yd{bottom:143.353467pt;}
.y1ff{bottom:143.361467pt;}
.y1bf{bottom:143.365467pt;}
.y4{bottom:143.367467pt;}
.y22a{bottom:143.369467pt;}
.y14e{bottom:144.624000pt;}
.ybf{bottom:159.191467pt;}
.y17b{bottom:159.259467pt;}
.y82{bottom:159.317467pt;}
.y1d8{bottom:159.327467pt;}
.yc{bottom:159.355467pt;}
.y1fe{bottom:159.363467pt;}
.y1be{bottom:159.367467pt;}
.y3{bottom:159.369467pt;}
.y112{bottom:159.885333pt;}
.y14d{bottom:167.729067pt;}
.y114{bottom:167.888000pt;}
.ybe{bottom:175.193467pt;}
.y17a{bottom:175.261467pt;}
.y81{bottom:175.319467pt;}
.y1d7{bottom:175.329467pt;}
.yb{bottom:175.357467pt;}
.y1fd{bottom:175.365467pt;}
.y1bd{bottom:175.369467pt;}
.y111{bottom:175.887333pt;}
.y113{bottom:175.890000pt;}
.y2{bottom:190.776133pt;}
.y14c{bottom:190.834400pt;}
.ybd{bottom:191.195467pt;}
.y179{bottom:191.263467pt;}
.y80{bottom:191.321467pt;}
.y1d6{bottom:191.331467pt;}
.ya{bottom:191.359467pt;}
.y1fc{bottom:191.367467pt;}
.y248{bottom:191.369467pt;}
.y110{bottom:191.889333pt;}
.y1b3{bottom:206.447733pt;}
.y1{bottom:206.777467pt;}
.ybc{bottom:207.197467pt;}
.y1fb{bottom:207.263467pt;}
.y178{bottom:207.265467pt;}
.y7f{bottom:207.323467pt;}
.y1d5{bottom:207.333467pt;}
.y9{bottom:207.361467pt;}
.y229{bottom:207.369467pt;}
.y10d{bottom:211.839333pt;}
.y14b{bottom:213.939467pt;}
.y10f{bottom:220.785333pt;}
.y109{bottom:221.176667pt;}
.ybb{bottom:223.199467pt;}
.y1fa{bottom:223.265467pt;}
.y177{bottom:223.267467pt;}
.y7e{bottom:223.325467pt;}
.y1d4{bottom:223.335467pt;}
.y3f{bottom:223.363467pt;}
.y247{bottom:223.369467pt;}
.y228{bottom:226.889467pt;}
.y107{bottom:227.838000pt;}
.y10c{bottom:227.841333pt;}
.y14a{bottom:237.045467pt;}
.yba{bottom:239.201467pt;}
.y1f9{bottom:239.267467pt;}
.y176{bottom:239.269467pt;}
.y7d{bottom:239.327467pt;}
.y1d3{bottom:239.337467pt;}
.y3e{bottom:239.365467pt;}
.y227{bottom:239.369467pt;}
.y20a{bottom:243.088667pt;}
.y106{bottom:245.730000pt;}
.y10b{bottom:245.733333pt;}
.y1d{bottom:250.171733pt;}
.y10e{bottom:252.789333pt;}
.y108{bottom:253.068667pt;}
.yb9{bottom:255.203467pt;}
.y1f8{bottom:255.269467pt;}
.y175{bottom:255.271467pt;}
.y265{bottom:255.297467pt;}
.y7c{bottom:255.329467pt;}
.y1d2{bottom:255.339467pt;}
.y3d{bottom:255.367467pt;}
.y226{bottom:255.369467pt;}
.y149{bottom:260.257467pt;}
.y105{bottom:261.732000pt;}
.y10a{bottom:261.735333pt;}
.y1b4{bottom:265.085733pt;}
.y1c{bottom:270.171733pt;}
.yb8{bottom:271.205467pt;}
.y1f7{bottom:271.271467pt;}
.y174{bottom:271.273467pt;}
.y264{bottom:271.299467pt;}
.y3c{bottom:271.319467pt;}
.y7b{bottom:271.331467pt;}
.y1d1{bottom:271.341467pt;}
.y225{bottom:271.369467pt;}
.y104{bottom:280.240000pt;}
.y103{bottom:280.244533pt;}
.yb7{bottom:287.207467pt;}
.y1f6{bottom:287.273467pt;}
.y173{bottom:287.275467pt;}
.y263{bottom:287.301467pt;}
.y3b{bottom:287.321467pt;}
.y7a{bottom:287.333467pt;}
.y1d0{bottom:287.343467pt;}
.y224{bottom:287.369467pt;}
.y1b{bottom:290.171733pt;}
.y102{bottom:296.246533pt;}
.yb6{bottom:303.209467pt;}
.y1f5{bottom:303.275467pt;}
.y172{bottom:303.277467pt;}
.y262{bottom:303.303467pt;}
.y137{bottom:303.311467pt;}
.y147{bottom:303.319467pt;}
.y3a{bottom:303.323467pt;}
.y79{bottom:303.335467pt;}
.y1cf{bottom:303.345467pt;}
.y246{bottom:303.369467pt;}
.y223{bottom:306.889467pt;}
.y1a{bottom:310.171733pt;}
.y101{bottom:316.462533pt;}
.yb5{bottom:319.211467pt;}
.y1f4{bottom:319.277467pt;}
.y171{bottom:319.279467pt;}
.y261{bottom:319.305467pt;}
.y136{bottom:319.313467pt;}
.y146{bottom:319.321467pt;}
.y39{bottom:319.325467pt;}
.y78{bottom:319.337467pt;}
.y1ce{bottom:319.347467pt;}
.y222{bottom:319.369467pt;}
.y19{bottom:330.171733pt;}
.yb4{bottom:335.213467pt;}
.y1f3{bottom:335.279467pt;}
.y170{bottom:335.281467pt;}
.y260{bottom:335.307467pt;}
.y135{bottom:335.315467pt;}
.y145{bottom:335.323467pt;}
.y38{bottom:335.327467pt;}
.y77{bottom:335.339467pt;}
.y1cd{bottom:335.349467pt;}
.y221{bottom:335.369467pt;}
.y18{bottom:350.171733pt;}
.yb3{bottom:351.215467pt;}
.y1f2{bottom:351.281467pt;}
.y16f{bottom:351.283467pt;}
.y25f{bottom:351.309467pt;}
.y134{bottom:351.317467pt;}
.y144{bottom:351.325467pt;}
.y37{bottom:351.329467pt;}
.y76{bottom:351.341467pt;}
.y1cc{bottom:351.351467pt;}
.y245{bottom:351.369467pt;}
.y220{bottom:354.889467pt;}
.yb2{bottom:367.217467pt;}
.y1f1{bottom:367.283467pt;}
.y16e{bottom:367.285467pt;}
.y25e{bottom:367.311467pt;}
.y133{bottom:367.319467pt;}
.y143{bottom:367.327467pt;}
.y36{bottom:367.331467pt;}
.yee{bottom:367.337467pt;}
.y75{bottom:367.343467pt;}
.y1cb{bottom:367.353467pt;}
.yd8{bottom:367.367467pt;}
.y21f{bottom:367.369467pt;}
.y17{bottom:370.171733pt;}
.yb1{bottom:383.219467pt;}
.y1f0{bottom:383.285467pt;}
.y16d{bottom:383.287467pt;}
.y25d{bottom:383.313467pt;}
.y132{bottom:383.321467pt;}
.y142{bottom:383.329467pt;}
.y35{bottom:383.333467pt;}
.yed{bottom:383.339467pt;}
.y74{bottom:383.345467pt;}
.y1ca{bottom:383.355467pt;}
.yd7{bottom:383.369467pt;}
.y21e{bottom:386.889467pt;}
.y16{bottom:390.171733pt;}
.yb0{bottom:399.221467pt;}
.y1ef{bottom:399.287467pt;}
.y16c{bottom:399.289467pt;}
.y25c{bottom:399.315467pt;}
.y131{bottom:399.323467pt;}
.y141{bottom:399.331467pt;}
.y34{bottom:399.335467pt;}
.yec{bottom:399.341467pt;}
.y73{bottom:399.347467pt;}
.y1c9{bottom:399.357467pt;}
.y21d{bottom:399.369467pt;}
.yd6{bottom:406.992667pt;}
.y15{bottom:410.171733pt;}
.yaf{bottom:415.223467pt;}
.y1ee{bottom:415.289467pt;}
.y16b{bottom:415.291467pt;}
.y25b{bottom:415.317467pt;}
.y130{bottom:415.325467pt;}
.y140{bottom:415.333467pt;}
.y33{bottom:415.337467pt;}
.yeb{bottom:415.343467pt;}
.y72{bottom:415.349467pt;}
.y1c8{bottom:415.359467pt;}
.y244{bottom:415.369467pt;}
.y21c{bottom:418.889467pt;}
.yd5{bottom:422.994000pt;}
.yae{bottom:431.225467pt;}
.y1ed{bottom:431.291467pt;}
.y16a{bottom:431.293467pt;}
.y25a{bottom:431.319467pt;}
.y12f{bottom:431.327467pt;}
.y13f{bottom:431.335467pt;}
.y32{bottom:431.339467pt;}
.yea{bottom:431.345467pt;}
.y71{bottom:431.351467pt;}
.y1c7{bottom:431.361467pt;}
.y21b{bottom:431.369467pt;}
.yd4{bottom:438.995333pt;}
.y204{bottom:443.151733pt;}
.y14{bottom:443.505067pt;}
.y208{bottom:446.193600pt;}
.yad{bottom:447.227467pt;}
.y1ec{bottom:447.293467pt;}
.y169{bottom:447.295467pt;}
.y259{bottom:447.321467pt;}
.y12e{bottom:447.329467pt;}
.y13e{bottom:447.337467pt;}
.y31{bottom:447.341467pt;}
.ye9{bottom:447.347467pt;}
.y70{bottom:447.353467pt;}
.y1c6{bottom:447.363467pt;}
.y21a{bottom:447.369467pt;}
.y207{bottom:459.526933pt;}
.yac{bottom:463.229467pt;}
.y1eb{bottom:463.295467pt;}
.y168{bottom:463.297467pt;}
.y258{bottom:463.323467pt;}
.y12d{bottom:463.331467pt;}
.y13d{bottom:463.339467pt;}
.y30{bottom:463.343467pt;}
.ye8{bottom:463.349467pt;}
.y6f{bottom:463.355467pt;}
.y1c5{bottom:463.365467pt;}
.y243{bottom:463.369467pt;}
.y219{bottom:466.889467pt;}
.y13{bottom:476.838400pt;}
.yab{bottom:479.231467pt;}
.y1ea{bottom:479.297467pt;}
.y167{bottom:479.299467pt;}
.y257{bottom:479.325467pt;}
.y12c{bottom:479.333467pt;}
.yd3{bottom:479.341467pt;}
.y2f{bottom:479.345467pt;}
.ye7{bottom:479.351467pt;}
.y6e{bottom:479.357467pt;}
.y1c4{bottom:479.367467pt;}
.y218{bottom:479.369467pt;}
.yaa{bottom:495.233467pt;}
.y1e9{bottom:495.299467pt;}
.y166{bottom:495.301467pt;}
.y256{bottom:495.327467pt;}
.y12b{bottom:495.335467pt;}
.yd2{bottom:495.343467pt;}
.y2e{bottom:495.347467pt;}
.ye6{bottom:495.353467pt;}
.y6d{bottom:495.359467pt;}
.y217{bottom:495.369467pt;}
.ya9{bottom:511.235467pt;}
.y1e8{bottom:511.301467pt;}
.y165{bottom:511.303467pt;}
.y255{bottom:511.329467pt;}
.y12a{bottom:511.337467pt;}
.yd1{bottom:511.345467pt;}
.y2d{bottom:511.349467pt;}
.ye5{bottom:511.355467pt;}
.y6c{bottom:511.361467pt;}
.y216{bottom:511.369467pt;}
.ya8{bottom:527.237467pt;}
.y1e7{bottom:527.303467pt;}
.y164{bottom:527.305467pt;}
.y254{bottom:527.331467pt;}
.y129{bottom:527.339467pt;}
.yd0{bottom:527.347467pt;}
.y2c{bottom:527.351467pt;}
.ye4{bottom:527.357467pt;}
.y6b{bottom:527.363467pt;}
.y215{bottom:527.369467pt;}
.y1e{bottom:536.689067pt;}
.ya7{bottom:543.239467pt;}
.y1e6{bottom:543.305467pt;}
.y163{bottom:543.307467pt;}
.y253{bottom:543.333467pt;}
.y128{bottom:543.341467pt;}
.ycf{bottom:543.349467pt;}
.y2b{bottom:543.353467pt;}
.ye3{bottom:543.359467pt;}
.y6a{bottom:543.365467pt;}
.y214{bottom:543.369467pt;}
.y21{bottom:551.369467pt;}
.ya6{bottom:559.241467pt;}
.y1e5{bottom:559.307467pt;}
.y162{bottom:559.309467pt;}
.y252{bottom:559.335467pt;}
.y127{bottom:559.343467pt;}
.yce{bottom:559.351467pt;}
.y2a{bottom:559.355467pt;}
.ye2{bottom:559.361467pt;}
.y69{bottom:559.367467pt;}
.y213{bottom:559.369467pt;}
.ya5{bottom:575.243467pt;}
.y1e4{bottom:575.309467pt;}
.y161{bottom:575.311467pt;}
.y251{bottom:575.337467pt;}
.y126{bottom:575.345467pt;}
.ycd{bottom:575.353467pt;}
.y68{bottom:575.355467pt;}
.y29{bottom:575.357467pt;}
.ye1{bottom:575.363467pt;}
.y1b2{bottom:575.369467pt;}
.y212{bottom:578.889467pt;}
.ya4{bottom:591.245467pt;}
.y1e3{bottom:591.311467pt;}
.y160{bottom:591.313467pt;}
.y250{bottom:591.339467pt;}
.y125{bottom:591.347467pt;}
.ycc{bottom:591.355467pt;}
.y67{bottom:591.357467pt;}
.y28{bottom:591.359467pt;}
.ye0{bottom:591.365467pt;}
.y211{bottom:591.369467pt;}
.y1b1{bottom:591.370800pt;}
.y206{bottom:601.865600pt;}
.ya3{bottom:607.247467pt;}
.y1e2{bottom:607.313467pt;}
.y15f{bottom:607.315467pt;}
.y44{bottom:607.341467pt;}
.y124{bottom:607.349467pt;}
.ycb{bottom:607.357467pt;}
.y66{bottom:607.359467pt;}
.y27{bottom:607.361467pt;}
.ydf{bottom:607.367467pt;}
.y210{bottom:607.369467pt;}
.ya2{bottom:623.249467pt;}
.y1e1{bottom:623.315467pt;}
.y15e{bottom:623.317467pt;}
.y43{bottom:623.343467pt;}
.y123{bottom:623.351467pt;}
.yca{bottom:623.359467pt;}
.y65{bottom:623.361467pt;}
.y26{bottom:623.363467pt;}
.yde{bottom:623.369467pt;}
.y20f{bottom:626.889467pt;}
.y19a{bottom:639.193467pt;}
.ya1{bottom:639.251467pt;}
.y1e0{bottom:639.317467pt;}
.y15d{bottom:639.319467pt;}
.y42{bottom:639.345467pt;}
.y122{bottom:639.353467pt;}
.ydd{bottom:639.359467pt;}
.yc9{bottom:639.361467pt;}
.y64{bottom:639.363467pt;}
.y25{bottom:639.365467pt;}
.y242{bottom:639.369467pt;}
.y20e{bottom:640.702800pt;}
.y199{bottom:655.195467pt;}
.ya0{bottom:655.253467pt;}
.y1df{bottom:655.319467pt;}
.y15c{bottom:655.321467pt;}
.y41{bottom:655.347467pt;}
.y121{bottom:655.355467pt;}
.ydc{bottom:655.361467pt;}
.yc8{bottom:655.363467pt;}
.y63{bottom:655.365467pt;}
.y24{bottom:655.367467pt;}
.y241{bottom:655.369467pt;}
.y198{bottom:671.197467pt;}
.y9f{bottom:671.255467pt;}
.y1de{bottom:671.321467pt;}
.y15b{bottom:671.323467pt;}
.y40{bottom:671.349467pt;}
.y120{bottom:671.357467pt;}
.ydb{bottom:671.363467pt;}
.yc7{bottom:671.365467pt;}
.y62{bottom:671.367467pt;}
.y23{bottom:671.369467pt;}
.y197{bottom:687.199467pt;}
.y9e{bottom:687.257467pt;}
.y15a{bottom:687.325467pt;}
.y24f{bottom:687.351467pt;}
.y11f{bottom:687.359467pt;}
.yda{bottom:687.365467pt;}
.yc6{bottom:687.367467pt;}
.y61{bottom:687.369467pt;}
.y196{bottom:703.201467pt;}
.y9d{bottom:703.259467pt;}
.y13c{bottom:703.305467pt;}
.y159{bottom:703.327467pt;}
.y24e{bottom:703.353467pt;}
.y11e{bottom:703.361467pt;}
.yd9{bottom:703.367467pt;}
.yc5{bottom:703.369467pt;}
.y60{bottom:710.995333pt;}
.y195{bottom:719.203467pt;}
.y9c{bottom:719.261467pt;}
.y13b{bottom:719.307467pt;}
.y158{bottom:719.329467pt;}
.y1b0{bottom:719.333467pt;}
.y24d{bottom:719.355467pt;}
.y11d{bottom:719.363467pt;}
.y240{bottom:719.369467pt;}
.y194{bottom:735.205467pt;}
.y9b{bottom:735.263467pt;}
.y13a{bottom:735.309467pt;}
.y157{bottom:735.331467pt;}
.y1af{bottom:735.335467pt;}
.y24c{bottom:735.357467pt;}
.y11c{bottom:735.365467pt;}
.y23f{bottom:735.369467pt;}
.y100{bottom:745.910000pt;}
.y193{bottom:751.207467pt;}
.y9a{bottom:751.265467pt;}
.y139{bottom:751.311467pt;}
.y156{bottom:751.333467pt;}
.y1ae{bottom:751.337467pt;}
.y5f{bottom:751.359467pt;}
.y11b{bottom:751.367467pt;}
.y23e{bottom:751.369467pt;}
.yff{bottom:759.243333pt;}
.y192{bottom:767.209467pt;}
.y99{bottom:767.267467pt;}
.y138{bottom:767.313467pt;}
.y155{bottom:767.335467pt;}
.y1ad{bottom:767.339467pt;}
.y5e{bottom:767.361467pt;}
.y11a{bottom:767.369467pt;}
.y191{bottom:783.211467pt;}
.y98{bottom:783.269467pt;}
.y154{bottom:783.337467pt;}
.y1ac{bottom:783.341467pt;}
.y5d{bottom:783.363467pt;}
.y23d{bottom:783.369467pt;}
.yfe{bottom:784.718533pt;}
.yfd{bottom:792.726533pt;}
.y190{bottom:799.213467pt;}
.y97{bottom:799.271467pt;}
.y153{bottom:799.339467pt;}
.y1ab{bottom:799.343467pt;}
.y5c{bottom:799.365467pt;}
.y23c{bottom:799.369467pt;}
.y148{bottom:814.046667pt;}
.y18f{bottom:815.215467pt;}
.y96{bottom:815.273467pt;}
.y152{bottom:815.341467pt;}
.y1aa{bottom:815.345467pt;}
.y5b{bottom:815.367467pt;}
.y23b{bottom:815.369467pt;}
.yfc{bottom:821.062533pt;}
.yfb{bottom:829.068133pt;}
.y18e{bottom:831.217467pt;}
.y95{bottom:831.275467pt;}
.y5a{bottom:831.343467pt;}
.y1a9{bottom:831.347467pt;}
.y23a{bottom:831.369467pt;}
.y18d{bottom:847.219467pt;}
.y94{bottom:847.277467pt;}
.y59{bottom:847.345467pt;}
.y1a8{bottom:847.349467pt;}
.y239{bottom:847.369467pt;}
.yfa{bottom:855.504933pt;}
.y18c{bottom:863.221467pt;}
.y93{bottom:863.279467pt;}
.y58{bottom:863.347467pt;}
.y1a7{bottom:863.351467pt;}
.y238{bottom:863.369467pt;}
.y24b{bottom:863.820667pt;}
.yf9{bottom:871.506933pt;}
.y18b{bottom:879.223467pt;}
.y92{bottom:879.281467pt;}
.y57{bottom:879.349467pt;}
.y1a6{bottom:879.353467pt;}
.y237{bottom:879.369467pt;}
.y24a{bottom:879.822000pt;}
.yf8{bottom:890.389733pt;}
.y18a{bottom:895.225467pt;}
.y91{bottom:895.283467pt;}
.y56{bottom:895.351467pt;}
.y1a5{bottom:895.355467pt;}
.y236{bottom:895.369467pt;}
.y249{bottom:902.995333pt;}
.yf7{bottom:909.275733pt;}
.y189{bottom:911.227467pt;}
.y90{bottom:911.285467pt;}
.y55{bottom:911.353467pt;}
.y1a4{bottom:911.357467pt;}
.y235{bottom:911.369467pt;}
.yf6{bottom:917.273467pt;}
.y188{bottom:927.229467pt;}
.y8f{bottom:927.287467pt;}
.y54{bottom:927.355467pt;}
.y1a3{bottom:927.359467pt;}
.y234{bottom:927.369467pt;}
.y187{bottom:943.231467pt;}
.y8e{bottom:943.289467pt;}
.y53{bottom:943.357467pt;}
.y1a2{bottom:943.361467pt;}
.y233{bottom:943.369467pt;}
.yf5{bottom:943.719467pt;}
.y1bc{bottom:949.374667pt;}
.yf4{bottom:951.726133pt;}
.y186{bottom:959.233467pt;}
.y8d{bottom:959.291467pt;}
.y52{bottom:959.359467pt;}
.y1a1{bottom:959.363467pt;}
.y232{bottom:959.369467pt;}
.y1bb{bottom:962.708000pt;}
.y185{bottom:975.235467pt;}
.y8c{bottom:975.293467pt;}
.y51{bottom:975.361467pt;}
.y1a0{bottom:975.365467pt;}
.y231{bottom:975.369467pt;}
.y1ba{bottom:976.041333pt;}
.yf3{bottom:978.611733pt;}
.y49{bottom:989.371200pt;}
.y1b9{bottom:989.374667pt;}
.y184{bottom:991.237467pt;}
.y8b{bottom:991.295467pt;}
.y50{bottom:991.363467pt;}
.y19f{bottom:991.367467pt;}
.y230{bottom:991.369467pt;}
.yf2{bottom:997.912400pt;}
.y48{bottom:1002.704533pt;}
.y1b8{bottom:1002.708000pt;}
.y183{bottom:1007.239467pt;}
.y8a{bottom:1007.297467pt;}
.y4f{bottom:1007.365467pt;}
.y19e{bottom:1007.369467pt;}
.y47{bottom:1016.037867pt;}
.y1b7{bottom:1016.041333pt;}
.yf0{bottom:1020.144400pt;}
.y182{bottom:1023.241467pt;}
.y89{bottom:1023.299467pt;}
.y4e{bottom:1023.367467pt;}
.y22f{bottom:1023.369467pt;}
.yef{bottom:1028.152400pt;}
.y46{bottom:1029.371200pt;}
.y1b6{bottom:1029.374667pt;}
.yf1{bottom:1036.146400pt;}
.y181{bottom:1039.243467pt;}
.y88{bottom:1039.301467pt;}
.y4d{bottom:1039.369467pt;}
.y19d{bottom:1039.678667pt;}
.y45{bottom:1042.704533pt;}
.y1b5{bottom:1042.708000pt;}
.y12{bottom:1074.690800pt;}
.y22{bottom:1155.872800pt;}
.h2e{height:23.987600pt;}
.h2b{height:23.990800pt;}
.h2f{height:24.857500pt;}
.h2c{height:26.381250pt;}
.h9{height:28.627200pt;}
.h1f{height:36.053333pt;}
.h27{height:37.031250pt;}
.h30{height:37.541667pt;}
.h10{height:38.937500pt;}
.h1c{height:38.950300pt;}
.h18{height:39.014833pt;}
.h16{height:39.019531pt;}
.ha{height:41.002667pt;}
.hd{height:41.002677pt;}
.h13{height:41.882500pt;}
.hb{height:44.500000pt;}
.h14{height:48.106667pt;}
.h4{height:48.693333pt;}
.h22{height:49.027344pt;}
.h23{height:49.283344pt;}
.h3{height:51.105469pt;}
.hf{height:51.161469pt;}
.h28{height:51.193469pt;}
.he{height:51.209469pt;}
.h25{height:51.249469pt;}
.hc{height:51.305469pt;}
.h29{height:51.529469pt;}
.h12{height:52.917333pt;}
.h2{height:53.562667pt;}
.h11{height:54.933594pt;}
.h24{height:56.437500pt;}
.h7{height:57.031250pt;}
.h6{height:61.005208pt;}
.h1a{height:70.913500pt;}
.h19{height:70.918833pt;}
.h1e{height:70.923100pt;}
.h21{height:70.937500pt;}
.h1d{height:70.950300pt;}
.h1b{height:70.954567pt;}
.h17{height:70.995531pt;}
.h15{height:86.909594pt;}
.h20{height:102.927367pt;}
.h5{height:107.125333pt;}
.h2d{height:251.661333pt;}
.h8{height:506.018667pt;}
.h2a{height:607.556000pt;}
.h26{height:844.260000pt;}
.h1{height:1137.333333pt;}
.h0{height:1137.637067pt;}
.w2{width:311.634667pt;}
.w3{width:321.258667pt;}
.w5{width:342.800000pt;}
.w4{width:346.604000pt;}
.w1{width:808.666667pt;}
.w0{width:808.818400pt;}
.x0{left:0.000000pt;}
.x20{left:9.560800pt;}
.x8{left:11.558400pt;}
.x1e{left:25.916400pt;}
.x1{left:71.810400pt;}
.xa{left:75.587733pt;}
.x18{left:78.797733pt;}
.x11{left:83.576400pt;}
.xd{left:84.662400pt;}
.x22{left:86.927733pt;}
.x9{left:88.439733pt;}
.x6{left:89.336667pt;}
.x21{left:98.569467pt;}
.x3{left:102.430133pt;}
.x19{left:105.241467pt;}
.x1d{left:120.013600pt;}
.x1a{left:136.001333pt;}
.x4{left:185.721200pt;}
.x12{left:190.830400pt;}
.x7{left:204.561147pt;}
.x1b{left:271.809867pt;}
.x16{left:280.337600pt;}
.x13{left:331.726400pt;}
.x1c{left:386.623733pt;}
.x1f{left:401.766400pt;}
.x2{left:411.940400pt;}
.x15{left:412.912933pt;}
.xb{left:415.631067pt;}
.x24{left:423.298400pt;}
.xe{left:424.763600pt;}
.x23{left:427.055867pt;}
.x10{left:428.597200pt;}
.xf{left:431.483600pt;}
.x5{left:441.823733pt;}
.x14{left:464.298400pt;}
.xc{left:589.513067pt;}
.x17{left:611.558933pt;}
}




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