
    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_0ad8ca100a8273c0fdf4b344.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1932c201998452d8dac20f8d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_39c3772cbf3b61b52efc5a3e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_41f2bd7ff92d36b58a4ed5c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_4523f706f8b88a27160192b4.woff2')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_1853793ea1907337b4874b7d.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.341400px;}
.ls8{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.682560px;}
.ls5{letter-spacing:0.720000px;}
.ls10{letter-spacing:7.200000px;}
.lsd{letter-spacing:33.984000px;}
.ls11{letter-spacing:44.784000px;}
.lsc{letter-spacing:51.264000px;}
.ls12{letter-spacing:54.864000px;}
.ls2{letter-spacing:870.456000px;}
.ls1{letter-spacing:1254.336000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-20.718600px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.064000px;}
.ws8{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-3.121440px;}
._2{margin-left:-1.853280px;}
._0{width:1.053360px;}
._1{width:2.645040px;}
._20{width:3.667200px;}
._14{width:4.680000px;}
._15{width:5.868000px;}
._19{width:7.020000px;}
._1a{width:8.280000px;}
._16{width:10.008000px;}
._17{width:11.486640px;}
._10{width:12.672000px;}
._f{width:13.805280px;}
._13{width:15.316080px;}
._18{width:16.431360px;}
._21{width:19.008000px;}
._b{width:20.880000px;}
._22{width:22.034640px;}
._23{width:23.133360px;}
._8{width:24.480000px;}
._11{width:25.704000px;}
._12{width:27.216000px;}
._26{width:28.333440px;}
._4{width:29.581200px;}
._3{width:30.924000px;}
._e{width:32.556000px;}
._1f{width:33.624000px;}
._1e{width:34.908000px;}
._27{width:36.007920px;}
._24{width:37.224000px;}
._c{width:39.528000px;}
._d{width:40.706640px;}
._1b{width:42.055920px;}
._1c{width:43.077600px;}
._28{width:44.186400px;}
._25{width:49.104000px;}
._5{width:118.008000px;}
._6{width:119.095920px;}
._7{width:173.179920px;}
._a{width:176.400000px;}
._9{width:194.400000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:4.500000px;}
.y20{bottom:52.956000px;}
.y1f{bottom:57.636000px;}
.y92{bottom:122.436000px;}
.y54{bottom:123.156000px;}
.y1e{bottom:126.576000px;}
.y71{bottom:130.356000px;}
.yc7{bottom:133.236000px;}
.ya4{bottom:140.436000px;}
.y1d{bottom:150.690000px;}
.y91{bottom:153.570000px;}
.y53{bottom:154.110000px;}
.y3a{bottom:160.950000px;}
.y70{bottom:161.310000px;}
.yc6{bottom:164.370000px;}
.ya3{bottom:171.570000px;}
.y1c{bottom:174.810000px;}
.y90{bottom:184.530000px;}
.y52{bottom:185.250000px;}
.yb4{bottom:190.650000px;}
.y39{bottom:191.910000px;}
.y6f{bottom:192.450000px;}
.yc5{bottom:195.330000px;}
.y1b{bottom:198.930000px;}
.ya2{bottom:202.530000px;}
.y8f{bottom:215.670000px;}
.y51{bottom:216.210000px;}
.yb3{bottom:221.610000px;}
.yc4{bottom:226.470000px;}
.ya1{bottom:233.670000px;}
.y38{bottom:240.870000px;}
.y6e{bottom:241.050000px;}
.y8e{bottom:246.630000px;}
.y1a{bottom:247.350000px;}
.yb2{bottom:252.750000px;}
.yc3{bottom:257.430000px;}
.ya0{bottom:264.630000px;}
.y19{bottom:271.470000px;}
.y37{bottom:272.010000px;}
.y8d{bottom:277.770000px;}
.yc2{bottom:288.570000px;}
.yb1{bottom:289.650000px;}
.y6d{bottom:290.550000px;}
.y18{bottom:295.590000px;}
.y9f{bottom:295.770000px;}
.y50{bottom:297.750000px;}
.y36{bottom:302.970000px;}
.y8c{bottom:308.775000px;}
.yb0{bottom:320.835000px;}
.y6c{bottom:321.555000px;}
.y9e{bottom:326.775000px;}
.yc1{bottom:327.495000px;}
.y4f{bottom:328.755000px;}
.y35{bottom:334.155000px;}
.y8b{bottom:339.915000px;}
.y17{bottom:343.875000px;}
.yc0{bottom:351.075000px;}
.y6b{bottom:352.695000px;}
.y9d{bottom:357.915000px;}
.y34{bottom:365.115000px;}
.y16{bottom:367.995000px;}
.y8a{bottom:370.875000px;}
.ybf{bottom:371.955000px;}
.y4e{bottom:379.155000px;}
.y6a{bottom:383.655000px;}
.y9c{bottom:388.875000px;}
.y15{bottom:392.295000px;}
.ybe{bottom:395.535000px;}
.y33{bottom:396.255000px;}
.y89{bottom:402.015000px;}
.y4d{bottom:410.115000px;}
.y69{bottom:414.795000px;}
.ybd{bottom:416.415000px;}
.y9b{bottom:420.015000px;}
.y32{bottom:427.215000px;}
.y14{bottom:428.115000px;}
.y88{bottom:438.915000px;}
.ybc{bottom:439.995000px;}
.y4c{bottom:441.255000px;}
.y9a{bottom:450.975000px;}
.y31{bottom:458.355000px;}
.ybb{bottom:460.875000px;}
.y68{bottom:463.755000px;}
.y13{bottom:467.355000px;}
.y87{bottom:470.055000px;}
.yba{bottom:481.575000px;}
.y99{bottom:482.115000px;}
.y4b{bottom:491.475000px;}
.y67{bottom:494.895000px;}
.yb9{bottom:502.275000px;}
.y12{bottom:503.535000px;}
.yd6{bottom:506.595000px;}
.y30{bottom:506.955000px;}
.y98{bottom:513.075000px;}
.y86{bottom:519.015000px;}
.y4a{bottom:522.615000px;}
.y66{bottom:525.855000px;}
.yd5{bottom:537.735000px;}
.y11{bottom:539.715000px;}
.y97{bottom:544.215000px;}
.y85{bottom:550.155000px;}
.yb8{bottom:551.235000px;}
.y49{bottom:553.575000px;}
.y2f{bottom:556.455000px;}
.y65{bottom:556.995000px;}
.yd4{bottom:568.695000px;}
.y96{bottom:575.175000px;}
.y10{bottom:578.055000px;}
.y84{bottom:581.145000px;}
.yb7{bottom:582.225000px;}
.y64{bottom:587.985000px;}
.yd3{bottom:601.125000px;}
.y48{bottom:604.005000px;}
.y2e{bottom:605.445000px;}
.y95{bottom:606.345000px;}
.y83{bottom:612.285000px;}
.yf{bottom:614.805000px;}
.y63{bottom:619.125000px;}
.yb6{bottom:631.005000px;}
.yd2{bottom:632.085000px;}
.y47{bottom:635.145000px;}
.y94{bottom:637.305000px;}
.y82{bottom:643.245000px;}
.y62{bottom:650.085000px;}
.ye{bottom:650.985000px;}
.y2d{bottom:654.585000px;}
.yb5{bottom:662.325000px;}
.yd1{bottom:663.225000px;}
.y93{bottom:668.445000px;}
.y81{bottom:674.385000px;}
.y61{bottom:681.225000px;}
.y46{bottom:685.365000px;}
.yd{bottom:686.805000px;}
.yd0{bottom:694.185000px;}
.yaf{bottom:699.405000px;}
.y2c{bottom:703.545000px;}
.y80{bottom:705.345000px;}
.y60{bottom:712.185000px;}
.y45{bottom:716.505000px;}
.yc{bottom:722.985000px;}
.yae{bottom:730.545000px;}
.y7f{bottom:736.485000px;}
.ycf{bottom:744.585000px;}
.y44{bottom:747.465000px;}
.y2b{bottom:752.685000px;}
.yb{bottom:759.345000px;}
.y5f{bottom:761.325000px;}
.yad{bottom:761.505000px;}
.y7e{bottom:767.445000px;}
.yce{bottom:775.545000px;}
.y43{bottom:778.605000px;}
.y5e{bottom:792.285000px;}
.yac{bottom:792.465000px;}
.ya{bottom:795.525000px;}
.y7d{bottom:798.585000px;}
.y2a{bottom:801.645000px;}
.ycd{bottom:806.685000px;}
.y5d{bottom:823.425000px;}
.yab{bottom:823.605000px;}
.y42{bottom:828.825000px;}
.y7c{bottom:829.545000px;}
.y9{bottom:831.705000px;}
.y29{bottom:832.785000px;}
.y5c{bottom:854.430000px;}
.yaa{bottom:854.610000px;}
.ycc{bottom:855.690000px;}
.y41{bottom:860.010000px;}
.y7b{bottom:860.730000px;}
.y8{bottom:867.930000px;}
.y28{bottom:881.790000px;}
.y5b{bottom:885.570000px;}
.ya9{bottom:885.750000px;}
.ycb{bottom:886.830000px;}
.y7a{bottom:891.690000px;}
.y7{bottom:904.290000px;}
.y40{bottom:908.610000px;}
.ya8{bottom:916.710000px;}
.yca{bottom:917.790000px;}
.y79{bottom:922.830000px;}
.y27{bottom:930.930000px;}
.y5a{bottom:934.530000px;}
.y6{bottom:940.470000px;}
.ya7{bottom:947.850000px;}
.yc9{bottom:948.930000px;}
.y78{bottom:953.790000px;}
.y3f{bottom:958.110000px;}
.y59{bottom:965.670000px;}
.y5{bottom:976.650000px;}
.ya6{bottom:978.810000px;}
.y26{bottom:979.890000px;}
.y77{bottom:984.930000px;}
.y58{bottom:996.630000px;}
.y3e{bottom:1007.070000px;}
.ya5{bottom:1009.950000px;}
.y4{bottom:1012.830000px;}
.y76{bottom:1015.890000px;}
.yc8{bottom:1028.670000px;}
.y25{bottom:1029.030000px;}
.y3d{bottom:1038.210000px;}
.y57{bottom:1045.770000px;}
.y75{bottom:1047.030000px;}
.y3{bottom:1049.370000px;}
.y24{bottom:1059.990000px;}
.y56{bottom:1076.730000px;}
.y74{bottom:1077.990000px;}
.y2{bottom:1088.250000px;}
.y3c{bottom:1088.610000px;}
.y23{bottom:1091.130000px;}
.y55{bottom:1107.870000px;}
.y73{bottom:1109.130000px;}
.y1{bottom:1131.480000px;}
.y3b{bottom:1138.860000px;}
.y22{bottom:1139.760000px;}
.y72{bottom:1140.120000px;}
.h7{height:20.700000px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h8{height:72.562500px;}
.ha{height:74.004654px;}
.h4{height:82.676953px;}
.h5{height:84.898125px;}
.h3{height:93.983203px;}
.h2{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:9.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.656000px;}
.x7{left:155.010000px;}
.xc{left:170.130000px;}
.x6{left:176.610000px;}
.x8{left:179.130000px;}
.xd{left:181.650000px;}
.x3{left:191.370000px;}
.xe{left:208.650000px;}
.x2{left:225.750000px;}
.xf{left:233.850000px;}
.x10{left:235.650000px;}
.x1{left:237.990000px;}
.xa{left:348.195000px;}
.x9{left:373.215000px;}
.x5{left:446.505000px;}
.xb{left:756.540000px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.303467pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.606720pt;}
.ls5{letter-spacing:0.640000pt;}
.ls10{letter-spacing:6.400000pt;}
.lsd{letter-spacing:30.208000pt;}
.ls11{letter-spacing:39.808000pt;}
.lsc{letter-spacing:45.568000pt;}
.ls12{letter-spacing:48.768000pt;}
.ls2{letter-spacing:773.738667pt;}
.ls1{letter-spacing:1114.965333pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-18.416533pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.168000pt;}
.ws8{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-2.774613pt;}
._2{margin-left:-1.647360pt;}
._0{width:0.936320pt;}
._1{width:2.351147pt;}
._20{width:3.259733pt;}
._14{width:4.160000pt;}
._15{width:5.216000pt;}
._19{width:6.240000pt;}
._1a{width:7.360000pt;}
._16{width:8.896000pt;}
._17{width:10.210347pt;}
._10{width:11.264000pt;}
._f{width:12.271360pt;}
._13{width:13.614293pt;}
._18{width:14.605653pt;}
._21{width:16.896000pt;}
._b{width:18.560000pt;}
._22{width:19.586347pt;}
._23{width:20.562987pt;}
._8{width:21.760000pt;}
._11{width:22.848000pt;}
._12{width:24.192000pt;}
._26{width:25.185280pt;}
._4{width:26.294400pt;}
._3{width:27.488000pt;}
._e{width:28.938667pt;}
._1f{width:29.888000pt;}
._1e{width:31.029333pt;}
._27{width:32.007040pt;}
._24{width:33.088000pt;}
._c{width:35.136000pt;}
._d{width:36.183680pt;}
._1b{width:37.383040pt;}
._1c{width:38.291200pt;}
._28{width:39.276800pt;}
._25{width:43.648000pt;}
._5{width:104.896000pt;}
._6{width:105.863040pt;}
._7{width:153.937707pt;}
._a{width:156.800000pt;}
._9{width:172.800000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:4.000000pt;}
.y20{bottom:47.072000pt;}
.y1f{bottom:51.232000pt;}
.y92{bottom:108.832000pt;}
.y54{bottom:109.472000pt;}
.y1e{bottom:112.512000pt;}
.y71{bottom:115.872000pt;}
.yc7{bottom:118.432000pt;}
.ya4{bottom:124.832000pt;}
.y1d{bottom:133.946667pt;}
.y91{bottom:136.506667pt;}
.y53{bottom:136.986667pt;}
.y3a{bottom:143.066667pt;}
.y70{bottom:143.386667pt;}
.yc6{bottom:146.106667pt;}
.ya3{bottom:152.506667pt;}
.y1c{bottom:155.386667pt;}
.y90{bottom:164.026667pt;}
.y52{bottom:164.666667pt;}
.yb4{bottom:169.466667pt;}
.y39{bottom:170.586667pt;}
.y6f{bottom:171.066667pt;}
.yc5{bottom:173.626667pt;}
.y1b{bottom:176.826667pt;}
.ya2{bottom:180.026667pt;}
.y8f{bottom:191.706667pt;}
.y51{bottom:192.186667pt;}
.yb3{bottom:196.986667pt;}
.yc4{bottom:201.306667pt;}
.ya1{bottom:207.706667pt;}
.y38{bottom:214.106667pt;}
.y6e{bottom:214.266667pt;}
.y8e{bottom:219.226667pt;}
.y1a{bottom:219.866667pt;}
.yb2{bottom:224.666667pt;}
.yc3{bottom:228.826667pt;}
.ya0{bottom:235.226667pt;}
.y19{bottom:241.306667pt;}
.y37{bottom:241.786667pt;}
.y8d{bottom:246.906667pt;}
.yc2{bottom:256.506667pt;}
.yb1{bottom:257.466667pt;}
.y6d{bottom:258.266667pt;}
.y18{bottom:262.746667pt;}
.y9f{bottom:262.906667pt;}
.y50{bottom:264.666667pt;}
.y36{bottom:269.306667pt;}
.y8c{bottom:274.466667pt;}
.yb0{bottom:285.186667pt;}
.y6c{bottom:285.826667pt;}
.y9e{bottom:290.466667pt;}
.yc1{bottom:291.106667pt;}
.y4f{bottom:292.226667pt;}
.y35{bottom:297.026667pt;}
.y8b{bottom:302.146667pt;}
.y17{bottom:305.666667pt;}
.yc0{bottom:312.066667pt;}
.y6b{bottom:313.506667pt;}
.y9d{bottom:318.146667pt;}
.y34{bottom:324.546667pt;}
.y16{bottom:327.106667pt;}
.y8a{bottom:329.666667pt;}
.ybf{bottom:330.626667pt;}
.y4e{bottom:337.026667pt;}
.y6a{bottom:341.026667pt;}
.y9c{bottom:345.666667pt;}
.y15{bottom:348.706667pt;}
.ybe{bottom:351.586667pt;}
.y33{bottom:352.226667pt;}
.y89{bottom:357.346667pt;}
.y4d{bottom:364.546667pt;}
.y69{bottom:368.706667pt;}
.ybd{bottom:370.146667pt;}
.y9b{bottom:373.346667pt;}
.y32{bottom:379.746667pt;}
.y14{bottom:380.546667pt;}
.y88{bottom:390.146667pt;}
.ybc{bottom:391.106667pt;}
.y4c{bottom:392.226667pt;}
.y9a{bottom:400.866667pt;}
.y31{bottom:407.426667pt;}
.ybb{bottom:409.666667pt;}
.y68{bottom:412.226667pt;}
.y13{bottom:415.426667pt;}
.y87{bottom:417.826667pt;}
.yba{bottom:428.066667pt;}
.y99{bottom:428.546667pt;}
.y4b{bottom:436.866667pt;}
.y67{bottom:439.906667pt;}
.yb9{bottom:446.466667pt;}
.y12{bottom:447.586667pt;}
.yd6{bottom:450.306667pt;}
.y30{bottom:450.626667pt;}
.y98{bottom:456.066667pt;}
.y86{bottom:461.346667pt;}
.y4a{bottom:464.546667pt;}
.y66{bottom:467.426667pt;}
.yd5{bottom:477.986667pt;}
.y11{bottom:479.746667pt;}
.y97{bottom:483.746667pt;}
.y85{bottom:489.026667pt;}
.yb8{bottom:489.986667pt;}
.y49{bottom:492.066667pt;}
.y2f{bottom:494.626667pt;}
.y65{bottom:495.106667pt;}
.yd4{bottom:505.506667pt;}
.y96{bottom:511.266667pt;}
.y10{bottom:513.826667pt;}
.y84{bottom:516.573333pt;}
.yb7{bottom:517.533333pt;}
.y64{bottom:522.653333pt;}
.yd3{bottom:534.333333pt;}
.y48{bottom:536.893333pt;}
.y2e{bottom:538.173333pt;}
.y95{bottom:538.973333pt;}
.y83{bottom:544.253333pt;}
.yf{bottom:546.493333pt;}
.y63{bottom:550.333333pt;}
.yb6{bottom:560.893333pt;}
.yd2{bottom:561.853333pt;}
.y47{bottom:564.573333pt;}
.y94{bottom:566.493333pt;}
.y82{bottom:571.773333pt;}
.y62{bottom:577.853333pt;}
.ye{bottom:578.653333pt;}
.y2d{bottom:581.853333pt;}
.yb5{bottom:588.733333pt;}
.yd1{bottom:589.533333pt;}
.y93{bottom:594.173333pt;}
.y81{bottom:599.453333pt;}
.y61{bottom:605.533333pt;}
.y46{bottom:609.213333pt;}
.yd{bottom:610.493333pt;}
.yd0{bottom:617.053333pt;}
.yaf{bottom:621.693333pt;}
.y2c{bottom:625.373333pt;}
.y80{bottom:626.973333pt;}
.y60{bottom:633.053333pt;}
.y45{bottom:636.893333pt;}
.yc{bottom:642.653333pt;}
.yae{bottom:649.373333pt;}
.y7f{bottom:654.653333pt;}
.ycf{bottom:661.853333pt;}
.y44{bottom:664.413333pt;}
.y2b{bottom:669.053333pt;}
.yb{bottom:674.973333pt;}
.y5f{bottom:676.733333pt;}
.yad{bottom:676.893333pt;}
.y7e{bottom:682.173333pt;}
.yce{bottom:689.373333pt;}
.y43{bottom:692.093333pt;}
.y5e{bottom:704.253333pt;}
.yac{bottom:704.413333pt;}
.ya{bottom:707.133333pt;}
.y7d{bottom:709.853333pt;}
.y2a{bottom:712.573333pt;}
.ycd{bottom:717.053333pt;}
.y5d{bottom:731.933333pt;}
.yab{bottom:732.093333pt;}
.y42{bottom:736.733333pt;}
.y7c{bottom:737.373333pt;}
.y9{bottom:739.293333pt;}
.y29{bottom:740.253333pt;}
.y5c{bottom:759.493333pt;}
.yaa{bottom:759.653333pt;}
.ycc{bottom:760.613333pt;}
.y41{bottom:764.453333pt;}
.y7b{bottom:765.093333pt;}
.y8{bottom:771.493333pt;}
.y28{bottom:783.813333pt;}
.y5b{bottom:787.173333pt;}
.ya9{bottom:787.333333pt;}
.ycb{bottom:788.293333pt;}
.y7a{bottom:792.613333pt;}
.y7{bottom:803.813333pt;}
.y40{bottom:807.653333pt;}
.ya8{bottom:814.853333pt;}
.yca{bottom:815.813333pt;}
.y79{bottom:820.293333pt;}
.y27{bottom:827.493333pt;}
.y5a{bottom:830.693333pt;}
.y6{bottom:835.973333pt;}
.ya7{bottom:842.533333pt;}
.yc9{bottom:843.493333pt;}
.y78{bottom:847.813333pt;}
.y3f{bottom:851.653333pt;}
.y59{bottom:858.373333pt;}
.y5{bottom:868.133333pt;}
.ya6{bottom:870.053333pt;}
.y26{bottom:871.013333pt;}
.y77{bottom:875.493333pt;}
.y58{bottom:885.893333pt;}
.y3e{bottom:895.173333pt;}
.ya5{bottom:897.733333pt;}
.y4{bottom:900.293333pt;}
.y76{bottom:903.013333pt;}
.yc8{bottom:914.373333pt;}
.y25{bottom:914.693333pt;}
.y3d{bottom:922.853333pt;}
.y57{bottom:929.573333pt;}
.y75{bottom:930.693333pt;}
.y3{bottom:932.773333pt;}
.y24{bottom:942.213333pt;}
.y56{bottom:957.093333pt;}
.y74{bottom:958.213333pt;}
.y2{bottom:967.333333pt;}
.y3c{bottom:967.653333pt;}
.y23{bottom:969.893333pt;}
.y55{bottom:984.773333pt;}
.y73{bottom:985.893333pt;}
.y1{bottom:1005.760000pt;}
.y3b{bottom:1012.320000pt;}
.y22{bottom:1013.120000pt;}
.y72{bottom:1013.440000pt;}
.h7{height:18.400000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h8{height:64.500000pt;}
.ha{height:65.781915pt;}
.h4{height:73.490625pt;}
.h5{height:75.465000pt;}
.h3{height:83.540625pt;}
.h2{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.472000pt;}
.x7{left:137.786667pt;}
.xc{left:151.226667pt;}
.x6{left:156.986667pt;}
.x8{left:159.226667pt;}
.xd{left:161.466667pt;}
.x3{left:170.106667pt;}
.xe{left:185.466667pt;}
.x2{left:200.666667pt;}
.xf{left:207.866667pt;}
.x10{left:209.466667pt;}
.x1{left:211.546667pt;}
.xa{left:309.506667pt;}
.x9{left:331.746667pt;}
.x5{left:396.893333pt;}
.xb{left:672.480000pt;}
}




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