
    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_fd160afab6cad196809bc6fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971000;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_c1e2b91bc7ea317e46c18c88.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.025000;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_b54aa3bb49b2f5761d1f4433.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.690000;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_5f1fc78d779919dd7ee042dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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:-21.162232px;}
.ws2{word-spacing:0.000000px;}
.ws1{word-spacing:20.741632px;}
._0{margin-left:-1.264570px;}
._c{width:1.221545px;}
._10{width:2.621290px;}
._17{width:3.942554px;}
._13{width:4.977203px;}
._15{width:5.985001px;}
._14{width:7.405358px;}
._d{width:9.187442px;}
._a{width:10.303426px;}
._b{width:11.376807px;}
._e{width:12.867097px;}
._2{width:13.912241px;}
._1{width:15.234201px;}
._f{width:16.842577px;}
._4{width:17.919881px;}
._3{width:19.022191px;}
._5{width:20.144326px;}
._11{width:22.766880px;}
._12{width:23.972916px;}
._20{width:25.094039px;}
._16{width:26.596970px;}
._1a{width:28.568161px;}
._1c{width:30.000307px;}
._22{width:31.154161px;}
._27{width:32.361745px;}
._23{width:35.452658px;}
._1b{width:38.702546px;}
._6{width:40.255426px;}
._7{width:41.454202px;}
._21{width:42.502130px;}
._29{width:43.782250px;}
._1f{width:46.545366px;}
._8{width:47.704104px;}
._9{width:49.016770px;}
._25{width:50.158506px;}
._1d{width:55.092866px;}
._1e{width:56.828811px;}
._18{width:59.439271px;}
._19{width:60.765771px;}
._26{width:195.209580px;}
._24{width:196.532649px;}
._28{width:201.285888px;}
._2a{width:211.505358px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(57,76,168);}
.fs3{font-size:29.999988px;}
.fs1{font-size:42.119983px;}
.fs2{font-size:60.119976px;}
.fs0{font-size:83.879966px;}
.y0{bottom:0.000000px;}
.y28{bottom:1.577550px;}
.y2a{bottom:1.577737px;}
.y1{bottom:85.561200px;}
.y55{bottom:113.392120px;}
.ya7{bottom:113.392420px;}
.y7e{bottom:113.392720px;}
.y54{bottom:131.669913px;}
.yb7{bottom:131.670063px;}
.ya6{bottom:131.670213px;}
.y7d{bottom:131.670513px;}
.y29{bottom:132.060960px;}
.y26{bottom:144.031858px;}
.y53{bottom:149.855606px;}
.yb4{bottom:149.855756px;}
.ya5{bottom:149.855906px;}
.y7c{bottom:149.856206px;}
.y25{bottom:162.217551px;}
.y52{bottom:168.131899px;}
.yb3{bottom:168.132049px;}
.ya4{bottom:168.132199px;}
.y7b{bottom:168.132499px;}
.y24{bottom:180.493844px;}
.y51{bottom:186.317591px;}
.yb2{bottom:186.317741px;}
.ya3{bottom:186.317891px;}
.y23{bottom:198.680886px;}
.y50{bottom:204.595384px;}
.yb1{bottom:204.595534px;}
.ya2{bottom:204.595684px;}
.y7a{bottom:204.595834px;}
.y22{bottom:216.957179px;}
.y4f{bottom:222.871677px;}
.yb0{bottom:222.871827px;}
.ya1{bottom:222.871977px;}
.y79{bottom:222.872127px;}
.y21{bottom:235.232872px;}
.y4e{bottom:241.057369px;}
.yb6{bottom:241.057519px;}
.y78{bottom:241.057819px;}
.y20{bottom:253.419164px;}
.y4d{bottom:259.333662px;}
.yaf{bottom:259.333812px;}
.ya0{bottom:259.333962px;}
.y77{bottom:259.334112px;}
.y4c{bottom:277.520705px;}
.yae{bottom:277.520855px;}
.y9f{bottom:277.521005px;}
.y76{bottom:277.521155px;}
.y1f{bottom:289.882500px;}
.y4b{bottom:295.796997px;}
.yad{bottom:295.797147px;}
.y9e{bottom:295.797297px;}
.y75{bottom:295.797447px;}
.y1e{bottom:308.158793px;}
.y4a{bottom:313.982690px;}
.yac{bottom:313.982840px;}
.y1d{bottom:326.345835px;}
.y49{bottom:332.260483px;}
.y9d{bottom:332.260633px;}
.y74{bottom:332.260783px;}
.y1c{bottom:344.622128px;}
.y48{bottom:350.446176px;}
.y9c{bottom:350.446326px;}
.y73{bottom:350.446476px;}
.y1b{bottom:362.807821px;}
.y47{bottom:368.722468px;}
.y9b{bottom:368.722618px;}
.y72{bottom:368.722768px;}
.y1a{bottom:381.084113px;}
.y46{bottom:386.998161px;}
.y9a{bottom:386.998311px;}
.y71{bottom:386.998461px;}
.y19{bottom:399.361156px;}
.yab{bottom:405.185954px;}
.y99{bottom:405.186104px;}
.y45{bottom:423.462246px;}
.y98{bottom:423.462396px;}
.y70{bottom:423.462546px;}
.y18{bottom:435.823141px;}
.y44{bottom:441.647939px;}
.y97{bottom:441.648089px;}
.y6f{bottom:441.648239px;}
.y17{bottom:454.009434px;}
.y43{bottom:459.924232px;}
.y96{bottom:459.924382px;}
.y6e{bottom:459.924532px;}
.y16{bottom:472.287227px;}
.y42{bottom:478.111275px;}
.y95{bottom:478.111425px;}
.y6d{bottom:478.111575px;}
.yaa{bottom:496.387567px;}
.y94{bottom:496.387717px;}
.y6c{bottom:496.387867px;}
.y15{bottom:508.749212px;}
.y41{bottom:514.573260px;}
.y93{bottom:514.573410px;}
.y6b{bottom:514.573560px;}
.y14{bottom:526.936255px;}
.y40{bottom:532.849553px;}
.y92{bottom:532.849703px;}
.y6a{bottom:532.849853px;}
.y13{bottom:545.212548px;}
.y3f{bottom:551.127345px;}
.y91{bottom:551.127495px;}
.y69{bottom:551.127645px;}
.y12{bottom:563.488240px;}
.yb5{bottom:569.313038px;}
.y68{bottom:569.313338px;}
.y11{bottom:581.674533px;}
.y3e{bottom:587.589331px;}
.y90{bottom:587.589481px;}
.y10{bottom:599.952326px;}
.y3d{bottom:605.776373px;}
.y8f{bottom:605.776523px;}
.yf{bottom:618.138019px;}
.y3c{bottom:624.052666px;}
.y8e{bottom:624.052816px;}
.y67{bottom:624.052966px;}
.ye{bottom:636.414311px;}
.y3b{bottom:642.238359px;}
.y8d{bottom:642.238509px;}
.y66{bottom:642.238659px;}
.yd{bottom:654.600004px;}
.y3a{bottom:660.514652px;}
.y8c{bottom:660.514802px;}
.y39{bottom:678.701694px;}
.y65{bottom:678.701994px;}
.yc{bottom:691.063339px;}
.y38{bottom:696.977987px;}
.y8b{bottom:696.978137px;}
.y64{bottom:696.978287px;}
.y37{bottom:715.254280px;}
.y8a{bottom:715.254430px;}
.y63{bottom:715.254580px;}
.y36{bottom:733.439972px;}
.y89{bottom:733.440122px;}
.y62{bottom:733.440272px;}
.yb{bottom:745.802967px;}
.y35{bottom:751.717765px;}
.y88{bottom:751.717915px;}
.y61{bottom:751.718065px;}
.ya{bottom:764.078660px;}
.ya9{bottom:769.903458px;}
.y87{bottom:769.903608px;}
.y60{bottom:769.903758px;}
.y9{bottom:782.264953px;}
.y34{bottom:788.179751px;}
.y86{bottom:788.179901px;}
.y5f{bottom:788.180051px;}
.y8{bottom:800.542746px;}
.y33{bottom:806.366793px;}
.y85{bottom:806.366943px;}
.y5e{bottom:806.367093px;}
.y32{bottom:824.643086px;}
.y84{bottom:824.643236px;}
.y5d{bottom:824.643386px;}
.y7{bottom:837.004731px;}
.y31{bottom:842.828779px;}
.y83{bottom:842.828929px;}
.y5c{bottom:842.829079px;}
.y6{bottom:855.190424px;}
.ya8{bottom:861.105071px;}
.y82{bottom:861.105221px;}
.y5b{bottom:861.105371px;}
.y5{bottom:873.468216px;}
.y30{bottom:879.382864px;}
.y81{bottom:879.383014px;}
.y5a{bottom:879.383164px;}
.y4{bottom:891.743909px;}
.y2f{bottom:897.568557px;}
.y80{bottom:897.568707px;}
.y59{bottom:897.568857px;}
.y2e{bottom:915.844849px;}
.y7f{bottom:915.844999px;}
.y58{bottom:915.845149px;}
.y3{bottom:923.963896px;}
.y2d{bottom:934.030542px;}
.y57{bottom:934.030842px;}
.y2c{bottom:952.307585px;}
.y56{bottom:952.307885px;}
.y2{bottom:964.373880px;}
.y2b{bottom:970.493878px;}
.y27{bottom:1123.560000px;}
.h8{height:7.500240px;}
.h6{height:8.305200px;}
.h7{height:26.909989px;}
.h3{height:32.221787px;}
.h4{height:45.991782px;}
.h5{height:49.238260px;}
.h2{height:64.168174px;}
.h1{height:1091.998800px;}
.h0{height:1263.000000px;}
.w3{width:12.515400px;}
.w2{width:542.616480px;}
.w1{width:772.499160px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:59.970240px;}
.xb{left:85.114952px;}
.xa{left:117.052939px;}
.x4{left:127.349685px;}
.x9{left:139.087330px;}
.x8{left:171.010618px;}
.xc{left:174.912120px;}
.x2{left:359.099592px;}
.xd{left:439.961400px;}
.x5{left:441.445809px;}
.x6{left:545.212918px;}
.x3{left:568.619509px;}
.x7{left:616.769939px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-18.810872pt;}
.ws2{word-spacing:0.000000pt;}
.ws1{word-spacing:18.437006pt;}
._0{margin-left:-1.124062pt;}
._c{width:1.085818pt;}
._10{width:2.330036pt;}
._17{width:3.504493pt;}
._13{width:4.424181pt;}
._15{width:5.320001pt;}
._14{width:6.582540pt;}
._d{width:8.166615pt;}
._a{width:9.158601pt;}
._b{width:10.112717pt;}
._e{width:11.437420pt;}
._2{width:12.366437pt;}
._1{width:13.541512pt;}
._f{width:14.971180pt;}
._4{width:15.928783pt;}
._3{width:16.908614pt;}
._5{width:17.906067pt;}
._11{width:20.237227pt;}
._12{width:21.309259pt;}
._20{width:22.305813pt;}
._16{width:23.641751pt;}
._1a{width:25.393921pt;}
._1c{width:26.666940pt;}
._22{width:27.692587pt;}
._27{width:28.765996pt;}
._23{width:31.513474pt;}
._1b{width:34.402263pt;}
._6{width:35.782601pt;}
._7{width:36.848180pt;}
._21{width:37.779671pt;}
._29{width:38.917555pt;}
._1f{width:41.373659pt;}
._8{width:42.403648pt;}
._9{width:43.570462pt;}
._25{width:44.585339pt;}
._1d{width:48.971436pt;}
._1e{width:50.514499pt;}
._18{width:52.834907pt;}
._19{width:54.014018pt;}
._26{width:173.519627pt;}
._24{width:174.695688pt;}
._28{width:178.920789pt;}
._2a{width:188.004763pt;}
.fs3{font-size:26.666656pt;}
.fs1{font-size:37.439985pt;}
.fs2{font-size:53.439979pt;}
.fs0{font-size:74.559970pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:1.402267pt;}
.y2a{bottom:1.402432pt;}
.y1{bottom:76.054400pt;}
.y55{bottom:100.792996pt;}
.ya7{bottom:100.793263pt;}
.y7e{bottom:100.793529pt;}
.y54{bottom:117.039923pt;}
.yb7{bottom:117.040056pt;}
.ya6{bottom:117.040189pt;}
.y7d{bottom:117.040456pt;}
.y29{bottom:117.387520pt;}
.y26{bottom:128.028318pt;}
.y53{bottom:133.204983pt;}
.yb4{bottom:133.205116pt;}
.ya5{bottom:133.205250pt;}
.y7c{bottom:133.205516pt;}
.y25{bottom:144.193379pt;}
.y52{bottom:149.450576pt;}
.yb3{bottom:149.450710pt;}
.ya4{bottom:149.450843pt;}
.y7b{bottom:149.451110pt;}
.y24{bottom:160.438972pt;}
.y51{bottom:165.615637pt;}
.yb2{bottom:165.615770pt;}
.ya3{bottom:165.615903pt;}
.y23{bottom:176.605232pt;}
.y50{bottom:181.862563pt;}
.yb1{bottom:181.862697pt;}
.ya2{bottom:181.862830pt;}
.y7a{bottom:181.862963pt;}
.y22{bottom:192.850826pt;}
.y4f{bottom:198.108157pt;}
.yb0{bottom:198.108290pt;}
.ya1{bottom:198.108424pt;}
.y79{bottom:198.108557pt;}
.y21{bottom:209.095886pt;}
.y4e{bottom:214.273217pt;}
.yb6{bottom:214.273351pt;}
.y78{bottom:214.273617pt;}
.y20{bottom:225.261479pt;}
.y4d{bottom:230.518811pt;}
.yaf{bottom:230.518944pt;}
.ya0{bottom:230.519077pt;}
.y77{bottom:230.519211pt;}
.y4c{bottom:246.685071pt;}
.yae{bottom:246.685204pt;}
.y9f{bottom:246.685338pt;}
.y76{bottom:246.685471pt;}
.y1f{bottom:257.673333pt;}
.y4b{bottom:262.930664pt;}
.yad{bottom:262.930798pt;}
.y9e{bottom:262.930931pt;}
.y75{bottom:262.931064pt;}
.y1e{bottom:273.918927pt;}
.y4a{bottom:279.095725pt;}
.yac{bottom:279.095858pt;}
.y1d{bottom:290.085187pt;}
.y49{bottom:295.342651pt;}
.y9d{bottom:295.342785pt;}
.y74{bottom:295.342918pt;}
.y1c{bottom:306.330780pt;}
.y48{bottom:311.507712pt;}
.y9c{bottom:311.507845pt;}
.y73{bottom:311.507978pt;}
.y1b{bottom:322.495841pt;}
.y47{bottom:327.753305pt;}
.y9b{bottom:327.753438pt;}
.y72{bottom:327.753572pt;}
.y1a{bottom:338.741434pt;}
.y46{bottom:343.998365pt;}
.y9a{bottom:343.998499pt;}
.y71{bottom:343.998632pt;}
.y19{bottom:354.987694pt;}
.yab{bottom:360.165292pt;}
.y99{bottom:360.165426pt;}
.y45{bottom:376.410886pt;}
.y98{bottom:376.411019pt;}
.y70{bottom:376.411152pt;}
.y18{bottom:387.398348pt;}
.y44{bottom:392.575946pt;}
.y97{bottom:392.576079pt;}
.y6f{bottom:392.576213pt;}
.y17{bottom:403.563941pt;}
.y43{bottom:408.821539pt;}
.y96{bottom:408.821673pt;}
.y6e{bottom:408.821806pt;}
.y16{bottom:419.810868pt;}
.y42{bottom:424.987800pt;}
.y95{bottom:424.987933pt;}
.y6d{bottom:424.988066pt;}
.yaa{bottom:441.233393pt;}
.y94{bottom:441.233526pt;}
.y6c{bottom:441.233660pt;}
.y15{bottom:452.221522pt;}
.y41{bottom:457.398453pt;}
.y93{bottom:457.398587pt;}
.y6b{bottom:457.398720pt;}
.y14{bottom:468.387782pt;}
.y40{bottom:473.644047pt;}
.y92{bottom:473.644180pt;}
.y6a{bottom:473.644313pt;}
.y13{bottom:484.633376pt;}
.y3f{bottom:489.890974pt;}
.y91{bottom:489.891107pt;}
.y69{bottom:489.891240pt;}
.y12{bottom:500.878436pt;}
.yb5{bottom:506.056034pt;}
.y68{bottom:506.056300pt;}
.y11{bottom:517.044029pt;}
.y3e{bottom:522.301627pt;}
.y90{bottom:522.301761pt;}
.y10{bottom:533.290956pt;}
.y3d{bottom:538.467888pt;}
.y8f{bottom:538.468021pt;}
.yf{bottom:549.456016pt;}
.y3c{bottom:554.713481pt;}
.y8e{bottom:554.713614pt;}
.y67{bottom:554.713748pt;}
.ye{bottom:565.701610pt;}
.y3b{bottom:570.878541pt;}
.y8d{bottom:570.878675pt;}
.y66{bottom:570.878808pt;}
.yd{bottom:581.866670pt;}
.y3a{bottom:587.124135pt;}
.y8c{bottom:587.124268pt;}
.y39{bottom:603.290395pt;}
.y65{bottom:603.290662pt;}
.yc{bottom:614.278524pt;}
.y38{bottom:619.535988pt;}
.y8b{bottom:619.536122pt;}
.y64{bottom:619.536255pt;}
.y37{bottom:635.781582pt;}
.y8a{bottom:635.781715pt;}
.y63{bottom:635.781849pt;}
.y36{bottom:651.946642pt;}
.y89{bottom:651.946775pt;}
.y62{bottom:651.946909pt;}
.yb{bottom:662.935971pt;}
.y35{bottom:668.193569pt;}
.y88{bottom:668.193702pt;}
.y61{bottom:668.193836pt;}
.ya{bottom:679.181031pt;}
.ya9{bottom:684.358629pt;}
.y87{bottom:684.358763pt;}
.y60{bottom:684.358896pt;}
.y9{bottom:695.346625pt;}
.y34{bottom:700.604223pt;}
.y86{bottom:700.604356pt;}
.y5f{bottom:700.604489pt;}
.y8{bottom:711.593552pt;}
.y33{bottom:716.770483pt;}
.y85{bottom:716.770616pt;}
.y5e{bottom:716.770750pt;}
.y32{bottom:733.016076pt;}
.y84{bottom:733.016210pt;}
.y5d{bottom:733.016343pt;}
.y7{bottom:744.004205pt;}
.y31{bottom:749.181137pt;}
.y83{bottom:749.181270pt;}
.y5c{bottom:749.181403pt;}
.y6{bottom:760.169266pt;}
.ya8{bottom:765.426730pt;}
.y82{bottom:765.426863pt;}
.y5b{bottom:765.426997pt;}
.y5{bottom:776.416192pt;}
.y30{bottom:781.673657pt;}
.y81{bottom:781.673790pt;}
.y5a{bottom:781.673924pt;}
.y4{bottom:792.661253pt;}
.y2f{bottom:797.838717pt;}
.y80{bottom:797.838850pt;}
.y59{bottom:797.838984pt;}
.y2e{bottom:814.084311pt;}
.y7f{bottom:814.084444pt;}
.y58{bottom:814.084577pt;}
.y3{bottom:821.301241pt;}
.y2d{bottom:830.249371pt;}
.y57{bottom:830.249637pt;}
.y2c{bottom:846.495631pt;}
.y56{bottom:846.495898pt;}
.y2{bottom:857.221227pt;}
.y2b{bottom:862.661225pt;}
.y27{bottom:998.720000pt;}
.h8{height:6.666880pt;}
.h6{height:7.382400pt;}
.h7{height:23.919990pt;}
.h3{height:28.641589pt;}
.h4{height:40.881584pt;}
.h5{height:43.767342pt;}
.h2{height:57.038377pt;}
.h1{height:970.665600pt;}
.h0{height:1122.666667pt;}
.w3{width:11.124800pt;}
.w2{width:482.325760pt;}
.w1{width:686.665920pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:53.306880pt;}
.xb{left:75.657735pt;}
.xa{left:104.047057pt;}
.x4{left:113.199720pt;}
.x9{left:123.633183pt;}
.x8{left:152.009438pt;}
.xc{left:155.477440pt;}
.x2{left:319.199638pt;}
.xd{left:391.076800pt;}
.x5{left:392.396275pt;}
.x6{left:484.633705pt;}
.x3{left:505.439563pt;}
.x7{left:548.239946pt;}
}




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