
    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_712c05ad18faab46b9d0c333.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ba3436571836eb915cbe19c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088867;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_d122c64646fbb8e89173e66d.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_b5f3f3cd0f55c94ebc439b02.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_70e774ec9ca01479df9c48e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.148926;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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.398400px;}
.ls1e{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.064800px;}
.ls9{letter-spacing:-0.043920px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.004080px;}
.ls0{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.034560px;}
.ls1d{letter-spacing:0.037440px;}
.lsb{letter-spacing:0.148080px;}
.ls19{letter-spacing:0.208080px;}
.ls7{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.745920px;}
.ls14{letter-spacing:1.260000px;}
.ls3{letter-spacing:6.300000px;}
.ls5{letter-spacing:14.940000px;}
.ls18{letter-spacing:15.120000px;}
.ls13{letter-spacing:15.660000px;}
.lsf{letter-spacing:19.260000px;}
.lse{letter-spacing:22.140000px;}
.ls10{letter-spacing:28.620000px;}
.ls4{letter-spacing:30.060000px;}
.lsc{letter-spacing:30.780000px;}
.lsd{letter-spacing:35.100000px;}
.ls12{letter-spacing:43.020000px;}
.ls16{letter-spacing:48.060000px;}
.ls15{letter-spacing:51.660000px;}
.ls17{letter-spacing:58.140000px;}
.ls1b{letter-spacing:412.560000px;}
.ls1c{letter-spacing:1207.416000px;}
.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;}
}
.ws0{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.016080px;}
.ws7{word-spacing:-20.995200px;}
.ws6{word-spacing:-20.661600px;}
.ws1{word-spacing:-19.474560px;}
.ws2{word-spacing:-19.440000px;}
.ws5{word-spacing:0.000000px;}
._3b{margin-left:-1798.822800px;}
._3a{margin-left:-1651.440000px;}
._3e{margin-left:-412.569360px;}
._3d{margin-left:-348.840000px;}
._3f{margin-left:-21.818160px;}
._30{margin-left:-6.654960px;}
._16{margin-left:-5.475600px;}
._10{margin-left:-4.016400px;}
._f{margin-left:-2.864160px;}
._0{margin-left:-1.095120px;}
._1{width:1.477440px;}
._15{width:2.611440px;}
._22{width:3.622320px;}
._7{width:4.633200px;}
._c{width:5.728320px;}
._1f{width:6.907680px;}
._6{width:8.087040px;}
._4{width:10.085520px;}
._13{width:12.046320px;}
._a{width:13.394160px;}
._17{width:14.887920px;}
._9{width:15.921360px;}
._8{width:16.932240px;}
._1b{width:18.280080px;}
._14{width:19.521840px;}
._11{width:22.576320px;}
._12{width:23.683440px;}
._2d{width:24.754560px;}
._b{width:26.619840px;}
._28{width:27.967680px;}
._d{width:29.359920px;}
._e{width:30.406080px;}
._1c{width:31.505760px;}
._1a{width:32.769360px;}
._2b{width:34.117200px;}
._24{width:35.212320px;}
._2a{width:36.676800px;}
._29{width:38.005200px;}
._20{width:39.255840px;}
._21{width:40.305600px;}
._23{width:41.530320px;}
._1e{width:42.962400px;}
._1d{width:44.057520px;}
._27{width:46.753200px;}
._37{width:48.016800px;}
._5{width:49.280400px;}
._3{width:50.862480px;}
._2{width:52.163040px;}
._2c{width:53.829360px;}
._36{width:55.092960px;}
._31{width:56.693520px;}
._32{width:58.209840px;}
._33{width:59.568720px;}
._35{width:63.601200px;}
._34{width:64.696320px;}
._2e{width:66.718080px;}
._2f{width:67.728960px;}
._26{width:72.109440px;}
._25{width:73.373040px;}
._38{width:74.383920px;}
._19{width:82.555200px;}
._18{width:83.650320px;}
._40{width:349.043040px;}
._3c{width:1651.980000px;}
._39{width:1798.836000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y5a{bottom:110.736000px;}
.y2f{bottom:115.956000px;}
.y84{bottom:128.916000px;}
.y59{bottom:134.856000px;}
.y2e{bottom:140.076000px;}
.y83{bottom:153.030000px;}
.y58{bottom:159.150000px;}
.y2d{bottom:164.190000px;}
.y82{bottom:177.150000px;}
.y57{bottom:183.270000px;}
.y2c{bottom:188.310000px;}
.y81{bottom:201.450000px;}
.y56{bottom:207.390000px;}
.y2b{bottom:212.610000px;}
.y80{bottom:225.570000px;}
.y55{bottom:231.510000px;}
.y2a{bottom:236.730000px;}
.y7f{bottom:249.690000px;}
.y54{bottom:255.630000px;}
.y29{bottom:260.850000px;}
.y7e{bottom:273.855000px;}
.y53{bottom:279.795000px;}
.y28{bottom:285.015000px;}
.y7d{bottom:297.975000px;}
.y52{bottom:303.915000px;}
.y27{bottom:309.135000px;}
.y7c{bottom:322.095000px;}
.y51{bottom:328.215000px;}
.y26{bottom:333.255000px;}
.y7b{bottom:346.215000px;}
.y50{bottom:352.335000px;}
.y25{bottom:357.555000px;}
.y7a{bottom:370.515000px;}
.y4f{bottom:376.455000px;}
.y24{bottom:381.675000px;}
.y79{bottom:394.635000px;}
.y4e{bottom:400.575000px;}
.y23{bottom:405.795000px;}
.y78{bottom:418.755000px;}
.y4d{bottom:424.695000px;}
.y22{bottom:429.915000px;}
.y77{bottom:442.875000px;}
.y4c{bottom:448.815000px;}
.y21{bottom:454.035000px;}
.y76{bottom:466.995000px;}
.y4b{bottom:473.115000px;}
.y20{bottom:478.155000px;}
.y75{bottom:491.115000px;}
.y4a{bottom:497.235000px;}
.y1f{bottom:502.275000px;}
.y74{bottom:515.415000px;}
.y49{bottom:521.355000px;}
.y1e{bottom:526.575000px;}
.y73{bottom:539.535000px;}
.y48{bottom:545.475000px;}
.y1d{bottom:550.695000px;}
.y72{bottom:563.685000px;}
.y47{bottom:569.625000px;}
.y1c{bottom:574.845000px;}
.y71{bottom:587.805000px;}
.y46{bottom:593.745000px;}
.y1b{bottom:598.965000px;}
.y70{bottom:611.925000px;}
.y45{bottom:618.045000px;}
.y1a{bottom:623.085000px;}
.y6f{bottom:636.045000px;}
.y44{bottom:642.165000px;}
.y19{bottom:647.205000px;}
.y6e{bottom:660.165000px;}
.y43{bottom:666.285000px;}
.y18{bottom:671.505000px;}
.y6d{bottom:684.465000px;}
.y42{bottom:690.405000px;}
.y17{bottom:695.625000px;}
.y6c{bottom:708.585000px;}
.y41{bottom:714.525000px;}
.y16{bottom:719.745000px;}
.y6b{bottom:732.705000px;}
.y40{bottom:738.645000px;}
.y15{bottom:743.865000px;}
.y6a{bottom:756.825000px;}
.y3f{bottom:762.765000px;}
.y14{bottom:767.985000px;}
.y69{bottom:780.945000px;}
.y3e{bottom:787.065000px;}
.y13{bottom:792.105000px;}
.y68{bottom:805.065000px;}
.y3d{bottom:811.185000px;}
.y12{bottom:816.225000px;}
.y67{bottom:829.365000px;}
.y3c{bottom:835.305000px;}
.y11{bottom:840.570000px;}
.y66{bottom:853.530000px;}
.y3b{bottom:859.470000px;}
.y10{bottom:864.690000px;}
.y65{bottom:877.650000px;}
.y3a{bottom:883.590000px;}
.yf{bottom:888.810000px;}
.y64{bottom:901.770000px;}
.y39{bottom:907.710000px;}
.ye{bottom:912.930000px;}
.y63{bottom:925.890000px;}
.y38{bottom:932.010000px;}
.yd{bottom:937.050000px;}
.y62{bottom:950.010000px;}
.y37{bottom:956.130000px;}
.yc{bottom:961.170000px;}
.y61{bottom:974.130000px;}
.y36{bottom:980.250000px;}
.yb{bottom:984.930000px;}
.y60{bottom:998.430000px;}
.y35{bottom:1004.370000px;}
.ya{bottom:1007.790000px;}
.y5f{bottom:1022.550000px;}
.y34{bottom:1028.490000px;}
.y9{bottom:1031.910000px;}
.y5e{bottom:1046.670000px;}
.y33{bottom:1052.610000px;}
.y8{bottom:1055.670000px;}
.y5d{bottom:1070.790000px;}
.y32{bottom:1076.730000px;}
.y7{bottom:1078.530000px;}
.y5c{bottom:1094.910000px;}
.y31{bottom:1101.030000px;}
.y6{bottom:1102.650000px;}
.y5b{bottom:1119.030000px;}
.y30{bottom:1125.180000px;}
.y5{bottom:1126.440000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h5{height:74.244727px;}
.h4{height:76.317188px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x9{left:106.955987px;}
.x4{left:109.655987px;}
.x7{left:121.535987px;}
.xd{left:139.355987px;}
.x6{left:216.929987px;}
.x8{left:241.769987px;}
.xb{left:266.069987px;}
.x3{left:322.634987px;}
.xe{left:333.974987px;}
.xa{left:369.434987px;}
.x2{left:436.034987px;}
.x5{left:446.474987px;}
.xc{left:473.474987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.354133pt;}
.ls1e{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.057600pt;}
.ls9{letter-spacing:-0.039040pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.003627pt;}
.ls0{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.030720pt;}
.ls1d{letter-spacing:0.033280pt;}
.lsb{letter-spacing:0.131627pt;}
.ls19{letter-spacing:0.184960pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.663040pt;}
.ls14{letter-spacing:1.120000pt;}
.ls3{letter-spacing:5.600000pt;}
.ls5{letter-spacing:13.280000pt;}
.ls18{letter-spacing:13.440000pt;}
.ls13{letter-spacing:13.920000pt;}
.lsf{letter-spacing:17.120000pt;}
.lse{letter-spacing:19.680000pt;}
.ls10{letter-spacing:25.440000pt;}
.ls4{letter-spacing:26.720000pt;}
.lsc{letter-spacing:27.360000pt;}
.lsd{letter-spacing:31.200000pt;}
.ls12{letter-spacing:38.240000pt;}
.ls16{letter-spacing:42.720000pt;}
.ls15{letter-spacing:45.920000pt;}
.ls17{letter-spacing:51.680000pt;}
.ls1b{letter-spacing:366.720000pt;}
.ls1c{letter-spacing:1073.258667pt;}
.ws0{word-spacing:-19.040000pt;}
.ws8{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.680960pt;}
.ws7{word-spacing:-18.662400pt;}
.ws6{word-spacing:-18.365867pt;}
.ws1{word-spacing:-17.310720pt;}
.ws2{word-spacing:-17.280000pt;}
.ws5{word-spacing:0.000000pt;}
._3b{margin-left:-1598.953600pt;}
._3a{margin-left:-1467.946667pt;}
._3e{margin-left:-366.728320pt;}
._3d{margin-left:-310.080000pt;}
._3f{margin-left:-19.393920pt;}
._30{margin-left:-5.915520pt;}
._16{margin-left:-4.867200pt;}
._10{margin-left:-3.570133pt;}
._f{margin-left:-2.545920pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.313280pt;}
._15{width:2.321280pt;}
._22{width:3.219840pt;}
._7{width:4.118400pt;}
._c{width:5.091840pt;}
._1f{width:6.140160pt;}
._6{width:7.188480pt;}
._4{width:8.964907pt;}
._13{width:10.707840pt;}
._a{width:11.905920pt;}
._17{width:13.233707pt;}
._9{width:14.152320pt;}
._8{width:15.050880pt;}
._1b{width:16.248960pt;}
._14{width:17.352747pt;}
._11{width:20.067840pt;}
._12{width:21.051947pt;}
._2d{width:22.004053pt;}
._b{width:23.662080pt;}
._28{width:24.860160pt;}
._d{width:26.097707pt;}
._e{width:27.027627pt;}
._1c{width:28.005120pt;}
._1a{width:29.128320pt;}
._2b{width:30.326400pt;}
._24{width:31.299840pt;}
._2a{width:32.601600pt;}
._29{width:33.782400pt;}
._20{width:34.894080pt;}
._21{width:35.827200pt;}
._23{width:36.915840pt;}
._1e{width:38.188800pt;}
._1d{width:39.162240pt;}
._27{width:41.558400pt;}
._37{width:42.681600pt;}
._5{width:43.804800pt;}
._3{width:45.211093pt;}
._2{width:46.367147pt;}
._2c{width:47.848320pt;}
._36{width:48.971520pt;}
._31{width:50.394240pt;}
._32{width:51.742080pt;}
._33{width:52.949973pt;}
._35{width:56.534400pt;}
._34{width:57.507840pt;}
._2e{width:59.304960pt;}
._2f{width:60.203520pt;}
._26{width:64.097280pt;}
._25{width:65.220480pt;}
._38{width:66.119040pt;}
._19{width:73.382400pt;}
._18{width:74.355840pt;}
._40{width:310.260480pt;}
._3c{width:1468.426667pt;}
._39{width:1598.965333pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y5a{bottom:98.432000pt;}
.y2f{bottom:103.072000pt;}
.y84{bottom:114.592000pt;}
.y59{bottom:119.872000pt;}
.y2e{bottom:124.512000pt;}
.y83{bottom:136.026667pt;}
.y58{bottom:141.466667pt;}
.y2d{bottom:145.946667pt;}
.y82{bottom:157.466667pt;}
.y57{bottom:162.906667pt;}
.y2c{bottom:167.386667pt;}
.y81{bottom:179.066667pt;}
.y56{bottom:184.346667pt;}
.y2b{bottom:188.986667pt;}
.y80{bottom:200.506667pt;}
.y55{bottom:205.786667pt;}
.y2a{bottom:210.426667pt;}
.y7f{bottom:221.946667pt;}
.y54{bottom:227.226667pt;}
.y29{bottom:231.866667pt;}
.y7e{bottom:243.426667pt;}
.y53{bottom:248.706667pt;}
.y28{bottom:253.346667pt;}
.y7d{bottom:264.866667pt;}
.y52{bottom:270.146667pt;}
.y27{bottom:274.786667pt;}
.y7c{bottom:286.306667pt;}
.y51{bottom:291.746667pt;}
.y26{bottom:296.226667pt;}
.y7b{bottom:307.746667pt;}
.y50{bottom:313.186667pt;}
.y25{bottom:317.826667pt;}
.y7a{bottom:329.346667pt;}
.y4f{bottom:334.626667pt;}
.y24{bottom:339.266667pt;}
.y79{bottom:350.786667pt;}
.y4e{bottom:356.066667pt;}
.y23{bottom:360.706667pt;}
.y78{bottom:372.226667pt;}
.y4d{bottom:377.506667pt;}
.y22{bottom:382.146667pt;}
.y77{bottom:393.666667pt;}
.y4c{bottom:398.946667pt;}
.y21{bottom:403.586667pt;}
.y76{bottom:415.106667pt;}
.y4b{bottom:420.546667pt;}
.y20{bottom:425.026667pt;}
.y75{bottom:436.546667pt;}
.y4a{bottom:441.986667pt;}
.y1f{bottom:446.466667pt;}
.y74{bottom:458.146667pt;}
.y49{bottom:463.426667pt;}
.y1e{bottom:468.066667pt;}
.y73{bottom:479.586667pt;}
.y48{bottom:484.866667pt;}
.y1d{bottom:489.506667pt;}
.y72{bottom:501.053333pt;}
.y47{bottom:506.333333pt;}
.y1c{bottom:510.973333pt;}
.y71{bottom:522.493333pt;}
.y46{bottom:527.773333pt;}
.y1b{bottom:532.413333pt;}
.y70{bottom:543.933333pt;}
.y45{bottom:549.373333pt;}
.y1a{bottom:553.853333pt;}
.y6f{bottom:565.373333pt;}
.y44{bottom:570.813333pt;}
.y19{bottom:575.293333pt;}
.y6e{bottom:586.813333pt;}
.y43{bottom:592.253333pt;}
.y18{bottom:596.893333pt;}
.y6d{bottom:608.413333pt;}
.y42{bottom:613.693333pt;}
.y17{bottom:618.333333pt;}
.y6c{bottom:629.853333pt;}
.y41{bottom:635.133333pt;}
.y16{bottom:639.773333pt;}
.y6b{bottom:651.293333pt;}
.y40{bottom:656.573333pt;}
.y15{bottom:661.213333pt;}
.y6a{bottom:672.733333pt;}
.y3f{bottom:678.013333pt;}
.y14{bottom:682.653333pt;}
.y69{bottom:694.173333pt;}
.y3e{bottom:699.613333pt;}
.y13{bottom:704.093333pt;}
.y68{bottom:715.613333pt;}
.y3d{bottom:721.053333pt;}
.y12{bottom:725.533333pt;}
.y67{bottom:737.213333pt;}
.y3c{bottom:742.493333pt;}
.y11{bottom:747.173333pt;}
.y66{bottom:758.693333pt;}
.y3b{bottom:763.973333pt;}
.y10{bottom:768.613333pt;}
.y65{bottom:780.133333pt;}
.y3a{bottom:785.413333pt;}
.yf{bottom:790.053333pt;}
.y64{bottom:801.573333pt;}
.y39{bottom:806.853333pt;}
.ye{bottom:811.493333pt;}
.y63{bottom:823.013333pt;}
.y38{bottom:828.453333pt;}
.yd{bottom:832.933333pt;}
.y62{bottom:844.453333pt;}
.y37{bottom:849.893333pt;}
.yc{bottom:854.373333pt;}
.y61{bottom:865.893333pt;}
.y36{bottom:871.333333pt;}
.yb{bottom:875.493333pt;}
.y60{bottom:887.493333pt;}
.y35{bottom:892.773333pt;}
.ya{bottom:895.813333pt;}
.y5f{bottom:908.933333pt;}
.y34{bottom:914.213333pt;}
.y9{bottom:917.253333pt;}
.y5e{bottom:930.373333pt;}
.y33{bottom:935.653333pt;}
.y8{bottom:938.373333pt;}
.y5d{bottom:951.813333pt;}
.y32{bottom:957.093333pt;}
.y7{bottom:958.693333pt;}
.y5c{bottom:973.253333pt;}
.y31{bottom:978.693333pt;}
.y6{bottom:980.133333pt;}
.y5b{bottom:994.693333pt;}
.y30{bottom:1000.160000pt;}
.y5{bottom:1001.280000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h5{height:65.995312pt;}
.h4{height:67.837500pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x9{left:95.071988pt;}
.x4{left:97.471988pt;}
.x7{left:108.031988pt;}
.xd{left:123.871988pt;}
.x6{left:192.826655pt;}
.x8{left:214.906655pt;}
.xb{left:236.506655pt;}
.x3{left:286.786655pt;}
.xe{left:296.866655pt;}
.xa{left:328.386655pt;}
.x2{left:387.586655pt;}
.x5{left:396.866655pt;}
.xc{left:420.866655pt;}
}




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