
    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_798578fb84dc7f60333b22cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.155000;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_d9d5bbb8c159612cd6904b1b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.157000;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_6f1fb06589a791f9997527e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.947000;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_8cc5b404b0dc7b29c85554e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677734;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_def5ad6b066c7584b94873c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.255839px;}
.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;}
}
.ws8{word-spacing:-39.630830px;}
.ws0{word-spacing:-6.003997px;}
.ws1{word-spacing:-1.925053px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:3.832000px;}
.ws3{word-spacing:3.833342px;}
.ws4{word-spacing:3.833518px;}
.ws2{word-spacing:3.833658px;}
.ws7{word-spacing:3.833817px;}
.ws6{word-spacing:3.837766px;}
._3{margin-left:-7.879737px;}
._4{margin-left:-5.748215px;}
._9{margin-left:-4.717571px;}
._0{margin-left:-2.816363px;}
._2{margin-left:-1.588709px;}
._6{width:1.002881px;}
._5{width:2.132051px;}
._1{width:3.499094px;}
._a{width:4.572107px;}
._7{width:11.154790px;}
._b{width:12.269192px;}
._8{width:33.375831px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs6{font-size:21.597111px;}
.fs3{font-size:32.397107px;}
.fs1{font-size:35.277106px;}
.fs5{font-size:42.477103px;}
.fs2{font-size:44.637102px;}
.fs4{font-size:89.276964px;}
.fs0{font-size:103.676959px;}
.fs7{font-size:142.556943px;}
.y0{bottom:0.000000px;}
.y48{bottom:8.340354px;}
.y47{bottom:14.640351px;}
.y46{bottom:21.120349px;}
.y45{bottom:27.600346px;}
.y44{bottom:33.900343px;}
.y43{bottom:40.380341px;}
.y42{bottom:46.680338px;}
.y41{bottom:53.160336px;}
.y40{bottom:59.640333px;}
.y3f{bottom:65.940331px;}
.y3e{bottom:72.420328px;}
.y3d{bottom:78.720326px;}
.y3c{bottom:85.200323px;}
.y3b{bottom:97.980318px;}
.y29{bottom:125.520307px;}
.y28{bottom:139.020301px;}
.y3a{bottom:142.620300px;}
.y31{bottom:143.340300px;}
.y39{bottom:155.400295px;}
.y30{bottom:163.320292px;}
.y27{bottom:165.660291px;}
.y38{bottom:168.180290px;}
.y26{bottom:178.980285px;}
.y2f{bottom:186.900282px;}
.y25{bottom:192.300280px;}
.y2a{bottom:201.660276px;}
.y24{bottom:205.620275px;}
.y2e{bottom:206.880274px;}
.y2d{bottom:230.460265px;}
.y23{bottom:232.440264px;}
.y22{bottom:245.760259px;}
.y2c{bottom:250.440257px;}
.y2b{bottom:270.600249px;}
.y1d{bottom:292.740240px;}
.y21{bottom:294.900239px;}
.y4b{bottom:302.640236px;}
.y1c{bottom:312.900232px;}
.y1b{bottom:332.880224px;}
.y4a{bottom:344.220219px;}
.y1a{bottom:352.860216px;}
.y19{bottom:372.840208px;}
.y49{bottom:387.060202px;}
.y18{bottom:393.000200px;}
.y8{bottom:423.960187px;}
.y20{bottom:460.860173px;}
.y1f{bottom:474.180167px;}
.y1e{bottom:487.500162px;}
.y17{bottom:514.500151px;}
.y16{bottom:528.000146px;}
.y15{bottom:541.320140px;}
.y14{bottom:567.960130px;}
.y13{bottom:581.280124px;}
.ya{bottom:591.360120px;}
.y12{bottom:594.600119px;}
.y9{bottom:604.320115px;}
.y11{bottom:608.100114px;}
.y7{bottom:633.480104px;}
.y10{bottom:634.740103px;}
.yf{bottom:648.060098px;}
.y6{bottom:653.460096px;}
.y37{bottom:660.840093px;}
.ye{bottom:661.380092px;}
.y36{bottom:671.640088px;}
.y5{bottom:673.620088px;}
.yd{bottom:674.700087px;}
.y35{bottom:682.260084px;}
.y34{bottom:692.880080px;}
.y4{bottom:697.200078px;}
.yc{bottom:701.520076px;}
.y33{bottom:703.680076px;}
.y32{bottom:714.300071px;}
.yb{bottom:714.840071px;}
.y3{bottom:765.960801px;}
.y2{bottom:793.320790px;}
.y1{bottom:843.180770px;}
.h9{height:20.214896px;}
.ha{height:20.279688px;}
.h4{height:30.420884px;}
.h2{height:33.019371px;}
.h7{height:33.125202px;}
.h8{height:39.886000px;}
.h5{height:41.780328px;}
.h3{height:41.914239px;}
.h6{height:59.503445px;}
.h1{height:97.041633px;}
.hb{height:133.433299px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x2f{left:4.124533px;}
.x17{left:20.504542px;}
.x8{left:22.484541px;}
.x6{left:26.444539px;}
.x15{left:29.504538px;}
.x18{left:42.464533px;}
.x16{left:43.724533px;}
.x5{left:44.804532px;}
.x4{left:60.824526px;}
.x9{left:71.444521px;}
.x21{left:81.884517px;}
.x7{left:89.084514px;}
.x1d{left:90.704514px;}
.x1e{left:106.364507px;}
.x1f{left:118.424503px;}
.x20{left:128.144499px;}
.x22{left:149.024490px;}
.x19{left:153.704489px;}
.x23{left:157.844487px;}
.x28{left:384.104846px;}
.x2{left:387.704845px;}
.x29{left:389.324844px;}
.x2a{left:394.544842px;}
.x27{left:396.884841px;}
.x2b{left:401.924839px;}
.x2c{left:408.584837px;}
.x2d{left:420.464832px;}
.x24{left:424.604830px;}
.x3{left:433.604827px;}
.x30{left:454.304818px;}
.x2e{left:459.704816px;}
.x31{left:506.684797px;}
.x1{left:596.504761px;}
.xe{left:884.504646px;}
.x11{left:887.744645px;}
.xc{left:889.004644px;}
.xd{left:891.524643px;}
.xa{left:893.144643px;}
.x10{left:894.404642px;}
.x13{left:900.524640px;}
.x25{left:915.824634px;}
.x12{left:921.224632px;}
.xf{left:923.024631px;}
.x26{left:927.884629px;}
.x1b{left:945.524172px;}
.x14{left:947.864621px;}
.xb{left:949.844620px;}
.x1a{left:962.444165px;}
.x1c{left:1019.504142px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.227412pt;}
.ws8{word-spacing:-35.227405pt;}
.ws0{word-spacing:-5.336886pt;}
.ws1{word-spacing:-1.711159pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:3.406222pt;}
.ws3{word-spacing:3.407415pt;}
.ws4{word-spacing:3.407572pt;}
.ws2{word-spacing:3.407696pt;}
.ws7{word-spacing:3.407838pt;}
.ws6{word-spacing:3.411347pt;}
._3{margin-left:-7.004210pt;}
._4{margin-left:-5.109525pt;}
._9{margin-left:-4.193397pt;}
._0{margin-left:-2.503434pt;}
._2{margin-left:-1.412186pt;}
._6{width:0.891450pt;}
._5{width:1.895156pt;}
._1{width:3.110305pt;}
._a{width:4.064095pt;}
._7{width:9.915369pt;}
._b{width:10.905948pt;}
._8{width:29.667405pt;}
.fs6{font-size:19.197432pt;}
.fs3{font-size:28.797428pt;}
.fs1{font-size:31.357427pt;}
.fs5{font-size:37.757425pt;}
.fs2{font-size:39.677424pt;}
.fs4{font-size:79.357302pt;}
.fs0{font-size:92.157296pt;}
.fs7{font-size:126.717283pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:7.413648pt;}
.y47{bottom:13.013645pt;}
.y46{bottom:18.773643pt;}
.y45{bottom:24.533641pt;}
.y44{bottom:30.133639pt;}
.y43{bottom:35.893636pt;}
.y42{bottom:41.493634pt;}
.y41{bottom:47.253632pt;}
.y40{bottom:53.013629pt;}
.y3f{bottom:58.613627pt;}
.y3e{bottom:64.373625pt;}
.y3d{bottom:69.973623pt;}
.y3c{bottom:75.733620pt;}
.y3b{bottom:87.093616pt;}
.y29{bottom:111.573606pt;}
.y28{bottom:123.573601pt;}
.y3a{bottom:126.773600pt;}
.y31{bottom:127.413600pt;}
.y39{bottom:138.133595pt;}
.y30{bottom:145.173593pt;}
.y27{bottom:147.253592pt;}
.y38{bottom:149.493591pt;}
.y26{bottom:159.093587pt;}
.y2f{bottom:166.133584pt;}
.y25{bottom:170.933582pt;}
.y2a{bottom:179.253579pt;}
.y24{bottom:182.773578pt;}
.y2e{bottom:183.893577pt;}
.y2d{bottom:204.853569pt;}
.y23{bottom:206.613568pt;}
.y22{bottom:218.453563pt;}
.y2c{bottom:222.613562pt;}
.y2b{bottom:240.533554pt;}
.y1d{bottom:260.213547pt;}
.y21{bottom:262.133546pt;}
.y4b{bottom:269.013543pt;}
.y1c{bottom:278.133539pt;}
.y1b{bottom:295.893532pt;}
.y4a{bottom:305.973528pt;}
.y1a{bottom:313.653525pt;}
.y19{bottom:331.413518pt;}
.y49{bottom:344.053513pt;}
.y18{bottom:349.333511pt;}
.y8{bottom:376.853500pt;}
.y20{bottom:409.653487pt;}
.y1f{bottom:421.493482pt;}
.y1e{bottom:433.333477pt;}
.y17{bottom:457.333468pt;}
.y16{bottom:469.333463pt;}
.y15{bottom:481.173458pt;}
.y14{bottom:504.853449pt;}
.y13{bottom:516.693444pt;}
.ya{bottom:525.653440pt;}
.y12{bottom:528.533439pt;}
.y9{bottom:537.173436pt;}
.y11{bottom:540.533434pt;}
.y7{bottom:563.093425pt;}
.y10{bottom:564.213425pt;}
.yf{bottom:576.053420pt;}
.y6{bottom:580.853418pt;}
.y37{bottom:587.413416pt;}
.ye{bottom:587.893416pt;}
.y36{bottom:597.013412pt;}
.y5{bottom:598.773411pt;}
.yd{bottom:599.733411pt;}
.y35{bottom:606.453408pt;}
.y34{bottom:615.893404pt;}
.y4{bottom:619.733403pt;}
.yc{bottom:623.573401pt;}
.y33{bottom:625.493400pt;}
.y32{bottom:634.933397pt;}
.yb{bottom:635.413397pt;}
.y3{bottom:680.854045pt;}
.y2{bottom:705.174035pt;}
.y1{bottom:749.494018pt;}
.h9{height:17.968797pt;}
.ha{height:18.026389pt;}
.h4{height:27.040785pt;}
.h2{height:29.350552pt;}
.h7{height:29.444624pt;}
.h8{height:35.454222pt;}
.h5{height:37.138069pt;}
.h3{height:37.257101pt;}
.h6{height:52.891951pt;}
.h1{height:86.259229pt;}
.hb{height:118.607377pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2f{left:3.666252pt;}
.x17{left:18.226259pt;}
.x8{left:19.986259pt;}
.x6{left:23.506257pt;}
.x15{left:26.226256pt;}
.x18{left:37.746252pt;}
.x16{left:38.866251pt;}
.x5{left:39.826251pt;}
.x4{left:54.066245pt;}
.x9{left:63.506241pt;}
.x21{left:72.786238pt;}
.x7{left:79.186235pt;}
.x1d{left:80.626234pt;}
.x1e{left:94.546229pt;}
.x1f{left:105.266225pt;}
.x20{left:113.906221pt;}
.x22{left:132.466214pt;}
.x19{left:136.626212pt;}
.x23{left:140.306211pt;}
.x28{left:341.426530pt;}
.x2{left:344.626529pt;}
.x29{left:346.066528pt;}
.x2a{left:350.706526pt;}
.x27{left:352.786526pt;}
.x2b{left:357.266524pt;}
.x2c{left:363.186521pt;}
.x2d{left:373.746517pt;}
.x24{left:377.426516pt;}
.x3{left:385.426512pt;}
.x30{left:403.826505pt;}
.x2e{left:408.626503pt;}
.x31{left:450.386487pt;}
.x1{left:530.226455pt;}
.xe{left:786.226352pt;}
.x11{left:789.106351pt;}
.xc{left:790.226351pt;}
.xd{left:792.466350pt;}
.xa{left:793.906349pt;}
.x10{left:795.026349pt;}
.x13{left:800.466346pt;}
.x25{left:814.066341pt;}
.x12{left:818.866339pt;}
.xf{left:820.466338pt;}
.x26{left:824.786337pt;}
.x1b{left:840.465930pt;}
.x14{left:842.546330pt;}
.xb{left:844.306329pt;}
.x1a{left:855.505924pt;}
.x1c{left:906.225904pt;}
}




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