
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_16df9d0885ef4c36d0eb6c46.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_62be280c408c705d4e40a2c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6c985a212fcb43ae06d4a7b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;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;}
.ls11{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.948000px;}
.lse{letter-spacing:-0.786000px;}
.ls8{letter-spacing:-0.579600px;}
.ls4{letter-spacing:-0.463800px;}
.ls23{letter-spacing:-0.431400px;}
.lsb{letter-spacing:-0.414000px;}
.ls14{letter-spacing:-0.326400px;}
.lsc{letter-spacing:-0.248400px;}
.ls1a{letter-spacing:-0.240600px;}
.ls16{letter-spacing:-0.107400px;}
.ls20{letter-spacing:-0.064800px;}
.ls6{letter-spacing:-0.058320px;}
.ls15{letter-spacing:-0.038160px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.023760px;}
.ls7{letter-spacing:0.066000px;}
.ls10{letter-spacing:0.140400px;}
.lsf{letter-spacing:0.174000px;}
.ls12{letter-spacing:0.175200px;}
.ls5{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.186600px;}
.lsa{letter-spacing:0.306000px;}
.lsd{letter-spacing:0.393600px;}
.ls18{letter-spacing:0.393840px;}
.ls21{letter-spacing:0.479520px;}
.ls19{letter-spacing:0.612000px;}
.ls9{letter-spacing:0.654000px;}
.ls22{letter-spacing:0.660000px;}
.ls1f{letter-spacing:0.906000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1e{letter-spacing:12.186720px;}
.ls1d{letter-spacing:42.426720px;}
.ls1c{letter-spacing:46.026720px;}
.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:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wse{word-spacing:-14.411760px;}
.ws10{word-spacing:-14.165760px;}
.wsd{word-spacing:-13.899360px;}
.wsc{word-spacing:-13.811760px;}
.ws9{word-spacing:-13.692360px;}
.ws8{word-spacing:-13.680960px;}
.ws7{word-spacing:-13.646160px;}
.wsb{word-spacing:-13.529520px;}
.ws4{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.467600px;}
.ws3{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.440960px;}
.ws6{word-spacing:-13.257360px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-945.100800px;}
._5{margin-left:-581.774400px;}
._7{margin-left:-4.380480px;}
._6{margin-left:-3.312000px;}
._16{margin-left:-2.300640px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._12{width:2.591760px;}
._e{width:3.640080px;}
._c{width:5.557680px;}
._b{width:6.571200px;}
._f{width:8.107440px;}
._d{width:9.877200px;}
._10{width:11.815680px;}
._11{width:14.759520px;}
._13{width:16.553520px;}
._14{width:17.569440px;}
._15{width:18.951120px;}
._1a{width:20.975760px;}
._19{width:22.529520px;}
._1b{width:23.551200px;}
._8{width:24.993360px;}
._9{width:26.172720px;}
._1e{width:36.334080px;}
._1d{width:37.388160px;}
._1c{width:41.670960px;}
._1f{width:52.827840px;}
._18{width:55.317840px;}
._a{width:202.638240px;}
._17{width:266.051520px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs4{font-size:2.880000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y68{bottom:6.660000px;}
.y6b{bottom:6.690000px;}
.y9f{bottom:6.705000px;}
.ydf{bottom:7.020000px;}
.y67{bottom:27.720000px;}
.yde{bottom:28.110000px;}
.ydb{bottom:35.490000px;}
.ydd{bottom:49.530000px;}
.y6{bottom:61.560000px;}
.ydc{bottom:70.590000px;}
.ycc{bottom:92.160000px;}
.y31{bottom:103.320000px;}
.ycd{bottom:104.220000px;}
.y9c{bottom:110.160000px;}
.y65{bottom:113.220000px;}
.yda{bottom:123.840000px;}
.y30{bottom:124.380000px;}
.y6c{bottom:124.560000px;}
.ycb{bottom:125.280000px;}
.yab{bottom:129.060000px;}
.y9b{bottom:131.220000px;}
.y64{bottom:134.280000px;}
.y2f{bottom:145.440000px;}
.y6a{bottom:146.340000px;}
.yaa{bottom:150.120000px;}
.y9a{bottom:152.310000px;}
.y63{bottom:155.370000px;}
.y2e{bottom:166.530000px;}
.yca{bottom:167.430000px;}
.y69{bottom:168.330000px;}
.ya9{bottom:171.210000px;}
.y99{bottom:173.370000px;}
.y62{bottom:176.430000px;}
.y2d{bottom:187.590000px;}
.yc9{bottom:188.490000px;}
.y66{bottom:190.110000px;}
.ya8{bottom:192.270000px;}
.y98{bottom:194.430000px;}
.y61{bottom:197.490000px;}
.y2c{bottom:208.650000px;}
.yc8{bottom:209.550000px;}
.ya7{bottom:213.330000px;}
.y97{bottom:215.490000px;}
.y60{bottom:218.550000px;}
.y2b{bottom:229.710000px;}
.yc7{bottom:230.610000px;}
.ya6{bottom:234.390000px;}
.y96{bottom:236.550000px;}
.y5f{bottom:239.610000px;}
.y2a{bottom:250.770000px;}
.yc6{bottom:251.670000px;}
.ya5{bottom:255.450000px;}
.y95{bottom:257.610000px;}
.y5e{bottom:260.670000px;}
.y29{bottom:271.830000px;}
.yc5{bottom:272.730000px;}
.ya4{bottom:276.510000px;}
.y94{bottom:278.670000px;}
.y5d{bottom:281.730000px;}
.ya3{bottom:291.630000px;}
.y28{bottom:292.890000px;}
.yc4{bottom:293.790000px;}
.y93{bottom:299.730000px;}
.y5c{bottom:302.790000px;}
.ya2{bottom:313.410000px;}
.y27{bottom:313.950000px;}
.yc3{bottom:314.850000px;}
.y92{bottom:320.790000px;}
.y5b{bottom:323.850000px;}
.y26{bottom:335.010000px;}
.yc2{bottom:335.910000px;}
.y91{bottom:341.850000px;}
.y5a{bottom:344.910000px;}
.y25{bottom:356.070000px;}
.ya1{bottom:356.250000px;}
.yc1{bottom:356.970000px;}
.y90{bottom:362.910000px;}
.y59{bottom:365.970000px;}
.y24{bottom:377.130000px;}
.ya0{bottom:378.030000px;}
.y8f{bottom:383.970000px;}
.y58{bottom:387.030000px;}
.y23{bottom:398.010000px;}
.yc0{bottom:399.090000px;}
.y9e{bottom:399.810000px;}
.y8e{bottom:405.075000px;}
.y57{bottom:408.135000px;}
.y22{bottom:419.115000px;}
.ybf{bottom:420.195000px;}
.y9d{bottom:421.815000px;}
.y8d{bottom:426.135000px;}
.y56{bottom:429.195000px;}
.ybe{bottom:441.255000px;}
.y21{bottom:442.695000px;}
.y8c{bottom:447.195000px;}
.y55{bottom:450.255000px;}
.ybd{bottom:462.315000px;}
.y8b{bottom:468.255000px;}
.y54{bottom:471.315000px;}
.y20{bottom:472.575000px;}
.ybc{bottom:483.375000px;}
.y8a{bottom:489.315000px;}
.y53{bottom:492.375000px;}
.y1f{bottom:493.635000px;}
.ybb{bottom:504.435000px;}
.y89{bottom:510.375000px;}
.y52{bottom:513.435000px;}
.y1e{bottom:514.695000px;}
.yba{bottom:525.495000px;}
.y88{bottom:531.435000px;}
.y51{bottom:534.495000px;}
.y1d{bottom:535.755000px;}
.yb9{bottom:546.555000px;}
.y87{bottom:552.495000px;}
.y50{bottom:555.555000px;}
.y1c{bottom:556.815000px;}
.yb8{bottom:567.615000px;}
.y86{bottom:573.555000px;}
.y4f{bottom:576.615000px;}
.y1b{bottom:577.875000px;}
.yb7{bottom:588.675000px;}
.y85{bottom:594.615000px;}
.y4e{bottom:597.675000px;}
.y1a{bottom:598.935000px;}
.yb6{bottom:609.735000px;}
.y84{bottom:615.675000px;}
.y4d{bottom:618.735000px;}
.y19{bottom:619.995000px;}
.yb5{bottom:630.795000px;}
.y83{bottom:636.735000px;}
.y4c{bottom:639.795000px;}
.y18{bottom:641.055000px;}
.yb4{bottom:651.885000px;}
.y82{bottom:657.825000px;}
.y4b{bottom:660.885000px;}
.y17{bottom:662.145000px;}
.yb3{bottom:672.945000px;}
.y81{bottom:678.885000px;}
.y4a{bottom:681.945000px;}
.y16{bottom:683.205000px;}
.yb2{bottom:694.005000px;}
.y80{bottom:699.945000px;}
.y49{bottom:703.005000px;}
.y15{bottom:704.265000px;}
.yb1{bottom:715.065000px;}
.y7f{bottom:721.005000px;}
.y48{bottom:724.065000px;}
.y14{bottom:725.325000px;}
.yb0{bottom:736.125000px;}
.y7e{bottom:742.065000px;}
.y47{bottom:745.125000px;}
.y13{bottom:746.385000px;}
.yaf{bottom:757.005000px;}
.y7d{bottom:763.125000px;}
.y46{bottom:766.005000px;}
.y12{bottom:767.445000px;}
.yae{bottom:778.065000px;}
.y7c{bottom:784.185000px;}
.y45{bottom:787.065000px;}
.y11{bottom:788.505000px;}
.yad{bottom:799.125000px;}
.y7b{bottom:805.245000px;}
.y44{bottom:808.125000px;}
.y10{bottom:809.565000px;}
.yac{bottom:820.185000px;}
.y7a{bottom:826.305000px;}
.y43{bottom:829.185000px;}
.yf{bottom:830.625000px;}
.yd8{bottom:841.245000px;}
.y79{bottom:847.365000px;}
.y42{bottom:850.245000px;}
.ye{bottom:853.845000px;}
.yd7{bottom:862.305000px;}
.y78{bottom:868.425000px;}
.y41{bottom:871.305000px;}
.yd{bottom:874.905000px;}
.yd6{bottom:883.365000px;}
.y77{bottom:889.485000px;}
.y40{bottom:892.365000px;}
.yc{bottom:895.965000px;}
.yd5{bottom:904.470000px;}
.y76{bottom:910.590000px;}
.y3f{bottom:913.470000px;}
.yb{bottom:917.070000px;}
.yd4{bottom:925.530000px;}
.y75{bottom:931.650000px;}
.y3e{bottom:934.530000px;}
.ya{bottom:939.030000px;}
.yd3{bottom:946.590000px;}
.y74{bottom:952.710000px;}
.y3d{bottom:955.590000px;}
.y9{bottom:961.350000px;}
.yd2{bottom:967.650000px;}
.y73{bottom:973.770000px;}
.y3c{bottom:976.650000px;}
.y8{bottom:986.550000px;}
.yd1{bottom:988.710000px;}
.y72{bottom:994.830000px;}
.yd9{bottom:997.500000px;}
.y3b{bottom:997.710000px;}
.yd0{bottom:1009.770000px;}
.y71{bottom:1015.890000px;}
.y3a{bottom:1018.770000px;}
.y7{bottom:1020.210000px;}
.ycf{bottom:1030.830000px;}
.y70{bottom:1036.950000px;}
.y39{bottom:1039.830000px;}
.yce{bottom:1051.890000px;}
.y6f{bottom:1052.070000px;}
.y5{bottom:1060.350000px;}
.y38{bottom:1060.890000px;}
.y37{bottom:1081.950000px;}
.y4{bottom:1092.570000px;}
.y6e{bottom:1094.910000px;}
.y36{bottom:1103.010000px;}
.y6d{bottom:1116.690000px;}
.y35{bottom:1124.070000px;}
.y3{bottom:1124.610000px;}
.y34{bottom:1145.130000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.hd{height:2.864531px;}
.h9{height:21.060000px;}
.ha{height:21.096000px;}
.h8{height:42.120000px;}
.hb{height:42.156000px;}
.h2{height:56.146289px;}
.h7{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hc{height:84.996000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:114.120000px;}
.w7{width:147.816000px;}
.w6{width:181.290000px;}
.w3{width:194.610000px;}
.w9{width:210.810000px;}
.w8{width:280.110000px;}
.w5{width:398.955000px;}
.wa{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:53.999987px;}
.x2{left:80.999987px;}
.x4{left:92.016000px;}
.x3{left:108.035987px;}
.x8{left:141.156000px;}
.xb{left:175.709987px;}
.xc{left:190.110000px;}
.xd{left:264.810000px;}
.x6{left:287.355000px;}
.x9{left:323.175000px;}
.x7{left:402.195000px;}
.xa{left:471.705000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.842667pt;}
.lse{letter-spacing:-0.698667pt;}
.ls8{letter-spacing:-0.515200pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls23{letter-spacing:-0.383467pt;}
.lsb{letter-spacing:-0.368000pt;}
.ls14{letter-spacing:-0.290133pt;}
.lsc{letter-spacing:-0.220800pt;}
.ls1a{letter-spacing:-0.213867pt;}
.ls16{letter-spacing:-0.095467pt;}
.ls20{letter-spacing:-0.057600pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls15{letter-spacing:-0.033920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.021120pt;}
.ls7{letter-spacing:0.058667pt;}
.ls10{letter-spacing:0.124800pt;}
.lsf{letter-spacing:0.154667pt;}
.ls12{letter-spacing:0.155733pt;}
.ls5{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.165867pt;}
.lsa{letter-spacing:0.272000pt;}
.lsd{letter-spacing:0.349867pt;}
.ls18{letter-spacing:0.350080pt;}
.ls21{letter-spacing:0.426240pt;}
.ls19{letter-spacing:0.544000pt;}
.ls9{letter-spacing:0.581333pt;}
.ls22{letter-spacing:0.586667pt;}
.ls1f{letter-spacing:0.805333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1e{letter-spacing:10.832640pt;}
.ls1d{letter-spacing:37.712640pt;}
.ls1c{letter-spacing:40.912640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wse{word-spacing:-12.810453pt;}
.ws10{word-spacing:-12.591787pt;}
.wsd{word-spacing:-12.354987pt;}
.wsc{word-spacing:-12.277120pt;}
.ws9{word-spacing:-12.170987pt;}
.ws8{word-spacing:-12.160853pt;}
.ws7{word-spacing:-12.129920pt;}
.wsb{word-spacing:-12.026240pt;}
.ws4{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.971200pt;}
.ws3{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.947520pt;}
.ws6{word-spacing:-11.784320pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-840.089600pt;}
._5{margin-left:-517.132800pt;}
._7{margin-left:-3.893760pt;}
._6{margin-left:-2.944000pt;}
._16{margin-left:-2.045013pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._12{width:2.303787pt;}
._e{width:3.235627pt;}
._c{width:4.940160pt;}
._b{width:5.841067pt;}
._f{width:7.206613pt;}
._d{width:8.779733pt;}
._10{width:10.502827pt;}
._11{width:13.119573pt;}
._13{width:14.714240pt;}
._14{width:15.617280pt;}
._15{width:16.845440pt;}
._1a{width:18.645120pt;}
._19{width:20.026240pt;}
._1b{width:20.934400pt;}
._8{width:22.216320pt;}
._9{width:23.264640pt;}
._1e{width:32.296960pt;}
._1d{width:33.233920pt;}
._1c{width:37.040853pt;}
._1f{width:46.958080pt;}
._18{width:49.171413pt;}
._a{width:180.122880pt;}
._17{width:236.490240pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:5.920000pt;}
.y6b{bottom:5.946667pt;}
.y9f{bottom:5.960000pt;}
.ydf{bottom:6.240000pt;}
.y67{bottom:24.640000pt;}
.yde{bottom:24.986667pt;}
.ydb{bottom:31.546667pt;}
.ydd{bottom:44.026667pt;}
.y6{bottom:54.720000pt;}
.ydc{bottom:62.746667pt;}
.ycc{bottom:81.920000pt;}
.y31{bottom:91.840000pt;}
.ycd{bottom:92.640000pt;}
.y9c{bottom:97.920000pt;}
.y65{bottom:100.640000pt;}
.yda{bottom:110.080000pt;}
.y30{bottom:110.560000pt;}
.y6c{bottom:110.720000pt;}
.ycb{bottom:111.360000pt;}
.yab{bottom:114.720000pt;}
.y9b{bottom:116.640000pt;}
.y64{bottom:119.360000pt;}
.y2f{bottom:129.280000pt;}
.y6a{bottom:130.080000pt;}
.yaa{bottom:133.440000pt;}
.y9a{bottom:135.386667pt;}
.y63{bottom:138.106667pt;}
.y2e{bottom:148.026667pt;}
.yca{bottom:148.826667pt;}
.y69{bottom:149.626667pt;}
.ya9{bottom:152.186667pt;}
.y99{bottom:154.106667pt;}
.y62{bottom:156.826667pt;}
.y2d{bottom:166.746667pt;}
.yc9{bottom:167.546667pt;}
.y66{bottom:168.986667pt;}
.ya8{bottom:170.906667pt;}
.y98{bottom:172.826667pt;}
.y61{bottom:175.546667pt;}
.y2c{bottom:185.466667pt;}
.yc8{bottom:186.266667pt;}
.ya7{bottom:189.626667pt;}
.y97{bottom:191.546667pt;}
.y60{bottom:194.266667pt;}
.y2b{bottom:204.186667pt;}
.yc7{bottom:204.986667pt;}
.ya6{bottom:208.346667pt;}
.y96{bottom:210.266667pt;}
.y5f{bottom:212.986667pt;}
.y2a{bottom:222.906667pt;}
.yc6{bottom:223.706667pt;}
.ya5{bottom:227.066667pt;}
.y95{bottom:228.986667pt;}
.y5e{bottom:231.706667pt;}
.y29{bottom:241.626667pt;}
.yc5{bottom:242.426667pt;}
.ya4{bottom:245.786667pt;}
.y94{bottom:247.706667pt;}
.y5d{bottom:250.426667pt;}
.ya3{bottom:259.226667pt;}
.y28{bottom:260.346667pt;}
.yc4{bottom:261.146667pt;}
.y93{bottom:266.426667pt;}
.y5c{bottom:269.146667pt;}
.ya2{bottom:278.586667pt;}
.y27{bottom:279.066667pt;}
.yc3{bottom:279.866667pt;}
.y92{bottom:285.146667pt;}
.y5b{bottom:287.866667pt;}
.y26{bottom:297.786667pt;}
.yc2{bottom:298.586667pt;}
.y91{bottom:303.866667pt;}
.y5a{bottom:306.586667pt;}
.y25{bottom:316.506667pt;}
.ya1{bottom:316.666667pt;}
.yc1{bottom:317.306667pt;}
.y90{bottom:322.586667pt;}
.y59{bottom:325.306667pt;}
.y24{bottom:335.226667pt;}
.ya0{bottom:336.026667pt;}
.y8f{bottom:341.306667pt;}
.y58{bottom:344.026667pt;}
.y23{bottom:353.786667pt;}
.yc0{bottom:354.746667pt;}
.y9e{bottom:355.386667pt;}
.y8e{bottom:360.066667pt;}
.y57{bottom:362.786667pt;}
.y22{bottom:372.546667pt;}
.ybf{bottom:373.506667pt;}
.y9d{bottom:374.946667pt;}
.y8d{bottom:378.786667pt;}
.y56{bottom:381.506667pt;}
.ybe{bottom:392.226667pt;}
.y21{bottom:393.506667pt;}
.y8c{bottom:397.506667pt;}
.y55{bottom:400.226667pt;}
.ybd{bottom:410.946667pt;}
.y8b{bottom:416.226667pt;}
.y54{bottom:418.946667pt;}
.y20{bottom:420.066667pt;}
.ybc{bottom:429.666667pt;}
.y8a{bottom:434.946667pt;}
.y53{bottom:437.666667pt;}
.y1f{bottom:438.786667pt;}
.ybb{bottom:448.386667pt;}
.y89{bottom:453.666667pt;}
.y52{bottom:456.386667pt;}
.y1e{bottom:457.506667pt;}
.yba{bottom:467.106667pt;}
.y88{bottom:472.386667pt;}
.y51{bottom:475.106667pt;}
.y1d{bottom:476.226667pt;}
.yb9{bottom:485.826667pt;}
.y87{bottom:491.106667pt;}
.y50{bottom:493.826667pt;}
.y1c{bottom:494.946667pt;}
.yb8{bottom:504.546667pt;}
.y86{bottom:509.826667pt;}
.y4f{bottom:512.546667pt;}
.y1b{bottom:513.666667pt;}
.yb7{bottom:523.266667pt;}
.y85{bottom:528.546667pt;}
.y4e{bottom:531.266667pt;}
.y1a{bottom:532.386667pt;}
.yb6{bottom:541.986667pt;}
.y84{bottom:547.266667pt;}
.y4d{bottom:549.986667pt;}
.y19{bottom:551.106667pt;}
.yb5{bottom:560.706667pt;}
.y83{bottom:565.986667pt;}
.y4c{bottom:568.706667pt;}
.y18{bottom:569.826667pt;}
.yb4{bottom:579.453333pt;}
.y82{bottom:584.733333pt;}
.y4b{bottom:587.453333pt;}
.y17{bottom:588.573333pt;}
.yb3{bottom:598.173333pt;}
.y81{bottom:603.453333pt;}
.y4a{bottom:606.173333pt;}
.y16{bottom:607.293333pt;}
.yb2{bottom:616.893333pt;}
.y80{bottom:622.173333pt;}
.y49{bottom:624.893333pt;}
.y15{bottom:626.013333pt;}
.yb1{bottom:635.613333pt;}
.y7f{bottom:640.893333pt;}
.y48{bottom:643.613333pt;}
.y14{bottom:644.733333pt;}
.yb0{bottom:654.333333pt;}
.y7e{bottom:659.613333pt;}
.y47{bottom:662.333333pt;}
.y13{bottom:663.453333pt;}
.yaf{bottom:672.893333pt;}
.y7d{bottom:678.333333pt;}
.y46{bottom:680.893333pt;}
.y12{bottom:682.173333pt;}
.yae{bottom:691.613333pt;}
.y7c{bottom:697.053333pt;}
.y45{bottom:699.613333pt;}
.y11{bottom:700.893333pt;}
.yad{bottom:710.333333pt;}
.y7b{bottom:715.773333pt;}
.y44{bottom:718.333333pt;}
.y10{bottom:719.613333pt;}
.yac{bottom:729.053333pt;}
.y7a{bottom:734.493333pt;}
.y43{bottom:737.053333pt;}
.yf{bottom:738.333333pt;}
.yd8{bottom:747.773333pt;}
.y79{bottom:753.213333pt;}
.y42{bottom:755.773333pt;}
.ye{bottom:758.973333pt;}
.yd7{bottom:766.493333pt;}
.y78{bottom:771.933333pt;}
.y41{bottom:774.493333pt;}
.yd{bottom:777.693333pt;}
.yd6{bottom:785.213333pt;}
.y77{bottom:790.653333pt;}
.y40{bottom:793.213333pt;}
.yc{bottom:796.413333pt;}
.yd5{bottom:803.973333pt;}
.y76{bottom:809.413333pt;}
.y3f{bottom:811.973333pt;}
.yb{bottom:815.173333pt;}
.yd4{bottom:822.693333pt;}
.y75{bottom:828.133333pt;}
.y3e{bottom:830.693333pt;}
.ya{bottom:834.693333pt;}
.yd3{bottom:841.413333pt;}
.y74{bottom:846.853333pt;}
.y3d{bottom:849.413333pt;}
.y9{bottom:854.533333pt;}
.yd2{bottom:860.133333pt;}
.y73{bottom:865.573333pt;}
.y3c{bottom:868.133333pt;}
.y8{bottom:876.933333pt;}
.yd1{bottom:878.853333pt;}
.y72{bottom:884.293333pt;}
.yd9{bottom:886.666667pt;}
.y3b{bottom:886.853333pt;}
.yd0{bottom:897.573333pt;}
.y71{bottom:903.013333pt;}
.y3a{bottom:905.573333pt;}
.y7{bottom:906.853333pt;}
.ycf{bottom:916.293333pt;}
.y70{bottom:921.733333pt;}
.y39{bottom:924.293333pt;}
.yce{bottom:935.013333pt;}
.y6f{bottom:935.173333pt;}
.y5{bottom:942.533333pt;}
.y38{bottom:943.013333pt;}
.y37{bottom:961.733333pt;}
.y4{bottom:971.173333pt;}
.y6e{bottom:973.253333pt;}
.y36{bottom:980.453333pt;}
.y6d{bottom:992.613333pt;}
.y35{bottom:999.173333pt;}
.y3{bottom:999.653333pt;}
.y34{bottom:1017.893333pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.hd{height:2.546250pt;}
.h9{height:18.720000pt;}
.ha{height:18.752000pt;}
.h8{height:37.440000pt;}
.hb{height:37.472000pt;}
.h2{height:49.907812pt;}
.h7{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hc{height:75.552000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:101.440000pt;}
.w7{width:131.392000pt;}
.w6{width:161.146667pt;}
.w3{width:172.986667pt;}
.w9{width:187.386667pt;}
.w8{width:248.986667pt;}
.w5{width:354.626667pt;}
.wa{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:47.999988pt;}
.x2{left:71.999988pt;}
.x4{left:81.792000pt;}
.x3{left:96.031988pt;}
.x8{left:125.472000pt;}
.xb{left:156.186655pt;}
.xc{left:168.986667pt;}
.xd{left:235.386667pt;}
.x6{left:255.426667pt;}
.x9{left:287.266667pt;}
.x7{left:357.506667pt;}
.xa{left:419.293333pt;}
}




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