
    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_a6817eb166c7fbf50145a8bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8e93f71c122292acefd2de5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_37a023065abd1537ea5c084e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.865234;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_9feb711602583da2b101f79e.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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;}
.v1{vertical-align:25.199990px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.326880px;}
.ls6{letter-spacing:17.606873px;}
.ls5{letter-spacing:19.766872px;}
.ls2{letter-spacing:78.515969px;}
.ls1{letter-spacing:88.522525px;}
.ls8{letter-spacing:95.327962px;}
.ls4{letter-spacing:132.515947px;}
.ls7{letter-spacing:136.799945px;}
.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;}
}
.ws18{word-spacing:-43.446223px;}
.ws1d{word-spacing:-28.475989px;}
.ws19{word-spacing:-27.174229px;}
.ws16{word-spacing:-24.407990px;}
.ws3{word-spacing:-19.038232px;}
.wsc{word-spacing:-16.271993px;}
.ws1{word-spacing:-12.692155px;}
.ws1b{word-spacing:-12.203995px;}
.ws1f{word-spacing:-10.902236px;}
.wsd{word-spacing:-3.085318px;}
.ws6{word-spacing:-2.615314px;}
.ws2{word-spacing:-1.666098px;}
.wsa{word-spacing:-1.650682px;}
.wsb{word-spacing:-1.421128px;}
.ws5{word-spacing:-1.175316px;}
.ws9{word-spacing:-0.971792px;}
.ws8{word-spacing:-0.946099px;}
.ws11{word-spacing:-0.860328px;}
.ws1c{word-spacing:-0.856813px;}
.ws20{word-spacing:-0.448434px;}
.ws7{word-spacing:-0.431056px;}
.ws4{word-spacing:-0.210684px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.661920px;}
.ws1a{word-spacing:0.839275px;}
.wsf{word-spacing:4.357582px;}
.wse{word-spacing:4.499602px;}
.ws10{word-spacing:4.631794px;}
.ws14{word-spacing:10.837580px;}
.ws13{word-spacing:11.291077px;}
.ws12{word-spacing:35.998870px;}
.ws15{word-spacing:41.249828px;}
.ws1e{word-spacing:144.566701px;}
._d{margin-left:-17.359457px;}
._3{margin-left:-11.163172px;}
._5{margin-left:-8.504299px;}
._c{margin-left:-6.839997px;}
._1{margin-left:-5.759637px;}
._7{margin-left:-3.800389px;}
._4{margin-left:-2.765744px;}
._0{margin-left:-1.567268px;}
._2{width:1.599970px;}
._6{width:2.638129px;}
._15{width:3.806748px;}
._13{width:14.185205px;}
._16{width:16.187316px;}
._9{width:17.708190px;}
._a{width:19.124961px;}
._8{width:20.507373px;}
._f{width:25.420071px;}
._10{width:27.081605px;}
._e{width:30.044213px;}
._b{width:41.614749px;}
._14{width:45.108268px;}
._11{width:61.948114px;}
._12{width:67.201224px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:48.239981px;}
.fsb{font-size:53.999978px;}
.fs6{font-size:56.159978px;}
.fsa{font-size:59.759976px;}
.fs9{font-size:66.239974px;}
.fs7{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.fs1{font-size:95.759962px;}
.fs8{font-size:107.999957px;}
.fs2{font-size:120.239952px;}
.fsc{font-size:125.999950px;}
.fs4{font-size:167.759933px;}
.fs3{font-size:192.239923px;}
.fs0{font-size:264.239894px;}
.y10{bottom:-16.559815px;}
.ya5{bottom:-15.299815px;}
.y11{bottom:-10.259817px;}
.y17{bottom:-9.899818px;}
.y79{bottom:-9.719818px;}
.y44{bottom:-4.139820px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.780183px;}
.y48{bottom:3.960180px;}
.y28{bottom:4.680182px;}
.ya7{bottom:4.680185px;}
.y4a{bottom:4.860180px;}
.y2a{bottom:5.580182px;}
.y19{bottom:5.580185px;}
.y93{bottom:6.840176px;}
.y38{bottom:94.080320px;}
.y86{bottom:103.980316px;}
.y37{bottom:116.760310px;}
.y85{bottom:116.940310px;}
.y56{bottom:127.200306px;}
.y84{bottom:129.900305px;}
.y26{bottom:132.780304px;}
.y36{bottom:139.440301px;}
.y6a{bottom:141.960300px;}
.y83{bottom:142.860300px;}
.y9e{bottom:152.040296px;}
.y55{bottom:153.120296px;}
.y82{bottom:155.820295px;}
.y25{bottom:157.980294px;}
.y9b{bottom:160.500293px;}
.y35{bottom:167.160290px;}
.y9a{bottom:173.820288px;}
.y9d{bottom:177.240286px;}
.y54{bottom:179.040286px;}
.y69{bottom:180.840285px;}
.y24{bottom:183.180284px;}
.y81{bottom:184.980283px;}
.y9c{bottom:186.960282px;}
.y34{bottom:189.840281px;}
.y80{bottom:201.180277px;}
.y53{bottom:205.860275px;}
.y23{bottom:208.380274px;}
.y33{bottom:212.520272px;}
.y6{bottom:214.320271px;}
.y7f{bottom:217.740270px;}
.y52{bottom:235.200263px;}
.y22{bottom:238.620262px;}
.y32{bottom:240.240261px;}
.yaf{bottom:248.340258px;}
.y5{bottom:248.880258px;}
.y68{bottom:258.600254px;}
.y51{bottom:261.120253px;}
.y31{bottom:262.920252px;}
.y21{bottom:263.820252px;}
.y7e{bottom:275.340247px;}
.yae{bottom:282.900244px;}
.y4{bottom:283.440244px;}
.y97{bottom:283.620244px;}
.y30{bottom:285.600243px;}
.y50{bottom:287.040242px;}
.y20{bottom:289.020242px;}
.y99{bottom:292.800240px;}
.y96{bottom:296.940238px;}
.y67{bottom:297.480238px;}
.y2f{bottom:308.280234px;}
.y7d{bottom:311.340233px;}
.y4f{bottom:312.960232px;}
.yad{bottom:317.460230px;}
.y1f{bottom:319.260229px;}
.y3{bottom:319.620229px;}
.y98{bottom:327.540226px;}
.y2e{bottom:336.000223px;}
.y66{bottom:336.360223px;}
.y4e{bottom:338.880222px;}
.y7c{bottom:347.340218px;}
.y1e{bottom:349.500217px;}
.yac{bottom:353.640216px;}
.y2d{bottom:363.720212px;}
.y4d{bottom:364.800211px;}
.y65{bottom:368.760210px;}
.y1d{bottom:379.740205px;}
.y7b{bottom:383.340204px;}
.y4c{bottom:390.720201px;}
.y2c{bottom:391.440201px;}
.y64{bottom:401.160197px;}
.ya9{bottom:403.680196px;}
.y1c{bottom:404.940195px;}
.y95{bottom:406.740194px;}
.y2b{bottom:414.120192px;}
.y4b{bottom:416.640191px;}
.y94{bottom:420.060189px;}
.y18{bottom:424.560000px;}
.ya8{bottom:425.820000px;}
.ya6{bottom:426.720000px;}
.y29{bottom:431.220000px;}
.y7a{bottom:431.400000px;}
.y27{bottom:432.120000px;}
.y1a{bottom:432.660000px;}
.y49{bottom:437.700000px;}
.y47{bottom:438.600000px;}
.yf{bottom:446.700000px;}
.ye{bottom:455.340175px;}
.y78{bottom:457.140174px;}
.y2{bottom:459.660173px;}
.y16{bottom:464.520171px;}
.y43{bottom:468.480170px;}
.y63{bottom:472.440168px;}
.yab{bottom:474.960167px;}
.y77{bottom:477.300166px;}
.yd{bottom:480.540165px;}
.ya4{bottom:486.840162px;}
.y15{bottom:487.200162px;}
.y6d{bottom:489.000162px;}
.y42{bottom:494.400159px;}
.y76{bottom:497.460158px;}
.y8a{bottom:502.140156px;}
.y62{bottom:504.840155px;}
.yc{bottom:505.740155px;}
.y92{bottom:508.980154px;}
.ya3{bottom:509.520153px;}
.y14{bottom:509.880153px;}
.y75{bottom:517.620150px;}
.y41{bottom:520.320149px;}
.y91{bottom:534.180143px;}
.yb{bottom:535.980143px;}
.y61{bottom:537.240142px;}
.y13{bottom:537.600142px;}
.y74{bottom:544.980139px;}
.y40{bottom:546.240139px;}
.y1{bottom:548.220138px;}
.y5b{bottom:550.560137px;}
.y89{bottom:552.540136px;}
.y90{bottom:559.380133px;}
.y12{bottom:560.280133px;}
.ya2{bottom:564.960131px;}
.ya{bottom:566.220131px;}
.y60{bottom:569.640129px;}
.y3f{bottom:572.160128px;}
.y5a{bottom:575.760127px;}
.y8f{bottom:584.580123px;}
.ya1{bottom:587.640122px;}
.yaa{bottom:590.160121px;}
.y3e{bottom:598.080118px;}
.y59{bottom:600.960117px;}
.y88{bottom:602.940116px;}
.y73{bottom:604.020116px;}
.y8e{bottom:609.780113px;}
.ya0{bottom:610.320113px;}
.y3d{bottom:624.000108px;}
.y72{bottom:624.180107px;}
.y58{bottom:626.160107px;}
.y9f{bottom:633.000104px;}
.y8d{bottom:634.980103px;}
.y71{bottom:644.340099px;}
.y5f{bottom:647.400098px;}
.y3c{bottom:649.920097px;}
.y57{bottom:651.360097px;}
.y8c{bottom:660.180093px;}
.y70{bottom:664.500091px;}
.y3b{bottom:676.740086px;}
.y5e{bottom:679.800085px;}
.y8b{bottom:685.380083px;}
.y6f{bottom:691.860080px;}
.y6c{bottom:726.960066px;}
.y3a{bottom:733.980064px;}
.y46{bottom:736.140063px;}
.y9{bottom:756.120055px;}
.y87{bottom:762.780052px;}
.y5d{bottom:765.660051px;}
.y6e{bottom:768.000050px;}
.y7{bottom:770.700049px;}
.y5c{bottom:779.160046px;}
.y45{bottom:787.980042px;}
.y39{bottom:791.580041px;}
.y6b{bottom:796.080039px;}
.y8{bottom:806.520035px;}
.hc{height:3.060000px;}
.hb{height:3.420000px;}
.h26{height:3.600000px;}
.h27{height:4.680000px;}
.h1a{height:8.100000px;}
.he{height:9.000000px;}
.h10{height:10.080000px;}
.h1c{height:10.260000px;}
.h17{height:12.060000px;}
.h19{height:12.960000px;}
.h12{height:14.040000px;}
.h13{height:14.580000px;}
.h1d{height:15.300000px;}
.h14{height:15.480000px;}
.h28{height:19.980000px;}
.h29{height:20.880000px;}
.h11{height:22.140000px;}
.h24{height:34.625377px;}
.h22{height:36.900000px;}
.h20{height:37.019516px;}
.h21{height:38.759750px;}
.hd{height:40.310140px;}
.h1f{height:42.894123px;}
.h18{height:47.988262px;}
.h16{height:51.679667px;}
.hf{height:56.146267px;}
.h15{height:57.750446px;}
.h9{height:57.873844px;}
.h8{height:60.465210px;}
.h7{height:63.782553px;}
.ha{height:65.510130px;}
.h3{height:68.733957px;}
.h1b{height:77.519500px;}
.h4{height:82.430123px;}
.h1e{height:86.305044px;}
.h23{height:90.439417px;}
.h25{height:115.639407px;}
.h6{height:120.413624px;}
.h5{height:137.984710px;}
.h2{height:189.664377px;}
.h0{height:892.920000px;}
.h1{height:893.250000px;}
.wc{width:5.580000px;}
.w5{width:7.200000px;}
.w8{width:7.380000px;}
.wa{width:10.080000px;}
.w6{width:10.260000px;}
.w13{width:11.700000px;}
.w10{width:15.660000px;}
.wb{width:34.200000px;}
.w4{width:46.440000px;}
.w7{width:64.800000px;}
.w3{width:66.780000px;}
.wf{width:68.760000px;}
.wd{width:71.820000px;}
.w15{width:81.900000px;}
.w12{width:96.120000px;}
.w2{width:97.380000px;}
.w11{width:99.360000px;}
.w14{width:142.920000px;}
.w16{width:196.920000px;}
.w9{width:267.660000px;}
.we{width:316.980000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x17{left:127.799949px;}
.x22{left:155.519938px;}
.x25{left:161.459935px;}
.x2a{left:165.239934px;}
.x8{left:180.899928px;}
.x32{left:188.819924px;}
.x1{left:194.219922px;}
.xa{left:196.019922px;}
.x24{left:202.859919px;}
.x1e{left:205.379918px;}
.x26{left:206.639917px;}
.xb{left:209.519916px;}
.x2d{left:219.239912px;}
.x20{left:228.599909px;}
.x15{left:243.359903px;}
.x39{left:250.379900px;}
.x2e{left:253.079899px;}
.xc{left:263.519895px;}
.x4{left:277.559889px;}
.xd{left:290.519884px;}
.x18{left:300.959880px;}
.x3a{left:331.019868px;}
.x5{left:355.679858px;}
.x37{left:385.379846px;}
.xe{left:392.760000px;}
.x31{left:397.079841px;}
.x2f{left:399.779840px;}
.x7{left:401.579839px;}
.x36{left:405.359838px;}
.x35{left:407.879837px;}
.x6{left:415.979834px;}
.x29{left:440.099824px;}
.x38{left:445.859822px;}
.x9{left:459.899816px;}
.xf{left:464.400000px;}
.x2{left:473.399811px;}
.x3b{left:477.179809px;}
.x3{left:502.559799px;}
.x21{left:507.239797px;}
.x10{left:510.840000px;}
.x11{left:518.040000px;}
.x2b{left:522.720000px;}
.x12{left:528.300000px;}
.x33{left:530.100000px;}
.x23{left:552.059779px;}
.x28{left:556.919777px;}
.x2c{left:591.480000px;}
.x27{left:615.959754px;}
.x34{left:629.460000px;}
.x19{left:650.519740px;}
.x13{left:695.519722px;}
.x1a{left:704.519718px;}
.x14{left:736.019706px;}
.x1b{left:738.360000px;}
.x16{left:749.519700px;}
.x30{left:752.039699px;}
.x1c{left:772.560000px;}
.x1d{left:778.140000px;}
.x1f{left:894.599642px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.399991pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.290560pt;}
.ls6{letter-spacing:15.650554pt;}
.ls5{letter-spacing:17.570553pt;}
.ls2{letter-spacing:69.791972pt;}
.ls1{letter-spacing:78.686689pt;}
.ls8{letter-spacing:84.735966pt;}
.ls4{letter-spacing:117.791953pt;}
.ls7{letter-spacing:121.599951pt;}
.ws18{word-spacing:-38.618865pt;}
.ws1d{word-spacing:-25.311990pt;}
.ws19{word-spacing:-24.154870pt;}
.ws16{word-spacing:-21.695991pt;}
.ws3{word-spacing:-16.922873pt;}
.wsc{word-spacing:-14.463994pt;}
.ws1{word-spacing:-11.281915pt;}
.ws1b{word-spacing:-10.847996pt;}
.ws1f{word-spacing:-9.690876pt;}
.wsd{word-spacing:-2.742505pt;}
.ws6{word-spacing:-2.324724pt;}
.ws2{word-spacing:-1.480976pt;}
.wsa{word-spacing:-1.467273pt;}
.wsb{word-spacing:-1.263225pt;}
.ws5{word-spacing:-1.044725pt;}
.ws9{word-spacing:-0.863815pt;}
.ws8{word-spacing:-0.840977pt;}
.ws11{word-spacing:-0.764736pt;}
.ws1c{word-spacing:-0.761612pt;}
.ws20{word-spacing:-0.398608pt;}
.ws7{word-spacing:-0.383161pt;}
.ws4{word-spacing:-0.187275pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.588373pt;}
.ws1a{word-spacing:0.746022pt;}
.wsf{word-spacing:3.873406pt;}
.wse{word-spacing:3.999646pt;}
.ws10{word-spacing:4.117150pt;}
.ws14{word-spacing:9.633404pt;}
.ws13{word-spacing:10.036513pt;}
.ws12{word-spacing:31.998995pt;}
.ws15{word-spacing:36.666513pt;}
.ws1e{word-spacing:128.503734pt;}
._d{margin-left:-15.430629pt;}
._3{margin-left:-9.922819pt;}
._5{margin-left:-7.559376pt;}
._c{margin-left:-6.079998pt;}
._1{margin-left:-5.119677pt;}
._7{margin-left:-3.378123pt;}
._4{margin-left:-2.458439pt;}
._0{margin-left:-1.393127pt;}
._2{width:1.422196pt;}
._6{width:2.345004pt;}
._15{width:3.383776pt;}
._13{width:12.609071pt;}
._16{width:14.388725pt;}
._9{width:15.740614pt;}
._a{width:16.999965pt;}
._8{width:18.228776pt;}
._f{width:22.595619pt;}
._10{width:24.072538pt;}
._e{width:26.705967pt;}
._b{width:36.990888pt;}
._14{width:40.096238pt;}
._11{width:55.064990pt;}
._12{width:59.734422pt;}
.fsd{font-size:42.879983pt;}
.fsb{font-size:47.999981pt;}
.fs6{font-size:49.919980pt;}
.fsa{font-size:53.119979pt;}
.fs9{font-size:58.879976pt;}
.fs7{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.fs1{font-size:85.119966pt;}
.fs8{font-size:95.999962pt;}
.fs2{font-size:106.879957pt;}
.fsc{font-size:111.999955pt;}
.fs4{font-size:149.119940pt;}
.fs3{font-size:170.879932pt;}
.fs0{font-size:234.879906pt;}
.y10{bottom:-14.719835pt;}
.ya5{bottom:-13.599836pt;}
.y11{bottom:-9.119838pt;}
.y17{bottom:-8.799838pt;}
.y79{bottom:-8.639838pt;}
.y44{bottom:-3.679840pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.360162pt;}
.y48{bottom:3.520160pt;}
.y28{bottom:4.160162pt;}
.ya7{bottom:4.160164pt;}
.y4a{bottom:4.320160pt;}
.y2a{bottom:4.960162pt;}
.y19{bottom:4.960165pt;}
.y93{bottom:6.080156pt;}
.y38{bottom:83.626951pt;}
.y86{bottom:92.426947pt;}
.y37{bottom:103.786943pt;}
.y85{bottom:103.946943pt;}
.y56{bottom:113.066939pt;}
.y84{bottom:115.466938pt;}
.y26{bottom:118.026937pt;}
.y36{bottom:123.946935pt;}
.y6a{bottom:126.186934pt;}
.y83{bottom:126.986933pt;}
.y9e{bottom:135.146930pt;}
.y55{bottom:136.106930pt;}
.y82{bottom:138.506929pt;}
.y25{bottom:140.426928pt;}
.y9b{bottom:142.666927pt;}
.y35{bottom:148.586925pt;}
.y9a{bottom:154.506922pt;}
.y9d{bottom:157.546921pt;}
.y54{bottom:159.146920pt;}
.y69{bottom:160.746920pt;}
.y24{bottom:162.826919pt;}
.y81{bottom:164.426918pt;}
.y9c{bottom:166.186918pt;}
.y34{bottom:168.746917pt;}
.y80{bottom:178.826913pt;}
.y53{bottom:182.986911pt;}
.y23{bottom:185.226910pt;}
.y33{bottom:188.906909pt;}
.y6{bottom:190.506908pt;}
.y7f{bottom:193.546907pt;}
.y52{bottom:209.066901pt;}
.y22{bottom:212.106899pt;}
.y32{bottom:213.546899pt;}
.yaf{bottom:220.746896pt;}
.y5{bottom:221.226896pt;}
.y68{bottom:229.866892pt;}
.y51{bottom:232.106891pt;}
.y31{bottom:233.706891pt;}
.y21{bottom:234.506890pt;}
.y7e{bottom:244.746886pt;}
.yae{bottom:251.466884pt;}
.y4{bottom:251.946883pt;}
.y97{bottom:252.106883pt;}
.y30{bottom:253.866883pt;}
.y50{bottom:255.146882pt;}
.y20{bottom:256.906881pt;}
.y99{bottom:260.266880pt;}
.y96{bottom:263.946879pt;}
.y67{bottom:264.426878pt;}
.y2f{bottom:274.026875pt;}
.y7d{bottom:276.746873pt;}
.y4f{bottom:278.186873pt;}
.yad{bottom:282.186871pt;}
.y1f{bottom:283.786871pt;}
.y3{bottom:284.106871pt;}
.y98{bottom:291.146868pt;}
.y2e{bottom:298.666865pt;}
.y66{bottom:298.986865pt;}
.y4e{bottom:301.226864pt;}
.y7c{bottom:308.746861pt;}
.y1e{bottom:310.666860pt;}
.yac{bottom:314.346858pt;}
.y2d{bottom:323.306855pt;}
.y4d{bottom:324.266854pt;}
.y65{bottom:327.786853pt;}
.y1d{bottom:337.546849pt;}
.y7b{bottom:340.746848pt;}
.y4c{bottom:347.306845pt;}
.y2c{bottom:347.946845pt;}
.y64{bottom:356.586842pt;}
.ya9{bottom:358.826841pt;}
.y1c{bottom:359.946840pt;}
.y95{bottom:361.546840pt;}
.y2b{bottom:368.106837pt;}
.y4b{bottom:370.346836pt;}
.y94{bottom:373.386835pt;}
.y18{bottom:377.386667pt;}
.ya8{bottom:378.506667pt;}
.ya6{bottom:379.306667pt;}
.y29{bottom:383.306667pt;}
.y7a{bottom:383.466667pt;}
.y27{bottom:384.106667pt;}
.y1a{bottom:384.586667pt;}
.y49{bottom:389.066667pt;}
.y47{bottom:389.866667pt;}
.yf{bottom:397.066667pt;}
.ye{bottom:404.746822pt;}
.y78{bottom:406.346822pt;}
.y2{bottom:408.586821pt;}
.y16{bottom:412.906819pt;}
.y43{bottom:416.426818pt;}
.y63{bottom:419.946816pt;}
.yab{bottom:422.186815pt;}
.y77{bottom:424.266814pt;}
.yd{bottom:427.146813pt;}
.ya4{bottom:432.746811pt;}
.y15{bottom:433.066811pt;}
.y6d{bottom:434.666810pt;}
.y42{bottom:439.466808pt;}
.y76{bottom:442.186807pt;}
.y8a{bottom:446.346806pt;}
.y62{bottom:448.746805pt;}
.yc{bottom:449.546804pt;}
.y92{bottom:452.426803pt;}
.ya3{bottom:452.906803pt;}
.y14{bottom:453.226803pt;}
.y75{bottom:460.106800pt;}
.y41{bottom:462.506799pt;}
.y91{bottom:474.826794pt;}
.yb{bottom:476.426794pt;}
.y61{bottom:477.546793pt;}
.y13{bottom:477.866793pt;}
.y74{bottom:484.426790pt;}
.y40{bottom:485.546790pt;}
.y1{bottom:487.306789pt;}
.y5b{bottom:489.386788pt;}
.y89{bottom:491.146788pt;}
.y90{bottom:497.226785pt;}
.y12{bottom:498.026785pt;}
.ya2{bottom:502.186783pt;}
.ya{bottom:503.306783pt;}
.y60{bottom:506.346782pt;}
.y3f{bottom:508.586781pt;}
.y5a{bottom:511.786779pt;}
.y8f{bottom:519.626776pt;}
.ya1{bottom:522.346775pt;}
.yaa{bottom:524.586774pt;}
.y3e{bottom:531.626771pt;}
.y59{bottom:534.186770pt;}
.y88{bottom:535.946770pt;}
.y73{bottom:536.906769pt;}
.y8e{bottom:542.026767pt;}
.ya0{bottom:542.506767pt;}
.y3d{bottom:554.666762pt;}
.y72{bottom:554.826762pt;}
.y58{bottom:556.586762pt;}
.y9f{bottom:562.666759pt;}
.y8d{bottom:564.426758pt;}
.y71{bottom:572.746755pt;}
.y5f{bottom:575.466754pt;}
.y3c{bottom:577.706753pt;}
.y57{bottom:578.986753pt;}
.y8c{bottom:586.826749pt;}
.y70{bottom:590.666748pt;}
.y3b{bottom:601.546744pt;}
.y5e{bottom:604.266742pt;}
.y8b{bottom:609.226740pt;}
.y6f{bottom:614.986738pt;}
.y6c{bottom:646.186726pt;}
.y3a{bottom:652.426723pt;}
.y46{bottom:654.346722pt;}
.y9{bottom:672.106715pt;}
.y87{bottom:678.026713pt;}
.y5d{bottom:680.586712pt;}
.y6e{bottom:682.666711pt;}
.y7{bottom:685.066710pt;}
.y5c{bottom:692.586707pt;}
.y45{bottom:700.426704pt;}
.y39{bottom:703.626703pt;}
.y6b{bottom:707.626701pt;}
.y8{bottom:716.906697pt;}
.hc{height:2.720000pt;}
.hb{height:3.040000pt;}
.h26{height:3.200000pt;}
.h27{height:4.160000pt;}
.h1a{height:7.200000pt;}
.he{height:8.000000pt;}
.h10{height:8.960000pt;}
.h1c{height:9.120000pt;}
.h17{height:10.720000pt;}
.h19{height:11.520000pt;}
.h12{height:12.480000pt;}
.h13{height:12.960000pt;}
.h1d{height:13.600000pt;}
.h14{height:13.760000pt;}
.h28{height:17.760000pt;}
.h29{height:18.560000pt;}
.h11{height:19.680000pt;}
.h24{height:30.778113pt;}
.h22{height:32.800000pt;}
.h20{height:32.906237pt;}
.h21{height:34.453111pt;}
.hd{height:35.831236pt;}
.h1f{height:38.128110pt;}
.h18{height:42.656233pt;}
.h16{height:45.937482pt;}
.hf{height:49.907793pt;}
.h15{height:51.333729pt;}
.h9{height:51.443417pt;}
.h8{height:53.746854pt;}
.h7{height:56.695602pt;}
.ha{height:58.231227pt;}
.h3{height:61.096851pt;}
.h1b{height:68.906222pt;}
.h4{height:73.271221pt;}
.h1e{height:76.715594pt;}
.h23{height:80.390593pt;}
.h25{height:102.790584pt;}
.h6{height:107.034332pt;}
.h5{height:122.653076pt;}
.h2{height:168.590558pt;}
.h0{height:793.706667pt;}
.h1{height:794.000000pt;}
.wc{width:4.960000pt;}
.w5{width:6.400000pt;}
.w8{width:6.560000pt;}
.wa{width:8.960000pt;}
.w6{width:9.120000pt;}
.w13{width:10.400000pt;}
.w10{width:13.920000pt;}
.wb{width:30.400000pt;}
.w4{width:41.280000pt;}
.w7{width:57.600000pt;}
.w3{width:59.360000pt;}
.wf{width:61.120000pt;}
.wd{width:63.840000pt;}
.w15{width:72.800000pt;}
.w12{width:85.440000pt;}
.w2{width:86.560000pt;}
.w11{width:88.320000pt;}
.w14{width:127.040000pt;}
.w16{width:175.040000pt;}
.w9{width:237.920000pt;}
.we{width:281.760000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x17{left:113.599955pt;}
.x22{left:138.239945pt;}
.x25{left:143.519943pt;}
.x2a{left:146.879941pt;}
.x8{left:160.799936pt;}
.x32{left:167.839933pt;}
.x1{left:172.639931pt;}
.xa{left:174.239930pt;}
.x24{left:180.319928pt;}
.x1e{left:182.559927pt;}
.x26{left:183.679927pt;}
.xb{left:186.239926pt;}
.x2d{left:194.879922pt;}
.x20{left:203.199919pt;}
.x15{left:216.319913pt;}
.x39{left:222.559911pt;}
.x2e{left:224.959910pt;}
.xc{left:234.239906pt;}
.x4{left:246.719901pt;}
.xd{left:258.239897pt;}
.x18{left:267.519893pt;}
.x3a{left:294.239882pt;}
.x5{left:316.159874pt;}
.x37{left:342.559863pt;}
.xe{left:349.120000pt;}
.x31{left:352.959859pt;}
.x2f{left:355.359858pt;}
.x7{left:356.959857pt;}
.x36{left:360.319856pt;}
.x35{left:362.559855pt;}
.x6{left:369.759852pt;}
.x29{left:391.199844pt;}
.x38{left:396.319841pt;}
.x9{left:408.799836pt;}
.xf{left:412.800000pt;}
.x2{left:420.799832pt;}
.x3b{left:424.159830pt;}
.x3{left:446.719821pt;}
.x21{left:450.879820pt;}
.x10{left:454.080000pt;}
.x11{left:460.480000pt;}
.x2b{left:464.640000pt;}
.x12{left:469.600000pt;}
.x33{left:471.200000pt;}
.x23{left:490.719804pt;}
.x28{left:495.039802pt;}
.x2c{left:525.760000pt;}
.x27{left:547.519781pt;}
.x34{left:559.520000pt;}
.x19{left:578.239769pt;}
.x13{left:618.239753pt;}
.x1a{left:626.239750pt;}
.x14{left:654.239738pt;}
.x1b{left:656.320000pt;}
.x16{left:666.239734pt;}
.x30{left:668.479733pt;}
.x1c{left:686.720000pt;}
.x1d{left:691.680000pt;}
.x1f{left:795.199682pt;}
}




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