
    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_67fb134da09602130375e0e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_dfbdb71bb3b8da20ee01dfdf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.140137;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_1fb133abe2d584bdb53bc2e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.981445;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_0aa6078bc7d0c1f27190b774.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.211426;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_f00b33cffa334ab4a0c9e25f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.141602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_192b01567e1d1a5be52f00a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.174316;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);}
.v3{vertical-align:-15.119937px;}
.v2{vertical-align:-12.240009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120005px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001395px;}
.ls2{letter-spacing:0.001499px;}
.ls1{letter-spacing:0.001530px;}
.ls4{letter-spacing:0.001566px;}
.ls5{letter-spacing:0.001638px;}
.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:-13.498763px;}
.ws0{word-spacing:-13.312998px;}
.ws3{word-spacing:-8.279235px;}
.ws4{word-spacing:-7.559303px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-3.733917px;}
._a{margin-left:-2.258778px;}
._1{margin-left:-1.033483px;}
._0{width:1.051776px;}
._9{width:2.904116px;}
._2{width:4.463847px;}
._5{width:5.819726px;}
._6{width:7.098742px;}
._f{width:8.113560px;}
._b{width:9.167571px;}
._d{width:11.016766px;}
._c{width:12.276687px;}
._1b{width:13.514984px;}
._1a{width:14.836689px;}
._4{width:16.310382px;}
._3{width:17.735025px;}
._7{width:19.080909px;}
._8{width:20.660433px;}
._18{width:21.882406px;}
._15{width:22.981955px;}
._14{width:24.084588px;}
._19{width:25.305750px;}
._1f{width:26.347589px;}
._1e{width:27.376334px;}
._12{width:29.078658px;}
._1c{width:30.391160px;}
._17{width:32.317408px;}
._16{width:33.326208px;}
._1d{width:34.623575px;}
._e{width:35.765677px;}
._10{width:42.861313px;}
._11{width:45.823725px;}
._21{width:48.186364px;}
._20{width:50.002791px;}
._22{width:51.721563px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.237210px;}
.fs5{font-size:33.116940px;}
.fs4{font-size:48.235500px;}
.fs1{font-size:53.995050px;}
.fs3{font-size:59.754600px;}
.fs0{font-size:66.233700px;}
.fs2{font-size:71.993250px;}
.y0{bottom:0.000000px;}
.y2{bottom:37.080024px;}
.y56{bottom:75.779983px;}
.y6b{bottom:78.840018px;}
.y2a{bottom:81.360008px;}
.y55{bottom:91.980010px;}
.y7c{bottom:95.039978px;}
.y29{bottom:99.539978px;}
.ye6{bottom:101.519988px;}
.ye0{bottom:103.680037px;}
.y54{bottom:108.180037px;}
.y80{bottom:111.240005px;}
.y28{bottom:117.720016px;}
.ye5{bottom:119.879997px;}
.ydf{bottom:121.860008px;}
.y53{bottom:124.379997px;}
.y6a{bottom:127.440033px;}
.y27{bottom:135.899986px;}
.ye4{bottom:138.060035px;}
.yde{bottom:140.039978px;}
.y52{bottom:140.580024px;}
.y7f{bottom:141.480010px;}
.y7b{bottom:143.639991px;}
.y26{bottom:154.259994px;}
.ye3{bottom:156.240005px;}
.y51{bottom:156.779983px;}
.ydd{bottom:158.399986px;}
.y69{bottom:159.840018px;}
.y25{bottom:172.440033px;}
.y50{bottom:172.980010px;}
.ya5{bottom:173.879997px;}
.ye2{bottom:174.420043px;}
.y7e{bottom:175.499999px;}
.y68{bottom:176.039978px;}
.ydc{bottom:176.580024px;}
.y4f{bottom:189.180037px;}
.y7a{bottom:190.080024px;}
.y24{bottom:190.620003px;}
.y67{bottom:192.240005px;}
.ye1{bottom:192.600013px;}
.y7d{bottom:193.680037px;}
.ydb{bottom:194.759994px;}
.ya4{bottom:203.759994px;}
.y4e{bottom:205.379997px;}
.y83{bottom:208.440033px;}
.y23{bottom:208.800041px;}
.yc4{bottom:210.779983px;}
.y79{bottom:211.860008px;}
.yda{bottom:212.940033px;}
.y4d{bottom:221.580024px;}
.ya3{bottom:221.759994px;}
.yc1{bottom:222.480010px;}
.y66{bottom:224.639991px;}
.y22{bottom:226.980010px;}
.yc3{bottom:229.139991px;}
.y78{bottom:230.039978px;}
.yd9{bottom:231.120003px;}
.y4c{bottom:237.779983px;}
.y65{bottom:238.680037px;}
.ya2{bottom:239.759994px;}
.y82{bottom:240.840018px;}
.y21{bottom:245.340018px;}
.yc2{bottom:247.320030px;}
.y77{bottom:248.399986px;}
.yd8{bottom:248.940033px;}
.y4b{bottom:253.980010px;}
.y81{bottom:254.879997px;}
.ya1{bottom:257.759994px;}
.y20{bottom:263.519988px;}
.y64{bottom:265.499999px;}
.y76{bottom:266.580024px;}
.yc0{bottom:268.920043px;}
.y4a{bottom:270.180037px;}
.ya0{bottom:275.580024px;}
.y1f{bottom:281.340018px;}
.y63{bottom:283.680037px;}
.y75{bottom:284.759994px;}
.y49{bottom:286.379997px;}
.ybf{bottom:287.100013px;}
.y9f{bottom:292.860008px;}
.y1e{bottom:297.539978px;}
.y62{bottom:301.860008px;}
.y48{bottom:302.580024px;}
.y74{bottom:302.940033px;}
.ybe{bottom:305.279983px;}
.y9e{bottom:310.139991px;}
.y1d{bottom:313.740005px;}
.y47{bottom:318.780017px;}
.y61{bottom:320.220016px;}
.y73{bottom:321.120003px;}
.ybd{bottom:323.100013px;}
.y9d{bottom:327.420009px;}
.y1c{bottom:329.939998px;}
.y46{bottom:334.800006px;}
.y60{bottom:338.400021px;}
.y72{bottom:339.480010px;}
.ybc{bottom:340.740005px;}
.y9c{bottom:344.700027px;}
.y1b{bottom:345.960022px;}
.y45{bottom:350.999999px;}
.y5f{bottom:356.580024px;}
.y71{bottom:357.660015px;}
.ybb{bottom:358.920009px;}
.y9b{bottom:361.800006px;}
.y1a{bottom:362.160015px;}
.y44{bottom:367.200027px;}
.y5e{bottom:374.759994px;}
.yc5{bottom:375.300006px;}
.y70{bottom:375.840018px;}
.yba{bottom:377.100013px;}
.y19{bottom:378.360008px;}
.y9a{bottom:379.080024px;}
.y43{bottom:383.400021px;}
.y5d{bottom:392.939998px;}
.y6f{bottom:394.020023px;}
.y18{bottom:394.560000px;}
.yb9{bottom:395.280017px;}
.y99{bottom:396.360008px;}
.y42{bottom:402.660015px;}
.y17{bottom:410.759994px;}
.y5c{bottom:411.300006px;}
.y6e{bottom:412.200027px;}
.y98{bottom:413.640025px;}
.y41{bottom:415.800006px;}
.y16{bottom:426.960022px;}
.y5b{bottom:429.480010px;}
.y6d{bottom:430.379997px;}
.y97{bottom:430.920009px;}
.yb8{bottom:431.819996px;}
.y40{bottom:431.999999px;}
.y15{bottom:443.160015px;}
.y5a{bottom:447.660015px;}
.y6c{bottom:448.200027px;}
.yd7{bottom:448.740005px;}
.yb7{bottom:449.999999px;}
.y3f{bottom:451.259994px;}
.y14{bottom:459.360008px;}
.y3e{bottom:464.400021px;}
.y96{bottom:465.300006px;}
.y59{bottom:465.840018px;}
.yd6{bottom:466.920009px;}
.yb6{bottom:468.180004px;}
.y13{bottom:475.560000px;}
.y95{bottom:482.580024px;}
.y3d{bottom:483.660015px;}
.y58{bottom:484.020023px;}
.yd5{bottom:485.100013px;}
.yb5{bottom:486.360008px;}
.y12{bottom:491.759994px;}
.y3c{bottom:497.700027px;}
.y94{bottom:499.860008px;}
.y57{bottom:502.200027px;}
.yd4{bottom:503.280017px;}
.yb4{bottom:504.540012px;}
.y11{bottom:507.960022px;}
.y93{bottom:517.140025px;}
.y3b{bottom:520.560000px;}
.yd3{bottom:521.460022px;}
.yb3{bottom:522.900021px;}
.y10{bottom:524.160015px;}
.y92{bottom:534.420009px;}
.y3a{bottom:538.740005px;}
.yf{bottom:539.460022px;}
.yd2{bottom:539.819996px;}
.yb2{bottom:541.080024px;}
.y91{bottom:551.700027px;}
.ye{bottom:555.480010px;}
.y39{bottom:556.920009px;}
.yd1{bottom:557.999999px;}
.yb1{bottom:559.259994px;}
.y90{bottom:568.800006px;}
.yd{bottom:573.840018px;}
.y38{bottom:575.100013px;}
.yd0{bottom:576.180004px;}
.yb0{bottom:577.439998px;}
.y8f{bottom:586.080024px;}
.yc{bottom:591.300006px;}
.y37{bottom:593.280017px;}
.ycf{bottom:594.360008px;}
.yaf{bottom:595.259994px;}
.y8e{bottom:603.360008px;}
.yb{bottom:610.560018px;}
.y36{bottom:611.640008px;}
.yce{bottom:612.540012px;}
.yae{bottom:613.260012px;}
.y8d{bottom:620.640008px;}
.ya{bottom:629.280017px;}
.y35{bottom:629.820013px;}
.ycd{bottom:630.900003px;}
.yad{bottom:631.260012px;}
.y8c{bottom:637.920009px;}
.y34{bottom:648.000016px;}
.ycc{bottom:649.080007px;}
.yac{bottom:649.260012px;}
.y9{bottom:652.140008px;}
.y8b{bottom:655.200009px;}
.y33{bottom:666.180004px;}
.yab{bottom:667.260012px;}
.y8a{bottom:672.300006px;}
.y8{bottom:675.180004px;}
.y32{bottom:684.360008px;}
.yaa{bottom:685.260012px;}
.ycb{bottom:685.440015px;}
.y89{bottom:689.580007px;}
.y7{bottom:698.040012px;}
.y31{bottom:702.540012px;}
.ya9{bottom:703.260012px;}
.yca{bottom:703.620003px;}
.y88{bottom:706.860008px;}
.y6{bottom:720.900003px;}
.ya8{bottom:721.260012px;}
.yc9{bottom:721.800006px;}
.y87{bottom:724.140008px;}
.y30{bottom:739.080007px;}
.ya7{bottom:739.260012px;}
.yc8{bottom:740.160015px;}
.y86{bottom:741.420009px;}
.y5{bottom:743.760012px;}
.y2f{bottom:757.260012px;}
.yc7{bottom:758.340010px;}
.y85{bottom:758.700009px;}
.y4{bottom:766.620010px;}
.ya6{bottom:775.260012px;}
.y2e{bottom:775.440007px;}
.y84{bottom:775.800006px;}
.yc6{bottom:775.980010px;}
.y3{bottom:789.660015px;}
.y2d{bottom:792.720007px;}
.y2c{bottom:809.460013px;}
.y1{bottom:824.220012px;}
.y2b{bottom:826.200009px;}
.hf{height:32.627350px;}
.he{height:32.627354px;}
.ha{height:32.627485px;}
.hd{height:32.627624px;}
.hb{height:32.627629px;}
.h10{height:40.786300px;}
.hc{height:43.077505px;}
.h7{height:44.702626px;}
.h8{height:44.867494px;}
.h11{height:48.221165px;}
.h3{height:50.040334px;}
.h9{height:50.066699px;}
.h5{height:50.224888px;}
.h4{height:54.381620px;}
.h6{height:55.378042px;}
.h2{height:65.877953px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x1{left:72.360000px;}
.x3{left:93.599997px;}
.x4{left:193.500000px;}
.x2{left:542.160015px;}
.x5{left:557.100014px;}
@media print{
.v3{vertical-align:-13.439944pt;}
.v2{vertical-align:-10.880008pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440004pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001240pt;}
.ls2{letter-spacing:0.001332pt;}
.ls1{letter-spacing:0.001360pt;}
.ls4{letter-spacing:0.001392pt;}
.ls5{letter-spacing:0.001456pt;}
.ws2{word-spacing:-11.998900pt;}
.ws0{word-spacing:-11.833776pt;}
.ws3{word-spacing:-7.359320pt;}
.ws4{word-spacing:-6.719380pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-3.319037pt;}
._a{margin-left:-2.007803pt;}
._1{margin-left:-0.918652pt;}
._0{width:0.934912pt;}
._9{width:2.581437pt;}
._2{width:3.967864pt;}
._5{width:5.173090pt;}
._6{width:6.309993pt;}
._f{width:7.212053pt;}
._b{width:8.148952pt;}
._d{width:9.792681pt;}
._c{width:10.912611pt;}
._1b{width:12.013319pt;}
._1a{width:13.188168pt;}
._4{width:14.498117pt;}
._3{width:15.764467pt;}
._7{width:16.960808pt;}
._8{width:18.364829pt;}
._18{width:19.451027pt;}
._15{width:20.428404pt;}
._14{width:21.408523pt;}
._19{width:22.494000pt;}
._1f{width:23.420079pt;}
._1e{width:24.334519pt;}
._12{width:25.847696pt;}
._1c{width:27.014364pt;}
._17{width:28.726585pt;}
._16{width:29.623296pt;}
._1d{width:30.776511pt;}
._e{width:31.791713pt;}
._10{width:38.098945pt;}
._11{width:40.732200pt;}
._21{width:42.832323pt;}
._20{width:44.446925pt;}
._22{width:45.974723pt;}
.fs6{font-size:26.877520pt;}
.fs5{font-size:29.437280pt;}
.fs4{font-size:42.876000pt;}
.fs1{font-size:47.995600pt;}
.fs3{font-size:53.115200pt;}
.fs0{font-size:58.874400pt;}
.fs2{font-size:63.994000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:32.960021pt;}
.y56{bottom:67.359985pt;}
.y6b{bottom:70.080016pt;}
.y2a{bottom:72.320007pt;}
.y55{bottom:81.760009pt;}
.y7c{bottom:84.479980pt;}
.y29{bottom:88.479980pt;}
.ye6{bottom:90.239989pt;}
.ye0{bottom:92.160033pt;}
.y54{bottom:96.160033pt;}
.y80{bottom:98.880004pt;}
.y28{bottom:104.640014pt;}
.ye5{bottom:106.559997pt;}
.ydf{bottom:108.320007pt;}
.y53{bottom:110.559997pt;}
.y6a{bottom:113.280029pt;}
.y27{bottom:120.799987pt;}
.ye4{bottom:122.720031pt;}
.yde{bottom:124.479980pt;}
.y52{bottom:124.960021pt;}
.y7f{bottom:125.760009pt;}
.y7b{bottom:127.679992pt;}
.y26{bottom:137.119994pt;}
.ye3{bottom:138.880004pt;}
.y51{bottom:139.359985pt;}
.ydd{bottom:140.799987pt;}
.y69{bottom:142.080016pt;}
.y25{bottom:153.280029pt;}
.y50{bottom:153.760009pt;}
.ya5{bottom:154.559997pt;}
.ye2{bottom:155.040038pt;}
.y7e{bottom:155.999999pt;}
.y68{bottom:156.479980pt;}
.ydc{bottom:156.960021pt;}
.y4f{bottom:168.160033pt;}
.y7a{bottom:168.960021pt;}
.y24{bottom:169.440002pt;}
.y67{bottom:170.880004pt;}
.ye1{bottom:171.200011pt;}
.y7d{bottom:172.160033pt;}
.ydb{bottom:173.119994pt;}
.ya4{bottom:181.119994pt;}
.y4e{bottom:182.559997pt;}
.y83{bottom:185.280029pt;}
.y23{bottom:185.600036pt;}
.yc4{bottom:187.359985pt;}
.y79{bottom:188.320007pt;}
.yda{bottom:189.280029pt;}
.y4d{bottom:196.960021pt;}
.ya3{bottom:197.119994pt;}
.yc1{bottom:197.760009pt;}
.y66{bottom:199.679992pt;}
.y22{bottom:201.760009pt;}
.yc3{bottom:203.679992pt;}
.y78{bottom:204.479980pt;}
.yd9{bottom:205.440002pt;}
.y4c{bottom:211.359985pt;}
.y65{bottom:212.160033pt;}
.ya2{bottom:213.119994pt;}
.y82{bottom:214.080016pt;}
.y21{bottom:218.080016pt;}
.yc2{bottom:219.840026pt;}
.y77{bottom:220.799987pt;}
.yd8{bottom:221.280029pt;}
.y4b{bottom:225.760009pt;}
.y81{bottom:226.559997pt;}
.ya1{bottom:229.119994pt;}
.y20{bottom:234.239989pt;}
.y64{bottom:235.999999pt;}
.y76{bottom:236.960021pt;}
.yc0{bottom:239.040038pt;}
.y4a{bottom:240.160033pt;}
.ya0{bottom:244.960021pt;}
.y1f{bottom:250.080016pt;}
.y63{bottom:252.160033pt;}
.y75{bottom:253.119994pt;}
.y49{bottom:254.559997pt;}
.ybf{bottom:255.200011pt;}
.y9f{bottom:260.320007pt;}
.y1e{bottom:264.479980pt;}
.y62{bottom:268.320007pt;}
.y48{bottom:268.960021pt;}
.y74{bottom:269.280029pt;}
.ybe{bottom:271.359985pt;}
.y9e{bottom:275.679992pt;}
.y1d{bottom:278.880004pt;}
.y47{bottom:283.360015pt;}
.y61{bottom:284.640014pt;}
.y73{bottom:285.440002pt;}
.ybd{bottom:287.200011pt;}
.y9d{bottom:291.040008pt;}
.y1c{bottom:293.279998pt;}
.y46{bottom:297.600005pt;}
.y60{bottom:300.800018pt;}
.y72{bottom:301.760009pt;}
.ybc{bottom:302.880004pt;}
.y9c{bottom:306.400024pt;}
.y1b{bottom:307.520019pt;}
.y45{bottom:311.999999pt;}
.y5f{bottom:316.960021pt;}
.y71{bottom:317.920013pt;}
.ybb{bottom:319.040008pt;}
.y9b{bottom:321.600005pt;}
.y1a{bottom:321.920013pt;}
.y44{bottom:326.400024pt;}
.y5e{bottom:333.119994pt;}
.yc5{bottom:333.600005pt;}
.y70{bottom:334.080016pt;}
.yba{bottom:335.200011pt;}
.y19{bottom:336.320007pt;}
.y9a{bottom:336.960021pt;}
.y43{bottom:340.800018pt;}
.y5d{bottom:349.279998pt;}
.y6f{bottom:350.240020pt;}
.y18{bottom:350.720000pt;}
.yb9{bottom:351.360015pt;}
.y99{bottom:352.320007pt;}
.y42{bottom:357.920013pt;}
.y17{bottom:365.119994pt;}
.y5c{bottom:365.600005pt;}
.y6e{bottom:366.400024pt;}
.y98{bottom:367.680022pt;}
.y41{bottom:369.600005pt;}
.y16{bottom:379.520019pt;}
.y5b{bottom:381.760009pt;}
.y6d{bottom:382.559997pt;}
.y97{bottom:383.040008pt;}
.yb8{bottom:383.839996pt;}
.y40{bottom:383.999999pt;}
.y15{bottom:393.920013pt;}
.y5a{bottom:397.920013pt;}
.y6c{bottom:398.400024pt;}
.yd7{bottom:398.880004pt;}
.yb7{bottom:399.999999pt;}
.y3f{bottom:401.119994pt;}
.y14{bottom:408.320007pt;}
.y3e{bottom:412.800018pt;}
.y96{bottom:413.600005pt;}
.y59{bottom:414.080016pt;}
.yd6{bottom:415.040008pt;}
.yb6{bottom:416.160003pt;}
.y13{bottom:422.720000pt;}
.y95{bottom:428.960021pt;}
.y3d{bottom:429.920013pt;}
.y58{bottom:430.240020pt;}
.yd5{bottom:431.200011pt;}
.yb5{bottom:432.320007pt;}
.y12{bottom:437.119994pt;}
.y3c{bottom:442.400024pt;}
.y94{bottom:444.320007pt;}
.y57{bottom:446.400024pt;}
.yd4{bottom:447.360015pt;}
.yb4{bottom:448.480010pt;}
.y11{bottom:451.520019pt;}
.y93{bottom:459.680022pt;}
.y3b{bottom:462.720000pt;}
.yd3{bottom:463.520019pt;}
.yb3{bottom:464.800018pt;}
.y10{bottom:465.920013pt;}
.y92{bottom:475.040008pt;}
.y3a{bottom:478.880004pt;}
.yf{bottom:479.520019pt;}
.yd2{bottom:479.839996pt;}
.yb2{bottom:480.960021pt;}
.y91{bottom:490.400024pt;}
.ye{bottom:493.760009pt;}
.y39{bottom:495.040008pt;}
.yd1{bottom:495.999999pt;}
.yb1{bottom:497.119994pt;}
.y90{bottom:505.600005pt;}
.yd{bottom:510.080016pt;}
.y38{bottom:511.200011pt;}
.yd0{bottom:512.160003pt;}
.yb0{bottom:513.279998pt;}
.y8f{bottom:520.960021pt;}
.yc{bottom:525.600005pt;}
.y37{bottom:527.360015pt;}
.ycf{bottom:528.320007pt;}
.yaf{bottom:529.119994pt;}
.y8e{bottom:536.320007pt;}
.yb{bottom:542.720016pt;}
.y36{bottom:543.680007pt;}
.yce{bottom:544.480010pt;}
.yae{bottom:545.120010pt;}
.y8d{bottom:551.680007pt;}
.ya{bottom:559.360015pt;}
.y35{bottom:559.840011pt;}
.ycd{bottom:560.800002pt;}
.yad{bottom:561.120010pt;}
.y8c{bottom:567.040008pt;}
.y34{bottom:576.000014pt;}
.ycc{bottom:576.960006pt;}
.yac{bottom:577.120010pt;}
.y9{bottom:579.680007pt;}
.y8b{bottom:582.400008pt;}
.y33{bottom:592.160003pt;}
.yab{bottom:593.120010pt;}
.y8a{bottom:597.600005pt;}
.y8{bottom:600.160003pt;}
.y32{bottom:608.320007pt;}
.yaa{bottom:609.120010pt;}
.ycb{bottom:609.280013pt;}
.y89{bottom:612.960006pt;}
.y7{bottom:620.480010pt;}
.y31{bottom:624.480010pt;}
.ya9{bottom:625.120010pt;}
.yca{bottom:625.440002pt;}
.y88{bottom:628.320007pt;}
.y6{bottom:640.800002pt;}
.ya8{bottom:641.120010pt;}
.yc9{bottom:641.600005pt;}
.y87{bottom:643.680007pt;}
.y30{bottom:656.960006pt;}
.ya7{bottom:657.120010pt;}
.yc8{bottom:657.920013pt;}
.y86{bottom:659.040008pt;}
.y5{bottom:661.120010pt;}
.y2f{bottom:673.120010pt;}
.yc7{bottom:674.080009pt;}
.y85{bottom:674.400008pt;}
.y4{bottom:681.440009pt;}
.ya6{bottom:689.120010pt;}
.y2e{bottom:689.280006pt;}
.y84{bottom:689.600005pt;}
.yc6{bottom:689.760009pt;}
.y3{bottom:701.920013pt;}
.y2d{bottom:704.640006pt;}
.y2c{bottom:719.520011pt;}
.y1{bottom:732.640010pt;}
.y2b{bottom:734.400008pt;}
.hf{height:29.002089pt;}
.he{height:29.002093pt;}
.ha{height:29.002209pt;}
.hd{height:29.002333pt;}
.hb{height:29.002337pt;}
.h10{height:36.254489pt;}
.hc{height:38.291115pt;}
.h7{height:39.735668pt;}
.h8{height:39.882217pt;}
.h11{height:42.863258pt;}
.h3{height:44.480297pt;}
.h9{height:44.503733pt;}
.h5{height:44.644345pt;}
.h4{height:48.339218pt;}
.h6{height:49.224927pt;}
.h2{height:58.558180pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x1{left:64.320000pt;}
.x3{left:83.199997pt;}
.x4{left:172.000000pt;}
.x2{left:481.920013pt;}
.x5{left:495.200012pt;}
}




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