
    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_3b351be86b7fd6ad76b6e952.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_55d77ef4517adbe41dce60e5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.255859;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_3e06a4bae8c6a22ac46c2bbb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.255859;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_f2a9e929ebdda4523d9b1ed9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.295898;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_5a9697a727e13e4db4bb348e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.295898;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_c81c0511ae08c61364a72c15.woff')format("woff");}.ff6{font-family:ff6;line-height:0.683594;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_68a34841835eee761d33c017.woff')format("woff");}.ff7{font-family:ff7;line-height:0.683594;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);}
.v1{vertical-align:-66.600000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.059760px;}
.lsf{letter-spacing:-0.057600px;}
.ls9{letter-spacing:-0.055440px;}
.lsb{letter-spacing:-0.031680px;}
.lse{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000001px;}
.ls7{letter-spacing:0.012600px;}
.ls6{letter-spacing:0.026280px;}
.ls4{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.090600px;}
.lsd{letter-spacing:0.137400px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.432000px;}
.ls10{letter-spacing:1344.026280px;}
.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:-40.464000px;}
.ws7{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232001px;}
.ws4{word-spacing:-20.232000px;}
.ws3{word-spacing:-18.665880px;}
.ws2{word-spacing:-18.512280px;}
.ws8{word-spacing:-17.784000px;}
.wse{word-spacing:-17.783997px;}
.ws9{word-spacing:-16.984320px;}
.ws5{word-spacing:-16.893720px;}
.wsb{word-spacing:-14.849640px;}
.wsf{word-spacing:-14.792040px;}
.wsd{word-spacing:-14.789880px;}
.wsc{word-spacing:-0.037800px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:0.288000px;}
._22{margin-left:-19.431480px;}
._1c{margin-left:-18.247440px;}
._19{margin-left:-16.992000px;}
._18{margin-left:-13.162440px;}
._1f{margin-left:-12.054480px;}
._3{margin-left:-8.352000px;}
._0{margin-left:-7.200000px;}
._2{margin-left:-6.048000px;}
._5{margin-left:-4.675320px;}
._8{margin-left:-3.096360px;}
._1{margin-left:-1.440000px;}
._9{width:1.054080px;}
._7{width:2.437560px;}
._4{width:3.456000px;}
._16{width:4.794360px;}
._20{width:5.939400px;}
._21{width:7.918560px;}
._17{width:9.576000px;}
._11{width:17.608680px;}
._10{width:18.699840px;}
._1e{width:20.285640px;}
._f{width:22.656360px;}
._e{width:23.713920px;}
._a{width:24.902640px;}
._b{width:26.154360px;}
._d{width:27.849840px;}
._13{width:29.133600px;}
._12{width:30.194280px;}
._15{width:35.372160px;}
._14{width:36.745920px;}
._1d{width:37.920000px;}
._1a{width:75.097914px;}
._1b{width:196.680000px;}
._c{width:843.888000px;}
._6{width:845.607720px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs1{font-size:119.880000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y89{bottom:129.720000px;}
.y88{bottom:149.790000px;}
.y87{bottom:169.770000px;}
.y86{bottom:189.750000px;}
.y85{bottom:209.820000px;}
.y84{bottom:228.990000px;}
.y83{bottom:246.540000px;}
.y82{bottom:266.520000px;}
.y81{bottom:286.590000px;}
.y80{bottom:306.570000px;}
.y10{bottom:319.620000px;}
.y7f{bottom:326.640000px;}
.y7e{bottom:345.810000px;}
.y3c{bottom:348.330000px;}
.yf{bottom:356.070000px;}
.y7d{bottom:363.270000px;}
.y61{bottom:365.340000px;}
.y3b{bottom:368.310000px;}
.y7c{bottom:383.340000px;}
.y60{bottom:385.320000px;}
.y3a{bottom:388.380000px;}
.y7b{bottom:403.320000px;}
.y5f{bottom:405.390000px;}
.ye{bottom:406.200000px;}
.y39{bottom:408.000000px;}
.y7a{bottom:423.390000px;}
.y5e{bottom:425.370000px;}
.y38{bottom:426.270000px;}
.y79{bottom:443.370000px;}
.y37{bottom:444.630000px;}
.y5d{bottom:445.440000px;}
.yd{bottom:461.400000px;}
.y36{bottom:463.020000px;}
.y78{bottom:463.470000px;}
.y5c{bottom:465.450000px;}
.y35{bottom:481.380000px;}
.y77{bottom:483.450000px;}
.y5b{bottom:485.430000px;}
.y34{bottom:499.740000px;}
.y76{bottom:503.520000px;}
.y5a{bottom:505.500000px;}
.yc{bottom:516.660000px;}
.y33{bottom:518.100000px;}
.y75{bottom:523.500000px;}
.y59{bottom:525.480000px;}
.y32{bottom:536.460000px;}
.y74{bottom:542.760000px;}
.y58{bottom:545.550000px;}
.y31{bottom:554.820000px;}
.y73{bottom:560.220000px;}
.y57{bottom:565.530000px;}
.yb{bottom:571.830000px;}
.y30{bottom:573.180000px;}
.y72{bottom:580.200000px;}
.y56{bottom:580.920000px;}
.y2f{bottom:591.540000px;}
.y71{bottom:600.270000px;}
.y2e{bottom:609.900000px;}
.y70{bottom:620.250000px;}
.ya{bottom:627.090000px;}
.y2d{bottom:628.260000px;}
.y55{bottom:630.870000px;}
.y6f{bottom:640.320000px;}
.y2c{bottom:646.620000px;}
.y54{bottom:652.470000px;}
.y6e{bottom:660.300000px;}
.y2b{bottom:664.890000px;}
.y53{bottom:674.070000px;}
.y6d{bottom:680.370000px;}
.y9{bottom:682.260000px;}
.y2a{bottom:683.250000px;}
.y52{bottom:695.670000px;}
.y6c{bottom:700.350000px;}
.y29{bottom:701.610000px;}
.y51{bottom:717.360000px;}
.y28{bottom:719.970000px;}
.y6b{bottom:720.420000px;}
.y8{bottom:737.520000px;}
.y27{bottom:738.330000px;}
.y50{bottom:738.960000px;}
.y6a{bottom:740.400000px;}
.y8c{bottom:750.390000px;}
.y26{bottom:756.690000px;}
.y69{bottom:760.470000px;}
.y8b{bottom:769.650000px;}
.y4f{bottom:772.530000px;}
.y25{bottom:775.050000px;}
.y68{bottom:780.450000px;}
.y7{bottom:792.690000px;}
.y24{bottom:793.410000px;}
.y4e{bottom:794.130000px;}
.y67{bottom:800.430000px;}
.y8a{bottom:802.950000px;}
.y23{bottom:811.770000px;}
.y4d{bottom:815.730000px;}
.y66{bottom:820.500000px;}
.y22{bottom:830.130000px;}
.y4c{bottom:837.330000px;}
.y65{bottom:840.480000px;}
.y6{bottom:847.950000px;}
.y21{bottom:848.490000px;}
.y4b{bottom:858.930000px;}
.y64{bottom:860.550000px;}
.y20{bottom:866.850000px;}
.y4a{bottom:880.530000px;}
.y1f{bottom:885.120000px;}
.y49{bottom:900.600000px;}
.y5{bottom:903.120000px;}
.y1e{bottom:903.480000px;}
.y48{bottom:920.580000px;}
.y1d{bottom:921.840000px;}
.y1c{bottom:940.200000px;}
.y47{bottom:940.650000px;}
.y4{bottom:958.380000px;}
.y1b{bottom:958.560000px;}
.y46{bottom:960.630000px;}
.y1a{bottom:976.920000px;}
.y45{bottom:980.700000px;}
.y19{bottom:995.310000px;}
.y44{bottom:1000.710000px;}
.y3{bottom:1013.580000px;}
.y18{bottom:1013.670000px;}
.y43{bottom:1020.780000px;}
.y17{bottom:1032.030000px;}
.y42{bottom:1040.760000px;}
.y16{bottom:1050.390000px;}
.y41{bottom:1060.740000px;}
.y15{bottom:1068.750000px;}
.y2{bottom:1068.840000px;}
.y40{bottom:1080.810000px;}
.y14{bottom:1087.110000px;}
.y3f{bottom:1100.790000px;}
.y13{bottom:1105.470000px;}
.y63{bottom:1120.050000px;}
.y3e{bottom:1120.860000px;}
.y1{bottom:1122.390000px;}
.y12{bottom:1123.740000px;}
.y62{bottom:1138.320000px;}
.y3d{bottom:1140.840000px;}
.y11{bottom:1142.100000px;}
.hb{height:47.988281px;}
.h9{height:61.499707px;}
.ha{height:63.730723px;}
.h5{height:67.391895px;}
.h6{height:73.652344px;}
.h7{height:76.324219px;}
.h8{height:85.804980px;}
.h4{height:122.631152px;}
.h3{height:147.304688px;}
.h2{height:148.009309px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.379987px;}
.x3{left:148.949987px;}
.x4{left:197.129987px;}
.x5{left:332.669987px;}
.x7{left:339.329987px;}
.x8{left:381.629987px;}
.x6{left:446.609987px;}
.x1{left:521.069987px;}
@media print{
.v1{vertical-align:-59.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.053120pt;}
.lsf{letter-spacing:-0.051200pt;}
.ls9{letter-spacing:-0.049280pt;}
.lsb{letter-spacing:-0.028160pt;}
.lse{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000001pt;}
.ls7{letter-spacing:0.011200pt;}
.ls6{letter-spacing:0.023360pt;}
.ls4{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.080533pt;}
.lsd{letter-spacing:0.122133pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.384000pt;}
.ls10{letter-spacing:1194.690027pt;}
.ws0{word-spacing:-35.968000pt;}
.ws7{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984001pt;}
.ws4{word-spacing:-17.984000pt;}
.ws3{word-spacing:-16.591893pt;}
.ws2{word-spacing:-16.455360pt;}
.ws8{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.807997pt;}
.ws9{word-spacing:-15.097173pt;}
.ws5{word-spacing:-15.016640pt;}
.wsb{word-spacing:-13.199680pt;}
.wsf{word-spacing:-13.148480pt;}
.wsd{word-spacing:-13.146560pt;}
.wsc{word-spacing:-0.033600pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:0.256000pt;}
._22{margin-left:-17.272427pt;}
._1c{margin-left:-16.219947pt;}
._19{margin-left:-15.104000pt;}
._18{margin-left:-11.699947pt;}
._1f{margin-left:-10.715093pt;}
._3{margin-left:-7.424000pt;}
._0{margin-left:-6.400000pt;}
._2{margin-left:-5.376000pt;}
._5{margin-left:-4.155840pt;}
._8{margin-left:-2.752320pt;}
._1{margin-left:-1.280000pt;}
._9{width:0.936960pt;}
._7{width:2.166720pt;}
._4{width:3.072000pt;}
._16{width:4.261653pt;}
._20{width:5.279467pt;}
._21{width:7.038720pt;}
._17{width:8.512000pt;}
._11{width:15.652160pt;}
._10{width:16.622080pt;}
._1e{width:18.031680pt;}
._f{width:20.138987pt;}
._e{width:21.079040pt;}
._a{width:22.135680pt;}
._b{width:23.248320pt;}
._d{width:24.755413pt;}
._13{width:25.896533pt;}
._12{width:26.839360pt;}
._15{width:31.441920pt;}
._14{width:32.663040pt;}
._1d{width:33.706667pt;}
._1a{width:66.753702pt;}
._1b{width:174.826667pt;}
._c{width:750.122667pt;}
._6{width:751.651307pt;}
.fs5{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs1{font-size:106.560000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:115.306667pt;}
.y88{bottom:133.146667pt;}
.y87{bottom:150.906667pt;}
.y86{bottom:168.666667pt;}
.y85{bottom:186.506667pt;}
.y84{bottom:203.546667pt;}
.y83{bottom:219.146667pt;}
.y82{bottom:236.906667pt;}
.y81{bottom:254.746667pt;}
.y80{bottom:272.506667pt;}
.y10{bottom:284.106667pt;}
.y7f{bottom:290.346667pt;}
.y7e{bottom:307.386667pt;}
.y3c{bottom:309.626667pt;}
.yf{bottom:316.506667pt;}
.y7d{bottom:322.906667pt;}
.y61{bottom:324.746667pt;}
.y3b{bottom:327.386667pt;}
.y7c{bottom:340.746667pt;}
.y60{bottom:342.506667pt;}
.y3a{bottom:345.226667pt;}
.y7b{bottom:358.506667pt;}
.y5f{bottom:360.346667pt;}
.ye{bottom:361.066667pt;}
.y39{bottom:362.666667pt;}
.y7a{bottom:376.346667pt;}
.y5e{bottom:378.106667pt;}
.y38{bottom:378.906667pt;}
.y79{bottom:394.106667pt;}
.y37{bottom:395.226667pt;}
.y5d{bottom:395.946667pt;}
.yd{bottom:410.133333pt;}
.y36{bottom:411.573333pt;}
.y78{bottom:411.973333pt;}
.y5c{bottom:413.733333pt;}
.y35{bottom:427.893333pt;}
.y77{bottom:429.733333pt;}
.y5b{bottom:431.493333pt;}
.y34{bottom:444.213333pt;}
.y76{bottom:447.573333pt;}
.y5a{bottom:449.333333pt;}
.yc{bottom:459.253333pt;}
.y33{bottom:460.533333pt;}
.y75{bottom:465.333333pt;}
.y59{bottom:467.093333pt;}
.y32{bottom:476.853333pt;}
.y74{bottom:482.453333pt;}
.y58{bottom:484.933333pt;}
.y31{bottom:493.173333pt;}
.y73{bottom:497.973333pt;}
.y57{bottom:502.693333pt;}
.yb{bottom:508.293333pt;}
.y30{bottom:509.493333pt;}
.y72{bottom:515.733333pt;}
.y56{bottom:516.373333pt;}
.y2f{bottom:525.813333pt;}
.y71{bottom:533.573333pt;}
.y2e{bottom:542.133333pt;}
.y70{bottom:551.333333pt;}
.ya{bottom:557.413333pt;}
.y2d{bottom:558.453333pt;}
.y55{bottom:560.773333pt;}
.y6f{bottom:569.173333pt;}
.y2c{bottom:574.773333pt;}
.y54{bottom:579.973333pt;}
.y6e{bottom:586.933333pt;}
.y2b{bottom:591.013333pt;}
.y53{bottom:599.173333pt;}
.y6d{bottom:604.773333pt;}
.y9{bottom:606.453333pt;}
.y2a{bottom:607.333333pt;}
.y52{bottom:618.373333pt;}
.y6c{bottom:622.533333pt;}
.y29{bottom:623.653333pt;}
.y51{bottom:637.653333pt;}
.y28{bottom:639.973333pt;}
.y6b{bottom:640.373333pt;}
.y8{bottom:655.573333pt;}
.y27{bottom:656.293333pt;}
.y50{bottom:656.853333pt;}
.y6a{bottom:658.133333pt;}
.y8c{bottom:667.013333pt;}
.y26{bottom:672.613333pt;}
.y69{bottom:675.973333pt;}
.y8b{bottom:684.133333pt;}
.y4f{bottom:686.693333pt;}
.y25{bottom:688.933333pt;}
.y68{bottom:693.733333pt;}
.y7{bottom:704.613333pt;}
.y24{bottom:705.253333pt;}
.y4e{bottom:705.893333pt;}
.y67{bottom:711.493333pt;}
.y8a{bottom:713.733333pt;}
.y23{bottom:721.573333pt;}
.y4d{bottom:725.093333pt;}
.y66{bottom:729.333333pt;}
.y22{bottom:737.893333pt;}
.y4c{bottom:744.293333pt;}
.y65{bottom:747.093333pt;}
.y6{bottom:753.733333pt;}
.y21{bottom:754.213333pt;}
.y4b{bottom:763.493333pt;}
.y64{bottom:764.933333pt;}
.y20{bottom:770.533333pt;}
.y4a{bottom:782.693333pt;}
.y1f{bottom:786.773333pt;}
.y49{bottom:800.533333pt;}
.y5{bottom:802.773333pt;}
.y1e{bottom:803.093333pt;}
.y48{bottom:818.293333pt;}
.y1d{bottom:819.413333pt;}
.y1c{bottom:835.733333pt;}
.y47{bottom:836.133333pt;}
.y4{bottom:851.893333pt;}
.y1b{bottom:852.053333pt;}
.y46{bottom:853.893333pt;}
.y1a{bottom:868.373333pt;}
.y45{bottom:871.733333pt;}
.y19{bottom:884.720000pt;}
.y44{bottom:889.520000pt;}
.y3{bottom:900.960000pt;}
.y18{bottom:901.040000pt;}
.y43{bottom:907.360000pt;}
.y17{bottom:917.360000pt;}
.y42{bottom:925.120000pt;}
.y16{bottom:933.680000pt;}
.y41{bottom:942.880000pt;}
.y15{bottom:950.000000pt;}
.y2{bottom:950.080000pt;}
.y40{bottom:960.720000pt;}
.y14{bottom:966.320000pt;}
.y3f{bottom:978.480000pt;}
.y13{bottom:982.640000pt;}
.y63{bottom:995.600000pt;}
.y3e{bottom:996.320000pt;}
.y1{bottom:997.680000pt;}
.y12{bottom:998.880000pt;}
.y62{bottom:1011.840000pt;}
.y3d{bottom:1014.080000pt;}
.y11{bottom:1015.200000pt;}
.hb{height:42.656250pt;}
.h9{height:54.666406pt;}
.ha{height:56.649531pt;}
.h5{height:59.903906pt;}
.h6{height:65.468750pt;}
.h7{height:67.843750pt;}
.h8{height:76.271094pt;}
.h4{height:109.005469pt;}
.h3{height:130.937500pt;}
.h2{height:131.563830pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.559988pt;}
.x3{left:132.399988pt;}
.x4{left:175.226655pt;}
.x5{left:295.706655pt;}
.x7{left:301.626655pt;}
.x8{left:339.226655pt;}
.x6{left:396.986655pt;}
.x1{left:463.173322pt;}
}




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