
    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_5212ffd551b1d57bb1d9264f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_920d2fe90ed938778e5b4403.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_a73e54619b15eec1b99c3724.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.077637;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_d75890e65a2452751bcc18e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_76e620407a25d57223590b02.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cc25b56da86a1eaaa0511a3a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5686d8f64641d77f33506be8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a945ae1bdb823e9fece10ccb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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(0.254944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);}
.m2{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:-90.720000px;}
.v1{vertical-align:-87.120000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.078000px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.ls2{letter-spacing:746.796000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(196,89,17),0 0.015em rgb(196,89,17),0.015em 0 rgb(196,89,17),0 -0.015em  rgb(196,89,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(196,89,17);text-shadow:none;}
}
.ws9{word-spacing:-40.608000px;}
.ws5{word-spacing:-21.060000px;}
.ws0{word-spacing:-19.728000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws4{word-spacing:-16.272000px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws1{word-spacing:-0.049265px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-12.240000px;}
._1d{margin-left:-2.933001px;}
._0{margin-left:-1.728000px;}
._2{width:1.781001px;}
._17{width:3.061998px;}
._21{width:4.824000px;}
._16{width:5.832000px;}
._d{width:6.912000px;}
._22{width:8.240998px;}
._1c{width:9.264000px;}
._18{width:10.368000px;}
._19{width:11.736000px;}
._b{width:13.320000px;}
._a{width:14.328000px;}
._6{width:15.552000px;}
._7{width:16.698999px;}
._e{width:19.080000px;}
._f{width:20.808000px;}
._13{width:21.960000px;}
._12{width:23.024998px;}
._1b{width:24.192000px;}
._23{width:25.560000px;}
._2b{width:26.658999px;}
._10{width:28.512000px;}
._c{width:30.168000px;}
._1e{width:32.808000px;}
._11{width:34.056000px;}
._1f{width:35.304000px;}
._1a{width:36.504000px;}
._24{width:37.530999px;}
._25{width:38.736000px;}
._27{width:39.762999px;}
._9{width:40.824000px;}
._8{width:42.048000px;}
._20{width:43.176000px;}
._29{width:45.504000px;}
._28{width:46.584000px;}
._14{width:57.888000px;}
._15{width:59.142999px;}
._5{width:60.480000px;}
._4{width:61.896000px;}
._2c{width:68.220000px;}
._2a{width:119.178999px;}
._2d{width:131.256000px;}
._2e{width:132.318999px;}
._26{width:182.736000px;}
._1{width:431.998320px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc0{color:rgb(196,89,17);}
.fs2{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:49.264682px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.330266px;}
.yf{bottom:3.421500px;}
.y45{bottom:3.600000px;}
.y54{bottom:3.780000px;}
.y90{bottom:4.140000px;}
.y99{bottom:4.485000px;}
.y93{bottom:4.500000px;}
.y55{bottom:4.680000px;}
.y40{bottom:4.860000px;}
.y49{bottom:7.920000px;}
.yb{bottom:9.180000px;}
.y11{bottom:16.020000px;}
.yd{bottom:19.980000px;}
.y44{bottom:20.880000px;}
.y53{bottom:20.910000px;}
.y8f{bottom:24.840000px;}
.y98{bottom:25.185000px;}
.y92{bottom:25.200000px;}
.ye{bottom:26.818500px;}
.yc{bottom:27.000000px;}
.y10{bottom:27.360000px;}
.y48{bottom:29.520000px;}
.y7{bottom:35.100000px;}
.y52{bottom:38.910000px;}
.y43{bottom:39.240000px;}
.y8e{bottom:45.540000px;}
.y47{bottom:51.120000px;}
.y51{bottom:59.610000px;}
.y8d{bottom:66.240000px;}
.y50{bottom:80.310000px;}
.y89{bottom:82.440000px;}
.y3e{bottom:84.420000px;}
.ya8{bottom:85.860000px;}
.y4f{bottom:101.010000px;}
.y88{bottom:103.500000px;}
.y3d{bottom:105.120000px;}
.ya7{bottom:106.560000px;}
.y4e{bottom:121.710000px;}
.y87{bottom:124.200000px;}
.y3c{bottom:125.820000px;}
.ya6{bottom:127.260000px;}
.y4d{bottom:142.050000px;}
.y86{bottom:144.900000px;}
.y3b{bottom:146.520000px;}
.ya5{bottom:147.960000px;}
.y4c{bottom:162.750000px;}
.y85{bottom:165.600000px;}
.y3a{bottom:167.220000px;}
.ya4{bottom:168.660000px;}
.y4a{bottom:185.040000px;}
.y84{bottom:186.300000px;}
.y4b{bottom:187.230000px;}
.y39{bottom:187.920000px;}
.ya3{bottom:189.360000px;}
.y83{bottom:206.670000px;}
.yb0{bottom:207.030000px;}
.y38{bottom:208.650000px;}
.ya2{bottom:210.090000px;}
.y82{bottom:227.730000px;}
.y37{bottom:229.350000px;}
.ya1{bottom:230.430000px;}
.y81{bottom:248.430000px;}
.y36{bottom:250.050000px;}
.ya0{bottom:251.490000px;}
.y80{bottom:269.130000px;}
.y35{bottom:270.750000px;}
.y9f{bottom:272.190000px;}
.y7f{bottom:289.830000px;}
.y34{bottom:291.450000px;}
.y9e{bottom:292.890000px;}
.y7e{bottom:310.530000px;}
.y33{bottom:312.150000px;}
.y9d{bottom:313.590000px;}
.y7d{bottom:331.230000px;}
.y32{bottom:332.850000px;}
.y9c{bottom:334.290000px;}
.y7c{bottom:351.930000px;}
.y31{bottom:353.550000px;}
.y9b{bottom:354.990000px;}
.y7b{bottom:372.630000px;}
.y30{bottom:374.250000px;}
.y9a{bottom:375.690000px;}
.y46{bottom:386.850000px;}
.y7a{bottom:393.330000px;}
.y2f{bottom:394.950000px;}
.y97{bottom:400.905000px;}
.y79{bottom:414.030000px;}
.y2e{bottom:415.650000px;}
.yaf{bottom:434.370000px;}
.y78{bottom:434.730000px;}
.y2d{bottom:436.350000px;}
.y42{bottom:452.775000px;}
.y77{bottom:455.475000px;}
.y2c{bottom:457.095000px;}
.y96{bottom:458.895000px;}
.y76{bottom:476.175000px;}
.y2b{bottom:477.795000px;}
.y75{bottom:496.875000px;}
.y2a{bottom:498.495000px;}
.y41{bottom:512.715000px;}
.y95{bottom:516.675000px;}
.y74{bottom:517.575000px;}
.y3f{bottom:536.115000px;}
.y73{bottom:538.275000px;}
.y72{bottom:558.975000px;}
.y29{bottom:563.655000px;}
.y94{bottom:574.635000px;}
.y71{bottom:579.675000px;}
.y28{bottom:584.355000px;}
.yae{bottom:600.015000px;}
.y70{bottom:600.375000px;}
.y27{bottom:605.055000px;}
.y6f{bottom:621.075000px;}
.y26{bottom:625.395000px;}
.y91{bottom:632.595000px;}
.y6e{bottom:641.775000px;}
.y25{bottom:646.455000px;}
.y6d{bottom:662.475000px;}
.y24{bottom:667.155000px;}
.y6c{bottom:683.205000px;}
.y23{bottom:687.885000px;}
.y8c{bottom:690.405000px;}
.y6b{bottom:703.905000px;}
.y22{bottom:708.225000px;}
.yad{bottom:724.245000px;}
.y6a{bottom:724.605000px;}
.y21{bottom:729.285000px;}
.y69{bottom:745.305000px;}
.y20{bottom:749.985000px;}
.y68{bottom:765.645000px;}
.yac{bottom:766.005000px;}
.y1f{bottom:770.685000px;}
.y67{bottom:786.345000px;}
.y8b{bottom:786.705000px;}
.y1e{bottom:791.025000px;}
.y66{bottom:807.405000px;}
.y1d{bottom:812.085000px;}
.y65{bottom:828.105000px;}
.y1c{bottom:832.785000px;}
.y8a{bottom:848.445000px;}
.y64{bottom:848.805000px;}
.y1b{bottom:853.485000px;}
.y63{bottom:869.505000px;}
.y1a{bottom:873.825000px;}
.yab{bottom:889.845000px;}
.y62{bottom:890.205000px;}
.y19{bottom:894.885000px;}
.y61{bottom:910.950000px;}
.y18{bottom:915.630000px;}
.y60{bottom:931.650000px;}
.y17{bottom:936.330000px;}
.y5f{bottom:952.350000px;}
.y16{bottom:956.670000px;}
.y5e{bottom:973.050000px;}
.y15{bottom:977.370000px;}
.yaa{bottom:993.390000px;}
.y5d{bottom:993.750000px;}
.y14{bottom:998.070000px;}
.y5c{bottom:1014.450000px;}
.y13{bottom:1019.310000px;}
.y5b{bottom:1035.150000px;}
.y12{bottom:1043.430000px;}
.y5a{bottom:1055.850000px;}
.y6{bottom:1066.650000px;}
.y59{bottom:1076.550000px;}
.y5{bottom:1084.110000px;}
.y58{bottom:1097.250000px;}
.y4{bottom:1103.370000px;}
.y8{bottom:1110.215319px;}
.y57{bottom:1117.950000px;}
.y3{bottom:1133.430000px;}
.y56{bottom:1138.290000px;}
.ya9{bottom:1138.650000px;}
.y2{bottom:1150.920000px;}
.y1{bottom:1179.720000px;}
.ya{bottom:1219.140000px;}
.h7{height:15.648467px;}
.h18{height:20.158500px;}
.h12{height:21.960000px;}
.h5{height:31.952109px;}
.h9{height:32.400000px;}
.hd{height:33.118500px;}
.hb{height:40.140000px;}
.h1b{height:41.385000px;}
.h1c{height:41.421000px;}
.h4{height:41.738906px;}
.hc{height:45.116367px;}
.h8{height:51.381523px;}
.h6{height:53.709961px;}
.h3{height:54.070312px;}
.h14{height:58.651172px;}
.h13{height:59.220000px;}
.h16{height:60.226875px;}
.h15{height:65.016000px;}
.h19{height:67.824844px;}
.h11{height:70.664062px;}
.ha{height:71.613281px;}
.h10{height:72.562500px;}
.he{height:73.722656px;}
.h2{height:81.105469px;}
.h1a{height:82.800000px;}
.hf{height:84.898125px;}
.h17{height:201.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:70.185000px;}
.w6{width:76.485000px;}
.we{width:98.625000px;}
.wf{width:98.670000px;}
.wa{width:98.809500px;}
.wc{width:98.820000px;}
.wb{width:98.841000px;}
.wd{width:98.856000px;}
.w2{width:103.946873px;}
.w3{width:193.320000px;}
.w8{width:263.595000px;}
.w7{width:418.755000px;}
.w4{width:442.980000px;}
.w5{width:443.100000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:6.649500px;}
.x14{left:8.100000px;}
.x9{left:9.540000px;}
.x7{left:11.281912px;}
.xa{left:15.120000px;}
.xb{left:22.860000px;}
.x12{left:49.500000px;}
.x13{left:77.616000px;}
.x16{left:120.106500px;}
.x2{left:135.036000px;}
.x1{left:148.536000px;}
.xd{left:153.030000px;}
.x3{left:172.110000px;}
.x11{left:177.870000px;}
.x1e{left:189.030000px;}
.xe{left:199.110000px;}
.x18{left:220.365000px;}
.x19{left:320.655000px;}
.xf{left:327.675000px;}
.x10{left:340.815000px;}
.x1a{left:420.915000px;}
.x5{left:446.505000px;}
.x1b{left:521.220000px;}
.x6{left:524.083689px;}
.x1c{left:621.690000px;}
.x4{left:629.970000px;}
.x8{left:652.213689px;}
.xc{left:682.890000px;}
.x15{left:687.390000px;}
.x1d{left:721.950000px;}
@media print{
.v2{vertical-align:-80.640000pt;}
.v1{vertical-align:-77.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.069333pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls2{letter-spacing:663.818667pt;}
.ws9{word-spacing:-36.096000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws0{word-spacing:-17.536000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws1{word-spacing:-0.043791pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-10.880000pt;}
._1d{margin-left:-2.607112pt;}
._0{margin-left:-1.536000pt;}
._2{width:1.583112pt;}
._17{width:2.721776pt;}
._21{width:4.288000pt;}
._16{width:5.184000pt;}
._d{width:6.144000pt;}
._22{width:7.325331pt;}
._1c{width:8.234667pt;}
._18{width:9.216000pt;}
._19{width:10.432000pt;}
._b{width:11.840000pt;}
._a{width:12.736000pt;}
._6{width:13.824000pt;}
._7{width:14.843555pt;}
._e{width:16.960000pt;}
._f{width:18.496000pt;}
._13{width:19.520000pt;}
._12{width:20.466664pt;}
._1b{width:21.504000pt;}
._23{width:22.720000pt;}
._2b{width:23.696888pt;}
._10{width:25.344000pt;}
._c{width:26.816000pt;}
._1e{width:29.162667pt;}
._11{width:30.272000pt;}
._1f{width:31.381333pt;}
._1a{width:32.448000pt;}
._24{width:33.360888pt;}
._25{width:34.432000pt;}
._27{width:35.344888pt;}
._9{width:36.288000pt;}
._8{width:37.376000pt;}
._20{width:38.378667pt;}
._29{width:40.448000pt;}
._28{width:41.408000pt;}
._14{width:51.456000pt;}
._15{width:52.571555pt;}
._5{width:53.760000pt;}
._4{width:55.018667pt;}
._2c{width:60.640000pt;}
._2a{width:105.936888pt;}
._2d{width:116.672000pt;}
._2e{width:117.616888pt;}
._26{width:162.432000pt;}
._1{width:383.998507pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:43.790828pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.960237pt;}
.yf{bottom:3.041333pt;}
.y45{bottom:3.200000pt;}
.y54{bottom:3.360000pt;}
.y90{bottom:3.680000pt;}
.y99{bottom:3.986667pt;}
.y93{bottom:4.000000pt;}
.y55{bottom:4.160000pt;}
.y40{bottom:4.320000pt;}
.y49{bottom:7.040000pt;}
.yb{bottom:8.160000pt;}
.y11{bottom:14.240000pt;}
.yd{bottom:17.760000pt;}
.y44{bottom:18.560000pt;}
.y53{bottom:18.586667pt;}
.y8f{bottom:22.080000pt;}
.y98{bottom:22.386667pt;}
.y92{bottom:22.400000pt;}
.ye{bottom:23.838667pt;}
.yc{bottom:24.000000pt;}
.y10{bottom:24.320000pt;}
.y48{bottom:26.240000pt;}
.y7{bottom:31.200000pt;}
.y52{bottom:34.586667pt;}
.y43{bottom:34.880000pt;}
.y8e{bottom:40.480000pt;}
.y47{bottom:45.440000pt;}
.y51{bottom:52.986667pt;}
.y8d{bottom:58.880000pt;}
.y50{bottom:71.386667pt;}
.y89{bottom:73.280000pt;}
.y3e{bottom:75.040000pt;}
.ya8{bottom:76.320000pt;}
.y4f{bottom:89.786667pt;}
.y88{bottom:92.000000pt;}
.y3d{bottom:93.440000pt;}
.ya7{bottom:94.720000pt;}
.y4e{bottom:108.186667pt;}
.y87{bottom:110.400000pt;}
.y3c{bottom:111.840000pt;}
.ya6{bottom:113.120000pt;}
.y4d{bottom:126.266667pt;}
.y86{bottom:128.800000pt;}
.y3b{bottom:130.240000pt;}
.ya5{bottom:131.520000pt;}
.y4c{bottom:144.666667pt;}
.y85{bottom:147.200000pt;}
.y3a{bottom:148.640000pt;}
.ya4{bottom:149.920000pt;}
.y4a{bottom:164.480000pt;}
.y84{bottom:165.600000pt;}
.y4b{bottom:166.426667pt;}
.y39{bottom:167.040000pt;}
.ya3{bottom:168.320000pt;}
.y83{bottom:183.706667pt;}
.yb0{bottom:184.026667pt;}
.y38{bottom:185.466667pt;}
.ya2{bottom:186.746667pt;}
.y82{bottom:202.426667pt;}
.y37{bottom:203.866667pt;}
.ya1{bottom:204.826667pt;}
.y81{bottom:220.826667pt;}
.y36{bottom:222.266667pt;}
.ya0{bottom:223.546667pt;}
.y80{bottom:239.226667pt;}
.y35{bottom:240.666667pt;}
.y9f{bottom:241.946667pt;}
.y7f{bottom:257.626667pt;}
.y34{bottom:259.066667pt;}
.y9e{bottom:260.346667pt;}
.y7e{bottom:276.026667pt;}
.y33{bottom:277.466667pt;}
.y9d{bottom:278.746667pt;}
.y7d{bottom:294.426667pt;}
.y32{bottom:295.866667pt;}
.y9c{bottom:297.146667pt;}
.y7c{bottom:312.826667pt;}
.y31{bottom:314.266667pt;}
.y9b{bottom:315.546667pt;}
.y7b{bottom:331.226667pt;}
.y30{bottom:332.666667pt;}
.y9a{bottom:333.946667pt;}
.y46{bottom:343.866667pt;}
.y7a{bottom:349.626667pt;}
.y2f{bottom:351.066667pt;}
.y97{bottom:356.360000pt;}
.y79{bottom:368.026667pt;}
.y2e{bottom:369.466667pt;}
.yaf{bottom:386.106667pt;}
.y78{bottom:386.426667pt;}
.y2d{bottom:387.866667pt;}
.y42{bottom:402.466667pt;}
.y77{bottom:404.866667pt;}
.y2c{bottom:406.306667pt;}
.y96{bottom:407.906667pt;}
.y76{bottom:423.266667pt;}
.y2b{bottom:424.706667pt;}
.y75{bottom:441.666667pt;}
.y2a{bottom:443.106667pt;}
.y41{bottom:455.746667pt;}
.y95{bottom:459.266667pt;}
.y74{bottom:460.066667pt;}
.y3f{bottom:476.546667pt;}
.y73{bottom:478.466667pt;}
.y72{bottom:496.866667pt;}
.y29{bottom:501.026667pt;}
.y94{bottom:510.786667pt;}
.y71{bottom:515.266667pt;}
.y28{bottom:519.426667pt;}
.yae{bottom:533.346667pt;}
.y70{bottom:533.666667pt;}
.y27{bottom:537.826667pt;}
.y6f{bottom:552.066667pt;}
.y26{bottom:555.906667pt;}
.y91{bottom:562.306667pt;}
.y6e{bottom:570.466667pt;}
.y25{bottom:574.626667pt;}
.y6d{bottom:588.866667pt;}
.y24{bottom:593.026667pt;}
.y6c{bottom:607.293333pt;}
.y23{bottom:611.453333pt;}
.y8c{bottom:613.693333pt;}
.y6b{bottom:625.693333pt;}
.y22{bottom:629.533333pt;}
.yad{bottom:643.773333pt;}
.y6a{bottom:644.093333pt;}
.y21{bottom:648.253333pt;}
.y69{bottom:662.493333pt;}
.y20{bottom:666.653333pt;}
.y68{bottom:680.573333pt;}
.yac{bottom:680.893333pt;}
.y1f{bottom:685.053333pt;}
.y67{bottom:698.973333pt;}
.y8b{bottom:699.293333pt;}
.y1e{bottom:703.133333pt;}
.y66{bottom:717.693333pt;}
.y1d{bottom:721.853333pt;}
.y65{bottom:736.093333pt;}
.y1c{bottom:740.253333pt;}
.y8a{bottom:754.173333pt;}
.y64{bottom:754.493333pt;}
.y1b{bottom:758.653333pt;}
.y63{bottom:772.893333pt;}
.y1a{bottom:776.733333pt;}
.yab{bottom:790.973333pt;}
.y62{bottom:791.293333pt;}
.y19{bottom:795.453333pt;}
.y61{bottom:809.733333pt;}
.y18{bottom:813.893333pt;}
.y60{bottom:828.133333pt;}
.y17{bottom:832.293333pt;}
.y5f{bottom:846.533333pt;}
.y16{bottom:850.373333pt;}
.y5e{bottom:864.933333pt;}
.y15{bottom:868.773333pt;}
.yaa{bottom:883.013333pt;}
.y5d{bottom:883.333333pt;}
.y14{bottom:887.173333pt;}
.y5c{bottom:901.733333pt;}
.y13{bottom:906.053333pt;}
.y5b{bottom:920.133333pt;}
.y12{bottom:927.493333pt;}
.y5a{bottom:938.533333pt;}
.y6{bottom:948.133333pt;}
.y59{bottom:956.933333pt;}
.y5{bottom:963.653333pt;}
.y58{bottom:975.333333pt;}
.y4{bottom:980.773333pt;}
.y8{bottom:986.858061pt;}
.y57{bottom:993.733333pt;}
.y3{bottom:1007.493333pt;}
.y56{bottom:1011.813333pt;}
.ya9{bottom:1012.133333pt;}
.y2{bottom:1023.040000pt;}
.y1{bottom:1048.640000pt;}
.ya{bottom:1083.680000pt;}
.h7{height:13.909749pt;}
.h18{height:17.918667pt;}
.h12{height:19.520000pt;}
.h5{height:28.401875pt;}
.h9{height:28.800000pt;}
.hd{height:29.438667pt;}
.hb{height:35.680000pt;}
.h1b{height:36.786667pt;}
.h1c{height:36.818667pt;}
.h4{height:37.101250pt;}
.hc{height:40.103437pt;}
.h8{height:45.672465pt;}
.h6{height:47.742188pt;}
.h3{height:48.062500pt;}
.h14{height:52.134375pt;}
.h13{height:52.640000pt;}
.h16{height:53.535000pt;}
.h15{height:57.792000pt;}
.h19{height:60.288750pt;}
.h11{height:62.812500pt;}
.ha{height:63.656250pt;}
.h10{height:64.500000pt;}
.he{height:65.531250pt;}
.h2{height:72.093750pt;}
.h1a{height:73.600000pt;}
.hf{height:75.465000pt;}
.h17{height:178.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:62.386667pt;}
.w6{width:67.986667pt;}
.we{width:87.666667pt;}
.wf{width:87.706667pt;}
.wa{width:87.830667pt;}
.wc{width:87.840000pt;}
.wb{width:87.858667pt;}
.wd{width:87.872000pt;}
.w2{width:92.397221pt;}
.w3{width:171.840000pt;}
.w8{width:234.306667pt;}
.w7{width:372.226667pt;}
.w4{width:393.760000pt;}
.w5{width:393.866667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:5.910667pt;}
.x14{left:7.200000pt;}
.x9{left:8.480000pt;}
.x7{left:10.028367pt;}
.xa{left:13.440000pt;}
.xb{left:20.320000pt;}
.x12{left:44.000000pt;}
.x13{left:68.992000pt;}
.x16{left:106.761333pt;}
.x2{left:120.032000pt;}
.x1{left:132.032000pt;}
.xd{left:136.026667pt;}
.x3{left:152.986667pt;}
.x11{left:158.106667pt;}
.x1e{left:168.026667pt;}
.xe{left:176.986667pt;}
.x18{left:195.880000pt;}
.x19{left:285.026667pt;}
.xf{left:291.266667pt;}
.x10{left:302.946667pt;}
.x1a{left:374.146667pt;}
.x5{left:396.893333pt;}
.x1b{left:463.306667pt;}
.x6{left:465.852168pt;}
.x1c{left:552.613333pt;}
.x4{left:559.973333pt;}
.x8{left:579.745501pt;}
.xc{left:607.013333pt;}
.x15{left:611.013333pt;}
.x1d{left:641.733333pt;}
}




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