
    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_d1cee31d46ef52498ffeb9b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_706f4f257feaaf3a6b85b016.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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_3d1180dac3eff1f0a788d28e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_03358b18bb41bc3e4696afd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_ee79d20b05d49102ab548847.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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;}
}
.ws8{word-spacing:-16.605662px;}
.wsa{word-spacing:-2.379069px;}
.ws1d{word-spacing:-2.080191px;}
.ws26{word-spacing:-1.004230px;}
.ws20{word-spacing:-0.526025px;}
.ws37{word-spacing:-0.466250px;}
.ws28{word-spacing:-0.047820px;}
.ws10{word-spacing:0.000000px;}
.ws1c{word-spacing:0.609711px;}
.ws14{word-spacing:0.789038px;}
.ws12{word-spacing:0.968365px;}
.ws33{word-spacing:1.864999px;}
.wsb{word-spacing:2.402979px;}
.ws24{word-spacing:2.522530px;}
.ws4{word-spacing:3.299613px;}
.ws18{word-spacing:3.359389px;}
.ws2b{word-spacing:3.957145px;}
.ws1f{word-spacing:4.614676px;}
.ws22{word-spacing:5.331984px;}
.ws6{word-spacing:6.766598px;}
.wsd{word-spacing:6.886149px;}
.ws23{word-spacing:7.005700px;}
.ws15{word-spacing:8.260988px;}
.ws11{word-spacing:9.217398px;}
.ws21{word-spacing:10.173807px;}
.ws2c{word-spacing:11.189992px;}
.ws31{word-spacing:11.309544px;}
.ws17{word-spacing:11.847524px;}
.ws35{word-spacing:13.461465px;}
.ws29{word-spacing:13.760343px;}
.ws5{word-spacing:14.656977px;}
.ws1b{word-spacing:14.896080px;}
.ws30{word-spacing:16.510021px;}
.ws2d{word-spacing:16.988226px;}
.ws25{word-spacing:17.048001px;}
.wse{word-spacing:17.406655px;}
.ws16{word-spacing:17.585982px;}
.ws1a{word-spacing:17.884860px;}
.ws1e{word-spacing:18.901045px;}
.ws13{word-spacing:19.080372px;}
.ws32{word-spacing:20.873640px;}
.ws9{word-spacing:21.292069px;}
.ws7{word-spacing:21.889825px;}
.ws1{word-spacing:23.312640px;}
.ws36{word-spacing:23.802644px;}
.wsc{word-spacing:24.460176px;}
.ws2f{word-spacing:26.432770px;}
.ws19{word-spacing:26.910975px;}
.ws34{word-spacing:29.182448px;}
.ws0{word-spacing:31.091012px;}
.wsf{word-spacing:31.394145px;}
.ws2{word-spacing:32.192873px;}
.ws27{word-spacing:34.263374px;}
.ws2a{word-spacing:72.997963px;}
.ws3{word-spacing:92.711956px;}
.ws2e{word-spacing:134.805933px;}
._12{margin-left:-4.961375px;}
._0{margin-left:-2.685602px;}
._7{margin-left:-1.613941px;}
._a{width:1.673717px;}
._1{width:2.685602px;}
._14{width:18.585912px;}
._15{width:19.905275px;}
._d{width:20.917160px;}
._f{width:24.384145px;}
._1e{width:26.540366px;}
._17{width:28.393410px;}
._11{width:71.730720px;}
._1b{width:74.898827px;}
._1a{width:83.621765px;}
._6{width:86.674620px;}
._2{width:96.836850px;}
._8{width:107.655856px;}
._1d{width:115.302833px;}
._18{width:131.446544px;}
._10{width:168.447641px;}
._3{width:211.007868px;}
._5{width:228.641670px;}
._16{width:269.468405px;}
._1c{width:304.317580px;}
._e{width:369.652310px;}
._c{width:381.966084px;}
._19{width:392.008385px;}
._13{width:433.014446px;}
._9{width:468.341826px;}
._b{width:478.563454px;}
._4{width:760.345632px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y20{bottom:208.882500px;}
.y1f{bottom:271.560000px;}
.y4c{bottom:285.993000px;}
.y1e{bottom:289.492500px;}
.y4b{bottom:303.925500px;}
.y1d{bottom:307.425000px;}
.y4a{bottom:321.858000px;}
.y1c{bottom:325.357500px;}
.y49{bottom:340.389000px;}
.y1b{bottom:343.888500px;}
.y48{bottom:358.321500px;}
.y1a{bottom:361.821000px;}
.y47{bottom:376.254000px;}
.y19{bottom:379.753500px;}
.y46{bottom:394.186500px;}
.y18{bottom:397.686000px;}
.y45{bottom:412.120500px;}
.y17{bottom:415.620000px;}
.y44{bottom:430.053000px;}
.y16{bottom:433.552500px;}
.y43{bottom:448.582500px;}
.y15{bottom:451.485000px;}
.y42{bottom:466.516500px;}
.y14{bottom:469.417500px;}
.y41{bottom:484.449000px;}
.y13{bottom:487.350000px;}
.y40{bottom:502.381500px;}
.y12{bottom:505.881000px;}
.y3f{bottom:520.314000px;}
.y11{bottom:523.813500px;}
.y3e{bottom:538.246500px;}
.y10{bottom:541.746000px;}
.y3d{bottom:556.777500px;}
.yf{bottom:559.678500px;}
.y3c{bottom:574.710000px;}
.ye{bottom:577.612500px;}
.y3b{bottom:592.642500px;}
.yd{bottom:595.545000px;}
.y3a{bottom:610.575000px;}
.yc{bottom:613.477500px;}
.y39{bottom:628.509000px;}
.yb{bottom:631.410000px;}
.y38{bottom:646.441500px;}
.ya{bottom:649.342500px;}
.y37{bottom:664.374000px;}
.y9{bottom:667.275000px;}
.y36{bottom:682.306500px;}
.y8{bottom:685.209000px;}
.y35{bottom:700.837500px;}
.y7{bottom:706.956000px;}
.y34{bottom:718.770000px;}
.y57{bottom:735.507000px;}
.y33{bottom:736.702500px;}
.y56{bottom:754.038000px;}
.y32{bottom:754.635000px;}
.y6{bottom:756.424500px;}
.y55{bottom:771.970500px;}
.y31{bottom:772.567500px;}
.y54{bottom:789.903000px;}
.y30{bottom:790.501500px;}
.y2f{bottom:808.434000px;}
.y5{bottom:820.786500px;}
.y53{bottom:826.366500px;}
.y2e{bottom:826.963500px;}
.y52{bottom:844.299000px;}
.y2d{bottom:844.897500px;}
.y2c{bottom:862.830000px;}
.y2b{bottom:880.762500px;}
.y2a{bottom:898.695000px;}
.y4{bottom:899.293500px;}
.y29{bottom:916.627500px;}
.y3{bottom:932.169000px;}
.y28{bottom:934.560000px;}
.y27{bottom:952.494000px;}
.y51{bottom:953.091000px;}
.y2{bottom:965.046000px;}
.y26{bottom:970.426500px;}
.y50{bottom:971.023500px;}
.y25{bottom:988.359000px;}
.y4f{bottom:988.956000px;}
.y1{bottom:997.923000px;}
.y24{bottom:1006.291500px;}
.y4e{bottom:1006.890000px;}
.y23{bottom:1024.224000px;}
.y4d{bottom:1024.822500px;}
.y22{bottom:1042.755000px;}
.y21{bottom:1060.687500px;}
.h5{height:41.663593px;}
.h6{height:44.831700px;}
.h3{height:50.498765px;}
.h4{height:60.081886px;}
.h2{height:73.027727px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x7{left:209.619000px;}
.x2{left:212.551500px;}
.x3{left:238.497000px;}
.x1{left:263.584500px;}
.xc{left:355.110000px;}
.x8{left:358.846500px;}
.xe{left:372.309000px;}
.x5{left:392.833500px;}
.x9{left:399.610500px;}
.x4{left:421.894500px;}
.xd{left:454.699500px;}
.xb{left:630.142500px;}
.xa{left:633.462000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-14.760588pt;}
.wsa{word-spacing:-2.114728pt;}
.ws1d{word-spacing:-1.849059pt;}
.ws26{word-spacing:-0.892649pt;}
.ws20{word-spacing:-0.467578pt;}
.ws37{word-spacing:-0.414444pt;}
.ws28{word-spacing:-0.042507pt;}
.ws10{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.541965pt;}
.ws14{word-spacing:0.701367pt;}
.ws12{word-spacing:0.860769pt;}
.ws33{word-spacing:1.657777pt;}
.wsb{word-spacing:2.135981pt;}
.ws24{word-spacing:2.242249pt;}
.ws4{word-spacing:2.932989pt;}
.ws18{word-spacing:2.986123pt;}
.ws2b{word-spacing:3.517462pt;}
.ws1f{word-spacing:4.101935pt;}
.ws22{word-spacing:4.739541pt;}
.ws6{word-spacing:6.014754pt;}
.wsd{word-spacing:6.121021pt;}
.ws23{word-spacing:6.227289pt;}
.ws15{word-spacing:7.343100pt;}
.ws11{word-spacing:8.193242pt;}
.ws21{word-spacing:9.043384pt;}
.ws2c{word-spacing:9.946660pt;}
.ws31{word-spacing:10.052928pt;}
.ws17{word-spacing:10.531132pt;}
.ws35{word-spacing:11.965747pt;}
.ws29{word-spacing:12.231416pt;}
.ws5{word-spacing:13.028424pt;}
.ws1b{word-spacing:13.240960pt;}
.ws30{word-spacing:14.675574pt;}
.ws2d{word-spacing:15.100645pt;}
.ws25{word-spacing:15.153779pt;}
.wse{word-spacing:15.472582pt;}
.ws16{word-spacing:15.631984pt;}
.ws1a{word-spacing:15.897653pt;}
.ws1e{word-spacing:16.800929pt;}
.ws13{word-spacing:16.960330pt;}
.ws32{word-spacing:18.554346pt;}
.ws9{word-spacing:18.926283pt;}
.ws7{word-spacing:19.457622pt;}
.ws1{word-spacing:20.722347pt;}
.ws36{word-spacing:21.157906pt;}
.wsc{word-spacing:21.742378pt;}
.ws2f{word-spacing:23.495796pt;}
.ws19{word-spacing:23.920867pt;}
.ws34{word-spacing:25.939954pt;}
.ws0{word-spacing:27.636455pt;}
.wsf{word-spacing:27.905907pt;}
.ws2{word-spacing:28.615887pt;}
.ws27{word-spacing:30.456332pt;}
.ws2a{word-spacing:64.887078pt;}
.ws3{word-spacing:82.410627pt;}
.ws2e{word-spacing:119.827496pt;}
._12{margin-left:-4.410111pt;}
._0{margin-left:-2.387202pt;}
._7{margin-left:-1.434614pt;}
._a{width:1.487748pt;}
._1{width:2.387202pt;}
._14{width:16.520811pt;}
._15{width:17.693578pt;}
._d{width:18.593031pt;}
._f{width:21.674796pt;}
._1e{width:23.591437pt;}
._17{width:25.238587pt;}
._11{width:63.760640pt;}
._1b{width:66.576735pt;}
._1a{width:74.330458pt;}
._6{width:77.044107pt;}
._2{width:86.077200pt;}
._8{width:95.694094pt;}
._1d{width:102.491407pt;}
._18{width:116.841373pt;}
._10{width:149.731236pt;}
._3{width:187.562549pt;}
._5{width:203.237040pt;}
._16{width:239.527471pt;}
._1c{width:270.504515pt;}
._e{width:328.579831pt;}
._c{width:339.525408pt;}
._19{width:348.451898pt;}
._13{width:384.901730pt;}
._9{width:416.303845pt;}
._b{width:425.389737pt;}
._4{width:675.862784pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:185.673333pt;}
.y1f{bottom:241.386667pt;}
.y4c{bottom:254.216000pt;}
.y1e{bottom:257.326667pt;}
.y4b{bottom:270.156000pt;}
.y1d{bottom:273.266667pt;}
.y4a{bottom:286.096000pt;}
.y1c{bottom:289.206667pt;}
.y49{bottom:302.568000pt;}
.y1b{bottom:305.678667pt;}
.y48{bottom:318.508000pt;}
.y1a{bottom:321.618667pt;}
.y47{bottom:334.448000pt;}
.y19{bottom:337.558667pt;}
.y46{bottom:350.388000pt;}
.y18{bottom:353.498667pt;}
.y45{bottom:366.329333pt;}
.y17{bottom:369.440000pt;}
.y44{bottom:382.269333pt;}
.y16{bottom:385.380000pt;}
.y43{bottom:398.740000pt;}
.y15{bottom:401.320000pt;}
.y42{bottom:414.681333pt;}
.y14{bottom:417.260000pt;}
.y41{bottom:430.621333pt;}
.y13{bottom:433.200000pt;}
.y40{bottom:446.561333pt;}
.y12{bottom:449.672000pt;}
.y3f{bottom:462.501333pt;}
.y11{bottom:465.612000pt;}
.y3e{bottom:478.441333pt;}
.y10{bottom:481.552000pt;}
.y3d{bottom:494.913333pt;}
.yf{bottom:497.492000pt;}
.y3c{bottom:510.853333pt;}
.ye{bottom:513.433333pt;}
.y3b{bottom:526.793333pt;}
.yd{bottom:529.373333pt;}
.y3a{bottom:542.733333pt;}
.yc{bottom:545.313333pt;}
.y39{bottom:558.674667pt;}
.yb{bottom:561.253333pt;}
.y38{bottom:574.614667pt;}
.ya{bottom:577.193333pt;}
.y37{bottom:590.554667pt;}
.y9{bottom:593.133333pt;}
.y36{bottom:606.494667pt;}
.y8{bottom:609.074667pt;}
.y35{bottom:622.966667pt;}
.y7{bottom:628.405333pt;}
.y34{bottom:638.906667pt;}
.y57{bottom:653.784000pt;}
.y33{bottom:654.846667pt;}
.y56{bottom:670.256000pt;}
.y32{bottom:670.786667pt;}
.y6{bottom:672.377333pt;}
.y55{bottom:686.196000pt;}
.y31{bottom:686.726667pt;}
.y54{bottom:702.136000pt;}
.y30{bottom:702.668000pt;}
.y2f{bottom:718.608000pt;}
.y5{bottom:729.588000pt;}
.y53{bottom:734.548000pt;}
.y2e{bottom:735.078667pt;}
.y52{bottom:750.488000pt;}
.y2d{bottom:751.020000pt;}
.y2c{bottom:766.960000pt;}
.y2b{bottom:782.900000pt;}
.y2a{bottom:798.840000pt;}
.y4{bottom:799.372000pt;}
.y29{bottom:814.780000pt;}
.y3{bottom:828.594667pt;}
.y28{bottom:830.720000pt;}
.y27{bottom:846.661333pt;}
.y51{bottom:847.192000pt;}
.y2{bottom:857.818667pt;}
.y26{bottom:862.601333pt;}
.y50{bottom:863.132000pt;}
.y25{bottom:878.541333pt;}
.y4f{bottom:879.072000pt;}
.y1{bottom:887.042667pt;}
.y24{bottom:894.481333pt;}
.y4e{bottom:895.013333pt;}
.y23{bottom:910.421333pt;}
.y4d{bottom:910.953333pt;}
.y22{bottom:926.893333pt;}
.y21{bottom:942.833333pt;}
.h5{height:37.034305pt;}
.h6{height:39.850400pt;}
.h3{height:44.887791pt;}
.h4{height:53.406121pt;}
.h2{height:64.913535pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x7{left:186.328000pt;}
.x2{left:188.934667pt;}
.x3{left:211.997333pt;}
.x1{left:234.297333pt;}
.xc{left:315.653333pt;}
.x8{left:318.974667pt;}
.xe{left:330.941333pt;}
.x5{left:349.185333pt;}
.x9{left:355.209333pt;}
.x4{left:375.017333pt;}
.xd{left:404.177333pt;}
.xb{left:560.126667pt;}
.xa{left:563.077333pt;}
}




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