
    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_5370d16695a4d73845604bb3.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_f715ae2d8d18fee174291db5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_93bf07a0f506a0f2c85a0e27.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_b9819604cb52b22c926b5f7a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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_9d485470abf751e83611f5c4.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsb{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.792000px;}
.lsd{letter-spacing:86.544000px;}
.lse{letter-spacing:87.984000px;}
.lsf{letter-spacing:846.180000px;}
.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;}
}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.496000px;}
.ws6{word-spacing:-17.064000px;}
.ws3{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._21{margin-left:-2.304000px;}
._7{margin-left:-1.104000px;}
._3{width:1.008000px;}
._9{width:2.160000px;}
._1{width:4.104000px;}
._0{width:5.112000px;}
._2{width:6.336000px;}
._f{width:8.064000px;}
._1f{width:9.072000px;}
._8{width:10.080000px;}
._a{width:11.688000px;}
._b{width:12.720000px;}
._c{width:13.932000px;}
._1e{width:15.048000px;}
._1b{width:16.128000px;}
._d{width:19.152000px;}
._e{width:20.400000px;}
._11{width:22.104000px;}
._1d{width:23.388000px;}
._16{width:24.912000px;}
._17{width:26.088000px;}
._20{width:27.660000px;}
._18{width:32.544000px;}
._19{width:33.684000px;}
._13{width:34.944000px;}
._14{width:36.000000px;}
._5{width:41.988000px;}
._4{width:43.248000px;}
._15{width:50.328000px;}
._1a{width:51.696000px;}
._24{width:52.992000px;}
._22{width:66.528000px;}
._23{width:67.632000px;}
._12{width:72.792000px;}
._1c{width:103.824000px;}
._6{width:135.504000px;}
._10{width:846.156000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:123.876000px;}
.y7a{bottom:132.696000px;}
.y1c{bottom:133.776000px;}
.y8c{bottom:148.716000px;}
.y5d{bottom:149.796000px;}
.y40{bottom:154.830000px;}
.y9e{bottom:155.010000px;}
.y79{bottom:163.650000px;}
.y1b{bottom:164.730000px;}
.y8b{bottom:179.670000px;}
.y5c{bottom:180.750000px;}
.y3f{bottom:185.970000px;}
.y78{bottom:194.790000px;}
.y1a{bottom:195.870000px;}
.y8a{bottom:210.810000px;}
.y5b{bottom:211.710000px;}
.y3e{bottom:216.930000px;}
.y77{bottom:225.750000px;}
.y19{bottom:226.830000px;}
.y9d{bottom:232.050000px;}
.y89{bottom:241.770000px;}
.y5a{bottom:242.850000px;}
.y3d{bottom:248.070000px;}
.y18{bottom:257.970000px;}
.y9c{bottom:263.010000px;}
.y76{bottom:271.830000px;}
.y88{bottom:272.955000px;}
.y59{bottom:273.855000px;}
.y3c{bottom:279.075000px;}
.y17{bottom:288.975000px;}
.y75{bottom:302.835000px;}
.y87{bottom:303.915000px;}
.y58{bottom:304.995000px;}
.y9b{bottom:309.135000px;}
.y3b{bottom:310.215000px;}
.y16{bottom:320.115000px;}
.y74{bottom:333.975000px;}
.y86{bottom:335.055000px;}
.y57{bottom:335.955000px;}
.y15{bottom:351.075000px;}
.y9a{bottom:355.215000px;}
.y3a{bottom:356.115000px;}
.y73{bottom:364.935000px;}
.y85{bottom:366.015000px;}
.y56{bottom:367.095000px;}
.y14{bottom:382.215000px;}
.y99{bottom:386.355000px;}
.y39{bottom:387.255000px;}
.y72{bottom:396.075000px;}
.y84{bottom:397.155000px;}
.y55{bottom:398.055000px;}
.y13{bottom:413.175000px;}
.y38{bottom:418.215000px;}
.y71{bottom:427.035000px;}
.y98{bottom:432.255000px;}
.y83{bottom:442.695000px;}
.y54{bottom:443.775000px;}
.y12{bottom:444.315000px;}
.y37{bottom:449.355000px;}
.y70{bottom:458.175000px;}
.y11{bottom:475.275000px;}
.y97{bottom:478.335000px;}
.y36{bottom:480.315000px;}
.y6f{bottom:489.135000px;}
.y53{bottom:490.215000px;}
.y96{bottom:509.475000px;}
.y35{bottom:511.455000px;}
.y10{bottom:514.155000px;}
.y6e{bottom:520.275000px;}
.y52{bottom:521.355000px;}
.y34{bottom:542.415000px;}
.y6d{bottom:551.235000px;}
.y51{bottom:552.315000px;}
.y95{bottom:555.375000px;}
.yf{bottom:570.525000px;}
.y33{bottom:573.585000px;}
.y6c{bottom:582.405000px;}
.y50{bottom:583.305000px;}
.y94{bottom:601.485000px;}
.y32{bottom:604.545000px;}
.y6b{bottom:613.365000px;}
.y4f{bottom:614.445000px;}
.ya1{bottom:616.605000px;}
.ye{bottom:627.045000px;}
.y31{bottom:635.685000px;}
.y6a{bottom:644.505000px;}
.y4e{bottom:645.405000px;}
.y93{bottom:647.565000px;}
.y30{bottom:666.645000px;}
.y69{bottom:675.465000px;}
.y4d{bottom:676.545000px;}
.yd{bottom:683.385000px;}
.y92{bottom:693.645000px;}
.y2f{bottom:697.785000px;}
.y68{bottom:706.605000px;}
.y4c{bottom:707.505000px;}
.y82{bottom:721.545000px;}
.ya7{bottom:723.705000px;}
.y2e{bottom:728.745000px;}
.y67{bottom:737.565000px;}
.y4b{bottom:738.645000px;}
.yc{bottom:739.725000px;}
.y81{bottom:752.505000px;}
.y2d{bottom:759.885000px;}
.y66{bottom:768.705000px;}
.ya6{bottom:769.605000px;}
.ya0{bottom:770.685000px;}
.yb{bottom:781.305000px;}
.y80{bottom:783.645000px;}
.y4a{bottom:784.365000px;}
.y91{bottom:785.805000px;}
.y2c{bottom:790.845000px;}
.y65{bottom:799.665000px;}
.ya5{bottom:800.745000px;}
.y7f{bottom:814.605000px;}
.y90{bottom:816.765000px;}
.y2b{bottom:821.985000px;}
.ya{bottom:822.705000px;}
.y49{bottom:830.445000px;}
.y64{bottom:830.805000px;}
.ya4{bottom:831.705000px;}
.y7e{bottom:845.790000px;}
.y9f{bottom:847.950000px;}
.y2a{bottom:852.990000px;}
.y63{bottom:861.810000px;}
.y8f{bottom:862.890000px;}
.y9{bottom:873.150000px;}
.y48{bottom:876.750000px;}
.ya3{bottom:877.830000px;}
.y29{bottom:884.130000px;}
.y62{bottom:892.950000px;}
.y8e{bottom:893.850000px;}
.y47{bottom:907.890000px;}
.ya2{bottom:908.970000px;}
.y8{bottom:914.550000px;}
.y28{bottom:915.090000px;}
.y61{bottom:923.910000px;}
.y46{bottom:938.850000px;}
.y8d{bottom:939.930000px;}
.y27{bottom:946.230000px;}
.y60{bottom:954.870000px;}
.y7{bottom:964.590000px;}
.y45{bottom:969.990000px;}
.y20{bottom:971.070000px;}
.y26{bottom:977.190000px;}
.y5f{bottom:986.010000px;}
.y44{bottom:1000.950000px;}
.y6{bottom:1005.990000px;}
.y25{bottom:1008.330000px;}
.y7d{bottom:1016.070000px;}
.y1f{bottom:1016.970000px;}
.y43{bottom:1032.090000px;}
.y24{bottom:1039.290000px;}
.y5{bottom:1045.050000px;}
.y7c{bottom:1047.030000px;}
.y5e{bottom:1062.690000px;}
.y1e{bottom:1063.050000px;}
.y4{bottom:1068.810000px;}
.y23{bottom:1070.430000px;}
.y7b{bottom:1078.170000px;}
.y3{bottom:1092.570000px;}
.y1d{bottom:1094.190000px;}
.y22{bottom:1101.390000px;}
.y42{bottom:1109.130000px;}
.y2{bottom:1116.330000px;}
.y21{bottom:1139.940000px;}
.y1{bottom:1140.300000px;}
.h2{height:70.664062px;}
.h5{height:71.824219px;}
.h3{height:72.562500px;}
.h6{height:74.004654px;}
.h4{height:80.464922px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:124.416000px;}
.x1{left:127.656000px;}
.xe{left:133.416000px;}
.xc{left:142.596000px;}
.x7{left:144.036000px;}
.x2{left:148.896000px;}
.x4{left:150.330000px;}
.x6{left:170.670000px;}
.x3{left:180.750000px;}
.x9{left:199.290000px;}
.xd{left:221.250000px;}
.xa{left:237.990000px;}
.x8{left:256.350000px;}
.x5{left:401.475000px;}
.xb{left:446.475000px;}
@media print{
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.704000pt;}
.lsd{letter-spacing:76.928000pt;}
.lse{letter-spacing:78.208000pt;}
.lsf{letter-spacing:752.160000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.552000pt;}
.ws6{word-spacing:-15.168000pt;}
.ws3{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._21{margin-left:-2.048000pt;}
._7{margin-left:-0.981333pt;}
._3{width:0.896000pt;}
._9{width:1.920000pt;}
._1{width:3.648000pt;}
._0{width:4.544000pt;}
._2{width:5.632000pt;}
._f{width:7.168000pt;}
._1f{width:8.064000pt;}
._8{width:8.960000pt;}
._a{width:10.389333pt;}
._b{width:11.306667pt;}
._c{width:12.384000pt;}
._1e{width:13.376000pt;}
._1b{width:14.336000pt;}
._d{width:17.024000pt;}
._e{width:18.133333pt;}
._11{width:19.648000pt;}
._1d{width:20.789333pt;}
._16{width:22.144000pt;}
._17{width:23.189333pt;}
._20{width:24.586667pt;}
._18{width:28.928000pt;}
._19{width:29.941333pt;}
._13{width:31.061333pt;}
._14{width:32.000000pt;}
._5{width:37.322667pt;}
._4{width:38.442667pt;}
._15{width:44.736000pt;}
._1a{width:45.952000pt;}
._24{width:47.104000pt;}
._22{width:59.136000pt;}
._23{width:60.117333pt;}
._12{width:64.704000pt;}
._1c{width:92.288000pt;}
._6{width:120.448000pt;}
._10{width:752.138667pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:110.112000pt;}
.y7a{bottom:117.952000pt;}
.y1c{bottom:118.912000pt;}
.y8c{bottom:132.192000pt;}
.y5d{bottom:133.152000pt;}
.y40{bottom:137.626667pt;}
.y9e{bottom:137.786667pt;}
.y79{bottom:145.466667pt;}
.y1b{bottom:146.426667pt;}
.y8b{bottom:159.706667pt;}
.y5c{bottom:160.666667pt;}
.y3f{bottom:165.306667pt;}
.y78{bottom:173.146667pt;}
.y1a{bottom:174.106667pt;}
.y8a{bottom:187.386667pt;}
.y5b{bottom:188.186667pt;}
.y3e{bottom:192.826667pt;}
.y77{bottom:200.666667pt;}
.y19{bottom:201.626667pt;}
.y9d{bottom:206.266667pt;}
.y89{bottom:214.906667pt;}
.y5a{bottom:215.866667pt;}
.y3d{bottom:220.506667pt;}
.y18{bottom:229.306667pt;}
.y9c{bottom:233.786667pt;}
.y76{bottom:241.626667pt;}
.y88{bottom:242.626667pt;}
.y59{bottom:243.426667pt;}
.y3c{bottom:248.066667pt;}
.y17{bottom:256.866667pt;}
.y75{bottom:269.186667pt;}
.y87{bottom:270.146667pt;}
.y58{bottom:271.106667pt;}
.y9b{bottom:274.786667pt;}
.y3b{bottom:275.746667pt;}
.y16{bottom:284.546667pt;}
.y74{bottom:296.866667pt;}
.y86{bottom:297.826667pt;}
.y57{bottom:298.626667pt;}
.y15{bottom:312.066667pt;}
.y9a{bottom:315.746667pt;}
.y3a{bottom:316.546667pt;}
.y73{bottom:324.386667pt;}
.y85{bottom:325.346667pt;}
.y56{bottom:326.306667pt;}
.y14{bottom:339.746667pt;}
.y99{bottom:343.426667pt;}
.y39{bottom:344.226667pt;}
.y72{bottom:352.066667pt;}
.y84{bottom:353.026667pt;}
.y55{bottom:353.826667pt;}
.y13{bottom:367.266667pt;}
.y38{bottom:371.746667pt;}
.y71{bottom:379.586667pt;}
.y98{bottom:384.226667pt;}
.y83{bottom:393.506667pt;}
.y54{bottom:394.466667pt;}
.y12{bottom:394.946667pt;}
.y37{bottom:399.426667pt;}
.y70{bottom:407.266667pt;}
.y11{bottom:422.466667pt;}
.y97{bottom:425.186667pt;}
.y36{bottom:426.946667pt;}
.y6f{bottom:434.786667pt;}
.y53{bottom:435.746667pt;}
.y96{bottom:452.866667pt;}
.y35{bottom:454.626667pt;}
.y10{bottom:457.026667pt;}
.y6e{bottom:462.466667pt;}
.y52{bottom:463.426667pt;}
.y34{bottom:482.146667pt;}
.y6d{bottom:489.986667pt;}
.y51{bottom:490.946667pt;}
.y95{bottom:493.666667pt;}
.yf{bottom:507.133333pt;}
.y33{bottom:509.853333pt;}
.y6c{bottom:517.693333pt;}
.y50{bottom:518.493333pt;}
.y94{bottom:534.653333pt;}
.y32{bottom:537.373333pt;}
.y6b{bottom:545.213333pt;}
.y4f{bottom:546.173333pt;}
.ya1{bottom:548.093333pt;}
.ye{bottom:557.373333pt;}
.y31{bottom:565.053333pt;}
.y6a{bottom:572.893333pt;}
.y4e{bottom:573.693333pt;}
.y93{bottom:575.613333pt;}
.y30{bottom:592.573333pt;}
.y69{bottom:600.413333pt;}
.y4d{bottom:601.373333pt;}
.yd{bottom:607.453333pt;}
.y92{bottom:616.573333pt;}
.y2f{bottom:620.253333pt;}
.y68{bottom:628.093333pt;}
.y4c{bottom:628.893333pt;}
.y82{bottom:641.373333pt;}
.ya7{bottom:643.293333pt;}
.y2e{bottom:647.773333pt;}
.y67{bottom:655.613333pt;}
.y4b{bottom:656.573333pt;}
.yc{bottom:657.533333pt;}
.y81{bottom:668.893333pt;}
.y2d{bottom:675.453333pt;}
.y66{bottom:683.293333pt;}
.ya6{bottom:684.093333pt;}
.ya0{bottom:685.053333pt;}
.yb{bottom:694.493333pt;}
.y80{bottom:696.573333pt;}
.y4a{bottom:697.213333pt;}
.y91{bottom:698.493333pt;}
.y2c{bottom:702.973333pt;}
.y65{bottom:710.813333pt;}
.ya5{bottom:711.773333pt;}
.y7f{bottom:724.093333pt;}
.y90{bottom:726.013333pt;}
.y2b{bottom:730.653333pt;}
.ya{bottom:731.293333pt;}
.y49{bottom:738.173333pt;}
.y64{bottom:738.493333pt;}
.ya4{bottom:739.293333pt;}
.y7e{bottom:751.813333pt;}
.y9f{bottom:753.733333pt;}
.y2a{bottom:758.213333pt;}
.y63{bottom:766.053333pt;}
.y8f{bottom:767.013333pt;}
.y9{bottom:776.133333pt;}
.y48{bottom:779.333333pt;}
.ya3{bottom:780.293333pt;}
.y29{bottom:785.893333pt;}
.y62{bottom:793.733333pt;}
.y8e{bottom:794.533333pt;}
.y47{bottom:807.013333pt;}
.ya2{bottom:807.973333pt;}
.y8{bottom:812.933333pt;}
.y28{bottom:813.413333pt;}
.y61{bottom:821.253333pt;}
.y46{bottom:834.533333pt;}
.y8d{bottom:835.493333pt;}
.y27{bottom:841.093333pt;}
.y60{bottom:848.773333pt;}
.y7{bottom:857.413333pt;}
.y45{bottom:862.213333pt;}
.y20{bottom:863.173333pt;}
.y26{bottom:868.613333pt;}
.y5f{bottom:876.453333pt;}
.y44{bottom:889.733333pt;}
.y6{bottom:894.213333pt;}
.y25{bottom:896.293333pt;}
.y7d{bottom:903.173333pt;}
.y1f{bottom:903.973333pt;}
.y43{bottom:917.413333pt;}
.y24{bottom:923.813333pt;}
.y5{bottom:928.933333pt;}
.y7c{bottom:930.693333pt;}
.y5e{bottom:944.613333pt;}
.y1e{bottom:944.933333pt;}
.y4{bottom:950.053333pt;}
.y23{bottom:951.493333pt;}
.y7b{bottom:958.373333pt;}
.y3{bottom:971.173333pt;}
.y1d{bottom:972.613333pt;}
.y22{bottom:979.013333pt;}
.y42{bottom:985.893333pt;}
.y2{bottom:992.293333pt;}
.y21{bottom:1013.280000pt;}
.y1{bottom:1013.600000pt;}
.h2{height:62.812500pt;}
.h5{height:63.843750pt;}
.h3{height:64.500000pt;}
.h6{height:65.781915pt;}
.h4{height:71.524375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:110.592000pt;}
.x1{left:113.472000pt;}
.xe{left:118.592000pt;}
.xc{left:126.752000pt;}
.x7{left:128.032000pt;}
.x2{left:132.352000pt;}
.x4{left:133.626667pt;}
.x6{left:151.706667pt;}
.x3{left:160.666667pt;}
.x9{left:177.146667pt;}
.xd{left:196.666667pt;}
.xa{left:211.546667pt;}
.x8{left:227.866667pt;}
.x5{left:356.866667pt;}
.xb{left:396.866667pt;}
}




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