
    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_705a64c4f0ee1086a28fd266.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_db5539706a9d96d732e538df.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c6d4ff36934e5d574b155a4f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4379ccc8925a7cc224a7a609.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6b603255196ea7be1fa536f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_8030c303708f0e84e5f9afcd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_aa0d6edc00222971e836a3b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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;}
.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;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.980000px;}
.ls9{letter-spacing:-1.260000px;}
.ls8{letter-spacing:-1.182000px;}
.ls3{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.756000px;}
.ls12{letter-spacing:0.900000px;}
.lse{letter-spacing:1.620000px;}
.ls17{letter-spacing:3.060000px;}
.ls14{letter-spacing:4.500000px;}
.ls11{letter-spacing:7.380000px;}
.ls15{letter-spacing:14.580000px;}
.ls13{letter-spacing:46.170720px;}
.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:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.479800px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-4.403040px;}
._16{margin-left:-3.121200px;}
._1b{margin-left:-2.082960px;}
._0{margin-left:-1.080000px;}
._11{width:1.149120px;}
._1{width:2.220000px;}
._15{width:4.024560px;}
._14{width:5.318640px;}
._13{width:6.779280px;}
._12{width:8.031120px;}
._18{width:9.037200px;}
._6{width:10.800000px;}
._19{width:12.250800px;}
._1a{width:13.302000px;}
._20{width:16.053120px;}
._1c{width:17.183520px;}
._f{width:18.948000px;}
._21{width:20.181120px;}
._23{width:22.290480px;}
._22{width:23.428080px;}
._24{width:24.740640px;}
._25{width:32.244360px;}
._7{width:76.284960px;}
._1e{width:77.929440px;}
._10{width:99.660000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._1d{width:256.515600px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._1f{width:605.367120px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.760000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yc{bottom:30.420000px;}
.y5{bottom:40.320000px;}
.yb{bottom:50.760000px;}
.yd{bottom:67.680000px;}
.y4{bottom:68.400000px;}
.ya{bottom:71.280000px;}
.y95{bottom:94.860000px;}
.y3{bottom:96.330000px;}
.y3b{bottom:98.460000px;}
.y94{bottom:113.580000px;}
.y6f{bottom:114.480000px;}
.y3a{bottom:118.440000px;}
.y69{bottom:125.460000px;}
.y2{bottom:125.670000px;}
.y93{bottom:132.120000px;}
.y6e{bottom:134.460000px;}
.y39{bottom:138.240000px;}
.y68{bottom:145.260000px;}
.y6d{bottom:154.290000px;}
.y38{bottom:158.070000px;}
.y67{bottom:165.090000px;}
.y6c{bottom:174.090000px;}
.y37{bottom:177.870000px;}
.y66{bottom:184.890000px;}
.y6b{bottom:193.890000px;}
.y36{bottom:197.670000px;}
.y65{bottom:204.690000px;}
.y6a{bottom:213.690000px;}
.y35{bottom:217.650000px;}
.y92{bottom:224.670000px;}
.y64{bottom:233.670000px;}
.y34{bottom:237.450000px;}
.y91{bottom:244.470000px;}
.y63{bottom:253.470000px;}
.y33{bottom:257.250000px;}
.y90{bottom:264.270000px;}
.y62{bottom:273.270000px;}
.y32{bottom:277.050000px;}
.y8f{bottom:284.070000px;}
.y61{bottom:293.070000px;}
.y31{bottom:296.850000px;}
.y8e{bottom:303.870000px;}
.y60{bottom:312.870000px;}
.y30{bottom:316.830000px;}
.y8d{bottom:323.850000px;}
.y5f{bottom:332.850000px;}
.y2f{bottom:336.630000px;}
.y8c{bottom:343.650000px;}
.y5e{bottom:352.650000px;}
.y2e{bottom:356.430000px;}
.y8b{bottom:363.450000px;}
.y5d{bottom:372.450000px;}
.y2d{bottom:376.230000px;}
.y8a{bottom:383.250000px;}
.y5c{bottom:392.250000px;}
.y2c{bottom:396.030000px;}
.y89{bottom:403.095000px;}
.y5b{bottom:412.095000px;}
.y2b{bottom:416.055000px;}
.y88{bottom:423.075000px;}
.y5a{bottom:432.075000px;}
.y2a{bottom:435.855000px;}
.y87{bottom:442.875000px;}
.y59{bottom:451.875000px;}
.y29{bottom:455.655000px;}
.y86{bottom:462.675000px;}
.y58{bottom:471.675000px;}
.y28{bottom:475.455000px;}
.y85{bottom:482.475000px;}
.y57{bottom:491.475000px;}
.y27{bottom:495.255000px;}
.y84{bottom:502.275000px;}
.y56{bottom:511.275000px;}
.y26{bottom:515.235000px;}
.y83{bottom:522.255000px;}
.y55{bottom:531.255000px;}
.y25{bottom:535.035000px;}
.y82{bottom:542.055000px;}
.y54{bottom:551.055000px;}
.y24{bottom:554.835000px;}
.y81{bottom:561.855000px;}
.y53{bottom:570.855000px;}
.y23{bottom:574.635000px;}
.y80{bottom:581.655000px;}
.y52{bottom:590.655000px;}
.y22{bottom:594.435000px;}
.y7f{bottom:601.455000px;}
.y51{bottom:610.455000px;}
.y21{bottom:614.415000px;}
.y7e{bottom:621.435000px;}
.y50{bottom:630.435000px;}
.y20{bottom:634.215000px;}
.y7d{bottom:641.235000px;}
.y4f{bottom:650.265000px;}
.y1f{bottom:654.045000px;}
.y7c{bottom:661.065000px;}
.y4e{bottom:670.065000px;}
.y1e{bottom:673.845000px;}
.y7b{bottom:680.865000px;}
.y4d{bottom:689.865000px;}
.y1d{bottom:693.645000px;}
.y7a{bottom:700.665000px;}
.y4c{bottom:709.665000px;}
.y1c{bottom:713.625000px;}
.y79{bottom:720.645000px;}
.y4b{bottom:729.645000px;}
.y1b{bottom:733.425000px;}
.y78{bottom:740.445000px;}
.y4a{bottom:749.445000px;}
.y1a{bottom:753.225000px;}
.y77{bottom:760.245000px;}
.y49{bottom:769.245000px;}
.y19{bottom:773.025000px;}
.y76{bottom:780.045000px;}
.y48{bottom:789.045000px;}
.y18{bottom:792.825000px;}
.y75{bottom:799.845000px;}
.y47{bottom:808.845000px;}
.y17{bottom:812.805000px;}
.y74{bottom:819.825000px;}
.y46{bottom:828.825000px;}
.y16{bottom:832.605000px;}
.y73{bottom:839.625000px;}
.y45{bottom:848.625000px;}
.y15{bottom:852.405000px;}
.y72{bottom:859.425000px;}
.y44{bottom:868.425000px;}
.y14{bottom:872.205000px;}
.y71{bottom:879.225000px;}
.y43{bottom:888.225000px;}
.y13{bottom:892.545000px;}
.y70{bottom:899.070000px;}
.y42{bottom:908.070000px;}
.y12{bottom:914.010000px;}
.y41{bottom:928.050000px;}
.y11{bottom:937.410000px;}
.y40{bottom:947.850000px;}
.y3f{bottom:967.650000px;}
.y10{bottom:969.090000px;}
.y3e{bottom:987.450000px;}
.yf{bottom:1000.950000px;}
.y3d{bottom:1007.250000px;}
.y3c{bottom:1027.230000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.ha{height:21.240000px;}
.h7{height:33.480000px;}
.he{height:41.726953px;}
.hd{height:42.164648px;}
.h11{height:43.506914px;}
.h10{height:45.549492px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.hf{height:48.496641px;}
.h9{height:53.224453px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w3{width:137.556000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.100000px;}
.x7{left:55.619987px;}
.xd{left:69.479987px;}
.x6{left:88.775987px;}
.xe{left:96.515987px;}
.xc{left:107.135987px;}
.x4{left:118.470000px;}
.xb{left:193.169987px;}
.x8{left:311.654987px;}
.xa{left:375.914987px;}
.x9{left:446.504987px;}
.x3{left:702.510000px;}
.x5{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-1.760000pt;}
.ls9{letter-spacing:-1.120000pt;}
.ls8{letter-spacing:-1.050667pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.672000pt;}
.ls12{letter-spacing:0.800000pt;}
.lse{letter-spacing:1.440000pt;}
.ls17{letter-spacing:2.720000pt;}
.ls14{letter-spacing:4.000000pt;}
.ls11{letter-spacing:6.560000pt;}
.ls15{letter-spacing:12.960000pt;}
.ls13{letter-spacing:41.040640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsc{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.870933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-3.913813pt;}
._16{margin-left:-2.774400pt;}
._1b{margin-left:-1.851520pt;}
._0{margin-left:-0.960000pt;}
._11{width:1.021440pt;}
._1{width:1.973333pt;}
._15{width:3.577387pt;}
._14{width:4.727680pt;}
._13{width:6.026027pt;}
._12{width:7.138773pt;}
._18{width:8.033067pt;}
._6{width:9.600000pt;}
._19{width:10.889600pt;}
._1a{width:11.824000pt;}
._20{width:14.269440pt;}
._1c{width:15.274240pt;}
._f{width:16.842667pt;}
._21{width:17.938773pt;}
._23{width:19.813760pt;}
._22{width:20.824960pt;}
._24{width:21.991680pt;}
._25{width:28.661653pt;}
._7{width:67.808853pt;}
._1e{width:69.270613pt;}
._10{width:88.586667pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._1d{width:228.013867pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._1f{width:538.104107pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.120000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:27.040000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:45.120000pt;}
.yd{bottom:60.160000pt;}
.y4{bottom:60.800000pt;}
.ya{bottom:63.360000pt;}
.y95{bottom:84.320000pt;}
.y3{bottom:85.626667pt;}
.y3b{bottom:87.520000pt;}
.y94{bottom:100.960000pt;}
.y6f{bottom:101.760000pt;}
.y3a{bottom:105.280000pt;}
.y69{bottom:111.520000pt;}
.y2{bottom:111.706667pt;}
.y93{bottom:117.440000pt;}
.y6e{bottom:119.520000pt;}
.y39{bottom:122.880000pt;}
.y68{bottom:129.120000pt;}
.y6d{bottom:137.146667pt;}
.y38{bottom:140.506667pt;}
.y67{bottom:146.746667pt;}
.y6c{bottom:154.746667pt;}
.y37{bottom:158.106667pt;}
.y66{bottom:164.346667pt;}
.y6b{bottom:172.346667pt;}
.y36{bottom:175.706667pt;}
.y65{bottom:181.946667pt;}
.y6a{bottom:189.946667pt;}
.y35{bottom:193.466667pt;}
.y92{bottom:199.706667pt;}
.y64{bottom:207.706667pt;}
.y34{bottom:211.066667pt;}
.y91{bottom:217.306667pt;}
.y63{bottom:225.306667pt;}
.y33{bottom:228.666667pt;}
.y90{bottom:234.906667pt;}
.y62{bottom:242.906667pt;}
.y32{bottom:246.266667pt;}
.y8f{bottom:252.506667pt;}
.y61{bottom:260.506667pt;}
.y31{bottom:263.866667pt;}
.y8e{bottom:270.106667pt;}
.y60{bottom:278.106667pt;}
.y30{bottom:281.626667pt;}
.y8d{bottom:287.866667pt;}
.y5f{bottom:295.866667pt;}
.y2f{bottom:299.226667pt;}
.y8c{bottom:305.466667pt;}
.y5e{bottom:313.466667pt;}
.y2e{bottom:316.826667pt;}
.y8b{bottom:323.066667pt;}
.y5d{bottom:331.066667pt;}
.y2d{bottom:334.426667pt;}
.y8a{bottom:340.666667pt;}
.y5c{bottom:348.666667pt;}
.y2c{bottom:352.026667pt;}
.y89{bottom:358.306667pt;}
.y5b{bottom:366.306667pt;}
.y2b{bottom:369.826667pt;}
.y88{bottom:376.066667pt;}
.y5a{bottom:384.066667pt;}
.y2a{bottom:387.426667pt;}
.y87{bottom:393.666667pt;}
.y59{bottom:401.666667pt;}
.y29{bottom:405.026667pt;}
.y86{bottom:411.266667pt;}
.y58{bottom:419.266667pt;}
.y28{bottom:422.626667pt;}
.y85{bottom:428.866667pt;}
.y57{bottom:436.866667pt;}
.y27{bottom:440.226667pt;}
.y84{bottom:446.466667pt;}
.y56{bottom:454.466667pt;}
.y26{bottom:457.986667pt;}
.y83{bottom:464.226667pt;}
.y55{bottom:472.226667pt;}
.y25{bottom:475.586667pt;}
.y82{bottom:481.826667pt;}
.y54{bottom:489.826667pt;}
.y24{bottom:493.186667pt;}
.y81{bottom:499.426667pt;}
.y53{bottom:507.426667pt;}
.y23{bottom:510.786667pt;}
.y80{bottom:517.026667pt;}
.y52{bottom:525.026667pt;}
.y22{bottom:528.386667pt;}
.y7f{bottom:534.626667pt;}
.y51{bottom:542.626667pt;}
.y21{bottom:546.146667pt;}
.y7e{bottom:552.386667pt;}
.y50{bottom:560.386667pt;}
.y20{bottom:563.746667pt;}
.y7d{bottom:569.986667pt;}
.y4f{bottom:578.013333pt;}
.y1f{bottom:581.373333pt;}
.y7c{bottom:587.613333pt;}
.y4e{bottom:595.613333pt;}
.y1e{bottom:598.973333pt;}
.y7b{bottom:605.213333pt;}
.y4d{bottom:613.213333pt;}
.y1d{bottom:616.573333pt;}
.y7a{bottom:622.813333pt;}
.y4c{bottom:630.813333pt;}
.y1c{bottom:634.333333pt;}
.y79{bottom:640.573333pt;}
.y4b{bottom:648.573333pt;}
.y1b{bottom:651.933333pt;}
.y78{bottom:658.173333pt;}
.y4a{bottom:666.173333pt;}
.y1a{bottom:669.533333pt;}
.y77{bottom:675.773333pt;}
.y49{bottom:683.773333pt;}
.y19{bottom:687.133333pt;}
.y76{bottom:693.373333pt;}
.y48{bottom:701.373333pt;}
.y18{bottom:704.733333pt;}
.y75{bottom:710.973333pt;}
.y47{bottom:718.973333pt;}
.y17{bottom:722.493333pt;}
.y74{bottom:728.733333pt;}
.y46{bottom:736.733333pt;}
.y16{bottom:740.093333pt;}
.y73{bottom:746.333333pt;}
.y45{bottom:754.333333pt;}
.y15{bottom:757.693333pt;}
.y72{bottom:763.933333pt;}
.y44{bottom:771.933333pt;}
.y14{bottom:775.293333pt;}
.y71{bottom:781.533333pt;}
.y43{bottom:789.533333pt;}
.y13{bottom:793.373333pt;}
.y70{bottom:799.173333pt;}
.y42{bottom:807.173333pt;}
.y12{bottom:812.453333pt;}
.y41{bottom:824.933333pt;}
.y11{bottom:833.253333pt;}
.y40{bottom:842.533333pt;}
.y3f{bottom:860.133333pt;}
.y10{bottom:861.413333pt;}
.y3e{bottom:877.733333pt;}
.yf{bottom:889.733333pt;}
.y3d{bottom:895.333333pt;}
.y3c{bottom:913.093333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.ha{height:18.880000pt;}
.h7{height:29.760000pt;}
.he{height:37.090625pt;}
.hd{height:37.479688pt;}
.h11{height:38.672812pt;}
.h10{height:40.488438pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.hf{height:43.108125pt;}
.h9{height:47.310625pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w3{width:122.272000pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.200000pt;}
.x7{left:49.439988pt;}
.xd{left:61.759988pt;}
.x6{left:78.911988pt;}
.xe{left:85.791988pt;}
.xc{left:95.231988pt;}
.x4{left:105.306667pt;}
.xb{left:171.706655pt;}
.x8{left:277.026655pt;}
.xa{left:334.146655pt;}
.x9{left:396.893322pt;}
.x3{left:624.453333pt;}
.x5{left:737.120000pt;}
}




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