
    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_abc76512d8d7a0a5ca09a65c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b5208411813877f68050d875.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c100577f05d2d8a6524c8541.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_bdf2945e6b427ea0bd457109.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0b3ca5b762a2c16e3ad20230.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_629e564ae59d72cbf0bb2a27.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8579895699b411b45e1a0682.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_720195cd35687c42c652ffd9.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.576000px;}
.ls1{letter-spacing:-0.463800px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.444000px;}
.ls9{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.804000px;}
.ls4{letter-spacing:7.344000px;}
.ls6{letter-spacing:43.344000px;}
.ls8{letter-spacing:53.424000px;}
.ls2{letter-spacing:135.504000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.424000px;}
.ws0{word-spacing:-14.506440px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-5.256000px;}
._5{margin-left:-3.651840px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.249280px;}
._4{width:3.902400px;}
._7{width:4.942560px;}
._6{width:6.480000px;}
._f{width:7.498080px;}
._e{width:8.582400px;}
._a{width:9.648000px;}
._9{width:10.800000px;}
._18{width:11.928960px;}
._11{width:12.994560px;}
._13{width:14.160960px;}
._10{width:15.298560px;}
._12{width:16.701120px;}
._19{width:19.125120px;}
._d{width:20.295840px;}
._c{width:21.528000px;}
._b{width:22.829280px;}
._1a{width:24.042720px;}
._14{width:25.462560px;}
._15{width:27.894240px;}
._16{width:29.551680px;}
._17{width:30.795360px;}
._2a{width:33.085440px;}
._1f{width:34.378560px;}
._2f{width:38.180160px;}
._30{width:39.291840px;}
._31{width:40.406400px;}
._29{width:48.398400px;}
._20{width:55.457280px;}
._28{width:58.409280px;}
._1e{width:65.376000px;}
._21{width:72.486720px;}
._22{width:74.396160px;}
._2d{width:80.369280px;}
._2c{width:82.111680px;}
._24{width:92.733120px;}
._23{width:95.688000px;}
._1b{width:120.274560px;}
._27{width:148.821120px;}
._2b{width:171.521280px;}
._2e{width:175.210560px;}
._1c{width:180.178560px;}
._26{width:181.347840px;}
._1d{width:183.781440px;}
._25{width:261.017280px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y44{bottom:7.200000px;}
.y4e{bottom:7.560000px;}
.y49{bottom:7.590000px;}
.y5d{bottom:7.965000px;}
.y42{bottom:10.080000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y4d{bottom:31.320000px;}
.y57{bottom:31.350000px;}
.y5f{bottom:31.365000px;}
.y50{bottom:31.680000px;}
.y48{bottom:31.710000px;}
.y5c{bottom:31.725000px;}
.y43{bottom:51.885000px;}
.y4c{bottom:55.080000px;}
.y56{bottom:55.110000px;}
.y54{bottom:55.125000px;}
.y47{bottom:55.470000px;}
.y5b{bottom:55.485000px;}
.y40{bottom:55.845000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y4b{bottom:78.840000px;}
.y53{bottom:78.885000px;}
.y46{bottom:79.230000px;}
.y5a{bottom:79.245000px;}
.y3f{bottom:79.605000px;}
.y52{bottom:102.645000px;}
.y59{bottom:103.005000px;}
.y34{bottom:107.676000px;}
.y33{bottom:131.796000px;}
.y32{bottom:155.550000px;}
.y31{bottom:179.310000px;}
.y58{bottom:189.030000px;}
.y30{bottom:203.115000px;}
.y2f{bottom:226.875000px;}
.y2e{bottom:250.635000px;}
.y2d{bottom:274.395000px;}
.y2c{bottom:298.155000px;}
.y55{bottom:308.955000px;}
.y2b{bottom:321.945000px;}
.y2a{bottom:346.065000px;}
.y29{bottom:369.825000px;}
.y28{bottom:393.585000px;}
.y51{bottom:405.105000px;}
.y27{bottom:417.345000px;}
.y26{bottom:441.105000px;}
.y78{bottom:463.470000px;}
.y25{bottom:464.910000px;}
.y77{bottom:487.230000px;}
.y24{bottom:488.670000px;}
.y76{bottom:510.990000px;}
.y23{bottom:512.430000px;}
.y4f{bottom:524.670000px;}
.y75{bottom:534.750000px;}
.y22{bottom:536.550000px;}
.y74{bottom:558.870000px;}
.y21{bottom:560.310000px;}
.y73{bottom:582.660000px;}
.y20{bottom:584.100000px;}
.y4a{bottom:597.060000px;}
.y72{bottom:606.420000px;}
.y1f{bottom:607.860000px;}
.y71{bottom:630.180000px;}
.y1e{bottom:631.620000px;}
.y70{bottom:653.940000px;}
.y1d{bottom:655.380000px;}
.y6f{bottom:677.700000px;}
.y1c{bottom:679.140000px;}
.y45{bottom:692.820000px;}
.y6e{bottom:701.490000px;}
.y1b{bottom:702.570000px;}
.y3d{bottom:702.930000px;}
.y6d{bottom:725.250000px;}
.y1a{bottom:727.050000px;}
.y6c{bottom:749.010000px;}
.y19{bottom:750.810000px;}
.y6b{bottom:773.130000px;}
.y18{bottom:774.570000px;}
.y3e{bottom:788.970000px;}
.y6a{bottom:796.530000px;}
.y17{bottom:798.330000px;}
.y69{bottom:820.290000px;}
.y16{bottom:822.090000px;}
.y68{bottom:844.455000px;}
.y15{bottom:845.895000px;}
.y41{bottom:858.495000px;}
.y67{bottom:868.215000px;}
.y14{bottom:869.655000px;}
.y66{bottom:891.975000px;}
.y13{bottom:893.415000px;}
.y65{bottom:915.735000px;}
.y12{bottom:916.815000px;}
.y3c{bottom:917.175000px;}
.y64{bottom:939.495000px;}
.y11{bottom:940.935000px;}
.y3b{bottom:941.295000px;}
.y63{bottom:963.645000px;}
.y10{bottom:965.085000px;}
.y62{bottom:987.045000px;}
.yf{bottom:988.845000px;}
.y61{bottom:1011.165000px;}
.ye{bottom:1012.605000px;}
.y60{bottom:1034.925000px;}
.yd{bottom:1036.005000px;}
.y3a{bottom:1036.365000px;}
.y5e{bottom:1051.845000px;}
.yc{bottom:1059.765000px;}
.y39{bottom:1060.125000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y36{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.hd{height:26.640000px;}
.h5{height:27.000000px;}
.h7{height:50.229844px;}
.hb{height:50.273438px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.he{height:68.436000px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h11{height:71.676000px;}
.h2{height:72.562500px;}
.ha{height:74.004654px;}
.h10{height:95.040000px;}
.hf{height:95.436000px;}
.hc{height:96.156000px;}
.h8{height:97.233750px;}
.h12{height:118.836000px;}
.h13{height:119.196000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w7{width:141.156000px;}
.w8{width:159.915000px;}
.w5{width:168.195000px;}
.w9{width:205.275000px;}
.w3{width:298.905000px;}
.w6{width:507.780000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:7.560000px;}
.x8{left:39.270000px;}
.x5{left:95.796000px;}
.x14{left:108.396000px;}
.xe{left:111.995987px;}
.xf{left:118.115987px;}
.xb{left:126.035987px;}
.x19{left:127.835987px;}
.x13{left:138.275987px;}
.x12{left:149.111987px;}
.xa{left:156.314987px;}
.x3{left:190.154987px;}
.xc{left:238.424987px;}
.x16{left:277.305000px;}
.x6{left:290.634000px;}
.x10{left:294.944987px;}
.x11{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.xd{left:375.989987px;}
.x7{left:394.710000px;}
.x17{left:419.190000px;}
.x9{left:498.780000px;}
.x18{left:579.810000px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.512000pt;}
.ls1{letter-spacing:-0.412267pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.394667pt;}
.ls9{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.714667pt;}
.ls4{letter-spacing:6.528000pt;}
.ls6{letter-spacing:38.528000pt;}
.ls8{letter-spacing:47.488000pt;}
.ls2{letter-spacing:120.448000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.488000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-4.672000pt;}
._5{margin-left:-3.246080pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:1.999360pt;}
._4{width:3.468800pt;}
._7{width:4.393387pt;}
._6{width:5.760000pt;}
._f{width:6.664960pt;}
._e{width:7.628800pt;}
._a{width:8.576000pt;}
._9{width:9.600000pt;}
._18{width:10.603520pt;}
._11{width:11.550720pt;}
._13{width:12.587520pt;}
._10{width:13.598720pt;}
._12{width:14.845440pt;}
._19{width:17.000107pt;}
._d{width:18.040747pt;}
._c{width:19.136000pt;}
._b{width:20.292693pt;}
._1a{width:21.371307pt;}
._14{width:22.633387pt;}
._15{width:24.794880pt;}
._16{width:26.268160pt;}
._17{width:27.373653pt;}
._2a{width:29.409280pt;}
._1f{width:30.558720pt;}
._2f{width:33.937920pt;}
._30{width:34.926080pt;}
._31{width:35.916800pt;}
._29{width:43.020800pt;}
._20{width:49.295360pt;}
._28{width:51.919360pt;}
._1e{width:58.112000pt;}
._21{width:64.432640pt;}
._22{width:66.129920pt;}
._2d{width:71.439360pt;}
._2c{width:72.988160pt;}
._24{width:82.429440pt;}
._23{width:85.056000pt;}
._1b{width:106.910720pt;}
._27{width:132.285440pt;}
._2b{width:152.463360pt;}
._2e{width:155.742720pt;}
._1c{width:160.158720pt;}
._26{width:161.198080pt;}
._1d{width:163.361280pt;}
._25{width:232.015360pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:6.400000pt;}
.y4e{bottom:6.720000pt;}
.y49{bottom:6.746667pt;}
.y5d{bottom:7.080000pt;}
.y42{bottom:8.960000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y4d{bottom:27.840000pt;}
.y57{bottom:27.866667pt;}
.y5f{bottom:27.880000pt;}
.y50{bottom:28.160000pt;}
.y48{bottom:28.186667pt;}
.y5c{bottom:28.200000pt;}
.y43{bottom:46.120000pt;}
.y4c{bottom:48.960000pt;}
.y56{bottom:48.986667pt;}
.y54{bottom:49.000000pt;}
.y47{bottom:49.306667pt;}
.y5b{bottom:49.320000pt;}
.y40{bottom:49.640000pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y4b{bottom:70.080000pt;}
.y53{bottom:70.120000pt;}
.y46{bottom:70.426667pt;}
.y5a{bottom:70.440000pt;}
.y3f{bottom:70.760000pt;}
.y52{bottom:91.240000pt;}
.y59{bottom:91.560000pt;}
.y34{bottom:95.712000pt;}
.y33{bottom:117.152000pt;}
.y32{bottom:138.266667pt;}
.y31{bottom:159.386667pt;}
.y58{bottom:168.026667pt;}
.y30{bottom:180.546667pt;}
.y2f{bottom:201.666667pt;}
.y2e{bottom:222.786667pt;}
.y2d{bottom:243.906667pt;}
.y2c{bottom:265.026667pt;}
.y55{bottom:274.626667pt;}
.y2b{bottom:286.173333pt;}
.y2a{bottom:307.613333pt;}
.y29{bottom:328.733333pt;}
.y28{bottom:349.853333pt;}
.y51{bottom:360.093333pt;}
.y27{bottom:370.973333pt;}
.y26{bottom:392.093333pt;}
.y78{bottom:411.973333pt;}
.y25{bottom:413.253333pt;}
.y77{bottom:433.093333pt;}
.y24{bottom:434.373333pt;}
.y76{bottom:454.213333pt;}
.y23{bottom:455.493333pt;}
.y4f{bottom:466.373333pt;}
.y75{bottom:475.333333pt;}
.y22{bottom:476.933333pt;}
.y74{bottom:496.773333pt;}
.y21{bottom:498.053333pt;}
.y73{bottom:517.920000pt;}
.y20{bottom:519.200000pt;}
.y4a{bottom:530.720000pt;}
.y72{bottom:539.040000pt;}
.y1f{bottom:540.320000pt;}
.y71{bottom:560.160000pt;}
.y1e{bottom:561.440000pt;}
.y70{bottom:581.280000pt;}
.y1d{bottom:582.560000pt;}
.y6f{bottom:602.400000pt;}
.y1c{bottom:603.680000pt;}
.y45{bottom:615.840000pt;}
.y6e{bottom:623.546667pt;}
.y1b{bottom:624.506667pt;}
.y3d{bottom:624.826667pt;}
.y6d{bottom:644.666667pt;}
.y1a{bottom:646.266667pt;}
.y6c{bottom:665.786667pt;}
.y19{bottom:667.386667pt;}
.y6b{bottom:687.226667pt;}
.y18{bottom:688.506667pt;}
.y3e{bottom:701.306667pt;}
.y6a{bottom:708.026667pt;}
.y17{bottom:709.626667pt;}
.y69{bottom:729.146667pt;}
.y16{bottom:730.746667pt;}
.y68{bottom:750.626667pt;}
.y15{bottom:751.906667pt;}
.y41{bottom:763.106667pt;}
.y67{bottom:771.746667pt;}
.y14{bottom:773.026667pt;}
.y66{bottom:792.866667pt;}
.y13{bottom:794.146667pt;}
.y65{bottom:813.986667pt;}
.y12{bottom:814.946667pt;}
.y3c{bottom:815.266667pt;}
.y64{bottom:835.106667pt;}
.y11{bottom:836.386667pt;}
.y3b{bottom:836.706667pt;}
.y63{bottom:856.573333pt;}
.y10{bottom:857.853333pt;}
.y62{bottom:877.373333pt;}
.yf{bottom:878.973333pt;}
.y61{bottom:898.813333pt;}
.ye{bottom:900.093333pt;}
.y60{bottom:919.933333pt;}
.yd{bottom:920.893333pt;}
.y3a{bottom:921.213333pt;}
.y5e{bottom:934.973333pt;}
.yc{bottom:942.013333pt;}
.y39{bottom:942.333333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y36{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.hd{height:23.680000pt;}
.h5{height:24.000000pt;}
.h7{height:44.648750pt;}
.hb{height:44.687500pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.he{height:60.832000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h11{height:63.712000pt;}
.h2{height:64.500000pt;}
.ha{height:65.781915pt;}
.h10{height:84.480000pt;}
.hf{height:84.832000pt;}
.hc{height:85.472000pt;}
.h8{height:86.430000pt;}
.h12{height:105.632000pt;}
.h13{height:105.952000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w7{width:125.472000pt;}
.w8{width:142.146667pt;}
.w5{width:149.506667pt;}
.w9{width:182.466667pt;}
.w3{width:265.693333pt;}
.w6{width:451.360000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:6.720000pt;}
.x8{left:34.906667pt;}
.x5{left:85.152000pt;}
.x14{left:96.352000pt;}
.xe{left:99.551988pt;}
.xf{left:104.991988pt;}
.xb{left:112.031988pt;}
.x19{left:113.631988pt;}
.x13{left:122.911988pt;}
.x12{left:132.543988pt;}
.xa{left:138.946655pt;}
.x3{left:169.026655pt;}
.xc{left:211.933322pt;}
.x16{left:246.493333pt;}
.x6{left:258.341333pt;}
.x10{left:262.173322pt;}
.x11{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.xd{left:334.213322pt;}
.x7{left:350.853333pt;}
.x17{left:372.613333pt;}
.x9{left:443.360000pt;}
.x18{left:515.386667pt;}
.x1{left:709.053322pt;}
}




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