
    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_50235bb4f27b987025fced2b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6c4d8decd87881d187f34746.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_9891524e0ea6af5e19db55ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_a5a25021e288ddc9a7a2a386.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_f2d7dd2646fb9c307ea21a21.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a717c7bb05fc102a4447763b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_d70e2b18817bc3138c432b49.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5d57854cc5e883f01bcf34e1.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.lsa{letter-spacing:0.144000px;}
.ls5{letter-spacing:1.440000px;}
.ls6{letter-spacing:6.480000px;}
.ls0{letter-spacing:13.584960px;}
.ls3{letter-spacing:18.144000px;}
.ls4{letter-spacing:20.880000px;}
.ls2{letter-spacing:26.064000px;}
.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;}
}
.ws6{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.856000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-1.324800px;}
._0{width:1.180560px;}
._1{width:2.188080px;}
._6{width:3.248400px;}
._f{width:4.568640px;}
._4{width:5.760000px;}
._5{width:6.912000px;}
._7{width:8.496000px;}
._8{width:9.576000px;}
._9{width:10.584000px;}
._a{width:11.760000px;}
._10{width:13.051440px;}
._b{width:14.832000px;}
._c{width:15.940800px;}
._3{width:19.368000px;}
._11{width:20.808000px;}
._12{width:22.608000px;}
._d{width:24.048000px;}
._e{width:25.129200px;}
._13{width:27.070800px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y90{bottom:3.960000px;}
.y8f{bottom:24.660000px;}
.y8e{bottom:45.360000px;}
.y7{bottom:56.520000px;}
.y6{bottom:74.016000px;}
.y5{bottom:91.656000px;}
.y4{bottom:109.296000px;}
.y3{bottom:126.756000px;}
.y2{bottom:144.396000px;}
.y1{bottom:162.210000px;}
.y6b{bottom:188.130000px;}
.y37{bottom:198.390000px;}
.y8b{bottom:203.430000px;}
.y6a{bottom:208.830000px;}
.y4d{bottom:218.010000px;}
.y36{bottom:219.090000px;}
.y8a{bottom:224.130000px;}
.y69{bottom:229.530000px;}
.y4c{bottom:238.710000px;}
.y35{bottom:239.790000px;}
.y89{bottom:244.830000px;}
.y68{bottom:250.230000px;}
.y71{bottom:256.170000px;}
.y4b{bottom:259.410000px;}
.y34{bottom:260.490000px;}
.y88{bottom:265.530000px;}
.y67{bottom:270.930000px;}
.y70{bottom:279.210000px;}
.y33{bottom:281.190000px;}
.y87{bottom:286.230000px;}
.y4a{bottom:288.210000px;}
.y66{bottom:291.630000px;}
.y32{bottom:301.890000px;}
.y86{bottom:306.930000px;}
.y49{bottom:311.430000px;}
.y65{bottom:312.330000px;}
.y31{bottom:322.590000px;}
.y85{bottom:327.630000px;}
.y64{bottom:333.030000px;}
.y30{bottom:343.335000px;}
.y84{bottom:348.375000px;}
.y63{bottom:353.775000px;}
.y2f{bottom:364.035000px;}
.y83{bottom:369.075000px;}
.y62{bottom:374.475000px;}
.y2e{bottom:384.735000px;}
.y82{bottom:389.775000px;}
.y61{bottom:395.175000px;}
.y2d{bottom:405.435000px;}
.y81{bottom:410.475000px;}
.y60{bottom:415.875000px;}
.y2c{bottom:426.135000px;}
.y6f{bottom:430.635000px;}
.y80{bottom:431.175000px;}
.y5f{bottom:436.575000px;}
.y2b{bottom:446.835000px;}
.y7f{bottom:451.875000px;}
.y6e{bottom:453.675000px;}
.y5e{bottom:457.275000px;}
.y2a{bottom:467.355000px;}
.y7e{bottom:472.575000px;}
.y5d{bottom:477.975000px;}
.y29{bottom:486.615000px;}
.y7d{bottom:493.275000px;}
.y5c{bottom:498.675000px;}
.y28{bottom:507.315000px;}
.y7c{bottom:513.975000px;}
.y5b{bottom:519.375000px;}
.y27{bottom:528.015000px;}
.y7b{bottom:534.675000px;}
.y5a{bottom:540.075000px;}
.y26{bottom:548.715000px;}
.y7a{bottom:555.375000px;}
.y59{bottom:560.775000px;}
.y25{bottom:569.415000px;}
.y79{bottom:576.075000px;}
.y58{bottom:581.475000px;}
.y24{bottom:590.115000px;}
.y78{bottom:596.775000px;}
.y57{bottom:602.175000px;}
.y23{bottom:610.845000px;}
.y77{bottom:617.505000px;}
.y56{bottom:622.905000px;}
.y22{bottom:631.545000px;}
.y76{bottom:638.205000px;}
.y55{bottom:643.605000px;}
.y21{bottom:652.245000px;}
.y75{bottom:658.905000px;}
.y54{bottom:664.305000px;}
.y20{bottom:672.945000px;}
.y74{bottom:679.605000px;}
.y53{bottom:685.005000px;}
.y1f{bottom:693.645000px;}
.y73{bottom:700.305000px;}
.y52{bottom:705.705000px;}
.y1e{bottom:714.345000px;}
.y72{bottom:717.045000px;}
.y51{bottom:726.405000px;}
.y1d{bottom:735.045000px;}
.y50{bottom:747.105000px;}
.y1c{bottom:755.745000px;}
.y4f{bottom:767.805000px;}
.y1b{bottom:776.445000px;}
.y99{bottom:783.285000px;}
.y4e{bottom:788.505000px;}
.y1a{bottom:797.145000px;}
.y98{bottom:803.985000px;}
.y48{bottom:809.205000px;}
.y6d{bottom:816.045000px;}
.y19{bottom:817.845000px;}
.y97{bottom:824.685000px;}
.y47{bottom:829.905000px;}
.y18{bottom:838.545000px;}
.y6c{bottom:839.085000px;}
.y96{bottom:845.385000px;}
.y46{bottom:850.605000px;}
.y17{bottom:859.245000px;}
.y95{bottom:865.545000px;}
.y45{bottom:871.350000px;}
.y16{bottom:879.630000px;}
.y94{bottom:890.790000px;}
.y44{bottom:892.050000px;}
.y15{bottom:898.530000px;}
.y43{bottom:912.750000px;}
.y93{bottom:915.990000px;}
.y14{bottom:917.790000px;}
.y42{bottom:933.450000px;}
.y13{bottom:938.310000px;}
.y92{bottom:941.190000px;}
.y41{bottom:954.150000px;}
.y12{bottom:957.210000px;}
.y40{bottom:974.850000px;}
.y11{bottom:976.470000px;}
.y91{bottom:987.090000px;}
.y3f{bottom:995.550000px;}
.y10{bottom:996.990000px;}
.yf{bottom:1015.890000px;}
.y3e{bottom:1016.250000px;}
.y8d{bottom:1032.990000px;}
.ye{bottom:1035.150000px;}
.y3d{bottom:1036.950000px;}
.yd{bottom:1055.490000px;}
.y3c{bottom:1057.650000px;}
.yc{bottom:1074.570000px;}
.y3b{bottom:1078.350000px;}
.yb{bottom:1093.830000px;}
.y3a{bottom:1099.050000px;}
.y8c{bottom:1101.750000px;}
.ya{bottom:1114.170000px;}
.y39{bottom:1119.750000px;}
.y9{bottom:1134.870000px;}
.y38{bottom:1140.480000px;}
.y8{bottom:1161.180000px;}
.hf{height:20.700000px;}
.h10{height:20.736000px;}
.he{height:41.400000px;}
.hc{height:41.726953px;}
.hb{height:42.164648px;}
.h2{height:46.251562px;}
.h6{height:46.736719px;}
.h9{height:50.273438px;}
.h8{height:50.488594px;}
.h3{height:50.597578px;}
.h4{height:50.800781px;}
.h7{height:52.417969px;}
.ha{height:54.878906px;}
.hd{height:62.100000px;}
.h5{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:23.256000px;}
.w4{width:699.765000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:1.080000px;}
.x18{left:83.880000px;}
.x2{left:84.959987px;}
.x1a{left:109.476000px;}
.x4{left:129.095987px;}
.x6{left:132.335987px;}
.x10{left:138.995987px;}
.x9{left:210.629987px;}
.xb{left:218.009987px;}
.xf{left:262.469987px;}
.x12{left:281.234987px;}
.x7{left:284.834987px;}
.x16{left:323.174987px;}
.x14{left:342.974987px;}
.xa{left:365.294987px;}
.xc{left:367.814987px;}
.xd{left:395.894987px;}
.x8{left:398.414987px;}
.x5{left:402.374987px;}
.x3{left:446.474987px;}
.xe{left:609.584987px;}
.x17{left:657.149987px;}
.x15{left:747.509987px;}
.x1{left:772.709987px;}
.x11{left:781.529987px;}
.x13{left:793.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.lsa{letter-spacing:0.128000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls6{letter-spacing:5.760000pt;}
.ls0{letter-spacing:12.075520pt;}
.ls3{letter-spacing:16.128000pt;}
.ls4{letter-spacing:18.560000pt;}
.ls2{letter-spacing:23.168000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-1.177600pt;}
._0{width:1.049387pt;}
._1{width:1.944960pt;}
._6{width:2.887467pt;}
._f{width:4.061013pt;}
._4{width:5.120000pt;}
._5{width:6.144000pt;}
._7{width:7.552000pt;}
._8{width:8.512000pt;}
._9{width:9.408000pt;}
._a{width:10.453333pt;}
._10{width:11.601280pt;}
._b{width:13.184000pt;}
._c{width:14.169600pt;}
._3{width:17.216000pt;}
._11{width:18.496000pt;}
._12{width:20.096000pt;}
._d{width:21.376000pt;}
._e{width:22.337067pt;}
._13{width:24.062933pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:3.520000pt;}
.y8f{bottom:21.920000pt;}
.y8e{bottom:40.320000pt;}
.y7{bottom:50.240000pt;}
.y6{bottom:65.792000pt;}
.y5{bottom:81.472000pt;}
.y4{bottom:97.152000pt;}
.y3{bottom:112.672000pt;}
.y2{bottom:128.352000pt;}
.y1{bottom:144.186667pt;}
.y6b{bottom:167.226667pt;}
.y37{bottom:176.346667pt;}
.y8b{bottom:180.826667pt;}
.y6a{bottom:185.626667pt;}
.y4d{bottom:193.786667pt;}
.y36{bottom:194.746667pt;}
.y8a{bottom:199.226667pt;}
.y69{bottom:204.026667pt;}
.y4c{bottom:212.186667pt;}
.y35{bottom:213.146667pt;}
.y89{bottom:217.626667pt;}
.y68{bottom:222.426667pt;}
.y71{bottom:227.706667pt;}
.y4b{bottom:230.586667pt;}
.y34{bottom:231.546667pt;}
.y88{bottom:236.026667pt;}
.y67{bottom:240.826667pt;}
.y70{bottom:248.186667pt;}
.y33{bottom:249.946667pt;}
.y87{bottom:254.426667pt;}
.y4a{bottom:256.186667pt;}
.y66{bottom:259.226667pt;}
.y32{bottom:268.346667pt;}
.y86{bottom:272.826667pt;}
.y49{bottom:276.826667pt;}
.y65{bottom:277.626667pt;}
.y31{bottom:286.746667pt;}
.y85{bottom:291.226667pt;}
.y64{bottom:296.026667pt;}
.y30{bottom:305.186667pt;}
.y84{bottom:309.666667pt;}
.y63{bottom:314.466667pt;}
.y2f{bottom:323.586667pt;}
.y83{bottom:328.066667pt;}
.y62{bottom:332.866667pt;}
.y2e{bottom:341.986667pt;}
.y82{bottom:346.466667pt;}
.y61{bottom:351.266667pt;}
.y2d{bottom:360.386667pt;}
.y81{bottom:364.866667pt;}
.y60{bottom:369.666667pt;}
.y2c{bottom:378.786667pt;}
.y6f{bottom:382.786667pt;}
.y80{bottom:383.266667pt;}
.y5f{bottom:388.066667pt;}
.y2b{bottom:397.186667pt;}
.y7f{bottom:401.666667pt;}
.y6e{bottom:403.266667pt;}
.y5e{bottom:406.466667pt;}
.y2a{bottom:415.426667pt;}
.y7e{bottom:420.066667pt;}
.y5d{bottom:424.866667pt;}
.y29{bottom:432.546667pt;}
.y7d{bottom:438.466667pt;}
.y5c{bottom:443.266667pt;}
.y28{bottom:450.946667pt;}
.y7c{bottom:456.866667pt;}
.y5b{bottom:461.666667pt;}
.y27{bottom:469.346667pt;}
.y7b{bottom:475.266667pt;}
.y5a{bottom:480.066667pt;}
.y26{bottom:487.746667pt;}
.y7a{bottom:493.666667pt;}
.y59{bottom:498.466667pt;}
.y25{bottom:506.146667pt;}
.y79{bottom:512.066667pt;}
.y58{bottom:516.866667pt;}
.y24{bottom:524.546667pt;}
.y78{bottom:530.466667pt;}
.y57{bottom:535.266667pt;}
.y23{bottom:542.973333pt;}
.y77{bottom:548.893333pt;}
.y56{bottom:553.693333pt;}
.y22{bottom:561.373333pt;}
.y76{bottom:567.293333pt;}
.y55{bottom:572.093333pt;}
.y21{bottom:579.773333pt;}
.y75{bottom:585.693333pt;}
.y54{bottom:590.493333pt;}
.y20{bottom:598.173333pt;}
.y74{bottom:604.093333pt;}
.y53{bottom:608.893333pt;}
.y1f{bottom:616.573333pt;}
.y73{bottom:622.493333pt;}
.y52{bottom:627.293333pt;}
.y1e{bottom:634.973333pt;}
.y72{bottom:637.373333pt;}
.y51{bottom:645.693333pt;}
.y1d{bottom:653.373333pt;}
.y50{bottom:664.093333pt;}
.y1c{bottom:671.773333pt;}
.y4f{bottom:682.493333pt;}
.y1b{bottom:690.173333pt;}
.y99{bottom:696.253333pt;}
.y4e{bottom:700.893333pt;}
.y1a{bottom:708.573333pt;}
.y98{bottom:714.653333pt;}
.y48{bottom:719.293333pt;}
.y6d{bottom:725.373333pt;}
.y19{bottom:726.973333pt;}
.y97{bottom:733.053333pt;}
.y47{bottom:737.693333pt;}
.y18{bottom:745.373333pt;}
.y6c{bottom:745.853333pt;}
.y96{bottom:751.453333pt;}
.y46{bottom:756.093333pt;}
.y17{bottom:763.773333pt;}
.y95{bottom:769.373333pt;}
.y45{bottom:774.533333pt;}
.y16{bottom:781.893333pt;}
.y94{bottom:791.813333pt;}
.y44{bottom:792.933333pt;}
.y15{bottom:798.693333pt;}
.y43{bottom:811.333333pt;}
.y93{bottom:814.213333pt;}
.y14{bottom:815.813333pt;}
.y42{bottom:829.733333pt;}
.y13{bottom:834.053333pt;}
.y92{bottom:836.613333pt;}
.y41{bottom:848.133333pt;}
.y12{bottom:850.853333pt;}
.y40{bottom:866.533333pt;}
.y11{bottom:867.973333pt;}
.y91{bottom:877.413333pt;}
.y3f{bottom:884.933333pt;}
.y10{bottom:886.213333pt;}
.yf{bottom:903.013333pt;}
.y3e{bottom:903.333333pt;}
.y8d{bottom:918.213333pt;}
.ye{bottom:920.133333pt;}
.y3d{bottom:921.733333pt;}
.yd{bottom:938.213333pt;}
.y3c{bottom:940.133333pt;}
.yc{bottom:955.173333pt;}
.y3b{bottom:958.533333pt;}
.yb{bottom:972.293333pt;}
.y3a{bottom:976.933333pt;}
.y8c{bottom:979.333333pt;}
.ya{bottom:990.373333pt;}
.y39{bottom:995.333333pt;}
.y9{bottom:1008.773333pt;}
.y38{bottom:1013.760000pt;}
.y8{bottom:1032.160000pt;}
.hf{height:18.400000pt;}
.h10{height:18.432000pt;}
.he{height:36.800000pt;}
.hc{height:37.090625pt;}
.hb{height:37.479688pt;}
.h2{height:41.112500pt;}
.h6{height:41.543750pt;}
.h9{height:44.687500pt;}
.h8{height:44.878750pt;}
.h3{height:44.975625pt;}
.h4{height:45.156250pt;}
.h7{height:46.593750pt;}
.ha{height:48.781250pt;}
.hd{height:55.200000pt;}
.h5{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:20.672000pt;}
.w4{width:622.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:0.960000pt;}
.x18{left:74.560000pt;}
.x2{left:75.519988pt;}
.x1a{left:97.312000pt;}
.x4{left:114.751988pt;}
.x6{left:117.631988pt;}
.x10{left:123.551988pt;}
.x9{left:187.226655pt;}
.xb{left:193.786655pt;}
.xf{left:233.306655pt;}
.x12{left:249.986655pt;}
.x7{left:253.186655pt;}
.x16{left:287.266655pt;}
.x14{left:304.866655pt;}
.xa{left:324.706655pt;}
.xc{left:326.946655pt;}
.xd{left:351.906655pt;}
.x8{left:354.146655pt;}
.x5{left:357.666655pt;}
.x3{left:396.866655pt;}
.xe{left:541.853322pt;}
.x17{left:584.133322pt;}
.x15{left:664.453322pt;}
.x1{left:686.853322pt;}
.x11{left:694.693322pt;}
.x13{left:704.933322pt;}
}




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