
    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_bf272c5ba9430e4ef1bc9efa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_4653ed90b6021b329680d314.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_a8e1d256c8b6ebfc09e7d881.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_74fba847d5552877e27eeeb4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_de9569a9c1e40a3b4fd9af2f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7758aaad34ed4ca7d954612e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b33540f6c8ac425b7e0970ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_c11d44a8859e0291c610d388.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1eddcf39de533fe683f38b17.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_29e13661282b97442b4d605a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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;}
.ls7{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.109200px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls8{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:14.705280px;}
.ls9{letter-spacing:16.865280px;}
.lsb{letter-spacing:36.281280px;}
.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;}
}
.ws9{word-spacing:-37.359360px;}
.wsa{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.450800px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1c{margin-left:-4.722000px;}
._f{margin-left:-3.496080px;}
._10{margin-left:-2.330640px;}
._0{margin-left:-1.105440px;}
._2{width:1.254960px;}
._9{width:2.509920px;}
._c{width:3.884400px;}
._4{width:5.139360px;}
._3{width:6.633360px;}
._a{width:7.768800px;}
._b{width:9.019200px;}
._13{width:10.797120px;}
._5{width:12.310560px;}
._8{width:13.765680px;}
._12{width:14.899200px;}
._d{width:16.135200px;}
._e{width:17.748720px;}
._1d{width:18.838800px;}
._14{width:20.004480px;}
._16{width:22.074000px;}
._7{width:23.366160px;}
._6{width:24.860160px;}
._19{width:25.899840px;}
._17{width:27.688320px;}
._18{width:28.851600px;}
._1b{width:31.774560px;}
._15{width:32.855040px;}
._22{width:35.107200px;}
._1a{width:37.491840px;}
._1f{width:57.960000px;}
._1e{width:59.264160px;}
._20{width:63.590400px;}
._23{width:84.191040px;}
._11{width:156.929040px;}
._21{width:229.654080px;}
._1{width:1207.740000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y77{bottom:6.300000px;}
.y9e{bottom:6.345000px;}
.y79{bottom:6.480000px;}
.y2{bottom:6.840000px;}
.yad{bottom:28.080000px;}
.y8a{bottom:28.260000px;}
.y4{bottom:70.416000px;}
.y7c{bottom:112.176000px;}
.y6b{bottom:118.476000px;}
.ybb{bottom:127.476000px;}
.y6a{bottom:131.616000px;}
.y9a{bottom:133.416000px;}
.y7b{bottom:136.656000px;}
.y3c{bottom:144.576000px;}
.yba{bottom:149.256000px;}
.y69{bottom:153.390000px;}
.y3b{bottom:166.350000px;}
.yb9{bottom:171.210000px;}
.y99{bottom:171.750000px;}
.y7a{bottom:174.810000px;}
.y68{bottom:175.170000px;}
.y3a{bottom:188.130000px;}
.yb8{bottom:192.990000px;}
.y67{bottom:196.950000px;}
.y39{bottom:209.910000px;}
.y98{bottom:210.090000px;}
.y78{bottom:213.150000px;}
.yb7{bottom:214.770000px;}
.y66{bottom:218.910000px;}
.y38{bottom:231.870000px;}
.yb6{bottom:236.550000px;}
.y65{bottom:240.690000px;}
.y97{bottom:248.430000px;}
.y76{bottom:251.490000px;}
.y37{bottom:253.650000px;}
.yb5{bottom:258.330000px;}
.y64{bottom:262.470000px;}
.y36{bottom:275.430000px;}
.yb4{bottom:280.290000px;}
.y63{bottom:284.250000px;}
.y96{bottom:285.510000px;}
.y75{bottom:288.750000px;}
.y35{bottom:296.670000px;}
.yb3{bottom:302.070000px;}
.y62{bottom:306.210000px;}
.y74{bottom:306.930000px;}
.y95{bottom:307.290000px;}
.y34{bottom:313.230000px;}
.yb2{bottom:323.850000px;}
.y33{bottom:327.090000px;}
.y61{bottom:327.990000px;}
.y94{bottom:329.250000px;}
.y32{bottom:341.715000px;}
.yb1{bottom:345.675000px;}
.y60{bottom:349.815000px;}
.y93{bottom:351.075000px;}
.y31{bottom:358.815000px;}
.yb0{bottom:370.155000px;}
.y5f{bottom:371.595000px;}
.y92{bottom:372.855000px;}
.y30{bottom:376.095000px;}
.y2f{bottom:393.375000px;}
.y91{bottom:394.635000px;}
.yaf{bottom:408.495000px;}
.y2e{bottom:410.655000px;}
.y5e{bottom:415.335000px;}
.y90{bottom:416.595000px;}
.y2d{bottom:427.935000px;}
.y5d{bottom:437.115000px;}
.y8f{bottom:438.375000px;}
.y2c{bottom:445.215000px;}
.yae{bottom:446.835000px;}
.y5c{bottom:458.895000px;}
.y2b{bottom:462.315000px;}
.y8e{bottom:462.855000px;}
.y2a{bottom:479.595000px;}
.y5b{bottom:480.675000px;}
.yac{bottom:485.175000px;}
.y29{bottom:496.875000px;}
.y8d{bottom:501.195000px;}
.y5a{bottom:502.635000px;}
.y28{bottom:514.155000px;}
.y59{bottom:524.415000px;}
.y27{bottom:531.435000px;}
.y8c{bottom:539.535000px;}
.yab{bottom:545.295000px;}
.y58{bottom:546.195000px;}
.y26{bottom:548.535000px;}
.y25{bottom:565.815000px;}
.y57{bottom:567.975000px;}
.y8b{bottom:577.695000px;}
.y24{bottom:583.095000px;}
.y56{bottom:589.755000px;}
.y73{bottom:592.275000px;}
.y23{bottom:600.375000px;}
.yaa{bottom:604.365000px;}
.y55{bottom:611.745000px;}
.y72{bottom:614.085000px;}
.y89{bottom:616.065000px;}
.y22{bottom:617.685000px;}
.ya9{bottom:626.145000px;}
.y54{bottom:633.525000px;}
.y21{bottom:634.965000px;}
.y71{bottom:636.045000px;}
.ya8{bottom:647.925000px;}
.y20{bottom:652.065000px;}
.y53{bottom:655.305000px;}
.y70{bottom:657.825000px;}
.y1f{bottom:669.345000px;}
.ya7{bottom:669.705000px;}
.y88{bottom:675.105000px;}
.y52{bottom:677.085000px;}
.y6f{bottom:679.605000px;}
.y1e{bottom:686.625000px;}
.ya6{bottom:691.665000px;}
.y87{bottom:696.885000px;}
.y51{bottom:699.045000px;}
.y6e{bottom:701.385000px;}
.y1d{bottom:703.905000px;}
.ya5{bottom:713.445000px;}
.y86{bottom:718.665000px;}
.y50{bottom:720.825000px;}
.y1c{bottom:721.185000px;}
.y6d{bottom:723.345000px;}
.ya4{bottom:735.225000px;}
.y1b{bottom:738.465000px;}
.y85{bottom:740.625000px;}
.y6c{bottom:741.525000px;}
.y4f{bottom:742.605000px;}
.y1a{bottom:755.565000px;}
.ya3{bottom:757.005000px;}
.y84{bottom:762.405000px;}
.y4e{bottom:764.385000px;}
.y19{bottom:772.845000px;}
.ya2{bottom:778.965000px;}
.y83{bottom:784.185000px;}
.y4d{bottom:786.165000px;}
.y18{bottom:790.125000px;}
.ya1{bottom:800.745000px;}
.y82{bottom:805.965000px;}
.y17{bottom:807.405000px;}
.y4c{bottom:808.125000px;}
.ya0{bottom:822.525000px;}
.y16{bottom:824.685000px;}
.y81{bottom:827.925000px;}
.y4b{bottom:829.905000px;}
.y15{bottom:841.785000px;}
.y9f{bottom:844.305000px;}
.y4a{bottom:851.685000px;}
.y80{bottom:852.405000px;}
.y14{bottom:859.065000px;}
.y9d{bottom:868.785000px;}
.y49{bottom:873.510000px;}
.y13{bottom:876.930000px;}
.y7f{bottom:890.610000px;}
.y48{bottom:895.470000px;}
.y12{bottom:900.690000px;}
.y9c{bottom:907.170000px;}
.y11{bottom:912.570000px;}
.y47{bottom:917.250000px;}
.y7e{bottom:928.950000px;}
.y10{bottom:935.070000px;}
.y46{bottom:939.030000px;}
.y9b{bottom:945.510000px;}
.yf{bottom:947.490000px;}
.y45{bottom:960.810000px;}
.ye{bottom:966.570000px;}
.y7d{bottom:967.290000px;}
.y44{bottom:982.590000px;}
.yd{bottom:985.470000px;}
.y43{bottom:1004.550000px;}
.yc{bottom:1004.910000px;}
.y42{bottom:1026.330000px;}
.yb{bottom:1027.410000px;}
.y41{bottom:1048.110000px;}
.ya{bottom:1049.370000px;}
.y9{bottom:1067.910000px;}
.y40{bottom:1069.890000px;}
.y8{bottom:1085.190000px;}
.y3f{bottom:1091.670000px;}
.y7{bottom:1102.290000px;}
.y3e{bottom:1113.630000px;}
.y6{bottom:1119.570000px;}
.y3d{bottom:1135.410000px;}
.y5{bottom:1136.850000px;}
.y3{bottom:1154.160000px;}
.y1{bottom:1168.200000px;}
.h12{height:21.780000px;}
.h14{height:21.816000px;}
.h13{height:21.960000px;}
.h2{height:26.640000px;}
.hd{height:27.147656px;}
.hf{height:34.036523px;}
.h5{height:39.760312px;}
.h4{height:41.726953px;}
.h6{height:42.164648px;}
.h16{height:43.560000px;}
.h15{height:43.740000px;}
.h8{height:46.251562px;}
.hb{height:46.736719px;}
.h10{height:48.224531px;}
.he{height:49.255313px;}
.h7{height:50.273438px;}
.h3{height:50.414062px;}
.hc{height:53.224453px;}
.h11{height:54.596250px;}
.ha{height:54.864844px;}
.h9{height:63.104063px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.w8{width:99.360000px;}
.w9{width:99.396000px;}
.w7{width:149.760000px;}
.w6{width:149.796000px;}
.w5{width:200.190000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:6.840000px;}
.x2{left:8.640000px;}
.x37{left:15.660000px;}
.x38{left:16.950000px;}
.x39{left:20.520000px;}
.x23{left:21.780000px;}
.x36{left:23.580000px;}
.x26{left:29.700000px;}
.x3b{left:31.140000px;}
.x3c{left:41.445000px;}
.x2d{left:45.540000px;}
.x1c{left:46.800000px;}
.x28{left:49.320000px;}
.x27{left:50.580000px;}
.x31{left:52.065000px;}
.x18{left:56.340000px;}
.x1d{left:62.100000px;}
.x32{left:66.600000px;}
.x24{left:69.840000px;}
.x1a{left:73.440000px;}
.x1f{left:81.540000px;}
.x2a{left:85.680000px;}
.x21{left:87.660000px;}
.x20{left:91.620000px;}
.x1e{left:95.760000px;}
.x1{left:108.036000px;}
.x9{left:109.115987px;}
.x7{left:117.215987px;}
.x3d{left:133.955987px;}
.xf{left:139.895987px;}
.x4{left:149.435987px;}
.xe{left:150.509987px;}
.x3{left:161.130000px;}
.x17{left:163.470000px;}
.x5{left:197.849987px;}
.x2b{left:214.229987px;}
.x10{left:216.029987px;}
.x25{left:231.869987px;}
.x29{left:236.909987px;}
.x12{left:243.749987px;}
.x22{left:249.869987px;}
.x33{left:256.349987px;}
.x35{left:264.270000px;}
.xb{left:268.229987px;}
.x15{left:277.814987px;}
.x16{left:281.774987px;}
.x2c{left:289.874987px;}
.x2e{left:314.715000px;}
.xa{left:331.994987px;}
.x8{left:334.874987px;}
.x19{left:365.295000px;}
.x14{left:394.274987px;}
.xd{left:418.574987px;}
.xc{left:420.194987px;}
.x6{left:446.474987px;}
.x2f{left:466.095000px;}
.x1b{left:566.925000px;}
.x30{left:617.325000px;}
.x3a{left:667.770000px;}
.x11{left:689.549987px;}
.x13{left:690.809987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls8{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:13.071360pt;}
.ls9{letter-spacing:14.991360pt;}
.lsb{letter-spacing:32.250027pt;}
.ws9{word-spacing:-33.208320pt;}
.wsa{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.622933pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1c{margin-left:-4.197333pt;}
._f{margin-left:-3.107627pt;}
._10{margin-left:-2.071680pt;}
._0{margin-left:-0.982613pt;}
._2{width:1.115520pt;}
._9{width:2.231040pt;}
._c{width:3.452800pt;}
._4{width:4.568320pt;}
._3{width:5.896320pt;}
._a{width:6.905600pt;}
._b{width:8.017067pt;}
._13{width:9.597440pt;}
._5{width:10.942720pt;}
._8{width:12.236160pt;}
._12{width:13.243733pt;}
._d{width:14.342400pt;}
._e{width:15.776640pt;}
._1d{width:16.745600pt;}
._14{width:17.781760pt;}
._16{width:19.621333pt;}
._7{width:20.769920pt;}
._6{width:22.097920pt;}
._19{width:23.022080pt;}
._17{width:24.611840pt;}
._18{width:25.645867pt;}
._1b{width:28.244053pt;}
._15{width:29.204480pt;}
._22{width:31.206400pt;}
._1a{width:33.326080pt;}
._1f{width:51.520000pt;}
._1e{width:52.679253pt;}
._20{width:56.524800pt;}
._23{width:74.836480pt;}
._11{width:139.492480pt;}
._21{width:204.136960pt;}
._1{width:1073.546667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:5.600000pt;}
.y9e{bottom:5.640000pt;}
.y79{bottom:5.760000pt;}
.y2{bottom:6.080000pt;}
.yad{bottom:24.960000pt;}
.y8a{bottom:25.120000pt;}
.y4{bottom:62.592000pt;}
.y7c{bottom:99.712000pt;}
.y6b{bottom:105.312000pt;}
.ybb{bottom:113.312000pt;}
.y6a{bottom:116.992000pt;}
.y9a{bottom:118.592000pt;}
.y7b{bottom:121.472000pt;}
.y3c{bottom:128.512000pt;}
.yba{bottom:132.672000pt;}
.y69{bottom:136.346667pt;}
.y3b{bottom:147.866667pt;}
.yb9{bottom:152.186667pt;}
.y99{bottom:152.666667pt;}
.y7a{bottom:155.386667pt;}
.y68{bottom:155.706667pt;}
.y3a{bottom:167.226667pt;}
.yb8{bottom:171.546667pt;}
.y67{bottom:175.066667pt;}
.y39{bottom:186.586667pt;}
.y98{bottom:186.746667pt;}
.y78{bottom:189.466667pt;}
.yb7{bottom:190.906667pt;}
.y66{bottom:194.586667pt;}
.y38{bottom:206.106667pt;}
.yb6{bottom:210.266667pt;}
.y65{bottom:213.946667pt;}
.y97{bottom:220.826667pt;}
.y76{bottom:223.546667pt;}
.y37{bottom:225.466667pt;}
.yb5{bottom:229.626667pt;}
.y64{bottom:233.306667pt;}
.y36{bottom:244.826667pt;}
.yb4{bottom:249.146667pt;}
.y63{bottom:252.666667pt;}
.y96{bottom:253.786667pt;}
.y75{bottom:256.666667pt;}
.y35{bottom:263.706667pt;}
.yb3{bottom:268.506667pt;}
.y62{bottom:272.186667pt;}
.y74{bottom:272.826667pt;}
.y95{bottom:273.146667pt;}
.y34{bottom:278.426667pt;}
.yb2{bottom:287.866667pt;}
.y33{bottom:290.746667pt;}
.y61{bottom:291.546667pt;}
.y94{bottom:292.666667pt;}
.y32{bottom:303.746667pt;}
.yb1{bottom:307.266667pt;}
.y60{bottom:310.946667pt;}
.y93{bottom:312.066667pt;}
.y31{bottom:318.946667pt;}
.yb0{bottom:329.026667pt;}
.y5f{bottom:330.306667pt;}
.y92{bottom:331.426667pt;}
.y30{bottom:334.306667pt;}
.y2f{bottom:349.666667pt;}
.y91{bottom:350.786667pt;}
.yaf{bottom:363.106667pt;}
.y2e{bottom:365.026667pt;}
.y5e{bottom:369.186667pt;}
.y90{bottom:370.306667pt;}
.y2d{bottom:380.386667pt;}
.y5d{bottom:388.546667pt;}
.y8f{bottom:389.666667pt;}
.y2c{bottom:395.746667pt;}
.yae{bottom:397.186667pt;}
.y5c{bottom:407.906667pt;}
.y2b{bottom:410.946667pt;}
.y8e{bottom:411.426667pt;}
.y2a{bottom:426.306667pt;}
.y5b{bottom:427.266667pt;}
.yac{bottom:431.266667pt;}
.y29{bottom:441.666667pt;}
.y8d{bottom:445.506667pt;}
.y5a{bottom:446.786667pt;}
.y28{bottom:457.026667pt;}
.y59{bottom:466.146667pt;}
.y27{bottom:472.386667pt;}
.y8c{bottom:479.586667pt;}
.yab{bottom:484.706667pt;}
.y58{bottom:485.506667pt;}
.y26{bottom:487.586667pt;}
.y25{bottom:502.946667pt;}
.y57{bottom:504.866667pt;}
.y8b{bottom:513.506667pt;}
.y24{bottom:518.306667pt;}
.y56{bottom:524.226667pt;}
.y73{bottom:526.466667pt;}
.y23{bottom:533.666667pt;}
.yaa{bottom:537.213333pt;}
.y55{bottom:543.773333pt;}
.y72{bottom:545.853333pt;}
.y89{bottom:547.613333pt;}
.y22{bottom:549.053333pt;}
.ya9{bottom:556.573333pt;}
.y54{bottom:563.133333pt;}
.y21{bottom:564.413333pt;}
.y71{bottom:565.373333pt;}
.ya8{bottom:575.933333pt;}
.y20{bottom:579.613333pt;}
.y53{bottom:582.493333pt;}
.y70{bottom:584.733333pt;}
.y1f{bottom:594.973333pt;}
.ya7{bottom:595.293333pt;}
.y88{bottom:600.093333pt;}
.y52{bottom:601.853333pt;}
.y6f{bottom:604.093333pt;}
.y1e{bottom:610.333333pt;}
.ya6{bottom:614.813333pt;}
.y87{bottom:619.453333pt;}
.y51{bottom:621.373333pt;}
.y6e{bottom:623.453333pt;}
.y1d{bottom:625.693333pt;}
.ya5{bottom:634.173333pt;}
.y86{bottom:638.813333pt;}
.y50{bottom:640.733333pt;}
.y1c{bottom:641.053333pt;}
.y6d{bottom:642.973333pt;}
.ya4{bottom:653.533333pt;}
.y1b{bottom:656.413333pt;}
.y85{bottom:658.333333pt;}
.y6c{bottom:659.133333pt;}
.y4f{bottom:660.093333pt;}
.y1a{bottom:671.613333pt;}
.ya3{bottom:672.893333pt;}
.y84{bottom:677.693333pt;}
.y4e{bottom:679.453333pt;}
.y19{bottom:686.973333pt;}
.ya2{bottom:692.413333pt;}
.y83{bottom:697.053333pt;}
.y4d{bottom:698.813333pt;}
.y18{bottom:702.333333pt;}
.ya1{bottom:711.773333pt;}
.y82{bottom:716.413333pt;}
.y17{bottom:717.693333pt;}
.y4c{bottom:718.333333pt;}
.ya0{bottom:731.133333pt;}
.y16{bottom:733.053333pt;}
.y81{bottom:735.933333pt;}
.y4b{bottom:737.693333pt;}
.y15{bottom:748.253333pt;}
.y9f{bottom:750.493333pt;}
.y4a{bottom:757.053333pt;}
.y80{bottom:757.693333pt;}
.y14{bottom:763.613333pt;}
.y9d{bottom:772.253333pt;}
.y49{bottom:776.453333pt;}
.y13{bottom:779.493333pt;}
.y7f{bottom:791.653333pt;}
.y48{bottom:795.973333pt;}
.y12{bottom:800.613333pt;}
.y9c{bottom:806.373333pt;}
.y11{bottom:811.173333pt;}
.y47{bottom:815.333333pt;}
.y7e{bottom:825.733333pt;}
.y10{bottom:831.173333pt;}
.y46{bottom:834.693333pt;}
.y9b{bottom:840.453333pt;}
.yf{bottom:842.213333pt;}
.y45{bottom:854.053333pt;}
.ye{bottom:859.173333pt;}
.y7d{bottom:859.813333pt;}
.y44{bottom:873.413333pt;}
.yd{bottom:875.973333pt;}
.y43{bottom:892.933333pt;}
.yc{bottom:893.253333pt;}
.y42{bottom:912.293333pt;}
.yb{bottom:913.253333pt;}
.y41{bottom:931.653333pt;}
.ya{bottom:932.773333pt;}
.y9{bottom:949.253333pt;}
.y40{bottom:951.013333pt;}
.y8{bottom:964.613333pt;}
.y3f{bottom:970.373333pt;}
.y7{bottom:979.813333pt;}
.y3e{bottom:989.893333pt;}
.y6{bottom:995.173333pt;}
.y3d{bottom:1009.253333pt;}
.y5{bottom:1010.533333pt;}
.y3{bottom:1025.920000pt;}
.y1{bottom:1038.400000pt;}
.h12{height:19.360000pt;}
.h14{height:19.392000pt;}
.h13{height:19.520000pt;}
.h2{height:23.680000pt;}
.hd{height:24.131250pt;}
.hf{height:30.254687pt;}
.h5{height:35.342500pt;}
.h4{height:37.090625pt;}
.h6{height:37.479688pt;}
.h16{height:38.720000pt;}
.h15{height:38.880000pt;}
.h8{height:41.112500pt;}
.hb{height:41.543750pt;}
.h10{height:42.866250pt;}
.he{height:43.782500pt;}
.h7{height:44.687500pt;}
.h3{height:44.812500pt;}
.hc{height:47.310625pt;}
.h11{height:48.530000pt;}
.ha{height:48.768750pt;}
.h9{height:56.092500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.w8{width:88.320000pt;}
.w9{width:88.352000pt;}
.w7{width:133.120000pt;}
.w6{width:133.152000pt;}
.w5{width:177.946667pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:6.080000pt;}
.x2{left:7.680000pt;}
.x37{left:13.920000pt;}
.x38{left:15.066667pt;}
.x39{left:18.240000pt;}
.x23{left:19.360000pt;}
.x36{left:20.960000pt;}
.x26{left:26.400000pt;}
.x3b{left:27.680000pt;}
.x3c{left:36.840000pt;}
.x2d{left:40.480000pt;}
.x1c{left:41.600000pt;}
.x28{left:43.840000pt;}
.x27{left:44.960000pt;}
.x31{left:46.280000pt;}
.x18{left:50.080000pt;}
.x1d{left:55.200000pt;}
.x32{left:59.200000pt;}
.x24{left:62.080000pt;}
.x1a{left:65.280000pt;}
.x1f{left:72.480000pt;}
.x2a{left:76.160000pt;}
.x21{left:77.920000pt;}
.x20{left:81.440000pt;}
.x1e{left:85.120000pt;}
.x1{left:96.032000pt;}
.x9{left:96.991988pt;}
.x7{left:104.191988pt;}
.x3d{left:119.071988pt;}
.xf{left:124.351988pt;}
.x4{left:132.831988pt;}
.xe{left:133.786655pt;}
.x3{left:143.226667pt;}
.x17{left:145.306667pt;}
.x5{left:175.866655pt;}
.x2b{left:190.426655pt;}
.x10{left:192.026655pt;}
.x25{left:206.106655pt;}
.x29{left:210.586655pt;}
.x12{left:216.666655pt;}
.x22{left:222.106655pt;}
.x33{left:227.866655pt;}
.x35{left:234.906667pt;}
.xb{left:238.426655pt;}
.x15{left:246.946655pt;}
.x16{left:250.466655pt;}
.x2c{left:257.666655pt;}
.x2e{left:279.746667pt;}
.xa{left:295.106655pt;}
.x8{left:297.666655pt;}
.x19{left:324.706667pt;}
.x14{left:350.466655pt;}
.xd{left:372.066655pt;}
.xc{left:373.506655pt;}
.x6{left:396.866655pt;}
.x2f{left:414.306667pt;}
.x1b{left:503.933333pt;}
.x30{left:548.733333pt;}
.x3a{left:593.573333pt;}
.x11{left:612.933322pt;}
.x13{left:614.053322pt;}
}




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