
    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_3a3cfc97e50f8094ab3a4a27.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_a30fea55970ae3c61416afa3.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_0f09020d33b24f54e44cdb67.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_194117fec9baf8fe4cdf5ed9.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_df4e8deaab2dca448103ed94.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_4b24003acb46d4db81577702.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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.390000px;}
.ls4{letter-spacing:-0.137400px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.033840px;}
.ls7{letter-spacing:0.042480px;}
.ls0{letter-spacing:0.081360px;}
.ls2{letter-spacing:0.094800px;}
.lsc{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.202200px;}
.ls5{letter-spacing:0.222600px;}
.ls1{letter-spacing:0.383760px;}
.ls9{letter-spacing:0.384000px;}
.lsa{letter-spacing:0.411600px;}
.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:-72.000000px;}
.ws3{word-spacing:-21.188880px;}
.ws4{word-spacing:-20.756400px;}
.wsa{word-spacing:-18.144000px;}
.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;}
.wsb{word-spacing:0.000000px;}
._10{margin-left:-4.044960px;}
._1{margin-left:-2.202480px;}
._5{margin-left:-1.198080px;}
._0{width:1.152000px;}
._d{width:2.778480px;}
._c{width:4.104000px;}
._f{width:5.878080px;}
._9{width:7.056000px;}
._8{width:8.424000px;}
._6{width:9.792000px;}
._e{width:11.304000px;}
._b{width:12.312000px;}
._a{width:13.608000px;}
._13{width:14.976000px;}
._7{width:16.364160px;}
._11{width:23.184000px;}
._12{width:24.264000px;}
._2{width:26.035920px;}
._4{width:27.072000px;}
._3{width:28.108080px;}
._15{width:31.320000px;}
._14{width:32.328000px;}
.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:130.500000px;}
.y3b{bottom:154.350000px;}
.y3a{bottom:178.110000px;}
.y39{bottom:201.960000px;}
.y38{bottom:225.750000px;}
.y37{bottom:249.600000px;}
.y36{bottom:273.360000px;}
.y35{bottom:297.210000px;}
.y34{bottom:320.970000px;}
.y33{bottom:344.820000px;}
.y32{bottom:368.580000px;}
.y31{bottom:392.430000px;}
.y30{bottom:416.190000px;}
.y2f{bottom:440.040000px;}
.y2e{bottom:463.800000px;}
.y2d{bottom:487.560000px;}
.y2c{bottom:511.410000px;}
.y2b{bottom:535.170000px;}
.y2a{bottom:559.020000px;}
.y29{bottom:582.780000px;}
.y28{bottom:606.630000px;}
.y27{bottom:630.390000px;}
.y26{bottom:654.270000px;}
.y25{bottom:678.030000px;}
.y24{bottom:701.880000px;}
.y23{bottom:725.640000px;}
.y22{bottom:749.490000px;}
.y21{bottom:773.250000px;}
.y20{bottom:797.100000px;}
.y1f{bottom:820.860000px;}
.y1e{bottom:844.710000px;}
.y1d{bottom:868.470000px;}
.y1c{bottom:892.320000px;}
.y1b{bottom:916.080000px;}
.y1a{bottom:939.930000px;}
.y19{bottom:963.690000px;}
.y18{bottom:984.570000px;}
.y17{bottom:1005.630000px;}
.y16{bottom:1026.690000px;}
.y40{bottom:1047.030000px;}
.y15{bottom:1047.840000px;}
.y14{bottom:1068.930000px;}
.y3f{bottom:1070.910000px;}
.y13{bottom:1090.710000px;}
.y3e{bottom:1094.670000px;}
.y12{bottom:1115.370000px;}
.y3d{bottom:1118.430000px;}
.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;}
.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:90.629987px;}
.x10{left:127.649987px;}
.xc{left:141.599987px;}
.x7{left:172.560000px;}
.xf{left:278.039987px;}
.xe{left:313.859987px;}
.xd{left:372.299987px;}
.xa{left:380.669987px;}
.x2{left:391.560000px;}
.xb{left:394.979987px;}
.x6{left:676.080000px;}
.x8{left:688.140000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.346667pt;}
.ls4{letter-spacing:-0.122133pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.030080pt;}
.ls7{letter-spacing:0.037760pt;}
.ls0{letter-spacing:0.072320pt;}
.ls2{letter-spacing:0.084267pt;}
.lsc{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.179733pt;}
.ls5{letter-spacing:0.197867pt;}
.ls1{letter-spacing:0.341120pt;}
.ls9{letter-spacing:0.341333pt;}
.lsa{letter-spacing:0.365867pt;}
.ws9{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.834560pt;}
.ws4{word-spacing:-18.450133pt;}
.wsa{word-spacing:-16.128000pt;}
.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;}
.wsb{word-spacing:0.000000pt;}
._10{margin-left:-3.595520pt;}
._1{margin-left:-1.957760pt;}
._5{margin-left:-1.064960pt;}
._0{width:1.024000pt;}
._d{width:2.469760pt;}
._c{width:3.648000pt;}
._f{width:5.224960pt;}
._9{width:6.272000pt;}
._8{width:7.488000pt;}
._6{width:8.704000pt;}
._e{width:10.048000pt;}
._b{width:10.944000pt;}
._a{width:12.096000pt;}
._13{width:13.312000pt;}
._7{width:14.545920pt;}
._11{width:20.608000pt;}
._12{width:21.568000pt;}
._2{width:23.143040pt;}
._4{width:24.064000pt;}
._3{width:24.984960pt;}
._15{width:27.840000pt;}
._14{width:28.736000pt;}
.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:116.000000pt;}
.y3b{bottom:137.200000pt;}
.y3a{bottom:158.320000pt;}
.y39{bottom:179.520000pt;}
.y38{bottom:200.666667pt;}
.y37{bottom:221.866667pt;}
.y36{bottom:242.986667pt;}
.y35{bottom:264.186667pt;}
.y34{bottom:285.306667pt;}
.y33{bottom:306.506667pt;}
.y32{bottom:327.626667pt;}
.y31{bottom:348.826667pt;}
.y30{bottom:369.946667pt;}
.y2f{bottom:391.146667pt;}
.y2e{bottom:412.266667pt;}
.y2d{bottom:433.386667pt;}
.y2c{bottom:454.586667pt;}
.y2b{bottom:475.706667pt;}
.y2a{bottom:496.906667pt;}
.y29{bottom:518.026667pt;}
.y28{bottom:539.226667pt;}
.y27{bottom:560.346667pt;}
.y26{bottom:581.573333pt;}
.y25{bottom:602.693333pt;}
.y24{bottom:623.893333pt;}
.y23{bottom:645.013333pt;}
.y22{bottom:666.213333pt;}
.y21{bottom:687.333333pt;}
.y20{bottom:708.533333pt;}
.y1f{bottom:729.653333pt;}
.y1e{bottom:750.853333pt;}
.y1d{bottom:771.973333pt;}
.y1c{bottom:793.173333pt;}
.y1b{bottom:814.293333pt;}
.y1a{bottom:835.493333pt;}
.y19{bottom:856.613333pt;}
.y18{bottom:875.173333pt;}
.y17{bottom:893.893333pt;}
.y16{bottom:912.613333pt;}
.y40{bottom:930.693333pt;}
.y15{bottom:931.413333pt;}
.y14{bottom:950.160000pt;}
.y3f{bottom:951.920000pt;}
.y13{bottom:969.520000pt;}
.y3e{bottom:973.040000pt;}
.y12{bottom:991.440000pt;}
.y3d{bottom:994.160000pt;}
.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;}
.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:80.559988pt;}
.x10{left:113.466655pt;}
.xc{left:125.866655pt;}
.x7{left:153.386667pt;}
.xf{left:247.146655pt;}
.xe{left:278.986655pt;}
.xd{left:330.933322pt;}
.xa{left:338.373322pt;}
.x2{left:348.053333pt;}
.xb{left:351.093322pt;}
.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; }
  