
    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_ca3b57bc072bdbcc8d7726be.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_b096c8618f550b7ea5759db1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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_466b6f960c7c51966ab190d5.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_8d8e96dc61260d0b306b5281.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_aebe54c6871bab5cc7013371.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_a9f1a9ea23520a11a15d62d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.992000;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.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:-31.109940px;}
.ws6{word-spacing:-27.341639px;}
.ws5{word-spacing:-27.293940px;}
.ws4{word-spacing:-26.015579px;}
.ws3{word-spacing:-24.746760px;}
.ws2{word-spacing:-24.746388px;}
.ws7{word-spacing:-20.053079px;}
.ws1{word-spacing:-12.446999px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-9.419250px;}
._6{margin-left:-6.307316px;}
._3{margin-left:-4.818378px;}
._1{margin-left:-2.992331px;}
._2{margin-left:-1.601856px;}
._0{width:1.025583px;}
._7{width:2.082438px;}
._5{width:7.032708px;}
.fc3{color:transparent;}
.fc2{color:rgb(233,148,8);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(62,121,178);}
.fs3{font-size:52.540845px;}
.fs6{font-size:53.999998px;}
.fs1{font-size:59.984997px;}
.fsb{font-size:94.589996px;}
.fs2{font-size:116.728244px;}
.fs7{font-size:116.730000px;}
.fs8{font-size:122.714995px;}
.fsc{font-size:123.060029px;}
.fs9{font-size:128.744999px;}
.fsa{font-size:128.969995px;}
.fs5{font-size:137.969994px;}
.fs0{font-size:146.744998px;}
.fs4{font-size:303.554742px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.yb{bottom:3.629568px;}
.y17{bottom:6.813057px;}
.y5{bottom:6.875987px;}
.y38{bottom:7.541365px;}
.y7{bottom:13.433039px;}
.ya{bottom:21.143183px;}
.yd{bottom:23.098192px;}
.y6{bottom:33.683039px;}
.y9{bottom:38.656798px;}
.y37{bottom:49.553667px;}
.y3d{bottom:58.807978px;}
.y3c{bottom:79.057977px;}
.y36{bottom:91.565969px;}
.y3{bottom:101.932916px;}
.y8{bottom:131.040005px;}
.y35{bottom:133.578270px;}
.y15{bottom:137.542746px;}
.y14{bottom:155.542746px;}
.y13{bottom:173.542745px;}
.y34{bottom:175.590572px;}
.y12{bottom:191.542744px;}
.y4{bottom:196.200002px;}
.y16{bottom:208.080001px;}
.y3b{bottom:233.805842px;}
.y27{bottom:290.690556px;}
.y26{bottom:323.315555px;}
.y1d{bottom:326.255602px;}
.y32{bottom:329.397970px;}
.y25{bottom:355.940553px;}
.y1c{bottom:371.255601px;}
.y31{bottom:374.397968px;}
.y24{bottom:388.565552px;}
.y30{bottom:412.947991px;}
.y23{bottom:421.190550px;}
.y1b{bottom:424.442790px;}
.y3a{bottom:425.650050px;}
.y22{bottom:453.815549px;}
.y1a{bottom:453.891833px;}
.y2f{bottom:457.947989px;}
.y1f{bottom:478.718152px;}
.y21{bottom:486.440548px;}
.y2e{bottom:496.497903px;}
.y20{bottom:519.065546px;}
.y1e{bottom:523.718150px;}
.y2d{bottom:538.725074px;}
.y19{bottom:637.382918px;}
.y18{bottom:638.357931px;}
.y2b{bottom:659.855539px;}
.y33{bottom:687.599981px;}
.y2a{bottom:702.605538px;}
.y2c{bottom:753.842651px;}
.y29{bottom:804.703808px;}
.y28{bottom:847.453807px;}
.y39{bottom:879.509847px;}
.y2{bottom:892.319287px;}
.y11{bottom:932.811574px;}
.y10{bottom:980.061572px;}
.yf{bottom:1027.311570px;}
.ye{bottom:1074.561568px;}
.yc{bottom:1101.599964px;}
.he{height:34.199999px;}
.h5{height:34.559999px;}
.h9{height:47.076597px;}
.hd{height:48.383998px;}
.h4{height:49.547608px;}
.h8{height:50.759998px;}
.h7{height:53.746557px;}
.h16{height:56.985747px;}
.h13{height:78.131337px;}
.h6{height:96.417530px;}
.hf{height:96.418980px;}
.h10{height:101.362586px;}
.h15{height:101.647584px;}
.ha{height:103.319996px;}
.h11{height:106.343369px;}
.h12{height:106.529216px;}
.hc{height:113.963215px;}
.h3{height:121.211369px;}
.h14{height:204.479991px;}
.hb{height:230.630458px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w5{width:185.399992px;}
.w2{width:353.879985px;}
.w6{width:371.519985px;}
.w3{width:828.719965px;}
.w4{width:1808.639925px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x2{left:21.134154px;}
.x25{left:29.979587px;}
.x27{left:33.280554px;}
.x26{left:59.106866px;}
.x29{left:69.512692px;}
.x1{left:112.042964px;}
.x20{left:257.305154px;}
.x24{left:306.359987px;}
.x5{left:312.839987px;}
.x8{left:341.674724px;}
.x1e{left:349.228812px;}
.x23{left:354.567159px;}
.x1f{left:366.284230px;}
.x22{left:367.680439px;}
.x21{left:393.676242px;}
.x6{left:406.432534px;}
.x7{left:415.010659px;}
.x18{left:801.372523px;}
.x15{left:802.989710px;}
.x12{left:813.167444px;}
.x13{left:817.280725px;}
.x14{left:834.419396px;}
.x16{left:842.276818px;}
.xb{left:845.678990px;}
.x9{left:920.662982px;}
.x19{left:1004.856895px;}
.x17{left:1024.649863px;}
.xa{left:1124.424359px;}
.x4{left:1179.719951px;}
.x3{left:1182.599951px;}
.xd{left:1445.650067px;}
.xe{left:1474.496827px;}
.x10{left:1507.386741px;}
.x1a{left:1520.830677px;}
.x1d{left:1538.272808px;}
.x11{left:1552.791036px;}
.xf{left:1562.405027px;}
.x1b{left:1565.707628px;}
.x1c{left:1576.874712px;}
.x2a{left:1896.317849px;}
.xc{left:1962.226682px;}
.x2b{left:1990.993626px;}
.x2c{left:2005.987766px;}
.x28{left:2012.747953px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-27.653280pt;}
.ws6{word-spacing:-24.303679pt;}
.ws5{word-spacing:-24.261280pt;}
.ws4{word-spacing:-23.124959pt;}
.ws3{word-spacing:-21.997120pt;}
.ws2{word-spacing:-21.996789pt;}
.ws7{word-spacing:-17.824959pt;}
.ws1{word-spacing:-11.064000pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-8.372667pt;}
._6{margin-left:-5.606503pt;}
._3{margin-left:-4.283003pt;}
._1{margin-left:-2.659850pt;}
._2{margin-left:-1.423872pt;}
._0{width:0.911629pt;}
._7{width:1.851056pt;}
._5{width:6.251296pt;}
.fs3{font-size:46.702974pt;}
.fs6{font-size:47.999998pt;}
.fs1{font-size:53.319997pt;}
.fsb{font-size:84.079996pt;}
.fs2{font-size:103.758440pt;}
.fs7{font-size:103.760000pt;}
.fs8{font-size:109.079995pt;}
.fsc{font-size:109.386692pt;}
.fs9{font-size:114.439999pt;}
.fsa{font-size:114.639995pt;}
.fs5{font-size:122.639995pt;}
.fs0{font-size:130.439999pt;}
.fs4{font-size:269.826437pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.yb{bottom:3.226283pt;}
.y17{bottom:6.056050pt;}
.y5{bottom:6.111988pt;}
.y38{bottom:6.703436pt;}
.y7{bottom:11.940480pt;}
.ya{bottom:18.793941pt;}
.yd{bottom:20.531726pt;}
.y6{bottom:29.940479pt;}
.y9{bottom:34.361598pt;}
.y37{bottom:44.047704pt;}
.y3d{bottom:52.273758pt;}
.y3c{bottom:70.273757pt;}
.y36{bottom:81.391972pt;}
.y3{bottom:90.607036pt;}
.y8{bottom:116.480004pt;}
.y35{bottom:118.736240pt;}
.y15{bottom:122.260219pt;}
.y14{bottom:138.260218pt;}
.y13{bottom:154.260218pt;}
.y34{bottom:156.080509pt;}
.y12{bottom:170.260217pt;}
.y4{bottom:174.400002pt;}
.y16{bottom:184.960001pt;}
.y3b{bottom:207.827415pt;}
.y27{bottom:258.391605pt;}
.y26{bottom:287.391604pt;}
.y1d{bottom:290.004980pt;}
.y32{bottom:292.798196pt;}
.y25{bottom:316.391603pt;}
.y1c{bottom:330.004978pt;}
.y31{bottom:332.798194pt;}
.y24{bottom:345.391602pt;}
.y30{bottom:367.064881pt;}
.y23{bottom:374.391600pt;}
.y1b{bottom:377.282480pt;}
.y3a{bottom:378.355600pt;}
.y22{bottom:403.391599pt;}
.y1a{bottom:403.459407pt;}
.y2f{bottom:407.064879pt;}
.y1f{bottom:425.527246pt;}
.y21{bottom:432.391598pt;}
.y2e{bottom:441.331470pt;}
.y20{bottom:461.391597pt;}
.y1e{bottom:465.527245pt;}
.y2d{bottom:478.866732pt;}
.y19{bottom:566.562594pt;}
.y18{bottom:567.429272pt;}
.y2b{bottom:586.538257pt;}
.y33{bottom:611.199984pt;}
.y2a{bottom:624.538256pt;}
.y2c{bottom:670.082356pt;}
.y29{bottom:715.292274pt;}
.y28{bottom:753.292273pt;}
.y39{bottom:781.786531pt;}
.y2{bottom:793.172700pt;}
.y11{bottom:829.165844pt;}
.y10{bottom:871.165842pt;}
.yf{bottom:913.165840pt;}
.ye{bottom:955.165839pt;}
.yc{bottom:979.199968pt;}
.he{height:30.399999pt;}
.h5{height:30.719999pt;}
.h9{height:41.845864pt;}
.hd{height:43.007998pt;}
.h4{height:44.042318pt;}
.h8{height:45.119998pt;}
.h7{height:47.774718pt;}
.h16{height:50.653998pt;}
.h13{height:69.450077pt;}
.h6{height:85.704471pt;}
.hf{height:85.705760pt;}
.h10{height:90.100076pt;}
.h15{height:90.353408pt;}
.ha{height:91.839996pt;}
.h11{height:94.527439pt;}
.h12{height:94.692636pt;}
.hc{height:101.300636pt;}
.h3{height:107.743439pt;}
.h14{height:181.759992pt;}
.hb{height:205.004852pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w5{width:164.799993pt;}
.w2{width:314.559987pt;}
.w6{width:330.239986pt;}
.w3{width:736.639969pt;}
.w4{width:1607.679933pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x2{left:18.785915pt;}
.x25{left:26.648522pt;}
.x27{left:29.582714pt;}
.x26{left:52.539436pt;}
.x29{left:61.789060pt;}
.x1{left:99.593746pt;}
.x20{left:228.715692pt;}
.x24{left:272.319989pt;}
.x5{left:278.079988pt;}
.x8{left:303.710866pt;}
.x1e{left:310.425611pt;}
.x23{left:315.170808pt;}
.x1f{left:325.585982pt;}
.x22{left:326.827057pt;}
.x21{left:349.934437pt;}
.x6{left:361.273364pt;}
.x7{left:368.898363pt;}
.x18{left:712.331131pt;}
.x15{left:713.768631pt;}
.x12{left:722.815506pt;}
.x13{left:726.471756pt;}
.x14{left:741.706130pt;}
.x16{left:748.690505pt;}
.xb{left:751.714658pt;}
.x9{left:818.367095pt;}
.x19{left:893.206129pt;}
.x17{left:910.799878pt;}
.xa{left:999.488319pt;}
.x4{left:1048.639956pt;}
.x3{left:1051.199956pt;}
.xd{left:1285.022281pt;}
.xe{left:1310.663846pt;}
.x10{left:1339.899325pt;}
.x1a{left:1351.849491pt;}
.x1d{left:1367.353607pt;}
.x11{left:1380.258698pt;}
.xf{left:1388.804468pt;}
.x1b{left:1391.740114pt;}
.x1c{left:1401.666411pt;}
.x2a{left:1685.615866pt;}
.xc{left:1744.201495pt;}
.x2b{left:1769.772112pt;}
.x2c{left:1783.100237pt;}
.x28{left:1789.109291pt;}
}




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