
    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_deaf19d7df6e3637eecdb3d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.077637;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_5afaa17f6d3874a423121207.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.077637;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_8c9ebcd1894d9440993b4278.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_33dad971a268f31d42ee5d33.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.953613;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_842589fbfdb3c68a35fd1630.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m3{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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.055500px;}
.ls2{letter-spacing:30.574548px;}
.ls3{letter-spacing:107.660837px;}
.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;}
}
.ws4{word-spacing:-33.119987px;}
.ws3{word-spacing:-16.500000px;}
.ws1{word-spacing:-14.374074px;}
.ws0{word-spacing:-11.717995px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-7.491600px;}
._5{margin-left:-4.812000px;}
._d{margin-left:-3.581400px;}
._9{margin-left:-2.310000px;}
._3{margin-left:-1.068000px;}
._2{width:1.070984px;}
._c{width:2.092816px;}
._b{width:3.352800px;}
._8{width:4.796416px;}
._6{width:5.860800px;}
._7{width:6.942000px;}
._a{width:8.118000px;}
._19{width:9.446383px;}
._1f{width:10.480558px;}
._11{width:11.535771px;}
._12{width:12.683872px;}
._0{width:13.793994px;}
._1{width:14.902753px;}
._18{width:15.936940px;}
._17{width:17.065179px;}
._16{width:18.246014px;}
._14{width:19.246645px;}
._15{width:20.377589px;}
._20{width:21.506430px;}
._f{width:23.150368px;}
._e{width:24.604683px;}
._1e{width:26.449826px;}
._1c{width:27.609653px;}
._1b{width:28.750424px;}
._1a{width:29.832455px;}
._10{width:31.536604px;}
._1d{width:32.838814px;}
._13{width:50.811999px;}
.fc5{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(51,51,153);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:53.999978px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:66.239974px;}
.y0{bottom:0.000000px;}
.y27{bottom:136.335000px;}
.y26{bottom:155.835000px;}
.y25{bottom:194.835000px;}
.y1b{bottom:204.599918px;}
.y2f{bottom:212.879915px;}
.y24{bottom:214.335000px;}
.y23{bottom:233.835000px;}
.y1a{bottom:234.839906px;}
.y2e{bottom:243.119903px;}
.y22{bottom:253.335000px;}
.y19{bottom:265.079894px;}
.y21{bottom:272.835000px;}
.y2d{bottom:273.359891px;}
.y20{bottom:292.335000px;}
.y18{bottom:295.319882px;}
.y2c{bottom:303.419879px;}
.y1f{bottom:311.835000px;}
.y17{bottom:325.559870px;}
.y2b{bottom:333.659867px;}
.y16{bottom:351.119860px;}
.y2a{bottom:363.899854px;}
.y29{bottom:394.139842px;}
.y28{bottom:424.379830px;}
.y15{bottom:454.619818px;}
.y1e{bottom:470.835000px;}
.y14{bottom:484.859806px;}
.y1d{bottom:506.835000px;}
.y13{bottom:514.919794px;}
.y1c{bottom:538.335000px;}
.y12{bottom:545.159782px;}
.y11{bottom:575.399770px;}
.y10{bottom:605.639758px;}
.yf{bottom:635.879746px;}
.ye{bottom:666.119734px;}
.yd{bottom:696.359721px;}
.yc{bottom:726.419709px;}
.yb{bottom:756.659697px;}
.ya{bottom:786.899685px;}
.y9{bottom:817.139673px;}
.y8{bottom:847.379661px;}
.y7{bottom:877.619649px;}
.y6{bottom:907.679637px;}
.y5{bottom:937.919625px;}
.y4{bottom:968.159613px;}
.y3{bottom:998.399601px;}
.y2{bottom:1028.639589px;}
.y1{bottom:1058.879576px;}
.h2{height:44.560529px;}
.h4{height:45.858398px;}
.h5{height:46.445606px;}
.h1{height:54.660916px;}
.h6{height:69.086222px;}
.h3{height:1262.835000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.w1{width:892.920000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:127.575000px;}
.x32{left:162.719935px;}
.x1{left:175.499930px;}
.x8{left:184.139926px;}
.x2{left:185.939926px;}
.x35{left:189.719968px;}
.x33{left:202.499514px;}
.x9{left:212.039915px;}
.x36{left:216.719957px;}
.xa{left:222.659911px;}
.x34{left:229.499502px;}
.xc{left:249.659900px;}
.xd{left:253.799898px;}
.xe{left:259.559896px;}
.x16{left:264.779894px;}
.x28{left:269.639892px;}
.x17{left:279.539888px;}
.xb{left:282.059887px;}
.xf{left:286.559885px;}
.x10{left:295.379882px;}
.x18{left:296.639881px;}
.x2c{left:308.159877px;}
.x11{left:329.399868px;}
.x19{left:334.259866px;}
.x37{left:336.060276px;}
.x12{left:338.939864px;}
.x1a{left:342.899863px;}
.x38{left:348.839860px;}
.x29{left:355.319858px;}
.x2a{left:363.959854px;}
.x5{left:366.479853px;}
.x6{left:370.619852px;}
.x2d{left:375.839850px;}
.x1b{left:378.539849px;}
.x13{left:381.419847px;}
.x2e{left:387.359845px;}
.x14{left:391.319843px;}
.x15{left:418.679833px;}
.x2b{left:427.139829px;}
.x1c{left:462.059815px;}
.x1d{left:472.679811px;}
.x1e{left:476.459809px;}
.x1f{left:480.599808px;}
.x2f{left:481.679807px;}
.x20{left:483.479807px;}
.x21{left:488.159805px;}
.x7{left:508.139797px;}
.x27{left:510.119796px;}
.x22{left:528.299789px;}
.x23{left:538.379785px;}
.x30{left:541.619783px;}
.x24{left:575.819770px;}
.x25{left:584.999766px;}
.x26{left:629.999748px;}
.x3{left:691.739723px;}
.x4{left:695.879722px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.049333pt;}
.ls2{letter-spacing:27.177376pt;}
.ls3{letter-spacing:95.698522pt;}
.ws4{word-spacing:-29.439988pt;}
.ws3{word-spacing:-14.666667pt;}
.ws1{word-spacing:-12.776955pt;}
.ws0{word-spacing:-10.415996pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-6.659200pt;}
._5{margin-left:-4.277333pt;}
._d{margin-left:-3.183467pt;}
._9{margin-left:-2.053333pt;}
._3{margin-left:-0.949333pt;}
._2{width:0.951986pt;}
._c{width:1.860281pt;}
._b{width:2.980267pt;}
._8{width:4.263481pt;}
._6{width:5.209600pt;}
._7{width:6.170667pt;}
._a{width:7.216000pt;}
._19{width:8.396785pt;}
._1f{width:9.316052pt;}
._11{width:10.254019pt;}
._12{width:11.274553pt;}
._0{width:12.261328pt;}
._1{width:13.246892pt;}
._18{width:14.166169pt;}
._17{width:15.169048pt;}
._16{width:16.218679pt;}
._14{width:17.108129pt;}
._15{width:18.113413pt;}
._20{width:19.116826pt;}
._f{width:20.578105pt;}
._e{width:21.870829pt;}
._1e{width:23.510957pt;}
._1c{width:24.541914pt;}
._1b{width:25.555933pt;}
._1a{width:26.517738pt;}
._10{width:28.032537pt;}
._1d{width:29.190057pt;}
._13{width:45.166222pt;}
.fs1{font-size:47.999981pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:58.879976pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:121.186667pt;}
.y26{bottom:138.520000pt;}
.y25{bottom:173.186667pt;}
.y1b{bottom:181.866594pt;}
.y2f{bottom:189.226591pt;}
.y24{bottom:190.520000pt;}
.y23{bottom:207.853333pt;}
.y1a{bottom:208.746583pt;}
.y2e{bottom:216.106580pt;}
.y22{bottom:225.186667pt;}
.y19{bottom:235.626572pt;}
.y21{bottom:242.520000pt;}
.y2d{bottom:242.986569pt;}
.y20{bottom:259.853333pt;}
.y18{bottom:262.506562pt;}
.y2c{bottom:269.706559pt;}
.y1f{bottom:277.186667pt;}
.y17{bottom:289.386551pt;}
.y2b{bottom:296.586548pt;}
.y16{bottom:312.106542pt;}
.y2a{bottom:323.466537pt;}
.y29{bottom:350.346527pt;}
.y28{bottom:377.226516pt;}
.y15{bottom:404.106505pt;}
.y1e{bottom:418.520000pt;}
.y14{bottom:430.986494pt;}
.y1d{bottom:450.520000pt;}
.y13{bottom:457.706484pt;}
.y1c{bottom:478.520000pt;}
.y12{bottom:484.586473pt;}
.y11{bottom:511.466462pt;}
.y10{bottom:538.346451pt;}
.yf{bottom:565.226441pt;}
.ye{bottom:592.106430pt;}
.yd{bottom:618.986419pt;}
.yc{bottom:645.706408pt;}
.yb{bottom:672.586398pt;}
.ya{bottom:699.466387pt;}
.y9{bottom:726.346376pt;}
.y8{bottom:753.226365pt;}
.y7{bottom:780.106355pt;}
.y6{bottom:806.826344pt;}
.y5{bottom:833.706333pt;}
.y4{bottom:860.586322pt;}
.y3{bottom:887.466312pt;}
.y2{bottom:914.346301pt;}
.y1{bottom:941.226290pt;}
.h2{height:39.609359pt;}
.h4{height:40.763021pt;}
.h5{height:41.284983pt;}
.h1{height:48.587481pt;}
.h6{height:61.409975pt;}
.h3{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w1{width:793.706667pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:113.400000pt;}
.x32{left:144.639942pt;}
.x1{left:155.999938pt;}
.x8{left:163.679935pt;}
.x2{left:165.279934pt;}
.x35{left:168.639972pt;}
.x33{left:179.999568pt;}
.x9{left:188.479925pt;}
.x36{left:192.639962pt;}
.xa{left:197.919921pt;}
.x34{left:203.999557pt;}
.xc{left:221.919911pt;}
.xd{left:225.599910pt;}
.xe{left:230.719908pt;}
.x16{left:235.359906pt;}
.x28{left:239.679904pt;}
.x17{left:248.479901pt;}
.xb{left:250.719900pt;}
.xf{left:254.719898pt;}
.x10{left:262.559895pt;}
.x18{left:263.679895pt;}
.x2c{left:273.919890pt;}
.x11{left:292.799883pt;}
.x19{left:297.119881pt;}
.x37{left:298.720245pt;}
.x12{left:301.279879pt;}
.x1a{left:304.799878pt;}
.x38{left:310.079876pt;}
.x29{left:315.839874pt;}
.x2a{left:323.519871pt;}
.x5{left:325.759870pt;}
.x6{left:329.439868pt;}
.x2d{left:334.079866pt;}
.x1b{left:336.479865pt;}
.x13{left:339.039864pt;}
.x2e{left:344.319862pt;}
.x14{left:347.839861pt;}
.x15{left:372.159851pt;}
.x2b{left:379.679848pt;}
.x1c{left:410.719836pt;}
.x1d{left:420.159832pt;}
.x1e{left:423.519831pt;}
.x1f{left:427.199829pt;}
.x2f{left:428.159829pt;}
.x20{left:429.759828pt;}
.x21{left:433.919826pt;}
.x7{left:451.679819pt;}
.x27{left:453.439819pt;}
.x22{left:469.599812pt;}
.x23{left:478.559809pt;}
.x30{left:481.439807pt;}
.x24{left:511.839795pt;}
.x25{left:519.999792pt;}
.x26{left:559.999776pt;}
.x3{left:614.879754pt;}
.x4{left:618.559753pt;}
}




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