
    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_8e9ebcf2aed1cd15bf322a5f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fa45f69698e47d94e20e9aa7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e34b6a3de1b6d33c72e95ca0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a376724a8e8fcdf32660f9b6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0fa544685d4eeab6752e83a1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_84df3ed4d9ff7d7b8140695e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2902919cf7398c9f03043b56.woff')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;}
.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;}
.ls6{letter-spacing:-2.724000px;}
.ls3{letter-spacing:-1.482000px;}
.ls5{letter-spacing:-1.128000px;}
.ls4{letter-spacing:-0.972000px;}
.lsa{letter-spacing:-0.468000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.180000px;}
.ls9{letter-spacing:1.476000px;}
.ls7{letter-spacing:1.776000px;}
.ls1{letter-spacing:1.845000px;}
.ls0{letter-spacing:2.250000px;}
.lsb{letter-spacing:2.484000px;}
.ls8{letter-spacing:2.742000px;}
.lsd{letter-spacing:3.024000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws8{word-spacing:-20.484000px;}
.ws5{word-spacing:-19.476000px;}
.ws6{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.532000px;}
.ws4{word-spacing:-17.031000px;}
.ws2{word-spacing:-16.875000px;}
.wsb{word-spacing:-15.255000px;}
.ws0{word-spacing:-14.625000px;}
.ws3{word-spacing:-12.531000px;}
.ws1{word-spacing:-12.204000px;}
.ws9{word-spacing:0.000000px;}
._15{margin-left:-8.998950px;}
._9{margin-left:-7.970550px;}
._4{margin-left:-6.817500px;}
._2{margin-left:-5.535000px;}
._a{margin-left:-4.486500px;}
._5{margin-left:-2.850000px;}
._1{margin-left:-1.552500px;}
._0{width:1.012500px;}
._3{width:2.767500px;}
._6{width:4.068000px;}
._7{width:5.265000px;}
._8{width:7.585500px;}
._c{width:8.793000px;}
._14{width:9.883500px;}
._b{width:12.472500px;}
._d{width:13.906500px;}
._18{width:16.177500px;}
._f{width:22.356000px;}
._1a{width:23.374500px;}
._e{width:26.475000px;}
._10{width:27.555000px;}
._1b{width:28.860000px;}
._11{width:31.299000px;}
._13{width:32.424000px;}
._12{width:36.010500px;}
._16{width:40.651500px;}
._17{width:45.364500px;}
._19{width:49.692000px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:58.500000px;}
.fs0{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:4.485000px;}
.y6c{bottom:4.500000px;}
.y73{bottom:4.515000px;}
.y7f{bottom:4.537500px;}
.y5{bottom:14.625000px;}
.y81{bottom:23.625000px;}
.y93{bottom:23.670000px;}
.y6b{bottom:24.750000px;}
.y99{bottom:24.765000px;}
.y97{bottom:24.780000px;}
.y6f{bottom:24.795000px;}
.y4{bottom:31.500000px;}
.y92{bottom:43.920000px;}
.y96{bottom:45.030000px;}
.y6e{bottom:45.045000px;}
.y3{bottom:48.420000px;}
.y7{bottom:50.670000px;}
.yb{bottom:57.412500px;}
.y71{bottom:64.200000px;}
.y91{bottom:64.215000px;}
.y2{bottom:66.420000px;}
.y6{bottom:68.670000px;}
.ya{bottom:77.662500px;}
.y7e{bottom:118.200000px;}
.y29{bottom:122.737500px;}
.y5f{bottom:129.487500px;}
.y7d{bottom:138.487500px;}
.y9d{bottom:140.737500px;}
.y46{bottom:150.870000px;}
.y28{bottom:153.105000px;}
.y7b{bottom:158.745000px;}
.y5e{bottom:159.855000px;}
.y9c{bottom:171.150000px;}
.y7a{bottom:180.150000px;}
.y45{bottom:182.400000px;}
.y27{bottom:184.650000px;}
.y5d{bottom:191.400000px;}
.yb3{bottom:206.070000px;}
.y44{bottom:212.820000px;}
.y26{bottom:215.070000px;}
.y9b{bottom:216.195000px;}
.y9a{bottom:233.070000px;}
.y79{bottom:234.195000px;}
.y5c{bottom:235.320000px;}
.yb2{bottom:240.945000px;}
.y43{bottom:244.320000px;}
.y25{bottom:246.570000px;}
.yb1{bottom:263.475000px;}
.y5b{bottom:264.600000px;}
.y24{bottom:278.100000px;}
.y78{bottom:287.100000px;}
.y42{bottom:288.225000px;}
.y98{bottom:293.880000px;}
.y5a{bottom:296.130000px;}
.yb0{bottom:297.255000px;}
.y23{bottom:311.895000px;}
.y77{bottom:317.505000px;}
.y41{bottom:318.645000px;}
.yaf{bottom:319.755000px;}
.y59{bottom:327.630000px;}
.y22{bottom:347.925000px;}
.y40{bottom:349.050000px;}
.y95{bottom:353.550000px;}
.yae{bottom:354.675000px;}
.y58{bottom:371.550000px;}
.yad{bottom:377.205000px;}
.y76{bottom:379.470000px;}
.y3f{bottom:380.580000px;}
.y21{bottom:381.705000px;}
.yac{bottom:398.580000px;}
.y57{bottom:400.830000px;}
.y75{bottom:409.845000px;}
.y3e{bottom:410.955000px;}
.y94{bottom:414.375000px;}
.y20{bottom:415.500000px;}
.y56{bottom:432.375000px;}
.yab{bottom:433.500000px;}
.y1f{bottom:436.875000px;}
.y3d{bottom:442.500000px;}
.y74{bottom:454.905000px;}
.yaa{bottom:456.045000px;}
.y72{bottom:471.780000px;}
.y1e{bottom:472.920000px;}
.y3c{bottom:474.045000px;}
.y90{bottom:476.280000px;}
.y55{bottom:476.295000px;}
.y3b{bottom:504.450000px;}
.y54{bottom:506.700000px;}
.ya9{bottom:508.950000px;}
.y1d{bottom:515.700000px;}
.y70{bottom:532.575000px;}
.y53{bottom:538.230000px;}
.y1c{bottom:544.980000px;}
.y3a{bottom:548.355000px;}
.ya8{bottom:560.745000px;}
.y8f{bottom:569.745000px;}
.y1b{bottom:576.495000px;}
.y39{bottom:578.730000px;}
.y52{bottom:582.150000px;}
.y1a{bottom:606.900000px;}
.y38{bottom:610.275000px;}
.y51{bottom:611.400000px;}
.y6d{bottom:612.525000px;}
.ya7{bottom:613.650000px;}
.y8e{bottom:623.820000px;}
.y19{bottom:638.445000px;}
.y37{bottom:640.695000px;}
.ya6{bottom:642.945000px;}
.y8d{bottom:653.070000px;}
.y50{bottom:656.445000px;}
.y18{bottom:669.975000px;}
.y36{bottom:672.225000px;}
.y6a{bottom:674.475000px;}
.y8c{bottom:684.600000px;}
.y4f{bottom:685.725000px;}
.y17{bottom:700.350000px;}
.y35{bottom:702.600000px;}
.ya5{bottom:704.880000px;}
.y8b{bottom:715.005000px;}
.y4e{bottom:717.255000px;}
.y16{bottom:731.880000px;}
.y34{bottom:734.130000px;}
.ya4{bottom:736.395000px;}
.y69{bottom:740.880000px;}
.y8a{bottom:746.550000px;}
.y4d{bottom:747.675000px;}
.y15{bottom:762.300000px;}
.y33{bottom:765.675000px;}
.ya3{bottom:767.925000px;}
.y68{bottom:771.300000px;}
.y4c{bottom:779.175000px;}
.y14{bottom:793.830000px;}
.y89{bottom:799.455000px;}
.y32{bottom:809.580000px;}
.y67{bottom:815.205000px;}
.y4b{bottom:823.080000px;}
.y13{bottom:825.330000px;}
.y88{bottom:829.875000px;}
.y31{bottom:840.000000px;}
.y66{bottom:845.625000px;}
.ya2{bottom:850.125000px;}
.y4a{bottom:853.500000px;}
.y12{bottom:855.750000px;}
.y87{bottom:861.375000px;}
.y30{bottom:870.420000px;}
.y65{bottom:876.045000px;}
.y49{bottom:883.920000px;}
.y11{bottom:890.670000px;}
.y86{bottom:891.795000px;}
.y2f{bottom:901.920000px;}
.ya1{bottom:904.170000px;}
.y64{bottom:907.545000px;}
.y48{bottom:918.825000px;}
.y85{bottom:923.325000px;}
.y10{bottom:926.700000px;}
.y2e{bottom:932.325000px;}
.y63{bottom:939.075000px;}
.y84{bottom:953.745000px;}
.y47{bottom:954.870000px;}
.ya0{bottom:955.995000px;}
.yf{bottom:962.745000px;}
.y2d{bottom:963.870000px;}
.y62{bottom:969.495000px;}
.y83{bottom:985.245000px;}
.y2c{bottom:995.400000px;}
.ye{bottom:997.650000px;}
.y61{bottom:1001.025000px;}
.y9f{bottom:1007.775000px;}
.y82{bottom:1030.275000px;}
.yd{bottom:1032.525000px;}
.y60{bottom:1034.775000px;}
.y9e{bottom:1038.195000px;}
.y2b{bottom:1039.320000px;}
.y80{bottom:1047.195000px;}
.y2a{bottom:1068.570000px;}
.yc{bottom:1070.820000px;}
.y9{bottom:1091.100000px;}
.y8{bottom:1111.350000px;}
.y1{bottom:1128.255000px;}
.h12{height:20.250000px;}
.h11{height:20.287500px;}
.h10{height:39.412500px;}
.hb{height:40.537500px;}
.he{height:51.547852px;}
.h6{height:57.414551px;}
.h4{height:58.957031px;}
.h13{height:59.662500px;}
.hf{height:60.787500px;}
.hc{height:60.825000px;}
.h3{height:67.137451px;}
.h8{height:69.114990px;}
.h7{height:70.664062px;}
.h5{height:71.613281px;}
.ha{height:72.562500px;}
.hd{height:79.950000px;}
.h2{height:82.200000px;}
.h9{height:86.319141px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.wa{width:135.150000px;}
.wb{width:135.187500px;}
.wc{width:136.312500px;}
.w7{width:168.930000px;}
.w9{width:168.975000px;}
.w8{width:170.100000px;}
.w4{width:225.270000px;}
.w6{width:225.300000px;}
.w5{width:226.425000px;}
.w2{width:265.830000px;}
.w1{width:415.650000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.875000px;}
.xf{left:9.030000px;}
.x1{left:108.150000px;}
.x5{left:122.774987px;}
.xa{left:139.687487px;}
.x19{left:144.187487px;}
.xb{left:193.769987px;}
.x13{left:243.300000px;}
.x7{left:244.424987px;}
.x11{left:277.095000px;}
.xd{left:319.904987px;}
.xe{left:333.420000px;}
.x6{left:368.369987px;}
.xc{left:373.994987px;}
.x14{left:378.495000px;}
.x17{left:395.369987px;}
.x9{left:396.524987px;}
.x18{left:423.524987px;}
.x4{left:439.319987px;}
.x8{left:447.194987px;}
.x15{left:514.800000px;}
.x3{left:523.800000px;}
.x10{left:559.845000px;}
.x12{left:616.155000px;}
.x16{left:649.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-2.421333pt;}
.ls3{letter-spacing:-1.317333pt;}
.ls5{letter-spacing:-1.002667pt;}
.ls4{letter-spacing:-0.864000pt;}
.lsa{letter-spacing:-0.416000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls9{letter-spacing:1.312000pt;}
.ls7{letter-spacing:1.578667pt;}
.ls1{letter-spacing:1.640000pt;}
.ls0{letter-spacing:2.000000pt;}
.lsb{letter-spacing:2.208000pt;}
.ls8{letter-spacing:2.437333pt;}
.lsd{letter-spacing:2.688000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws8{word-spacing:-18.208000pt;}
.ws5{word-spacing:-17.312000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.584000pt;}
.ws4{word-spacing:-15.138667pt;}
.ws2{word-spacing:-15.000000pt;}
.wsb{word-spacing:-13.560000pt;}
.ws0{word-spacing:-13.000000pt;}
.ws3{word-spacing:-11.138667pt;}
.ws1{word-spacing:-10.848000pt;}
.ws9{word-spacing:0.000000pt;}
._15{margin-left:-7.999067pt;}
._9{margin-left:-7.084933pt;}
._4{margin-left:-6.060000pt;}
._2{margin-left:-4.920000pt;}
._a{margin-left:-3.988000pt;}
._5{margin-left:-2.533333pt;}
._1{margin-left:-1.380000pt;}
._0{width:0.900000pt;}
._3{width:2.460000pt;}
._6{width:3.616000pt;}
._7{width:4.680000pt;}
._8{width:6.742667pt;}
._c{width:7.816000pt;}
._14{width:8.785333pt;}
._b{width:11.086667pt;}
._d{width:12.361333pt;}
._18{width:14.380000pt;}
._f{width:19.872000pt;}
._1a{width:20.777333pt;}
._e{width:23.533333pt;}
._10{width:24.493333pt;}
._1b{width:25.653333pt;}
._11{width:27.821333pt;}
._13{width:28.821333pt;}
._12{width:32.009333pt;}
._16{width:36.134667pt;}
._17{width:40.324000pt;}
._19{width:44.170667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:52.000000pt;}
.fs0{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:3.986667pt;}
.y6c{bottom:4.000000pt;}
.y73{bottom:4.013333pt;}
.y7f{bottom:4.033333pt;}
.y5{bottom:13.000000pt;}
.y81{bottom:21.000000pt;}
.y93{bottom:21.040000pt;}
.y6b{bottom:22.000000pt;}
.y99{bottom:22.013333pt;}
.y97{bottom:22.026667pt;}
.y6f{bottom:22.040000pt;}
.y4{bottom:28.000000pt;}
.y92{bottom:39.040000pt;}
.y96{bottom:40.026667pt;}
.y6e{bottom:40.040000pt;}
.y3{bottom:43.040000pt;}
.y7{bottom:45.040000pt;}
.yb{bottom:51.033333pt;}
.y71{bottom:57.066667pt;}
.y91{bottom:57.080000pt;}
.y2{bottom:59.040000pt;}
.y6{bottom:61.040000pt;}
.ya{bottom:69.033333pt;}
.y7e{bottom:105.066667pt;}
.y29{bottom:109.100000pt;}
.y5f{bottom:115.100000pt;}
.y7d{bottom:123.100000pt;}
.y9d{bottom:125.100000pt;}
.y46{bottom:134.106667pt;}
.y28{bottom:136.093333pt;}
.y7b{bottom:141.106667pt;}
.y5e{bottom:142.093333pt;}
.y9c{bottom:152.133333pt;}
.y7a{bottom:160.133333pt;}
.y45{bottom:162.133333pt;}
.y27{bottom:164.133333pt;}
.y5d{bottom:170.133333pt;}
.yb3{bottom:183.173333pt;}
.y44{bottom:189.173333pt;}
.y26{bottom:191.173333pt;}
.y9b{bottom:192.173333pt;}
.y9a{bottom:207.173333pt;}
.y79{bottom:208.173333pt;}
.y5c{bottom:209.173333pt;}
.yb2{bottom:214.173333pt;}
.y43{bottom:217.173333pt;}
.y25{bottom:219.173333pt;}
.yb1{bottom:234.200000pt;}
.y5b{bottom:235.200000pt;}
.y24{bottom:247.200000pt;}
.y78{bottom:255.200000pt;}
.y42{bottom:256.200000pt;}
.y98{bottom:261.226667pt;}
.y5a{bottom:263.226667pt;}
.yb0{bottom:264.226667pt;}
.y23{bottom:277.240000pt;}
.y77{bottom:282.226667pt;}
.y41{bottom:283.240000pt;}
.yaf{bottom:284.226667pt;}
.y59{bottom:291.226667pt;}
.y22{bottom:309.266667pt;}
.y40{bottom:310.266667pt;}
.y95{bottom:314.266667pt;}
.yae{bottom:315.266667pt;}
.y58{bottom:330.266667pt;}
.yad{bottom:335.293333pt;}
.y76{bottom:337.306667pt;}
.y3f{bottom:338.293333pt;}
.y21{bottom:339.293333pt;}
.yac{bottom:354.293333pt;}
.y57{bottom:356.293333pt;}
.y75{bottom:364.306667pt;}
.y3e{bottom:365.293333pt;}
.y94{bottom:368.333333pt;}
.y20{bottom:369.333333pt;}
.y56{bottom:384.333333pt;}
.yab{bottom:385.333333pt;}
.y1f{bottom:388.333333pt;}
.y3d{bottom:393.333333pt;}
.y74{bottom:404.360000pt;}
.yaa{bottom:405.373333pt;}
.y72{bottom:419.360000pt;}
.y1e{bottom:420.373333pt;}
.y3c{bottom:421.373333pt;}
.y90{bottom:423.360000pt;}
.y55{bottom:423.373333pt;}
.y3b{bottom:448.400000pt;}
.y54{bottom:450.400000pt;}
.ya9{bottom:452.400000pt;}
.y1d{bottom:458.400000pt;}
.y70{bottom:473.400000pt;}
.y53{bottom:478.426667pt;}
.y1c{bottom:484.426667pt;}
.y3a{bottom:487.426667pt;}
.ya8{bottom:498.440000pt;}
.y8f{bottom:506.440000pt;}
.y1b{bottom:512.440000pt;}
.y39{bottom:514.426667pt;}
.y52{bottom:517.466667pt;}
.y1a{bottom:539.466667pt;}
.y38{bottom:542.466667pt;}
.y51{bottom:543.466667pt;}
.y6d{bottom:544.466667pt;}
.ya7{bottom:545.466667pt;}
.y8e{bottom:554.506667pt;}
.y19{bottom:567.506667pt;}
.y37{bottom:569.506667pt;}
.ya6{bottom:571.506667pt;}
.y8d{bottom:580.506667pt;}
.y50{bottom:583.506667pt;}
.y18{bottom:595.533333pt;}
.y36{bottom:597.533333pt;}
.y6a{bottom:599.533333pt;}
.y8c{bottom:608.533333pt;}
.y4f{bottom:609.533333pt;}
.y17{bottom:622.533333pt;}
.y35{bottom:624.533333pt;}
.ya5{bottom:626.560000pt;}
.y8b{bottom:635.560000pt;}
.y4e{bottom:637.560000pt;}
.y16{bottom:650.560000pt;}
.y34{bottom:652.560000pt;}
.ya4{bottom:654.573333pt;}
.y69{bottom:658.560000pt;}
.y8a{bottom:663.600000pt;}
.y4d{bottom:664.600000pt;}
.y15{bottom:677.600000pt;}
.y33{bottom:680.600000pt;}
.ya3{bottom:682.600000pt;}
.y68{bottom:685.600000pt;}
.y4c{bottom:692.600000pt;}
.y14{bottom:705.626667pt;}
.y89{bottom:710.626667pt;}
.y32{bottom:719.626667pt;}
.y67{bottom:724.626667pt;}
.y4b{bottom:731.626667pt;}
.y13{bottom:733.626667pt;}
.y88{bottom:737.666667pt;}
.y31{bottom:746.666667pt;}
.y66{bottom:751.666667pt;}
.ya2{bottom:755.666667pt;}
.y4a{bottom:758.666667pt;}
.y12{bottom:760.666667pt;}
.y87{bottom:765.666667pt;}
.y30{bottom:773.706667pt;}
.y65{bottom:778.706667pt;}
.y49{bottom:785.706667pt;}
.y11{bottom:791.706667pt;}
.y86{bottom:792.706667pt;}
.y2f{bottom:801.706667pt;}
.ya1{bottom:803.706667pt;}
.y64{bottom:806.706667pt;}
.y48{bottom:816.733333pt;}
.y85{bottom:820.733333pt;}
.y10{bottom:823.733333pt;}
.y2e{bottom:828.733333pt;}
.y63{bottom:834.733333pt;}
.y84{bottom:847.773333pt;}
.y47{bottom:848.773333pt;}
.ya0{bottom:849.773333pt;}
.yf{bottom:855.773333pt;}
.y2d{bottom:856.773333pt;}
.y62{bottom:861.773333pt;}
.y83{bottom:875.773333pt;}
.y2c{bottom:884.800000pt;}
.ye{bottom:886.800000pt;}
.y61{bottom:889.800000pt;}
.y9f{bottom:895.800000pt;}
.y82{bottom:915.800000pt;}
.yd{bottom:917.800000pt;}
.y60{bottom:919.800000pt;}
.y9e{bottom:922.840000pt;}
.y2b{bottom:923.840000pt;}
.y80{bottom:930.840000pt;}
.y2a{bottom:949.840000pt;}
.yc{bottom:951.840000pt;}
.y9{bottom:969.866667pt;}
.y8{bottom:987.866667pt;}
.y1{bottom:1002.893333pt;}
.h12{height:18.000000pt;}
.h11{height:18.033333pt;}
.h10{height:35.033333pt;}
.hb{height:36.033333pt;}
.he{height:45.820312pt;}
.h6{height:51.035156pt;}
.h4{height:52.406250pt;}
.h13{height:53.033333pt;}
.hf{height:54.033333pt;}
.hc{height:54.066667pt;}
.h3{height:59.677734pt;}
.h8{height:61.435547pt;}
.h7{height:62.812500pt;}
.h5{height:63.656250pt;}
.ha{height:64.500000pt;}
.hd{height:71.066667pt;}
.h2{height:73.066667pt;}
.h9{height:76.728125pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.wa{width:120.133333pt;}
.wb{width:120.166667pt;}
.wc{width:121.166667pt;}
.w7{width:150.160000pt;}
.w9{width:150.200000pt;}
.w8{width:151.200000pt;}
.w4{width:200.240000pt;}
.w6{width:200.266667pt;}
.w5{width:201.266667pt;}
.w2{width:236.293333pt;}
.w1{width:369.466667pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.000000pt;}
.xf{left:8.026667pt;}
.x1{left:96.133333pt;}
.x5{left:109.133322pt;}
.xa{left:124.166655pt;}
.x19{left:128.166655pt;}
.xb{left:172.239988pt;}
.x13{left:216.266667pt;}
.x7{left:217.266655pt;}
.x11{left:246.306667pt;}
.xd{left:284.359988pt;}
.xe{left:296.373333pt;}
.x6{left:327.439988pt;}
.xc{left:332.439988pt;}
.x14{left:336.440000pt;}
.x17{left:351.439988pt;}
.x9{left:352.466655pt;}
.x18{left:376.466655pt;}
.x4{left:390.506655pt;}
.x8{left:397.506655pt;}
.x15{left:457.600000pt;}
.x3{left:465.600000pt;}
.x10{left:497.640000pt;}
.x12{left:547.693333pt;}
.x16{left:577.733333pt;}
}




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