
    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_87def096ebc495b5f4c27c78.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_80426b4f593e9df33519e2a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_1827e1a0aa7bd0f25c1cd904.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3700bc7ecbd443edf753f7d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123047;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_99e293fc9fc8079a83a410a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_9e56f9c7e29263c194c9d892.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0a4e4840cd91caef7adfad00.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9ff09ea19ecbede1528c21e7.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-69.096000px;}
.v1{vertical-align:-67.680000px;}
.v3{vertical-align:-63.360000px;}
.v0{vertical-align:0.000000px;}
.ls39{letter-spacing:-5.262000px;}
.ls31{letter-spacing:-1.998000px;}
.ls33{letter-spacing:-1.914000px;}
.ls15{letter-spacing:-1.440000px;}
.ls38{letter-spacing:-1.254000px;}
.ls1d{letter-spacing:-1.062000px;}
.ls37{letter-spacing:-0.810000px;}
.ls17{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.678000px;}
.ls19{letter-spacing:-0.510000px;}
.ls32{letter-spacing:-0.492600px;}
.ls35{letter-spacing:-0.475200px;}
.ls13{letter-spacing:-0.466800px;}
.ls12{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.120000px;}
.ls27{letter-spacing:0.140160px;}
.ls11{letter-spacing:0.172800px;}
.ls36{letter-spacing:0.184200px;}
.ls30{letter-spacing:0.316800px;}
.ls18{letter-spacing:0.466800px;}
.ls14{letter-spacing:0.486600px;}
.ls16{letter-spacing:0.507000px;}
.ls2a{letter-spacing:0.590400px;}
.ls34{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls2b{letter-spacing:1.440000px;}
.ls1b{letter-spacing:1.460160px;}
.ls28{letter-spacing:1.472160px;}
.ls23{letter-spacing:2.160000px;}
.ls3{letter-spacing:3.600000px;}
.ls21{letter-spacing:5.040000px;}
.ls2f{letter-spacing:5.160000px;}
.ls25{letter-spacing:7.920000px;}
.ls10{letter-spacing:9.360000px;}
.ls22{letter-spacing:10.800000px;}
.ls20{letter-spacing:10.980000px;}
.ls29{letter-spacing:12.240000px;}
.ls5{letter-spacing:13.680000px;}
.ls4{letter-spacing:15.120000px;}
.ls6{letter-spacing:15.300000px;}
.ls7{letter-spacing:16.560000px;}
.lsc{letter-spacing:18.000000px;}
.lse{letter-spacing:18.120000px;}
.lsf{letter-spacing:18.180000px;}
.lsd{letter-spacing:19.440000px;}
.ls24{letter-spacing:21.060000px;}
.lsb{letter-spacing:22.320000px;}
.lsa{letter-spacing:22.332000px;}
.ls8{letter-spacing:25.200000px;}
.ls9{letter-spacing:25.380000px;}
.ls1c{letter-spacing:26.640000px;}
.ls26{letter-spacing:28.080000px;}
.ls2{letter-spacing:154.944000px;}
.ls2d{letter-spacing:163.198560px;}
.ls2c{letter-spacing:193.438560px;}
.ls1f{letter-spacing:193.558560px;}
.ls2e{letter-spacing:1151.976000px;}
.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;}
}
.ws8{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.627000px;}
.ws2{word-spacing:-15.606600px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.653200px;}
.ws5{word-spacing:-14.610000px;}
.ws7{word-spacing:-14.442000px;}
.wsc{word-spacing:-14.310000px;}
.wse{word-spacing:-13.864200px;}
.ws3{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.204800px;}
.wsa{word-spacing:-13.187400px;}
.wsf{word-spacing:-12.870000px;}
.ws10{word-spacing:-12.426000px;}
.ws9{word-spacing:-12.240000px;}
.wsb{word-spacing:-11.766000px;}
.ws6{word-spacing:0.000000px;}
._2b{margin-left:-7.721760px;}
._2c{margin-left:-5.866560px;}
._b{margin-left:-3.558720px;}
._2{margin-left:-2.504160px;}
._0{margin-left:-1.320000px;}
._1{width:1.302480px;}
._3{width:2.504160px;}
._e{width:4.245840px;}
._f{width:5.352000px;}
._9{width:6.642240px;}
._a{width:7.751040px;}
._10{width:8.760720px;}
._11{width:10.702320px;}
._16{width:12.201120px;}
._17{width:14.082000px;}
._7{width:16.269240px;}
._8{width:17.748720px;}
._d{width:19.434960px;}
._c{width:20.805120px;}
._5{width:21.862080px;}
._4{width:23.163840px;}
._6{width:24.734640px;}
._1a{width:25.844400px;}
._1e{width:27.126720px;}
._15{width:28.441920px;}
._14{width:29.588640px;}
._28{width:30.836160px;}
._1c{width:31.886880px;}
._1d{width:33.231600px;}
._19{width:34.633200px;}
._18{width:35.697120px;}
._1b{width:37.427520px;}
._13{width:38.846160px;}
._12{width:40.122720px;}
._1f{width:44.118720px;}
._20{width:45.349440px;}
._26{width:46.661520px;}
._27{width:48.079920px;}
._2a{width:49.089840px;}
._21{width:50.165520px;}
._29{width:54.193920px;}
._23{width:58.919760px;}
._22{width:60.052080px;}
._25{width:65.311440px;}
._24{width:67.244880px;}
.fc6{color:rgb(45,44,55);}
.fc5{color:rgb(16,0,12);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(32,33,36);}
.fc4{color:rgb(33,33,33);}
.fc3{color:rgb(27,27,27);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:24.480000px;}
.y1{bottom:65.520000px;}
.ya5{bottom:101.520000px;}
.y37{bottom:107.280000px;}
.yc5{bottom:108.000000px;}
.ya7{bottom:113.076000px;}
.y6e{bottom:113.436000px;}
.y83{bottom:114.876000px;}
.ya4{bottom:118.836000px;}
.y36{bottom:122.796000px;}
.yc4{bottom:123.516000px;}
.ya6{bottom:130.356000px;}
.y6d{bottom:130.716000px;}
.y82{bottom:132.156000px;}
.ya3{bottom:136.116000px;}
.yc3{bottom:139.356000px;}
.y6c{bottom:147.996000px;}
.y81{bottom:149.436000px;}
.ya2{bottom:153.390000px;}
.y35{bottom:155.910000px;}
.yc2{bottom:156.630000px;}
.y6b{bottom:165.270000px;}
.y80{bottom:166.710000px;}
.ya1{bottom:170.670000px;}
.y34{bottom:173.190000px;}
.yc1{bottom:173.910000px;}
.y6a{bottom:182.190000px;}
.y7f{bottom:183.990000px;}
.ya0{bottom:187.590000px;}
.y33{bottom:190.470000px;}
.y69{bottom:199.470000px;}
.y7e{bottom:201.270000px;}
.y9f{bottom:204.870000px;}
.y32{bottom:207.390000px;}
.yc0{bottom:208.110000px;}
.y68{bottom:216.750000px;}
.y7d{bottom:218.595000px;}
.y9e{bottom:222.195000px;}
.y31{bottom:224.715000px;}
.y67{bottom:234.075000px;}
.y7c{bottom:235.875000px;}
.y9d{bottom:239.475000px;}
.y30{bottom:241.995000px;}
.ybf{bottom:242.355000px;}
.y66{bottom:251.355000px;}
.y7b{bottom:253.155000px;}
.y9c{bottom:256.755000px;}
.ybe{bottom:257.835000px;}
.y2f{bottom:259.275000px;}
.y65{bottom:268.635000px;}
.y7a{bottom:270.075000px;}
.ybd{bottom:273.315000px;}
.y9b{bottom:274.035000px;}
.y2e{bottom:276.555000px;}
.y64{bottom:285.915000px;}
.y79{bottom:287.355000px;}
.ybc{bottom:289.155000px;}
.y9a{bottom:291.315000px;}
.y2d{bottom:293.835000px;}
.y63{bottom:303.195000px;}
.y78{bottom:304.635000px;}
.ybb{bottom:306.435000px;}
.y99{bottom:308.595000px;}
.y2c{bottom:311.115000px;}
.y62{bottom:320.475000px;}
.y77{bottom:321.945000px;}
.yba{bottom:323.385000px;}
.y98{bottom:325.905000px;}
.y2b{bottom:328.425000px;}
.y61{bottom:337.785000px;}
.y76{bottom:339.225000px;}
.yb9{bottom:340.665000px;}
.y97{bottom:343.185000px;}
.y2a{bottom:345.705000px;}
.y60{bottom:355.065000px;}
.y75{bottom:356.145000px;}
.yb8{bottom:357.945000px;}
.y96{bottom:360.465000px;}
.y29{bottom:362.985000px;}
.y5f{bottom:371.985000px;}
.y74{bottom:373.425000px;}
.yb7{bottom:375.585000px;}
.y95{bottom:377.745000px;}
.y28{bottom:380.265000px;}
.y5e{bottom:389.265000px;}
.y73{bottom:391.065000px;}
.yb6{bottom:392.865000px;}
.y94{bottom:394.665000px;}
.y27{bottom:397.185000px;}
.y72{bottom:404.745000px;}
.y5d{bottom:406.545000px;}
.y93{bottom:411.945000px;}
.y26{bottom:414.465000px;}
.y5c{bottom:423.825000px;}
.yb5{bottom:427.470000px;}
.y92{bottom:429.270000px;}
.y25{bottom:431.790000px;}
.y5b{bottom:441.150000px;}
.yb4{bottom:444.750000px;}
.y91{bottom:446.550000px;}
.y24{bottom:449.070000px;}
.y5a{bottom:458.430000px;}
.yb3{bottom:462.030000px;}
.y90{bottom:463.830000px;}
.y23{bottom:466.350000px;}
.y59{bottom:475.710000px;}
.yb2{bottom:479.310000px;}
.y8f{bottom:481.110000px;}
.y22{bottom:483.630000px;}
.y58{bottom:492.990000px;}
.yb1{bottom:496.230000px;}
.y8e{bottom:498.390000px;}
.y21{bottom:500.910000px;}
.y57{bottom:510.270000px;}
.yb0{bottom:513.510000px;}
.y8d{bottom:515.670000px;}
.y20{bottom:518.190000px;}
.y56{bottom:527.550000px;}
.yaf{bottom:530.430000px;}
.y8c{bottom:532.980000px;}
.y1f{bottom:535.500000px;}
.y55{bottom:544.860000px;}
.y8b{bottom:550.260000px;}
.y1e{bottom:552.780000px;}
.y54{bottom:562.140000px;}
.y8a{bottom:567.540000px;}
.y1d{bottom:570.060000px;}
.y53{bottom:579.060000px;}
.y89{bottom:584.460000px;}
.y1c{bottom:587.340000px;}
.yae{bottom:595.980000px;}
.y52{bottom:596.340000px;}
.y88{bottom:601.740000px;}
.y1b{bottom:604.260000px;}
.y51{bottom:613.620000px;}
.y87{bottom:619.020000px;}
.y1a{bottom:621.540000px;}
.yad{bottom:630.540000px;}
.y50{bottom:630.900000px;}
.y86{bottom:635.940000px;}
.y19{bottom:638.850000px;}
.y4f{bottom:648.210000px;}
.y85{bottom:653.610000px;}
.y18{bottom:656.130000px;}
.y4e{bottom:665.490000px;}
.y84{bottom:667.290000px;}
.y17{bottom:673.410000px;}
.y4d{bottom:682.770000px;}
.y16{bottom:690.690000px;}
.y4c{bottom:700.050000px;}
.y15{bottom:707.970000px;}
.y4b{bottom:717.330000px;}
.y14{bottom:725.250000px;}
.y4a{bottom:734.610000px;}
.y13{bottom:742.575000px;}
.y71{bottom:743.655000px;}
.yac{bottom:751.575000px;}
.y49{bottom:751.935000px;}
.y12{bottom:759.855000px;}
.y70{bottom:760.935000px;}
.y48{bottom:768.855000px;}
.y6f{bottom:774.615000px;}
.yab{bottom:785.775000px;}
.y47{bottom:786.135000px;}
.y11{bottom:794.055000px;}
.ya9{bottom:803.055000px;}
.y46{bottom:803.415000px;}
.y10{bottom:811.335000px;}
.yaa{bottom:820.335000px;}
.y45{bottom:820.695000px;}
.yf{bottom:826.455000px;}
.y44{bottom:837.975000px;}
.ye{bottom:842.295000px;}
.y43{bottom:855.285000px;}
.yd{bottom:859.965000px;}
.y42{bottom:872.565000px;}
.yc{bottom:876.525000px;}
.y41{bottom:889.845000px;}
.yb{bottom:893.805000px;}
.y40{bottom:907.125000px;}
.ya{bottom:911.085000px;}
.y3f{bottom:924.405000px;}
.y9{bottom:928.725000px;}
.y3e{bottom:941.685000px;}
.y8{bottom:946.005000px;}
.y3d{bottom:959.010000px;}
.y7{bottom:963.330000px;}
.y3c{bottom:975.930000px;}
.y6{bottom:980.610000px;}
.y3b{bottom:993.210000px;}
.y5{bottom:997.890000px;}
.y3a{bottom:1010.490000px;}
.y4{bottom:1014.810000px;}
.y39{bottom:1027.770000px;}
.y3{bottom:1036.770000px;}
.ya8{bottom:1044.690000px;}
.y38{bottom:1045.050000px;}
.ha{height:52.299844px;}
.h7{height:53.704687px;}
.h8{height:54.219375px;}
.h6{height:55.147500px;}
.h5{height:59.328281px;}
.h2{height:59.357813px;}
.h4{height:60.952500px;}
.h9{height:62.163910px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:51.155989px;}
.x11{left:73.835989px;}
.x4{left:76.715989px;}
.xe{left:87.515989px;}
.x7{left:91.115989px;}
.xb{left:93.635989px;}
.xf{left:104.471989px;}
.x19{left:113.831989px;}
.x2{left:119.231989px;}
.x16{left:129.671989px;}
.x1a{left:136.151989px;}
.x17{left:209.624989px;}
.x9{left:224.744989px;}
.x3{left:264.749989px;}
.x18{left:268.709989px;}
.x8{left:300.029989px;}
.x12{left:321.299989px;}
.x5{left:326.339989px;}
.xa{left:337.859989px;}
.x15{left:346.859989px;}
.x13{left:349.019989px;}
.x1{left:363.419989px;}
.x6{left:374.609989px;}
.x10{left:640.409989px;}
.xd{left:641.849989px;}
.x14{left:671.039989px;}
@media print{
.v2{vertical-align:-61.418667pt;}
.v1{vertical-align:-60.160000pt;}
.v3{vertical-align:-56.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls39{letter-spacing:-4.677333pt;}
.ls31{letter-spacing:-1.776000pt;}
.ls33{letter-spacing:-1.701333pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls38{letter-spacing:-1.114667pt;}
.ls1d{letter-spacing:-0.944000pt;}
.ls37{letter-spacing:-0.720000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.602667pt;}
.ls19{letter-spacing:-0.453333pt;}
.ls32{letter-spacing:-0.437867pt;}
.ls35{letter-spacing:-0.422400pt;}
.ls13{letter-spacing:-0.414933pt;}
.ls12{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.106667pt;}
.ls27{letter-spacing:0.124587pt;}
.ls11{letter-spacing:0.153600pt;}
.ls36{letter-spacing:0.163733pt;}
.ls30{letter-spacing:0.281600pt;}
.ls18{letter-spacing:0.414933pt;}
.ls14{letter-spacing:0.432533pt;}
.ls16{letter-spacing:0.450667pt;}
.ls2a{letter-spacing:0.524800pt;}
.ls34{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:1.297920pt;}
.ls28{letter-spacing:1.308587pt;}
.ls23{letter-spacing:1.920000pt;}
.ls3{letter-spacing:3.200000pt;}
.ls21{letter-spacing:4.480000pt;}
.ls2f{letter-spacing:4.586667pt;}
.ls25{letter-spacing:7.040000pt;}
.ls10{letter-spacing:8.320000pt;}
.ls22{letter-spacing:9.600000pt;}
.ls20{letter-spacing:9.760000pt;}
.ls29{letter-spacing:10.880000pt;}
.ls5{letter-spacing:12.160000pt;}
.ls4{letter-spacing:13.440000pt;}
.ls6{letter-spacing:13.600000pt;}
.ls7{letter-spacing:14.720000pt;}
.lsc{letter-spacing:16.000000pt;}
.lse{letter-spacing:16.106667pt;}
.lsf{letter-spacing:16.160000pt;}
.lsd{letter-spacing:17.280000pt;}
.ls24{letter-spacing:18.720000pt;}
.lsb{letter-spacing:19.840000pt;}
.lsa{letter-spacing:19.850667pt;}
.ls8{letter-spacing:22.400000pt;}
.ls9{letter-spacing:22.560000pt;}
.ls1c{letter-spacing:23.680000pt;}
.ls26{letter-spacing:24.960000pt;}
.ls2{letter-spacing:137.728000pt;}
.ls2d{letter-spacing:145.065387pt;}
.ls2c{letter-spacing:171.945387pt;}
.ls1f{letter-spacing:172.052053pt;}
.ls2e{letter-spacing:1023.978667pt;}
.ws8{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.890667pt;}
.ws2{word-spacing:-13.872533pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.025067pt;}
.ws5{word-spacing:-12.986667pt;}
.ws7{word-spacing:-12.837333pt;}
.wsc{word-spacing:-12.720000pt;}
.wse{word-spacing:-12.323733pt;}
.ws3{word-spacing:-12.160000pt;}
.wsd{word-spacing:-11.737600pt;}
.wsa{word-spacing:-11.722133pt;}
.wsf{word-spacing:-11.440000pt;}
.ws10{word-spacing:-11.045333pt;}
.ws9{word-spacing:-10.880000pt;}
.wsb{word-spacing:-10.458667pt;}
.ws6{word-spacing:0.000000pt;}
._2b{margin-left:-6.863787pt;}
._2c{margin-left:-5.214720pt;}
._b{margin-left:-3.163307pt;}
._2{margin-left:-2.225920pt;}
._0{margin-left:-1.173333pt;}
._1{width:1.157760pt;}
._3{width:2.225920pt;}
._e{width:3.774080pt;}
._f{width:4.757333pt;}
._9{width:5.904213pt;}
._a{width:6.889813pt;}
._10{width:7.787307pt;}
._11{width:9.513173pt;}
._16{width:10.845440pt;}
._17{width:12.517333pt;}
._7{width:14.461547pt;}
._8{width:15.776640pt;}
._d{width:17.275520pt;}
._c{width:18.493440pt;}
._5{width:19.432960pt;}
._4{width:20.590080pt;}
._6{width:21.986347pt;}
._1a{width:22.972800pt;}
._1e{width:24.112640pt;}
._15{width:25.281707pt;}
._14{width:26.301013pt;}
._28{width:27.409920pt;}
._1c{width:28.343893pt;}
._1d{width:29.539200pt;}
._19{width:30.785067pt;}
._18{width:31.730773pt;}
._1b{width:33.268907pt;}
._13{width:34.529920pt;}
._12{width:35.664640pt;}
._1f{width:39.216640pt;}
._20{width:40.310613pt;}
._26{width:41.476907pt;}
._27{width:42.737707pt;}
._2a{width:43.635413pt;}
._21{width:44.591573pt;}
._29{width:48.172373pt;}
._23{width:52.373120pt;}
._22{width:53.379627pt;}
._25{width:58.054613pt;}
._24{width:59.773227pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.760000pt;}
.y1{bottom:58.240000pt;}
.ya5{bottom:90.240000pt;}
.y37{bottom:95.360000pt;}
.yc5{bottom:96.000000pt;}
.ya7{bottom:100.512000pt;}
.y6e{bottom:100.832000pt;}
.y83{bottom:102.112000pt;}
.ya4{bottom:105.632000pt;}
.y36{bottom:109.152000pt;}
.yc4{bottom:109.792000pt;}
.ya6{bottom:115.872000pt;}
.y6d{bottom:116.192000pt;}
.y82{bottom:117.472000pt;}
.ya3{bottom:120.992000pt;}
.yc3{bottom:123.872000pt;}
.y6c{bottom:131.552000pt;}
.y81{bottom:132.832000pt;}
.ya2{bottom:136.346667pt;}
.y35{bottom:138.586667pt;}
.yc2{bottom:139.226667pt;}
.y6b{bottom:146.906667pt;}
.y80{bottom:148.186667pt;}
.ya1{bottom:151.706667pt;}
.y34{bottom:153.946667pt;}
.yc1{bottom:154.586667pt;}
.y6a{bottom:161.946667pt;}
.y7f{bottom:163.546667pt;}
.ya0{bottom:166.746667pt;}
.y33{bottom:169.306667pt;}
.y69{bottom:177.306667pt;}
.y7e{bottom:178.906667pt;}
.y9f{bottom:182.106667pt;}
.y32{bottom:184.346667pt;}
.yc0{bottom:184.986667pt;}
.y68{bottom:192.666667pt;}
.y7d{bottom:194.306667pt;}
.y9e{bottom:197.506667pt;}
.y31{bottom:199.746667pt;}
.y67{bottom:208.066667pt;}
.y7c{bottom:209.666667pt;}
.y9d{bottom:212.866667pt;}
.y30{bottom:215.106667pt;}
.ybf{bottom:215.426667pt;}
.y66{bottom:223.426667pt;}
.y7b{bottom:225.026667pt;}
.y9c{bottom:228.226667pt;}
.ybe{bottom:229.186667pt;}
.y2f{bottom:230.466667pt;}
.y65{bottom:238.786667pt;}
.y7a{bottom:240.066667pt;}
.ybd{bottom:242.946667pt;}
.y9b{bottom:243.586667pt;}
.y2e{bottom:245.826667pt;}
.y64{bottom:254.146667pt;}
.y79{bottom:255.426667pt;}
.ybc{bottom:257.026667pt;}
.y9a{bottom:258.946667pt;}
.y2d{bottom:261.186667pt;}
.y63{bottom:269.506667pt;}
.y78{bottom:270.786667pt;}
.ybb{bottom:272.386667pt;}
.y99{bottom:274.306667pt;}
.y2c{bottom:276.546667pt;}
.y62{bottom:284.866667pt;}
.y77{bottom:286.173333pt;}
.yba{bottom:287.453333pt;}
.y98{bottom:289.693333pt;}
.y2b{bottom:291.933333pt;}
.y61{bottom:300.253333pt;}
.y76{bottom:301.533333pt;}
.yb9{bottom:302.813333pt;}
.y97{bottom:305.053333pt;}
.y2a{bottom:307.293333pt;}
.y60{bottom:315.613333pt;}
.y75{bottom:316.573333pt;}
.yb8{bottom:318.173333pt;}
.y96{bottom:320.413333pt;}
.y29{bottom:322.653333pt;}
.y5f{bottom:330.653333pt;}
.y74{bottom:331.933333pt;}
.yb7{bottom:333.853333pt;}
.y95{bottom:335.773333pt;}
.y28{bottom:338.013333pt;}
.y5e{bottom:346.013333pt;}
.y73{bottom:347.613333pt;}
.yb6{bottom:349.213333pt;}
.y94{bottom:350.813333pt;}
.y27{bottom:353.053333pt;}
.y72{bottom:359.773333pt;}
.y5d{bottom:361.373333pt;}
.y93{bottom:366.173333pt;}
.y26{bottom:368.413333pt;}
.y5c{bottom:376.733333pt;}
.yb5{bottom:379.973333pt;}
.y92{bottom:381.573333pt;}
.y25{bottom:383.813333pt;}
.y5b{bottom:392.133333pt;}
.yb4{bottom:395.333333pt;}
.y91{bottom:396.933333pt;}
.y24{bottom:399.173333pt;}
.y5a{bottom:407.493333pt;}
.yb3{bottom:410.693333pt;}
.y90{bottom:412.293333pt;}
.y23{bottom:414.533333pt;}
.y59{bottom:422.853333pt;}
.yb2{bottom:426.053333pt;}
.y8f{bottom:427.653333pt;}
.y22{bottom:429.893333pt;}
.y58{bottom:438.213333pt;}
.yb1{bottom:441.093333pt;}
.y8e{bottom:443.013333pt;}
.y21{bottom:445.253333pt;}
.y57{bottom:453.573333pt;}
.yb0{bottom:456.453333pt;}
.y8d{bottom:458.373333pt;}
.y20{bottom:460.613333pt;}
.y56{bottom:468.933333pt;}
.yaf{bottom:471.493333pt;}
.y8c{bottom:473.760000pt;}
.y1f{bottom:476.000000pt;}
.y55{bottom:484.320000pt;}
.y8b{bottom:489.120000pt;}
.y1e{bottom:491.360000pt;}
.y54{bottom:499.680000pt;}
.y8a{bottom:504.480000pt;}
.y1d{bottom:506.720000pt;}
.y53{bottom:514.720000pt;}
.y89{bottom:519.520000pt;}
.y1c{bottom:522.080000pt;}
.yae{bottom:529.760000pt;}
.y52{bottom:530.080000pt;}
.y88{bottom:534.880000pt;}
.y1b{bottom:537.120000pt;}
.y51{bottom:545.440000pt;}
.y87{bottom:550.240000pt;}
.y1a{bottom:552.480000pt;}
.yad{bottom:560.480000pt;}
.y50{bottom:560.800000pt;}
.y86{bottom:565.280000pt;}
.y19{bottom:567.866667pt;}
.y4f{bottom:576.186667pt;}
.y85{bottom:580.986667pt;}
.y18{bottom:583.226667pt;}
.y4e{bottom:591.546667pt;}
.y84{bottom:593.146667pt;}
.y17{bottom:598.586667pt;}
.y4d{bottom:606.906667pt;}
.y16{bottom:613.946667pt;}
.y4c{bottom:622.266667pt;}
.y15{bottom:629.306667pt;}
.y4b{bottom:637.626667pt;}
.y14{bottom:644.666667pt;}
.y4a{bottom:652.986667pt;}
.y13{bottom:660.066667pt;}
.y71{bottom:661.026667pt;}
.yac{bottom:668.066667pt;}
.y49{bottom:668.386667pt;}
.y12{bottom:675.426667pt;}
.y70{bottom:676.386667pt;}
.y48{bottom:683.426667pt;}
.y6f{bottom:688.546667pt;}
.yab{bottom:698.466667pt;}
.y47{bottom:698.786667pt;}
.y11{bottom:705.826667pt;}
.ya9{bottom:713.826667pt;}
.y46{bottom:714.146667pt;}
.y10{bottom:721.186667pt;}
.yaa{bottom:729.186667pt;}
.y45{bottom:729.506667pt;}
.yf{bottom:734.626667pt;}
.y44{bottom:744.866667pt;}
.ye{bottom:748.706667pt;}
.y43{bottom:760.253333pt;}
.yd{bottom:764.413333pt;}
.y42{bottom:775.613333pt;}
.yc{bottom:779.133333pt;}
.y41{bottom:790.973333pt;}
.yb{bottom:794.493333pt;}
.y40{bottom:806.333333pt;}
.ya{bottom:809.853333pt;}
.y3f{bottom:821.693333pt;}
.y9{bottom:825.533333pt;}
.y3e{bottom:837.053333pt;}
.y8{bottom:840.893333pt;}
.y3d{bottom:852.453333pt;}
.y7{bottom:856.293333pt;}
.y3c{bottom:867.493333pt;}
.y6{bottom:871.653333pt;}
.y3b{bottom:882.853333pt;}
.y5{bottom:887.013333pt;}
.y3a{bottom:898.213333pt;}
.y4{bottom:902.053333pt;}
.y39{bottom:913.573333pt;}
.y3{bottom:921.573333pt;}
.ya8{bottom:928.613333pt;}
.y38{bottom:928.933333pt;}
.ha{height:46.488750pt;}
.h7{height:47.737500pt;}
.h8{height:48.195000pt;}
.h6{height:49.020000pt;}
.h5{height:52.736250pt;}
.h2{height:52.762500pt;}
.h4{height:54.180000pt;}
.h9{height:55.256809pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:45.471990pt;}
.x11{left:65.631990pt;}
.x4{left:68.191990pt;}
.xe{left:77.791990pt;}
.x7{left:80.991990pt;}
.xb{left:83.231990pt;}
.xf{left:92.863990pt;}
.x19{left:101.183990pt;}
.x2{left:105.983990pt;}
.x16{left:115.263990pt;}
.x1a{left:121.023990pt;}
.x17{left:186.333324pt;}
.x9{left:199.773324pt;}
.x3{left:235.333324pt;}
.x18{left:238.853324pt;}
.x8{left:266.693324pt;}
.x12{left:285.599990pt;}
.x5{left:290.079990pt;}
.xa{left:300.319990pt;}
.x15{left:308.319990pt;}
.x13{left:310.239990pt;}
.x1{left:323.039990pt;}
.x6{left:332.986657pt;}
.x10{left:569.253324pt;}
.xd{left:570.533324pt;}
.x14{left:596.479990pt;}
}




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