
    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_f8aa886ca3988be2f396a234.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_9aed86da2feabff04cb1bf5e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_6937cf6c61d88e1e01c1e8f4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:23.629111px;}
.ls1{letter-spacing:39.141851px;}
.ls2{letter-spacing:44.967310px;}
.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;}
}
.wse{word-spacing:-37.180650px;}
.ws7{word-spacing:-35.865600px;}
.ws4{word-spacing:-32.727300px;}
.wsf{word-spacing:-29.887800px;}
.ws0{word-spacing:-21.519300px;}
.ws6{word-spacing:-17.932800px;}
.wsa{word-spacing:-16.952741px;}
.wsc{word-spacing:-16.429105px;}
.ws1{word-spacing:-16.363650px;}
.ws8{word-spacing:-14.943900px;}
.wsb{word-spacing:-11.964731px;}
.ws2{word-spacing:-9.098189px;}
.ws3{word-spacing:-8.966400px;}
.ws9{word-spacing:-8.308808px;}
.wsd{word-spacing:-0.065455px;}
.ws5{word-spacing:0.000000px;}
._13{margin-left:-15.615873px;}
._c{margin-left:-7.746948px;}
._1{margin-left:-6.455790px;}
._5{margin-left:-4.909095px;}
._2{margin-left:-3.012702px;}
._3{margin-left:-1.071489px;}
._8{width:1.107339px;}
._0{width:2.151930px;}
._a{width:22.647292px;}
._b{width:24.521260px;}
._f{width:26.222248px;}
._6{width:31.934641px;}
._10{width:284.548720px;}
._11{width:386.801545px;}
._12{width:420.313455px;}
._7{width:423.093044px;}
._e{width:463.527006px;}
._d{width:464.594032px;}
._9{width:472.950716px;}
._4{width:1023.698381px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs6{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y6{bottom:6.052500px;}
.y11{bottom:63.561000px;}
.y45{bottom:74.268000px;}
.y62{bottom:87.039000px;}
.y8b{bottom:94.477500px;}
.y7d{bottom:98.434500px;}
.y10{bottom:98.794500px;}
.y44{bottom:99.075000px;}
.y25{bottom:101.064000px;}
.y93{bottom:105.175500px;}
.y53{bottom:107.598000px;}
.y61{bottom:111.595500px;}
.y3a{bottom:114.271500px;}
.y5{bottom:115.434000px;}
.y8a{bottom:119.284500px;}
.y43{bottom:119.398500px;}
.y4c{bottom:120.784500px;}
.y7c{bottom:123.093000px;}
.y24{bottom:125.871000px;}
.y9d{bottom:129.076500px;}
.y6b{bottom:129.156000px;}
.y92{bottom:129.982500px;}
.y2c{bottom:131.845500px;}
.y52{bottom:132.255000px;}
.yf{bottom:134.028000px;}
.y18{bottom:134.290500px;}
.y60{bottom:136.402500px;}
.y39{bottom:139.078500px;}
.y71{bottom:141.349500px;}
.y32{bottom:144.039000px;}
.y89{bottom:144.091500px;}
.y42{bottom:144.205500px;}
.y23{bottom:150.678000px;}
.y9c{bottom:153.883500px;}
.y6a{bottom:153.963000px;}
.y17{bottom:154.614000px;}
.y91{bottom:154.789500px;}
.y4b{bottom:155.956500px;}
.y1d{bottom:156.234000px;}
.y2b{bottom:156.652500px;}
.y82{bottom:158.923500px;}
.y5f{bottom:161.209500px;}
.y41{bottom:162.138000px;}
.ya0{bottom:163.216500px;}
.y38{bottom:163.885500px;}
.y70{bottom:166.156500px;}
.y7b{bottom:166.449000px;}
.y31{bottom:168.846000px;}
.y88{bottom:168.898500px;}
.y58{bottom:169.012500px;}
.ye{bottom:169.261500px;}
.y22{bottom:175.335000px;}
.y51{bottom:175.612500px;}
.y4a{bottom:176.280000px;}
.y9b{bottom:178.690500px;}
.y69{bottom:178.770000px;}
.y16{bottom:179.421000px;}
.y90{bottom:179.596500px;}
.y40{bottom:180.072000px;}
.y1c{bottom:181.041000px;}
.y2a{bottom:181.459500px;}
.y81{bottom:183.730500px;}
.y96{bottom:186.003000px;}
.y5e{bottom:186.016500px;}
.y7a{bottom:186.772500px;}
.y57{bottom:186.945000px;}
.y37{bottom:188.692500px;}
.y4{bottom:189.199500px;}
.yd{bottom:189.585000px;}
.y6f{bottom:190.963500px;}
.y30{bottom:193.653000px;}
.y68{bottom:199.093500px;}
.y50{bottom:200.269500px;}
.y64{bottom:200.886000px;}
.y3f{bottom:200.992500px;}
.y49{bottom:201.087000px;}
.y9a{bottom:203.497500px;}
.y75{bottom:203.577000px;}
.y80{bottom:204.054000px;}
.y15{bottom:204.228000px;}
.y56{bottom:204.879000px;}
.y1b{bottom:205.848000px;}
.y29{bottom:206.266500px;}
.y87{bottom:206.461500px;}
.y79{bottom:209.790000px;}
.yc{bottom:209.908500px;}
.y95{bottom:210.810000px;}
.y5d{bottom:210.823500px;}
.y36{bottom:213.499500px;}
.y73{bottom:213.978000px;}
.y6e{bottom:215.770500px;}
.y8f{bottom:217.159500px;}
.y2f{bottom:218.460000px;}
.y3{bottom:218.490000px;}
.y21{bottom:218.692500px;}
.y3e{bottom:223.408500px;}
.y9f{bottom:223.669500px;}
.y67{bottom:223.900500px;}
.y14{bottom:224.551500px;}
.y63{bottom:225.693000px;}
.y55{bottom:225.799500px;}
.y48{bottom:225.894000px;}
.y28{bottom:226.590000px;}
.y99{bottom:228.304500px;}
.y74{bottom:228.384000px;}
.y7f{bottom:228.861000px;}
.y1a{bottom:230.655000px;}
.y86{bottom:231.268500px;}
.y94{bottom:235.617000px;}
.y5c{bottom:235.630500px;}
.y35{bottom:238.306500px;}
.y72{bottom:238.785000px;}
.y6d{bottom:240.577500px;}
.y8e{bottom:241.966500px;}
.y2e{bottom:243.267000px;}
.y20{bottom:243.499500px;}
.y4f{bottom:243.627000px;}
.y3d{bottom:243.732000px;}
.yb{bottom:245.142000px;}
.y98{bottom:248.628000px;}
.y66{bottom:248.707500px;}
.y13{bottom:249.358500px;}
.y78{bottom:249.735000px;}
.y47{bottom:250.701000px;}
.y27{bottom:251.397000px;}
.y7e{bottom:253.668000px;}
.y19{bottom:255.462000px;}
.y85{bottom:256.075500px;}
.y5b{bottom:260.437500px;}
.y54{bottom:262.989000px;}
.y34{bottom:263.113500px;}
.y2d{bottom:263.592000px;}
.y4e{bottom:263.950500px;}
.y6c{bottom:265.384500px;}
.ya{bottom:265.465500px;}
.y8d{bottom:266.773500px;}
.y1f{bottom:268.306500px;}
.y12{bottom:269.682000px;}
.y77{bottom:270.058500px;}
.y26{bottom:271.720500px;}
.y97{bottom:273.435000px;}
.y65{bottom:273.514500px;}
.y46{bottom:275.508000px;}
.y84{bottom:280.882500px;}
.y2{bottom:282.726000px;}
.y3c{bottom:283.312500px;}
.y33{bottom:283.437000px;}
.y5a{bottom:285.244500px;}
.y9{bottom:285.790500px;}
.y9e{bottom:286.513500px;}
.y4d{bottom:288.607500px;}
.y8c{bottom:291.580500px;}
.y1e{bottom:292.963500px;}
.y76{bottom:294.717000px;}
.y83{bottom:305.689500px;}
.y3b{bottom:306.330000px;}
.y1{bottom:309.625500px;}
.y59{bottom:310.051500px;}
.y8{bottom:321.024000px;}
.y7{bottom:378.217500px;}
.h4{height:24.675533px;}
.h7{height:41.125613px;}
.h8{height:44.574583px;}
.h3{height:45.032765px;}
.h6{height:45.294583px;}
.h5{height:49.351066px;}
.h2{height:59.221114px;}
.h9{height:102.321149px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x6{left:10.311000px;}
.x7{left:12.756000px;}
.xb{left:16.363500px;}
.xc{left:18.136500px;}
.x8{left:22.689000px;}
.xd{left:31.867500px;}
.x11{left:43.636500px;}
.xa{left:49.090500px;}
.x9{left:53.181000px;}
.x1{left:62.151000px;}
.xe{left:81.819000px;}
.x4{left:137.797500px;}
.xf{left:144.244500px;}
.x10{left:176.971500px;}
.x14{left:179.611500px;}
.x2{left:182.745000px;}
.x15{left:200.679000px;}
.x3{left:216.325500px;}
.x5{left:225.768000px;}
.x12{left:277.581000px;}
.x13{left:310.308000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:21.003654pt;}
.ls1{letter-spacing:34.792756pt;}
.ls2{letter-spacing:39.970942pt;}
.wse{word-spacing:-33.049467pt;}
.ws7{word-spacing:-31.880533pt;}
.ws4{word-spacing:-29.090933pt;}
.wsf{word-spacing:-26.566933pt;}
.ws0{word-spacing:-19.128267pt;}
.ws6{word-spacing:-15.940267pt;}
.wsa{word-spacing:-15.069103pt;}
.wsc{word-spacing:-14.603649pt;}
.ws1{word-spacing:-14.545467pt;}
.ws8{word-spacing:-13.283467pt;}
.wsb{word-spacing:-10.635316pt;}
.ws2{word-spacing:-8.087279pt;}
.ws3{word-spacing:-7.970133pt;}
.ws9{word-spacing:-7.385607pt;}
.wsd{word-spacing:-0.058182pt;}
.ws5{word-spacing:0.000000pt;}
._13{margin-left:-13.880776pt;}
._c{margin-left:-6.886176pt;}
._1{margin-left:-5.738480pt;}
._5{margin-left:-4.363640pt;}
._2{margin-left:-2.677957pt;}
._3{margin-left:-0.952435pt;}
._8{width:0.984301pt;}
._0{width:1.912827pt;}
._a{width:20.130926pt;}
._b{width:21.796675pt;}
._f{width:23.308665pt;}
._6{width:28.386348pt;}
._10{width:252.932195pt;}
._11{width:343.823596pt;}
._12{width:373.611960pt;}
._7{width:376.082706pt;}
._e{width:412.024005pt;}
._d{width:412.972473pt;}
._9{width:420.400637pt;}
._4{width:909.954117pt;}
.fs2{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs6{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:5.380000pt;}
.y11{bottom:56.498667pt;}
.y45{bottom:66.016000pt;}
.y62{bottom:77.368000pt;}
.y8b{bottom:83.980000pt;}
.y7d{bottom:87.497333pt;}
.y10{bottom:87.817333pt;}
.y44{bottom:88.066667pt;}
.y25{bottom:89.834667pt;}
.y93{bottom:93.489333pt;}
.y53{bottom:95.642667pt;}
.y61{bottom:99.196000pt;}
.y3a{bottom:101.574667pt;}
.y5{bottom:102.608000pt;}
.y8a{bottom:106.030667pt;}
.y43{bottom:106.132000pt;}
.y4c{bottom:107.364000pt;}
.y7c{bottom:109.416000pt;}
.y24{bottom:111.885333pt;}
.y9d{bottom:114.734667pt;}
.y6b{bottom:114.805333pt;}
.y92{bottom:115.540000pt;}
.y2c{bottom:117.196000pt;}
.y52{bottom:117.560000pt;}
.yf{bottom:119.136000pt;}
.y18{bottom:119.369333pt;}
.y60{bottom:121.246667pt;}
.y39{bottom:123.625333pt;}
.y71{bottom:125.644000pt;}
.y32{bottom:128.034667pt;}
.y89{bottom:128.081333pt;}
.y42{bottom:128.182667pt;}
.y23{bottom:133.936000pt;}
.y9c{bottom:136.785333pt;}
.y6a{bottom:136.856000pt;}
.y17{bottom:137.434667pt;}
.y91{bottom:137.590667pt;}
.y4b{bottom:138.628000pt;}
.y1d{bottom:138.874667pt;}
.y2b{bottom:139.246667pt;}
.y82{bottom:141.265333pt;}
.y5f{bottom:143.297333pt;}
.y41{bottom:144.122667pt;}
.ya0{bottom:145.081333pt;}
.y38{bottom:145.676000pt;}
.y70{bottom:147.694667pt;}
.y7b{bottom:147.954667pt;}
.y31{bottom:150.085333pt;}
.y88{bottom:150.132000pt;}
.y58{bottom:150.233333pt;}
.ye{bottom:150.454667pt;}
.y22{bottom:155.853333pt;}
.y51{bottom:156.100000pt;}
.y4a{bottom:156.693333pt;}
.y9b{bottom:158.836000pt;}
.y69{bottom:158.906667pt;}
.y16{bottom:159.485333pt;}
.y90{bottom:159.641333pt;}
.y40{bottom:160.064000pt;}
.y1c{bottom:160.925333pt;}
.y2a{bottom:161.297333pt;}
.y81{bottom:163.316000pt;}
.y96{bottom:165.336000pt;}
.y5e{bottom:165.348000pt;}
.y7a{bottom:166.020000pt;}
.y57{bottom:166.173333pt;}
.y37{bottom:167.726667pt;}
.y4{bottom:168.177333pt;}
.yd{bottom:168.520000pt;}
.y6f{bottom:169.745333pt;}
.y30{bottom:172.136000pt;}
.y68{bottom:176.972000pt;}
.y50{bottom:178.017333pt;}
.y64{bottom:178.565333pt;}
.y3f{bottom:178.660000pt;}
.y49{bottom:178.744000pt;}
.y9a{bottom:180.886667pt;}
.y75{bottom:180.957333pt;}
.y80{bottom:181.381333pt;}
.y15{bottom:181.536000pt;}
.y56{bottom:182.114667pt;}
.y1b{bottom:182.976000pt;}
.y29{bottom:183.348000pt;}
.y87{bottom:183.521333pt;}
.y79{bottom:186.480000pt;}
.yc{bottom:186.585333pt;}
.y95{bottom:187.386667pt;}
.y5d{bottom:187.398667pt;}
.y36{bottom:189.777333pt;}
.y73{bottom:190.202667pt;}
.y6e{bottom:191.796000pt;}
.y8f{bottom:193.030667pt;}
.y2f{bottom:194.186667pt;}
.y3{bottom:194.213333pt;}
.y21{bottom:194.393333pt;}
.y3e{bottom:198.585333pt;}
.y9f{bottom:198.817333pt;}
.y67{bottom:199.022667pt;}
.y14{bottom:199.601333pt;}
.y63{bottom:200.616000pt;}
.y55{bottom:200.710667pt;}
.y48{bottom:200.794667pt;}
.y28{bottom:201.413333pt;}
.y99{bottom:202.937333pt;}
.y74{bottom:203.008000pt;}
.y7f{bottom:203.432000pt;}
.y1a{bottom:205.026667pt;}
.y86{bottom:205.572000pt;}
.y94{bottom:209.437333pt;}
.y5c{bottom:209.449333pt;}
.y35{bottom:211.828000pt;}
.y72{bottom:212.253333pt;}
.y6d{bottom:213.846667pt;}
.y8e{bottom:215.081333pt;}
.y2e{bottom:216.237333pt;}
.y20{bottom:216.444000pt;}
.y4f{bottom:216.557333pt;}
.y3d{bottom:216.650667pt;}
.yb{bottom:217.904000pt;}
.y98{bottom:221.002667pt;}
.y66{bottom:221.073333pt;}
.y13{bottom:221.652000pt;}
.y78{bottom:221.986667pt;}
.y47{bottom:222.845333pt;}
.y27{bottom:223.464000pt;}
.y7e{bottom:225.482667pt;}
.y19{bottom:227.077333pt;}
.y85{bottom:227.622667pt;}
.y5b{bottom:231.500000pt;}
.y54{bottom:233.768000pt;}
.y34{bottom:233.878667pt;}
.y2d{bottom:234.304000pt;}
.y4e{bottom:234.622667pt;}
.y6c{bottom:235.897333pt;}
.ya{bottom:235.969333pt;}
.y8d{bottom:237.132000pt;}
.y1f{bottom:238.494667pt;}
.y12{bottom:239.717333pt;}
.y77{bottom:240.052000pt;}
.y26{bottom:241.529333pt;}
.y97{bottom:243.053333pt;}
.y65{bottom:243.124000pt;}
.y46{bottom:244.896000pt;}
.y84{bottom:249.673333pt;}
.y2{bottom:251.312000pt;}
.y3c{bottom:251.833333pt;}
.y33{bottom:251.944000pt;}
.y5a{bottom:253.550667pt;}
.y9{bottom:254.036000pt;}
.y9e{bottom:254.678667pt;}
.y4d{bottom:256.540000pt;}
.y8c{bottom:259.182667pt;}
.y1e{bottom:260.412000pt;}
.y76{bottom:261.970667pt;}
.y83{bottom:271.724000pt;}
.y3b{bottom:272.293333pt;}
.y1{bottom:275.222667pt;}
.y59{bottom:275.601333pt;}
.y8{bottom:285.354667pt;}
.y7{bottom:336.193333pt;}
.h4{height:21.933807pt;}
.h7{height:36.556100pt;}
.h8{height:39.621851pt;}
.h3{height:40.029124pt;}
.h6{height:40.261852pt;}
.h5{height:43.867614pt;}
.h2{height:52.640990pt;}
.h9{height:90.952132pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.165333pt;}
.x7{left:11.338667pt;}
.xb{left:14.545333pt;}
.xc{left:16.121333pt;}
.x8{left:20.168000pt;}
.xd{left:28.326667pt;}
.x11{left:38.788000pt;}
.xa{left:43.636000pt;}
.x9{left:47.272000pt;}
.x1{left:55.245333pt;}
.xe{left:72.728000pt;}
.x4{left:122.486667pt;}
.xf{left:128.217333pt;}
.x10{left:157.308000pt;}
.x14{left:159.654667pt;}
.x2{left:162.440000pt;}
.x15{left:178.381333pt;}
.x3{left:192.289333pt;}
.x5{left:200.682667pt;}
.x12{left:246.738667pt;}
.x13{left:275.829333pt;}
}




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