
    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_72f8670c5246e78f742384b1.woff')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_50c76556d1b0facbbe2dd6ab.woff')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_9476ac1d50f6d111721f8302.woff')format("woff");}.ff3{font-family:ff3;line-height:1.239258;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3f{word-spacing:-0.776628px;}
.ws36{word-spacing:-0.541500px;}
.ws0{word-spacing:0.000000px;}
.ws3b{word-spacing:0.384750px;}
.ws14{word-spacing:0.439716px;}
.ws24{word-spacing:1.335426px;}
.ws20{word-spacing:1.807716px;}
.ws40{word-spacing:1.815858px;}
.ws32{word-spacing:1.915200px;}
.ws1{word-spacing:3.180600px;}
.ws15{word-spacing:3.527664px;}
.ws3d{word-spacing:4.246500px;}
.ws43{word-spacing:4.457400px;}
.ws19{word-spacing:4.967142px;}
.ws18{word-spacing:4.991574px;}
.ws25{word-spacing:5.794998px;}
.ws26{word-spacing:6.954000px;}
.ws13{word-spacing:7.230858px;}
.ws33{word-spacing:9.499998px;}
.ws23{word-spacing:9.504750px;}
.ws3e{word-spacing:9.809700px;}
.ws8{word-spacing:9.942426px;}
.ws39{word-spacing:11.318574px;}
.ws1f{word-spacing:11.877378px;}
.ws22{word-spacing:12.255000px;}
.ws6{word-spacing:13.126284px;}
.ws30{word-spacing:13.150716px;}
.ws2c{word-spacing:13.590426px;}
.ws1a{word-spacing:13.717998px;}
.ws1e{word-spacing:14.469858px;}
.ws34{word-spacing:14.942142px;}
.wsb{word-spacing:16.285716px;}
.ws9{word-spacing:16.378002px;}
.ws4{word-spacing:16.473000px;}
.wsd{word-spacing:18.972858px;}
.ws5{word-spacing:19.038000px;}
.ws3c{word-spacing:20.280600px;}
.ws12{word-spacing:20.357142px;}
.ws38{word-spacing:20.605500px;}
.ws31{word-spacing:21.650502px;}
.ws2b{word-spacing:22.201500px;}
.ws41{word-spacing:22.845600px;}
.ws2f{word-spacing:23.754750px;}
.ws2{word-spacing:25.868502px;}
.ws1c{word-spacing:25.878000px;}
.ws21{word-spacing:26.191500px;}
.wsc{word-spacing:26.400498px;}
.ws1b{word-spacing:28.571250px;}
.ws16{word-spacing:31.019400px;}
.ws7{word-spacing:31.657800px;}
.ws2a{word-spacing:32.330400px;}
.ws35{word-spacing:33.791502px;}
.ws3{word-spacing:34.188600px;}
.ws17{word-spacing:34.846002px;}
.ws28{word-spacing:36.138000px;}
.ws2d{word-spacing:37.403400px;}
.ws3a{word-spacing:38.634600px;}
.wse{word-spacing:39.572250px;}
.ws42{word-spacing:43.002426px;}
.wsa{word-spacing:43.833000px;}
.ws27{word-spacing:44.953998px;}
.ws10{word-spacing:47.515200px;}
.wsf{word-spacing:47.526600px;}
.ws11{word-spacing:49.860750px;}
.ws29{word-spacing:56.430000px;}
.ws37{word-spacing:65.265000px;}
.ws1d{word-spacing:95.033280px;}
.ws2e{word-spacing:95.076000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:96.000000px;}
.y32{bottom:113.250000px;}
.y31{bottom:130.500000px;}
.y30{bottom:147.750000px;}
.y2f{bottom:165.000000px;}
.y2e{bottom:182.250000px;}
.y2d{bottom:199.500000px;}
.y2c{bottom:222.750000px;}
.y5f{bottom:233.250000px;}
.y5e{bottom:250.500000px;}
.y2b{bottom:255.750000px;}
.y5d{bottom:267.750000px;}
.y2a{bottom:273.000000px;}
.y5c{bottom:285.000000px;}
.y29{bottom:290.250000px;}
.y5b{bottom:302.250000px;}
.y28{bottom:307.500000px;}
.y5a{bottom:319.500000px;}
.y27{bottom:324.750000px;}
.y59{bottom:336.750000px;}
.y26{bottom:342.000000px;}
.y58{bottom:354.000000px;}
.y25{bottom:359.250000px;}
.y57{bottom:371.250000px;}
.y24{bottom:376.500000px;}
.y56{bottom:388.500000px;}
.y23{bottom:393.750000px;}
.y55{bottom:405.750000px;}
.y22{bottom:417.000000px;}
.y54{bottom:429.000000px;}
.y21{bottom:450.000000px;}
.y53{bottom:462.000000px;}
.y20{bottom:467.250000px;}
.y52{bottom:479.250000px;}
.y1f{bottom:484.500000px;}
.y51{bottom:496.500000px;}
.y1e{bottom:501.750000px;}
.y50{bottom:513.750000px;}
.y1d{bottom:519.000000px;}
.y4f{bottom:531.000000px;}
.y1c{bottom:536.250000px;}
.y4e{bottom:548.250000px;}
.y1b{bottom:553.500000px;}
.y4d{bottom:565.500000px;}
.y1a{bottom:570.750000px;}
.y19{bottom:588.000000px;}
.y4c{bottom:588.750000px;}
.y18{bottom:605.250000px;}
.y4b{bottom:621.750000px;}
.y17{bottom:622.500000px;}
.y4a{bottom:639.000000px;}
.y16{bottom:639.750000px;}
.y49{bottom:656.250000px;}
.y15{bottom:657.000000px;}
.y48{bottom:673.500000px;}
.y14{bottom:674.250000px;}
.y47{bottom:690.750000px;}
.y13{bottom:691.500000px;}
.y46{bottom:708.000000px;}
.y12{bottom:714.750000px;}
.y45{bottom:731.250000px;}
.y11{bottom:750.750000px;}
.y44{bottom:764.250000px;}
.y10{bottom:768.000000px;}
.y43{bottom:781.500000px;}
.yf{bottom:785.250000px;}
.y42{bottom:798.750000px;}
.ye{bottom:802.500000px;}
.y41{bottom:816.000000px;}
.yd{bottom:819.750000px;}
.y40{bottom:833.250000px;}
.yc{bottom:837.000000px;}
.y3f{bottom:850.500000px;}
.yb{bottom:854.250000px;}
.ya{bottom:871.500000px;}
.y3e{bottom:873.750000px;}
.y9{bottom:888.750000px;}
.y8{bottom:906.000000px;}
.y3d{bottom:906.750000px;}
.y7{bottom:923.250000px;}
.y3c{bottom:924.000000px;}
.y6{bottom:940.500000px;}
.y3b{bottom:941.250000px;}
.y5{bottom:957.750000px;}
.y3a{bottom:958.500000px;}
.y39{bottom:975.750000px;}
.y4{bottom:990.000000px;}
.y38{bottom:993.000000px;}
.y37{bottom:1010.250000px;}
.y3{bottom:1023.000000px;}
.y36{bottom:1027.500000px;}
.y2{bottom:1050.000000px;}
.y35{bottom:1050.750000px;}
.y1{bottom:1077.000000px;}
.y34{bottom:1083.750000px;}
.h3{height:59.449219px;}
.h2{height:62.578125px;}
.h1{height:87.609375px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:63.000000px;}
.x2{left:77.220000px;}
.x4{left:79.785000px;}
.x1{left:97.023000px;}
.x3{left:177.558000px;}
.x6{left:478.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3f{word-spacing:-0.690336pt;}
.ws36{word-spacing:-0.481333pt;}
.ws0{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.342000pt;}
.ws14{word-spacing:0.390859pt;}
.ws24{word-spacing:1.187045pt;}
.ws20{word-spacing:1.606859pt;}
.ws40{word-spacing:1.614096pt;}
.ws32{word-spacing:1.702400pt;}
.ws1{word-spacing:2.827200pt;}
.ws15{word-spacing:3.135701pt;}
.ws3d{word-spacing:3.774667pt;}
.ws43{word-spacing:3.962133pt;}
.ws19{word-spacing:4.415237pt;}
.ws18{word-spacing:4.436955pt;}
.ws25{word-spacing:5.151109pt;}
.ws26{word-spacing:6.181333pt;}
.ws13{word-spacing:6.427429pt;}
.ws33{word-spacing:8.444443pt;}
.ws23{word-spacing:8.448667pt;}
.ws3e{word-spacing:8.719733pt;}
.ws8{word-spacing:8.837712pt;}
.ws39{word-spacing:10.060955pt;}
.ws1f{word-spacing:10.557669pt;}
.ws22{word-spacing:10.893333pt;}
.ws6{word-spacing:11.667808pt;}
.ws30{word-spacing:11.689525pt;}
.ws2c{word-spacing:12.080379pt;}
.ws1a{word-spacing:12.193776pt;}
.ws1e{word-spacing:12.862096pt;}
.ws34{word-spacing:13.281904pt;}
.wsb{word-spacing:14.476192pt;}
.ws9{word-spacing:14.558224pt;}
.ws4{word-spacing:14.642667pt;}
.wsd{word-spacing:16.864763pt;}
.ws5{word-spacing:16.922667pt;}
.ws3c{word-spacing:18.027200pt;}
.ws12{word-spacing:18.095237pt;}
.ws38{word-spacing:18.316000pt;}
.ws31{word-spacing:19.244891pt;}
.ws2b{word-spacing:19.734667pt;}
.ws41{word-spacing:20.307200pt;}
.ws2f{word-spacing:21.115333pt;}
.ws2{word-spacing:22.994224pt;}
.ws1c{word-spacing:23.002667pt;}
.ws21{word-spacing:23.281333pt;}
.wsc{word-spacing:23.467109pt;}
.ws1b{word-spacing:25.396667pt;}
.ws16{word-spacing:27.572800pt;}
.ws7{word-spacing:28.140267pt;}
.ws2a{word-spacing:28.738133pt;}
.ws35{word-spacing:30.036891pt;}
.ws3{word-spacing:30.389867pt;}
.ws17{word-spacing:30.974224pt;}
.ws28{word-spacing:32.122667pt;}
.ws2d{word-spacing:33.247467pt;}
.ws3a{word-spacing:34.341867pt;}
.wse{word-spacing:35.175333pt;}
.ws42{word-spacing:38.224379pt;}
.wsa{word-spacing:38.962667pt;}
.ws27{word-spacing:39.959109pt;}
.ws10{word-spacing:42.235733pt;}
.wsf{word-spacing:42.245867pt;}
.ws11{word-spacing:44.320667pt;}
.ws29{word-spacing:50.160000pt;}
.ws37{word-spacing:58.013333pt;}
.ws1d{word-spacing:84.474027pt;}
.ws2e{word-spacing:84.512000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:85.333333pt;}
.y32{bottom:100.666667pt;}
.y31{bottom:116.000000pt;}
.y30{bottom:131.333333pt;}
.y2f{bottom:146.666667pt;}
.y2e{bottom:162.000000pt;}
.y2d{bottom:177.333333pt;}
.y2c{bottom:198.000000pt;}
.y5f{bottom:207.333333pt;}
.y5e{bottom:222.666667pt;}
.y2b{bottom:227.333333pt;}
.y5d{bottom:238.000000pt;}
.y2a{bottom:242.666667pt;}
.y5c{bottom:253.333333pt;}
.y29{bottom:258.000000pt;}
.y5b{bottom:268.666667pt;}
.y28{bottom:273.333333pt;}
.y5a{bottom:284.000000pt;}
.y27{bottom:288.666667pt;}
.y59{bottom:299.333333pt;}
.y26{bottom:304.000000pt;}
.y58{bottom:314.666667pt;}
.y25{bottom:319.333333pt;}
.y57{bottom:330.000000pt;}
.y24{bottom:334.666667pt;}
.y56{bottom:345.333333pt;}
.y23{bottom:350.000000pt;}
.y55{bottom:360.666667pt;}
.y22{bottom:370.666667pt;}
.y54{bottom:381.333333pt;}
.y21{bottom:400.000000pt;}
.y53{bottom:410.666667pt;}
.y20{bottom:415.333333pt;}
.y52{bottom:426.000000pt;}
.y1f{bottom:430.666667pt;}
.y51{bottom:441.333333pt;}
.y1e{bottom:446.000000pt;}
.y50{bottom:456.666667pt;}
.y1d{bottom:461.333333pt;}
.y4f{bottom:472.000000pt;}
.y1c{bottom:476.666667pt;}
.y4e{bottom:487.333333pt;}
.y1b{bottom:492.000000pt;}
.y4d{bottom:502.666667pt;}
.y1a{bottom:507.333333pt;}
.y19{bottom:522.666667pt;}
.y4c{bottom:523.333333pt;}
.y18{bottom:538.000000pt;}
.y4b{bottom:552.666667pt;}
.y17{bottom:553.333333pt;}
.y4a{bottom:568.000000pt;}
.y16{bottom:568.666667pt;}
.y49{bottom:583.333333pt;}
.y15{bottom:584.000000pt;}
.y48{bottom:598.666667pt;}
.y14{bottom:599.333333pt;}
.y47{bottom:614.000000pt;}
.y13{bottom:614.666667pt;}
.y46{bottom:629.333333pt;}
.y12{bottom:635.333333pt;}
.y45{bottom:650.000000pt;}
.y11{bottom:667.333333pt;}
.y44{bottom:679.333333pt;}
.y10{bottom:682.666667pt;}
.y43{bottom:694.666667pt;}
.yf{bottom:698.000000pt;}
.y42{bottom:710.000000pt;}
.ye{bottom:713.333333pt;}
.y41{bottom:725.333333pt;}
.yd{bottom:728.666667pt;}
.y40{bottom:740.666667pt;}
.yc{bottom:744.000000pt;}
.y3f{bottom:756.000000pt;}
.yb{bottom:759.333333pt;}
.ya{bottom:774.666667pt;}
.y3e{bottom:776.666667pt;}
.y9{bottom:790.000000pt;}
.y8{bottom:805.333333pt;}
.y3d{bottom:806.000000pt;}
.y7{bottom:820.666667pt;}
.y3c{bottom:821.333333pt;}
.y6{bottom:836.000000pt;}
.y3b{bottom:836.666667pt;}
.y5{bottom:851.333333pt;}
.y3a{bottom:852.000000pt;}
.y39{bottom:867.333333pt;}
.y4{bottom:880.000000pt;}
.y38{bottom:882.666667pt;}
.y37{bottom:898.000000pt;}
.y3{bottom:909.333333pt;}
.y36{bottom:913.333333pt;}
.y2{bottom:933.333333pt;}
.y35{bottom:934.000000pt;}
.y1{bottom:957.333333pt;}
.y34{bottom:963.333333pt;}
.h3{height:52.843750pt;}
.h2{height:55.625000pt;}
.h1{height:77.875000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:56.000000pt;}
.x2{left:68.640000pt;}
.x4{left:70.920000pt;}
.x1{left:86.242667pt;}
.x3{left:157.829333pt;}
.x6{left:425.600000pt;}
}




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