
    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_8ab8619fcb3b3a1a75f07a51.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_8011f41e34cac3a7bda428d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_9c9757bd8d90e07e2a13b57e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_79cefda83876d5156432c5d3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_aa9699b37ed25a0a064190e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_2b5ee3ca7f587d5adbe9b7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e43efcbc7b8a4e9389cbcf4c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_57a22f28e6e450595c9ef704.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_caa2e921e0e69a9bab4c1a25.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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_ad47f892e6bddd27cdbd27bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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_9672ca0d247366a85c451c37.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.930000;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_090b5f146318e250ca9b718a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;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_9deee4e56ac4df830796e45d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;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_84104f226caf542ecdf34420.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910000;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_230512d79dc829128e83e65c.woff2')format("woff");}.fff{font-family:fff;line-height:0.645000;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_0bd047b37f554459fb9a1b2d.woff2')format("woff");}.ff10{font-family:ff10;line-height:2.999000;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_024a66754d7a905913c9b8d1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.520000;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_0cbd95457cf23c49e63e1d23.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.900000;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_9da9daf39385401fafedb5db.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_c5df49729b6b95bef1113eac.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-49.746000px;}
.v4{vertical-align:-22.854000px;}
.v3{vertical-align:-10.668000px;}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.616000px;}
.v5{vertical-align:10.668000px;}
.va{vertical-align:13.620000px;}
.ve{vertical-align:17.274000px;}
.v2{vertical-align:23.754000px;}
.v7{vertical-align:33.768000px;}
.v6{vertical-align:43.584000px;}
.vf{vertical-align:53.016000px;}
.vc{vertical-align:61.728000px;}
.vb{vertical-align:97.470000px;}
.v8{vertical-align:111.930000px;}
.ls8{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000960px;}
.ls19{letter-spacing:0.001611px;}
.ls1d{letter-spacing:0.002682px;}
.lsc{letter-spacing:0.004008px;}
.ls1c{letter-spacing:0.005808px;}
.ls1b{letter-spacing:0.007768px;}
.ls1f{letter-spacing:0.008523px;}
.lsb{letter-spacing:0.014471px;}
.ls14{letter-spacing:0.023337px;}
.ls0{letter-spacing:0.024098px;}
.ls2d{letter-spacing:1.767274px;}
.lse{letter-spacing:1.832729px;}
.ls1e{letter-spacing:2.008465px;}
.lsf{letter-spacing:2.880002px;}
.ls15{letter-spacing:2.982960px;}
.ls24{letter-spacing:2.984915px;}
.ls11{letter-spacing:2.987971px;}
.ls7{letter-spacing:2.988532px;}
.ls10{letter-spacing:2.988960px;}
.ls22{letter-spacing:4.705905px;}
.ls27{letter-spacing:5.366157px;}
.ls30{letter-spacing:10.865464px;}
.ls23{letter-spacing:10.930918px;}
.ls18{letter-spacing:13.896960px;}
.ls17{letter-spacing:14.530921px;}
.ls13{letter-spacing:15.512740px;}
.ls1{letter-spacing:16.617617px;}
.ls2e{letter-spacing:17.280014px;}
.ls12{letter-spacing:17.410924px;}
.ls16{letter-spacing:18.196379px;}
.ls2{letter-spacing:18.291334px;}
.ls26{letter-spacing:18.623950px;}
.ls2a{letter-spacing:19.907412px;}
.ls21{letter-spacing:20.029108px;}
.ls29{letter-spacing:20.525950px;}
.ls31{letter-spacing:21.534563px;}
.lsa{letter-spacing:21.796382px;}
.ls9{letter-spacing:21.861836px;}
.ls20{letter-spacing:24.218202px;}
.ls1a{letter-spacing:24.803971px;}
.lsd{letter-spacing:24.810960px;}
.ls6{letter-spacing:26.312749px;}
.ls3{letter-spacing:29.110717px;}
.ls25{letter-spacing:29.585479px;}
.ls4{letter-spacing:32.727300px;}
.ls5{letter-spacing:35.280029px;}
.ls2f{letter-spacing:89.869166px;}
.ls2b{letter-spacing:133.789202px;}
.ls2c{letter-spacing:198.000165px;}
.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;}
}
.ws46{word-spacing:-65.454600px;}
.ws35{word-spacing:-42.637126px;}
.ws41{word-spacing:-39.889273px;}
.ws74{word-spacing:-26.899125px;}
.ws47{word-spacing:-24.440748px;}
.ws13{word-spacing:-20.906199px;}
.ws18{word-spacing:-18.183288px;}
.ws21{word-spacing:-18.157106px;}
.ws22{word-spacing:-14.111859px;}
.ws49{word-spacing:-12.986193px;}
.ws45{word-spacing:-7.307211px;}
.ws53{word-spacing:-4.215276px;}
.ws39{word-spacing:-3.652367px;}
.ws5a{word-spacing:-3.560730px;}
.ws5b{word-spacing:-3.063275px;}
.ws29{word-spacing:-2.932013px;}
.ws66{word-spacing:-2.670548px;}
.ws4{word-spacing:-2.020415px;}
.ws6f{word-spacing:-1.557819px;}
.ws57{word-spacing:-1.008001px;}
.ws58{word-spacing:-0.903273px;}
.ws2d{word-spacing:-0.641455px;}
.ws38{word-spacing:-0.052364px;}
.wsa{word-spacing:-0.047820px;}
.ws2a{word-spacing:0.000000px;}
.ws9{word-spacing:0.011955px;}
.ws24{word-spacing:0.013091px;}
.ws23{word-spacing:0.039273px;}
.ws31{word-spacing:0.209455px;}
.ws30{word-spacing:0.235637px;}
.ws60{word-spacing:0.340364px;}
.wsf{word-spacing:0.669487px;}
.wse{word-spacing:0.848814px;}
.ws26{word-spacing:0.864001px;}
.ws32{word-spacing:0.890183px;}
.ws25{word-spacing:0.955637px;}
.ws2e{word-spacing:1.584001px;}
.ws70{word-spacing:1.845820px;}
.ws14{word-spacing:2.002911px;}
.wsc{word-spacing:2.044326px;}
.ws6b{word-spacing:2.107638px;}
.ws6a{word-spacing:2.461093px;}
.wsb{word-spacing:2.821408px;}
.ws7{word-spacing:3.263748px;}
.ws77{word-spacing:3.285821px;}
.ws10{word-spacing:3.299613px;}
.ws33{word-spacing:3.482185px;}
.ws15{word-spacing:3.613094px;}
.ws1c{word-spacing:3.678549px;}
.ws71{word-spacing:3.744003px;}
.ws6{word-spacing:3.957145px;}
.ws16{word-spacing:4.162913px;}
.ws44{word-spacing:4.228367px;}
.ws28{word-spacing:4.333095px;}
.ws2c{word-spacing:4.483200px;}
.ws56{word-spacing:4.987641px;}
.ws27{word-spacing:5.013822px;}
.ws12{word-spacing:5.314914px;}
.ws11{word-spacing:5.379825px;}
.ws40{word-spacing:5.445823px;}
.ws42{word-spacing:6.034914px;}
.ws1f{word-spacing:6.362187px;}
.ws2{word-spacing:6.647047px;}
.ws48{word-spacing:6.754915px;}
.ws3e{word-spacing:7.053489px;}
.ws3c{word-spacing:7.054393px;}
.ws3d{word-spacing:7.056084px;}
.ws3f{word-spacing:7.058320px;}
.ws4a{word-spacing:7.059686px;}
.ws5f{word-spacing:7.213097px;}
.ws1e{word-spacing:7.409461px;}
.ws20{word-spacing:7.474915px;}
.ws6d{word-spacing:7.802188px;}
.ws3{word-spacing:8.021886px;}
.ws5{word-spacing:8.081661px;}
.ws5d{word-spacing:8.286552px;}
.ws65{word-spacing:8.456734px;}
.ws1d{word-spacing:8.548371px;}
.ws72{word-spacing:8.587644px;}
.ws6c{word-spacing:8.941098px;}
.ws7b{word-spacing:9.634917px;}
.ws5c{word-spacing:10.289463px;}
.ws64{word-spacing:10.551282px;}
.ws59{word-spacing:10.616736px;}
.ws36{word-spacing:10.699809px;}
.ws37{word-spacing:10.717012px;}
.ws55{word-spacing:11.860374px;}
.ws63{word-spacing:12.148374px;}
.wsd{word-spacing:12.505056px;}
.ws43{word-spacing:13.081809px;}
.ws54{word-spacing:13.588375px;}
.ws1b{word-spacing:13.889466px;}
.ws6e{word-spacing:14.544012px;}
.ws5e{word-spacing:15.355649px;}
.ws67{word-spacing:15.394922px;}
.ws17{word-spacing:16.010195px;}
.ws1a{word-spacing:17.096742px;}
.ws73{word-spacing:17.227651px;}
.ws8{word-spacing:19.555452px;}
.ws1{word-spacing:23.312640px;}
.ws19{word-spacing:24.164320px;}
.ws75{word-spacing:24.672893px;}
.ws78{word-spacing:24.684416px;}
.ws79{word-spacing:24.690714px;}
.ws7a{word-spacing:24.695563px;}
.ws0{word-spacing:31.091012px;}
.ws76{word-spacing:34.298210px;}
.ws4c{word-spacing:50.832042px;}
.ws62{word-spacing:53.554954px;}
.ws69{word-spacing:58.281600px;}
.ws61{word-spacing:58.948413px;}
.ws2b{word-spacing:69.937725px;}
.ws3a{word-spacing:92.002986px;}
.ws68{word-spacing:119.493918px;}
.ws50{word-spacing:148.529578px;}
.ws4e{word-spacing:153.831401px;}
.ws4f{word-spacing:166.725957px;}
.ws51{word-spacing:168.362322px;}
.ws4d{word-spacing:179.973968px;}
.ws52{word-spacing:198.144165px;}
.ws2f{word-spacing:219.050364px;}
.ws3b{word-spacing:233.555104px;}
.ws34{word-spacing:311.406805px;}
.ws4b{word-spacing:519.159705px;}
._1f{margin-left:-36.654576px;}
._20{margin-left:-33.709119px;}
._0{margin-left:-8.160100px;}
._22{margin-left:-6.742733px;}
._e{margin-left:-5.363350px;}
._a{margin-left:-3.885414px;}
._2{margin-left:-2.685602px;}
._5{margin-left:-1.673717px;}
._4{width:1.673717px;}
._3{width:2.685602px;}
._1e{width:3.932155px;}
._11{width:14.417971px;}
._35{width:15.555898px;}
._28{width:18.130924px;}
._f{width:19.239852px;}
._39{width:21.796382px;}
._10{width:23.547396px;}
._6{width:24.567772px;}
._8{width:26.181713px;}
._7{width:28.692288px;}
._29{width:29.851098px;}
._9{width:31.382190px;}
._41{width:32.727300px;}
._d{width:34.665941px;}
._42{width:36.327535px;}
._2a{width:38.487305px;}
._1{width:42.040007px;}
._36{width:46.147457px;}
._49{width:47.224797px;}
._37{width:50.362690px;}
._c{width:60.061184px;}
._19{width:65.454600px;}
._17{width:71.897254px;}
._2b{width:74.446055px;}
._24{width:76.843700px;}
._12{width:80.697600px;}
._31{width:86.334617px;}
._b{width:96.836850px;}
._25{width:99.165683px;}
._18{width:101.063866px;}
._46{width:119.847373px;}
._48{width:141.905573px;}
._32{width:157.483768px;}
._16{width:159.868236px;}
._23{width:167.107558px;}
._3b{width:172.734689px;}
._26{width:182.620298px;}
._27{width:185.956519px;}
._30{width:187.529393px;}
._1d{width:214.101997px;}
._47{width:216.196544px;}
._21{width:218.814728px;}
._13{width:226.207170px;}
._3d{width:243.360203px;}
._1a{width:246.305660px;}
._14{width:248.334752px;}
._15{width:266.271277px;}
._3c{width:270.748328px;}
._1c{width:293.565845px;}
._1b{width:323.347688px;}
._44{width:327.798601px;}
._2e{width:391.900865px;}
._3f{width:401.893208px;}
._40{width:436.976873px;}
._45{width:444.831425px;}
._34{width:505.047694px;}
._2c{width:506.422240px;}
._2d{width:524.358764px;}
._3a{width:551.324096px;}
._33{width:581.564121px;}
._3e{width:599.827918px;}
._38{width:634.516892px;}
._43{width:672.477242px;}
._2f{width:743.629711px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y20{bottom:63.168000px;}
.yb2{bottom:126.054000px;}
.yb1{bottom:146.377500px;}
.y7c{bottom:154.284000px;}
.y41{bottom:164.940000px;}
.y1f{bottom:173.061000px;}
.y7b{bottom:174.607500px;}
.y99{bottom:178.332000px;}
.yb0{bottom:180.151500px;}
.y40{bottom:185.263500px;}
.y1e{bottom:193.797000px;}
.y7a{bottom:194.932500px;}
.y3f{bottom:205.588500px;}
.y98{bottom:212.106000px;}
.yaf{bottom:213.924000px;}
.y1d{bottom:214.122000px;}
.y3e{bottom:225.912000px;}
.y79{bottom:228.705000px;}
.yae{bottom:234.247500px;}
.y97{bottom:245.880000px;}
.y3d{bottom:246.235500px;}
.y1c{bottom:247.894500px;}
.y78{bottom:249.028500px;}
.y3c{bottom:266.559000px;}
.yad{bottom:268.021500px;}
.y1b{bottom:268.218000px;}
.y77{bottom:269.353500px;}
.y96{bottom:279.652500px;}
.y3b{bottom:286.882500px;}
.y95{bottom:299.976000px;}
.y5c{bottom:300.964500px;}
.yac{bottom:301.794000px;}
.y1a{bottom:301.992000px;}
.y76{bottom:303.126000px;}
.y3a{bottom:315.423000px;}
.y94{bottom:320.301000px;}
.yab{bottom:322.119000px;}
.y19{bottom:322.315500px;}
.y75{bottom:323.449500px;}
.y5b{bottom:327.496500px;}
.y39{bottom:337.032000px;}
.y5a{bottom:338.610000px;}
.yaa{bottom:342.442500px;}
.y74{bottom:343.774500px;}
.y93{bottom:351.192000px;}
.y18{bottom:356.089500px;}
.y59{bottom:358.933500px;}
.ya9{bottom:362.766000px;}
.y17{bottom:376.413000px;}
.y73{bottom:377.547000px;}
.y38{bottom:382.767000px;}
.ya8{bottom:383.089500px;}
.y92{bottom:395.011500px;}
.y72{bottom:397.870500px;}
.y58{bottom:402.154500px;}
.y37{bottom:403.090500px;}
.ya7{bottom:403.413000px;}
.y16{bottom:410.185500px;}
.y71{bottom:418.195500px;}
.y57{bottom:422.478000px;}
.y91{bottom:428.785500px;}
.y15{bottom:430.510500px;}
.y36{bottom:433.983000px;}
.ya6{bottom:439.942500px;}
.y56{bottom:442.803000px;}
.y70{bottom:451.968000px;}
.y90{bottom:462.558000px;}
.y14{bottom:464.283000px;}
.y6f{bottom:472.291500px;}
.y35{bottom:477.801000px;}
.y55{bottom:486.024000px;}
.ya5{bottom:491.500500px;}
.y6e{bottom:492.616500px;}
.y8f{bottom:496.332000px;}
.y13{bottom:507.504000px;}
.y34{bottom:511.575000px;}
.y8e{bottom:516.655500px;}
.y54{bottom:519.280500px;}
.ya4{bottom:525.273000px;}
.y6d{bottom:526.389000px;}
.y12{bottom:527.829000px;}
.y53{bottom:538.099500px;}
.y33{bottom:545.349000px;}
.y8d{bottom:547.548000px;}
.ya3{bottom:559.047000px;}
.y11{bottom:564.357000px;}
.y6c{bottom:574.870500px;}
.y32{bottom:579.121500px;}
.y52{bottom:584.668500px;}
.y8c{bottom:584.673000px;}
.ya2{bottom:592.819500px;}
.y6b{bottom:595.194000px;}
.y31{bottom:612.895500px;}
.y6a{bottom:615.517500px;}
.y10{bottom:615.915000px;}
.ya1{bottom:623.712000px;}
.y51{bottom:627.891000px;}
.yf{bottom:633.847500px;}
.y69{bottom:635.841000px;}
.y8b{bottom:636.231000px;}
.y30{bottom:646.668000px;}
.y50{bottom:648.214500px;}
.ye{bottom:651.780000px;}
.y68{bottom:656.164500px;}
.y8a{bottom:656.556000px;}
.ya0{bottom:667.531500px;}
.yd{bottom:669.712500px;}
.y4f{bottom:674.086500px;}
.y2f{bottom:680.442000px;}
.y67{bottom:684.705000px;}
.y4e{bottom:684.982500px;}
.yc{bottom:687.646500px;}
.y89{bottom:690.328500px;}
.ybd{bottom:695.659500px;}
.y2e{bottom:700.765500px;}
.y9f{bottom:701.304000px;}
.y4d{bottom:705.306000px;}
.yb{bottom:705.579000px;}
.y66{bottom:706.314000px;}
.ybc{bottom:715.983000px;}
.y9e{bottom:721.629000px;}
.ya{bottom:723.511500px;}
.y88{bottom:724.102500px;}
.y9{bottom:741.444000px;}
.y87{bottom:744.426000px;}
.y4c{bottom:748.527000px;}
.ybb{bottom:752.511000px;}
.y2d{bottom:754.212000px;}
.y9d{bottom:755.401500px;}
.y8{bottom:759.376500px;}
.y65{bottom:762.618000px;}
.y2c{bottom:774.535500px;}
.y9c{bottom:775.725000px;}
.y7{bottom:777.310500px;}
.y86{bottom:778.198500px;}
.y4b{bottom:779.419500px;}
.y2b{bottom:794.859000px;}
.y6{bottom:795.243000px;}
.yba{bottom:804.069000px;}
.y9b{bottom:809.499000px;}
.y64{bottom:811.696500px;}
.y2a{bottom:815.182500px;}
.y5{bottom:822.516000px;}
.yb9{bottom:824.392500px;}
.y85{bottom:826.680000px;}
.y4a{bottom:828.498000px;}
.y63{bottom:832.020000px;}
.y29{bottom:835.506000px;}
.y9a{bottom:840.391500px;}
.y84{bottom:847.003500px;}
.y49{bottom:848.821500px;}
.y62{bottom:852.343500px;}
.y28{bottom:855.831000px;}
.yb8{bottom:858.166500px;}
.y83{bottom:867.327000px;}
.y48{bottom:869.146500px;}
.y61{bottom:872.667000px;}
.y4{bottom:882.927000px;}
.y27{bottom:884.370000px;}
.y82{bottom:887.652000px;}
.y47{bottom:889.470000px;}
.yb7{bottom:891.940500px;}
.y60{bottom:892.990500px;}
.y81{bottom:907.975500px;}
.y26{bottom:909.162000px;}
.y46{bottom:909.793500px;}
.y5f{bottom:913.315500px;}
.y3{bottom:919.614000px;}
.yb6{bottom:925.713000px;}
.y80{bottom:928.299000px;}
.y45{bottom:930.117000px;}
.y5e{bottom:941.854500px;}
.y7f{bottom:948.622500px;}
.y44{bottom:950.440500px;}
.y25{bottom:954.895500px;}
.yb5{bottom:959.487000px;}
.y2{bottom:965.080500px;}
.y5d{bottom:966.646500px;}
.y24{bottom:975.220500px;}
.y7e{bottom:977.163000px;}
.y43{bottom:978.981000px;}
.yb4{bottom:993.259500px;}
.y23{bottom:995.544000px;}
.y1{bottom:997.957500px;}
.y7d{bottom:1002.862500px;}
.y42{bottom:1003.771500px;}
.y22{bottom:1026.435000px;}
.yb3{bottom:1027.033500px;}
.y21{bottom:1063.561500px;}
.hc{height:21.088885px;}
.h8{height:23.850624px;}
.h3{height:44.831700px;}
.h5{height:49.090950px;}
.h2{height:49.781453px;}
.h9{height:50.211840px;}
.hf{height:55.634184px;}
.h6{height:57.419702px;}
.h7{height:57.945729px;}
.h4{height:60.254040px;}
.he{height:66.364950px;}
.h1{height:72.511265px;}
.ha{height:92.674950px;}
.hd{height:110.818950px;}
.hb{height:114.548184px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.x9{left:109.683000px;}
.x20{left:111.636000px;}
.x1{left:119.772000px;}
.xa{left:126.000000px;}
.x23{left:133.404000px;}
.x7{left:148.909500px;}
.x11{left:159.067500px;}
.xd{left:162.033000px;}
.x6{left:171.325500px;}
.xf{left:182.643000px;}
.x1f{left:199.831500px;}
.x22{left:225.453000px;}
.x1e{left:229.008000px;}
.x2{left:244.839000px;}
.x21{left:263.409000px;}
.xc{left:310.636500px;}
.x1d{left:314.533500px;}
.x1b{left:321.931500px;}
.x14{left:323.643000px;}
.x10{left:331.818000px;}
.x1c{left:340.863000px;}
.xe{left:349.726500px;}
.x12{left:368.944500px;}
.x17{left:376.183500px;}
.x3{left:399.036000px;}
.x4{left:400.593000px;}
.x5{left:426.123000px;}
.x13{left:428.082000px;}
.x15{left:433.834500px;}
.x18{left:446.110500px;}
.x16{left:451.617000px;}
.xb{left:454.909500px;}
.x19{left:482.428500px;}
.x1a{left:520.386000px;}
@media print{
.v9{vertical-align:-44.218667pt;}
.v4{vertical-align:-20.314667pt;}
.v3{vertical-align:-9.482667pt;}
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:2.325333pt;}
.v5{vertical-align:9.482667pt;}
.va{vertical-align:12.106667pt;}
.ve{vertical-align:15.354667pt;}
.v2{vertical-align:21.114667pt;}
.v7{vertical-align:30.016000pt;}
.v6{vertical-align:38.741333pt;}
.vf{vertical-align:47.125333pt;}
.vc{vertical-align:54.869333pt;}
.vb{vertical-align:86.640000pt;}
.v8{vertical-align:99.493333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000853pt;}
.ls19{letter-spacing:0.001432pt;}
.ls1d{letter-spacing:0.002384pt;}
.lsc{letter-spacing:0.003563pt;}
.ls1c{letter-spacing:0.005162pt;}
.ls1b{letter-spacing:0.006905pt;}
.ls1f{letter-spacing:0.007576pt;}
.lsb{letter-spacing:0.012863pt;}
.ls14{letter-spacing:0.020744pt;}
.ls0{letter-spacing:0.021421pt;}
.ls2d{letter-spacing:1.570910pt;}
.lse{letter-spacing:1.629092pt;}
.ls1e{letter-spacing:1.785302pt;}
.lsf{letter-spacing:2.560002pt;}
.ls15{letter-spacing:2.651520pt;}
.ls24{letter-spacing:2.653258pt;}
.ls11{letter-spacing:2.655975pt;}
.ls7{letter-spacing:2.656473pt;}
.ls10{letter-spacing:2.656853pt;}
.ls22{letter-spacing:4.183026pt;}
.ls27{letter-spacing:4.769917pt;}
.ls30{letter-spacing:9.658190pt;}
.ls23{letter-spacing:9.716372pt;}
.ls18{letter-spacing:12.352853pt;}
.ls17{letter-spacing:12.916374pt;}
.ls13{letter-spacing:13.789102pt;}
.ls1{letter-spacing:14.771215pt;}
.ls2e{letter-spacing:15.360013pt;}
.ls12{letter-spacing:15.476377pt;}
.ls16{letter-spacing:16.174559pt;}
.ls2{letter-spacing:16.258963pt;}
.ls26{letter-spacing:16.554622pt;}
.ls2a{letter-spacing:17.695477pt;}
.ls21{letter-spacing:17.803651pt;}
.ls29{letter-spacing:18.245289pt;}
.ls31{letter-spacing:19.141834pt;}
.lsa{letter-spacing:19.374562pt;}
.ls9{letter-spacing:19.432743pt;}
.ls20{letter-spacing:21.527291pt;}
.ls1a{letter-spacing:22.047975pt;}
.lsd{letter-spacing:22.054187pt;}
.ls6{letter-spacing:23.389110pt;}
.ls3{letter-spacing:25.876193pt;}
.ls25{letter-spacing:26.298204pt;}
.ls4{letter-spacing:29.090933pt;}
.ls5{letter-spacing:31.360026pt;}
.ls2f{letter-spacing:79.883703pt;}
.ls2b{letter-spacing:118.923735pt;}
.ls2c{letter-spacing:176.000147pt;}
.ws46{word-spacing:-58.181867pt;}
.ws35{word-spacing:-37.899668pt;}
.ws41{word-spacing:-35.457131pt;}
.ws74{word-spacing:-23.910333pt;}
.ws47{word-spacing:-21.725109pt;}
.ws13{word-spacing:-18.583288pt;}
.ws18{word-spacing:-16.162923pt;}
.ws21{word-spacing:-16.139650pt;}
.ws22{word-spacing:-12.543875pt;}
.ws49{word-spacing:-11.543282pt;}
.ws45{word-spacing:-6.495298pt;}
.ws53{word-spacing:-3.746912pt;}
.ws39{word-spacing:-3.246548pt;}
.ws5a{word-spacing:-3.165094pt;}
.ws5b{word-spacing:-2.722911pt;}
.ws29{word-spacing:-2.606234pt;}
.ws66{word-spacing:-2.373820pt;}
.ws4{word-spacing:-1.795925pt;}
.ws6f{word-spacing:-1.384728pt;}
.ws57{word-spacing:-0.896001pt;}
.ws58{word-spacing:-0.802910pt;}
.ws2d{word-spacing:-0.570182pt;}
.ws38{word-spacing:-0.046545pt;}
.wsa{word-spacing:-0.042507pt;}
.ws2a{word-spacing:0.000000pt;}
.ws9{word-spacing:0.010627pt;}
.ws24{word-spacing:0.011636pt;}
.ws23{word-spacing:0.034909pt;}
.ws31{word-spacing:0.186182pt;}
.ws30{word-spacing:0.209455pt;}
.ws60{word-spacing:0.302546pt;}
.wsf{word-spacing:0.595099pt;}
.wse{word-spacing:0.754501pt;}
.ws26{word-spacing:0.768001pt;}
.ws32{word-spacing:0.791273pt;}
.ws25{word-spacing:0.849455pt;}
.ws2e{word-spacing:1.408001pt;}
.ws70{word-spacing:1.640729pt;}
.ws14{word-spacing:1.780365pt;}
.wsc{word-spacing:1.817178pt;}
.ws6b{word-spacing:1.873456pt;}
.ws6a{word-spacing:2.187638pt;}
.wsb{word-spacing:2.507919pt;}
.ws7{word-spacing:2.901109pt;}
.ws77{word-spacing:2.920730pt;}
.ws10{word-spacing:2.932989pt;}
.ws33{word-spacing:3.095275pt;}
.ws15{word-spacing:3.211639pt;}
.ws1c{word-spacing:3.269821pt;}
.ws71{word-spacing:3.328003pt;}
.ws6{word-spacing:3.517462pt;}
.ws16{word-spacing:3.700367pt;}
.ws44{word-spacing:3.758549pt;}
.ws28{word-spacing:3.851640pt;}
.ws2c{word-spacing:3.985067pt;}
.ws56{word-spacing:4.433458pt;}
.ws27{word-spacing:4.456731pt;}
.ws12{word-spacing:4.724368pt;}
.ws11{word-spacing:4.782067pt;}
.ws40{word-spacing:4.840731pt;}
.ws42{word-spacing:5.364368pt;}
.ws1f{word-spacing:5.655277pt;}
.ws2{word-spacing:5.908486pt;}
.ws48{word-spacing:6.004369pt;}
.ws3e{word-spacing:6.269768pt;}
.ws3c{word-spacing:6.270571pt;}
.ws3d{word-spacing:6.272074pt;}
.ws3f{word-spacing:6.274062pt;}
.ws4a{word-spacing:6.275276pt;}
.ws5f{word-spacing:6.411642pt;}
.ws1e{word-spacing:6.586187pt;}
.ws20{word-spacing:6.644369pt;}
.ws6d{word-spacing:6.935279pt;}
.ws3{word-spacing:7.130565pt;}
.ws5{word-spacing:7.183699pt;}
.ws5d{word-spacing:7.365824pt;}
.ws65{word-spacing:7.517097pt;}
.ws1d{word-spacing:7.598552pt;}
.ws72{word-spacing:7.633461pt;}
.ws6c{word-spacing:7.947643pt;}
.ws7b{word-spacing:8.564371pt;}
.ws5c{word-spacing:9.146189pt;}
.ws64{word-spacing:9.378917pt;}
.ws59{word-spacing:9.437099pt;}
.ws36{word-spacing:9.510941pt;}
.ws37{word-spacing:9.526233pt;}
.ws55{word-spacing:10.542554pt;}
.ws63{word-spacing:10.798554pt;}
.wsd{word-spacing:11.115605pt;}
.ws43{word-spacing:11.628275pt;}
.ws54{word-spacing:12.078556pt;}
.ws1b{word-spacing:12.346192pt;}
.ws6e{word-spacing:12.928011pt;}
.ws5e{word-spacing:13.649466pt;}
.ws67{word-spacing:13.684375pt;}
.ws17{word-spacing:14.231285pt;}
.ws1a{word-spacing:15.197104pt;}
.ws73{word-spacing:15.313467pt;}
.ws8{word-spacing:17.382624pt;}
.ws1{word-spacing:20.722347pt;}
.ws19{word-spacing:21.479395pt;}
.ws75{word-spacing:21.931461pt;}
.ws78{word-spacing:21.941703pt;}
.ws79{word-spacing:21.947301pt;}
.ws7a{word-spacing:21.951611pt;}
.ws0{word-spacing:27.636455pt;}
.ws76{word-spacing:30.487298pt;}
.ws4c{word-spacing:45.184038pt;}
.ws62{word-spacing:47.604403pt;}
.ws69{word-spacing:51.805867pt;}
.ws61{word-spacing:52.398589pt;}
.ws2b{word-spacing:62.166867pt;}
.ws3a{word-spacing:81.780432pt;}
.ws68{word-spacing:106.216816pt;}
.ws50{word-spacing:132.026292pt;}
.ws4e{word-spacing:136.739023pt;}
.ws4f{word-spacing:148.200851pt;}
.ws51{word-spacing:149.655397pt;}
.ws4d{word-spacing:159.976861pt;}
.ws52{word-spacing:176.128147pt;}
.ws2f{word-spacing:194.711435pt;}
.ws3b{word-spacing:207.604537pt;}
.ws34{word-spacing:276.806049pt;}
.ws4b{word-spacing:461.475294pt;}
._1f{margin-left:-32.581845pt;}
._20{margin-left:-29.963661pt;}
._0{margin-left:-7.253422pt;}
._22{margin-left:-5.993540pt;}
._e{margin-left:-4.767422pt;}
._a{margin-left:-3.453701pt;}
._2{margin-left:-2.387202pt;}
._5{margin-left:-1.487748pt;}
._4{width:1.487748pt;}
._3{width:2.387202pt;}
._1e{width:3.495249pt;}
._11{width:12.815974pt;}
._35{width:13.827465pt;}
._28{width:16.116377pt;}
._f{width:17.102091pt;}
._39{width:19.374562pt;}
._10{width:20.931019pt;}
._6{width:21.838019pt;}
._8{width:23.272634pt;}
._7{width:25.504256pt;}
._29{width:26.534309pt;}
._9{width:27.895280pt;}
._41{width:29.090933pt;}
._d{width:30.814170pt;}
._42{width:32.291142pt;}
._2a{width:34.210938pt;}
._1{width:37.368895pt;}
._36{width:41.019962pt;}
._49{width:41.977597pt;}
._37{width:44.766836pt;}
._c{width:53.387719pt;}
._19{width:58.181867pt;}
._17{width:63.908670pt;}
._2b{width:66.174271pt;}
._24{width:68.305511pt;}
._12{width:71.731200pt;}
._31{width:76.741882pt;}
._b{width:86.077200pt;}
._25{width:88.147274pt;}
._18{width:89.834548pt;}
._46{width:106.530998pt;}
._48{width:126.138287pt;}
._32{width:139.985571pt;}
._16{width:142.105099pt;}
._23{width:148.540051pt;}
._3b{width:153.541946pt;}
._26{width:162.329154pt;}
._27{width:165.294683pt;}
._30{width:166.692794pt;}
._1d{width:190.312886pt;}
._47{width:192.174706pt;}
._21{width:194.501980pt;}
._13{width:201.073040pt;}
._3d{width:216.320180pt;}
._1a{width:218.938364pt;}
._14{width:220.742002pt;}
._15{width:236.685579pt;}
._3c{width:240.665181pt;}
._1c{width:260.947418pt;}
._1b{width:287.420167pt;}
._44{width:291.376534pt;}
._2e{width:348.356325pt;}
._3f{width:357.238407pt;}
._40{width:388.423887pt;}
._45{width:395.405711pt;}
._34{width:448.931283pt;}
._2c{width:450.153102pt;}
._2d{width:466.096679pt;}
._3a{width:490.065863pt;}
._33{width:516.945885pt;}
._3e{width:533.180372pt;}
._38{width:564.015015pt;}
._43{width:597.757549pt;}
._2f{width:661.004187pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:56.149333pt;}
.yb2{bottom:112.048000pt;}
.yb1{bottom:130.113333pt;}
.y7c{bottom:137.141333pt;}
.y41{bottom:146.613333pt;}
.y1f{bottom:153.832000pt;}
.y7b{bottom:155.206667pt;}
.y99{bottom:158.517333pt;}
.yb0{bottom:160.134667pt;}
.y40{bottom:164.678667pt;}
.y1e{bottom:172.264000pt;}
.y7a{bottom:173.273333pt;}
.y3f{bottom:182.745333pt;}
.y98{bottom:188.538667pt;}
.yaf{bottom:190.154667pt;}
.y1d{bottom:190.330667pt;}
.y3e{bottom:200.810667pt;}
.y79{bottom:203.293333pt;}
.yae{bottom:208.220000pt;}
.y97{bottom:218.560000pt;}
.y3d{bottom:218.876000pt;}
.y1c{bottom:220.350667pt;}
.y78{bottom:221.358667pt;}
.y3c{bottom:236.941333pt;}
.yad{bottom:238.241333pt;}
.y1b{bottom:238.416000pt;}
.y77{bottom:239.425333pt;}
.y96{bottom:248.580000pt;}
.y3b{bottom:255.006667pt;}
.y95{bottom:266.645333pt;}
.y5c{bottom:267.524000pt;}
.yac{bottom:268.261333pt;}
.y1a{bottom:268.437333pt;}
.y76{bottom:269.445333pt;}
.y3a{bottom:280.376000pt;}
.y94{bottom:284.712000pt;}
.yab{bottom:286.328000pt;}
.y19{bottom:286.502667pt;}
.y75{bottom:287.510667pt;}
.y5b{bottom:291.108000pt;}
.y39{bottom:299.584000pt;}
.y5a{bottom:300.986667pt;}
.yaa{bottom:304.393333pt;}
.y74{bottom:305.577333pt;}
.y93{bottom:312.170667pt;}
.y18{bottom:316.524000pt;}
.y59{bottom:319.052000pt;}
.ya9{bottom:322.458667pt;}
.y17{bottom:334.589333pt;}
.y73{bottom:335.597333pt;}
.y38{bottom:340.237333pt;}
.ya8{bottom:340.524000pt;}
.y92{bottom:351.121333pt;}
.y72{bottom:353.662667pt;}
.y58{bottom:357.470667pt;}
.y37{bottom:358.302667pt;}
.ya7{bottom:358.589333pt;}
.y16{bottom:364.609333pt;}
.y71{bottom:371.729333pt;}
.y57{bottom:375.536000pt;}
.y91{bottom:381.142667pt;}
.y15{bottom:382.676000pt;}
.y36{bottom:385.762667pt;}
.ya6{bottom:391.060000pt;}
.y56{bottom:393.602667pt;}
.y70{bottom:401.749333pt;}
.y90{bottom:411.162667pt;}
.y14{bottom:412.696000pt;}
.y6f{bottom:419.814667pt;}
.y35{bottom:424.712000pt;}
.y55{bottom:432.021333pt;}
.ya5{bottom:436.889333pt;}
.y6e{bottom:437.881333pt;}
.y8f{bottom:441.184000pt;}
.y13{bottom:451.114667pt;}
.y34{bottom:454.733333pt;}
.y8e{bottom:459.249333pt;}
.y54{bottom:461.582667pt;}
.ya4{bottom:466.909333pt;}
.y6d{bottom:467.901333pt;}
.y12{bottom:469.181333pt;}
.y53{bottom:478.310667pt;}
.y33{bottom:484.754667pt;}
.y8d{bottom:486.709333pt;}
.ya3{bottom:496.930667pt;}
.y11{bottom:501.650667pt;}
.y6c{bottom:510.996000pt;}
.y32{bottom:514.774667pt;}
.y52{bottom:519.705333pt;}
.y8c{bottom:519.709333pt;}
.ya2{bottom:526.950667pt;}
.y6b{bottom:529.061333pt;}
.y31{bottom:544.796000pt;}
.y6a{bottom:547.126667pt;}
.y10{bottom:547.480000pt;}
.ya1{bottom:554.410667pt;}
.y51{bottom:558.125333pt;}
.yf{bottom:563.420000pt;}
.y69{bottom:565.192000pt;}
.y8b{bottom:565.538667pt;}
.y30{bottom:574.816000pt;}
.y50{bottom:576.190667pt;}
.ye{bottom:579.360000pt;}
.y68{bottom:583.257333pt;}
.y8a{bottom:583.605333pt;}
.ya0{bottom:593.361333pt;}
.yd{bottom:595.300000pt;}
.y4f{bottom:599.188000pt;}
.y2f{bottom:604.837333pt;}
.y67{bottom:608.626667pt;}
.y4e{bottom:608.873333pt;}
.yc{bottom:611.241333pt;}
.y89{bottom:613.625333pt;}
.ybd{bottom:618.364000pt;}
.y2e{bottom:622.902667pt;}
.y9f{bottom:623.381333pt;}
.y4d{bottom:626.938667pt;}
.yb{bottom:627.181333pt;}
.y66{bottom:627.834667pt;}
.ybc{bottom:636.429333pt;}
.y9e{bottom:641.448000pt;}
.ya{bottom:643.121333pt;}
.y88{bottom:643.646667pt;}
.y9{bottom:659.061333pt;}
.y87{bottom:661.712000pt;}
.y4c{bottom:665.357333pt;}
.ybb{bottom:668.898667pt;}
.y2d{bottom:670.410667pt;}
.y9d{bottom:671.468000pt;}
.y8{bottom:675.001333pt;}
.y65{bottom:677.882667pt;}
.y2c{bottom:688.476000pt;}
.y9c{bottom:689.533333pt;}
.y7{bottom:690.942667pt;}
.y86{bottom:691.732000pt;}
.y4b{bottom:692.817333pt;}
.y2b{bottom:706.541333pt;}
.y6{bottom:706.882667pt;}
.yba{bottom:714.728000pt;}
.y9b{bottom:719.554667pt;}
.y64{bottom:721.508000pt;}
.y2a{bottom:724.606667pt;}
.y5{bottom:731.125333pt;}
.yb9{bottom:732.793333pt;}
.y85{bottom:734.826667pt;}
.y4a{bottom:736.442667pt;}
.y63{bottom:739.573333pt;}
.y29{bottom:742.672000pt;}
.y9a{bottom:747.014667pt;}
.y84{bottom:752.892000pt;}
.y49{bottom:754.508000pt;}
.y62{bottom:757.638667pt;}
.y28{bottom:760.738667pt;}
.yb8{bottom:762.814667pt;}
.y83{bottom:770.957333pt;}
.y48{bottom:772.574667pt;}
.y61{bottom:775.704000pt;}
.y4{bottom:784.824000pt;}
.y27{bottom:786.106667pt;}
.y82{bottom:789.024000pt;}
.y47{bottom:790.640000pt;}
.yb7{bottom:792.836000pt;}
.y60{bottom:793.769333pt;}
.y81{bottom:807.089333pt;}
.y26{bottom:808.144000pt;}
.y46{bottom:808.705333pt;}
.y5f{bottom:811.836000pt;}
.y3{bottom:817.434667pt;}
.yb6{bottom:822.856000pt;}
.y80{bottom:825.154667pt;}
.y45{bottom:826.770667pt;}
.y5e{bottom:837.204000pt;}
.y7f{bottom:843.220000pt;}
.y44{bottom:844.836000pt;}
.y25{bottom:848.796000pt;}
.yb5{bottom:852.877333pt;}
.y2{bottom:857.849333pt;}
.y5d{bottom:859.241333pt;}
.y24{bottom:866.862667pt;}
.y7e{bottom:868.589333pt;}
.y43{bottom:870.205333pt;}
.yb4{bottom:882.897333pt;}
.y23{bottom:884.928000pt;}
.y1{bottom:887.073333pt;}
.y7d{bottom:891.433333pt;}
.y42{bottom:892.241333pt;}
.y22{bottom:912.386667pt;}
.yb3{bottom:912.918667pt;}
.y21{bottom:945.388000pt;}
.hc{height:18.745675pt;}
.h8{height:21.200555pt;}
.h3{height:39.850400pt;}
.h5{height:43.636400pt;}
.h2{height:44.250180pt;}
.h9{height:44.632747pt;}
.hf{height:49.452608pt;}
.h6{height:51.039735pt;}
.h7{height:51.507315pt;}
.h4{height:53.559147pt;}
.he{height:58.991067pt;}
.h1{height:64.454458pt;}
.ha{height:82.377733pt;}
.hd{height:98.505733pt;}
.hb{height:101.820608pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.x9{left:97.496000pt;}
.x20{left:99.232000pt;}
.x1{left:106.464000pt;}
.xa{left:112.000000pt;}
.x23{left:118.581333pt;}
.x7{left:132.364000pt;}
.x11{left:141.393333pt;}
.xd{left:144.029333pt;}
.x6{left:152.289333pt;}
.xf{left:162.349333pt;}
.x1f{left:177.628000pt;}
.x22{left:200.402667pt;}
.x1e{left:203.562667pt;}
.x2{left:217.634667pt;}
.x21{left:234.141333pt;}
.xc{left:276.121333pt;}
.x1d{left:279.585333pt;}
.x1b{left:286.161333pt;}
.x14{left:287.682667pt;}
.x10{left:294.949333pt;}
.x1c{left:302.989333pt;}
.xe{left:310.868000pt;}
.x12{left:327.950667pt;}
.x17{left:334.385333pt;}
.x3{left:354.698667pt;}
.x4{left:356.082667pt;}
.x5{left:378.776000pt;}
.x13{left:380.517333pt;}
.x15{left:385.630667pt;}
.x18{left:396.542667pt;}
.x16{left:401.437333pt;}
.xb{left:404.364000pt;}
.x19{left:428.825333pt;}
.x1a{left:462.565333pt;}
}




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