
    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_1ac3560cedcf8f46b03dab15.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_3ac9e303e92b266dfe0b8275.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7ff3fd4519274a7cc41eb118.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_0d3d0c2020d4d027b7ab3fb8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_12fa4a8c8212caa30ce374d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc{letter-spacing:-17.280000px;}
.lsd{letter-spacing:-15.840000px;}
.lse{letter-spacing:-15.120000px;}
.lsa{letter-spacing:-12.240000px;}
.ls8{letter-spacing:-11.520000px;}
.ls7{letter-spacing:-10.800000px;}
.lsb{letter-spacing:-2.160000px;}
.ls11{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.298800px;}
.ls10{letter-spacing:4.320000px;}
.lsf{letter-spacing:8.640000px;}
.ls9{letter-spacing:76.320000px;}
.ls6{letter-spacing:82.224000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws0{word-spacing:-15.238800px;}
.ws6{word-spacing:0.000000px;}
._46{margin-left:-15.120000px;}
._3f{margin-left:-10.800000px;}
._e{margin-left:-7.894800px;}
._2{margin-left:-6.552000px;}
._5{margin-left:-5.446800px;}
._4{margin-left:-3.960000px;}
._1{margin-left:-2.568240px;}
._3{margin-left:-1.128960px;}
._0{width:1.513440px;}
._15{width:2.599440px;}
._22{width:3.648720px;}
._9{width:4.824240px;}
._8{width:5.952000px;}
._21{width:7.151760px;}
._3c{width:8.682000px;}
._3b{width:9.750000px;}
._1a{width:10.800000px;}
._29{width:12.240000px;}
._1c{width:13.944240px;}
._18{width:14.999760px;}
._2d{width:16.962000px;}
._7{width:19.824000px;}
._6{width:20.856000px;}
._b{width:22.500000px;}
._d{width:23.523120px;}
._c{width:25.392000px;}
._a{width:28.344000px;}
._5f{width:29.952000px;}
._62{width:31.055280px;}
._39{width:34.488000px;}
._14{width:40.198800px;}
._3e{width:46.296000px;}
._52{width:47.412000px;}
._26{width:53.904000px;}
._5e{width:57.462480px;}
._45{width:60.696000px;}
._51{width:65.952480px;}
._17{width:72.300000px;}
._2c{width:74.038800px;}
._57{width:75.418800px;}
._10{width:76.727760px;}
._61{width:79.536000px;}
._28{width:81.719760px;}
._40{width:83.748000px;}
._f{width:88.810320px;}
._1e{width:90.526800px;}
._25{width:93.048480px;}
._20{width:94.696800px;}
._58{width:96.103200px;}
._42{width:100.162560px;}
._41{width:101.280000px;}
._11{width:108.659520px;}
._50{width:111.780000px;}
._48{width:114.912000px;}
._4c{width:122.448000px;}
._49{width:126.714240px;}
._47{width:129.261120px;}
._5c{width:134.328000px;}
._5d{width:138.090000px;}
._31{width:146.496000px;}
._63{width:148.227120px;}
._13{width:161.616000px;}
._4a{width:165.648000px;}
._60{width:167.052000px;}
._19{width:168.826800px;}
._1d{width:178.833120px;}
._1b{width:180.853680px;}
._59{width:183.310800px;}
._2a{width:186.237120px;}
._27{width:196.920000px;}
._1f{width:216.359040px;}
._35{width:220.932000px;}
._34{width:234.300720px;}
._53{width:242.112000px;}
._24{width:251.976000px;}
._44{width:270.048000px;}
._43{width:273.029760px;}
._2f{width:285.534000px;}
._3d{width:327.827280px;}
._54{width:332.779440px;}
._55{width:342.156000px;}
._56{width:345.756000px;}
._2e{width:358.572000px;}
._12{width:378.156000px;}
._23{width:432.276000px;}
._2b{width:525.828000px;}
._16{width:612.156000px;}
._4b{width:677.076000px;}
._4f{width:777.876000px;}
._4e{width:875.076000px;}
._36{width:918.276000px;}
._32{width:936.156000px;}
._30{width:1044.276000px;}
._37{width:1062.300000px;}
._38{width:1137.900000px;}
._5a{width:1242.300000px;}
._3a{width:1332.300000px;}
._4d{width:1371.876000px;}
._5b{width:1523.280000px;}
._33{width:1710.300000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:69.480000px;}
.y82{bottom:96.480000px;}
.y68{bottom:105.840000px;}
.y4e{bottom:109.620000px;}
.y67{bottom:136.260000px;}
.y81{bottom:139.500000px;}
.y2e{bottom:139.680000px;}
.y4d{bottom:140.040000px;}
.y66{bottom:160.050000px;}
.y80{bottom:163.290000px;}
.y2d{bottom:163.470000px;}
.y4c{bottom:169.590000px;}
.y65{bottom:180.030000px;}
.y2c{bottom:193.710000px;}
.y7f{bottom:197.310000px;}
.y2b{bottom:220.350000px;}
.y4b{bottom:227.010000px;}
.y9e{bottom:243.570000px;}
.y64{bottom:250.050000px;}
.y4a{bottom:250.770000px;}
.y2a{bottom:254.370000px;}
.y7e{bottom:265.530000px;}
.y9d{bottom:267.330000px;}
.y63{bottom:269.850000px;}
.y29{bottom:278.130000px;}
.y49{bottom:289.290000px;}
.y9c{bottom:291.270000px;}
.y28{bottom:301.890000px;}
.y7d{bottom:309.090000px;}
.y9b{bottom:315.030000px;}
.y48{bottom:327.810000px;}
.y27{bottom:335.910000px;}
.y9a{bottom:338.790000px;}
.y62{bottom:339.870000px;}
.y47{bottom:351.570000px;}
.y26{bottom:359.670000px;}
.y99{bottom:362.550000px;}
.y61{bottom:363.630000px;}
.y7c{bottom:370.110000px;}
.y98{bottom:382.350000px;}
.y25{bottom:383.610000px;}
.y46{bottom:385.590000px;}
.y7b{bottom:404.175000px;}
.y24{bottom:407.415000px;}
.y97{bottom:414.255000px;}
.y45{bottom:416.055000px;}
.y60{bottom:429.195000px;}
.y23{bottom:431.175000px;}
.y96{bottom:438.015000px;}
.y44{bottom:439.815000px;}
.y5f{bottom:449.175000px;}
.y22{bottom:454.935000px;}
.y43{bottom:465.735000px;}
.y95{bottom:468.435000px;}
.y21{bottom:478.875000px;}
.y7a{bottom:496.695000px;}
.y42{bottom:499.755000px;}
.y20{bottom:502.635000px;}
.y94{bottom:506.955000px;}
.y5e{bottom:514.695000px;}
.y79{bottom:520.455000px;}
.y1f{bottom:526.395000px;}
.y41{bottom:529.275000px;}
.y5d{bottom:534.495000px;}
.y93{bottom:545.475000px;}
.y78{bottom:549.975000px;}
.y1e{bottom:550.155000px;}
.y5c{bottom:568.515000px;}
.y92{bottom:569.235000px;}
.y1d{bottom:574.095000px;}
.y77{bottom:580.395000px;}
.y40{bottom:590.295000px;}
.y91{bottom:594.255000px;}
.y1c{bottom:597.855000px;}
.y5b{bottom:598.035000px;}
.y76{bottom:604.155000px;}
.y3f{bottom:620.715000px;}
.y1b{bottom:621.615000px;}
.y5a{bottom:621.795000px;}
.y90{bottom:624.675000px;}
.y75{bottom:633.675000px;}
.y1a{bottom:645.375000px;}
.y8f{bottom:648.435000px;}
.y59{bottom:652.245000px;}
.y3e{bottom:654.765000px;}
.y74{bottom:663.225000px;}
.y19{bottom:669.345000px;}
.y8e{bottom:678.885000px;}
.y3d{bottom:688.785000px;}
.y18{bottom:693.105000px;}
.y73{bottom:693.285000px;}
.y8d{bottom:709.305000px;}
.y3c{bottom:712.545000px;}
.y58{bottom:713.265000px;}
.y17{bottom:716.865000px;}
.y72{bottom:727.305000px;}
.y8c{bottom:733.065000px;}
.y3b{bottom:736.305000px;}
.y57{bottom:737.025000px;}
.y16{bottom:740.625000px;}
.y3a{bottom:760.065000px;}
.y71{bottom:761.325000px;}
.y8b{bottom:762.585000px;}
.y15{bottom:764.565000px;}
.y8a{bottom:786.345000px;}
.y70{bottom:787.785000px;}
.y14{bottom:788.325000px;}
.y39{bottom:790.485000px;}
.y56{bottom:798.945000px;}
.y13{bottom:812.085000px;}
.y89{bottom:816.765000px;}
.y38{bottom:820.905000px;}
.y55{bottom:822.705000px;}
.y12{bottom:835.845000px;}
.y37{bottom:844.665000px;}
.y54{bottom:856.725000px;}
.y11{bottom:859.605000px;}
.y36{bottom:876.525000px;}
.y53{bottom:878.685000px;}
.y10{bottom:883.545000px;}
.y6f{bottom:887.505000px;}
.y88{bottom:892.185000px;}
.y35{bottom:900.330000px;}
.yf{bottom:907.350000px;}
.y6e{bottom:911.310000px;}
.y87{bottom:915.990000px;}
.y34{bottom:929.850000px;}
.ye{bottom:931.110000px;}
.y6d{bottom:937.230000px;}
.y52{bottom:944.250000px;}
.yd{bottom:954.870000px;}
.y6c{bottom:960.990000px;}
.y33{bottom:969.270000px;}
.y51{bottom:970.170000px;}
.y86{bottom:977.010000px;}
.yc{bottom:978.810000px;}
.y32{bottom:993.030000px;}
.y6b{bottom:997.350000px;}
.yb{bottom:1002.570000px;}
.y50{bottom:1004.190000px;}
.y85{bottom:1007.430000px;}
.y31{bottom:1016.790000px;}
.ya{bottom:1026.330000px;}
.y6a{bottom:1027.770000px;}
.y84{bottom:1033.350000px;}
.y4f{bottom:1034.610000px;}
.y30{bottom:1040.730000px;}
.y9{bottom:1050.090000px;}
.y69{bottom:1051.530000px;}
.y83{bottom:1059.270000px;}
.y2f{bottom:1060.530000px;}
.y8{bottom:1074.030000px;}
.y7{bottom:1097.790000px;}
.y5{bottom:1130.550000px;}
.y4{bottom:1162.440000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1220.940000px;}
.y1{bottom:1238.220000px;}
.h8{height:50.484375px;}
.h2{height:51.677227px;}
.h3{height:62.211094px;}
.h7{height:62.261719px;}
.h9{height:70.664062px;}
.ha{height:74.004654px;}
.h6{height:74.953125px;}
.h5{height:82.676953px;}
.h4{height:87.695156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:84.995987px;}
.x1d{left:99.395987px;}
.x12{left:103.895987px;}
.x13{left:107.495987px;}
.x1b{left:121.895987px;}
.xb{left:131.255987px;}
.x17{left:148.895987px;}
.x18{left:156.089987px;}
.x1f{left:161.129987px;}
.x1a{left:162.389987px;}
.x19{left:166.889987px;}
.x1e{left:169.589987px;}
.x16{left:173.729987px;}
.xe{left:177.329987px;}
.x15{left:185.429987px;}
.x11{left:192.269987px;}
.xd{left:214.769987px;}
.x6{left:219.629987px;}
.xa{left:271.874987px;}
.x23{left:294.374987px;}
.x10{left:300.134987px;}
.xf{left:306.074987px;}
.xc{left:308.054987px;}
.x8{left:325.334987px;}
.x9{left:338.654987px;}
.x4{left:350.714987px;}
.x20{left:383.834987px;}
.x5{left:430.634987px;}
.x21{left:437.654987px;}
.x7{left:446.504987px;}
.x2{left:457.124987px;}
.x14{left:479.264987px;}
.x1{left:510.404987px;}
.x1c{left:511.664987px;}
.x22{left:536.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-15.360000pt;}
.lsd{letter-spacing:-14.080000pt;}
.lse{letter-spacing:-13.440000pt;}
.lsa{letter-spacing:-10.880000pt;}
.ls8{letter-spacing:-10.240000pt;}
.ls7{letter-spacing:-9.600000pt;}
.lsb{letter-spacing:-1.920000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.265600pt;}
.ls10{letter-spacing:3.840000pt;}
.lsf{letter-spacing:7.680000pt;}
.ls9{letter-spacing:67.840000pt;}
.ls6{letter-spacing:73.088000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.545600pt;}
.ws6{word-spacing:0.000000pt;}
._46{margin-left:-13.440000pt;}
._3f{margin-left:-9.600000pt;}
._e{margin-left:-7.017600pt;}
._2{margin-left:-5.824000pt;}
._5{margin-left:-4.841600pt;}
._4{margin-left:-3.520000pt;}
._1{margin-left:-2.282880pt;}
._3{margin-left:-1.003520pt;}
._0{width:1.345280pt;}
._15{width:2.310613pt;}
._22{width:3.243307pt;}
._9{width:4.288213pt;}
._8{width:5.290667pt;}
._21{width:6.357120pt;}
._3c{width:7.717333pt;}
._3b{width:8.666667pt;}
._1a{width:9.600000pt;}
._29{width:10.880000pt;}
._1c{width:12.394880pt;}
._18{width:13.333120pt;}
._2d{width:15.077333pt;}
._7{width:17.621333pt;}
._6{width:18.538667pt;}
._b{width:20.000000pt;}
._d{width:20.909440pt;}
._c{width:22.570667pt;}
._a{width:25.194667pt;}
._5f{width:26.624000pt;}
._62{width:27.604693pt;}
._39{width:30.656000pt;}
._14{width:35.732267pt;}
._3e{width:41.152000pt;}
._52{width:42.144000pt;}
._26{width:47.914667pt;}
._5e{width:51.077760pt;}
._45{width:53.952000pt;}
._51{width:58.624427pt;}
._17{width:64.266667pt;}
._2c{width:65.812267pt;}
._57{width:67.038933pt;}
._10{width:68.202453pt;}
._61{width:70.698667pt;}
._28{width:72.639787pt;}
._40{width:74.442667pt;}
._f{width:78.942507pt;}
._1e{width:80.468267pt;}
._25{width:82.709760pt;}
._20{width:84.174933pt;}
._58{width:85.425067pt;}
._42{width:89.033387pt;}
._41{width:90.026667pt;}
._11{width:96.586240pt;}
._50{width:99.360000pt;}
._48{width:102.144000pt;}
._4c{width:108.842667pt;}
._49{width:112.634880pt;}
._47{width:114.898773pt;}
._5c{width:119.402667pt;}
._5d{width:122.746667pt;}
._31{width:130.218667pt;}
._63{width:131.757440pt;}
._13{width:143.658667pt;}
._4a{width:147.242667pt;}
._60{width:148.490667pt;}
._19{width:150.068267pt;}
._1d{width:158.962773pt;}
._1b{width:160.758827pt;}
._59{width:162.942933pt;}
._2a{width:165.544107pt;}
._27{width:175.040000pt;}
._1f{width:192.319147pt;}
._35{width:196.384000pt;}
._34{width:208.267307pt;}
._53{width:215.210667pt;}
._24{width:223.978667pt;}
._44{width:240.042667pt;}
._43{width:242.693120pt;}
._2f{width:253.808000pt;}
._3d{width:291.402027pt;}
._54{width:295.803947pt;}
._55{width:304.138667pt;}
._56{width:307.338667pt;}
._2e{width:318.730667pt;}
._12{width:336.138667pt;}
._23{width:384.245333pt;}
._2b{width:467.402667pt;}
._16{width:544.138667pt;}
._4b{width:601.845333pt;}
._4f{width:691.445333pt;}
._4e{width:777.845333pt;}
._36{width:816.245333pt;}
._32{width:832.138667pt;}
._30{width:928.245333pt;}
._37{width:944.266667pt;}
._38{width:1011.466667pt;}
._5a{width:1104.266667pt;}
._3a{width:1184.266667pt;}
._4d{width:1219.445333pt;}
._5b{width:1354.026667pt;}
._33{width:1520.266667pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:61.760000pt;}
.y82{bottom:85.760000pt;}
.y68{bottom:94.080000pt;}
.y4e{bottom:97.440000pt;}
.y67{bottom:121.120000pt;}
.y81{bottom:124.000000pt;}
.y2e{bottom:124.160000pt;}
.y4d{bottom:124.480000pt;}
.y66{bottom:142.266667pt;}
.y80{bottom:145.146667pt;}
.y2d{bottom:145.306667pt;}
.y4c{bottom:150.746667pt;}
.y65{bottom:160.026667pt;}
.y2c{bottom:172.186667pt;}
.y7f{bottom:175.386667pt;}
.y2b{bottom:195.866667pt;}
.y4b{bottom:201.786667pt;}
.y9e{bottom:216.506667pt;}
.y64{bottom:222.266667pt;}
.y4a{bottom:222.906667pt;}
.y2a{bottom:226.106667pt;}
.y7e{bottom:236.026667pt;}
.y9d{bottom:237.626667pt;}
.y63{bottom:239.866667pt;}
.y29{bottom:247.226667pt;}
.y49{bottom:257.146667pt;}
.y9c{bottom:258.906667pt;}
.y28{bottom:268.346667pt;}
.y7d{bottom:274.746667pt;}
.y9b{bottom:280.026667pt;}
.y48{bottom:291.386667pt;}
.y27{bottom:298.586667pt;}
.y9a{bottom:301.146667pt;}
.y62{bottom:302.106667pt;}
.y47{bottom:312.506667pt;}
.y26{bottom:319.706667pt;}
.y99{bottom:322.266667pt;}
.y61{bottom:323.226667pt;}
.y7c{bottom:328.986667pt;}
.y98{bottom:339.866667pt;}
.y25{bottom:340.986667pt;}
.y46{bottom:342.746667pt;}
.y7b{bottom:359.266667pt;}
.y24{bottom:362.146667pt;}
.y97{bottom:368.226667pt;}
.y45{bottom:369.826667pt;}
.y60{bottom:381.506667pt;}
.y23{bottom:383.266667pt;}
.y96{bottom:389.346667pt;}
.y44{bottom:390.946667pt;}
.y5f{bottom:399.266667pt;}
.y22{bottom:404.386667pt;}
.y43{bottom:413.986667pt;}
.y95{bottom:416.386667pt;}
.y21{bottom:425.666667pt;}
.y7a{bottom:441.506667pt;}
.y42{bottom:444.226667pt;}
.y20{bottom:446.786667pt;}
.y94{bottom:450.626667pt;}
.y5e{bottom:457.506667pt;}
.y79{bottom:462.626667pt;}
.y1f{bottom:467.906667pt;}
.y41{bottom:470.466667pt;}
.y5d{bottom:475.106667pt;}
.y93{bottom:484.866667pt;}
.y78{bottom:488.866667pt;}
.y1e{bottom:489.026667pt;}
.y5c{bottom:505.346667pt;}
.y92{bottom:505.986667pt;}
.y1d{bottom:510.306667pt;}
.y77{bottom:515.906667pt;}
.y40{bottom:524.706667pt;}
.y91{bottom:528.226667pt;}
.y1c{bottom:531.426667pt;}
.y5b{bottom:531.586667pt;}
.y76{bottom:537.026667pt;}
.y3f{bottom:551.746667pt;}
.y1b{bottom:552.546667pt;}
.y5a{bottom:552.706667pt;}
.y90{bottom:555.266667pt;}
.y75{bottom:563.266667pt;}
.y1a{bottom:573.666667pt;}
.y8f{bottom:576.386667pt;}
.y59{bottom:579.773333pt;}
.y3e{bottom:582.013333pt;}
.y74{bottom:589.533333pt;}
.y19{bottom:594.973333pt;}
.y8e{bottom:603.453333pt;}
.y3d{bottom:612.253333pt;}
.y18{bottom:616.093333pt;}
.y73{bottom:616.253333pt;}
.y8d{bottom:630.493333pt;}
.y3c{bottom:633.373333pt;}
.y58{bottom:634.013333pt;}
.y17{bottom:637.213333pt;}
.y72{bottom:646.493333pt;}
.y8c{bottom:651.613333pt;}
.y3b{bottom:654.493333pt;}
.y57{bottom:655.133333pt;}
.y16{bottom:658.333333pt;}
.y3a{bottom:675.613333pt;}
.y71{bottom:676.733333pt;}
.y8b{bottom:677.853333pt;}
.y15{bottom:679.613333pt;}
.y8a{bottom:698.973333pt;}
.y70{bottom:700.253333pt;}
.y14{bottom:700.733333pt;}
.y39{bottom:702.653333pt;}
.y56{bottom:710.173333pt;}
.y13{bottom:721.853333pt;}
.y89{bottom:726.013333pt;}
.y38{bottom:729.693333pt;}
.y55{bottom:731.293333pt;}
.y12{bottom:742.973333pt;}
.y37{bottom:750.813333pt;}
.y54{bottom:761.533333pt;}
.y11{bottom:764.093333pt;}
.y36{bottom:779.133333pt;}
.y53{bottom:781.053333pt;}
.y10{bottom:785.373333pt;}
.y6f{bottom:788.893333pt;}
.y88{bottom:793.053333pt;}
.y35{bottom:800.293333pt;}
.yf{bottom:806.533333pt;}
.y6e{bottom:810.053333pt;}
.y87{bottom:814.213333pt;}
.y34{bottom:826.533333pt;}
.ye{bottom:827.653333pt;}
.y6d{bottom:833.093333pt;}
.y52{bottom:839.333333pt;}
.yd{bottom:848.773333pt;}
.y6c{bottom:854.213333pt;}
.y33{bottom:861.573333pt;}
.y51{bottom:862.373333pt;}
.y86{bottom:868.453333pt;}
.yc{bottom:870.053333pt;}
.y32{bottom:882.693333pt;}
.y6b{bottom:886.533333pt;}
.yb{bottom:891.173333pt;}
.y50{bottom:892.613333pt;}
.y85{bottom:895.493333pt;}
.y31{bottom:903.813333pt;}
.ya{bottom:912.293333pt;}
.y6a{bottom:913.573333pt;}
.y84{bottom:918.533333pt;}
.y4f{bottom:919.653333pt;}
.y30{bottom:925.093333pt;}
.y9{bottom:933.413333pt;}
.y69{bottom:934.693333pt;}
.y83{bottom:941.573333pt;}
.y2f{bottom:942.693333pt;}
.y8{bottom:954.693333pt;}
.y7{bottom:975.813333pt;}
.y5{bottom:1004.933333pt;}
.y4{bottom:1033.280000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1085.280000pt;}
.y1{bottom:1100.640000pt;}
.h8{height:44.875000pt;}
.h2{height:45.935313pt;}
.h3{height:55.298750pt;}
.h7{height:55.343750pt;}
.h9{height:62.812500pt;}
.ha{height:65.781915pt;}
.h6{height:66.625000pt;}
.h5{height:73.490625pt;}
.h4{height:77.951250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.551988pt;}
.x1d{left:88.351988pt;}
.x12{left:92.351988pt;}
.x13{left:95.551988pt;}
.x1b{left:108.351988pt;}
.xb{left:116.671988pt;}
.x17{left:132.351988pt;}
.x18{left:138.746655pt;}
.x1f{left:143.226655pt;}
.x1a{left:144.346655pt;}
.x19{left:148.346655pt;}
.x1e{left:150.746655pt;}
.x16{left:154.426655pt;}
.xe{left:157.626655pt;}
.x15{left:164.826655pt;}
.x11{left:170.906655pt;}
.xd{left:190.906655pt;}
.x6{left:195.226655pt;}
.xa{left:241.666655pt;}
.x23{left:261.666655pt;}
.x10{left:266.786655pt;}
.xf{left:272.066655pt;}
.xc{left:273.826655pt;}
.x8{left:289.186655pt;}
.x9{left:301.026655pt;}
.x4{left:311.746655pt;}
.x20{left:341.186655pt;}
.x5{left:382.786655pt;}
.x21{left:389.026655pt;}
.x7{left:396.893322pt;}
.x2{left:406.333322pt;}
.x14{left:426.013322pt;}
.x1{left:453.693322pt;}
.x1c{left:454.813322pt;}
.x22{left:476.893322pt;}
}




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