
    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_1cf2bdcb645dc10b1585b9b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_1cf2bdcb645dc10b1585b9b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_c59d21e1b0a45ce3f7b1a641.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.720000;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_358effe4d9d29f1e284307cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_03f0d7a39dcf0b7c489b0c46.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_c49be03bed7b4242a893cad4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_56e9924a75c7d563403a07d3.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_f05ff074011a1fbbaa8a0c95.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_1da6784c1eca74cb3af19dfd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_12d33b58c6c900019aaedb05.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8753d79b801dfb80a3fed04e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707000;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_5ca9b77e2ae590f67b0f1b8c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;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:ffd;src:url('chunks/assets/font_c59d21e1b0a45ce3f7b1a641.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.720000;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:ffe;src:url('chunks/assets/font_99dd66e25a8777544046d311.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.945813;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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls5{letter-spacing:-0.768000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:7.980000px;}
.ls2{letter-spacing:49.020000px;}
.ls6{letter-spacing:62.481000px;}
.ls0{letter-spacing:69.420000px;}
.ls1{letter-spacing:70.020000px;}
.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;}
}
.ws4{word-spacing:-60.000000px;}
.ws1d{word-spacing:-47.580000px;}
.ws1c{word-spacing:-37.740000px;}
.ws2{word-spacing:-15.000000px;}
.wsc{word-spacing:-5.400000px;}
.ws19{word-spacing:-4.980000px;}
.ws2c{word-spacing:-4.860000px;}
.ws3c{word-spacing:-4.620000px;}
.ws3d{word-spacing:-4.440000px;}
.ws4f{word-spacing:-3.300000px;}
.ws13{word-spacing:-2.760000px;}
.ws38{word-spacing:-2.340000px;}
.ws30{word-spacing:-1.740000px;}
.ws2d{word-spacing:-1.080000px;}
.ws49{word-spacing:-0.900000px;}
.ws51{word-spacing:-0.360000px;}
.ws7{word-spacing:-0.180000px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:0.720000px;}
.ws9{word-spacing:1.020000px;}
.ws5a{word-spacing:1.560000px;}
.ws10{word-spacing:2.940000px;}
.ws4d{word-spacing:3.780000px;}
.wsa{word-spacing:4.200000px;}
.ws12{word-spacing:4.620000px;}
.ws3f{word-spacing:4.680000px;}
.ws28{word-spacing:4.920000px;}
.ws11{word-spacing:4.980000px;}
.ws8{word-spacing:5.040000px;}
.ws3b{word-spacing:5.940000px;}
.ws23{word-spacing:6.300000px;}
.wsb{word-spacing:6.420000px;}
.ws1f{word-spacing:6.840000px;}
.wse{word-spacing:7.320000px;}
.ws55{word-spacing:7.440000px;}
.ws20{word-spacing:7.500000px;}
.ws2a{word-spacing:8.280000px;}
.ws35{word-spacing:8.640000px;}
.wsd{word-spacing:8.760000px;}
.ws1a{word-spacing:8.820000px;}
.ws57{word-spacing:9.000000px;}
.ws4b{word-spacing:9.720000px;}
.ws44{word-spacing:9.780000px;}
.ws56{word-spacing:9.900000px;}
.ws5e{word-spacing:9.960000px;}
.ws3{word-spacing:10.038000px;}
.ws5b{word-spacing:10.200000px;}
.ws3e{word-spacing:11.220000px;}
.ws46{word-spacing:11.460000px;}
.ws24{word-spacing:12.180000px;}
.ws2e{word-spacing:12.480000px;}
.ws2f{word-spacing:12.780000px;}
.ws14{word-spacing:13.080000px;}
.wsf{word-spacing:13.260000px;}
.ws29{word-spacing:13.320000px;}
.ws18{word-spacing:13.740000px;}
.ws6{word-spacing:13.860000px;}
.ws16{word-spacing:14.160000px;}
.ws5c{word-spacing:14.220000px;}
.ws4a{word-spacing:15.300000px;}
.ws52{word-spacing:15.360000px;}
.ws25{word-spacing:15.480000px;}
.ws27{word-spacing:16.020000px;}
.ws59{word-spacing:16.320000px;}
.ws21{word-spacing:16.740000px;}
.ws58{word-spacing:16.800000px;}
.ws41{word-spacing:17.340000px;}
.ws31{word-spacing:17.700000px;}
.ws4c{word-spacing:17.820000px;}
.ws45{word-spacing:18.240000px;}
.ws22{word-spacing:20.220000px;}
.ws48{word-spacing:20.760000px;}
.ws50{word-spacing:21.240000px;}
.ws2b{word-spacing:22.380000px;}
.ws4e{word-spacing:22.740000px;}
.ws32{word-spacing:23.040000px;}
.ws17{word-spacing:23.220000px;}
.ws34{word-spacing:23.520000px;}
.ws47{word-spacing:23.640000px;}
.ws42{word-spacing:24.180000px;}
.ws3a{word-spacing:24.360000px;}
.ws54{word-spacing:25.200000px;}
.ws33{word-spacing:26.400000px;}
.ws5d{word-spacing:26.580000px;}
.ws39{word-spacing:26.880000px;}
.ws15{word-spacing:28.740000px;}
.ws43{word-spacing:29.940000px;}
.ws26{word-spacing:30.300000px;}
.ws37{word-spacing:31.140000px;}
.ws36{word-spacing:34.380000px;}
.ws1e{word-spacing:41.220000px;}
.ws5f{word-spacing:49.200000px;}
.ws53{word-spacing:49.740000px;}
.ws40{word-spacing:51.540000px;}
.ws1b{word-spacing:386.314800px;}
.ws0{word-spacing:1728.777600px;}
._9{margin-left:-51.000000px;}
._1e{margin-left:-41.220000px;}
._1d{margin-left:-18.600000px;}
._a{margin-left:-15.240000px;}
._6{margin-left:-8.832000px;}
._5{margin-left:-7.398000px;}
._3{margin-left:-5.955000px;}
._2{margin-left:-4.386000px;}
._4{margin-left:-3.114000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._15{width:3.324000px;}
._1b{width:7.980000px;}
._1c{width:9.060000px;}
._11{width:18.480000px;}
._18{width:20.280000px;}
._1a{width:25.020000px;}
._13{width:40.080000px;}
._8{width:41.280000px;}
._e{width:43.140000px;}
._12{width:45.840000px;}
._c{width:47.640000px;}
._14{width:49.260000px;}
._17{width:54.720000px;}
._d{width:57.540000px;}
._19{width:60.120000px;}
._b{width:63.180000px;}
._10{width:65.340000px;}
._7{width:67.080000px;}
._16{width:70.920000px;}
._f{width:74.460000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y90{bottom:89.273550px;}
.y30{bottom:93.142650px;}
.y68{bottom:100.013550px;}
.y8f{bottom:108.773550px;}
.y2f{bottom:111.892650px;}
.y67{bottom:119.513550px;}
.y8e{bottom:128.273550px;}
.y2e{bottom:130.642650px;}
.y66{bottom:139.013550px;}
.y8d{bottom:147.773550px;}
.y2d{bottom:149.392650px;}
.y65{bottom:158.513550px;}
.y8c{bottom:167.273550px;}
.y2c{bottom:168.142650px;}
.y64{bottom:178.013550px;}
.y8b{bottom:186.773550px;}
.y2b{bottom:186.892650px;}
.y63{bottom:197.513550px;}
.y2a{bottom:205.642650px;}
.y8a{bottom:221.273550px;}
.y29{bottom:224.392650px;}
.y62{bottom:236.513550px;}
.y89{bottom:240.773550px;}
.y28{bottom:243.142650px;}
.y61{bottom:256.013550px;}
.y88{bottom:260.273550px;}
.y27{bottom:261.892650px;}
.y60{bottom:275.513550px;}
.y26{bottom:280.642650px;}
.y87{bottom:294.773550px;}
.y5f{bottom:295.013550px;}
.y25{bottom:299.392650px;}
.y86{bottom:314.273550px;}
.y5e{bottom:314.513550px;}
.y24{bottom:318.142650px;}
.y85{bottom:333.773550px;}
.y5d{bottom:334.013550px;}
.y23{bottom:336.892650px;}
.y5c{bottom:353.513550px;}
.y84{bottom:372.773550px;}
.y5b{bottom:373.013550px;}
.y22{bottom:374.392650px;}
.y83{bottom:392.273550px;}
.y5a{bottom:392.513550px;}
.y21{bottom:393.142650px;}
.y82{bottom:411.773550px;}
.y20{bottom:411.892650px;}
.y59{bottom:412.013550px;}
.y1f{bottom:430.642650px;}
.y81{bottom:431.273550px;}
.y58{bottom:431.513550px;}
.y1e{bottom:449.392650px;}
.y57{bottom:451.013550px;}
.y39{bottom:456.139950px;}
.y1d{bottom:468.142650px;}
.y80{bottom:470.273550px;}
.y56{bottom:470.513550px;}
.y38{bottom:478.639950px;}
.y1c{bottom:486.892650px;}
.y7f{bottom:489.773550px;}
.y55{bottom:490.013550px;}
.y37{bottom:501.139950px;}
.y1b{bottom:505.642650px;}
.y7e{bottom:509.273550px;}
.y54{bottom:509.513550px;}
.y1a{bottom:524.392650px;}
.y7d{bottom:528.773550px;}
.y53{bottom:529.013550px;}
.y36{bottom:541.639950px;}
.y19{bottom:543.142650px;}
.y7c{bottom:548.273550px;}
.y52{bottom:548.513550px;}
.y18{bottom:561.892650px;}
.ya3{bottom:567.159600px;}
.y17{bottom:580.642650px;}
.y35{bottom:586.639950px;}
.ya2{bottom:586.659600px;}
.y7b{bottom:587.273550px;}
.y51{bottom:587.513550px;}
.ya1{bottom:606.159600px;}
.y7a{bottom:606.773550px;}
.y50{bottom:607.013550px;}
.y16{bottom:614.392650px;}
.ya0{bottom:625.659600px;}
.y79{bottom:626.273550px;}
.y4f{bottom:626.513550px;}
.y34{bottom:627.139950px;}
.y15{bottom:633.142650px;}
.y9f{bottom:645.159600px;}
.y78{bottom:645.773550px;}
.y4e{bottom:646.013550px;}
.y14{bottom:651.892650px;}
.y33{bottom:663.139950px;}
.ya7{bottom:664.659600px;}
.y4d{bottom:665.513550px;}
.y13{bottom:670.642650px;}
.y9e{bottom:684.159600px;}
.y77{bottom:684.773550px;}
.y4c{bottom:685.013550px;}
.y12{bottom:689.392650px;}
.y32{bottom:699.139950px;}
.y9d{bottom:703.659600px;}
.y76{bottom:704.273550px;}
.y4b{bottom:704.513550px;}
.y11{bottom:708.142650px;}
.y9c{bottom:723.159600px;}
.y75{bottom:723.773550px;}
.y4a{bottom:724.013550px;}
.y10{bottom:726.892650px;}
.y31{bottom:735.139950px;}
.y9b{bottom:742.659600px;}
.y74{bottom:743.273550px;}
.y49{bottom:743.513550px;}
.yf{bottom:745.642650px;}
.ya6{bottom:762.159600px;}
.y48{bottom:763.013550px;}
.ye{bottom:764.392650px;}
.y9a{bottom:781.659600px;}
.y73{bottom:782.273550px;}
.y47{bottom:782.513550px;}
.yd{bottom:783.142650px;}
.y99{bottom:801.159600px;}
.y72{bottom:801.773550px;}
.yc{bottom:801.892650px;}
.y46{bottom:802.013550px;}
.yb{bottom:820.642650px;}
.y98{bottom:820.659600px;}
.y71{bottom:821.273550px;}
.y45{bottom:821.513550px;}
.ya{bottom:839.392650px;}
.ya5{bottom:840.159600px;}
.y44{bottom:841.013550px;}
.y9{bottom:858.142650px;}
.y97{bottom:859.659600px;}
.y70{bottom:860.273550px;}
.y43{bottom:860.513550px;}
.y96{bottom:879.159600px;}
.y6f{bottom:879.773550px;}
.y42{bottom:880.013550px;}
.y8{bottom:892.648650px;}
.y95{bottom:898.659600px;}
.y6e{bottom:899.273550px;}
.y41{bottom:899.513550px;}
.y7{bottom:912.142650px;}
.ya4{bottom:918.159600px;}
.y6d{bottom:918.773550px;}
.y40{bottom:919.013550px;}
.y6{bottom:930.142650px;}
.y94{bottom:937.659600px;}
.y6c{bottom:938.273550px;}
.y3f{bottom:938.513550px;}
.y93{bottom:957.159600px;}
.y6b{bottom:957.773550px;}
.y3e{bottom:958.013550px;}
.y5{bottom:969.142650px;}
.y92{bottom:976.659600px;}
.y6a{bottom:977.273550px;}
.y3d{bottom:977.513550px;}
.y91{bottom:996.159600px;}
.y69{bottom:996.773550px;}
.y3c{bottom:997.013550px;}
.y4{bottom:1024.374150px;}
.y3b{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.ha{height:41.660156px;}
.h9{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hc{height:46.200000px;}
.hb{height:50.400000px;}
.he{height:52.492611px;}
.hd{height:53.467611px;}
.h6{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xe{left:65.202600px;}
.xc{left:73.559100px;}
.xd{left:78.453150px;}
.x9{left:224.187900px;}
.xa{left:233.232900px;}
.xb{left:251.232900px;}
.x5{left:283.044750px;}
.x8{left:361.784550px;}
.xf{left:399.944550px;}
.x4{left:412.272150px;}
.x10{left:426.929550px;}
.x7{left:450.668550px;}
.x6{left:548.536200px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls5{letter-spacing:-0.682667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:7.093333pt;}
.ls2{letter-spacing:43.573333pt;}
.ls6{letter-spacing:55.538667pt;}
.ls0{letter-spacing:61.706667pt;}
.ls1{letter-spacing:62.240000pt;}
.ws4{word-spacing:-53.333333pt;}
.ws1d{word-spacing:-42.293333pt;}
.ws1c{word-spacing:-33.546667pt;}
.ws2{word-spacing:-13.333333pt;}
.wsc{word-spacing:-4.800000pt;}
.ws19{word-spacing:-4.426667pt;}
.ws2c{word-spacing:-4.320000pt;}
.ws3c{word-spacing:-4.106667pt;}
.ws3d{word-spacing:-3.946667pt;}
.ws4f{word-spacing:-2.933333pt;}
.ws13{word-spacing:-2.453333pt;}
.ws38{word-spacing:-2.080000pt;}
.ws30{word-spacing:-1.546667pt;}
.ws2d{word-spacing:-0.960000pt;}
.ws49{word-spacing:-0.800000pt;}
.ws51{word-spacing:-0.320000pt;}
.ws7{word-spacing:-0.160000pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:0.640000pt;}
.ws9{word-spacing:0.906667pt;}
.ws5a{word-spacing:1.386667pt;}
.ws10{word-spacing:2.613333pt;}
.ws4d{word-spacing:3.360000pt;}
.wsa{word-spacing:3.733333pt;}
.ws12{word-spacing:4.106667pt;}
.ws3f{word-spacing:4.160000pt;}
.ws28{word-spacing:4.373333pt;}
.ws11{word-spacing:4.426667pt;}
.ws8{word-spacing:4.480000pt;}
.ws3b{word-spacing:5.280000pt;}
.ws23{word-spacing:5.600000pt;}
.wsb{word-spacing:5.706667pt;}
.ws1f{word-spacing:6.080000pt;}
.wse{word-spacing:6.506667pt;}
.ws55{word-spacing:6.613333pt;}
.ws20{word-spacing:6.666667pt;}
.ws2a{word-spacing:7.360000pt;}
.ws35{word-spacing:7.680000pt;}
.wsd{word-spacing:7.786667pt;}
.ws1a{word-spacing:7.840000pt;}
.ws57{word-spacing:8.000000pt;}
.ws4b{word-spacing:8.640000pt;}
.ws44{word-spacing:8.693333pt;}
.ws56{word-spacing:8.800000pt;}
.ws5e{word-spacing:8.853333pt;}
.ws3{word-spacing:8.922667pt;}
.ws5b{word-spacing:9.066667pt;}
.ws3e{word-spacing:9.973333pt;}
.ws46{word-spacing:10.186667pt;}
.ws24{word-spacing:10.826667pt;}
.ws2e{word-spacing:11.093333pt;}
.ws2f{word-spacing:11.360000pt;}
.ws14{word-spacing:11.626667pt;}
.wsf{word-spacing:11.786667pt;}
.ws29{word-spacing:11.840000pt;}
.ws18{word-spacing:12.213333pt;}
.ws6{word-spacing:12.320000pt;}
.ws16{word-spacing:12.586667pt;}
.ws5c{word-spacing:12.640000pt;}
.ws4a{word-spacing:13.600000pt;}
.ws52{word-spacing:13.653333pt;}
.ws25{word-spacing:13.760000pt;}
.ws27{word-spacing:14.240000pt;}
.ws59{word-spacing:14.506667pt;}
.ws21{word-spacing:14.880000pt;}
.ws58{word-spacing:14.933333pt;}
.ws41{word-spacing:15.413333pt;}
.ws31{word-spacing:15.733333pt;}
.ws4c{word-spacing:15.840000pt;}
.ws45{word-spacing:16.213333pt;}
.ws22{word-spacing:17.973333pt;}
.ws48{word-spacing:18.453333pt;}
.ws50{word-spacing:18.880000pt;}
.ws2b{word-spacing:19.893333pt;}
.ws4e{word-spacing:20.213333pt;}
.ws32{word-spacing:20.480000pt;}
.ws17{word-spacing:20.640000pt;}
.ws34{word-spacing:20.906667pt;}
.ws47{word-spacing:21.013333pt;}
.ws42{word-spacing:21.493333pt;}
.ws3a{word-spacing:21.653333pt;}
.ws54{word-spacing:22.400000pt;}
.ws33{word-spacing:23.466667pt;}
.ws5d{word-spacing:23.626667pt;}
.ws39{word-spacing:23.893333pt;}
.ws15{word-spacing:25.546667pt;}
.ws43{word-spacing:26.613333pt;}
.ws26{word-spacing:26.933333pt;}
.ws37{word-spacing:27.680000pt;}
.ws36{word-spacing:30.560000pt;}
.ws1e{word-spacing:36.640000pt;}
.ws5f{word-spacing:43.733333pt;}
.ws53{word-spacing:44.213333pt;}
.ws40{word-spacing:45.813333pt;}
.ws1b{word-spacing:343.390933pt;}
.ws0{word-spacing:1536.691200pt;}
._9{margin-left:-45.333333pt;}
._1e{margin-left:-36.640000pt;}
._1d{margin-left:-16.533333pt;}
._a{margin-left:-13.546667pt;}
._6{margin-left:-7.850667pt;}
._5{margin-left:-6.576000pt;}
._3{margin-left:-5.293333pt;}
._2{margin-left:-3.898667pt;}
._4{margin-left:-2.768000pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._15{width:2.954667pt;}
._1b{width:7.093333pt;}
._1c{width:8.053333pt;}
._11{width:16.426667pt;}
._18{width:18.026667pt;}
._1a{width:22.240000pt;}
._13{width:35.626667pt;}
._8{width:36.693333pt;}
._e{width:38.346667pt;}
._12{width:40.746667pt;}
._c{width:42.346667pt;}
._14{width:43.786667pt;}
._17{width:48.640000pt;}
._d{width:51.146667pt;}
._19{width:53.440000pt;}
._b{width:56.160000pt;}
._10{width:58.080000pt;}
._7{width:59.626667pt;}
._16{width:63.040000pt;}
._f{width:66.186667pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y90{bottom:79.354267pt;}
.y30{bottom:82.793467pt;}
.y68{bottom:88.900933pt;}
.y8f{bottom:96.687600pt;}
.y2f{bottom:99.460133pt;}
.y67{bottom:106.234267pt;}
.y8e{bottom:114.020933pt;}
.y2e{bottom:116.126800pt;}
.y66{bottom:123.567600pt;}
.y8d{bottom:131.354267pt;}
.y2d{bottom:132.793467pt;}
.y65{bottom:140.900933pt;}
.y8c{bottom:148.687600pt;}
.y2c{bottom:149.460133pt;}
.y64{bottom:158.234267pt;}
.y8b{bottom:166.020933pt;}
.y2b{bottom:166.126800pt;}
.y63{bottom:175.567600pt;}
.y2a{bottom:182.793467pt;}
.y8a{bottom:196.687600pt;}
.y29{bottom:199.460133pt;}
.y62{bottom:210.234267pt;}
.y89{bottom:214.020933pt;}
.y28{bottom:216.126800pt;}
.y61{bottom:227.567600pt;}
.y88{bottom:231.354267pt;}
.y27{bottom:232.793467pt;}
.y60{bottom:244.900933pt;}
.y26{bottom:249.460133pt;}
.y87{bottom:262.020933pt;}
.y5f{bottom:262.234267pt;}
.y25{bottom:266.126800pt;}
.y86{bottom:279.354267pt;}
.y5e{bottom:279.567600pt;}
.y24{bottom:282.793467pt;}
.y85{bottom:296.687600pt;}
.y5d{bottom:296.900933pt;}
.y23{bottom:299.460133pt;}
.y5c{bottom:314.234267pt;}
.y84{bottom:331.354267pt;}
.y5b{bottom:331.567600pt;}
.y22{bottom:332.793467pt;}
.y83{bottom:348.687600pt;}
.y5a{bottom:348.900933pt;}
.y21{bottom:349.460133pt;}
.y82{bottom:366.020933pt;}
.y20{bottom:366.126800pt;}
.y59{bottom:366.234267pt;}
.y1f{bottom:382.793467pt;}
.y81{bottom:383.354267pt;}
.y58{bottom:383.567600pt;}
.y1e{bottom:399.460133pt;}
.y57{bottom:400.900933pt;}
.y39{bottom:405.457733pt;}
.y1d{bottom:416.126800pt;}
.y80{bottom:418.020933pt;}
.y56{bottom:418.234267pt;}
.y38{bottom:425.457733pt;}
.y1c{bottom:432.793467pt;}
.y7f{bottom:435.354267pt;}
.y55{bottom:435.567600pt;}
.y37{bottom:445.457733pt;}
.y1b{bottom:449.460133pt;}
.y7e{bottom:452.687600pt;}
.y54{bottom:452.900933pt;}
.y1a{bottom:466.126800pt;}
.y7d{bottom:470.020933pt;}
.y53{bottom:470.234267pt;}
.y36{bottom:481.457733pt;}
.y19{bottom:482.793467pt;}
.y7c{bottom:487.354267pt;}
.y52{bottom:487.567600pt;}
.y18{bottom:499.460133pt;}
.ya3{bottom:504.141867pt;}
.y17{bottom:516.126800pt;}
.y35{bottom:521.457733pt;}
.ya2{bottom:521.475200pt;}
.y7b{bottom:522.020933pt;}
.y51{bottom:522.234267pt;}
.ya1{bottom:538.808533pt;}
.y7a{bottom:539.354267pt;}
.y50{bottom:539.567600pt;}
.y16{bottom:546.126800pt;}
.ya0{bottom:556.141867pt;}
.y79{bottom:556.687600pt;}
.y4f{bottom:556.900933pt;}
.y34{bottom:557.457733pt;}
.y15{bottom:562.793467pt;}
.y9f{bottom:573.475200pt;}
.y78{bottom:574.020933pt;}
.y4e{bottom:574.234267pt;}
.y14{bottom:579.460133pt;}
.y33{bottom:589.457733pt;}
.ya7{bottom:590.808533pt;}
.y4d{bottom:591.567600pt;}
.y13{bottom:596.126800pt;}
.y9e{bottom:608.141867pt;}
.y77{bottom:608.687600pt;}
.y4c{bottom:608.900933pt;}
.y12{bottom:612.793467pt;}
.y32{bottom:621.457733pt;}
.y9d{bottom:625.475200pt;}
.y76{bottom:626.020933pt;}
.y4b{bottom:626.234267pt;}
.y11{bottom:629.460133pt;}
.y9c{bottom:642.808533pt;}
.y75{bottom:643.354267pt;}
.y4a{bottom:643.567600pt;}
.y10{bottom:646.126800pt;}
.y31{bottom:653.457733pt;}
.y9b{bottom:660.141867pt;}
.y74{bottom:660.687600pt;}
.y49{bottom:660.900933pt;}
.yf{bottom:662.793467pt;}
.ya6{bottom:677.475200pt;}
.y48{bottom:678.234267pt;}
.ye{bottom:679.460133pt;}
.y9a{bottom:694.808533pt;}
.y73{bottom:695.354267pt;}
.y47{bottom:695.567600pt;}
.yd{bottom:696.126800pt;}
.y99{bottom:712.141867pt;}
.y72{bottom:712.687600pt;}
.yc{bottom:712.793467pt;}
.y46{bottom:712.900933pt;}
.yb{bottom:729.460133pt;}
.y98{bottom:729.475200pt;}
.y71{bottom:730.020933pt;}
.y45{bottom:730.234267pt;}
.ya{bottom:746.126800pt;}
.ya5{bottom:746.808533pt;}
.y44{bottom:747.567600pt;}
.y9{bottom:762.793467pt;}
.y97{bottom:764.141867pt;}
.y70{bottom:764.687600pt;}
.y43{bottom:764.900933pt;}
.y96{bottom:781.475200pt;}
.y6f{bottom:782.020933pt;}
.y42{bottom:782.234267pt;}
.y8{bottom:793.465467pt;}
.y95{bottom:798.808533pt;}
.y6e{bottom:799.354267pt;}
.y41{bottom:799.567600pt;}
.y7{bottom:810.793467pt;}
.ya4{bottom:816.141867pt;}
.y6d{bottom:816.687600pt;}
.y40{bottom:816.900933pt;}
.y6{bottom:826.793467pt;}
.y94{bottom:833.475200pt;}
.y6c{bottom:834.020933pt;}
.y3f{bottom:834.234267pt;}
.y93{bottom:850.808533pt;}
.y6b{bottom:851.354267pt;}
.y3e{bottom:851.567600pt;}
.y5{bottom:861.460133pt;}
.y92{bottom:868.141867pt;}
.y6a{bottom:868.687600pt;}
.y3d{bottom:868.900933pt;}
.y91{bottom:885.475200pt;}
.y69{bottom:886.020933pt;}
.y3c{bottom:886.234267pt;}
.y4{bottom:910.554800pt;}
.y3b{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.ha{height:37.031250pt;}
.h9{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hc{height:41.066667pt;}
.hb{height:44.800000pt;}
.he{height:46.660099pt;}
.hd{height:47.526765pt;}
.h6{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xe{left:57.957867pt;}
.xc{left:65.385867pt;}
.xd{left:69.736133pt;}
.x9{left:199.278133pt;}
.xa{left:207.318133pt;}
.xb{left:223.318133pt;}
.x5{left:251.595333pt;}
.x8{left:321.586267pt;}
.xf{left:355.506267pt;}
.x4{left:366.464133pt;}
.x10{left:379.492933pt;}
.x7{left:400.594267pt;}
.x6{left:487.587733pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
}




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