
    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_e1be84d08ec64880bc98fc29.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ab5eaa105d3b74adb330f7e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_087ec53545a7fb274d579ec4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_36595f00f24c0275e836a4fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_10c31fe018d8631f46006601.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_6504986fb4e0a9db1f9ff068.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_18859fa4aafe036c901d7cf4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.955078;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_7fd3e0515c493c1450e99c82.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-70.560000px;}
.v1{vertical-align:-69.120000px;}
.v3{vertical-align:-63.540000px;}
.v0{vertical-align:0.000000px;}
.ls38{letter-spacing:-2.880000px;}
.ls33{letter-spacing:-2.376000px;}
.ls32{letter-spacing:-2.118000px;}
.ls48{letter-spacing:-1.998000px;}
.ls15{letter-spacing:-1.950000px;}
.ls4a{letter-spacing:-1.914000px;}
.ls12{letter-spacing:-1.908000px;}
.ls42{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.422000px;}
.ls4e{letter-spacing:-1.254000px;}
.ls3e{letter-spacing:-0.936000px;}
.ls4d{letter-spacing:-0.810000px;}
.ls11{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.678000px;}
.ls47{letter-spacing:-0.672000px;}
.ls36{letter-spacing:-0.544200px;}
.ls2f{letter-spacing:-0.510000px;}
.ls10{letter-spacing:-0.507000px;}
.ls49{letter-spacing:-0.492600px;}
.ls4c{letter-spacing:-0.475200px;}
.ls14{letter-spacing:-0.460800px;}
.lsf{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.020160px;}
.ls37{letter-spacing:0.140160px;}
.lse{letter-spacing:0.316800px;}
.ls2a{letter-spacing:0.466560px;}
.ls16{letter-spacing:0.466800px;}
.ls9{letter-spacing:0.506880px;}
.ls31{letter-spacing:0.507000px;}
.ls34{letter-spacing:0.512400px;}
.ls46{letter-spacing:0.627840px;}
.ls4b{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls35{letter-spacing:0.930000px;}
.ls3a{letter-spacing:1.640160px;}
.ls6{letter-spacing:2.160000px;}
.ls7{letter-spacing:3.600000px;}
.lsb{letter-spacing:5.040000px;}
.lsc{letter-spacing:5.160000px;}
.lsa{letter-spacing:6.480000px;}
.ls8{letter-spacing:7.920000px;}
.ls20{letter-spacing:9.360000px;}
.ls24{letter-spacing:9.540000px;}
.ls23{letter-spacing:10.800000px;}
.ls5{letter-spacing:12.240000px;}
.ls1b{letter-spacing:13.680000px;}
.ls17{letter-spacing:13.800000px;}
.ls1d{letter-spacing:16.560000px;}
.ls1c{letter-spacing:18.000000px;}
.ls1e{letter-spacing:18.120000px;}
.ls1f{letter-spacing:18.180000px;}
.ls2e{letter-spacing:19.440000px;}
.ls39{letter-spacing:25.200000px;}
.ls3c{letter-spacing:29.520000px;}
.ls3b{letter-spacing:29.700000px;}
.ls29{letter-spacing:32.400000px;}
.ls28{letter-spacing:33.840000px;}
.ls27{letter-spacing:33.960000px;}
.ls26{letter-spacing:35.400000px;}
.ls25{letter-spacing:36.720000px;}
.ls22{letter-spacing:36.840000px;}
.ls21{letter-spacing:36.900000px;}
.ls18{letter-spacing:38.160000px;}
.ls19{letter-spacing:38.340000px;}
.ls3d{letter-spacing:39.600000px;}
.ls2d{letter-spacing:72.720000px;}
.ls2c{letter-spacing:74.304000px;}
.ls4{letter-spacing:82.812000px;}
.ls3{letter-spacing:100.092000px;}
.ls2b{letter-spacing:110.160000px;}
.ls1{letter-spacing:110.172000px;}
.lsd{letter-spacing:154.800000px;}
.ls2{letter-spacing:162.012000px;}
.ls41{letter-spacing:163.198560px;}
.ls43{letter-spacing:163.318560px;}
.ls44{letter-spacing:166.198560px;}
.ls3f{letter-spacing:193.438560px;}
.ls40{letter-spacing:194.878560px;}
.ls45{letter-spacing:1108.632000px;}
.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;}
}
.ws10{word-spacing:-16.050000px;}
.wsf{word-spacing:-15.632400px;}
.wsb{word-spacing:-15.627000px;}
.ws7{word-spacing:-15.586800px;}
.wsc{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.659200px;}
.ws1{word-spacing:-14.613000px;}
.ws9{word-spacing:-14.610000px;}
.ws11{word-spacing:-14.575800px;}
.wsa{word-spacing:-14.442000px;}
.ws16{word-spacing:-14.310000px;}
.ws4{word-spacing:-13.698000px;}
.ws2{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.212000px;}
.ws17{word-spacing:-13.204800px;}
.ws14{word-spacing:-13.187400px;}
.ws6{word-spacing:-13.170000px;}
.ws13{word-spacing:-13.008000px;}
.wsd{word-spacing:-13.002000px;}
.ws18{word-spacing:-12.870000px;}
.wse{word-spacing:-12.744000px;}
.ws19{word-spacing:-12.426000px;}
.ws12{word-spacing:-12.240000px;}
.ws15{word-spacing:-11.766000px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-7.839360px;}
._4{margin-left:-5.641920px;}
._c{margin-left:-4.354560px;}
._2{margin-left:-2.658240px;}
._0{margin-left:-1.440000px;}
._1{width:1.198080px;}
._3{width:2.201280px;}
._7{width:3.816960px;}
._f{width:5.001600px;}
._12{width:6.930240px;}
._15{width:8.550720px;}
._14{width:9.754560px;}
._13{width:11.157120px;}
._11{width:12.254400px;}
._d{width:13.685760px;}
._30{width:16.199040px;}
._b{width:17.221440px;}
._a{width:18.319680px;}
._10{width:20.070720px;}
._1a{width:21.588480px;}
._25{width:23.224800px;}
._20{width:25.257600px;}
._e{width:26.628480px;}
._1f{width:27.955200px;}
._2c{width:29.450880px;}
._1d{width:30.528000px;}
._1e{width:31.628160px;}
._2b{width:32.883840px;}
._26{width:34.850880px;}
._2f{width:35.907840px;}
._22{width:36.927840px;}
._21{width:38.315040px;}
._2e{width:39.398880px;}
._27{width:40.947840px;}
._28{width:42.330240px;}
._16{width:43.948800px;}
._17{width:45.233280px;}
._2d{width:47.986560px;}
._18{width:50.423040px;}
._19{width:52.176000px;}
._5{width:53.882400px;}
._1b{width:60.505920px;}
._1c{width:61.744320px;}
._9{width:64.247040px;}
._8{width:65.666880px;}
._2a{width:70.332480px;}
._29{width:71.974080px;}
._23{width:109.638720px;}
._24{width:111.045120px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:24.480000px;}
.y1{bottom:65.520000px;}
.y38{bottom:109.440000px;}
.y67{bottom:113.436000px;}
.y83{bottom:116.676000px;}
.y37{bottom:124.956000px;}
.y66{bottom:130.716000px;}
.y82{bottom:133.956000px;}
.y65{bottom:147.996000px;}
.y81{bottom:151.230000px;}
.y36{bottom:158.070000px;}
.y6b{bottom:164.910000px;}
.y64{bottom:165.270000px;}
.y80{bottom:168.510000px;}
.y35{bottom:175.350000px;}
.y63{bottom:182.190000px;}
.y7f{bottom:185.790000px;}
.y34{bottom:192.630000px;}
.y62{bottom:199.470000px;}
.y7e{bottom:203.070000px;}
.y33{bottom:209.910000px;}
.y61{bottom:216.750000px;}
.y7d{bottom:220.395000px;}
.y32{bottom:227.235000px;}
.y60{bottom:234.075000px;}
.y7c{bottom:237.675000px;}
.y31{bottom:244.515000px;}
.y5f{bottom:251.355000px;}
.y7b{bottom:254.955000px;}
.y30{bottom:261.795000px;}
.y5e{bottom:268.635000px;}
.y7a{bottom:272.235000px;}
.y2f{bottom:279.075000px;}
.y5d{bottom:285.915000px;}
.y79{bottom:289.515000px;}
.y2e{bottom:295.995000px;}
.y5c{bottom:303.195000px;}
.y78{bottom:306.435000px;}
.y2d{bottom:313.635000px;}
.y5b{bottom:320.475000px;}
.y77{bottom:323.745000px;}
.y2c{bottom:330.945000px;}
.y5a{bottom:337.425000px;}
.y6a{bottom:337.785000px;}
.y76{bottom:341.025000px;}
.y2b{bottom:347.865000px;}
.y59{bottom:355.065000px;}
.y75{bottom:358.305000px;}
.y2a{bottom:365.145000px;}
.y58{bottom:371.985000px;}
.y74{bottom:375.585000px;}
.y29{bottom:382.425000px;}
.y57{bottom:389.265000px;}
.y73{bottom:392.865000px;}
.y28{bottom:399.705000px;}
.y56{bottom:406.545000px;}
.y72{bottom:409.785000px;}
.y27{bottom:416.985000px;}
.y55{bottom:423.825000px;}
.y26{bottom:434.310000px;}
.y54{bottom:441.150000px;}
.y25{bottom:451.590000px;}
.y53{bottom:458.430000px;}
.y24{bottom:468.870000px;}
.y71{bottom:475.350000px;}
.y52{bottom:475.710000px;}
.y23{bottom:486.150000px;}
.y51{bottom:492.990000px;}
.y22{bottom:503.430000px;}
.y50{bottom:510.270000px;}
.y21{bottom:520.710000px;}
.y70{bottom:527.190000px;}
.y4f{bottom:527.550000px;}
.y20{bottom:537.660000px;}
.y69{bottom:544.860000px;}
.y1f{bottom:554.940000px;}
.y4e{bottom:562.140000px;}
.y1e{bottom:572.220000px;}
.y6f{bottom:578.700000px;}
.y4d{bottom:579.060000px;}
.y1d{bottom:589.500000px;}
.y6e{bottom:595.980000px;}
.y4c{bottom:596.340000px;}
.y1c{bottom:606.780000px;}
.y4b{bottom:613.620000px;}
.y1b{bottom:624.060000px;}
.y4a{bottom:630.900000px;}
.y1a{bottom:641.370000px;}
.y6d{bottom:647.850000px;}
.y49{bottom:648.210000px;}
.y19{bottom:658.650000px;}
.y6c{bottom:665.130000px;}
.y48{bottom:665.490000px;}
.y18{bottom:675.930000px;}
.y47{bottom:682.770000px;}
.y17{bottom:693.210000px;}
.y46{bottom:700.050000px;}
.y16{bottom:710.490000px;}
.y45{bottom:717.330000px;}
.y15{bottom:727.410000px;}
.y44{bottom:734.610000px;}
.y14{bottom:744.375000px;}
.y43{bottom:751.935000px;}
.y13{bottom:762.015000px;}
.y42{bottom:768.855000px;}
.y41{bottom:786.135000px;}
.y12{bottom:796.215000px;}
.y40{bottom:803.415000px;}
.y11{bottom:811.695000px;}
.y3f{bottom:820.695000px;}
.y10{bottom:827.535000px;}
.y3e{bottom:837.975000px;}
.yf{bottom:843.015000px;}
.y3d{bottom:855.285000px;}
.ye{bottom:858.525000px;}
.y3c{bottom:872.565000px;}
.yd{bottom:873.645000px;}
.yc{bottom:889.845000px;}
.y68{bottom:906.765000px;}
.yb{bottom:907.125000px;}
.ya{bottom:924.045000px;}
.y3b{bottom:924.405000px;}
.y9{bottom:941.325000px;}
.y3a{bottom:941.685000px;}
.y8{bottom:958.650000px;}
.y39{bottom:959.010000px;}
.y7{bottom:975.930000px;}
.y6{bottom:993.210000px;}
.y5{bottom:1010.490000px;}
.y4{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.h5{height:52.299844px;}
.h8{height:53.704687px;}
.h9{height:54.219375px;}
.h7{height:55.147500px;}
.h4{height:59.328281px;}
.h2{height:59.357813px;}
.h6{height:60.952500px;}
.ha{height:62.163910px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:51.155989px;}
.xb{left:76.715989px;}
.x6{left:89.315989px;}
.x2{left:93.635989px;}
.x8{left:102.671989px;}
.x4{left:114.551989px;}
.xa{left:119.231989px;}
.xc{left:130.031989px;}
.x7{left:179.744989px;}
.xd{left:235.184989px;}
.x1{left:337.859989px;}
.x5{left:349.019989px;}
.x9{left:363.419989px;}
@media print{
.v2{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-56.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls38{letter-spacing:-2.560000pt;}
.ls33{letter-spacing:-2.112000pt;}
.ls32{letter-spacing:-1.882667pt;}
.ls48{letter-spacing:-1.776000pt;}
.ls15{letter-spacing:-1.733333pt;}
.ls4a{letter-spacing:-1.701333pt;}
.ls12{letter-spacing:-1.696000pt;}
.ls42{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.264000pt;}
.ls4e{letter-spacing:-1.114667pt;}
.ls3e{letter-spacing:-0.832000pt;}
.ls4d{letter-spacing:-0.720000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.602667pt;}
.ls47{letter-spacing:-0.597333pt;}
.ls36{letter-spacing:-0.483733pt;}
.ls2f{letter-spacing:-0.453333pt;}
.ls10{letter-spacing:-0.450667pt;}
.ls49{letter-spacing:-0.437867pt;}
.ls4c{letter-spacing:-0.422400pt;}
.ls14{letter-spacing:-0.409600pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.017920pt;}
.ls37{letter-spacing:0.124587pt;}
.lse{letter-spacing:0.281600pt;}
.ls2a{letter-spacing:0.414720pt;}
.ls16{letter-spacing:0.414933pt;}
.ls9{letter-spacing:0.450560pt;}
.ls31{letter-spacing:0.450667pt;}
.ls34{letter-spacing:0.455467pt;}
.ls46{letter-spacing:0.558080pt;}
.ls4b{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls35{letter-spacing:0.826667pt;}
.ls3a{letter-spacing:1.457920pt;}
.ls6{letter-spacing:1.920000pt;}
.ls7{letter-spacing:3.200000pt;}
.lsb{letter-spacing:4.480000pt;}
.lsc{letter-spacing:4.586667pt;}
.lsa{letter-spacing:5.760000pt;}
.ls8{letter-spacing:7.040000pt;}
.ls20{letter-spacing:8.320000pt;}
.ls24{letter-spacing:8.480000pt;}
.ls23{letter-spacing:9.600000pt;}
.ls5{letter-spacing:10.880000pt;}
.ls1b{letter-spacing:12.160000pt;}
.ls17{letter-spacing:12.266667pt;}
.ls1d{letter-spacing:14.720000pt;}
.ls1c{letter-spacing:16.000000pt;}
.ls1e{letter-spacing:16.106667pt;}
.ls1f{letter-spacing:16.160000pt;}
.ls2e{letter-spacing:17.280000pt;}
.ls39{letter-spacing:22.400000pt;}
.ls3c{letter-spacing:26.240000pt;}
.ls3b{letter-spacing:26.400000pt;}
.ls29{letter-spacing:28.800000pt;}
.ls28{letter-spacing:30.080000pt;}
.ls27{letter-spacing:30.186667pt;}
.ls26{letter-spacing:31.466667pt;}
.ls25{letter-spacing:32.640000pt;}
.ls22{letter-spacing:32.746667pt;}
.ls21{letter-spacing:32.800000pt;}
.ls18{letter-spacing:33.920000pt;}
.ls19{letter-spacing:34.080000pt;}
.ls3d{letter-spacing:35.200000pt;}
.ls2d{letter-spacing:64.640000pt;}
.ls2c{letter-spacing:66.048000pt;}
.ls4{letter-spacing:73.610667pt;}
.ls3{letter-spacing:88.970667pt;}
.ls2b{letter-spacing:97.920000pt;}
.ls1{letter-spacing:97.930667pt;}
.lsd{letter-spacing:137.600000pt;}
.ls2{letter-spacing:144.010667pt;}
.ls41{letter-spacing:145.065387pt;}
.ls43{letter-spacing:145.172053pt;}
.ls44{letter-spacing:147.732053pt;}
.ls3f{letter-spacing:171.945387pt;}
.ls40{letter-spacing:173.225387pt;}
.ls45{letter-spacing:985.450667pt;}
.ws10{word-spacing:-14.266667pt;}
.wsf{word-spacing:-13.895467pt;}
.wsb{word-spacing:-13.890667pt;}
.ws7{word-spacing:-13.854933pt;}
.wsc{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.030400pt;}
.ws1{word-spacing:-12.989333pt;}
.ws9{word-spacing:-12.986667pt;}
.ws11{word-spacing:-12.956267pt;}
.wsa{word-spacing:-12.837333pt;}
.ws16{word-spacing:-12.720000pt;}
.ws4{word-spacing:-12.176000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws3{word-spacing:-11.744000pt;}
.ws17{word-spacing:-11.737600pt;}
.ws14{word-spacing:-11.722133pt;}
.ws6{word-spacing:-11.706667pt;}
.ws13{word-spacing:-11.562667pt;}
.wsd{word-spacing:-11.557333pt;}
.ws18{word-spacing:-11.440000pt;}
.wse{word-spacing:-11.328000pt;}
.ws19{word-spacing:-11.045333pt;}
.ws12{word-spacing:-10.880000pt;}
.ws15{word-spacing:-10.458667pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-6.968320pt;}
._4{margin-left:-5.015040pt;}
._c{margin-left:-3.870720pt;}
._2{margin-left:-2.362880pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.064960pt;}
._3{width:1.956693pt;}
._7{width:3.392853pt;}
._f{width:4.445867pt;}
._12{width:6.160213pt;}
._15{width:7.600640pt;}
._14{width:8.670720pt;}
._13{width:9.917440pt;}
._11{width:10.892800pt;}
._d{width:12.165120pt;}
._30{width:14.399147pt;}
._b{width:15.307947pt;}
._a{width:16.284160pt;}
._10{width:17.840640pt;}
._1a{width:19.189760pt;}
._25{width:20.644267pt;}
._20{width:22.451200pt;}
._e{width:23.669760pt;}
._1f{width:24.849067pt;}
._2c{width:26.178560pt;}
._1d{width:27.136000pt;}
._1e{width:28.113920pt;}
._2b{width:29.230080pt;}
._26{width:30.978560pt;}
._2f{width:31.918080pt;}
._22{width:32.824747pt;}
._21{width:34.057813pt;}
._2e{width:35.021227pt;}
._27{width:36.398080pt;}
._28{width:37.626880pt;}
._16{width:39.065600pt;}
._17{width:40.207360pt;}
._2d{width:42.654720pt;}
._18{width:44.820480pt;}
._19{width:46.378667pt;}
._5{width:47.895467pt;}
._1b{width:53.783040pt;}
._1c{width:54.883840pt;}
._9{width:57.108480pt;}
._8{width:58.370560pt;}
._2a{width:62.517760pt;}
._29{width:63.976960pt;}
._23{width:97.456640pt;}
._24{width:98.706773pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.760000pt;}
.y1{bottom:58.240000pt;}
.y38{bottom:97.280000pt;}
.y67{bottom:100.832000pt;}
.y83{bottom:103.712000pt;}
.y37{bottom:111.072000pt;}
.y66{bottom:116.192000pt;}
.y82{bottom:119.072000pt;}
.y65{bottom:131.552000pt;}
.y81{bottom:134.426667pt;}
.y36{bottom:140.506667pt;}
.y6b{bottom:146.586667pt;}
.y64{bottom:146.906667pt;}
.y80{bottom:149.786667pt;}
.y35{bottom:155.866667pt;}
.y63{bottom:161.946667pt;}
.y7f{bottom:165.146667pt;}
.y34{bottom:171.226667pt;}
.y62{bottom:177.306667pt;}
.y7e{bottom:180.506667pt;}
.y33{bottom:186.586667pt;}
.y61{bottom:192.666667pt;}
.y7d{bottom:195.906667pt;}
.y32{bottom:201.986667pt;}
.y60{bottom:208.066667pt;}
.y7c{bottom:211.266667pt;}
.y31{bottom:217.346667pt;}
.y5f{bottom:223.426667pt;}
.y7b{bottom:226.626667pt;}
.y30{bottom:232.706667pt;}
.y5e{bottom:238.786667pt;}
.y7a{bottom:241.986667pt;}
.y2f{bottom:248.066667pt;}
.y5d{bottom:254.146667pt;}
.y79{bottom:257.346667pt;}
.y2e{bottom:263.106667pt;}
.y5c{bottom:269.506667pt;}
.y78{bottom:272.386667pt;}
.y2d{bottom:278.786667pt;}
.y5b{bottom:284.866667pt;}
.y77{bottom:287.773333pt;}
.y2c{bottom:294.173333pt;}
.y5a{bottom:299.933333pt;}
.y6a{bottom:300.253333pt;}
.y76{bottom:303.133333pt;}
.y2b{bottom:309.213333pt;}
.y59{bottom:315.613333pt;}
.y75{bottom:318.493333pt;}
.y2a{bottom:324.573333pt;}
.y58{bottom:330.653333pt;}
.y74{bottom:333.853333pt;}
.y29{bottom:339.933333pt;}
.y57{bottom:346.013333pt;}
.y73{bottom:349.213333pt;}
.y28{bottom:355.293333pt;}
.y56{bottom:361.373333pt;}
.y72{bottom:364.253333pt;}
.y27{bottom:370.653333pt;}
.y55{bottom:376.733333pt;}
.y26{bottom:386.053333pt;}
.y54{bottom:392.133333pt;}
.y25{bottom:401.413333pt;}
.y53{bottom:407.493333pt;}
.y24{bottom:416.773333pt;}
.y71{bottom:422.533333pt;}
.y52{bottom:422.853333pt;}
.y23{bottom:432.133333pt;}
.y51{bottom:438.213333pt;}
.y22{bottom:447.493333pt;}
.y50{bottom:453.573333pt;}
.y21{bottom:462.853333pt;}
.y70{bottom:468.613333pt;}
.y4f{bottom:468.933333pt;}
.y20{bottom:477.920000pt;}
.y69{bottom:484.320000pt;}
.y1f{bottom:493.280000pt;}
.y4e{bottom:499.680000pt;}
.y1e{bottom:508.640000pt;}
.y6f{bottom:514.400000pt;}
.y4d{bottom:514.720000pt;}
.y1d{bottom:524.000000pt;}
.y6e{bottom:529.760000pt;}
.y4c{bottom:530.080000pt;}
.y1c{bottom:539.360000pt;}
.y4b{bottom:545.440000pt;}
.y1b{bottom:554.720000pt;}
.y4a{bottom:560.800000pt;}
.y1a{bottom:570.106667pt;}
.y6d{bottom:575.866667pt;}
.y49{bottom:576.186667pt;}
.y19{bottom:585.466667pt;}
.y6c{bottom:591.226667pt;}
.y48{bottom:591.546667pt;}
.y18{bottom:600.826667pt;}
.y47{bottom:606.906667pt;}
.y17{bottom:616.186667pt;}
.y46{bottom:622.266667pt;}
.y16{bottom:631.546667pt;}
.y45{bottom:637.626667pt;}
.y15{bottom:646.586667pt;}
.y44{bottom:652.986667pt;}
.y14{bottom:661.666667pt;}
.y43{bottom:668.386667pt;}
.y13{bottom:677.346667pt;}
.y42{bottom:683.426667pt;}
.y41{bottom:698.786667pt;}
.y12{bottom:707.746667pt;}
.y40{bottom:714.146667pt;}
.y11{bottom:721.506667pt;}
.y3f{bottom:729.506667pt;}
.y10{bottom:735.586667pt;}
.y3e{bottom:744.866667pt;}
.yf{bottom:749.346667pt;}
.y3d{bottom:760.253333pt;}
.ye{bottom:763.133333pt;}
.y3c{bottom:775.613333pt;}
.yd{bottom:776.573333pt;}
.yc{bottom:790.973333pt;}
.y68{bottom:806.013333pt;}
.yb{bottom:806.333333pt;}
.ya{bottom:821.373333pt;}
.y3b{bottom:821.693333pt;}
.y9{bottom:836.733333pt;}
.y3a{bottom:837.053333pt;}
.y8{bottom:852.133333pt;}
.y39{bottom:852.453333pt;}
.y7{bottom:867.493333pt;}
.y6{bottom:882.853333pt;}
.y5{bottom:898.213333pt;}
.y4{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.h5{height:46.488750pt;}
.h8{height:47.737500pt;}
.h9{height:48.195000pt;}
.h7{height:49.020000pt;}
.h4{height:52.736250pt;}
.h2{height:52.762500pt;}
.h6{height:54.180000pt;}
.ha{height:55.256809pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:45.471990pt;}
.xb{left:68.191990pt;}
.x6{left:79.391990pt;}
.x2{left:83.231990pt;}
.x8{left:91.263990pt;}
.x4{left:101.823990pt;}
.xa{left:105.983990pt;}
.xc{left:115.583990pt;}
.x7{left:159.773324pt;}
.xd{left:209.053324pt;}
.x1{left:300.319990pt;}
.x5{left:310.239990pt;}
.x9{left:323.039990pt;}
}




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