
    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_e5091c7276630b48be223791.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_39517d2092f6e298ad737d6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_718cea03e19bd904bf521675.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:2.449834px;}
.ls0{letter-spacing:2.964877px;}
.ls1{letter-spacing:2.986766px;}
.ls4{letter-spacing:2.987675px;}
.ls3{letter-spacing:2.988017px;}
.ls2{letter-spacing:2.988780px;}
.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:-16.438350px;}
.ws4d{word-spacing:-14.943900px;}
.ws18{word-spacing:-14.920027px;}
.ws82{word-spacing:-13.449600px;}
.ws50{word-spacing:-11.955150px;}
.wsaa{word-spacing:-0.896634px;}
.ws1f{word-spacing:-0.836858px;}
.ws55{word-spacing:-0.777083px;}
.ws3b{word-spacing:-0.418429px;}
.ws52{word-spacing:-0.298878px;}
.ws9d{word-spacing:-0.119551px;}
.wsd{word-spacing:-0.107597px;}
.ws3{word-spacing:-0.053798px;}
.ws37{word-spacing:0.000000px;}
.ws28{word-spacing:0.006026px;}
.ws91{word-spacing:0.030883px;}
.ws6d{word-spacing:0.059776px;}
.ws4{word-spacing:0.215194px;}
.wsb0{word-spacing:0.286924px;}
.ws3e{word-spacing:0.478205px;}
.ws51{word-spacing:0.597756px;}
.ws8{word-spacing:0.645581px;}
.ws90{word-spacing:0.657532px;}
.ws98{word-spacing:0.777083px;}
.ws68{word-spacing:1.016185px;}
.ws9b{word-spacing:1.135736px;}
.ws73{word-spacing:1.315063px;}
.ws75{word-spacing:1.374839px;}
.ws19{word-spacing:1.554166px;}
.ws26{word-spacing:1.673717px;}
.ws35{word-spacing:1.853044px;}
.wsa8{word-spacing:1.912819px;}
.ws89{word-spacing:1.972595px;}
.ws76{word-spacing:2.570351px;}
.ws5{word-spacing:2.582323px;}
.ws9f{word-spacing:2.689902px;}
.ws29{word-spacing:2.749678px;}
.ws9e{word-spacing:2.809453px;}
.ws4a{word-spacing:2.929004px;}
.ws4f{word-spacing:2.988780px;}
.ws6b{word-spacing:3.227882px;}
.ws13{word-spacing:3.335501px;}
.wsab{word-spacing:3.646312px;}
.ws23{word-spacing:3.825638px;}
.ws33{word-spacing:3.885414px;}
.ws24{word-spacing:4.124516px;}
.ws84{word-spacing:4.184280px;}
.ws5f{word-spacing:4.303843px;}
.ws6{word-spacing:4.465267px;}
.ws54{word-spacing:4.483170px;}
.ws30{word-spacing:4.542946px;}
.ws6a{word-spacing:4.602721px;}
.wsa6{word-spacing:4.662497px;}
.ws57{word-spacing:4.722272px;}
.ws5b{word-spacing:4.782060px;}
.ws67{word-spacing:5.021150px;}
.ws39{word-spacing:5.080926px;}
.ws2a{word-spacing:5.140702px;}
.ws77{word-spacing:5.320028px;}
.ws5c{word-spacing:5.379804px;}
.ws83{word-spacing:5.379840px;}
.wsb2{word-spacing:5.642831px;}
.wsc{word-spacing:5.648832px;}
.ws25{word-spacing:5.678682px;}
.ws63{word-spacing:5.798233px;}
.wsa0{word-spacing:5.858009px;}
.ws2f{word-spacing:5.917784px;}
.ws4c{word-spacing:5.925398px;}
.ws4e{word-spacing:5.928452px;}
.ws79{word-spacing:5.929754px;}
.ws38{word-spacing:5.929784px;}
.ws78{word-spacing:5.960626px;}
.ws7a{word-spacing:5.967520px;}
.ws27{word-spacing:5.977560px;}
.ws86{word-spacing:6.216678px;}
.wsa7{word-spacing:6.395989px;}
.ws46{word-spacing:6.455765px;}
.ws62{word-spacing:6.515540px;}
.ws1{word-spacing:6.575340px;}
.ws7{word-spacing:6.617203px;}
.ws66{word-spacing:6.635092px;}
.wsa9{word-spacing:6.694867px;}
.ws16{word-spacing:6.724800px;}
.ws41{word-spacing:6.933970px;}
.ws48{word-spacing:6.993745px;}
.ws60{word-spacing:7.352399px;}
.wsa5{word-spacing:7.651277px;}
.ws44{word-spacing:7.830604px;}
.ws69{word-spacing:7.890379px;}
.wsb{word-spacing:7.908365px;}
.ws31{word-spacing:7.950155px;}
.wse{word-spacing:7.962163px;}
.ws20{word-spacing:8.249033px;}
.wsa2{word-spacing:8.607686px;}
.ws7e{word-spacing:8.787013px;}
.ws2d{word-spacing:8.846789px;}
.ws7b{word-spacing:9.085891px;}
.ws64{word-spacing:9.145667px;}
.ws9c{word-spacing:9.444545px;}
.ws3f{word-spacing:9.564096px;}
.ws1c{word-spacing:9.862974px;}
.ws21{word-spacing:10.102076px;}
.ws1e{word-spacing:10.161852px;}
.ws56{word-spacing:10.221628px;}
.ws53{word-spacing:10.281403px;}
.wsa3{word-spacing:10.341179px;}
.ws34{word-spacing:10.400954px;}
.ws43{word-spacing:10.460730px;}
.wsaf{word-spacing:10.520532px;}
.ws3c{word-spacing:10.879159px;}
.ws3a{word-spacing:10.938935px;}
.ws8f{word-spacing:10.998710px;}
.ws6e{word-spacing:11.178037px;}
.ws15{word-spacing:11.243866px;}
.ws87{word-spacing:11.775793px;}
.ws6c{word-spacing:11.835569px;}
.ws36{word-spacing:11.955120px;}
.ws61{word-spacing:12.074671px;}
.ws97{word-spacing:12.194222px;}
.ws11{word-spacing:12.212237px;}
.ws88{word-spacing:12.493100px;}
.ws70{word-spacing:12.552876px;}
.ws65{word-spacing:12.612652px;}
.ws8a{word-spacing:12.672427px;}
.ws72{word-spacing:12.971305px;}
.ws3d{word-spacing:13.090856px;}
.ws59{word-spacing:13.329959px;}
.ws8b{word-spacing:13.389734px;}
.ws40{word-spacing:13.569061px;}
.ws22{word-spacing:13.628837px;}
.ws32{word-spacing:13.808164px;}
.ws4b{word-spacing:13.927715px;}
.ws74{word-spacing:14.107042px;}
.wsa1{word-spacing:14.226593px;}
.ws0{word-spacing:14.346180px;}
.wsa4{word-spacing:14.525471px;}
.ws58{word-spacing:14.585246px;}
.ws71{word-spacing:14.704798px;}
.ws7f{word-spacing:14.884124px;}
.ws80{word-spacing:15.123227px;}
.ws81{word-spacing:15.183002px;}
.ws10{word-spacing:15.278746px;}
.ws93{word-spacing:15.302554px;}
.ws8c{word-spacing:15.422105px;}
.ws12{word-spacing:15.547738px;}
.ws5e{word-spacing:15.601432px;}
.ws96{word-spacing:16.139412px;}
.ws5d{word-spacing:16.199188px;}
.ws99{word-spacing:16.498066px;}
.ws14{word-spacing:16.623706px;}
.ws45{word-spacing:16.737168px;}
.ws2e{word-spacing:16.976270px;}
.ws2b{word-spacing:17.036046px;}
.ws42{word-spacing:17.095822px;}
.ws8d{word-spacing:17.215373px;}
.ws8e{word-spacing:17.394700px;}
.ws6f{word-spacing:17.454475px;}
.ws1d{word-spacing:17.633802px;}
.wsf{word-spacing:17.861069px;}
.ws17{word-spacing:17.932680px;}
.ws1b{word-spacing:18.112007px;}
.ws9a{word-spacing:18.410885px;}
.ws2c{word-spacing:18.709763px;}
.ws49{word-spacing:18.769538px;}
.wsa{word-spacing:18.883238px;}
.ws92{word-spacing:19.187968px;}
.wsae{word-spacing:19.247743px;}
.wsad{word-spacing:19.307519px;}
.wsb1{word-spacing:19.606446px;}
.ws95{word-spacing:19.905275px;}
.ws94{word-spacing:20.084602px;}
.ws7c{word-spacing:20.263928px;}
.ws47{word-spacing:21.280114px;}
.wsac{word-spacing:21.638767px;}
.ws7d{word-spacing:22.236523px;}
.ws9{word-spacing:22.756723px;}
.ws1a{word-spacing:22.953830px;}
.ws85{word-spacing:189.212755px;}
.ws5a{word-spacing:273.055626px;}
._13{margin-left:-7.591501px;}
._3{margin-left:-5.439580px;}
._1{margin-left:-3.616437px;}
._0{margin-left:-1.972602px;}
._4{width:1.769101px;}
._2{width:2.988780px;}
._5{width:16.557848px;}
._12{width:27.735893px;}
._10{width:29.450957px;}
._11{width:36.295835px;}
._a{width:71.730900px;}
._9{width:95.545559px;}
._b{width:126.784368px;}
._d{width:210.601922px;}
._7{width:215.910009px;}
._e{width:444.444656px;}
._8{width:516.139693px;}
._6{width:610.555492px;}
._f{width:616.837919px;}
._c{width:838.056015px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y33{bottom:113.332500px;}
.y32{bottom:131.265000px;}
.y53{bottom:149.197500px;}
.y31{bottom:149.199000px;}
.y30{bottom:167.131500px;}
.y2f{bottom:185.064000px;}
.y2e{bottom:202.996500px;}
.y2d{bottom:220.929000px;}
.y2c{bottom:238.861500px;}
.y83{bottom:244.270500px;}
.y52{bottom:256.794000px;}
.y2b{bottom:256.795500px;}
.y82{bottom:273.285000px;}
.y51{bottom:274.728000px;}
.y2a{bottom:281.352000px;}
.y81{bottom:291.217500px;}
.y50{bottom:292.660500px;}
.y80{bottom:309.150000px;}
.y4f{bottom:310.593000px;}
.y29{bottom:312.087000px;}
.y7f{bottom:327.084000px;}
.ya0{bottom:328.525500px;}
.y28{bottom:330.021000px;}
.y4e{bottom:334.531500px;}
.y7e{bottom:345.016500px;}
.y9f{bottom:346.458000px;}
.y27{bottom:347.953500px;}
.y7d{bottom:362.949000px;}
.y4d{bottom:364.390500px;}
.y9e{bottom:364.392000px;}
.y26{bottom:365.886000px;}
.y7c{bottom:380.881500px;}
.y4c{bottom:382.324500px;}
.y25{bottom:383.818500px;}
.y7b{bottom:398.814000px;}
.y4b{bottom:400.257000px;}
.y24{bottom:401.751000px;}
.yc7{bottom:402.499500px;}
.yc6{bottom:415.948500px;}
.y7a{bottom:416.748000px;}
.y4a{bottom:418.189500px;}
.y23{bottom:419.683500px;}
.yc5{bottom:429.397500px;}
.y79{bottom:434.680500px;}
.y49{bottom:436.122000px;}
.y22{bottom:437.617500px;}
.yc4{bottom:442.848000px;}
.y9d{bottom:448.626000px;}
.y78{bottom:452.613000px;}
.y48{bottom:454.054500px;}
.y21{bottom:455.550000px;}
.yc3{bottom:456.297000px;}
.yc2{bottom:469.746000px;}
.y77{bottom:470.545500px;}
.y47{bottom:471.987000px;}
.y20{bottom:473.482500px;}
.yc1{bottom:483.196500px;}
.y9c{bottom:487.690500px;}
.y76{bottom:488.478000px;}
.y46{bottom:489.921000px;}
.y1f{bottom:491.415000px;}
.yc0{bottom:496.645500px;}
.y9b{bottom:505.623000px;}
.y75{bottom:506.410500px;}
.y45{bottom:507.853500px;}
.y1e{bottom:509.347500px;}
.ybf{bottom:518.838000px;}
.y9a{bottom:523.555500px;}
.y74{bottom:524.344500px;}
.y44{bottom:525.786000px;}
.y1d{bottom:527.280000px;}
.y99{bottom:541.488000px;}
.y73{bottom:542.394000px;}
.y43{bottom:543.718500px;}
.y1c{bottom:545.214000px;}
.ybe{bottom:546.858000px;}
.y98{bottom:559.420500px;}
.y72{bottom:560.326500px;}
.y42{bottom:561.651000px;}
.y1b{bottom:563.146500px;}
.ybd{bottom:564.790500px;}
.y97{bottom:577.353000px;}
.y71{bottom:578.259000px;}
.y41{bottom:579.585000px;}
.ybc{bottom:582.723000px;}
.y1a{bottom:587.703000px;}
.y96{bottom:595.287000px;}
.y70{bottom:596.191500px;}
.y40{bottom:597.517500px;}
.ybb{bottom:600.655500px;}
.y95{bottom:613.219500px;}
.y6f{bottom:614.124000px;}
.y3f{bottom:615.450000px;}
.y19{bottom:618.439500px;}
.yba{bottom:618.588000px;}
.y94{bottom:631.152000px;}
.y6e{bottom:632.058000px;}
.y18{bottom:633.382500px;}
.yb9{bottom:636.520500px;}
.y17{bottom:648.327000px;}
.y93{bottom:649.084500px;}
.y6d{bottom:649.990500px;}
.y3e{bottom:651.315000px;}
.yb8{bottom:654.454500px;}
.y16{bottom:663.270000px;}
.y92{bottom:667.017000px;}
.y6c{bottom:667.923000px;}
.y3d{bottom:669.247500px;}
.yb7{bottom:672.387000px;}
.y15{bottom:678.214500px;}
.y91{bottom:684.949500px;}
.y6b{bottom:685.855500px;}
.y3c{bottom:687.181500px;}
.yb6{bottom:690.319500px;}
.y14{bottom:693.159000px;}
.y90{bottom:702.883500px;}
.y6a{bottom:703.788000px;}
.y3b{bottom:705.114000px;}
.y13{bottom:708.102000px;}
.yb5{bottom:708.252000px;}
.y8f{bottom:720.816000px;}
.y69{bottom:721.720500px;}
.y12{bottom:723.046500px;}
.yb4{bottom:726.184500px;}
.y11{bottom:737.991000px;}
.y68{bottom:739.654500px;}
.y3a{bottom:740.979000px;}
.yb3{bottom:744.117000px;}
.y10{bottom:752.934000px;}
.y67{bottom:757.587000px;}
.yb2{bottom:762.051000px;}
.y39{bottom:764.917500px;}
.yf{bottom:767.878500px;}
.y8e{bottom:770.146500px;}
.y66{bottom:775.519500px;}
.yb1{bottom:779.983500px;}
.ye{bottom:782.823000px;}
.y8d{bottom:783.595500px;}
.y65{bottom:793.452000px;}
.y38{bottom:794.778000px;}
.yd{bottom:797.766000px;}
.yb0{bottom:797.916000px;}
.y64{bottom:811.384500px;}
.yc{bottom:812.710500px;}
.yaf{bottom:815.848500px;}
.yb{bottom:827.655000px;}
.y63{bottom:829.434000px;}
.y37{bottom:830.643000px;}
.y86{bottom:833.175000px;}
.yae{bottom:833.781000px;}
.ya{bottom:842.598000px;}
.y62{bottom:847.368000px;}
.y36{bottom:848.575500px;}
.yad{bottom:856.422000px;}
.y9{bottom:857.542500px;}
.y61{bottom:865.300500px;}
.y35{bottom:866.508000px;}
.y8{bottom:872.487000px;}
.y8c{bottom:880.641000px;}
.y60{bottom:883.233000px;}
.y34{bottom:884.440500px;}
.yac{bottom:884.442000px;}
.y7{bottom:887.430000px;}
.y5f{bottom:901.165500px;}
.y6{bottom:902.374500px;}
.y8b{bottom:905.061000px;}
.y5e{bottom:919.098000px;}
.yab{bottom:920.307000px;}
.y5d{bottom:937.030500px;}
.yaa{bottom:938.239500px;}
.y5{bottom:952.290000px;}
.y5c{bottom:954.964500px;}
.ya9{bottom:956.172000px;}
.y85{bottom:957.550500px;}
.y8a{bottom:966.054000px;}
.y4{bottom:972.262500px;}
.y84{bottom:972.495000px;}
.y89{bottom:972.772500px;}
.y5b{bottom:972.897000px;}
.ya8{bottom:974.104500px;}
.y5a{bottom:990.829500px;}
.ya7{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.ya6{bottom:1009.971000px;}
.ya5{bottom:1027.903500px;}
.y2{bottom:1039.309500px;}
.y59{bottom:1040.905500px;}
.ya4{bottom:1045.836000px;}
.y58{bottom:1054.354500px;}
.ya3{bottom:1063.768500px;}
.y57{bottom:1067.803500px;}
.y1{bottom:1081.152000px;}
.y56{bottom:1081.254000px;}
.ya2{bottom:1081.701000px;}
.y88{bottom:1082.680500px;}
.y55{bottom:1094.703000px;}
.y87{bottom:1097.625000px;}
.ya1{bottom:1099.635000px;}
.y54{bottom:1108.152000px;}
.h8{height:28.787846px;}
.h6{height:32.900573px;}
.h7{height:37.013299px;}
.h4{height:37.336090px;}
.h9{height:37.391299px;}
.h3{height:37.605082px;}
.h5{height:41.125613px;}
.h2{height:45.238339px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:73.446000px;}
.x1d{left:79.423500px;}
.xd{left:82.411500px;}
.x6{left:88.390500px;}
.x1{left:97.173000px;}
.x1e{left:100.834500px;}
.xe{left:127.305000px;}
.x9{left:151.387500px;}
.x1b{left:201.433500px;}
.x8{left:203.428500px;}
.x1c{left:219.897000px;}
.x4{left:324.781500px;}
.x5{left:358.513500px;}
.x3{left:362.631000px;}
.x2{left:387.270000px;}
.xa{left:467.967000px;}
.x1a{left:471.921000px;}
.xb{left:473.424000px;}
.xc{left:482.910000px;}
.x10{left:505.249500px;}
.xf{left:513.837000px;}
.x18{left:564.070500px;}
.x16{left:601.759500px;}
.x19{left:614.316000px;}
.x13{left:616.651500px;}
.x15{left:633.477000px;}
.x14{left:645.904500px;}
.x17{left:658.353000px;}
.x12{left:756.009000px;}
.x11{left:772.908000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:2.177630pt;}
.ls0{letter-spacing:2.635446pt;}
.ls1{letter-spacing:2.654903pt;}
.ls4{letter-spacing:2.655711pt;}
.ls3{letter-spacing:2.656015pt;}
.ls2{letter-spacing:2.656693pt;}
.ws2{word-spacing:-14.611867pt;}
.ws4d{word-spacing:-13.283467pt;}
.ws18{word-spacing:-13.262246pt;}
.ws82{word-spacing:-11.955200pt;}
.ws50{word-spacing:-10.626800pt;}
.wsaa{word-spacing:-0.797008pt;}
.ws1f{word-spacing:-0.743874pt;}
.ws55{word-spacing:-0.690740pt;}
.ws3b{word-spacing:-0.371937pt;}
.ws52{word-spacing:-0.265669pt;}
.ws9d{word-spacing:-0.106268pt;}
.wsd{word-spacing:-0.095642pt;}
.ws3{word-spacing:-0.047821pt;}
.ws37{word-spacing:0.000000pt;}
.ws28{word-spacing:0.005357pt;}
.ws91{word-spacing:0.027452pt;}
.ws6d{word-spacing:0.053134pt;}
.ws4{word-spacing:0.191283pt;}
.wsb0{word-spacing:0.255043pt;}
.ws3e{word-spacing:0.425071pt;}
.ws51{word-spacing:0.531339pt;}
.ws8{word-spacing:0.573850pt;}
.ws90{word-spacing:0.584473pt;}
.ws98{word-spacing:0.690740pt;}
.ws68{word-spacing:0.903276pt;}
.ws9b{word-spacing:1.009543pt;}
.ws73{word-spacing:1.168945pt;}
.ws75{word-spacing:1.222079pt;}
.ws19{word-spacing:1.381481pt;}
.ws26{word-spacing:1.487748pt;}
.ws35{word-spacing:1.647150pt;}
.wsa8{word-spacing:1.700284pt;}
.ws89{word-spacing:1.753418pt;}
.ws76{word-spacing:2.284756pt;}
.ws5{word-spacing:2.295398pt;}
.ws9f{word-spacing:2.391024pt;}
.ws29{word-spacing:2.444158pt;}
.ws9e{word-spacing:2.497292pt;}
.ws4a{word-spacing:2.603559pt;}
.ws4f{word-spacing:2.656693pt;}
.ws6b{word-spacing:2.869229pt;}
.ws13{word-spacing:2.964890pt;}
.wsab{word-spacing:3.241166pt;}
.ws23{word-spacing:3.400567pt;}
.ws33{word-spacing:3.453701pt;}
.ws24{word-spacing:3.666237pt;}
.ws84{word-spacing:3.719360pt;}
.ws5f{word-spacing:3.825638pt;}
.ws6{word-spacing:3.969126pt;}
.ws54{word-spacing:3.985040pt;}
.ws30{word-spacing:4.038174pt;}
.ws6a{word-spacing:4.091308pt;}
.wsa6{word-spacing:4.144442pt;}
.ws57{word-spacing:4.197575pt;}
.ws5b{word-spacing:4.250720pt;}
.ws67{word-spacing:4.463245pt;}
.ws39{word-spacing:4.516379pt;}
.ws2a{word-spacing:4.569513pt;}
.ws77{word-spacing:4.728914pt;}
.ws5c{word-spacing:4.782048pt;}
.ws83{word-spacing:4.782080pt;}
.wsb2{word-spacing:5.015850pt;}
.wsc{word-spacing:5.021184pt;}
.ws25{word-spacing:5.047717pt;}
.ws63{word-spacing:5.153985pt;}
.wsa0{word-spacing:5.207119pt;}
.ws2f{word-spacing:5.260253pt;}
.ws4c{word-spacing:5.267021pt;}
.ws4e{word-spacing:5.269735pt;}
.ws79{word-spacing:5.270893pt;}
.ws38{word-spacing:5.270919pt;}
.ws78{word-spacing:5.298334pt;}
.ws7a{word-spacing:5.304462pt;}
.ws27{word-spacing:5.313387pt;}
.ws86{word-spacing:5.525936pt;}
.wsa7{word-spacing:5.685324pt;}
.ws46{word-spacing:5.738458pt;}
.ws62{word-spacing:5.791591pt;}
.ws1{word-spacing:5.844747pt;}
.ws7{word-spacing:5.881958pt;}
.ws66{word-spacing:5.897859pt;}
.wsa9{word-spacing:5.950993pt;}
.ws16{word-spacing:5.977600pt;}
.ws41{word-spacing:6.163529pt;}
.ws48{word-spacing:6.216662pt;}
.ws60{word-spacing:6.535466pt;}
.wsa5{word-spacing:6.801135pt;}
.ws44{word-spacing:6.960537pt;}
.ws69{word-spacing:7.013670pt;}
.wsb{word-spacing:7.029658pt;}
.ws31{word-spacing:7.066804pt;}
.wse{word-spacing:7.077478pt;}
.ws20{word-spacing:7.332474pt;}
.wsa2{word-spacing:7.651277pt;}
.ws7e{word-spacing:7.810678pt;}
.ws2d{word-spacing:7.863812pt;}
.ws7b{word-spacing:8.076348pt;}
.ws64{word-spacing:8.129482pt;}
.ws9c{word-spacing:8.395151pt;}
.ws3f{word-spacing:8.501419pt;}
.ws1c{word-spacing:8.767088pt;}
.ws21{word-spacing:8.979623pt;}
.ws1e{word-spacing:9.032757pt;}
.ws56{word-spacing:9.085891pt;}
.ws53{word-spacing:9.139025pt;}
.wsa3{word-spacing:9.192159pt;}
.ws34{word-spacing:9.245293pt;}
.ws43{word-spacing:9.298427pt;}
.wsaf{word-spacing:9.351584pt;}
.ws3c{word-spacing:9.670364pt;}
.ws3a{word-spacing:9.723498pt;}
.ws8f{word-spacing:9.776631pt;}
.ws6e{word-spacing:9.936033pt;}
.ws15{word-spacing:9.994547pt;}
.ws87{word-spacing:10.467372pt;}
.ws6c{word-spacing:10.520506pt;}
.ws36{word-spacing:10.626773pt;}
.ws61{word-spacing:10.733041pt;}
.ws97{word-spacing:10.839309pt;}
.ws11{word-spacing:10.855322pt;}
.ws88{word-spacing:11.104978pt;}
.ws70{word-spacing:11.158112pt;}
.ws65{word-spacing:11.211246pt;}
.ws8a{word-spacing:11.264380pt;}
.ws72{word-spacing:11.530049pt;}
.ws3d{word-spacing:11.636317pt;}
.ws59{word-spacing:11.848852pt;}
.ws8b{word-spacing:11.901986pt;}
.ws40{word-spacing:12.061388pt;}
.ws22{word-spacing:12.114522pt;}
.ws32{word-spacing:12.273923pt;}
.ws4b{word-spacing:12.380191pt;}
.ws74{word-spacing:12.539593pt;}
.wsa1{word-spacing:12.645860pt;}
.ws0{word-spacing:12.752160pt;}
.wsa4{word-spacing:12.911530pt;}
.ws58{word-spacing:12.964663pt;}
.ws71{word-spacing:13.070931pt;}
.ws7f{word-spacing:13.230333pt;}
.ws80{word-spacing:13.442868pt;}
.ws81{word-spacing:13.496002pt;}
.ws10{word-spacing:13.581107pt;}
.ws93{word-spacing:13.602270pt;}
.ws8c{word-spacing:13.708538pt;}
.ws12{word-spacing:13.820211pt;}
.ws5e{word-spacing:13.867939pt;}
.ws96{word-spacing:14.346144pt;}
.ws5d{word-spacing:14.399278pt;}
.ws99{word-spacing:14.664947pt;}
.ws14{word-spacing:14.776627pt;}
.ws45{word-spacing:14.877483pt;}
.ws2e{word-spacing:15.090018pt;}
.ws2b{word-spacing:15.143152pt;}
.ws42{word-spacing:15.196286pt;}
.ws8d{word-spacing:15.302554pt;}
.ws8e{word-spacing:15.461955pt;}
.ws6f{word-spacing:15.515089pt;}
.ws1d{word-spacing:15.674491pt;}
.wsf{word-spacing:15.876506pt;}
.ws17{word-spacing:15.940160pt;}
.ws1b{word-spacing:16.099562pt;}
.ws9a{word-spacing:16.365231pt;}
.ws2c{word-spacing:16.630900pt;}
.ws49{word-spacing:16.684034pt;}
.wsa{word-spacing:16.785101pt;}
.ws92{word-spacing:17.055971pt;}
.wsae{word-spacing:17.109105pt;}
.wsad{word-spacing:17.162239pt;}
.wsb1{word-spacing:17.427952pt;}
.ws95{word-spacing:17.693578pt;}
.ws94{word-spacing:17.852979pt;}
.ws7c{word-spacing:18.012381pt;}
.ws47{word-spacing:18.915657pt;}
.wsac{word-spacing:19.234460pt;}
.ws7d{word-spacing:19.765798pt;}
.ws9{word-spacing:20.228198pt;}
.ws1a{word-spacing:20.403405pt;}
.ws85{word-spacing:168.189116pt;}
.ws5a{word-spacing:242.716112pt;}
._13{margin-left:-6.748001pt;}
._3{margin-left:-4.835182pt;}
._1{margin-left:-3.214611pt;}
._0{margin-left:-1.753424pt;}
._4{width:1.572534pt;}
._2{width:2.656693pt;}
._5{width:14.718087pt;}
._12{width:24.654127pt;}
._10{width:26.178628pt;}
._11{width:32.262965pt;}
._a{width:63.760800pt;}
._9{width:84.929386pt;}
._b{width:112.697216pt;}
._d{width:187.201709pt;}
._7{width:191.920008pt;}
._e{width:395.061917pt;}
._8{width:458.790838pt;}
._6{width:542.715993pt;}
._f{width:548.300373pt;}
._c{width:744.938680pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:100.740000pt;}
.y32{bottom:116.680000pt;}
.y53{bottom:132.620000pt;}
.y31{bottom:132.621333pt;}
.y30{bottom:148.561333pt;}
.y2f{bottom:164.501333pt;}
.y2e{bottom:180.441333pt;}
.y2d{bottom:196.381333pt;}
.y2c{bottom:212.321333pt;}
.y83{bottom:217.129333pt;}
.y52{bottom:228.261333pt;}
.y2b{bottom:228.262667pt;}
.y82{bottom:242.920000pt;}
.y51{bottom:244.202667pt;}
.y2a{bottom:250.090667pt;}
.y81{bottom:258.860000pt;}
.y50{bottom:260.142667pt;}
.y80{bottom:274.800000pt;}
.y4f{bottom:276.082667pt;}
.y29{bottom:277.410667pt;}
.y7f{bottom:290.741333pt;}
.ya0{bottom:292.022667pt;}
.y28{bottom:293.352000pt;}
.y4e{bottom:297.361333pt;}
.y7e{bottom:306.681333pt;}
.y9f{bottom:307.962667pt;}
.y27{bottom:309.292000pt;}
.y7d{bottom:322.621333pt;}
.y4d{bottom:323.902667pt;}
.y9e{bottom:323.904000pt;}
.y26{bottom:325.232000pt;}
.y7c{bottom:338.561333pt;}
.y4c{bottom:339.844000pt;}
.y25{bottom:341.172000pt;}
.y7b{bottom:354.501333pt;}
.y4b{bottom:355.784000pt;}
.y24{bottom:357.112000pt;}
.yc7{bottom:357.777333pt;}
.yc6{bottom:369.732000pt;}
.y7a{bottom:370.442667pt;}
.y4a{bottom:371.724000pt;}
.y23{bottom:373.052000pt;}
.yc5{bottom:381.686667pt;}
.y79{bottom:386.382667pt;}
.y49{bottom:387.664000pt;}
.y22{bottom:388.993333pt;}
.yc4{bottom:393.642667pt;}
.y9d{bottom:398.778667pt;}
.y78{bottom:402.322667pt;}
.y48{bottom:403.604000pt;}
.y21{bottom:404.933333pt;}
.yc3{bottom:405.597333pt;}
.yc2{bottom:417.552000pt;}
.y77{bottom:418.262667pt;}
.y47{bottom:419.544000pt;}
.y20{bottom:420.873333pt;}
.yc1{bottom:429.508000pt;}
.y9c{bottom:433.502667pt;}
.y76{bottom:434.202667pt;}
.y46{bottom:435.485333pt;}
.y1f{bottom:436.813333pt;}
.yc0{bottom:441.462667pt;}
.y9b{bottom:449.442667pt;}
.y75{bottom:450.142667pt;}
.y45{bottom:451.425333pt;}
.y1e{bottom:452.753333pt;}
.ybf{bottom:461.189333pt;}
.y9a{bottom:465.382667pt;}
.y74{bottom:466.084000pt;}
.y44{bottom:467.365333pt;}
.y1d{bottom:468.693333pt;}
.y99{bottom:481.322667pt;}
.y73{bottom:482.128000pt;}
.y43{bottom:483.305333pt;}
.y1c{bottom:484.634667pt;}
.ybe{bottom:486.096000pt;}
.y98{bottom:497.262667pt;}
.y72{bottom:498.068000pt;}
.y42{bottom:499.245333pt;}
.y1b{bottom:500.574667pt;}
.ybd{bottom:502.036000pt;}
.y97{bottom:513.202667pt;}
.y71{bottom:514.008000pt;}
.y41{bottom:515.186667pt;}
.ybc{bottom:517.976000pt;}
.y1a{bottom:522.402667pt;}
.y96{bottom:529.144000pt;}
.y70{bottom:529.948000pt;}
.y40{bottom:531.126667pt;}
.ybb{bottom:533.916000pt;}
.y95{bottom:545.084000pt;}
.y6f{bottom:545.888000pt;}
.y3f{bottom:547.066667pt;}
.y19{bottom:549.724000pt;}
.yba{bottom:549.856000pt;}
.y94{bottom:561.024000pt;}
.y6e{bottom:561.829333pt;}
.y18{bottom:563.006667pt;}
.yb9{bottom:565.796000pt;}
.y17{bottom:576.290667pt;}
.y93{bottom:576.964000pt;}
.y6d{bottom:577.769333pt;}
.y3e{bottom:578.946667pt;}
.yb8{bottom:581.737333pt;}
.y16{bottom:589.573333pt;}
.y92{bottom:592.904000pt;}
.y6c{bottom:593.709333pt;}
.y3d{bottom:594.886667pt;}
.yb7{bottom:597.677333pt;}
.y15{bottom:602.857333pt;}
.y91{bottom:608.844000pt;}
.y6b{bottom:609.649333pt;}
.y3c{bottom:610.828000pt;}
.yb6{bottom:613.617333pt;}
.y14{bottom:616.141333pt;}
.y90{bottom:624.785333pt;}
.y6a{bottom:625.589333pt;}
.y3b{bottom:626.768000pt;}
.y13{bottom:629.424000pt;}
.yb5{bottom:629.557333pt;}
.y8f{bottom:640.725333pt;}
.y69{bottom:641.529333pt;}
.y12{bottom:642.708000pt;}
.yb4{bottom:645.497333pt;}
.y11{bottom:655.992000pt;}
.y68{bottom:657.470667pt;}
.y3a{bottom:658.648000pt;}
.yb3{bottom:661.437333pt;}
.y10{bottom:669.274667pt;}
.y67{bottom:673.410667pt;}
.yb2{bottom:677.378667pt;}
.y39{bottom:679.926667pt;}
.yf{bottom:682.558667pt;}
.y8e{bottom:684.574667pt;}
.y66{bottom:689.350667pt;}
.yb1{bottom:693.318667pt;}
.ye{bottom:695.842667pt;}
.y8d{bottom:696.529333pt;}
.y65{bottom:705.290667pt;}
.y38{bottom:706.469333pt;}
.yd{bottom:709.125333pt;}
.yb0{bottom:709.258667pt;}
.y64{bottom:721.230667pt;}
.yc{bottom:722.409333pt;}
.yaf{bottom:725.198667pt;}
.yb{bottom:735.693333pt;}
.y63{bottom:737.274667pt;}
.y37{bottom:738.349333pt;}
.y86{bottom:740.600000pt;}
.yae{bottom:741.138667pt;}
.ya{bottom:748.976000pt;}
.y62{bottom:753.216000pt;}
.y36{bottom:754.289333pt;}
.yad{bottom:761.264000pt;}
.y9{bottom:762.260000pt;}
.y61{bottom:769.156000pt;}
.y35{bottom:770.229333pt;}
.y8{bottom:775.544000pt;}
.y8c{bottom:782.792000pt;}
.y60{bottom:785.096000pt;}
.y34{bottom:786.169333pt;}
.yac{bottom:786.170667pt;}
.y7{bottom:788.826667pt;}
.y5f{bottom:801.036000pt;}
.y6{bottom:802.110667pt;}
.y8b{bottom:804.498667pt;}
.y5e{bottom:816.976000pt;}
.yab{bottom:818.050667pt;}
.y5d{bottom:832.916000pt;}
.yaa{bottom:833.990667pt;}
.y5{bottom:846.480000pt;}
.y5c{bottom:848.857333pt;}
.ya9{bottom:849.930667pt;}
.y85{bottom:851.156000pt;}
.y8a{bottom:858.714667pt;}
.y4{bottom:864.233333pt;}
.y84{bottom:864.440000pt;}
.y89{bottom:864.686667pt;}
.y5b{bottom:864.797333pt;}
.ya8{bottom:865.870667pt;}
.y5a{bottom:880.737333pt;}
.ya7{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.ya6{bottom:897.752000pt;}
.ya5{bottom:913.692000pt;}
.y2{bottom:923.830667pt;}
.y59{bottom:925.249333pt;}
.ya4{bottom:929.632000pt;}
.y58{bottom:937.204000pt;}
.ya3{bottom:945.572000pt;}
.y57{bottom:949.158667pt;}
.y1{bottom:961.024000pt;}
.y56{bottom:961.114667pt;}
.ya2{bottom:961.512000pt;}
.y88{bottom:962.382667pt;}
.y55{bottom:973.069333pt;}
.y87{bottom:975.666667pt;}
.ya1{bottom:977.453333pt;}
.y54{bottom:985.024000pt;}
.h8{height:25.589197pt;}
.h6{height:29.244954pt;}
.h7{height:32.900710pt;}
.h4{height:33.187635pt;}
.h9{height:33.236710pt;}
.h3{height:33.426739pt;}
.h5{height:36.556100pt;}
.h2{height:40.211857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:65.285333pt;}
.x1d{left:70.598667pt;}
.xd{left:73.254667pt;}
.x6{left:78.569333pt;}
.x1{left:86.376000pt;}
.x1e{left:89.630667pt;}
.xe{left:113.160000pt;}
.x9{left:134.566667pt;}
.x1b{left:179.052000pt;}
.x8{left:180.825333pt;}
.x1c{left:195.464000pt;}
.x4{left:288.694667pt;}
.x5{left:318.678667pt;}
.x3{left:322.338667pt;}
.x2{left:344.240000pt;}
.xa{left:415.970667pt;}
.x1a{left:419.485333pt;}
.xb{left:420.821333pt;}
.xc{left:429.253333pt;}
.x10{left:449.110667pt;}
.xf{left:456.744000pt;}
.x18{left:501.396000pt;}
.x16{left:534.897333pt;}
.x19{left:546.058667pt;}
.x13{left:548.134667pt;}
.x15{left:563.090667pt;}
.x14{left:574.137333pt;}
.x17{left:585.202667pt;}
.x12{left:672.008000pt;}
.x11{left:687.029333pt;}
}




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