
    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_eb5b088fc941e1baa945dc30.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_af2ed5b8833a99fc57721313.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_dc46d72edd198c31ae0731e9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_1d51914f4f1ee2ac75aa1e04.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ab2d7208bf38b19df0eeadbc.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aa16414fea4d71449284c4e5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.lsb{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014760px;}
.ls0{letter-spacing:0.027360px;}
.ls5{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls6{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls9{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.173400px;}
.lsc{letter-spacing:0.174600px;}
.ls3{letter-spacing:6.026400px;}
.ls12{letter-spacing:11.253600px;}
.ls11{letter-spacing:11.613600px;}
.ls7{letter-spacing:63.566640px;}
.ls14{letter-spacing:80.846640px;}
.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;}
}
.ws4{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws7{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws2{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
._12{margin-left:-4.037521px;}
._9{margin-left:-2.464800px;}
._0{margin-left:-1.110000px;}
._3{width:1.268040px;}
._f{width:2.366160px;}
._7{width:3.422400px;}
._6{width:4.509000px;}
._8{width:5.691120px;}
._10{width:7.123440px;}
._4{width:8.837400px;}
._5{width:9.864486px;}
._2{width:10.890360px;}
._a{width:11.987400px;}
._11{width:14.308560px;}
._15{width:15.450840px;}
._e{width:16.560840px;}
._d{width:17.615160px;}
._13{width:20.981880px;}
._14{width:22.064040px;}
._b{width:25.971600px;}
._c{width:26.990164px;}
._1{width:40.946400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:18.000000px;}
.fs1{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fs4{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs7{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y4{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y3{bottom:100.200000px;}
.y88{bottom:111.720000px;}
.y5b{bottom:121.980000px;}
.y87{bottom:129.270000px;}
.y5a{bottom:139.530000px;}
.y86{bottom:146.910000px;}
.y59{bottom:157.170000px;}
.y85{bottom:173.460000px;}
.y58{bottom:174.720000px;}
.y57{bottom:192.270000px;}
.y27{bottom:198.750000px;}
.y84{bottom:209.100000px;}
.y56{bottom:209.910000px;}
.y26{bottom:216.300000px;}
.y83{bottom:226.650000px;}
.y55{bottom:227.460000px;}
.y25{bottom:233.940000px;}
.y82{bottom:244.200000px;}
.y54{bottom:245.100000px;}
.y24{bottom:251.490000px;}
.y81{bottom:261.840000px;}
.yae{bottom:263.100000px;}
.y23{bottom:269.040000px;}
.y53{bottom:271.650000px;}
.y80{bottom:279.390000px;}
.yad{bottom:280.650000px;}
.y22{bottom:287.490000px;}
.y7f{bottom:296.940000px;}
.yac{bottom:298.200000px;}
.y21{bottom:305.850000px;}
.y52{bottom:307.200000px;}
.y7e{bottom:314.580000px;}
.yab{bottom:315.840000px;}
.y20{bottom:324.300000px;}
.y51{bottom:324.840000px;}
.y7d{bottom:332.130000px;}
.yaa{bottom:333.390000px;}
.y50{bottom:342.390000px;}
.ya9{bottom:350.940000px;}
.y1f{bottom:352.020000px;}
.y7c{bottom:358.770000px;}
.ya8{bottom:368.580000px;}
.y4f{bottom:377.940000px;}
.ya7{bottom:386.130000px;}
.y1e{bottom:389.100000px;}
.y7b{bottom:394.320000px;}
.y4e{bottom:395.580000px;}
.ya6{bottom:403.770000px;}
.y1d{bottom:406.650000px;}
.y7a{bottom:411.870000px;}
.y4d{bottom:413.130000px;}
.ya5{bottom:421.320000px;}
.y1c{bottom:424.200000px;}
.y79{bottom:429.510000px;}
.y4c{bottom:430.770000px;}
.ya4{bottom:438.870000px;}
.y1b{bottom:441.840000px;}
.y78{bottom:447.060000px;}
.y4b{bottom:448.320000px;}
.ya3{bottom:456.510000px;}
.y1a{bottom:459.390000px;}
.y77{bottom:464.700000px;}
.y4a{bottom:465.870000px;}
.ya2{bottom:474.090000px;}
.y19{bottom:477.060000px;}
.y76{bottom:482.280000px;}
.y49{bottom:483.540000px;}
.ya1{bottom:491.730000px;}
.y18{bottom:494.610000px;}
.y75{bottom:499.830000px;}
.y48{bottom:501.090000px;}
.ya0{bottom:509.280000px;}
.y17{bottom:512.160000px;}
.y74{bottom:517.470000px;}
.y47{bottom:518.730000px;}
.y9f{bottom:526.830000px;}
.y73{bottom:535.020000px;}
.y46{bottom:536.280000px;}
.y16{bottom:539.070000px;}
.y9e{bottom:544.470000px;}
.y72{bottom:552.660000px;}
.y45{bottom:553.830000px;}
.y9d{bottom:562.020000px;}
.y71{bottom:570.210000px;}
.y44{bottom:571.470000px;}
.y9c{bottom:579.660000px;}
.y15{bottom:587.670000px;}
.y43{bottom:589.020000px;}
.yc3{bottom:595.230000px;}
.y70{bottom:596.760000px;}
.y42{bottom:606.660000px;}
.y9b{bottom:615.210000px;}
.yc2{bottom:621.780000px;}
.y41{bottom:624.210000px;}
.y14{bottom:624.750000px;}
.y6f{bottom:632.400000px;}
.y9a{bottom:632.760000px;}
.y13{bottom:642.300000px;}
.yc1{bottom:648.330000px;}
.y6e{bottom:649.950000px;}
.y99{bottom:650.400000px;}
.y40{bottom:650.760000px;}
.y12{bottom:659.850000px;}
.yc0{bottom:665.970000px;}
.y6d{bottom:667.590000px;}
.y98{bottom:667.950000px;}
.y11{bottom:677.490000px;}
.y97{bottom:685.590000px;}
.y3f{bottom:686.400000px;}
.ybf{bottom:692.520000px;}
.y10{bottom:695.040000px;}
.y6c{bottom:703.140000px;}
.y3e{bottom:703.950000px;}
.yf{bottom:712.680000px;}
.ybe{bottom:719.160000px;}
.y6b{bottom:720.690000px;}
.y3d{bottom:721.590000px;}
.ye{bottom:730.230000px;}
.y6a{bottom:738.330000px;}
.y3c{bottom:739.140000px;}
.ybd{bottom:745.710000px;}
.y96{bottom:747.600000px;}
.y69{bottom:755.880000px;}
.y3b{bottom:756.690000px;}
.yd{bottom:757.140000px;}
.ybc{bottom:763.260000px;}
.y68{bottom:773.520000px;}
.y3a{bottom:774.330000px;}
.ybb{bottom:789.900000px;}
.y67{bottom:791.070000px;}
.y39{bottom:791.880000px;}
.y95{bottom:795.930000px;}
.yc{bottom:805.380000px;}
.y66{bottom:808.620000px;}
.yba{bottom:816.810000px;}
.y38{bottom:818.520000px;}
.y65{bottom:826.260000px;}
.y94{bottom:831.480000px;}
.yb{bottom:841.200000px;}
.y93{bottom:849.030000px;}
.y37{bottom:854.070000px;}
.y64{bottom:861.810000px;}
.yb9{bottom:865.050000px;}
.y36{bottom:871.620000px;}
.y92{bottom:875.670000px;}
.ya{bottom:877.200000px;}
.y35{bottom:889.260000px;}
.yb8{bottom:891.960000px;}
.y63{bottom:897.450000px;}
.y34{bottom:906.810000px;}
.y91{bottom:911.220000px;}
.y9{bottom:913.200000px;}
.y62{bottom:915.000000px;}
.y33{bottom:924.450000px;}
.y90{bottom:928.860000px;}
.yb7{bottom:929.310000px;}
.y61{bottom:941.550000px;}
.y32{bottom:942.000000px;}
.y8f{bottom:946.410000px;}
.y8{bottom:949.290000px;}
.y31{bottom:959.550000px;}
.y30{bottom:977.190000px;}
.yb6{bottom:977.550000px;}
.y8e{bottom:981.960000px;}
.y7{bottom:987.630000px;}
.y2f{bottom:994.740000px;}
.yb5{bottom:995.190000px;}
.y8d{bottom:999.600000px;}
.y6{bottom:1012.320000px;}
.yb4{bottom:1012.770000px;}
.y8c{bottom:1017.180000px;}
.y2e{bottom:1029.960000px;}
.yb3{bottom:1030.320000px;}
.y8b{bottom:1034.820000px;}
.y60{bottom:1039.230000px;}
.y2d{bottom:1047.510000px;}
.yb2{bottom:1047.960000px;}
.y5{bottom:1050.210000px;}
.y8a{bottom:1052.370000px;}
.y2c{bottom:1065.150000px;}
.yb1{bottom:1065.510000px;}
.y89{bottom:1069.920000px;}
.y2{bottom:1071.450000px;}
.y1{bottom:1075.770000px;}
.yb0{bottom:1083.150000px;}
.y5f{bottom:1087.560000px;}
.y2b{bottom:1091.700000px;}
.yaf{bottom:1100.700000px;}
.y5e{bottom:1105.110000px;}
.y5d{bottom:1122.750000px;}
.y2a{bottom:1127.610000px;}
.y5c{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:15.240234px;}
.h3{height:35.782383px;}
.h4{height:38.100586px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:61.793886px;}
.ha{height:62.585859px;}
.h8{height:68.582109px;}
.h6{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:68.040000px;}
.x4{left:95.040000px;}
.x9{left:111.239987px;}
.x5{left:122.040000px;}
.x6{left:192.719987px;}
.x3{left:212.070000px;}
.x8{left:266.249987px;}
.x7{left:800.339987px;}
.x1{left:826.350000px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.lsb{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013120pt;}
.ls0{letter-spacing:0.024320pt;}
.ls5{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls6{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls9{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.154133pt;}
.lsc{letter-spacing:0.155200pt;}
.ls3{letter-spacing:5.356800pt;}
.ls12{letter-spacing:10.003200pt;}
.ls11{letter-spacing:10.323200pt;}
.ls7{letter-spacing:56.503680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws7{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws2{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
._12{margin-left:-3.588908pt;}
._9{margin-left:-2.190933pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.127147pt;}
._f{width:2.103253pt;}
._7{width:3.042133pt;}
._6{width:4.008000pt;}
._8{width:5.058774pt;}
._10{width:6.331946pt;}
._4{width:7.855466pt;}
._5{width:8.768432pt;}
._2{width:9.680320pt;}
._a{width:10.655467pt;}
._11{width:12.718720pt;}
._15{width:13.734080pt;}
._e{width:14.720747pt;}
._d{width:15.657920pt;}
._13{width:18.650560pt;}
._14{width:19.612480pt;}
._b{width:23.085866pt;}
._c{width:23.991257pt;}
._1{width:36.396800pt;}
.fs0{font-size:16.000000pt;}
.fs1{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fs4{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs7{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y3{bottom:89.066667pt;}
.y88{bottom:99.306667pt;}
.y5b{bottom:108.426667pt;}
.y87{bottom:114.906667pt;}
.y5a{bottom:124.026667pt;}
.y86{bottom:130.586667pt;}
.y59{bottom:139.706667pt;}
.y85{bottom:154.186667pt;}
.y58{bottom:155.306667pt;}
.y57{bottom:170.906667pt;}
.y27{bottom:176.666667pt;}
.y84{bottom:185.866667pt;}
.y56{bottom:186.586667pt;}
.y26{bottom:192.266667pt;}
.y83{bottom:201.466667pt;}
.y55{bottom:202.186667pt;}
.y25{bottom:207.946667pt;}
.y82{bottom:217.066667pt;}
.y54{bottom:217.866667pt;}
.y24{bottom:223.546667pt;}
.y81{bottom:232.746667pt;}
.yae{bottom:233.866667pt;}
.y23{bottom:239.146667pt;}
.y53{bottom:241.466667pt;}
.y80{bottom:248.346667pt;}
.yad{bottom:249.466667pt;}
.y22{bottom:255.546667pt;}
.y7f{bottom:263.946667pt;}
.yac{bottom:265.066667pt;}
.y21{bottom:271.866667pt;}
.y52{bottom:273.066667pt;}
.y7e{bottom:279.626667pt;}
.yab{bottom:280.746667pt;}
.y20{bottom:288.266667pt;}
.y51{bottom:288.746667pt;}
.y7d{bottom:295.226667pt;}
.yaa{bottom:296.346667pt;}
.y50{bottom:304.346667pt;}
.ya9{bottom:311.946667pt;}
.y1f{bottom:312.906667pt;}
.y7c{bottom:318.906667pt;}
.ya8{bottom:327.626667pt;}
.y4f{bottom:335.946667pt;}
.ya7{bottom:343.226667pt;}
.y1e{bottom:345.866667pt;}
.y7b{bottom:350.506667pt;}
.y4e{bottom:351.626667pt;}
.ya6{bottom:358.906667pt;}
.y1d{bottom:361.466667pt;}
.y7a{bottom:366.106667pt;}
.y4d{bottom:367.226667pt;}
.ya5{bottom:374.506667pt;}
.y1c{bottom:377.066667pt;}
.y79{bottom:381.786667pt;}
.y4c{bottom:382.906667pt;}
.ya4{bottom:390.106667pt;}
.y1b{bottom:392.746667pt;}
.y78{bottom:397.386667pt;}
.y4b{bottom:398.506667pt;}
.ya3{bottom:405.786667pt;}
.y1a{bottom:408.346667pt;}
.y77{bottom:413.066667pt;}
.y4a{bottom:414.106667pt;}
.ya2{bottom:421.413333pt;}
.y19{bottom:424.053333pt;}
.y76{bottom:428.693333pt;}
.y49{bottom:429.813333pt;}
.ya1{bottom:437.093333pt;}
.y18{bottom:439.653333pt;}
.y75{bottom:444.293333pt;}
.y48{bottom:445.413333pt;}
.ya0{bottom:452.693333pt;}
.y17{bottom:455.253333pt;}
.y74{bottom:459.973333pt;}
.y47{bottom:461.093333pt;}
.y9f{bottom:468.293333pt;}
.y73{bottom:475.573333pt;}
.y46{bottom:476.693333pt;}
.y16{bottom:479.173333pt;}
.y9e{bottom:483.973333pt;}
.y72{bottom:491.253333pt;}
.y45{bottom:492.293333pt;}
.y9d{bottom:499.573333pt;}
.y71{bottom:506.853333pt;}
.y44{bottom:507.973333pt;}
.y9c{bottom:515.253333pt;}
.y15{bottom:522.373333pt;}
.y43{bottom:523.573333pt;}
.yc3{bottom:529.093333pt;}
.y70{bottom:530.453333pt;}
.y42{bottom:539.253333pt;}
.y9b{bottom:546.853333pt;}
.yc2{bottom:552.693333pt;}
.y41{bottom:554.853333pt;}
.y14{bottom:555.333333pt;}
.y6f{bottom:562.133333pt;}
.y9a{bottom:562.453333pt;}
.y13{bottom:570.933333pt;}
.yc1{bottom:576.293333pt;}
.y6e{bottom:577.733333pt;}
.y99{bottom:578.133333pt;}
.y40{bottom:578.453333pt;}
.y12{bottom:586.533333pt;}
.yc0{bottom:591.973333pt;}
.y6d{bottom:593.413333pt;}
.y98{bottom:593.733333pt;}
.y11{bottom:602.213333pt;}
.y97{bottom:609.413333pt;}
.y3f{bottom:610.133333pt;}
.ybf{bottom:615.573333pt;}
.y10{bottom:617.813333pt;}
.y6c{bottom:625.013333pt;}
.y3e{bottom:625.733333pt;}
.yf{bottom:633.493333pt;}
.ybe{bottom:639.253333pt;}
.y6b{bottom:640.613333pt;}
.y3d{bottom:641.413333pt;}
.ye{bottom:649.093333pt;}
.y6a{bottom:656.293333pt;}
.y3c{bottom:657.013333pt;}
.ybd{bottom:662.853333pt;}
.y96{bottom:664.533333pt;}
.y69{bottom:671.893333pt;}
.y3b{bottom:672.613333pt;}
.yd{bottom:673.013333pt;}
.ybc{bottom:678.453333pt;}
.y68{bottom:687.573333pt;}
.y3a{bottom:688.293333pt;}
.ybb{bottom:702.133333pt;}
.y67{bottom:703.173333pt;}
.y39{bottom:703.893333pt;}
.y95{bottom:707.493333pt;}
.yc{bottom:715.893333pt;}
.y66{bottom:718.773333pt;}
.yba{bottom:726.053333pt;}
.y38{bottom:727.573333pt;}
.y65{bottom:734.453333pt;}
.y94{bottom:739.093333pt;}
.yb{bottom:747.733333pt;}
.y93{bottom:754.693333pt;}
.y37{bottom:759.173333pt;}
.y64{bottom:766.053333pt;}
.yb9{bottom:768.933333pt;}
.y36{bottom:774.773333pt;}
.y92{bottom:778.373333pt;}
.ya{bottom:779.733333pt;}
.y35{bottom:790.453333pt;}
.yb8{bottom:792.853333pt;}
.y63{bottom:797.733333pt;}
.y34{bottom:806.053333pt;}
.y91{bottom:809.973333pt;}
.y9{bottom:811.733333pt;}
.y62{bottom:813.333333pt;}
.y33{bottom:821.733333pt;}
.y90{bottom:825.653333pt;}
.yb7{bottom:826.053333pt;}
.y61{bottom:836.933333pt;}
.y32{bottom:837.333333pt;}
.y8f{bottom:841.253333pt;}
.y8{bottom:843.813333pt;}
.y31{bottom:852.933333pt;}
.y30{bottom:868.613333pt;}
.yb6{bottom:868.933333pt;}
.y8e{bottom:872.853333pt;}
.y7{bottom:877.893333pt;}
.y2f{bottom:884.213333pt;}
.yb5{bottom:884.613333pt;}
.y8d{bottom:888.533333pt;}
.y6{bottom:899.840000pt;}
.yb4{bottom:900.240000pt;}
.y8c{bottom:904.160000pt;}
.y2e{bottom:915.520000pt;}
.yb3{bottom:915.840000pt;}
.y8b{bottom:919.840000pt;}
.y60{bottom:923.760000pt;}
.y2d{bottom:931.120000pt;}
.yb2{bottom:931.520000pt;}
.y5{bottom:933.520000pt;}
.y8a{bottom:935.440000pt;}
.y2c{bottom:946.800000pt;}
.yb1{bottom:947.120000pt;}
.y89{bottom:951.040000pt;}
.y2{bottom:952.400000pt;}
.y1{bottom:956.240000pt;}
.yb0{bottom:962.800000pt;}
.y5f{bottom:966.720000pt;}
.y2b{bottom:970.400000pt;}
.yaf{bottom:978.400000pt;}
.y5e{bottom:982.320000pt;}
.y5d{bottom:998.000000pt;}
.y2a{bottom:1002.320000pt;}
.y5c{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:13.546875pt;}
.h3{height:31.806563pt;}
.h4{height:33.867188pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:54.927899pt;}
.ha{height:55.631875pt;}
.h8{height:60.961875pt;}
.h6{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:60.480000pt;}
.x4{left:84.480000pt;}
.x9{left:98.879988pt;}
.x5{left:108.480000pt;}
.x6{left:171.306655pt;}
.x3{left:188.506667pt;}
.x8{left:236.666655pt;}
.x7{left:711.413322pt;}
.x1{left:734.533333pt;}
}




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