
    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_bc434228e15773af2c408770.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_0ecbc369395f9905b5cf6168.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_553c3756b8b09c70d1391e96.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6781a793e04ce7baabc490a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.037000;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:48.775360px;}
.ls1{letter-spacing:48.779081px;}
.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:-15.836400px;}
.ws2{word-spacing:-14.310000px;}
.ws5{word-spacing:-12.783600px;}
.ws9{word-spacing:-11.491200px;}
.ws3{word-spacing:-9.540000px;}
.wsc{word-spacing:0.000000px;}
.wsa{word-spacing:0.816480px;}
.ws8{word-spacing:1.360800px;}
.wsb{word-spacing:1.495440px;}
.ws1{word-spacing:1.998000px;}
.ws0{word-spacing:2.754000px;}
.ws7{word-spacing:2.923200px;}
.ws4{word-spacing:3.406320px;}
._6{margin-left:-5.544017px;}
._7{margin-left:-3.419994px;}
._9{margin-left:-2.303994px;}
._0{margin-left:-1.080000px;}
._5{width:1.116000px;}
._2{width:2.412000px;}
._1{width:3.960000px;}
._12{width:5.564160px;}
._10{width:7.332398px;}
._f{width:8.651610px;}
._e{width:9.678814px;}
._3{width:11.124000px;}
._11{width:12.661920px;}
._4{width:13.680000px;}
._c{width:16.056000px;}
._a{width:17.279950px;}
._8{width:19.331916px;}
._d{width:23.029920px;}
._b{width:24.374880px;}
.fc7{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc4{color:rgb(68,114,196);}
.fc3{color:rgb(116,181,73);}
.fc2{color:rgb(0,145,122);}
.fc1{color:rgb(167,198,55);}
.fc5{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:26.640000px;}
.fsb{font-size:30.240000px;}
.fs0{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs4{font-size:53.999861px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:59.759492px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:71.999814px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:76.320000px;}
.fs1{font-size:149.760000px;}
.y0{bottom:0.000000px;}
.y38{bottom:193.320099px;}
.y1a{bottom:194.760064px;}
.y37{bottom:202.320099px;}
.y36{bottom:211.320099px;}
.y35{bottom:230.042316px;}
.y34{bottom:239.038734px;}
.y33{bottom:248.039859px;}
.y30{bottom:260.461903px;}
.y2f{bottom:269.458229px;}
.y3c{bottom:273.792777px;}
.y27{bottom:280.619629px;}
.y2b{bottom:286.921903px;}
.y26{bottom:294.487941px;}
.y2a{bottom:295.918229px;}
.y32{bottom:312.299859px;}
.y25{bottom:312.490623px;}
.y31{bottom:321.296278px;}
.y20{bottom:338.213611px;}
.y24{bottom:351.180066px;}
.y3a{bottom:390.602878px;}
.y2e{bottom:403.019859px;}
.y39{bottom:405.007012px;}
.y2d{bottom:415.621398px;}
.y2c{bottom:424.617816px;}
.y1d{bottom:470.160050px;}
.y3b{bottom:480.060077px;}
.y1e{bottom:509.404559px;}
.y1f{bottom:509.755573px;}
.y23{bottom:517.318779px;}
.y1c{bottom:522.904559px;}
.y29{bottom:523.439702px;}
.y22{bottom:531.718422px;}
.y1b{bottom:539.104559px;}
.y28{bottom:541.442384px;}
.y21{bottom:546.118065px;}
.y17{bottom:566.995606px;}
.y16{bottom:609.294689px;}
.y15{bottom:661.495564px;}
.y14{bottom:677.520058px;}
.y13{bottom:693.721062px;}
.y12{bottom:718.918125px;}
.y18{bottom:739.980066px;}
.y11{bottom:741.956404px;}
.y10{bottom:764.817537px;}
.y19{bottom:778.500055px;}
.yf{bottom:787.864024px;}
.ye{bottom:810.725157px;}
.yd{bottom:837.548709px;}
.yc{bottom:882.543158px;}
.yb{bottom:904.137809px;}
.ya{bottom:925.741284px;}
.y9{bottom:947.344732px;}
.y8{bottom:968.939410px;}
.y7{bottom:990.542885px;}
.y6{bottom:1012.137536px;}
.y5{bottom:1033.741012px;}
.y2{bottom:1070.280066px;}
.y1{bottom:1082.520072px;}
.y4{bottom:1127.347263px;}
.y3{bottom:1167.857349px;}
.h12{height:24.161760px;}
.hd{height:26.496914px;}
.h13{height:30.077578px;}
.h2{height:37.800000px;}
.h11{height:43.848000px;}
.hf{height:50.652000px;}
.h7{height:56.666196px;}
.hb{height:56.695984px;}
.h9{height:56.696675px;}
.h6{height:56.697677px;}
.hc{height:56.700000px;}
.ha{height:56.725805px;}
.h8{height:56.728156px;}
.h14{height:59.438518px;}
.he{height:62.748000px;}
.h4{height:71.613096px;}
.h10{height:75.600000px;}
.h5{height:80.136000px;}
.h3{height:157.248000px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:30.600001px;}
.x4{left:32.035322px;}
.x1c{left:35.819281px;}
.x5{left:41.755500px;}
.xb{left:46.264501px;}
.x1e{left:49.858198px;}
.x17{left:52.557117px;}
.x20{left:60.842883px;}
.x1{left:64.260001px;}
.x18{left:67.140358px;}
.x1f{left:70.202160px;}
.x2{left:79.200238px;}
.x3{left:81.175501px;}
.x1d{left:105.121802px;}
.xe{left:139.136216px;}
.xd{left:216.175507px;}
.x19{left:259.202149px;}
.x1b{left:260.820000px;}
.x1a{left:263.337470px;}
.xc{left:354.604518px;}
.x7{left:405.180011px;}
.x6{left:406.440006px;}
.x24{left:477.895388px;}
.x9{left:488.335515px;}
.xa{left:508.315498px;}
.x11{left:510.119989px;}
.x12{left:562.326682px;}
.x14{left:596.698187px;}
.x13{left:602.096955px;}
.xf{left:631.256571px;}
.x22{left:640.796072px;}
.x10{left:646.922499px;}
.x21{left:658.080025px;}
.x23{left:751.139978px;}
.x16{left:767.527545px;}
.x15{left:784.977455px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:43.355875pt;}
.ls1{letter-spacing:43.359184pt;}
.ws6{word-spacing:-14.076800pt;}
.ws2{word-spacing:-12.720000pt;}
.ws5{word-spacing:-11.363200pt;}
.ws9{word-spacing:-10.214400pt;}
.ws3{word-spacing:-8.480000pt;}
.wsc{word-spacing:0.000000pt;}
.wsa{word-spacing:0.725760pt;}
.ws8{word-spacing:1.209600pt;}
.wsb{word-spacing:1.329280pt;}
.ws1{word-spacing:1.776000pt;}
.ws0{word-spacing:2.448000pt;}
.ws7{word-spacing:2.598400pt;}
.ws4{word-spacing:3.027840pt;}
._6{margin-left:-4.928015pt;}
._7{margin-left:-3.039995pt;}
._9{margin-left:-2.047995pt;}
._0{margin-left:-0.960000pt;}
._5{width:0.992000pt;}
._2{width:2.144000pt;}
._1{width:3.520000pt;}
._12{width:4.945920pt;}
._10{width:6.517687pt;}
._f{width:7.690320pt;}
._e{width:8.603390pt;}
._3{width:9.888000pt;}
._11{width:11.255040pt;}
._4{width:12.160000pt;}
._c{width:14.272000pt;}
._a{width:15.359955pt;}
._8{width:17.183926pt;}
._d{width:20.471040pt;}
._b{width:21.666560pt;}
.fs6{font-size:23.680000pt;}
.fsb{font-size:26.880000pt;}
.fs0{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs4{font-size:47.999876pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:53.119548pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:63.999835pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:67.840000pt;}
.fs1{font-size:133.120000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:171.840088pt;}
.y1a{bottom:173.120057pt;}
.y37{bottom:179.840088pt;}
.y36{bottom:187.840088pt;}
.y35{bottom:204.482059pt;}
.y34{bottom:212.478875pt;}
.y33{bottom:220.479875pt;}
.y30{bottom:231.521691pt;}
.y2f{bottom:239.518426pt;}
.y3c{bottom:243.371358pt;}
.y27{bottom:249.439670pt;}
.y2b{bottom:255.041691pt;}
.y26{bottom:261.767059pt;}
.y2a{bottom:263.038426pt;}
.y32{bottom:277.599875pt;}
.y25{bottom:277.769442pt;}
.y31{bottom:285.596691pt;}
.y20{bottom:300.634321pt;}
.y24{bottom:312.160059pt;}
.y3a{bottom:347.202559pt;}
.y2e{bottom:358.239875pt;}
.y39{bottom:360.006232pt;}
.y2d{bottom:369.441242pt;}
.y2c{bottom:377.438059pt;}
.y1d{bottom:417.920044pt;}
.y3b{bottom:426.720068pt;}
.y1e{bottom:452.804053pt;}
.y1f{bottom:453.116065pt;}
.y23{bottom:459.838915pt;}
.y1c{bottom:464.804053pt;}
.y29{bottom:465.279735pt;}
.y22{bottom:472.638598pt;}
.y1b{bottom:479.204053pt;}
.y28{bottom:481.282119pt;}
.y21{bottom:485.438280pt;}
.y17{bottom:503.996094pt;}
.y16{bottom:541.595279pt;}
.y15{bottom:587.996057pt;}
.y14{bottom:602.240051pt;}
.y13{bottom:616.640944pt;}
.y12{bottom:639.038333pt;}
.y18{bottom:657.760059pt;}
.y11{bottom:659.516803pt;}
.y10{bottom:679.837811pt;}
.y19{bottom:692.000049pt;}
.yf{bottom:700.323576pt;}
.ye{bottom:720.644584pt;}
.yd{bottom:744.487742pt;}
.yc{bottom:784.482807pt;}
.yb{bottom:803.678052pt;}
.ya{bottom:822.881141pt;}
.y9{bottom:842.084207pt;}
.y8{bottom:861.279476pt;}
.y7{bottom:880.482565pt;}
.y6{bottom:899.677810pt;}
.y5{bottom:918.880899pt;}
.y2{bottom:951.360059pt;}
.y1{bottom:962.240064pt;}
.y4{bottom:1002.086456pt;}
.y3{bottom:1038.095421pt;}
.h12{height:21.477120pt;}
.hd{height:23.552813pt;}
.h13{height:26.735625pt;}
.h2{height:33.600000pt;}
.h11{height:38.976000pt;}
.hf{height:45.024000pt;}
.h7{height:50.369952pt;}
.hb{height:50.396431pt;}
.h9{height:50.397045pt;}
.h6{height:50.397935pt;}
.hc{height:50.400000pt;}
.ha{height:50.422938pt;}
.h8{height:50.425028pt;}
.h14{height:52.834238pt;}
.he{height:55.776000pt;}
.h4{height:63.656086pt;}
.h10{height:67.200000pt;}
.h5{height:71.232000pt;}
.h3{height:139.776000pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:27.200001pt;}
.x4{left:28.475842pt;}
.x1c{left:31.839361pt;}
.x5{left:37.116000pt;}
.xb{left:41.124001pt;}
.x1e{left:44.318398pt;}
.x17{left:46.717438pt;}
.x20{left:54.082562pt;}
.x1{left:57.120001pt;}
.x18{left:59.680318pt;}
.x1f{left:62.401920pt;}
.x2{left:70.400211pt;}
.x3{left:72.156001pt;}
.x1d{left:93.441602pt;}
.xe{left:123.676636pt;}
.xd{left:192.156006pt;}
.x19{left:230.401910pt;}
.x1b{left:231.840000pt;}
.x1a{left:234.077751pt;}
.xc{left:315.204016pt;}
.x7{left:360.160010pt;}
.x6{left:361.280005pt;}
.x24{left:424.795901pt;}
.x9{left:434.076013pt;}
.xa{left:451.835999pt;}
.x11{left:453.439990pt;}
.x12{left:499.845939pt;}
.x14{left:530.398389pt;}
.x13{left:535.197293pt;}
.xf{left:561.116952pt;}
.x22{left:569.596509pt;}
.x10{left:575.042222pt;}
.x21{left:584.960022pt;}
.x23{left:667.679981pt;}
.x16{left:682.246707pt;}
.x15{left:697.757737pt;}
}




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