
    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_09fe213d710d7cc3d41826dc.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_6af6aa3681c2c3fd0f007609.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_3b8e8301d1dbb8bfeec23eb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_ac18606799fdbdf7089908ab.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4dbcef0a795a6a0520bc607b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2fc632e9d6f892535cfac7df.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_ede7a325df9ecc6feafdf358.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_19492e4d1fb7cb16c1bf9cf1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_19838a6fe84065adbfe15293.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_477733a9b2e00f547d77cd41.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-82.080000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.720000px;}
.lsd{letter-spacing:5.904000px;}
.lsc{letter-spacing:9.504000px;}
.ls9{letter-spacing:44.760000px;}
.ls1{letter-spacing:513.336000px;}
.ls0{letter-spacing:826.140000px;}
.ls2{letter-spacing:846.876000px;}
.ls4{letter-spacing:1184.556000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-66.240000px;}
.ws4{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws7{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.940000px;}
.ws6{word-spacing:0.000000px;}
._1a{margin-left:-5.287680px;}
._4{margin-left:-3.816000px;}
._5{margin-left:-2.664000px;}
._0{margin-left:-1.192320px;}
._1{width:1.024320px;}
._7{width:2.304000px;}
._a{width:3.350400px;}
._8{width:4.392000px;}
._e{width:5.520000px;}
._f{width:6.595680px;}
._9{width:8.400000px;}
._14{width:9.408000px;}
._c{width:10.416000px;}
._d{width:11.508000px;}
._15{width:12.528000px;}
._b{width:13.656000px;}
._2{width:15.624000px;}
._3{width:16.632000px;}
._1c{width:17.674080px;}
._11{width:19.080000px;}
._6{width:20.232000px;}
._1b{width:21.960000px;}
._10{width:23.016000px;}
._17{width:24.952320px;}
._16{width:25.992000px;}
._12{width:27.720000px;}
._13{width:29.215680px;}
._1f{width:30.352320px;}
._20{width:32.904000px;}
._19{width:38.664000px;}
._18{width:39.816000px;}
._1d{width:44.136000px;}
._1e{width:45.211680px;}
._21{width:72.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:29.700000px;}
.y7e{bottom:50.220000px;}
.y7d{bottom:73.440000px;}
.y53{bottom:88.236000px;}
.y5a{bottom:93.456000px;}
.y5d{bottom:93.816000px;}
.y30{bottom:100.836000px;}
.y95{bottom:104.256000px;}
.y52{bottom:105.336000px;}
.y75{bottom:106.596000px;}
.y51{bottom:110.556000px;}
.y2f{bottom:121.536000px;}
.y59{bottom:122.616000px;}
.y50{bottom:123.876000px;}
.y5c{bottom:124.956000px;}
.y58{bottom:127.836000px;}
.y83{bottom:139.896000px;}
.y57{bottom:141.156000px;}
.y2e{bottom:142.236000px;}
.y82{bottom:145.116000px;}
.y94{bottom:145.656000px;}
.y5b{bottom:155.910000px;}
.y81{bottom:158.430000px;}
.y2d{bottom:162.930000px;}
.y74{bottom:166.350000px;}
.y7b{bottom:179.820000px;}
.y2c{bottom:183.630000px;}
.y56{bottom:187.050000px;}
.y78{bottom:191.160000px;}
.y73{bottom:197.310000px;}
.y2b{bottom:204.330000px;}
.y93{bottom:207.750000px;}
.y7a{bottom:209.160000px;}
.y4f{bottom:218.010000px;}
.y2a{bottom:225.030000px;}
.y72{bottom:228.450000px;}
.y77{bottom:231.330000px;}
.y29{bottom:245.730000px;}
.y4e{bottom:249.150000px;}
.y71{bottom:259.410000px;}
.y28{bottom:266.250000px;}
.y92{bottom:269.850000px;}
.y4d{bottom:280.110000px;}
.y27{bottom:286.950000px;}
.y70{bottom:290.550000px;}
.y26{bottom:307.650000px;}
.y4c{bottom:311.250000px;}
.y6f{bottom:318.990000px;}
.y25{bottom:328.395000px;}
.y91{bottom:331.995000px;}
.y4b{bottom:342.255000px;}
.y6e{bottom:347.475000px;}
.y24{bottom:349.095000px;}
.y90{bottom:352.695000px;}
.y76{bottom:367.275000px;}
.y23{bottom:369.795000px;}
.y49{bottom:373.395000px;}
.y79{bottom:377.535000px;}
.y6d{bottom:378.435000px;}
.y4a{bottom:380.235000px;}
.y22{bottom:390.495000px;}
.y7c{bottom:390.675000px;}
.y8f{bottom:394.095000px;}
.y48{bottom:404.355000px;}
.y6c{bottom:409.575000px;}
.y21{bottom:411.195000px;}
.y8e{bottom:414.795000px;}
.y20{bottom:431.895000px;}
.y47{bottom:435.495000px;}
.y6b{bottom:440.535000px;}
.y1f{bottom:452.595000px;}
.y8d{bottom:456.195000px;}
.y46{bottom:466.455000px;}
.y6a{bottom:471.675000px;}
.y1e{bottom:473.295000px;}
.y8c{bottom:476.895000px;}
.y1d{bottom:493.995000px;}
.y45{bottom:497.595000px;}
.y69{bottom:502.635000px;}
.y1c{bottom:514.695000px;}
.y8b{bottom:518.295000px;}
.y44{bottom:528.555000px;}
.y68{bottom:533.775000px;}
.y1b{bottom:535.395000px;}
.y8a{bottom:538.995000px;}
.y1a{bottom:556.095000px;}
.y43{bottom:559.695000px;}
.y67{bottom:564.735000px;}
.y19{bottom:576.795000px;}
.y89{bottom:580.395000px;}
.y42{bottom:590.655000px;}
.y66{bottom:595.905000px;}
.y18{bottom:597.525000px;}
.y88{bottom:601.125000px;}
.y17{bottom:618.225000px;}
.y41{bottom:621.645000px;}
.y65{bottom:626.865000px;}
.y16{bottom:638.925000px;}
.y87{bottom:642.345000px;}
.y40{bottom:652.785000px;}
.y64{bottom:658.005000px;}
.y15{bottom:659.625000px;}
.y86{bottom:663.045000px;}
.y14{bottom:680.325000px;}
.y3f{bottom:683.745000px;}
.y63{bottom:688.965000px;}
.y80{bottom:690.585000px;}
.y13{bottom:701.025000px;}
.y85{bottom:704.445000px;}
.y3e{bottom:714.885000px;}
.y62{bottom:720.105000px;}
.y12{bottom:721.725000px;}
.y84{bottom:725.145000px;}
.y11{bottom:742.425000px;}
.y3d{bottom:745.845000px;}
.y61{bottom:751.065000px;}
.y3c{bottom:776.985000px;}
.y60{bottom:782.205000px;}
.y10{bottom:783.825000px;}
.yf{bottom:804.525000px;}
.y3b{bottom:807.945000px;}
.y5f{bottom:810.645000px;}
.ye{bottom:825.225000px;}
.y3a{bottom:839.085000px;}
.yd{bottom:845.925000px;}
.y39{bottom:870.090000px;}
.yc{bottom:887.370000px;}
.y38{bottom:901.230000px;}
.yb{bottom:908.070000px;}
.ya{bottom:928.770000px;}
.y37{bottom:932.190000px;}
.y7f{bottom:939.030000px;}
.y36{bottom:963.330000px;}
.y9{bottom:970.170000px;}
.y8{bottom:990.870000px;}
.y35{bottom:994.290000px;}
.y5e{bottom:1001.130000px;}
.y34{bottom:1025.430000px;}
.y7{bottom:1032.090000px;}
.y6{bottom:1052.970000px;}
.y33{bottom:1056.390000px;}
.y55{bottom:1063.230000px;}
.y5{bottom:1073.670000px;}
.y97{bottom:1077.090000px;}
.y32{bottom:1087.530000px;}
.y4{bottom:1094.370000px;}
.y96{bottom:1097.790000px;}
.y3{bottom:1115.610000px;}
.y31{bottom:1118.490000px;}
.y54{bottom:1125.330000px;}
.y1{bottom:1231.740000px;}
.hc{height:38.158594px;}
.ha{height:47.344922px;}
.h3{height:53.464219px;}
.hd{height:58.651172px;}
.hf{height:59.439023px;}
.h10{height:60.226875px;}
.he{height:64.546875px;}
.hb{height:65.884219px;}
.h13{height:67.824844px;}
.h8{height:70.628906px;}
.h5{height:70.664062px;}
.h6{height:72.562500px;}
.h7{height:74.004654px;}
.h9{height:74.953125px;}
.h2{height:76.317188px;}
.h4{height:84.898125px;}
.h12{height:86.255508px;}
.h15{height:116.640000px;}
.h14{height:384.870000px;}
.h11{height:419.790000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:241.050000px;}
.w5{width:287.715000px;}
.w4{width:572.325000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:10.800000px;}
.x1e{left:16.920000px;}
.x21{left:31.320000px;}
.x22{left:74.160000px;}
.x1f{left:107.130000px;}
.x7{left:127.655987px;}
.x12{left:132.515987px;}
.xd{left:154.649987px;}
.x1b{left:178.590000px;}
.xe{left:180.749987px;}
.x1a{left:191.549987px;}
.xb{left:201.809987px;}
.x9{left:208.109987px;}
.x3{left:210.809987px;}
.x2{left:241.769987px;}
.x6{left:262.109987px;}
.x17{left:311.294973px;}
.x8{left:317.234987px;}
.x4{left:318.674987px;}
.x11{left:343.694987px;}
.x18{left:348.734987px;}
.x25{left:349.814987px;}
.xf{left:375.374973px;}
.x10{left:381.494987px;}
.xa{left:398.234987px;}
.x26{left:403.274987px;}
.x19{left:410.114987px;}
.x15{left:414.614973px;}
.x16{left:420.734987px;}
.xc{left:421.814987px;}
.x1d{left:453.135000px;}
.x5{left:467.894987px;}
.x13{left:477.644973px;}
.x20{left:480.885000px;}
.x14{left:483.764987px;}
.x23{left:667.769973px;}
.x24{left:673.889987px;}
.x1{left:778.829987px;}
@media print{
.v1{vertical-align:-72.960000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsd{letter-spacing:5.248000pt;}
.lsc{letter-spacing:8.448000pt;}
.ls9{letter-spacing:39.786667pt;}
.ls1{letter-spacing:456.298667pt;}
.ls0{letter-spacing:734.346667pt;}
.ls2{letter-spacing:752.778667pt;}
.ls4{letter-spacing:1052.938667pt;}
.ws0{word-spacing:-58.880000pt;}
.ws4{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.280000pt;}
.ws6{word-spacing:0.000000pt;}
._1a{margin-left:-4.700160pt;}
._4{margin-left:-3.392000pt;}
._5{margin-left:-2.368000pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.910507pt;}
._7{width:2.048000pt;}
._a{width:2.978133pt;}
._8{width:3.904000pt;}
._e{width:4.906667pt;}
._f{width:5.862827pt;}
._9{width:7.466667pt;}
._14{width:8.362667pt;}
._c{width:9.258667pt;}
._d{width:10.229333pt;}
._15{width:11.136000pt;}
._b{width:12.138667pt;}
._2{width:13.888000pt;}
._3{width:14.784000pt;}
._1c{width:15.710293pt;}
._11{width:16.960000pt;}
._6{width:17.984000pt;}
._1b{width:19.520000pt;}
._10{width:20.458667pt;}
._17{width:22.179840pt;}
._16{width:23.104000pt;}
._12{width:24.640000pt;}
._13{width:25.969493pt;}
._1f{width:26.979840pt;}
._20{width:29.248000pt;}
._19{width:34.368000pt;}
._18{width:35.392000pt;}
._1d{width:39.232000pt;}
._1e{width:40.188160pt;}
._21{width:64.138667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.400000pt;}
.y7e{bottom:44.640000pt;}
.y7d{bottom:65.280000pt;}
.y53{bottom:78.432000pt;}
.y5a{bottom:83.072000pt;}
.y5d{bottom:83.392000pt;}
.y30{bottom:89.632000pt;}
.y95{bottom:92.672000pt;}
.y52{bottom:93.632000pt;}
.y75{bottom:94.752000pt;}
.y51{bottom:98.272000pt;}
.y2f{bottom:108.032000pt;}
.y59{bottom:108.992000pt;}
.y50{bottom:110.112000pt;}
.y5c{bottom:111.072000pt;}
.y58{bottom:113.632000pt;}
.y83{bottom:124.352000pt;}
.y57{bottom:125.472000pt;}
.y2e{bottom:126.432000pt;}
.y82{bottom:128.992000pt;}
.y94{bottom:129.472000pt;}
.y5b{bottom:138.586667pt;}
.y81{bottom:140.826667pt;}
.y2d{bottom:144.826667pt;}
.y74{bottom:147.866667pt;}
.y7b{bottom:159.840000pt;}
.y2c{bottom:163.226667pt;}
.y56{bottom:166.266667pt;}
.y78{bottom:169.920000pt;}
.y73{bottom:175.386667pt;}
.y2b{bottom:181.626667pt;}
.y93{bottom:184.666667pt;}
.y7a{bottom:185.920000pt;}
.y4f{bottom:193.786667pt;}
.y2a{bottom:200.026667pt;}
.y72{bottom:203.066667pt;}
.y77{bottom:205.626667pt;}
.y29{bottom:218.426667pt;}
.y4e{bottom:221.466667pt;}
.y71{bottom:230.586667pt;}
.y28{bottom:236.666667pt;}
.y92{bottom:239.866667pt;}
.y4d{bottom:248.986667pt;}
.y27{bottom:255.066667pt;}
.y70{bottom:258.266667pt;}
.y26{bottom:273.466667pt;}
.y4c{bottom:276.666667pt;}
.y6f{bottom:283.546667pt;}
.y25{bottom:291.906667pt;}
.y91{bottom:295.106667pt;}
.y4b{bottom:304.226667pt;}
.y6e{bottom:308.866667pt;}
.y24{bottom:310.306667pt;}
.y90{bottom:313.506667pt;}
.y76{bottom:326.466667pt;}
.y23{bottom:328.706667pt;}
.y49{bottom:331.906667pt;}
.y79{bottom:335.586667pt;}
.y6d{bottom:336.386667pt;}
.y4a{bottom:337.986667pt;}
.y22{bottom:347.106667pt;}
.y7c{bottom:347.266667pt;}
.y8f{bottom:350.306667pt;}
.y48{bottom:359.426667pt;}
.y6c{bottom:364.066667pt;}
.y21{bottom:365.506667pt;}
.y8e{bottom:368.706667pt;}
.y20{bottom:383.906667pt;}
.y47{bottom:387.106667pt;}
.y6b{bottom:391.586667pt;}
.y1f{bottom:402.306667pt;}
.y8d{bottom:405.506667pt;}
.y46{bottom:414.626667pt;}
.y6a{bottom:419.266667pt;}
.y1e{bottom:420.706667pt;}
.y8c{bottom:423.906667pt;}
.y1d{bottom:439.106667pt;}
.y45{bottom:442.306667pt;}
.y69{bottom:446.786667pt;}
.y1c{bottom:457.506667pt;}
.y8b{bottom:460.706667pt;}
.y44{bottom:469.826667pt;}
.y68{bottom:474.466667pt;}
.y1b{bottom:475.906667pt;}
.y8a{bottom:479.106667pt;}
.y1a{bottom:494.306667pt;}
.y43{bottom:497.506667pt;}
.y67{bottom:501.986667pt;}
.y19{bottom:512.706667pt;}
.y89{bottom:515.906667pt;}
.y42{bottom:525.026667pt;}
.y66{bottom:529.693333pt;}
.y18{bottom:531.133333pt;}
.y88{bottom:534.333333pt;}
.y17{bottom:549.533333pt;}
.y41{bottom:552.573333pt;}
.y65{bottom:557.213333pt;}
.y16{bottom:567.933333pt;}
.y87{bottom:570.973333pt;}
.y40{bottom:580.253333pt;}
.y64{bottom:584.893333pt;}
.y15{bottom:586.333333pt;}
.y86{bottom:589.373333pt;}
.y14{bottom:604.733333pt;}
.y3f{bottom:607.773333pt;}
.y63{bottom:612.413333pt;}
.y80{bottom:613.853333pt;}
.y13{bottom:623.133333pt;}
.y85{bottom:626.173333pt;}
.y3e{bottom:635.453333pt;}
.y62{bottom:640.093333pt;}
.y12{bottom:641.533333pt;}
.y84{bottom:644.573333pt;}
.y11{bottom:659.933333pt;}
.y3d{bottom:662.973333pt;}
.y61{bottom:667.613333pt;}
.y3c{bottom:690.653333pt;}
.y60{bottom:695.293333pt;}
.y10{bottom:696.733333pt;}
.yf{bottom:715.133333pt;}
.y3b{bottom:718.173333pt;}
.y5f{bottom:720.573333pt;}
.ye{bottom:733.533333pt;}
.y3a{bottom:745.853333pt;}
.yd{bottom:751.933333pt;}
.y39{bottom:773.413333pt;}
.yc{bottom:788.773333pt;}
.y38{bottom:801.093333pt;}
.yb{bottom:807.173333pt;}
.ya{bottom:825.573333pt;}
.y37{bottom:828.613333pt;}
.y7f{bottom:834.693333pt;}
.y36{bottom:856.293333pt;}
.y9{bottom:862.373333pt;}
.y8{bottom:880.773333pt;}
.y35{bottom:883.813333pt;}
.y5e{bottom:889.893333pt;}
.y34{bottom:911.493333pt;}
.y7{bottom:917.413333pt;}
.y6{bottom:935.973333pt;}
.y33{bottom:939.013333pt;}
.y55{bottom:945.093333pt;}
.y5{bottom:954.373333pt;}
.y97{bottom:957.413333pt;}
.y32{bottom:966.693333pt;}
.y4{bottom:972.773333pt;}
.y96{bottom:975.813333pt;}
.y3{bottom:991.653333pt;}
.y31{bottom:994.213333pt;}
.y54{bottom:1000.293333pt;}
.y1{bottom:1094.880000pt;}
.hc{height:33.918750pt;}
.ha{height:42.084375pt;}
.h3{height:47.523750pt;}
.hd{height:52.134375pt;}
.hf{height:52.834688pt;}
.h10{height:53.535000pt;}
.he{height:57.375000pt;}
.hb{height:58.563750pt;}
.h13{height:60.288750pt;}
.h8{height:62.781250pt;}
.h5{height:62.812500pt;}
.h6{height:64.500000pt;}
.h7{height:65.781915pt;}
.h9{height:66.625000pt;}
.h2{height:67.837500pt;}
.h4{height:75.465000pt;}
.h12{height:76.671562pt;}
.h15{height:103.680000pt;}
.h14{height:342.106667pt;}
.h11{height:373.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:214.266667pt;}
.w5{width:255.746667pt;}
.w4{width:508.733333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:9.600000pt;}
.x1e{left:15.040000pt;}
.x21{left:27.840000pt;}
.x22{left:65.920000pt;}
.x1f{left:95.226667pt;}
.x7{left:113.471988pt;}
.x12{left:117.791988pt;}
.xd{left:137.466655pt;}
.x1b{left:158.746667pt;}
.xe{left:160.666655pt;}
.x1a{left:170.266655pt;}
.xb{left:179.386655pt;}
.x9{left:184.986655pt;}
.x3{left:187.386655pt;}
.x2{left:214.906655pt;}
.x6{left:232.986655pt;}
.x17{left:276.706643pt;}
.x8{left:281.986655pt;}
.x4{left:283.266655pt;}
.x11{left:305.506655pt;}
.x18{left:309.986655pt;}
.x25{left:310.946655pt;}
.xf{left:333.666643pt;}
.x10{left:339.106655pt;}
.xa{left:353.986655pt;}
.x26{left:358.466655pt;}
.x19{left:364.546655pt;}
.x15{left:368.546643pt;}
.x16{left:373.986655pt;}
.xc{left:374.946655pt;}
.x1d{left:402.786667pt;}
.x5{left:415.906655pt;}
.x13{left:424.573310pt;}
.x20{left:427.453333pt;}
.x14{left:430.013322pt;}
.x23{left:593.573310pt;}
.x24{left:599.013322pt;}
.x1{left:692.293322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  