
    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_480da546d6864847b77b8def.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_ab5738f08496b04e0e1916c2.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_c7d0221dfe33e35c807c0c69.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_902876ae749474db2e024131.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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);}
.v2{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.880000px;}
.ls10{letter-spacing:-0.168480px;}
.ls7{letter-spacing:-0.131760px;}
.ls11{letter-spacing:-0.084240px;}
.ls8{letter-spacing:-0.065880px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000720px;}
.lsc{letter-spacing:0.001080px;}
.ls5{letter-spacing:0.065880px;}
.lsb{letter-spacing:0.078840px;}
.lsf{letter-spacing:0.126360px;}
.ls9{letter-spacing:0.131760px;}
.lsd{letter-spacing:0.168840px;}
.ls13{letter-spacing:0.197640px;}
.ls1{letter-spacing:0.245160px;}
.ls12{letter-spacing:0.263520px;}
.lse{letter-spacing:0.302400px;}
.ls14{letter-spacing:0.329400px;}
.ls4{letter-spacing:34.982280px;}
.ls3{letter-spacing:38.210400px;}
.ls0{letter-spacing:39.659760px;}
.ls2{letter-spacing:59.423760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-65.880000px;}
.ws4{word-spacing:-15.020640px;}
.ws0{word-spacing:-14.954760px;}
.wsc{word-spacing:-14.888880px;}
.ws3{word-spacing:-14.823000px;}
.wse{word-spacing:-14.757120px;}
.wsd{word-spacing:-9.645480px;}
.ws1{word-spacing:-9.519120px;}
.ws10{word-spacing:-9.434880px;}
.wsf{word-spacing:-9.350640px;}
.ws12{word-spacing:-0.329400px;}
.wsa{word-spacing:-0.263520px;}
.ws7{word-spacing:-0.197640px;}
.ws6{word-spacing:-0.131760px;}
.ws9{word-spacing:-0.065880px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:0.065880px;}
.ws14{word-spacing:0.131760px;}
.ws13{word-spacing:0.197640px;}
.ws11{word-spacing:0.263520px;}
.ws8{word-spacing:0.329400px;}
._1{margin-left:-1.073844px;}
._0{width:1.100196px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:42.120000px;}
.fs0{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.y34{bottom:4.410000px;}
.y32{bottom:4.500000px;}
.y48{bottom:111.150000px;}
.y68{bottom:117.089010px;}
.y47{bottom:127.620000px;}
.y46{bottom:148.500000px;}
.y67{bottom:155.250000px;}
.y45{bottom:169.380000px;}
.y66{bottom:171.630000px;}
.y21{bottom:174.058020px;}
.y65{bottom:194.940000px;}
.y20{bottom:212.219010px;}
.y44{bottom:212.765130px;}
.y64{bottom:218.160000px;}
.y63{bottom:241.380000px;}
.y1f{bottom:250.385130px;}
.y43{bottom:250.926120px;}
.y62{bottom:264.690000px;}
.y42{bottom:274.047300px;}
.y1e{bottom:288.546120px;}
.y41{bottom:297.274140px;}
.y61{bottom:310.430340px;}
.y1d{bottom:311.677560px;}
.y40{bottom:320.398020px;}
.y60{bottom:333.554220px;}
.y1c{bottom:349.838550px;}
.y5f{bottom:356.776920px;}
.y3f{bottom:358.559010px;}
.y1b{bottom:388.081890px;}
.y5e{bottom:394.937910px;}
.y3e{bottom:396.720000px;}
.y1a{bottom:412.029270px;}
.y3d{bottom:413.190000px;}
.y5d{bottom:418.061790px;}
.y3c{bottom:434.070000px;}
.y19{bottom:436.059000px;}
.y5c{bottom:441.185670px;}
.y3b{bottom:454.950000px;}
.y18{bottom:460.171080px;}
.y3a{bottom:475.830000px;}
.y5b{bottom:479.346660px;}
.y17{bottom:484.200810px;}
.y39{bottom:496.710000px;}
.y16{bottom:508.230540px;}
.y38{bottom:517.590000px;}
.y15{bottom:532.260270px;}
.y5a{bottom:533.970000px;}
.y37{bottom:538.470000px;}
.y59{bottom:554.850000px;}
.y14{bottom:556.296390px;}
.y36{bottom:559.350000px;}
.y58{bottom:575.730000px;}
.y13{bottom:579.420270px;}
.y35{bottom:580.320000px;}
.y33{bottom:601.200000px;}
.y12{bottom:603.468810px;}
.y57{bottom:619.113420px;}
.y31{bottom:622.080000px;}
.y11{bottom:627.580890px;}
.y56{bottom:642.336120px;}
.y30{bottom:665.472960px;}
.y55{bottom:665.475660px;}
.y10{bottom:665.741880px;}
.y2f{bottom:688.596840px;}
.y54{bottom:688.599540px;}
.yf{bottom:703.902870px;}
.y2e{bottom:711.819540px;}
.y53{bottom:711.822240px;}
.ye{bottom:727.026750px;}
.y2d{bottom:734.943420px;}
.y52{bottom:734.946120px;}
.y2c{bottom:758.067300px;}
.yd{bottom:765.187740px;}
.y2b{bottom:781.296120px;}
.y51{bottom:781.316640px;}
.yc{bottom:803.431080px;}
.y2a{bottom:804.434400px;}
.y50{bottom:804.440520px;}
.yb{bottom:827.378460px;}
.y29{bottom:827.657100px;}
.y4f{bottom:827.663220px;}
.y28{bottom:850.780980px;}
.y4e{bottom:850.787100px;}
.ya{bottom:851.408190px;}
.y27{bottom:873.904860px;}
.y4d{bottom:873.910980px;}
.y9{bottom:875.437920px;}
.y26{bottom:897.127560px;}
.y4c{bottom:897.133680px;}
.y8{bottom:899.550810px;}
.y25{bottom:920.251440px;}
.y7{bottom:923.580540px;}
.y4b{bottom:935.294670px;}
.y24{bottom:943.375320px;}
.y6{bottom:947.610270px;}
.y5{bottom:971.643960px;}
.y4a{bottom:973.455660px;}
.y23{bottom:981.536310px;}
.y4{bottom:995.673690px;}
.y49{bottom:996.579540px;}
.y22{bottom:1019.697300px;}
.y3{bottom:1019.703420px;}
.y2{bottom:1042.926120px;}
.y1{bottom:1066.050000px;}
.hb{height:20.068500px;}
.ha{height:20.070000px;}
.h8{height:20.160000px;}
.hc{height:20.161500px;}
.h10{height:22.498500px;}
.h11{height:22.500000px;}
.he{height:45.646348px;}
.h2{height:47.286914px;}
.hf{height:60.006057px;}
.h7{height:60.055017px;}
.h4{height:60.082377px;}
.h3{height:60.087057px;}
.h6{height:60.088137px;}
.h5{height:60.092097px;}
.h9{height:60.112617px;}
.hd{height:60.123417px;}
.h1{height:68.710781px;}
.h0{height:1188.000000px;}
.w10{width:71.280000px;}
.w11{width:74.878500px;}
.w12{width:84.960000px;}
.wb{width:96.030000px;}
.w6{width:104.940000px;}
.wf{width:106.020000px;}
.w8{width:106.740000px;}
.w7{width:108.450000px;}
.w9{width:112.680000px;}
.wa{width:118.800000px;}
.w5{width:127.890000px;}
.w1{width:129.060000px;}
.w2{width:129.690000px;}
.w4{width:130.680000px;}
.w3{width:130.950000px;}
.wc{width:168.930000px;}
.wd{width:168.931500px;}
.we{width:169.110000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x15{left:42.030000px;}
.x17{left:46.800000px;}
.x16{left:52.110000px;}
.x14{left:55.170000px;}
.x1{left:127.620000px;}
.x4{left:146.880000px;}
.x2{left:154.627200px;}
.xf{left:171.180000px;}
.x3{left:181.615680px;}
.xa{left:252.540000px;}
.x6{left:276.660000px;}
.x13{left:328.410000px;}
.x10{left:340.920000px;}
.xb{left:361.710000px;}
.x7{left:407.070000px;}
.xc{left:469.170000px;}
.x11{left:510.570000px;}
.x8{left:538.740000px;}
.xd{left:582.570000px;}
.x9{left:670.230000px;}
.x12{left:680.400000px;}
.xe{left:702.090000px;}
@media print{
.v2{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.560000pt;}
.ls10{letter-spacing:-0.149760pt;}
.ls7{letter-spacing:-0.117120pt;}
.ls11{letter-spacing:-0.074880pt;}
.ls8{letter-spacing:-0.058560pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000640pt;}
.lsc{letter-spacing:0.000960pt;}
.ls5{letter-spacing:0.058560pt;}
.lsb{letter-spacing:0.070080pt;}
.lsf{letter-spacing:0.112320pt;}
.ls9{letter-spacing:0.117120pt;}
.lsd{letter-spacing:0.150080pt;}
.ls13{letter-spacing:0.175680pt;}
.ls1{letter-spacing:0.217920pt;}
.ls12{letter-spacing:0.234240pt;}
.lse{letter-spacing:0.268800pt;}
.ls14{letter-spacing:0.292800pt;}
.ls4{letter-spacing:31.095360pt;}
.ls3{letter-spacing:33.964800pt;}
.ls0{letter-spacing:35.253120pt;}
.ls2{letter-spacing:52.821120pt;}
.ws2{word-spacing:-58.560000pt;}
.ws4{word-spacing:-13.351680pt;}
.ws0{word-spacing:-13.293120pt;}
.wsc{word-spacing:-13.234560pt;}
.ws3{word-spacing:-13.176000pt;}
.wse{word-spacing:-13.117440pt;}
.wsd{word-spacing:-8.573760pt;}
.ws1{word-spacing:-8.461440pt;}
.ws10{word-spacing:-8.386560pt;}
.wsf{word-spacing:-8.311680pt;}
.ws12{word-spacing:-0.292800pt;}
.wsa{word-spacing:-0.234240pt;}
.ws7{word-spacing:-0.175680pt;}
.ws6{word-spacing:-0.117120pt;}
.ws9{word-spacing:-0.058560pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:0.058560pt;}
.ws14{word-spacing:0.117120pt;}
.ws13{word-spacing:0.175680pt;}
.ws11{word-spacing:0.234240pt;}
.ws8{word-spacing:0.292800pt;}
._1{margin-left:-0.954528pt;}
._0{width:0.977952pt;}
.fs1{font-size:37.440000pt;}
.fs0{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.920000pt;}
.y32{bottom:4.000000pt;}
.y48{bottom:98.800000pt;}
.y68{bottom:104.079120pt;}
.y47{bottom:113.440000pt;}
.y46{bottom:132.000000pt;}
.y67{bottom:138.000000pt;}
.y45{bottom:150.560000pt;}
.y66{bottom:152.560000pt;}
.y21{bottom:154.718240pt;}
.y65{bottom:173.280000pt;}
.y20{bottom:188.639120pt;}
.y44{bottom:189.124560pt;}
.y64{bottom:193.920000pt;}
.y63{bottom:214.560000pt;}
.y1f{bottom:222.564560pt;}
.y43{bottom:223.045440pt;}
.y62{bottom:235.280000pt;}
.y42{bottom:243.597600pt;}
.y1e{bottom:256.485440pt;}
.y41{bottom:264.243680pt;}
.y61{bottom:275.938080pt;}
.y1d{bottom:277.046720pt;}
.y40{bottom:284.798240pt;}
.y60{bottom:296.492640pt;}
.y1c{bottom:310.967600pt;}
.y5f{bottom:317.135040pt;}
.y3f{bottom:318.719120pt;}
.y1b{bottom:344.961680pt;}
.y5e{bottom:351.055920pt;}
.y3e{bottom:352.640000pt;}
.y1a{bottom:366.248240pt;}
.y3d{bottom:367.280000pt;}
.y5d{bottom:371.610480pt;}
.y3c{bottom:385.840000pt;}
.y19{bottom:387.608000pt;}
.y5c{bottom:392.165040pt;}
.y3b{bottom:404.400000pt;}
.y18{bottom:409.040960pt;}
.y3a{bottom:422.960000pt;}
.y5b{bottom:426.085920pt;}
.y17{bottom:430.400720pt;}
.y39{bottom:441.520000pt;}
.y16{bottom:451.760480pt;}
.y38{bottom:460.080000pt;}
.y15{bottom:473.120240pt;}
.y5a{bottom:474.640000pt;}
.y37{bottom:478.640000pt;}
.y59{bottom:493.200000pt;}
.y14{bottom:494.485680pt;}
.y36{bottom:497.200000pt;}
.y58{bottom:511.760000pt;}
.y13{bottom:515.040240pt;}
.y35{bottom:515.840000pt;}
.y33{bottom:534.400000pt;}
.y12{bottom:536.416720pt;}
.y57{bottom:550.323040pt;}
.y31{bottom:552.960000pt;}
.y11{bottom:557.849680pt;}
.y56{bottom:570.965440pt;}
.y30{bottom:591.531520pt;}
.y55{bottom:591.533920pt;}
.y10{bottom:591.770560pt;}
.y2f{bottom:612.086080pt;}
.y54{bottom:612.088480pt;}
.yf{bottom:625.691440pt;}
.y2e{bottom:632.728480pt;}
.y53{bottom:632.730880pt;}
.ye{bottom:646.246000pt;}
.y2d{bottom:653.283040pt;}
.y52{bottom:653.285440pt;}
.y2c{bottom:673.837600pt;}
.yd{bottom:680.166880pt;}
.y2b{bottom:694.485440pt;}
.y51{bottom:694.503680pt;}
.yc{bottom:714.160960pt;}
.y2a{bottom:715.052800pt;}
.y50{bottom:715.058240pt;}
.yb{bottom:735.447520pt;}
.y29{bottom:735.695200pt;}
.y4f{bottom:735.700640pt;}
.y28{bottom:756.249760pt;}
.y4e{bottom:756.255200pt;}
.ya{bottom:756.807280pt;}
.y27{bottom:776.804320pt;}
.y4d{bottom:776.809760pt;}
.y9{bottom:778.167040pt;}
.y26{bottom:797.446720pt;}
.y4c{bottom:797.452160pt;}
.y8{bottom:799.600720pt;}
.y25{bottom:818.001280pt;}
.y7{bottom:820.960480pt;}
.y4b{bottom:831.373040pt;}
.y24{bottom:838.555840pt;}
.y6{bottom:842.320240pt;}
.y5{bottom:863.683520pt;}
.y4a{bottom:865.293920pt;}
.y23{bottom:872.476720pt;}
.y4{bottom:885.043280pt;}
.y49{bottom:885.848480pt;}
.y22{bottom:906.397600pt;}
.y3{bottom:906.403040pt;}
.y2{bottom:927.045440pt;}
.y1{bottom:947.600000pt;}
.hb{height:17.838667pt;}
.ha{height:17.840000pt;}
.h8{height:17.920000pt;}
.hc{height:17.921333pt;}
.h10{height:19.998667pt;}
.h11{height:20.000000pt;}
.he{height:40.574531pt;}
.h2{height:42.032812pt;}
.hf{height:53.338717pt;}
.h7{height:53.382237pt;}
.h4{height:53.406558pt;}
.h3{height:53.410717pt;}
.h6{height:53.411677pt;}
.h5{height:53.415198pt;}
.h9{height:53.433438pt;}
.hd{height:53.443037pt;}
.h1{height:61.076250pt;}
.h0{height:1056.000000pt;}
.w10{width:63.360000pt;}
.w11{width:66.558667pt;}
.w12{width:75.520000pt;}
.wb{width:85.360000pt;}
.w6{width:93.280000pt;}
.wf{width:94.240000pt;}
.w8{width:94.880000pt;}
.w7{width:96.400000pt;}
.w9{width:100.160000pt;}
.wa{width:105.600000pt;}
.w5{width:113.680000pt;}
.w1{width:114.720000pt;}
.w2{width:115.280000pt;}
.w4{width:116.160000pt;}
.w3{width:116.400000pt;}
.wc{width:150.160000pt;}
.wd{width:150.161333pt;}
.we{width:150.320000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x15{left:37.360000pt;}
.x17{left:41.600000pt;}
.x16{left:46.320000pt;}
.x14{left:49.040000pt;}
.x1{left:113.440000pt;}
.x4{left:130.560000pt;}
.x2{left:137.446400pt;}
.xf{left:152.160000pt;}
.x3{left:161.436160pt;}
.xa{left:224.480000pt;}
.x6{left:245.920000pt;}
.x13{left:291.920000pt;}
.x10{left:303.040000pt;}
.xb{left:321.520000pt;}
.x7{left:361.840000pt;}
.xc{left:417.040000pt;}
.x11{left:453.840000pt;}
.x8{left:478.880000pt;}
.xd{left:517.840000pt;}
.x9{left:595.760000pt;}
.x12{left:604.800000pt;}
.xe{left:624.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; }
  