
    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_c25fbe307609dde69e90d3a9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.060059;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_f09e27f41f816f175ce45aef.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_80ad44def33bdd4d9da3439a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_f344bbf1d075fa06fe7108b7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_a94b88af96d3a2bebe5f7a76.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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:ff6;src:url('chunks/assets/font_67963159121babf854cc5a47.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.390000px;}
.ls7{letter-spacing:-0.137400px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.033840px;}
.lsa{letter-spacing:0.042480px;}
.ls4{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.081360px;}
.ls2{letter-spacing:0.094800px;}
.lse{letter-spacing:0.202200px;}
.ls8{letter-spacing:0.222600px;}
.ls1{letter-spacing:0.383760px;}
.lsc{letter-spacing:0.384000px;}
.lsd{letter-spacing:0.411600px;}
.ls5{letter-spacing:3.600000px;}
.ls3{letter-spacing:4.680000px;}
.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;}
}
.ws3{word-spacing:-21.188880px;}
.ws4{word-spacing:-20.756400px;}
.ws9{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws1{word-spacing:-14.716200px;}
.ws2{word-spacing:-14.493600px;}
.ws0{word-spacing:-14.356200px;}
.ws7{word-spacing:-13.428600px;}
.ws6{word-spacing:-10.628400px;}
.ws5{word-spacing:-10.533600px;}
.wsa{word-spacing:0.000000px;}
._12{margin-left:-4.019040px;}
._1{margin-left:-2.202480px;}
._6{margin-left:-1.008000px;}
._0{width:1.152000px;}
._4{width:2.304000px;}
._11{width:3.384000px;}
._8{width:4.536000px;}
._9{width:5.568000px;}
._c{width:6.600000px;}
._b{width:7.992000px;}
._3{width:9.216000px;}
._a{width:10.296000px;}
._10{width:11.808000px;}
._5{width:19.728000px;}
._7{width:20.808000px;}
._2{width:26.035920px;}
._f{width:28.272000px;}
._e{width:29.520000px;}
._d{width:30.744000px;}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(237,125,49);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:47.880000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs2{font-size:96.120000px;}
.y7{bottom:-12.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.900000px;}
.ya{bottom:1.260000px;}
.y10{bottom:2.430000px;}
.y4{bottom:3.690000px;}
.y6{bottom:7.110000px;}
.yd{bottom:15.030000px;}
.yc{bottom:29.070000px;}
.y8{bottom:43.380000px;}
.y5{bottom:44.190000px;}
.y3{bottom:46.440000px;}
.y2{bottom:51.120000px;}
.y3c{bottom:135.900000px;}
.y3b{bottom:159.750000px;}
.y3a{bottom:183.510000px;}
.y39{bottom:207.360000px;}
.y38{bottom:231.150000px;}
.y37{bottom:255.000000px;}
.y36{bottom:278.760000px;}
.y35{bottom:302.610000px;}
.y34{bottom:326.370000px;}
.y33{bottom:350.220000px;}
.y32{bottom:373.980000px;}
.y31{bottom:397.830000px;}
.y30{bottom:421.590000px;}
.y2f{bottom:445.440000px;}
.y2e{bottom:469.200000px;}
.y2d{bottom:492.960000px;}
.y2c{bottom:516.810000px;}
.y2b{bottom:540.570000px;}
.y2a{bottom:564.420000px;}
.y29{bottom:588.180000px;}
.y28{bottom:612.030000px;}
.y27{bottom:635.790000px;}
.y26{bottom:659.670000px;}
.y25{bottom:683.430000px;}
.y24{bottom:707.280000px;}
.y23{bottom:731.040000px;}
.y22{bottom:754.890000px;}
.y21{bottom:778.650000px;}
.y20{bottom:802.500000px;}
.y1f{bottom:826.260000px;}
.y1e{bottom:850.110000px;}
.y1d{bottom:873.870000px;}
.y1c{bottom:897.720000px;}
.y1b{bottom:921.480000px;}
.y1a{bottom:942.360000px;}
.y19{bottom:963.420000px;}
.y18{bottom:984.570000px;}
.y17{bottom:1005.630000px;}
.y16{bottom:1026.690000px;}
.y15{bottom:1047.840000px;}
.y14{bottom:1068.930000px;}
.y13{bottom:1090.710000px;}
.y12{bottom:1115.370000px;}
.y11{bottom:1153.710000px;}
.yf{bottom:1156.320000px;}
.yb{bottom:1173.870000px;}
.y9{bottom:1213.830000px;}
.y1{bottom:1245.780000px;}
.ha{height:13.860000px;}
.hb{height:18.000000px;}
.h3{height:19.260000px;}
.h5{height:22.770000px;}
.h6{height:24.120000px;}
.h8{height:40.500000px;}
.h9{height:40.539023px;}
.h10{height:50.273438px;}
.hc{height:50.902383px;}
.h4{height:55.779258px;}
.h2{height:60.960938px;}
.hf{height:70.664062px;}
.hd{height:71.019492px;}
.he{height:72.562500px;}
.h7{height:81.382852px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:124.830000px;}
.w3{width:129.420000px;}
.w6{width:145.440000px;}
.w5{width:149.760000px;}
.w8{width:250.950000px;}
.w4{width:297.240000px;}
.w7{width:322.140000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x3{left:50.940000px;}
.x4{left:78.300000px;}
.x1{left:85.049987px;}
.x9{left:109.349987px;}
.x12{left:127.649987px;}
.xf{left:166.799987px;}
.x7{left:172.560000px;}
.x11{left:278.039987px;}
.x10{left:284.339987px;}
.xa{left:328.709987px;}
.xd{left:377.969987px;}
.xe{left:379.679987px;}
.xb{left:383.999987px;}
.x2{left:391.560000px;}
.xc{left:396.419987px;}
.x6{left:676.080000px;}
.x8{left:688.140000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.346667pt;}
.ls7{letter-spacing:-0.122133pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.030080pt;}
.lsa{letter-spacing:0.037760pt;}
.ls4{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.072320pt;}
.ls2{letter-spacing:0.084267pt;}
.lse{letter-spacing:0.179733pt;}
.ls8{letter-spacing:0.197867pt;}
.ls1{letter-spacing:0.341120pt;}
.lsc{letter-spacing:0.341333pt;}
.lsd{letter-spacing:0.365867pt;}
.ls5{letter-spacing:3.200000pt;}
.ls3{letter-spacing:4.160000pt;}
.ws3{word-spacing:-18.834560pt;}
.ws4{word-spacing:-18.450133pt;}
.ws9{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.081067pt;}
.ws2{word-spacing:-12.883200pt;}
.ws0{word-spacing:-12.761067pt;}
.ws7{word-spacing:-11.936533pt;}
.ws6{word-spacing:-9.447467pt;}
.ws5{word-spacing:-9.363200pt;}
.wsa{word-spacing:0.000000pt;}
._12{margin-left:-3.572480pt;}
._1{margin-left:-1.957760pt;}
._6{margin-left:-0.896000pt;}
._0{width:1.024000pt;}
._4{width:2.048000pt;}
._11{width:3.008000pt;}
._8{width:4.032000pt;}
._9{width:4.949333pt;}
._c{width:5.866667pt;}
._b{width:7.104000pt;}
._3{width:8.192000pt;}
._a{width:9.152000pt;}
._10{width:10.496000pt;}
._5{width:17.536000pt;}
._7{width:18.496000pt;}
._2{width:23.143040pt;}
._f{width:25.130667pt;}
._e{width:26.240000pt;}
._d{width:27.328000pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs2{font-size:85.440000pt;}
.y7{bottom:-10.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.800000pt;}
.ya{bottom:1.120000pt;}
.y10{bottom:2.160000pt;}
.y4{bottom:3.280000pt;}
.y6{bottom:6.320000pt;}
.yd{bottom:13.360000pt;}
.yc{bottom:25.840000pt;}
.y8{bottom:38.560000pt;}
.y5{bottom:39.280000pt;}
.y3{bottom:41.280000pt;}
.y2{bottom:45.440000pt;}
.y3c{bottom:120.800000pt;}
.y3b{bottom:142.000000pt;}
.y3a{bottom:163.120000pt;}
.y39{bottom:184.320000pt;}
.y38{bottom:205.466667pt;}
.y37{bottom:226.666667pt;}
.y36{bottom:247.786667pt;}
.y35{bottom:268.986667pt;}
.y34{bottom:290.106667pt;}
.y33{bottom:311.306667pt;}
.y32{bottom:332.426667pt;}
.y31{bottom:353.626667pt;}
.y30{bottom:374.746667pt;}
.y2f{bottom:395.946667pt;}
.y2e{bottom:417.066667pt;}
.y2d{bottom:438.186667pt;}
.y2c{bottom:459.386667pt;}
.y2b{bottom:480.506667pt;}
.y2a{bottom:501.706667pt;}
.y29{bottom:522.826667pt;}
.y28{bottom:544.026667pt;}
.y27{bottom:565.146667pt;}
.y26{bottom:586.373333pt;}
.y25{bottom:607.493333pt;}
.y24{bottom:628.693333pt;}
.y23{bottom:649.813333pt;}
.y22{bottom:671.013333pt;}
.y21{bottom:692.133333pt;}
.y20{bottom:713.333333pt;}
.y1f{bottom:734.453333pt;}
.y1e{bottom:755.653333pt;}
.y1d{bottom:776.773333pt;}
.y1c{bottom:797.973333pt;}
.y1b{bottom:819.093333pt;}
.y1a{bottom:837.653333pt;}
.y19{bottom:856.373333pt;}
.y18{bottom:875.173333pt;}
.y17{bottom:893.893333pt;}
.y16{bottom:912.613333pt;}
.y15{bottom:931.413333pt;}
.y14{bottom:950.160000pt;}
.y13{bottom:969.520000pt;}
.y12{bottom:991.440000pt;}
.y11{bottom:1025.520000pt;}
.yf{bottom:1027.840000pt;}
.yb{bottom:1043.440000pt;}
.y9{bottom:1078.960000pt;}
.y1{bottom:1107.360000pt;}
.ha{height:12.320000pt;}
.hb{height:16.000000pt;}
.h3{height:17.120000pt;}
.h5{height:20.240000pt;}
.h6{height:21.440000pt;}
.h8{height:36.000000pt;}
.h9{height:36.034687pt;}
.h10{height:44.687500pt;}
.hc{height:45.246562pt;}
.h4{height:49.581562pt;}
.h2{height:54.187500pt;}
.hf{height:62.812500pt;}
.hd{height:63.128437pt;}
.he{height:64.500000pt;}
.h7{height:72.340312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:110.960000pt;}
.w3{width:115.040000pt;}
.w6{width:129.280000pt;}
.w5{width:133.120000pt;}
.w8{width:223.066667pt;}
.w4{width:264.213333pt;}
.w7{width:286.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x3{left:45.280000pt;}
.x4{left:69.600000pt;}
.x1{left:75.599988pt;}
.x9{left:97.199988pt;}
.x12{left:113.466655pt;}
.xf{left:148.266655pt;}
.x7{left:153.386667pt;}
.x11{left:247.146655pt;}
.x10{left:252.746655pt;}
.xa{left:292.186655pt;}
.xd{left:335.973322pt;}
.xe{left:337.493322pt;}
.xb{left:341.333322pt;}
.x2{left:348.053333pt;}
.xc{left:352.373322pt;}
.x6{left:600.960000pt;}
.x8{left:611.680000pt;}
}




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