
    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_d1b7b57391e6f2bcf5dc53fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956604;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_599492ceed9862e09ee663f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935571;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_0facd97de4c0ea922e8c280b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.912100;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_e3927a0e0a89db5f15775d84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_924f73b7405e44d32f211e88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.746094;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_78622ffa0106c3fca1aaac31.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963379;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);}
.v6{vertical-align:-76.320011px;}
.v4{vertical-align:-72.048589px;}
.v5{vertical-align:-50.625002px;}
.v2{vertical-align:-22.500001px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.500001px;}
.v1{vertical-align:50.625002px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.500003px;}
.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;}
}
.ws8{word-spacing:-81.000003px;}
.ws3{word-spacing:-36.585001px;}
.ws9{word-spacing:-34.830001px;}
.ws1{word-spacing:-33.261621px;}
.ws5{word-spacing:-32.520000px;}
.ws6{word-spacing:-30.960000px;}
.ws2{word-spacing:-27.864001px;}
.ws7{word-spacing:-24.768002px;}
.ws0{word-spacing:-23.220002px;}
.ws4{word-spacing:-21.672000px;}
.wsb{word-spacing:0.000000px;}
.wsa{word-spacing:3790.584121px;}
._1{margin-left:-29.184002px;}
._d{margin-left:-15.690000px;}
._5{margin-left:-10.368001px;}
._2{margin-left:-9.216001px;}
._a{margin-left:-8.143173px;}
._0{margin-left:-6.528000px;}
._9{margin-left:-4.590000px;}
._6{margin-left:-3.456000px;}
._3{margin-left:-1.536000px;}
._7{width:1.485000px;}
._8{width:2.521872px;}
._4{width:3.840000px;}
._c{width:5.745975px;}
._e{width:7.746000px;}
._f{width:10.584000px;}
._b{width:471.519156px;}
.fc7{color:transparent;}
.fc6{color:rgb(19,79,92);}
.fc5{color:rgb(207,226,243);}
.fc4{color:rgb(56,118,29);}
.fc3{color:rgb(204,0,0);}
.fc2{color:rgb(77,208,225);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,52,61);}
.fs4{font-size:40.000002px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:84.000000px;}
.fs3{font-size:90.000007px;}
.fsd{font-size:96.000006px;}
.fsc{font-size:96.565800px;}
.fs5{font-size:102.280814px;}
.fs8{font-size:108.000003px;}
.fsb{font-size:120.000001px;}
.fs6{font-size:122.736608px;}
.fs2{font-size:135.000004px;}
.fs7{font-size:137.324650px;}
.fs9{font-size:216.000007px;}
.fs0{font-size:384.000024px;}
.y0{bottom:0.000000px;}
.y3{bottom:172.725454px;}
.y38{bottom:411.674921px;}
.y35{bottom:458.474912px;}
.y37{bottom:488.174908px;}
.y34{bottom:498.974913px;}
.y33{bottom:539.474914px;}
.y36{bottom:569.534906px;}
.y32{bottom:620.474911px;}
.y31{bottom:660.974907px;}
.y3c{bottom:740.534912px;}
.y26{bottom:762.924379px;}
.y25{bottom:809.499369px;}
.y24{bottom:856.074359px;}
.y30{bottom:897.934789px;}
.y23{bottom:974.534919px;}
.y2f{bottom:978.934792px;}
.y2e{bottom:1019.434800px;}
.y2d{bottom:1100.794798px;}
.y15{bottom:1258.451772px;}
.y14{bottom:1283.651762px;}
.y13{bottom:1308.851762px;}
.y12{bottom:1373.111748px;}
.y11{bottom:1413.611743px;}
.y22{bottom:1540.074370px;}
.y21{bottom:1658.534939px;}
.y28{bottom:1858.694945px;}
.y3b{bottom:1863.194945px;}
.y27{bottom:1895.954946px;}
.y3a{bottom:1900.454946px;}
.y10{bottom:1989.734938px;}
.yf{bottom:2054.534951px;}
.y2c{bottom:2160.892354px;}
.y2b{bottom:2201.392355px;}
.ye{bottom:2208.608881px;}
.y2a{bottom:2241.892350px;}
.yd{bottom:2272.019913px;}
.y29{bottom:2282.392346px;}
.yc{bottom:2313.217319px;}
.yb{bottom:2354.414713px;}
.ya{bottom:2480.194998px;}
.y9{bottom:2517.015975px;}
.y1e{bottom:2518.263397px;}
.y1d{bottom:2547.233150px;}
.y8{bottom:2571.849107px;}
.y1c{bottom:2576.202891px;}
.y1b{bottom:2605.172627px;}
.y20{bottom:2676.659974px;}
.y1f{bottom:2705.459972px;}
.y1a{bottom:2733.899996px;}
.y19{bottom:2769.899997px;}
.y18{bottom:2805.899975px;}
.y17{bottom:2841.899977px;}
.y16{bottom:2883.659980px;}
.y39{bottom:2895.344006px;}
.y7{bottom:3030.495005px;}
.y6{bottom:3050.519994px;}
.y5{bottom:3083.054989px;}
.y4{bottom:3115.454985px;}
.y2{bottom:3166.664987px;}
.y1{bottom:3281.864979px;}
.h4{height:30.618463px;}
.h2{height:45.927693px;}
.h5{height:53.118464px;}
.hc{height:64.298769px;}
.he{height:69.623942px;}
.hf{height:71.670862px;}
.h6{height:73.744467px;}
.h9{height:82.669849px;}
.h7{height:88.493095px;}
.hd{height:91.855385px;}
.hb{height:103.337311px;}
.h8{height:105.116738px;}
.h3{height:119.516546px;}
.ha{height:155.736005px;}
.h1{height:293.937249px;}
.h0{height:3574.500000px;}
.w0{width:2524.500000px;}
.x0{left:0.000000px;}
.x1{left:64.125002px;}
.x3{left:82.125003px;}
.x7{left:110.914372px;}
.x8{left:113.633857px;}
.x9{left:118.125004px;}
.x12{left:127.125004px;}
.x13{left:136.125004px;}
.x4{left:205.929513px;}
.x2{left:384.581712px;}
.x5{left:425.192387px;}
.x6{left:492.015211px;}
.xf{left:1378.125044px;}
.xa{left:1386.000044px;}
.x11{left:1387.125044px;}
.xe{left:1396.125045px;}
.xb{left:1545.750049px;}
.x10{left:1616.625052px;}
.xc{left:2000.710639px;}
.xd{left:2061.000066px;}
.x14{left:2134.125068px;}
@media print{
.v6{vertical-align:-67.840010pt;}
.v4{vertical-align:-64.043190pt;}
.v5{vertical-align:-45.000001pt;}
.v2{vertical-align:-20.000001pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.000001pt;}
.v1{vertical-align:45.000001pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.333336pt;}
.ws8{word-spacing:-72.000002pt;}
.ws3{word-spacing:-32.520001pt;}
.ws9{word-spacing:-30.960001pt;}
.ws1{word-spacing:-29.565885pt;}
.ws5{word-spacing:-28.906667pt;}
.ws6{word-spacing:-27.520000pt;}
.ws2{word-spacing:-24.768001pt;}
.ws7{word-spacing:-22.016001pt;}
.ws0{word-spacing:-20.640002pt;}
.ws4{word-spacing:-19.264000pt;}
.wsb{word-spacing:0.000000pt;}
.wsa{word-spacing:3369.408108pt;}
._1{margin-left:-25.941335pt;}
._d{margin-left:-13.946667pt;}
._5{margin-left:-9.216001pt;}
._2{margin-left:-8.192001pt;}
._a{margin-left:-7.238376pt;}
._0{margin-left:-5.802667pt;}
._9{margin-left:-4.080000pt;}
._6{margin-left:-3.072000pt;}
._3{margin-left:-1.365333pt;}
._7{width:1.320000pt;}
._8{width:2.241664pt;}
._4{width:3.413334pt;}
._c{width:5.107534pt;}
._e{width:6.885334pt;}
._f{width:9.408000pt;}
._b{width:419.128139pt;}
.fs4{font-size:35.555558pt;}
.fs1{font-size:53.333334pt;}
.fsa{font-size:74.666666pt;}
.fs3{font-size:80.000007pt;}
.fsd{font-size:85.333339pt;}
.fsc{font-size:85.836267pt;}
.fs5{font-size:90.916279pt;}
.fs8{font-size:96.000003pt;}
.fsb{font-size:106.666667pt;}
.fs6{font-size:109.099207pt;}
.fs2{font-size:120.000004pt;}
.fs7{font-size:122.066356pt;}
.fs9{font-size:192.000006pt;}
.fs0{font-size:341.333355pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:153.533737pt;}
.y38{bottom:365.933263pt;}
.y35{bottom:407.533255pt;}
.y37{bottom:433.933252pt;}
.y34{bottom:443.533256pt;}
.y33{bottom:479.533257pt;}
.y36{bottom:506.253250pt;}
.y32{bottom:551.533254pt;}
.y31{bottom:587.533250pt;}
.y3c{bottom:658.253255pt;}
.y26{bottom:678.155003pt;}
.y25{bottom:719.554995pt;}
.y24{bottom:760.954986pt;}
.y30{bottom:798.164257pt;}
.y23{bottom:866.253261pt;}
.y2f{bottom:870.164260pt;}
.y2e{bottom:906.164267pt;}
.y2d{bottom:978.484265pt;}
.y15{bottom:1118.623797pt;}
.y14{bottom:1141.023788pt;}
.y13{bottom:1163.423789pt;}
.y12{bottom:1220.543776pt;}
.y11{bottom:1256.543772pt;}
.y22{bottom:1368.954995pt;}
.y21{bottom:1474.253279pt;}
.y28{bottom:1652.173285pt;}
.y3b{bottom:1656.173285pt;}
.y27{bottom:1685.293286pt;}
.y3a{bottom:1689.293286pt;}
.y10{bottom:1768.653278pt;}
.yf{bottom:1826.253290pt;}
.y2c{bottom:1920.793203pt;}
.y2b{bottom:1956.793204pt;}
.ye{bottom:1963.207894pt;}
.y2a{bottom:1992.793200pt;}
.yd{bottom:2019.573256pt;}
.y29{bottom:2028.793197pt;}
.yc{bottom:2056.193172pt;}
.yb{bottom:2092.813079pt;}
.ya{bottom:2204.617776pt;}
.y9{bottom:2237.347533pt;}
.y1e{bottom:2238.456353pt;}
.y1d{bottom:2264.207244pt;}
.y8{bottom:2286.088095pt;}
.y1c{bottom:2289.958125pt;}
.y1b{bottom:2315.709002pt;}
.y20{bottom:2379.253310pt;}
.y1f{bottom:2404.853309pt;}
.y1a{bottom:2430.133329pt;}
.y19{bottom:2462.133330pt;}
.y18{bottom:2494.133311pt;}
.y17{bottom:2526.133312pt;}
.y16{bottom:2563.253316pt;}
.y39{bottom:2573.639116pt;}
.y7{bottom:2693.773338pt;}
.y6{bottom:2711.573328pt;}
.y5{bottom:2740.493323pt;}
.y4{bottom:2769.293320pt;}
.y2{bottom:2814.813322pt;}
.y1{bottom:2917.213315pt;}
.h4{height:27.216412pt;}
.h2{height:40.824616pt;}
.h5{height:47.216412pt;}
.hc{height:57.154461pt;}
.he{height:61.887948pt;}
.hf{height:63.707433pt;}
.h6{height:65.550637pt;}
.h9{height:73.484310pt;}
.h7{height:78.660529pt;}
.hd{height:81.649231pt;}
.hb{height:91.855388pt;}
.h8{height:93.437101pt;}
.h3{height:106.236930pt;}
.ha{height:138.432004pt;}
.h1{height:261.277555pt;}
.h0{height:3177.333333pt;}
.w0{width:2244.000000pt;}
.x0{left:0.000000pt;}
.x1{left:57.000002pt;}
.x3{left:73.000002pt;}
.x7{left:98.590553pt;}
.x8{left:101.007873pt;}
.x9{left:105.000003pt;}
.x12{left:113.000004pt;}
.x13{left:121.000004pt;}
.x4{left:183.048456pt;}
.x2{left:341.850411pt;}
.x5{left:377.948788pt;}
.x6{left:437.346854pt;}
.xf{left:1225.000039pt;}
.xa{left:1232.000039pt;}
.x11{left:1233.000039pt;}
.xe{left:1241.000040pt;}
.xb{left:1374.000044pt;}
.x10{left:1437.000046pt;}
.xc{left:1778.409457pt;}
.xd{left:1832.000059pt;}
.x14{left:1897.000061pt;}
}




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