
    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_10230acb7e4f45dc548f46a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_ccbd417115b131512e61216a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_ab1c8975121dee9ea8db6c12.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_6e02393efecc42f50e93ba29.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_cbfb131c9f865640dda8b62d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_373f22a20e7acb4d324e1a1d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_22ca63197748668761527738.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.963379;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_0361fc717d1bfbbd04d1282f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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);}
.v1{vertical-align:-100.680000px;}
.v3{vertical-align:-64.800000px;}
.v4{vertical-align:-50.400000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:18.720000px;}
.v2{vertical-align:64.800000px;}
.v5{vertical-align:72.000000px;}
.v9{vertical-align:115.200000px;}
.va{vertical-align:118.920000px;}
.v8{vertical-align:147.300000px;}
.v6{vertical-align:167.460000px;}
.ls11{letter-spacing:-19.980000px;}
.ls10{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.270600px;}
.lsf{letter-spacing:-0.097800px;}
.lse{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018720px;}
.lsa{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.054720px;}
.ls9{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.540000px;}
.ls12{letter-spacing:6.840000px;}
.ls4{letter-spacing:8.280000px;}
.ls6{letter-spacing:27.000000px;}
.ls8{letter-spacing:167.453280px;}
.lsb{letter-spacing:2380.098720px;}
.ls3{letter-spacing:11811.485280px;}
.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:-167.760000px;}
.ws9{word-spacing:-53.352000px;}
.ws4{word-spacing:-50.400000px;}
.ws6{word-spacing:-50.220000px;}
.ws8{word-spacing:-50.040000px;}
.ws5{word-spacing:-49.680000px;}
.ws3{word-spacing:-38.249280px;}
.ws0{word-spacing:-32.832000px;}
.ws7{word-spacing:-30.060000px;}
.ws1{word-spacing:-25.608960px;}
.wsa{word-spacing:0.000000px;}
._d{margin-left:-19.274400px;}
._6{margin-left:-15.385200px;}
._10{margin-left:-14.220000px;}
._0{margin-left:-11.819520px;}
._1{margin-left:-9.357120px;}
._3{margin-left:-6.264000px;}
._11{margin-left:-3.489360px;}
._2{margin-left:-2.462400px;}
._4{margin-left:-1.202400px;}
._5{width:1.845360px;}
._14{width:2.909280px;}
._19{width:4.140000px;}
._1a{width:5.220000px;}
._15{width:6.722640px;}
._e{width:8.066400px;}
._f{width:9.516240px;}
._1b{width:10.621920px;}
._1f{width:11.781840px;}
._1e{width:13.140000px;}
._20{width:14.875200px;}
._1c{width:16.020000px;}
._b{width:17.124000px;}
._c{width:18.170400px;}
._13{width:19.980000px;}
._16{width:22.320000px;}
._9{width:23.988000px;}
._8{width:25.044000px;}
._a{width:26.460000px;}
._17{width:43.920000px;}
._18{width:45.201840px;}
._1d{width:471.474720px;}
._22{width:2702.323920px;}
._21{width:3013.761120px;}
._7{width:9052.571280px;}
._12{width:11680.558560px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,153);}
.fs2{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs5{font-size:112.320000px;}
.fsd{font-size:113.760000px;}
.fsc{font-size:120.240000px;}
.fs7{font-size:138.240000px;}
.fs4{font-size:144.000000px;}
.fsa{font-size:156.240000px;}
.fs6{font-size:167.760000px;}
.fs9{font-size:180.000000px;}
.fs3{font-size:216.000000px;}
.fs8{font-size:234.000000px;}
.fs0{font-size:246.240000px;}
.fs1{font-size:246.384000px;}
.y0{bottom:0.000000px;}
.y25{bottom:37.368000px;}
.y1e{bottom:256.785000px;}
.y26{bottom:340.635000px;}
.y1c{bottom:456.870000px;}
.y1b{bottom:527.070000px;}
.y1a{bottom:597.270000px;}
.y19{bottom:667.515000px;}
.y18{bottom:737.715000px;}
.y17{bottom:807.915000px;}
.y16{bottom:878.115000px;}
.y15{bottom:998.610000px;}
.y37{bottom:1657.260000px;}
.y36{bottom:1697.220000px;}
.y31{bottom:1755.825000px;}
.y30{bottom:1809.825000px;}
.y2f{bottom:1863.825000px;}
.y2e{bottom:1917.825000px;}
.y2d{bottom:1971.870000px;}
.y2c{bottom:2025.870000px;}
.y2b{bottom:2079.870000px;}
.y2a{bottom:2133.870000px;}
.y29{bottom:2187.870000px;}
.y28{bottom:2241.870000px;}
.y27{bottom:2295.870000px;}
.y1d{bottom:2389.065000px;}
.y33{bottom:2511.870000px;}
.y34{bottom:2519.895000px;}
.y35{bottom:2520.825000px;}
.y32{bottom:2546.070000px;}
.y24{bottom:3214.260000px;}
.y23{bottom:3268.260000px;}
.y22{bottom:3322.260000px;}
.y21{bottom:3376.260000px;}
.y20{bottom:3430.290000px;}
.y1f{bottom:3484.290000px;}
.y14{bottom:3561.045000px;}
.y13{bottom:3614.505000px;}
.y12{bottom:3673.950000px;}
.y11{bottom:3733.350000px;}
.y10{bottom:3774.570000px;}
.yf{bottom:3832.530000px;}
.ye{bottom:3890.490000px;}
.yd{bottom:3941.070000px;}
.yc{bottom:3995.070000px;}
.yb{bottom:4049.070000px;}
.ya{bottom:4103.100000px;}
.y9{bottom:4166.640000px;}
.y8{bottom:4229.670000px;}
.y7{bottom:4280.070000px;}
.y6{bottom:4330.470000px;}
.y5{bottom:4380.870000px;}
.y4{bottom:4435.590000px;}
.y3{bottom:4471.050000px;}
.y2{bottom:4540.860000px;}
.y1{bottom:4614.690000px;}
.h6{height:81.772031px;}
.hd{height:99.874688px;}
.h5{height:104.835938px;}
.he{height:118.648125px;}
.h9{height:144.180000px;}
.h4{height:169.706250px;}
.h8{height:187.734375px;}
.h10{height:215.074687px;}
.h11{height:218.794688px;}
.hc{height:244.054688px;}
.hf{height:247.174687px;}
.h2{height:256.820625px;}
.h3{height:256.970813px;}
.hb{height:262.774688px;}
.h7{height:316.054688px;}
.ha{height:411.514687px;}
.h0{height:4890.420000px;}
.h1{height:4890.750000px;}
.w0{width:3572.100000px;}
.w1{width:3572.250000px;}
.x0{left:0.000000px;}
.xd{left:76.392000px;}
.x5{left:107.928000px;}
.x11{left:129.636000px;}
.x7{left:145.764000px;}
.x6{left:147.924000px;}
.x10{left:150.585000px;}
.xb{left:153.825000px;}
.x9{left:163.620000px;}
.x8{left:168.270000px;}
.x1{left:179.460000px;}
.xe{left:813.705000px;}
.x12{left:1000.050000px;}
.x3{left:1012.170000px;}
.x16{left:1286.355000px;}
.x15{left:1783.365000px;}
.x2{left:1785.855000px;}
.x4{left:1819.875000px;}
.x13{left:1931.580000px;}
.x14{left:2807.070000px;}
.xa{left:3097.905000px;}
.xf{left:3108.630000px;}
.xc{left:3236.220000px;}
@media print{
.v1{vertical-align:-89.493333pt;}
.v3{vertical-align:-57.600000pt;}
.v4{vertical-align:-44.800000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:16.640000pt;}
.v2{vertical-align:57.600000pt;}
.v5{vertical-align:64.000000pt;}
.v9{vertical-align:102.400000pt;}
.va{vertical-align:105.706667pt;}
.v8{vertical-align:130.933333pt;}
.v6{vertical-align:148.853333pt;}
.ls11{letter-spacing:-17.760000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.240533pt;}
.lsf{letter-spacing:-0.086933pt;}
.lse{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016640pt;}
.lsa{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.048640pt;}
.ls9{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.480000pt;}
.ls12{letter-spacing:6.080000pt;}
.ls4{letter-spacing:7.360000pt;}
.ls6{letter-spacing:24.000000pt;}
.ls8{letter-spacing:148.847360pt;}
.lsb{letter-spacing:2115.643307pt;}
.ls3{letter-spacing:10499.098027pt;}
.ws2{word-spacing:-149.120000pt;}
.ws9{word-spacing:-47.424000pt;}
.ws4{word-spacing:-44.800000pt;}
.ws6{word-spacing:-44.640000pt;}
.ws8{word-spacing:-44.480000pt;}
.ws5{word-spacing:-44.160000pt;}
.ws3{word-spacing:-33.999360pt;}
.ws0{word-spacing:-29.184000pt;}
.ws7{word-spacing:-26.720000pt;}
.ws1{word-spacing:-22.763520pt;}
.wsa{word-spacing:0.000000pt;}
._d{margin-left:-17.132800pt;}
._6{margin-left:-13.675733pt;}
._10{margin-left:-12.640000pt;}
._0{margin-left:-10.506240pt;}
._1{margin-left:-8.317440pt;}
._3{margin-left:-5.568000pt;}
._11{margin-left:-3.101653pt;}
._2{margin-left:-2.188800pt;}
._4{margin-left:-1.068800pt;}
._5{width:1.640320pt;}
._14{width:2.586027pt;}
._19{width:3.680000pt;}
._1a{width:4.640000pt;}
._15{width:5.975680pt;}
._e{width:7.170133pt;}
._f{width:8.458880pt;}
._1b{width:9.441707pt;}
._1f{width:10.472747pt;}
._1e{width:11.680000pt;}
._20{width:13.222400pt;}
._1c{width:14.240000pt;}
._b{width:15.221333pt;}
._c{width:16.151467pt;}
._13{width:17.760000pt;}
._16{width:19.840000pt;}
._9{width:21.322667pt;}
._8{width:22.261333pt;}
._a{width:23.520000pt;}
._17{width:39.040000pt;}
._18{width:40.179413pt;}
._1d{width:419.088640pt;}
._22{width:2402.065707pt;}
._21{width:2678.898773pt;}
._7{width:8046.730027pt;}
._12{width:10382.718720pt;}
.fs2{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs5{font-size:99.840000pt;}
.fsd{font-size:101.120000pt;}
.fsc{font-size:106.880000pt;}
.fs7{font-size:122.880000pt;}
.fs4{font-size:128.000000pt;}
.fsa{font-size:138.880000pt;}
.fs6{font-size:149.120000pt;}
.fs9{font-size:160.000000pt;}
.fs3{font-size:192.000000pt;}
.fs8{font-size:208.000000pt;}
.fs0{font-size:218.880000pt;}
.fs1{font-size:219.008000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:33.216000pt;}
.y1e{bottom:228.253333pt;}
.y26{bottom:302.786667pt;}
.y1c{bottom:406.106667pt;}
.y1b{bottom:468.506667pt;}
.y1a{bottom:530.906667pt;}
.y19{bottom:593.346667pt;}
.y18{bottom:655.746667pt;}
.y17{bottom:718.146667pt;}
.y16{bottom:780.546667pt;}
.y15{bottom:887.653333pt;}
.y37{bottom:1473.120000pt;}
.y36{bottom:1508.640000pt;}
.y31{bottom:1560.733333pt;}
.y30{bottom:1608.733333pt;}
.y2f{bottom:1656.733333pt;}
.y2e{bottom:1704.733333pt;}
.y2d{bottom:1752.773333pt;}
.y2c{bottom:1800.773333pt;}
.y2b{bottom:1848.773333pt;}
.y2a{bottom:1896.773333pt;}
.y29{bottom:1944.773333pt;}
.y28{bottom:1992.773333pt;}
.y27{bottom:2040.773333pt;}
.y1d{bottom:2123.613333pt;}
.y33{bottom:2232.773333pt;}
.y34{bottom:2239.906667pt;}
.y35{bottom:2240.733333pt;}
.y32{bottom:2263.173333pt;}
.y24{bottom:2857.120000pt;}
.y23{bottom:2905.120000pt;}
.y22{bottom:2953.120000pt;}
.y21{bottom:3001.120000pt;}
.y20{bottom:3049.146667pt;}
.y1f{bottom:3097.146667pt;}
.y14{bottom:3165.373333pt;}
.y13{bottom:3212.893333pt;}
.y12{bottom:3265.733333pt;}
.y11{bottom:3318.533333pt;}
.y10{bottom:3355.173333pt;}
.yf{bottom:3406.693333pt;}
.ye{bottom:3458.213333pt;}
.yd{bottom:3503.173333pt;}
.yc{bottom:3551.173333pt;}
.yb{bottom:3599.173333pt;}
.ya{bottom:3647.200000pt;}
.y9{bottom:3703.680000pt;}
.y8{bottom:3759.706667pt;}
.y7{bottom:3804.506667pt;}
.y6{bottom:3849.306667pt;}
.y5{bottom:3894.106667pt;}
.y4{bottom:3942.746667pt;}
.y3{bottom:3974.266667pt;}
.y2{bottom:4036.320000pt;}
.y1{bottom:4101.946667pt;}
.h6{height:72.686250pt;}
.hd{height:88.777500pt;}
.h5{height:93.187500pt;}
.he{height:105.465000pt;}
.h9{height:128.160000pt;}
.h4{height:150.850000pt;}
.h8{height:166.875000pt;}
.h10{height:191.177500pt;}
.h11{height:194.484167pt;}
.hc{height:216.937500pt;}
.hf{height:219.710833pt;}
.h2{height:228.285000pt;}
.h3{height:228.418500pt;}
.hb{height:233.577500pt;}
.h7{height:280.937500pt;}
.ha{height:365.790833pt;}
.h0{height:4347.040000pt;}
.h1{height:4347.333333pt;}
.w0{width:3175.200000pt;}
.w1{width:3175.333333pt;}
.x0{left:0.000000pt;}
.xd{left:67.904000pt;}
.x5{left:95.936000pt;}
.x11{left:115.232000pt;}
.x7{left:129.568000pt;}
.x6{left:131.488000pt;}
.x10{left:133.853333pt;}
.xb{left:136.733333pt;}
.x9{left:145.440000pt;}
.x8{left:149.573333pt;}
.x1{left:159.520000pt;}
.xe{left:723.293333pt;}
.x12{left:888.933333pt;}
.x3{left:899.706667pt;}
.x16{left:1143.426667pt;}
.x15{left:1585.213333pt;}
.x2{left:1587.426667pt;}
.x4{left:1617.666667pt;}
.x13{left:1716.960000pt;}
.x14{left:2495.173333pt;}
.xa{left:2753.693333pt;}
.xf{left:2763.226667pt;}
.xc{left:2876.640000pt;}
}




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