
    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_73d14612f65c5ed616d58754.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_9a78f8429ca8161fe85d000d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133000;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_cacecb5fdbf6f9af1b644032.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.844000;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_3e72da2190da147c01b3d10d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.621000;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_06423c3d1f89e286a9ec2660.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.885000;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;}
.v2{vertical-align:20.208000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:41.952000px;}
.lsd{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.000960px;}
.ls1{letter-spacing:0.002218px;}
.ls9{letter-spacing:0.003300px;}
.ls3{letter-spacing:0.003979px;}
.ls5{letter-spacing:2.988600px;}
.lsa{letter-spacing:2.994600px;}
.ls8{letter-spacing:13.280725px;}
.ls7{letter-spacing:13.282718px;}
.ls6{letter-spacing:13.286725px;}
.lsc{letter-spacing:13.288718px;}
.ls2{letter-spacing:71.732640px;}
.lsb{letter-spacing:88.292640px;}
.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:-51.861658px;}
.wsa{word-spacing:-40.336459px;}
.wsc{word-spacing:-25.817008px;}
.ws4{word-spacing:-14.955955px;}
.wsd{word-spacing:-14.943900px;}
.ws5{word-spacing:-13.449600px;}
.wse{word-spacing:-11.632298px;}
.wsf{word-spacing:-10.460700px;}
.ws6{word-spacing:-0.699379px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:1.936742px;}
.ws2{word-spacing:3.066509px;}
.ws1{word-spacing:6.886195px;}
.ws11{word-spacing:13.394122px;}
.ws0{word-spacing:20.281997px;}
.ws10{word-spacing:56.786820px;}
.wsb{word-spacing:70.116779px;}
.ws9{word-spacing:86.674620px;}
.ws12{word-spacing:115.066500px;}
.ws13{word-spacing:161.392500px;}
._3{margin-left:-7.477978px;}
._0{margin-left:-4.949453px;}
._4{margin-left:-3.604493px;}
._1{margin-left:-2.114006px;}
._7{margin-left:-1.075961px;}
._9{width:2.983800px;}
._2{width:9.826474px;}
._a{width:85.060679px;}
._8{width:101.618520px;}
._b{width:114.948479px;}
._c{width:144.836279px;}
._6{width:226.190870px;}
._e{width:242.748712px;}
._d{width:450.767981px;}
._5{width:480.655781px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.842800px;}
.fs0{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.y0{bottom:0.000000px;}
.y3f{bottom:432.429000px;}
.y3e{bottom:437.632500px;}
.y3d{bottom:453.928500px;}
.y3c{bottom:459.001500px;}
.y3b{bottom:475.309500px;}
.y3a{bottom:480.372000px;}
.y39{bottom:496.680000px;}
.y38{bottom:501.742500px;}
.y37{bottom:518.049000px;}
.y36{bottom:523.111500px;}
.y35{bottom:539.430000px;}
.y34{bottom:544.482000px;}
.y73{bottom:558.169500px;}
.y33{bottom:560.788500px;}
.y72{bottom:563.232000px;}
.y32{bottom:565.851000px;}
.y71{bottom:579.540000px;}
.y31{bottom:582.159000px;}
.y70{bottom:584.602500px;}
.y30{bottom:587.221500px;}
.y6f{bottom:600.910500px;}
.y2f{bottom:603.529500px;}
.y6e{bottom:605.971500px;}
.y2e{bottom:608.590500px;}
.y6d{bottom:622.290000px;}
.y2d{bottom:624.888000px;}
.y6c{bottom:627.342000px;}
.y2c{bottom:629.961000px;}
.y6b{bottom:643.650000px;}
.y2b{bottom:646.269000px;}
.y6a{bottom:648.712500px;}
.y2a{bottom:651.331500px;}
.y69{bottom:665.019000px;}
.y29{bottom:667.638000px;}
.y68{bottom:670.081500px;}
.y28{bottom:672.700500px;}
.y67{bottom:686.389500px;}
.y27{bottom:688.867500px;}
.y66{bottom:691.452000px;}
.y26{bottom:694.071000px;}
.y65{bottom:707.901000px;}
.y25{bottom:710.367000px;}
.y64{bottom:712.821000px;}
.y24{bottom:715.440000px;}
.y63{bottom:729.129000px;}
.y23{bottom:731.758500px;}
.y62{bottom:734.191500px;}
.y22{bottom:736.810500px;}
.y61{bottom:750.552000px;}
.y21{bottom:753.106500px;}
.y60{bottom:755.562000px;}
.y20{bottom:758.181000px;}
.y5f{bottom:771.868500px;}
.y1f{bottom:774.487500px;}
.y5e{bottom:776.931000px;}
.y1e{bottom:779.550000px;}
.y5d{bottom:793.249500px;}
.y1d{bottom:795.858000px;}
.y5c{bottom:798.301500px;}
.y1c{bottom:800.920500px;}
.y5b{bottom:814.609500px;}
.y1b{bottom:817.237500px;}
.y5a{bottom:819.670500px;}
.y1a{bottom:822.289500px;}
.y59{bottom:835.978500px;}
.y19{bottom:838.456500px;}
.y58{bottom:841.041000px;}
.y18{bottom:843.660000px;}
.y57{bottom:857.349000px;}
.y17{bottom:859.978500px;}
.y56{bottom:862.410000px;}
.y16{bottom:865.029000px;}
.y55{bottom:878.718000px;}
.y15{bottom:881.337000px;}
.y54{bottom:883.780500px;}
.y14{bottom:886.399500px;}
.y53{bottom:900.099000px;}
.y13{bottom:902.707500px;}
.y52{bottom:905.151000px;}
.y12{bottom:907.770000px;}
.y51{bottom:921.316500px;}
.y11{bottom:924.219000px;}
.y50{bottom:926.520000px;}
.y10{bottom:929.139000px;}
.y4f{bottom:942.828000px;}
.yf{bottom:945.457500px;}
.y4e{bottom:947.890500px;}
.ye{bottom:950.509500px;}
.y4d{bottom:964.339500px;}
.yd{bottom:966.817500px;}
.y4c{bottom:969.259500px;}
.yc{bottom:971.878500px;}
.y4b{bottom:985.708500px;}
.yb{bottom:988.186500px;}
.y4a{bottom:990.630000px;}
.ya{bottom:993.249000px;}
.y49{bottom:1006.948500px;}
.y9{bottom:1009.567500px;}
.y48{bottom:1012.000500px;}
.y8{bottom:1014.619500px;}
.y47{bottom:1028.218500px;}
.y46{bottom:1033.369500px;}
.y7{bottom:1045.552500px;}
.y45{bottom:1049.589000px;}
.y44{bottom:1054.740000px;}
.y6{bottom:1066.923000px;}
.y43{bottom:1071.048000px;}
.y42{bottom:1076.109000px;}
.y41{bottom:1107.043500px;}
.y5{bottom:1108.884000px;}
.y4{bottom:1123.828500px;}
.y40{bottom:1128.414000px;}
.y3{bottom:1138.771500px;}
.y2{bottom:1153.716000px;}
.y1{bottom:1168.659000px;}
.h2{height:49.225536px;}
.h3{height:54.694674px;}
.h5{height:59.982162px;}
.h4{height:59.988162px;}
.hc{height:60.294162px;}
.he{height:60.300162px;}
.h8{height:79.668162px;}
.h13{height:80.022162px;}
.h6{height:80.190162px;}
.hb{height:80.196162px;}
.h7{height:80.232162px;}
.h9{height:80.238162px;}
.hf{height:80.274162px;}
.hd{height:80.280162px;}
.h10{height:80.586162px;}
.h11{height:80.592162px;}
.ha{height:80.796162px;}
.h12{height:80.802162px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:55.275000px;}
.x2{left:113.280000px;}
.x3{left:146.155500px;}
.x5{left:220.965000px;}
.x7{left:228.438000px;}
.x4{left:232.173000px;}
.x6{left:239.646000px;}
.x8{left:247.117500px;}
.x9{left:454.960500px;}
.xa{left:514.630500px;}
.xb{left:547.507500px;}
.xf{left:626.457000px;}
.xd{left:633.928500px;}
.xc{left:637.665000px;}
.xe{left:645.136500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.962667pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:37.290667pt;}
.lsd{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.000853pt;}
.ls1{letter-spacing:0.001971pt;}
.ls9{letter-spacing:0.002933pt;}
.ls3{letter-spacing:0.003537pt;}
.ls5{letter-spacing:2.656533pt;}
.lsa{letter-spacing:2.661867pt;}
.ls8{letter-spacing:11.805089pt;}
.ls7{letter-spacing:11.806861pt;}
.ls6{letter-spacing:11.810422pt;}
.lsc{letter-spacing:11.812194pt;}
.ls2{letter-spacing:63.762347pt;}
.lsb{letter-spacing:78.482347pt;}
.ws8{word-spacing:-46.099251pt;}
.wsa{word-spacing:-35.854630pt;}
.wsc{word-spacing:-22.948451pt;}
.ws4{word-spacing:-13.294182pt;}
.wsd{word-spacing:-13.283467pt;}
.ws5{word-spacing:-11.955200pt;}
.wse{word-spacing:-10.339821pt;}
.wsf{word-spacing:-9.298400pt;}
.ws6{word-spacing:-0.621670pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:1.721549pt;}
.ws2{word-spacing:2.725786pt;}
.ws1{word-spacing:6.121062pt;}
.ws11{word-spacing:11.905886pt;}
.ws0{word-spacing:18.028442pt;}
.ws10{word-spacing:50.477173pt;}
.wsb{word-spacing:62.326026pt;}
.ws9{word-spacing:77.044107pt;}
.ws12{word-spacing:102.281333pt;}
.ws13{word-spacing:143.460000pt;}
._3{margin-left:-6.647091pt;}
._0{margin-left:-4.399514pt;}
._4{margin-left:-3.203994pt;}
._1{margin-left:-1.879117pt;}
._7{margin-left:-0.956410pt;}
._9{width:2.652267pt;}
._2{width:8.734643pt;}
._a{width:75.609492pt;}
._8{width:90.327573pt;}
._b{width:102.176426pt;}
._c{width:128.743359pt;}
._6{width:201.058551pt;}
._e{width:215.776633pt;}
._d{width:400.682650pt;}
._5{width:427.249583pt;}
.fs2{font-size:37.193600pt;}
.fs0{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:384.381333pt;}
.y3e{bottom:389.006667pt;}
.y3d{bottom:403.492000pt;}
.y3c{bottom:408.001333pt;}
.y3b{bottom:422.497333pt;}
.y3a{bottom:426.997333pt;}
.y39{bottom:441.493333pt;}
.y38{bottom:445.993333pt;}
.y37{bottom:460.488000pt;}
.y36{bottom:464.988000pt;}
.y35{bottom:479.493333pt;}
.y34{bottom:483.984000pt;}
.y73{bottom:496.150667pt;}
.y33{bottom:498.478667pt;}
.y72{bottom:500.650667pt;}
.y32{bottom:502.978667pt;}
.y71{bottom:515.146667pt;}
.y31{bottom:517.474667pt;}
.y70{bottom:519.646667pt;}
.y30{bottom:521.974667pt;}
.y6f{bottom:534.142667pt;}
.y2f{bottom:536.470667pt;}
.y6e{bottom:538.641333pt;}
.y2e{bottom:540.969333pt;}
.y6d{bottom:553.146667pt;}
.y2d{bottom:555.456000pt;}
.y6c{bottom:557.637333pt;}
.y2c{bottom:559.965333pt;}
.y6b{bottom:572.133333pt;}
.y2b{bottom:574.461333pt;}
.y6a{bottom:576.633333pt;}
.y2a{bottom:578.961333pt;}
.y69{bottom:591.128000pt;}
.y29{bottom:593.456000pt;}
.y68{bottom:595.628000pt;}
.y28{bottom:597.956000pt;}
.y67{bottom:610.124000pt;}
.y27{bottom:612.326667pt;}
.y66{bottom:614.624000pt;}
.y26{bottom:616.952000pt;}
.y65{bottom:629.245333pt;}
.y25{bottom:631.437333pt;}
.y64{bottom:633.618667pt;}
.y24{bottom:635.946667pt;}
.y63{bottom:648.114667pt;}
.y23{bottom:650.452000pt;}
.y62{bottom:652.614667pt;}
.y22{bottom:654.942667pt;}
.y61{bottom:667.157333pt;}
.y21{bottom:669.428000pt;}
.y60{bottom:671.610667pt;}
.y20{bottom:673.938667pt;}
.y5f{bottom:686.105333pt;}
.y1f{bottom:688.433333pt;}
.y5e{bottom:690.605333pt;}
.y1e{bottom:692.933333pt;}
.y5d{bottom:705.110667pt;}
.y1d{bottom:707.429333pt;}
.y5c{bottom:709.601333pt;}
.y1c{bottom:711.929333pt;}
.y5b{bottom:724.097333pt;}
.y1b{bottom:726.433333pt;}
.y5a{bottom:728.596000pt;}
.y1a{bottom:730.924000pt;}
.y59{bottom:743.092000pt;}
.y19{bottom:745.294667pt;}
.y58{bottom:747.592000pt;}
.y18{bottom:749.920000pt;}
.y57{bottom:762.088000pt;}
.y17{bottom:764.425333pt;}
.y56{bottom:766.586667pt;}
.y16{bottom:768.914667pt;}
.y55{bottom:781.082667pt;}
.y15{bottom:783.410667pt;}
.y54{bottom:785.582667pt;}
.y14{bottom:787.910667pt;}
.y53{bottom:800.088000pt;}
.y13{bottom:802.406667pt;}
.y52{bottom:804.578667pt;}
.y12{bottom:806.906667pt;}
.y51{bottom:818.948000pt;}
.y11{bottom:821.528000pt;}
.y50{bottom:823.573333pt;}
.y10{bottom:825.901333pt;}
.y4f{bottom:838.069333pt;}
.yf{bottom:840.406667pt;}
.y4e{bottom:842.569333pt;}
.ye{bottom:844.897333pt;}
.y4d{bottom:857.190667pt;}
.yd{bottom:859.393333pt;}
.y4c{bottom:861.564000pt;}
.yc{bottom:863.892000pt;}
.y4b{bottom:876.185333pt;}
.yb{bottom:878.388000pt;}
.y4a{bottom:880.560000pt;}
.ya{bottom:882.888000pt;}
.y49{bottom:895.065333pt;}
.y9{bottom:897.393333pt;}
.y48{bottom:899.556000pt;}
.y8{bottom:901.884000pt;}
.y47{bottom:913.972000pt;}
.y46{bottom:918.550667pt;}
.y7{bottom:929.380000pt;}
.y45{bottom:932.968000pt;}
.y44{bottom:937.546667pt;}
.y6{bottom:948.376000pt;}
.y43{bottom:952.042667pt;}
.y42{bottom:956.541333pt;}
.y41{bottom:984.038667pt;}
.y5{bottom:985.674667pt;}
.y4{bottom:998.958667pt;}
.y40{bottom:1003.034667pt;}
.y3{bottom:1012.241333pt;}
.y2{bottom:1025.525333pt;}
.y1{bottom:1038.808000pt;}
.h2{height:43.756032pt;}
.h3{height:48.617488pt;}
.h5{height:53.317477pt;}
.h4{height:53.322811pt;}
.hc{height:53.594811pt;}
.he{height:53.600144pt;}
.h8{height:70.816144pt;}
.h13{height:71.130811pt;}
.h6{height:71.280144pt;}
.hb{height:71.285477pt;}
.h7{height:71.317477pt;}
.h9{height:71.322811pt;}
.hf{height:71.354811pt;}
.hd{height:71.360144pt;}
.h10{height:71.632144pt;}
.h11{height:71.637477pt;}
.ha{height:71.818811pt;}
.h12{height:71.824144pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:49.133333pt;}
.x2{left:100.693333pt;}
.x3{left:129.916000pt;}
.x5{left:196.413333pt;}
.x7{left:203.056000pt;}
.x4{left:206.376000pt;}
.x6{left:213.018667pt;}
.x8{left:219.660000pt;}
.x9{left:404.409333pt;}
.xa{left:457.449333pt;}
.xb{left:486.673333pt;}
.xf{left:556.850667pt;}
.xd{left:563.492000pt;}
.xc{left:566.813333pt;}
.xe{left:573.454667pt;}
}




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