
    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_64a316155e4c1bf776371646.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_efb4e35319de48982f4727d6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_4c39d36dbff33fbcda166990.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a80449f2e4ee6e3e7640df15.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_fc013eb96ce3d970f1eee0e0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_55e95bca9fdf22c5ffda743b.woff2')format("woff");}.ff8{font-family:ff8;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;}
.v1{vertical-align:30.240000px;}
.lsb{letter-spacing:-0.684000px;}
.ls2{letter-spacing:-0.540600px;}
.ls9{letter-spacing:-0.369600px;}
.lsa{letter-spacing:-0.341400px;}
.ls3{letter-spacing:-0.073200px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.378600px;}
.ls4{letter-spacing:0.433200px;}
.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:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.376000px;}
.ws1{word-spacing:-19.726560px;}
.ws0{word-spacing:-15.970440px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-4.687200px;}
._e{margin-left:-3.652560px;}
._9{margin-left:-2.160000px;}
._3{margin-left:-1.133280px;}
._2{width:1.244880px;}
._8{width:2.652000px;}
._a{width:3.875040px;}
._b{width:5.138640px;}
._12{width:6.395520px;}
._13{width:7.918560px;}
._19{width:9.856080px;}
._15{width:11.456640px;}
._16{width:12.608640px;}
._17{width:14.573520px;}
._10{width:15.837120px;}
._f{width:16.886160px;}
._5{width:18.394560px;}
._4{width:19.459440px;}
._11{width:22.239360px;}
._1b{width:23.671440px;}
._1c{width:24.755040px;}
._6{width:27.883440px;}
._7{width:29.062800px;}
._1d{width:30.429360px;}
._18{width:33.063600px;}
._c{width:34.285680px;}
._d{width:35.924400px;}
._1a{width:37.402560px;}
._25{width:38.834640px;}
._27{width:52.891200px;}
._28{width:54.243360px;}
._21{width:60.438240px;}
._1f{width:65.286000px;}
._20{width:67.813200px;}
._26{width:88.536240px;}
._1e{width:105.552720px;}
._23{width:203.608080px;}
._0{width:292.222560px;}
._24{width:320.533200px;}
._22{width:334.517040px;}
._1{width:1422.946560px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(51,51,204);}
.fc1{color:rgb(204,0,102);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:8.100000px;}
.y5f{bottom:8.280000px;}
.y7{bottom:19.980000px;}
.y5b{bottom:35.820000px;}
.y5d{bottom:36.000000px;}
.y6{bottom:43.740000px;}
.y62{bottom:63.540000px;}
.y5a{bottom:63.720000px;}
.y5{bottom:68.760000px;}
.y67{bottom:91.440000px;}
.y64{bottom:91.485000px;}
.y69{bottom:91.650000px;}
.y5c{bottom:99.360000px;}
.y29{bottom:109.080000px;}
.y75{bottom:110.520000px;}
.y66{bottom:119.160000px;}
.y40{bottom:128.520000px;}
.y28{bottom:136.800000px;}
.y74{bottom:138.240000px;}
.y59{bottom:155.730000px;}
.y27{bottom:164.550000px;}
.y3f{bottom:165.270000px;}
.y73{bottom:165.990000px;}
.y3e{bottom:193.170000px;}
.y72{bottom:193.890000px;}
.y26{bottom:201.270000px;}
.y71{bottom:221.610000px;}
.y25{bottom:229.170000px;}
.y3d{bottom:229.890000px;}
.y57{bottom:239.790000px;}
.y70{bottom:249.330000px;}
.y24{bottom:256.890000px;}
.y3c{bottom:257.610000px;}
.y56{bottom:276.510000px;}
.y6f{bottom:277.050000px;}
.y23{bottom:284.610000px;}
.y3b{bottom:294.510000px;}
.y55{bottom:304.230000px;}
.y6e{bottom:304.950000px;}
.y22{bottom:312.510000px;}
.y3a{bottom:322.230000px;}
.y21{bottom:340.230000px;}
.y54{bottom:340.950000px;}
.y6d{bottom:341.670000px;}
.y39{bottom:349.950000px;}
.y20{bottom:367.950000px;}
.y53{bottom:368.670000px;}
.y6c{bottom:378.390000px;}
.y38{bottom:386.670000px;}
.y1f{bottom:395.670000px;}
.y52{bottom:396.570000px;}
.y6b{bottom:407.775000px;}
.y37{bottom:414.615000px;}
.y1e{bottom:423.615000px;}
.y51{bottom:433.335000px;}
.y36{bottom:442.335000px;}
.y1d{bottom:451.335000px;}
.y35{bottom:470.055000px;}
.y1c{bottom:488.055000px;}
.y6a{bottom:491.835000px;}
.y50{bottom:497.775000px;}
.y34{bottom:506.775000px;}
.y1b{bottom:515.775000px;}
.y4f{bottom:525.675000px;}
.y1a{bottom:543.675000px;}
.y4e{bottom:553.395000px;}
.y33{bottom:571.395000px;}
.y68{bottom:575.895000px;}
.y19{bottom:580.395000px;}
.y4d{bottom:581.115000px;}
.y32{bottom:599.115000px;}
.y18{bottom:608.115000px;}
.y4c{bottom:618.015000px;}
.y17{bottom:636.015000px;}
.y4b{bottom:645.735000px;}
.y16{bottom:663.765000px;}
.y4a{bottom:673.485000px;}
.y65{bottom:687.885000px;}
.y31{bottom:691.485000px;}
.y15{bottom:700.485000px;}
.y49{bottom:710.205000px;}
.y14{bottom:728.205000px;}
.y48{bottom:738.105000px;}
.y13{bottom:756.105000px;}
.y47{bottom:774.825000px;}
.y12{bottom:783.825000px;}
.y30{bottom:792.825000px;}
.y46{bottom:802.545000px;}
.y11{bottom:811.545000px;}
.y2f{bottom:820.545000px;}
.y63{bottom:827.385000px;}
.y45{bottom:830.445000px;}
.y10{bottom:839.445000px;}
.y2e{bottom:848.445000px;}
.y44{bottom:858.165000px;}
.yf{bottom:876.165000px;}
.y7a{bottom:894.165000px;}
.y43{bottom:894.885000px;}
.ye{bottom:903.930000px;}
.y79{bottom:921.930000px;}
.y42{bottom:922.650000px;}
.yd{bottom:931.650000px;}
.y61{bottom:939.390000px;}
.y2d{bottom:940.650000px;}
.y78{bottom:949.650000px;}
.y41{bottom:950.550000px;}
.yc{bottom:959.550000px;}
.y2c{bottom:968.550000px;}
.y77{bottom:977.550000px;}
.yb{bottom:987.270000px;}
.y2b{bottom:996.270000px;}
.y76{bottom:1005.270000px;}
.y60{bottom:1023.450000px;}
.ya{bottom:1023.990000px;}
.y2a{bottom:1032.990000px;}
.y9{bottom:1060.710000px;}
.y5e{bottom:1079.610000px;}
.y8{bottom:1088.610000px;}
.y4{bottom:1128.390000px;}
.y3{bottom:1152.180000px;}
.y2{bottom:1177.020000px;}
.y1{bottom:1207.800000px;}
.ha{height:27.720000px;}
.hd{height:27.900000px;}
.he{height:55.440000px;}
.hc{height:55.656000px;}
.h8{height:58.819922px;}
.h4{height:67.169883px;}
.h2{height:76.355508px;}
.h7{height:82.635820px;}
.h5{height:82.676953px;}
.hf{height:83.160000px;}
.h9{height:83.238047px;}
.hb{height:83.340000px;}
.h6{height:84.898125px;}
.h3{height:86.115234px;}
.h10{height:111.096000px;}
.h12{height:111.276000px;}
.h11{height:138.780000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:118.980000px;}
.w4{width:194.430000px;}
.w5{width:399.315000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.xd{left:21.600000px;}
.x5{left:42.479987px;}
.xf{left:52.200000px;}
.x4{left:84.995987px;}
.xa{left:97.955987px;}
.x11{left:101.910000px;}
.x1{left:106.415987px;}
.x6{left:138.275987px;}
.x9{left:176.249987px;}
.xe{left:205.590000px;}
.x8{left:260.669987px;}
.xb{left:344.054987px;}
.xc{left:393.914987px;}
.x13{left:397.514987px;}
.x10{left:400.755000px;}
.x7{left:446.504987px;}
.x2{left:546.404987px;}
.x3{left:641.669987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsb{letter-spacing:-0.608000pt;}
.ls2{letter-spacing:-0.480533pt;}
.ls9{letter-spacing:-0.328533pt;}
.lsa{letter-spacing:-0.303467pt;}
.ls3{letter-spacing:-0.065067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.336533pt;}
.ls4{letter-spacing:0.385067pt;}
.ws4{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.112000pt;}
.ws1{word-spacing:-17.534720pt;}
.ws0{word-spacing:-14.195947pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-4.166400pt;}
._e{margin-left:-3.246720pt;}
._9{margin-left:-1.920000pt;}
._3{margin-left:-1.007360pt;}
._2{width:1.106560pt;}
._8{width:2.357333pt;}
._a{width:3.444480pt;}
._b{width:4.567680pt;}
._12{width:5.684907pt;}
._13{width:7.038720pt;}
._19{width:8.760960pt;}
._15{width:10.183680pt;}
._16{width:11.207680pt;}
._17{width:12.954240pt;}
._10{width:14.077440pt;}
._f{width:15.009920pt;}
._5{width:16.350720pt;}
._4{width:17.297280pt;}
._11{width:19.768320pt;}
._1b{width:21.041280pt;}
._1c{width:22.004480pt;}
._6{width:24.785280pt;}
._7{width:25.833600pt;}
._1d{width:27.048320pt;}
._18{width:29.389867pt;}
._c{width:30.476160pt;}
._d{width:31.932800pt;}
._1a{width:33.246720pt;}
._25{width:34.519680pt;}
._27{width:47.014400pt;}
._28{width:48.216320pt;}
._21{width:53.722880pt;}
._1f{width:58.032000pt;}
._20{width:60.278400pt;}
._26{width:78.698880pt;}
._1e{width:93.824640pt;}
._23{width:180.984960pt;}
._0{width:259.753387pt;}
._24{width:284.918400pt;}
._22{width:297.348480pt;}
._1{width:1264.841387pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:7.200000pt;}
.y5f{bottom:7.360000pt;}
.y7{bottom:17.760000pt;}
.y5b{bottom:31.840000pt;}
.y5d{bottom:32.000000pt;}
.y6{bottom:38.880000pt;}
.y62{bottom:56.480000pt;}
.y5a{bottom:56.640000pt;}
.y5{bottom:61.120000pt;}
.y67{bottom:81.280000pt;}
.y64{bottom:81.320000pt;}
.y69{bottom:81.466667pt;}
.y5c{bottom:88.320000pt;}
.y29{bottom:96.960000pt;}
.y75{bottom:98.240000pt;}
.y66{bottom:105.920000pt;}
.y40{bottom:114.240000pt;}
.y28{bottom:121.600000pt;}
.y74{bottom:122.880000pt;}
.y59{bottom:138.426667pt;}
.y27{bottom:146.266667pt;}
.y3f{bottom:146.906667pt;}
.y73{bottom:147.546667pt;}
.y3e{bottom:171.706667pt;}
.y72{bottom:172.346667pt;}
.y26{bottom:178.906667pt;}
.y71{bottom:196.986667pt;}
.y25{bottom:203.706667pt;}
.y3d{bottom:204.346667pt;}
.y57{bottom:213.146667pt;}
.y70{bottom:221.626667pt;}
.y24{bottom:228.346667pt;}
.y3c{bottom:228.986667pt;}
.y56{bottom:245.786667pt;}
.y6f{bottom:246.266667pt;}
.y23{bottom:252.986667pt;}
.y3b{bottom:261.786667pt;}
.y55{bottom:270.426667pt;}
.y6e{bottom:271.066667pt;}
.y22{bottom:277.786667pt;}
.y3a{bottom:286.426667pt;}
.y21{bottom:302.426667pt;}
.y54{bottom:303.066667pt;}
.y6d{bottom:303.706667pt;}
.y39{bottom:311.066667pt;}
.y20{bottom:327.066667pt;}
.y53{bottom:327.706667pt;}
.y6c{bottom:336.346667pt;}
.y38{bottom:343.706667pt;}
.y1f{bottom:351.706667pt;}
.y52{bottom:352.506667pt;}
.y6b{bottom:362.466667pt;}
.y37{bottom:368.546667pt;}
.y1e{bottom:376.546667pt;}
.y51{bottom:385.186667pt;}
.y36{bottom:393.186667pt;}
.y1d{bottom:401.186667pt;}
.y35{bottom:417.826667pt;}
.y1c{bottom:433.826667pt;}
.y6a{bottom:437.186667pt;}
.y50{bottom:442.466667pt;}
.y34{bottom:450.466667pt;}
.y1b{bottom:458.466667pt;}
.y4f{bottom:467.266667pt;}
.y1a{bottom:483.266667pt;}
.y4e{bottom:491.906667pt;}
.y33{bottom:507.906667pt;}
.y68{bottom:511.906667pt;}
.y19{bottom:515.906667pt;}
.y4d{bottom:516.546667pt;}
.y32{bottom:532.546667pt;}
.y18{bottom:540.546667pt;}
.y4c{bottom:549.346667pt;}
.y17{bottom:565.346667pt;}
.y4b{bottom:573.986667pt;}
.y16{bottom:590.013333pt;}
.y4a{bottom:598.653333pt;}
.y65{bottom:611.453333pt;}
.y31{bottom:614.653333pt;}
.y15{bottom:622.653333pt;}
.y49{bottom:631.293333pt;}
.y14{bottom:647.293333pt;}
.y48{bottom:656.093333pt;}
.y13{bottom:672.093333pt;}
.y47{bottom:688.733333pt;}
.y12{bottom:696.733333pt;}
.y30{bottom:704.733333pt;}
.y46{bottom:713.373333pt;}
.y11{bottom:721.373333pt;}
.y2f{bottom:729.373333pt;}
.y63{bottom:735.453333pt;}
.y45{bottom:738.173333pt;}
.y10{bottom:746.173333pt;}
.y2e{bottom:754.173333pt;}
.y44{bottom:762.813333pt;}
.yf{bottom:778.813333pt;}
.y7a{bottom:794.813333pt;}
.y43{bottom:795.453333pt;}
.ye{bottom:803.493333pt;}
.y79{bottom:819.493333pt;}
.y42{bottom:820.133333pt;}
.yd{bottom:828.133333pt;}
.y61{bottom:835.013333pt;}
.y2d{bottom:836.133333pt;}
.y78{bottom:844.133333pt;}
.y41{bottom:844.933333pt;}
.yc{bottom:852.933333pt;}
.y2c{bottom:860.933333pt;}
.y77{bottom:868.933333pt;}
.yb{bottom:877.573333pt;}
.y2b{bottom:885.573333pt;}
.y76{bottom:893.573333pt;}
.y60{bottom:909.733333pt;}
.ya{bottom:910.213333pt;}
.y2a{bottom:918.213333pt;}
.y9{bottom:942.853333pt;}
.y5e{bottom:959.653333pt;}
.y8{bottom:967.653333pt;}
.y4{bottom:1003.013333pt;}
.y3{bottom:1024.160000pt;}
.y2{bottom:1046.240000pt;}
.y1{bottom:1073.600000pt;}
.ha{height:24.640000pt;}
.hd{height:24.800000pt;}
.he{height:49.280000pt;}
.hc{height:49.472000pt;}
.h8{height:52.284375pt;}
.h4{height:59.706562pt;}
.h2{height:67.871563pt;}
.h7{height:73.454062pt;}
.h5{height:73.490625pt;}
.hf{height:73.920000pt;}
.h9{height:73.989375pt;}
.hb{height:74.080000pt;}
.h6{height:75.465000pt;}
.h3{height:76.546875pt;}
.h10{height:98.752000pt;}
.h12{height:98.912000pt;}
.h11{height:123.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:105.760000pt;}
.w4{width:172.826667pt;}
.w5{width:354.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.xd{left:19.200000pt;}
.x5{left:37.759988pt;}
.xf{left:46.400000pt;}
.x4{left:75.551988pt;}
.xa{left:87.071988pt;}
.x11{left:90.586667pt;}
.x1{left:94.591988pt;}
.x6{left:122.911988pt;}
.x9{left:156.666655pt;}
.xe{left:182.746667pt;}
.x8{left:231.706655pt;}
.xb{left:305.826655pt;}
.xc{left:350.146655pt;}
.x13{left:353.346655pt;}
.x10{left:356.226667pt;}
.x7{left:396.893322pt;}
.x2{left:485.693322pt;}
.x3{left:570.373322pt;}
}




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