
    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_001c9f758d8ee543dc4f18a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_5d9eb64fc710ebc9ad9b27ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.891602;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_2d4be2056c948338015d5518.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_5cd8c507d315d2c8ba6c44be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_903a61af10dca8fc832a9db9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891602;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_aca00bb0e5e110def46fcfdb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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:ff7;src:url('chunks/assets/font_fbc3f32b6d3233b77c9fff9f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.735500;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:ff8;src:url('chunks/assets/font_fbc3f32b6d3233b77c9fff9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.735500;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:ff9;src:url('chunks/assets/font_3babcdee3b223d6abc3d394f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747000;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:ffa;src:url('chunks/assets/font_d6b8537402eb319faf16abb7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.698000;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:ffb;src:url('chunks/assets/font_06ba03bb07f8a68d99b83a85.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.909000;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:ffc;src:url('chunks/assets/font_f84f9677328922e8a42fb83b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.727051;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;}
.m1{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,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;}
.ls14{letter-spacing:-1.500000px;}
.ls11{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.302400px;}
.lsb{letter-spacing:-0.241920px;}
.ls12{letter-spacing:-0.234000px;}
.lsf{letter-spacing:-0.198720px;}
.lsc{letter-spacing:-0.158976px;}
.lsd{letter-spacing:-0.119232px;}
.lse{letter-spacing:-0.079488px;}
.ls10{letter-spacing:-0.059616px;}
.ls6{letter-spacing:-0.021600px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.131472px;}
.ls2{letter-spacing:0.239040px;}
.ls9{letter-spacing:0.274896px;}
.ls8{letter-spacing:0.322704px;}
.ls3{letter-spacing:5.802624px;}
.ls4{letter-spacing:5.829120px;}
.ls13{letter-spacing:12.000000px;}
.ls5{letter-spacing:13.272000px;}
.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;}
}
.wse{word-spacing:-449.520000px;}
.ws10{word-spacing:-448.560000px;}
.wsb{word-spacing:-105.408000px;}
.ws1{word-spacing:-30.119040px;}
.ws4{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.480512px;}
.ws8{word-spacing:-16.440768px;}
.ws7{word-spacing:-16.401024px;}
.ws2{word-spacing:-14.878080px;}
.ws9{word-spacing:-12.288000px;}
.wsd{word-spacing:-12.282000px;}
.ws11{word-spacing:-1.272000px;}
.ws0{word-spacing:-0.050400px;}
.ws12{word-spacing:-0.006000px;}
.wsc{word-spacing:0.000000px;}
.ws3{word-spacing:0.092736px;}
.ws6{word-spacing:0.132480px;}
.wsf{word-spacing:0.960000px;}
.wsa{word-spacing:17.688000px;}
._c{margin-left:-391.488000px;}
._b{margin-left:-242.688000px;}
._e{margin-left:-193.248000px;}
._d{margin-left:-41.046000px;}
._f{margin-left:-11.880393px;}
._0{margin-left:-1.027872px;}
._1{width:1.075680px;}
._5{width:2.633760px;}
._a{width:4.371840px;}
._2{width:6.012000px;}
._4{width:7.750080px;}
._3{width:8.876160px;}
._9{width:13.380480px;}
._8{width:14.440320px;}
._7{width:22.190400px;}
._6{width:30.669120px;}
.fc3{color:rgb(124,166,184);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,102,0);}
.fc4{color:rgb(125,166,185);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:119.520000px;}
.fs5{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.460000px;}
.y1{bottom:52.500000px;}
.y14{bottom:707.798880px;}
.y13{bottom:735.884640px;}
.y12{bottom:754.961760px;}
.y11{bottom:774.038880px;}
.y10{bottom:792.751680px;}
.yf{bottom:811.828800px;}
.ye{bottom:830.905920px;}
.yd{bottom:849.983040px;}
.yc{bottom:868.695840px;}
.yb{bottom:887.772960px;}
.ya{bottom:906.850080px;}
.y9{bottom:925.562880px;}
.y8{bottom:944.640000px;}
.y7{bottom:991.077840px;}
.y6{bottom:1008.360000px;}
.y5{bottom:1035.360000px;}
.y4{bottom:1088.268840px;}
.y3{bottom:1122.840000px;}
.y1a{bottom:1179.270000px;}
.y18{bottom:1180.297500px;}
.y17{bottom:1192.297500px;}
.y19{bottom:1195.089000px;}
.y16{bottom:1204.297500px;}
.y15{bottom:1216.297500px;}
.h2{height:24.000000px;}
.h8{height:34.896000px;}
.ha{height:38.556000px;}
.h6{height:41.993438px;}
.h7{height:45.992812px;}
.h5{height:48.761719px;}
.h3{height:50.308594px;}
.h4{height:81.002812px;}
.h9{height:122.808000px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w2{width:31.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:102.958500px;}
.x7{left:106.200000px;}
.x3{left:111.116310px;}
.x8{left:221.143500px;}
.x5{left:276.992100px;}
.x2{left:280.476150px;}
.x6{left:387.776340px;}
.x4{left:407.896200px;}
.x1{left:430.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.333333pt;}
.ls11{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.268800pt;}
.lsb{letter-spacing:-0.215040pt;}
.ls12{letter-spacing:-0.208000pt;}
.lsf{letter-spacing:-0.176640pt;}
.lsc{letter-spacing:-0.141312pt;}
.lsd{letter-spacing:-0.105984pt;}
.lse{letter-spacing:-0.070656pt;}
.ls10{letter-spacing:-0.052992pt;}
.ls6{letter-spacing:-0.019200pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.116864pt;}
.ls2{letter-spacing:0.212480pt;}
.ls9{letter-spacing:0.244352pt;}
.ls8{letter-spacing:0.286848pt;}
.ls3{letter-spacing:5.157888pt;}
.ls4{letter-spacing:5.181440pt;}
.ls13{letter-spacing:10.666667pt;}
.ls5{letter-spacing:11.797333pt;}
.wse{word-spacing:-399.573333pt;}
.ws10{word-spacing:-398.720000pt;}
.wsb{word-spacing:-93.696000pt;}
.ws1{word-spacing:-26.772480pt;}
.ws4{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.649344pt;}
.ws8{word-spacing:-14.614016pt;}
.ws7{word-spacing:-14.578688pt;}
.ws2{word-spacing:-13.224960pt;}
.ws9{word-spacing:-10.922667pt;}
.wsd{word-spacing:-10.917333pt;}
.ws11{word-spacing:-1.130667pt;}
.ws0{word-spacing:-0.044800pt;}
.ws12{word-spacing:-0.005333pt;}
.wsc{word-spacing:0.000000pt;}
.ws3{word-spacing:0.082432pt;}
.ws6{word-spacing:0.117760pt;}
.wsf{word-spacing:0.853333pt;}
.wsa{word-spacing:15.722667pt;}
._c{margin-left:-347.989333pt;}
._b{margin-left:-215.722667pt;}
._e{margin-left:-171.776000pt;}
._d{margin-left:-36.485333pt;}
._f{margin-left:-10.560349pt;}
._0{margin-left:-0.913664pt;}
._1{width:0.956160pt;}
._5{width:2.341120pt;}
._a{width:3.886080pt;}
._2{width:5.344000pt;}
._4{width:6.888960pt;}
._3{width:7.889920pt;}
._9{width:11.893760pt;}
._8{width:12.835840pt;}
._7{width:19.724800pt;}
._6{width:27.261440pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.240000pt;}
.fs5{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.853333pt;}
.y1{bottom:46.666667pt;}
.y14{bottom:629.154560pt;}
.y13{bottom:654.119680pt;}
.y12{bottom:671.077120pt;}
.y11{bottom:688.034560pt;}
.y10{bottom:704.668160pt;}
.yf{bottom:721.625600pt;}
.ye{bottom:738.583040pt;}
.yd{bottom:755.540480pt;}
.yc{bottom:772.174080pt;}
.yb{bottom:789.131520pt;}
.ya{bottom:806.088960pt;}
.y9{bottom:822.722560pt;}
.y8{bottom:839.680000pt;}
.y7{bottom:880.958080pt;}
.y6{bottom:896.320000pt;}
.y5{bottom:920.320000pt;}
.y4{bottom:967.350080pt;}
.y3{bottom:998.080000pt;}
.y1a{bottom:1048.240000pt;}
.y18{bottom:1049.153333pt;}
.y17{bottom:1059.820000pt;}
.y19{bottom:1062.301333pt;}
.y16{bottom:1070.486667pt;}
.y15{bottom:1081.153333pt;}
.h2{height:21.333333pt;}
.h8{height:31.018667pt;}
.ha{height:34.272000pt;}
.h6{height:37.327500pt;}
.h7{height:40.882500pt;}
.h5{height:43.343750pt;}
.h3{height:44.718750pt;}
.h4{height:72.002500pt;}
.h9{height:109.162667pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w2{width:28.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:91.518667pt;}
.x7{left:94.400000pt;}
.x3{left:98.770053pt;}
.x8{left:196.572000pt;}
.x5{left:246.215200pt;}
.x2{left:249.312133pt;}
.x6{left:344.690080pt;}
.x4{left:362.574400pt;}
.x1{left:382.666667pt;}
}




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