
    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_f742fb54c277036acf9e1cf6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_767a1908c41804f089efcaac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_d53acfe0a2e363e711927e87.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6e1ec153d7b6f719ef8d6e97.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_2bb8c225e9c1e84d11c6957c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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.672000px;}
.ls9{letter-spacing:-0.420000px;}
.ls5{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.264000px;}
.lsc{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.312000px;}
.ls8{letter-spacing:0.468000px;}
.ls0{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.528000px;}
.lsd{letter-spacing:0.660000px;}
.ls2{letter-spacing:44.784000px;}
.lsb{letter-spacing:46.248000px;}
.lse{letter-spacing:54.354000px;}
.ls1{letter-spacing:54.384000px;}
.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;}
}
.ws8{word-spacing:-84.000000px;}
.ws9{word-spacing:-18.984000px;}
.wsa{word-spacing:-18.720000px;}
.ws4{word-spacing:-17.680800px;}
.ws0{word-spacing:-16.344000px;}
.ws5{word-spacing:-16.272000px;}
.ws7{word-spacing:-16.056000px;}
.ws1{word-spacing:-15.912000px;}
.ws6{word-spacing:-13.140000px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.296000px;}
._1{width:1.068000px;}
._2{width:2.196000px;}
._3{width:3.342000px;}
._4{width:4.536000px;}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:60.000000px;}
.fs4{font-size:63.600000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:113.737500px;}
.y7e{bottom:118.537500px;}
.y61{bottom:124.537500px;}
.y7d{bottom:143.137500px;}
.y60{bottom:148.237500px;}
.y41{bottom:148.537500px;}
.y20{bottom:149.437500px;}
.y40{bottom:173.430000px;}
.y1f{bottom:174.045000px;}
.y7c{bottom:179.745000px;}
.y5f{bottom:184.830000px;}
.y1e{bottom:197.745000px;}
.y3f{bottom:211.875000px;}
.y7b{bottom:217.575000px;}
.y1d{bottom:221.775000px;}
.y5e{bottom:222.975000px;}
.y3e{bottom:235.575000px;}
.y1c{bottom:245.475000px;}
.y7a{bottom:258.975000px;}
.y3d{bottom:259.275000px;}
.y5d{bottom:264.375000px;}
.y1b{bottom:269.175000px;}
.y79{bottom:282.675000px;}
.y3c{bottom:282.975000px;}
.y1a{bottom:292.875000px;}
.y5c{bottom:300.075000px;}
.y19{bottom:316.575000px;}
.y3b{bottom:318.675000px;}
.y78{bottom:320.775000px;}
.y5b{bottom:324.675000px;}
.y18{bottom:340.275000px;}
.y3a{bottom:342.375000px;}
.y5a{bottom:349.575000px;}
.y77{bottom:362.205000px;}
.y17{bottom:364.920000px;}
.y39{bottom:366.120000px;}
.y59{bottom:374.205000px;}
.y76{bottom:385.920000px;}
.y16{bottom:388.620000px;}
.y38{bottom:389.820000px;}
.y58{bottom:398.820000px;}
.y75{bottom:409.620000px;}
.y37{bottom:413.505000px;}
.y15{bottom:425.220000px;}
.y57{bottom:436.620000px;}
.y36{bottom:437.220000px;}
.y74{bottom:447.405000px;}
.y14{bottom:450.120000px;}
.y35{bottom:472.905000px;}
.y56{bottom:476.220000px;}
.y13{bottom:488.505000px;}
.y73{bottom:488.820000px;}
.y34{bottom:496.605000px;}
.y55{bottom:502.905000px;}
.y12{bottom:512.550000px;}
.y33{bottom:520.350000px;}
.y11{bottom:536.250000px;}
.y54{bottom:543.750000px;}
.y72{bottom:550.650000px;}
.y32{bottom:556.050000px;}
.y10{bottom:574.050000px;}
.y31{bottom:581.250000px;}
.y53{bottom:583.350000px;}
.y71{bottom:592.050000px;}
.yf{bottom:603.450000px;}
.y52{bottom:609.750000px;}
.y70{bottom:615.750000px;}
.y30{bottom:619.650000px;}
.ye{bottom:627.150000px;}
.y51{bottom:637.650000px;}
.y6f{bottom:639.450000px;}
.y2f{bottom:643.350000px;}
.yd{bottom:650.850000px;}
.y50{bottom:662.295000px;}
.y6e{bottom:664.080000px;}
.y2e{bottom:667.080000px;}
.yc{bottom:686.595000px;}
.y4f{bottom:686.880000px;}
.y6d{bottom:687.795000px;}
.y2d{bottom:691.995000px;}
.y4e{bottom:711.495000px;}
.yb{bottom:722.280000px;}
.y2c{bottom:730.395000px;}
.y6c{bottom:735.195000px;}
.y4d{bottom:749.595000px;}
.y2b{bottom:754.095000px;}
.ya{bottom:757.995000px;}
.y6b{bottom:773.295000px;}
.y2a{bottom:778.995000px;}
.y9{bottom:781.695000px;}
.y4c{bottom:790.080000px;}
.y6a{bottom:811.725000px;}
.y8{bottom:817.425000px;}
.y4b{bottom:831.525000px;}
.y69{bottom:835.425000px;}
.y7{bottom:841.125000px;}
.y4a{bottom:855.225000px;}
.y68{bottom:859.125000px;}
.y6{bottom:864.825000px;}
.y29{bottom:866.325000px;}
.y49{bottom:878.925000px;}
.y67{bottom:884.025000px;}
.y5{bottom:902.925000px;}
.y48{bottom:903.825000px;}
.y28{bottom:904.725000px;}
.y66{bottom:924.525000px;}
.y27{bottom:928.425000px;}
.y47{bottom:942.225000px;}
.y4{bottom:947.625000px;}
.y26{bottom:952.125000px;}
.y46{bottom:965.955000px;}
.y3{bottom:983.370000px;}
.y25{bottom:987.870000px;}
.y45{bottom:989.670000px;}
.y65{bottom:989.955000px;}
.y24{bottom:1011.570000px;}
.y44{bottom:1013.670000px;}
.y64{bottom:1014.570000px;}
.y2{bottom:1018.755000px;}
.y23{bottom:1035.255000px;}
.y43{bottom:1037.370000px;}
.y63{bottom:1039.170000px;}
.y1{bottom:1054.455000px;}
.y22{bottom:1060.170000px;}
.y42{bottom:1061.955000px;}
.y62{bottom:1062.870000px;}
.h7{height:57.937500px;}
.h3{height:71.613281px;}
.h4{height:73.722656px;}
.h6{height:75.093750px;}
.h5{height:86.009766px;}
.h8{height:87.609375px;}
.h2{height:98.296875px;}
.h1{height:110.583984px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:108.037500px;}
.xa{left:135.037500px;}
.x5{left:162.030000px;}
.x6{left:189.075000px;}
.x1{left:209.775000px;}
.x7{left:216.075000px;}
.x8{left:243.075000px;}
.x9{left:270.075000px;}
.x2{left:297.405000px;}
.x3{left:459.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.597333pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.234667pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.277333pt;}
.ls8{letter-spacing:0.416000pt;}
.ls0{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.469333pt;}
.lsd{letter-spacing:0.586667pt;}
.ls2{letter-spacing:39.808000pt;}
.lsb{letter-spacing:41.109333pt;}
.lse{letter-spacing:48.314667pt;}
.ls1{letter-spacing:48.341333pt;}
.ws8{word-spacing:-74.666667pt;}
.ws9{word-spacing:-16.874667pt;}
.wsa{word-spacing:-16.640000pt;}
.ws4{word-spacing:-15.716267pt;}
.ws0{word-spacing:-14.528000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.272000pt;}
.ws1{word-spacing:-14.144000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.152000pt;}
._1{width:0.949333pt;}
._2{width:1.952000pt;}
._3{width:2.970667pt;}
._4{width:4.032000pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:56.533333pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:101.100000pt;}
.y7e{bottom:105.366667pt;}
.y61{bottom:110.700000pt;}
.y7d{bottom:127.233333pt;}
.y60{bottom:131.766667pt;}
.y41{bottom:132.033333pt;}
.y20{bottom:132.833333pt;}
.y40{bottom:154.160000pt;}
.y1f{bottom:154.706667pt;}
.y7c{bottom:159.773333pt;}
.y5f{bottom:164.293333pt;}
.y1e{bottom:175.773333pt;}
.y3f{bottom:188.333333pt;}
.y7b{bottom:193.400000pt;}
.y1d{bottom:197.133333pt;}
.y5e{bottom:198.200000pt;}
.y3e{bottom:209.400000pt;}
.y1c{bottom:218.200000pt;}
.y7a{bottom:230.200000pt;}
.y3d{bottom:230.466667pt;}
.y5d{bottom:235.000000pt;}
.y1b{bottom:239.266667pt;}
.y79{bottom:251.266667pt;}
.y3c{bottom:251.533333pt;}
.y1a{bottom:260.333333pt;}
.y5c{bottom:266.733333pt;}
.y19{bottom:281.400000pt;}
.y3b{bottom:283.266667pt;}
.y78{bottom:285.133333pt;}
.y5b{bottom:288.600000pt;}
.y18{bottom:302.466667pt;}
.y3a{bottom:304.333333pt;}
.y5a{bottom:310.733333pt;}
.y77{bottom:321.960000pt;}
.y17{bottom:324.373333pt;}
.y39{bottom:325.440000pt;}
.y59{bottom:332.626667pt;}
.y76{bottom:343.040000pt;}
.y16{bottom:345.440000pt;}
.y38{bottom:346.506667pt;}
.y58{bottom:354.506667pt;}
.y75{bottom:364.106667pt;}
.y37{bottom:367.560000pt;}
.y15{bottom:377.973333pt;}
.y57{bottom:388.106667pt;}
.y36{bottom:388.640000pt;}
.y74{bottom:397.693333pt;}
.y14{bottom:400.106667pt;}
.y35{bottom:420.360000pt;}
.y56{bottom:423.306667pt;}
.y13{bottom:434.226667pt;}
.y73{bottom:434.506667pt;}
.y34{bottom:441.426667pt;}
.y55{bottom:447.026667pt;}
.y12{bottom:455.600000pt;}
.y33{bottom:462.533333pt;}
.y11{bottom:476.666667pt;}
.y54{bottom:483.333333pt;}
.y72{bottom:489.466667pt;}
.y32{bottom:494.266667pt;}
.y10{bottom:510.266667pt;}
.y31{bottom:516.666667pt;}
.y53{bottom:518.533333pt;}
.y71{bottom:526.266667pt;}
.yf{bottom:536.400000pt;}
.y52{bottom:542.000000pt;}
.y70{bottom:547.333333pt;}
.y30{bottom:550.800000pt;}
.ye{bottom:557.466667pt;}
.y51{bottom:566.800000pt;}
.y6f{bottom:568.400000pt;}
.y2f{bottom:571.866667pt;}
.yd{bottom:578.533333pt;}
.y50{bottom:588.706667pt;}
.y6e{bottom:590.293333pt;}
.y2e{bottom:592.960000pt;}
.yc{bottom:610.306667pt;}
.y4f{bottom:610.560000pt;}
.y6d{bottom:611.373333pt;}
.y2d{bottom:615.106667pt;}
.y4e{bottom:632.440000pt;}
.yb{bottom:642.026667pt;}
.y2c{bottom:649.240000pt;}
.y6c{bottom:653.506667pt;}
.y4d{bottom:666.306667pt;}
.y2b{bottom:670.306667pt;}
.ya{bottom:673.773333pt;}
.y6b{bottom:687.373333pt;}
.y2a{bottom:692.440000pt;}
.y9{bottom:694.840000pt;}
.y4c{bottom:702.293333pt;}
.y6a{bottom:721.533333pt;}
.y8{bottom:726.600000pt;}
.y4b{bottom:739.133333pt;}
.y69{bottom:742.600000pt;}
.y7{bottom:747.666667pt;}
.y4a{bottom:760.200000pt;}
.y68{bottom:763.666667pt;}
.y6{bottom:768.733333pt;}
.y29{bottom:770.066667pt;}
.y49{bottom:781.266667pt;}
.y67{bottom:785.800000pt;}
.y5{bottom:802.600000pt;}
.y48{bottom:803.400000pt;}
.y28{bottom:804.200000pt;}
.y66{bottom:821.800000pt;}
.y27{bottom:825.266667pt;}
.y47{bottom:837.533333pt;}
.y4{bottom:842.333333pt;}
.y26{bottom:846.333333pt;}
.y46{bottom:858.626667pt;}
.y3{bottom:874.106667pt;}
.y25{bottom:878.106667pt;}
.y45{bottom:879.706667pt;}
.y65{bottom:879.960000pt;}
.y24{bottom:899.173333pt;}
.y44{bottom:901.040000pt;}
.y64{bottom:901.840000pt;}
.y2{bottom:905.560000pt;}
.y23{bottom:920.226667pt;}
.y43{bottom:922.106667pt;}
.y63{bottom:923.706667pt;}
.y1{bottom:937.293333pt;}
.y22{bottom:942.373333pt;}
.y42{bottom:943.960000pt;}
.y62{bottom:944.773333pt;}
.h7{height:51.500000pt;}
.h3{height:63.656250pt;}
.h4{height:65.531250pt;}
.h6{height:66.750000pt;}
.h5{height:76.453125pt;}
.h8{height:77.875000pt;}
.h2{height:87.375000pt;}
.h1{height:98.296875pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:96.033333pt;}
.xa{left:120.033333pt;}
.x5{left:144.026667pt;}
.x6{left:168.066667pt;}
.x1{left:186.466667pt;}
.x7{left:192.066667pt;}
.x8{left:216.066667pt;}
.x9{left:240.066667pt;}
.x2{left:264.360000pt;}
.x3{left:408.133333pt;}
}




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