
    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_13a69549d205b2bfc1c48d20.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_e9f0e4c65db07e9343f610d9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_0f02609362b1941063685f3f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.099609;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);}
.v2{vertical-align:-30.239865px;}
.v3{vertical-align:-23.759856px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240140px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.410877px;}
.ls7{letter-spacing:0.411012px;}
.ls0{letter-spacing:0.411017px;}
.ls2{letter-spacing:0.411079px;}
.ls5{letter-spacing:0.411084px;}
.ls1{letter-spacing:0.411151px;}
.ls4{letter-spacing:0.411156px;}
.ls6{letter-spacing:0.538978px;}
.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.020063px;}
.ws3{word-spacing:-14.013441px;}
.ws2{word-spacing:-13.474463px;}
.ws4{word-spacing:-9.419881px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-9.881728px;}
._6{margin-left:-8.684164px;}
._9{margin-left:-7.545545px;}
._5{margin-left:-6.242302px;}
._4{margin-left:-4.972887px;}
._1{margin-left:-3.349087px;}
._d{margin-left:-2.074419px;}
._0{margin-left:-1.021772px;}
._3{width:1.003379px;}
._7{width:2.093356px;}
._8{width:3.099388px;}
._13{width:4.322681px;}
._11{width:5.840292px;}
._e{width:7.540947px;}
._12{width:9.037972px;}
._19{width:10.232169px;}
._c{width:11.715730px;}
._a{width:12.753266px;}
._b{width:13.834157px;}
._14{width:15.045443px;}
._16{width:16.073451px;}
._1d{width:17.514967px;}
._15{width:19.479686px;}
._1c{width:22.150876px;}
._18{width:23.441314px;}
._17{width:25.365304px;}
._1a{width:31.627640px;}
._1b{width:32.825131px;}
._f{width:37.668609px;}
._10{width:38.833256px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.680890px;}
.fs1{font-size:53.897850px;}
.fs3{font-size:66.114450px;}
.fs0{font-size:84.080250px;}
.fs2{font-size:95.578650px;}
.y0{bottom:0.000000px;}
.y43{bottom:112.679970px;}
.yf7{bottom:114.299973px;}
.yb8{bottom:116.460022px;}
.y21{bottom:118.440033px;}
.yd3{bottom:122.220017px;}
.y63{bottom:122.940033px;}
.yf0{bottom:124.379998px;}
.yd6{bottom:126.360008px;}
.y101{bottom:128.340019px;}
.y148{bottom:128.519989px;}
.y136{bottom:136.259994px;}
.y8f{bottom:138.419975px;}
.y42{bottom:140.399986px;}
.yb7{bottom:142.559967px;}
.y20{bottom:144.539977px;}
.y113{bottom:145.980011px;}
.yd2{bottom:148.320030px;}
.y62{bottom:149.039977px;}
.yef{bottom:150.299973px;}
.ya3{bottom:152.460022px;}
.y100{bottom:154.440033px;}
.y8e{bottom:164.340019px;}
.yf6{bottom:166.500000px;}
.y41{bottom:168.299973px;}
.yb6{bottom:168.480011px;}
.y1f{bottom:170.639992px;}
.y112{bottom:171.899986px;}
.y7e{bottom:172.440033px;}
.yd1{bottom:174.419975px;}
.y61{bottom:175.139992px;}
.ye3{bottom:176.399986px;}
.ya2{bottom:178.559967px;}
.yff{bottom:180.539977px;}
.y8d{bottom:190.440033px;}
.yf5{bottom:192.600013px;}
.yb5{bottom:194.580025px;}
.y40{bottom:196.019989px;}
.y1e{bottom:196.740006px;}
.y111{bottom:198.000000px;}
.y7d{bottom:198.539977px;}
.yd0{bottom:200.340019px;}
.y60{bottom:201.059967px;}
.ye2{bottom:202.500000px;}
.ya1{bottom:204.480011px;}
.yfe{bottom:206.639992px;}
.y135{bottom:207.899986px;}
.yee{bottom:214.559967px;}
.y8c{bottom:216.539977px;}
.yf4{bottom:218.519989px;}
.yb4{bottom:220.679970px;}
.y1d{bottom:222.659981px;}
.y3f{bottom:223.740006px;}
.y110{bottom:224.100013px;}
.y7c{bottom:224.639992px;}
.ycf{bottom:226.440033px;}
.y5f{bottom:227.159981px;}
.ye1{bottom:228.600013px;}
.ya0{bottom:230.580025px;}
.yfd{bottom:232.740006px;}
.y134{bottom:234.000000px;}
.yed{bottom:240.480011px;}
.y147{bottom:241.019989px;}
.y8b{bottom:242.639992px;}
.yf3{bottom:244.620002px;}
.yb3{bottom:246.779983px;}
.y1c{bottom:248.759994px;}
.y10f{bottom:250.200027px;}
.y7b{bottom:250.740006px;}
.y3e{bottom:251.460022px;}
.yce{bottom:252.539977px;}
.y5e{bottom:253.259994px;}
.ye0{bottom:254.519989px;}
.y9f{bottom:256.679970px;}
.y133{bottom:260.100013px;}
.yec{bottom:266.580025px;}
.y8a{bottom:268.740006px;}
.yf2{bottom:270.720017px;}
.yb2{bottom:272.700027px;}
.y146{bottom:273.059967px;}
.y1b{bottom:274.860008px;}
.y10e{bottom:276.299973px;}
.y7a{bottom:276.659981px;}
.ycd{bottom:278.639992px;}
.y3d{bottom:279.360008px;}
.ydf{bottom:280.620002px;}
.y9e{bottom:282.779983px;}
.y132{bottom:286.200027px;}
.yeb{bottom:292.679970px;}
.y89{bottom:294.659981px;}
.yfc{bottom:296.820030px;}
.yb1{bottom:298.799973px;}
.y1a{bottom:300.960022px;}
.y10d{bottom:302.220017px;}
.y79{bottom:302.759994px;}
.ycc{bottom:304.740006px;}
.y5d{bottom:305.460022px;}
.yde{bottom:306.720017px;}
.y3c{bottom:307.080025px;}
.y9d{bottom:308.700027px;}
.y131{bottom:312.299973px;}
.yea{bottom:318.779983px;}
.y88{bottom:320.759994px;}
.yfb{bottom:322.919975px;}
.yb0{bottom:324.899986px;}
.y19{bottom:326.879998px;}
.y10c{bottom:328.320030px;}
.y78{bottom:328.860008px;}
.ycb{bottom:330.659981px;}
.y5c{bottom:331.379998px;}
.ydd{bottom:332.820030px;}
.y3b{bottom:334.799973px;}
.y130{bottom:338.220017px;}
.ye9{bottom:344.700027px;}
.y145{bottom:344.879998px;}
.yd5{bottom:346.860008px;}
.yaf{bottom:351.000000px;}
.y18{bottom:352.980011px;}
.y10b{bottom:354.419975px;}
.yca{bottom:356.759994px;}
.y5b{bottom:357.480011px;}
.y87{bottom:358.919975px;}
.yf1{bottom:360.899986px;}
.y12f{bottom:364.320030px;}
.y77{bottom:366.840019px;}
.ye8{bottom:370.799973px;}
.y3a{bottom:372.960022px;}
.yae{bottom:376.919975px;}
.y17{bottom:379.080025px;}
.y10a{bottom:380.519989px;}
.yc9{bottom:382.860008px;}
.y5a{bottom:383.580025px;}
.y86{bottom:384.840019px;}
.yfa{bottom:387.000000px;}
.y12e{bottom:390.419975px;}
.y76{bottom:392.940033px;}
.ye7{bottom:396.899986px;}
.y39{bottom:398.879998px;}
.y109{bottom:406.440033px;}
.yc8{bottom:408.960022px;}
.y59{bottom:409.679970px;}
.y85{bottom:410.940033px;}
.yf9{bottom:412.919975px;}
.yad{bottom:415.080025px;}
.y12d{bottom:416.519989px;}
.y16{bottom:417.059967px;}
.y75{bottom:419.039977px;}
.y144{bottom:420.840019px;}
.ye6{bottom:423.000000px;}
.y38{bottom:424.980011px;}
.y108{bottom:432.539977px;}
.yc7{bottom:434.879998px;}
.y84{bottom:437.039977px;}
.yf8{bottom:439.019989px;}
.yac{bottom:441.179970px;}
.y12c{bottom:442.440033px;}
.y15{bottom:443.159981px;}
.y74{bottom:445.139992px;}
.y58{bottom:447.659981px;}
.ye5{bottom:448.919975px;}
.y37{bottom:451.080025px;}
.y107{bottom:458.639992px;}
.y143{bottom:459.000000px;}
.yc6{bottom:460.980011px;}
.y83{bottom:463.139992px;}
.yab{bottom:467.100013px;}
.y12b{bottom:468.539977px;}
.y14{bottom:469.259994px;}
.y73{bottom:471.059967px;}
.y57{bottom:473.759994px;}
.ye4{bottom:475.019989px;}
.y9c{bottom:477.179970px;}
.y106{bottom:484.740006px;}
.yc5{bottom:487.080025px;}
.y36{bottom:489.059967px;}
.yaa{bottom:493.200027px;}
.y12a{bottom:494.639992px;}
.y13{bottom:495.360008px;}
.y142{bottom:496.980011px;}
.y72{bottom:497.159981px;}
.y56{bottom:499.860008px;}
.ydc{bottom:501.120002px;}
.y9b{bottom:503.100013px;}
.y105{bottom:510.659981px;}
.yc4{bottom:513.179970px;}
.y35{bottom:515.159981px;}
.ya9{bottom:519.299973px;}
.y129{bottom:520.740006px;}
.y12{bottom:521.279983px;}
.y71{bottom:523.259994px;}
.y55{bottom:525.779983px;}
.ydb{bottom:527.220017px;}
.y9a{bottom:529.200027px;}
.y141{bottom:535.139992px;}
.y104{bottom:536.759994px;}
.yc3{bottom:539.100013px;}
.y34{bottom:541.259994px;}
.y128{bottom:546.659981px;}
.y11{bottom:547.379998px;}
.y70{bottom:549.360008px;}
.y54{bottom:551.879998px;}
.yda{bottom:553.320030px;}
.y99{bottom:555.299973px;}
.ya8{bottom:557.279983px;}
.y103{bottom:562.860008px;}
.yc2{bottom:565.200027px;}
.y33{bottom:567.360008px;}
.y127{bottom:572.759994px;}
.y140{bottom:573.120002px;}
.y10{bottom:573.480011px;}
.y6f{bottom:575.279983px;}
.y53{bottom:577.980011px;}
.yd9{bottom:579.240006px;}
.y98{bottom:581.399986px;}
.y102{bottom:588.960022px;}
.yc1{bottom:591.299973px;}
.y32{bottom:593.279983px;}
.ya7{bottom:595.440033px;}
.y126{bottom:598.860008px;}
.yf{bottom:599.580025px;}
.y6e{bottom:601.379998px;}
.y52{bottom:604.080025px;}
.yd8{bottom:605.340019px;}
.y97{bottom:607.500000px;}
.y13f{bottom:611.279983px;}
.yc0{bottom:617.399986px;}
.y31{bottom:619.379998px;}
.ya6{bottom:621.540012px;}
.y125{bottom:624.959988px;}
.ye{bottom:625.680004px;}
.y6d{bottom:627.480011px;}
.y51{bottom:630.180004px;}
.yd7{bottom:631.439999px;}
.y96{bottom:633.420010px;}
.ybf{bottom:643.500000px;}
.y82{bottom:645.480011px;}
.y13e{bottom:649.259994px;}
.y124{bottom:651.060001px;}
.y50{bottom:656.100013px;}
.y30{bottom:657.540012px;}
.y95{bottom:659.519989px;}
.yd{bottom:663.660015px;}
.y6c{bottom:665.459988px;}
.ybe{bottom:669.420010px;}
.yd4{bottom:671.579990px;}
.y123{bottom:676.980011px;}
.y4f{bottom:682.199993px;}
.y2f{bottom:683.459988px;}
.y94{bottom:685.620002px;}
.y13d{bottom:687.420010px;}
.y6b{bottom:691.560001px;}
.ybd{bottom:695.519989px;}
.ya5{bottom:697.680004px;}
.yc{bottom:701.639992px;}
.y122{bottom:703.079990px;}
.y2e{bottom:709.560001px;}
.y6a{bottom:717.660015px;}
.y14d{bottom:717.839985px;}
.y4e{bottom:720.360008px;}
.ybc{bottom:721.620002px;}
.y93{bottom:723.600013px;}
.y13c{bottom:725.399986px;}
.yb{bottom:727.740006px;}
.y121{bottom:729.180004px;}
.y2d{bottom:735.660015px;}
.y69{bottom:743.759994px;}
.y4d{bottom:746.279983px;}
.ybb{bottom:747.720017px;}
.y92{bottom:749.699993px;}
.ya{bottom:753.839985px;}
.y120{bottom:755.279983px;}
.y14c{bottom:755.819995px;}
.y2c{bottom:761.759994px;}
.y13b{bottom:763.379998px;}
.y68{bottom:769.860008px;}
.y4c{bottom:772.379998px;}
.yba{bottom:773.639992px;}
.y91{bottom:775.800007px;}
.y9{bottom:779.939999px;}
.y11f{bottom:781.199993px;}
.y2b{bottom:787.860008px;}
.y4b{bottom:798.480011px;}
.yb9{bottom:799.740006px;}
.y13a{bottom:801.540012px;}
.y90{bottom:801.899986px;}
.y8{bottom:806.040012px;}
.y11e{bottom:807.300007px;}
.y2a{bottom:813.779983px;}
.y81{bottom:825.839985px;}
.y7{bottom:831.959988px;}
.y11d{bottom:833.399986px;}
.y4a{bottom:838.259994px;}
.y139{bottom:839.519989px;}
.y29{bottom:839.879998px;}
.y80{bottom:851.939999px;}
.y11c{bottom:859.500000px;}
.y28{bottom:865.980011px;}
.y6{bottom:870.120002px;}
.y138{bottom:877.680004px;}
.y7f{bottom:878.040012px;}
.y11b{bottom:885.600013px;}
.y67{bottom:892.079990px;}
.y49{bottom:893.699993px;}
.y27{bottom:903.960004px;}
.y5{bottom:908.099997px;}
.y11a{bottom:911.520006px;}
.y137{bottom:915.659998px;}
.y66{bottom:918.000000px;}
.y48{bottom:921.599997px;}
.y26{bottom:930.060001px;}
.y119{bottom:937.620002px;}
.y65{bottom:944.099997px;}
.y4{bottom:946.259994px;}
.y47{bottom:949.319996px;}
.y14b{bottom:953.819996px;}
.y25{bottom:956.159998px;}
.y118{bottom:963.719999px;}
.y64{bottom:970.199993px;}
.y46{bottom:977.039995px;}
.y24{bottom:982.259994px;}
.y3{bottom:984.240006px;}
.y117{bottom:989.819996px;}
.y14a{bottom:991.800007px;}
.ya4{bottom:996.300007px;}
.y45{bottom:1004.759994px;}
.y23{bottom:1008.180004px;}
.y116{bottom:1015.740006px;}
.y2{bottom:1022.400003px;}
.y149{bottom:1029.960004px;}
.y44{bottom:1032.659998px;}
.y22{bottom:1034.280001px;}
.y115{bottom:1041.840002px;}
.y1{bottom:1060.379998px;}
.y114{bottom:1067.939999px;}
.h9{height:37.633753px;}
.hb{height:41.457018px;}
.h1{height:58.708378px;}
.ha{height:65.759343px;}
.h4{height:67.873618px;}
.h5{height:67.873622px;}
.h7{height:67.873757px;}
.h8{height:67.873762px;}
.h3{height:67.873892px;}
.h6{height:67.873897px;}
.h2{height:69.300519px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:108.000000px;}
.x1{left:183.960005px;}
.x3{left:382.860008px;}
.x2{left:459.000000px;}
@media print{
.v2{vertical-align:-26.879880pt;}
.v3{vertical-align:-21.119872pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880124pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.365224pt;}
.ls7{letter-spacing:0.365344pt;}
.ls0{letter-spacing:0.365348pt;}
.ls2{letter-spacing:0.365404pt;}
.ls5{letter-spacing:0.365408pt;}
.ls1{letter-spacing:0.365468pt;}
.ls4{letter-spacing:0.365472pt;}
.ls6{letter-spacing:0.479092pt;}
.ws0{word-spacing:-18.684500pt;}
.ws3{word-spacing:-12.456392pt;}
.ws2{word-spacing:-11.977300pt;}
.ws4{word-spacing:-8.373228pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-8.783758pt;}
._6{margin-left:-7.719257pt;}
._9{margin-left:-6.707151pt;}
._5{margin-left:-5.548713pt;}
._4{margin-left:-4.420344pt;}
._1{margin-left:-2.976966pt;}
._d{margin-left:-1.843928pt;}
._0{margin-left:-0.908242pt;}
._3{width:0.891892pt;}
._7{width:1.860761pt;}
._8{width:2.755012pt;}
._13{width:3.842383pt;}
._11{width:5.191370pt;}
._e{width:6.703064pt;}
._12{width:8.033752pt;}
._19{width:9.095261pt;}
._c{width:10.413982pt;}
._a{width:11.336236pt;}
._b{width:12.297028pt;}
._14{width:13.373727pt;}
._16{width:14.287512pt;}
._1d{width:15.568860pt;}
._15{width:17.315276pt;}
._1c{width:19.689667pt;}
._18{width:20.836724pt;}
._17{width:22.546936pt;}
._1a{width:28.113458pt;}
._1b{width:29.177894pt;}
._f{width:33.483208pt;}
._10{width:34.518450pt;}
.fs4{font-size:37.049680pt;}
.fs1{font-size:47.909200pt;}
.fs3{font-size:58.768400pt;}
.fs0{font-size:74.738000pt;}
.fs2{font-size:84.958800pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:100.159973pt;}
.yf7{bottom:101.599976pt;}
.yb8{bottom:103.520020pt;}
.y21{bottom:105.280029pt;}
.yd3{bottom:108.640015pt;}
.y63{bottom:109.280029pt;}
.yf0{bottom:110.559998pt;}
.yd6{bottom:112.320007pt;}
.y101{bottom:114.080017pt;}
.y148{bottom:114.239990pt;}
.y136{bottom:121.119995pt;}
.y8f{bottom:123.039978pt;}
.y42{bottom:124.799988pt;}
.yb7{bottom:126.719971pt;}
.y20{bottom:128.479980pt;}
.y113{bottom:129.760010pt;}
.yd2{bottom:131.840027pt;}
.y62{bottom:132.479980pt;}
.yef{bottom:133.599976pt;}
.ya3{bottom:135.520020pt;}
.y100{bottom:137.280029pt;}
.y8e{bottom:146.080017pt;}
.yf6{bottom:148.000000pt;}
.y41{bottom:149.599976pt;}
.yb6{bottom:149.760010pt;}
.y1f{bottom:151.679993pt;}
.y112{bottom:152.799988pt;}
.y7e{bottom:153.280029pt;}
.yd1{bottom:155.039978pt;}
.y61{bottom:155.679993pt;}
.ye3{bottom:156.799988pt;}
.ya2{bottom:158.719971pt;}
.yff{bottom:160.479980pt;}
.y8d{bottom:169.280029pt;}
.yf5{bottom:171.200012pt;}
.yb5{bottom:172.960022pt;}
.y40{bottom:174.239990pt;}
.y1e{bottom:174.880005pt;}
.y111{bottom:176.000000pt;}
.y7d{bottom:176.479980pt;}
.yd0{bottom:178.080017pt;}
.y60{bottom:178.719971pt;}
.ye2{bottom:180.000000pt;}
.ya1{bottom:181.760010pt;}
.yfe{bottom:183.679993pt;}
.y135{bottom:184.799988pt;}
.yee{bottom:190.719971pt;}
.y8c{bottom:192.479980pt;}
.yf4{bottom:194.239990pt;}
.yb4{bottom:196.159973pt;}
.y1d{bottom:197.919983pt;}
.y3f{bottom:198.880005pt;}
.y110{bottom:199.200012pt;}
.y7c{bottom:199.679993pt;}
.ycf{bottom:201.280029pt;}
.y5f{bottom:201.919983pt;}
.ye1{bottom:203.200012pt;}
.ya0{bottom:204.960022pt;}
.yfd{bottom:206.880005pt;}
.y134{bottom:208.000000pt;}
.yed{bottom:213.760010pt;}
.y147{bottom:214.239990pt;}
.y8b{bottom:215.679993pt;}
.yf3{bottom:217.440002pt;}
.yb3{bottom:219.359985pt;}
.y1c{bottom:221.119995pt;}
.y10f{bottom:222.400024pt;}
.y7b{bottom:222.880005pt;}
.y3e{bottom:223.520020pt;}
.yce{bottom:224.479980pt;}
.y5e{bottom:225.119995pt;}
.ye0{bottom:226.239990pt;}
.y9f{bottom:228.159973pt;}
.y133{bottom:231.200012pt;}
.yec{bottom:236.960022pt;}
.y8a{bottom:238.880005pt;}
.yf2{bottom:240.640015pt;}
.yb2{bottom:242.400024pt;}
.y146{bottom:242.719971pt;}
.y1b{bottom:244.320007pt;}
.y10e{bottom:245.599976pt;}
.y7a{bottom:245.919983pt;}
.ycd{bottom:247.679993pt;}
.y3d{bottom:248.320007pt;}
.ydf{bottom:249.440002pt;}
.y9e{bottom:251.359985pt;}
.y132{bottom:254.400024pt;}
.yeb{bottom:260.159973pt;}
.y89{bottom:261.919983pt;}
.yfc{bottom:263.840027pt;}
.yb1{bottom:265.599976pt;}
.y1a{bottom:267.520020pt;}
.y10d{bottom:268.640015pt;}
.y79{bottom:269.119995pt;}
.ycc{bottom:270.880005pt;}
.y5d{bottom:271.520020pt;}
.yde{bottom:272.640015pt;}
.y3c{bottom:272.960022pt;}
.y9d{bottom:274.400024pt;}
.y131{bottom:277.599976pt;}
.yea{bottom:283.359985pt;}
.y88{bottom:285.119995pt;}
.yfb{bottom:287.039978pt;}
.yb0{bottom:288.799988pt;}
.y19{bottom:290.559998pt;}
.y10c{bottom:291.840027pt;}
.y78{bottom:292.320007pt;}
.ycb{bottom:293.919983pt;}
.y5c{bottom:294.559998pt;}
.ydd{bottom:295.840027pt;}
.y3b{bottom:297.599976pt;}
.y130{bottom:300.640015pt;}
.ye9{bottom:306.400024pt;}
.y145{bottom:306.559998pt;}
.yd5{bottom:308.320007pt;}
.yaf{bottom:312.000000pt;}
.y18{bottom:313.760010pt;}
.y10b{bottom:315.039978pt;}
.yca{bottom:317.119995pt;}
.y5b{bottom:317.760010pt;}
.y87{bottom:319.039978pt;}
.yf1{bottom:320.799988pt;}
.y12f{bottom:323.840027pt;}
.y77{bottom:326.080017pt;}
.ye8{bottom:329.599976pt;}
.y3a{bottom:331.520020pt;}
.yae{bottom:335.039978pt;}
.y17{bottom:336.960022pt;}
.y10a{bottom:338.239990pt;}
.yc9{bottom:340.320007pt;}
.y5a{bottom:340.960022pt;}
.y86{bottom:342.080017pt;}
.yfa{bottom:344.000000pt;}
.y12e{bottom:347.039978pt;}
.y76{bottom:349.280029pt;}
.ye7{bottom:352.799988pt;}
.y39{bottom:354.559998pt;}
.y109{bottom:361.280029pt;}
.yc8{bottom:363.520020pt;}
.y59{bottom:364.159973pt;}
.y85{bottom:365.280029pt;}
.yf9{bottom:367.039978pt;}
.yad{bottom:368.960022pt;}
.y12d{bottom:370.239990pt;}
.y16{bottom:370.719971pt;}
.y75{bottom:372.479980pt;}
.y144{bottom:374.080017pt;}
.ye6{bottom:376.000000pt;}
.y38{bottom:377.760010pt;}
.y108{bottom:384.479980pt;}
.yc7{bottom:386.559998pt;}
.y84{bottom:388.479980pt;}
.yf8{bottom:390.239990pt;}
.yac{bottom:392.159973pt;}
.y12c{bottom:393.280029pt;}
.y15{bottom:393.919983pt;}
.y74{bottom:395.679993pt;}
.y58{bottom:397.919983pt;}
.ye5{bottom:399.039978pt;}
.y37{bottom:400.960022pt;}
.y107{bottom:407.679993pt;}
.y143{bottom:408.000000pt;}
.yc6{bottom:409.760010pt;}
.y83{bottom:411.679993pt;}
.yab{bottom:415.200012pt;}
.y12b{bottom:416.479980pt;}
.y14{bottom:417.119995pt;}
.y73{bottom:418.719971pt;}
.y57{bottom:421.119995pt;}
.ye4{bottom:422.239990pt;}
.y9c{bottom:424.159973pt;}
.y106{bottom:430.880005pt;}
.yc5{bottom:432.960022pt;}
.y36{bottom:434.719971pt;}
.yaa{bottom:438.400024pt;}
.y12a{bottom:439.679993pt;}
.y13{bottom:440.320007pt;}
.y142{bottom:441.760010pt;}
.y72{bottom:441.919983pt;}
.y56{bottom:444.320007pt;}
.ydc{bottom:445.440002pt;}
.y9b{bottom:447.200012pt;}
.y105{bottom:453.919983pt;}
.yc4{bottom:456.159973pt;}
.y35{bottom:457.919983pt;}
.ya9{bottom:461.599976pt;}
.y129{bottom:462.880005pt;}
.y12{bottom:463.359985pt;}
.y71{bottom:465.119995pt;}
.y55{bottom:467.359985pt;}
.ydb{bottom:468.640015pt;}
.y9a{bottom:470.400024pt;}
.y141{bottom:475.679993pt;}
.y104{bottom:477.119995pt;}
.yc3{bottom:479.200012pt;}
.y34{bottom:481.119995pt;}
.y128{bottom:485.919983pt;}
.y11{bottom:486.559998pt;}
.y70{bottom:488.320007pt;}
.y54{bottom:490.559998pt;}
.yda{bottom:491.840027pt;}
.y99{bottom:493.599976pt;}
.ya8{bottom:495.359985pt;}
.y103{bottom:500.320007pt;}
.yc2{bottom:502.400024pt;}
.y33{bottom:504.320007pt;}
.y127{bottom:509.119995pt;}
.y140{bottom:509.440002pt;}
.y10{bottom:509.760010pt;}
.y6f{bottom:511.359985pt;}
.y53{bottom:513.760010pt;}
.yd9{bottom:514.880005pt;}
.y98{bottom:516.799988pt;}
.y102{bottom:523.520020pt;}
.yc1{bottom:525.599976pt;}
.y32{bottom:527.359985pt;}
.ya7{bottom:529.280029pt;}
.y126{bottom:532.320007pt;}
.yf{bottom:532.960022pt;}
.y6e{bottom:534.559998pt;}
.y52{bottom:536.960022pt;}
.yd8{bottom:538.080017pt;}
.y97{bottom:540.000000pt;}
.y13f{bottom:543.359985pt;}
.yc0{bottom:548.799988pt;}
.y31{bottom:550.559998pt;}
.ya6{bottom:552.480011pt;}
.y125{bottom:555.519989pt;}
.ye{bottom:556.160004pt;}
.y6d{bottom:557.760010pt;}
.y51{bottom:560.160004pt;}
.yd7{bottom:561.279999pt;}
.y96{bottom:563.040009pt;}
.ybf{bottom:572.000000pt;}
.y82{bottom:573.760010pt;}
.y13e{bottom:577.119995pt;}
.y124{bottom:578.720001pt;}
.y50{bottom:583.200012pt;}
.y30{bottom:584.480011pt;}
.y95{bottom:586.239990pt;}
.yd{bottom:589.920013pt;}
.y6c{bottom:591.519989pt;}
.ybe{bottom:595.040009pt;}
.yd4{bottom:596.959991pt;}
.y123{bottom:601.760010pt;}
.y4f{bottom:606.399994pt;}
.y2f{bottom:607.519989pt;}
.y94{bottom:609.440002pt;}
.y13d{bottom:611.040009pt;}
.y6b{bottom:614.720001pt;}
.ybd{bottom:618.239990pt;}
.ya5{bottom:620.160004pt;}
.yc{bottom:623.679993pt;}
.y122{bottom:624.959991pt;}
.y2e{bottom:630.720001pt;}
.y6a{bottom:637.920013pt;}
.y14d{bottom:638.079987pt;}
.y4e{bottom:640.320007pt;}
.ybc{bottom:641.440002pt;}
.y93{bottom:643.200012pt;}
.y13c{bottom:644.799988pt;}
.yb{bottom:646.880005pt;}
.y121{bottom:648.160004pt;}
.y2d{bottom:653.920013pt;}
.y69{bottom:661.119995pt;}
.y4d{bottom:663.359985pt;}
.ybb{bottom:664.640015pt;}
.y92{bottom:666.399994pt;}
.ya{bottom:670.079987pt;}
.y120{bottom:671.359985pt;}
.y14c{bottom:671.839996pt;}
.y2c{bottom:677.119995pt;}
.y13b{bottom:678.559998pt;}
.y68{bottom:684.320007pt;}
.y4c{bottom:686.559998pt;}
.yba{bottom:687.679993pt;}
.y91{bottom:689.600006pt;}
.y9{bottom:693.279999pt;}
.y11f{bottom:694.399994pt;}
.y2b{bottom:700.320007pt;}
.y4b{bottom:709.760010pt;}
.yb9{bottom:710.880005pt;}
.y13a{bottom:712.480011pt;}
.y90{bottom:712.799988pt;}
.y8{bottom:716.480011pt;}
.y11e{bottom:717.600006pt;}
.y2a{bottom:723.359985pt;}
.y81{bottom:734.079987pt;}
.y7{bottom:739.519989pt;}
.y11d{bottom:740.799988pt;}
.y4a{bottom:745.119995pt;}
.y139{bottom:746.239990pt;}
.y29{bottom:746.559998pt;}
.y80{bottom:757.279999pt;}
.y11c{bottom:764.000000pt;}
.y28{bottom:769.760010pt;}
.y6{bottom:773.440002pt;}
.y138{bottom:780.160004pt;}
.y7f{bottom:780.480011pt;}
.y11b{bottom:787.200012pt;}
.y67{bottom:792.959991pt;}
.y49{bottom:794.399994pt;}
.y27{bottom:803.520004pt;}
.y5{bottom:807.199997pt;}
.y11a{bottom:810.240005pt;}
.y137{bottom:813.919998pt;}
.y66{bottom:816.000000pt;}
.y48{bottom:819.199997pt;}
.y26{bottom:826.720001pt;}
.y119{bottom:833.440002pt;}
.y65{bottom:839.199997pt;}
.y4{bottom:841.119995pt;}
.y47{bottom:843.839996pt;}
.y14b{bottom:847.839996pt;}
.y25{bottom:849.919998pt;}
.y118{bottom:856.639999pt;}
.y64{bottom:862.399994pt;}
.y46{bottom:868.479996pt;}
.y24{bottom:873.119995pt;}
.y3{bottom:874.880005pt;}
.y117{bottom:879.839996pt;}
.y14a{bottom:881.600006pt;}
.ya4{bottom:885.600006pt;}
.y45{bottom:893.119995pt;}
.y23{bottom:896.160004pt;}
.y116{bottom:902.880005pt;}
.y2{bottom:908.800003pt;}
.y149{bottom:915.520004pt;}
.y44{bottom:917.919998pt;}
.y22{bottom:919.360001pt;}
.y115{bottom:926.080002pt;}
.y1{bottom:942.559998pt;}
.y114{bottom:949.279999pt;}
.h9{height:33.452225pt;}
.hb{height:36.850683pt;}
.h1{height:52.185225pt;}
.ha{height:58.452749pt;}
.h4{height:60.332105pt;}
.h5{height:60.332109pt;}
.h7{height:60.332229pt;}
.h8{height:60.332233pt;}
.h3{height:60.332349pt;}
.h6{height:60.332353pt;}
.h2{height:61.600461pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:96.000000pt;}
.x1{left:163.520004pt;}
.x3{left:340.320007pt;}
.x2{left:408.000000pt;}
}




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