
    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_9820a46439f72a44bd5bf840.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_1a2604dc99b6fd29b90c1b36.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8cdc99ce4ae0b1441a69d439.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994141;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_2bf1e7e395c42b08de9229c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_d01bee66fcacfd430c7b8b51.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010254;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_f91c51d8c2230a2a1c13181e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.994141;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_5521b292512d7843f7012804.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010254;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_5f879d3f178c528be2ea6302.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.262200px;}
.ls13{letter-spacing:-0.109200px;}
.ls14{letter-spacing:-0.048960px;}
.ls11{letter-spacing:-0.025920px;}
.lse{letter-spacing:-0.017280px;}
.lsd{letter-spacing:-0.008640px;}
.lsc{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.lsb{letter-spacing:0.057600px;}
.ls18{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.175800px;}
.ls5{letter-spacing:0.203040px;}
.ls1{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.720000px;}
.ls7{letter-spacing:5.040000px;}
.ls8{letter-spacing:5.220000px;}
.ls9{letter-spacing:5.736000px;}
.lsa{letter-spacing:5.760000px;}
.ls17{letter-spacing:89.958720px;}
.ls6{letter-spacing:95.760000px;}
.ls4{letter-spacing:96.480000px;}
.ls16{letter-spacing:174.918720px;}
.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;}
}
.ws6{word-spacing:-20.160000px;}
.wsb{word-spacing:-19.506000px;}
.ws1{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.ws3{word-spacing:-19.422720px;}
.ws4{word-spacing:-19.177800px;}
.ws0{word-spacing:-17.749560px;}
.ws8{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.511040px;}
.ws9{word-spacing:-16.450800px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.457280px;}
._2{width:1.188000px;}
._3{width:2.566080px;}
._4{width:3.710880px;}
._7{width:5.669760px;}
._8{width:6.700320px;}
._9{width:8.009280px;}
._1a{width:9.175680px;}
._10{width:10.342080px;}
._f{width:12.127680px;}
._a{width:13.374720px;}
._b{width:15.042240px;}
._1b{width:16.115520px;}
._e{width:17.496000px;}
._15{width:20.401920px;}
._c{width:24.294480px;}
._d{width:25.383600px;}
._18{width:28.382400px;}
._19{width:29.663040px;}
._11{width:31.026240px;}
._14{width:55.442880px;}
._17{width:85.052160px;}
._5{width:95.722560px;}
._6{width:97.009440px;}
._1c{width:133.280640px;}
._1d{width:134.347680px;}
._13{width:151.027200px;}
._12{width:162.552960px;}
._16{width:194.348160px;}
._1{width:214.975200px;}
._1e{width:844.860000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,56,100);}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y57{bottom:7.905000px;}
.y5f{bottom:7.912500px;}
.y51{bottom:7.920000px;}
.y61{bottom:7.950000px;}
.y46{bottom:10.080000px;}
.y5c{bottom:19.612500px;}
.y4a{bottom:19.620000px;}
.y53{bottom:19.800000px;}
.y48{bottom:21.420000px;}
.y59{bottom:31.485000px;}
.y5e{bottom:31.486500px;}
.y50{bottom:31.500000px;}
.y55{bottom:31.530000px;}
.y5d{bottom:31.852500px;}
.y44{bottom:32.940000px;}
.y42{bottom:44.280000px;}
.y5a{bottom:55.065000px;}
.y63{bottom:55.080000px;}
.y56{bottom:55.110000px;}
.y43{bottom:55.800000px;}
.y4{bottom:58.320000px;}
.y47{bottom:67.140000px;}
.y45{bottom:78.660000px;}
.y2b{bottom:91.476000px;}
.y4b{bottom:95.803500px;}
.y8d{bottom:108.756000px;}
.y79{bottom:112.536000px;}
.y2a{bottom:119.196000px;}
.y5b{bottom:120.103500px;}
.y8c{bottom:136.656000px;}
.y78{bottom:140.436000px;}
.y29{bottom:147.096000px;}
.y4f{bottom:150.825000px;}
.y6a{bottom:150.840000px;}
.y6f{bottom:150.870000px;}
.y8b{bottom:164.550000px;}
.y4e{bottom:167.985000px;}
.y77{bottom:168.150000px;}
.y28{bottom:174.990000px;}
.y4d{bottom:175.126500px;}
.y8a{bottom:192.270000px;}
.y76{bottom:196.050000px;}
.y4c{bottom:198.706500px;}
.y27{bottom:202.890000px;}
.y89{bottom:220.170000px;}
.y75{bottom:223.950000px;}
.y26{bottom:230.790000px;}
.y58{bottom:239.445000px;}
.y88{bottom:248.070000px;}
.y74{bottom:251.850000px;}
.y25{bottom:258.690000px;}
.y87{bottom:275.970000px;}
.y73{bottom:279.750000px;}
.y24{bottom:286.410000px;}
.y67{bottom:299.205000px;}
.y86{bottom:303.870000px;}
.y68{bottom:306.060000px;}
.y54{bottom:310.905000px;}
.y23{bottom:314.310000px;}
.y85{bottom:331.590000px;}
.y22{bottom:342.255000px;}
.y84{bottom:359.535000px;}
.y21{bottom:370.155000px;}
.y72{bottom:370.695000px;}
.y52{bottom:382.395000px;}
.y83{bottom:387.435000px;}
.y20{bottom:398.055000px;}
.y82{bottom:415.335000px;}
.y1f{bottom:425.775000px;}
.y49{bottom:430.455000px;}
.y71{bottom:442.155000px;}
.y81{bottom:443.235000px;}
.y1e{bottom:453.675000px;}
.y80{bottom:471.135000px;}
.y41{bottom:478.335000px;}
.y1d{bottom:481.575000px;}
.y7f{bottom:498.855000px;}
.y1c{bottom:509.475000px;}
.y70{bottom:513.615000px;}
.y7e{bottom:526.755000px;}
.y1b{bottom:536.835000px;}
.y7d{bottom:554.655000px;}
.y6e{bottom:561.495000px;}
.y1a{bottom:564.375000px;}
.y7c{bottom:582.555000px;}
.y40{bottom:584.535000px;}
.y19{bottom:592.275000px;}
.y69{bottom:609.585000px;}
.y7b{bottom:610.485000px;}
.y3f{bottom:611.565000px;}
.y18{bottom:619.665000px;}
.y7a{bottom:638.205000px;}
.y3e{bottom:638.565000px;}
.y17{bottom:647.205000px;}
.y3d{bottom:666.105000px;}
.y16{bottom:675.105000px;}
.y6d{bottom:681.045000px;}
.y3c{bottom:694.005000px;}
.y15{bottom:702.825000px;}
.y3b{bottom:721.905000px;}
.y14{bottom:730.725000px;}
.y3a{bottom:749.805000px;}
.y6c{bottom:752.505000px;}
.y13{bottom:758.085000px;}
.y39{bottom:777.705000px;}
.y9a{bottom:780.045000px;}
.y12{bottom:785.625000px;}
.y38{bottom:805.425000px;}
.y99{bottom:807.945000px;}
.y11{bottom:813.525000px;}
.y6b{bottom:823.965000px;}
.y37{bottom:833.325000px;}
.y98{bottom:835.845000px;}
.y10{bottom:841.425000px;}
.y36{bottom:861.225000px;}
.y97{bottom:863.205000px;}
.yf{bottom:869.325000px;}
.y66{bottom:871.890000px;}
.y35{bottom:889.170000px;}
.y96{bottom:890.790000px;}
.ye{bottom:896.730000px;}
.y34{bottom:917.070000px;}
.y95{bottom:918.690000px;}
.y65{bottom:919.770000px;}
.yd{bottom:923.730000px;}
.y33{bottom:944.790000px;}
.y94{bottom:946.590000px;}
.yc{bottom:951.090000px;}
.y32{bottom:972.690000px;}
.y93{bottom:974.310000px;}
.yb{bottom:978.270000px;}
.y64{bottom:991.410000px;}
.y31{bottom:1000.590000px;}
.y92{bottom:1002.210000px;}
.ya{bottom:1005.090000px;}
.y30{bottom:1028.490000px;}
.y91{bottom:1030.110000px;}
.y9{bottom:1032.090000px;}
.y2f{bottom:1056.390000px;}
.y90{bottom:1058.010000px;}
.y8{bottom:1059.270000px;}
.y62{bottom:1062.870000px;}
.y2e{bottom:1084.290000px;}
.y8f{bottom:1085.370000px;}
.y7{bottom:1086.270000px;}
.y2d{bottom:1112.010000px;}
.y8e{bottom:1112.370000px;}
.y6{bottom:1113.270000px;}
.y60{bottom:1134.330000px;}
.y2c{bottom:1139.940000px;}
.y5{bottom:1140.300000px;}
.y3{bottom:1181.520000px;}
.y2{bottom:1203.480000px;}
.y1{bottom:1224.720000px;}
.h12{height:23.572500px;}
.h13{height:23.610000px;}
.ha{height:47.145000px;}
.h10{height:47.152500px;}
.h16{height:47.182500px;}
.h18{height:47.190000px;}
.hb{height:48.224531px;}
.h9{height:48.289219px;}
.h6{height:56.421563px;}
.h7{height:56.611406px;}
.h5{height:56.687344px;}
.hf{height:70.725000px;}
.h17{height:70.740000px;}
.he{height:70.761000px;}
.h11{height:71.452500px;}
.h3{height:71.613281px;}
.h4{height:77.342344px;}
.h2{height:79.620469px;}
.h1a{height:79.925027px;}
.h8{height:96.825000px;}
.h15{height:309.450000px;}
.h19{height:309.480000px;}
.hd{height:309.615000px;}
.hc{height:381.802500px;}
.h14{height:619.830000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.494500px;}
.wb{width:68.749500px;}
.w3{width:69.109500px;}
.w9{width:75.045000px;}
.w6{width:76.860000px;}
.wa{width:84.765000px;}
.wc{width:89.805000px;}
.w4{width:90.165000px;}
.w8{width:96.465000px;}
.w7{width:96.696000px;}
.w5{width:114.321000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x11{left:-34.066500px;}
.x0{left:0.000000px;}
.xf{left:8.098500px;}
.xe{left:55.621500px;}
.xd{left:84.960000px;}
.x10{left:109.486500px;}
.xc{left:127.476000px;}
.x6{left:129.816000px;}
.x5{left:145.656000px;}
.x12{left:178.965000px;}
.x2{left:223.230000px;}
.x13{left:269.505000px;}
.xa{left:290.955000px;}
.x9{left:293.655000px;}
.x3{left:297.615000px;}
.x1{left:308.235000px;}
.x19{left:330.555000px;}
.xb{left:333.795000px;}
.x14{left:384.195000px;}
.x7{left:392.295000px;}
.x4{left:431.535000px;}
.x15{left:461.415000px;}
.x8{left:467.745000px;}
.x16{left:558.480000px;}
.x17{left:655.350000px;}
.x18{left:730.770000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.233067pt;}
.ls13{letter-spacing:-0.097067pt;}
.ls14{letter-spacing:-0.043520pt;}
.ls11{letter-spacing:-0.023040pt;}
.lse{letter-spacing:-0.015360pt;}
.lsd{letter-spacing:-0.007680pt;}
.lsc{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.lsb{letter-spacing:0.051200pt;}
.ls18{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.156267pt;}
.ls5{letter-spacing:0.180480pt;}
.ls1{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls7{letter-spacing:4.480000pt;}
.ls8{letter-spacing:4.640000pt;}
.ls9{letter-spacing:5.098667pt;}
.lsa{letter-spacing:5.120000pt;}
.ls17{letter-spacing:79.963307pt;}
.ls6{letter-spacing:85.120000pt;}
.ls4{letter-spacing:85.760000pt;}
.ls16{letter-spacing:155.483307pt;}
.ws6{word-spacing:-17.920000pt;}
.wsb{word-spacing:-17.338667pt;}
.ws1{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.ws3{word-spacing:-17.264640pt;}
.ws4{word-spacing:-17.046933pt;}
.ws0{word-spacing:-15.777387pt;}
.ws8{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.676480pt;}
.ws9{word-spacing:-14.622933pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.056000pt;}
._3{width:2.280960pt;}
._4{width:3.298560pt;}
._7{width:5.039787pt;}
._8{width:5.955840pt;}
._9{width:7.119360pt;}
._1a{width:8.156160pt;}
._10{width:9.192960pt;}
._f{width:10.780160pt;}
._a{width:11.888640pt;}
._b{width:13.370880pt;}
._1b{width:14.324907pt;}
._e{width:15.552000pt;}
._15{width:18.135040pt;}
._c{width:21.595093pt;}
._d{width:22.563200pt;}
._18{width:25.228800pt;}
._19{width:26.367147pt;}
._11{width:27.578880pt;}
._14{width:49.282560pt;}
._17{width:75.601920pt;}
._5{width:85.086720pt;}
._6{width:86.230613pt;}
._1c{width:118.471680pt;}
._1d{width:119.420160pt;}
._13{width:134.246400pt;}
._12{width:144.491520pt;}
._16{width:172.753920pt;}
._1{width:191.089067pt;}
._1e{width:750.986667pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:7.026667pt;}
.y5f{bottom:7.033333pt;}
.y51{bottom:7.040000pt;}
.y61{bottom:7.066667pt;}
.y46{bottom:8.960000pt;}
.y5c{bottom:17.433333pt;}
.y4a{bottom:17.440000pt;}
.y53{bottom:17.600000pt;}
.y48{bottom:19.040000pt;}
.y59{bottom:27.986667pt;}
.y5e{bottom:27.988000pt;}
.y50{bottom:28.000000pt;}
.y55{bottom:28.026667pt;}
.y5d{bottom:28.313333pt;}
.y44{bottom:29.280000pt;}
.y42{bottom:39.360000pt;}
.y5a{bottom:48.946667pt;}
.y63{bottom:48.960000pt;}
.y56{bottom:48.986667pt;}
.y43{bottom:49.600000pt;}
.y4{bottom:51.840000pt;}
.y47{bottom:59.680000pt;}
.y45{bottom:69.920000pt;}
.y2b{bottom:81.312000pt;}
.y4b{bottom:85.158667pt;}
.y8d{bottom:96.672000pt;}
.y79{bottom:100.032000pt;}
.y2a{bottom:105.952000pt;}
.y5b{bottom:106.758667pt;}
.y8c{bottom:121.472000pt;}
.y78{bottom:124.832000pt;}
.y29{bottom:130.752000pt;}
.y4f{bottom:134.066667pt;}
.y6a{bottom:134.080000pt;}
.y6f{bottom:134.106667pt;}
.y8b{bottom:146.266667pt;}
.y4e{bottom:149.320000pt;}
.y77{bottom:149.466667pt;}
.y28{bottom:155.546667pt;}
.y4d{bottom:155.668000pt;}
.y8a{bottom:170.906667pt;}
.y76{bottom:174.266667pt;}
.y4c{bottom:176.628000pt;}
.y27{bottom:180.346667pt;}
.y89{bottom:195.706667pt;}
.y75{bottom:199.066667pt;}
.y26{bottom:205.146667pt;}
.y58{bottom:212.840000pt;}
.y88{bottom:220.506667pt;}
.y74{bottom:223.866667pt;}
.y25{bottom:229.946667pt;}
.y87{bottom:245.306667pt;}
.y73{bottom:248.666667pt;}
.y24{bottom:254.586667pt;}
.y67{bottom:265.960000pt;}
.y86{bottom:270.106667pt;}
.y68{bottom:272.053333pt;}
.y54{bottom:276.360000pt;}
.y23{bottom:279.386667pt;}
.y85{bottom:294.746667pt;}
.y22{bottom:304.226667pt;}
.y84{bottom:319.586667pt;}
.y21{bottom:329.026667pt;}
.y72{bottom:329.506667pt;}
.y52{bottom:339.906667pt;}
.y83{bottom:344.386667pt;}
.y20{bottom:353.826667pt;}
.y82{bottom:369.186667pt;}
.y1f{bottom:378.466667pt;}
.y49{bottom:382.626667pt;}
.y71{bottom:393.026667pt;}
.y81{bottom:393.986667pt;}
.y1e{bottom:403.266667pt;}
.y80{bottom:418.786667pt;}
.y41{bottom:425.186667pt;}
.y1d{bottom:428.066667pt;}
.y7f{bottom:443.426667pt;}
.y1c{bottom:452.866667pt;}
.y70{bottom:456.546667pt;}
.y7e{bottom:468.226667pt;}
.y1b{bottom:477.186667pt;}
.y7d{bottom:493.026667pt;}
.y6e{bottom:499.106667pt;}
.y1a{bottom:501.666667pt;}
.y7c{bottom:517.826667pt;}
.y40{bottom:519.586667pt;}
.y19{bottom:526.466667pt;}
.y69{bottom:541.853333pt;}
.y7b{bottom:542.653333pt;}
.y3f{bottom:543.613333pt;}
.y18{bottom:550.813333pt;}
.y7a{bottom:567.293333pt;}
.y3e{bottom:567.613333pt;}
.y17{bottom:575.293333pt;}
.y3d{bottom:592.093333pt;}
.y16{bottom:600.093333pt;}
.y6d{bottom:605.373333pt;}
.y3c{bottom:616.893333pt;}
.y15{bottom:624.733333pt;}
.y3b{bottom:641.693333pt;}
.y14{bottom:649.533333pt;}
.y3a{bottom:666.493333pt;}
.y6c{bottom:668.893333pt;}
.y13{bottom:673.853333pt;}
.y39{bottom:691.293333pt;}
.y9a{bottom:693.373333pt;}
.y12{bottom:698.333333pt;}
.y38{bottom:715.933333pt;}
.y99{bottom:718.173333pt;}
.y11{bottom:723.133333pt;}
.y6b{bottom:732.413333pt;}
.y37{bottom:740.733333pt;}
.y98{bottom:742.973333pt;}
.y10{bottom:747.933333pt;}
.y36{bottom:765.533333pt;}
.y97{bottom:767.293333pt;}
.yf{bottom:772.733333pt;}
.y66{bottom:775.013333pt;}
.y35{bottom:790.373333pt;}
.y96{bottom:791.813333pt;}
.ye{bottom:797.093333pt;}
.y34{bottom:815.173333pt;}
.y95{bottom:816.613333pt;}
.y65{bottom:817.573333pt;}
.yd{bottom:821.093333pt;}
.y33{bottom:839.813333pt;}
.y94{bottom:841.413333pt;}
.yc{bottom:845.413333pt;}
.y32{bottom:864.613333pt;}
.y93{bottom:866.053333pt;}
.yb{bottom:869.573333pt;}
.y64{bottom:881.253333pt;}
.y31{bottom:889.413333pt;}
.y92{bottom:890.853333pt;}
.ya{bottom:893.413333pt;}
.y30{bottom:914.213333pt;}
.y91{bottom:915.653333pt;}
.y9{bottom:917.413333pt;}
.y2f{bottom:939.013333pt;}
.y90{bottom:940.453333pt;}
.y8{bottom:941.573333pt;}
.y62{bottom:944.773333pt;}
.y2e{bottom:963.813333pt;}
.y8f{bottom:964.773333pt;}
.y7{bottom:965.573333pt;}
.y2d{bottom:988.453333pt;}
.y8e{bottom:988.773333pt;}
.y6{bottom:989.573333pt;}
.y60{bottom:1008.293333pt;}
.y2c{bottom:1013.280000pt;}
.y5{bottom:1013.600000pt;}
.y3{bottom:1050.240000pt;}
.y2{bottom:1069.760000pt;}
.y1{bottom:1088.640000pt;}
.h12{height:20.953333pt;}
.h13{height:20.986667pt;}
.ha{height:41.906667pt;}
.h10{height:41.913333pt;}
.h16{height:41.940000pt;}
.h18{height:41.946667pt;}
.hb{height:42.866250pt;}
.h9{height:42.923750pt;}
.h6{height:50.152500pt;}
.h7{height:50.321250pt;}
.h5{height:50.388750pt;}
.hf{height:62.866667pt;}
.h17{height:62.880000pt;}
.he{height:62.898667pt;}
.h11{height:63.513333pt;}
.h3{height:63.656250pt;}
.h4{height:68.748750pt;}
.h2{height:70.773750pt;}
.h1a{height:71.044468pt;}
.h8{height:86.066667pt;}
.h15{height:275.066667pt;}
.h19{height:275.093333pt;}
.hd{height:275.213333pt;}
.hc{height:339.380000pt;}
.h14{height:550.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.550667pt;}
.wb{width:61.110667pt;}
.w3{width:61.430667pt;}
.w9{width:66.706667pt;}
.w6{width:68.320000pt;}
.wa{width:75.346667pt;}
.wc{width:79.826667pt;}
.w4{width:80.146667pt;}
.w8{width:85.746667pt;}
.w7{width:85.952000pt;}
.w5{width:101.618667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x11{left:-30.281333pt;}
.x0{left:0.000000pt;}
.xf{left:7.198667pt;}
.xe{left:49.441333pt;}
.xd{left:75.520000pt;}
.x10{left:97.321333pt;}
.xc{left:113.312000pt;}
.x6{left:115.392000pt;}
.x5{left:129.472000pt;}
.x12{left:159.080000pt;}
.x2{left:198.426667pt;}
.x13{left:239.560000pt;}
.xa{left:258.626667pt;}
.x9{left:261.026667pt;}
.x3{left:264.546667pt;}
.x1{left:273.986667pt;}
.x19{left:293.826667pt;}
.xb{left:296.706667pt;}
.x14{left:341.506667pt;}
.x7{left:348.706667pt;}
.x4{left:383.586667pt;}
.x15{left:410.146667pt;}
.x8{left:415.773333pt;}
.x16{left:496.426667pt;}
.x17{left:582.533333pt;}
.x18{left:649.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; }
  