
    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_56be3f0906984de54816aea3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.095000;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_5d15afed00a7e41c818d8799.woff')format("woff");}.ff2{font-family:ff2;line-height:1.085000;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_605bb0680182fe8a4154437b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_9299fcbd0ec127c1ab148952.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_17ea273acac89c653b1e13cb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.713867;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_990d52539b0cdf09a4d32f2c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.027334px;}
.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;}
}
.ws0{word-spacing:-24.746760px;}
.ws4{word-spacing:-24.746388px;}
.ws3{word-spacing:-21.617639px;}
.ws1{word-spacing:-19.079999px;}
.ws5{word-spacing:-15.582041px;}
.ws2{word-spacing:-15.263999px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-6.778348px;}
._5{margin-left:-5.245389px;}
._4{margin-left:-3.838432px;}
._3{margin-left:-2.835255px;}
._2{margin-left:-1.710126px;}
._0{width:1.736589px;}
._6{width:2.933633px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,49,49);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:52.540845px;}
.fs5{font-size:58.364122px;}
.fs7{font-size:59.984997px;}
.fs2{font-size:71.999997px;}
.fs1{font-size:89.999996px;}
.fs3{font-size:101.969996px;}
.fs4{font-size:113.984995px;}
.fs6{font-size:116.728244px;}
.fs0{font-size:116.730000px;}
.fs8{font-size:173.969993px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.000010px;}
.y22{bottom:3.423286px;}
.y17{bottom:3.436279px;}
.y24{bottom:6.858320px;}
.y19{bottom:6.903320px;}
.y3e{bottom:8.572500px;}
.y21{bottom:20.936901px;}
.y3d{bottom:28.822499px;}
.y11{bottom:30.374999px;}
.y15{bottom:37.124998px;}
.y20{bottom:38.450516px;}
.y3b{bottom:51.697438px;}
.yc{bottom:51.749998px;}
.y5{bottom:54.000041px;}
.y1f{bottom:55.964132px;}
.y3{bottom:57.374998px;}
.y10{bottom:65.249997px;}
.y3a{bottom:71.947437px;}
.y14{bottom:71.999997px;}
.y7{bottom:76.499997px;}
.y16{bottom:94.680006px;}
.y2{bottom:97.874996px;}
.yf{bottom:100.124996px;}
.y13{bottom:106.874996px;}
.ye{bottom:134.999994px;}
.y1e{bottom:144.360004px;}
.y1c{bottom:147.708714px;}
.y1b{bottom:167.958713px;}
.y1a{bottom:188.208712px;}
.y23{bottom:216.720001px;}
.y18{bottom:217.800001px;}
.y39{bottom:247.542074px;}
.y38{bottom:282.417072px;}
.y3c{bottom:284.610660px;}
.y36{bottom:299.900112px;}
.y37{bottom:317.292071px;}
.y12{bottom:348.511712px;}
.y30{bottom:377.794856px;}
.y2f{bottom:423.246510px;}
.y4{bottom:445.856132px;}
.ya{bottom:455.658965px;}
.y6{bottom:455.845509px;}
.y29{bottom:479.547088px;}
.y9{bottom:490.533964px;}
.y1{bottom:522.812184px;}
.yd{bottom:529.708085px;}
.y2c{bottom:537.581534px;}
.y34{bottom:546.145508px;}
.y33{bottom:581.020507px;}
.y2d{bottom:587.648780px;}
.y32{bottom:615.895506px;}
.y2a{bottom:648.651112px;}
.y35{bottom:662.731846px;}
.y2e{bottom:710.124666px;}
.y31{bottom:715.346250px;}
.y2b{bottom:728.546280px;}
.yb{bottom:732.639882px;}
.y28{bottom:809.808759px;}
.y27{bottom:935.664823px;}
.y26{bottom:975.039821px;}
.y25{bottom:1014.414819px;}
.y1d{bottom:1097.072555px;}
.he{height:17.999999px;}
.h10{height:34.559999px;}
.h1a{height:45.955303px;}
.h16{height:47.076597px;}
.h15{height:48.022333px;}
.hf{height:53.344807px;}
.h12{height:53.746557px;}
.h1b{height:56.985747px;}
.h7{height:66.887997px;}
.h14{height:68.039997px;}
.h5{height:83.609997px;}
.h19{height:91.365116px;}
.h9{height:93.200576px;}
.h17{height:104.182286px;}
.hb{height:105.892061px;}
.h11{height:106.689615px;}
.h18{height:106.691220px;}
.h3{height:108.442170px;}
.ha{height:122.624973px;}
.h4{height:123.750038px;}
.h13{height:159.008573px;}
.hd{height:161.999993px;}
.h6{height:164.249993px;}
.h2{height:175.499993px;}
.hc{height:183.374992px;}
.h8{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w2{width:129.374995px;}
.w3{width:164.249993px;}
.w1{width:175.499993px;}
.wa{width:185.399992px;}
.w8{width:446.039981px;}
.w7{width:709.919970px;}
.w6{width:787.500039px;}
.w5{width:932.624961px;}
.w9{width:1062.359956px;}
.w4{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x5{left:4.992187px;}
.x2{left:16.189452px;}
.xc{left:17.999999px;}
.x1a{left:19.486389px;}
.x14{left:25.964730px;}
.x3{left:45.105467px;}
.xb{left:62.542966px;}
.x10{left:70.190275px;}
.x12{left:73.784380px;}
.x11{left:75.041835px;}
.x9{left:114.380855px;}
.x1b{left:117.607478px;}
.x1c{left:132.601618px;}
.x1d{left:230.089901px;}
.x1e{left:245.084036px;}
.x13{left:368.536737px;}
.xe{left:410.443489px;}
.xf{left:414.675508px;}
.x1{left:418.523055px;}
.x4{left:533.198912px;}
.x19{left:696.054571px;}
.x15{left:721.816962px;}
.x16{left:748.290569px;}
.x6{left:752.342477px;}
.x17{left:758.406759px;}
.x7{left:945.367341px;}
.xd{left:1135.079953px;}
.x8{left:1157.395920px;}
.x18{left:1246.026728px;}
.xa{left:1302.221106px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024297pt;}
.ws0{word-spacing:-21.997120pt;}
.ws4{word-spacing:-21.996789pt;}
.ws3{word-spacing:-19.215679pt;}
.ws1{word-spacing:-16.959999pt;}
.ws5{word-spacing:-13.850703pt;}
.ws2{word-spacing:-13.567999pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-6.025199pt;}
._5{margin-left:-4.662568pt;}
._4{margin-left:-3.411940pt;}
._3{margin-left:-2.520227pt;}
._2{margin-left:-1.520112pt;}
._0{width:1.543635pt;}
._6{width:2.607674pt;}
.fs9{font-size:46.702974pt;}
.fs5{font-size:51.879219pt;}
.fs7{font-size:53.319997pt;}
.fs2{font-size:63.999997pt;}
.fs1{font-size:79.999997pt;}
.fs3{font-size:90.639996pt;}
.fs4{font-size:101.319996pt;}
.fs6{font-size:103.758440pt;}
.fs0{font-size:103.760000pt;}
.fs8{font-size:154.639994pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.000009pt;}
.y22{bottom:3.042921pt;}
.y17{bottom:3.054471pt;}
.y24{bottom:6.096285pt;}
.y19{bottom:6.136285pt;}
.y3e{bottom:7.620000pt;}
.y21{bottom:18.610579pt;}
.y3d{bottom:25.619999pt;}
.y11{bottom:26.999999pt;}
.y15{bottom:32.999999pt;}
.y20{bottom:34.178237pt;}
.y3b{bottom:45.953278pt;}
.yc{bottom:45.999998pt;}
.y5{bottom:48.000036pt;}
.y1f{bottom:49.745895pt;}
.y3{bottom:50.999998pt;}
.y10{bottom:57.999998pt;}
.y3a{bottom:63.953277pt;}
.y14{bottom:63.999997pt;}
.y7{bottom:67.999997pt;}
.y16{bottom:84.160005pt;}
.y2{bottom:86.999996pt;}
.yf{bottom:88.999996pt;}
.y13{bottom:94.999996pt;}
.ye{bottom:119.999995pt;}
.y1e{bottom:128.320004pt;}
.y1c{bottom:131.296635pt;}
.y1b{bottom:149.296634pt;}
.y1a{bottom:167.296633pt;}
.y23{bottom:192.640001pt;}
.y18{bottom:193.600001pt;}
.y39{bottom:220.037399pt;}
.y38{bottom:251.037398pt;}
.y3c{bottom:252.987253pt;}
.y36{bottom:266.577877pt;}
.y37{bottom:282.037396pt;}
.y12{bottom:309.788188pt;}
.y30{bottom:335.817650pt;}
.y2f{bottom:376.219120pt;}
.y4{bottom:396.316562pt;}
.ya{bottom:405.030191pt;}
.y6{bottom:405.196008pt;}
.y29{bottom:426.264078pt;}
.y9{bottom:436.030190pt;}
.y1{bottom:464.721942pt;}
.yd{bottom:470.851631pt;}
.y2c{bottom:477.850252pt;}
.y34{bottom:485.462674pt;}
.y33{bottom:516.462673pt;}
.y2d{bottom:522.354471pt;}
.y32{bottom:547.462672pt;}
.y2a{bottom:576.578766pt;}
.y35{bottom:589.094974pt;}
.y2e{bottom:631.221926pt;}
.y31{bottom:635.863334pt;}
.y2b{bottom:647.596693pt;}
.yb{bottom:651.235451pt;}
.y28{bottom:719.830008pt;}
.y27{bottom:831.702065pt;}
.y26{bottom:866.702063pt;}
.y25{bottom:901.702062pt;}
.y1d{bottom:975.175604pt;}
.he{height:15.999999pt;}
.h10{height:30.719999pt;}
.h1a{height:40.849158pt;}
.h16{height:41.845864pt;}
.h15{height:42.686518pt;}
.hf{height:47.417607pt;}
.h12{height:47.774718pt;}
.h1b{height:50.653998pt;}
.h7{height:59.455998pt;}
.h14{height:60.479997pt;}
.h5{height:74.319997pt;}
.h19{height:81.213437pt;}
.h9{height:82.844957pt;}
.h17{height:92.606476pt;}
.hb{height:94.126276pt;}
.h11{height:94.835214pt;}
.h18{height:94.836640pt;}
.h3{height:96.393040pt;}
.ha{height:108.999976pt;}
.h4{height:110.000034pt;}
.h13{height:141.340954pt;}
.hd{height:143.999994pt;}
.h6{height:145.999994pt;}
.h2{height:155.999994pt;}
.hc{height:162.999993pt;}
.h8{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w2{width:114.999995pt;}
.w3{width:145.999994pt;}
.w1{width:155.999994pt;}
.wa{width:164.799993pt;}
.w8{width:396.479983pt;}
.w7{width:631.039974pt;}
.w6{width:700.000035pt;}
.w5{width:828.999965pt;}
.w9{width:944.319961pt;}
.w4{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x5{left:4.437500pt;}
.x2{left:14.390624pt;}
.xc{left:15.999999pt;}
.x1a{left:17.321234pt;}
.x14{left:23.079760pt;}
.x3{left:40.093748pt;}
.xb{left:55.593748pt;}
.x10{left:62.391356pt;}
.x12{left:65.586115pt;}
.x11{left:66.703853pt;}
.x9{left:101.671871pt;}
.x1b{left:104.539981pt;}
.x1c{left:117.868105pt;}
.x1d{left:204.524357pt;}
.x1e{left:217.852476pt;}
.x13{left:327.588210pt;}
.xe{left:364.838657pt;}
.xf{left:368.600452pt;}
.x1{left:372.020493pt;}
.x4{left:473.954588pt;}
.x19{left:618.715174pt;}
.x15{left:641.615077pt;}
.x16{left:665.147172pt;}
.x6{left:668.748868pt;}
.x17{left:674.139341pt;}
.x7{left:840.326525pt;}
.xd{left:1008.959958pt;}
.x8{left:1028.796373pt;}
.x18{left:1107.579314pt;}
.xa{left:1157.529872pt;}
}




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