
    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_19dee0e51c267589335c023b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_75627789d91efad10d4deab1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_ce8dac7eb7ffeb6fa56cb0f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_b9e4229cb6cefa1b8c7b1c21.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_e68db1c7826169269117b6ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_201aebc63d6b17d1ae09d422.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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;}
.m1{transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245193,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.187800px;}
.ls4{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.017280px;}
.ls1e{letter-spacing:0.025920px;}
.ls18{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.504000px;}
.ls29{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.440000px;}
.ls8{letter-spacing:8.640000px;}
.ls7{letter-spacing:9.360000px;}
.ls2{letter-spacing:11.520000px;}
.ls11{letter-spacing:12.960000px;}
.ls3{letter-spacing:23.040000px;}
.lsa{letter-spacing:25.920000px;}
.lsf{letter-spacing:30.240000px;}
.ls10{letter-spacing:30.960000px;}
.ls23{letter-spacing:31.680000px;}
.lse{letter-spacing:36.000000px;}
.lsd{letter-spacing:36.900000px;}
.ls25{letter-spacing:38.160000px;}
.lsc{letter-spacing:40.320000px;}
.ls9{letter-spacing:42.480000px;}
.ls14{letter-spacing:45.360000px;}
.ls16{letter-spacing:47.520000px;}
.ls15{letter-spacing:68.400000px;}
.ls22{letter-spacing:72.720000px;}
.ls13{letter-spacing:80.616000px;}
.ls26{letter-spacing:114.480000px;}
.ls27{letter-spacing:122.400000px;}
.ls20{letter-spacing:123.840000px;}
.ls21{letter-spacing:126.720000px;}
.ls24{letter-spacing:175.680000px;}
.ls2a{letter-spacing:188.040000px;}
.ls5{letter-spacing:211.080000px;}
.ls28{letter-spacing:224.040000px;}
.ls1c{letter-spacing:251.976000px;}
.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;}
}
.wsd{word-spacing:-30.060000px;}
.ws1{word-spacing:-21.060000px;}
.wsc{word-spacing:-19.465920px;}
.wsa{word-spacing:-19.457280px;}
.wsb{word-spacing:-19.440000px;}
.ws7{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.280000px;}
.ws9{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.238800px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-9.036720px;}
._27{margin-left:-7.344000px;}
._4{margin-left:-6.192000px;}
._3{margin-left:-5.004000px;}
._6{margin-left:-3.744000px;}
._1{margin-left:-2.568240px;}
._2{margin-left:-1.008000px;}
._0{width:1.513440px;}
._14{width:3.168000px;}
._13{width:4.872000px;}
._12{width:6.120000px;}
._10{width:7.560000px;}
._11{width:8.712000px;}
._e{width:9.864000px;}
._f{width:10.956000px;}
._21{width:12.312000px;}
._9{width:13.608000px;}
._2b{width:14.664000px;}
._30{width:15.672000px;}
._15{width:16.680000px;}
._a{width:19.224000px;}
._16{width:20.290560px;}
._22{width:21.360000px;}
._d{width:22.968000px;}
._c{width:24.480000px;}
._2f{width:26.136000px;}
._1d{width:27.216000px;}
._17{width:28.584000px;}
._18{width:29.818560px;}
._2c{width:31.404000px;}
._2e{width:32.616000px;}
._26{width:34.128000px;}
._2d{width:35.532240px;}
._25{width:37.115760px;}
._28{width:38.147760px;}
._19{width:39.348240px;}
._31{width:40.536000px;}
._1a{width:42.024000px;}
._34{width:43.176000px;}
._b{width:44.208000px;}
._33{width:45.517440px;}
._1c{width:46.872000px;}
._20{width:48.288000px;}
._1b{width:49.414560px;}
._1e{width:50.616000px;}
._1f{width:51.624000px;}
._8{width:54.072000px;}
._32{width:56.075040px;}
._37{width:58.104000px;}
._38{width:59.326560px;}
._7{width:64.440000px;}
._23{width:79.992000px;}
._24{width:81.072000px;}
._35{width:93.312000px;}
._36{width:94.750560px;}
._29{width:104.016000px;}
._2a{width:105.288000px;}
._39{width:115.344000px;}
._3a{width:116.352000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:120.240000px;}
.y90{bottom:-15.405000px;}
.y8d{bottom:-15.225000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:3.855000px;}
.y92{bottom:3.990000px;}
.y8f{bottom:4.035000px;}
.y94{bottom:4.170000px;}
.y8c{bottom:4.215000px;}
.y9f{bottom:6.015000px;}
.ya4{bottom:6.330000px;}
.y4b{bottom:7.020000px;}
.y6d{bottom:7.200000px;}
.y97{bottom:11.910000px;}
.y4e{bottom:30.600000px;}
.y50{bottom:30.780000px;}
.y6c{bottom:30.960000px;}
.y72{bottom:44.100000px;}
.y55{bottom:54.540000px;}
.y4d{bottom:54.570000px;}
.y53{bottom:54.720000px;}
.y4f{bottom:54.750000px;}
.y6b{bottom:54.765000px;}
.ya1{bottom:58.350000px;}
.y57{bottom:58.680000px;}
.y6{bottom:69.480000px;}
.y68{bottom:78.300000px;}
.y54{bottom:78.480000px;}
.y6a{bottom:78.525000px;}
.y52{bottom:78.660000px;}
.y9d{bottom:96.300000px;}
.ycc{bottom:97.560000px;}
.y31{bottom:97.740000px;}
.y70{bottom:101.880000px;}
.y4c{bottom:104.220000px;}
.y88{bottom:109.980000px;}
.y9c{bottom:120.060000px;}
.ycb{bottom:121.320000px;}
.y30{bottom:121.500000px;}
.y87{bottom:133.740000px;}
.y9b{bottom:143.820000px;}
.yca{bottom:145.080000px;}
.y2f{bottom:145.260000px;}
.ycd{bottom:145.440000px;}
.y86{bottom:157.530000px;}
.y9a{bottom:167.610000px;}
.yc9{bottom:168.870000px;}
.y2e{bottom:169.410000px;}
.y4a{bottom:176.430000px;}
.y6f{bottom:177.510000px;}
.y85{bottom:181.290000px;}
.yc8{bottom:192.810000px;}
.y2d{bottom:193.170000px;}
.y99{bottom:194.790000px;}
.y49{bottom:208.470000px;}
.y84{bottom:210.810000px;}
.y98{bottom:214.590000px;}
.yc7{bottom:216.570000px;}
.y2c{bottom:216.930000px;}
.y96{bottom:228.960000px;}
.y48{bottom:232.410000px;}
.yc6{bottom:240.330000px;}
.y2b{bottom:240.690000px;}
.y47{bottom:256.170000px;}
.ya3{bottom:260.640000px;}
.yc5{bottom:264.090000px;}
.y2a{bottom:264.630000px;}
.y6e{bottom:276.690000px;}
.y46{bottom:279.930000px;}
.yc4{bottom:288.030000px;}
.y29{bottom:288.390000px;}
.y95{bottom:288.540000px;}
.y45{bottom:303.690000px;}
.yc3{bottom:311.790000px;}
.y28{bottom:312.150000px;}
.y44{bottom:327.630000px;}
.ya0{bottom:328.140000px;}
.yc2{bottom:335.550000px;}
.y27{bottom:335.910000px;}
.y93{bottom:341.280000px;}
.y69{bottom:350.850000px;}
.y43{bottom:351.390000px;}
.ya2{bottom:352.650000px;}
.yc1{bottom:359.310000px;}
.y26{bottom:359.670000px;}
.y42{bottom:375.150000px;}
.yc0{bottom:383.250000px;}
.y25{bottom:383.610000px;}
.y91{bottom:394.380000px;}
.y41{bottom:398.910000px;}
.ybf{bottom:407.055000px;}
.y24{bottom:407.415000px;}
.y40{bottom:422.895000px;}
.ybe{bottom:430.815000px;}
.y23{bottom:431.175000px;}
.y3f{bottom:446.655000px;}
.y8e{bottom:447.300000px;}
.y67{bottom:449.715000px;}
.ybd{bottom:454.575000px;}
.y22{bottom:454.935000px;}
.y9e{bottom:464.940000px;}
.y3e{bottom:470.415000px;}
.ybc{bottom:478.515000px;}
.y21{bottom:478.875000px;}
.y3d{bottom:494.175000px;}
.y8b{bottom:500.040000px;}
.ybb{bottom:502.275000px;}
.y20{bottom:502.635000px;}
.y3c{bottom:517.935000px;}
.yba{bottom:526.035000px;}
.y1f{bottom:526.395000px;}
.y3b{bottom:541.875000px;}
.y66{bottom:548.895000px;}
.yb9{bottom:549.795000px;}
.y1e{bottom:550.155000px;}
.y89{bottom:553.140000px;}
.y3a{bottom:565.635000px;}
.yb8{bottom:573.735000px;}
.y1d{bottom:574.095000px;}
.y39{bottom:589.395000px;}
.y65{bottom:595.155000px;}
.yb7{bottom:597.495000px;}
.y1c{bottom:597.855000px;}
.y83{bottom:600.375000px;}
.y38{bottom:613.155000px;}
.y64{bottom:618.915000px;}
.yb6{bottom:621.255000px;}
.y1b{bottom:621.615000px;}
.y82{bottom:624.135000px;}
.y37{bottom:637.095000px;}
.y63{bottom:642.675000px;}
.yb5{bottom:645.015000px;}
.y1a{bottom:645.375000px;}
.y81{bottom:647.895000px;}
.y36{bottom:660.705000px;}
.y62{bottom:666.645000px;}
.yb4{bottom:668.805000px;}
.y19{bottom:669.345000px;}
.y80{bottom:671.685000px;}
.y35{bottom:687.525000px;}
.y61{bottom:690.405000px;}
.yb3{bottom:692.745000px;}
.y18{bottom:693.105000px;}
.y7f{bottom:695.625000px;}
.y34{bottom:711.105000px;}
.y60{bottom:713.985000px;}
.yb2{bottom:716.505000px;}
.y17{bottom:716.865000px;}
.y7e{bottom:719.385000px;}
.y33{bottom:737.925000px;}
.y5f{bottom:738.105000px;}
.yb1{bottom:740.265000px;}
.y16{bottom:740.625000px;}
.y7d{bottom:743.145000px;}
.y32{bottom:761.685000px;}
.y5e{bottom:761.865000px;}
.yb0{bottom:764.025000px;}
.y15{bottom:764.565000px;}
.y7c{bottom:766.905000px;}
.y5d{bottom:785.625000px;}
.yaf{bottom:787.965000px;}
.y14{bottom:788.325000px;}
.y7b{bottom:790.845000px;}
.y5c{bottom:809.385000px;}
.yae{bottom:811.725000px;}
.y13{bottom:812.085000px;}
.y7a{bottom:814.605000px;}
.y5b{bottom:833.325000px;}
.yad{bottom:835.485000px;}
.y12{bottom:835.845000px;}
.y79{bottom:838.365000px;}
.y5a{bottom:857.085000px;}
.yac{bottom:859.245000px;}
.y11{bottom:859.605000px;}
.y78{bottom:862.125000px;}
.y59{bottom:880.845000px;}
.yab{bottom:883.185000px;}
.y10{bottom:883.545000px;}
.y77{bottom:886.065000px;}
.y58{bottom:904.650000px;}
.yaa{bottom:906.990000px;}
.yf{bottom:907.350000px;}
.y76{bottom:909.870000px;}
.y56{bottom:922.290000px;}
.ya9{bottom:930.750000px;}
.ye{bottom:931.110000px;}
.y75{bottom:933.630000px;}
.ya8{bottom:954.510000px;}
.yd{bottom:954.870000px;}
.y74{bottom:957.390000px;}
.y73{bottom:978.270000px;}
.ya7{bottom:978.450000px;}
.yc{bottom:978.810000px;}
.ya6{bottom:1002.210000px;}
.yb{bottom:1002.570000px;}
.y51{bottom:1018.230000px;}
.ya5{bottom:1025.970000px;}
.ya{bottom:1026.330000px;}
.y9{bottom:1050.090000px;}
.y71{bottom:1052.970000px;}
.y8{bottom:1074.030000px;}
.y7{bottom:1097.790000px;}
.y5{bottom:1130.550000px;}
.y4{bottom:1162.440000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1220.940000px;}
.y1{bottom:1238.220000px;}
.h19{height:19.620000px;}
.h1b{height:19.800000px;}
.hc{height:24.120000px;}
.h10{height:26.460000px;}
.h1e{height:30.420000px;}
.h21{height:30.600000px;}
.h1d{height:34.920000px;}
.h2{height:42.164648px;}
.h6{height:50.800781px;}
.h16{height:60.840000px;}
.h3{height:62.211094px;}
.h9{height:63.457031px;}
.h1c{height:68.533594px;}
.h8{height:70.664062px;}
.hd{height:71.496000px;}
.h18{height:71.824219px;}
.h13{height:73.440000px;}
.h17{height:73.980000px;}
.hb{height:74.004654px;}
.h15{height:74.916000px;}
.h7{height:74.953125px;}
.h1a{height:76.317188px;}
.h20{height:81.720000px;}
.h5{height:82.676953px;}
.ha{height:86.585445px;}
.h4{height:87.695156px;}
.hf{height:95.220000px;}
.he{height:95.580000px;}
.h12{height:97.956000px;}
.h11{height:98.280000px;}
.h14{height:98.460000px;}
.h1f{height:118.008984px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:95.400000px;}
.we{width:95.760000px;}
.w11{width:106.200000px;}
.w8{width:117.720000px;}
.w10{width:163.980000px;}
.w3{width:230.430000px;}
.wb{width:236.520000px;}
.w9{width:282.960000px;}
.wa{width:321.840000px;}
.w6{width:331.410000px;}
.wf{width:347.040000px;}
.w5{width:360.255000px;}
.w4{width:486.645000px;}
.w7{width:489.780000px;}
.wc{width:688.500000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:2.775000px;}
.x15{left:8.280000px;}
.x12{left:10.440000px;}
.x14{left:14.220000px;}
.x27{left:27.615000px;}
.x3{left:84.995987px;}
.xc{left:88.775987px;}
.x11{left:90.396000px;}
.x20{left:94.176000px;}
.x2c{left:100.475987px;}
.xd{left:104.075987px;}
.x16{left:111.960000px;}
.x28{left:115.995000px;}
.x7{left:124.235987px;}
.x21{left:149.034000px;}
.x23{left:161.280000px;}
.xe{left:163.289987px;}
.x17{left:178.410000px;}
.x6{left:181.469987px;}
.x1f{left:186.149987px;}
.x18{left:190.650000px;}
.xa{left:205.229987px;}
.x25{left:212.580000px;}
.x24{left:215.849987px;}
.x19{left:254.190000px;}
.x32{left:258.300000px;}
.x1a{left:266.610000px;}
.x2d{left:283.320000px;}
.x10{left:289.694987px;}
.x29{left:297.000000px;}
.x2f{left:302.760000px;}
.x1b{left:316.515000px;}
.x13{left:321.735000px;}
.x1c{left:328.755000px;}
.x2a{left:339.660000px;}
.x4{left:350.714987px;}
.x8{left:365.654987px;}
.xb{left:380.954987px;}
.x26{left:399.240000px;}
.x1d{left:402.375000px;}
.x31{left:418.394987px;}
.x5{left:430.634987px;}
.x9{left:446.504987px;}
.x22{left:455.145000px;}
.x2{left:457.124987px;}
.x1{left:510.404987px;}
.x33{left:567.720000px;}
.x2e{left:573.120000px;}
.xf{left:741.569987px;}
.x1e{left:746.249987px;}
.x2b{left:766.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.166933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.015360pt;}
.ls1e{letter-spacing:0.023040pt;}
.ls18{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.448000pt;}
.ls29{letter-spacing:0.640000pt;}
.ls12{letter-spacing:1.280000pt;}
.ls8{letter-spacing:7.680000pt;}
.ls7{letter-spacing:8.320000pt;}
.ls2{letter-spacing:10.240000pt;}
.ls11{letter-spacing:11.520000pt;}
.ls3{letter-spacing:20.480000pt;}
.lsa{letter-spacing:23.040000pt;}
.lsf{letter-spacing:26.880000pt;}
.ls10{letter-spacing:27.520000pt;}
.ls23{letter-spacing:28.160000pt;}
.lse{letter-spacing:32.000000pt;}
.lsd{letter-spacing:32.800000pt;}
.ls25{letter-spacing:33.920000pt;}
.lsc{letter-spacing:35.840000pt;}
.ls9{letter-spacing:37.760000pt;}
.ls14{letter-spacing:40.320000pt;}
.ls16{letter-spacing:42.240000pt;}
.ls15{letter-spacing:60.800000pt;}
.ls22{letter-spacing:64.640000pt;}
.ls13{letter-spacing:71.658667pt;}
.ls26{letter-spacing:101.760000pt;}
.ls27{letter-spacing:108.800000pt;}
.ls20{letter-spacing:110.080000pt;}
.ls21{letter-spacing:112.640000pt;}
.ls24{letter-spacing:156.160000pt;}
.ls2a{letter-spacing:167.146667pt;}
.ls5{letter-spacing:187.626667pt;}
.ls28{letter-spacing:199.146667pt;}
.ls1c{letter-spacing:223.978667pt;}
.wsd{word-spacing:-26.720000pt;}
.ws1{word-spacing:-18.720000pt;}
.wsc{word-spacing:-17.303040pt;}
.wsa{word-spacing:-17.295360pt;}
.wsb{word-spacing:-17.280000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.360000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.545600pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-8.032640pt;}
._27{margin-left:-6.528000pt;}
._4{margin-left:-5.504000pt;}
._3{margin-left:-4.448000pt;}
._6{margin-left:-3.328000pt;}
._1{margin-left:-2.282880pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.345280pt;}
._14{width:2.816000pt;}
._13{width:4.330667pt;}
._12{width:5.440000pt;}
._10{width:6.720000pt;}
._11{width:7.744000pt;}
._e{width:8.768000pt;}
._f{width:9.738667pt;}
._21{width:10.944000pt;}
._9{width:12.096000pt;}
._2b{width:13.034667pt;}
._30{width:13.930667pt;}
._15{width:14.826667pt;}
._a{width:17.088000pt;}
._16{width:18.036053pt;}
._22{width:18.986667pt;}
._d{width:20.416000pt;}
._c{width:21.760000pt;}
._2f{width:23.232000pt;}
._1d{width:24.192000pt;}
._17{width:25.408000pt;}
._18{width:26.505387pt;}
._2c{width:27.914667pt;}
._2e{width:28.992000pt;}
._26{width:30.336000pt;}
._2d{width:31.584213pt;}
._25{width:32.991787pt;}
._28{width:33.909120pt;}
._19{width:34.976213pt;}
._31{width:36.032000pt;}
._1a{width:37.354667pt;}
._34{width:38.378667pt;}
._b{width:39.296000pt;}
._33{width:40.459947pt;}
._1c{width:41.664000pt;}
._20{width:42.922667pt;}
._1b{width:43.924053pt;}
._1e{width:44.992000pt;}
._1f{width:45.888000pt;}
._8{width:48.064000pt;}
._32{width:49.844480pt;}
._37{width:51.648000pt;}
._38{width:52.734720pt;}
._7{width:57.280000pt;}
._23{width:71.104000pt;}
._24{width:72.064000pt;}
._35{width:82.944000pt;}
._36{width:84.222720pt;}
._29{width:92.458667pt;}
._2a{width:93.589333pt;}
._39{width:102.528000pt;}
._3a{width:103.424000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:106.880000pt;}
.y90{bottom:-13.693333pt;}
.y8d{bottom:-13.533333pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:3.426667pt;}
.y92{bottom:3.546667pt;}
.y8f{bottom:3.586667pt;}
.y94{bottom:3.706667pt;}
.y8c{bottom:3.746667pt;}
.y9f{bottom:5.346667pt;}
.ya4{bottom:5.626667pt;}
.y4b{bottom:6.240000pt;}
.y6d{bottom:6.400000pt;}
.y97{bottom:10.586667pt;}
.y4e{bottom:27.200000pt;}
.y50{bottom:27.360000pt;}
.y6c{bottom:27.520000pt;}
.y72{bottom:39.200000pt;}
.y55{bottom:48.480000pt;}
.y4d{bottom:48.506667pt;}
.y53{bottom:48.640000pt;}
.y4f{bottom:48.666667pt;}
.y6b{bottom:48.680000pt;}
.ya1{bottom:51.866667pt;}
.y57{bottom:52.160000pt;}
.y6{bottom:61.760000pt;}
.y68{bottom:69.600000pt;}
.y54{bottom:69.760000pt;}
.y6a{bottom:69.800000pt;}
.y52{bottom:69.920000pt;}
.y9d{bottom:85.600000pt;}
.ycc{bottom:86.720000pt;}
.y31{bottom:86.880000pt;}
.y70{bottom:90.560000pt;}
.y4c{bottom:92.640000pt;}
.y88{bottom:97.760000pt;}
.y9c{bottom:106.720000pt;}
.ycb{bottom:107.840000pt;}
.y30{bottom:108.000000pt;}
.y87{bottom:118.880000pt;}
.y9b{bottom:127.840000pt;}
.yca{bottom:128.960000pt;}
.y2f{bottom:129.120000pt;}
.ycd{bottom:129.280000pt;}
.y86{bottom:140.026667pt;}
.y9a{bottom:148.986667pt;}
.yc9{bottom:150.106667pt;}
.y2e{bottom:150.586667pt;}
.y4a{bottom:156.826667pt;}
.y6f{bottom:157.786667pt;}
.y85{bottom:161.146667pt;}
.yc8{bottom:171.386667pt;}
.y2d{bottom:171.706667pt;}
.y99{bottom:173.146667pt;}
.y49{bottom:185.306667pt;}
.y84{bottom:187.386667pt;}
.y98{bottom:190.746667pt;}
.yc7{bottom:192.506667pt;}
.y2c{bottom:192.826667pt;}
.y96{bottom:203.520000pt;}
.y48{bottom:206.586667pt;}
.yc6{bottom:213.626667pt;}
.y2b{bottom:213.946667pt;}
.y47{bottom:227.706667pt;}
.ya3{bottom:231.680000pt;}
.yc5{bottom:234.746667pt;}
.y2a{bottom:235.226667pt;}
.y6e{bottom:245.946667pt;}
.y46{bottom:248.826667pt;}
.yc4{bottom:256.026667pt;}
.y29{bottom:256.346667pt;}
.y95{bottom:256.480000pt;}
.y45{bottom:269.946667pt;}
.yc3{bottom:277.146667pt;}
.y28{bottom:277.466667pt;}
.y44{bottom:291.226667pt;}
.ya0{bottom:291.680000pt;}
.yc2{bottom:298.266667pt;}
.y27{bottom:298.586667pt;}
.y93{bottom:303.360000pt;}
.y69{bottom:311.866667pt;}
.y43{bottom:312.346667pt;}
.ya2{bottom:313.466667pt;}
.yc1{bottom:319.386667pt;}
.y26{bottom:319.706667pt;}
.y42{bottom:333.466667pt;}
.yc0{bottom:340.666667pt;}
.y25{bottom:340.986667pt;}
.y91{bottom:350.560000pt;}
.y41{bottom:354.586667pt;}
.ybf{bottom:361.826667pt;}
.y24{bottom:362.146667pt;}
.y40{bottom:375.906667pt;}
.ybe{bottom:382.946667pt;}
.y23{bottom:383.266667pt;}
.y3f{bottom:397.026667pt;}
.y8e{bottom:397.600000pt;}
.y67{bottom:399.746667pt;}
.ybd{bottom:404.066667pt;}
.y22{bottom:404.386667pt;}
.y9e{bottom:413.280000pt;}
.y3e{bottom:418.146667pt;}
.ybc{bottom:425.346667pt;}
.y21{bottom:425.666667pt;}
.y3d{bottom:439.266667pt;}
.y8b{bottom:444.480000pt;}
.ybb{bottom:446.466667pt;}
.y20{bottom:446.786667pt;}
.y3c{bottom:460.386667pt;}
.yba{bottom:467.586667pt;}
.y1f{bottom:467.906667pt;}
.y3b{bottom:481.666667pt;}
.y66{bottom:487.906667pt;}
.yb9{bottom:488.706667pt;}
.y1e{bottom:489.026667pt;}
.y89{bottom:491.680000pt;}
.y3a{bottom:502.786667pt;}
.yb8{bottom:509.986667pt;}
.y1d{bottom:510.306667pt;}
.y39{bottom:523.906667pt;}
.y65{bottom:529.026667pt;}
.yb7{bottom:531.106667pt;}
.y1c{bottom:531.426667pt;}
.y83{bottom:533.666667pt;}
.y38{bottom:545.026667pt;}
.y64{bottom:550.146667pt;}
.yb6{bottom:552.226667pt;}
.y1b{bottom:552.546667pt;}
.y82{bottom:554.786667pt;}
.y37{bottom:566.306667pt;}
.y63{bottom:571.266667pt;}
.yb5{bottom:573.346667pt;}
.y1a{bottom:573.666667pt;}
.y81{bottom:575.906667pt;}
.y36{bottom:587.293333pt;}
.y62{bottom:592.573333pt;}
.yb4{bottom:594.493333pt;}
.y19{bottom:594.973333pt;}
.y80{bottom:597.053333pt;}
.y35{bottom:611.133333pt;}
.y61{bottom:613.693333pt;}
.yb3{bottom:615.773333pt;}
.y18{bottom:616.093333pt;}
.y7f{bottom:618.333333pt;}
.y34{bottom:632.093333pt;}
.y60{bottom:634.653333pt;}
.yb2{bottom:636.893333pt;}
.y17{bottom:637.213333pt;}
.y7e{bottom:639.453333pt;}
.y33{bottom:655.933333pt;}
.y5f{bottom:656.093333pt;}
.yb1{bottom:658.013333pt;}
.y16{bottom:658.333333pt;}
.y7d{bottom:660.573333pt;}
.y32{bottom:677.053333pt;}
.y5e{bottom:677.213333pt;}
.yb0{bottom:679.133333pt;}
.y15{bottom:679.613333pt;}
.y7c{bottom:681.693333pt;}
.y5d{bottom:698.333333pt;}
.yaf{bottom:700.413333pt;}
.y14{bottom:700.733333pt;}
.y7b{bottom:702.973333pt;}
.y5c{bottom:719.453333pt;}
.yae{bottom:721.533333pt;}
.y13{bottom:721.853333pt;}
.y7a{bottom:724.093333pt;}
.y5b{bottom:740.733333pt;}
.yad{bottom:742.653333pt;}
.y12{bottom:742.973333pt;}
.y79{bottom:745.213333pt;}
.y5a{bottom:761.853333pt;}
.yac{bottom:763.773333pt;}
.y11{bottom:764.093333pt;}
.y78{bottom:766.333333pt;}
.y59{bottom:782.973333pt;}
.yab{bottom:785.053333pt;}
.y10{bottom:785.373333pt;}
.y77{bottom:787.613333pt;}
.y58{bottom:804.133333pt;}
.yaa{bottom:806.213333pt;}
.yf{bottom:806.533333pt;}
.y76{bottom:808.773333pt;}
.y56{bottom:819.813333pt;}
.ya9{bottom:827.333333pt;}
.ye{bottom:827.653333pt;}
.y75{bottom:829.893333pt;}
.ya8{bottom:848.453333pt;}
.yd{bottom:848.773333pt;}
.y74{bottom:851.013333pt;}
.y73{bottom:869.573333pt;}
.ya7{bottom:869.733333pt;}
.yc{bottom:870.053333pt;}
.ya6{bottom:890.853333pt;}
.yb{bottom:891.173333pt;}
.y51{bottom:905.093333pt;}
.ya5{bottom:911.973333pt;}
.ya{bottom:912.293333pt;}
.y9{bottom:933.413333pt;}
.y71{bottom:935.973333pt;}
.y8{bottom:954.693333pt;}
.y7{bottom:975.813333pt;}
.y5{bottom:1004.933333pt;}
.y4{bottom:1033.280000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1085.280000pt;}
.y1{bottom:1100.640000pt;}
.h19{height:17.440000pt;}
.h1b{height:17.600000pt;}
.hc{height:21.440000pt;}
.h10{height:23.520000pt;}
.h1e{height:27.040000pt;}
.h21{height:27.200000pt;}
.h1d{height:31.040000pt;}
.h2{height:37.479688pt;}
.h6{height:45.156250pt;}
.h16{height:54.080000pt;}
.h3{height:55.298750pt;}
.h9{height:56.406250pt;}
.h1c{height:60.918750pt;}
.h8{height:62.812500pt;}
.hd{height:63.552000pt;}
.h18{height:63.843750pt;}
.h13{height:65.280000pt;}
.h17{height:65.760000pt;}
.hb{height:65.781915pt;}
.h15{height:66.592000pt;}
.h7{height:66.625000pt;}
.h1a{height:67.837500pt;}
.h20{height:72.640000pt;}
.h5{height:73.490625pt;}
.ha{height:76.964840pt;}
.h4{height:77.951250pt;}
.hf{height:84.640000pt;}
.he{height:84.960000pt;}
.h12{height:87.072000pt;}
.h11{height:87.360000pt;}
.h14{height:87.520000pt;}
.h1f{height:104.896875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:84.800000pt;}
.we{width:85.120000pt;}
.w11{width:94.400000pt;}
.w8{width:104.640000pt;}
.w10{width:145.760000pt;}
.w3{width:204.826667pt;}
.wb{width:210.240000pt;}
.w9{width:251.520000pt;}
.wa{width:286.080000pt;}
.w6{width:294.586667pt;}
.wf{width:308.480000pt;}
.w5{width:320.226667pt;}
.w4{width:432.573333pt;}
.w7{width:435.360000pt;}
.wc{width:612.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:2.466667pt;}
.x15{left:7.360000pt;}
.x12{left:9.280000pt;}
.x14{left:12.640000pt;}
.x27{left:24.546667pt;}
.x3{left:75.551988pt;}
.xc{left:78.911988pt;}
.x11{left:80.352000pt;}
.x20{left:83.712000pt;}
.x2c{left:89.311988pt;}
.xd{left:92.511988pt;}
.x16{left:99.520000pt;}
.x28{left:103.106667pt;}
.x7{left:110.431988pt;}
.x21{left:132.474667pt;}
.x23{left:143.360000pt;}
.xe{left:145.146655pt;}
.x17{left:158.586667pt;}
.x6{left:161.306655pt;}
.x1f{left:165.466655pt;}
.x18{left:169.466667pt;}
.xa{left:182.426655pt;}
.x25{left:188.960000pt;}
.x24{left:191.866655pt;}
.x19{left:225.946667pt;}
.x32{left:229.600000pt;}
.x1a{left:236.986667pt;}
.x2d{left:251.840000pt;}
.x10{left:257.506655pt;}
.x29{left:264.000000pt;}
.x2f{left:269.120000pt;}
.x1b{left:281.346667pt;}
.x13{left:285.986667pt;}
.x1c{left:292.226667pt;}
.x2a{left:301.920000pt;}
.x4{left:311.746655pt;}
.x8{left:325.026655pt;}
.xb{left:338.626655pt;}
.x26{left:354.880000pt;}
.x1d{left:357.666667pt;}
.x31{left:371.906655pt;}
.x5{left:382.786655pt;}
.x9{left:396.893322pt;}
.x22{left:404.573333pt;}
.x2{left:406.333322pt;}
.x1{left:453.693322pt;}
.x33{left:504.640000pt;}
.x2e{left:509.440000pt;}
.xf{left:659.173322pt;}
.x1e{left:663.333322pt;}
.x2b{left:681.253322pt;}
}




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