
    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_3a0248e0ccc92af00277af3c.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_40bf962dd5c8dd3dc56cb388.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9ffd7638840a639bd36379d2.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f3b724e8969ea3c6bf4fe14f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_75bbcc0a2936de48182085dc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_22d5f2f941f2751c0c073808.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bf2a0e67b0b3f2e3e76af547.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6a933fab2c922246f5f03a21.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e73905f2f94b456964e8e321.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3a0248e0ccc92af00277af3c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_40bf962dd5c8dd3dc56cb388.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2c565b0e343dd9631e51d4ba.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_caf7d1b4283850e6199b913d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_361683e845b6d22412535425.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.800000px;}
.ls3{letter-spacing:3.360000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws3d{word-spacing:-4.980000px;}
.ws31{word-spacing:-4.440000px;}
.ws66{word-spacing:-3.960000px;}
.ws22{word-spacing:-3.900000px;}
.ws17{word-spacing:-3.540000px;}
.ws3c{word-spacing:-3.420000px;}
.ws42{word-spacing:-3.120000px;}
.wsb{word-spacing:-2.940000px;}
.ws67{word-spacing:-2.580000px;}
.ws2c{word-spacing:-2.460000px;}
.ws69{word-spacing:-2.280000px;}
.ws39{word-spacing:-2.040000px;}
.ws6{word-spacing:-1.980000px;}
.ws6b{word-spacing:-1.080000px;}
.ws5{word-spacing:-0.960000px;}
.ws43{word-spacing:-0.900000px;}
.ws35{word-spacing:-0.420000px;}
.ws18{word-spacing:-0.300000px;}
.ws56{word-spacing:-0.240000px;}
.ws6c{word-spacing:-0.120000px;}
.ws16{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:0.600000px;}
.ws1a{word-spacing:0.720000px;}
.ws49{word-spacing:0.840000px;}
.ws2b{word-spacing:1.140000px;}
.ws4e{word-spacing:1.200000px;}
.wse{word-spacing:1.260000px;}
.ws21{word-spacing:1.380000px;}
.ws29{word-spacing:1.860000px;}
.wsc{word-spacing:2.040000px;}
.ws10{word-spacing:2.100000px;}
.ws6a{word-spacing:2.340000px;}
.ws55{word-spacing:2.460000px;}
.ws7{word-spacing:3.000000px;}
.ws2d{word-spacing:3.120000px;}
.ws13{word-spacing:3.240000px;}
.ws4f{word-spacing:3.720000px;}
.wsf{word-spacing:3.780000px;}
.ws37{word-spacing:4.140000px;}
.ws14{word-spacing:4.380000px;}
.ws3f{word-spacing:4.500000px;}
.ws1e{word-spacing:4.560000px;}
.ws6e{word-spacing:4.620000px;}
.ws4c{word-spacing:5.760000px;}
.ws24{word-spacing:5.820000px;}
.ws4{word-spacing:5.994000px;}
.ws61{word-spacing:6.060000px;}
.ws9{word-spacing:6.120000px;}
.ws6d{word-spacing:6.180000px;}
.ws8{word-spacing:6.240000px;}
.ws64{word-spacing:6.600000px;}
.ws2a{word-spacing:6.660000px;}
.ws4b{word-spacing:6.840000px;}
.ws59{word-spacing:7.200000px;}
.ws3a{word-spacing:7.440000px;}
.ws27{word-spacing:7.680000px;}
.ws6f{word-spacing:7.980000px;}
.ws23{word-spacing:8.040000px;}
.ws11{word-spacing:8.160000px;}
.ws51{word-spacing:8.220000px;}
.ws36{word-spacing:8.280000px;}
.ws5e{word-spacing:8.820000px;}
.ws32{word-spacing:9.000000px;}
.ws4a{word-spacing:9.120000px;}
.ws28{word-spacing:9.360000px;}
.ws54{word-spacing:9.660000px;}
.ws20{word-spacing:9.720000px;}
.ws34{word-spacing:9.960000px;}
.ws1c{word-spacing:10.200000px;}
.ws26{word-spacing:10.260000px;}
.ws58{word-spacing:10.320000px;}
.ws5b{word-spacing:10.620000px;}
.ws3e{word-spacing:10.980000px;}
.ws15{word-spacing:11.040000px;}
.ws46{word-spacing:11.280000px;}
.ws5a{word-spacing:11.580000px;}
.wsa{word-spacing:11.640000px;}
.ws53{word-spacing:12.000000px;}
.ws38{word-spacing:12.300000px;}
.ws62{word-spacing:12.780000px;}
.ws4d{word-spacing:12.900000px;}
.wsd{word-spacing:13.140000px;}
.ws65{word-spacing:13.260000px;}
.ws60{word-spacing:13.920000px;}
.ws5d{word-spacing:15.660000px;}
.ws1d{word-spacing:15.720000px;}
.ws63{word-spacing:15.900000px;}
.ws48{word-spacing:18.060000px;}
.ws45{word-spacing:18.120000px;}
.ws68{word-spacing:18.300000px;}
.ws5f{word-spacing:18.540000px;}
.ws1f{word-spacing:19.440000px;}
.ws57{word-spacing:20.040000px;}
.ws2e{word-spacing:20.700000px;}
.ws5c{word-spacing:20.820000px;}
.ws50{word-spacing:21.600000px;}
.ws47{word-spacing:22.140000px;}
.ws40{word-spacing:22.920000px;}
.ws44{word-spacing:22.980000px;}
.ws25{word-spacing:23.220000px;}
.ws33{word-spacing:23.520000px;}
.ws30{word-spacing:26.580000px;}
.ws41{word-spacing:28.860000px;}
.ws3b{word-spacing:30.300000px;}
.ws52{word-spacing:31.560000px;}
.ws1b{word-spacing:35.160000px;}
.ws0{word-spacing:48.021000px;}
.ws2f{word-spacing:65.280000px;}
.ws1{word-spacing:386.314800px;}
.ws19{word-spacing:1714.377600px;}
._1{margin-left:-8.262000px;}
._4{margin-left:-7.047000px;}
._2{margin-left:-5.508000px;}
._3{margin-left:-3.945000px;}
._c{margin-left:-2.737800px;}
._0{margin-left:-1.593000px;}
._b{width:1.328400px;}
._d{width:2.651400px;}
._6{width:3.677400px;}
._7{width:4.843800px;}
._a{width:5.994000px;}
._9{width:7.227600px;}
._8{width:9.102000px;}
._17{width:10.902000px;}
._14{width:12.144000px;}
._5{width:15.633000px;}
._15{width:21.414000px;}
._1a{width:25.020000px;}
._18{width:28.866000px;}
._11{width:34.860000px;}
._13{width:39.720000px;}
._16{width:48.420000px;}
._f{width:57.360000px;}
._12{width:59.760000px;}
._19{width:63.420000px;}
._10{width:65.760000px;}
._e{width:69.960000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y39{bottom:64.760550px;}
.y38{bottom:65.586600px;}
.y2e{bottom:94.062600px;}
.y6a{bottom:99.839850px;}
.y2d{bottom:113.562600px;}
.y69{bottom:119.339850px;}
.y2c{bottom:133.062600px;}
.y68{bottom:138.839850px;}
.y2b{bottom:152.562600px;}
.y67{bottom:158.339850px;}
.y2a{bottom:172.062600px;}
.y66{bottom:177.839850px;}
.y29{bottom:191.562600px;}
.y65{bottom:197.339850px;}
.y28{bottom:211.062600px;}
.y64{bottom:216.839850px;}
.y27{bottom:230.562600px;}
.y63{bottom:236.339850px;}
.y26{bottom:250.062600px;}
.y62{bottom:255.839850px;}
.y25{bottom:269.562600px;}
.y61{bottom:275.339850px;}
.y24{bottom:289.062600px;}
.y60{bottom:294.839850px;}
.y23{bottom:308.562600px;}
.y5f{bottom:314.339850px;}
.y22{bottom:328.062600px;}
.y5e{bottom:333.839850px;}
.y21{bottom:347.562600px;}
.y5d{bottom:353.339850px;}
.y20{bottom:367.062600px;}
.y5c{bottom:372.839850px;}
.y1f{bottom:386.562600px;}
.y5b{bottom:392.339850px;}
.y1e{bottom:406.062600px;}
.y5a{bottom:411.839850px;}
.y1d{bottom:425.562600px;}
.y59{bottom:431.339850px;}
.y1c{bottom:445.062600px;}
.y58{bottom:450.839850px;}
.y37{bottom:456.139950px;}
.y1b{bottom:464.562600px;}
.y57{bottom:470.339850px;}
.y36{bottom:478.639950px;}
.y1a{bottom:484.062600px;}
.y56{bottom:489.839850px;}
.y35{bottom:501.139950px;}
.y19{bottom:503.562600px;}
.y55{bottom:509.339850px;}
.y18{bottom:523.062600px;}
.y54{bottom:528.839850px;}
.y34{bottom:541.639950px;}
.y17{bottom:542.562600px;}
.y53{bottom:548.339850px;}
.y52{bottom:567.839850px;}
.y16{bottom:581.603100px;}
.y33{bottom:586.639950px;}
.y51{bottom:587.339850px;}
.y15{bottom:599.598600px;}
.y50{bottom:606.839850px;}
.y14{bottom:616.095600px;}
.y4f{bottom:626.339850px;}
.y32{bottom:627.139950px;}
.y13{bottom:632.592600px;}
.y4e{bottom:645.839850px;}
.y12{bottom:649.089600px;}
.y31{bottom:663.139950px;}
.y4d{bottom:665.339850px;}
.y11{bottom:665.586600px;}
.y10{bottom:682.083600px;}
.y4c{bottom:684.839850px;}
.yf{bottom:698.580600px;}
.y30{bottom:699.139950px;}
.y4b{bottom:704.339850px;}
.ye{bottom:715.077600px;}
.y4a{bottom:723.839850px;}
.yd{bottom:731.574600px;}
.y2f{bottom:735.139950px;}
.y49{bottom:743.339850px;}
.yc{bottom:748.071600px;}
.y48{bottom:762.839850px;}
.yb{bottom:764.568600px;}
.ya{bottom:781.065600px;}
.y76{bottom:781.659600px;}
.y47{bottom:782.339850px;}
.y9{bottom:797.562600px;}
.y75{bottom:801.159600px;}
.y46{bottom:801.839850px;}
.y8{bottom:814.062600px;}
.y74{bottom:820.659600px;}
.y45{bottom:821.339850px;}
.y73{bottom:840.159600px;}
.y44{bottom:840.839850px;}
.y7{bottom:856.067100px;}
.y72{bottom:859.659600px;}
.y43{bottom:860.339850px;}
.y6{bottom:874.062600px;}
.y71{bottom:879.159600px;}
.y42{bottom:879.839850px;}
.y5{bottom:892.062600px;}
.y70{bottom:898.659600px;}
.y41{bottom:899.339850px;}
.y6f{bottom:918.159600px;}
.y40{bottom:918.839850px;}
.y4{bottom:934.070100px;}
.y6e{bottom:937.659600px;}
.y3f{bottom:938.339850px;}
.y6d{bottom:957.159600px;}
.y3e{bottom:957.839850px;}
.y3{bottom:964.062600px;}
.y6c{bottom:976.659600px;}
.y3d{bottom:977.339850px;}
.y6b{bottom:996.159600px;}
.y3c{bottom:996.839850px;}
.y3b{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y3a{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.h6{height:37.494141px;}
.h5{height:40.664062px;}
.h7{height:41.689453px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h9{height:46.200000px;}
.h8{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h4{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xa{left:63.779550px;}
.x2{left:65.202600px;}
.x9{left:73.559100px;}
.x1{left:74.853150px;}
.x8{left:224.187900px;}
.x3{left:234.364350px;}
.xd{left:399.929550px;}
.x4{left:412.046850px;}
.xe{left:426.929550px;}
.x6{left:478.123350px;}
.x7{left:487.276350px;}
.x5{left:514.354050px;}
.xc{left:614.196150px;}
.xb{left:632.875800px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.600000pt;}
.ls3{letter-spacing:2.986667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws3d{word-spacing:-4.426667pt;}
.ws31{word-spacing:-3.946667pt;}
.ws66{word-spacing:-3.520000pt;}
.ws22{word-spacing:-3.466667pt;}
.ws17{word-spacing:-3.146667pt;}
.ws3c{word-spacing:-3.040000pt;}
.ws42{word-spacing:-2.773333pt;}
.wsb{word-spacing:-2.613333pt;}
.ws67{word-spacing:-2.293333pt;}
.ws2c{word-spacing:-2.186667pt;}
.ws69{word-spacing:-2.026667pt;}
.ws39{word-spacing:-1.813333pt;}
.ws6{word-spacing:-1.760000pt;}
.ws6b{word-spacing:-0.960000pt;}
.ws5{word-spacing:-0.853333pt;}
.ws43{word-spacing:-0.800000pt;}
.ws35{word-spacing:-0.373333pt;}
.ws18{word-spacing:-0.266667pt;}
.ws56{word-spacing:-0.213333pt;}
.ws6c{word-spacing:-0.106667pt;}
.ws16{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:0.533333pt;}
.ws1a{word-spacing:0.640000pt;}
.ws49{word-spacing:0.746667pt;}
.ws2b{word-spacing:1.013333pt;}
.ws4e{word-spacing:1.066667pt;}
.wse{word-spacing:1.120000pt;}
.ws21{word-spacing:1.226667pt;}
.ws29{word-spacing:1.653333pt;}
.wsc{word-spacing:1.813333pt;}
.ws10{word-spacing:1.866667pt;}
.ws6a{word-spacing:2.080000pt;}
.ws55{word-spacing:2.186667pt;}
.ws7{word-spacing:2.666667pt;}
.ws2d{word-spacing:2.773333pt;}
.ws13{word-spacing:2.880000pt;}
.ws4f{word-spacing:3.306667pt;}
.wsf{word-spacing:3.360000pt;}
.ws37{word-spacing:3.680000pt;}
.ws14{word-spacing:3.893333pt;}
.ws3f{word-spacing:4.000000pt;}
.ws1e{word-spacing:4.053333pt;}
.ws6e{word-spacing:4.106667pt;}
.ws4c{word-spacing:5.120000pt;}
.ws24{word-spacing:5.173333pt;}
.ws4{word-spacing:5.328000pt;}
.ws61{word-spacing:5.386667pt;}
.ws9{word-spacing:5.440000pt;}
.ws6d{word-spacing:5.493333pt;}
.ws8{word-spacing:5.546667pt;}
.ws64{word-spacing:5.866667pt;}
.ws2a{word-spacing:5.920000pt;}
.ws4b{word-spacing:6.080000pt;}
.ws59{word-spacing:6.400000pt;}
.ws3a{word-spacing:6.613333pt;}
.ws27{word-spacing:6.826667pt;}
.ws6f{word-spacing:7.093333pt;}
.ws23{word-spacing:7.146667pt;}
.ws11{word-spacing:7.253333pt;}
.ws51{word-spacing:7.306667pt;}
.ws36{word-spacing:7.360000pt;}
.ws5e{word-spacing:7.840000pt;}
.ws32{word-spacing:8.000000pt;}
.ws4a{word-spacing:8.106667pt;}
.ws28{word-spacing:8.320000pt;}
.ws54{word-spacing:8.586667pt;}
.ws20{word-spacing:8.640000pt;}
.ws34{word-spacing:8.853333pt;}
.ws1c{word-spacing:9.066667pt;}
.ws26{word-spacing:9.120000pt;}
.ws58{word-spacing:9.173333pt;}
.ws5b{word-spacing:9.440000pt;}
.ws3e{word-spacing:9.760000pt;}
.ws15{word-spacing:9.813333pt;}
.ws46{word-spacing:10.026667pt;}
.ws5a{word-spacing:10.293333pt;}
.wsa{word-spacing:10.346667pt;}
.ws53{word-spacing:10.666667pt;}
.ws38{word-spacing:10.933333pt;}
.ws62{word-spacing:11.360000pt;}
.ws4d{word-spacing:11.466667pt;}
.wsd{word-spacing:11.680000pt;}
.ws65{word-spacing:11.786667pt;}
.ws60{word-spacing:12.373333pt;}
.ws5d{word-spacing:13.920000pt;}
.ws1d{word-spacing:13.973333pt;}
.ws63{word-spacing:14.133333pt;}
.ws48{word-spacing:16.053333pt;}
.ws45{word-spacing:16.106667pt;}
.ws68{word-spacing:16.266667pt;}
.ws5f{word-spacing:16.480000pt;}
.ws1f{word-spacing:17.280000pt;}
.ws57{word-spacing:17.813333pt;}
.ws2e{word-spacing:18.400000pt;}
.ws5c{word-spacing:18.506667pt;}
.ws50{word-spacing:19.200000pt;}
.ws47{word-spacing:19.680000pt;}
.ws40{word-spacing:20.373333pt;}
.ws44{word-spacing:20.426667pt;}
.ws25{word-spacing:20.640000pt;}
.ws33{word-spacing:20.906667pt;}
.ws30{word-spacing:23.626667pt;}
.ws41{word-spacing:25.653333pt;}
.ws3b{word-spacing:26.933333pt;}
.ws52{word-spacing:28.053333pt;}
.ws1b{word-spacing:31.253333pt;}
.ws0{word-spacing:42.685333pt;}
.ws2f{word-spacing:58.026667pt;}
.ws1{word-spacing:343.390933pt;}
.ws19{word-spacing:1523.891200pt;}
._1{margin-left:-7.344000pt;}
._4{margin-left:-6.264000pt;}
._2{margin-left:-4.896000pt;}
._3{margin-left:-3.506667pt;}
._c{margin-left:-2.433600pt;}
._0{margin-left:-1.416000pt;}
._b{width:1.180800pt;}
._d{width:2.356800pt;}
._6{width:3.268800pt;}
._7{width:4.305600pt;}
._a{width:5.328000pt;}
._9{width:6.424533pt;}
._8{width:8.090667pt;}
._17{width:9.690667pt;}
._14{width:10.794667pt;}
._5{width:13.896000pt;}
._15{width:19.034667pt;}
._1a{width:22.240000pt;}
._18{width:25.658667pt;}
._11{width:30.986667pt;}
._13{width:35.306667pt;}
._16{width:43.040000pt;}
._f{width:50.986667pt;}
._12{width:53.120000pt;}
._19{width:56.373333pt;}
._10{width:58.453333pt;}
._e{width:62.186667pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y39{bottom:57.564933pt;}
.y38{bottom:58.299200pt;}
.y2e{bottom:83.611200pt;}
.y6a{bottom:88.746533pt;}
.y2d{bottom:100.944533pt;}
.y69{bottom:106.079867pt;}
.y2c{bottom:118.277867pt;}
.y68{bottom:123.413200pt;}
.y2b{bottom:135.611200pt;}
.y67{bottom:140.746533pt;}
.y2a{bottom:152.944533pt;}
.y66{bottom:158.079867pt;}
.y29{bottom:170.277867pt;}
.y65{bottom:175.413200pt;}
.y28{bottom:187.611200pt;}
.y64{bottom:192.746533pt;}
.y27{bottom:204.944533pt;}
.y63{bottom:210.079867pt;}
.y26{bottom:222.277867pt;}
.y62{bottom:227.413200pt;}
.y25{bottom:239.611200pt;}
.y61{bottom:244.746533pt;}
.y24{bottom:256.944533pt;}
.y60{bottom:262.079867pt;}
.y23{bottom:274.277867pt;}
.y5f{bottom:279.413200pt;}
.y22{bottom:291.611200pt;}
.y5e{bottom:296.746533pt;}
.y21{bottom:308.944533pt;}
.y5d{bottom:314.079867pt;}
.y20{bottom:326.277867pt;}
.y5c{bottom:331.413200pt;}
.y1f{bottom:343.611200pt;}
.y5b{bottom:348.746533pt;}
.y1e{bottom:360.944533pt;}
.y5a{bottom:366.079867pt;}
.y1d{bottom:378.277867pt;}
.y59{bottom:383.413200pt;}
.y1c{bottom:395.611200pt;}
.y58{bottom:400.746533pt;}
.y37{bottom:405.457733pt;}
.y1b{bottom:412.944533pt;}
.y57{bottom:418.079867pt;}
.y36{bottom:425.457733pt;}
.y1a{bottom:430.277867pt;}
.y56{bottom:435.413200pt;}
.y35{bottom:445.457733pt;}
.y19{bottom:447.611200pt;}
.y55{bottom:452.746533pt;}
.y18{bottom:464.944533pt;}
.y54{bottom:470.079867pt;}
.y34{bottom:481.457733pt;}
.y17{bottom:482.277867pt;}
.y53{bottom:487.413200pt;}
.y52{bottom:504.746533pt;}
.y16{bottom:516.980533pt;}
.y33{bottom:521.457733pt;}
.y51{bottom:522.079867pt;}
.y15{bottom:532.976533pt;}
.y50{bottom:539.413200pt;}
.y14{bottom:547.640533pt;}
.y4f{bottom:556.746533pt;}
.y32{bottom:557.457733pt;}
.y13{bottom:562.304533pt;}
.y4e{bottom:574.079867pt;}
.y12{bottom:576.968533pt;}
.y31{bottom:589.457733pt;}
.y4d{bottom:591.413200pt;}
.y11{bottom:591.632533pt;}
.y10{bottom:606.296533pt;}
.y4c{bottom:608.746533pt;}
.yf{bottom:620.960533pt;}
.y30{bottom:621.457733pt;}
.y4b{bottom:626.079867pt;}
.ye{bottom:635.624533pt;}
.y4a{bottom:643.413200pt;}
.yd{bottom:650.288533pt;}
.y2f{bottom:653.457733pt;}
.y49{bottom:660.746533pt;}
.yc{bottom:664.952533pt;}
.y48{bottom:678.079867pt;}
.yb{bottom:679.616533pt;}
.ya{bottom:694.280533pt;}
.y76{bottom:694.808533pt;}
.y47{bottom:695.413200pt;}
.y9{bottom:708.944533pt;}
.y75{bottom:712.141867pt;}
.y46{bottom:712.746533pt;}
.y8{bottom:723.611200pt;}
.y74{bottom:729.475200pt;}
.y45{bottom:730.079867pt;}
.y73{bottom:746.808533pt;}
.y44{bottom:747.413200pt;}
.y7{bottom:760.948533pt;}
.y72{bottom:764.141867pt;}
.y43{bottom:764.746533pt;}
.y6{bottom:776.944533pt;}
.y71{bottom:781.475200pt;}
.y42{bottom:782.079867pt;}
.y5{bottom:792.944533pt;}
.y70{bottom:798.808533pt;}
.y41{bottom:799.413200pt;}
.y6f{bottom:816.141867pt;}
.y40{bottom:816.746533pt;}
.y4{bottom:830.284533pt;}
.y6e{bottom:833.475200pt;}
.y3f{bottom:834.079867pt;}
.y6d{bottom:850.808533pt;}
.y3e{bottom:851.413200pt;}
.y3{bottom:856.944533pt;}
.y6c{bottom:868.141867pt;}
.y3d{bottom:868.746533pt;}
.y6b{bottom:885.475200pt;}
.y3c{bottom:886.079867pt;}
.y3b{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y3a{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.h6{height:33.328125pt;}
.h5{height:36.145833pt;}
.h7{height:37.057292pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h9{height:41.066667pt;}
.h8{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h4{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xa{left:56.692933pt;}
.x2{left:57.957867pt;}
.x9{left:65.385867pt;}
.x1{left:66.536133pt;}
.x8{left:199.278133pt;}
.x3{left:208.323867pt;}
.xd{left:355.492933pt;}
.x4{left:366.263867pt;}
.xe{left:379.492933pt;}
.x6{left:424.998533pt;}
.x7{left:433.134533pt;}
.x5{left:457.203600pt;}
.xc{left:545.952133pt;}
.xb{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; }
  