
    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_17d46f5d8033748b3abb1832.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_56526886a4e65cc354aa26dd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c6baef16b9f8eda7e8fc7d4e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_5947ad2351c4b800f0abea1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v5{vertical-align:-64.800000px;}
.v2{vertical-align:-50.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:50.400000px;}
.v4{vertical-align:72.000000px;}
.v1{vertical-align:86.400000px;}
.v6{vertical-align:137.880000px;}
.ls7{letter-spacing:-0.153600px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.030240px;}
.ls0{letter-spacing:0.039960px;}
.ls3{letter-spacing:0.048960px;}
.ls8{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.120000px;}
.ls4{letter-spacing:218.053080px;}
.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;}
}
.wsa{word-spacing:-240.120000px;}
.ws0{word-spacing:-66.793320px;}
.ws1{word-spacing:-53.342640px;}
.ws2{word-spacing:-40.032000px;}
.ws3{word-spacing:-33.326640px;}
.wsb{word-spacing:0.000000px;}
.ws8{word-spacing:232.214280px;}
.ws7{word-spacing:232.334280px;}
.ws6{word-spacing:252.014280px;}
.ws9{word-spacing:252.134280px;}
.ws4{word-spacing:331.986840px;}
.ws5{word-spacing:332.106840px;}
._3{margin-left:-26.893440px;}
._6{margin-left:-21.216240px;}
._0{margin-left:-18.009000px;}
._9{margin-left:-11.775480px;}
._8{margin-left:-10.656000px;}
._7{margin-left:-8.464800px;}
._2{margin-left:-4.913640px;}
._1{margin-left:-3.416040px;}
._a{margin-left:-1.410480px;}
._4{width:1.056240px;}
._5{width:2.250720px;}
.fc7{color:rgb(192,0,0);}
.fc4{color:rgb(255,130,0);}
.fc3{color:rgb(84,88,90);}
.fc1{color:rgb(120,190,32);}
.fc6{color:rgb(127,127,127);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:96.120000px;}
.fs6{font-size:111.960000px;}
.fsa{font-size:119.880000px;}
.fs9{font-size:144.000000px;}
.fs8{font-size:159.840000px;}
.fs7{font-size:168.120000px;}
.fs5{font-size:191.880000px;}
.fs2{font-size:240.120000px;}
.fs1{font-size:288.000000px;}
.fs0{font-size:432.120000px;}
.fs3{font-size:528.120000px;}
.fs4{font-size:528.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:42.300000px;}
.y5c{bottom:61.740000px;}
.y4a{bottom:132.240000px;}
.y48{bottom:214.650000px;}
.y47{bottom:249.120000px;}
.y46{bottom:301.830000px;}
.y3c{bottom:321.420000px;}
.y45{bottom:336.390000px;}
.y44{bottom:370.860000px;}
.y3b{bottom:393.420000px;}
.y3e{bottom:406.620000px;}
.y49{bottom:453.480000px;}
.y3a{bottom:465.420000px;}
.y2c{bottom:504.900000px;}
.y39{bottom:537.420000px;}
.y3f{bottom:540.750000px;}
.y2b{bottom:607.140000px;}
.y38{bottom:609.420000px;}
.y40{bottom:674.880000px;}
.y37{bottom:681.420000px;}
.y2a{bottom:725.580000px;}
.y36{bottom:753.420000px;}
.y29{bottom:797.580000px;}
.y41{bottom:809.010000px;}
.y35{bottom:825.420000px;}
.y28{bottom:869.580000px;}
.y34{bottom:897.420000px;}
.y27{bottom:941.580000px;}
.y42{bottom:943.170000px;}
.y33{bottom:969.420000px;}
.y26{bottom:1013.580000px;}
.y32{bottom:1044.120000px;}
.y43{bottom:1077.300000px;}
.y25{bottom:1112.580000px;}
.y31{bottom:1130.550000px;}
.y5b{bottom:1182.180000px;}
.y24{bottom:1184.580000px;}
.y5a{bottom:1254.180000px;}
.y23{bottom:1256.580000px;}
.y59{bottom:1326.180000px;}
.y22{bottom:1328.580000px;}
.y58{bottom:1398.180000px;}
.y21{bottom:1427.580000px;}
.y57{bottom:1470.180000px;}
.y20{bottom:1526.580000px;}
.y56{bottom:1542.180000px;}
.y55{bottom:1614.180000px;}
.y1f{bottom:1625.580000px;}
.y54{bottom:1686.180000px;}
.y1e{bottom:1724.580000px;}
.y53{bottom:1758.180000px;}
.y1d{bottom:1823.610000px;}
.y52{bottom:1830.180000px;}
.y51{bottom:1902.180000px;}
.y1c{bottom:1922.610000px;}
.y50{bottom:1974.180000px;}
.y1b{bottom:2021.610000px;}
.y4f{bottom:2046.180000px;}
.y4e{bottom:2118.180000px;}
.y1a{bottom:2120.610000px;}
.y4d{bottom:2190.180000px;}
.y19{bottom:2219.610000px;}
.y4c{bottom:2262.210000px;}
.y18{bottom:2291.610000px;}
.y4b{bottom:2334.210000px;}
.y17{bottom:2402.850000px;}
.y30{bottom:2577.600000px;}
.y2f{bottom:2644.200000px;}
.y2e{bottom:2700.540000px;}
.y10{bottom:2766.930000px;}
.y2d{bottom:2772.540000px;}
.y3d{bottom:2802.060000px;}
.yf{bottom:2856.930000px;}
.ye{bottom:2946.930000px;}
.yd{bottom:3036.930000px;}
.yc{bottom:3108.930000px;}
.yb{bottom:3180.930000px;}
.ya{bottom:3252.930000px;}
.y9{bottom:3324.930000px;}
.y8{bottom:3414.930000px;}
.y7{bottom:3486.930000px;}
.y6{bottom:3558.930000px;}
.y5{bottom:3630.960000px;}
.y4{bottom:3720.960000px;}
.y3{bottom:3792.960000px;}
.y2{bottom:3895.200000px;}
.y16{bottom:4052.220000px;}
.y15{bottom:4129.620000px;}
.y14{bottom:4201.260000px;}
.y13{bottom:4520.700000px;}
.y12{bottom:4670.640000px;}
.y11{bottom:4820.700000px;}
.hd{height:100.250156px;}
.h7{height:124.943906px;}
.hb{height:125.031094px;}
.h8{height:150.187500px;}
.h9{height:175.343906px;}
.h4{height:250.437656px;}
.hc{height:262.911094px;}
.h3{height:300.375000px;}
.h2{height:450.687656px;}
.h5{height:550.812656px;}
.h6{height:550.937813px;}
.ha{height:1182.240000px;}
.h0{height:5081.850000px;}
.h1{height:5082.000000px;}
.w3{width:1622.250000px;}
.w2{width:3601.889998px;}
.w0{width:3601.890000px;}
.w1{width:3602.250000px;}
.x0{left:0.000000px;}
.x22{left:44.310000px;}
.xc{left:76.350000px;}
.x2{left:126.389998px;}
.x9{left:137.189998px;}
.x5{left:145.319998px;}
.xb{left:168.120000px;}
.x3{left:180.389998px;}
.x4{left:190.889998px;}
.x1b{left:222.480000px;}
.xd{left:232.470000px;}
.x24{left:245.189998px;}
.x1a{left:265.050000px;}
.x1{left:271.259998px;}
.x23{left:398.580000px;}
.x1c{left:421.350000px;}
.xe{left:470.580000px;}
.x1d{left:620.250000px;}
.xf{left:649.410000px;}
.x1e{left:819.120000px;}
.x10{left:833.280000px;}
.x11{left:852.450000px;}
.x1f{left:1017.990000px;}
.x13{left:1021.350000px;}
.x12{left:1032.150000px;}
.x14{left:1058.880000px;}
.x20{left:1216.860000px;}
.x16{left:1220.220000px;}
.x25{left:1222.409998px;}
.x15{left:1231.020000px;}
.x17{left:1257.750000px;}
.x21{left:1415.760000px;}
.x18{left:1442.460000px;}
.x19{left:1456.680000px;}
.xa{left:1830.510000px;}
.x6{left:1866.059998px;}
.x8{left:1870.379998px;}
.x7{left:1920.059998px;}
@media print{
.v5{vertical-align:-57.600000pt;}
.v2{vertical-align:-44.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:44.800000pt;}
.v4{vertical-align:64.000000pt;}
.v1{vertical-align:76.800000pt;}
.v6{vertical-align:122.560000pt;}
.ls7{letter-spacing:-0.136533pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.026880pt;}
.ls0{letter-spacing:0.035520pt;}
.ls3{letter-spacing:0.043520pt;}
.ls8{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.106667pt;}
.ls4{letter-spacing:193.824960pt;}
.wsa{word-spacing:-213.440000pt;}
.ws0{word-spacing:-59.371840pt;}
.ws1{word-spacing:-47.415680pt;}
.ws2{word-spacing:-35.584000pt;}
.ws3{word-spacing:-29.623680pt;}
.wsb{word-spacing:0.000000pt;}
.ws8{word-spacing:206.412693pt;}
.ws7{word-spacing:206.519360pt;}
.ws6{word-spacing:224.012693pt;}
.ws9{word-spacing:224.119360pt;}
.ws4{word-spacing:295.099413pt;}
.ws5{word-spacing:295.206080pt;}
._3{margin-left:-23.905280pt;}
._6{margin-left:-18.858880pt;}
._0{margin-left:-16.008000pt;}
._9{margin-left:-10.467093pt;}
._8{margin-left:-9.472000pt;}
._7{margin-left:-7.524267pt;}
._2{margin-left:-4.367680pt;}
._1{margin-left:-3.036480pt;}
._a{margin-left:-1.253760pt;}
._4{width:0.938880pt;}
._5{width:2.000640pt;}
.fsb{font-size:85.440000pt;}
.fs6{font-size:99.520000pt;}
.fsa{font-size:106.560000pt;}
.fs9{font-size:128.000000pt;}
.fs8{font-size:142.080000pt;}
.fs7{font-size:149.440000pt;}
.fs5{font-size:170.560000pt;}
.fs2{font-size:213.440000pt;}
.fs1{font-size:256.000000pt;}
.fs0{font-size:384.106667pt;}
.fs3{font-size:469.440000pt;}
.fs4{font-size:469.546667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.600000pt;}
.y5c{bottom:54.880000pt;}
.y4a{bottom:117.546667pt;}
.y48{bottom:190.800000pt;}
.y47{bottom:221.440000pt;}
.y46{bottom:268.293333pt;}
.y3c{bottom:285.706667pt;}
.y45{bottom:299.013333pt;}
.y44{bottom:329.653333pt;}
.y3b{bottom:349.706667pt;}
.y3e{bottom:361.440000pt;}
.y49{bottom:403.093333pt;}
.y3a{bottom:413.706667pt;}
.y2c{bottom:448.800000pt;}
.y39{bottom:477.706667pt;}
.y3f{bottom:480.666667pt;}
.y2b{bottom:539.680000pt;}
.y38{bottom:541.706667pt;}
.y40{bottom:599.893333pt;}
.y37{bottom:605.706667pt;}
.y2a{bottom:644.960000pt;}
.y36{bottom:669.706667pt;}
.y29{bottom:708.960000pt;}
.y41{bottom:719.120000pt;}
.y35{bottom:733.706667pt;}
.y28{bottom:772.960000pt;}
.y34{bottom:797.706667pt;}
.y27{bottom:836.960000pt;}
.y42{bottom:838.373333pt;}
.y33{bottom:861.706667pt;}
.y26{bottom:900.960000pt;}
.y32{bottom:928.106667pt;}
.y43{bottom:957.600000pt;}
.y25{bottom:988.960000pt;}
.y31{bottom:1004.933333pt;}
.y5b{bottom:1050.826667pt;}
.y24{bottom:1052.960000pt;}
.y5a{bottom:1114.826667pt;}
.y23{bottom:1116.960000pt;}
.y59{bottom:1178.826667pt;}
.y22{bottom:1180.960000pt;}
.y58{bottom:1242.826667pt;}
.y21{bottom:1268.960000pt;}
.y57{bottom:1306.826667pt;}
.y20{bottom:1356.960000pt;}
.y56{bottom:1370.826667pt;}
.y55{bottom:1434.826667pt;}
.y1f{bottom:1444.960000pt;}
.y54{bottom:1498.826667pt;}
.y1e{bottom:1532.960000pt;}
.y53{bottom:1562.826667pt;}
.y1d{bottom:1620.986667pt;}
.y52{bottom:1626.826667pt;}
.y51{bottom:1690.826667pt;}
.y1c{bottom:1708.986667pt;}
.y50{bottom:1754.826667pt;}
.y1b{bottom:1796.986667pt;}
.y4f{bottom:1818.826667pt;}
.y4e{bottom:1882.826667pt;}
.y1a{bottom:1884.986667pt;}
.y4d{bottom:1946.826667pt;}
.y19{bottom:1972.986667pt;}
.y4c{bottom:2010.853333pt;}
.y18{bottom:2036.986667pt;}
.y4b{bottom:2074.853333pt;}
.y17{bottom:2135.866667pt;}
.y30{bottom:2291.200000pt;}
.y2f{bottom:2350.400000pt;}
.y2e{bottom:2400.480000pt;}
.y10{bottom:2459.493333pt;}
.y2d{bottom:2464.480000pt;}
.y3d{bottom:2490.720000pt;}
.yf{bottom:2539.493333pt;}
.ye{bottom:2619.493333pt;}
.yd{bottom:2699.493333pt;}
.yc{bottom:2763.493333pt;}
.yb{bottom:2827.493333pt;}
.ya{bottom:2891.493333pt;}
.y9{bottom:2955.493333pt;}
.y8{bottom:3035.493333pt;}
.y7{bottom:3099.493333pt;}
.y6{bottom:3163.493333pt;}
.y5{bottom:3227.520000pt;}
.y4{bottom:3307.520000pt;}
.y3{bottom:3371.520000pt;}
.y2{bottom:3462.400000pt;}
.y16{bottom:3601.973333pt;}
.y15{bottom:3670.773333pt;}
.y14{bottom:3734.453333pt;}
.y13{bottom:4018.400000pt;}
.y12{bottom:4151.680000pt;}
.y11{bottom:4285.066667pt;}
.hd{height:89.111250pt;}
.h7{height:111.061250pt;}
.hb{height:111.138750pt;}
.h8{height:133.500000pt;}
.h9{height:155.861250pt;}
.h4{height:222.611250pt;}
.hc{height:233.698750pt;}
.h3{height:267.000000pt;}
.h2{height:400.611250pt;}
.h5{height:489.611250pt;}
.h6{height:489.722500pt;}
.ha{height:1050.880000pt;}
.h0{height:4517.200000pt;}
.h1{height:4517.333333pt;}
.w3{width:1442.000000pt;}
.w2{width:3201.679999pt;}
.w0{width:3201.680000pt;}
.w1{width:3202.000000pt;}
.x0{left:0.000000pt;}
.x22{left:39.386667pt;}
.xc{left:67.866667pt;}
.x2{left:112.346665pt;}
.x9{left:121.946665pt;}
.x5{left:129.173332pt;}
.xb{left:149.440000pt;}
.x3{left:160.346665pt;}
.x4{left:169.679999pt;}
.x1b{left:197.760000pt;}
.xd{left:206.640000pt;}
.x24{left:217.946665pt;}
.x1a{left:235.600000pt;}
.x1{left:241.119999pt;}
.x23{left:354.293333pt;}
.x1c{left:374.533333pt;}
.xe{left:418.293333pt;}
.x1d{left:551.333333pt;}
.xf{left:577.253333pt;}
.x1e{left:728.106667pt;}
.x10{left:740.693333pt;}
.x11{left:757.733333pt;}
.x1f{left:904.880000pt;}
.x13{left:907.866667pt;}
.x12{left:917.466667pt;}
.x14{left:941.226667pt;}
.x20{left:1081.653333pt;}
.x16{left:1084.640000pt;}
.x25{left:1086.586665pt;}
.x15{left:1094.240000pt;}
.x17{left:1118.000000pt;}
.x21{left:1258.453333pt;}
.x18{left:1282.186667pt;}
.x19{left:1294.826667pt;}
.xa{left:1627.120000pt;}
.x6{left:1658.719999pt;}
.x8{left:1662.559999pt;}
.x7{left:1706.719999pt;}
}




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