
    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_4ae9b78a5a1b2ad8daeb1903.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.166000;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_03c2d9ab5aa5d4f105ddf896.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065000;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_aea80690a0b270a72415ea96.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.131000;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_6b99bca7befd7ac17fbf060a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bd66dae6ef8460f3c7fde1f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.166000;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7c431c764b5e1f5d18e662b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.157000;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fc8e008e3526954edb0078da.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.892578;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:ffa;src:url('chunks/assets/font_3312ffb5579f6f8cd4a7ad76.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.157000;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:ffb;src:url('chunks/assets/font_6e2609073bec243fc3b55660.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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;}
.v1{vertical-align:3.000000px;}
.lsc{letter-spacing:-1.620000px;}
.ls8{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.540000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.084000px;}
.lsa{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.276000px;}
.ls6{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.600000px;}
.ls11{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.780000px;}
.ls12{letter-spacing:1.092000px;}
.ls1{letter-spacing:2.820000px;}
.lse{letter-spacing:6.000000px;}
.lsf{letter-spacing:32.820000px;}
.ls3{letter-spacing:58.320000px;}
.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:-108.000000px;}
.ws6{word-spacing:-60.000000px;}
.ws4{word-spacing:-12.300000px;}
.ws1{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.460000px;}
.ws7{word-spacing:-10.692000px;}
.ws8{word-spacing:-9.876000px;}
.ws3{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-4.260000px;}
._3{margin-left:-2.820000px;}
._1{margin-left:-1.620000px;}
._0{width:1.050000px;}
._2{width:3.042000px;}
._5{width:4.260000px;}
._6{width:5.286000px;}
._4{width:6.660000px;}
._8{width:7.950000px;}
._9{width:9.360000px;}
._a{width:10.830000px;}
._7{width:13.380000px;}
._c{width:14.580000px;}
._b{width:16.410000px;}
._f{width:22.620000px;}
._e{width:24.540000px;}
._10{width:25.920000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:6.000000px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.375000px;}
.y2f{bottom:3.000000px;}
.y2d{bottom:15.750000px;}
.y3{bottom:25.500000px;}
.y2e{bottom:27.750000px;}
.y2c{bottom:30.750000px;}
.y2b{bottom:112.912500px;}
.y8d{bottom:121.537500px;}
.ybc{bottom:130.912500px;}
.y2a{bottom:131.662500px;}
.y8c{bottom:140.662500px;}
.y60{bottom:145.537500px;}
.ybb{bottom:145.912500px;}
.y29{bottom:150.420000px;}
.y8b{bottom:159.420000px;}
.yba{bottom:160.920000px;}
.y5f{bottom:164.295000px;}
.y28{bottom:169.545000px;}
.y8a{bottom:178.575000px;}
.yb9{bottom:180.450000px;}
.y5e{bottom:183.075000px;}
.y27{bottom:188.325000px;}
.y89{bottom:198.075000px;}
.yb8{bottom:201.450000px;}
.y5d{bottom:202.200000px;}
.y26{bottom:207.075000px;}
.yb7{bottom:222.450000px;}
.y5c{bottom:223.200000px;}
.y25{bottom:225.825000px;}
.y88{bottom:228.825000px;}
.yb6{bottom:243.450000px;}
.y5b{bottom:244.575000px;}
.y87{bottom:247.950000px;}
.y5a{bottom:263.325000px;}
.yb5{bottom:264.450000px;}
.y24{bottom:264.825000px;}
.y86{bottom:267.075000px;}
.y59{bottom:282.075000px;}
.yb4{bottom:285.450000px;}
.y85{bottom:285.825000px;}
.y23{bottom:297.825000px;}
.y84{bottom:305.370000px;}
.yb3{bottom:306.495000px;}
.y22{bottom:316.995000px;}
.y58{bottom:321.105000px;}
.yb2{bottom:327.480000px;}
.y83{bottom:336.120000px;}
.y21{bottom:336.495000px;}
.y57{bottom:342.120000px;}
.yb1{bottom:348.480000px;}
.y82{bottom:355.230000px;}
.y20{bottom:355.620000px;}
.y56{bottom:361.230000px;}
.yb0{bottom:369.495000px;}
.y81{bottom:373.995000px;}
.y1f{bottom:374.370000px;}
.y55{bottom:379.995000px;}
.y1e{bottom:393.120000px;}
.y54{bottom:398.730000px;}
.yaf{bottom:408.495000px;}
.y1d{bottom:412.245000px;}
.y53{bottom:417.495000px;}
.yae{bottom:429.495000px;}
.y1c{bottom:430.995000px;}
.y80{bottom:431.400000px;}
.y52{bottom:436.650000px;}
.y1b{bottom:449.775000px;}
.yad{bottom:450.525000px;}
.y7f{bottom:450.900000px;}
.y51{bottom:455.400000px;}
.y1a{bottom:468.900000px;}
.y7e{bottom:469.650000px;}
.y50{bottom:474.150000px;}
.y19{bottom:487.650000px;}
.yac{bottom:488.400000px;}
.y7d{bottom:490.650000px;}
.y4f{bottom:493.275000px;}
.y18{bottom:506.400000px;}
.yab{bottom:507.150000px;}
.y7c{bottom:511.650000px;}
.y4e{bottom:512.025000px;}
.y17{bottom:525.150000px;}
.y7b{bottom:530.400000px;}
.y4d{bottom:530.775000px;}
.yaa{bottom:538.275000px;}
.y16{bottom:544.275000px;}
.y4c{bottom:549.525000px;}
.ya9{bottom:557.025000px;}
.y15{bottom:563.070000px;}
.y4b{bottom:568.320000px;}
.ya8{bottom:575.820000px;}
.y7a{bottom:587.070000px;}
.ya7{bottom:594.570000px;}
.y14{bottom:602.070000px;}
.y79{bottom:605.820000px;}
.y4a{bottom:607.320000px;}
.ya6{bottom:614.070000px;}
.y13{bottom:620.820000px;}
.y78{bottom:624.945000px;}
.y49{bottom:628.695000px;}
.ya5{bottom:632.820000px;}
.y12{bottom:639.570000px;}
.y77{bottom:643.695000px;}
.y48{bottom:647.445000px;}
.ya4{bottom:651.570000px;}
.y11{bottom:658.695000px;}
.y76{bottom:662.445000px;}
.y47{bottom:666.195000px;}
.ya3{bottom:670.320000px;}
.y10{bottom:677.445000px;}
.y75{bottom:681.570000px;}
.y46{bottom:685.320000px;}
.yf{bottom:696.225000px;}
.y74{bottom:700.350000px;}
.y45{bottom:704.100000px;}
.ya2{bottom:707.475000px;}
.y73{bottom:719.100000px;}
.y44{bottom:722.850000px;}
.ya1{bottom:726.225000px;}
.ye{bottom:736.725000px;}
.y43{bottom:741.600000px;}
.ya0{bottom:744.975000px;}
.y72{bottom:758.100000px;}
.y42{bottom:760.725000px;}
.y9f{bottom:764.100000px;}
.y71{bottom:779.100000px;}
.y41{bottom:779.475000px;}
.y9e{bottom:783.225000px;}
.yd{bottom:788.850000px;}
.y70{bottom:797.850000px;}
.y40{bottom:798.225000px;}
.y9d{bottom:801.975000px;}
.yc{bottom:807.600000px;}
.y3f{bottom:817.020000px;}
.y9c{bottom:823.005000px;}
.yb{bottom:828.645000px;}
.y6f{bottom:835.755000px;}
.y3e{bottom:836.145000px;}
.y9b{bottom:841.755000px;}
.ya{bottom:849.645000px;}
.y6e{bottom:854.505000px;}
.y3d{bottom:854.880000px;}
.y9a{bottom:860.505000px;}
.y6d{bottom:873.630000px;}
.y99{bottom:879.630000px;}
.y9{bottom:882.630000px;}
.y6c{bottom:892.380000px;}
.y3c{bottom:893.880000px;}
.y98{bottom:898.380000px;}
.y6b{bottom:911.130000px;}
.y3b{bottom:914.880000px;}
.y97{bottom:917.505000px;}
.y6a{bottom:929.880000px;}
.y8{bottom:934.755000px;}
.y3a{bottom:935.880000px;}
.y96{bottom:936.255000px;}
.y69{bottom:949.050000px;}
.y95{bottom:955.425000px;}
.y39{bottom:956.925000px;}
.y68{bottom:967.800000px;}
.y7{bottom:969.300000px;}
.y94{bottom:974.175000px;}
.y38{bottom:977.925000px;}
.y67{bottom:986.550000px;}
.y93{bottom:993.300000px;}
.y37{bottom:996.675000px;}
.y6{bottom:1001.550000px;}
.y66{bottom:1005.300000px;}
.y92{bottom:1012.050000px;}
.y36{bottom:1017.675000px;}
.y65{bottom:1024.425000px;}
.y91{bottom:1031.175000px;}
.y35{bottom:1036.800000px;}
.y64{bottom:1043.175000px;}
.y90{bottom:1049.925000px;}
.y34{bottom:1055.550000px;}
.y5{bottom:1059.300000px;}
.y63{bottom:1061.925000px;}
.y8f{bottom:1070.925000px;}
.y33{bottom:1074.330000px;}
.y32{bottom:1093.080000px;}
.y8e{bottom:1109.955000px;}
.y62{bottom:1111.830000px;}
.y31{bottom:1112.205000px;}
.y61{bottom:1130.580000px;}
.y30{bottom:1130.955000px;}
.y4{bottom:1154.955000px;}
.y1{bottom:1169.580000px;}
.h2{height:5.244000px;}
.ha{height:17.250000px;}
.h9{height:41.952000px;}
.h8{height:44.952000px;}
.h7{height:51.360000px;}
.h4{height:52.440000px;}
.h1{height:63.787500px;}
.h3{height:64.725000px;}
.h6{height:71.904000px;}
.h5{height:92.448000px;}
.h0{height:1263.000000px;}
.w5{width:73.537500px;}
.w2{width:213.495000px;}
.w3{width:295.605000px;}
.w4{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:28.125000px;}
.x4{left:30.750000px;}
.x8{left:45.795000px;}
.x5{left:102.037487px;}
.x9{left:129.037487px;}
.xa{left:156.074987px;}
.xb{left:183.074987px;}
.x2{left:184.950000px;}
.x3{left:242.370000px;}
.x7{left:717.300000px;}
.x6{left:791.204987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.lsc{letter-spacing:-1.440000pt;}
.ls8{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.074667pt;}
.lsa{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.245333pt;}
.ls6{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.533333pt;}
.ls11{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.693333pt;}
.ls12{letter-spacing:0.970667pt;}
.ls1{letter-spacing:2.506667pt;}
.lse{letter-spacing:5.333333pt;}
.lsf{letter-spacing:29.173333pt;}
.ls3{letter-spacing:51.840000pt;}
.ws0{word-spacing:-96.000000pt;}
.ws6{word-spacing:-53.333333pt;}
.ws4{word-spacing:-10.933333pt;}
.ws1{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.186667pt;}
.ws7{word-spacing:-9.504000pt;}
.ws8{word-spacing:-8.778667pt;}
.ws3{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-3.786667pt;}
._3{margin-left:-2.506667pt;}
._1{margin-left:-1.440000pt;}
._0{width:0.933333pt;}
._2{width:2.704000pt;}
._5{width:3.786667pt;}
._6{width:4.698667pt;}
._4{width:5.920000pt;}
._8{width:7.066667pt;}
._9{width:8.320000pt;}
._a{width:9.626667pt;}
._7{width:11.893333pt;}
._c{width:12.960000pt;}
._b{width:14.586667pt;}
._f{width:20.106667pt;}
._e{width:21.813333pt;}
._10{width:23.040000pt;}
.fs0{font-size:5.333333pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.333333pt;}
.y2f{bottom:2.666667pt;}
.y2d{bottom:14.000000pt;}
.y3{bottom:22.666667pt;}
.y2e{bottom:24.666667pt;}
.y2c{bottom:27.333333pt;}
.y2b{bottom:100.366667pt;}
.y8d{bottom:108.033333pt;}
.ybc{bottom:116.366667pt;}
.y2a{bottom:117.033333pt;}
.y8c{bottom:125.033333pt;}
.y60{bottom:129.366667pt;}
.ybb{bottom:129.700000pt;}
.y29{bottom:133.706667pt;}
.y8b{bottom:141.706667pt;}
.yba{bottom:143.040000pt;}
.y5f{bottom:146.040000pt;}
.y28{bottom:150.706667pt;}
.y8a{bottom:158.733333pt;}
.yb9{bottom:160.400000pt;}
.y5e{bottom:162.733333pt;}
.y27{bottom:167.400000pt;}
.y89{bottom:176.066667pt;}
.yb8{bottom:179.066667pt;}
.y5d{bottom:179.733333pt;}
.y26{bottom:184.066667pt;}
.yb7{bottom:197.733333pt;}
.y5c{bottom:198.400000pt;}
.y25{bottom:200.733333pt;}
.y88{bottom:203.400000pt;}
.yb6{bottom:216.400000pt;}
.y5b{bottom:217.400000pt;}
.y87{bottom:220.400000pt;}
.y5a{bottom:234.066667pt;}
.yb5{bottom:235.066667pt;}
.y24{bottom:235.400000pt;}
.y86{bottom:237.400000pt;}
.y59{bottom:250.733333pt;}
.yb4{bottom:253.733333pt;}
.y85{bottom:254.066667pt;}
.y23{bottom:264.733333pt;}
.y84{bottom:271.440000pt;}
.yb3{bottom:272.440000pt;}
.y22{bottom:281.773333pt;}
.y58{bottom:285.426667pt;}
.yb2{bottom:291.093333pt;}
.y83{bottom:298.773333pt;}
.y21{bottom:299.106667pt;}
.y57{bottom:304.106667pt;}
.yb1{bottom:309.760000pt;}
.y82{bottom:315.760000pt;}
.y20{bottom:316.106667pt;}
.y56{bottom:321.093333pt;}
.yb0{bottom:328.440000pt;}
.y81{bottom:332.440000pt;}
.y1f{bottom:332.773333pt;}
.y55{bottom:337.773333pt;}
.y1e{bottom:349.440000pt;}
.y54{bottom:354.426667pt;}
.yaf{bottom:363.106667pt;}
.y1d{bottom:366.440000pt;}
.y53{bottom:371.106667pt;}
.yae{bottom:381.773333pt;}
.y1c{bottom:383.106667pt;}
.y80{bottom:383.466667pt;}
.y52{bottom:388.133333pt;}
.y1b{bottom:399.800000pt;}
.yad{bottom:400.466667pt;}
.y7f{bottom:400.800000pt;}
.y51{bottom:404.800000pt;}
.y1a{bottom:416.800000pt;}
.y7e{bottom:417.466667pt;}
.y50{bottom:421.466667pt;}
.y19{bottom:433.466667pt;}
.yac{bottom:434.133333pt;}
.y7d{bottom:436.133333pt;}
.y4f{bottom:438.466667pt;}
.y18{bottom:450.133333pt;}
.yab{bottom:450.800000pt;}
.y7c{bottom:454.800000pt;}
.y4e{bottom:455.133333pt;}
.y17{bottom:466.800000pt;}
.y7b{bottom:471.466667pt;}
.y4d{bottom:471.800000pt;}
.yaa{bottom:478.466667pt;}
.y16{bottom:483.800000pt;}
.y4c{bottom:488.466667pt;}
.ya9{bottom:495.133333pt;}
.y15{bottom:500.506667pt;}
.y4b{bottom:505.173333pt;}
.ya8{bottom:511.840000pt;}
.y7a{bottom:521.840000pt;}
.ya7{bottom:528.506667pt;}
.y14{bottom:535.173333pt;}
.y79{bottom:538.506667pt;}
.y4a{bottom:539.840000pt;}
.ya6{bottom:545.840000pt;}
.y13{bottom:551.840000pt;}
.y78{bottom:555.506667pt;}
.y49{bottom:558.840000pt;}
.ya5{bottom:562.506667pt;}
.y12{bottom:568.506667pt;}
.y77{bottom:572.173333pt;}
.y48{bottom:575.506667pt;}
.ya4{bottom:579.173333pt;}
.y11{bottom:585.506667pt;}
.y76{bottom:588.840000pt;}
.y47{bottom:592.173333pt;}
.ya3{bottom:595.840000pt;}
.y10{bottom:602.173333pt;}
.y75{bottom:605.840000pt;}
.y46{bottom:609.173333pt;}
.yf{bottom:618.866667pt;}
.y74{bottom:622.533333pt;}
.y45{bottom:625.866667pt;}
.ya2{bottom:628.866667pt;}
.y73{bottom:639.200000pt;}
.y44{bottom:642.533333pt;}
.ya1{bottom:645.533333pt;}
.ye{bottom:654.866667pt;}
.y43{bottom:659.200000pt;}
.ya0{bottom:662.200000pt;}
.y72{bottom:673.866667pt;}
.y42{bottom:676.200000pt;}
.y9f{bottom:679.200000pt;}
.y71{bottom:692.533333pt;}
.y41{bottom:692.866667pt;}
.y9e{bottom:696.200000pt;}
.yd{bottom:701.200000pt;}
.y70{bottom:709.200000pt;}
.y40{bottom:709.533333pt;}
.y9d{bottom:712.866667pt;}
.yc{bottom:717.866667pt;}
.y3f{bottom:726.240000pt;}
.y9c{bottom:731.560000pt;}
.yb{bottom:736.573333pt;}
.y6f{bottom:742.893333pt;}
.y3e{bottom:743.240000pt;}
.y9b{bottom:748.226667pt;}
.ya{bottom:755.240000pt;}
.y6e{bottom:759.560000pt;}
.y3d{bottom:759.893333pt;}
.y9a{bottom:764.893333pt;}
.y6d{bottom:776.560000pt;}
.y99{bottom:781.893333pt;}
.y9{bottom:784.560000pt;}
.y6c{bottom:793.226667pt;}
.y3c{bottom:794.560000pt;}
.y98{bottom:798.560000pt;}
.y6b{bottom:809.893333pt;}
.y3b{bottom:813.226667pt;}
.y97{bottom:815.560000pt;}
.y6a{bottom:826.560000pt;}
.y8{bottom:830.893333pt;}
.y3a{bottom:831.893333pt;}
.y96{bottom:832.226667pt;}
.y69{bottom:843.600000pt;}
.y95{bottom:849.266667pt;}
.y39{bottom:850.600000pt;}
.y68{bottom:860.266667pt;}
.y7{bottom:861.600000pt;}
.y94{bottom:865.933333pt;}
.y38{bottom:869.266667pt;}
.y67{bottom:876.933333pt;}
.y93{bottom:882.933333pt;}
.y37{bottom:885.933333pt;}
.y6{bottom:890.266667pt;}
.y66{bottom:893.600000pt;}
.y92{bottom:899.600000pt;}
.y36{bottom:904.600000pt;}
.y65{bottom:910.600000pt;}
.y91{bottom:916.600000pt;}
.y35{bottom:921.600000pt;}
.y64{bottom:927.266667pt;}
.y90{bottom:933.266667pt;}
.y34{bottom:938.266667pt;}
.y5{bottom:941.600000pt;}
.y63{bottom:943.933333pt;}
.y8f{bottom:951.933333pt;}
.y33{bottom:954.960000pt;}
.y32{bottom:971.626667pt;}
.y8e{bottom:986.626667pt;}
.y62{bottom:988.293333pt;}
.y31{bottom:988.626667pt;}
.y61{bottom:1004.960000pt;}
.y30{bottom:1005.293333pt;}
.y4{bottom:1026.626667pt;}
.y1{bottom:1039.626667pt;}
.h2{height:4.661333pt;}
.ha{height:15.333333pt;}
.h9{height:37.290667pt;}
.h8{height:39.957333pt;}
.h7{height:45.653333pt;}
.h4{height:46.613333pt;}
.h1{height:56.700000pt;}
.h3{height:57.533333pt;}
.h6{height:63.914667pt;}
.h5{height:82.176000pt;}
.h0{height:1122.666667pt;}
.w5{width:65.366667pt;}
.w2{width:189.773333pt;}
.w3{width:262.760000pt;}
.w4{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:25.000000pt;}
.x4{left:27.333333pt;}
.x8{left:40.706667pt;}
.x5{left:90.699988pt;}
.x9{left:114.699988pt;}
.xa{left:138.733322pt;}
.xb{left:162.733322pt;}
.x2{left:164.400000pt;}
.x3{left:215.440000pt;}
.x7{left:637.600000pt;}
.x6{left:703.293322pt;}
}




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