
    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_4c7ffea6ae9732aaea093507.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_499fe71fc7f85f0d831e3b34.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_b271ed40ef82f5c08764cbc6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1e86837e577523a0e3c8181d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_c5711ad86a6253080e7b18c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d6b7ce8ef95ac684f7b78bdb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e3ec7f3c8e32c101deec41e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7b0308aa0bf7967c6d0707e3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-38.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.ls15{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.350400px;}
.lsf{letter-spacing:-0.341400px;}
.ls8{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.018720px;}
.lsa{letter-spacing:-0.009360px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012960px;}
.ls7{letter-spacing:0.023040px;}
.ls16{letter-spacing:0.037440px;}
.ls13{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.708000px;}
.ls1{letter-spacing:1.231920px;}
.ls2{letter-spacing:1.340640px;}
.ls3{letter-spacing:1.951920px;}
.lsd{letter-spacing:7.500000px;}
.ls11{letter-spacing:64.002720px;}
.ls12{letter-spacing:66.060000px;}
.lse{letter-spacing:246.600000px;}
.lsc{letter-spacing:265.320000px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws6{word-spacing:-21.420000px;}
.ws10{word-spacing:-21.097440px;}
.ws5{word-spacing:-21.060000px;}
.ws8{word-spacing:-21.050640px;}
.ws9{word-spacing:-21.041280px;}
.wsb{word-spacing:-20.718600px;}
.wsf{word-spacing:-20.709600px;}
.ws3{word-spacing:-20.700000px;}
.wsd{word-spacing:-19.380000px;}
.ws2{word-spacing:-14.595840px;}
.ws7{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.160160px;}
.ws1{word-spacing:-13.147200px;}
.wsa{word-spacing:-13.140000px;}
.wsc{word-spacing:-11.880000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-3.734640px;}
._1a{margin-left:-2.270880px;}
._1{margin-left:-1.260000px;}
._0{width:1.032000px;}
._2{width:2.223840px;}
._3{width:3.714000px;}
._6{width:5.503680px;}
._5{width:7.294560px;}
._f{width:8.925840px;}
._c{width:10.617840px;}
._b{width:11.790000px;}
._a{width:13.057200px;}
._9{width:14.991120px;}
._8{width:16.086240px;}
._7{width:17.567040px;}
._11{width:18.989520px;}
._1b{width:20.024400px;}
._14{width:22.993920px;}
._1c{width:24.014160px;}
._10{width:25.608960px;}
._16{width:26.953200px;}
._12{width:28.473120px;}
._13{width:29.509920px;}
._21{width:30.511920px;}
._1d{width:31.542000px;}
._22{width:32.596320px;}
._17{width:33.696000px;}
._18{width:35.292960px;}
._1f{width:36.415680px;}
._d{width:37.486800px;}
._23{width:38.544480px;}
._e{width:39.613440px;}
._2b{width:40.659360px;}
._15{width:41.672160px;}
._20{width:43.132800px;}
._25{width:44.306400px;}
._33{width:47.764080px;}
._28{width:55.626480px;}
._35{width:57.383280px;}
._34{width:58.839600px;}
._19{width:62.421840px;}
._31{width:64.841280px;}
._30{width:65.880000px;}
._32{width:67.370640px;}
._36{width:68.817360px;}
._1e{width:72.948240px;}
._26{width:75.226320px;}
._27{width:77.379600px;}
._2a{width:191.056320px;}
._29{width:192.569040px;}
._2c{width:199.143360px;}
._2e{width:223.737840px;}
._2d{width:224.920800px;}
._24{width:302.989440px;}
._2f{width:658.105920px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:12.240000px;}
.y60{bottom:16.725000px;}
.y47{bottom:16.740000px;}
.y7b{bottom:16.770000px;}
.y7f{bottom:16.920000px;}
.y64{bottom:17.085000px;}
.y4f{bottom:17.100000px;}
.y4c{bottom:17.280000px;}
.y52{bottom:26.820000px;}
.y54{bottom:27.000000px;}
.ya6{bottom:32.550000px;}
.y7c{bottom:34.770000px;}
.y6f{bottom:34.785000px;}
.y51{bottom:34.920000px;}
.y62{bottom:35.085000px;}
.y6d{bottom:35.145000px;}
.y4d{bottom:35.280000px;}
.ya0{bottom:49.605000px;}
.y74{bottom:52.920000px;}
.y7a{bottom:52.950000px;}
.y6e{bottom:52.965000px;}
.y63{bottom:53.265000px;}
.y4e{bottom:53.280000px;}
.y4b{bottom:53.460000px;}
.y78{bottom:53.640000px;}
.y72{bottom:53.820000px;}
.y7{bottom:57.600000px;}
.y49{bottom:71.460000px;}
.y6{bottom:76.860000px;}
.y71{bottom:90.000000px;}
.y77{bottom:90.030000px;}
.ya1{bottom:95.040000px;}
.y43{bottom:113.040000px;}
.y3e{bottom:113.400000px;}
.ya7{bottom:129.750000px;}
.y9e{bottom:137.340000px;}
.y22{bottom:139.320000px;}
.y69{bottom:139.860000px;}
.ya2{bottom:140.475000px;}
.y8b{bottom:142.200000px;}
.y42{bottom:149.220000px;}
.y3d{bottom:149.580000px;}
.y9d{bottom:173.520000px;}
.y21{bottom:175.500000px;}
.y68{bottom:176.040000px;}
.y8a{bottom:178.380000px;}
.ya3{bottom:185.910000px;}
.y3c{bottom:185.940000px;}
.y9c{bottom:209.730000px;}
.y20{bottom:211.710000px;}
.y67{bottom:212.070000px;}
.y89{bottom:214.590000px;}
.y3b{bottom:222.150000px;}
.ya4{bottom:231.330000px;}
.y66{bottom:232.245000px;}
.y9b{bottom:246.090000px;}
.y1f{bottom:248.070000px;}
.y88{bottom:250.770000px;}
.y3a{bottom:258.330000px;}
.y65{bottom:269.145000px;}
.ya5{bottom:276.765000px;}
.y9a{bottom:282.270000px;}
.y1e{bottom:284.250000px;}
.ya9{bottom:285.810000px;}
.y87{bottom:287.130000px;}
.y39{bottom:294.510000px;}
.y61{bottom:306.225000px;}
.y99{bottom:318.090000px;}
.y1d{bottom:320.430000px;}
.y86{bottom:323.310000px;}
.y38{bottom:330.330000px;}
.y40{bottom:330.690000px;}
.y98{bottom:354.630000px;}
.y1c{bottom:356.610000px;}
.y85{bottom:359.490000px;}
.y37{bottom:367.050000px;}
.y5f{bottom:379.305000px;}
.y97{bottom:390.810000px;}
.y1b{bottom:392.790000px;}
.y84{bottom:395.670000px;}
.y36{bottom:403.230000px;}
.y96{bottom:427.170000px;}
.y1a{bottom:429.150000px;}
.y83{bottom:432.030000px;}
.y5e{bottom:433.110000px;}
.y35{bottom:439.410000px;}
.y95{bottom:463.395000px;}
.y19{bottom:465.375000px;}
.y82{bottom:468.255000px;}
.y5d{bottom:469.695000px;}
.yab{bottom:475.275000px;}
.y34{bottom:475.635000px;}
.y94{bottom:499.575000px;}
.y18{bottom:501.195000px;}
.y81{bottom:504.075000px;}
.y5c{bottom:505.875000px;}
.y33{bottom:511.995000px;}
.y93{bottom:535.755000px;}
.y17{bottom:537.375000px;}
.y80{bottom:540.255000px;}
.y5b{bottom:542.235000px;}
.y45{bottom:547.815000px;}
.y32{bottom:548.175000px;}
.y7e{bottom:560.415000px;}
.y92{bottom:572.115000px;}
.y16{bottom:574.095000px;}
.y5a{bottom:578.415000px;}
.y31{bottom:584.355000px;}
.y76{bottom:597.495000px;}
.y91{bottom:608.295000px;}
.y15{bottom:610.275000px;}
.y59{bottom:614.595000px;}
.y30{bottom:620.535000px;}
.y7d{bottom:634.395000px;}
.y90{bottom:644.475000px;}
.y14{bottom:646.455000px;}
.y58{bottom:650.775000px;}
.y2f{bottom:656.895000px;}
.y79{bottom:671.475000px;}
.y8f{bottom:680.685000px;}
.y13{bottom:682.665000px;}
.y57{bottom:686.985000px;}
.y2e{bottom:693.105000px;}
.y56{bottom:706.965000px;}
.y8e{bottom:716.685000px;}
.y12{bottom:719.025000px;}
.y2d{bottom:729.285000px;}
.y55{bottom:743.865000px;}
.y70{bottom:744.585000px;}
.y8d{bottom:752.865000px;}
.y11{bottom:755.205000px;}
.y2c{bottom:765.465000px;}
.y53{bottom:780.765000px;}
.y75{bottom:781.665000px;}
.y8c{bottom:784.365000px;}
.y9f{bottom:785.520000px;}
.y10{bottom:791.385000px;}
.y41{bottom:801.285000px;}
.y2b{bottom:801.645000px;}
.y73{bottom:818.565000px;}
.yf{bottom:827.565000px;}
.y2a{bottom:838.005000px;}
.y50{bottom:854.025000px;}
.ye{bottom:863.745000px;}
.y29{bottom:873.825000px;}
.y3f{bottom:874.185000px;}
.y6c{bottom:891.825000px;}
.yd{bottom:900.105000px;}
.yaa{bottom:910.005000px;}
.y28{bottom:910.365000px;}
.y48{bottom:927.330000px;}
.yc{bottom:935.970000px;}
.y27{bottom:946.590000px;}
.y6b{bottom:964.950000px;}
.yb{bottom:972.510000px;}
.y26{bottom:982.950000px;}
.y4a{bottom:1000.410000px;}
.ya{bottom:1008.330000px;}
.y6a{bottom:1018.770000px;}
.y25{bottom:1019.130000px;}
.y9{bottom:1047.030000px;}
.y24{bottom:1055.310000px;}
.y46{bottom:1073.670000px;}
.y8{bottom:1088.430000px;}
.y44{bottom:1091.130000px;}
.y23{bottom:1091.490000px;}
.y5{bottom:1114.350000px;}
.y4{bottom:1135.950000px;}
.y3{bottom:1156.320000px;}
.y2{bottom:1176.480000px;}
.y1{bottom:1196.100000px;}
.h9{height:36.165000px;}
.h11{height:36.180000px;}
.h18{height:36.345000px;}
.h1a{height:45.509766px;}
.h2{height:45.720703px;}
.h3{height:50.364141px;}
.hf{height:52.998047px;}
.h4{height:55.825312px;}
.hd{height:72.345000px;}
.h14{height:72.360000px;}
.h12{height:72.382500px;}
.h17{height:72.390000px;}
.hb{height:72.525000px;}
.h10{height:72.540000px;}
.he{height:72.562500px;}
.h8{height:75.519844px;}
.h7{height:82.676953px;}
.h6{height:84.898125px;}
.hc{height:91.878047px;}
.h15{height:93.301875px;}
.h5{height:96.508125px;}
.ha{height:145.605000px;}
.h13{height:146.340000px;}
.h16{height:146.370000px;}
.h19{height:325.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:52.416000px;}
.wb{width:62.625000px;}
.wa{width:63.021000px;}
.w8{width:63.165000px;}
.w6{width:84.240000px;}
.w9{width:94.845000px;}
.we{width:132.876000px;}
.wf{width:137.325000px;}
.w13{width:148.125000px;}
.w3{width:151.035000px;}
.w16{width:157.350000px;}
.w10{width:157.875000px;}
.w15{width:161.839500px;}
.w14{width:170.475000px;}
.wd{width:199.639500px;}
.w4{width:201.090000px;}
.w5{width:221.955000px;}
.w12{width:319.924500px;}
.w2{width:575.910000px;}
.wc{width:629.910000px;}
.w17{width:639.000000px;}
.w11{width:639.810000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:12.780000px;}
.x15{left:14.925000px;}
.x13{left:17.460000px;}
.x35{left:18.540000px;}
.x2e{left:19.785000px;}
.x1c{left:20.910000px;}
.x17{left:22.710000px;}
.x1d{left:24.645000px;}
.x19{left:25.905000px;}
.x28{left:27.000000px;}
.x1a{left:28.065000px;}
.x1b{left:29.145000px;}
.x32{left:31.303500px;}
.x3b{left:35.610000px;}
.x11{left:37.260000px;}
.xc{left:43.200000px;}
.x38{left:45.345000px;}
.x2a{left:50.743500px;}
.x25{left:52.005000px;}
.xf{left:53.805000px;}
.x34{left:56.550000px;}
.x2f{left:58.305000px;}
.xd{left:61.200000px;}
.x37{left:63.525000px;}
.x36{left:66.810000px;}
.x29{left:68.250000px;}
.x27{left:71.310000px;}
.x1e{left:73.965000px;}
.xa{left:75.405000px;}
.x31{left:80.803500px;}
.x39{left:85.170000px;}
.x22{left:99.703500px;}
.x1{left:108.036000px;}
.x3{left:111.636000px;}
.x2b{left:126.586500px;}
.x6{left:128.556000px;}
.x20{left:131.626500px;}
.x3e{left:156.270000px;}
.x8{left:158.625000px;}
.x2d{left:159.868500px;}
.x7{left:162.030000px;}
.x3d{left:177.375000px;}
.x9{left:204.510000px;}
.x21{left:221.248500px;}
.x2c{left:226.828500px;}
.x4{left:272.775000px;}
.x33{left:289.155000px;}
.x3c{left:302.370000px;}
.xb{left:310.575000px;}
.x23{left:331.995000px;}
.x5{left:333.975000px;}
.x12{left:395.535000px;}
.x2{left:437.295000px;}
.x1f{left:446.505000px;}
.x14{left:448.680000px;}
.x24{left:465.600000px;}
.xe{left:512.580000px;}
.x30{left:596.100000px;}
.x26{left:603.660000px;}
.x16{left:608.160000px;}
.x18{left:671.910000px;}
.x3a{left:766.050000px;}
@media print{
.v2{vertical-align:-34.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.ls15{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.311467pt;}
.lsf{letter-spacing:-0.303467pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.016640pt;}
.lsa{letter-spacing:-0.008320pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011520pt;}
.ls7{letter-spacing:0.020480pt;}
.ls16{letter-spacing:0.033280pt;}
.ls13{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.629333pt;}
.ls1{letter-spacing:1.095040pt;}
.ls2{letter-spacing:1.191680pt;}
.ls3{letter-spacing:1.735040pt;}
.lsd{letter-spacing:6.666667pt;}
.ls11{letter-spacing:56.891307pt;}
.ls12{letter-spacing:58.720000pt;}
.lse{letter-spacing:219.200000pt;}
.lsc{letter-spacing:235.840000pt;}
.wse{word-spacing:-53.120000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws10{word-spacing:-18.753280pt;}
.ws5{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.711680pt;}
.ws9{word-spacing:-18.703360pt;}
.wsb{word-spacing:-18.416533pt;}
.wsf{word-spacing:-18.408533pt;}
.ws3{word-spacing:-18.400000pt;}
.wsd{word-spacing:-17.226667pt;}
.ws2{word-spacing:-12.974080pt;}
.ws7{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.697920pt;}
.ws1{word-spacing:-11.686400pt;}
.wsa{word-spacing:-11.680000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-3.319680pt;}
._1a{margin-left:-2.018560pt;}
._1{margin-left:-1.120000pt;}
._0{width:0.917333pt;}
._2{width:1.976747pt;}
._3{width:3.301333pt;}
._6{width:4.892160pt;}
._5{width:6.484053pt;}
._f{width:7.934080pt;}
._c{width:9.438080pt;}
._b{width:10.480000pt;}
._a{width:11.606400pt;}
._9{width:13.325440pt;}
._8{width:14.298880pt;}
._7{width:15.615147pt;}
._11{width:16.879573pt;}
._1b{width:17.799467pt;}
._14{width:20.439040pt;}
._1c{width:21.345920pt;}
._10{width:22.763520pt;}
._16{width:23.958400pt;}
._12{width:25.309440pt;}
._13{width:26.231040pt;}
._21{width:27.121707pt;}
._1d{width:28.037333pt;}
._22{width:28.974507pt;}
._17{width:29.952000pt;}
._18{width:31.371520pt;}
._1f{width:32.369493pt;}
._d{width:33.321600pt;}
._23{width:34.261760pt;}
._e{width:35.211947pt;}
._2b{width:36.141653pt;}
._15{width:37.041920pt;}
._20{width:38.340267pt;}
._25{width:39.383467pt;}
._33{width:42.456960pt;}
._28{width:49.445760pt;}
._35{width:51.007360pt;}
._34{width:52.301867pt;}
._19{width:55.486080pt;}
._31{width:57.636693pt;}
._30{width:58.560000pt;}
._32{width:59.885013pt;}
._36{width:61.170987pt;}
._1e{width:64.842880pt;}
._26{width:66.867840pt;}
._27{width:68.781867pt;}
._2a{width:169.827840pt;}
._29{width:171.172480pt;}
._2c{width:177.016320pt;}
._2e{width:198.878080pt;}
._2d{width:199.929600pt;}
._24{width:269.323947pt;}
._2f{width:584.983040pt;}
.fs1{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:10.880000pt;}
.y60{bottom:14.866667pt;}
.y47{bottom:14.880000pt;}
.y7b{bottom:14.906667pt;}
.y7f{bottom:15.040000pt;}
.y64{bottom:15.186667pt;}
.y4f{bottom:15.200000pt;}
.y4c{bottom:15.360000pt;}
.y52{bottom:23.840000pt;}
.y54{bottom:24.000000pt;}
.ya6{bottom:28.933333pt;}
.y7c{bottom:30.906667pt;}
.y6f{bottom:30.920000pt;}
.y51{bottom:31.040000pt;}
.y62{bottom:31.186667pt;}
.y6d{bottom:31.240000pt;}
.y4d{bottom:31.360000pt;}
.ya0{bottom:44.093333pt;}
.y74{bottom:47.040000pt;}
.y7a{bottom:47.066667pt;}
.y6e{bottom:47.080000pt;}
.y63{bottom:47.346667pt;}
.y4e{bottom:47.360000pt;}
.y4b{bottom:47.520000pt;}
.y78{bottom:47.680000pt;}
.y72{bottom:47.840000pt;}
.y7{bottom:51.200000pt;}
.y49{bottom:63.520000pt;}
.y6{bottom:68.320000pt;}
.y71{bottom:80.000000pt;}
.y77{bottom:80.026667pt;}
.ya1{bottom:84.480000pt;}
.y43{bottom:100.480000pt;}
.y3e{bottom:100.800000pt;}
.ya7{bottom:115.333333pt;}
.y9e{bottom:122.080000pt;}
.y22{bottom:123.840000pt;}
.y69{bottom:124.320000pt;}
.ya2{bottom:124.866667pt;}
.y8b{bottom:126.400000pt;}
.y42{bottom:132.640000pt;}
.y3d{bottom:132.960000pt;}
.y9d{bottom:154.240000pt;}
.y21{bottom:156.000000pt;}
.y68{bottom:156.480000pt;}
.y8a{bottom:158.560000pt;}
.ya3{bottom:165.253333pt;}
.y3c{bottom:165.280000pt;}
.y9c{bottom:186.426667pt;}
.y20{bottom:188.186667pt;}
.y67{bottom:188.506667pt;}
.y89{bottom:190.746667pt;}
.y3b{bottom:197.466667pt;}
.ya4{bottom:205.626667pt;}
.y66{bottom:206.440000pt;}
.y9b{bottom:218.746667pt;}
.y1f{bottom:220.506667pt;}
.y88{bottom:222.906667pt;}
.y3a{bottom:229.626667pt;}
.y65{bottom:239.240000pt;}
.ya5{bottom:246.013333pt;}
.y9a{bottom:250.906667pt;}
.y1e{bottom:252.666667pt;}
.ya9{bottom:254.053333pt;}
.y87{bottom:255.226667pt;}
.y39{bottom:261.786667pt;}
.y61{bottom:272.200000pt;}
.y99{bottom:282.746667pt;}
.y1d{bottom:284.826667pt;}
.y86{bottom:287.386667pt;}
.y38{bottom:293.626667pt;}
.y40{bottom:293.946667pt;}
.y98{bottom:315.226667pt;}
.y1c{bottom:316.986667pt;}
.y85{bottom:319.546667pt;}
.y37{bottom:326.266667pt;}
.y5f{bottom:337.160000pt;}
.y97{bottom:347.386667pt;}
.y1b{bottom:349.146667pt;}
.y84{bottom:351.706667pt;}
.y36{bottom:358.426667pt;}
.y96{bottom:379.706667pt;}
.y1a{bottom:381.466667pt;}
.y83{bottom:384.026667pt;}
.y5e{bottom:384.986667pt;}
.y35{bottom:390.586667pt;}
.y95{bottom:411.906667pt;}
.y19{bottom:413.666667pt;}
.y82{bottom:416.226667pt;}
.y5d{bottom:417.506667pt;}
.yab{bottom:422.466667pt;}
.y34{bottom:422.786667pt;}
.y94{bottom:444.066667pt;}
.y18{bottom:445.506667pt;}
.y81{bottom:448.066667pt;}
.y5c{bottom:449.666667pt;}
.y33{bottom:455.106667pt;}
.y93{bottom:476.226667pt;}
.y17{bottom:477.666667pt;}
.y80{bottom:480.226667pt;}
.y5b{bottom:481.986667pt;}
.y45{bottom:486.946667pt;}
.y32{bottom:487.266667pt;}
.y7e{bottom:498.146667pt;}
.y92{bottom:508.546667pt;}
.y16{bottom:510.306667pt;}
.y5a{bottom:514.146667pt;}
.y31{bottom:519.426667pt;}
.y76{bottom:531.106667pt;}
.y91{bottom:540.706667pt;}
.y15{bottom:542.466667pt;}
.y59{bottom:546.306667pt;}
.y30{bottom:551.586667pt;}
.y7d{bottom:563.906667pt;}
.y90{bottom:572.866667pt;}
.y14{bottom:574.626667pt;}
.y58{bottom:578.466667pt;}
.y2f{bottom:583.906667pt;}
.y79{bottom:596.866667pt;}
.y8f{bottom:605.053333pt;}
.y13{bottom:606.813333pt;}
.y57{bottom:610.653333pt;}
.y2e{bottom:616.093333pt;}
.y56{bottom:628.413333pt;}
.y8e{bottom:637.053333pt;}
.y12{bottom:639.133333pt;}
.y2d{bottom:648.253333pt;}
.y55{bottom:661.213333pt;}
.y70{bottom:661.853333pt;}
.y8d{bottom:669.213333pt;}
.y11{bottom:671.293333pt;}
.y2c{bottom:680.413333pt;}
.y53{bottom:694.013333pt;}
.y75{bottom:694.813333pt;}
.y8c{bottom:697.213333pt;}
.y9f{bottom:698.240000pt;}
.y10{bottom:703.453333pt;}
.y41{bottom:712.253333pt;}
.y2b{bottom:712.573333pt;}
.y73{bottom:727.613333pt;}
.yf{bottom:735.613333pt;}
.y2a{bottom:744.893333pt;}
.y50{bottom:759.133333pt;}
.ye{bottom:767.773333pt;}
.y29{bottom:776.733333pt;}
.y3f{bottom:777.053333pt;}
.y6c{bottom:792.733333pt;}
.yd{bottom:800.093333pt;}
.yaa{bottom:808.893333pt;}
.y28{bottom:809.213333pt;}
.y48{bottom:824.293333pt;}
.yc{bottom:831.973333pt;}
.y27{bottom:841.413333pt;}
.y6b{bottom:857.733333pt;}
.yb{bottom:864.453333pt;}
.y26{bottom:873.733333pt;}
.y4a{bottom:889.253333pt;}
.ya{bottom:896.293333pt;}
.y6a{bottom:905.573333pt;}
.y25{bottom:905.893333pt;}
.y9{bottom:930.693333pt;}
.y24{bottom:938.053333pt;}
.y46{bottom:954.373333pt;}
.y8{bottom:967.493333pt;}
.y44{bottom:969.893333pt;}
.y23{bottom:970.213333pt;}
.y5{bottom:990.533333pt;}
.y4{bottom:1009.733333pt;}
.y3{bottom:1027.840000pt;}
.y2{bottom:1045.760000pt;}
.y1{bottom:1063.200000pt;}
.h9{height:32.146667pt;}
.h11{height:32.160000pt;}
.h18{height:32.306667pt;}
.h1a{height:40.453125pt;}
.h2{height:40.640625pt;}
.h3{height:44.768125pt;}
.hf{height:47.109375pt;}
.h4{height:49.622500pt;}
.hd{height:64.306667pt;}
.h14{height:64.320000pt;}
.h12{height:64.340000pt;}
.h17{height:64.346667pt;}
.hb{height:64.466667pt;}
.h10{height:64.480000pt;}
.he{height:64.500000pt;}
.h8{height:67.128750pt;}
.h7{height:73.490625pt;}
.h6{height:75.465000pt;}
.hc{height:81.669375pt;}
.h15{height:82.935000pt;}
.h5{height:85.785000pt;}
.ha{height:129.426667pt;}
.h13{height:130.080000pt;}
.h16{height:130.106667pt;}
.h19{height:288.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:46.592000pt;}
.wb{width:55.666667pt;}
.wa{width:56.018667pt;}
.w8{width:56.146667pt;}
.w6{width:74.880000pt;}
.w9{width:84.306667pt;}
.we{width:118.112000pt;}
.wf{width:122.066667pt;}
.w13{width:131.666667pt;}
.w3{width:134.253333pt;}
.w16{width:139.866667pt;}
.w10{width:140.333333pt;}
.w15{width:143.857333pt;}
.w14{width:151.533333pt;}
.wd{width:177.457333pt;}
.w4{width:178.746667pt;}
.w5{width:197.293333pt;}
.w12{width:284.377333pt;}
.w2{width:511.920000pt;}
.wc{width:559.920000pt;}
.w17{width:568.000000pt;}
.w11{width:568.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:11.360000pt;}
.x15{left:13.266667pt;}
.x13{left:15.520000pt;}
.x35{left:16.480000pt;}
.x2e{left:17.586667pt;}
.x1c{left:18.586667pt;}
.x17{left:20.186667pt;}
.x1d{left:21.906667pt;}
.x19{left:23.026667pt;}
.x28{left:24.000000pt;}
.x1a{left:24.946667pt;}
.x1b{left:25.906667pt;}
.x32{left:27.825333pt;}
.x3b{left:31.653333pt;}
.x11{left:33.120000pt;}
.xc{left:38.400000pt;}
.x38{left:40.306667pt;}
.x2a{left:45.105333pt;}
.x25{left:46.226667pt;}
.xf{left:47.826667pt;}
.x34{left:50.266667pt;}
.x2f{left:51.826667pt;}
.xd{left:54.400000pt;}
.x37{left:56.466667pt;}
.x36{left:59.386667pt;}
.x29{left:60.666667pt;}
.x27{left:63.386667pt;}
.x1e{left:65.746667pt;}
.xa{left:67.026667pt;}
.x31{left:71.825333pt;}
.x39{left:75.706667pt;}
.x22{left:88.625333pt;}
.x1{left:96.032000pt;}
.x3{left:99.232000pt;}
.x2b{left:112.521333pt;}
.x6{left:114.272000pt;}
.x20{left:117.001333pt;}
.x3e{left:138.906667pt;}
.x8{left:141.000000pt;}
.x2d{left:142.105333pt;}
.x7{left:144.026667pt;}
.x3d{left:157.666667pt;}
.x9{left:181.786667pt;}
.x21{left:196.665333pt;}
.x2c{left:201.625333pt;}
.x4{left:242.466667pt;}
.x33{left:257.026667pt;}
.x3c{left:268.773333pt;}
.xb{left:276.066667pt;}
.x23{left:295.106667pt;}
.x5{left:296.866667pt;}
.x12{left:351.586667pt;}
.x2{left:388.706667pt;}
.x1f{left:396.893333pt;}
.x14{left:398.826667pt;}
.x24{left:413.866667pt;}
.xe{left:455.626667pt;}
.x30{left:529.866667pt;}
.x26{left:536.586667pt;}
.x16{left:540.586667pt;}
.x18{left:597.253333pt;}
.x3a{left:680.933333pt;}
}




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