
    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_c982d2e482db00a07c9e9044.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_afbef992472e5f2dd5c56da6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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;}
.m1{transform:matrix(0.000000,-0.250218,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250218,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250218,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.176700,-0.176854,0.176700,0.176854,0,0);-ms-transform:matrix(0.176700,-0.176854,0.176700,0.176854,0,0);-webkit-transform:matrix(0.176700,-0.176854,0.176700,0.176854,0,0);}
.m7{transform:matrix(0.176700,-0.176854,0.176700,0.176854,0,0);-ms-transform:matrix(0.176700,-0.176854,0.176700,0.176854,0,0);-webkit-transform:matrix(0.176700,-0.176854,0.176700,0.176854,0,0);}
.m8{transform:matrix(0.207414,-0.139421,0.139299,0.207595,0,0);-ms-transform:matrix(0.207414,-0.139421,0.139299,0.207595,0,0);-webkit-transform:matrix(0.207414,-0.139421,0.139299,0.207595,0,0);}
.m3{transform:matrix(0.248021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248021,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-31.668821px;}
.v5{vertical-align:-20.371411px;}
.v3{vertical-align:-18.748904px;}
.v2{vertical-align:-14.336316px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.097810px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:46.691981px;}
.ls1{letter-spacing:47.893874px;}
.ls0{letter-spacing:157.012974px;}
.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;}
}
.ws9{word-spacing:-63.387641px;}
.wsa{word-spacing:-16.695660px;}
.wsb{word-spacing:0.000000px;}
.ws7{word-spacing:11.229168px;}
.ws3{word-spacing:68.097342px;}
.ws4{word-spacing:80.515113px;}
.ws1{word-spacing:96.158318px;}
.ws2{word-spacing:126.847528px;}
.ws0{word-spacing:164.243279px;}
.ws5{word-spacing:167.359175px;}
.ws8{word-spacing:918.640150px;}
.ws6{word-spacing:1231.624656px;}
._1{margin-left:-449.673225px;}
._6{margin-left:-116.459536px;}
._7{margin-left:-112.673700px;}
._5{margin-left:-46.691981px;}
._0{margin-left:-5.528523px;}
._4{margin-left:-3.305095px;}
._2{margin-left:-2.223428px;}
._3{width:112.196362px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:54.083424px;}
.fs4{font-size:59.134008px;}
.fs3{font-size:59.325828px;}
.fs2{font-size:60.039960px;}
.fs7{font-size:60.066596px;}
.fs8{font-size:60.076238px;}
.fs0{font-size:60.092640px;}
.fs5{font-size:72.079799px;}
.fs1{font-size:72.110928px;}
.y0{bottom:0.000000px;}
.y2e{bottom:7.130903px;}
.y35{bottom:8.633226px;}
.y17{bottom:23.707512px;}
.y2d{bottom:25.684520px;}
.y34{bottom:27.657070px;}
.y2c{bottom:42.810938px;}
.y33{bottom:44.328286px;}
.y19{bottom:54.984003px;}
.y26{bottom:57.747276px;}
.y22{bottom:58.379451px;}
.y2b{bottom:59.291359px;}
.y32{bottom:60.485708px;}
.y21{bottom:75.618542px;}
.y25{bottom:76.315917px;}
.y2a{bottom:77.844977px;}
.y31{bottom:79.360823px;}
.y24{bottom:94.148423px;}
.y20{bottom:94.263803px;}
.y29{bottom:94.655908px;}
.y30{bottom:96.870318px;}
.y18{bottom:102.417873px;}
.y23{bottom:111.560280px;}
.y28{bottom:112.728784px;}
.y1f{bottom:113.165959px;}
.y2f{bottom:114.231097px;}
.y1a{bottom:130.220417px;}
.y1e{bottom:134.173455px;}
.y1c{bottom:140.746901px;}
.y38{bottom:147.225739px;}
.y37{bottom:150.910317px;}
.y39{bottom:152.423752px;}
.y3a{bottom:153.926068px;}
.y3b{bottom:159.725008px;}
.y3c{bottom:170.256258px;}
.y1b{bottom:175.881413px;}
.y3d{bottom:249.213075px;}
.y36{bottom:254.376994px;}
.y1d{bottom:261.980520px;}
.y27{bottom:262.504973px;}
.yc{bottom:286.250910px;}
.y12{bottom:286.251507px;}
.y3e{bottom:286.674057px;}
.y1{bottom:287.753224px;}
.y4{bottom:305.939367px;}
.ye{bottom:306.542782px;}
.y14{bottom:307.069215px;}
.y3{bottom:325.482709px;}
.yb{bottom:329.879978px;}
.y11{bottom:330.169308px;}
.y8{bottom:337.788481px;}
.y16{bottom:340.672219px;}
.y10{bottom:346.825064px;}
.y6{bottom:350.468058px;}
.ya{bottom:364.087743px;}
.yf{bottom:458.802698px;}
.y15{bottom:458.837164px;}
.y7{bottom:460.167233px;}
.y5{bottom:461.564402px;}
.y13{bottom:462.241186px;}
.yd{bottom:462.242688px;}
.y2{bottom:463.743502px;}
.y9{bottom:463.745005px;}
.ha{height:39.374212px;}
.h6{height:43.051175px;}
.h5{height:43.190825px;}
.h4{height:43.710733px;}
.hb{height:43.730124px;}
.hc{height:43.737144px;}
.h2{height:43.749085px;}
.h8{height:52.476065px;}
.h3{height:52.498727px;}
.h9{height:54.596537px;}
.h7{height:221.443500px;}
.h1{height:478.500000px;}
.h0{height:478.500012px;}
.w1{width:244.165500px;}
.w0{width:823.500000px;}
.x0{left:0.000000px;}
.x2{left:5.106873px;}
.x3{left:14.003037px;}
.x5{left:46.157143px;}
.x4{left:50.735208px;}
.x1{left:53.471842px;}
.x1b{left:57.081835px;}
.x6{left:119.376205px;}
.x8{left:149.960565px;}
.xa{left:184.979652px;}
.x1a{left:187.694505px;}
.x24{left:216.563676px;}
.x1c{left:219.701319px;}
.x7{left:225.101835px;}
.xb{left:230.670269px;}
.x1e{left:237.430487px;}
.x1d{left:241.635623px;}
.x23{left:258.546811px;}
.x22{left:268.603544px;}
.x21{left:270.554850px;}
.x9{left:278.117077px;}
.x20{left:283.209380px;}
.xc{left:298.025212px;}
.x1f{left:360.846079px;}
.x34{left:364.361873px;}
.x2e{left:385.526520px;}
.xd{left:387.163815px;}
.x2f{left:395.757675px;}
.xe{left:442.911180px;}
.x2c{left:487.741579px;}
.x10{left:513.056802px;}
.x2b{left:521.499208px;}
.x29{left:526.842784px;}
.x2a{left:527.998559px;}
.x27{left:536.449230px;}
.x28{left:539.346169px;}
.xf{left:541.303932px;}
.x12{left:545.980815px;}
.x11{left:548.462362px;}
.x2d{left:553.267407px;}
.x25{left:565.397044px;}
.x13{left:594.452757px;}
.x26{left:596.081205px;}
.x33{left:614.654810px;}
.x32{left:626.787153px;}
.x14{left:644.068915px;}
.x16{left:660.946882px;}
.x31{left:663.816973px;}
.x15{left:690.530975px;}
.x18{left:703.744479px;}
.x17{left:707.572463px;}
.x30{left:747.414852px;}
.x19{left:777.634564px;}
@media print{
.v1{vertical-align:-28.150063pt;}
.v5{vertical-align:-18.107921pt;}
.v3{vertical-align:-16.665692pt;}
.v2{vertical-align:-12.743392pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.864720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:41.503983pt;}
.ls1{letter-spacing:42.572332pt;}
.ls0{letter-spacing:139.567088pt;}
.ws9{word-spacing:-56.344570pt;}
.wsa{word-spacing:-14.840587pt;}
.wsb{word-spacing:0.000000pt;}
.ws7{word-spacing:9.981483pt;}
.ws3{word-spacing:60.530971pt;}
.ws4{word-spacing:71.568990pt;}
.ws1{word-spacing:85.474060pt;}
.ws2{word-spacing:112.753358pt;}
.ws0{word-spacing:145.994026pt;}
.ws5{word-spacing:148.763711pt;}
.ws8{word-spacing:816.569022pt;}
.ws6{word-spacing:1094.777472pt;}
._1{margin-left:-399.709533pt;}
._6{margin-left:-103.519588pt;}
._7{margin-left:-100.154400pt;}
._5{margin-left:-41.503983pt;}
._0{margin-left:-4.914243pt;}
._4{margin-left:-2.937862pt;}
._2{margin-left:-1.976380pt;}
._3{width:99.730099pt;}
.fs6{font-size:48.074155pt;}
.fs4{font-size:52.563563pt;}
.fs3{font-size:52.734069pt;}
.fs2{font-size:53.368853pt;}
.fs7{font-size:53.392529pt;}
.fs8{font-size:53.401100pt;}
.fs0{font-size:53.415680pt;}
.fs5{font-size:64.070933pt;}
.fs1{font-size:64.098603pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:6.338580pt;}
.y35{bottom:7.673978pt;}
.y17{bottom:21.073344pt;}
.y2d{bottom:22.830685pt;}
.y34{bottom:24.584062pt;}
.y2c{bottom:38.054167pt;}
.y33{bottom:39.402920pt;}
.y19{bottom:48.874670pt;}
.y26{bottom:51.330912pt;}
.y22{bottom:51.892845pt;}
.y2b{bottom:52.703430pt;}
.y32{bottom:53.765074pt;}
.y21{bottom:67.216482pt;}
.y25{bottom:67.836370pt;}
.y2a{bottom:69.195535pt;}
.y31{bottom:70.542954pt;}
.y24{bottom:83.687487pt;}
.y20{bottom:83.790047pt;}
.y29{bottom:84.138585pt;}
.y30{bottom:86.106950pt;}
.y18{bottom:91.038109pt;}
.y23{bottom:99.164693pt;}
.y28{bottom:100.203364pt;}
.y1f{bottom:100.591964pt;}
.y2f{bottom:101.538753pt;}
.y1a{bottom:115.751482pt;}
.y1e{bottom:119.265293pt;}
.y1c{bottom:125.108357pt;}
.y38{bottom:130.867323pt;}
.y37{bottom:134.142504pt;}
.y39{bottom:135.487779pt;}
.y3a{bottom:136.823171pt;}
.y3b{bottom:141.977785pt;}
.y3c{bottom:151.338896pt;}
.y1b{bottom:156.339033pt;}
.y3d{bottom:221.522733pt;}
.y36{bottom:226.112884pt;}
.y1d{bottom:232.871573pt;}
.y27{bottom:233.337753pt;}
.yc{bottom:254.445253pt;}
.y12{bottom:254.445784pt;}
.y3e{bottom:254.821384pt;}
.y1{bottom:255.780644pt;}
.y4{bottom:271.946104pt;}
.ye{bottom:272.482473pt;}
.y14{bottom:272.950413pt;}
.y3{bottom:289.317964pt;}
.yb{bottom:293.226647pt;}
.y11{bottom:293.483830pt;}
.y8{bottom:300.256428pt;}
.y16{bottom:302.819750pt;}
.y10{bottom:308.288946pt;}
.y6{bottom:311.527163pt;}
.ya{bottom:323.633549pt;}
.yf{bottom:407.824620pt;}
.y15{bottom:407.855257pt;}
.y7{bottom:409.037540pt;}
.y5{bottom:410.279468pt;}
.y13{bottom:410.881055pt;}
.yd{bottom:410.882389pt;}
.y2{bottom:412.216447pt;}
.y9{bottom:412.217783pt;}
.ha{height:34.999299pt;}
.h6{height:38.267711pt;}
.h5{height:38.391844pt;}
.h4{height:38.853985pt;}
.hb{height:38.871221pt;}
.hc{height:38.877461pt;}
.h2{height:38.888076pt;}
.h8{height:46.645391pt;}
.h3{height:46.665535pt;}
.h9{height:48.530255pt;}
.h7{height:196.838667pt;}
.h1{height:425.333333pt;}
.h0{height:425.333344pt;}
.w1{width:217.036000pt;}
.w0{width:732.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.539443pt;}
.x3{left:12.447144pt;}
.x5{left:41.028572pt;}
.x4{left:45.097963pt;}
.x1{left:47.530527pt;}
.x1b{left:50.739409pt;}
.x6{left:106.112182pt;}
.x8{left:133.298280pt;}
.xa{left:164.426357pt;}
.x1a{left:166.839560pt;}
.x24{left:192.501045pt;}
.x1c{left:195.290062pt;}
.x7{left:200.090520pt;}
.xb{left:205.040239pt;}
.x1e{left:211.049322pt;}
.x1d{left:214.787220pt;}
.x23{left:229.819388pt;}
.x22{left:238.758706pt;}
.x21{left:240.493200pt;}
.x9{left:247.215180pt;}
.x20{left:251.741671pt;}
.xc{left:264.911300pt;}
.x1f{left:320.752071pt;}
.x34{left:323.877220pt;}
.x2e{left:342.690240pt;}
.xd{left:344.145613pt;}
.x2f{left:351.784600pt;}
.xe{left:393.698827pt;}
.x2c{left:433.548070pt;}
.x10{left:456.050491pt;}
.x2b{left:463.554852pt;}
.x29{left:468.304697pt;}
.x2a{left:469.332053pt;}
.x27{left:476.843760pt;}
.x28{left:479.418817pt;}
.xf{left:481.159051pt;}
.x12{left:485.316280pt;}
.x11{left:487.522100pt;}
.x2d{left:491.793251pt;}
.x25{left:502.575151pt;}
.x13{left:528.402450pt;}
.x26{left:529.849960pt;}
.x33{left:546.359831pt;}
.x32{left:557.144136pt;}
.x14{left:572.505703pt;}
.x16{left:587.508340pt;}
.x31{left:590.059531pt;}
.x15{left:613.805311pt;}
.x18{left:625.550648pt;}
.x17{left:628.953300pt;}
.x30{left:664.368758pt;}
.x19{left:691.230723pt;}
}




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