
    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_9e25535490f0bb0522db1a88.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.863770;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_e9433dd73d5383adae376a35.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_afcaf98ceb7d876b26456232.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_94ead6b783c21ce39409867f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689453;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;}
.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:-32.543987px;}
.ws22{word-spacing:-28.079989px;}
.wsa{word-spacing:-24.407990px;}
.ws2{word-spacing:-2.483999px;}
.ws2c{word-spacing:-2.159999px;}
.ws2b{word-spacing:-1.439963px;}
.ws31{word-spacing:-0.899964px;}
.ws2f{word-spacing:-0.828036px;}
.ws2d{word-spacing:-0.551664px;}
.ws3b{word-spacing:-0.540000px;}
.ws12{word-spacing:-0.432000px;}
.ws20{word-spacing:-0.396036px;}
.ws3e{word-spacing:-0.288036px;}
.wsc{word-spacing:-0.180036px;}
.ws1{word-spacing:0.000000px;}
.ws19{word-spacing:0.035964px;}
.ws37{word-spacing:0.127548px;}
.ws35{word-spacing:0.147204px;}
.ws33{word-spacing:0.179604px;}
.ws8{word-spacing:0.180036px;}
.ws44{word-spacing:0.251964px;}
.ws3{word-spacing:0.324000px;}
.ws36{word-spacing:0.484704px;}
.ws2e{word-spacing:0.540000px;}
.ws1f{word-spacing:0.648000px;}
.ws30{word-spacing:0.756000px;}
.ws5{word-spacing:0.899964px;}
.ws4{word-spacing:0.972000px;}
.ws1b{word-spacing:1.007964px;}
.ws11{word-spacing:1.260035px;}
.ws26{word-spacing:1.727891px;}
.ws21{word-spacing:1.728074px;}
.ws23{word-spacing:1.763963px;}
.ws1e{word-spacing:2.411963px;}
.ws15{word-spacing:3.059963px;}
.ws10{word-spacing:3.167963px;}
.ws25{word-spacing:3.779998px;}
.ws9{word-spacing:4.355962px;}
.wsb{word-spacing:5.580034px;}
.ws41{word-spacing:6.299961px;}
.ws45{word-spacing:8.243961px;}
.ws18{word-spacing:8.820032px;}
.ws1d{word-spacing:9.395996px;}
.ws34{word-spacing:10.332032px;}
.ws14{word-spacing:10.403960px;}
.wse{word-spacing:10.980032px;}
.ws7{word-spacing:11.555995px;}
.wsd{word-spacing:11.844031px;}
.ws1a{word-spacing:13.283995px;}
.ws17{word-spacing:13.931994px;}
.wsf{word-spacing:14.687994px;}
.ws6{word-spacing:15.300030px;}
.ws28{word-spacing:16.559957px;}
.ws43{word-spacing:19.763992px;}
.ws2a{word-spacing:20.879956px;}
.ws38{word-spacing:22.644027px;}
.ws32{word-spacing:23.292027px;}
.ws1c{word-spacing:24.083990px;}
.ws16{word-spacing:25.452026px;}
.ws24{word-spacing:25.523954px;}
.ws3f{word-spacing:26.243990px;}
.ws39{word-spacing:26.964025px;}
.ws13{word-spacing:27.899953px;}
.ws42{word-spacing:28.403989px;}
.ws3d{word-spacing:30.563988px;}
.ws3a{word-spacing:32.723987px;}
.ws40{word-spacing:33.444023px;}
.ws3c{word-spacing:41.363983px;}
.ws27{word-spacing:47.088056px;}
.ws29{word-spacing:47.123945px;}
._14{margin-left:-10.260011px;}
._a{margin-left:-9.144011px;}
._1b{margin-left:-7.307752px;}
._2{margin-left:-3.814314px;}
._0{margin-left:-1.871999px;}
._1{width:1.008000px;}
._13{width:2.376017px;}
._3{width:23.832012px;}
._9{width:25.307954px;}
._5{width:26.316088px;}
._11{width:27.664651px;}
._c{width:28.860391px;}
._7{width:30.580171px;}
._8{width:31.623369px;}
._f{width:34.703722px;}
._b{width:36.395741px;}
._6{width:37.437834px;}
._1a{width:43.161551px;}
._10{width:47.436168px;}
._e{width:50.939744px;}
._19{width:52.020093px;}
._d{width:53.385624px;}
._18{width:56.411733px;}
._15{width:58.500024px;}
._17{width:64.583952px;}
._12{width:72.590520px;}
._16{width:80.027941px;}
._4{width:102.295507px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:107.999957px;}
.fs0{font-size:143.999942px;}
.fs2{font-size:239.759904px;}
.y0{bottom:0.000000px;}
.y31{bottom:60.900333px;}
.y21{bottom:84.660323px;}
.y2f{bottom:84.840323px;}
.y2c{bottom:93.300320px;}
.y20{bottom:117.060310px;}
.yd{bottom:117.240310px;}
.y2b{bottom:125.700307px;}
.y5{bottom:139.560301px;}
.y1f{bottom:149.460297px;}
.yc{bottom:149.640297px;}
.y2a{bottom:158.100294px;}
.y15{bottom:173.400288px;}
.y1e{bottom:181.860284px;}
.yb{bottom:182.040284px;}
.y4{bottom:182.760284px;}
.y29{bottom:190.500281px;}
.y14{bottom:205.800275px;}
.y1d{bottom:214.260271px;}
.ya{bottom:214.440271px;}
.y28{bottom:222.900268px;}
.y3{bottom:225.960267px;}
.y13{bottom:238.200262px;}
.y1c{bottom:246.660258px;}
.y2e{bottom:246.840258px;}
.y27{bottom:255.300255px;}
.y12{bottom:270.600249px;}
.y1b{bottom:279.060245px;}
.y9{bottom:279.240245px;}
.y26{bottom:287.700242px;}
.y11{bottom:303.000236px;}
.y1a{bottom:311.460232px;}
.y8{bottom:311.640232px;}
.y2{bottom:312.360232px;}
.y25{bottom:320.100229px;}
.y10{bottom:335.400223px;}
.y19{bottom:343.860219px;}
.y7{bottom:344.040219px;}
.y24{bottom:352.500216px;}
.y1{bottom:355.560215px;}
.yf{bottom:367.800210px;}
.y18{bottom:376.260206px;}
.y30{bottom:376.440206px;}
.y23{bottom:384.900203px;}
.y17{bottom:408.660194px;}
.y6{bottom:408.840193px;}
.y32{bottom:418.740190px;}
.ye{bottom:432.600184px;}
.y16{bottom:441.060181px;}
.y2d{bottom:441.240181px;}
.y22{bottom:449.700177px;}
.h5{height:74.039033px;}
.h4{height:77.519500px;}
.h3{height:78.415984px;}
.h1{height:98.718711px;}
.h2{height:104.554646px;}
.h6{height:174.083485px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x6{left:149.025840px;}
.xc{left:155.866438px;}
.x14{left:161.086436px;}
.xf{left:168.826432px;}
.x7{left:182.865827px;}
.x13{left:189.526424px;}
.xb{left:193.666423px;}
.x1{left:252.886399px;}
.x11{left:312.646375px;}
.x16{left:380.506348px;}
.x8{left:391.486343px;}
.xe{left:414.706334px;}
.x3{left:427.666329px;}
.x4{left:460.246316px;}
.xa{left:500.746300px;}
.xd{left:504.166298px;}
.x5{left:505.966298px;}
.x9{left:518.206293px;}
.x2{left:544.126282px;}
.x12{left:565.186274px;}
.x15{left:567.346273px;}
.x10{left:607.666257px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-28.927988pt;}
.ws22{word-spacing:-24.959990pt;}
.wsa{word-spacing:-21.695991pt;}
.ws2{word-spacing:-2.207999pt;}
.ws2c{word-spacing:-1.919999pt;}
.ws2b{word-spacing:-1.279967pt;}
.ws31{word-spacing:-0.799968pt;}
.ws2f{word-spacing:-0.736032pt;}
.ws2d{word-spacing:-0.490368pt;}
.ws3b{word-spacing:-0.480000pt;}
.ws12{word-spacing:-0.384000pt;}
.ws20{word-spacing:-0.352032pt;}
.ws3e{word-spacing:-0.256032pt;}
.wsc{word-spacing:-0.160032pt;}
.ws1{word-spacing:0.000000pt;}
.ws19{word-spacing:0.031968pt;}
.ws37{word-spacing:0.113376pt;}
.ws35{word-spacing:0.130848pt;}
.ws33{word-spacing:0.159648pt;}
.ws8{word-spacing:0.160032pt;}
.ws44{word-spacing:0.223968pt;}
.ws3{word-spacing:0.288000pt;}
.ws36{word-spacing:0.430848pt;}
.ws2e{word-spacing:0.480000pt;}
.ws1f{word-spacing:0.576000pt;}
.ws30{word-spacing:0.672000pt;}
.ws5{word-spacing:0.799968pt;}
.ws4{word-spacing:0.864000pt;}
.ws1b{word-spacing:0.895968pt;}
.ws11{word-spacing:1.120032pt;}
.ws26{word-spacing:1.535903pt;}
.ws21{word-spacing:1.536066pt;}
.ws23{word-spacing:1.567967pt;}
.ws1e{word-spacing:2.143967pt;}
.ws15{word-spacing:2.719967pt;}
.ws10{word-spacing:2.815967pt;}
.ws25{word-spacing:3.359999pt;}
.ws9{word-spacing:3.871966pt;}
.wsb{word-spacing:4.960030pt;}
.ws41{word-spacing:5.599966pt;}
.ws45{word-spacing:7.327965pt;}
.ws18{word-spacing:7.840029pt;}
.ws1d{word-spacing:8.351997pt;}
.ws34{word-spacing:9.184028pt;}
.ws14{word-spacing:9.247964pt;}
.wse{word-spacing:9.760028pt;}
.ws7{word-spacing:10.271996pt;}
.wsd{word-spacing:10.528028pt;}
.ws1a{word-spacing:11.807995pt;}
.ws17{word-spacing:12.383995pt;}
.wsf{word-spacing:13.055995pt;}
.ws6{word-spacing:13.600027pt;}
.ws28{word-spacing:14.719962pt;}
.ws43{word-spacing:17.567993pt;}
.ws2a{word-spacing:18.559961pt;}
.ws38{word-spacing:20.128024pt;}
.ws32{word-spacing:20.704024pt;}
.ws1c{word-spacing:21.407991pt;}
.ws16{word-spacing:22.624023pt;}
.ws24{word-spacing:22.687959pt;}
.ws3f{word-spacing:23.327991pt;}
.ws39{word-spacing:23.968022pt;}
.ws13{word-spacing:24.799958pt;}
.ws42{word-spacing:25.247990pt;}
.ws3d{word-spacing:27.167989pt;}
.ws3a{word-spacing:29.087988pt;}
.ws40{word-spacing:29.728020pt;}
.ws3c{word-spacing:36.767985pt;}
.ws27{word-spacing:41.856049pt;}
.ws29{word-spacing:41.887951pt;}
._14{margin-left:-9.120010pt;}
._a{margin-left:-8.128010pt;}
._1b{margin-left:-6.495779pt;}
._2{margin-left:-3.390501pt;}
._0{margin-left:-1.663999pt;}
._1{width:0.896000pt;}
._13{width:2.112015pt;}
._3{width:21.184011pt;}
._9{width:22.495959pt;}
._5{width:23.392078pt;}
._11{width:24.590801pt;}
._c{width:25.653681pt;}
._7{width:27.182375pt;}
._8{width:28.109661pt;}
._f{width:30.847753pt;}
._b{width:32.351770pt;}
._6{width:33.278075pt;}
._1a{width:38.365823pt;}
._10{width:42.165482pt;}
._e{width:45.279772pt;}
._19{width:46.240083pt;}
._d{width:47.453888pt;}
._18{width:50.143763pt;}
._15{width:52.000022pt;}
._17{width:57.407958pt;}
._12{width:64.524906pt;}
._16{width:71.135947pt;}
._4{width:90.929340pt;}
.fs1{font-size:95.999962pt;}
.fs0{font-size:127.999949pt;}
.fs2{font-size:213.119915pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:54.133629pt;}
.y21{bottom:75.253621pt;}
.y2f{bottom:75.413621pt;}
.y2c{bottom:82.933617pt;}
.y20{bottom:104.053609pt;}
.yd{bottom:104.213609pt;}
.y2b{bottom:111.733606pt;}
.y5{bottom:124.053601pt;}
.y1f{bottom:132.853598pt;}
.yc{bottom:133.013597pt;}
.y2a{bottom:140.533594pt;}
.y15{bottom:154.133589pt;}
.y1e{bottom:161.653586pt;}
.yb{bottom:161.813586pt;}
.y4{bottom:162.453586pt;}
.y29{bottom:169.333583pt;}
.y14{bottom:182.933577pt;}
.y1d{bottom:190.453574pt;}
.ya{bottom:190.613574pt;}
.y28{bottom:198.133571pt;}
.y3{bottom:200.853570pt;}
.y13{bottom:211.733566pt;}
.y1c{bottom:219.253563pt;}
.y2e{bottom:219.413563pt;}
.y27{bottom:226.933560pt;}
.y12{bottom:240.533554pt;}
.y1b{bottom:248.053551pt;}
.y9{bottom:248.213551pt;}
.y26{bottom:255.733548pt;}
.y11{bottom:269.333543pt;}
.y1a{bottom:276.853540pt;}
.y8{bottom:277.013540pt;}
.y2{bottom:277.653540pt;}
.y25{bottom:284.533537pt;}
.y10{bottom:298.133531pt;}
.y19{bottom:305.653528pt;}
.y7{bottom:305.813528pt;}
.y24{bottom:313.333525pt;}
.y1{bottom:316.053524pt;}
.yf{bottom:326.933520pt;}
.y18{bottom:334.453517pt;}
.y30{bottom:334.613517pt;}
.y23{bottom:342.133514pt;}
.y17{bottom:363.253505pt;}
.y6{bottom:363.413505pt;}
.y32{bottom:372.213502pt;}
.ye{bottom:384.533497pt;}
.y16{bottom:392.053494pt;}
.y2d{bottom:392.213494pt;}
.y22{bottom:399.733491pt;}
.h5{height:65.812474pt;}
.h4{height:68.906222pt;}
.h3{height:69.703097pt;}
.h1{height:87.749965pt;}
.h2{height:92.937463pt;}
.h6{height:154.740876pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x6{left:132.467414pt;}
.xc{left:138.547945pt;}
.x14{left:143.187943pt;}
.xf{left:150.067940pt;}
.x7{left:162.547402pt;}
.x13{left:168.467933pt;}
.xb{left:172.147931pt;}
.x1{left:224.787910pt;}
.x11{left:277.907889pt;}
.x16{left:338.227865pt;}
.x8{left:347.987861pt;}
.xe{left:368.627853pt;}
.x3{left:380.147848pt;}
.x4{left:409.107836pt;}
.xa{left:445.107822pt;}
.xd{left:448.147821pt;}
.x5{left:449.747820pt;}
.x9{left:460.627816pt;}
.x2{left:483.667807pt;}
.x12{left:502.387799pt;}
.x15{left:504.307798pt;}
.x10{left:540.147784pt;}
}




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