
    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_21ab79c0fae2e2fb50b4c4c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_4032236f46652871a0e3c846.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.028320;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_df9f3d94b88e6e6fbde6a9f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.057617;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_17da85b3ad24746fc42ab8f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.023438;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_117af22f5df9bb80afde1adb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.023438;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_04c08636a6817ab120c88244.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.193848;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_abc4ead44198ac761129c314.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.028320;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.900000px;}
.ls17{letter-spacing:-0.876000px;}
.ls6{letter-spacing:-0.786000px;}
.lse{letter-spacing:-0.756000px;}
.ls18{letter-spacing:-0.750000px;}
.ls12{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.438000px;}
.ls3{letter-spacing:-0.350400px;}
.ls8{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.067800px;}
.lsd{letter-spacing:-0.037440px;}
.ls16{letter-spacing:-0.033840px;}
.ls5{letter-spacing:-0.030960px;}
.ls1{letter-spacing:-0.028080px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.028080px;}
.ls19{letter-spacing:0.037440px;}
.ls4{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.206400px;}
.ls1b{letter-spacing:0.256200px;}
.ls1c{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.360000px;}
.lsf{letter-spacing:1.980000px;}
.lsc{letter-spacing:7.020000px;}
.ls14{letter-spacing:8.820000px;}
.ls15{letter-spacing:12.060000px;}
.ls11{letter-spacing:14.940000px;}
.lsb{letter-spacing:28.620000px;}
.lsa{letter-spacing:191.316000px;}
.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;}
}
.wsf{word-spacing:-21.097440px;}
.ws9{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-21.031920px;}
.ws4{word-spacing:-21.029040px;}
.wsb{word-spacing:-21.026160px;}
.ws10{word-spacing:-20.992200px;}
.ws2{word-spacing:-20.709600px;}
.ws6{word-spacing:-20.622000px;}
.wsc{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.274000px;}
.wsd{word-spacing:-20.184000px;}
.wse{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.226440px;}
.wsa{word-spacing:-15.146400px;}
.ws8{word-spacing:-14.940000px;}
.ws7{word-spacing:-9.000000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.408320px;}
._1{width:1.017840px;}
._8{width:2.099040px;}
._14{width:3.802800px;}
._15{width:5.175120px;}
._4{width:6.276960px;}
._3{width:7.618320px;}
._2{width:9.013680px;}
._17{width:10.782720px;}
._9{width:12.060000px;}
._19{width:13.669920px;}
._7{width:14.742000px;}
._13{width:16.005600px;}
._6{width:17.044560px;}
._5{width:18.256320px;}
._a{width:19.290960px;}
._b{width:22.135440px;}
._1a{width:23.940000px;}
._1d{width:25.293840px;}
._1e{width:26.653440px;}
._11{width:28.220880px;}
._10{width:29.235360px;}
._12{width:30.961200px;}
._23{width:31.964400px;}
._16{width:33.527520px;}
._24{width:35.465040px;}
._c{width:36.516720px;}
._d{width:37.549680px;}
._25{width:40.350960px;}
._1b{width:43.329360px;}
._20{width:44.370720px;}
._1f{width:45.405360px;}
._2c{width:46.464960px;}
._e{width:47.764080px;}
._f{width:48.919680px;}
._1c{width:50.880960px;}
._26{width:52.394880px;}
._2f{width:53.629200px;}
._27{width:65.538720px;}
._28{width:66.862800px;}
._21{width:70.990560px;}
._22{width:72.217440px;}
._2d{width:73.962720px;}
._2b{width:81.851760px;}
._29{width:82.892160px;}
._2a{width:84.049680px;}
._2e{width:106.900560px;}
._18{width:191.316000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:51.120000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y34{bottom:110.556000px;}
.y67{bottom:111.096000px;}
.y75{bottom:114.336000px;}
.y66{bottom:115.596000px;}
.y19{bottom:124.416000px;}
.y71{bottom:125.496000px;}
.y33{bottom:130.716000px;}
.y74{bottom:131.076000px;}
.y65{bottom:132.876000px;}
.y32{bottom:134.496000px;}
.y64{bottom:136.656000px;}
.y70{bottom:145.836000px;}
.y4a{bottom:151.050000px;}
.y31{bottom:151.230000px;}
.y63{bottom:153.390000px;}
.y91{bottom:154.290000px;}
.y49{bottom:154.830000px;}
.y92{bottom:156.810000px;}
.y6f{bottom:165.990000px;}
.y18{bottom:166.890000px;}
.y7a{bottom:171.210000px;}
.y48{bottom:171.570000px;}
.y79{bottom:174.990000px;}
.y94{bottom:184.350000px;}
.y6e{bottom:186.330000px;}
.y85{bottom:191.550000px;}
.y78{bottom:191.730000px;}
.y84{bottom:195.330000px;}
.y90{bottom:196.950000px;}
.y30{bottom:199.290000px;}
.y6d{bottom:206.850000px;}
.y17{bottom:209.370000px;}
.y83{bottom:211.710000px;}
.y61{bottom:224.310000px;}
.y77{bottom:226.830000px;}
.y62{bottom:230.250000px;}
.y82{bottom:232.050000px;}
.y8f{bottom:239.430000px;}
.y2f{bottom:241.950000px;}
.y16{bottom:251.850000px;}
.y81{bottom:252.210000px;}
.y7b{bottom:254.370000px;}
.y47{bottom:254.550000px;}
.y80{bottom:255.990000px;}
.y60{bottom:266.790000px;}
.y6c{bottom:269.310000px;}
.y7f{bottom:272.730000px;}
.y8e{bottom:281.910000px;}
.y2e{bottom:284.430000px;}
.y54{bottom:294.330000px;}
.y46{bottom:296.850000px;}
.y15{bottom:309.450000px;}
.y6b{bottom:311.790000px;}
.y2d{bottom:326.910000px;}
.y53{bottom:336.855000px;}
.y8d{bottom:339.375000px;}
.y14{bottom:351.975000px;}
.y45{bottom:354.495000px;}
.y7e{bottom:360.435000px;}
.y5e{bottom:366.915000px;}
.y2c{bottom:369.435000px;}
.y5f{bottom:372.855000px;}
.y52{bottom:379.515000px;}
.y8c{bottom:381.855000px;}
.y13{bottom:394.455000px;}
.y44{bottom:396.975000px;}
.y5d{bottom:409.395000px;}
.y2b{bottom:411.915000px;}
.y8b{bottom:424.335000px;}
.y12{bottom:436.935000px;}
.y43{bottom:439.455000px;}
.y7d{bottom:445.395000px;}
.y5c{bottom:451.875000px;}
.y2a{bottom:454.395000px;}
.y8a{bottom:466.815000px;}
.y11{bottom:479.415000px;}
.y41{bottom:481.935000px;}
.y42{bottom:487.875000px;}
.y5b{bottom:494.355000px;}
.y29{bottom:496.875000px;}
.y72{bottom:502.815000px;}
.y89{bottom:509.475000px;}
.y10{bottom:521.895000px;}
.y6a{bottom:524.415000px;}
.y40{bottom:524.595000px;}
.y51{bottom:527.835000px;}
.y5a{bottom:536.835000px;}
.y28{bottom:539.355000px;}
.y88{bottom:551.955000px;}
.yf{bottom:564.375000px;}
.y3f{bottom:566.895000px;}
.y59{bottom:579.315000px;}
.y27{bottom:581.835000px;}
.y87{bottom:594.465000px;}
.ye{bottom:606.885000px;}
.y3e{bottom:609.405000px;}
.y50{bottom:622.005000px;}
.y26{bottom:624.345000px;}
.y86{bottom:636.945000px;}
.y3d{bottom:651.885000px;}
.yd{bottom:664.485000px;}
.y24{bottom:667.005000px;}
.y93{bottom:667.185000px;}
.y25{bottom:672.945000px;}
.y58{bottom:679.425000px;}
.y3c{bottom:694.365000px;}
.yc{bottom:706.965000px;}
.y23{bottom:709.485000px;}
.y57{bottom:721.905000px;}
.y69{bottom:736.845000px;}
.y3b{bottom:737.025000px;}
.yb{bottom:749.445000px;}
.y22{bottom:751.965000px;}
.y56{bottom:764.385000px;}
.y68{bottom:779.325000px;}
.y3a{bottom:779.505000px;}
.y4f{bottom:791.925000px;}
.y21{bottom:794.445000px;}
.ya{bottom:806.865000px;}
.y39{bottom:821.985000px;}
.y20{bottom:836.925000px;}
.y9{bottom:849.345000px;}
.y55{bottom:864.510000px;}
.y1f{bottom:879.450000px;}
.y73{bottom:885.390000px;}
.y4e{bottom:891.870000px;}
.y8{bottom:906.990000px;}
.y1e{bottom:921.930000px;}
.y38{bottom:922.110000px;}
.y4d{bottom:934.530000px;}
.y7{bottom:949.470000px;}
.y1d{bottom:964.410000px;}
.y37{bottom:964.590000px;}
.y6{bottom:991.950000px;}
.y4c{bottom:992.130000px;}
.y1c{bottom:1006.890000px;}
.y36{bottom:1007.070000px;}
.y5{bottom:1034.430000px;}
.y4b{bottom:1034.610000px;}
.y7c{bottom:1040.370000px;}
.y1b{bottom:1049.370000px;}
.y4{bottom:1076.910000px;}
.y1a{bottom:1091.850000px;}
.y76{bottom:1097.790000px;}
.y35{bottom:1134.540000px;}
.y3{bottom:1134.720000px;}
.y2{bottom:1174.140000px;}
.y1{bottom:1194.300000px;}
.h9{height:26.349609px;}
.hc{height:28.457578px;}
.h8{height:37.416445px;}
.ha{height:43.740352px;}
.h2{height:45.184219px;}
.hb{height:54.536836px;}
.h4{height:61.658086px;}
.h6{height:62.275078px;}
.h3{height:65.360039px;}
.h5{height:76.877227px;}
.h7{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.656000px;}
.xc{left:132.156000px;}
.x9{left:136.656000px;}
.x4{left:170.130000px;}
.xf{left:171.388125px;}
.x3{left:176.970000px;}
.x5{left:180.750000px;}
.x1c{left:213.508125px;}
.xa{left:227.368125px;}
.xb{left:233.850000px;}
.x22{left:266.293125px;}
.x23{left:279.255000px;}
.x11{left:283.573125px;}
.x12{left:290.055000px;}
.x8{left:343.695000px;}
.x1d{left:390.313125px;}
.x1e{left:403.305000px;}
.x17{left:444.883125px;}
.x18{left:451.365000px;}
.x1a{left:503.923125px;}
.x1b{left:516.885000px;}
.x1f{left:572.188125px;}
.x20{left:585.150000px;}
.x6{left:597.748125px;}
.x7{left:604.230000px;}
.x15{left:658.048125px;}
.x16{left:664.530000px;}
.x21{left:681.448125px;}
.xd{left:695.308125px;}
.xe{left:701.790000px;}
.x13{left:706.468125px;}
.x14{left:712.950000px;}
.x19{left:748.800000px;}
.x1{left:757.260000px;}
.x10{left:765.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.800000pt;}
.ls17{letter-spacing:-0.778667pt;}
.ls6{letter-spacing:-0.698667pt;}
.lse{letter-spacing:-0.672000pt;}
.ls18{letter-spacing:-0.666667pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.389333pt;}
.ls3{letter-spacing:-0.311467pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.060267pt;}
.lsd{letter-spacing:-0.033280pt;}
.ls16{letter-spacing:-0.030080pt;}
.ls5{letter-spacing:-0.027520pt;}
.ls1{letter-spacing:-0.024960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.024960pt;}
.ls19{letter-spacing:0.033280pt;}
.ls4{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.183467pt;}
.ls1b{letter-spacing:0.227733pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.320000pt;}
.lsf{letter-spacing:1.760000pt;}
.lsc{letter-spacing:6.240000pt;}
.ls14{letter-spacing:7.840000pt;}
.ls15{letter-spacing:10.720000pt;}
.ls11{letter-spacing:13.280000pt;}
.lsb{letter-spacing:25.440000pt;}
.lsa{letter-spacing:170.058667pt;}
.wsf{word-spacing:-18.753280pt;}
.ws9{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.695040pt;}
.ws4{word-spacing:-18.692480pt;}
.wsb{word-spacing:-18.689920pt;}
.ws10{word-spacing:-18.659733pt;}
.ws2{word-spacing:-18.408533pt;}
.ws6{word-spacing:-18.330667pt;}
.wsc{word-spacing:-18.048000pt;}
.ws5{word-spacing:-18.021333pt;}
.wsd{word-spacing:-17.941333pt;}
.wse{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.251840pt;}
._1{width:0.904747pt;}
._8{width:1.865813pt;}
._14{width:3.380267pt;}
._15{width:4.600107pt;}
._4{width:5.579520pt;}
._3{width:6.771840pt;}
._2{width:8.012160pt;}
._17{width:9.584640pt;}
._9{width:10.720000pt;}
._19{width:12.151040pt;}
._7{width:13.104000pt;}
._13{width:14.227200pt;}
._6{width:15.150720pt;}
._5{width:16.227840pt;}
._a{width:17.147520pt;}
._b{width:19.675947pt;}
._1a{width:21.280000pt;}
._1d{width:22.483413pt;}
._1e{width:23.691947pt;}
._11{width:25.085227pt;}
._10{width:25.986987pt;}
._12{width:27.521067pt;}
._23{width:28.412800pt;}
._16{width:29.802240pt;}
._24{width:31.524480pt;}
._c{width:32.459307pt;}
._d{width:33.377493pt;}
._25{width:35.867520pt;}
._1b{width:38.514987pt;}
._20{width:39.440640pt;}
._1f{width:40.360320pt;}
._2c{width:41.302187pt;}
._e{width:42.456960pt;}
._f{width:43.484160pt;}
._1c{width:45.227520pt;}
._26{width:46.573227pt;}
._2f{width:47.670400pt;}
._27{width:58.256640pt;}
._28{width:59.433600pt;}
._21{width:63.102720pt;}
._22{width:64.193280pt;}
._2d{width:65.744640pt;}
._2b{width:72.757120pt;}
._29{width:73.681920pt;}
._2a{width:74.710827pt;}
._2e{width:95.022720pt;}
._18{width:170.058667pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:45.440000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:98.272000pt;}
.y67{bottom:98.752000pt;}
.y75{bottom:101.632000pt;}
.y66{bottom:102.752000pt;}
.y19{bottom:110.592000pt;}
.y71{bottom:111.552000pt;}
.y33{bottom:116.192000pt;}
.y74{bottom:116.512000pt;}
.y65{bottom:118.112000pt;}
.y32{bottom:119.552000pt;}
.y64{bottom:121.472000pt;}
.y70{bottom:129.632000pt;}
.y4a{bottom:134.266667pt;}
.y31{bottom:134.426667pt;}
.y63{bottom:136.346667pt;}
.y91{bottom:137.146667pt;}
.y49{bottom:137.626667pt;}
.y92{bottom:139.386667pt;}
.y6f{bottom:147.546667pt;}
.y18{bottom:148.346667pt;}
.y7a{bottom:152.186667pt;}
.y48{bottom:152.506667pt;}
.y79{bottom:155.546667pt;}
.y94{bottom:163.866667pt;}
.y6e{bottom:165.626667pt;}
.y85{bottom:170.266667pt;}
.y78{bottom:170.426667pt;}
.y84{bottom:173.626667pt;}
.y90{bottom:175.066667pt;}
.y30{bottom:177.146667pt;}
.y6d{bottom:183.866667pt;}
.y17{bottom:186.106667pt;}
.y83{bottom:188.186667pt;}
.y61{bottom:199.386667pt;}
.y77{bottom:201.626667pt;}
.y62{bottom:204.666667pt;}
.y82{bottom:206.266667pt;}
.y8f{bottom:212.826667pt;}
.y2f{bottom:215.066667pt;}
.y16{bottom:223.866667pt;}
.y81{bottom:224.186667pt;}
.y7b{bottom:226.106667pt;}
.y47{bottom:226.266667pt;}
.y80{bottom:227.546667pt;}
.y60{bottom:237.146667pt;}
.y6c{bottom:239.386667pt;}
.y7f{bottom:242.426667pt;}
.y8e{bottom:250.586667pt;}
.y2e{bottom:252.826667pt;}
.y54{bottom:261.626667pt;}
.y46{bottom:263.866667pt;}
.y15{bottom:275.066667pt;}
.y6b{bottom:277.146667pt;}
.y2d{bottom:290.586667pt;}
.y53{bottom:299.426667pt;}
.y8d{bottom:301.666667pt;}
.y14{bottom:312.866667pt;}
.y45{bottom:315.106667pt;}
.y7e{bottom:320.386667pt;}
.y5e{bottom:326.146667pt;}
.y2c{bottom:328.386667pt;}
.y5f{bottom:331.426667pt;}
.y52{bottom:337.346667pt;}
.y8c{bottom:339.426667pt;}
.y13{bottom:350.626667pt;}
.y44{bottom:352.866667pt;}
.y5d{bottom:363.906667pt;}
.y2b{bottom:366.146667pt;}
.y8b{bottom:377.186667pt;}
.y12{bottom:388.386667pt;}
.y43{bottom:390.626667pt;}
.y7d{bottom:395.906667pt;}
.y5c{bottom:401.666667pt;}
.y2a{bottom:403.906667pt;}
.y8a{bottom:414.946667pt;}
.y11{bottom:426.146667pt;}
.y41{bottom:428.386667pt;}
.y42{bottom:433.666667pt;}
.y5b{bottom:439.426667pt;}
.y29{bottom:441.666667pt;}
.y72{bottom:446.946667pt;}
.y89{bottom:452.866667pt;}
.y10{bottom:463.906667pt;}
.y6a{bottom:466.146667pt;}
.y40{bottom:466.306667pt;}
.y51{bottom:469.186667pt;}
.y5a{bottom:477.186667pt;}
.y28{bottom:479.426667pt;}
.y88{bottom:490.626667pt;}
.yf{bottom:501.666667pt;}
.y3f{bottom:503.906667pt;}
.y59{bottom:514.946667pt;}
.y27{bottom:517.186667pt;}
.y87{bottom:528.413333pt;}
.ye{bottom:539.453333pt;}
.y3e{bottom:541.693333pt;}
.y50{bottom:552.893333pt;}
.y26{bottom:554.973333pt;}
.y86{bottom:566.173333pt;}
.y3d{bottom:579.453333pt;}
.yd{bottom:590.653333pt;}
.y24{bottom:592.893333pt;}
.y93{bottom:593.053333pt;}
.y25{bottom:598.173333pt;}
.y58{bottom:603.933333pt;}
.y3c{bottom:617.213333pt;}
.yc{bottom:628.413333pt;}
.y23{bottom:630.653333pt;}
.y57{bottom:641.693333pt;}
.y69{bottom:654.973333pt;}
.y3b{bottom:655.133333pt;}
.yb{bottom:666.173333pt;}
.y22{bottom:668.413333pt;}
.y56{bottom:679.453333pt;}
.y68{bottom:692.733333pt;}
.y3a{bottom:692.893333pt;}
.y4f{bottom:703.933333pt;}
.y21{bottom:706.173333pt;}
.ya{bottom:717.213333pt;}
.y39{bottom:730.653333pt;}
.y20{bottom:743.933333pt;}
.y9{bottom:754.973333pt;}
.y55{bottom:768.453333pt;}
.y1f{bottom:781.733333pt;}
.y73{bottom:787.013333pt;}
.y4e{bottom:792.773333pt;}
.y8{bottom:806.213333pt;}
.y1e{bottom:819.493333pt;}
.y38{bottom:819.653333pt;}
.y4d{bottom:830.693333pt;}
.y7{bottom:843.973333pt;}
.y1d{bottom:857.253333pt;}
.y37{bottom:857.413333pt;}
.y6{bottom:881.733333pt;}
.y4c{bottom:881.893333pt;}
.y1c{bottom:895.013333pt;}
.y36{bottom:895.173333pt;}
.y5{bottom:919.493333pt;}
.y4b{bottom:919.653333pt;}
.y7c{bottom:924.773333pt;}
.y1b{bottom:932.773333pt;}
.y4{bottom:957.253333pt;}
.y1a{bottom:970.533333pt;}
.y76{bottom:975.813333pt;}
.y35{bottom:1008.480000pt;}
.y3{bottom:1008.640000pt;}
.y2{bottom:1043.680000pt;}
.y1{bottom:1061.600000pt;}
.h9{height:23.421875pt;}
.hc{height:25.295625pt;}
.h8{height:33.259062pt;}
.ha{height:38.880313pt;}
.h2{height:40.163750pt;}
.hb{height:48.477187pt;}
.h4{height:54.807187pt;}
.h6{height:55.355625pt;}
.h3{height:58.097812pt;}
.h5{height:68.335313pt;}
.h7{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.472000pt;}
.xc{left:117.472000pt;}
.x9{left:121.472000pt;}
.x4{left:151.226667pt;}
.xf{left:152.345000pt;}
.x3{left:157.306667pt;}
.x5{left:160.666667pt;}
.x1c{left:189.785000pt;}
.xa{left:202.105000pt;}
.xb{left:207.866667pt;}
.x22{left:236.705000pt;}
.x23{left:248.226667pt;}
.x11{left:252.065000pt;}
.x12{left:257.826667pt;}
.x8{left:305.506667pt;}
.x1d{left:346.945000pt;}
.x1e{left:358.493333pt;}
.x17{left:395.451667pt;}
.x18{left:401.213333pt;}
.x1a{left:447.931667pt;}
.x1b{left:459.453333pt;}
.x1f{left:508.611667pt;}
.x20{left:520.133333pt;}
.x6{left:531.331667pt;}
.x7{left:537.093333pt;}
.x15{left:584.931667pt;}
.x16{left:590.693333pt;}
.x21{left:605.731667pt;}
.xd{left:618.051667pt;}
.xe{left:623.813333pt;}
.x13{left:627.971667pt;}
.x14{left:633.733333pt;}
.x19{left:665.600000pt;}
.x1{left:673.120000pt;}
.x10{left:680.480000pt;}
}




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