
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86635634c0f9d69ad47d9431.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_430e3a6b91ec4db095c7d218.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_462264169437787dab3cb939.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_11f4031dda303cf0bfa47e06.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_4ea5bb958c96eea40fd23a46.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6e59ccb242100349c05f352a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b203c2934d55073c076b0e43.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_48b2eceb210a021eef8da4fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-1.044000px;}
.ls5{letter-spacing:-0.463800px;}
.lsb{letter-spacing:-0.326400px;}
.ls14{letter-spacing:-0.240600px;}
.ls11{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.115800px;}
.ls12{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.023760px;}
.ls1b{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.066000px;}
.ls16{letter-spacing:0.174000px;}
.ls7{letter-spacing:0.190200px;}
.ls6{letter-spacing:0.256200px;}
.lse{letter-spacing:0.617760px;}
.ls10{letter-spacing:0.654000px;}
.ls19{letter-spacing:0.660000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls15{letter-spacing:2.106720px;}
.lsd{letter-spacing:5.706720px;}
.ls1a{letter-spacing:12.186720px;}
.lsf{letter-spacing:15.066720px;}
.lsc{letter-spacing:21.546720px;}
.ls3{letter-spacing:38.106720px;}
.ls17{letter-spacing:42.570720px;}
.ls13{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws6{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.389960px;}
.ws9{word-spacing:-13.319160px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.wsb{word-spacing:-0.059760px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.617760px;}
._1e{margin-left:-7.854480px;}
._17{margin-left:-6.201840px;}
._a{margin-left:-3.466080px;}
._9{margin-left:-2.330640px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._6{width:2.974560px;}
._b{width:4.053360px;}
._7{width:5.079600px;}
._8{width:6.231120px;}
._c{width:7.250160px;}
._d{width:8.288880px;}
._f{width:9.979920px;}
._e{width:11.772720px;}
._1f{width:14.575200px;}
._21{width:16.238160px;}
._20{width:17.547840px;}
._22{width:18.804480px;}
._23{width:19.843680px;}
._1a{width:21.133440px;}
._15{width:34.540560px;}
._16{width:36.206880px;}
._24{width:37.305600px;}
._1d{width:46.427520px;}
._1b{width:50.310000px;}
._11{width:51.863760px;}
._14{width:61.894560px;}
._1c{width:65.311680px;}
._13{width:82.862640px;}
._12{width:178.233600px;}
._18{width:186.503760px;}
._19{width:190.816800px;}
._10{width:202.638240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:6.660000px;}
.y5f{bottom:7.560000px;}
.y62{bottom:7.740000px;}
.y68{bottom:9.900000px;}
.y9b{bottom:18.000000px;}
.y99{bottom:18.900000px;}
.y6a{bottom:27.720000px;}
.y6{bottom:61.236000px;}
.yab{bottom:90.036000px;}
.y31{bottom:94.896000px;}
.y66{bottom:101.736000px;}
.yaa{bottom:109.296000px;}
.ya3{bottom:111.096000px;}
.y30{bottom:115.956000px;}
.y71{bottom:119.016000px;}
.y65{bottom:122.796000px;}
.ya9{bottom:130.356000px;}
.ya2{bottom:132.156000px;}
.y2f{bottom:137.016000px;}
.y64{bottom:137.916000px;}
.ya8{bottom:151.410000px;}
.ya1{bottom:153.210000px;}
.y2e{bottom:158.070000px;}
.y63{bottom:160.590000px;}
.y70{bottom:161.130000px;}
.ya7{bottom:172.470000px;}
.ya0{bottom:174.270000px;}
.y2d{bottom:179.130000px;}
.y61{bottom:182.550000px;}
.ya6{bottom:193.530000px;}
.y9f{bottom:195.330000px;}
.y2c{bottom:200.190000px;}
.y6f{bottom:203.250000px;}
.y60{bottom:204.690000px;}
.ya5{bottom:214.590000px;}
.y9e{bottom:216.390000px;}
.y2b{bottom:221.250000px;}
.y5e{bottom:227.370000px;}
.ya4{bottom:235.650000px;}
.y9d{bottom:237.450000px;}
.y2a{bottom:242.310000px;}
.y6e{bottom:245.370000px;}
.y9c{bottom:252.570000px;}
.y5d{bottom:256.710000px;}
.y29{bottom:263.370000px;}
.y5c{bottom:277.770000px;}
.y28{bottom:284.475000px;}
.y9a{bottom:285.915000px;}
.y6d{bottom:287.535000px;}
.y5b{bottom:298.875000px;}
.y27{bottom:305.535000px;}
.y98{bottom:318.315000px;}
.y5a{bottom:319.935000px;}
.y26{bottom:326.595000px;}
.y6c{bottom:329.655000px;}
.y59{bottom:340.995000px;}
.y25{bottom:347.655000px;}
.y97{bottom:352.335000px;}
.y58{bottom:362.055000px;}
.y24{bottom:368.715000px;}
.y69{bottom:371.775000px;}
.y96{bottom:380.775000px;}
.y57{bottom:383.115000px;}
.y23{bottom:389.775000px;}
.y95{bottom:401.835000px;}
.y56{bottom:404.175000px;}
.y22{bottom:410.835000px;}
.y67{bottom:414.615000px;}
.y94{bottom:422.895000px;}
.y55{bottom:425.235000px;}
.y21{bottom:431.895000px;}
.y93{bottom:443.955000px;}
.y54{bottom:446.295000px;}
.y20{bottom:452.955000px;}
.y92{bottom:465.015000px;}
.y53{bottom:467.355000px;}
.y1f{bottom:474.015000px;}
.y91{bottom:486.075000px;}
.y52{bottom:488.415000px;}
.y1e{bottom:495.075000px;}
.y90{bottom:507.135000px;}
.y51{bottom:509.475000px;}
.y1d{bottom:516.135000px;}
.y8f{bottom:528.195000px;}
.y50{bottom:530.535000px;}
.y1c{bottom:537.195000px;}
.y8e{bottom:549.255000px;}
.y4f{bottom:551.595000px;}
.y1b{bottom:558.255000px;}
.y8d{bottom:570.345000px;}
.y4e{bottom:572.685000px;}
.y8c{bottom:591.405000px;}
.y4d{bottom:593.745000px;}
.y1a{bottom:602.745000px;}
.y8b{bottom:612.465000px;}
.y4c{bottom:614.805000px;}
.y19{bottom:632.625000px;}
.y8a{bottom:633.525000px;}
.y4b{bottom:635.865000px;}
.y18{bottom:653.685000px;}
.y89{bottom:654.585000px;}
.y4a{bottom:656.925000px;}
.y17{bottom:674.745000px;}
.y88{bottom:675.645000px;}
.y49{bottom:677.985000px;}
.y16{bottom:695.805000px;}
.y87{bottom:696.705000px;}
.y48{bottom:699.045000px;}
.y15{bottom:716.865000px;}
.y86{bottom:717.765000px;}
.y47{bottom:720.105000px;}
.y14{bottom:737.925000px;}
.y85{bottom:738.825000px;}
.y46{bottom:741.165000px;}
.y13{bottom:758.985000px;}
.y84{bottom:759.885000px;}
.y45{bottom:762.225000px;}
.y12{bottom:780.045000px;}
.y83{bottom:780.945000px;}
.y44{bottom:783.285000px;}
.y11{bottom:801.105000px;}
.y82{bottom:802.005000px;}
.y43{bottom:804.345000px;}
.y10{bottom:822.165000px;}
.y81{bottom:823.065000px;}
.y42{bottom:825.405000px;}
.yf{bottom:843.225000px;}
.y80{bottom:844.125000px;}
.y41{bottom:846.465000px;}
.ye{bottom:864.330000px;}
.y7f{bottom:865.230000px;}
.y40{bottom:867.570000px;}
.yd{bottom:885.390000px;}
.y7e{bottom:886.290000px;}
.y3f{bottom:888.630000px;}
.y7d{bottom:907.350000px;}
.yc{bottom:908.610000px;}
.y3e{bottom:909.690000px;}
.y7c{bottom:928.410000px;}
.y3d{bottom:930.570000px;}
.yb{bottom:934.890000px;}
.y7b{bottom:949.470000px;}
.y3c{bottom:951.630000px;}
.ya{bottom:955.950000px;}
.y7a{bottom:970.530000px;}
.y9{bottom:972.690000px;}
.y79{bottom:991.590000px;}
.y3b{bottom:993.750000px;}
.y8{bottom:995.010000px;}
.y78{bottom:1012.650000px;}
.y3a{bottom:1014.810000px;}
.y7{bottom:1020.210000px;}
.y77{bottom:1033.710000px;}
.y39{bottom:1035.870000px;}
.y76{bottom:1054.770000px;}
.y38{bottom:1056.930000px;}
.y5{bottom:1060.350000px;}
.y75{bottom:1075.830000px;}
.y37{bottom:1077.990000px;}
.y4{bottom:1092.570000px;}
.y74{bottom:1096.890000px;}
.y36{bottom:1099.050000px;}
.y73{bottom:1112.010000px;}
.y35{bottom:1120.110000px;}
.y3{bottom:1124.610000px;}
.y72{bottom:1133.820000px;}
.y34{bottom:1141.200000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1162.260000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h11{height:21.060000px;}
.h10{height:21.096000px;}
.hb{height:21.960000px;}
.hc{height:22.140000px;}
.hd{height:24.300000px;}
.h13{height:32.400000px;}
.h12{height:33.300000px;}
.h14{height:33.336000px;}
.h7{height:38.671172px;}
.he{height:42.120000px;}
.hf{height:42.156000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:43.020000px;}
.w9{width:52.416000px;}
.w5{width:54.000000px;}
.w4{width:64.440000px;}
.we{width:76.356000px;}
.w11{width:84.096000px;}
.wb{width:90.720000px;}
.wf{width:98.640000px;}
.w6{width:115.056000px;}
.w12{width:118.800000px;}
.wc{width:123.876000px;}
.w7{width:131.220000px;}
.wd{width:182.010000px;}
.w10{width:226.290000px;}
.w8{width:405.615000px;}
.w3{width:416.445000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:5.400000px;}
.x5{left:8.100000px;}
.x3{left:18.900000px;}
.xe{left:32.400000px;}
.x1{left:53.999987px;}
.x14{left:74.339987px;}
.x15{left:87.839987px;}
.x16{left:101.375987px;}
.x2{left:108.035987px;}
.xf{left:236.010000px;}
.x10{left:312.375000px;}
.x11{left:411.015000px;}
.x9{left:459.615000px;}
.x4{left:470.445000px;}
.xa{left:512.025000px;}
.x6{left:534.885000px;}
.xb{left:555.045000px;}
.x7{left:588.885000px;}
.x12{left:637.305000px;}
.xc{left:645.765000px;}
.x8{left:703.950000px;}
.x13{left:721.410000px;}
.x17{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.928000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsb{letter-spacing:-0.290133pt;}
.ls14{letter-spacing:-0.213867pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.102933pt;}
.ls12{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.021120pt;}
.ls1b{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.058667pt;}
.ls16{letter-spacing:0.154667pt;}
.ls7{letter-spacing:0.169067pt;}
.ls6{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.549120pt;}
.ls10{letter-spacing:0.581333pt;}
.ls19{letter-spacing:0.586667pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls15{letter-spacing:1.872640pt;}
.lsd{letter-spacing:5.072640pt;}
.ls1a{letter-spacing:10.832640pt;}
.lsf{letter-spacing:13.392640pt;}
.lsc{letter-spacing:19.152640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls17{letter-spacing:37.840640pt;}
.ls13{letter-spacing:40.912640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws6{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.902187pt;}
.ws9{word-spacing:-11.839253pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.wsb{word-spacing:-0.053120pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.882453pt;}
._1e{margin-left:-6.981760pt;}
._17{margin-left:-5.512747pt;}
._a{margin-left:-3.080960pt;}
._9{margin-left:-2.071680pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._6{width:2.644053pt;}
._b{width:3.602987pt;}
._7{width:4.515200pt;}
._8{width:5.538773pt;}
._c{width:6.444587pt;}
._d{width:7.367893pt;}
._f{width:8.871040pt;}
._e{width:10.464640pt;}
._1f{width:12.955733pt;}
._21{width:14.433920pt;}
._20{width:15.598080pt;}
._22{width:16.715093pt;}
._23{width:17.638827pt;}
._1a{width:18.785280pt;}
._15{width:30.702720pt;}
._16{width:32.183893pt;}
._24{width:33.160533pt;}
._1d{width:41.268907pt;}
._1b{width:44.720000pt;}
._11{width:46.101120pt;}
._14{width:55.017387pt;}
._1c{width:58.054827pt;}
._13{width:73.655680pt;}
._12{width:158.429867pt;}
._18{width:165.781120pt;}
._19{width:169.614933pt;}
._10{width:180.122880pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:5.920000pt;}
.y5f{bottom:6.720000pt;}
.y62{bottom:6.880000pt;}
.y68{bottom:8.800000pt;}
.y9b{bottom:16.000000pt;}
.y99{bottom:16.800000pt;}
.y6a{bottom:24.640000pt;}
.y6{bottom:54.432000pt;}
.yab{bottom:80.032000pt;}
.y31{bottom:84.352000pt;}
.y66{bottom:90.432000pt;}
.yaa{bottom:97.152000pt;}
.ya3{bottom:98.752000pt;}
.y30{bottom:103.072000pt;}
.y71{bottom:105.792000pt;}
.y65{bottom:109.152000pt;}
.ya9{bottom:115.872000pt;}
.ya2{bottom:117.472000pt;}
.y2f{bottom:121.792000pt;}
.y64{bottom:122.592000pt;}
.ya8{bottom:134.586667pt;}
.ya1{bottom:136.186667pt;}
.y2e{bottom:140.506667pt;}
.y63{bottom:142.746667pt;}
.y70{bottom:143.226667pt;}
.ya7{bottom:153.306667pt;}
.ya0{bottom:154.906667pt;}
.y2d{bottom:159.226667pt;}
.y61{bottom:162.266667pt;}
.ya6{bottom:172.026667pt;}
.y9f{bottom:173.626667pt;}
.y2c{bottom:177.946667pt;}
.y6f{bottom:180.666667pt;}
.y60{bottom:181.946667pt;}
.ya5{bottom:190.746667pt;}
.y9e{bottom:192.346667pt;}
.y2b{bottom:196.666667pt;}
.y5e{bottom:202.106667pt;}
.ya4{bottom:209.466667pt;}
.y9d{bottom:211.066667pt;}
.y2a{bottom:215.386667pt;}
.y6e{bottom:218.106667pt;}
.y9c{bottom:224.506667pt;}
.y5d{bottom:228.186667pt;}
.y29{bottom:234.106667pt;}
.y5c{bottom:246.906667pt;}
.y28{bottom:252.866667pt;}
.y9a{bottom:254.146667pt;}
.y6d{bottom:255.586667pt;}
.y5b{bottom:265.666667pt;}
.y27{bottom:271.586667pt;}
.y98{bottom:282.946667pt;}
.y5a{bottom:284.386667pt;}
.y26{bottom:290.306667pt;}
.y6c{bottom:293.026667pt;}
.y59{bottom:303.106667pt;}
.y25{bottom:309.026667pt;}
.y97{bottom:313.186667pt;}
.y58{bottom:321.826667pt;}
.y24{bottom:327.746667pt;}
.y69{bottom:330.466667pt;}
.y96{bottom:338.466667pt;}
.y57{bottom:340.546667pt;}
.y23{bottom:346.466667pt;}
.y95{bottom:357.186667pt;}
.y56{bottom:359.266667pt;}
.y22{bottom:365.186667pt;}
.y67{bottom:368.546667pt;}
.y94{bottom:375.906667pt;}
.y55{bottom:377.986667pt;}
.y21{bottom:383.906667pt;}
.y93{bottom:394.626667pt;}
.y54{bottom:396.706667pt;}
.y20{bottom:402.626667pt;}
.y92{bottom:413.346667pt;}
.y53{bottom:415.426667pt;}
.y1f{bottom:421.346667pt;}
.y91{bottom:432.066667pt;}
.y52{bottom:434.146667pt;}
.y1e{bottom:440.066667pt;}
.y90{bottom:450.786667pt;}
.y51{bottom:452.866667pt;}
.y1d{bottom:458.786667pt;}
.y8f{bottom:469.506667pt;}
.y50{bottom:471.586667pt;}
.y1c{bottom:477.506667pt;}
.y8e{bottom:488.226667pt;}
.y4f{bottom:490.306667pt;}
.y1b{bottom:496.226667pt;}
.y8d{bottom:506.973333pt;}
.y4e{bottom:509.053333pt;}
.y8c{bottom:525.693333pt;}
.y4d{bottom:527.773333pt;}
.y1a{bottom:535.773333pt;}
.y8b{bottom:544.413333pt;}
.y4c{bottom:546.493333pt;}
.y19{bottom:562.333333pt;}
.y8a{bottom:563.133333pt;}
.y4b{bottom:565.213333pt;}
.y18{bottom:581.053333pt;}
.y89{bottom:581.853333pt;}
.y4a{bottom:583.933333pt;}
.y17{bottom:599.773333pt;}
.y88{bottom:600.573333pt;}
.y49{bottom:602.653333pt;}
.y16{bottom:618.493333pt;}
.y87{bottom:619.293333pt;}
.y48{bottom:621.373333pt;}
.y15{bottom:637.213333pt;}
.y86{bottom:638.013333pt;}
.y47{bottom:640.093333pt;}
.y14{bottom:655.933333pt;}
.y85{bottom:656.733333pt;}
.y46{bottom:658.813333pt;}
.y13{bottom:674.653333pt;}
.y84{bottom:675.453333pt;}
.y45{bottom:677.533333pt;}
.y12{bottom:693.373333pt;}
.y83{bottom:694.173333pt;}
.y44{bottom:696.253333pt;}
.y11{bottom:712.093333pt;}
.y82{bottom:712.893333pt;}
.y43{bottom:714.973333pt;}
.y10{bottom:730.813333pt;}
.y81{bottom:731.613333pt;}
.y42{bottom:733.693333pt;}
.yf{bottom:749.533333pt;}
.y80{bottom:750.333333pt;}
.y41{bottom:752.413333pt;}
.ye{bottom:768.293333pt;}
.y7f{bottom:769.093333pt;}
.y40{bottom:771.173333pt;}
.yd{bottom:787.013333pt;}
.y7e{bottom:787.813333pt;}
.y3f{bottom:789.893333pt;}
.y7d{bottom:806.533333pt;}
.yc{bottom:807.653333pt;}
.y3e{bottom:808.613333pt;}
.y7c{bottom:825.253333pt;}
.y3d{bottom:827.173333pt;}
.yb{bottom:831.013333pt;}
.y7b{bottom:843.973333pt;}
.y3c{bottom:845.893333pt;}
.ya{bottom:849.733333pt;}
.y7a{bottom:862.693333pt;}
.y9{bottom:864.613333pt;}
.y79{bottom:881.413333pt;}
.y3b{bottom:883.333333pt;}
.y8{bottom:884.453333pt;}
.y78{bottom:900.133333pt;}
.y3a{bottom:902.053333pt;}
.y7{bottom:906.853333pt;}
.y77{bottom:918.853333pt;}
.y39{bottom:920.773333pt;}
.y76{bottom:937.573333pt;}
.y38{bottom:939.493333pt;}
.y5{bottom:942.533333pt;}
.y75{bottom:956.293333pt;}
.y37{bottom:958.213333pt;}
.y4{bottom:971.173333pt;}
.y74{bottom:975.013333pt;}
.y36{bottom:976.933333pt;}
.y73{bottom:988.453333pt;}
.y35{bottom:995.653333pt;}
.y3{bottom:999.653333pt;}
.y72{bottom:1007.840000pt;}
.y34{bottom:1014.400000pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1033.120000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h11{height:18.720000pt;}
.h10{height:18.752000pt;}
.hb{height:19.520000pt;}
.hc{height:19.680000pt;}
.hd{height:21.600000pt;}
.h13{height:28.800000pt;}
.h12{height:29.600000pt;}
.h14{height:29.632000pt;}
.h7{height:34.374375pt;}
.he{height:37.440000pt;}
.hf{height:37.472000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:38.240000pt;}
.w9{width:46.592000pt;}
.w5{width:48.000000pt;}
.w4{width:57.280000pt;}
.we{width:67.872000pt;}
.w11{width:74.752000pt;}
.wb{width:80.640000pt;}
.wf{width:87.680000pt;}
.w6{width:102.272000pt;}
.w12{width:105.600000pt;}
.wc{width:110.112000pt;}
.w7{width:116.640000pt;}
.wd{width:161.786667pt;}
.w10{width:201.146667pt;}
.w8{width:360.546667pt;}
.w3{width:370.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:4.800000pt;}
.x5{left:7.200000pt;}
.x3{left:16.800000pt;}
.xe{left:28.800000pt;}
.x1{left:47.999988pt;}
.x14{left:66.079988pt;}
.x15{left:78.079988pt;}
.x16{left:90.111988pt;}
.x2{left:96.031988pt;}
.xf{left:209.786667pt;}
.x10{left:277.666667pt;}
.x11{left:365.346667pt;}
.x9{left:408.546667pt;}
.x4{left:418.173333pt;}
.xa{left:455.133333pt;}
.x6{left:475.453333pt;}
.xb{left:493.373333pt;}
.x7{left:523.453333pt;}
.x12{left:566.493333pt;}
.xc{left:574.013333pt;}
.x8{left:625.733333pt;}
.x13{left:641.253333pt;}
.x17{left:746.053322pt;}
}




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