
    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_96394f5d7d947b5a93dd8993.woff')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_fa9f351c3d36ad776ebf72b6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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);}
.v2{vertical-align:-23.819400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759400px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.058080px;}
.ls1{letter-spacing:0.118680px;}
.ls2{letter-spacing:0.119280px;}
.ls3{letter-spacing:0.306060px;}
.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;}
}
.ws1{word-spacing:-13.434540px;}
.ws0{word-spacing:-7.892640px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.220610px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:66.180000px;}
.fs0{font-size:84.180000px;}
.y0{bottom:0.000000px;}
.y29{bottom:4.499715px;}
.y1f{bottom:4.499730px;}
.ye{bottom:4.499865px;}
.y2b{bottom:4.499880px;}
.yb{bottom:4.499985px;}
.y12{bottom:4.500000px;}
.y23{bottom:114.584850px;}
.y22{bottom:151.845015px;}
.y21{bottom:192.900000px;}
.y20{bottom:228.344850px;}
.y1e{bottom:254.084970px;}
.y1d{bottom:285.240000px;}
.y1c{bottom:320.700000px;}
.y1b{bottom:346.440000px;}
.y1a{bottom:381.900000px;}
.y19{bottom:407.640000px;}
.y18{bottom:438.585015px;}
.y17{bottom:474.044850px;}
.y16{bottom:499.605000px;}
.y15{bottom:535.064700px;}
.y14{bottom:560.804985px;}
.y13{bottom:591.765000px;}
.y11{bottom:622.740000px;}
.y10{bottom:705.525000px;}
.yf{bottom:731.085015px;}
.yd{bottom:762.044985px;}
.yc{bottom:797.504850px;}
.ya{bottom:823.245015px;}
.y9{bottom:858.719850px;}
.y8{bottom:889.679700px;}
.y2e{bottom:892.545000px;}
.y2d{bottom:923.504850px;}
.y7{bottom:934.304700px;}
.y2c{bottom:949.245015px;}
.y6{bottom:960.420000px;}
.y2a{bottom:980.219970px;}
.y5{bottom:999.105000px;}
.y28{bottom:1011.179985px;}
.y4{bottom:1025.219850px;}
.y27{bottom:1042.140000px;}
.y3{bottom:1063.739850px;}
.y26{bottom:1077.585000px;}
.y25{bottom:1108.545000px;}
.y2{bottom:1109.804700px;}
.y1{bottom:1135.379850px;}
.y24{bottom:1139.504850px;}
.h5{height:19.980000px;}
.h3{height:25.913672px;}
.h4{height:44.109229px;}
.h2{height:49.673072px;}
.h1{height:56.106299px;}
.h0{height:1263.000000px;}
.w1c{width:1.065000px;}
.w29{width:1.785000px;}
.w2b{width:3.240000px;}
.w27{width:3.419970px;}
.w41{width:5.400000px;}
.w26{width:7.544970px;}
.wd{width:7.919970px;}
.wf{width:8.084970px;}
.w1d{width:8.639985px;}
.w3{width:8.804985px;}
.w1a{width:9.179985px;}
.w15{width:10.245000px;}
.w2c{width:13.139985px;}
.w36{width:14.219985px;}
.w16{width:29.700000px;}
.w3a{width:30.764985px;}
.w34{width:34.004985px;}
.w3d{width:35.459970px;}
.w38{width:35.639985px;}
.w1e{width:45.179985px;}
.w28{width:46.980000px;}
.w39{width:56.160000px;}
.w23{width:58.304985px;}
.w37{width:61.379985px;}
.w7{width:64.440000px;}
.w42{width:67.304985px;}
.w3c{width:70.919985px;}
.w3b{width:72.719985px;}
.wb{width:73.980000px;}
.w8{width:75.044985px;}
.w40{width:79.004985px;}
.we{width:89.264985px;}
.w35{width:95.025000px;}
.w10{width:98.640000px;}
.w2a{width:99.180015px;}
.wc{width:105.660000px;}
.w5{width:109.440000px;}
.w2{width:111.584985px;}
.w9{width:115.004985px;}
.w1f{width:118.785000px;}
.w13{width:120.240000px;}
.w31{width:129.240000px;}
.w33{width:129.765000px;}
.w17{width:133.004985px;}
.w2e{width:143.459985px;}
.w3e{width:144.000000px;}
.w32{width:148.500000px;}
.w2f{width:154.980000px;}
.w25{width:155.504985px;}
.w20{width:157.680015px;}
.w11{width:164.700000px;}
.w14{width:183.584985px;}
.w22{width:185.565000px;}
.w6{width:194.745000px;}
.w18{width:194.940000px;}
.w12{width:202.500000px;}
.w2d{width:209.504970px;}
.w1b{width:214.200000px;}
.wa{width:248.219985px;}
.w19{width:265.500000px;}
.w3f{width:310.679985px;}
.w24{width:320.565000px;}
.w30{width:413.085015px;}
.w21{width:496.605000px;}
.w4{width:517.140000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:124.544700px;}
.x3{left:125.640000px;}
.x2b{left:127.605000px;}
.x1f{left:183.959985px;}
.x8{left:190.065000px;}
.xb{left:199.605000px;}
.x6{left:235.065000px;}
.x4{left:237.240000px;}
.x2c{left:256.844985px;}
.x29{left:269.084970px;}
.x3c{left:271.605000px;}
.x21{left:281.160000px;}
.x1d{left:283.304985px;}
.x22{left:288.719985px;}
.x23{left:292.139985px;}
.x15{left:309.240000px;}
.x13{left:328.139985px;}
.x19{left:339.825000px;}
.x5{left:349.740000px;}
.x1a{left:358.379970px;}
.x2f{left:363.584970px;}
.x30{left:367.004970px;}
.x2d{left:371.325000px;}
.x16{left:379.440000px;}
.x31{left:401.025000px;}
.x1b{left:403.544985px;}
.x9{left:424.785000px;}
.x39{left:441.345015px;}
.x3a{left:444.765000px;}
.x24{left:448.919985px;}
.x25{left:452.160000px;}
.xc{left:455.400000px;}
.xd{left:463.304985px;}
.x26{left:465.285000px;}
.x27{left:468.525000px;}
.x14{left:469.980000px;}
.x3b{left:480.240000px;}
.x32{left:496.064985px;}
.x33{left:510.285000px;}
.x17{left:512.460015px;}
.x2e{left:519.824970px;}
.x1c{left:522.345015px;}
.xa{left:539.804985px;}
.x7{left:544.500000px;}
.xe{left:552.585015px;}
.xf{left:560.699970px;}
.x34{left:571.679985px;}
.x35{left:607.304985px;}
.x18{left:615.240000px;}
.x10{left:659.324970px;}
.x36{left:663.480000px;}
.x11{left:667.439985px;}
.x20{left:670.304985px;}
.x28{left:678.044985px;}
.x3d{left:682.005015px;}
.x37{left:694.244970px;}
.x38{left:697.500000px;}
.x3e{left:761.025000px;}
.x2a{left:762.824970px;}
.x3f{left:766.439985px;}
.x12{left:832.140000px;}
.x1e{left:846.344970px;}
@media print{
.v2{vertical-align:-21.172800pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.051627pt;}
.ls1{letter-spacing:0.105493pt;}
.ls2{letter-spacing:0.106027pt;}
.ls3{letter-spacing:0.272053pt;}
.ws1{word-spacing:-11.941813pt;}
.ws0{word-spacing:-7.015680pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.084987pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:58.826667pt;}
.fs0{font-size:74.826667pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:3.999747pt;}
.y1f{bottom:3.999760pt;}
.ye{bottom:3.999880pt;}
.y2b{bottom:3.999893pt;}
.yb{bottom:3.999987pt;}
.y12{bottom:4.000000pt;}
.y23{bottom:101.853200pt;}
.y22{bottom:134.973347pt;}
.y21{bottom:171.466667pt;}
.y20{bottom:202.973200pt;}
.y1e{bottom:225.853307pt;}
.y1d{bottom:253.546667pt;}
.y1c{bottom:285.066667pt;}
.y1b{bottom:307.946667pt;}
.y1a{bottom:339.466667pt;}
.y19{bottom:362.346667pt;}
.y18{bottom:389.853347pt;}
.y17{bottom:421.373200pt;}
.y16{bottom:444.093333pt;}
.y15{bottom:475.613067pt;}
.y14{bottom:498.493320pt;}
.y13{bottom:526.013333pt;}
.y11{bottom:553.546667pt;}
.y10{bottom:627.133333pt;}
.yf{bottom:649.853347pt;}
.yd{bottom:677.373320pt;}
.yc{bottom:708.893200pt;}
.ya{bottom:731.773347pt;}
.y9{bottom:763.306533pt;}
.y8{bottom:790.826400pt;}
.y2e{bottom:793.373333pt;}
.y2d{bottom:820.893200pt;}
.y7{bottom:830.493067pt;}
.y2c{bottom:843.773347pt;}
.y6{bottom:853.706667pt;}
.y2a{bottom:871.306640pt;}
.y5{bottom:888.093333pt;}
.y28{bottom:898.826653pt;}
.y4{bottom:911.306533pt;}
.y27{bottom:926.346667pt;}
.y3{bottom:945.546533pt;}
.y26{bottom:957.853333pt;}
.y25{bottom:985.373333pt;}
.y2{bottom:986.493067pt;}
.y1{bottom:1009.226533pt;}
.y24{bottom:1012.893200pt;}
.h5{height:17.760000pt;}
.h3{height:23.034375pt;}
.h4{height:39.208203pt;}
.h2{height:44.153842pt;}
.h1{height:49.872266pt;}
.h0{height:1122.666667pt;}
.w1c{width:0.946667pt;}
.w29{width:1.586667pt;}
.w2b{width:2.880000pt;}
.w27{width:3.039973pt;}
.w41{width:4.800000pt;}
.w26{width:6.706640pt;}
.wd{width:7.039973pt;}
.wf{width:7.186640pt;}
.w1d{width:7.679987pt;}
.w3{width:7.826653pt;}
.w1a{width:8.159987pt;}
.w15{width:9.106667pt;}
.w2c{width:11.679987pt;}
.w36{width:12.639987pt;}
.w16{width:26.400000pt;}
.w3a{width:27.346653pt;}
.w34{width:30.226653pt;}
.w3d{width:31.519973pt;}
.w38{width:31.679987pt;}
.w1e{width:40.159987pt;}
.w28{width:41.760000pt;}
.w39{width:49.920000pt;}
.w23{width:51.826653pt;}
.w37{width:54.559987pt;}
.w7{width:57.280000pt;}
.w42{width:59.826653pt;}
.w3c{width:63.039987pt;}
.w3b{width:64.639987pt;}
.wb{width:65.760000pt;}
.w8{width:66.706653pt;}
.w40{width:70.226653pt;}
.we{width:79.346653pt;}
.w35{width:84.466667pt;}
.w10{width:87.680000pt;}
.w2a{width:88.160013pt;}
.wc{width:93.920000pt;}
.w5{width:97.280000pt;}
.w2{width:99.186653pt;}
.w9{width:102.226653pt;}
.w1f{width:105.586667pt;}
.w13{width:106.880000pt;}
.w31{width:114.880000pt;}
.w33{width:115.346667pt;}
.w17{width:118.226653pt;}
.w2e{width:127.519987pt;}
.w3e{width:128.000000pt;}
.w32{width:132.000000pt;}
.w2f{width:137.760000pt;}
.w25{width:138.226653pt;}
.w20{width:140.160013pt;}
.w11{width:146.400000pt;}
.w14{width:163.186653pt;}
.w22{width:164.946667pt;}
.w6{width:173.106667pt;}
.w18{width:173.280000pt;}
.w12{width:180.000000pt;}
.w2d{width:186.226640pt;}
.w1b{width:190.400000pt;}
.wa{width:220.639987pt;}
.w19{width:236.000000pt;}
.w3f{width:276.159987pt;}
.w24{width:284.946667pt;}
.w30{width:367.186680pt;}
.w21{width:441.426667pt;}
.w4{width:459.680000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:110.706400pt;}
.x3{left:111.680000pt;}
.x2b{left:113.426667pt;}
.x1f{left:163.519987pt;}
.x8{left:168.946667pt;}
.xb{left:177.426667pt;}
.x6{left:208.946667pt;}
.x4{left:210.880000pt;}
.x2c{left:228.306653pt;}
.x29{left:239.186640pt;}
.x3c{left:241.426667pt;}
.x21{left:249.920000pt;}
.x1d{left:251.826653pt;}
.x22{left:256.639987pt;}
.x23{left:259.679987pt;}
.x15{left:274.880000pt;}
.x13{left:291.679987pt;}
.x19{left:302.066667pt;}
.x5{left:310.880000pt;}
.x1a{left:318.559973pt;}
.x2f{left:323.186640pt;}
.x30{left:326.226640pt;}
.x2d{left:330.066667pt;}
.x16{left:337.280000pt;}
.x31{left:356.466667pt;}
.x1b{left:358.706653pt;}
.x9{left:377.586667pt;}
.x39{left:392.306680pt;}
.x3a{left:395.346667pt;}
.x24{left:399.039987pt;}
.x25{left:401.920000pt;}
.xc{left:404.800000pt;}
.xd{left:411.826653pt;}
.x26{left:413.586667pt;}
.x27{left:416.466667pt;}
.x14{left:417.760000pt;}
.x3b{left:426.880000pt;}
.x32{left:440.946653pt;}
.x33{left:453.586667pt;}
.x17{left:455.520013pt;}
.x2e{left:462.066640pt;}
.x1c{left:464.306680pt;}
.xa{left:479.826653pt;}
.x7{left:484.000000pt;}
.xe{left:491.186680pt;}
.xf{left:498.399973pt;}
.x34{left:508.159987pt;}
.x35{left:539.826653pt;}
.x18{left:546.880000pt;}
.x10{left:586.066640pt;}
.x36{left:589.760000pt;}
.x11{left:593.279987pt;}
.x20{left:595.826653pt;}
.x28{left:602.706653pt;}
.x3d{left:606.226680pt;}
.x37{left:617.106640pt;}
.x38{left:620.000000pt;}
.x3e{left:676.466667pt;}
.x2a{left:678.066640pt;}
.x3f{left:681.279987pt;}
.x12{left:739.680000pt;}
.x1e{left:752.306640pt;}
}




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