
    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_28d7387ec5c25000db0ecae9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_4df604dd900304fba8fccaaf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_23e7dbf7b053a7b9c7b8fe5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b48df8ea4a25787c57379190.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fa2c8a9302cdb683eb571704.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1b00d40ab4bfa9f1f1ce3e18.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-25.920045px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v4{vertical-align:25.920041px;}
.v2{vertical-align:31.679901px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.094301px;}
.ls3{letter-spacing:0.950436px;}
.ls2{letter-spacing:17.279077px;}
.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:-79.203150px;}
.ws3{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.760900px;}
.ws6{word-spacing:-19.800788px;}
.ws4{word-spacing:-13.860563px;}
.ws5{word-spacing:-11.520450px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-24.332402px;}
._19{margin-left:-19.373586px;}
._7{margin-left:-12.593040px;}
._12{margin-left:-11.380881px;}
._1e{margin-left:-9.656486px;}
._3{margin-left:-8.442916px;}
._e{margin-left:-7.421787px;}
._5{margin-left:-6.269263px;}
._4{margin-left:-4.790141px;}
._8{margin-left:-3.744852px;}
._1{margin-left:-2.366552px;}
._6{margin-left:-1.071802px;}
._0{width:1.064507px;}
._d{width:2.338035px;}
._f{width:3.364581px;}
._10{width:4.466956px;}
._14{width:5.591794px;}
._1d{width:6.602096px;}
._13{width:7.603488px;}
._a{width:9.531648px;}
._9{width:10.709483px;}
._17{width:11.790047px;}
._b{width:13.134951px;}
._c{width:14.142469px;}
._11{width:15.872188px;}
._18{width:17.028676px;}
._1c{width:18.045015px;}
._15{width:25.634696px;}
._1a{width:27.345269px;}
._1b{width:28.352509px;}
._2{width:1697.919628px;}
.fc3{color:rgb(105,105,103);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(40,38,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:46.081800px;}
.fs4{font-size:55.442250px;}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y1e{bottom:41.040115px;}
.y53{bottom:97.920043px;}
.y99{bottom:101.520127px;}
.y7f{bottom:108.900055px;}
.y5d{bottom:113.580093px;}
.y46{bottom:121.320099px;}
.y52{bottom:121.680039px;}
.y98{bottom:130.140060px;}
.y5c{bottom:137.340088px;}
.yb6{bottom:145.260064px;}
.y51{bottom:145.440033px;}
.y45{bottom:149.940033px;}
.yed{bottom:153.540047px;}
.y97{bottom:158.580093px;}
.y5b{bottom:161.100083px;}
.yb5{bottom:169.020058px;}
.y50{bottom:169.200096px;}
.y44{bottom:178.560036px;}
.y23{bottom:178.920043px;}
.yec{bottom:181.980079px;}
.yd6{bottom:184.500068px;}
.y5a{bottom:184.860077px;}
.y96{bottom:187.200096px;}
.yb4{bottom:192.780052px;}
.y4f{bottom:192.960091px;}
.yd4{bottom:199.440033px;}
.y43{bottom:207.000068px;}
.y1c{bottom:207.360077px;}
.y59{bottom:208.800041px;}
.yeb{bottom:210.600083px;}
.yd5{bottom:213.120072px;}
.y95{bottom:215.640060px;}
.yb3{bottom:216.540047px;}
.y7e{bottom:223.020058px;}
.y58{bottom:232.560036px;}
.y42{bottom:235.620072px;}
.y22{bottom:235.980079px;}
.yb2{bottom:240.300041px;}
.y4e{bottom:240.480079px;}
.y94{bottom:244.260064px;}
.y7d{bottom:251.460091px;}
.y57{bottom:256.320099px;}
.yea{bottom:261.540047px;}
.y41{bottom:264.060036px;}
.y4d{bottom:264.240074px;}
.y1b{bottom:264.420043px;}
.y93{bottom:272.700096px;}
.yd3{bottom:276.300041px;}
.y56{bottom:280.080093px;}
.yb1{bottom:287.820099px;}
.y4c{bottom:288.000068px;}
.ye9{bottom:290.160049px;}
.y40{bottom:292.680039px;}
.y1a{bottom:293.040047px;}
.y92{bottom:301.320099px;}
.yd2{bottom:304.920043px;}
.y7c{bottom:308.520058px;}
.yb0{bottom:311.580093px;}
.y4b{bottom:311.940033px;}
.ye8{bottom:318.600083px;}
.y3f{bottom:321.120072px;}
.y21{bottom:321.480079px;}
.y91{bottom:329.760064px;}
.yd1{bottom:333.360077px;}
.yaf{bottom:335.340088px;}
.y7b{bottom:337.140060px;}
.y3e{bottom:349.740074px;}
.y19{bottom:350.100083px;}
.y90{bottom:358.380066px;}
.yae{bottom:359.100083px;}
.y4a{bottom:359.460091px;}
.yd0{bottom:361.980079px;}
.y7a{bottom:365.580093px;}
.ye7{bottom:369.540047px;}
.y3d{bottom:378.180039px;}
.y18{bottom:378.540047px;}
.y49{bottom:389.700096px;}
.ycf{bottom:390.420043px;}
.y79{bottom:394.200096px;}
.ye6{bottom:398.160049px;}
.y3c{bottom:406.800041px;}
.y17{bottom:407.160049px;}
.y8f{bottom:415.440033px;}
.yad{bottom:416.160049px;}
.yce{bottom:419.040047px;}
.yf9{bottom:426.600083px;}
.y48{bottom:435.240074px;}
.y16{bottom:435.600083px;}
.y8e{bottom:439.200096px;}
.yac{bottom:444.780052px;}
.ycd{bottom:447.480079px;}
.ye5{bottom:449.100083px;}
.yf8{bottom:455.220085px;}
.y8d{bottom:462.960091px;}
.y3b{bottom:463.860077px;}
.y15{bottom:464.220085px;}
.y78{bottom:470.340088px;}
.yab{bottom:473.220085px;}
.ycc{bottom:476.100083px;}
.ye4{bottom:477.720085px;}
.y8c{bottom:486.720085px;}
.y47{bottom:492.300041px;}
.y14{bottom:492.660049px;}
.y77{bottom:494.100083px;}
.yaa{bottom:501.840088px;}
.ycb{bottom:504.540047px;}
.yf7{bottom:506.160049px;}
.y8b{bottom:510.480079px;}
.y76{bottom:517.860077px;}
.y3a{bottom:520.920043px;}
.y13{bottom:521.280052px;}
.ye3{bottom:528.660049px;}
.ya9{bottom:530.280052px;}
.yca{bottom:533.160049px;}
.yf6{bottom:534.780052px;}
.y75{bottom:541.620072px;}
.y39{bottom:549.360077px;}
.y12{bottom:549.720085px;}
.ye2{bottom:557.280052px;}
.y8a{bottom:558.180039px;}
.ya8{bottom:558.900055px;}
.yf5{bottom:563.220085px;}
.y74{bottom:565.380066px;}
.y38{bottom:577.980079px;}
.y11{bottom:578.340088px;}
.y89{bottom:581.940033px;}
.ya7{bottom:587.340088px;}
.y73{bottom:589.140060px;}
.yc9{bottom:590.220085px;}
.yf4{bottom:591.840088px;}
.y88{bottom:605.700096px;}
.y37{bottom:606.420043px;}
.y10{bottom:606.780052px;}
.ye1{bottom:608.220085px;}
.y72{bottom:612.900055px;}
.ya6{bottom:615.960091px;}
.yc8{bottom:618.660049px;}
.y36{bottom:635.040047px;}
.yf{bottom:635.400055px;}
.y71{bottom:636.660049px;}
.yf3{bottom:642.780052px;}
.ya5{bottom:644.400055px;}
.yc7{bottom:647.280052px;}
.y87{bottom:653.220085px;}
.y70{bottom:660.420043px;}
.y35{bottom:663.480079px;}
.ye{bottom:663.840088px;}
.ye0{bottom:665.280052px;}
.yf2{bottom:671.400055px;}
.ya4{bottom:673.020058px;}
.y86{bottom:676.980079px;}
.y6f{bottom:684.180039px;}
.y34{bottom:692.100083px;}
.yd{bottom:692.460056px;}
.ydf{bottom:693.900055px;}
.y85{bottom:700.740074px;}
.ya3{bottom:701.460056px;}
.yc6{bottom:704.340054px;}
.y6e{bottom:707.940067px;}
.y33{bottom:720.540081px;}
.yc{bottom:720.900055px;}
.yde{bottom:722.340054px;}
.y84{bottom:724.500068px;}
.ya2{bottom:730.080059px;}
.y6d{bottom:731.880066px;}
.yc5{bottom:732.780052px;}
.y83{bottom:748.260064px;}
.y32{bottom:749.160049px;}
.yb{bottom:749.520058px;}
.yf1{bottom:750.960056px;}
.ya1{bottom:758.520058px;}
.yc4{bottom:761.400055px;}
.y82{bottom:772.020058px;}
.ydd{bottom:773.280052px;}
.y31{bottom:777.600083px;}
.ya{bottom:777.960056px;}
.y6c{bottom:779.400055px;}
.yc3{bottom:789.840054px;}
.y81{bottom:795.780052px;}
.ydc{bottom:801.900055px;}
.y6b{bottom:803.160049px;}
.y30{bottom:806.220051px;}
.yc2{bottom:818.460056px;}
.y80{bottom:819.540081px;}
.y6a{bottom:826.920078px;}
.yf0{bottom:830.340054px;}
.y2f{bottom:834.660049px;}
.y55{bottom:835.020058px;}
.ya0{bottom:844.200061px;}
.yc1{bottom:846.900055px;}
.y69{bottom:850.680073px;}
.ydb{bottom:852.840054px;}
.yef{bottom:858.960056px;}
.y2e{bottom:863.280052px;}
.y20{bottom:863.640060px;}
.y9f{bottom:867.960056px;}
.yc0{bottom:875.520058px;}
.yda{bottom:881.460056px;}
.y2d{bottom:891.720051px;}
.y9{bottom:892.080059px;}
.y68{bottom:898.200061px;}
.ybf{bottom:903.960056px;}
.yd9{bottom:909.900055px;}
.y9e{bottom:915.480079px;}
.y2c{bottom:920.340054px;}
.y8{bottom:920.700061px;}
.y67{bottom:921.960056px;}
.ybe{bottom:932.580059px;}
.y9d{bottom:939.240074px;}
.y66{bottom:945.720051px;}
.y2b{bottom:948.780053px;}
.y7{bottom:949.140060px;}
.ybd{bottom:961.020058px;}
.y9c{bottom:963.000068px;}
.y65{bottom:969.480079px;}
.y2a{bottom:977.400072px;}
.y6{bottom:977.760064px;}
.y9b{bottom:986.760064px;}
.yd8{bottom:989.460074px;}
.ybc{bottom:989.640060px;}
.y64{bottom:993.240074px;}
.y29{bottom:1005.840070px;}
.y5{bottom:1006.200061px;}
.y9a{bottom:1010.700061px;}
.y63{bottom:1017.180073px;}
.ybb{bottom:1018.080059px;}
.y28{bottom:1034.460074px;}
.y1f{bottom:1034.820065px;}
.yee{bottom:1040.400072px;}
.y62{bottom:1040.940067px;}
.y27{bottom:1062.900072px;}
.y4{bottom:1063.260064px;}
.y61{bottom:1064.700061px;}
.yd7{bottom:1069.020058px;}
.yba{bottom:1075.140060px;}
.y60{bottom:1088.460074px;}
.y26{bottom:1091.520058px;}
.y54{bottom:1091.880066px;}
.y1d{bottom:1098.720068px;}
.yb9{bottom:1103.760064px;}
.y5f{bottom:1112.220068px;}
.y25{bottom:1119.960065px;}
.y3{bottom:1120.320065px;}
.yb8{bottom:1127.520066px;}
.y5e{bottom:1135.980063px;}
.y24{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.yb7{bottom:1151.280069px;}
.ha{height:43.576078px;}
.hc{height:43.576353px;}
.h5{height:55.302981px;}
.h7{height:55.596662px;}
.h6{height:57.534328px;}
.h8{height:64.414315px;}
.h9{height:65.992187px;}
.h2{height:67.837080px;}
.hb{height:69.496123px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:89.819996px;}
.x1{left:140.939999px;}
.x7{left:147.599997px;}
.x6{left:149.939999px;}
.x3{left:165.240006px;}
.x10{left:174.240006px;}
.x12{left:210.599997px;}
.x11{left:224.639992px;}
.x2{left:248.400003px;}
.x19{left:257.939999px;}
.x5{left:267.840002px;}
.x18{left:287.819996px;}
.xb{left:308.160015px;}
.x4{left:313.019989px;}
.x15{left:314.459988px;}
.xf{left:338.579990px;}
.x1b{left:346.139992px;}
.x9{left:349.920010px;}
.xe{left:360.360008px;}
.x17{left:365.040012px;}
.x8{left:370.439999px;}
.x14{left:398.879998px;}
.x1c{left:402.480011px;}
.xa{left:419.579990px;}
.x16{left:449.279983px;}
.xc{left:533.339985px;}
.x1a{left:617.399987px;}
.x13{left:745.919975px;}
@media print{
.v3{vertical-align:-23.040040pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v4{vertical-align:23.040036pt;}
.v2{vertical-align:28.159912pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.083823pt;}
.ls3{letter-spacing:0.844832pt;}
.ls2{letter-spacing:15.359180pt;}
.ws1{word-spacing:-70.402800pt;}
.ws3{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.120800pt;}
.ws6{word-spacing:-17.600700pt;}
.ws4{word-spacing:-12.320500pt;}
.ws5{word-spacing:-10.240400pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-21.628802pt;}
._19{margin-left:-17.220965pt;}
._7{margin-left:-11.193813pt;}
._12{margin-left:-10.116339pt;}
._1e{margin-left:-8.583543pt;}
._3{margin-left:-7.504814pt;}
._e{margin-left:-6.597144pt;}
._5{margin-left:-5.572678pt;}
._4{margin-left:-4.257903pt;}
._8{margin-left:-3.328757pt;}
._1{margin-left:-2.103602pt;}
._6{margin-left:-0.952712pt;}
._0{width:0.946228pt;}
._d{width:2.078254pt;}
._f{width:2.990738pt;}
._10{width:3.970628pt;}
._14{width:4.970483pt;}
._1d{width:5.868530pt;}
._13{width:6.758656pt;}
._a{width:8.472576pt;}
._9{width:9.519541pt;}
._17{width:10.480042pt;}
._b{width:11.675512pt;}
._c{width:12.571084pt;}
._11{width:14.108612pt;}
._18{width:15.136601pt;}
._1c{width:16.040013pt;}
._15{width:22.786397pt;}
._1a{width:24.306906pt;}
._1b{width:25.202230pt;}
._2{width:1509.261892pt;}
.fs5{font-size:40.961600pt;}
.fs4{font-size:49.282000pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y1e{bottom:36.480103pt;}
.y53{bottom:87.040039pt;}
.y99{bottom:90.240113pt;}
.y7f{bottom:96.800049pt;}
.y5d{bottom:100.960083pt;}
.y46{bottom:107.840088pt;}
.y52{bottom:108.160035pt;}
.y98{bottom:115.680054pt;}
.y5c{bottom:122.080079pt;}
.yb6{bottom:129.120057pt;}
.y51{bottom:129.280030pt;}
.y45{bottom:133.280030pt;}
.yed{bottom:136.480042pt;}
.y97{bottom:140.960083pt;}
.y5b{bottom:143.200074pt;}
.yb5{bottom:150.240052pt;}
.y50{bottom:150.400086pt;}
.y44{bottom:158.720032pt;}
.y23{bottom:159.040039pt;}
.yec{bottom:161.760071pt;}
.yd6{bottom:164.000061pt;}
.y5a{bottom:164.320069pt;}
.y96{bottom:166.400086pt;}
.yb4{bottom:171.360047pt;}
.y4f{bottom:171.520081pt;}
.yd4{bottom:177.280030pt;}
.y43{bottom:184.000061pt;}
.y1c{bottom:184.320069pt;}
.y59{bottom:185.600037pt;}
.yeb{bottom:187.200074pt;}
.yd5{bottom:189.440064pt;}
.y95{bottom:191.680054pt;}
.yb3{bottom:192.480042pt;}
.y7e{bottom:198.240052pt;}
.y58{bottom:206.720032pt;}
.y42{bottom:209.440064pt;}
.y22{bottom:209.760071pt;}
.yb2{bottom:213.600037pt;}
.y4e{bottom:213.760071pt;}
.y94{bottom:217.120057pt;}
.y7d{bottom:223.520081pt;}
.y57{bottom:227.840088pt;}
.yea{bottom:232.480042pt;}
.y41{bottom:234.720032pt;}
.y4d{bottom:234.880066pt;}
.y1b{bottom:235.040039pt;}
.y93{bottom:242.400086pt;}
.yd3{bottom:245.600037pt;}
.y56{bottom:248.960083pt;}
.yb1{bottom:255.840088pt;}
.y4c{bottom:256.000061pt;}
.ye9{bottom:257.920044pt;}
.y40{bottom:260.160035pt;}
.y1a{bottom:260.480042pt;}
.y92{bottom:267.840088pt;}
.yd2{bottom:271.040039pt;}
.y7c{bottom:274.240052pt;}
.yb0{bottom:276.960083pt;}
.y4b{bottom:277.280030pt;}
.ye8{bottom:283.200074pt;}
.y3f{bottom:285.440064pt;}
.y21{bottom:285.760071pt;}
.y91{bottom:293.120057pt;}
.yd1{bottom:296.320069pt;}
.yaf{bottom:298.080079pt;}
.y7b{bottom:299.680054pt;}
.y3e{bottom:310.880066pt;}
.y19{bottom:311.200074pt;}
.y90{bottom:318.560059pt;}
.yae{bottom:319.200074pt;}
.y4a{bottom:319.520081pt;}
.yd0{bottom:321.760071pt;}
.y7a{bottom:324.960083pt;}
.ye7{bottom:328.480042pt;}
.y3d{bottom:336.160035pt;}
.y18{bottom:336.480042pt;}
.y49{bottom:346.400086pt;}
.ycf{bottom:347.040039pt;}
.y79{bottom:350.400086pt;}
.ye6{bottom:353.920044pt;}
.y3c{bottom:361.600037pt;}
.y17{bottom:361.920044pt;}
.y8f{bottom:369.280030pt;}
.yad{bottom:369.920044pt;}
.yce{bottom:372.480042pt;}
.yf9{bottom:379.200074pt;}
.y48{bottom:386.880066pt;}
.y16{bottom:387.200074pt;}
.y8e{bottom:390.400086pt;}
.yac{bottom:395.360047pt;}
.ycd{bottom:397.760071pt;}
.ye5{bottom:399.200074pt;}
.yf8{bottom:404.640076pt;}
.y8d{bottom:411.520081pt;}
.y3b{bottom:412.320069pt;}
.y15{bottom:412.640076pt;}
.y78{bottom:418.080079pt;}
.yab{bottom:420.640076pt;}
.ycc{bottom:423.200074pt;}
.ye4{bottom:424.640076pt;}
.y8c{bottom:432.640076pt;}
.y47{bottom:437.600037pt;}
.y14{bottom:437.920044pt;}
.y77{bottom:439.200074pt;}
.yaa{bottom:446.080079pt;}
.ycb{bottom:448.480042pt;}
.yf7{bottom:449.920044pt;}
.y8b{bottom:453.760071pt;}
.y76{bottom:460.320069pt;}
.y3a{bottom:463.040039pt;}
.y13{bottom:463.360047pt;}
.ye3{bottom:469.920044pt;}
.ya9{bottom:471.360047pt;}
.yca{bottom:473.920044pt;}
.yf6{bottom:475.360047pt;}
.y75{bottom:481.440064pt;}
.y39{bottom:488.320069pt;}
.y12{bottom:488.640076pt;}
.ye2{bottom:495.360047pt;}
.y8a{bottom:496.160035pt;}
.ya8{bottom:496.800049pt;}
.yf5{bottom:500.640076pt;}
.y74{bottom:502.560059pt;}
.y38{bottom:513.760071pt;}
.y11{bottom:514.080079pt;}
.y89{bottom:517.280030pt;}
.ya7{bottom:522.080079pt;}
.y73{bottom:523.680054pt;}
.yc9{bottom:524.640076pt;}
.yf4{bottom:526.080079pt;}
.y88{bottom:538.400086pt;}
.y37{bottom:539.040039pt;}
.y10{bottom:539.360047pt;}
.ye1{bottom:540.640076pt;}
.y72{bottom:544.800049pt;}
.ya6{bottom:547.520081pt;}
.yc8{bottom:549.920044pt;}
.y36{bottom:564.480042pt;}
.yf{bottom:564.800049pt;}
.y71{bottom:565.920044pt;}
.yf3{bottom:571.360047pt;}
.ya5{bottom:572.800049pt;}
.yc7{bottom:575.360047pt;}
.y87{bottom:580.640076pt;}
.y70{bottom:587.040039pt;}
.y35{bottom:589.760071pt;}
.ye{bottom:590.080079pt;}
.ye0{bottom:591.360047pt;}
.yf2{bottom:596.800049pt;}
.ya4{bottom:598.240052pt;}
.y86{bottom:601.760071pt;}
.y6f{bottom:608.160035pt;}
.y34{bottom:615.200074pt;}
.yd{bottom:615.520050pt;}
.ydf{bottom:616.800049pt;}
.y85{bottom:622.880066pt;}
.ya3{bottom:623.520050pt;}
.yc6{bottom:626.080048pt;}
.y6e{bottom:629.280060pt;}
.y33{bottom:640.480072pt;}
.yc{bottom:640.800049pt;}
.yde{bottom:642.080048pt;}
.y84{bottom:644.000061pt;}
.ya2{bottom:648.960053pt;}
.y6d{bottom:650.560059pt;}
.yc5{bottom:651.360047pt;}
.y83{bottom:665.120057pt;}
.y32{bottom:665.920044pt;}
.yb{bottom:666.240052pt;}
.yf1{bottom:667.520050pt;}
.ya1{bottom:674.240052pt;}
.yc4{bottom:676.800049pt;}
.y82{bottom:686.240052pt;}
.ydd{bottom:687.360047pt;}
.y31{bottom:691.200074pt;}
.ya{bottom:691.520050pt;}
.y6c{bottom:692.800049pt;}
.yc3{bottom:702.080048pt;}
.y81{bottom:707.360047pt;}
.ydc{bottom:712.800049pt;}
.y6b{bottom:713.920044pt;}
.y30{bottom:716.640046pt;}
.yc2{bottom:727.520050pt;}
.y80{bottom:728.480072pt;}
.y6a{bottom:735.040070pt;}
.yf0{bottom:738.080048pt;}
.y2f{bottom:741.920044pt;}
.y55{bottom:742.240052pt;}
.ya0{bottom:750.400055pt;}
.yc1{bottom:752.800049pt;}
.y69{bottom:756.160065pt;}
.ydb{bottom:758.080048pt;}
.yef{bottom:763.520050pt;}
.y2e{bottom:767.360047pt;}
.y20{bottom:767.680054pt;}
.y9f{bottom:771.520050pt;}
.yc0{bottom:778.240052pt;}
.yda{bottom:783.520050pt;}
.y2d{bottom:792.640046pt;}
.y9{bottom:792.960053pt;}
.y68{bottom:798.400055pt;}
.ybf{bottom:803.520050pt;}
.yd9{bottom:808.800049pt;}
.y9e{bottom:813.760071pt;}
.y2c{bottom:818.080048pt;}
.y8{bottom:818.400055pt;}
.y67{bottom:819.520050pt;}
.ybe{bottom:828.960053pt;}
.y9d{bottom:834.880066pt;}
.y66{bottom:840.640046pt;}
.y2b{bottom:843.360047pt;}
.y7{bottom:843.680054pt;}
.ybd{bottom:854.240052pt;}
.y9c{bottom:856.000061pt;}
.y65{bottom:861.760071pt;}
.y2a{bottom:868.800064pt;}
.y6{bottom:869.120057pt;}
.y9b{bottom:877.120057pt;}
.yd8{bottom:879.520066pt;}
.ybc{bottom:879.680054pt;}
.y64{bottom:882.880066pt;}
.y29{bottom:894.080063pt;}
.y5{bottom:894.400055pt;}
.y9a{bottom:898.400055pt;}
.y63{bottom:904.160065pt;}
.ybb{bottom:904.960053pt;}
.y28{bottom:919.520066pt;}
.y1f{bottom:919.840058pt;}
.yee{bottom:924.800064pt;}
.y62{bottom:925.280060pt;}
.y27{bottom:944.800064pt;}
.y4{bottom:945.120057pt;}
.y61{bottom:946.400055pt;}
.yd7{bottom:950.240052pt;}
.yba{bottom:955.680054pt;}
.y60{bottom:967.520066pt;}
.y26{bottom:970.240052pt;}
.y54{bottom:970.560059pt;}
.y1d{bottom:976.640061pt;}
.yb9{bottom:981.120057pt;}
.y5f{bottom:988.640061pt;}
.y25{bottom:995.520058pt;}
.y3{bottom:995.840058pt;}
.yb8{bottom:1002.240059pt;}
.y5e{bottom:1009.760056pt;}
.y24{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.yb7{bottom:1023.360062pt;}
.ha{height:38.734292pt;}
.hc{height:38.734536pt;}
.h5{height:49.158205pt;}
.h7{height:49.419255pt;}
.h6{height:51.141625pt;}
.h8{height:57.257169pt;}
.h9{height:58.659722pt;}
.h2{height:60.299627pt;}
.hb{height:61.774332pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:79.839996pt;}
.x1{left:125.279999pt;}
.x7{left:131.199997pt;}
.x6{left:133.279999pt;}
.x3{left:146.880005pt;}
.x10{left:154.880005pt;}
.x12{left:187.199997pt;}
.x11{left:199.679993pt;}
.x2{left:220.800003pt;}
.x19{left:229.279999pt;}
.x5{left:238.080002pt;}
.x18{left:255.839996pt;}
.xb{left:273.920013pt;}
.x4{left:278.239990pt;}
.x15{left:279.519989pt;}
.xf{left:300.959991pt;}
.x1b{left:307.679993pt;}
.x9{left:311.040009pt;}
.xe{left:320.320007pt;}
.x17{left:324.480011pt;}
.x8{left:329.279999pt;}
.x14{left:354.559998pt;}
.x1c{left:357.760010pt;}
.xa{left:372.959991pt;}
.x16{left:399.359985pt;}
.xc{left:474.079987pt;}
.x1a{left:548.799988pt;}
.x13{left:663.039978pt;}
}




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