
    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_29a26e02c68d922850a96be7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_5ea55f1eda57d79af9d2136a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910000;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_1d8c46edfb14c1051ffa900e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_062ff986fd17c96f452cb944.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.388000;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_a982eea44c77f3fb8918ca1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912000;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_b26f0877ed2be9f65ac0c2ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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:ff7;src:url('chunks/assets/font_5399195abf712e65dc17d73a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;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);}
.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);}
.v2{vertical-align:-8.964000px;}
.v1{vertical-align:-7.470000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.726730px;}
.ls2{letter-spacing:32.728080px;}
.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:-0.086077px;}
.ws10{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.035865px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:12.660514px;}
.wsd{word-spacing:18.345213px;}
.ws11{word-spacing:19.785803px;}
.wsf{word-spacing:19.845579px;}
.ws12{word-spacing:19.905355px;}
.ws5{word-spacing:21.665453px;}
.ws3{word-spacing:21.730907px;}
.wse{word-spacing:21.734744px;}
.ws7{word-spacing:21.872777px;}
.wsb{word-spacing:21.882067px;}
.wsc{word-spacing:21.907682px;}
.wsa{word-spacing:21.937139px;}
.ws9{word-spacing:23.890907px;}
.ws8{word-spacing:23.956362px;}
.ws2{word-spacing:27.975090px;}
._5{margin-left:-5.432727px;}
._2{margin-left:-2.151930px;}
._0{margin-left:-1.040099px;}
._1{width:1.040099px;}
._3{width:2.238007px;}
._4{width:20.735640px;}
._7{width:22.711791px;}
._6{width:23.956362px;}
.fc2{color:rgb(0,77,155);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(102,148,195);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:35.865480px;}
.fs3{font-size:53.798280px;}
.fs4{font-size:59.775840px;}
.fs2{font-size:65.454540px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y43{bottom:56.158500px;}
.y50{bottom:64.527000px;}
.y42{bottom:76.332000px;}
.y2d{bottom:79.585500px;}
.y4f{bottom:84.700500px;}
.y41{bottom:92.023500px;}
.y4e{bottom:100.392000px;}
.y2c{bottom:101.776500px;}
.y40{bottom:112.198500px;}
.y4d{bottom:118.324500px;}
.yc{bottom:121.789500px;}
.y2b{bottom:124.716000px;}
.y3f{bottom:130.878000px;}
.y19{bottom:131.643000px;}
.y35{bottom:133.183500px;}
.y4c{bottom:138.499500px;}
.y2a{bottom:146.907000px;}
.y34{bottom:148.873500px;}
.y3e{bottom:150.678000px;}
.y4b{bottom:154.191000px;}
.y18{bottom:156.450000px;}
.y1e{bottom:158.041500px;}
.y33{bottom:169.048500px;}
.y22{bottom:170.920500px;}
.y3d{bottom:171.226500px;}
.y29{bottom:171.714000px;}
.y4a{bottom:174.364500px;}
.y53{bottom:175.044000px;}
.y17{bottom:179.389500px;}
.y1d{bottom:182.848500px;}
.y32{bottom:186.981000px;}
.y3c{bottom:191.401500px;}
.y49{bottom:193.044000px;}
.y28{bottom:194.653500px;}
.y21{bottom:195.727500px;}
.y52{bottom:199.851000px;}
.y12{bottom:200.805000px;}
.y16{bottom:206.064000px;}
.y31{bottom:207.529500px;}
.y1c{bottom:207.655500px;}
.y3b{bottom:210.081000px;}
.y48{bottom:212.845500px;}
.y27{bottom:216.844500px;}
.y20{bottom:220.534500px;}
.y11{bottom:222.997500px;}
.y51{bottom:224.658000px;}
.yb{bottom:227.253000px;}
.y30{bottom:228.076500px;}
.y3a{bottom:229.881000px;}
.y15{bottom:230.871000px;}
.y1b{bottom:232.462500px;}
.y47{bottom:233.394000px;}
.y26{bottom:239.784000px;}
.y1f{bottom:245.341500px;}
.y10{bottom:245.935500px;}
.y2f{bottom:250.269000px;}
.y39{bottom:252.670500px;}
.y1a{bottom:255.400500px;}
.y46{bottom:255.585000px;}
.y14{bottom:255.678000px;}
.y25{bottom:261.976500px;}
.yf{bottom:268.128000px;}
.y9{bottom:268.464000px;}
.y38{bottom:270.604500px;}
.y13{bottom:278.617500px;}
.y45{bottom:280.392000px;}
.ya{bottom:284.568000px;}
.y24{bottom:284.914500px;}
.y8{bottom:287.392500px;}
.y37{bottom:291.151500px;}
.y7{bottom:297.853500px;}
.y44{bottom:303.331500px;}
.y23{bottom:307.107000px;}
.ye{bottom:311.391000px;}
.y36{bottom:311.700000px;}
.y6{bottom:325.951500px;}
.y5{bottom:336.412500px;}
.y2e{bottom:355.533000px;}
.y4{bottom:356.290500px;}
.y3{bottom:366.751500px;}
.yd{bottom:376.603500px;}
.y2{bottom:377.211000px;}
.y1{bottom:387.672000px;}
.h2{height:25.285163px;}
.hb{height:35.861880px;}
.h9{height:35.867880px;}
.h7{height:38.519568px;}
.h6{height:41.614905px;}
.h5{height:41.620905px;}
.ha{height:44.831880px;}
.h8{height:45.425451px;}
.hc{height:46.210905px;}
.h4{height:49.090905px;}
.h3{height:60.684426px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x6{left:4.483500px;}
.x2{left:5.871000px;}
.x3{left:11.203500px;}
.x5{left:16.797000px;}
.x4{left:18.052500px;}
.x1{left:20.010000px;}
.xf{left:81.421500px;}
.xb{left:88.507500px;}
.x10{left:97.785000px;}
.xc{left:104.871000px;}
.x17{left:114.148500px;}
.xd{left:121.234500px;}
.x7{left:125.905500px;}
.x18{left:131.221500px;}
.x19{left:146.875500px;}
.x9{left:232.090500px;}
.x8{left:247.318500px;}
.x14{left:283.480500px;}
.x11{left:312.837000px;}
.xa{left:315.703500px;}
.x12{left:329.200500px;}
.x1b{left:345.564000px;}
.x1c{left:362.637000px;}
.x1d{left:378.291000px;}
.x16{left:442.735500px;}
.x1a{left:451.305000px;}
.x13{left:469.336500px;}
.xe{left:474.864000px;}
.x15{left:484.965000px;}
@media print{
.v2{vertical-align:-7.968000pt;}
.v1{vertical-align:-6.640000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:29.090427pt;}
.ls2{letter-spacing:29.091627pt;}
.ws6{word-spacing:-0.076513pt;}
.ws10{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.031880pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:11.253791pt;}
.wsd{word-spacing:16.306856pt;}
.ws11{word-spacing:17.587380pt;}
.wsf{word-spacing:17.640515pt;}
.ws12{word-spacing:17.693649pt;}
.ws5{word-spacing:19.258180pt;}
.ws3{word-spacing:19.316362pt;}
.wse{word-spacing:19.319772pt;}
.ws7{word-spacing:19.442468pt;}
.wsb{word-spacing:19.450726pt;}
.wsc{word-spacing:19.473495pt;}
.wsa{word-spacing:19.499679pt;}
.ws9{word-spacing:21.236362pt;}
.ws8{word-spacing:21.294544pt;}
.ws2{word-spacing:24.866747pt;}
._5{margin-left:-4.829091pt;}
._2{margin-left:-1.912827pt;}
._0{margin-left:-0.924532pt;}
._1{width:0.924532pt;}
._3{width:1.989340pt;}
._4{width:18.431680pt;}
._7{width:20.188259pt;}
._6{width:21.294544pt;}
.fs0{font-size:31.880427pt;}
.fs3{font-size:47.820693pt;}
.fs4{font-size:53.134080pt;}
.fs2{font-size:58.181813pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:49.918667pt;}
.y50{bottom:57.357333pt;}
.y42{bottom:67.850667pt;}
.y2d{bottom:70.742667pt;}
.y4f{bottom:75.289333pt;}
.y41{bottom:81.798667pt;}
.y4e{bottom:89.237333pt;}
.y2c{bottom:90.468000pt;}
.y40{bottom:99.732000pt;}
.y4d{bottom:105.177333pt;}
.yc{bottom:108.257333pt;}
.y2b{bottom:110.858667pt;}
.y3f{bottom:116.336000pt;}
.y19{bottom:117.016000pt;}
.y35{bottom:118.385333pt;}
.y4c{bottom:123.110667pt;}
.y2a{bottom:130.584000pt;}
.y34{bottom:132.332000pt;}
.y3e{bottom:133.936000pt;}
.y4b{bottom:137.058667pt;}
.y18{bottom:139.066667pt;}
.y1e{bottom:140.481333pt;}
.y33{bottom:150.265333pt;}
.y22{bottom:151.929333pt;}
.y3d{bottom:152.201333pt;}
.y29{bottom:152.634667pt;}
.y4a{bottom:154.990667pt;}
.y53{bottom:155.594667pt;}
.y17{bottom:159.457333pt;}
.y1d{bottom:162.532000pt;}
.y32{bottom:166.205333pt;}
.y3c{bottom:170.134667pt;}
.y49{bottom:171.594667pt;}
.y28{bottom:173.025333pt;}
.y21{bottom:173.980000pt;}
.y52{bottom:177.645333pt;}
.y12{bottom:178.493333pt;}
.y16{bottom:183.168000pt;}
.y31{bottom:184.470667pt;}
.y1c{bottom:184.582667pt;}
.y3b{bottom:186.738667pt;}
.y48{bottom:189.196000pt;}
.y27{bottom:192.750667pt;}
.y20{bottom:196.030667pt;}
.y11{bottom:198.220000pt;}
.y51{bottom:199.696000pt;}
.yb{bottom:202.002667pt;}
.y30{bottom:202.734667pt;}
.y3a{bottom:204.338667pt;}
.y15{bottom:205.218667pt;}
.y1b{bottom:206.633333pt;}
.y47{bottom:207.461333pt;}
.y26{bottom:213.141333pt;}
.y1f{bottom:218.081333pt;}
.y10{bottom:218.609333pt;}
.y2f{bottom:222.461333pt;}
.y39{bottom:224.596000pt;}
.y1a{bottom:227.022667pt;}
.y46{bottom:227.186667pt;}
.y14{bottom:227.269333pt;}
.y25{bottom:232.868000pt;}
.yf{bottom:238.336000pt;}
.y9{bottom:238.634667pt;}
.y38{bottom:240.537333pt;}
.y13{bottom:247.660000pt;}
.y45{bottom:249.237333pt;}
.ya{bottom:252.949333pt;}
.y24{bottom:253.257333pt;}
.y8{bottom:255.460000pt;}
.y37{bottom:258.801333pt;}
.y7{bottom:264.758667pt;}
.y44{bottom:269.628000pt;}
.y23{bottom:272.984000pt;}
.ye{bottom:276.792000pt;}
.y36{bottom:277.066667pt;}
.y6{bottom:289.734667pt;}
.y5{bottom:299.033333pt;}
.y2e{bottom:316.029333pt;}
.y4{bottom:316.702667pt;}
.y3{bottom:326.001333pt;}
.yd{bottom:334.758667pt;}
.y2{bottom:335.298667pt;}
.y1{bottom:344.597333pt;}
.h2{height:22.475701pt;}
.hb{height:31.877227pt;}
.h9{height:31.882560pt;}
.h7{height:34.239616pt;}
.h6{height:36.991027pt;}
.h5{height:36.996360pt;}
.ha{height:39.850560pt;}
.h8{height:40.378178pt;}
.hc{height:41.076360pt;}
.h4{height:43.636360pt;}
.h3{height:53.941712pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.985333pt;}
.x2{left:5.218667pt;}
.x3{left:9.958667pt;}
.x5{left:14.930667pt;}
.x4{left:16.046667pt;}
.x1{left:17.786667pt;}
.xf{left:72.374667pt;}
.xb{left:78.673333pt;}
.x10{left:86.920000pt;}
.xc{left:93.218667pt;}
.x17{left:101.465333pt;}
.xd{left:107.764000pt;}
.x7{left:111.916000pt;}
.x18{left:116.641333pt;}
.x19{left:130.556000pt;}
.x9{left:206.302667pt;}
.x8{left:219.838667pt;}
.x14{left:251.982667pt;}
.x11{left:278.077333pt;}
.xa{left:280.625333pt;}
.x12{left:292.622667pt;}
.x1b{left:307.168000pt;}
.x1c{left:322.344000pt;}
.x1d{left:336.258667pt;}
.x16{left:393.542667pt;}
.x1a{left:401.160000pt;}
.x13{left:417.188000pt;}
.xe{left:422.101333pt;}
.x15{left:431.080000pt;}
}




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