
    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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_13a71d5601810d57151593e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_661b048e0457ce55957c74b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_cc77604a72c1c53c80b33fb5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_6dd0f0101c9a3a146cd5e733.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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:-25.044871px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321696px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-10.800000px;}
.ws4{word-spacing:-9.900000px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-8.402344px;}
._14{margin-left:-6.609380px;}
._0{margin-left:-5.343748px;}
._1{margin-left:-3.972654px;}
._4{margin-left:-2.375287px;}
._2{margin-left:-1.300789px;}
._3{width:4.405751px;}
._b{width:5.431581px;}
._9{width:8.837733px;}
._a{width:9.939898px;}
._6{width:13.398454px;}
._f{width:14.413903px;}
._5{width:17.930448px;}
._c{width:21.558652px;}
._8{width:22.970673px;}
._7{width:26.869407px;}
._d{width:27.914169px;}
._10{width:31.500002px;}
._12{width:36.000012px;}
._11{width:40.500002px;}
._13{width:44.981249px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.600001px;}
.fs4{font-size:43.200002px;}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.496571px;}
.y65{bottom:3.496581px;}
.y29{bottom:3.496583px;}
.y48{bottom:88.784540px;}
.y7b{bottom:99.230716px;}
.y47{bottom:114.019146px;}
.y9c{bottom:114.226312px;}
.y7a{bottom:130.278079px;}
.y9b{bottom:134.924566px;}
.y9a{bottom:155.622808px;}
.y79{bottom:161.325443px;}
.y99{bottom:176.321050px;}
.y78{bottom:192.372801px;}
.y46{bottom:197.019105px;}
.y98{bottom:197.019293px;}
.y97{bottom:217.717523px;}
.y77{bottom:223.420164px;}
.y45{bottom:228.066279px;}
.y96{bottom:238.415770px;}
.y76{bottom:254.467528px;}
.y27{bottom:258.522038px;}
.y44{bottom:259.113643px;}
.y95{bottom:259.114013px;}
.y75{bottom:285.514891px;}
.y94{bottom:288.812257px;}
.y26{bottom:289.569398px;}
.y43{bottom:290.161006px;}
.y63{bottom:306.812257px;}
.y74{bottom:316.562254px;}
.y25{bottom:320.616757px;}
.y42{bottom:321.208369px;}
.y62{bottom:337.859614px;}
.y93{bottom:337.859626px;}
.y73{bottom:347.609618px;}
.y24{bottom:351.664118px;}
.y41{bottom:352.255733px;}
.y61{bottom:368.906978px;}
.y92{bottom:368.906989px;}
.y72{bottom:378.656985px;}
.y23{bottom:382.711492px;}
.y40{bottom:383.303094px;}
.y60{bottom:399.954339px;}
.y91{bottom:399.954353px;}
.y71{bottom:409.704349px;}
.y22{bottom:413.758853px;}
.y3f{bottom:414.350458px;}
.y5f{bottom:431.001703px;}
.y90{bottom:431.001711px;}
.y21{bottom:433.808163px;}
.y70{bottom:440.751721px;}
.y3e{bottom:445.397821px;}
.y20{bottom:451.056708px;}
.y5e{bottom:462.049066px;}
.y8f{bottom:462.049074px;}
.y1f{bottom:468.305241px;}
.y6f{bottom:471.799444px;}
.y3d{bottom:476.445184px;}
.y1e{bottom:485.553777px;}
.y5d{bottom:493.096429px;}
.y8e{bottom:493.096438px;}
.y1d{bottom:502.802355px;}
.y6e{bottom:502.846807px;}
.y3c{bottom:507.492548px;}
.y1c{bottom:520.050890px;}
.y5c{bottom:524.143792px;}
.y8d{bottom:524.143801px;}
.y6d{bottom:533.894158px;}
.y3b{bottom:537.190792px;}
.y1b{bottom:537.299426px;}
.y5b{bottom:553.842038px;}
.y1a{bottom:554.547958px;}
.y8c{bottom:555.191164px;}
.y6c{bottom:564.941521px;}
.y19{bottom:571.796493px;}
.y3a{bottom:586.238155px;}
.y8b{bottom:586.238528px;}
.y6b{bottom:595.988884px;}
.y18{bottom:597.669303px;}
.y5a{bottom:602.889399px;}
.y17{bottom:614.917833px;}
.y39{bottom:617.285523px;}
.y8a{bottom:617.285893px;}
.y6a{bottom:627.036248px;}
.y16{bottom:632.166363px;}
.y59{bottom:633.936763px;}
.y38{bottom:648.332886px;}
.y89{bottom:648.333256px;}
.y15{bottom:649.414906px;}
.y69{bottom:658.083622px;}
.y58{bottom:664.984126px;}
.y14{bottom:666.663441px;}
.y37{bottom:679.380249px;}
.y88{bottom:679.380619px;}
.y13{bottom:683.912020px;}
.y68{bottom:687.944098px;}
.y57{bottom:696.031489px;}
.y12{bottom:701.160555px;}
.y36{bottom:710.427613px;}
.y87{bottom:710.427982px;}
.y67{bottom:716.404549px;}
.y11{bottom:718.409090px;}
.y56{bottom:727.078852px;}
.y10{bottom:735.657626px;}
.y86{bottom:740.126228px;}
.y35{bottom:741.474976px;}
.yf{bottom:752.906158px;}
.y55{bottom:758.126044px;}
.ye{bottom:770.154693px;}
.y34{bottom:772.522339px;}
.y54{bottom:789.173408px;}
.y85{bottom:789.173580px;}
.yd{bottom:798.401273px;}
.y33{bottom:803.569703px;}
.y53{bottom:820.220764px;}
.y84{bottom:820.220947px;}
.yc{bottom:829.448633px;}
.y32{bottom:834.617068px;}
.y52{bottom:851.268127px;}
.y83{bottom:851.268310px;}
.yb{bottom:860.496007px;}
.y31{bottom:865.664431px;}
.y51{bottom:882.315484px;}
.y82{bottom:882.315673px;}
.ya{bottom:891.543367px;}
.y30{bottom:896.711794px;}
.y50{bottom:913.362847px;}
.y81{bottom:913.363037px;}
.y9{bottom:922.590727px;}
.y2f{bottom:927.759158px;}
.y4f{bottom:944.410219px;}
.y80{bottom:944.410400px;}
.y8{bottom:953.638087px;}
.y2e{bottom:958.806518px;}
.y4e{bottom:975.457582px;}
.y7f{bottom:975.457763px;}
.y7{bottom:984.685462px;}
.y2d{bottom:989.853881px;}
.ya0{bottom:996.156006px;}
.y4d{bottom:1006.504943px;}
.y7e{bottom:1006.505127px;}
.y6{bottom:1015.732818px;}
.y9f{bottom:1016.854248px;}
.y2c{bottom:1020.901244px;}
.y4c{bottom:1037.552306px;}
.y7d{bottom:1037.552491px;}
.y5{bottom:1046.780182px;}
.y2b{bottom:1051.948608px;}
.y9e{bottom:1058.250732px;}
.y4b{bottom:1068.599669px;}
.y7c{bottom:1068.599854px;}
.y4{bottom:1077.827534px;}
.y9d{bottom:1078.948975px;}
.y2a{bottom:1081.646850px;}
.y4a{bottom:1099.647033px;}
.y66{bottom:1099.647217px;}
.y3{bottom:1100.974812px;}
.y28{bottom:1116.451538px;}
.y1{bottom:1116.451618px;}
.y49{bottom:1116.451720px;}
.y64{bottom:1116.451905px;}
.hb{height:35.500782px;}
.h2{height:43.989259px;}
.h6{height:48.796875px;}
.h7{height:49.992188px;}
.h9{height:53.291014px;}
.h8{height:53.789061px;}
.hc{height:59.167970px;}
.h5{height:63.949219px;}
.h3{height:64.546875px;}
.he{height:66.049805px;}
.h4{height:85.265628px;}
.hf{height:146.548095px;}
.hd{height:146.548280px;}
.h1{height:146.548382px;}
.ha{height:146.548462px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:127.575005px;}
.x3{left:147.028279px;}
.xa{left:213.075005px;}
.xd{left:254.700005px;}
.x5{left:277.290968px;}
.x2{left:282.239210px;}
.x6{left:290.593214px;}
.xb{left:357.359326px;}
.x4{left:467.719205px;}
.x8{left:516.901460px;}
.x9{left:629.295991px;}
.xc{left:750.825005px;}
.x7{left:807.863416px;}
@media print{
.v2{vertical-align:-22.262108pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285952pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-9.600000pt;}
.ws4{word-spacing:-8.800000pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-7.468750pt;}
._14{margin-left:-5.875004pt;}
._0{margin-left:-4.749999pt;}
._1{margin-left:-3.531248pt;}
._4{margin-left:-2.111366pt;}
._2{margin-left:-1.156257pt;}
._3{width:3.916223pt;}
._b{width:4.828072pt;}
._9{width:7.855763pt;}
._a{width:8.835465pt;}
._6{width:11.909736pt;}
._f{width:12.812359pt;}
._5{width:15.938176pt;}
._c{width:19.163246pt;}
._8{width:20.418376pt;}
._7{width:23.883917pt;}
._d{width:24.812595pt;}
._10{width:28.000001pt;}
._12{width:32.000010pt;}
._11{width:36.000002pt;}
._13{width:39.983333pt;}
.fs5{font-size:35.200001pt;}
.fs4{font-size:38.400002pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.108063pt;}
.y65{bottom:3.108072pt;}
.y29{bottom:3.108073pt;}
.y48{bottom:78.919591pt;}
.y7b{bottom:88.205081pt;}
.y47{bottom:101.350352pt;}
.y9c{bottom:101.534500pt;}
.y7a{bottom:115.802737pt;}
.y9b{bottom:119.932948pt;}
.y9a{bottom:138.331385pt;}
.y79{bottom:143.400393pt;}
.y99{bottom:156.729823pt;}
.y78{bottom:170.998045pt;}
.y46{bottom:175.128093pt;}
.y98{bottom:175.128260pt;}
.y97{bottom:193.526687pt;}
.y77{bottom:198.595701pt;}
.y45{bottom:202.725581pt;}
.y96{bottom:211.925129pt;}
.y76{bottom:226.193358pt;}
.y27{bottom:229.797367pt;}
.y44{bottom:230.323238pt;}
.y95{bottom:230.323567pt;}
.y75{bottom:253.791014pt;}
.y94{bottom:256.722007pt;}
.y26{bottom:257.395020pt;}
.y43{bottom:257.920894pt;}
.y63{bottom:272.722007pt;}
.y74{bottom:281.388670pt;}
.y25{bottom:284.992673pt;}
.y42{bottom:285.518550pt;}
.y62{bottom:300.319657pt;}
.y93{bottom:300.319668pt;}
.y73{bottom:308.986327pt;}
.y24{bottom:312.590327pt;}
.y41{bottom:313.116207pt;}
.y61{bottom:327.917313pt;}
.y92{bottom:327.917324pt;}
.y72{bottom:336.583986pt;}
.y23{bottom:340.187993pt;}
.y40{bottom:340.713861pt;}
.y60{bottom:355.514968pt;}
.y91{bottom:355.514980pt;}
.y71{bottom:364.181643pt;}
.y22{bottom:367.785647pt;}
.y3f{bottom:368.311518pt;}
.y5f{bottom:383.112625pt;}
.y90{bottom:383.112632pt;}
.y21{bottom:385.607256pt;}
.y70{bottom:391.779307pt;}
.y3e{bottom:395.909174pt;}
.y20{bottom:400.939296pt;}
.y5e{bottom:410.710281pt;}
.y8f{bottom:410.710288pt;}
.y1f{bottom:416.271325pt;}
.y6f{bottom:419.377283pt;}
.y3d{bottom:423.506830pt;}
.y1e{bottom:431.603357pt;}
.y5d{bottom:438.307937pt;}
.y8e{bottom:438.307945pt;}
.y1d{bottom:446.935426pt;}
.y6e{bottom:446.974940pt;}
.y3c{bottom:451.104487pt;}
.y1c{bottom:462.267457pt;}
.y5c{bottom:465.905593pt;}
.y8d{bottom:465.905601pt;}
.y6d{bottom:474.572585pt;}
.y3b{bottom:477.502927pt;}
.y1b{bottom:477.599489pt;}
.y5b{bottom:492.304033pt;}
.y1a{bottom:492.931518pt;}
.y8c{bottom:493.503257pt;}
.y6c{bottom:502.170241pt;}
.y19{bottom:508.263550pt;}
.y3a{bottom:521.100582pt;}
.y8b{bottom:521.100913pt;}
.y6b{bottom:529.767897pt;}
.y18{bottom:531.261603pt;}
.y5a{bottom:535.901688pt;}
.y17{bottom:546.593630pt;}
.y39{bottom:548.698242pt;}
.y8a{bottom:548.698571pt;}
.y6a{bottom:557.365553pt;}
.y16{bottom:561.925656pt;}
.y59{bottom:563.499345pt;}
.y38{bottom:576.295899pt;}
.y89{bottom:576.296227pt;}
.y15{bottom:577.257694pt;}
.y69{bottom:584.963220pt;}
.y58{bottom:591.097001pt;}
.y14{bottom:592.589725pt;}
.y37{bottom:603.893554pt;}
.y88{bottom:603.893884pt;}
.y13{bottom:607.921795pt;}
.y68{bottom:611.505865pt;}
.y57{bottom:618.694657pt;}
.y12{bottom:623.253826pt;}
.y36{bottom:631.491211pt;}
.y87{bottom:631.491540pt;}
.y67{bottom:636.804044pt;}
.y11{bottom:638.585857pt;}
.y56{bottom:646.292313pt;}
.y10{bottom:653.917889pt;}
.y86{bottom:657.889980pt;}
.y35{bottom:659.088867pt;}
.yf{bottom:669.249918pt;}
.y55{bottom:673.889817pt;}
.ye{bottom:684.581950pt;}
.y34{bottom:686.686524pt;}
.y54{bottom:701.487473pt;}
.y85{bottom:701.487626pt;}
.yd{bottom:709.690020pt;}
.y33{bottom:714.284180pt;}
.y53{bottom:729.085124pt;}
.y84{bottom:729.085286pt;}
.yc{bottom:737.287673pt;}
.y32{bottom:741.881838pt;}
.y52{bottom:756.682780pt;}
.y83{bottom:756.682942pt;}
.yb{bottom:764.885340pt;}
.y31{bottom:769.479494pt;}
.y51{bottom:784.280430pt;}
.y82{bottom:784.280598pt;}
.ya{bottom:792.482993pt;}
.y30{bottom:797.077150pt;}
.y50{bottom:811.878087pt;}
.y81{bottom:811.878255pt;}
.y9{bottom:820.080647pt;}
.y2f{bottom:824.674807pt;}
.y4f{bottom:839.475750pt;}
.y80{bottom:839.475911pt;}
.y8{bottom:847.678300pt;}
.y2e{bottom:852.272461pt;}
.y4e{bottom:867.073407pt;}
.y7f{bottom:867.073567pt;}
.y7{bottom:875.275967pt;}
.y2d{bottom:879.870117pt;}
.ya0{bottom:885.472005pt;}
.y4d{bottom:894.671061pt;}
.y7e{bottom:894.671224pt;}
.y6{bottom:902.873616pt;}
.y9f{bottom:903.870443pt;}
.y2c{bottom:907.467773pt;}
.y4c{bottom:922.268717pt;}
.y7d{bottom:922.268881pt;}
.y5{bottom:930.471273pt;}
.y2b{bottom:935.065429pt;}
.y9e{bottom:940.667317pt;}
.y4b{bottom:949.866373pt;}
.y7c{bottom:949.866537pt;}
.y4{bottom:958.068919pt;}
.y9d{bottom:959.065756pt;}
.y2a{bottom:961.463867pt;}
.y4a{bottom:977.464029pt;}
.y66{bottom:977.464193pt;}
.y3{bottom:978.644277pt;}
.y28{bottom:992.401367pt;}
.y1{bottom:992.401439pt;}
.y49{bottom:992.401529pt;}
.y64{bottom:992.401693pt;}
.hb{height:31.556251pt;}
.h2{height:39.101563pt;}
.h6{height:43.375000pt;}
.h7{height:44.437500pt;}
.h9{height:47.369790pt;}
.h8{height:47.812499pt;}
.hc{height:52.593751pt;}
.h5{height:56.843750pt;}
.h3{height:57.375000pt;}
.he{height:58.710937pt;}
.h4{height:75.791669pt;}
.hf{height:130.264973pt;}
.hd{height:130.265137pt;}
.h1{height:130.265228pt;}
.ha{height:130.265300pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:113.400004pt;}
.x3{left:130.691804pt;}
.xa{left:189.400004pt;}
.xd{left:226.400004pt;}
.x5{left:246.480860pt;}
.x2{left:250.879298pt;}
.x6{left:258.305079pt;}
.xb{left:317.652734pt;}
.x4{left:415.750404pt;}
.x8{left:459.467964pt;}
.x9{left:559.374214pt;}
.xc{left:667.400004pt;}
.x7{left:718.100814pt;}
}




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