
    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_a1a52eb864914b3b8d8b865a.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_0d3fca2095c2836d92501266.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_f24b5b083c934f835099a0fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_be73b6e33c2908378ff0b9c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.953125;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_39bd85e50a8ba8c7bb2208f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953125;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_98fce1b45772053e493d5421.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_79df2496f508c77c540e9058.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-2.046000px;}
.ls16{letter-spacing:-1.866000px;}
.lsb{letter-spacing:-1.512000px;}
.ls10{letter-spacing:-1.476000px;}
.ls11{letter-spacing:-1.206000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.423600px;}
.lsa{letter-spacing:-0.368400px;}
.lsd{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.213120px;}
.ls4{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.468000px;}
.ls9{letter-spacing:0.587400px;}
.lsc{letter-spacing:0.598800px;}
.lsf{letter-spacing:0.731520px;}
.ls8{letter-spacing:0.978000px;}
.ls0{letter-spacing:1.728000px;}
.ls3{letter-spacing:1.848000px;}
.ls1{letter-spacing:1.920960px;}
.ls15{letter-spacing:11.986560px;}
.ls13{letter-spacing:42.226560px;}
.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;}
}
.ws0{word-spacing:-41.664960px;}
.ws3{word-spacing:-15.948240px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws4{word-spacing:-13.668480px;}
.ws5{word-spacing:-13.596480px;}
.ws7{word-spacing:-13.244880px;}
.ws8{word-spacing:-11.802480px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-1447.340880px;}
._4{margin-left:-1328.000640px;}
._6{margin-left:-1000.336080px;}
._8{margin-left:-580.752240px;}
._b{margin-left:-8.876160px;}
._16{margin-left:-7.831680px;}
._15{margin-left:-6.737280px;}
._12{margin-left:-5.494560px;}
._9{margin-left:-4.164960px;}
._5{margin-left:-2.980800px;}
._0{margin-left:-1.391040px;}
._1{width:1.146720px;}
._2{width:2.450880px;}
._3{width:3.569760px;}
._11{width:5.072160px;}
._13{width:6.608160px;}
._c{width:8.145600px;}
._a{width:9.551520px;}
._14{width:10.825920px;}
._d{width:12.401760px;}
._f{width:15.724800px;}
._e{width:17.055360px;}
._10{width:18.325440px;}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs4{font-size:2.880000px;}
.fs5{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:3.960000px;}
.y64{bottom:6.840000px;}
.y61{bottom:7.200000px;}
.y7a{bottom:7.245000px;}
.y7e{bottom:14.040000px;}
.yaf{bottom:20.520000px;}
.y74{bottom:20.880000px;}
.yac{bottom:23.760000px;}
.y78{bottom:28.080000px;}
.y79{bottom:28.125000px;}
.yae{bottom:37.080000px;}
.y7c{bottom:47.160000px;}
.y7f{bottom:48.960000px;}
.yad{bottom:53.634000px;}
.y6{bottom:57.960000px;}
.y76{bottom:73.485000px;}
.y8c{bottom:87.876000px;}
.y67{bottom:99.396000px;}
.y31{bottom:100.476000px;}
.yab{bottom:100.836000px;}
.y8b{bottom:105.156000px;}
.y66{bottom:120.636000px;}
.y30{bottom:121.716000px;}
.y65{bottom:141.516000px;}
.y2f{bottom:142.596000px;}
.y63{bottom:162.750000px;}
.y2e{bottom:163.830000px;}
.yaa{bottom:178.590000px;}
.y62{bottom:183.630000px;}
.y2d{bottom:184.710000px;}
.ya9{bottom:199.515000px;}
.y2c{bottom:205.995000px;}
.y60{bottom:207.795000px;}
.ya8{bottom:220.755000px;}
.y2b{bottom:226.875000px;}
.y5f{bottom:238.755000px;}
.ya7{bottom:241.635000px;}
.y2a{bottom:248.115000px;}
.y5e{bottom:259.995000px;}
.ya6{bottom:262.875000px;}
.y29{bottom:268.995000px;}
.y5d{bottom:280.875000px;}
.ya5{bottom:283.755000px;}
.y28{bottom:290.235000px;}
.y5c{bottom:302.115000px;}
.ya4{bottom:304.995000px;}
.y27{bottom:311.115000px;}
.y5b{bottom:323.025000px;}
.ya3{bottom:325.905000px;}
.y26{bottom:332.385000px;}
.y5a{bottom:344.265000px;}
.ya2{bottom:346.785000px;}
.y25{bottom:353.265000px;}
.y59{bottom:365.145000px;}
.ya1{bottom:368.025000px;}
.y24{bottom:374.145000px;}
.y58{bottom:386.385000px;}
.ya0{bottom:388.905000px;}
.y23{bottom:395.385000px;}
.y57{bottom:407.265000px;}
.y9f{bottom:410.145000px;}
.y22{bottom:416.265000px;}
.y56{bottom:428.505000px;}
.y9e{bottom:431.025000px;}
.y21{bottom:437.505000px;}
.y55{bottom:449.430000px;}
.y9d{bottom:452.310000px;}
.y20{bottom:458.430000px;}
.y54{bottom:470.670000px;}
.y9c{bottom:473.190000px;}
.y1f{bottom:479.670000px;}
.y8a{bottom:487.590000px;}
.y53{bottom:491.550000px;}
.y9b{bottom:494.430000px;}
.y1e{bottom:500.550000px;}
.y89{bottom:508.830000px;}
.y52{bottom:512.790000px;}
.y9a{bottom:515.310000px;}
.y1d{bottom:521.790000px;}
.y88{bottom:529.710000px;}
.y51{bottom:533.670000px;}
.y99{bottom:536.550000px;}
.y1c{bottom:542.670000px;}
.y87{bottom:550.950000px;}
.y50{bottom:554.910000px;}
.y98{bottom:557.430000px;}
.y1b{bottom:563.910000px;}
.y86{bottom:571.830000px;}
.y4f{bottom:575.820000px;}
.y97{bottom:578.700000px;}
.y1a{bottom:584.820000px;}
.y85{bottom:593.100000px;}
.y4e{bottom:597.060000px;}
.y96{bottom:599.580000px;}
.y19{bottom:607.860000px;}
.y84{bottom:613.980000px;}
.y4d{bottom:617.940000px;}
.y95{bottom:620.820000px;}
.y83{bottom:635.220000px;}
.y18{bottom:638.460000px;}
.y4c{bottom:639.180000px;}
.y94{bottom:641.700000px;}
.y82{bottom:656.100000px;}
.y17{bottom:659.340000px;}
.y4b{bottom:660.060000px;}
.y93{bottom:662.940000px;}
.y81{bottom:676.980000px;}
.y16{bottom:680.580000px;}
.y4a{bottom:681.300000px;}
.y92{bottom:683.820000px;}
.y80{bottom:698.580000px;}
.y15{bottom:701.490000px;}
.y49{bottom:702.210000px;}
.y91{bottom:705.090000px;}
.y7b{bottom:715.530000px;}
.y14{bottom:722.730000px;}
.y48{bottom:723.450000px;}
.y90{bottom:725.970000px;}
.y13{bottom:743.610000px;}
.y47{bottom:744.330000px;}
.y8f{bottom:747.210000px;}
.y12{bottom:764.850000px;}
.y46{bottom:765.570000px;}
.y8e{bottom:768.090000px;}
.y7d{bottom:781.770000px;}
.y11{bottom:785.730000px;}
.y8d{bottom:786.090000px;}
.y45{bottom:786.450000px;}
.y10{bottom:806.970000px;}
.y44{bottom:807.690000px;}
.y75{bottom:819.570000px;}
.yf{bottom:827.895000px;}
.y43{bottom:828.615000px;}
.ye{bottom:849.135000px;}
.y42{bottom:849.855000px;}
.y77{bottom:864.975000px;}
.yd{bottom:869.655000px;}
.y41{bottom:870.735000px;}
.y40{bottom:891.975000px;}
.yc{bottom:893.415000px;}
.y73{bottom:909.975000px;}
.y3f{bottom:912.855000px;}
.yb{bottom:914.295000px;}
.y3e{bottom:934.095000px;}
.ya{bottom:935.895000px;}
.y72{bottom:952.125000px;}
.y3d{bottom:955.005000px;}
.y9{bottom:958.965000px;}
.y71{bottom:973.005000px;}
.y3c{bottom:976.245000px;}
.y8{bottom:985.605000px;}
.y70{bottom:994.245000px;}
.y3b{bottom:997.125000px;}
.y6f{bottom:1015.125000px;}
.y3a{bottom:1018.365000px;}
.y7{bottom:1019.085000px;}
.y6e{bottom:1036.365000px;}
.y39{bottom:1039.245000px;}
.y6d{bottom:1057.245000px;}
.y5{bottom:1059.405000px;}
.y38{bottom:1060.485000px;}
.y6c{bottom:1078.530000px;}
.y37{bottom:1081.410000px;}
.y4{bottom:1091.850000px;}
.y6b{bottom:1099.410000px;}
.y36{bottom:1102.650000px;}
.y6a{bottom:1120.650000px;}
.y35{bottom:1123.530000px;}
.y3{bottom:1124.250000px;}
.y69{bottom:1137.570000px;}
.y34{bottom:1144.770000px;}
.y2{bottom:1156.290000px;}
.y68{bottom:1158.810000px;}
.y33{bottom:1165.650000px;}
.y1{bottom:1190.850000px;}
.y32{bottom:1193.010000px;}
.h13{height:2.518594px;}
.ha{height:20.880000px;}
.h8{height:21.240000px;}
.h9{height:21.276000px;}
.hb{height:34.920000px;}
.hd{height:42.120000px;}
.he{height:42.156000px;}
.h7{height:46.866094px;}
.h14{height:47.853281px;}
.h5{height:51.329531px;}
.h6{height:52.890469px;}
.h2{height:55.666406px;}
.h3{height:57.927656px;}
.h11{height:62.163910px;}
.h10{height:63.000000px;}
.h12{height:66.600000px;}
.h4{height:74.762578px;}
.hc{height:87.516000px;}
.hf{height:101.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:18.000000px;}
.w4{width:45.036000px;}
.we{width:50.040000px;}
.w5{width:59.040000px;}
.wd{width:59.436000px;}
.wb{width:72.756000px;}
.w12{width:93.636000px;}
.wa{width:107.676000px;}
.w9{width:110.916000px;}
.w8{width:111.636000px;}
.w6{width:119.196000px;}
.w10{width:124.272000px;}
.wf{width:140.076000px;}
.w13{width:211.035000px;}
.wc{width:266.865000px;}
.w3{width:465.660000px;}
.w14{width:580.890000px;}
.w7{width:754.485000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1a{left:5.040000px;}
.xa{left:6.480000px;}
.x2b{left:7.560000px;}
.x15{left:9.360000px;}
.x1d{left:11.520000px;}
.xd{left:13.320000px;}
.x1c{left:15.120000px;}
.x22{left:16.560000px;}
.xe{left:17.640000px;}
.xb{left:19.080000px;}
.x19{left:20.550000px;}
.x1e{left:23.040000px;}
.x12{left:25.200000px;}
.x21{left:27.000000px;}
.x17{left:28.800000px;}
.x10{left:33.870000px;}
.x8{left:35.640000px;}
.x16{left:39.645000px;}
.x23{left:40.725000px;}
.x20{left:45.030000px;}
.x25{left:48.630000px;}
.x1f{left:52.920000px;}
.x1{left:54.035987px;}
.x24{left:56.925000px;}
.x6{left:69.516000px;}
.x7{left:70.956000px;}
.x27{left:81.035987px;}
.x1b{left:88.956000px;}
.x2{left:99.036000px;}
.x28{left:108.035987px;}
.x9{left:185.835000px;}
.x29{left:190.869000px;}
.x14{left:246.705000px;}
.x2a{left:265.065000px;}
.xc{left:298.545000px;}
.xf{left:407.670000px;}
.x11{left:482.220000px;}
.x13{left:556.410000px;}
.x3{left:567.930000px;}
.x4{left:614.415000px;}
.x5{left:675.255000px;}
.x26{left:693.974987px;}
.x18{left:698.295000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.818667pt;}
.ls16{letter-spacing:-1.658667pt;}
.lsb{letter-spacing:-1.344000pt;}
.ls10{letter-spacing:-1.312000pt;}
.ls11{letter-spacing:-1.072000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.376533pt;}
.lsa{letter-spacing:-0.327467pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.189440pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.416000pt;}
.ls9{letter-spacing:0.522133pt;}
.lsc{letter-spacing:0.532267pt;}
.lsf{letter-spacing:0.650240pt;}
.ls8{letter-spacing:0.869333pt;}
.ls0{letter-spacing:1.536000pt;}
.ls3{letter-spacing:1.642667pt;}
.ls1{letter-spacing:1.707520pt;}
.ls15{letter-spacing:10.654720pt;}
.ls13{letter-spacing:37.534720pt;}
.ws0{word-spacing:-37.035520pt;}
.ws3{word-spacing:-14.176213pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws4{word-spacing:-12.149760pt;}
.ws5{word-spacing:-12.085760pt;}
.ws7{word-spacing:-11.773227pt;}
.ws8{word-spacing:-10.491093pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-1286.525227pt;}
._4{margin-left:-1180.445013pt;}
._6{margin-left:-889.187627pt;}
._8{margin-left:-516.224213pt;}
._b{margin-left:-7.889920pt;}
._16{margin-left:-6.961493pt;}
._15{margin-left:-5.988693pt;}
._12{margin-left:-4.884053pt;}
._9{margin-left:-3.702187pt;}
._5{margin-left:-2.649600pt;}
._0{margin-left:-1.236480pt;}
._1{width:1.019307pt;}
._2{width:2.178560pt;}
._3{width:3.173120pt;}
._11{width:4.508587pt;}
._13{width:5.873920pt;}
._c{width:7.240533pt;}
._a{width:8.490240pt;}
._14{width:9.623040pt;}
._d{width:11.023787pt;}
._f{width:13.977600pt;}
._e{width:15.160320pt;}
._10{width:16.289280pt;}
.fs4{font-size:2.560000pt;}
.fs5{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:3.520000pt;}
.y64{bottom:6.080000pt;}
.y61{bottom:6.400000pt;}
.y7a{bottom:6.440000pt;}
.y7e{bottom:12.480000pt;}
.yaf{bottom:18.240000pt;}
.y74{bottom:18.560000pt;}
.yac{bottom:21.120000pt;}
.y78{bottom:24.960000pt;}
.y79{bottom:25.000000pt;}
.yae{bottom:32.960000pt;}
.y7c{bottom:41.920000pt;}
.y7f{bottom:43.520000pt;}
.yad{bottom:47.674667pt;}
.y6{bottom:51.520000pt;}
.y76{bottom:65.320000pt;}
.y8c{bottom:78.112000pt;}
.y67{bottom:88.352000pt;}
.y31{bottom:89.312000pt;}
.yab{bottom:89.632000pt;}
.y8b{bottom:93.472000pt;}
.y66{bottom:107.232000pt;}
.y30{bottom:108.192000pt;}
.y65{bottom:125.792000pt;}
.y2f{bottom:126.752000pt;}
.y63{bottom:144.666667pt;}
.y2e{bottom:145.626667pt;}
.yaa{bottom:158.746667pt;}
.y62{bottom:163.226667pt;}
.y2d{bottom:164.186667pt;}
.ya9{bottom:177.346667pt;}
.y2c{bottom:183.106667pt;}
.y60{bottom:184.706667pt;}
.ya8{bottom:196.226667pt;}
.y2b{bottom:201.666667pt;}
.y5f{bottom:212.226667pt;}
.ya7{bottom:214.786667pt;}
.y2a{bottom:220.546667pt;}
.y5e{bottom:231.106667pt;}
.ya6{bottom:233.666667pt;}
.y29{bottom:239.106667pt;}
.y5d{bottom:249.666667pt;}
.ya5{bottom:252.226667pt;}
.y28{bottom:257.986667pt;}
.y5c{bottom:268.546667pt;}
.ya4{bottom:271.106667pt;}
.y27{bottom:276.546667pt;}
.y5b{bottom:287.133333pt;}
.ya3{bottom:289.693333pt;}
.y26{bottom:295.453333pt;}
.y5a{bottom:306.013333pt;}
.ya2{bottom:308.253333pt;}
.y25{bottom:314.013333pt;}
.y59{bottom:324.573333pt;}
.ya1{bottom:327.133333pt;}
.y24{bottom:332.573333pt;}
.y58{bottom:343.453333pt;}
.ya0{bottom:345.693333pt;}
.y23{bottom:351.453333pt;}
.y57{bottom:362.013333pt;}
.y9f{bottom:364.573333pt;}
.y22{bottom:370.013333pt;}
.y56{bottom:380.893333pt;}
.y9e{bottom:383.133333pt;}
.y21{bottom:388.893333pt;}
.y55{bottom:399.493333pt;}
.y9d{bottom:402.053333pt;}
.y20{bottom:407.493333pt;}
.y54{bottom:418.373333pt;}
.y9c{bottom:420.613333pt;}
.y1f{bottom:426.373333pt;}
.y8a{bottom:433.413333pt;}
.y53{bottom:436.933333pt;}
.y9b{bottom:439.493333pt;}
.y1e{bottom:444.933333pt;}
.y89{bottom:452.293333pt;}
.y52{bottom:455.813333pt;}
.y9a{bottom:458.053333pt;}
.y1d{bottom:463.813333pt;}
.y88{bottom:470.853333pt;}
.y51{bottom:474.373333pt;}
.y99{bottom:476.933333pt;}
.y1c{bottom:482.373333pt;}
.y87{bottom:489.733333pt;}
.y50{bottom:493.253333pt;}
.y98{bottom:495.493333pt;}
.y1b{bottom:501.253333pt;}
.y86{bottom:508.293333pt;}
.y4f{bottom:511.840000pt;}
.y97{bottom:514.400000pt;}
.y1a{bottom:519.840000pt;}
.y85{bottom:527.200000pt;}
.y4e{bottom:530.720000pt;}
.y96{bottom:532.960000pt;}
.y19{bottom:540.320000pt;}
.y84{bottom:545.760000pt;}
.y4d{bottom:549.280000pt;}
.y95{bottom:551.840000pt;}
.y83{bottom:564.640000pt;}
.y18{bottom:567.520000pt;}
.y4c{bottom:568.160000pt;}
.y94{bottom:570.400000pt;}
.y82{bottom:583.200000pt;}
.y17{bottom:586.080000pt;}
.y4b{bottom:586.720000pt;}
.y93{bottom:589.280000pt;}
.y81{bottom:601.760000pt;}
.y16{bottom:604.960000pt;}
.y4a{bottom:605.600000pt;}
.y92{bottom:607.840000pt;}
.y80{bottom:620.960000pt;}
.y15{bottom:623.546667pt;}
.y49{bottom:624.186667pt;}
.y91{bottom:626.746667pt;}
.y7b{bottom:636.026667pt;}
.y14{bottom:642.426667pt;}
.y48{bottom:643.066667pt;}
.y90{bottom:645.306667pt;}
.y13{bottom:660.986667pt;}
.y47{bottom:661.626667pt;}
.y8f{bottom:664.186667pt;}
.y12{bottom:679.866667pt;}
.y46{bottom:680.506667pt;}
.y8e{bottom:682.746667pt;}
.y7d{bottom:694.906667pt;}
.y11{bottom:698.426667pt;}
.y8d{bottom:698.746667pt;}
.y45{bottom:699.066667pt;}
.y10{bottom:717.306667pt;}
.y44{bottom:717.946667pt;}
.y75{bottom:728.506667pt;}
.yf{bottom:735.906667pt;}
.y43{bottom:736.546667pt;}
.ye{bottom:754.786667pt;}
.y42{bottom:755.426667pt;}
.y77{bottom:768.866667pt;}
.yd{bottom:773.026667pt;}
.y41{bottom:773.986667pt;}
.y40{bottom:792.866667pt;}
.yc{bottom:794.146667pt;}
.y73{bottom:808.866667pt;}
.y3f{bottom:811.426667pt;}
.yb{bottom:812.706667pt;}
.y3e{bottom:830.306667pt;}
.ya{bottom:831.906667pt;}
.y72{bottom:846.333333pt;}
.y3d{bottom:848.893333pt;}
.y9{bottom:852.413333pt;}
.y71{bottom:864.893333pt;}
.y3c{bottom:867.773333pt;}
.y8{bottom:876.093333pt;}
.y70{bottom:883.773333pt;}
.y3b{bottom:886.333333pt;}
.y6f{bottom:902.333333pt;}
.y3a{bottom:905.213333pt;}
.y7{bottom:905.853333pt;}
.y6e{bottom:921.213333pt;}
.y39{bottom:923.773333pt;}
.y6d{bottom:939.773333pt;}
.y5{bottom:941.693333pt;}
.y38{bottom:942.653333pt;}
.y6c{bottom:958.693333pt;}
.y37{bottom:961.253333pt;}
.y4{bottom:970.533333pt;}
.y6b{bottom:977.253333pt;}
.y36{bottom:980.133333pt;}
.y6a{bottom:996.133333pt;}
.y35{bottom:998.693333pt;}
.y3{bottom:999.333333pt;}
.y69{bottom:1011.173333pt;}
.y34{bottom:1017.573333pt;}
.y2{bottom:1027.813333pt;}
.y68{bottom:1030.053333pt;}
.y33{bottom:1036.133333pt;}
.y1{bottom:1058.533333pt;}
.y32{bottom:1060.453333pt;}
.h13{height:2.238750pt;}
.ha{height:18.560000pt;}
.h8{height:18.880000pt;}
.h9{height:18.912000pt;}
.hb{height:31.040000pt;}
.hd{height:37.440000pt;}
.he{height:37.472000pt;}
.h7{height:41.658750pt;}
.h14{height:42.536250pt;}
.h5{height:45.626250pt;}
.h6{height:47.013750pt;}
.h2{height:49.481250pt;}
.h3{height:51.491250pt;}
.h11{height:55.256809pt;}
.h10{height:56.000000pt;}
.h12{height:59.200000pt;}
.h4{height:66.455625pt;}
.hc{height:77.792000pt;}
.hf{height:89.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:16.000000pt;}
.w4{width:40.032000pt;}
.we{width:44.480000pt;}
.w5{width:52.480000pt;}
.wd{width:52.832000pt;}
.wb{width:64.672000pt;}
.w12{width:83.232000pt;}
.wa{width:95.712000pt;}
.w9{width:98.592000pt;}
.w8{width:99.232000pt;}
.w6{width:105.952000pt;}
.w10{width:110.464000pt;}
.wf{width:124.512000pt;}
.w13{width:187.586667pt;}
.wc{width:237.213333pt;}
.w3{width:413.920000pt;}
.w14{width:516.346667pt;}
.w7{width:670.653333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1a{left:4.480000pt;}
.xa{left:5.760000pt;}
.x2b{left:6.720000pt;}
.x15{left:8.320000pt;}
.x1d{left:10.240000pt;}
.xd{left:11.840000pt;}
.x1c{left:13.440000pt;}
.x22{left:14.720000pt;}
.xe{left:15.680000pt;}
.xb{left:16.960000pt;}
.x19{left:18.266667pt;}
.x1e{left:20.480000pt;}
.x12{left:22.400000pt;}
.x21{left:24.000000pt;}
.x17{left:25.600000pt;}
.x10{left:30.106667pt;}
.x8{left:31.680000pt;}
.x16{left:35.240000pt;}
.x23{left:36.200000pt;}
.x20{left:40.026667pt;}
.x25{left:43.226667pt;}
.x1f{left:47.040000pt;}
.x1{left:48.031988pt;}
.x24{left:50.600000pt;}
.x6{left:61.792000pt;}
.x7{left:63.072000pt;}
.x27{left:72.031988pt;}
.x1b{left:79.072000pt;}
.x2{left:88.032000pt;}
.x28{left:96.031988pt;}
.x9{left:165.186667pt;}
.x29{left:169.661333pt;}
.x14{left:219.293333pt;}
.x2a{left:235.613333pt;}
.xc{left:265.373333pt;}
.xf{left:362.373333pt;}
.x11{left:428.640000pt;}
.x13{left:494.586667pt;}
.x3{left:504.826667pt;}
.x4{left:546.146667pt;}
.x5{left:600.226667pt;}
.x26{left:616.866655pt;}
.x18{left:620.706667pt;}
}




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