
    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_2e14cf1291d6503ae01164ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_a2b0e519b5ff43d8ed26f621.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_bd5e5873bc2efc7a10f07a93.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_5947777561b1347361a31fce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_25770c980732af26c06c036d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls9{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:21.221280px;}
.ls4{letter-spacing:41.357280px;}
.ls6{letter-spacing:54.864000px;}
.ls2{letter-spacing:64.397280px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws4{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._21{margin-left:-22.002720px;}
._1e{margin-left:-20.718720px;}
._4{margin-left:-5.533920px;}
._9{margin-left:-3.996000px;}
._1f{margin-left:-2.930880px;}
._0{margin-left:-1.481280px;}
._1{width:1.703520px;}
._13{width:2.730720px;}
._c{width:3.732000px;}
._b{width:4.733280px;}
._a{width:5.940000px;}
._1c{width:7.457760px;}
._d{width:8.712000px;}
._e{width:9.936000px;}
._1a{width:11.304000px;}
._11{width:12.816000px;}
._12{width:14.256000px;}
._7{width:15.984000px;}
._8{width:19.469760px;}
._5{width:20.952000px;}
._6{width:22.032000px;}
._20{width:23.125440px;}
._16{width:25.025760px;}
._17{width:26.496480px;}
._1b{width:29.199840px;}
._2{width:30.759120px;}
._3{width:31.792320px;}
._14{width:32.904000px;}
._15{width:34.584480px;}
._19{width:45.876000px;}
._f{width:51.552000px;}
._10{width:52.560000px;}
._1d{width:59.843520px;}
._24{width:62.640000px;}
._22{width:77.433360px;}
._23{width:180.065520px;}
._18{width:204.555840px;}
.fc2{color:rgb(31,77,120);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:76.176000px;}
.y4{bottom:96.516000px;}
.y3{bottom:115.596000px;}
.y2{bottom:134.496000px;}
.ybf{bottom:163.470000px;}
.y4f{bottom:169.230000px;}
.y32{bottom:173.190000px;}
.y82{bottom:189.570000px;}
.y31{bottom:193.890000px;}
.ybe{bottom:194.430000px;}
.ya6{bottom:194.610000px;}
.y4e{bottom:200.190000px;}
.y95{bottom:208.470000px;}
.y30{bottom:214.590000px;}
.y81{bottom:220.710000px;}
.ya5{bottom:225.570000px;}
.y6a{bottom:226.470000px;}
.y4d{bottom:231.150000px;}
.y2f{bottom:235.290000px;}
.ybd{bottom:237.450000px;}
.y94{bottom:239.430000px;}
.y80{bottom:251.670000px;}
.y2e{bottom:255.990000px;}
.ya4{bottom:256.710000px;}
.y69{bottom:257.430000px;}
.y4c{bottom:262.290000px;}
.ybc{bottom:268.590000px;}
.y93{bottom:270.570000px;}
.y2d{bottom:276.690000px;}
.y68{bottom:288.570000px;}
.y7f{bottom:294.690000px;}
.y2c{bottom:297.390000px;}
.ybb{bottom:299.550000px;}
.ya3{bottom:299.730000px;}
.y92{bottom:301.530000px;}
.y4b{bottom:307.650000px;}
.y2b{bottom:318.090000px;}
.y67{bottom:319.530000px;}
.y7e{bottom:325.830000px;}
.ya2{bottom:330.690000px;}
.y91{bottom:332.670000px;}
.y2a{bottom:338.835000px;}
.y4a{bottom:341.535000px;}
.y66{bottom:350.715000px;}
.y7d{bottom:356.835000px;}
.y29{bottom:359.535000px;}
.yba{bottom:361.695000px;}
.ya1{bottom:361.875000px;}
.y90{bottom:363.675000px;}
.y49{bottom:372.675000px;}
.y28{bottom:380.235000px;}
.y65{bottom:381.675000px;}
.y7c{bottom:387.975000px;}
.yb9{bottom:392.835000px;}
.ya0{bottom:395.175000px;}
.y27{bottom:400.935000px;}
.y48{bottom:403.635000px;}
.y64{bottom:414.975000px;}
.y8f{bottom:415.695000px;}
.y7b{bottom:421.275000px;}
.y26{bottom:421.635000px;}
.yb8{bottom:423.795000px;}
.y9f{bottom:432.075000px;}
.y47{bottom:434.775000px;}
.y25{bottom:442.335000px;}
.y8e{bottom:442.695000px;}
.y63{bottom:451.335000px;}
.yb7{bottom:454.935000px;}
.y24{bottom:463.035000px;}
.y9e{bottom:463.215000px;}
.y7a{bottom:464.295000px;}
.y46{bottom:465.735000px;}
.y23{bottom:483.735000px;}
.yb6{bottom:485.895000px;}
.y62{bottom:494.175000px;}
.y45{bottom:496.695000px;}
.y79{bottom:497.595000px;}
.y22{bottom:504.435000px;}
.y21{bottom:525.135000px;}
.y61{bottom:525.315000px;}
.yb5{bottom:531.255000px;}
.y44{bottom:539.175000px;}
.y20{bottom:545.835000px;}
.y78{bottom:552.495000px;}
.y60{bottom:556.275000px;}
.yb4{bottom:565.275000px;}
.y1f{bottom:566.535000px;}
.y43{bottom:570.135000px;}
.y77{bottom:583.455000px;}
.y1e{bottom:587.235000px;}
.y5f{bottom:587.415000px;}
.yb3{bottom:596.235000px;}
.y42{bottom:601.275000px;}
.y1d{bottom:607.965000px;}
.y76{bottom:614.625000px;}
.y5e{bottom:618.405000px;}
.yb2{bottom:627.405000px;}
.y1c{bottom:628.665000px;}
.y41{bottom:632.265000px;}
.y75{bottom:645.585000px;}
.y1b{bottom:649.365000px;}
.y5d{bottom:649.545000px;}
.yb1{bottom:658.365000px;}
.y1a{bottom:670.065000px;}
.y74{bottom:676.725000px;}
.y40{bottom:677.625000px;}
.y9d{bottom:680.505000px;}
.yb0{bottom:689.505000px;}
.y19{bottom:690.765000px;}
.y5c{bottom:694.905000px;}
.y18{bottom:711.465000px;}
.y9c{bottom:711.645000px;}
.y3f{bottom:713.805000px;}
.yaf{bottom:720.465000px;}
.y5b{bottom:728.745000px;}
.y17{bottom:732.165000px;}
.y9b{bottom:742.605000px;}
.y16{bottom:752.865000px;}
.y3e{bottom:759.705000px;}
.y73{bottom:759.885000px;}
.yae{bottom:765.825000px;}
.y8d{bottom:768.705000px;}
.yca{bottom:770.145000px;}
.y15{bottom:773.565000px;}
.y9a{bottom:773.745000px;}
.y5a{bottom:790.845000px;}
.y14{bottom:794.265000px;}
.y8c{bottom:799.845000px;}
.yc9{bottom:801.105000px;}
.y3d{bottom:802.905000px;}
.y99{bottom:804.705000px;}
.yad{bottom:811.725000px;}
.y13{bottom:814.965000px;}
.y59{bottom:821.805000px;}
.y72{bottom:821.985000px;}
.y8b{bottom:830.805000px;}
.y3c{bottom:833.865000px;}
.y12{bottom:835.665000px;}
.y98{bottom:838.005000px;}
.yc8{bottom:842.505000px;}
.y58{bottom:852.945000px;}
.yac{bottom:854.745000px;}
.y11{bottom:856.365000px;}
.yc7{bottom:863.205000px;}
.y8a{bottom:864.105000px;}
.y3b{bottom:865.005000px;}
.y97{bottom:874.230000px;}
.y10{bottom:877.110000px;}
.y57{bottom:883.950000px;}
.yab{bottom:885.930000px;}
.y3a{bottom:896.010000px;}
.yf{bottom:897.810000px;}
.y89{bottom:901.230000px;}
.yc6{bottom:904.650000px;}
.y96{bottom:911.310000px;}
.y56{bottom:915.090000px;}
.ye{bottom:918.510000px;}
.yc5{bottom:925.350000px;}
.y71{bottom:926.970000px;}
.y39{bottom:927.150000px;}
.yaa{bottom:928.950000px;}
.y88{bottom:932.190000px;}
.yd{bottom:939.210000px;}
.y55{bottom:946.050000px;}
.y38{bottom:958.110000px;}
.y70{bottom:959.190000px;}
.yc{bottom:959.910000px;}
.ya9{bottom:962.250000px;}
.y87{bottom:963.330000px;}
.yc4{bottom:966.750000px;}
.y54{bottom:977.190000px;}
.yb{bottom:980.610000px;}
.yc3{bottom:987.450000px;}
.y37{bottom:989.250000px;}
.y6f{bottom:991.770000px;}
.y86{bottom:994.290000px;}
.ya8{bottom:998.430000px;}
.ya{bottom:1002.570000px;}
.y53{bottom:1008.150000px;}
.y36{bottom:1020.210000px;}
.y6e{bottom:1022.730000px;}
.y85{bottom:1025.430000px;}
.yc2{bottom:1028.850000px;}
.y9{bottom:1030.110000px;}
.y52{bottom:1039.290000px;}
.ya7{bottom:1044.330000px;}
.yc1{bottom:1049.550000px;}
.y35{bottom:1051.350000px;}
.y6d{bottom:1055.130000px;}
.y84{bottom:1056.390000px;}
.y8{bottom:1057.830000px;}
.yc0{bottom:1070.250000px;}
.y34{bottom:1082.310000px;}
.y51{bottom:1084.650000px;}
.y7{bottom:1085.370000px;}
.y6c{bottom:1086.270000px;}
.y83{bottom:1087.530000px;}
.y6{bottom:1112.910000px;}
.y33{bottom:1115.610000px;}
.y6b{bottom:1117.050000px;}
.y50{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h7{height:52.417969px;}
.h5{height:52.628906px;}
.h3{height:59.383125px;}
.h8{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:121.895987px;}
.x2{left:127.655987px;}
.x5{left:141.515987px;}
.x6{left:151.949987px;}
.xf{left:154.649987px;}
.x4{left:157.349987px;}
.xc{left:159.689987px;}
.xb{left:170.129987px;}
.xd{left:180.749987px;}
.x9{left:232.229987px;}
.x8{left:250.589987px;}
.xa{left:360.614987px;}
.x7{left:385.634987px;}
.x1{left:467.924987px;}
.x10{left:645.224987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:18.863360pt;}
.ls4{letter-spacing:36.762027pt;}
.ls6{letter-spacing:48.768000pt;}
.ls2{letter-spacing:57.242027pt;}
.ws1{word-spacing:-64.000000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._21{margin-left:-19.557973pt;}
._1e{margin-left:-18.416640pt;}
._4{margin-left:-4.919040pt;}
._9{margin-left:-3.552000pt;}
._1f{margin-left:-2.605227pt;}
._0{margin-left:-1.316693pt;}
._1{width:1.514240pt;}
._13{width:2.427307pt;}
._c{width:3.317333pt;}
._b{width:4.207360pt;}
._a{width:5.280000pt;}
._1c{width:6.629120pt;}
._d{width:7.744000pt;}
._e{width:8.832000pt;}
._1a{width:10.048000pt;}
._11{width:11.392000pt;}
._12{width:12.672000pt;}
._7{width:14.208000pt;}
._8{width:17.306453pt;}
._5{width:18.624000pt;}
._6{width:19.584000pt;}
._20{width:20.555947pt;}
._16{width:22.245120pt;}
._17{width:23.552427pt;}
._1b{width:25.955413pt;}
._2{width:27.341440pt;}
._3{width:28.259840pt;}
._14{width:29.248000pt;}
._15{width:30.741760pt;}
._19{width:40.778667pt;}
._f{width:45.824000pt;}
._10{width:46.720000pt;}
._1d{width:53.194240pt;}
._24{width:55.680000pt;}
._22{width:68.829653pt;}
._23{width:160.058240pt;}
._18{width:181.827413pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:67.712000pt;}
.y4{bottom:85.792000pt;}
.y3{bottom:102.752000pt;}
.y2{bottom:119.552000pt;}
.ybf{bottom:145.306667pt;}
.y4f{bottom:150.426667pt;}
.y32{bottom:153.946667pt;}
.y82{bottom:168.506667pt;}
.y31{bottom:172.346667pt;}
.ybe{bottom:172.826667pt;}
.ya6{bottom:172.986667pt;}
.y4e{bottom:177.946667pt;}
.y95{bottom:185.306667pt;}
.y30{bottom:190.746667pt;}
.y81{bottom:196.186667pt;}
.ya5{bottom:200.506667pt;}
.y6a{bottom:201.306667pt;}
.y4d{bottom:205.466667pt;}
.y2f{bottom:209.146667pt;}
.ybd{bottom:211.066667pt;}
.y94{bottom:212.826667pt;}
.y80{bottom:223.706667pt;}
.y2e{bottom:227.546667pt;}
.ya4{bottom:228.186667pt;}
.y69{bottom:228.826667pt;}
.y4c{bottom:233.146667pt;}
.ybc{bottom:238.746667pt;}
.y93{bottom:240.506667pt;}
.y2d{bottom:245.946667pt;}
.y68{bottom:256.506667pt;}
.y7f{bottom:261.946667pt;}
.y2c{bottom:264.346667pt;}
.ybb{bottom:266.266667pt;}
.ya3{bottom:266.426667pt;}
.y92{bottom:268.026667pt;}
.y4b{bottom:273.466667pt;}
.y2b{bottom:282.746667pt;}
.y67{bottom:284.026667pt;}
.y7e{bottom:289.626667pt;}
.ya2{bottom:293.946667pt;}
.y91{bottom:295.706667pt;}
.y2a{bottom:301.186667pt;}
.y4a{bottom:303.586667pt;}
.y66{bottom:311.746667pt;}
.y7d{bottom:317.186667pt;}
.y29{bottom:319.586667pt;}
.yba{bottom:321.506667pt;}
.ya1{bottom:321.666667pt;}
.y90{bottom:323.266667pt;}
.y49{bottom:331.266667pt;}
.y28{bottom:337.986667pt;}
.y65{bottom:339.266667pt;}
.y7c{bottom:344.866667pt;}
.yb9{bottom:349.186667pt;}
.ya0{bottom:351.266667pt;}
.y27{bottom:356.386667pt;}
.y48{bottom:358.786667pt;}
.y64{bottom:368.866667pt;}
.y8f{bottom:369.506667pt;}
.y7b{bottom:374.466667pt;}
.y26{bottom:374.786667pt;}
.yb8{bottom:376.706667pt;}
.y9f{bottom:384.066667pt;}
.y47{bottom:386.466667pt;}
.y25{bottom:393.186667pt;}
.y8e{bottom:393.506667pt;}
.y63{bottom:401.186667pt;}
.yb7{bottom:404.386667pt;}
.y24{bottom:411.586667pt;}
.y9e{bottom:411.746667pt;}
.y7a{bottom:412.706667pt;}
.y46{bottom:413.986667pt;}
.y23{bottom:429.986667pt;}
.yb6{bottom:431.906667pt;}
.y62{bottom:439.266667pt;}
.y45{bottom:441.506667pt;}
.y79{bottom:442.306667pt;}
.y22{bottom:448.386667pt;}
.y21{bottom:466.786667pt;}
.y61{bottom:466.946667pt;}
.yb5{bottom:472.226667pt;}
.y44{bottom:479.266667pt;}
.y20{bottom:485.186667pt;}
.y78{bottom:491.106667pt;}
.y60{bottom:494.466667pt;}
.yb4{bottom:502.466667pt;}
.y1f{bottom:503.586667pt;}
.y43{bottom:506.786667pt;}
.y77{bottom:518.626667pt;}
.y1e{bottom:521.986667pt;}
.y5f{bottom:522.146667pt;}
.yb3{bottom:529.986667pt;}
.y42{bottom:534.466667pt;}
.y1d{bottom:540.413333pt;}
.y76{bottom:546.333333pt;}
.y5e{bottom:549.693333pt;}
.yb2{bottom:557.693333pt;}
.y1c{bottom:558.813333pt;}
.y41{bottom:562.013333pt;}
.y75{bottom:573.853333pt;}
.y1b{bottom:577.213333pt;}
.y5d{bottom:577.373333pt;}
.yb1{bottom:585.213333pt;}
.y1a{bottom:595.613333pt;}
.y74{bottom:601.533333pt;}
.y40{bottom:602.333333pt;}
.y9d{bottom:604.893333pt;}
.yb0{bottom:612.893333pt;}
.y19{bottom:614.013333pt;}
.y5c{bottom:617.693333pt;}
.y18{bottom:632.413333pt;}
.y9c{bottom:632.573333pt;}
.y3f{bottom:634.493333pt;}
.yaf{bottom:640.413333pt;}
.y5b{bottom:647.773333pt;}
.y17{bottom:650.813333pt;}
.y9b{bottom:660.093333pt;}
.y16{bottom:669.213333pt;}
.y3e{bottom:675.293333pt;}
.y73{bottom:675.453333pt;}
.yae{bottom:680.733333pt;}
.y8d{bottom:683.293333pt;}
.yca{bottom:684.573333pt;}
.y15{bottom:687.613333pt;}
.y9a{bottom:687.773333pt;}
.y5a{bottom:702.973333pt;}
.y14{bottom:706.013333pt;}
.y8c{bottom:710.973333pt;}
.yc9{bottom:712.093333pt;}
.y3d{bottom:713.693333pt;}
.y99{bottom:715.293333pt;}
.yad{bottom:721.533333pt;}
.y13{bottom:724.413333pt;}
.y59{bottom:730.493333pt;}
.y72{bottom:730.653333pt;}
.y8b{bottom:738.493333pt;}
.y3c{bottom:741.213333pt;}
.y12{bottom:742.813333pt;}
.y98{bottom:744.893333pt;}
.yc8{bottom:748.893333pt;}
.y58{bottom:758.173333pt;}
.yac{bottom:759.773333pt;}
.y11{bottom:761.213333pt;}
.yc7{bottom:767.293333pt;}
.y8a{bottom:768.093333pt;}
.y3b{bottom:768.893333pt;}
.y97{bottom:777.093333pt;}
.y10{bottom:779.653333pt;}
.y57{bottom:785.733333pt;}
.yab{bottom:787.493333pt;}
.y3a{bottom:796.453333pt;}
.yf{bottom:798.053333pt;}
.y89{bottom:801.093333pt;}
.yc6{bottom:804.133333pt;}
.y96{bottom:810.053333pt;}
.y56{bottom:813.413333pt;}
.ye{bottom:816.453333pt;}
.yc5{bottom:822.533333pt;}
.y71{bottom:823.973333pt;}
.y39{bottom:824.133333pt;}
.yaa{bottom:825.733333pt;}
.y88{bottom:828.613333pt;}
.yd{bottom:834.853333pt;}
.y55{bottom:840.933333pt;}
.y38{bottom:851.653333pt;}
.y70{bottom:852.613333pt;}
.yc{bottom:853.253333pt;}
.ya9{bottom:855.333333pt;}
.y87{bottom:856.293333pt;}
.yc4{bottom:859.333333pt;}
.y54{bottom:868.613333pt;}
.yb{bottom:871.653333pt;}
.yc3{bottom:877.733333pt;}
.y37{bottom:879.333333pt;}
.y6f{bottom:881.573333pt;}
.y86{bottom:883.813333pt;}
.ya8{bottom:887.493333pt;}
.ya{bottom:891.173333pt;}
.y53{bottom:896.133333pt;}
.y36{bottom:906.853333pt;}
.y6e{bottom:909.093333pt;}
.y85{bottom:911.493333pt;}
.yc2{bottom:914.533333pt;}
.y9{bottom:915.653333pt;}
.y52{bottom:923.813333pt;}
.ya7{bottom:928.293333pt;}
.yc1{bottom:932.933333pt;}
.y35{bottom:934.533333pt;}
.y6d{bottom:937.893333pt;}
.y84{bottom:939.013333pt;}
.y8{bottom:940.293333pt;}
.yc0{bottom:951.333333pt;}
.y34{bottom:962.053333pt;}
.y51{bottom:964.133333pt;}
.y7{bottom:964.773333pt;}
.y6c{bottom:965.573333pt;}
.y83{bottom:966.693333pt;}
.y6{bottom:989.253333pt;}
.y33{bottom:991.653333pt;}
.y6b{bottom:992.933333pt;}
.y50{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h7{height:46.593750pt;}
.h5{height:46.781250pt;}
.h3{height:52.785000pt;}
.h8{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:108.351988pt;}
.x2{left:113.471988pt;}
.x5{left:125.791988pt;}
.x6{left:135.066655pt;}
.xf{left:137.466655pt;}
.x4{left:139.866655pt;}
.xc{left:141.946655pt;}
.xb{left:151.226655pt;}
.xd{left:160.666655pt;}
.x9{left:206.426655pt;}
.x8{left:222.746655pt;}
.xa{left:320.546655pt;}
.x7{left:342.786655pt;}
.x1{left:415.933322pt;}
.x10{left:573.533322pt;}
.x3{left:718.373322pt;}
}




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