
    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_96da7b2f8e61f4bab6d45051.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_550cf1aa03e47f032efcf5f6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e674ad17f9b7b2e3b172d8b2.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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;}
.lsa{letter-spacing:-0.850248px;}
.ls8{letter-spacing:-0.543312px;}
.ls4{letter-spacing:-0.262080px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.271656px;}
.ls1{letter-spacing:0.525672px;}
.ls5{letter-spacing:0.564480px;}
.ls3{letter-spacing:0.823536px;}
.ls6{letter-spacing:0.826560px;}
.ls2{letter-spacing:0.850248px;}
.lsb{letter-spacing:1.125432px;}
.ls7{letter-spacing:1.128960px;}
.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;}
}
.ws3{word-spacing:-10.933272px;}
.ws5{word-spacing:-10.658088px;}
.ws4{word-spacing:-9.807840px;}
.ws2{word-spacing:-9.264528px;}
.ws6{word-spacing:0.000000px;}
.ws1{word-spacing:261.471168px;}
.ws0{word-spacing:436.524480px;}
._3{margin-left:-2.862720px;}
._0{margin-left:-1.627920px;}
._1{width:1.005480px;}
._5{width:2.240280px;}
._2e{width:24.527160px;}
._2d{width:31.353840px;}
._7{width:45.234000px;}
._2b{width:51.591960px;}
._2c{width:61.782840px;}
._27{width:66.528000px;}
._2a{width:69.267240px;}
._1d{width:83.885760px;}
._25{width:95.267088px;}
._22{width:98.826840px;}
._f{width:103.677840px;}
._20{width:109.569600px;}
._d{width:137.017440px;}
._2f{width:141.886080px;}
._17{width:167.169240px;}
._19{width:177.289560px;}
._6{width:188.480376px;}
._13{width:196.905240px;}
._18{width:220.366440px;}
._1c{width:244.591200px;}
._31{width:261.153648px;}
._1b{width:275.609880px;}
._1a{width:283.023720px;}
._2{width:314.173440px;}
._8{width:322.466760px;}
._9{width:330.986880px;}
._e{width:336.067200px;}
._12{width:350.690760px;}
._11{width:352.514736px;}
._a{width:360.727920px;}
._24{width:364.119840px;}
._10{width:373.287600px;}
._15{width:382.065768px;}
._28{width:386.023680px;}
._23{width:388.899000px;}
._21{width:399.641760px;}
._29{width:456.689520px;}
._14{width:494.326224px;}
._30{width:532.241640px;}
._c{width:559.472760px;}
._b{width:560.589120px;}
._26{width:578.229120px;}
._4{width:629.843760px;}
._1e{width:644.701680px;}
._16{width:695.575440px;}
._1f{width:751.859640px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc3{color:transparent;}
.fc0{color:rgb(0,79,201);}
.fs2{font-size:35.280000px;}
.fs1{font-size:40.320000px;}
.fs0{font-size:47.880000px;}
.y0{bottom:0.000000px;}
.y15{bottom:1.890000px;}
.y6f{bottom:2.520000px;}
.y5{bottom:5.670000px;}
.y1a{bottom:12.600000px;}
.y6d{bottom:13.230000px;}
.y4{bottom:17.640000px;}
.y19{bottom:23.310000px;}
.y34{bottom:34.020000px;}
.y6c{bottom:35.280000px;}
.y33{bottom:44.730000px;}
.y6a{bottom:45.990000px;}
.y68{bottom:56.700000px;}
.y66{bottom:67.410000px;}
.y64{bottom:89.460000px;}
.y1{bottom:103.170000px;}
.y62{bottom:111.510000px;}
.y6e{bottom:114.510000px;}
.y60{bottom:133.560000px;}
.y6b{bottom:147.270000px;}
.y5e{bottom:155.610000px;}
.y69{bottom:157.980000px;}
.y5c{bottom:166.320000px;}
.y67{bottom:168.690000px;}
.y5a{bottom:177.030000px;}
.y65{bottom:190.740000px;}
.y58{bottom:199.080000px;}
.y63{bottom:212.790000px;}
.y56{bottom:221.130000px;}
.y54{bottom:231.840000px;}
.y61{bottom:234.840000px;}
.y52{bottom:242.550000px;}
.y50{bottom:253.260000px;}
.y5f{bottom:256.890000px;}
.y4e{bottom:263.970000px;}
.y5d{bottom:267.600000px;}
.y5b{bottom:278.310000px;}
.y4c{bottom:286.020000px;}
.y59{bottom:300.360000px;}
.y4a{bottom:319.410000px;}
.y57{bottom:322.410000px;}
.y55{bottom:333.120000px;}
.y48{bottom:341.460000px;}
.y53{bottom:343.830000px;}
.y51{bottom:354.540000px;}
.y46{bottom:363.510000px;}
.y4f{bottom:365.250000px;}
.y44{bottom:385.560000px;}
.y4d{bottom:387.300000px;}
.y42{bottom:407.610000px;}
.y4b{bottom:420.690000px;}
.y40{bottom:441.000000px;}
.y49{bottom:442.740000px;}
.y3e{bottom:463.050000px;}
.y47{bottom:464.790000px;}
.y3c{bottom:473.760000px;}
.y3a{bottom:484.470000px;}
.y45{bottom:486.840000px;}
.y38{bottom:495.180000px;}
.y37{bottom:505.890000px;}
.y43{bottom:508.890000px;}
.y35{bottom:516.600000px;}
.y31{bottom:538.650000px;}
.y41{bottom:542.280000px;}
.y3f{bottom:564.330000px;}
.y3d{bottom:575.040000px;}
.y3b{bottom:585.750000px;}
.y30{bottom:594.720000px;}
.y39{bottom:596.460000px;}
.y2e{bottom:605.430000px;}
.y2c{bottom:616.140000px;}
.y36{bottom:617.880000px;}
.y2a{bottom:626.850000px;}
.y28{bottom:637.560000px;}
.y32{bottom:639.930000px;}
.y26{bottom:648.270000px;}
.y25{bottom:670.320000px;}
.y23{bottom:681.030000px;}
.y21{bottom:691.740000px;}
.y1f{bottom:702.450000px;}
.y2f{bottom:706.710000px;}
.y1d{bottom:713.160000px;}
.y2d{bottom:717.420000px;}
.y2b{bottom:728.130000px;}
.y1b{bottom:735.210000px;}
.y29{bottom:738.840000px;}
.y17{bottom:745.920000px;}
.y27{bottom:749.550000px;}
.y16{bottom:779.310000px;}
.y24{bottom:782.310000px;}
.y13{bottom:790.020000px;}
.y22{bottom:793.020000px;}
.y12{bottom:800.730000px;}
.y20{bottom:803.730000px;}
.y11{bottom:811.440000px;}
.y1e{bottom:814.440000px;}
.y10{bottom:822.150000px;}
.yf{bottom:832.860000px;}
.y1c{bottom:836.490000px;}
.ye{bottom:843.570000px;}
.y18{bottom:847.200000px;}
.yd{bottom:854.280000px;}
.yc{bottom:864.990000px;}
.yb{bottom:875.700000px;}
.ya{bottom:886.410000px;}
.y14{bottom:891.300000px;}
.y9{bottom:897.120000px;}
.y8{bottom:907.830000px;}
.y7{bottom:918.540000px;}
.y6{bottom:938.700000px;}
.y2{bottom:974.610000px;}
.y3{bottom:1030.530000px;}
.h6{height:10.080000px;}
.h8{height:21.420000px;}
.h5{height:25.702031px;}
.h4{height:29.354063px;}
.h3{height:30.240000px;}
.h7{height:32.760000px;}
.h2{height:34.857949px;}
.h9{height:55.440000px;}
.h1{height:1078.560000px;}
.h0{height:1263.000000px;}
.w2{width:85.680000px;}
.w3{width:222.390000px;}
.w1{width:711.270000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:1.890000px;}
.x1{left:75.600000px;}
.x2{left:88.200000px;}
.x7{left:243.180000px;}
.x6{left:386.820000px;}
.x4{left:461.160000px;}
.x5{left:609.840000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.755776pt;}
.ls8{letter-spacing:-0.482944pt;}
.ls4{letter-spacing:-0.232960pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.241472pt;}
.ls1{letter-spacing:0.467264pt;}
.ls5{letter-spacing:0.501760pt;}
.ls3{letter-spacing:0.732032pt;}
.ls6{letter-spacing:0.734720pt;}
.ls2{letter-spacing:0.755776pt;}
.lsb{letter-spacing:1.000384pt;}
.ls7{letter-spacing:1.003520pt;}
.ws3{word-spacing:-9.718464pt;}
.ws5{word-spacing:-9.473856pt;}
.ws4{word-spacing:-8.718080pt;}
.ws2{word-spacing:-8.235136pt;}
.ws6{word-spacing:0.000000pt;}
.ws1{word-spacing:232.418816pt;}
.ws0{word-spacing:388.021760pt;}
._3{margin-left:-2.544640pt;}
._0{margin-left:-1.447040pt;}
._1{width:0.893760pt;}
._5{width:1.991360pt;}
._2e{width:21.801920pt;}
._2d{width:27.870080pt;}
._7{width:40.208000pt;}
._2b{width:45.859520pt;}
._2c{width:54.918080pt;}
._27{width:59.136000pt;}
._2a{width:61.570880pt;}
._1d{width:74.565120pt;}
._25{width:84.681856pt;}
._22{width:87.846080pt;}
._f{width:92.158080pt;}
._20{width:97.395200pt;}
._d{width:121.793280pt;}
._2f{width:126.120960pt;}
._17{width:148.594880pt;}
._19{width:157.590720pt;}
._6{width:167.538112pt;}
._13{width:175.026880pt;}
._18{width:195.881280pt;}
._1c{width:217.414400pt;}
._31{width:232.136576pt;}
._1b{width:244.986560pt;}
._1a{width:251.576640pt;}
._2{width:279.265280pt;}
._8{width:286.637120pt;}
._9{width:294.210560pt;}
._e{width:298.726400pt;}
._12{width:311.725120pt;}
._11{width:313.346432pt;}
._a{width:320.647040pt;}
._24{width:323.662080pt;}
._10{width:331.811200pt;}
._15{width:339.614016pt;}
._28{width:343.132160pt;}
._23{width:345.688000pt;}
._21{width:355.237120pt;}
._29{width:405.946240pt;}
._14{width:439.401088pt;}
._30{width:473.103680pt;}
._c{width:497.309120pt;}
._b{width:498.301440pt;}
._26{width:513.981440pt;}
._4{width:559.861120pt;}
._1e{width:573.068160pt;}
._16{width:618.289280pt;}
._1f{width:668.319680pt;}
.fs2{font-size:31.360000pt;}
.fs1{font-size:35.840000pt;}
.fs0{font-size:42.560000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:1.680000pt;}
.y6f{bottom:2.240000pt;}
.y5{bottom:5.040000pt;}
.y1a{bottom:11.200000pt;}
.y6d{bottom:11.760000pt;}
.y4{bottom:15.680000pt;}
.y19{bottom:20.720000pt;}
.y34{bottom:30.240000pt;}
.y6c{bottom:31.360000pt;}
.y33{bottom:39.760000pt;}
.y6a{bottom:40.880000pt;}
.y68{bottom:50.400000pt;}
.y66{bottom:59.920000pt;}
.y64{bottom:79.520000pt;}
.y1{bottom:91.706667pt;}
.y62{bottom:99.120000pt;}
.y6e{bottom:101.786667pt;}
.y60{bottom:118.720000pt;}
.y6b{bottom:130.906667pt;}
.y5e{bottom:138.320000pt;}
.y69{bottom:140.426667pt;}
.y5c{bottom:147.840000pt;}
.y67{bottom:149.946667pt;}
.y5a{bottom:157.360000pt;}
.y65{bottom:169.546667pt;}
.y58{bottom:176.960000pt;}
.y63{bottom:189.146667pt;}
.y56{bottom:196.560000pt;}
.y54{bottom:206.080000pt;}
.y61{bottom:208.746667pt;}
.y52{bottom:215.600000pt;}
.y50{bottom:225.120000pt;}
.y5f{bottom:228.346667pt;}
.y4e{bottom:234.640000pt;}
.y5d{bottom:237.866667pt;}
.y5b{bottom:247.386667pt;}
.y4c{bottom:254.240000pt;}
.y59{bottom:266.986667pt;}
.y4a{bottom:283.920000pt;}
.y57{bottom:286.586667pt;}
.y55{bottom:296.106667pt;}
.y48{bottom:303.520000pt;}
.y53{bottom:305.626667pt;}
.y51{bottom:315.146667pt;}
.y46{bottom:323.120000pt;}
.y4f{bottom:324.666667pt;}
.y44{bottom:342.720000pt;}
.y4d{bottom:344.266667pt;}
.y42{bottom:362.320000pt;}
.y4b{bottom:373.946667pt;}
.y40{bottom:392.000000pt;}
.y49{bottom:393.546667pt;}
.y3e{bottom:411.600000pt;}
.y47{bottom:413.146667pt;}
.y3c{bottom:421.120000pt;}
.y3a{bottom:430.640000pt;}
.y45{bottom:432.746667pt;}
.y38{bottom:440.160000pt;}
.y37{bottom:449.680000pt;}
.y43{bottom:452.346667pt;}
.y35{bottom:459.200000pt;}
.y31{bottom:478.800000pt;}
.y41{bottom:482.026667pt;}
.y3f{bottom:501.626667pt;}
.y3d{bottom:511.146667pt;}
.y3b{bottom:520.666667pt;}
.y30{bottom:528.640000pt;}
.y39{bottom:530.186667pt;}
.y2e{bottom:538.160000pt;}
.y2c{bottom:547.680000pt;}
.y36{bottom:549.226667pt;}
.y2a{bottom:557.200000pt;}
.y28{bottom:566.720000pt;}
.y32{bottom:568.826667pt;}
.y26{bottom:576.240000pt;}
.y25{bottom:595.840000pt;}
.y23{bottom:605.360000pt;}
.y21{bottom:614.880000pt;}
.y1f{bottom:624.400000pt;}
.y2f{bottom:628.186667pt;}
.y1d{bottom:633.920000pt;}
.y2d{bottom:637.706667pt;}
.y2b{bottom:647.226667pt;}
.y1b{bottom:653.520000pt;}
.y29{bottom:656.746667pt;}
.y17{bottom:663.040000pt;}
.y27{bottom:666.266667pt;}
.y16{bottom:692.720000pt;}
.y24{bottom:695.386667pt;}
.y13{bottom:702.240000pt;}
.y22{bottom:704.906667pt;}
.y12{bottom:711.760000pt;}
.y20{bottom:714.426667pt;}
.y11{bottom:721.280000pt;}
.y1e{bottom:723.946667pt;}
.y10{bottom:730.800000pt;}
.yf{bottom:740.320000pt;}
.y1c{bottom:743.546667pt;}
.ye{bottom:749.840000pt;}
.y18{bottom:753.066667pt;}
.yd{bottom:759.360000pt;}
.yc{bottom:768.880000pt;}
.yb{bottom:778.400000pt;}
.ya{bottom:787.920000pt;}
.y14{bottom:792.266667pt;}
.y9{bottom:797.440000pt;}
.y8{bottom:806.960000pt;}
.y7{bottom:816.480000pt;}
.y6{bottom:834.400000pt;}
.y2{bottom:866.320000pt;}
.y3{bottom:916.026667pt;}
.h6{height:8.960000pt;}
.h8{height:19.040000pt;}
.h5{height:22.846250pt;}
.h4{height:26.092500pt;}
.h3{height:26.880000pt;}
.h7{height:29.120000pt;}
.h2{height:30.984844pt;}
.h9{height:49.280000pt;}
.h1{height:958.720000pt;}
.h0{height:1122.666667pt;}
.w2{width:76.160000pt;}
.w3{width:197.680000pt;}
.w1{width:632.240000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:1.680000pt;}
.x1{left:67.200000pt;}
.x2{left:78.400000pt;}
.x7{left:216.160000pt;}
.x6{left:343.840000pt;}
.x4{left:409.920000pt;}
.x5{left:542.080000pt;}
}




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