
    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_cea49883f34f8333522d496b.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_322033cd1a86009c2e8bf7f8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_72a930bccddca93467a02e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_cea313b7e296d2864a550fdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_03b8aeb0a09a1f92ecff0976.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.920410;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_34ce8396cef05ccfac399cd4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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:ff7;src:url('chunks/assets/font_7886f9d3fc0015727aa638b9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9decb1aa1eceeef9647c5b17.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.018720px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.341280px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.ls3{letter-spacing:5.040000px;}
.ls8{letter-spacing:23.040000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws4{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-88.467840px;}
._1d{margin-left:-5.956560px;}
._17{margin-left:-4.896000px;}
._d{margin-left:-3.357600px;}
._7{margin-left:-2.208480px;}
._0{margin-left:-1.171440px;}
._3{width:1.347840px;}
._1{width:2.412480px;}
._6{width:3.469920px;}
._a{width:4.954080px;}
._18{width:6.048000px;}
._8{width:7.560000px;}
._9{width:9.048000px;}
._15{width:10.080000px;}
._e{width:11.330160px;}
._c{width:12.740640px;}
._b{width:13.752000px;}
._16{width:15.139440px;}
._f{width:16.416000px;}
._1c{width:19.560000px;}
._14{width:20.664000px;}
._19{width:22.340160px;}
._10{width:23.520000px;}
._11{width:24.624000px;}
._12{width:26.712000px;}
._13{width:27.884160px;}
._1a{width:29.232000px;}
._1b{width:30.260160px;}
._5{width:83.380080px;}
._2{width:109.380000px;}
.fc6{color:transparent;}
.fc7{color:rgb(0,176,240);}
.fc5{color:rgb(31,73,125);}
.fc4{color:rgb(0,0,255);}
.fc8{color:rgb(47,111,167);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs1{font-size:81.360000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:87.120000px;}
.fs4{font-size:95.760000px;}
.ya{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y31{bottom:6.120000px;}
.y9{bottom:6.300000px;}
.y2f{bottom:10.800000px;}
.y93{bottom:19.800000px;}
.yab{bottom:19.845000px;}
.y7{bottom:21.600000px;}
.y30{bottom:31.500000px;}
.y8{bottom:31.680000px;}
.y98{bottom:56.340000px;}
.yaa{bottom:56.385000px;}
.y6{bottom:57.780000px;}
.y5{bottom:78.516000px;}
.yc0{bottom:92.745000px;}
.y97{bottom:92.880000px;}
.ya9{bottom:92.925000px;}
.y75{bottom:113.436000px;}
.y2e{bottom:115.956000px;}
.yfd{bottom:122.076000px;}
.yc4{bottom:122.436000px;}
.ybf{bottom:129.285000px;}
.y96{bottom:129.420000px;}
.ya5{bottom:129.456000px;}
.ya8{bottom:129.465000px;}
.y74{bottom:134.136000px;}
.yc3{bottom:143.136000px;}
.ya4{bottom:150.150000px;}
.y87{bottom:152.310000px;}
.y2d{bottom:152.490000px;}
.yd3{bottom:153.930000px;}
.ye8{bottom:154.830000px;}
.yfc{bottom:158.430000px;}
.yc2{bottom:163.830000px;}
.y95{bottom:165.990000px;}
.y54{bottom:169.410000px;}
.y73{bottom:170.670000px;}
.ya3{bottom:170.850000px;}
.y86{bottom:173.010000px;}
.y2c{bottom:173.190000px;}
.yd2{bottom:174.630000px;}
.ye7{bottom:175.530000px;}
.y53{bottom:190.110000px;}
.y72{bottom:191.370000px;}
.ya2{bottom:191.550000px;}
.y85{bottom:193.710000px;}
.y2b{bottom:193.890000px;}
.yfb{bottom:194.970000px;}
.yc1{bottom:200.370000px;}
.yd1{bottom:211.170000px;}
.y71{bottom:212.070000px;}
.ya1{bottom:212.250000px;}
.y2a{bottom:214.590000px;}
.ybe{bottom:217.830000px;}
.y52{bottom:226.650000px;}
.y84{bottom:230.250000px;}
.yfa{bottom:231.510000px;}
.yd0{bottom:231.870000px;}
.y70{bottom:232.770000px;}
.ya0{bottom:232.950000px;}
.y29{bottom:235.290000px;}
.y51{bottom:247.350000px;}
.ye6{bottom:248.610000px;}
.y6f{bottom:253.470000px;}
.y9f{bottom:253.650000px;}
.y28{bottom:255.990000px;}
.y83{bottom:266.970000px;}
.yf9{bottom:268.050000px;}
.ycf{bottom:268.410000px;}
.ye5{bottom:269.310000px;}
.y6e{bottom:274.170000px;}
.y9e{bottom:274.350000px;}
.y27{bottom:276.690000px;}
.y50{bottom:283.890000px;}
.y82{bottom:287.850000px;}
.yf8{bottom:288.750000px;}
.yce{bottom:289.110000px;}
.ye4{bottom:290.010000px;}
.y6d{bottom:294.870000px;}
.y9d{bottom:295.050000px;}
.y26{bottom:297.390000px;}
.y4f{bottom:304.590000px;}
.y81{bottom:308.910000px;}
.ye3{bottom:310.755000px;}
.y6c{bottom:315.615000px;}
.y9c{bottom:315.795000px;}
.y25{bottom:318.135000px;}
.y110{bottom:319.035000px;}
.yf7{bottom:325.335000px;}
.ycd{bottom:325.695000px;}
.y80{bottom:329.835000px;}
.ye2{bottom:331.455000px;}
.y6b{bottom:336.315000px;}
.y9b{bottom:336.495000px;}
.y24{bottom:338.835000px;}
.y4e{bottom:341.175000px;}
.yf6{bottom:346.035000px;}
.ycc{bottom:346.395000px;}
.y7f{bottom:350.895000px;}
.y10f{bottom:355.755000px;}
.y6a{bottom:357.015000px;}
.y9a{bottom:357.195000px;}
.y23{bottom:359.535000px;}
.ybd{bottom:364.575000px;}
.ycb{bottom:367.095000px;}
.ye1{bottom:367.995000px;}
.y7e{bottom:371.775000px;}
.y4d{bottom:377.715000px;}
.y22{bottom:380.235000px;}
.yf5{bottom:382.575000px;}
.ye0{bottom:388.695000px;}
.y10e{bottom:392.295000px;}
.y7d{bottom:392.835000px;}
.y99{bottom:393.735000px;}
.y4c{bottom:398.415000px;}
.yf4{bottom:403.275000px;}
.yca{bottom:403.455000px;}
.ydf{bottom:409.395000px;}
.y94{bottom:411.195000px;}
.y7c{bottom:413.715000px;}
.y21{bottom:416.775000px;}
.ybc{bottom:421.635000px;}
.yf3{bottom:423.975000px;}
.yc9{bottom:424.155000px;}
.y10d{bottom:428.835000px;}
.yde{bottom:430.095000px;}
.y7b{bottom:434.595000px;}
.y4b{bottom:434.955000px;}
.y10c{bottom:449.535000px;}
.ydd{bottom:450.795000px;}
.y20{bottom:453.135000px;}
.y4a{bottom:455.655000px;}
.ybb{bottom:458.175000px;}
.yf2{bottom:460.515000px;}
.yc8{bottom:460.695000px;}
.y10b{bottom:470.235000px;}
.y69{bottom:471.495000px;}
.y1f{bottom:473.835000px;}
.yba{bottom:478.875000px;}
.yf1{bottom:481.215000px;}
.y49{bottom:492.195000px;}
.yc7{bottom:497.235000px;}
.yb9{bottom:499.575000px;}
.yf0{bottom:501.915000px;}
.y10a{bottom:506.775000px;}
.ydc{bottom:508.035000px;}
.y1e{bottom:510.735000px;}
.y48{bottom:512.895000px;}
.yc6{bottom:517.935000px;}
.yb8{bottom:520.275000px;}
.y109{bottom:527.475000px;}
.y7a{bottom:528.735000px;}
.y1d{bottom:531.615000px;}
.y68{bottom:533.595000px;}
.yef{bottom:538.455000px;}
.yb7{bottom:540.975000px;}
.y47{bottom:549.435000px;}
.yc5{bottom:550.515000px;}
.y1c{bottom:552.675000px;}
.y67{bottom:554.295000px;}
.yee{bottom:559.155000px;}
.yb6{bottom:561.705000px;}
.y108{bottom:564.045000px;}
.y46{bottom:570.165000px;}
.y1b{bottom:573.585000px;}
.y66{bottom:575.025000px;}
.yed{bottom:579.885000px;}
.yb5{bottom:582.405000px;}
.y107{bottom:584.745000px;}
.y79{bottom:590.865000px;}
.y1a{bottom:594.645000px;}
.y65{bottom:595.725000px;}
.yb4{bottom:603.105000px;}
.y45{bottom:606.705000px;}
.y19{bottom:615.525000px;}
.y64{bottom:616.425000px;}
.y106{bottom:621.285000px;}
.yb3{bottom:623.805000px;}
.y78{bottom:627.405000px;}
.y18{bottom:636.405000px;}
.y63{bottom:637.125000px;}
.y105{bottom:641.985000px;}
.y44{bottom:643.065000px;}
.yb2{bottom:644.505000px;}
.ydb{bottom:648.105000px;}
.y92{bottom:651.705000px;}
.yec{bottom:652.965000px;}
.y17{bottom:657.465000px;}
.y62{bottom:657.825000px;}
.y104{bottom:662.685000px;}
.y43{bottom:663.765000px;}
.yb1{bottom:665.205000px;}
.yda{bottom:668.625000px;}
.y16{bottom:678.345000px;}
.y103{bottom:683.385000px;}
.y42{bottom:684.465000px;}
.yb0{bottom:685.905000px;}
.y91{bottom:688.245000px;}
.yd9{bottom:689.325000px;}
.y61{bottom:694.365000px;}
.y15{bottom:699.405000px;}
.y41{bottom:705.165000px;}
.yaf{bottom:706.605000px;}
.yd8{bottom:710.025000px;}
.y102{bottom:719.925000px;}
.y14{bottom:720.285000px;}
.y90{bottom:724.785000px;}
.y40{bottom:725.865000px;}
.yae{bottom:727.305000px;}
.y60{bottom:730.725000px;}
.y101{bottom:740.625000px;}
.y13{bottom:741.345000px;}
.y77{bottom:741.705000px;}
.y8f{bottom:745.485000px;}
.y3f{bottom:746.565000px;}
.yad{bottom:748.005000px;}
.y5f{bottom:751.425000px;}
.y12{bottom:762.225000px;}
.y5e{bottom:772.125000px;}
.y100{bottom:777.165000px;}
.y76{bottom:778.245000px;}
.y8e{bottom:782.025000px;}
.y3e{bottom:783.105000px;}
.yac{bottom:784.545000px;}
.yd7{bottom:787.965000px;}
.y5d{bottom:792.825000px;}
.yff{bottom:797.865000px;}
.y11{bottom:798.945000px;}
.ya7{bottom:802.005000px;}
.yeb{bottom:813.570000px;}
.y8d{bottom:818.430000px;}
.y3d{bottom:819.690000px;}
.yd6{bottom:824.550000px;}
.y10{bottom:826.890000px;}
.y5c{bottom:829.410000px;}
.yea{bottom:834.270000px;}
.y3c{bottom:840.390000px;}
.yd5{bottom:845.250000px;}
.y8c{bottom:854.970000px;}
.yf{bottom:856.770000px;}
.y3b{bottom:861.090000px;}
.y5b{bottom:865.950000px;}
.ye9{bottom:870.810000px;}
.y8b{bottom:875.670000px;}
.y3a{bottom:881.790000px;}
.ye{bottom:884.490000px;}
.y5a{bottom:886.650000px;}
.yfe{bottom:891.510000px;}
.y39{bottom:902.490000px;}
.y59{bottom:907.350000px;}
.y8a{bottom:912.210000px;}
.yd{bottom:914.550000px;}
.y38{bottom:923.190000px;}
.y58{bottom:928.050000px;}
.y89{bottom:932.910000px;}
.y37{bottom:943.890000px;}
.y57{bottom:948.750000px;}
.ya6{bottom:948.930000px;}
.yc{bottom:950.190000px;}
.y36{bottom:964.590000px;}
.y88{bottom:969.450000px;}
.yb{bottom:970.890000px;}
.y35{bottom:985.290000px;}
.yd4{bottom:1001.130000px;}
.y34{bottom:1005.990000px;}
.y4{bottom:1012.470000px;}
.y56{bottom:1021.830000px;}
.y33{bottom:1026.690000px;}
.y55{bottom:1042.530000px;}
.y3{bottom:1054.950000px;}
.y32{bottom:1063.260000px;}
.y2{bottom:1092.060000px;}
.y1{bottom:1114.920000px;}
.h9{height:33.683203px;}
.hb{height:36.540000px;}
.h5{height:49.500000px;}
.h4{height:50.273438px;}
.hd{height:50.414062px;}
.h2{height:50.800781px;}
.ha{height:52.628906px;}
.h7{height:54.316406px;}
.h8{height:57.796523px;}
.h6{height:58.320000px;}
.h1{height:61.468945px;}
.h3{height:67.565039px;}
.hf{height:146.016000px;}
.he{height:146.196000px;}
.hc{height:182.730000px;}
.h0{height:1188.000000px;}
.w2{width:701.385000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.840000px;}
.x7{left:9.719986px;}
.x8{left:38.339986px;}
.x6{left:106.955986px;}
.x10{left:108.396000px;}
.xd{left:109.655986px;}
.xa{left:112.175986px;}
.x1{left:176.249986px;}
.x13{left:180.029986px;}
.x3{left:206.309986px;}
.x4{left:236.549986px;}
.xc{left:272.009986px;}
.xf{left:275.249986px;}
.xb{left:276.869986px;}
.x2{left:284.249986px;}
.xe{left:294.374986px;}
.x9{left:423.074986px;}
.x5{left:792.149986px;}
.x12{left:798.269986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls3{letter-spacing:4.480000pt;}
.ls8{letter-spacing:20.480000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws4{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-78.638080pt;}
._1d{margin-left:-5.294720pt;}
._17{margin-left:-4.352000pt;}
._d{margin-left:-2.984533pt;}
._7{margin-left:-1.963093pt;}
._0{margin-left:-1.041280pt;}
._3{width:1.198080pt;}
._1{width:2.144427pt;}
._6{width:3.084373pt;}
._a{width:4.403627pt;}
._18{width:5.376000pt;}
._8{width:6.720000pt;}
._9{width:8.042667pt;}
._15{width:8.960000pt;}
._e{width:10.071253pt;}
._c{width:11.325013pt;}
._b{width:12.224000pt;}
._16{width:13.457280pt;}
._f{width:14.592000pt;}
._1c{width:17.386667pt;}
._14{width:18.368000pt;}
._19{width:19.857920pt;}
._10{width:20.906667pt;}
._11{width:21.888000pt;}
._12{width:23.744000pt;}
._13{width:24.785920pt;}
._1a{width:25.984000pt;}
._1b{width:26.897920pt;}
._5{width:74.115627pt;}
._2{width:97.226667pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs1{font-size:72.320000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:77.440000pt;}
.fs4{font-size:85.120000pt;}
.ya{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:5.440000pt;}
.y9{bottom:5.600000pt;}
.y2f{bottom:9.600000pt;}
.y93{bottom:17.600000pt;}
.yab{bottom:17.640000pt;}
.y7{bottom:19.200000pt;}
.y30{bottom:28.000000pt;}
.y8{bottom:28.160000pt;}
.y98{bottom:50.080000pt;}
.yaa{bottom:50.120000pt;}
.y6{bottom:51.360000pt;}
.y5{bottom:69.792000pt;}
.yc0{bottom:82.440000pt;}
.y97{bottom:82.560000pt;}
.ya9{bottom:82.600000pt;}
.y75{bottom:100.832000pt;}
.y2e{bottom:103.072000pt;}
.yfd{bottom:108.512000pt;}
.yc4{bottom:108.832000pt;}
.ybf{bottom:114.920000pt;}
.y96{bottom:115.040000pt;}
.ya5{bottom:115.072000pt;}
.ya8{bottom:115.080000pt;}
.y74{bottom:119.232000pt;}
.yc3{bottom:127.232000pt;}
.ya4{bottom:133.466667pt;}
.y87{bottom:135.386667pt;}
.y2d{bottom:135.546667pt;}
.yd3{bottom:136.826667pt;}
.ye8{bottom:137.626667pt;}
.yfc{bottom:140.826667pt;}
.yc2{bottom:145.626667pt;}
.y95{bottom:147.546667pt;}
.y54{bottom:150.586667pt;}
.y73{bottom:151.706667pt;}
.ya3{bottom:151.866667pt;}
.y86{bottom:153.786667pt;}
.y2c{bottom:153.946667pt;}
.yd2{bottom:155.226667pt;}
.ye7{bottom:156.026667pt;}
.y53{bottom:168.986667pt;}
.y72{bottom:170.106667pt;}
.ya2{bottom:170.266667pt;}
.y85{bottom:172.186667pt;}
.y2b{bottom:172.346667pt;}
.yfb{bottom:173.306667pt;}
.yc1{bottom:178.106667pt;}
.yd1{bottom:187.706667pt;}
.y71{bottom:188.506667pt;}
.ya1{bottom:188.666667pt;}
.y2a{bottom:190.746667pt;}
.ybe{bottom:193.626667pt;}
.y52{bottom:201.466667pt;}
.y84{bottom:204.666667pt;}
.yfa{bottom:205.786667pt;}
.yd0{bottom:206.106667pt;}
.y70{bottom:206.906667pt;}
.ya0{bottom:207.066667pt;}
.y29{bottom:209.146667pt;}
.y51{bottom:219.866667pt;}
.ye6{bottom:220.986667pt;}
.y6f{bottom:225.306667pt;}
.y9f{bottom:225.466667pt;}
.y28{bottom:227.546667pt;}
.y83{bottom:237.306667pt;}
.yf9{bottom:238.266667pt;}
.ycf{bottom:238.586667pt;}
.ye5{bottom:239.386667pt;}
.y6e{bottom:243.706667pt;}
.y9e{bottom:243.866667pt;}
.y27{bottom:245.946667pt;}
.y50{bottom:252.346667pt;}
.y82{bottom:255.866667pt;}
.yf8{bottom:256.666667pt;}
.yce{bottom:256.986667pt;}
.ye4{bottom:257.786667pt;}
.y6d{bottom:262.106667pt;}
.y9d{bottom:262.266667pt;}
.y26{bottom:264.346667pt;}
.y4f{bottom:270.746667pt;}
.y81{bottom:274.586667pt;}
.ye3{bottom:276.226667pt;}
.y6c{bottom:280.546667pt;}
.y9c{bottom:280.706667pt;}
.y25{bottom:282.786667pt;}
.y110{bottom:283.586667pt;}
.yf7{bottom:289.186667pt;}
.ycd{bottom:289.506667pt;}
.y80{bottom:293.186667pt;}
.ye2{bottom:294.626667pt;}
.y6b{bottom:298.946667pt;}
.y9b{bottom:299.106667pt;}
.y24{bottom:301.186667pt;}
.y4e{bottom:303.266667pt;}
.yf6{bottom:307.586667pt;}
.ycc{bottom:307.906667pt;}
.y7f{bottom:311.906667pt;}
.y10f{bottom:316.226667pt;}
.y6a{bottom:317.346667pt;}
.y9a{bottom:317.506667pt;}
.y23{bottom:319.586667pt;}
.ybd{bottom:324.066667pt;}
.ycb{bottom:326.306667pt;}
.ye1{bottom:327.106667pt;}
.y7e{bottom:330.466667pt;}
.y4d{bottom:335.746667pt;}
.y22{bottom:337.986667pt;}
.yf5{bottom:340.066667pt;}
.ye0{bottom:345.506667pt;}
.y10e{bottom:348.706667pt;}
.y7d{bottom:349.186667pt;}
.y99{bottom:349.986667pt;}
.y4c{bottom:354.146667pt;}
.yf4{bottom:358.466667pt;}
.yca{bottom:358.626667pt;}
.ydf{bottom:363.906667pt;}
.y94{bottom:365.506667pt;}
.y7c{bottom:367.746667pt;}
.y21{bottom:370.466667pt;}
.ybc{bottom:374.786667pt;}
.yf3{bottom:376.866667pt;}
.yc9{bottom:377.026667pt;}
.y10d{bottom:381.186667pt;}
.yde{bottom:382.306667pt;}
.y7b{bottom:386.306667pt;}
.y4b{bottom:386.626667pt;}
.y10c{bottom:399.586667pt;}
.ydd{bottom:400.706667pt;}
.y20{bottom:402.786667pt;}
.y4a{bottom:405.026667pt;}
.ybb{bottom:407.266667pt;}
.yf2{bottom:409.346667pt;}
.yc8{bottom:409.506667pt;}
.y10b{bottom:417.986667pt;}
.y69{bottom:419.106667pt;}
.y1f{bottom:421.186667pt;}
.yba{bottom:425.666667pt;}
.yf1{bottom:427.746667pt;}
.y49{bottom:437.506667pt;}
.yc7{bottom:441.986667pt;}
.yb9{bottom:444.066667pt;}
.yf0{bottom:446.146667pt;}
.y10a{bottom:450.466667pt;}
.ydc{bottom:451.586667pt;}
.y1e{bottom:453.986667pt;}
.y48{bottom:455.906667pt;}
.yc6{bottom:460.386667pt;}
.yb8{bottom:462.466667pt;}
.y109{bottom:468.866667pt;}
.y7a{bottom:469.986667pt;}
.y1d{bottom:472.546667pt;}
.y68{bottom:474.306667pt;}
.yef{bottom:478.626667pt;}
.yb7{bottom:480.866667pt;}
.y47{bottom:488.386667pt;}
.yc5{bottom:489.346667pt;}
.y1c{bottom:491.266667pt;}
.y67{bottom:492.706667pt;}
.yee{bottom:497.026667pt;}
.yb6{bottom:499.293333pt;}
.y108{bottom:501.373333pt;}
.y46{bottom:506.813333pt;}
.y1b{bottom:509.853333pt;}
.y66{bottom:511.133333pt;}
.yed{bottom:515.453333pt;}
.yb5{bottom:517.693333pt;}
.y107{bottom:519.773333pt;}
.y79{bottom:525.213333pt;}
.y1a{bottom:528.573333pt;}
.y65{bottom:529.533333pt;}
.yb4{bottom:536.093333pt;}
.y45{bottom:539.293333pt;}
.y19{bottom:547.133333pt;}
.y64{bottom:547.933333pt;}
.y106{bottom:552.253333pt;}
.yb3{bottom:554.493333pt;}
.y78{bottom:557.693333pt;}
.y18{bottom:565.693333pt;}
.y63{bottom:566.333333pt;}
.y105{bottom:570.653333pt;}
.y44{bottom:571.613333pt;}
.yb2{bottom:572.893333pt;}
.ydb{bottom:576.093333pt;}
.y92{bottom:579.293333pt;}
.yec{bottom:580.413333pt;}
.y17{bottom:584.413333pt;}
.y62{bottom:584.733333pt;}
.y104{bottom:589.053333pt;}
.y43{bottom:590.013333pt;}
.yb1{bottom:591.293333pt;}
.yda{bottom:594.333333pt;}
.y16{bottom:602.973333pt;}
.y103{bottom:607.453333pt;}
.y42{bottom:608.413333pt;}
.yb0{bottom:609.693333pt;}
.y91{bottom:611.773333pt;}
.yd9{bottom:612.733333pt;}
.y61{bottom:617.213333pt;}
.y15{bottom:621.693333pt;}
.y41{bottom:626.813333pt;}
.yaf{bottom:628.093333pt;}
.yd8{bottom:631.133333pt;}
.y102{bottom:639.933333pt;}
.y14{bottom:640.253333pt;}
.y90{bottom:644.253333pt;}
.y40{bottom:645.213333pt;}
.yae{bottom:646.493333pt;}
.y60{bottom:649.533333pt;}
.y101{bottom:658.333333pt;}
.y13{bottom:658.973333pt;}
.y77{bottom:659.293333pt;}
.y8f{bottom:662.653333pt;}
.y3f{bottom:663.613333pt;}
.yad{bottom:664.893333pt;}
.y5f{bottom:667.933333pt;}
.y12{bottom:677.533333pt;}
.y5e{bottom:686.333333pt;}
.y100{bottom:690.813333pt;}
.y76{bottom:691.773333pt;}
.y8e{bottom:695.133333pt;}
.y3e{bottom:696.093333pt;}
.yac{bottom:697.373333pt;}
.yd7{bottom:700.413333pt;}
.y5d{bottom:704.733333pt;}
.yff{bottom:709.213333pt;}
.y11{bottom:710.173333pt;}
.ya7{bottom:712.893333pt;}
.yeb{bottom:723.173333pt;}
.y8d{bottom:727.493333pt;}
.y3d{bottom:728.613333pt;}
.yd6{bottom:732.933333pt;}
.y10{bottom:735.013333pt;}
.y5c{bottom:737.253333pt;}
.yea{bottom:741.573333pt;}
.y3c{bottom:747.013333pt;}
.yd5{bottom:751.333333pt;}
.y8c{bottom:759.973333pt;}
.yf{bottom:761.573333pt;}
.y3b{bottom:765.413333pt;}
.y5b{bottom:769.733333pt;}
.ye9{bottom:774.053333pt;}
.y8b{bottom:778.373333pt;}
.y3a{bottom:783.813333pt;}
.ye{bottom:786.213333pt;}
.y5a{bottom:788.133333pt;}
.yfe{bottom:792.453333pt;}
.y39{bottom:802.213333pt;}
.y59{bottom:806.533333pt;}
.y8a{bottom:810.853333pt;}
.yd{bottom:812.933333pt;}
.y38{bottom:820.613333pt;}
.y58{bottom:824.933333pt;}
.y89{bottom:829.253333pt;}
.y37{bottom:839.013333pt;}
.y57{bottom:843.333333pt;}
.ya6{bottom:843.493333pt;}
.yc{bottom:844.613333pt;}
.y36{bottom:857.413333pt;}
.y88{bottom:861.733333pt;}
.yb{bottom:863.013333pt;}
.y35{bottom:875.813333pt;}
.yd4{bottom:889.893333pt;}
.y34{bottom:894.213333pt;}
.y4{bottom:899.973333pt;}
.y56{bottom:908.293333pt;}
.y33{bottom:912.613333pt;}
.y55{bottom:926.693333pt;}
.y3{bottom:937.733333pt;}
.y32{bottom:945.120000pt;}
.y2{bottom:970.720000pt;}
.y1{bottom:991.040000pt;}
.h9{height:29.940625pt;}
.hb{height:32.480000pt;}
.h5{height:44.000000pt;}
.h4{height:44.687500pt;}
.hd{height:44.812500pt;}
.h2{height:45.156250pt;}
.ha{height:46.781250pt;}
.h7{height:48.281250pt;}
.h8{height:51.374687pt;}
.h6{height:51.840000pt;}
.h1{height:54.639063pt;}
.h3{height:60.057813pt;}
.hf{height:129.792000pt;}
.he{height:129.952000pt;}
.hc{height:162.426667pt;}
.h0{height:1056.000000pt;}
.w2{width:623.453333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.080000pt;}
.x7{left:8.639988pt;}
.x8{left:34.079988pt;}
.x6{left:95.071988pt;}
.x10{left:96.352000pt;}
.xd{left:97.471988pt;}
.xa{left:99.711988pt;}
.x1{left:156.666655pt;}
.x13{left:160.026655pt;}
.x3{left:183.386655pt;}
.x4{left:210.266655pt;}
.xc{left:241.786655pt;}
.xf{left:244.666655pt;}
.xb{left:246.106655pt;}
.x2{left:252.666655pt;}
.xe{left:261.666655pt;}
.x9{left:376.066655pt;}
.x5{left:704.133321pt;}
.x12{left:709.573321pt;}
}




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