
    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_8ff302556276d173b58fa299.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_a3afab249c30be5215ca0d7b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040000;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_884daa15567fa97541fc5fc4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.754000;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_fa54e8dd0207a1761c1606ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.114746;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_4f8981c310ac35f2d4d0a077.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.015000;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_eea8c5f68b00b326e7749e30.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.015000;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:ff7;src:url('chunks/assets/font_f82a80823b99ba126205d92b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.264000px;}
.ls4{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.360000px;}
.ls1{letter-spacing:1.080000px;}
.ls0{letter-spacing:11.160000px;}
.ls6{letter-spacing:33.567696px;}
.ls7{letter-spacing:33.696000px;}
.lsb{letter-spacing:95.982048px;}
.lsa{letter-spacing:96.048000px;}
.ls9{letter-spacing:97.509600px;}
.ls8{letter-spacing:97.560000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-62.419392px;}
.wsf{word-spacing:-62.340480px;}
.ws8{word-spacing:-29.405376px;}
.ws7{word-spacing:-29.376000px;}
.ws9{word-spacing:-29.333376px;}
.ws5{word-spacing:-24.528960px;}
.wse{word-spacing:-23.207040px;}
.ws10{word-spacing:-22.972416px;}
.ws6{word-spacing:-22.032000px;}
.ws1{word-spacing:-19.535040px;}
.wsa{word-spacing:-11.376000px;}
.ws0{word-spacing:-11.016000px;}
.wsb{word-spacing:-0.841104px;}
.wsc{word-spacing:-0.432000px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:0.432000px;}
.ws3{word-spacing:83.808000px;}
.ws4{word-spacing:83.891808px;}
._8{margin-left:-8.784000px;}
._7{margin-left:-6.272352px;}
._4{margin-left:-4.672080px;}
._3{margin-left:-2.721120px;}
._0{margin-left:-1.242000px;}
._1{width:1.080000px;}
._6{width:2.172000px;}
._9{width:3.676080px;}
._5{width:113.184000px;}
._2{width:2508.438000px;}
.fc3{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(225,0,25);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:7.200000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fsb{font-size:113.760000px;}
.fsc{font-size:113.904000px;}
.fs9{font-size:120.240000px;}
.fs7{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs3{font-size:156.240000px;}
.fs6{font-size:156.384000px;}
.fsd{font-size:180.144000px;}
.y0{bottom:0.000000px;}
.y3{bottom:14.760000px;}
.y2{bottom:22.860000px;}
.y4{bottom:26.136000px;}
.y1{bottom:42.156000px;}
.y17{bottom:91.296000px;}
.y16{bottom:95.544000px;}
.y4d{bottom:100.620000px;}
.yb{bottom:107.676000px;}
.y4c{bottom:134.856000px;}
.ya{bottom:136.476000px;}
.y2b{bottom:147.924000px;}
.y4b{bottom:169.050000px;}
.y9{bottom:174.990000px;}
.y2a{bottom:191.160000px;}
.y4a{bottom:212.250000px;}
.y29{bottom:234.360000px;}
.y49{bottom:246.450000px;}
.y22{bottom:251.490000px;}
.y28{bottom:277.560000px;}
.y48{bottom:280.695000px;}
.y21{bottom:283.890000px;}
.y2f{bottom:286.560000px;}
.y20{bottom:316.290000px;}
.y34{bottom:320.790000px;}
.y47{bottom:323.895000px;}
.y27{bottom:329.790000px;}
.y2e{bottom:338.790000px;}
.y1f{bottom:348.690000px;}
.y46{bottom:358.095000px;}
.y3c{bottom:361.185000px;}
.y6{bottom:364.110000px;}
.y33{bottom:372.990000px;}
.y11{bottom:373.065000px;}
.y1e{bottom:381.090000px;}
.y26{bottom:381.990000px;}
.y45{bottom:392.295000px;}
.y3b{bottom:404.430000px;}
.y1d{bottom:413.535000px;}
.y5{bottom:414.510000px;}
.y32{bottom:416.190000px;}
.y25{bottom:425.190000px;}
.y10{bottom:432.825000px;}
.y2d{bottom:434.190000px;}
.y44{bottom:435.495000px;}
.y7{bottom:440.205000px;}
.y1c{bottom:445.935000px;}
.y3a{bottom:447.630000px;}
.y31{bottom:468.390000px;}
.y43{bottom:469.725000px;}
.y24{bottom:477.435000px;}
.y1b{bottom:478.335000px;}
.y39{bottom:490.830000px;}
.yf{bottom:492.585000px;}
.y42{bottom:503.925000px;}
.y1a{bottom:510.735000px;}
.y23{bottom:520.635000px;}
.y8{bottom:525.030000px;}
.y15{bottom:529.635000px;}
.y38{bottom:534.030000px;}
.y41{bottom:538.125000px;}
.y19{bottom:543.135000px;}
.ye{bottom:552.210000px;}
.y30{bottom:563.835000px;}
.y14{bottom:572.835000px;}
.y18{bottom:575.565000px;}
.y37{bottom:577.260000px;}
.y40{bottom:581.325000px;}
.yd{bottom:611.970000px;}
.y3f{bottom:615.570000px;}
.y2c{bottom:616.035000px;}
.y36{bottom:620.460000px;}
.y13{bottom:625.035000px;}
.y3e{bottom:649.770000px;}
.y4e{bottom:650.850000px;}
.y12{bottom:668.265000px;}
.y35{bottom:671.040000px;}
.y3d{bottom:683.970000px;}
.yc{bottom:738.615000px;}
.h3{height:7.161328px;}
.h2{height:16.380000px;}
.h4{height:43.146000px;}
.h1{height:44.496000px;}
.h6{height:67.307760px;}
.h5{height:69.413760px;}
.h9{height:78.906240px;}
.h8{height:80.352000px;}
.he{height:86.292000px;}
.hf{height:86.407056px;}
.h10{height:90.894240px;}
.h11{height:91.009296px;}
.hd{height:96.071760px;}
.hb{height:115.056000px;}
.hc{height:115.171056px;}
.h7{height:128.741760px;}
.ha{height:128.860416px;}
.h12{height:143.935056px;}
.h0{height:810.000000px;}
.w2{width:52.920000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5{left:56.519979px;}
.x6{left:97.019979px;}
.x9{left:110.519979px;}
.x4{left:124.667979px;}
.x3{left:130.355979px;}
.xa{left:151.019979px;}
.x1{left:206.384979px;}
.xb{left:364.394979px;}
.x8{left:458.714979px;}
.x7{left:491.909979px;}
.x2{left:869.685000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.234667pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.960000pt;}
.ls0{letter-spacing:9.920000pt;}
.ls6{letter-spacing:29.837952pt;}
.ls7{letter-spacing:29.952000pt;}
.lsb{letter-spacing:85.317376pt;}
.lsa{letter-spacing:85.376000pt;}
.ls9{letter-spacing:86.675200pt;}
.ls8{letter-spacing:86.720000pt;}
.ws11{word-spacing:-55.483904pt;}
.wsf{word-spacing:-55.413760pt;}
.ws8{word-spacing:-26.138112pt;}
.ws7{word-spacing:-26.112000pt;}
.ws9{word-spacing:-26.074112pt;}
.ws5{word-spacing:-21.803520pt;}
.wse{word-spacing:-20.628480pt;}
.ws10{word-spacing:-20.419925pt;}
.ws6{word-spacing:-19.584000pt;}
.ws1{word-spacing:-17.364480pt;}
.wsa{word-spacing:-10.112000pt;}
.ws0{word-spacing:-9.792000pt;}
.wsb{word-spacing:-0.747648pt;}
.wsc{word-spacing:-0.384000pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:0.384000pt;}
.ws3{word-spacing:74.496000pt;}
.ws4{word-spacing:74.570496pt;}
._8{margin-left:-7.808000pt;}
._7{margin-left:-5.575424pt;}
._4{margin-left:-4.152960pt;}
._3{margin-left:-2.418773pt;}
._0{margin-left:-1.104000pt;}
._1{width:0.960000pt;}
._6{width:1.930667pt;}
._9{width:3.267627pt;}
._5{width:100.608000pt;}
._2{width:2229.722667pt;}
.fs1{font-size:6.400000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fsb{font-size:101.120000pt;}
.fsc{font-size:101.248000pt;}
.fs9{font-size:106.880000pt;}
.fs7{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs3{font-size:138.880000pt;}
.fs6{font-size:139.008000pt;}
.fsd{font-size:160.128000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:13.120000pt;}
.y2{bottom:20.320000pt;}
.y4{bottom:23.232000pt;}
.y1{bottom:37.472000pt;}
.y17{bottom:81.152000pt;}
.y16{bottom:84.928000pt;}
.y4d{bottom:89.440000pt;}
.yb{bottom:95.712000pt;}
.y4c{bottom:119.872000pt;}
.ya{bottom:121.312000pt;}
.y2b{bottom:131.488000pt;}
.y4b{bottom:150.266667pt;}
.y9{bottom:155.546667pt;}
.y2a{bottom:169.920000pt;}
.y4a{bottom:188.666667pt;}
.y29{bottom:208.320000pt;}
.y49{bottom:219.066667pt;}
.y22{bottom:223.546667pt;}
.y28{bottom:246.720000pt;}
.y48{bottom:249.506667pt;}
.y21{bottom:252.346667pt;}
.y2f{bottom:254.720000pt;}
.y20{bottom:281.146667pt;}
.y34{bottom:285.146667pt;}
.y47{bottom:287.906667pt;}
.y27{bottom:293.146667pt;}
.y2e{bottom:301.146667pt;}
.y1f{bottom:309.946667pt;}
.y46{bottom:318.306667pt;}
.y3c{bottom:321.053333pt;}
.y6{bottom:323.653333pt;}
.y33{bottom:331.546667pt;}
.y11{bottom:331.613333pt;}
.y1e{bottom:338.746667pt;}
.y26{bottom:339.546667pt;}
.y45{bottom:348.706667pt;}
.y3b{bottom:359.493333pt;}
.y1d{bottom:367.586667pt;}
.y5{bottom:368.453333pt;}
.y32{bottom:369.946667pt;}
.y25{bottom:377.946667pt;}
.y10{bottom:384.733333pt;}
.y2d{bottom:385.946667pt;}
.y44{bottom:387.106667pt;}
.y7{bottom:391.293333pt;}
.y1c{bottom:396.386667pt;}
.y3a{bottom:397.893333pt;}
.y31{bottom:416.346667pt;}
.y43{bottom:417.533333pt;}
.y24{bottom:424.386667pt;}
.y1b{bottom:425.186667pt;}
.y39{bottom:436.293333pt;}
.yf{bottom:437.853333pt;}
.y42{bottom:447.933333pt;}
.y1a{bottom:453.986667pt;}
.y23{bottom:462.786667pt;}
.y8{bottom:466.693333pt;}
.y15{bottom:470.786667pt;}
.y38{bottom:474.693333pt;}
.y41{bottom:478.333333pt;}
.y19{bottom:482.786667pt;}
.ye{bottom:490.853333pt;}
.y30{bottom:501.186667pt;}
.y14{bottom:509.186667pt;}
.y18{bottom:511.613333pt;}
.y37{bottom:513.120000pt;}
.y40{bottom:516.733333pt;}
.yd{bottom:543.973333pt;}
.y3f{bottom:547.173333pt;}
.y2c{bottom:547.586667pt;}
.y36{bottom:551.520000pt;}
.y13{bottom:555.586667pt;}
.y3e{bottom:577.573333pt;}
.y4e{bottom:578.533333pt;}
.y12{bottom:594.013333pt;}
.y35{bottom:596.480000pt;}
.y3d{bottom:607.973333pt;}
.yc{bottom:656.546667pt;}
.h3{height:6.365625pt;}
.h2{height:14.560000pt;}
.h4{height:38.352000pt;}
.h1{height:39.552000pt;}
.h6{height:59.829120pt;}
.h5{height:61.701120pt;}
.h9{height:70.138880pt;}
.h8{height:71.424000pt;}
.he{height:76.704000pt;}
.hf{height:76.806272pt;}
.h10{height:80.794880pt;}
.h11{height:80.897152pt;}
.hd{height:85.397120pt;}
.hb{height:102.272000pt;}
.hc{height:102.374272pt;}
.h7{height:114.437120pt;}
.ha{height:114.542592pt;}
.h12{height:127.942272pt;}
.h0{height:720.000000pt;}
.w2{width:47.040000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5{left:50.239981pt;}
.x6{left:86.239981pt;}
.x9{left:98.239981pt;}
.x4{left:110.815981pt;}
.x3{left:115.871981pt;}
.xa{left:134.239981pt;}
.x1{left:183.453314pt;}
.xb{left:323.906648pt;}
.x8{left:407.746648pt;}
.x7{left:437.253314pt;}
.x2{left:773.053333pt;}
}




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