
    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_2ed4ad15ca5853d5fe9b0fd1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_99d357c2faddad56329d06ae.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_02c6e2cb528c0a93ce6e586a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_5fc88ceb6677d38465d4ce0a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_3e17a4e60759dc70b1f80327.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_1c5ac510adb31234ceef17c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_b4708ec4eb4738061516c30f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944824;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cd7234be3604af7144675366.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_78a40d60aa52ea146c1cce13.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.ls6{letter-spacing:-2.724000px;}
.ls8{letter-spacing:-0.900000px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.022500px;}
.ls9{letter-spacing:1.026000px;}
.ls4{letter-spacing:1.089000px;}
.ls5{letter-spacing:1.128000px;}
.lsa{letter-spacing:1.488000px;}
.ls1{letter-spacing:1.516500px;}
.lsd{letter-spacing:2.160000px;}
.ls2{letter-spacing:2.164500px;}
.lse{letter-spacing:2.190000px;}
.ls0{letter-spacing:2.250000px;}
.ls10{letter-spacing:2.310000px;}
.lsf{letter-spacing:2.430000px;}
.lsb{letter-spacing:17.235000px;}
.ls3{letter-spacing:1487.925000px;}
.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:-45.562500px;}
.ws7{word-spacing:-19.125000px;}
.ws6{word-spacing:-18.363000px;}
.ws2{word-spacing:-16.875000px;}
.ws4{word-spacing:-15.651000px;}
.ws1{word-spacing:-14.625000px;}
.ws0{word-spacing:-12.531000px;}
.ws3{word-spacing:-10.125000px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-8.407500px;}
._a{margin-left:-7.255500px;}
._9{margin-left:-6.043500px;}
._3{margin-left:-4.558500px;}
._4{margin-left:-3.289500px;}
._1{margin-left:-1.755000px;}
._2{width:1.012500px;}
._0{width:2.160000px;}
._6{width:3.849000px;}
._b{width:5.035500px;}
._c{width:6.414000px;}
._7{width:8.157000px;}
._2e{width:9.166500px;}
._14{width:10.192500px;}
._10{width:11.781000px;}
._8{width:12.793500px;}
._17{width:13.828500px;}
._13{width:15.187500px;}
._d{width:17.310000px;}
._15{width:18.754500px;}
._e{width:20.592000px;}
._f{width:21.985500px;}
._1a{width:23.539500px;}
._11{width:25.137000px;}
._1b{width:28.354500px;}
._12{width:31.711500px;}
._18{width:33.277500px;}
._19{width:37.228500px;}
._1e{width:41.377500px;}
._27{width:46.440000px;}
._2a{width:50.202000px;}
._26{width:55.822500px;}
._28{width:59.472000px;}
._1f{width:64.192500px;}
._21{width:68.985000px;}
._23{width:77.742000px;}
._20{width:91.309500px;}
._38{width:96.255000px;}
._39{width:99.811500px;}
._2d{width:100.912500px;}
._22{width:105.214500px;}
._32{width:108.877500px;}
._34{width:110.160000px;}
._33{width:114.093000px;}
._35{width:115.984500px;}
._1d{width:118.395000px;}
._24{width:135.927000px;}
._1c{width:159.367500px;}
._29{width:168.345000px;}
._37{width:184.923000px;}
._36{width:186.282000px;}
._25{width:199.260000px;}
._2c{width:235.941000px;}
._31{width:360.819000px;}
._30{width:366.592500px;}
._2f{width:370.845000px;}
._2b{width:379.485000px;}
._5{width:907.171500px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:40.500000px;}
.fs1{font-size:49.500000px;}
.fs2{font-size:58.500000px;}
.fs0{font-size:67.500000px;}
.fs3{font-size:76.500000px;}
.y0{bottom:0.000000px;}
.y95{bottom:5.625000px;}
.y80{bottom:5.655000px;}
.y86{bottom:6.750000px;}
.y2{bottom:10.125000px;}
.y88{bottom:27.030000px;}
.y94{bottom:28.125000px;}
.y85{bottom:28.155000px;}
.y9e{bottom:49.530000px;}
.y93{bottom:49.545000px;}
.y84{bottom:50.655000px;}
.y92{bottom:70.920000px;}
.y4{bottom:70.950000px;}
.y9d{bottom:72.030000px;}
.y83{bottom:72.075000px;}
.y9c{bottom:93.435000px;}
.y82{bottom:93.450000px;}
.y6a{bottom:112.612500px;}
.y9b{bottom:114.810000px;}
.y91{bottom:114.825000px;}
.y3b{bottom:119.362500px;}
.yb3{bottom:131.775000px;}
.y68{bottom:135.150000px;}
.y9a{bottom:137.355000px;}
.y90{bottom:137.370000px;}
.y81{bottom:137.400000px;}
.y3a{bottom:140.775000px;}
.yb2{bottom:154.275000px;}
.y67{bottom:156.525000px;}
.y99{bottom:158.730000px;}
.y8f{bottom:158.775000px;}
.y39{bottom:162.150000px;}
.yb1{bottom:175.680000px;}
.y66{bottom:179.055000px;}
.y8e{bottom:180.150000px;}
.y98{bottom:181.260000px;}
.y38{bottom:184.680000px;}
.yb0{bottom:197.070000px;}
.y65{bottom:200.445000px;}
.y97{bottom:202.635000px;}
.y8d{bottom:202.695000px;}
.y37{bottom:206.070000px;}
.yaf{bottom:219.600000px;}
.y64{bottom:221.850000px;}
.y8c{bottom:224.070000px;}
.y36{bottom:228.600000px;}
.yae{bottom:240.975000px;}
.y63{bottom:244.350000px;}
.y8b{bottom:245.475000px;}
.y7f{bottom:247.725000px;}
.y35{bottom:249.975000px;}
.yad{bottom:263.505000px;}
.y62{bottom:265.755000px;}
.y8a{bottom:267.975000px;}
.y34{bottom:271.395000px;}
.y7e{bottom:275.880000px;}
.yac{bottom:284.895000px;}
.y61{bottom:288.270000px;}
.y33{bottom:293.880000px;}
.y7d{bottom:298.425000px;}
.yab{bottom:306.300000px;}
.y60{bottom:309.675000px;}
.y32{bottom:315.300000px;}
.y7c{bottom:319.800000px;}
.yaa{bottom:328.800000px;}
.y5f{bottom:331.050000px;}
.y31{bottom:337.830000px;}
.y7b{bottom:338.970000px;}
.ya9{bottom:350.205000px;}
.y5e{bottom:353.580000px;}
.y7a{bottom:358.080000px;}
.y30{bottom:359.220000px;}
.ya8{bottom:372.720000px;}
.y5d{bottom:374.955000px;}
.y79{bottom:377.205000px;}
.y2f{bottom:380.580000px;}
.ya7{bottom:394.125000px;}
.y78{bottom:396.375000px;}
.y5c{bottom:397.500000px;}
.y2e{bottom:403.125000px;}
.y77{bottom:415.500000px;}
.y5b{bottom:418.875000px;}
.y2d{bottom:421.125000px;}
.y2c{bottom:434.655000px;}
.ya6{bottom:438.030000px;}
.y5a{bottom:440.295000px;}
.y2b{bottom:450.420000px;}
.y76{bottom:452.670000px;}
.ya5{bottom:459.420000px;}
.y59{bottom:462.795000px;}
.y2a{bottom:467.325000px;}
.y75{bottom:471.825000px;}
.ya4{bottom:480.825000px;}
.y29{bottom:484.200000px;}
.y74{bottom:490.950000px;}
.y28{bottom:502.200000px;}
.ya3{bottom:503.325000px;}
.y58{bottom:506.700000px;}
.y73{bottom:510.075000px;}
.y27{bottom:519.120000px;}
.ya2{bottom:524.730000px;}
.y57{bottom:528.105000px;}
.y72{bottom:529.245000px;}
.y26{bottom:535.995000px;}
.ya1{bottom:547.245000px;}
.y71{bottom:548.355000px;}
.y56{bottom:549.495000px;}
.y25{bottom:554.025000px;}
.y70{bottom:567.525000px;}
.ya0{bottom:568.650000px;}
.y24{bottom:570.900000px;}
.y55{bottom:572.025000px;}
.y6f{bottom:586.650000px;}
.y23{bottom:587.775000px;}
.y9f{bottom:590.025000px;}
.y54{bottom:593.400000px;}
.y6e{bottom:604.695000px;}
.y22{bottom:605.820000px;}
.y96{bottom:606.945000px;}
.y53{bottom:615.945000px;}
.y21{bottom:622.695000px;}
.y6d{bottom:623.820000px;}
.y52{bottom:637.320000px;}
.y20{bottom:639.570000px;}
.y6c{bottom:642.975000px;}
.y1f{bottom:657.600000px;}
.y51{bottom:658.725000px;}
.y6b{bottom:662.100000px;}
.y1e{bottom:674.475000px;}
.y50{bottom:681.225000px;}
.y1d{bottom:691.380000px;}
.y4f{bottom:702.645000px;}
.y1c{bottom:709.395000px;}
.y4e{bottom:724.005000px;}
.y1b{bottom:726.300000px;}
.y1a{bottom:743.175000px;}
.y4d{bottom:746.550000px;}
.y19{bottom:761.175000px;}
.y4c{bottom:767.925000px;}
.y18{bottom:778.080000px;}
.y4b{bottom:790.455000px;}
.y17{bottom:794.955000px;}
.y4a{bottom:811.830000px;}
.y16{bottom:813.000000px;}
.y89{bottom:826.500000px;}
.y15{bottom:829.875000px;}
.y49{bottom:833.250000px;}
.y14{bottom:846.750000px;}
.y48{bottom:855.795000px;}
.y13{bottom:864.795000px;}
.y47{bottom:877.170000px;}
.y12{bottom:881.670000px;}
.y11{bottom:898.575000px;}
.y46{bottom:899.700000px;}
.y10{bottom:919.950000px;}
.y45{bottom:921.075000px;}
.y44{bottom:942.495000px;}
.yf{bottom:948.120000px;}
.ye{bottom:963.870000px;}
.y43{bottom:964.995000px;}
.yd{bottom:985.275000px;}
.y42{bottom:986.400000px;}
.yc{bottom:1008.900000px;}
.y41{bottom:1030.320000px;}
.yb{bottom:1034.820000px;}
.y40{bottom:1051.695000px;}
.ya{bottom:1057.320000px;}
.y9{bottom:1073.100000px;}
.y3f{bottom:1074.225000px;}
.y8{bottom:1089.975000px;}
.y3e{bottom:1095.600000px;}
.y7{bottom:1106.850000px;}
.y87{bottom:1111.350000px;}
.y3d{bottom:1118.130000px;}
.y6{bottom:1124.880000px;}
.y3c{bottom:1139.505000px;}
.y5{bottom:1141.755000px;}
.y3{bottom:1165.425000px;}
.y69{bottom:1180.050000px;}
.y1{bottom:1181.175000px;}
.h14{height:21.412500px;}
.hc{height:28.278809px;}
.h2{height:29.287500px;}
.h7{height:34.925537px;}
.h5{height:40.798828px;}
.hf{height:40.847168px;}
.h6{height:41.275635px;}
.h16{height:42.787500px;}
.hd{height:47.131348px;}
.ha{height:47.625732px;}
.h10{height:48.216797px;}
.h11{height:48.911133px;}
.h12{height:49.141846px;}
.he{height:50.778809px;}
.h3{height:51.020508px;}
.hb{height:51.075439px;}
.h8{height:53.975830px;}
.h9{height:55.432617px;}
.h13{height:55.634766px;}
.h4{height:67.137451px;}
.h15{height:109.200000px;}
.h18{height:218.445000px;}
.h17{height:283.725000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:52.912500px;}
.w6{width:184.725000px;}
.w7{width:202.770000px;}
.w8{width:248.925000px;}
.w2{width:617.280000px;}
.w5{width:626.280000px;}
.w4{width:636.405000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.905000px;}
.x2{left:10.125000px;}
.x14{left:38.280000px;}
.x17{left:69.825000px;}
.x1{left:108.150000px;}
.x13{left:127.275000px;}
.xf{left:129.524987px;}
.x6{left:134.024987px;}
.x18{left:144.187487px;}
.xd{left:150.929987px;}
.x3{left:161.070000px;}
.xe{left:162.179987px;}
.x10{left:174.599987px;}
.xa{left:180.224987px;}
.x9{left:223.004987px;}
.x7{left:270.329987px;}
.x8{left:311.999987px;}
.x15{left:313.125000px;}
.x12{left:388.619987px;}
.x11{left:417.899987px;}
.xc{left:420.149987px;}
.xb{left:421.274987px;}
.x5{left:447.194987px;}
.x16{left:517.020000px;}
@media print{
.v2{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.ls6{letter-spacing:-2.421333pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.020000pt;}
.ls9{letter-spacing:0.912000pt;}
.ls4{letter-spacing:0.968000pt;}
.ls5{letter-spacing:1.002667pt;}
.lsa{letter-spacing:1.322667pt;}
.ls1{letter-spacing:1.348000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls2{letter-spacing:1.924000pt;}
.lse{letter-spacing:1.946667pt;}
.ls0{letter-spacing:2.000000pt;}
.ls10{letter-spacing:2.053333pt;}
.lsf{letter-spacing:2.160000pt;}
.lsb{letter-spacing:15.320000pt;}
.ls3{letter-spacing:1322.600000pt;}
.ws8{word-spacing:-40.500000pt;}
.ws7{word-spacing:-17.000000pt;}
.ws6{word-spacing:-16.322667pt;}
.ws2{word-spacing:-15.000000pt;}
.ws4{word-spacing:-13.912000pt;}
.ws1{word-spacing:-13.000000pt;}
.ws0{word-spacing:-11.138667pt;}
.ws3{word-spacing:-9.000000pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-7.473333pt;}
._a{margin-left:-6.449333pt;}
._9{margin-left:-5.372000pt;}
._3{margin-left:-4.052000pt;}
._4{margin-left:-2.924000pt;}
._1{margin-left:-1.560000pt;}
._2{width:0.900000pt;}
._0{width:1.920000pt;}
._6{width:3.421333pt;}
._b{width:4.476000pt;}
._c{width:5.701333pt;}
._7{width:7.250667pt;}
._2e{width:8.148000pt;}
._14{width:9.060000pt;}
._10{width:10.472000pt;}
._8{width:11.372000pt;}
._17{width:12.292000pt;}
._13{width:13.500000pt;}
._d{width:15.386667pt;}
._15{width:16.670667pt;}
._e{width:18.304000pt;}
._f{width:19.542667pt;}
._1a{width:20.924000pt;}
._11{width:22.344000pt;}
._1b{width:25.204000pt;}
._12{width:28.188000pt;}
._18{width:29.580000pt;}
._19{width:33.092000pt;}
._1e{width:36.780000pt;}
._27{width:41.280000pt;}
._2a{width:44.624000pt;}
._26{width:49.620000pt;}
._28{width:52.864000pt;}
._1f{width:57.060000pt;}
._21{width:61.320000pt;}
._23{width:69.104000pt;}
._20{width:81.164000pt;}
._38{width:85.560000pt;}
._39{width:88.721333pt;}
._2d{width:89.700000pt;}
._22{width:93.524000pt;}
._32{width:96.780000pt;}
._34{width:97.920000pt;}
._33{width:101.416000pt;}
._35{width:103.097333pt;}
._1d{width:105.240000pt;}
._24{width:120.824000pt;}
._1c{width:141.660000pt;}
._29{width:149.640000pt;}
._37{width:164.376000pt;}
._36{width:165.584000pt;}
._25{width:177.120000pt;}
._2c{width:209.725333pt;}
._31{width:320.728000pt;}
._30{width:325.860000pt;}
._2f{width:329.640000pt;}
._2b{width:337.320000pt;}
._5{width:806.374667pt;}
.fs4{font-size:36.000000pt;}
.fs1{font-size:44.000000pt;}
.fs2{font-size:52.000000pt;}
.fs0{font-size:60.000000pt;}
.fs3{font-size:68.000000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:5.000000pt;}
.y80{bottom:5.026667pt;}
.y86{bottom:6.000000pt;}
.y2{bottom:9.000000pt;}
.y88{bottom:24.026667pt;}
.y94{bottom:25.000000pt;}
.y85{bottom:25.026667pt;}
.y9e{bottom:44.026667pt;}
.y93{bottom:44.040000pt;}
.y84{bottom:45.026667pt;}
.y92{bottom:63.040000pt;}
.y4{bottom:63.066667pt;}
.y9d{bottom:64.026667pt;}
.y83{bottom:64.066667pt;}
.y9c{bottom:83.053333pt;}
.y82{bottom:83.066667pt;}
.y6a{bottom:100.100000pt;}
.y9b{bottom:102.053333pt;}
.y91{bottom:102.066667pt;}
.y3b{bottom:106.100000pt;}
.yb3{bottom:117.133333pt;}
.y68{bottom:120.133333pt;}
.y9a{bottom:122.093333pt;}
.y90{bottom:122.106667pt;}
.y81{bottom:122.133333pt;}
.y3a{bottom:125.133333pt;}
.yb2{bottom:137.133333pt;}
.y67{bottom:139.133333pt;}
.y99{bottom:141.093333pt;}
.y8f{bottom:141.133333pt;}
.y39{bottom:144.133333pt;}
.yb1{bottom:156.160000pt;}
.y66{bottom:159.160000pt;}
.y8e{bottom:160.133333pt;}
.y98{bottom:161.120000pt;}
.y38{bottom:164.160000pt;}
.yb0{bottom:175.173333pt;}
.y65{bottom:178.173333pt;}
.y97{bottom:180.120000pt;}
.y8d{bottom:180.173333pt;}
.y37{bottom:183.173333pt;}
.yaf{bottom:195.200000pt;}
.y64{bottom:197.200000pt;}
.y8c{bottom:199.173333pt;}
.y36{bottom:203.200000pt;}
.yae{bottom:214.200000pt;}
.y63{bottom:217.200000pt;}
.y8b{bottom:218.200000pt;}
.y7f{bottom:220.200000pt;}
.y35{bottom:222.200000pt;}
.yad{bottom:234.226667pt;}
.y62{bottom:236.226667pt;}
.y8a{bottom:238.200000pt;}
.y34{bottom:241.240000pt;}
.y7e{bottom:245.226667pt;}
.yac{bottom:253.240000pt;}
.y61{bottom:256.240000pt;}
.y33{bottom:261.226667pt;}
.y7d{bottom:265.266667pt;}
.yab{bottom:272.266667pt;}
.y60{bottom:275.266667pt;}
.y32{bottom:280.266667pt;}
.y7c{bottom:284.266667pt;}
.yaa{bottom:292.266667pt;}
.y5f{bottom:294.266667pt;}
.y31{bottom:300.293333pt;}
.y7b{bottom:301.306667pt;}
.ya9{bottom:311.293333pt;}
.y5e{bottom:314.293333pt;}
.y7a{bottom:318.293333pt;}
.y30{bottom:319.306667pt;}
.ya8{bottom:331.306667pt;}
.y5d{bottom:333.293333pt;}
.y79{bottom:335.293333pt;}
.y2f{bottom:338.293333pt;}
.ya7{bottom:350.333333pt;}
.y78{bottom:352.333333pt;}
.y5c{bottom:353.333333pt;}
.y2e{bottom:358.333333pt;}
.y77{bottom:369.333333pt;}
.y5b{bottom:372.333333pt;}
.y2d{bottom:374.333333pt;}
.y2c{bottom:386.360000pt;}
.ya6{bottom:389.360000pt;}
.y5a{bottom:391.373333pt;}
.y2b{bottom:400.373333pt;}
.y76{bottom:402.373333pt;}
.ya5{bottom:408.373333pt;}
.y59{bottom:411.373333pt;}
.y2a{bottom:415.400000pt;}
.y75{bottom:419.400000pt;}
.ya4{bottom:427.400000pt;}
.y29{bottom:430.400000pt;}
.y74{bottom:436.400000pt;}
.y28{bottom:446.400000pt;}
.ya3{bottom:447.400000pt;}
.y58{bottom:450.400000pt;}
.y73{bottom:453.400000pt;}
.y27{bottom:461.440000pt;}
.ya2{bottom:466.426667pt;}
.y57{bottom:469.426667pt;}
.y72{bottom:470.440000pt;}
.y26{bottom:476.440000pt;}
.ya1{bottom:486.440000pt;}
.y71{bottom:487.426667pt;}
.y56{bottom:488.440000pt;}
.y25{bottom:492.466667pt;}
.y70{bottom:504.466667pt;}
.ya0{bottom:505.466667pt;}
.y24{bottom:507.466667pt;}
.y55{bottom:508.466667pt;}
.y6f{bottom:521.466667pt;}
.y23{bottom:522.466667pt;}
.y9f{bottom:524.466667pt;}
.y54{bottom:527.466667pt;}
.y6e{bottom:537.506667pt;}
.y22{bottom:538.506667pt;}
.y96{bottom:539.506667pt;}
.y53{bottom:547.506667pt;}
.y21{bottom:553.506667pt;}
.y6d{bottom:554.506667pt;}
.y52{bottom:566.506667pt;}
.y20{bottom:568.506667pt;}
.y6c{bottom:571.533333pt;}
.y1f{bottom:584.533333pt;}
.y51{bottom:585.533333pt;}
.y6b{bottom:588.533333pt;}
.y1e{bottom:599.533333pt;}
.y50{bottom:605.533333pt;}
.y1d{bottom:614.560000pt;}
.y4f{bottom:624.573333pt;}
.y1c{bottom:630.573333pt;}
.y4e{bottom:643.560000pt;}
.y1b{bottom:645.600000pt;}
.y1a{bottom:660.600000pt;}
.y4d{bottom:663.600000pt;}
.y19{bottom:676.600000pt;}
.y4c{bottom:682.600000pt;}
.y18{bottom:691.626667pt;}
.y4b{bottom:702.626667pt;}
.y17{bottom:706.626667pt;}
.y4a{bottom:721.626667pt;}
.y16{bottom:722.666667pt;}
.y89{bottom:734.666667pt;}
.y15{bottom:737.666667pt;}
.y49{bottom:740.666667pt;}
.y14{bottom:752.666667pt;}
.y48{bottom:760.706667pt;}
.y13{bottom:768.706667pt;}
.y47{bottom:779.706667pt;}
.y12{bottom:783.706667pt;}
.y11{bottom:798.733333pt;}
.y46{bottom:799.733333pt;}
.y10{bottom:817.733333pt;}
.y45{bottom:818.733333pt;}
.y44{bottom:837.773333pt;}
.yf{bottom:842.773333pt;}
.ye{bottom:856.773333pt;}
.y43{bottom:857.773333pt;}
.yd{bottom:875.800000pt;}
.y42{bottom:876.800000pt;}
.yc{bottom:896.800000pt;}
.y41{bottom:915.840000pt;}
.yb{bottom:919.840000pt;}
.y40{bottom:934.840000pt;}
.ya{bottom:939.840000pt;}
.y9{bottom:953.866667pt;}
.y3f{bottom:954.866667pt;}
.y8{bottom:968.866667pt;}
.y3e{bottom:973.866667pt;}
.y7{bottom:983.866667pt;}
.y87{bottom:987.866667pt;}
.y3d{bottom:993.893333pt;}
.y6{bottom:999.893333pt;}
.y3c{bottom:1012.893333pt;}
.y5{bottom:1014.893333pt;}
.y3{bottom:1035.933333pt;}
.y69{bottom:1048.933333pt;}
.y1{bottom:1049.933333pt;}
.h14{height:19.033333pt;}
.hc{height:25.136719pt;}
.h2{height:26.033333pt;}
.h7{height:31.044922pt;}
.h5{height:36.265625pt;}
.hf{height:36.308594pt;}
.h6{height:36.689453pt;}
.h16{height:38.033333pt;}
.hd{height:41.894531pt;}
.ha{height:42.333984pt;}
.h10{height:42.859375pt;}
.h11{height:43.476562pt;}
.h12{height:43.681641pt;}
.he{height:45.136719pt;}
.h3{height:45.351562pt;}
.hb{height:45.400391pt;}
.h8{height:47.978516pt;}
.h9{height:49.273438pt;}
.h13{height:49.453125pt;}
.h4{height:59.677734pt;}
.h15{height:97.066667pt;}
.h18{height:194.173333pt;}
.h17{height:252.200000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:47.033333pt;}
.w6{width:164.200000pt;}
.w7{width:180.240000pt;}
.w8{width:221.266667pt;}
.w2{width:548.693333pt;}
.w5{width:556.693333pt;}
.w4{width:565.693333pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.026667pt;}
.x2{left:9.000000pt;}
.x14{left:34.026667pt;}
.x17{left:62.066667pt;}
.x1{left:96.133333pt;}
.x13{left:113.133333pt;}
.xf{left:115.133322pt;}
.x6{left:119.133322pt;}
.x18{left:128.166655pt;}
.xd{left:134.159988pt;}
.x3{left:143.173333pt;}
.xe{left:144.159988pt;}
.x10{left:155.199988pt;}
.xa{left:160.199988pt;}
.x9{left:198.226655pt;}
.x7{left:240.293322pt;}
.x8{left:277.333322pt;}
.x15{left:278.333333pt;}
.x12{left:345.439988pt;}
.x11{left:371.466655pt;}
.xc{left:373.466655pt;}
.xb{left:374.466655pt;}
.x5{left:397.506655pt;}
.x16{left:459.573333pt;}
}




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