
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_303b531d01a9eefb5910a542.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_3004ebffa4fcfe10cf5a7083.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_f438a168c4201dcf835d1a19.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_1de044c368f2becd753edbf0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.948000px;}
.ls14{letter-spacing:-0.579600px;}
.ls6{letter-spacing:-0.463800px;}
.ls1a{letter-spacing:-0.371400px;}
.ls8{letter-spacing:-0.226200px;}
.ls12{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.078600px;}
.ls10{letter-spacing:-0.067200px;}
.lsc{letter-spacing:-0.064800px;}
.lsb{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.066000px;}
.ls16{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.186600px;}
.ls15{letter-spacing:0.195000px;}
.ls13{letter-spacing:0.195120px;}
.lse{letter-spacing:0.218160px;}
.ls7{letter-spacing:0.289200px;}
.ls3{letter-spacing:0.306000px;}
.ls4{letter-spacing:0.654000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls19{letter-spacing:12.186720px;}
.ls18{letter-spacing:42.426720px;}
.lsa{letter-spacing:46.026720px;}
.ls17{letter-spacing:91.530720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-21.641760px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws8{word-spacing:-13.811760px;}
.wsf{word-spacing:-13.700760px;}
.wsd{word-spacing:-13.692360px;}
.ws6{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.440960px;}
.wsc{word-spacing:-13.427160px;}
.wse{word-spacing:-13.319160px;}
.ws10{word-spacing:-13.134360px;}
.wsb{word-spacing:-12.557760px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1447.868880px;}
._2{margin-left:-1329.359040px;}
._3{margin-left:-1005.647520px;}
._5{margin-left:-578.597760px;}
._1b{margin-left:-6.889680px;}
._a{margin-left:-5.362560px;}
._7{margin-left:-4.349760px;}
._6{margin-left:-3.312000px;}
._1{margin-left:-1.987200px;}
._0{width:1.394400px;}
._15{width:2.652960px;}
._b{width:3.716880px;}
._10{width:5.401680px;}
._16{width:6.449760px;}
._11{width:7.451760px;}
._12{width:8.964000px;}
._17{width:10.458000px;}
._f{width:11.593440px;}
._13{width:14.920080px;}
._14{width:16.234800px;}
._e{width:18.090000px;}
._c{width:19.243200px;}
._d{width:20.563440px;}
._18{width:21.731760px;}
._1a{width:23.062560px;}
._19{width:24.153360px;}
._8{width:44.453280px;}
._9{width:46.033440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y90{bottom:6.660000px;}
.yc2{bottom:6.840000px;}
.ybe{bottom:17.100000px;}
.y93{bottom:19.440000px;}
.ybd{bottom:27.720000px;}
.y6{bottom:61.380000px;}
.y31{bottom:89.820000px;}
.y64{bottom:95.220000px;}
.y9d{bottom:98.280000px;}
.ycd{bottom:106.380000px;}
.y8c{bottom:107.280000px;}
.y30{bottom:110.880000px;}
.yda{bottom:113.220000px;}
.y63{bottom:116.280000px;}
.y9c{bottom:119.340000px;}
.ycc{bottom:127.440000px;}
.y8b{bottom:128.340000px;}
.y2f{bottom:131.940000px;}
.yd9{bottom:134.280000px;}
.y9b{bottom:140.400000px;}
.y62{bottom:146.340000px;}
.ycb{bottom:148.500000px;}
.y8a{bottom:149.400000px;}
.y2e{bottom:153.030000px;}
.yd8{bottom:155.370000px;}
.y61{bottom:167.430000px;}
.yca{bottom:169.590000px;}
.y89{bottom:170.490000px;}
.y2d{bottom:174.090000px;}
.yd7{bottom:176.430000px;}
.y60{bottom:188.490000px;}
.yc9{bottom:190.650000px;}
.y9a{bottom:191.550000px;}
.y2c{bottom:195.150000px;}
.yd6{bottom:197.490000px;}
.y88{bottom:200.550000px;}
.y5f{bottom:209.550000px;}
.yc8{bottom:211.710000px;}
.y99{bottom:212.610000px;}
.y2b{bottom:216.210000px;}
.yd5{bottom:218.550000px;}
.y87{bottom:221.610000px;}
.y5e{bottom:230.610000px;}
.yc7{bottom:232.770000px;}
.y98{bottom:233.670000px;}
.y2a{bottom:237.270000px;}
.yd4{bottom:239.610000px;}
.y86{bottom:242.670000px;}
.y5d{bottom:251.670000px;}
.yc6{bottom:253.830000px;}
.y97{bottom:254.730000px;}
.y29{bottom:258.330000px;}
.yd3{bottom:260.670000px;}
.y85{bottom:263.730000px;}
.y5c{bottom:272.730000px;}
.yc5{bottom:274.890000px;}
.y96{bottom:275.790000px;}
.y28{bottom:279.390000px;}
.yd2{bottom:281.730000px;}
.y84{bottom:284.790000px;}
.yc4{bottom:293.430000px;}
.y5b{bottom:293.790000px;}
.y95{bottom:296.850000px;}
.y27{bottom:300.450000px;}
.yd1{bottom:302.790000px;}
.y83{bottom:305.850000px;}
.y5a{bottom:314.850000px;}
.y94{bottom:317.910000px;}
.yc3{bottom:319.530000px;}
.y26{bottom:321.510000px;}
.yd0{bottom:323.850000px;}
.y82{bottom:326.910000px;}
.y59{bottom:335.910000px;}
.y92{bottom:336.450000px;}
.y25{bottom:342.390000px;}
.ycf{bottom:344.910000px;}
.yc1{bottom:345.090000px;}
.y81{bottom:347.970000px;}
.y58{bottom:356.970000px;}
.y91{bottom:362.010000px;}
.y24{bottom:363.450000px;}
.yce{bottom:365.970000px;}
.y80{bottom:369.030000px;}
.yc0{bottom:371.910000px;}
.y23{bottom:384.510000px;}
.y57{bottom:387.030000px;}
.y8f{bottom:388.290000px;}
.y7f{bottom:390.090000px;}
.ybf{bottom:403.815000px;}
.y22{bottom:405.615000px;}
.y56{bottom:408.135000px;}
.y7e{bottom:411.195000px;}
.y8e{bottom:420.195000px;}
.ybc{bottom:422.355000px;}
.y21{bottom:426.675000px;}
.y55{bottom:429.195000px;}
.y7d{bottom:441.255000px;}
.y20{bottom:447.735000px;}
.y54{bottom:450.255000px;}
.y7c{bottom:462.315000px;}
.ybb{bottom:469.695000px;}
.y1f{bottom:471.315000px;}
.y7b{bottom:483.375000px;}
.y1e{bottom:492.195000px;}
.y53{bottom:492.375000px;}
.yba{bottom:501.555000px;}
.y7a{bottom:504.435000px;}
.y52{bottom:513.435000px;}
.y1d{bottom:522.255000px;}
.yb9{bottom:522.615000px;}
.y79{bottom:525.495000px;}
.y51{bottom:534.495000px;}
.y1c{bottom:543.315000px;}
.yb8{bottom:543.675000px;}
.y78{bottom:546.555000px;}
.y50{bottom:555.555000px;}
.y1b{bottom:564.375000px;}
.yb7{bottom:564.735000px;}
.y77{bottom:567.615000px;}
.y4f{bottom:576.615000px;}
.y1a{bottom:585.435000px;}
.yb6{bottom:585.795000px;}
.y76{bottom:588.675000px;}
.y4e{bottom:597.675000px;}
.y19{bottom:606.495000px;}
.y75{bottom:609.735000px;}
.yb5{bottom:615.855000px;}
.y4d{bottom:618.735000px;}
.y18{bottom:627.555000px;}
.y74{bottom:630.795000px;}
.yb4{bottom:636.915000px;}
.y4c{bottom:639.795000px;}
.y17{bottom:648.615000px;}
.y73{bottom:651.885000px;}
.yb3{bottom:658.005000px;}
.y4b{bottom:660.885000px;}
.y16{bottom:669.705000px;}
.y72{bottom:672.945000px;}
.yb2{bottom:679.065000px;}
.y4a{bottom:681.945000px;}
.y15{bottom:690.765000px;}
.y71{bottom:694.005000px;}
.yb1{bottom:700.125000px;}
.y49{bottom:703.005000px;}
.y14{bottom:711.825000px;}
.y70{bottom:715.065000px;}
.yb0{bottom:721.005000px;}
.y48{bottom:724.065000px;}
.y13{bottom:732.885000px;}
.y6f{bottom:736.125000px;}
.yaf{bottom:742.065000px;}
.y47{bottom:745.125000px;}
.y12{bottom:753.945000px;}
.y6e{bottom:757.005000px;}
.yae{bottom:760.605000px;}
.y46{bottom:766.005000px;}
.y11{bottom:775.005000px;}
.y6d{bottom:778.065000px;}
.yad{bottom:786.165000px;}
.y45{bottom:787.065000px;}
.y10{bottom:796.065000px;}
.y6c{bottom:799.125000px;}
.y44{bottom:808.125000px;}
.yac{bottom:812.625000px;}
.yf{bottom:817.125000px;}
.y6b{bottom:820.185000px;}
.y43{bottom:829.185000px;}
.ye{bottom:840.345000px;}
.y6a{bottom:841.245000px;}
.yab{bottom:844.305000px;}
.y42{bottom:850.245000px;}
.y69{bottom:862.305000px;}
.yaa{bottom:865.365000px;}
.yd{bottom:866.625000px;}
.y41{bottom:871.305000px;}
.y68{bottom:883.365000px;}
.ya9{bottom:886.425000px;}
.yc{bottom:887.685000px;}
.y40{bottom:892.365000px;}
.yb{bottom:904.470000px;}
.y3f{bottom:913.470000px;}
.ya8{bottom:916.530000px;}
.y67{bottom:925.530000px;}
.ya{bottom:926.790000px;}
.y3e{bottom:934.530000px;}
.ya7{bottom:937.590000px;}
.y66{bottom:946.590000px;}
.y9{bottom:951.990000px;}
.y3d{bottom:955.590000px;}
.ya6{bottom:958.650000px;}
.y65{bottom:967.650000px;}
.y3c{bottom:976.650000px;}
.ya5{bottom:979.710000px;}
.y8{bottom:985.650000px;}
.y8d{bottom:988.710000px;}
.y3b{bottom:997.710000px;}
.ya4{bottom:1000.770000px;}
.y3a{bottom:1018.770000px;}
.y7{bottom:1019.310000px;}
.ya3{bottom:1021.830000px;}
.y39{bottom:1039.830000px;}
.ya2{bottom:1042.890000px;}
.y5{bottom:1059.630000px;}
.y38{bottom:1060.890000px;}
.ya1{bottom:1063.950000px;}
.y37{bottom:1081.950000px;}
.ya0{bottom:1082.490000px;}
.y4{bottom:1092.030000px;}
.y36{bottom:1103.010000px;}
.y9f{bottom:1108.050000px;}
.y35{bottom:1124.070000px;}
.y3{bottom:1124.250000px;}
.y9e{bottom:1134.330000px;}
.y34{bottom:1145.130000px;}
.y2{bottom:1156.680000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.ha{height:21.060000px;}
.h9{height:21.096000px;}
.hd{height:21.600000px;}
.h7{height:38.671172px;}
.hc{height:42.120000px;}
.hb{height:46.620000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:34.560000px;}
.w4{width:37.800000px;}
.wf{width:40.320000px;}
.wb{width:43.020000px;}
.w14{width:45.720000px;}
.w15{width:45.756000px;}
.w1f{width:46.980000px;}
.w6{width:47.160000px;}
.w10{width:51.156000px;}
.w19{width:53.100000px;}
.we{width:55.080000px;}
.w18{width:55.476000px;}
.w20{width:61.200000px;}
.w5{width:64.476000px;}
.w17{width:65.160000px;}
.w11{width:70.560000px;}
.w1d{width:81.576000px;}
.w7{width:82.800000px;}
.w12{width:84.636000px;}
.w16{width:87.120000px;}
.w21{width:87.876000px;}
.w1a{width:95.616000px;}
.w8{width:119.196000px;}
.w1e{width:125.496000px;}
.w9{width:126.936000px;}
.w1c{width:135.720000px;}
.w1b{width:229.935000px;}
.wa{width:283.575000px;}
.w3{width:288.975000px;}
.w13{width:304.635000px;}
.wc{width:430.665000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:1.080000px;}
.x1{left:53.999987px;}
.x4{left:56.340000px;}
.x13{left:62.100000px;}
.x22{left:66.959987px;}
.x21{left:70.379987px;}
.x20{left:73.799987px;}
.x2{left:80.999987px;}
.x3{left:108.035987px;}
.x1a{left:287.535000px;}
.xc{left:342.255000px;}
.x6{left:347.475000px;}
.x14{left:369.075000px;}
.x7{left:387.435000px;}
.x15{left:417.135000px;}
.x1b{left:425.595000px;}
.x8{left:454.065000px;}
.x16{left:465.225000px;}
.xd{left:489.345000px;}
.x9{left:503.385000px;}
.x1c{left:509.505000px;}
.xe{left:526.245000px;}
.x17{left:554.685000px;}
.xf{left:583.485000px;}
.xa{left:588.345000px;}
.x18{left:622.185000px;}
.x10{left:625.965000px;}
.x1d{left:637.170000px;}
.x11{left:679.290000px;}
.x1e{left:686.310000px;}
.xb{left:709.890000px;}
.x19{left:735.450000px;}
.x1f{left:749.850000px;}
.x12{left:752.190000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.842667pt;}
.ls14{letter-spacing:-0.515200pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls1a{letter-spacing:-0.330133pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls12{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.069867pt;}
.ls10{letter-spacing:-0.059733pt;}
.lsc{letter-spacing:-0.057600pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.058667pt;}
.ls16{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.165867pt;}
.ls15{letter-spacing:0.173333pt;}
.ls13{letter-spacing:0.173440pt;}
.lse{letter-spacing:0.193920pt;}
.ls7{letter-spacing:0.257067pt;}
.ls3{letter-spacing:0.272000pt;}
.ls4{letter-spacing:0.581333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls19{letter-spacing:10.832640pt;}
.ls18{letter-spacing:37.712640pt;}
.lsa{letter-spacing:40.912640pt;}
.ls17{letter-spacing:81.360640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-19.237120pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws8{word-spacing:-12.277120pt;}
.wsf{word-spacing:-12.178453pt;}
.wsd{word-spacing:-12.170987pt;}
.ws6{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.947520pt;}
.wsc{word-spacing:-11.935253pt;}
.wse{word-spacing:-11.839253pt;}
.ws10{word-spacing:-11.674987pt;}
.wsb{word-spacing:-11.162453pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1286.994560pt;}
._2{margin-left:-1181.652480pt;}
._3{margin-left:-893.908907pt;}
._5{margin-left:-514.309120pt;}
._1b{margin-left:-6.124160pt;}
._a{margin-left:-4.766720pt;}
._7{margin-left:-3.866453pt;}
._6{margin-left:-2.944000pt;}
._1{margin-left:-1.766400pt;}
._0{width:1.239467pt;}
._15{width:2.358187pt;}
._b{width:3.303893pt;}
._10{width:4.801493pt;}
._16{width:5.733120pt;}
._11{width:6.623787pt;}
._12{width:7.968000pt;}
._17{width:9.296000pt;}
._f{width:10.305280pt;}
._13{width:13.262293pt;}
._14{width:14.430933pt;}
._e{width:16.080000pt;}
._c{width:17.105067pt;}
._d{width:18.278613pt;}
._18{width:19.317120pt;}
._1a{width:20.500053pt;}
._19{width:21.469653pt;}
._8{width:39.514027pt;}
._9{width:40.918613pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:5.920000pt;}
.yc2{bottom:6.080000pt;}
.ybe{bottom:15.200000pt;}
.y93{bottom:17.280000pt;}
.ybd{bottom:24.640000pt;}
.y6{bottom:54.560000pt;}
.y31{bottom:79.840000pt;}
.y64{bottom:84.640000pt;}
.y9d{bottom:87.360000pt;}
.ycd{bottom:94.560000pt;}
.y8c{bottom:95.360000pt;}
.y30{bottom:98.560000pt;}
.yda{bottom:100.640000pt;}
.y63{bottom:103.360000pt;}
.y9c{bottom:106.080000pt;}
.ycc{bottom:113.280000pt;}
.y8b{bottom:114.080000pt;}
.y2f{bottom:117.280000pt;}
.yd9{bottom:119.360000pt;}
.y9b{bottom:124.800000pt;}
.y62{bottom:130.080000pt;}
.ycb{bottom:132.000000pt;}
.y8a{bottom:132.800000pt;}
.y2e{bottom:136.026667pt;}
.yd8{bottom:138.106667pt;}
.y61{bottom:148.826667pt;}
.yca{bottom:150.746667pt;}
.y89{bottom:151.546667pt;}
.y2d{bottom:154.746667pt;}
.yd7{bottom:156.826667pt;}
.y60{bottom:167.546667pt;}
.yc9{bottom:169.466667pt;}
.y9a{bottom:170.266667pt;}
.y2c{bottom:173.466667pt;}
.yd6{bottom:175.546667pt;}
.y88{bottom:178.266667pt;}
.y5f{bottom:186.266667pt;}
.yc8{bottom:188.186667pt;}
.y99{bottom:188.986667pt;}
.y2b{bottom:192.186667pt;}
.yd5{bottom:194.266667pt;}
.y87{bottom:196.986667pt;}
.y5e{bottom:204.986667pt;}
.yc7{bottom:206.906667pt;}
.y98{bottom:207.706667pt;}
.y2a{bottom:210.906667pt;}
.yd4{bottom:212.986667pt;}
.y86{bottom:215.706667pt;}
.y5d{bottom:223.706667pt;}
.yc6{bottom:225.626667pt;}
.y97{bottom:226.426667pt;}
.y29{bottom:229.626667pt;}
.yd3{bottom:231.706667pt;}
.y85{bottom:234.426667pt;}
.y5c{bottom:242.426667pt;}
.yc5{bottom:244.346667pt;}
.y96{bottom:245.146667pt;}
.y28{bottom:248.346667pt;}
.yd2{bottom:250.426667pt;}
.y84{bottom:253.146667pt;}
.yc4{bottom:260.826667pt;}
.y5b{bottom:261.146667pt;}
.y95{bottom:263.866667pt;}
.y27{bottom:267.066667pt;}
.yd1{bottom:269.146667pt;}
.y83{bottom:271.866667pt;}
.y5a{bottom:279.866667pt;}
.y94{bottom:282.586667pt;}
.yc3{bottom:284.026667pt;}
.y26{bottom:285.786667pt;}
.yd0{bottom:287.866667pt;}
.y82{bottom:290.586667pt;}
.y59{bottom:298.586667pt;}
.y92{bottom:299.066667pt;}
.y25{bottom:304.346667pt;}
.ycf{bottom:306.586667pt;}
.yc1{bottom:306.746667pt;}
.y81{bottom:309.306667pt;}
.y58{bottom:317.306667pt;}
.y91{bottom:321.786667pt;}
.y24{bottom:323.066667pt;}
.yce{bottom:325.306667pt;}
.y80{bottom:328.026667pt;}
.yc0{bottom:330.586667pt;}
.y23{bottom:341.786667pt;}
.y57{bottom:344.026667pt;}
.y8f{bottom:345.146667pt;}
.y7f{bottom:346.746667pt;}
.ybf{bottom:358.946667pt;}
.y22{bottom:360.546667pt;}
.y56{bottom:362.786667pt;}
.y7e{bottom:365.506667pt;}
.y8e{bottom:373.506667pt;}
.ybc{bottom:375.426667pt;}
.y21{bottom:379.266667pt;}
.y55{bottom:381.506667pt;}
.y7d{bottom:392.226667pt;}
.y20{bottom:397.986667pt;}
.y54{bottom:400.226667pt;}
.y7c{bottom:410.946667pt;}
.ybb{bottom:417.506667pt;}
.y1f{bottom:418.946667pt;}
.y7b{bottom:429.666667pt;}
.y1e{bottom:437.506667pt;}
.y53{bottom:437.666667pt;}
.yba{bottom:445.826667pt;}
.y7a{bottom:448.386667pt;}
.y52{bottom:456.386667pt;}
.y1d{bottom:464.226667pt;}
.yb9{bottom:464.546667pt;}
.y79{bottom:467.106667pt;}
.y51{bottom:475.106667pt;}
.y1c{bottom:482.946667pt;}
.yb8{bottom:483.266667pt;}
.y78{bottom:485.826667pt;}
.y50{bottom:493.826667pt;}
.y1b{bottom:501.666667pt;}
.yb7{bottom:501.986667pt;}
.y77{bottom:504.546667pt;}
.y4f{bottom:512.546667pt;}
.y1a{bottom:520.386667pt;}
.yb6{bottom:520.706667pt;}
.y76{bottom:523.266667pt;}
.y4e{bottom:531.266667pt;}
.y19{bottom:539.106667pt;}
.y75{bottom:541.986667pt;}
.yb5{bottom:547.426667pt;}
.y4d{bottom:549.986667pt;}
.y18{bottom:557.826667pt;}
.y74{bottom:560.706667pt;}
.yb4{bottom:566.146667pt;}
.y4c{bottom:568.706667pt;}
.y17{bottom:576.546667pt;}
.y73{bottom:579.453333pt;}
.yb3{bottom:584.893333pt;}
.y4b{bottom:587.453333pt;}
.y16{bottom:595.293333pt;}
.y72{bottom:598.173333pt;}
.yb2{bottom:603.613333pt;}
.y4a{bottom:606.173333pt;}
.y15{bottom:614.013333pt;}
.y71{bottom:616.893333pt;}
.yb1{bottom:622.333333pt;}
.y49{bottom:624.893333pt;}
.y14{bottom:632.733333pt;}
.y70{bottom:635.613333pt;}
.yb0{bottom:640.893333pt;}
.y48{bottom:643.613333pt;}
.y13{bottom:651.453333pt;}
.y6f{bottom:654.333333pt;}
.yaf{bottom:659.613333pt;}
.y47{bottom:662.333333pt;}
.y12{bottom:670.173333pt;}
.y6e{bottom:672.893333pt;}
.yae{bottom:676.093333pt;}
.y46{bottom:680.893333pt;}
.y11{bottom:688.893333pt;}
.y6d{bottom:691.613333pt;}
.yad{bottom:698.813333pt;}
.y45{bottom:699.613333pt;}
.y10{bottom:707.613333pt;}
.y6c{bottom:710.333333pt;}
.y44{bottom:718.333333pt;}
.yac{bottom:722.333333pt;}
.yf{bottom:726.333333pt;}
.y6b{bottom:729.053333pt;}
.y43{bottom:737.053333pt;}
.ye{bottom:746.973333pt;}
.y6a{bottom:747.773333pt;}
.yab{bottom:750.493333pt;}
.y42{bottom:755.773333pt;}
.y69{bottom:766.493333pt;}
.yaa{bottom:769.213333pt;}
.yd{bottom:770.333333pt;}
.y41{bottom:774.493333pt;}
.y68{bottom:785.213333pt;}
.ya9{bottom:787.933333pt;}
.yc{bottom:789.053333pt;}
.y40{bottom:793.213333pt;}
.yb{bottom:803.973333pt;}
.y3f{bottom:811.973333pt;}
.ya8{bottom:814.693333pt;}
.y67{bottom:822.693333pt;}
.ya{bottom:823.813333pt;}
.y3e{bottom:830.693333pt;}
.ya7{bottom:833.413333pt;}
.y66{bottom:841.413333pt;}
.y9{bottom:846.213333pt;}
.y3d{bottom:849.413333pt;}
.ya6{bottom:852.133333pt;}
.y65{bottom:860.133333pt;}
.y3c{bottom:868.133333pt;}
.ya5{bottom:870.853333pt;}
.y8{bottom:876.133333pt;}
.y8d{bottom:878.853333pt;}
.y3b{bottom:886.853333pt;}
.ya4{bottom:889.573333pt;}
.y3a{bottom:905.573333pt;}
.y7{bottom:906.053333pt;}
.ya3{bottom:908.293333pt;}
.y39{bottom:924.293333pt;}
.ya2{bottom:927.013333pt;}
.y5{bottom:941.893333pt;}
.y38{bottom:943.013333pt;}
.ya1{bottom:945.733333pt;}
.y37{bottom:961.733333pt;}
.ya0{bottom:962.213333pt;}
.y4{bottom:970.693333pt;}
.y36{bottom:980.453333pt;}
.y9f{bottom:984.933333pt;}
.y35{bottom:999.173333pt;}
.y3{bottom:999.333333pt;}
.y9e{bottom:1008.293333pt;}
.y34{bottom:1017.893333pt;}
.y2{bottom:1028.160000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.ha{height:18.720000pt;}
.h9{height:18.752000pt;}
.hd{height:19.200000pt;}
.h7{height:34.374375pt;}
.hc{height:37.440000pt;}
.hb{height:41.440000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:30.720000pt;}
.w4{width:33.600000pt;}
.wf{width:35.840000pt;}
.wb{width:38.240000pt;}
.w14{width:40.640000pt;}
.w15{width:40.672000pt;}
.w1f{width:41.760000pt;}
.w6{width:41.920000pt;}
.w10{width:45.472000pt;}
.w19{width:47.200000pt;}
.we{width:48.960000pt;}
.w18{width:49.312000pt;}
.w20{width:54.400000pt;}
.w5{width:57.312000pt;}
.w17{width:57.920000pt;}
.w11{width:62.720000pt;}
.w1d{width:72.512000pt;}
.w7{width:73.600000pt;}
.w12{width:75.232000pt;}
.w16{width:77.440000pt;}
.w21{width:78.112000pt;}
.w1a{width:84.992000pt;}
.w8{width:105.952000pt;}
.w1e{width:111.552000pt;}
.w9{width:112.832000pt;}
.w1c{width:120.640000pt;}
.w1b{width:204.386667pt;}
.wa{width:252.066667pt;}
.w3{width:256.866667pt;}
.w13{width:270.786667pt;}
.wc{width:382.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:0.960000pt;}
.x1{left:47.999988pt;}
.x4{left:50.080000pt;}
.x13{left:55.200000pt;}
.x22{left:59.519988pt;}
.x21{left:62.559988pt;}
.x20{left:65.599988pt;}
.x2{left:71.999988pt;}
.x3{left:96.031988pt;}
.x1a{left:255.586667pt;}
.xc{left:304.226667pt;}
.x6{left:308.866667pt;}
.x14{left:328.066667pt;}
.x7{left:344.386667pt;}
.x15{left:370.786667pt;}
.x1b{left:378.306667pt;}
.x8{left:403.613333pt;}
.x16{left:413.533333pt;}
.xd{left:434.973333pt;}
.x9{left:447.453333pt;}
.x1c{left:452.893333pt;}
.xe{left:467.773333pt;}
.x17{left:493.053333pt;}
.xf{left:518.653333pt;}
.xa{left:522.973333pt;}
.x18{left:553.053333pt;}
.x10{left:556.413333pt;}
.x1d{left:566.373333pt;}
.x11{left:603.813333pt;}
.x1e{left:610.053333pt;}
.xb{left:631.013333pt;}
.x19{left:653.733333pt;}
.x1f{left:666.533333pt;}
.x12{left:668.613333pt;}
}




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