
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_a8d9c8bf0e5a14e3748a1e4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_8a269f4631781aaeb8cdcb1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_c5efd89d333dffc779771fd6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_4a653e4c722cb975910d31a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_287b06395645ac03a487bf57.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933105;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_e960c5edabc6bcb3a8982564.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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);}
.v3{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:38.880000px;}
.ls30{letter-spacing:-2.100000px;}
.ls2a{letter-spacing:-1.404000px;}
.lsd{letter-spacing:-0.960000px;}
.ls18{letter-spacing:-0.786000px;}
.ls2e{letter-spacing:-0.780000px;}
.lsf{letter-spacing:-0.533400px;}
.ls4{letter-spacing:-0.463800px;}
.ls19{letter-spacing:-0.436200px;}
.ls3d{letter-spacing:-0.303000px;}
.ls6{letter-spacing:-0.272400px;}
.ls3b{letter-spacing:-0.268800px;}
.ls12{letter-spacing:-0.240600px;}
.lsc{letter-spacing:-0.228000px;}
.ls39{letter-spacing:-0.115200px;}
.ls28{letter-spacing:-0.069600px;}
.ls8{letter-spacing:-0.064800px;}
.ls14{letter-spacing:-0.058320px;}
.ls3e{letter-spacing:-0.049680px;}
.ls27{letter-spacing:-0.041040px;}
.ls29{letter-spacing:-0.032400px;}
.ls3{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.025200px;}
.ls2d{letter-spacing:0.038880px;}
.ls1a{letter-spacing:0.060600px;}
.ls2b{letter-spacing:0.064200px;}
.ls3a{letter-spacing:0.093600px;}
.ls2c{letter-spacing:0.100800px;}
.lsa{letter-spacing:0.140400px;}
.ls24{letter-spacing:0.174240px;}
.ls11{letter-spacing:0.175200px;}
.ls7{letter-spacing:0.186600px;}
.ls22{letter-spacing:0.243600px;}
.ls17{letter-spacing:0.249000px;}
.ls5{letter-spacing:0.256200px;}
.ls2f{letter-spacing:0.274800px;}
.lse{letter-spacing:0.303000px;}
.lsb{letter-spacing:0.306000px;}
.ls3c{letter-spacing:0.376800px;}
.ls9{letter-spacing:0.393600px;}
.ls16{letter-spacing:0.479400px;}
.ls37{letter-spacing:0.479520px;}
.ls15{letter-spacing:0.642000px;}
.ls21{letter-spacing:0.894240px;}
.ls1b{letter-spacing:0.906000px;}
.ls10{letter-spacing:1.116000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls35{letter-spacing:1.614240px;}
.ls1{letter-spacing:2.016000px;}
.ls33{letter-spacing:3.054240px;}
.ls34{letter-spacing:3.774240px;}
.ls36{letter-spacing:4.494240px;}
.ls31{letter-spacing:5.934240px;}
.ls32{letter-spacing:7.374240px;}
.ls13{letter-spacing:10.254240px;}
.ls1e{letter-spacing:10.974240px;}
.ls1d{letter-spacing:11.694240px;}
.ls23{letter-spacing:12.186720px;}
.ls1f{letter-spacing:13.854240px;}
.ls26{letter-spacing:14.574240px;}
.ls25{letter-spacing:20.334240px;}
.ls20{letter-spacing:24.654240px;}
.ls1c{letter-spacing:42.570720px;}
.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;}
}
.ws25{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws16{word-spacing:-14.411760px;}
.ws13{word-spacing:-14.147760px;}
.ws9{word-spacing:-13.899360px;}
.ws27{word-spacing:-13.882560px;}
.wse{word-spacing:-13.811760px;}
.ws10{word-spacing:-13.808760px;}
.ws20{word-spacing:-13.780560px;}
.ws14{word-spacing:-13.754760px;}
.ws1c{word-spacing:-13.749360px;}
.ws7{word-spacing:-13.692360px;}
.ws11{word-spacing:-13.680960px;}
.wsa{word-spacing:-13.646160px;}
.ws1d{word-spacing:-13.606560px;}
.ws24{word-spacing:-13.599360px;}
.ws1b{word-spacing:-13.569960px;}
.ws15{word-spacing:-13.566360px;}
.ws1e{word-spacing:-13.544640px;}
.ws22{word-spacing:-13.530960px;}
.wsb{word-spacing:-13.505760px;}
.ws19{word-spacing:-13.473360px;}
.ws17{word-spacing:-13.464720px;}
.ws29{word-spacing:-13.456080px;}
.ws12{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.440960px;}
.ws18{word-spacing:-13.436160px;}
.ws23{word-spacing:-13.390560px;}
.wsd{word-spacing:-13.277760px;}
.ws26{word-spacing:-13.236960px;}
.ws28{word-spacing:-13.202760px;}
.wsf{word-spacing:-12.972360px;}
.ws1f{word-spacing:-12.725760px;}
.ws1a{word-spacing:-12.101760px;}
.ws21{word-spacing:-11.405760px;}
.ws4{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.514480px;}
.wsc{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1003.789440px;}
._5{margin-left:-582.617760px;}
._7{margin-left:-4.329600px;}
._6{margin-left:-3.312000px;}
._18{margin-left:-2.270880px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._a{width:2.412000px;}
._9{width:3.747600px;}
._8{width:5.417760px;}
._b{width:6.703680px;}
._e{width:8.150880px;}
._c{width:9.262800px;}
._d{width:10.338480px;}
._17{width:12.131280px;}
._12{width:14.662320px;}
._10{width:15.920640px;}
._f{width:17.206080px;}
._11{width:18.824400px;}
._15{width:20.457840px;}
._13{width:21.675840px;}
._16{width:23.366160px;}
._1a{width:24.907680px;}
._19{width:26.734320px;}
._20{width:27.797040px;}
._14{width:29.149920px;}
._1b{width:34.901280px;}
._1f{width:36.167280px;}
._1d{width:37.437600px;}
._1e{width:39.864240px;}
._1c{width:41.659200px;}
._25{width:77.332320px;}
._24{width:78.729120px;}
._23{width:79.945200px;}
._26{width:82.325520px;}
._22{width:84.071280px;}
._21{width:119.835840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:7.020000px;}
.y89{bottom:28.080000px;}
.y86{bottom:35.460000px;}
.y88{bottom:49.500000px;}
.y6{bottom:58.320000px;}
.y87{bottom:70.560000px;}
.y84{bottom:90.360000px;}
.y30{bottom:108.180000px;}
.y64{bottom:111.420000px;}
.y85{bottom:128.520000px;}
.y2f{bottom:129.240000px;}
.y63{bottom:132.480000px;}
.y83{bottom:133.740000px;}
.y70{bottom:135.540000px;}
.y6d{bottom:144.540000px;}
.y2e{bottom:150.300000px;}
.y62{bottom:153.540000px;}
.y82{bottom:154.800000px;}
.y6f{bottom:156.600000px;}
.y6c{bottom:165.600000px;}
.y2d{bottom:171.360000px;}
.y61{bottom:174.600000px;}
.y81{bottom:175.860000px;}
.y6e{bottom:177.660000px;}
.y6b{bottom:186.660000px;}
.y2c{bottom:192.420000px;}
.y60{bottom:195.660000px;}
.y80{bottom:196.920000px;}
.y6a{bottom:207.720000px;}
.y2b{bottom:213.510000px;}
.y5f{bottom:216.750000px;}
.y7f{bottom:218.010000px;}
.y69{bottom:228.810000px;}
.y2a{bottom:234.570000px;}
.y5e{bottom:237.810000px;}
.y7e{bottom:239.070000px;}
.y68{bottom:249.870000px;}
.y29{bottom:255.630000px;}
.y5d{bottom:258.870000px;}
.y7d{bottom:260.130000px;}
.y67{bottom:270.930000px;}
.y28{bottom:276.690000px;}
.y5c{bottom:279.930000px;}
.y66{bottom:291.990000px;}
.y27{bottom:297.750000px;}
.y5b{bottom:300.990000px;}
.y65{bottom:313.050000px;}
.y26{bottom:318.810000px;}
.y5a{bottom:322.050000px;}
.y25{bottom:339.690000px;}
.y59{bottom:343.110000px;}
.y24{bottom:360.750000px;}
.y58{bottom:364.170000px;}
.y23{bottom:384.330000px;}
.y57{bottom:385.230000px;}
.y56{bottom:406.290000px;}
.y22{bottom:414.210000px;}
.y55{bottom:427.350000px;}
.y21{bottom:435.270000px;}
.y7c{bottom:446.475000px;}
.y54{bottom:448.455000px;}
.y20{bottom:456.375000px;}
.y7b{bottom:467.535000px;}
.y53{bottom:469.515000px;}
.y1f{bottom:477.435000px;}
.y7a{bottom:488.595000px;}
.y52{bottom:490.575000px;}
.y1e{bottom:498.495000px;}
.y79{bottom:509.655000px;}
.y51{bottom:511.455000px;}
.y1d{bottom:519.555000px;}
.y78{bottom:530.715000px;}
.y50{bottom:532.515000px;}
.y1c{bottom:540.615000px;}
.y77{bottom:551.775000px;}
.y4f{bottom:553.575000px;}
.y1b{bottom:561.675000px;}
.y4e{bottom:574.635000px;}
.y1a{bottom:582.735000px;}
.y4d{bottom:595.695000px;}
.y19{bottom:603.795000px;}
.y4c{bottom:616.755000px;}
.y18{bottom:624.855000px;}
.y4b{bottom:637.815000px;}
.y17{bottom:645.915000px;}
.y4a{bottom:658.875000px;}
.y16{bottom:666.975000px;}
.y49{bottom:679.935000px;}
.y15{bottom:688.065000px;}
.y48{bottom:701.025000px;}
.y76{bottom:705.705000px;}
.y14{bottom:709.125000px;}
.y47{bottom:722.085000px;}
.y75{bottom:726.765000px;}
.y13{bottom:730.185000px;}
.y46{bottom:743.145000px;}
.y74{bottom:747.825000px;}
.y12{bottom:751.245000px;}
.y45{bottom:764.205000px;}
.y73{bottom:768.885000px;}
.y11{bottom:772.305000px;}
.y44{bottom:785.265000px;}
.y72{bottom:789.945000px;}
.y10{bottom:793.365000px;}
.y43{bottom:806.325000px;}
.y71{bottom:811.005000px;}
.yf{bottom:814.425000px;}
.y42{bottom:827.385000px;}
.ye{bottom:835.485000px;}
.y41{bottom:848.445000px;}
.yd{bottom:858.705000px;}
.y40{bottom:869.505000px;}
.yc{bottom:888.765000px;}
.y3f{bottom:890.565000px;}
.yb{bottom:905.505000px;}
.y3e{bottom:911.625000px;}
.ya{bottom:927.870000px;}
.y3d{bottom:932.730000px;}
.y9{bottom:953.070000px;}
.y3c{bottom:953.790000px;}
.y3b{bottom:974.850000px;}
.y8{bottom:986.730000px;}
.y3a{bottom:995.910000px;}
.y39{bottom:1016.970000px;}
.y7{bottom:1020.390000px;}
.y38{bottom:1038.030000px;}
.y37{bottom:1059.090000px;}
.y5{bottom:1060.530000px;}
.y36{bottom:1080.150000px;}
.y4{bottom:1092.750000px;}
.y35{bottom:1101.210000px;}
.y34{bottom:1122.270000px;}
.y3{bottom:1124.790000px;}
.y33{bottom:1143.330000px;}
.y2{bottom:1157.040000px;}
.y32{bottom:1172.340000px;}
.y1{bottom:1191.600000px;}
.y31{bottom:1193.400000px;}
.hd{height:2.864531px;}
.h7{height:38.671172px;}
.hb{height:45.170156px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h9{height:67.824844px;}
.ha{height:73.722656px;}
.h6{height:81.639141px;}
.hc{height:84.996000px;}
.h4{height:98.051133px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:210.855000px;}
.w4{width:580.965000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x1{left:53.999987px;}
.x6{left:65.339987px;}
.x3{left:86.255987px;}
.x7{left:92.375987px;}
.x2{left:96.875987px;}
.x4{left:106.595987px;}
.x5{left:117.935987px;}
.x8{left:191.370000px;}
.x9{left:264.855000px;}
@media print{
.v3{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:34.560000pt;}
.ls30{letter-spacing:-1.866667pt;}
.ls2a{letter-spacing:-1.248000pt;}
.lsd{letter-spacing:-0.853333pt;}
.ls18{letter-spacing:-0.698667pt;}
.ls2e{letter-spacing:-0.693333pt;}
.lsf{letter-spacing:-0.474133pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls19{letter-spacing:-0.387733pt;}
.ls3d{letter-spacing:-0.269333pt;}
.ls6{letter-spacing:-0.242133pt;}
.ls3b{letter-spacing:-0.238933pt;}
.ls12{letter-spacing:-0.213867pt;}
.lsc{letter-spacing:-0.202667pt;}
.ls39{letter-spacing:-0.102400pt;}
.ls28{letter-spacing:-0.061867pt;}
.ls8{letter-spacing:-0.057600pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls3e{letter-spacing:-0.044160pt;}
.ls27{letter-spacing:-0.036480pt;}
.ls29{letter-spacing:-0.028800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.022400pt;}
.ls2d{letter-spacing:0.034560pt;}
.ls1a{letter-spacing:0.053867pt;}
.ls2b{letter-spacing:0.057067pt;}
.ls3a{letter-spacing:0.083200pt;}
.ls2c{letter-spacing:0.089600pt;}
.lsa{letter-spacing:0.124800pt;}
.ls24{letter-spacing:0.154880pt;}
.ls11{letter-spacing:0.155733pt;}
.ls7{letter-spacing:0.165867pt;}
.ls22{letter-spacing:0.216533pt;}
.ls17{letter-spacing:0.221333pt;}
.ls5{letter-spacing:0.227733pt;}
.ls2f{letter-spacing:0.244267pt;}
.lse{letter-spacing:0.269333pt;}
.lsb{letter-spacing:0.272000pt;}
.ls3c{letter-spacing:0.334933pt;}
.ls9{letter-spacing:0.349867pt;}
.ls16{letter-spacing:0.426133pt;}
.ls37{letter-spacing:0.426240pt;}
.ls15{letter-spacing:0.570667pt;}
.ls21{letter-spacing:0.794880pt;}
.ls1b{letter-spacing:0.805333pt;}
.ls10{letter-spacing:0.992000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls35{letter-spacing:1.434880pt;}
.ls1{letter-spacing:1.792000pt;}
.ls33{letter-spacing:2.714880pt;}
.ls34{letter-spacing:3.354880pt;}
.ls36{letter-spacing:3.994880pt;}
.ls31{letter-spacing:5.274880pt;}
.ls32{letter-spacing:6.554880pt;}
.ls13{letter-spacing:9.114880pt;}
.ls1e{letter-spacing:9.754880pt;}
.ls1d{letter-spacing:10.394880pt;}
.ls23{letter-spacing:10.832640pt;}
.ls1f{letter-spacing:12.314880pt;}
.ls26{letter-spacing:12.954880pt;}
.ls25{letter-spacing:18.074880pt;}
.ls20{letter-spacing:21.914880pt;}
.ls1c{letter-spacing:37.840640pt;}
.ws25{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.810453pt;}
.ws13{word-spacing:-12.575787pt;}
.ws9{word-spacing:-12.354987pt;}
.ws27{word-spacing:-12.340053pt;}
.wse{word-spacing:-12.277120pt;}
.ws10{word-spacing:-12.274453pt;}
.ws20{word-spacing:-12.249387pt;}
.ws14{word-spacing:-12.226453pt;}
.ws1c{word-spacing:-12.221653pt;}
.ws7{word-spacing:-12.170987pt;}
.ws11{word-spacing:-12.160853pt;}
.wsa{word-spacing:-12.129920pt;}
.ws1d{word-spacing:-12.094720pt;}
.ws24{word-spacing:-12.088320pt;}
.ws1b{word-spacing:-12.062187pt;}
.ws15{word-spacing:-12.058987pt;}
.ws1e{word-spacing:-12.039680pt;}
.ws22{word-spacing:-12.027520pt;}
.wsb{word-spacing:-12.005120pt;}
.ws19{word-spacing:-11.976320pt;}
.ws17{word-spacing:-11.968640pt;}
.ws29{word-spacing:-11.960960pt;}
.ws12{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.947520pt;}
.ws18{word-spacing:-11.943253pt;}
.ws23{word-spacing:-11.902720pt;}
.wsd{word-spacing:-11.802453pt;}
.ws26{word-spacing:-11.766187pt;}
.ws28{word-spacing:-11.735787pt;}
.wsf{word-spacing:-11.530987pt;}
.ws1f{word-spacing:-11.311787pt;}
.ws1a{word-spacing:-10.757120pt;}
.ws21{word-spacing:-10.138453pt;}
.ws4{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.568427pt;}
.wsc{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-892.257280pt;}
._5{margin-left:-517.882453pt;}
._7{margin-left:-3.848533pt;}
._6{margin-left:-2.944000pt;}
._18{margin-left:-2.018560pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._a{width:2.144000pt;}
._9{width:3.331200pt;}
._8{width:4.815787pt;}
._b{width:5.958827pt;}
._e{width:7.245227pt;}
._c{width:8.233600pt;}
._d{width:9.189760pt;}
._17{width:10.783360pt;}
._12{width:13.033173pt;}
._10{width:14.151680pt;}
._f{width:15.294293pt;}
._11{width:16.732800pt;}
._15{width:18.184747pt;}
._13{width:19.267413pt;}
._16{width:20.769920pt;}
._1a{width:22.140160pt;}
._19{width:23.763840pt;}
._20{width:24.708480pt;}
._14{width:25.911040pt;}
._1b{width:31.023360pt;}
._1f{width:32.148693pt;}
._1d{width:33.277867pt;}
._1e{width:35.434880pt;}
._1c{width:37.030400pt;}
._25{width:68.739840pt;}
._24{width:69.981440pt;}
._23{width:71.062400pt;}
._26{width:73.178240pt;}
._22{width:74.730027pt;}
._21{width:106.520747pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:6.240000pt;}
.y89{bottom:24.960000pt;}
.y86{bottom:31.520000pt;}
.y88{bottom:44.000000pt;}
.y6{bottom:51.840000pt;}
.y87{bottom:62.720000pt;}
.y84{bottom:80.320000pt;}
.y30{bottom:96.160000pt;}
.y64{bottom:99.040000pt;}
.y85{bottom:114.240000pt;}
.y2f{bottom:114.880000pt;}
.y63{bottom:117.760000pt;}
.y83{bottom:118.880000pt;}
.y70{bottom:120.480000pt;}
.y6d{bottom:128.480000pt;}
.y2e{bottom:133.600000pt;}
.y62{bottom:136.480000pt;}
.y82{bottom:137.600000pt;}
.y6f{bottom:139.200000pt;}
.y6c{bottom:147.200000pt;}
.y2d{bottom:152.320000pt;}
.y61{bottom:155.200000pt;}
.y81{bottom:156.320000pt;}
.y6e{bottom:157.920000pt;}
.y6b{bottom:165.920000pt;}
.y2c{bottom:171.040000pt;}
.y60{bottom:173.920000pt;}
.y80{bottom:175.040000pt;}
.y6a{bottom:184.640000pt;}
.y2b{bottom:189.786667pt;}
.y5f{bottom:192.666667pt;}
.y7f{bottom:193.786667pt;}
.y69{bottom:203.386667pt;}
.y2a{bottom:208.506667pt;}
.y5e{bottom:211.386667pt;}
.y7e{bottom:212.506667pt;}
.y68{bottom:222.106667pt;}
.y29{bottom:227.226667pt;}
.y5d{bottom:230.106667pt;}
.y7d{bottom:231.226667pt;}
.y67{bottom:240.826667pt;}
.y28{bottom:245.946667pt;}
.y5c{bottom:248.826667pt;}
.y66{bottom:259.546667pt;}
.y27{bottom:264.666667pt;}
.y5b{bottom:267.546667pt;}
.y65{bottom:278.266667pt;}
.y26{bottom:283.386667pt;}
.y5a{bottom:286.266667pt;}
.y25{bottom:301.946667pt;}
.y59{bottom:304.986667pt;}
.y24{bottom:320.666667pt;}
.y58{bottom:323.706667pt;}
.y23{bottom:341.626667pt;}
.y57{bottom:342.426667pt;}
.y56{bottom:361.146667pt;}
.y22{bottom:368.186667pt;}
.y55{bottom:379.866667pt;}
.y21{bottom:386.906667pt;}
.y7c{bottom:396.866667pt;}
.y54{bottom:398.626667pt;}
.y20{bottom:405.666667pt;}
.y7b{bottom:415.586667pt;}
.y53{bottom:417.346667pt;}
.y1f{bottom:424.386667pt;}
.y7a{bottom:434.306667pt;}
.y52{bottom:436.066667pt;}
.y1e{bottom:443.106667pt;}
.y79{bottom:453.026667pt;}
.y51{bottom:454.626667pt;}
.y1d{bottom:461.826667pt;}
.y78{bottom:471.746667pt;}
.y50{bottom:473.346667pt;}
.y1c{bottom:480.546667pt;}
.y77{bottom:490.466667pt;}
.y4f{bottom:492.066667pt;}
.y1b{bottom:499.266667pt;}
.y4e{bottom:510.786667pt;}
.y1a{bottom:517.986667pt;}
.y4d{bottom:529.506667pt;}
.y19{bottom:536.706667pt;}
.y4c{bottom:548.226667pt;}
.y18{bottom:555.426667pt;}
.y4b{bottom:566.946667pt;}
.y17{bottom:574.146667pt;}
.y4a{bottom:585.666667pt;}
.y16{bottom:592.866667pt;}
.y49{bottom:604.386667pt;}
.y15{bottom:611.613333pt;}
.y48{bottom:623.133333pt;}
.y76{bottom:627.293333pt;}
.y14{bottom:630.333333pt;}
.y47{bottom:641.853333pt;}
.y75{bottom:646.013333pt;}
.y13{bottom:649.053333pt;}
.y46{bottom:660.573333pt;}
.y74{bottom:664.733333pt;}
.y12{bottom:667.773333pt;}
.y45{bottom:679.293333pt;}
.y73{bottom:683.453333pt;}
.y11{bottom:686.493333pt;}
.y44{bottom:698.013333pt;}
.y72{bottom:702.173333pt;}
.y10{bottom:705.213333pt;}
.y43{bottom:716.733333pt;}
.y71{bottom:720.893333pt;}
.yf{bottom:723.933333pt;}
.y42{bottom:735.453333pt;}
.ye{bottom:742.653333pt;}
.y41{bottom:754.173333pt;}
.yd{bottom:763.293333pt;}
.y40{bottom:772.893333pt;}
.yc{bottom:790.013333pt;}
.y3f{bottom:791.613333pt;}
.yb{bottom:804.893333pt;}
.y3e{bottom:810.333333pt;}
.ya{bottom:824.773333pt;}
.y3d{bottom:829.093333pt;}
.y9{bottom:847.173333pt;}
.y3c{bottom:847.813333pt;}
.y3b{bottom:866.533333pt;}
.y8{bottom:877.093333pt;}
.y3a{bottom:885.253333pt;}
.y39{bottom:903.973333pt;}
.y7{bottom:907.013333pt;}
.y38{bottom:922.693333pt;}
.y37{bottom:941.413333pt;}
.y5{bottom:942.693333pt;}
.y36{bottom:960.133333pt;}
.y4{bottom:971.333333pt;}
.y35{bottom:978.853333pt;}
.y34{bottom:997.573333pt;}
.y3{bottom:999.813333pt;}
.y33{bottom:1016.293333pt;}
.y2{bottom:1028.480000pt;}
.y32{bottom:1042.080000pt;}
.y1{bottom:1059.200000pt;}
.y31{bottom:1060.800000pt;}
.hd{height:2.546250pt;}
.h7{height:34.374375pt;}
.hb{height:40.151250pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h9{height:60.288750pt;}
.ha{height:65.531250pt;}
.h6{height:72.568125pt;}
.hc{height:75.552000pt;}
.h4{height:87.156562pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:187.426667pt;}
.w4{width:516.413333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x1{left:47.999988pt;}
.x6{left:58.079988pt;}
.x3{left:76.671988pt;}
.x7{left:82.111988pt;}
.x2{left:86.111988pt;}
.x4{left:94.751988pt;}
.x5{left:104.831988pt;}
.x8{left:170.106667pt;}
.x9{left:235.426667pt;}
}




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