
    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_c70a6d70c4cc2f5af742a9c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.213379;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_a78868a94b85981249b2c2ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.213379;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_2a5009f2eaaf8e2e8ce21ab6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_a44a84d78a81953a4ab18460.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d5c2bce801a139ae4d9606c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_32693b22ce7606b5b8649b29.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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_08b9a9288c30769c95d8f0fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935059;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_36a1113bf5f15116eede9a2c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v7{vertical-align:-21.600000px;}
.v5{vertical-align:-18.000000px;}
.v6{vertical-align:-15.600000px;}
.v4{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.v1{vertical-align:24.000000px;}
.v3{vertical-align:27.600000px;}
.ls6{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.552000px;}
.lsb{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.336000px;}
.lsf{letter-spacing:-0.312000px;}
.ls7{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.276000px;}
.ls8{letter-spacing:-0.228000px;}
.lsa{letter-spacing:-0.024000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.096000px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.684000px;}
.lsc{letter-spacing:0.840000px;}
.ls10{letter-spacing:0.864000px;}
.ls4{letter-spacing:9.240000px;}
.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;}
}
.ws7{word-spacing:-21.000000px;}
.ws5{word-spacing:-20.832000px;}
.ws9{word-spacing:-17.976000px;}
.ws15{word-spacing:-16.680000px;}
.ws2{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.900000px;}
.ws3{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.552000px;}
.ws11{word-spacing:-15.528000px;}
.ws12{word-spacing:-15.504000px;}
.ws13{word-spacing:-15.480000px;}
.ws14{word-spacing:-15.288000px;}
.ws0{word-spacing:-14.520000px;}
.wsb{word-spacing:-13.560000px;}
.wsd{word-spacing:-13.200000px;}
.wsf{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.600000px;}
.ws6{word-spacing:-11.652000px;}
.ws8{word-spacing:-10.560000px;}
.wse{word-spacing:-8.949600px;}
.wsa{word-spacing:-8.712000px;}
.ws10{word-spacing:0.000000px;}
._e{margin-left:-4.752000px;}
._f{margin-left:-3.600000px;}
._d{margin-left:-2.160000px;}
._0{margin-left:-1.056000px;}
._1{width:1.056000px;}
._3{width:2.670000px;}
._4{width:4.608000px;}
._5{width:5.640000px;}
._14{width:7.230000px;}
._15{width:8.778000px;}
._b{width:10.134000px;}
._7{width:11.160000px;}
._6{width:12.240000px;}
._9{width:13.404000px;}
._8{width:14.748000px;}
._c{width:16.992000px;}
._a{width:18.912000px;}
._12{width:20.952000px;}
._13{width:22.824000px;}
._1f{width:23.934000px;}
._16{width:24.966000px;}
._1e{width:26.568000px;}
._1d{width:27.648000px;}
._10{width:29.160000px;}
._1c{width:30.168000px;}
._1b{width:31.200000px;}
._18{width:32.274000px;}
._17{width:33.426000px;}
._20{width:34.704000px;}
._1a{width:40.704000px;}
._19{width:41.904000px;}
._2{width:315.180000px;}
._11{width:333.528000px;}
.fc6{color:rgb(5,99,193);}
.fc7{color:rgb(0,51,0);}
.fc4{color:rgb(31,73,125);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(204,102,0);}
.fc1{color:rgb(196,89,17);}
.fc0{color:rgb(56,86,35);}
.fs7{font-size:39.600000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.600000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:0.300000px;}
.y28{bottom:3.300000px;}
.y6{bottom:3.915000px;}
.y8{bottom:4.815000px;}
.y30{bottom:5.100000px;}
.y2f{bottom:5.400000px;}
.y2c{bottom:6.045000px;}
.y2d{bottom:6.345000px;}
.y27{bottom:20.700000px;}
.y5{bottom:34.200000px;}
.y7{bottom:34.815000px;}
.y2{bottom:58.537500px;}
.y4{bottom:65.100000px;}
.y1{bottom:86.437500px;}
.y31{bottom:131.137500px;}
.y91{bottom:137.137500px;}
.y2e{bottom:142.537500px;}
.y61{bottom:150.330000px;}
.y90{bottom:158.130000px;}
.y2b{bottom:164.430000px;}
.y60{bottom:171.375000px;}
.y8f{bottom:179.475000px;}
.y5f{bottom:192.675000px;}
.y2a{bottom:205.875000px;}
.y8e{bottom:209.475000px;}
.y5e{bottom:213.675000px;}
.y29{bottom:218.175000px;}
.y8d{bottom:230.475000px;}
.y25{bottom:232.575000px;}
.y5d{bottom:234.675000px;}
.ya4{bottom:246.975000px;}
.y8c{bottom:251.775000px;}
.y5c{bottom:255.975000px;}
.y8b{bottom:272.775000px;}
.y5b{bottom:276.975000px;}
.y24{bottom:288.675000px;}
.y8a{bottom:293.775000px;}
.y5a{bottom:297.975000px;}
.ya3{bottom:306.975000px;}
.y89{bottom:315.075000px;}
.y23{bottom:319.275000px;}
.ya2{bottom:328.275000px;}
.y88{bottom:336.075000px;}
.y59{bottom:340.320000px;}
.y22{bottom:343.320000px;}
.ya1{bottom:349.320000px;}
.y87{bottom:357.105000px;}
.y58{bottom:361.305000px;}
.y21{bottom:364.305000px;}
.ya0{bottom:370.320000px;}
.y86{bottom:378.405000px;}
.y20{bottom:385.305000px;}
.y57{bottom:391.605000px;}
.y85{bottom:399.405000px;}
.y1f{bottom:406.620000px;}
.y56{bottom:412.620000px;}
.y84{bottom:420.405000px;}
.y1e{bottom:427.620000px;}
.y55{bottom:433.620000px;}
.y83{bottom:441.705000px;}
.y1d{bottom:448.620000px;}
.y54{bottom:454.905000px;}
.y82{bottom:462.705000px;}
.y1c{bottom:469.920000px;}
.y53{bottom:475.905000px;}
.y81{bottom:483.705000px;}
.y1b{bottom:490.905000px;}
.y52{bottom:496.905000px;}
.y80{bottom:505.005000px;}
.y1a{bottom:511.950000px;}
.y51{bottom:518.250000px;}
.y19{bottom:533.250000px;}
.y7f{bottom:535.050000px;}
.y50{bottom:539.250000px;}
.y18{bottom:554.250000px;}
.y7e{bottom:556.050000px;}
.y4f{bottom:560.550000px;}
.y17{bottom:575.250000px;}
.y7d{bottom:577.350000px;}
.y4e{bottom:581.550000px;}
.y16{bottom:596.550000px;}
.y7c{bottom:598.350000px;}
.y4d{bottom:602.550000px;}
.y7b{bottom:619.350000px;}
.y4c{bottom:623.850000px;}
.y15{bottom:626.550000px;}
.y7a{bottom:640.650000px;}
.y4b{bottom:644.850000px;}
.y14{bottom:652.650000px;}
.y79{bottom:661.650000px;}
.y4a{bottom:665.850000px;}
.y78{bottom:682.680000px;}
.y49{bottom:687.195000px;}
.y77{bottom:703.980000px;}
.y13{bottom:704.580000px;}
.y48{bottom:708.180000px;}
.y76{bottom:724.980000px;}
.y12{bottom:725.280000px;}
.y47{bottom:729.195000px;}
.y11{bottom:745.980000px;}
.y75{bottom:746.280000px;}
.y46{bottom:750.495000px;}
.y74{bottom:767.280000px;}
.y45{bottom:771.480000px;}
.y10{bottom:776.580000px;}
.y9f{bottom:780.480000px;}
.y73{bottom:788.295000px;}
.y44{bottom:792.480000px;}
.y9e{bottom:801.495000px;}
.yf{bottom:808.980000px;}
.y72{bottom:809.580000px;}
.y43{bottom:813.795000px;}
.y9d{bottom:822.780000px;}
.y71{bottom:830.580000px;}
.y42{bottom:834.795000px;}
.y9c{bottom:843.795000px;}
.ye{bottom:854.325000px;}
.y41{bottom:855.825000px;}
.y70{bottom:860.625000px;}
.y9b{bottom:864.825000px;}
.y40{bottom:877.125000px;}
.y6f{bottom:881.925000px;}
.y9a{bottom:886.125000px;}
.yd{bottom:897.525000px;}
.y3f{bottom:898.125000px;}
.y6e{bottom:902.925000px;}
.y99{bottom:907.125000px;}
.y3e{bottom:919.125000px;}
.y6d{bottom:923.925000px;}
.y98{bottom:928.125000px;}
.yc{bottom:928.425000px;}
.y3d{bottom:940.425000px;}
.y6c{bottom:945.225000px;}
.y97{bottom:949.425000px;}
.y3c{bottom:961.425000px;}
.yb{bottom:962.025000px;}
.y6b{bottom:966.225000px;}
.y96{bottom:970.425000px;}
.y3b{bottom:982.425000px;}
.y6a{bottom:987.225000px;}
.y95{bottom:991.425000px;}
.y3a{bottom:1003.725000px;}
.ya{bottom:1005.225000px;}
.y69{bottom:1008.525000px;}
.y94{bottom:1012.725000px;}
.y39{bottom:1024.755000px;}
.y68{bottom:1029.570000px;}
.y9{bottom:1033.455000px;}
.y93{bottom:1033.755000px;}
.y38{bottom:1045.755000px;}
.y92{bottom:1054.755000px;}
.y67{bottom:1059.570000px;}
.y3{bottom:1065.255000px;}
.y37{bottom:1076.070000px;}
.y66{bottom:1080.870000px;}
.y36{bottom:1097.070000px;}
.y65{bottom:1101.870000px;}
.y35{bottom:1118.070000px;}
.y64{bottom:1122.855000px;}
.y34{bottom:1139.370000px;}
.y63{bottom:1144.455000px;}
.y33{bottom:1166.070000px;}
.y62{bottom:1167.255000px;}
.y32{bottom:1187.700000px;}
.h13{height:21.900000px;}
.h11{height:23.137500px;}
.hd{height:36.607031px;}
.h10{height:39.387305px;}
.h15{height:41.765625px;}
.hf{height:44.100000px;}
.hc{height:52.136719px;}
.he{height:52.207031px;}
.h14{height:57.427734px;}
.h12{height:59.677734px;}
.h2{height:60.070312px;}
.hb{height:62.357812px;}
.h6{height:62.648438px;}
.h9{height:63.210938px;}
.ha{height:65.531250px;}
.h3{height:65.645508px;}
.h5{height:71.613281px;}
.h8{height:73.746094px;}
.h7{height:84.281250px;}
.h4{height:91.200000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w9{width:17.700000px;}
.w8{width:31.500000px;}
.w7{width:52.837500px;}
.wb{width:84.337500px;}
.w5{width:148.537500px;}
.w3{width:297.405000px;}
.w4{width:339.975000px;}
.w6{width:478.050000px;}
.wa{width:514.050000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:2.392500px;}
.x3{left:8.100000px;}
.x16{left:25.500000px;}
.x1{left:127.537487px;}
.x12{left:131.137500px;}
.x8{left:134.137487px;}
.x11{left:138.337500px;}
.x10{left:148.837487px;}
.x1b{left:180.674987px;}
.x15{left:201.675000px;}
.x7{left:205.574987px;}
.xd{left:212.474987px;}
.x17{left:233.175000px;}
.x5{left:238.275000px;}
.x18{left:250.875000px;}
.x1d{left:262.274987px;}
.x13{left:286.875000px;}
.x1c{left:299.219987px;}
.xe{left:310.904987px;}
.x6{left:331.575000px;}
.xf{left:343.619987px;}
.xa{left:347.219987px;}
.x19{left:355.919987px;}
.x9{left:358.904987px;}
.xb{left:395.219987px;}
.x2{left:405.404987px;}
.x4{left:424.950000px;}
.x1a{left:446.549987px;}
.xc{left:765.524987px;}
@media print{
.v7{vertical-align:-19.200000pt;}
.v5{vertical-align:-16.000000pt;}
.v6{vertical-align:-13.866667pt;}
.v4{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.v1{vertical-align:21.333333pt;}
.v3{vertical-align:24.533333pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.490667pt;}
.lsb{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.298667pt;}
.lsf{letter-spacing:-0.277333pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.245333pt;}
.ls8{letter-spacing:-0.202667pt;}
.lsa{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.085333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.608000pt;}
.lsc{letter-spacing:0.746667pt;}
.ls10{letter-spacing:0.768000pt;}
.ls4{letter-spacing:8.213333pt;}
.ws7{word-spacing:-18.666667pt;}
.ws5{word-spacing:-18.517333pt;}
.ws9{word-spacing:-15.978667pt;}
.ws15{word-spacing:-14.826667pt;}
.ws2{word-spacing:-14.666667pt;}
.ws1{word-spacing:-14.133333pt;}
.ws3{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.824000pt;}
.ws11{word-spacing:-13.802667pt;}
.ws12{word-spacing:-13.781333pt;}
.ws13{word-spacing:-13.760000pt;}
.ws14{word-spacing:-13.589333pt;}
.ws0{word-spacing:-12.906667pt;}
.wsb{word-spacing:-12.053333pt;}
.wsd{word-spacing:-11.733333pt;}
.wsf{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.200000pt;}
.ws6{word-spacing:-10.357333pt;}
.ws8{word-spacing:-9.386667pt;}
.wse{word-spacing:-7.955200pt;}
.wsa{word-spacing:-7.744000pt;}
.ws10{word-spacing:0.000000pt;}
._e{margin-left:-4.224000pt;}
._f{margin-left:-3.200000pt;}
._d{margin-left:-1.920000pt;}
._0{margin-left:-0.938667pt;}
._1{width:0.938667pt;}
._3{width:2.373333pt;}
._4{width:4.096000pt;}
._5{width:5.013333pt;}
._14{width:6.426667pt;}
._15{width:7.802667pt;}
._b{width:9.008000pt;}
._7{width:9.920000pt;}
._6{width:10.880000pt;}
._9{width:11.914667pt;}
._8{width:13.109333pt;}
._c{width:15.104000pt;}
._a{width:16.810667pt;}
._12{width:18.624000pt;}
._13{width:20.288000pt;}
._1f{width:21.274667pt;}
._16{width:22.192000pt;}
._1e{width:23.616000pt;}
._1d{width:24.576000pt;}
._10{width:25.920000pt;}
._1c{width:26.816000pt;}
._1b{width:27.733333pt;}
._18{width:28.688000pt;}
._17{width:29.712000pt;}
._20{width:30.848000pt;}
._1a{width:36.181333pt;}
._19{width:37.248000pt;}
._2{width:280.160000pt;}
._11{width:296.469333pt;}
.fs7{font-size:35.200000pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.533333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:0.266667pt;}
.y28{bottom:2.933333pt;}
.y6{bottom:3.480000pt;}
.y8{bottom:4.280000pt;}
.y30{bottom:4.533333pt;}
.y2f{bottom:4.800000pt;}
.y2c{bottom:5.373333pt;}
.y2d{bottom:5.640000pt;}
.y27{bottom:18.400000pt;}
.y5{bottom:30.400000pt;}
.y7{bottom:30.946667pt;}
.y2{bottom:52.033333pt;}
.y4{bottom:57.866667pt;}
.y1{bottom:76.833333pt;}
.y31{bottom:116.566667pt;}
.y91{bottom:121.900000pt;}
.y2e{bottom:126.700000pt;}
.y61{bottom:133.626667pt;}
.y90{bottom:140.560000pt;}
.y2b{bottom:146.160000pt;}
.y60{bottom:152.333333pt;}
.y8f{bottom:159.533333pt;}
.y5f{bottom:171.266667pt;}
.y2a{bottom:183.000000pt;}
.y8e{bottom:186.200000pt;}
.y5e{bottom:189.933333pt;}
.y29{bottom:193.933333pt;}
.y8d{bottom:204.866667pt;}
.y25{bottom:206.733333pt;}
.y5d{bottom:208.600000pt;}
.ya4{bottom:219.533333pt;}
.y8c{bottom:223.800000pt;}
.y5c{bottom:227.533333pt;}
.y8b{bottom:242.466667pt;}
.y5b{bottom:246.200000pt;}
.y24{bottom:256.600000pt;}
.y8a{bottom:261.133333pt;}
.y5a{bottom:264.866667pt;}
.ya3{bottom:272.866667pt;}
.y89{bottom:280.066667pt;}
.y23{bottom:283.800000pt;}
.ya2{bottom:291.800000pt;}
.y88{bottom:298.733333pt;}
.y59{bottom:302.506667pt;}
.y22{bottom:305.173333pt;}
.ya1{bottom:310.506667pt;}
.y87{bottom:317.426667pt;}
.y58{bottom:321.160000pt;}
.y21{bottom:323.826667pt;}
.ya0{bottom:329.173333pt;}
.y86{bottom:336.360000pt;}
.y20{bottom:342.493333pt;}
.y57{bottom:348.093333pt;}
.y85{bottom:355.026667pt;}
.y1f{bottom:361.440000pt;}
.y56{bottom:366.773333pt;}
.y84{bottom:373.693333pt;}
.y1e{bottom:380.106667pt;}
.y55{bottom:385.440000pt;}
.y83{bottom:392.626667pt;}
.y1d{bottom:398.773333pt;}
.y54{bottom:404.360000pt;}
.y82{bottom:411.293333pt;}
.y1c{bottom:417.706667pt;}
.y53{bottom:423.026667pt;}
.y81{bottom:429.960000pt;}
.y1b{bottom:436.360000pt;}
.y52{bottom:441.693333pt;}
.y80{bottom:448.893333pt;}
.y1a{bottom:455.066667pt;}
.y51{bottom:460.666667pt;}
.y19{bottom:474.000000pt;}
.y7f{bottom:475.600000pt;}
.y50{bottom:479.333333pt;}
.y18{bottom:492.666667pt;}
.y7e{bottom:494.266667pt;}
.y4f{bottom:498.266667pt;}
.y17{bottom:511.333333pt;}
.y7d{bottom:513.200000pt;}
.y4e{bottom:516.933333pt;}
.y16{bottom:530.266667pt;}
.y7c{bottom:531.866667pt;}
.y4d{bottom:535.600000pt;}
.y7b{bottom:550.533333pt;}
.y4c{bottom:554.533333pt;}
.y15{bottom:556.933333pt;}
.y7a{bottom:569.466667pt;}
.y4b{bottom:573.200000pt;}
.y14{bottom:580.133333pt;}
.y79{bottom:588.133333pt;}
.y4a{bottom:591.866667pt;}
.y78{bottom:606.826667pt;}
.y49{bottom:610.840000pt;}
.y77{bottom:625.760000pt;}
.y13{bottom:626.293333pt;}
.y48{bottom:629.493333pt;}
.y76{bottom:644.426667pt;}
.y12{bottom:644.693333pt;}
.y47{bottom:648.173333pt;}
.y11{bottom:663.093333pt;}
.y75{bottom:663.360000pt;}
.y46{bottom:667.106667pt;}
.y74{bottom:682.026667pt;}
.y45{bottom:685.760000pt;}
.y10{bottom:690.293333pt;}
.y9f{bottom:693.760000pt;}
.y73{bottom:700.706667pt;}
.y44{bottom:704.426667pt;}
.y9e{bottom:712.440000pt;}
.yf{bottom:719.093333pt;}
.y72{bottom:719.626667pt;}
.y43{bottom:723.373333pt;}
.y9d{bottom:731.360000pt;}
.y71{bottom:738.293333pt;}
.y42{bottom:742.040000pt;}
.y9c{bottom:750.040000pt;}
.ye{bottom:759.400000pt;}
.y41{bottom:760.733333pt;}
.y70{bottom:765.000000pt;}
.y9b{bottom:768.733333pt;}
.y40{bottom:779.666667pt;}
.y6f{bottom:783.933333pt;}
.y9a{bottom:787.666667pt;}
.yd{bottom:797.800000pt;}
.y3f{bottom:798.333333pt;}
.y6e{bottom:802.600000pt;}
.y99{bottom:806.333333pt;}
.y3e{bottom:817.000000pt;}
.y6d{bottom:821.266667pt;}
.y98{bottom:825.000000pt;}
.yc{bottom:825.266667pt;}
.y3d{bottom:835.933333pt;}
.y6c{bottom:840.200000pt;}
.y97{bottom:843.933333pt;}
.y3c{bottom:854.600000pt;}
.yb{bottom:855.133333pt;}
.y6b{bottom:858.866667pt;}
.y96{bottom:862.600000pt;}
.y3b{bottom:873.266667pt;}
.y6a{bottom:877.533333pt;}
.y95{bottom:881.266667pt;}
.y3a{bottom:892.200000pt;}
.ya{bottom:893.533333pt;}
.y69{bottom:896.466667pt;}
.y94{bottom:900.200000pt;}
.y39{bottom:910.893333pt;}
.y68{bottom:915.173333pt;}
.y9{bottom:918.626667pt;}
.y93{bottom:918.893333pt;}
.y38{bottom:929.560000pt;}
.y92{bottom:937.560000pt;}
.y67{bottom:941.840000pt;}
.y3{bottom:946.893333pt;}
.y37{bottom:956.506667pt;}
.y66{bottom:960.773333pt;}
.y36{bottom:975.173333pt;}
.y65{bottom:979.440000pt;}
.y35{bottom:993.840000pt;}
.y64{bottom:998.093333pt;}
.y34{bottom:1012.773333pt;}
.y63{bottom:1017.293333pt;}
.y33{bottom:1036.506667pt;}
.y62{bottom:1037.560000pt;}
.y32{bottom:1055.733333pt;}
.h13{height:19.466667pt;}
.h11{height:20.566667pt;}
.hd{height:32.539583pt;}
.h10{height:35.010937pt;}
.h15{height:37.125000pt;}
.hf{height:39.200000pt;}
.hc{height:46.343750pt;}
.he{height:46.406250pt;}
.h14{height:51.046875pt;}
.h12{height:53.046875pt;}
.h2{height:53.395833pt;}
.hb{height:55.429167pt;}
.h6{height:55.687500pt;}
.h9{height:56.187500pt;}
.ha{height:58.250000pt;}
.h3{height:58.351562pt;}
.h5{height:63.656250pt;}
.h8{height:65.552083pt;}
.h7{height:74.916667pt;}
.h4{height:81.066667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w9{width:15.733333pt;}
.w8{width:28.000000pt;}
.w7{width:46.966667pt;}
.wb{width:74.966667pt;}
.w5{width:132.033333pt;}
.w3{width:264.360000pt;}
.w4{width:302.200000pt;}
.w6{width:424.933333pt;}
.wa{width:456.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:2.126667pt;}
.x3{left:7.200000pt;}
.x16{left:22.666667pt;}
.x1{left:113.366655pt;}
.x12{left:116.566667pt;}
.x8{left:119.233322pt;}
.x11{left:122.966667pt;}
.x10{left:132.299988pt;}
.x1b{left:160.599988pt;}
.x15{left:179.266667pt;}
.x7{left:182.733322pt;}
.xd{left:188.866655pt;}
.x17{left:207.266667pt;}
.x5{left:211.800000pt;}
.x18{left:223.000000pt;}
.x1d{left:233.133322pt;}
.x13{left:255.000000pt;}
.x1c{left:265.973322pt;}
.xe{left:276.359988pt;}
.x6{left:294.733333pt;}
.xf{left:305.439988pt;}
.xa{left:308.639988pt;}
.x19{left:316.373322pt;}
.x9{left:319.026655pt;}
.xb{left:351.306655pt;}
.x2{left:360.359988pt;}
.x4{left:377.733333pt;}
.x1a{left:396.933322pt;}
.xc{left:680.466655pt;}
}




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