
    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_477abed42ceeb121e6763409.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c822e2108d9451c591ecd087.woff')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_a91c57985a334e7e9dae2c02.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_40ce07d34c7f325fbcb3a092.woff')format("woff");}.ff4{font-family:ff4;line-height:0.769531;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_785e6177a574d2b0115f60a1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_583ab60496eb8fe3a9517ed3.woff')format("woff");}.ff6{font-family:ff6;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;}
.ls3{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.206400px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.828000px;}
.ls8{letter-spacing:16.506720px;}
.ls7{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.733600px;}
.ws3{word-spacing:-14.580000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-1.008000px;}
._0{width:1.195200px;}
._1{width:2.825520px;}
._5{width:4.000080px;}
._7{width:5.374320px;}
._d{width:6.503040px;}
._a{width:7.506000px;}
._9{width:8.605440px;}
._4{width:9.979920px;}
._6{width:11.473920px;}
._3{width:12.669120px;}
._8{width:13.728960px;}
._15{width:16.075440px;}
._e{width:17.629200px;}
._b{width:19.362240px;}
._c{width:20.497680px;}
._14{width:21.633120px;}
._13{width:22.708800px;}
._11{width:24.083280px;}
._12{width:25.198320px;}
._f{width:26.294400px;}
._10{width:27.668880px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.240000px;}
.y4{bottom:21.780000px;}
.y54{bottom:58.500000px;}
.y28{bottom:63.540000px;}
.y9a{bottom:71.100000px;}
.y53{bottom:75.780000px;}
.y87{bottom:78.840000px;}
.y27{bottom:80.820000px;}
.y99{bottom:88.380000px;}
.y52{bottom:89.280000px;}
.y26{bottom:94.320000px;}
.y86{bottom:95.940000px;}
.yb5{bottom:96.120000px;}
.y98{bottom:105.336000px;}
.y85{bottom:113.256000px;}
.yb4{bottom:113.436000px;}
.y97{bottom:122.436000px;}
.y84{bottom:130.536000px;}
.yb3{bottom:130.716000px;}
.y66{bottom:135.396000px;}
.y96{bottom:140.076000px;}
.y83{bottom:144.036000px;}
.yb2{bottom:147.816000px;}
.y65{bottom:152.670000px;}
.y95{bottom:157.350000px;}
.yb1{bottom:165.090000px;}
.y64{bottom:169.950000px;}
.y94{bottom:174.630000px;}
.yb0{bottom:182.370000px;}
.y63{bottom:187.230000px;}
.y93{bottom:191.910000px;}
.yaf{bottom:199.650000px;}
.y62{bottom:204.150000px;}
.y92{bottom:209.190000px;}
.yae{bottom:216.930000px;}
.y61{bottom:221.610000px;}
.y91{bottom:226.290000px;}
.yad{bottom:234.030000px;}
.y7e{bottom:237.810000px;}
.y60{bottom:238.890000px;}
.y90{bottom:243.570000px;}
.yac{bottom:251.310000px;}
.y7d{bottom:255.090000px;}
.y5f{bottom:256.170000px;}
.y8f{bottom:260.490000px;}
.yab{bottom:268.590000px;}
.y7c{bottom:272.370000px;}
.y5e{bottom:273.450000px;}
.y8e{bottom:278.130000px;}
.yaa{bottom:285.870000px;}
.y7b{bottom:289.650000px;}
.y5d{bottom:290.730000px;}
.y8d{bottom:295.410000px;}
.ya9{bottom:303.150000px;}
.y7a{bottom:306.750000px;}
.y5c{bottom:308.010000px;}
.y8c{bottom:308.910000px;}
.ya8{bottom:320.430000px;}
.y79{bottom:324.030000px;}
.y5b{bottom:325.110000px;}
.ya7{bottom:337.530000px;}
.y78{bottom:341.310000px;}
.y5a{bottom:342.390000px;}
.ya6{bottom:354.810000px;}
.y77{bottom:358.635000px;}
.y59{bottom:359.355000px;}
.ya5{bottom:372.135000px;}
.y76{bottom:375.555000px;}
.y58{bottom:376.995000px;}
.ya4{bottom:389.415000px;}
.y75{bottom:393.015000px;}
.y57{bottom:394.275000px;}
.ya3{bottom:406.695000px;}
.y56{bottom:407.775000px;}
.y74{bottom:410.295000px;}
.ya2{bottom:423.975000px;}
.y73{bottom:427.575000px;}
.ya1{bottom:441.075000px;}
.y72{bottom:444.855000px;}
.ya0{bottom:458.355000px;}
.y71{bottom:462.135000px;}
.y51{bottom:475.275000px;}
.y9f{bottom:475.635000px;}
.y70{bottom:479.415000px;}
.y9e{bottom:492.555000px;}
.y50{bottom:492.915000px;}
.y6f{bottom:496.515000px;}
.y4f{bottom:510.195000px;}
.y6e{bottom:513.795000px;}
.y4e{bottom:527.295000px;}
.y6d{bottom:530.715000px;}
.y4d{bottom:544.575000px;}
.y6c{bottom:547.995000px;}
.y4c{bottom:561.855000px;}
.y6b{bottom:565.635000px;}
.y4b{bottom:579.135000px;}
.y6a{bottom:582.915000px;}
.y4a{bottom:596.415000px;}
.y69{bottom:600.015000px;}
.y49{bottom:613.695000px;}
.y25{bottom:615.495000px;}
.y68{bottom:617.325000px;}
.y48{bottom:630.825000px;}
.y24{bottom:632.805000px;}
.y67{bottom:634.605000px;}
.y82{bottom:639.105000px;}
.y47{bottom:648.105000px;}
.y23{bottom:650.085000px;}
.y81{bottom:656.745000px;}
.y46{bottom:665.385000px;}
.y22{bottom:667.365000px;}
.y80{bottom:674.025000px;}
.y45{bottom:682.665000px;}
.y21{bottom:684.645000px;}
.y7f{bottom:687.525000px;}
.y44{bottom:699.585000px;}
.y9d{bottom:699.945000px;}
.y20{bottom:701.565000px;}
.y43{bottom:716.865000px;}
.y9c{bottom:717.225000px;}
.y1f{bottom:719.025000px;}
.y42{bottom:734.325000px;}
.y1e{bottom:736.305000px;}
.y41{bottom:751.605000px;}
.y1d{bottom:753.585000px;}
.y40{bottom:768.885000px;}
.y1c{bottom:770.865000px;}
.y3f{bottom:786.165000px;}
.y1b{bottom:788.145000px;}
.y3e{bottom:803.445000px;}
.y1a{bottom:805.425000px;}
.y3d{bottom:820.725000px;}
.y19{bottom:822.525000px;}
.y3c{bottom:837.825000px;}
.y18{bottom:839.805000px;}
.y3b{bottom:855.105000px;}
.y17{bottom:857.085000px;}
.y3a{bottom:872.385000px;}
.y16{bottom:874.365000px;}
.y39{bottom:889.710000px;}
.y15{bottom:891.690000px;}
.y8b{bottom:906.630000px;}
.y38{bottom:906.990000px;}
.y14{bottom:908.790000px;}
.y37{bottom:924.090000px;}
.y13{bottom:925.710000px;}
.y36{bottom:941.370000px;}
.y12{bottom:943.710000px;}
.y9b{bottom:958.290000px;}
.y35{bottom:958.650000px;}
.y11{bottom:961.350000px;}
.y34{bottom:975.930000px;}
.y10{bottom:978.630000px;}
.y33{bottom:993.210000px;}
.yf{bottom:995.910000px;}
.y32{bottom:1010.130000px;}
.y8a{bottom:1010.490000px;}
.ye{bottom:1013.190000px;}
.y55{bottom:1027.230000px;}
.y31{bottom:1027.590000px;}
.yd{bottom:1030.290000px;}
.y30{bottom:1044.870000px;}
.yc{bottom:1047.570000px;}
.y89{bottom:1061.790000px;}
.y2f{bottom:1062.150000px;}
.yb{bottom:1064.850000px;}
.y88{bottom:1079.070000px;}
.y2e{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.y2d{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.y2c{bottom:1113.990000px;}
.y8{bottom:1121.190000px;}
.y2b{bottom:1131.090000px;}
.y7{bottom:1141.920000px;}
.y2a{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.y29{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h7{height:41.522695px;}
.h5{height:47.891250px;}
.h2{height:58.621992px;}
.h3{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:61.423863px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:54.000000px;}
.x16{left:55.260000px;}
.x10{left:59.760000px;}
.x1e{left:61.200000px;}
.x13{left:65.340000px;}
.x22{left:81.000000px;}
.x21{left:88.020000px;}
.x19{left:93.636000px;}
.xe{left:108.036000px;}
.xd{left:175.530000px;}
.x6{left:200.010000px;}
.xc{left:201.450000px;}
.xb{left:206.850000px;}
.x7{left:220.530000px;}
.x1a{left:227.190000px;}
.xa{left:232.410000px;}
.x3{left:254.550000px;}
.x1f{left:261.570000px;}
.x1c{left:270.750000px;}
.x2{left:300.675000px;}
.x11{left:315.255000px;}
.x1{left:324.255000px;}
.x17{left:326.595000px;}
.x8{left:388.515000px;}
.x14{left:429.195000px;}
.x9{left:449.715000px;}
.x12{left:732.390000px;}
.x15{left:791.970000px;}
.x4{left:812.130000px;}
.x1d{left:816.660000px;}
.x1b{left:817.920000px;}
.x20{left:822.420000px;}
.x18{left:825.660000px;}
.xf{left:828.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.736000pt;}
.ls8{letter-spacing:14.672640pt;}
.ls7{letter-spacing:40.912640pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.096533pt;}
.ws3{word-spacing:-12.960000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._1{width:2.511573pt;}
._5{width:3.555627pt;}
._7{width:4.777173pt;}
._d{width:5.780480pt;}
._a{width:6.672000pt;}
._9{width:7.649280pt;}
._4{width:8.871040pt;}
._6{width:10.199040pt;}
._3{width:11.261440pt;}
._8{width:12.203520pt;}
._15{width:14.289280pt;}
._e{width:15.670400pt;}
._b{width:17.210880pt;}
._c{width:18.220160pt;}
._14{width:19.229440pt;}
._13{width:20.185600pt;}
._11{width:21.407360pt;}
._12{width:22.398507pt;}
._f{width:23.372800pt;}
._10{width:24.594560pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.880000pt;}
.y4{bottom:19.360000pt;}
.y54{bottom:52.000000pt;}
.y28{bottom:56.480000pt;}
.y9a{bottom:63.200000pt;}
.y53{bottom:67.360000pt;}
.y87{bottom:70.080000pt;}
.y27{bottom:71.840000pt;}
.y99{bottom:78.560000pt;}
.y52{bottom:79.360000pt;}
.y26{bottom:83.840000pt;}
.y86{bottom:85.280000pt;}
.yb5{bottom:85.440000pt;}
.y98{bottom:93.632000pt;}
.y85{bottom:100.672000pt;}
.yb4{bottom:100.832000pt;}
.y97{bottom:108.832000pt;}
.y84{bottom:116.032000pt;}
.yb3{bottom:116.192000pt;}
.y66{bottom:120.352000pt;}
.y96{bottom:124.512000pt;}
.y83{bottom:128.032000pt;}
.yb2{bottom:131.392000pt;}
.y65{bottom:135.706667pt;}
.y95{bottom:139.866667pt;}
.yb1{bottom:146.746667pt;}
.y64{bottom:151.066667pt;}
.y94{bottom:155.226667pt;}
.yb0{bottom:162.106667pt;}
.y63{bottom:166.426667pt;}
.y93{bottom:170.586667pt;}
.yaf{bottom:177.466667pt;}
.y62{bottom:181.466667pt;}
.y92{bottom:185.946667pt;}
.yae{bottom:192.826667pt;}
.y61{bottom:196.986667pt;}
.y91{bottom:201.146667pt;}
.yad{bottom:208.026667pt;}
.y7e{bottom:211.386667pt;}
.y60{bottom:212.346667pt;}
.y90{bottom:216.506667pt;}
.yac{bottom:223.386667pt;}
.y7d{bottom:226.746667pt;}
.y5f{bottom:227.706667pt;}
.y8f{bottom:231.546667pt;}
.yab{bottom:238.746667pt;}
.y7c{bottom:242.106667pt;}
.y5e{bottom:243.066667pt;}
.y8e{bottom:247.226667pt;}
.yaa{bottom:254.106667pt;}
.y7b{bottom:257.466667pt;}
.y5d{bottom:258.426667pt;}
.y8d{bottom:262.586667pt;}
.ya9{bottom:269.466667pt;}
.y7a{bottom:272.666667pt;}
.y5c{bottom:273.786667pt;}
.y8c{bottom:274.586667pt;}
.ya8{bottom:284.826667pt;}
.y79{bottom:288.026667pt;}
.y5b{bottom:288.986667pt;}
.ya7{bottom:300.026667pt;}
.y78{bottom:303.386667pt;}
.y5a{bottom:304.346667pt;}
.ya6{bottom:315.386667pt;}
.y77{bottom:318.786667pt;}
.y59{bottom:319.426667pt;}
.ya5{bottom:330.786667pt;}
.y76{bottom:333.826667pt;}
.y58{bottom:335.106667pt;}
.ya4{bottom:346.146667pt;}
.y75{bottom:349.346667pt;}
.y57{bottom:350.466667pt;}
.ya3{bottom:361.506667pt;}
.y56{bottom:362.466667pt;}
.y74{bottom:364.706667pt;}
.ya2{bottom:376.866667pt;}
.y73{bottom:380.066667pt;}
.ya1{bottom:392.066667pt;}
.y72{bottom:395.426667pt;}
.ya0{bottom:407.426667pt;}
.y71{bottom:410.786667pt;}
.y51{bottom:422.466667pt;}
.y9f{bottom:422.786667pt;}
.y70{bottom:426.146667pt;}
.y9e{bottom:437.826667pt;}
.y50{bottom:438.146667pt;}
.y6f{bottom:441.346667pt;}
.y4f{bottom:453.506667pt;}
.y6e{bottom:456.706667pt;}
.y4e{bottom:468.706667pt;}
.y6d{bottom:471.746667pt;}
.y4d{bottom:484.066667pt;}
.y6c{bottom:487.106667pt;}
.y4c{bottom:499.426667pt;}
.y6b{bottom:502.786667pt;}
.y4b{bottom:514.786667pt;}
.y6a{bottom:518.146667pt;}
.y4a{bottom:530.146667pt;}
.y69{bottom:533.346667pt;}
.y49{bottom:545.506667pt;}
.y25{bottom:547.106667pt;}
.y68{bottom:548.733333pt;}
.y48{bottom:560.733333pt;}
.y24{bottom:562.493333pt;}
.y67{bottom:564.093333pt;}
.y82{bottom:568.093333pt;}
.y47{bottom:576.093333pt;}
.y23{bottom:577.853333pt;}
.y81{bottom:583.773333pt;}
.y46{bottom:591.453333pt;}
.y22{bottom:593.213333pt;}
.y80{bottom:599.133333pt;}
.y45{bottom:606.813333pt;}
.y21{bottom:608.573333pt;}
.y7f{bottom:611.133333pt;}
.y44{bottom:621.853333pt;}
.y9d{bottom:622.173333pt;}
.y20{bottom:623.613333pt;}
.y43{bottom:637.213333pt;}
.y9c{bottom:637.533333pt;}
.y1f{bottom:639.133333pt;}
.y42{bottom:652.733333pt;}
.y1e{bottom:654.493333pt;}
.y41{bottom:668.093333pt;}
.y1d{bottom:669.853333pt;}
.y40{bottom:683.453333pt;}
.y1c{bottom:685.213333pt;}
.y3f{bottom:698.813333pt;}
.y1b{bottom:700.573333pt;}
.y3e{bottom:714.173333pt;}
.y1a{bottom:715.933333pt;}
.y3d{bottom:729.533333pt;}
.y19{bottom:731.133333pt;}
.y3c{bottom:744.733333pt;}
.y18{bottom:746.493333pt;}
.y3b{bottom:760.093333pt;}
.y17{bottom:761.853333pt;}
.y3a{bottom:775.453333pt;}
.y16{bottom:777.213333pt;}
.y39{bottom:790.853333pt;}
.y15{bottom:792.613333pt;}
.y8b{bottom:805.893333pt;}
.y38{bottom:806.213333pt;}
.y14{bottom:807.813333pt;}
.y37{bottom:821.413333pt;}
.y13{bottom:822.853333pt;}
.y36{bottom:836.773333pt;}
.y12{bottom:838.853333pt;}
.y9b{bottom:851.813333pt;}
.y35{bottom:852.133333pt;}
.y11{bottom:854.533333pt;}
.y34{bottom:867.493333pt;}
.y10{bottom:869.893333pt;}
.y33{bottom:882.853333pt;}
.yf{bottom:885.253333pt;}
.y32{bottom:897.893333pt;}
.y8a{bottom:898.213333pt;}
.ye{bottom:900.613333pt;}
.y55{bottom:913.093333pt;}
.y31{bottom:913.413333pt;}
.yd{bottom:915.813333pt;}
.y30{bottom:928.773333pt;}
.yc{bottom:931.173333pt;}
.y89{bottom:943.813333pt;}
.y2f{bottom:944.133333pt;}
.yb{bottom:946.533333pt;}
.y88{bottom:959.173333pt;}
.y2e{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.y2d{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.y2c{bottom:990.213333pt;}
.y8{bottom:996.613333pt;}
.y2b{bottom:1005.413333pt;}
.y7{bottom:1015.040000pt;}
.y2a{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.y29{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h7{height:36.909063pt;}
.h5{height:42.570000pt;}
.h2{height:52.108438pt;}
.h3{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.598989pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:48.000000pt;}
.x16{left:49.120000pt;}
.x10{left:53.120000pt;}
.x1e{left:54.400000pt;}
.x13{left:58.080000pt;}
.x22{left:72.000000pt;}
.x21{left:78.240000pt;}
.x19{left:83.232000pt;}
.xe{left:96.032000pt;}
.xd{left:156.026667pt;}
.x6{left:177.786667pt;}
.xc{left:179.066667pt;}
.xb{left:183.866667pt;}
.x7{left:196.026667pt;}
.x1a{left:201.946667pt;}
.xa{left:206.586667pt;}
.x3{left:226.266667pt;}
.x1f{left:232.506667pt;}
.x1c{left:240.666667pt;}
.x2{left:267.266667pt;}
.x11{left:280.226667pt;}
.x1{left:288.226667pt;}
.x17{left:290.306667pt;}
.x8{left:345.346667pt;}
.x14{left:381.506667pt;}
.x9{left:399.746667pt;}
.x12{left:651.013333pt;}
.x15{left:703.973333pt;}
.x4{left:721.893333pt;}
.x1d{left:725.920000pt;}
.x1b{left:727.040000pt;}
.x20{left:731.040000pt;}
.x18{left:733.920000pt;}
.xf{left:736.000000pt;}
}




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