
    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_106461e7d6e7693c72354f6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.013672;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_cae72d74ae99acdf1773b0c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990234;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_01daa9ec824244c56213ff95.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_8d279f7d711eb9506ef9c800.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.765137;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;}
}
.ws2{word-spacing:-227.173995px;}
.ws1{word-spacing:-70.747113px;}
.ws0{word-spacing:-70.595977px;}
.ws3{word-spacing:-0.299979px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-31.585450px;}
._0{margin-left:-19.969379px;}
._a{margin-left:-10.321348px;}
._9{margin-left:-7.193291px;}
._7{margin-left:-6.166429px;}
._2{margin-left:-4.078257px;}
._1{margin-left:-2.390710px;}
._3{margin-left:-1.125035px;}
._4{width:1.828177px;}
._8{width:3.071498px;}
._5{width:8.437780px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:149.989740px;}
.fs5{font-size:180.005678px;}
.fs4{font-size:239.992579px;}
.fs0{font-size:288.009084px;}
.fs1{font-size:299.979480px;}
.fs7{font-size:335.980615px;}
.fs3{font-size:344.809456px;}
.fs2{font-size:347.995985px;}
.fs6{font-size:963.255382px;}
.y0{bottom:0.000000px;}
.y1d{bottom:0.000119px;}
.y20{bottom:25.732066px;}
.y31{bottom:29.251036px;}
.y1c{bottom:34.876060px;}
.y33{bottom:58.501691px;}
.y24{bottom:58.502005px;}
.y22{bottom:64.126860px;}
.y2d{bottom:69.031538px;}
.y2a{bottom:69.752038px;}
.y28{bottom:70.877182px;}
.y18{bottom:76.502307px;}
.y14{bottom:85.502760px;}
.y34{bottom:92.431159px;}
.y32{bottom:92.718763px;}
.y10{bottom:102.378164px;}
.y6{bottom:102.378180px;}
.y30{bottom:112.503662px;}
.yb{bottom:129.378977px;}
.y1b{bottom:139.504360px;}
.y27{bottom:154.129808px;}
.y17{bottom:181.130607px;}
.y13{bottom:190.131060px;}
.yf{bottom:202.506322px;}
.y5{bottom:202.506339px;}
.ya{bottom:229.507135px;}
.y1a{bottom:244.132660px;}
.y16{bottom:285.758907px;}
.y12{bottom:294.759360px;}
.ye{bottom:302.634480px;}
.y4{bottom:302.634497px;}
.y9{bottom:329.635293px;}
.yd{bottom:402.762638px;}
.y3{bottom:402.762655px;}
.y8{bottom:429.763451px;}
.y2{bottom:502.890813px;}
.y2f{bottom:542.731021px;}
.y2b{bottom:599.532988px;}
.y29{bottom:620.793363px;}
.y2c{bottom:725.743223px;}
.y25{bottom:818.332476px;}
.y23{bottom:829.261859px;}
.y26{bottom:1113.035350px;}
.y21{bottom:1197.910275px;}
.y2e{bottom:1420.674028px;}
.y19{bottom:1603.964248px;}
.y15{bottom:2039.501619px;}
.y3e{bottom:2117.691423px;}
.y3d{bottom:2222.319723px;}
.y3c{bottom:2326.948023px;}
.y11{bottom:2452.211740px;}
.y3b{bottom:2536.204623px;}
.y3a{bottom:2640.832923px;}
.y39{bottom:2745.461223px;}
.y1f{bottom:2919.149998px;}
.y35{bottom:2950.620180px;}
.y1{bottom:3043.225864px;}
.y7{bottom:3114.137437px;}
.yc{bottom:3143.354039px;}
.y1e{bottom:4259.074002px;}
.y38{bottom:4330.450185px;}
.y41{bottom:4442.355058px;}
.y40{bottom:4494.106691px;}
.y3f{bottom:4545.858323px;}
.y37{bottom:4614.981729px;}
.y36{bottom:4769.255183px;}
.h18{height:117.765382px;}
.hc{height:118.439995px;}
.h11{height:141.332583px;}
.h14{height:149.629566px;}
.h10{height:150.754915px;}
.he{height:172.130267px;}
.h13{height:185.630968px;}
.hf{height:188.431673px;}
.h3{height:226.132133px;}
.h17{height:228.499994px;}
.h7{height:235.530763px;}
.h16{height:263.797280px;}
.hd{height:263.826376px;}
.hb{height:266.264506px;}
.h12{height:268.883427px;}
.h9{height:335.260534px;}
.h8{height:420.763166px;}
.h6{height:437.638867px;}
.h5{height:561.392642px;}
.h4{height:615.394306px;}
.h2{height:661.520816px;}
.h15{height:733.729686px;}
.ha{height:5055.749789px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.w13{width:354.386149px;}
.wa{width:362.261455px;}
.wc{width:389.262202px;}
.wb{width:389.262289px;}
.w12{width:394.887465px;}
.w14{width:429.763604px;}
.we{width:443.264043px;}
.wf{width:473.639920px;}
.w10{width:743.648333px;}
.w4{width:898.903439px;}
.w8{width:912.239962px;}
.w3{width:1008.031782px;}
.w2{width:1018.157142px;}
.wd{width:1532.298464px;}
.w11{width:1546.923788px;}
.w9{width:1560.424147px;}
.w6{width:1564.924327px;}
.w5{width:1627.926448px;}
.w7{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x1f{left:3.937624px;}
.x14{left:7.681883px;}
.x2{left:13.992629px;}
.x29{left:21.903035px;}
.xe{left:24.645309px;}
.xd{left:27.123902px;}
.x9{left:31.676780px;}
.x3{left:36.792176px;}
.xf{left:44.597110px;}
.x18{left:58.027221px;}
.x11{left:83.024103px;}
.x12{left:86.504682px;}
.x1d{left:103.169270px;}
.x17{left:114.876670px;}
.xc{left:122.681604px;}
.x19{left:142.492776px;}
.x15{left:152.741146px;}
.x5{left:160.475765px;}
.x4{left:162.884044px;}
.x1{left:174.360899px;}
.x28{left:178.703399px;}
.xa{left:182.642480px;}
.x1c{left:187.338902px;}
.x22{left:204.774043px;}
.x34{left:207.013871px;}
.x1e{left:220.074467px;}
.x8{left:235.993777px;}
.x2b{left:238.942916px;}
.x33{left:251.452772px;}
.x32{left:254.529041px;}
.x31{left:267.642736px;}
.x6{left:300.032901px;}
.x13{left:316.504129px;}
.x2a{left:361.558279px;}
.x1b{left:494.999979px;}
.x16{left:511.732943px;}
.x35{left:596.034029px;}
.x30{left:668.249903px;}
.x20{left:776.446312px;}
.x36{left:778.658930px;}
.x2c{left:802.446123px;}
.x2f{left:1018.120108px;}
.x37{left:1224.260876px;}
.x2d{left:1282.774087px;}
.x21{left:1294.137450px;}
.x7{left:1388.691518px;}
.x27{left:1431.179835px;}
.x1a{left:1442.682069px;}
.x10{left:1830.270344px;}
.x24{left:1855.760035px;}
.x2e{left:2228.275247px;}
.x26{left:2271.070273px;}
.x25{left:2397.585824px;}
.xb{left:2498.701540px;}
.x23{left:2969.353352px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-201.932440pt;}
.ws1{word-spacing:-62.886322pt;}
.ws0{word-spacing:-62.751980pt;}
.ws3{word-spacing:-0.266648pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-28.075956pt;}
._0{margin-left:-17.750559pt;}
._a{margin-left:-9.174532pt;}
._9{margin-left:-6.394037pt;}
._7{margin-left:-5.481270pt;}
._2{margin-left:-3.625118pt;}
._1{margin-left:-2.125076pt;}
._3{margin-left:-1.000032pt;}
._4{width:1.625046pt;}
._8{width:2.730221pt;}
._5{width:7.500249pt;}
.fs8{font-size:133.324213pt;}
.fs5{font-size:160.005047pt;}
.fs4{font-size:213.326737pt;}
.fs0{font-size:256.008075pt;}
.fs1{font-size:266.648426pt;}
.fs7{font-size:298.649436pt;}
.fs3{font-size:306.497294pt;}
.fs2{font-size:309.329765pt;}
.fs6{font-size:856.227007pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:0.000106pt;}
.y20{bottom:22.872948pt;}
.y31{bottom:26.000921pt;}
.y1c{bottom:31.000942pt;}
.y33{bottom:52.001504pt;}
.y24{bottom:52.001782pt;}
.y22{bottom:57.001654pt;}
.y2d{bottom:61.361367pt;}
.y2a{bottom:62.001811pt;}
.y28{bottom:63.001939pt;}
.y18{bottom:68.002051pt;}
.y14{bottom:76.002453pt;}
.y34{bottom:82.161030pt;}
.y32{bottom:82.416678pt;}
.y10{bottom:91.002812pt;}
.y6{bottom:91.002827pt;}
.y30{bottom:100.003255pt;}
.yb{bottom:115.003535pt;}
.y1b{bottom:124.003875pt;}
.y27{bottom:137.004274pt;}
.y17{bottom:161.004984pt;}
.y13{bottom:169.005387pt;}
.yf{bottom:180.005620pt;}
.y5{bottom:180.005634pt;}
.ya{bottom:204.006342pt;}
.y1a{bottom:217.006809pt;}
.y16{bottom:254.007918pt;}
.y12{bottom:262.008320pt;}
.ye{bottom:269.008427pt;}
.y4{bottom:269.008441pt;}
.y9{bottom:293.009149pt;}
.yd{bottom:358.011234pt;}
.y3{bottom:358.011249pt;}
.y8{bottom:382.011957pt;}
.y2{bottom:447.014056pt;}
.y2f{bottom:482.427574pt;}
.y2b{bottom:532.918212pt;}
.y29{bottom:551.816323pt;}
.y2c{bottom:645.105087pt;}
.y25{bottom:727.406645pt;}
.y23{bottom:737.121653pt;}
.y26{bottom:989.364756pt;}
.y21{bottom:1064.809134pt;}
.y2e{bottom:1262.821358pt;}
.y19{bottom:1425.745999pt;}
.y15{bottom:1812.890328pt;}
.y3e{bottom:1882.392376pt;}
.y3d{bottom:1975.395309pt;}
.y3c{bottom:2068.398243pt;}
.y11{bottom:2179.743769pt;}
.y3b{bottom:2254.404109pt;}
.y3a{bottom:2347.407043pt;}
.y39{bottom:2440.409976pt;}
.y1f{bottom:2594.799998pt;}
.y35{bottom:2622.773494pt;}
.y1{bottom:2705.089657pt;}
.y7{bottom:2768.122167pt;}
.yc{bottom:2794.092479pt;}
.y1e{bottom:3785.843557pt;}
.y38{bottom:3849.289054pt;}
.y41{bottom:3948.760052pt;}
.y40{bottom:3994.761503pt;}
.y3f{bottom:4040.762954pt;}
.y37{bottom:4102.205981pt;}
.y36{bottom:4239.337940pt;}
.h18{height:104.680339pt;}
.hc{height:105.279996pt;}
.h11{height:125.628963pt;}
.h14{height:133.004058pt;}
.h10{height:134.004369pt;}
.he{height:153.004682pt;}
.h13{height:165.005305pt;}
.hf{height:167.494821pt;}
.h3{height:201.006340pt;}
.h17{height:203.111106pt;}
.h7{height:209.360679pt;}
.h16{height:234.486471pt;}
.hd{height:234.512334pt;}
.hb{height:236.679561pt;}
.h12{height:239.007491pt;}
.h9{height:298.009364pt;}
.h8{height:374.011703pt;}
.h6{height:389.012326pt;}
.h5{height:499.015682pt;}
.h4{height:547.017161pt;}
.h2{height:588.018503pt;}
.h15{height:652.204165pt;}
.ha{height:4493.999813pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.w13{width:315.009910pt;}
.wa{width:322.010182pt;}
.wc{width:346.010846pt;}
.wb{width:346.010923pt;}
.w12{width:351.011080pt;}
.w14{width:382.012093pt;}
.we{width:394.012483pt;}
.wf{width:421.013262pt;}
.w10{width:661.020740pt;}
.w4{width:799.025279pt;}
.w8{width:810.879966pt;}
.w3{width:896.028251pt;}
.w2{width:905.028570pt;}
.wd{width:1362.043079pt;}
.w11{width:1375.043367pt;}
.w9{width:1387.043686pt;}
.w6{width:1391.043846pt;}
.w5{width:1447.045732pt;}
.w7{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x1f{left:3.500110pt;}
.x14{left:6.828340pt;}
.x2{left:12.437892pt;}
.x29{left:19.469364pt;}
.xe{left:21.906941pt;}
.xd{left:24.110135pt;}
.x9{left:28.157138pt;}
.x3{left:32.704157pt;}
.xf{left:39.641875pt;}
.x18{left:51.579752pt;}
.x11{left:73.799203pt;}
.x12{left:76.893050pt;}
.x1d{left:91.706018pt;}
.x17{left:102.112596pt;}
.xc{left:109.050315pt;}
.x19{left:126.660245pt;}
.x15{left:135.769907pt;}
.x5{left:142.645124pt;}
.x4{left:144.785817pt;}
.x1{left:154.987466pt;}
.x28{left:158.847465pt;}
.xa{left:162.348871pt;}
.x1c{left:166.523468pt;}
.x22{left:182.021371pt;}
.x34{left:184.012329pt;}
.x1e{left:195.621749pt;}
.x8{left:209.772246pt;}
.x2b{left:212.393703pt;}
.x33{left:223.513575pt;}
.x32{left:226.248037pt;}
.x31{left:237.904654pt;}
.x6{left:266.695912pt;}
.x13{left:281.337004pt;}
.x2a{left:321.385137pt;}
.x1b{left:439.999982pt;}
.x16{left:454.873727pt;}
.x35{left:529.808026pt;}
.x30{left:593.999914pt;}
.x20{left:690.174499pt;}
.x36{left:692.141271pt;}
.x2c{left:713.285442pt;}
.x2f{left:904.995652pt;}
.x37{left:1088.231889pt;}
.x2d{left:1140.243632pt;}
.x21{left:1150.344400pt;}
.x7{left:1234.392461pt;}
.x27{left:1272.159853pt;}
.x1a{left:1282.384062pt;}
.x10{left:1626.906972pt;}
.x24{left:1649.564475pt;}
.x2e{left:1980.689108pt;}
.x26{left:2018.729132pt;}
.x25{left:2131.187399pt;}
.xb{left:2221.068035pt;}
.x23{left:2639.425202pt;}
}




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