
    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_41dd529ef3b96b037712252c.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_41dd529ef3b96b037712252c.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_f12f849c85e63867e1fcd45a.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_fc49c9115b47e9e53f2215d1.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_aeed2cc8bd01975dc18e12e5.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_3118938899e1020f7d0068e5.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_80fd084e8ad6cb8e1f982d7e.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_d957903182940ef50f0e11cc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7432aebb7ef7b1ffd071b98e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_36906760f5f1f5bf679169e7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_77bf37ac24e6d95c10686e52.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3af186427f420232140e1e35.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a0b45f0f058cd0cfef8118b0.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f12f849c85e63867e1fcd45a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5f73964bed941cf0fb37f571.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6b22d3f71d02f8117a11e4a3.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:49.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws47{word-spacing:-9.000000px;}
.ws27{word-spacing:-4.140000px;}
.ws20{word-spacing:-3.900000px;}
.ws9{word-spacing:-3.888000px;}
.ws54{word-spacing:-3.780000px;}
.ws31{word-spacing:-3.660000px;}
.ws16{word-spacing:-2.580000px;}
.ws35{word-spacing:-2.520000px;}
.ws74{word-spacing:-2.460000px;}
.ws5{word-spacing:-2.268000px;}
.ws44{word-spacing:-1.920000px;}
.ws46{word-spacing:-1.680000px;}
.wsb{word-spacing:-1.458000px;}
.ws13{word-spacing:-1.404000px;}
.ws17{word-spacing:-1.140000px;}
.ws73{word-spacing:-0.960000px;}
.ws21{word-spacing:-0.840000px;}
.ws63{word-spacing:-0.720000px;}
.ws1e{word-spacing:-0.660000px;}
.ws18{word-spacing:-0.360000px;}
.ws3{word-spacing:0.000000px;}
.ws2a{word-spacing:0.240000px;}
.ws64{word-spacing:0.300000px;}
.ws1{word-spacing:0.720000px;}
.ws5b{word-spacing:0.780000px;}
.ws65{word-spacing:0.900000px;}
.wsf{word-spacing:0.972000px;}
.ws45{word-spacing:1.020000px;}
.ws4{word-spacing:1.188000px;}
.ws28{word-spacing:1.260000px;}
.ws22{word-spacing:1.440000px;}
.ws6e{word-spacing:1.980000px;}
.ws78{word-spacing:2.220000px;}
.ws6d{word-spacing:2.460000px;}
.ws7a{word-spacing:2.640000px;}
.ws8{word-spacing:2.646000px;}
.ws42{word-spacing:2.760000px;}
.ws4a{word-spacing:3.000000px;}
.ws60{word-spacing:3.120000px;}
.ws53{word-spacing:3.240000px;}
.ws7f{word-spacing:3.360000px;}
.ws1a{word-spacing:3.420000px;}
.ws7b{word-spacing:3.480000px;}
.ws4b{word-spacing:3.600000px;}
.ws7d{word-spacing:3.660000px;}
.ws33{word-spacing:3.720000px;}
.ws2c{word-spacing:3.960000px;}
.ws5d{word-spacing:4.020000px;}
.ws67{word-spacing:4.380000px;}
.ws4f{word-spacing:4.560000px;}
.ws29{word-spacing:4.920000px;}
.ws5c{word-spacing:5.040000px;}
.wsd{word-spacing:5.184000px;}
.ws55{word-spacing:5.220000px;}
.ws6f{word-spacing:5.340000px;}
.ws10{word-spacing:5.508000px;}
.ws1d{word-spacing:5.520000px;}
.ws1f{word-spacing:5.580000px;}
.wse{word-spacing:6.102000px;}
.ws69{word-spacing:6.180000px;}
.ws7{word-spacing:6.534000px;}
.ws6{word-spacing:6.588000px;}
.ws50{word-spacing:6.600000px;}
.ws2d{word-spacing:7.680000px;}
.ws4d{word-spacing:7.740000px;}
.ws7e{word-spacing:7.920000px;}
.ws1b{word-spacing:7.980000px;}
.wsc{word-spacing:8.208000px;}
.ws5a{word-spacing:8.820000px;}
.ws76{word-spacing:9.060000px;}
.ws2b{word-spacing:9.240000px;}
.ws7c{word-spacing:9.780000px;}
.ws56{word-spacing:10.020000px;}
.ws12{word-spacing:10.206000px;}
.ws4e{word-spacing:10.440000px;}
.ws75{word-spacing:10.560000px;}
.wsa{word-spacing:10.584000px;}
.ws72{word-spacing:10.680000px;}
.ws68{word-spacing:10.800000px;}
.ws32{word-spacing:11.040000px;}
.ws15{word-spacing:11.220000px;}
.ws70{word-spacing:11.580000px;}
.ws43{word-spacing:11.880000px;}
.ws25{word-spacing:12.120000px;}
.ws6c{word-spacing:12.180000px;}
.ws71{word-spacing:12.300000px;}
.ws37{word-spacing:12.480000px;}
.ws40{word-spacing:12.720000px;}
.ws26{word-spacing:12.780000px;}
.ws6a{word-spacing:13.500000px;}
.ws14{word-spacing:13.680000px;}
.ws3b{word-spacing:13.740000px;}
.ws52{word-spacing:13.980000px;}
.ws51{word-spacing:15.660000px;}
.ws61{word-spacing:15.900000px;}
.ws3e{word-spacing:16.020000px;}
.ws1c{word-spacing:16.320000px;}
.ws41{word-spacing:16.500000px;}
.ws34{word-spacing:16.920000px;}
.ws30{word-spacing:17.040000px;}
.ws2f{word-spacing:17.100000px;}
.ws38{word-spacing:17.220000px;}
.ws49{word-spacing:17.640000px;}
.ws6b{word-spacing:17.700000px;}
.ws66{word-spacing:17.820000px;}
.ws3d{word-spacing:17.880000px;}
.ws19{word-spacing:18.060000px;}
.ws11{word-spacing:18.414000px;}
.ws39{word-spacing:18.540000px;}
.ws2e{word-spacing:19.260000px;}
.ws5f{word-spacing:20.220000px;}
.ws59{word-spacing:20.520000px;}
.ws5e{word-spacing:21.000000px;}
.ws3a{word-spacing:21.300000px;}
.ws48{word-spacing:21.540000px;}
.ws3c{word-spacing:21.960000px;}
.ws79{word-spacing:22.020000px;}
.ws58{word-spacing:24.420000px;}
.ws77{word-spacing:25.500000px;}
.ws62{word-spacing:27.120000px;}
.ws3f{word-spacing:29.040000px;}
.ws36{word-spacing:32.040000px;}
.ws80{word-spacing:34.680000px;}
.ws57{word-spacing:47.400000px;}
.ws23{word-spacing:48.021000px;}
.ws82{word-spacing:50.760000px;}
.ws81{word-spacing:51.420000px;}
.ws4c{word-spacing:56.460000px;}
.ws24{word-spacing:386.314800px;}
.ws0{word-spacing:1714.377600px;}
._e{margin-left:-51.000000px;}
._1c{margin-left:-43.440000px;}
._1b{margin-left:-26.700000px;}
._10{margin-left:-24.060000px;}
._16{margin-left:-14.634000px;}
._6{margin-left:-7.020000px;}
._3{margin-left:-5.514000px;}
._2{margin-left:-4.386000px;}
._4{margin-left:-2.964600px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._7{width:2.544000px;}
._c{width:4.464000px;}
._f{width:7.980000px;}
._a{width:10.038000px;}
._19{width:11.040000px;}
._b{width:16.824000px;}
._12{width:18.802200px;}
._5{width:20.773800px;}
._14{width:22.620000px;}
._1a{width:25.020000px;}
._1e{width:30.750000px;}
._1d{width:31.932000px;}
._15{width:49.500000px;}
._11{width:52.140000px;}
._d{width:53.700000px;}
._18{width:58.440000px;}
._17{width:63.840000px;}
._8{width:66.600000px;}
._9{width:70.020000px;}
._13{width:73.800000px;}
.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;}
.y3c{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y32{bottom:93.142650px;}
.y6a{bottom:99.159600px;}
.y31{bottom:112.642650px;}
.y69{bottom:118.659600px;}
.y30{bottom:131.392650px;}
.y68{bottom:138.159600px;}
.y2f{bottom:150.142650px;}
.y67{bottom:157.659600px;}
.y2e{bottom:168.892650px;}
.y66{bottom:177.159600px;}
.y2d{bottom:187.642650px;}
.y65{bottom:196.659600px;}
.y2c{bottom:206.392650px;}
.y64{bottom:216.159600px;}
.y2b{bottom:225.142650px;}
.y63{bottom:235.659600px;}
.y2a{bottom:243.892650px;}
.y62{bottom:255.159600px;}
.y29{bottom:262.642650px;}
.y61{bottom:274.659600px;}
.y28{bottom:281.392650px;}
.y6c{bottom:294.159600px;}
.y60{bottom:313.659600px;}
.y27{bottom:315.142650px;}
.y5f{bottom:333.159600px;}
.y26{bottom:334.642650px;}
.y5e{bottom:352.659600px;}
.y25{bottom:354.142650px;}
.y5d{bottom:372.159600px;}
.y24{bottom:373.642650px;}
.y5c{bottom:391.659600px;}
.y23{bottom:393.142650px;}
.y5b{bottom:411.159600px;}
.y22{bottom:412.642650px;}
.y5a{bottom:430.659600px;}
.y21{bottom:432.142650px;}
.y59{bottom:450.159600px;}
.y20{bottom:451.642650px;}
.y3b{bottom:456.139950px;}
.y58{bottom:469.659600px;}
.y1f{bottom:471.142650px;}
.y3a{bottom:478.639950px;}
.y57{bottom:489.159600px;}
.y1e{bottom:490.642650px;}
.y39{bottom:501.139950px;}
.y56{bottom:508.659600px;}
.y55{bottom:528.159600px;}
.y1d{bottom:529.699650px;}
.y38{bottom:541.639950px;}
.y54{bottom:547.659600px;}
.y1c{bottom:549.193650px;}
.y1b{bottom:565.690650px;}
.y53{bottom:567.159600px;}
.y1a{bottom:582.187650px;}
.y37{bottom:586.639950px;}
.y52{bottom:586.659600px;}
.y19{bottom:598.684650px;}
.y51{bottom:606.159600px;}
.y18{bottom:615.181650px;}
.y50{bottom:625.659600px;}
.y36{bottom:627.139950px;}
.y17{bottom:631.678650px;}
.y4f{bottom:645.159600px;}
.y16{bottom:648.175650px;}
.y35{bottom:663.139950px;}
.y4e{bottom:664.659600px;}
.y15{bottom:664.672650px;}
.y14{bottom:681.169650px;}
.y4d{bottom:684.159600px;}
.y13{bottom:697.666650px;}
.y34{bottom:699.139950px;}
.y6b{bottom:703.659600px;}
.y12{bottom:714.163650px;}
.y4c{bottom:723.159600px;}
.y11{bottom:730.660650px;}
.y33{bottom:735.139950px;}
.y4b{bottom:742.659600px;}
.y10{bottom:747.157650px;}
.y4a{bottom:762.159600px;}
.yf{bottom:763.654650px;}
.ye{bottom:780.151650px;}
.y49{bottom:781.659600px;}
.yd{bottom:796.648650px;}
.y48{bottom:801.159600px;}
.yc{bottom:813.145650px;}
.y47{bottom:820.659600px;}
.yb{bottom:829.642650px;}
.y46{bottom:840.159600px;}
.ya{bottom:846.142650px;}
.y45{bottom:859.659600px;}
.y9{bottom:862.648650px;}
.y44{bottom:879.159600px;}
.y8{bottom:882.142650px;}
.y43{bottom:898.659600px;}
.y7{bottom:900.142650px;}
.y42{bottom:918.159600px;}
.y41{bottom:937.659600px;}
.y6{bottom:942.142650px;}
.y40{bottom:957.159600px;}
.y5{bottom:969.142650px;}
.y3f{bottom:976.659600px;}
.y3e{bottom:996.159600px;}
.y4{bottom:1024.374150px;}
.y3d{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.h9{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hb{height:46.200000px;}
.ha{height:50.400000px;}
.hd{height:52.492611px;}
.hc{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:74.853150px;}
.xf{left:90.779550px;}
.x9{left:224.187900px;}
.xa{left:245.447700px;}
.x5{left:248.783850px;}
.x6{left:388.936350px;}
.x10{left:399.929550px;}
.x4{left:412.272150px;}
.x11{left:426.929550px;}
.x8{left:527.529000px;}
.x7{left:548.616000px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
.xb{left:637.188600px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:43.573333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws47{word-spacing:-8.000000pt;}
.ws27{word-spacing:-3.680000pt;}
.ws20{word-spacing:-3.466667pt;}
.ws9{word-spacing:-3.456000pt;}
.ws54{word-spacing:-3.360000pt;}
.ws31{word-spacing:-3.253333pt;}
.ws16{word-spacing:-2.293333pt;}
.ws35{word-spacing:-2.240000pt;}
.ws74{word-spacing:-2.186667pt;}
.ws5{word-spacing:-2.016000pt;}
.ws44{word-spacing:-1.706667pt;}
.ws46{word-spacing:-1.493333pt;}
.wsb{word-spacing:-1.296000pt;}
.ws13{word-spacing:-1.248000pt;}
.ws17{word-spacing:-1.013333pt;}
.ws73{word-spacing:-0.853333pt;}
.ws21{word-spacing:-0.746667pt;}
.ws63{word-spacing:-0.640000pt;}
.ws1e{word-spacing:-0.586667pt;}
.ws18{word-spacing:-0.320000pt;}
.ws3{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.213333pt;}
.ws64{word-spacing:0.266667pt;}
.ws1{word-spacing:0.640000pt;}
.ws5b{word-spacing:0.693333pt;}
.ws65{word-spacing:0.800000pt;}
.wsf{word-spacing:0.864000pt;}
.ws45{word-spacing:0.906667pt;}
.ws4{word-spacing:1.056000pt;}
.ws28{word-spacing:1.120000pt;}
.ws22{word-spacing:1.280000pt;}
.ws6e{word-spacing:1.760000pt;}
.ws78{word-spacing:1.973333pt;}
.ws6d{word-spacing:2.186667pt;}
.ws7a{word-spacing:2.346667pt;}
.ws8{word-spacing:2.352000pt;}
.ws42{word-spacing:2.453333pt;}
.ws4a{word-spacing:2.666667pt;}
.ws60{word-spacing:2.773333pt;}
.ws53{word-spacing:2.880000pt;}
.ws7f{word-spacing:2.986667pt;}
.ws1a{word-spacing:3.040000pt;}
.ws7b{word-spacing:3.093333pt;}
.ws4b{word-spacing:3.200000pt;}
.ws7d{word-spacing:3.253333pt;}
.ws33{word-spacing:3.306667pt;}
.ws2c{word-spacing:3.520000pt;}
.ws5d{word-spacing:3.573333pt;}
.ws67{word-spacing:3.893333pt;}
.ws4f{word-spacing:4.053333pt;}
.ws29{word-spacing:4.373333pt;}
.ws5c{word-spacing:4.480000pt;}
.wsd{word-spacing:4.608000pt;}
.ws55{word-spacing:4.640000pt;}
.ws6f{word-spacing:4.746667pt;}
.ws10{word-spacing:4.896000pt;}
.ws1d{word-spacing:4.906667pt;}
.ws1f{word-spacing:4.960000pt;}
.wse{word-spacing:5.424000pt;}
.ws69{word-spacing:5.493333pt;}
.ws7{word-spacing:5.808000pt;}
.ws6{word-spacing:5.856000pt;}
.ws50{word-spacing:5.866667pt;}
.ws2d{word-spacing:6.826667pt;}
.ws4d{word-spacing:6.880000pt;}
.ws7e{word-spacing:7.040000pt;}
.ws1b{word-spacing:7.093333pt;}
.wsc{word-spacing:7.296000pt;}
.ws5a{word-spacing:7.840000pt;}
.ws76{word-spacing:8.053333pt;}
.ws2b{word-spacing:8.213333pt;}
.ws7c{word-spacing:8.693333pt;}
.ws56{word-spacing:8.906667pt;}
.ws12{word-spacing:9.072000pt;}
.ws4e{word-spacing:9.280000pt;}
.ws75{word-spacing:9.386667pt;}
.wsa{word-spacing:9.408000pt;}
.ws72{word-spacing:9.493333pt;}
.ws68{word-spacing:9.600000pt;}
.ws32{word-spacing:9.813333pt;}
.ws15{word-spacing:9.973333pt;}
.ws70{word-spacing:10.293333pt;}
.ws43{word-spacing:10.560000pt;}
.ws25{word-spacing:10.773333pt;}
.ws6c{word-spacing:10.826667pt;}
.ws71{word-spacing:10.933333pt;}
.ws37{word-spacing:11.093333pt;}
.ws40{word-spacing:11.306667pt;}
.ws26{word-spacing:11.360000pt;}
.ws6a{word-spacing:12.000000pt;}
.ws14{word-spacing:12.160000pt;}
.ws3b{word-spacing:12.213333pt;}
.ws52{word-spacing:12.426667pt;}
.ws51{word-spacing:13.920000pt;}
.ws61{word-spacing:14.133333pt;}
.ws3e{word-spacing:14.240000pt;}
.ws1c{word-spacing:14.506667pt;}
.ws41{word-spacing:14.666667pt;}
.ws34{word-spacing:15.040000pt;}
.ws30{word-spacing:15.146667pt;}
.ws2f{word-spacing:15.200000pt;}
.ws38{word-spacing:15.306667pt;}
.ws49{word-spacing:15.680000pt;}
.ws6b{word-spacing:15.733333pt;}
.ws66{word-spacing:15.840000pt;}
.ws3d{word-spacing:15.893333pt;}
.ws19{word-spacing:16.053333pt;}
.ws11{word-spacing:16.368000pt;}
.ws39{word-spacing:16.480000pt;}
.ws2e{word-spacing:17.120000pt;}
.ws5f{word-spacing:17.973333pt;}
.ws59{word-spacing:18.240000pt;}
.ws5e{word-spacing:18.666667pt;}
.ws3a{word-spacing:18.933333pt;}
.ws48{word-spacing:19.146667pt;}
.ws3c{word-spacing:19.520000pt;}
.ws79{word-spacing:19.573333pt;}
.ws58{word-spacing:21.706667pt;}
.ws77{word-spacing:22.666667pt;}
.ws62{word-spacing:24.106667pt;}
.ws3f{word-spacing:25.813333pt;}
.ws36{word-spacing:28.480000pt;}
.ws80{word-spacing:30.826667pt;}
.ws57{word-spacing:42.133333pt;}
.ws23{word-spacing:42.685333pt;}
.ws82{word-spacing:45.120000pt;}
.ws81{word-spacing:45.706667pt;}
.ws4c{word-spacing:50.186667pt;}
.ws24{word-spacing:343.390933pt;}
.ws0{word-spacing:1523.891200pt;}
._e{margin-left:-45.333333pt;}
._1c{margin-left:-38.613333pt;}
._1b{margin-left:-23.733333pt;}
._10{margin-left:-21.386667pt;}
._16{margin-left:-13.008000pt;}
._6{margin-left:-6.240000pt;}
._3{margin-left:-4.901333pt;}
._2{margin-left:-3.898667pt;}
._4{margin-left:-2.635200pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._7{width:2.261333pt;}
._c{width:3.968000pt;}
._f{width:7.093333pt;}
._a{width:8.922667pt;}
._19{width:9.813333pt;}
._b{width:14.954667pt;}
._12{width:16.713067pt;}
._5{width:18.465600pt;}
._14{width:20.106667pt;}
._1a{width:22.240000pt;}
._1e{width:27.333333pt;}
._1d{width:28.384000pt;}
._15{width:44.000000pt;}
._11{width:46.346667pt;}
._d{width:47.733333pt;}
._18{width:51.946667pt;}
._17{width:56.746667pt;}
._8{width:59.200000pt;}
._9{width:62.240000pt;}
._13{width:65.600000pt;}
.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;}
.y3c{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y32{bottom:82.793467pt;}
.y6a{bottom:88.141867pt;}
.y31{bottom:100.126800pt;}
.y69{bottom:105.475200pt;}
.y30{bottom:116.793467pt;}
.y68{bottom:122.808533pt;}
.y2f{bottom:133.460133pt;}
.y67{bottom:140.141867pt;}
.y2e{bottom:150.126800pt;}
.y66{bottom:157.475200pt;}
.y2d{bottom:166.793467pt;}
.y65{bottom:174.808533pt;}
.y2c{bottom:183.460133pt;}
.y64{bottom:192.141867pt;}
.y2b{bottom:200.126800pt;}
.y63{bottom:209.475200pt;}
.y2a{bottom:216.793467pt;}
.y62{bottom:226.808533pt;}
.y29{bottom:233.460133pt;}
.y61{bottom:244.141867pt;}
.y28{bottom:250.126800pt;}
.y6c{bottom:261.475200pt;}
.y60{bottom:278.808533pt;}
.y27{bottom:280.126800pt;}
.y5f{bottom:296.141867pt;}
.y26{bottom:297.460133pt;}
.y5e{bottom:313.475200pt;}
.y25{bottom:314.793467pt;}
.y5d{bottom:330.808533pt;}
.y24{bottom:332.126800pt;}
.y5c{bottom:348.141867pt;}
.y23{bottom:349.460133pt;}
.y5b{bottom:365.475200pt;}
.y22{bottom:366.793467pt;}
.y5a{bottom:382.808533pt;}
.y21{bottom:384.126800pt;}
.y59{bottom:400.141867pt;}
.y20{bottom:401.460133pt;}
.y3b{bottom:405.457733pt;}
.y58{bottom:417.475200pt;}
.y1f{bottom:418.793467pt;}
.y3a{bottom:425.457733pt;}
.y57{bottom:434.808533pt;}
.y1e{bottom:436.126800pt;}
.y39{bottom:445.457733pt;}
.y56{bottom:452.141867pt;}
.y55{bottom:469.475200pt;}
.y1d{bottom:470.844133pt;}
.y38{bottom:481.457733pt;}
.y54{bottom:486.808533pt;}
.y1c{bottom:488.172133pt;}
.y1b{bottom:502.836133pt;}
.y53{bottom:504.141867pt;}
.y1a{bottom:517.500133pt;}
.y37{bottom:521.457733pt;}
.y52{bottom:521.475200pt;}
.y19{bottom:532.164133pt;}
.y51{bottom:538.808533pt;}
.y18{bottom:546.828133pt;}
.y50{bottom:556.141867pt;}
.y36{bottom:557.457733pt;}
.y17{bottom:561.492133pt;}
.y4f{bottom:573.475200pt;}
.y16{bottom:576.156133pt;}
.y35{bottom:589.457733pt;}
.y4e{bottom:590.808533pt;}
.y15{bottom:590.820133pt;}
.y14{bottom:605.484133pt;}
.y4d{bottom:608.141867pt;}
.y13{bottom:620.148133pt;}
.y34{bottom:621.457733pt;}
.y6b{bottom:625.475200pt;}
.y12{bottom:634.812133pt;}
.y4c{bottom:642.808533pt;}
.y11{bottom:649.476133pt;}
.y33{bottom:653.457733pt;}
.y4b{bottom:660.141867pt;}
.y10{bottom:664.140133pt;}
.y4a{bottom:677.475200pt;}
.yf{bottom:678.804133pt;}
.ye{bottom:693.468133pt;}
.y49{bottom:694.808533pt;}
.yd{bottom:708.132133pt;}
.y48{bottom:712.141867pt;}
.yc{bottom:722.796133pt;}
.y47{bottom:729.475200pt;}
.yb{bottom:737.460133pt;}
.y46{bottom:746.808533pt;}
.ya{bottom:752.126800pt;}
.y45{bottom:764.141867pt;}
.y9{bottom:766.798800pt;}
.y44{bottom:781.475200pt;}
.y8{bottom:784.126800pt;}
.y43{bottom:798.808533pt;}
.y7{bottom:800.126800pt;}
.y42{bottom:816.141867pt;}
.y41{bottom:833.475200pt;}
.y6{bottom:837.460133pt;}
.y40{bottom:850.808533pt;}
.y5{bottom:861.460133pt;}
.y3f{bottom:868.141867pt;}
.y3e{bottom:885.475200pt;}
.y4{bottom:910.554800pt;}
.y3d{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.h9{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hb{height:41.066667pt;}
.ha{height:44.800000pt;}
.hd{height:46.660099pt;}
.hc{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:66.536133pt;}
.xf{left:80.692933pt;}
.x9{left:199.278133pt;}
.xa{left:218.175733pt;}
.x5{left:221.141200pt;}
.x6{left:345.721200pt;}
.x10{left:355.492933pt;}
.x4{left:366.464133pt;}
.x11{left:379.492933pt;}
.x8{left:468.914667pt;}
.x7{left:487.658667pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
.xb{left:566.389867pt;}
}




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