
    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_267073ccef193e5054856dad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.739746;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_d0447f6dd11a3e6d46138fe0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976074;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_d983a7284758df80740f40d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_fe72f81e64c8886a4b67b39a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_4c1742f8203754c8868799d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976074;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);}
.v1{vertical-align:-9.360000px;}
.v2{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.351600px;}
.lsb{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.096000px;}
.ls8{letter-spacing:-0.065400px;}
.ls3{letter-spacing:-0.049680px;}
.ls6{letter-spacing:-0.009360px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.026640px;}
.lsa{letter-spacing:0.078624px;}
.ls5{letter-spacing:0.079200px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.193200px;}
.ls0{letter-spacing:20.301120px;}
.lsc{letter-spacing:60.156000px;}
.ls9{letter-spacing:60.300000px;}
.lse{letter-spacing:61.653600px;}
.lsd{letter-spacing:61.704000px;}
.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;}
}
.ws6{word-spacing:-61.560000px;}
.wsb{word-spacing:-40.122720px;}
.wsa{word-spacing:-40.043520px;}
.ws9{word-spacing:-36.936000px;}
.ws2{word-spacing:-20.517120px;}
.ws1{word-spacing:-20.437920px;}
.ws3{word-spacing:-20.428560px;}
.ws0{word-spacing:-16.498080px;}
.ws4{word-spacing:-1.881168px;}
.ws5{word-spacing:-0.283104px;}
.ws7{word-spacing:0.000000px;}
.ws8{word-spacing:7.116000px;}
._a{margin-left:-14.230080px;}
._9{margin-left:-12.865680px;}
._b{margin-left:-11.772000px;}
._7{margin-left:-2.885760px;}
._8{margin-left:-1.563120px;}
._1{width:1.149840px;}
._6{width:3.022272px;}
._c{width:4.216800px;}
._3{width:19.393920px;}
._4{width:21.442320px;}
._5{width:33.845520px;}
._2{width:3984.688320px;}
._0{width:5082.808320px;}
.fc5{color:rgb(0,112,192);}
.fc3{color:transparent;}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(217,217,217);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,102,153);}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:95.904000px;}
.fsc{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fse{font-size:113.760000px;}
.fsf{font-size:113.904000px;}
.fs9{font-size:120.240000px;}
.fsb{font-size:131.760000px;}
.fsa{font-size:144.144000px;}
.fs8{font-size:167.904000px;}
.fs7{font-size:180.000000px;}
.fs6{font-size:180.144000px;}
.fs10{font-size:198.000000px;}
.fs11{font-size:198.144000px;}
.y12{bottom:-452.805000px;}
.y11{bottom:-417.165000px;}
.y10{bottom:-381.525000px;}
.yf{bottom:-345.855000px;}
.ye{bottom:-258.375000px;}
.yd{bottom:-222.735000px;}
.yc{bottom:-187.050000px;}
.yb{bottom:-151.410000px;}
.y0{bottom:0.000000px;}
.y2{bottom:17.748000px;}
.y1{bottom:18.180000px;}
.y4{bottom:103.896000px;}
.y29{bottom:127.656000px;}
.y3{bottom:141.696000px;}
.y1a{bottom:158.040000px;}
.y28{bottom:167.430000px;}
.y19{bottom:190.440000px;}
.y27{bottom:207.210000px;}
.y18{bottom:222.840000px;}
.y26{bottom:246.990000px;}
.y17{bottom:255.240000px;}
.y16{bottom:287.670000px;}
.y25{bottom:295.815000px;}
.y15{bottom:320.070000px;}
.y14{bottom:352.470000px;}
.y24{bottom:368.175000px;}
.y13{bottom:384.870000px;}
.y23{bottom:407.955000px;}
.y1b{bottom:434.700000px;}
.y22{bottom:447.765000px;}
.y21{bottom:487.545000px;}
.y6{bottom:511.995000px;}
.y1e{bottom:513.825000px;}
.y9{bottom:525.345000px;}
.y20{bottom:536.325000px;}
.y5{bottom:566.025000px;}
.y1d{bottom:567.825000px;}
.y8{bottom:579.345000px;}
.y2b{bottom:606.810000px;}
.y1f{bottom:617.730000px;}
.y1c{bottom:621.870000px;}
.ya{bottom:651.855000px;}
.y2a{bottom:666.210000px;}
.y7{bottom:734.550000px;}
.h10{height:31.931719px;}
.h2{height:36.886641px;}
.h3{height:38.495391px;}
.h1{height:41.290312px;}
.h4{height:73.222734px;}
.h5{height:73.332844px;}
.hc{height:82.582031px;}
.hd{height:82.692141px;}
.he{height:86.986406px;}
.hf{height:87.096516px;}
.h9{height:91.941328px;}
.hb{height:100.750078px;}
.ha{height:110.219484px;}
.h8{height:128.387531px;}
.h7{height:137.636719px;}
.h6{height:137.746828px;}
.h11{height:151.400391px;}
.h12{height:151.510500px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x7{left:-115.200021px;}
.x0{left:0.000000px;}
.x1{left:32.039979px;}
.x3{left:40.679979px;}
.x4{left:42.299979px;}
.xb{left:55.799979px;}
.x6{left:63.971979px;}
.xc{left:67.859979px;}
.x5{left:118.799979px;}
.x8{left:138.347979px;}
.xa{left:139.355979px;}
.x9{left:178.844979px;}
.x2{left:655.379979px;}
.xd{left:937.904979px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v2{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.312533pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.085333pt;}
.ls8{letter-spacing:-0.058133pt;}
.ls3{letter-spacing:-0.044160pt;}
.ls6{letter-spacing:-0.008320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.023680pt;}
.lsa{letter-spacing:0.069888pt;}
.ls5{letter-spacing:0.070400pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.171733pt;}
.ls0{letter-spacing:18.045440pt;}
.lsc{letter-spacing:53.472000pt;}
.ls9{letter-spacing:53.600000pt;}
.lse{letter-spacing:54.803200pt;}
.lsd{letter-spacing:54.848000pt;}
.ws6{word-spacing:-54.720000pt;}
.wsb{word-spacing:-35.664640pt;}
.wsa{word-spacing:-35.594240pt;}
.ws9{word-spacing:-32.832000pt;}
.ws2{word-spacing:-18.237440pt;}
.ws1{word-spacing:-18.167040pt;}
.ws3{word-spacing:-18.158720pt;}
.ws0{word-spacing:-14.664960pt;}
.ws4{word-spacing:-1.672149pt;}
.ws5{word-spacing:-0.251648pt;}
.ws7{word-spacing:0.000000pt;}
.ws8{word-spacing:6.325333pt;}
._a{margin-left:-12.648960pt;}
._9{margin-left:-11.436160pt;}
._b{margin-left:-10.464000pt;}
._7{margin-left:-2.565120pt;}
._8{margin-left:-1.389440pt;}
._1{width:1.022080pt;}
._6{width:2.686464pt;}
._c{width:3.748267pt;}
._3{width:17.239040pt;}
._4{width:19.059840pt;}
._5{width:30.084907pt;}
._2{width:3541.945173pt;}
._0{width:4518.051840pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:85.248000pt;}
.fsc{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fse{font-size:101.120000pt;}
.fsf{font-size:101.248000pt;}
.fs9{font-size:106.880000pt;}
.fsb{font-size:117.120000pt;}
.fsa{font-size:128.128000pt;}
.fs8{font-size:149.248000pt;}
.fs7{font-size:160.000000pt;}
.fs6{font-size:160.128000pt;}
.fs10{font-size:176.000000pt;}
.fs11{font-size:176.128000pt;}
.y12{bottom:-402.493333pt;}
.y11{bottom:-370.813333pt;}
.y10{bottom:-339.133333pt;}
.yf{bottom:-307.426667pt;}
.ye{bottom:-229.666667pt;}
.yd{bottom:-197.986667pt;}
.yc{bottom:-166.266667pt;}
.yb{bottom:-134.586667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:15.776000pt;}
.y1{bottom:16.160000pt;}
.y4{bottom:92.352000pt;}
.y29{bottom:113.472000pt;}
.y3{bottom:125.952000pt;}
.y1a{bottom:140.480000pt;}
.y28{bottom:148.826667pt;}
.y19{bottom:169.280000pt;}
.y27{bottom:184.186667pt;}
.y18{bottom:198.080000pt;}
.y26{bottom:219.546667pt;}
.y17{bottom:226.880000pt;}
.y16{bottom:255.706667pt;}
.y25{bottom:262.946667pt;}
.y15{bottom:284.506667pt;}
.y14{bottom:313.306667pt;}
.y24{bottom:327.266667pt;}
.y13{bottom:342.106667pt;}
.y23{bottom:362.626667pt;}
.y1b{bottom:386.400000pt;}
.y22{bottom:398.013333pt;}
.y21{bottom:433.373333pt;}
.y6{bottom:455.106667pt;}
.y1e{bottom:456.733333pt;}
.y9{bottom:466.973333pt;}
.y20{bottom:476.733333pt;}
.y5{bottom:503.133333pt;}
.y1d{bottom:504.733333pt;}
.y8{bottom:514.973333pt;}
.y2b{bottom:539.386667pt;}
.y1f{bottom:549.093333pt;}
.y1c{bottom:552.773333pt;}
.ya{bottom:579.426667pt;}
.y2a{bottom:592.186667pt;}
.y7{bottom:652.933333pt;}
.h10{height:28.383750pt;}
.h2{height:32.788125pt;}
.h3{height:34.218125pt;}
.h1{height:36.702500pt;}
.h4{height:65.086875pt;}
.h5{height:65.184750pt;}
.hc{height:73.406250pt;}
.hd{height:73.504125pt;}
.he{height:77.321250pt;}
.hf{height:77.419125pt;}
.h9{height:81.725625pt;}
.hb{height:89.555625pt;}
.ha{height:97.972875pt;}
.h8{height:114.122250pt;}
.h7{height:122.343750pt;}
.h6{height:122.441625pt;}
.h11{height:134.578125pt;}
.h12{height:134.676000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x7{left:-102.400019pt;}
.x0{left:0.000000pt;}
.x1{left:28.479981pt;}
.x3{left:36.159981pt;}
.x4{left:37.599981pt;}
.xb{left:49.599981pt;}
.x6{left:56.863981pt;}
.xc{left:60.319981pt;}
.x5{left:105.599981pt;}
.x8{left:122.975981pt;}
.xa{left:123.871981pt;}
.x9{left:158.973314pt;}
.x2{left:582.559981pt;}
.xd{left:833.693314pt;}
}




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