
    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_2ce5e160f7cc4ad91ec170dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_2c4133cdfa71b2616408cd5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_ef5735f0372291d61f042433.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_759bb5b46487dada5a8c8f91.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_132673b7ff665fef88688d8b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ae4a1e54f0f24eeb2265ecc0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.261925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261925,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-107.288940px;}
.v1{vertical-align:-48.237262px;}
.v3{vertical-align:-7.185330px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.055375px;}
.ls5{letter-spacing:4.690786px;}
.ls3{letter-spacing:32.615251px;}
.ls2{letter-spacing:265.324859px;}
.ls1{letter-spacing:271.069739px;}
.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;}
}
.ws1{word-spacing:-18.000676px;}
.ws3{word-spacing:-17.999954px;}
.ws6{word-spacing:-15.026225px;}
.ws4{word-spacing:-14.939873px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:240.059695px;}
._17{margin-left:-4.967987px;}
._16{margin-left:-3.239992px;}
._10{margin-left:-2.156097px;}
._1{margin-left:-1.007997px;}
._0{width:1.151997px;}
._4{width:2.304741px;}
._a{width:3.731391px;}
._b{width:5.253099px;}
._5{width:6.535933px;}
._12{width:7.804700px;}
._11{width:9.727678px;}
._39{width:10.741958px;}
._8{width:11.809850px;}
._9{width:12.966159px;}
._e{width:14.516936px;}
._14{width:16.207078px;}
._36{width:19.835620px;}
._46{width:20.856190px;}
._2{width:21.874129px;}
._3{width:22.948153px;}
._f{width:24.324866px;}
._44{width:25.609618px;}
._18{width:26.639931px;}
._33{width:28.019362px;}
._c{width:29.723086px;}
._d{width:30.751886px;}
._1d{width:32.534018px;}
._3c{width:33.606805px;}
._1b{width:34.642347px;}
._1c{width:36.017057px;}
._27{width:37.366127px;}
._43{width:38.379305px;}
._13{width:39.948563px;}
._3a{width:41.956201px;}
._3b{width:43.246624px;}
._3e{width:45.421050px;}
._15{width:47.591538px;}
._6{width:51.974421px;}
._7{width:53.441195px;}
._3f{width:56.173360px;}
._45{width:59.062796px;}
._19{width:60.430566px;}
._1a{width:61.880137px;}
._4c{width:63.222312px;}
._4b{width:65.018723px;}
._34{width:68.907995px;}
._35{width:70.012223px;}
._41{width:73.726646px;}
._49{width:89.041643px;}
._4a{width:91.192985px;}
._40{width:96.750617px;}
._37{width:100.186747px;}
._38{width:101.563190px;}
._28{width:227.944577px;}
._29{width:359.376467px;}
._32{width:372.253982px;}
._2b{width:408.255335px;}
._30{width:435.616362px;}
._1f{width:570.331735px;}
._20{width:584.661961px;}
._1e{width:604.917221px;}
._24{width:620.663313px;}
._2d{width:633.345679px;}
._2e{width:643.213947px;}
._21{width:647.943384px;}
._31{width:667.609639px;}
._2f{width:671.363670px;}
._2c{width:683.824035px;}
._2a{width:693.627934px;}
._23{width:727.179801px;}
._22{width:821.933373px;}
._4d{width:849.065583px;}
._26{width:862.668059px;}
._25{width:937.244906px;}
._42{width:1250.686977px;}
._47{width:1260.047329px;}
._48{width:1412.693062px;}
._3d{width:2649.699526px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs4{font-size:59.759492px;}
.fs3{font-size:59.762250px;}
.fs5{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y6e{bottom:3.959954px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.ya0{bottom:99.180039px;}
.y74{bottom:100.080093px;}
.yf2{bottom:105.300110px;}
.y3d{bottom:109.440033px;}
.yd5{bottom:113.580093px;}
.y9f{bottom:119.880066px;}
.y73{bottom:121.500068px;}
.yf1{bottom:126.000068px;}
.y106{bottom:126.720085px;}
.ybb{bottom:127.260064px;}
.y3c{bottom:130.140060px;}
.yd4{bottom:134.280052px;}
.y9e{bottom:140.580093px;}
.y72{bottom:142.920043px;}
.yf0{bottom:146.700096px;}
.y105{bottom:147.420043px;}
.yba{bottom:147.960091px;}
.y3b{bottom:150.840088px;}
.yd3{bottom:154.980079px;}
.y9d{bottom:161.280052px;}
.y71{bottom:164.340088px;}
.yef{bottom:167.400055px;}
.y104{bottom:168.120072px;}
.yb9{bottom:168.660049px;}
.y3a{bottom:171.540047px;}
.yd2{bottom:175.680039px;}
.y9c{bottom:181.980079px;}
.y70{bottom:185.760064px;}
.yee{bottom:188.100083px;}
.y103{bottom:188.820099px;}
.yb8{bottom:189.360077px;}
.y39{bottom:192.240074px;}
.yd1{bottom:196.020058px;}
.y9b{bottom:202.680039px;}
.y6f{bottom:207.180039px;}
.yed{bottom:208.800041px;}
.y102{bottom:209.520058px;}
.yb7{bottom:210.060036px;}
.y38{bottom:212.940033px;}
.yd0{bottom:216.720085px;}
.y9a{bottom:223.380066px;}
.y6d{bottom:224.820099px;}
.y6c{bottom:228.780052px;}
.yec{bottom:229.500068px;}
.y101{bottom:230.220085px;}
.yb6{bottom:230.760064px;}
.y37{bottom:233.640060px;}
.ycf{bottom:237.780052px;}
.y99{bottom:244.080093px;}
.y6b{bottom:249.840088px;}
.yeb{bottom:250.200096px;}
.y100{bottom:250.920043px;}
.yb5{bottom:251.460091px;}
.yce{bottom:254.160049px;}
.y36{bottom:254.340088px;}
.y98{bottom:264.780052px;}
.yea{bottom:270.900055px;}
.y6a{bottom:271.260064px;}
.yff{bottom:271.620072px;}
.yb4{bottom:272.160049px;}
.y35{bottom:275.040047px;}
.y97{bottom:285.480079px;}
.ye9{bottom:291.420043px;}
.y69{bottom:291.960091px;}
.yfe{bottom:292.320099px;}
.yb3{bottom:292.860077px;}
.y34{bottom:295.380066px;}
.y96{bottom:306.180039px;}
.ye8{bottom:312.120072px;}
.y68{bottom:313.020058px;}
.yb2{bottom:313.560036px;}
.y33{bottom:316.440033px;}
.y95{bottom:326.880066px;}
.ye7{bottom:332.820099px;}
.y67{bottom:333.720085px;}
.yb1{bottom:334.260064px;}
.y32{bottom:337.140060px;}
.y94{bottom:347.580093px;}
.ye6{bottom:353.520058px;}
.yfd{bottom:354.060036px;}
.y66{bottom:354.420043px;}
.yb0{bottom:354.960091px;}
.y31{bottom:357.840088px;}
.y93{bottom:368.280052px;}
.ye5{bottom:374.220085px;}
.yfc{bottom:374.760064px;}
.y65{bottom:375.120072px;}
.yaf{bottom:375.300041px;}
.y30{bottom:378.540047px;}
.y92{bottom:388.980079px;}
.ye4{bottom:394.920043px;}
.y64{bottom:395.820099px;}
.yae{bottom:396.000068px;}
.y2f{bottom:399.240074px;}
.y91{bottom:409.680039px;}
.ye3{bottom:415.620072px;}
.y63{bottom:416.520058px;}
.yad{bottom:416.700096px;}
.y2e{bottom:419.940033px;}
.y90{bottom:430.380066px;}
.yac{bottom:433.260064px;}
.ye2{bottom:436.320099px;}
.y62{bottom:437.220085px;}
.y2d{bottom:440.640060px;}
.yc7{bottom:447.305635px;}
.y8f{bottom:451.080093px;}
.ye1{bottom:457.020058px;}
.y61{bottom:457.920043px;}
.y2c{bottom:461.340088px;}
.ybe{bottom:464.763076px;}
.y8e{bottom:471.780052px;}
.ye0{bottom:477.360077px;}
.y60{bottom:478.620072px;}
.y2b{bottom:481.680039px;}
.ybf{bottom:489.246450px;}
.y8d{bottom:492.480079px;}
.ydf{bottom:498.060036px;}
.y5f{bottom:499.320099px;}
.y2a{bottom:502.740074px;}
.ybd{bottom:508.687269px;}
.y8c{bottom:513.180039px;}
.yc0{bottom:513.725282px;}
.yde{bottom:514.800041px;}
.y5e{bottom:520.019397px;}
.y5d{bottom:520.020058px;}
.y29{bottom:523.440033px;}
.yfb{bottom:526.144799px;}
.y8b{bottom:533.880066px;}
.yc1{bottom:538.208656px;}
.y5c{bottom:540.720085px;}
.yf5{bottom:543.789241px;}
.y28{bottom:544.140060px;}
.y8a{bottom:554.580093px;}
.y5b{bottom:561.415808px;}
.ycd{bottom:561.420043px;}
.yc2{bottom:562.682947px;}
.yf4{bottom:563.763462px;}
.y27{bottom:564.840088px;}
.y89{bottom:575.280052px;}
.yf6{bottom:580.145018px;}
.ycc{bottom:582.120072px;}
.y5a{bottom:582.124984px;}
.y26{bottom:585.540047px;}
.yc3{bottom:587.166321px;}
.y88{bottom:595.980079px;}
.ycb{bottom:602.820099px;}
.y59{bottom:602.823162px;}
.y25{bottom:606.240074px;}
.yc4{bottom:611.645108px;}
.yf7{bottom:616.322964px;}
.y87{bottom:616.680039px;}
.yca{bottom:623.520058px;}
.y58{bottom:623.521340px;}
.y24{bottom:626.940033px;}
.yc5{bottom:636.128482px;}
.y86{bottom:637.380066px;}
.y57{bottom:644.219519px;}
.yc9{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.yf8{bottom:652.687823px;}
.ybc{bottom:657.543465px;}
.y85{bottom:658.080093px;}
.yc6{bottom:660.602729px;}
.y56{bottom:664.917751px;}
.yc8{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.y84{bottom:678.780052px;}
.yab{bottom:685.620072px;}
.y55{bottom:685.626927px;}
.y21{bottom:689.040081px;}
.yf9{bottom:689.043600px;}
.y83{bottom:699.480079px;}
.yaa{bottom:706.320065px;}
.y54{bottom:706.325105px;}
.y20{bottom:709.380066px;}
.yf3{bottom:717.306596px;}
.y82{bottom:720.180073px;}
.yfa{bottom:725.403918px;}
.ya9{bottom:727.020058px;}
.y53{bottom:727.021084px;}
.y1f{bottom:729.720051px;}
.y81{bottom:740.880066px;}
.y1e{bottom:747.000068px;}
.y52{bottom:747.719263px;}
.ya8{bottom:747.720051px;}
.ydd{bottom:749.520058px;}
.y80{bottom:761.580059px;}
.y1d{bottom:764.280052px;}
.y51{bottom:768.417441px;}
.ya7{bottom:768.420078px;}
.ydc{bottom:770.220051px;}
.y1c{bottom:781.920078px;}
.y7f{bottom:782.280052px;}
.ya6{bottom:789.120072px;}
.y50{bottom:789.124417px;}
.ydb{bottom:790.920078px;}
.y1b{bottom:802.980079px;}
.ya5{bottom:809.820065px;}
.y4f{bottom:809.822649px;}
.yda{bottom:811.620072px;}
.y1a{bottom:823.680073px;}
.ya4{bottom:830.520058px;}
.y4e{bottom:830.520828px;}
.yd9{bottom:832.320065px;}
.y19{bottom:844.380066px;}
.y7e{bottom:845.100083px;}
.y4d{bottom:851.219006px;}
.ya3{bottom:851.220051px;}
.yd8{bottom:853.020058px;}
.y18{bottom:865.080059px;}
.y7d{bottom:866.520058px;}
.y4c{bottom:871.917211px;}
.ya2{bottom:871.920078px;}
.yd7{bottom:873.720051px;}
.y17{bottom:885.780052px;}
.y7c{bottom:888.120072px;}
.yd6{bottom:889.920078px;}
.ya1{bottom:892.620072px;}
.y4b{bottom:892.624188px;}
.y16{bottom:906.480079px;}
.y7b{bottom:909.540081px;}
.y4a{bottom:913.320065px;}
.y15{bottom:927.180073px;}
.y7a{bottom:930.960056px;}
.y49{bottom:934.020058px;}
.y14{bottom:947.880066px;}
.y79{bottom:952.380066px;}
.y48{bottom:954.720051px;}
.y13{bottom:968.580059px;}
.y78{bottom:973.800076px;}
.y47{bottom:975.420061px;}
.y12{bottom:988.920061px;}
.y77{bottom:994.860060px;}
.y46{bottom:996.120072px;}
.y11{bottom:1009.620072px;}
.y76{bottom:1016.460074px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.y75{bottom:1037.160067px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1051.020058px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1071.720068px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.940067px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.hd{height:20.159981px;}
.h6{height:40.232907px;}
.h4{height:47.982689px;}
.he{height:49.838482px;}
.ha{height:49.840783px;}
.hb{height:51.998047px;}
.h9{height:59.345979px;}
.hc{height:60.046720px;}
.h2{height:60.049131px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.hf{height:65.886904px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w5{width:9.000000px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x1f{left:90.360000px;}
.x2d{left:94.860000px;}
.x26{left:104.579999px;}
.x31{left:109.260003px;}
.x38{left:111.780001px;}
.x8{left:123.661790px;}
.x1e{left:127.439999px;}
.x16{left:138.060001px;}
.x30{left:144.539996px;}
.xe{left:151.020006px;}
.xd{left:153.719999px;}
.x1c{left:162.360008px;}
.xb{left:173.340002px;}
.x20{left:176.580008px;}
.x9{left:217.801198px;}
.x17{left:223.742298px;}
.x1b{left:238.680005px;}
.xc{left:255.599997px;}
.x18{left:262.259994px;}
.x23{left:263.340002px;}
.x24{left:265.860008px;}
.x1a{left:270.539996px;}
.x25{left:272.879998px;}
.x22{left:275.759994px;}
.x21{left:278.280001px;}
.x37{left:295.920010px;}
.x27{left:323.279983px;}
.x2e{left:334.980011px;}
.x32{left:395.639992px;}
.x2b{left:401.939484px;}
.x2a{left:409.314577px;}
.x11{left:421.740006px;}
.x2c{left:427.139992px;}
.x35{left:430.199765px;}
.x2f{left:431.459988px;}
.x2{left:437.399987px;}
.x13{left:444.600014px;}
.xa{left:446.399987px;}
.x28{left:458.819356px;}
.x1d{left:469.259994px;}
.x36{left:476.454671px;}
.x33{left:494.276899px;}
.x12{left:505.800007px;}
.x14{left:520.379998px;}
.x10{left:522.360008px;}
.x29{left:534.777086px;}
.x15{left:538.920010px;}
.x34{left:572.573579px;}
.xf{left:648.360008px;}
.x19{left:719.820030px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x4{left:812.879998px;}
@media print{
.v2{vertical-align:-95.367946pt;}
.v1{vertical-align:-42.877566pt;}
.v3{vertical-align:-6.386960pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.049222pt;}
.ls5{letter-spacing:4.169587pt;}
.ls3{letter-spacing:28.991334pt;}
.ls2{letter-spacing:235.844319pt;}
.ls1{letter-spacing:240.950879pt;}
.ws1{word-spacing:-16.000601pt;}
.ws3{word-spacing:-15.999959pt;}
.ws6{word-spacing:-13.356644pt;}
.ws4{word-spacing:-13.279887pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:213.386396pt;}
._17{margin-left:-4.415989pt;}
._16{margin-left:-2.879993pt;}
._10{margin-left:-1.916531pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.023997pt;}
._4{width:2.048659pt;}
._a{width:3.316792pt;}
._b{width:4.669422pt;}
._5{width:5.809718pt;}
._12{width:6.937511pt;}
._11{width:8.646825pt;}
._39{width:9.548407pt;}
._8{width:10.497644pt;}
._9{width:11.525474pt;}
._e{width:12.903943pt;}
._14{width:14.406291pt;}
._36{width:17.631662pt;}
._46{width:18.538836pt;}
._2{width:19.443670pt;}
._3{width:20.398358pt;}
._f{width:21.622103pt;}
._44{width:22.764105pt;}
._18{width:23.679939pt;}
._33{width:24.906099pt;}
._c{width:26.420521pt;}
._d{width:27.335010pt;}
._1d{width:28.919127pt;}
._3c{width:29.872715pt;}
._1b{width:30.793198pt;}
._1c{width:32.015161pt;}
._27{width:33.214335pt;}
._43{width:34.114938pt;}
._13{width:35.509834pt;}
._3a{width:37.294401pt;}
._3b{width:38.441444pt;}
._3e{width:40.374267pt;}
._15{width:42.303589pt;}
._6{width:46.199485pt;}
._7{width:47.503284pt;}
._3f{width:49.931875pt;}
._45{width:52.500263pt;}
._19{width:53.716059pt;}
._1a{width:55.004566pt;}
._4c{width:56.197611pt;}
._4b{width:57.794421pt;}
._34{width:61.251551pt;}
._35{width:62.233087pt;}
._41{width:65.534797pt;}
._49{width:79.148127pt;}
._4a{width:81.060431pt;}
._40{width:86.000549pt;}
._37{width:89.054886pt;}
._38{width:90.278391pt;}
._28{width:202.617402pt;}
._29{width:319.445749pt;}
._32{width:330.892429pt;}
._2b{width:362.893631pt;}
._30{width:387.214544pt;}
._1f{width:506.961542pt;}
._20{width:519.699520pt;}
._1e{width:537.704197pt;}
._24{width:551.700722pt;}
._2d{width:562.973937pt;}
._2e{width:571.745731pt;}
._21{width:575.949675pt;}
._31{width:593.430790pt;}
._2f{width:596.767706pt;}
._2c{width:607.843587pt;}
._2a{width:616.558164pt;}
._23{width:646.382045pt;}
._22{width:730.607442pt;}
._4d{width:754.724962pt;}
._26{width:766.816052pt;}
._25{width:833.106584pt;}
._42{width:1111.721757pt;}
._47{width:1120.042070pt;}
._48{width:1255.727166pt;}
._3d{width:2355.288467pt;}
.fs1{font-size:42.881600pt;}
.fs4{font-size:53.119548pt;}
.fs3{font-size:53.122000pt;}
.fs5{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y6e{bottom:3.519959pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.ya0{bottom:88.160035pt;}
.y74{bottom:88.960083pt;}
.yf2{bottom:93.600098pt;}
.y3d{bottom:97.280030pt;}
.yd5{bottom:100.960083pt;}
.y9f{bottom:106.560059pt;}
.y73{bottom:108.000061pt;}
.yf1{bottom:112.000061pt;}
.y106{bottom:112.640076pt;}
.ybb{bottom:113.120057pt;}
.y3c{bottom:115.680054pt;}
.yd4{bottom:119.360047pt;}
.y9e{bottom:124.960083pt;}
.y72{bottom:127.040039pt;}
.yf0{bottom:130.400086pt;}
.y105{bottom:131.040039pt;}
.yba{bottom:131.520081pt;}
.y3b{bottom:134.080079pt;}
.yd3{bottom:137.760071pt;}
.y9d{bottom:143.360047pt;}
.y71{bottom:146.080079pt;}
.yef{bottom:148.800049pt;}
.y104{bottom:149.440064pt;}
.yb9{bottom:149.920044pt;}
.y3a{bottom:152.480042pt;}
.yd2{bottom:156.160035pt;}
.y9c{bottom:161.760071pt;}
.y70{bottom:165.120057pt;}
.yee{bottom:167.200074pt;}
.y103{bottom:167.840088pt;}
.yb8{bottom:168.320069pt;}
.y39{bottom:170.880066pt;}
.yd1{bottom:174.240052pt;}
.y9b{bottom:180.160035pt;}
.y6f{bottom:184.160035pt;}
.yed{bottom:185.600037pt;}
.y102{bottom:186.240052pt;}
.yb7{bottom:186.720032pt;}
.y38{bottom:189.280030pt;}
.yd0{bottom:192.640076pt;}
.y9a{bottom:198.560059pt;}
.y6d{bottom:199.840088pt;}
.y6c{bottom:203.360047pt;}
.yec{bottom:204.000061pt;}
.y101{bottom:204.640076pt;}
.yb6{bottom:205.120057pt;}
.y37{bottom:207.680054pt;}
.ycf{bottom:211.360047pt;}
.y99{bottom:216.960083pt;}
.y6b{bottom:222.080079pt;}
.yeb{bottom:222.400086pt;}
.y100{bottom:223.040039pt;}
.yb5{bottom:223.520081pt;}
.yce{bottom:225.920044pt;}
.y36{bottom:226.080079pt;}
.y98{bottom:235.360047pt;}
.yea{bottom:240.800049pt;}
.y6a{bottom:241.120057pt;}
.yff{bottom:241.440064pt;}
.yb4{bottom:241.920044pt;}
.y35{bottom:244.480042pt;}
.y97{bottom:253.760071pt;}
.ye9{bottom:259.040039pt;}
.y69{bottom:259.520081pt;}
.yfe{bottom:259.840088pt;}
.yb3{bottom:260.320069pt;}
.y34{bottom:262.560059pt;}
.y96{bottom:272.160035pt;}
.ye8{bottom:277.440064pt;}
.y68{bottom:278.240052pt;}
.yb2{bottom:278.720032pt;}
.y33{bottom:281.280030pt;}
.y95{bottom:290.560059pt;}
.ye7{bottom:295.840088pt;}
.y67{bottom:296.640076pt;}
.yb1{bottom:297.120057pt;}
.y32{bottom:299.680054pt;}
.y94{bottom:308.960083pt;}
.ye6{bottom:314.240052pt;}
.yfd{bottom:314.720032pt;}
.y66{bottom:315.040039pt;}
.yb0{bottom:315.520081pt;}
.y31{bottom:318.080079pt;}
.y93{bottom:327.360047pt;}
.ye5{bottom:332.640076pt;}
.yfc{bottom:333.120057pt;}
.y65{bottom:333.440064pt;}
.yaf{bottom:333.600037pt;}
.y30{bottom:336.480042pt;}
.y92{bottom:345.760071pt;}
.ye4{bottom:351.040039pt;}
.y64{bottom:351.840088pt;}
.yae{bottom:352.000061pt;}
.y2f{bottom:354.880066pt;}
.y91{bottom:364.160035pt;}
.ye3{bottom:369.440064pt;}
.y63{bottom:370.240052pt;}
.yad{bottom:370.400086pt;}
.y2e{bottom:373.280030pt;}
.y90{bottom:382.560059pt;}
.yac{bottom:385.120057pt;}
.ye2{bottom:387.840088pt;}
.y62{bottom:388.640076pt;}
.y2d{bottom:391.680054pt;}
.yc7{bottom:397.605009pt;}
.y8f{bottom:400.960083pt;}
.ye1{bottom:406.240052pt;}
.y61{bottom:407.040039pt;}
.y2c{bottom:410.080079pt;}
.ybe{bottom:413.122734pt;}
.y8e{bottom:419.360047pt;}
.ye0{bottom:424.320069pt;}
.y60{bottom:425.440064pt;}
.y2b{bottom:428.160035pt;}
.ybf{bottom:434.885733pt;}
.y8d{bottom:437.760071pt;}
.ydf{bottom:442.720032pt;}
.y5f{bottom:443.840088pt;}
.y2a{bottom:446.880066pt;}
.ybd{bottom:452.166462pt;}
.y8c{bottom:456.160035pt;}
.yc0{bottom:456.644695pt;}
.yde{bottom:457.600037pt;}
.y5e{bottom:462.239464pt;}
.y5d{bottom:462.240052pt;}
.y29{bottom:465.280030pt;}
.yfb{bottom:467.684266pt;}
.y8b{bottom:474.560059pt;}
.yc1{bottom:478.407694pt;}
.y5c{bottom:480.640076pt;}
.yf5{bottom:483.368215pt;}
.y28{bottom:483.680054pt;}
.y8a{bottom:492.960083pt;}
.y5b{bottom:499.036274pt;}
.ycd{bottom:499.040039pt;}
.yc2{bottom:500.162619pt;}
.yf4{bottom:501.123078pt;}
.y27{bottom:502.080079pt;}
.y89{bottom:511.360047pt;}
.yf6{bottom:515.684460pt;}
.ycc{bottom:517.440064pt;}
.y5a{bottom:517.444430pt;}
.y26{bottom:520.480042pt;}
.yc3{bottom:521.925618pt;}
.y88{bottom:529.760071pt;}
.ycb{bottom:535.840088pt;}
.y59{bottom:535.842811pt;}
.y25{bottom:538.880066pt;}
.yc4{bottom:543.684541pt;}
.yf7{bottom:547.842635pt;}
.y87{bottom:548.160035pt;}
.yca{bottom:554.240052pt;}
.y58{bottom:554.241192pt;}
.y24{bottom:557.280030pt;}
.yc5{bottom:565.447540pt;}
.y86{bottom:566.560059pt;}
.y57{bottom:572.639572pt;}
.yc9{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.yf8{bottom:580.166954pt;}
.ybc{bottom:584.483080pt;}
.y85{bottom:584.960083pt;}
.yc6{bottom:587.202426pt;}
.y56{bottom:591.038001pt;}
.yc8{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.y84{bottom:603.360047pt;}
.yab{bottom:609.440064pt;}
.y55{bottom:609.446157pt;}
.y21{bottom:612.480072pt;}
.yf9{bottom:612.483200pt;}
.y83{bottom:621.760071pt;}
.yaa{bottom:627.840058pt;}
.y54{bottom:627.844538pt;}
.y20{bottom:630.560059pt;}
.yf3{bottom:637.605863pt;}
.y82{bottom:640.160065pt;}
.yfa{bottom:644.803482pt;}
.ya9{bottom:646.240052pt;}
.y53{bottom:646.240964pt;}
.y1f{bottom:648.640046pt;}
.y81{bottom:658.560059pt;}
.y1e{bottom:664.000061pt;}
.y52{bottom:664.639345pt;}
.ya8{bottom:664.640046pt;}
.ydd{bottom:666.240052pt;}
.y80{bottom:676.960053pt;}
.y1d{bottom:679.360047pt;}
.y51{bottom:683.037725pt;}
.ya7{bottom:683.040070pt;}
.ydc{bottom:684.640046pt;}
.y1c{bottom:695.040070pt;}
.y7f{bottom:695.360047pt;}
.ya6{bottom:701.440064pt;}
.y50{bottom:701.443926pt;}
.ydb{bottom:703.040070pt;}
.y1b{bottom:713.760071pt;}
.ya5{bottom:719.840058pt;}
.y4f{bottom:719.842355pt;}
.yda{bottom:721.440064pt;}
.y1a{bottom:732.160065pt;}
.ya4{bottom:738.240052pt;}
.y4e{bottom:738.240736pt;}
.yd9{bottom:739.840058pt;}
.y19{bottom:750.560059pt;}
.y7e{bottom:751.200074pt;}
.y4d{bottom:756.639117pt;}
.ya3{bottom:756.640046pt;}
.yd8{bottom:758.240052pt;}
.y18{bottom:768.960053pt;}
.y7d{bottom:770.240052pt;}
.y4c{bottom:775.037521pt;}
.ya2{bottom:775.040070pt;}
.yd7{bottom:776.640046pt;}
.y17{bottom:787.360047pt;}
.y7c{bottom:789.440064pt;}
.yd6{bottom:791.040070pt;}
.ya1{bottom:793.440064pt;}
.y4b{bottom:793.443722pt;}
.y16{bottom:805.760071pt;}
.y7b{bottom:808.480072pt;}
.y4a{bottom:811.840058pt;}
.y15{bottom:824.160065pt;}
.y7a{bottom:827.520050pt;}
.y49{bottom:830.240052pt;}
.y14{bottom:842.560059pt;}
.y79{bottom:846.560059pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:860.960053pt;}
.y78{bottom:865.600068pt;}
.y47{bottom:867.040055pt;}
.y12{bottom:879.040055pt;}
.y77{bottom:884.320054pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:897.440064pt;}
.y76{bottom:903.520066pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.y75{bottom:921.920060pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:934.240052pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:952.640061pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:989.280060pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.hd{height:17.919983pt;}
.h6{height:35.762584pt;}
.h4{height:42.651279pt;}
.he{height:44.300873pt;}
.ha{height:44.302918pt;}
.hb{height:46.220486pt;}
.h9{height:52.751981pt;}
.hc{height:53.374862pt;}
.h2{height:53.377005pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.hf{height:58.566137pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w5{width:8.000000pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x1f{left:80.320000pt;}
.x2d{left:84.320000pt;}
.x26{left:92.959999pt;}
.x31{left:97.120003pt;}
.x38{left:99.360001pt;}
.x8{left:109.921591pt;}
.x1e{left:113.279999pt;}
.x16{left:122.720001pt;}
.x30{left:128.479996pt;}
.xe{left:134.240005pt;}
.xd{left:136.639999pt;}
.x1c{left:144.320007pt;}
.xb{left:154.080002pt;}
.x20{left:156.960007pt;}
.x9{left:193.601065pt;}
.x17{left:198.882042pt;}
.x1b{left:212.160004pt;}
.xc{left:227.199997pt;}
.x18{left:233.119995pt;}
.x23{left:234.080002pt;}
.x24{left:236.320007pt;}
.x1a{left:240.479996pt;}
.x25{left:242.559998pt;}
.x22{left:245.119995pt;}
.x21{left:247.360001pt;}
.x37{left:263.040009pt;}
.x27{left:287.359985pt;}
.x2e{left:297.760010pt;}
.x32{left:351.679993pt;}
.x2b{left:357.279541pt;}
.x2a{left:363.835179pt;}
.x11{left:374.880005pt;}
.x2c{left:379.679993pt;}
.x35{left:382.399791pt;}
.x2f{left:383.519989pt;}
.x2{left:388.799988pt;}
.x13{left:395.200012pt;}
.xa{left:396.799988pt;}
.x28{left:407.839428pt;}
.x1d{left:417.119995pt;}
.x36{left:423.515263pt;}
.x33{left:439.357244pt;}
.x12{left:449.600006pt;}
.x14{left:462.559998pt;}
.x10{left:464.320007pt;}
.x29{left:475.357410pt;}
.x15{left:479.040009pt;}
.x34{left:508.954293pt;}
.xf{left:576.320007pt;}
.x19{left:639.840027pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x4{left:722.559998pt;}
}




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