
    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_0ab53892aa7cc5ce2db60398.woff')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_307f09679a5445d2fe461a93.woff')format("woff");}.ff2{font-family:ff2;line-height:0.854980;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_02fa08196e1518c2aa4529f3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_c2eedf86a799fb9fab753af4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.920000;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_6f11d4f0aac4396dc74816c4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.678223;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_d1d16710bbcf8f6ffbed5ca7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.713379;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;}
.v1{vertical-align:45.000001px;}
.v2{vertical-align:63.000002px;}
.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:-194.400006px;}
.ws8{word-spacing:-158.400009px;}
.wsa{word-spacing:-100.800000px;}
.ws2{word-spacing:-93.240002px;}
.ws4{word-spacing:-86.400003px;}
.ws7{word-spacing:-72.000001px;}
.wsd{word-spacing:-39.888001px;}
.wsc{word-spacing:-31.024001px;}
.ws9{word-spacing:-22.527757px;}
.ws6{word-spacing:-22.160001px;}
.ws3{word-spacing:-0.264000px;}
.wsb{word-spacing:-0.168000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:14.755300px;}
._9{margin-left:-18.480000px;}
._a{margin-left:-15.840001px;}
._c{margin-left:-13.200000px;}
._1{margin-left:-10.656000px;}
._5{margin-left:-9.240000px;}
._0{margin-left:-7.920000px;}
._4{margin-left:-3.024000px;}
._8{width:2.151785px;}
._b{width:6.216000px;}
._2{width:24.008242px;}
._6{width:30.311895px;}
._3{width:36.014064px;}
._7{width:47.995300px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:80.000005px;}
.fs7{font-size:112.000005px;}
.fs5{font-size:120.000001px;}
.fs1{font-size:144.000005px;}
.fs4{font-size:155.400003px;}
.fs3{font-size:167.999999px;}
.fs2{font-size:264.000014px;}
.fs0{font-size:324.000010px;}
.y0{bottom:0.000000px;}
.y33{bottom:119.374144px;}
.y54{bottom:124.970952px;}
.y1c{bottom:127.078167px;}
.y5c{bottom:129.411046px;}
.y43{bottom:134.739012px;}
.y11{bottom:142.646896px;}
.y53{bottom:163.850953px;}
.y4a{bottom:163.851054px;}
.y1b{bottom:164.374179px;}
.y2a{bottom:168.015017px;}
.y32{bottom:171.670176px;}
.y5b{bottom:174.495028px;}
.y42{bottom:175.059013px;}
.y10{bottom:203.006939px;}
.y7{bottom:203.734421px;}
.y29{bottom:207.914977px;}
.y31{bottom:208.966177px;}
.y49{bottom:210.231048px;}
.y52{bottom:211.526981px;}
.y5a{bottom:214.395000px;}
.y1a{bottom:216.670200px;}
.y41{bottom:230.379011px;}
.y30{bottom:246.262178px;}
.y28{bottom:247.814971px;}
.yf{bottom:248.366963px;}
.y48{bottom:249.111038px;}
.y6{bottom:253.294435px;}
.y59{bottom:254.294982px;}
.y51{bottom:256.886994px;}
.y19{bottom:268.966220px;}
.y40{bottom:270.699001px;}
.y4e{bottom:276.050998px;}
.y27{bottom:287.714976px;}
.y58{bottom:294.194987px;}
.y47{bottom:296.787055px;}
.y2f{bottom:298.558210px;}
.y5{bottom:302.854432px;}
.y18{bottom:306.262233px;}
.ye{bottom:308.726995px;}
.y4d{bottom:314.931010px;}
.y50{bottom:315.951025px;}
.y3f{bottom:326.019011px;}
.y39{bottom:327.147026px;}
.y26{bottom:328.910992px;}
.y57{bottom:335.390981px;}
.y46{bottom:342.147034px;}
.y17{bottom:343.558211px;}
.y2e{bottom:350.854197px;}
.y4{bottom:352.414428px;}
.yd{bottom:354.086997px;}
.y4f{bottom:354.831027px;}
.y4c{bottom:361.311016px;}
.y3e{bottom:366.339012px;}
.y25{bottom:367.790993px;}
.y56{bottom:374.270982px;}
.y38{bottom:387.507013px;}
.y16{bottom:395.854198px;}
.y4b{bottom:400.191017px;}
.y35{bottom:401.487006px;}
.y45{bottom:402.507021px;}
.y2d{bottom:403.150183px;}
.yc{bottom:413.150984px;}
.y24{bottom:414.170999px;}
.y3{bottom:420.609880px;}
.y55{bottom:420.650988px;}
.y3d{bottom:421.659010px;}
.y37{bottom:432.867003px;}
.y15{bottom:433.150188px;}
.y34{bottom:446.846996px;}
.y44{bottom:447.867011px;}
.y2c{bottom:455.446192px;}
.yb{bottom:459.530989px;}
.y23{bottom:460.551004px;}
.y3c{bottom:461.978993px;}
.y14{bottom:485.446197px;}
.y36{bottom:493.226995px;}
.ya{bottom:505.910994px;}
.y2b{bottom:507.742190px;}
.y2{bottom:508.089872px;}
.y22{bottom:508.226998px;}
.y3b{bottom:517.298998px;}
.y13{bottom:522.742193px;}
.y9{bottom:553.586991px;}
.y3a{bottom:557.618992px;}
.y12{bottom:560.038189px;}
.y1{bottom:595.569886px;}
.y1f{bottom:595.929726px;}
.y21{bottom:631.569716px;}
.y8{bottom:667.209717px;}
.y1e{bottom:667.209724px;}
.y20{bottom:702.849711px;}
.y1d{bottom:738.489714px;}
.h6{height:87.421876px;}
.h7{height:103.281255px;}
.h2{height:104.906253px;}
.h5{height:113.211331px;}
.h4{height:122.390625px;}
.h8{height:144.593756px;}
.h3{height:187.440010px;}
.h1{height:230.040007px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x8{left:109.125003px;}
.x9{left:115.422944px;}
.xb{left:136.125004px;}
.xa{left:168.521490px;}
.xc{left:190.125006px;}
.x2{left:197.185439px;}
.xd{left:221.626183px;}
.x1{left:250.564370px;}
.x6{left:295.795911px;}
.x3{left:398.450645px;}
.x5{left:490.904318px;}
.x7{left:596.223649px;}
.x4{left:631.995140px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:40.000001pt;}
.v2{vertical-align:56.000002pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-172.800006pt;}
.ws8{word-spacing:-140.800008pt;}
.wsa{word-spacing:-89.600000pt;}
.ws2{word-spacing:-82.880002pt;}
.ws4{word-spacing:-76.800002pt;}
.ws7{word-spacing:-64.000000pt;}
.wsd{word-spacing:-35.456001pt;}
.wsc{word-spacing:-27.576890pt;}
.ws9{word-spacing:-20.024673pt;}
.ws6{word-spacing:-19.697779pt;}
.ws3{word-spacing:-0.234667pt;}
.wsb{word-spacing:-0.149333pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:13.115822pt;}
._9{margin-left:-16.426667pt;}
._a{margin-left:-14.080000pt;}
._c{margin-left:-11.733333pt;}
._1{margin-left:-9.472000pt;}
._5{margin-left:-8.213333pt;}
._0{margin-left:-7.040000pt;}
._4{margin-left:-2.688000pt;}
._8{width:1.912697pt;}
._b{width:5.525333pt;}
._2{width:21.340660pt;}
._6{width:26.943907pt;}
._3{width:32.012501pt;}
._7{width:42.662489pt;}
.fs6{font-size:71.111115pt;}
.fs7{font-size:99.555560pt;}
.fs5{font-size:106.666667pt;}
.fs1{font-size:128.000004pt;}
.fs4{font-size:138.133336pt;}
.fs3{font-size:149.333333pt;}
.fs2{font-size:234.666680pt;}
.fs0{font-size:288.000009pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:106.110350pt;}
.y54{bottom:111.085291pt;}
.y1c{bottom:112.958371pt;}
.y5c{bottom:115.032041pt;}
.y43{bottom:119.768011pt;}
.y11{bottom:126.797241pt;}
.y53{bottom:145.645292pt;}
.y4a{bottom:145.645382pt;}
.y1b{bottom:146.110382pt;}
.y2a{bottom:149.346682pt;}
.y32{bottom:152.595712pt;}
.y5b{bottom:155.106692pt;}
.y42{bottom:155.608012pt;}
.y10{bottom:180.450613pt;}
.y7{bottom:181.097263pt;}
.y29{bottom:184.813313pt;}
.y31{bottom:185.747713pt;}
.y49{bottom:186.872043pt;}
.y52{bottom:188.023983pt;}
.y5a{bottom:190.573333pt;}
.y1a{bottom:192.595733pt;}
.y41{bottom:204.781344pt;}
.y30{bottom:218.899714pt;}
.y28{bottom:220.279974pt;}
.yf{bottom:220.770634pt;}
.y48{bottom:221.432034pt;}
.y6{bottom:225.150609pt;}
.y59{bottom:226.039984pt;}
.y51{bottom:228.343994pt;}
.y19{bottom:239.081085pt;}
.y40{bottom:240.621335pt;}
.y4e{bottom:245.378665pt;}
.y27{bottom:255.746645pt;}
.y58{bottom:261.506655pt;}
.y47{bottom:263.810715pt;}
.y2f{bottom:265.385075pt;}
.y5{bottom:269.203940pt;}
.y18{bottom:272.233096pt;}
.ye{bottom:274.423996pt;}
.y4d{bottom:279.938676pt;}
.y50{bottom:280.845356pt;}
.y3f{bottom:289.794676pt;}
.y39{bottom:290.797356pt;}
.y26{bottom:292.365326pt;}
.y57{bottom:298.125317pt;}
.y46{bottom:304.130697pt;}
.y17{bottom:305.385077pt;}
.y2e{bottom:311.870397pt;}
.y4{bottom:313.257269pt;}
.yd{bottom:314.743997pt;}
.y4f{bottom:315.405357pt;}
.y4c{bottom:321.165347pt;}
.y3e{bottom:325.634677pt;}
.y25{bottom:326.925327pt;}
.y56{bottom:332.685318pt;}
.y38{bottom:344.450678pt;}
.y16{bottom:351.870398pt;}
.y4b{bottom:355.725348pt;}
.y35{bottom:356.877338pt;}
.y45{bottom:357.784018pt;}
.y2d{bottom:358.355718pt;}
.yc{bottom:367.245319pt;}
.y24{bottom:368.151999pt;}
.y3{bottom:373.875449pt;}
.y55{bottom:373.911989pt;}
.y3d{bottom:374.808009pt;}
.y37{bottom:384.770669pt;}
.y15{bottom:385.022389pt;}
.y34{bottom:397.197330pt;}
.y44{bottom:398.104010pt;}
.y2c{bottom:404.841060pt;}
.yb{bottom:408.471990pt;}
.y23{bottom:409.378670pt;}
.y3c{bottom:410.647994pt;}
.y14{bottom:431.507731pt;}
.y36{bottom:438.423996pt;}
.ya{bottom:449.698661pt;}
.y2b{bottom:451.326391pt;}
.y2{bottom:451.635441pt;}
.y22{bottom:451.757331pt;}
.y3b{bottom:459.821332pt;}
.y13{bottom:464.659727pt;}
.y9{bottom:492.077326pt;}
.y3a{bottom:495.661326pt;}
.y12{bottom:497.811724pt;}
.y1{bottom:529.395454pt;}
.y1f{bottom:529.715312pt;}
.y21{bottom:561.395303pt;}
.y8{bottom:593.075304pt;}
.y1e{bottom:593.075310pt;}
.y20{bottom:624.755299pt;}
.y1d{bottom:656.435301pt;}
.h6{height:77.708334pt;}
.h7{height:91.805560pt;}
.h2{height:93.250003pt;}
.h5{height:100.632294pt;}
.h4{height:108.791666pt;}
.h8{height:128.527783pt;}
.h3{height:166.613342pt;}
.h1{height:204.480007pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x8{left:97.000003pt;}
.x9{left:102.598172pt;}
.xb{left:121.000004pt;}
.xa{left:149.796880pt;}
.xc{left:169.000005pt;}
.x2{left:175.275946pt;}
.xd{left:197.001051pt;}
.x1{left:222.723884pt;}
.x6{left:262.929698pt;}
.x3{left:354.178351pt;}
.x5{left:436.359394pt;}
.x7{left:529.976577pt;}
.x4{left:561.773458pt;}
}




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