
    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_e8786f75c7e62388248b2980.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_1f6e53690287b44e05ff9c74.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_50f5d54a4f3b68495c584c41.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bbbe4cefcd2596328a2dc2f3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_33ea1f28b57f0a961c5b6caa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_bed4d5633d35943d40569beb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_f9cb4b59211bda15ad34306f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_884d2708c3e6840685ff1a75.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_5e70c6081c883be2716877e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_871f01e8615da11d0ceaa6e3.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.900000px;}
.lse{letter-spacing:-0.690000px;}
.lsb{letter-spacing:-0.369600px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.161400px;}
.lsf{letter-spacing:-0.037440px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.037440px;}
.ls16{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.187200px;}
.ls14{letter-spacing:0.291600px;}
.lsa{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378600px;}
.ls1{letter-spacing:4.320000px;}
.ls3{letter-spacing:10.620000px;}
.ls19{letter-spacing:15.660000px;}
.ls12{letter-spacing:17.100000px;}
.ls15{letter-spacing:25.740000px;}
.ls10{letter-spacing:27.900000px;}
.ls13{letter-spacing:34.560000px;}
.ls18{letter-spacing:43.020000px;}
.ls17{letter-spacing:50.340000px;}
.ls11{letter-spacing:129.221280px;}
.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;}
}
.ws3{word-spacing:-21.438600px;}
.ws1{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.401400px;}
.wsc{word-spacing:-21.351600px;}
.ws7{word-spacing:-21.097440px;}
.ws8{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.wsb{word-spacing:-21.022560px;}
.ws2{word-spacing:-20.898600px;}
.ws4{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.690400px;}
.ws9{word-spacing:-20.370000px;}
.wsd{word-spacing:-15.300000px;}
.wse{word-spacing:-14.940000px;}
.wsa{word-spacing:0.000000px;}
._21{margin-left:-5.644080px;}
._1e{margin-left:-4.128720px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.189440px;}
._2{width:1.525440px;}
._c{width:2.573760px;}
._3{width:4.159920px;}
._22{width:5.285520px;}
._39{width:6.312720px;}
._20{width:7.423200px;}
._1f{width:8.676720px;}
._16{width:10.476480px;}
._12{width:11.625120px;}
._1b{width:13.219200px;}
._1a{width:14.268000px;}
._2b{width:16.250880px;}
._6{width:18.364320px;}
._7{width:19.375200px;}
._11{width:22.155120px;}
._10{width:23.176080px;}
._2a{width:24.904800px;}
._5{width:26.303040px;}
._4{width:27.630720px;}
._19{width:28.880160px;}
._18{width:30.120240px;}
._17{width:31.873440px;}
._33{width:32.967120px;}
._32{width:34.117200px;}
._15{width:35.356080px;}
._d{width:36.560160px;}
._3b{width:38.413440px;}
._3c{width:39.687120px;}
._28{width:41.540400px;}
._14{width:43.457760px;}
._13{width:44.741520px;}
._2c{width:45.984960px;}
._26{width:47.280960px;}
._1d{width:48.310560px;}
._1c{width:49.504080px;}
._3a{width:50.706720px;}
._31{width:52.397280px;}
._8{width:53.418240px;}
._a{width:56.777760px;}
._b{width:58.135680px;}
._9{width:59.146560px;}
._34{width:60.241680px;}
._2d{width:61.336800px;}
._3e{width:68.497200px;}
._3d{width:70.940160px;}
._42{width:72.624960px;}
._3f{width:74.709840px;}
._27{width:76.574160px;}
._25{width:77.922000px;}
._24{width:79.027200px;}
._29{width:81.460080px;}
._f{width:82.481040px;}
._e{width:83.744640px;}
._38{width:85.850640px;}
._37{width:86.861520px;}
._40{width:88.452000px;}
._2e{width:90.315360px;}
._35{width:95.117040px;}
._36{width:96.454800px;}
._30{width:99.918720px;}
._2f{width:100.919520px;}
._41{width:104.963040px;}
._23{width:151.210800px;}
.fc2{color:rgb(79,97,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,192,0);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:12.960000px;}
.y6{bottom:39.420000px;}
.y5{bottom:57.600000px;}
.y4a{bottom:98.820000px;}
.y32{bottom:99.180000px;}
.y2b{bottom:102.420000px;}
.y31{bottom:105.120000px;}
.y49{bottom:116.460000px;}
.y30{bottom:118.260000px;}
.y48{bottom:122.400000px;}
.y7a{bottom:123.480000px;}
.y2f{bottom:124.200000px;}
.y2a{bottom:130.320000px;}
.y47{bottom:135.540000px;}
.y2e{bottom:137.160000px;}
.y46{bottom:141.480000px;}
.y68{bottom:143.100000px;}
.y83{bottom:151.380000px;}
.y45{bottom:154.440000px;}
.y67{bottom:156.240000px;}
.y29{bottom:158.040000px;}
.y44{bottom:160.380000px;}
.y79{bottom:169.380000px;}
.y43{bottom:173.340000px;}
.y82{bottom:179.100000px;}
.y28{bottom:185.760000px;}
.y66{bottom:188.820000px;}
.y2d{bottom:193.320000px;}
.y78{bottom:197.100000px;}
.y42{bottom:206.820000px;}
.y27{bottom:213.510000px;}
.y65{bottom:216.750000px;}
.y77{bottom:224.850000px;}
.y81{bottom:234.750000px;}
.y26{bottom:241.410000px;}
.y64{bottom:244.470000px;}
.y41{bottom:252.750000px;}
.y80{bottom:262.470000px;}
.y25{bottom:269.130000px;}
.y63{bottom:272.190000px;}
.y76{bottom:280.470000px;}
.y7f{bottom:290.190000px;}
.y24{bottom:296.850000px;}
.y40{bottom:298.470000px;}
.y62{bottom:299.910000px;}
.y23{bottom:324.750000px;}
.y3f{bottom:326.190000px;}
.y61{bottom:327.810000px;}
.y2c{bottom:332.310000px;}
.y7e{bottom:335.910000px;}
.y22{bottom:352.470000px;}
.y3e{bottom:353.910000px;}
.y60{bottom:373.530000px;}
.y21{bottom:380.190000px;}
.y3d{bottom:381.810000px;}
.y20{bottom:407.910000px;}
.y3c{bottom:409.530000px;}
.y5f{bottom:419.250000px;}
.y1f{bottom:435.810000px;}
.y75{bottom:437.250000px;}
.y5e{bottom:447.195000px;}
.y3b{bottom:455.295000px;}
.y1e{bottom:463.575000px;}
.y74{bottom:465.195000px;}
.y5d{bottom:474.915000px;}
.y3a{bottom:483.195000px;}
.y1d{bottom:491.295000px;}
.y73{bottom:492.915000px;}
.y5b{bottom:502.635000px;}
.y5c{bottom:510.195000px;}
.y39{bottom:510.915000px;}
.y1c{bottom:519.195000px;}
.y7d{bottom:520.635000px;}
.y5a{bottom:530.355000px;}
.y37{bottom:538.635000px;}
.y38{bottom:546.195000px;}
.y1b{bottom:546.915000px;}
.y7c{bottom:548.355000px;}
.y59{bottom:558.255000px;}
.y36{bottom:566.355000px;}
.y1a{bottom:574.635000px;}
.y58{bottom:585.975000px;}
.y72{bottom:594.255000px;}
.y19{bottom:602.355000px;}
.y35{bottom:612.255000px;}
.y71{bottom:621.975000px;}
.y18{bottom:630.255000px;}
.y57{bottom:631.695000px;}
.y70{bottom:649.695000px;}
.y17{bottom:657.975000px;}
.y56{bottom:659.415000px;}
.y34{bottom:665.535000px;}
.y6f{bottom:677.415000px;}
.y16{bottom:685.725000px;}
.y55{bottom:687.345000px;}
.y6e{bottom:705.345000px;}
.y15{bottom:713.445000px;}
.y54{bottom:715.065000px;}
.y7b{bottom:733.065000px;}
.y14{bottom:741.345000px;}
.y53{bottom:742.785000px;}
.y6d{bottom:751.065000px;}
.y13{bottom:769.065000px;}
.y6c{bottom:778.785000px;}
.y52{bottom:788.685000px;}
.y12{bottom:796.785000px;}
.y33{bottom:804.345000px;}
.y6b{bottom:806.685000px;}
.y11{bottom:824.685000px;}
.y51{bottom:834.405000px;}
.y10{bottom:852.405000px;}
.y50{bottom:862.125000px;}
.yf{bottom:880.125000px;}
.y4f{bottom:889.845000px;}
.ye{bottom:907.845000px;}
.y4d{bottom:917.790000px;}
.y4e{bottom:925.350000px;}
.yd{bottom:935.790000px;}
.y4c{bottom:945.510000px;}
.yc{bottom:963.510000px;}
.y6a{bottom:973.230000px;}
.yb{bottom:991.230000px;}
.y4b{bottom:998.790000px;}
.y69{bottom:1001.130000px;}
.ya{bottom:1019.130000px;}
.y9{bottom:1046.850000px;}
.y8{bottom:1074.570000px;}
.y4{bottom:1098.330000px;}
.y3{bottom:1126.230000px;}
.y2{bottom:1171.260000px;}
.y1{bottom:1198.440000px;}
.h5{height:36.360000px;}
.hc{height:40.985156px;}
.h2{height:48.224531px;}
.hb{height:52.998047px;}
.he{height:58.651172px;}
.h9{height:59.066719px;}
.h7{height:59.436914px;}
.hd{height:61.423863px;}
.h4{height:65.010937px;}
.h6{height:82.676953px;}
.h8{height:84.898125px;}
.hf{height:86.585445px;}
.ha{height:87.695156px;}
.h3{height:108.843750px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:55.296000px;}
.w1{width:893.250000px;}
.w4{width:893.339973px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x7{left:11.880000px;}
.x6{left:27.000000px;}
.x5{left:84.995987px;}
.x14{left:90.215987px;}
.x8{left:149.615987px;}
.x1d{left:205.229973px;}
.x1e{left:212.069987px;}
.x3{left:213.689987px;}
.xb{left:216.389987px;}
.x9{left:239.114987px;}
.x1b{left:248.114973px;}
.x1c{left:254.954987px;}
.x2{left:267.734987px;}
.xc{left:296.174987px;}
.x1a{left:298.154973px;}
.x13{left:301.034987px;}
.xd{left:304.094987px;}
.xf{left:328.394973px;}
.x10{left:335.234987px;}
.x1f{left:347.474987px;}
.x11{left:349.634973px;}
.x12{left:356.474987px;}
.x19{left:362.594987px;}
.xe{left:387.974987px;}
.x4{left:445.244987px;}
.xa{left:446.684987px;}
.x17{left:510.944973px;}
.x18{left:517.784987px;}
.x15{left:530.924973px;}
.x16{left:537.764987px;}
.x1{left:581.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.800000pt;}
.lse{letter-spacing:-0.613333pt;}
.lsb{letter-spacing:-0.328533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.143467pt;}
.lsf{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.033280pt;}
.ls16{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.166400pt;}
.ls14{letter-spacing:0.259200pt;}
.lsa{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336533pt;}
.ls1{letter-spacing:3.840000pt;}
.ls3{letter-spacing:9.440000pt;}
.ls19{letter-spacing:13.920000pt;}
.ls12{letter-spacing:15.200000pt;}
.ls15{letter-spacing:22.880000pt;}
.ls10{letter-spacing:24.800000pt;}
.ls13{letter-spacing:30.720000pt;}
.ls18{letter-spacing:38.240000pt;}
.ls17{letter-spacing:44.746667pt;}
.ls11{letter-spacing:114.863360pt;}
.ws3{word-spacing:-19.056533pt;}
.ws1{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.023467pt;}
.wsc{word-spacing:-18.979200pt;}
.ws7{word-spacing:-18.753280pt;}
.ws8{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.wsb{word-spacing:-18.686720pt;}
.ws2{word-spacing:-18.576533pt;}
.ws4{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.391467pt;}
.ws9{word-spacing:-18.106667pt;}
.wsd{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.280000pt;}
.wsa{word-spacing:0.000000pt;}
._21{margin-left:-5.016960pt;}
._1e{margin-left:-3.669973pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-1.057280pt;}
._2{width:1.355947pt;}
._c{width:2.287787pt;}
._3{width:3.697707pt;}
._22{width:4.698240pt;}
._39{width:5.611307pt;}
._20{width:6.598400pt;}
._1f{width:7.712640pt;}
._16{width:9.312427pt;}
._12{width:10.333440pt;}
._1b{width:11.750400pt;}
._1a{width:12.682667pt;}
._2b{width:14.445227pt;}
._6{width:16.323840pt;}
._7{width:17.222400pt;}
._11{width:19.693440pt;}
._10{width:20.600960pt;}
._2a{width:22.137600pt;}
._5{width:23.380480pt;}
._4{width:24.560640pt;}
._19{width:25.671253pt;}
._18{width:26.773547pt;}
._17{width:28.331947pt;}
._33{width:29.304107pt;}
._32{width:30.326400pt;}
._15{width:31.427627pt;}
._d{width:32.497920pt;}
._3b{width:34.145280pt;}
._3c{width:35.277440pt;}
._28{width:36.924800pt;}
._14{width:38.629120pt;}
._13{width:39.770240pt;}
._2c{width:40.875520pt;}
._26{width:42.027520pt;}
._1d{width:42.942720pt;}
._1c{width:44.003627pt;}
._3a{width:45.072640pt;}
._31{width:46.575360pt;}
._8{width:47.482880pt;}
._a{width:50.469120pt;}
._b{width:51.676160pt;}
._9{width:52.574720pt;}
._34{width:53.548160pt;}
._2d{width:54.521600pt;}
._3e{width:60.886400pt;}
._3d{width:63.057920pt;}
._42{width:64.555520pt;}
._3f{width:66.408747pt;}
._27{width:68.065920pt;}
._25{width:69.264000pt;}
._24{width:70.246400pt;}
._29{width:72.408960pt;}
._f{width:73.316480pt;}
._e{width:74.439680pt;}
._38{width:76.311680pt;}
._37{width:77.210240pt;}
._40{width:78.624000pt;}
._2e{width:80.280320pt;}
._35{width:84.548480pt;}
._36{width:85.737600pt;}
._30{width:88.816640pt;}
._2f{width:89.706240pt;}
._41{width:93.300480pt;}
._23{width:134.409600pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:11.520000pt;}
.y6{bottom:35.040000pt;}
.y5{bottom:51.200000pt;}
.y4a{bottom:87.840000pt;}
.y32{bottom:88.160000pt;}
.y2b{bottom:91.040000pt;}
.y31{bottom:93.440000pt;}
.y49{bottom:103.520000pt;}
.y30{bottom:105.120000pt;}
.y48{bottom:108.800000pt;}
.y7a{bottom:109.760000pt;}
.y2f{bottom:110.400000pt;}
.y2a{bottom:115.840000pt;}
.y47{bottom:120.480000pt;}
.y2e{bottom:121.920000pt;}
.y46{bottom:125.760000pt;}
.y68{bottom:127.200000pt;}
.y83{bottom:134.560000pt;}
.y45{bottom:137.280000pt;}
.y67{bottom:138.880000pt;}
.y29{bottom:140.480000pt;}
.y44{bottom:142.560000pt;}
.y79{bottom:150.560000pt;}
.y43{bottom:154.080000pt;}
.y82{bottom:159.200000pt;}
.y28{bottom:165.120000pt;}
.y66{bottom:167.840000pt;}
.y2d{bottom:171.840000pt;}
.y78{bottom:175.200000pt;}
.y42{bottom:183.840000pt;}
.y27{bottom:189.786667pt;}
.y65{bottom:192.666667pt;}
.y77{bottom:199.866667pt;}
.y81{bottom:208.666667pt;}
.y26{bottom:214.586667pt;}
.y64{bottom:217.306667pt;}
.y41{bottom:224.666667pt;}
.y80{bottom:233.306667pt;}
.y25{bottom:239.226667pt;}
.y63{bottom:241.946667pt;}
.y76{bottom:249.306667pt;}
.y7f{bottom:257.946667pt;}
.y24{bottom:263.866667pt;}
.y40{bottom:265.306667pt;}
.y62{bottom:266.586667pt;}
.y23{bottom:288.666667pt;}
.y3f{bottom:289.946667pt;}
.y61{bottom:291.386667pt;}
.y2c{bottom:295.386667pt;}
.y7e{bottom:298.586667pt;}
.y22{bottom:313.306667pt;}
.y3e{bottom:314.586667pt;}
.y60{bottom:332.026667pt;}
.y21{bottom:337.946667pt;}
.y3d{bottom:339.386667pt;}
.y20{bottom:362.586667pt;}
.y3c{bottom:364.026667pt;}
.y5f{bottom:372.666667pt;}
.y1f{bottom:387.386667pt;}
.y75{bottom:388.666667pt;}
.y5e{bottom:397.506667pt;}
.y3b{bottom:404.706667pt;}
.y1e{bottom:412.066667pt;}
.y74{bottom:413.506667pt;}
.y5d{bottom:422.146667pt;}
.y3a{bottom:429.506667pt;}
.y1d{bottom:436.706667pt;}
.y73{bottom:438.146667pt;}
.y5b{bottom:446.786667pt;}
.y5c{bottom:453.506667pt;}
.y39{bottom:454.146667pt;}
.y1c{bottom:461.506667pt;}
.y7d{bottom:462.786667pt;}
.y5a{bottom:471.426667pt;}
.y37{bottom:478.786667pt;}
.y38{bottom:485.506667pt;}
.y1b{bottom:486.146667pt;}
.y7c{bottom:487.426667pt;}
.y59{bottom:496.226667pt;}
.y36{bottom:503.426667pt;}
.y1a{bottom:510.786667pt;}
.y58{bottom:520.866667pt;}
.y72{bottom:528.226667pt;}
.y19{bottom:535.426667pt;}
.y35{bottom:544.226667pt;}
.y71{bottom:552.866667pt;}
.y18{bottom:560.226667pt;}
.y57{bottom:561.506667pt;}
.y70{bottom:577.506667pt;}
.y17{bottom:584.866667pt;}
.y56{bottom:586.146667pt;}
.y34{bottom:591.586667pt;}
.y6f{bottom:602.146667pt;}
.y16{bottom:609.533333pt;}
.y55{bottom:610.973333pt;}
.y6e{bottom:626.973333pt;}
.y15{bottom:634.173333pt;}
.y54{bottom:635.613333pt;}
.y7b{bottom:651.613333pt;}
.y14{bottom:658.973333pt;}
.y53{bottom:660.253333pt;}
.y6d{bottom:667.613333pt;}
.y13{bottom:683.613333pt;}
.y6c{bottom:692.253333pt;}
.y52{bottom:701.053333pt;}
.y12{bottom:708.253333pt;}
.y33{bottom:714.973333pt;}
.y6b{bottom:717.053333pt;}
.y11{bottom:733.053333pt;}
.y51{bottom:741.693333pt;}
.y10{bottom:757.693333pt;}
.y50{bottom:766.333333pt;}
.yf{bottom:782.333333pt;}
.y4f{bottom:790.973333pt;}
.ye{bottom:806.973333pt;}
.y4d{bottom:815.813333pt;}
.y4e{bottom:822.533333pt;}
.yd{bottom:831.813333pt;}
.y4c{bottom:840.453333pt;}
.yc{bottom:856.453333pt;}
.y6a{bottom:865.093333pt;}
.yb{bottom:881.093333pt;}
.y4b{bottom:887.813333pt;}
.y69{bottom:889.893333pt;}
.ya{bottom:905.893333pt;}
.y9{bottom:930.533333pt;}
.y8{bottom:955.173333pt;}
.y4{bottom:976.293333pt;}
.y3{bottom:1001.093333pt;}
.y2{bottom:1041.120000pt;}
.y1{bottom:1065.280000pt;}
.h5{height:32.320000pt;}
.hc{height:36.431250pt;}
.h2{height:42.866250pt;}
.hb{height:47.109375pt;}
.he{height:52.134375pt;}
.h9{height:52.503750pt;}
.h7{height:52.832812pt;}
.hd{height:54.598989pt;}
.h4{height:57.787500pt;}
.h6{height:73.490625pt;}
.h8{height:75.465000pt;}
.hf{height:76.964840pt;}
.ha{height:77.951250pt;}
.h3{height:96.750000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:49.152000pt;}
.w1{width:794.000000pt;}
.w4{width:794.079976pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x7{left:10.560000pt;}
.x6{left:24.000000pt;}
.x5{left:75.551988pt;}
.x14{left:80.191988pt;}
.x8{left:132.991988pt;}
.x1d{left:182.426643pt;}
.x1e{left:188.506655pt;}
.x3{left:189.946655pt;}
.xb{left:192.346655pt;}
.x9{left:212.546655pt;}
.x1b{left:220.546643pt;}
.x1c{left:226.626655pt;}
.x2{left:237.986655pt;}
.xc{left:263.266655pt;}
.x1a{left:265.026643pt;}
.x13{left:267.586655pt;}
.xd{left:270.306655pt;}
.xf{left:291.906643pt;}
.x10{left:297.986655pt;}
.x1f{left:308.866655pt;}
.x11{left:310.786643pt;}
.x12{left:316.866655pt;}
.x19{left:322.306655pt;}
.xe{left:344.866655pt;}
.x4{left:395.773321pt;}
.xa{left:397.053321pt;}
.x17{left:454.173310pt;}
.x18{left:460.253321pt;}
.x15{left:471.933310pt;}
.x16{left:478.013322pt;}
.x1{left:517.093322pt;}
}




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