
    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_1e9933fc9727fab4bfababdd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_4812b1ce16fb48d0aa3aa5bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_597a548bf12af26cec2f0830.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_35121a8ab58ded49848d54e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_6ba6a6abb19328000f9eb113.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ecbde900ebf16b489b1f951a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_952fd5bf1ce7e52ebc488402.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.720000px;}
.ls5{letter-spacing:-0.972000px;}
.ls4{letter-spacing:-0.936000px;}
.ls2{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.498000px;}
.ls9{letter-spacing:-0.486600px;}
.ls14{letter-spacing:-0.466800px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.ls13{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.498240px;}
.ls6{letter-spacing:0.720000px;}
.lse{letter-spacing:2.160000px;}
.ls10{letter-spacing:3.600000px;}
.lsf{letter-spacing:3.780000px;}
.lsc{letter-spacing:6.480000px;}
.lsd{letter-spacing:7.920000px;}
.ls11{letter-spacing:9.360000px;}
.lsb{letter-spacing:10.800000px;}
.ls7{letter-spacing:46.558560px;}
.lsa{letter-spacing:71.038560px;}
.ls12{letter-spacing:91.198560px;}
.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;}
}
.ws2{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.633400px;}
.ws1{word-spacing:-14.184000px;}
.ws0{word-spacing:-13.182000px;}
.ws7{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.000000px;}
.ws6{word-spacing:-0.060480px;}
.ws3{word-spacing:0.000000px;}
._1b{margin-left:-5.377440px;}
._e{margin-left:-4.060320px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._10{width:3.300480px;}
._f{width:4.415040px;}
._8{width:5.763840px;}
._11{width:6.797760px;}
._7{width:7.862400px;}
._14{width:8.991360px;}
._12{width:10.221120px;}
._13{width:11.249280px;}
._18{width:12.458880px;}
._1c{width:13.806720px;}
._15{width:16.450560px;}
._16{width:17.478720px;}
._17{width:18.947520px;}
._c{width:20.805120px;}
._1a{width:21.814080px;}
._d{width:23.103360px;}
._1e{width:24.192000px;}
._b{width:25.600320px;}
._a{width:27.578880px;}
._9{width:28.857600px;}
._19{width:33.808320px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._1d{width:849.336000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs6{font-size:24.480000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y2d{bottom:3.240000px;}
.y2c{bottom:20.520000px;}
.y2b{bottom:37.800000px;}
.ye{bottom:43.560000px;}
.y2a{bottom:57.600000px;}
.yc{bottom:68.400000px;}
.y29{bottom:77.400000px;}
.ya{bottom:94.716000px;}
.y28{bottom:97.200000px;}
.y27{bottom:117.000000px;}
.y6b{bottom:129.996000px;}
.y39{bottom:130.356000px;}
.y38{bottom:135.756000px;}
.y26{bottom:136.845000px;}
.y93{bottom:138.276000px;}
.y6a{bottom:144.396000px;}
.y37{bottom:147.636000px;}
.yc5{bottom:149.436000px;}
.y36{bottom:153.030000px;}
.y25{bottom:156.645000px;}
.ye6{bottom:161.310000px;}
.y35{bottom:164.910000px;}
.yc4{bottom:166.710000px;}
.y34{bottom:170.310000px;}
.y92{bottom:173.550000px;}
.y24{bottom:176.445000px;}
.ye5{bottom:178.590000px;}
.y69{bottom:180.030000px;}
.y33{bottom:182.190000px;}
.yc3{bottom:183.990000px;}
.y32{bottom:187.590000px;}
.ye4{bottom:195.510000px;}
.y23{bottom:196.245000px;}
.y31{bottom:199.515000px;}
.yc2{bottom:200.955000px;}
.y68{bottom:205.995000px;}
.y91{bottom:208.875000px;}
.y22{bottom:216.045000px;}
.yc1{bottom:218.235000px;}
.y90{bottom:226.155000px;}
.ye3{bottom:230.835000px;}
.y67{bottom:231.915000px;}
.yc0{bottom:235.515000px;}
.y21{bottom:236.205000px;}
.y30{bottom:240.555000px;}
.ye2{bottom:248.115000px;}
.ybf{bottom:252.795000px;}
.y20{bottom:256.035000px;}
.y2f{bottom:257.835000px;}
.y8f{bottom:261.435000px;}
.ye1{bottom:265.395000px;}
.ybe{bottom:270.075000px;}
.y1f{bottom:275.835000px;}
.y8e{bottom:278.715000px;}
.y66{bottom:293.115000px;}
.ye0{bottom:300.675000px;}
.y2e{bottom:301.755000px;}
.ybd{bottom:305.355000px;}
.y1e{bottom:311.115000px;}
.y8d{bottom:313.995000px;}
.ydf{bottom:317.955000px;}
.y1d{bottom:326.985000px;}
.y65{bottom:328.425000px;}
.y8c{bottom:331.305000px;}
.yde{bottom:335.265000px;}
.ybc{bottom:340.665000px;}
.ydd{bottom:352.545000px;}
.ybb{bottom:357.945000px;}
.y64{bottom:363.705000px;}
.y8b{bottom:366.585000px;}
.ydc{bottom:369.825000px;}
.yba{bottom:375.225000px;}
.y8a{bottom:383.505000px;}
.ydb{bottom:387.105000px;}
.yb9{bottom:392.505000px;}
.y63{bottom:398.985000px;}
.yda{bottom:404.385000px;}
.yb8{bottom:409.785000px;}
.y62{bottom:415.905000px;}
.y89{bottom:418.785000px;}
.yd9{bottom:421.665000px;}
.yb7{bottom:427.065000px;}
.y61{bottom:433.185000px;}
.y88{bottom:436.065000px;}
.yd8{bottom:438.585000px;}
.yb6{bottom:443.985000px;}
.y114{bottom:448.305000px;}
.y60{bottom:450.510000px;}
.yd7{bottom:455.910000px;}
.y113{bottom:465.630000px;}
.y5f{bottom:467.790000px;}
.y87{bottom:471.390000px;}
.yb5{bottom:479.310000px;}
.y112{bottom:482.910000px;}
.yd6{bottom:491.190000px;}
.y111{bottom:502.710000px;}
.y5e{bottom:503.070000px;}
.y86{bottom:506.670000px;}
.yb4{bottom:514.590000px;}
.y5d{bottom:520.350000px;}
.y110{bottom:522.510000px;}
.y85{bottom:523.950000px;}
.yb3{bottom:531.870000px;}
.yd5{bottom:533.310000px;}
.y5c{bottom:537.630000px;}
.y84{bottom:541.230000px;}
.y10f{bottom:542.310000px;}
.yb2{bottom:549.150000px;}
.yd4{bottom:550.590000px;}
.y10e{bottom:562.110000px;}
.yb1{bottom:566.430000px;}
.yd3{bottom:567.870000px;}
.y5b{bottom:569.310000px;}
.y83{bottom:576.540000px;}
.y10d{bottom:581.940000px;}
.yb0{bottom:583.740000px;}
.yd2{bottom:585.180000px;}
.y82{bottom:593.820000px;}
.yaf{bottom:601.020000px;}
.yd1{bottom:602.460000px;}
.y5a{bottom:604.620000px;}
.y10c{bottom:607.860000px;}
.y81{bottom:611.100000px;}
.yae{bottom:618.300000px;}
.yd0{bottom:619.740000px;}
.yf7{bottom:621.900000px;}
.y80{bottom:628.380000px;}
.y10b{bottom:633.780000px;}
.ycf{bottom:637.020000px;}
.yf6{bottom:639.180000px;}
.y59{bottom:639.900000px;}
.yad{bottom:653.580000px;}
.yce{bottom:654.300000px;}
.yf5{bottom:656.460000px;}
.y58{bottom:657.180000px;}
.y10a{bottom:659.700000px;}
.y7f{bottom:663.300000px;}
.y1c{bottom:666.540000px;}
.ycd{bottom:671.580000px;}
.yf4{bottom:673.740000px;}
.y57{bottom:674.460000px;}
.y7e{bottom:680.580000px;}
.y109{bottom:685.620000px;}
.yac{bottom:688.860000px;}
.yf3{bottom:691.020000px;}
.y56{bottom:691.740000px;}
.y1b{bottom:692.460000px;}
.y7d{bottom:697.860000px;}
.yab{bottom:705.810000px;}
.yf2{bottom:708.330000px;}
.y108{bottom:711.570000px;}
.y7c{bottom:715.170000px;}
.ycc{bottom:723.810000px;}
.y55{bottom:727.050000px;}
.y19{bottom:736.410000px;}
.y107{bottom:737.130000px;}
.yaa{bottom:741.090000px;}
.y1a{bottom:742.530000px;}
.yf1{bottom:743.610000px;}
.y54{bottom:744.330000px;}
.y7b{bottom:750.450000px;}
.ycb{bottom:759.090000px;}
.yf0{bottom:760.890000px;}
.y53{bottom:761.610000px;}
.y17{bottom:761.970000px;}
.y106{bottom:763.050000px;}
.y7a{bottom:767.730000px;}
.y18{bottom:768.090000px;}
.ya9{bottom:776.370000px;}
.yef{bottom:777.810000px;}
.y52{bottom:778.890000px;}
.y79{bottom:785.010000px;}
.y15{bottom:787.890000px;}
.y105{bottom:788.970000px;}
.ya8{bottom:793.650000px;}
.y16{bottom:794.010000px;}
.yee{bottom:795.090000px;}
.y51{bottom:795.810000px;}
.y78{bottom:802.290000px;}
.ya7{bottom:810.930000px;}
.yed{bottom:812.370000px;}
.y50{bottom:813.090000px;}
.y13{bottom:813.810000px;}
.y104{bottom:814.890000px;}
.y14{bottom:819.930000px;}
.ya6{bottom:828.255000px;}
.yec{bottom:829.695000px;}
.y4f{bottom:830.415000px;}
.y12{bottom:831.135000px;}
.y77{bottom:837.615000px;}
.y103{bottom:840.855000px;}
.ya5{bottom:845.535000px;}
.yeb{bottom:846.975000px;}
.y4e{bottom:847.695000px;}
.y11{bottom:850.215000px;}
.y76{bottom:854.895000px;}
.ya4{bottom:862.815000px;}
.yf8{bottom:865.695000px;}
.y102{bottom:866.775000px;}
.y75{bottom:872.175000px;}
.ya3{bottom:880.095000px;}
.yea{bottom:882.255000px;}
.y4d{bottom:882.975000px;}
.y10{bottom:889.095000px;}
.y101{bottom:892.695000px;}
.ya2{bottom:897.375000px;}
.yca{bottom:898.095000px;}
.ye9{bottom:899.535000px;}
.y4c{bottom:900.255000px;}
.y74{bottom:907.455000px;}
.ya1{bottom:914.655000px;}
.yf{bottom:915.015000px;}
.y9a{bottom:916.095000px;}
.ye8{bottom:916.815000px;}
.y4b{bottom:917.535000px;}
.y100{bottom:918.615000px;}
.y73{bottom:924.375000px;}
.y99{bottom:933.375000px;}
.ye7{bottom:934.095000px;}
.y4a{bottom:934.815000px;}
.y9{bottom:941.295000px;}
.y72{bottom:941.655000px;}
.yff{bottom:944.175000px;}
.ya0{bottom:949.575000px;}
.y98{bottom:950.655000px;}
.y49{bottom:952.095000px;}
.y8{bottom:958.605000px;}
.y71{bottom:958.965000px;}
.yc9{bottom:967.605000px;}
.y48{bottom:969.405000px;}
.yfe{bottom:970.485000px;}
.y7{bottom:972.645000px;}
.y70{bottom:976.245000px;}
.y9f{bottom:984.885000px;}
.y97{bottom:985.605000px;}
.y47{bottom:986.685000px;}
.y9e{bottom:1002.165000px;}
.y96{bottom:1002.885000px;}
.y46{bottom:1003.605000px;}
.yfd{bottom:1007.925000px;}
.y6f{bottom:1011.525000px;}
.yc8{bottom:1019.445000px;}
.y45{bottom:1020.885000px;}
.y6{bottom:1027.365000px;}
.yfc{bottom:1027.725000px;}
.yc7{bottom:1036.725000px;}
.y9d{bottom:1037.445000px;}
.y95{bottom:1038.165000px;}
.y6e{bottom:1043.565000px;}
.yfb{bottom:1047.885000px;}
.y5{bottom:1052.205000px;}
.y94{bottom:1055.445000px;}
.y44{bottom:1056.165000px;}
.y6d{bottom:1063.365000px;}
.yfa{bottom:1067.685000px;}
.yc6{bottom:1072.005000px;}
.y4{bottom:1072.725000px;}
.y43{bottom:1073.445000px;}
.yf9{bottom:1087.530000px;}
.y9c{bottom:1090.050000px;}
.y42{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.y6c{bottom:1098.690000px;}
.y9b{bottom:1107.330000px;}
.y41{bottom:1108.050000px;}
.y2{bottom:1114.530000px;}
.y40{bottom:1125.330000px;}
.y1{bottom:1131.450000px;}
.y3e{bottom:1142.610000px;}
.y3f{bottom:1148.010000px;}
.y3d{bottom:1166.370000px;}
.y3c{bottom:1180.410000px;}
.y3b{bottom:1201.290000px;}
.y3a{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h11{height:21.479766px;}
.hc{height:34.114922px;}
.ha{height:34.532578px;}
.h5{height:39.997969px;}
.hf{height:41.696016px;}
.h10{height:44.208281px;}
.h7{height:48.013594px;}
.h4{height:53.067656px;}
.h2{height:53.717344px;}
.he{height:55.714922px;}
.hd{height:55.834922px;}
.h3{height:63.949219px;}
.h9{height:85.691953px;}
.hb{height:334.155000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.w6{width:679.965000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.x19{left:111.275987px;}
.x20{left:117.755987px;}
.x1e{left:123.515987px;}
.x1d{left:133.271987px;}
.x1f{left:160.274987px;}
.x1a{left:180.794987px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.xa{left:304.350000px;}
.x13{left:318.389987px;}
.x18{left:322.349987px;}
.x17{left:339.984000px;}
.x21{left:349.349987px;}
.x5{left:355.829987px;}
.x10{left:358.349987px;}
.x16{left:369.869987px;}
.xd{left:371.309987px;}
.x4{left:379.949987px;}
.x1c{left:385.349987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x1b{left:447.660000px;}
.xb{left:504.929973px;}
.xc{left:509.969987px;}
.xe{left:513.209973px;}
.xf{left:518.249987px;}
.x11{left:525.809973px;}
.x12{left:530.849987px;}
.x14{left:565.409973px;}
.x15{left:570.449987px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.306667pt;}
.ls5{letter-spacing:-0.864000pt;}
.ls4{letter-spacing:-0.832000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.442667pt;}
.ls9{letter-spacing:-0.432533pt;}
.ls14{letter-spacing:-0.414933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.ls13{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.442880pt;}
.ls6{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.920000pt;}
.ls10{letter-spacing:3.200000pt;}
.lsf{letter-spacing:3.360000pt;}
.lsc{letter-spacing:5.760000pt;}
.lsd{letter-spacing:7.040000pt;}
.ls11{letter-spacing:8.320000pt;}
.lsb{letter-spacing:9.600000pt;}
.ls7{letter-spacing:41.385387pt;}
.lsa{letter-spacing:63.145387pt;}
.ls12{letter-spacing:81.065387pt;}
.ws2{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.007467pt;}
.ws1{word-spacing:-12.608000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws7{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws6{word-spacing:-0.053760pt;}
.ws3{word-spacing:0.000000pt;}
._1b{margin-left:-4.779947pt;}
._e{margin-left:-3.609173pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._10{width:2.933760pt;}
._f{width:3.924480pt;}
._8{width:5.123413pt;}
._11{width:6.042453pt;}
._7{width:6.988800pt;}
._14{width:7.992320pt;}
._12{width:9.085440pt;}
._13{width:9.999360pt;}
._18{width:11.074560pt;}
._1c{width:12.272640pt;}
._15{width:14.622720pt;}
._16{width:15.536640pt;}
._17{width:16.842240pt;}
._c{width:18.493440pt;}
._1a{width:19.390293pt;}
._d{width:20.536320pt;}
._1e{width:21.504000pt;}
._b{width:22.755840pt;}
._a{width:24.514560pt;}
._9{width:25.651200pt;}
._19{width:30.051840pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._1d{width:754.965333pt;}
._3{width:1414.378667pt;}
.fs6{font-size:21.760000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y2d{bottom:2.880000pt;}
.y2c{bottom:18.240000pt;}
.y2b{bottom:33.600000pt;}
.ye{bottom:38.720000pt;}
.y2a{bottom:51.200000pt;}
.yc{bottom:60.800000pt;}
.y29{bottom:68.800000pt;}
.ya{bottom:84.192000pt;}
.y28{bottom:86.400000pt;}
.y27{bottom:104.000000pt;}
.y6b{bottom:115.552000pt;}
.y39{bottom:115.872000pt;}
.y38{bottom:120.672000pt;}
.y26{bottom:121.640000pt;}
.y93{bottom:122.912000pt;}
.y6a{bottom:128.352000pt;}
.y37{bottom:131.232000pt;}
.yc5{bottom:132.832000pt;}
.y36{bottom:136.026667pt;}
.y25{bottom:139.240000pt;}
.ye6{bottom:143.386667pt;}
.y35{bottom:146.586667pt;}
.yc4{bottom:148.186667pt;}
.y34{bottom:151.386667pt;}
.y92{bottom:154.266667pt;}
.y24{bottom:156.840000pt;}
.ye5{bottom:158.746667pt;}
.y69{bottom:160.026667pt;}
.y33{bottom:161.946667pt;}
.yc3{bottom:163.546667pt;}
.y32{bottom:166.746667pt;}
.ye4{bottom:173.786667pt;}
.y23{bottom:174.440000pt;}
.y31{bottom:177.346667pt;}
.yc2{bottom:178.626667pt;}
.y68{bottom:183.106667pt;}
.y91{bottom:185.666667pt;}
.y22{bottom:192.040000pt;}
.yc1{bottom:193.986667pt;}
.y90{bottom:201.026667pt;}
.ye3{bottom:205.186667pt;}
.y67{bottom:206.146667pt;}
.yc0{bottom:209.346667pt;}
.y21{bottom:209.960000pt;}
.y30{bottom:213.826667pt;}
.ye2{bottom:220.546667pt;}
.ybf{bottom:224.706667pt;}
.y20{bottom:227.586667pt;}
.y2f{bottom:229.186667pt;}
.y8f{bottom:232.386667pt;}
.ye1{bottom:235.906667pt;}
.ybe{bottom:240.066667pt;}
.y1f{bottom:245.186667pt;}
.y8e{bottom:247.746667pt;}
.y66{bottom:260.546667pt;}
.ye0{bottom:267.266667pt;}
.y2e{bottom:268.226667pt;}
.ybd{bottom:271.426667pt;}
.y1e{bottom:276.546667pt;}
.y8d{bottom:279.106667pt;}
.ydf{bottom:282.626667pt;}
.y1d{bottom:290.653333pt;}
.y65{bottom:291.933333pt;}
.y8c{bottom:294.493333pt;}
.yde{bottom:298.013333pt;}
.ybc{bottom:302.813333pt;}
.ydd{bottom:313.373333pt;}
.ybb{bottom:318.173333pt;}
.y64{bottom:323.293333pt;}
.y8b{bottom:325.853333pt;}
.ydc{bottom:328.733333pt;}
.yba{bottom:333.533333pt;}
.y8a{bottom:340.893333pt;}
.ydb{bottom:344.093333pt;}
.yb9{bottom:348.893333pt;}
.y63{bottom:354.653333pt;}
.yda{bottom:359.453333pt;}
.yb8{bottom:364.253333pt;}
.y62{bottom:369.693333pt;}
.y89{bottom:372.253333pt;}
.yd9{bottom:374.813333pt;}
.yb7{bottom:379.613333pt;}
.y61{bottom:385.053333pt;}
.y88{bottom:387.613333pt;}
.yd8{bottom:389.853333pt;}
.yb6{bottom:394.653333pt;}
.y114{bottom:398.493333pt;}
.y60{bottom:400.453333pt;}
.yd7{bottom:405.253333pt;}
.y113{bottom:413.893333pt;}
.y5f{bottom:415.813333pt;}
.y87{bottom:419.013333pt;}
.yb5{bottom:426.053333pt;}
.y112{bottom:429.253333pt;}
.yd6{bottom:436.613333pt;}
.y111{bottom:446.853333pt;}
.y5e{bottom:447.173333pt;}
.y86{bottom:450.373333pt;}
.yb4{bottom:457.413333pt;}
.y5d{bottom:462.533333pt;}
.y110{bottom:464.453333pt;}
.y85{bottom:465.733333pt;}
.yb3{bottom:472.773333pt;}
.yd5{bottom:474.053333pt;}
.y5c{bottom:477.893333pt;}
.y84{bottom:481.093333pt;}
.y10f{bottom:482.053333pt;}
.yb2{bottom:488.133333pt;}
.yd4{bottom:489.413333pt;}
.y10e{bottom:499.653333pt;}
.yb1{bottom:503.493333pt;}
.yd3{bottom:504.773333pt;}
.y5b{bottom:506.053333pt;}
.y83{bottom:512.480000pt;}
.y10d{bottom:517.280000pt;}
.yb0{bottom:518.880000pt;}
.yd2{bottom:520.160000pt;}
.y82{bottom:527.840000pt;}
.yaf{bottom:534.240000pt;}
.yd1{bottom:535.520000pt;}
.y5a{bottom:537.440000pt;}
.y10c{bottom:540.320000pt;}
.y81{bottom:543.200000pt;}
.yae{bottom:549.600000pt;}
.yd0{bottom:550.880000pt;}
.yf7{bottom:552.800000pt;}
.y80{bottom:558.560000pt;}
.y10b{bottom:563.360000pt;}
.ycf{bottom:566.240000pt;}
.yf6{bottom:568.160000pt;}
.y59{bottom:568.800000pt;}
.yad{bottom:580.960000pt;}
.yce{bottom:581.600000pt;}
.yf5{bottom:583.520000pt;}
.y58{bottom:584.160000pt;}
.y10a{bottom:586.400000pt;}
.y7f{bottom:589.600000pt;}
.y1c{bottom:592.480000pt;}
.ycd{bottom:596.960000pt;}
.yf4{bottom:598.880000pt;}
.y57{bottom:599.520000pt;}
.y7e{bottom:604.960000pt;}
.y109{bottom:609.440000pt;}
.yac{bottom:612.320000pt;}
.yf3{bottom:614.240000pt;}
.y56{bottom:614.880000pt;}
.y1b{bottom:615.520000pt;}
.y7d{bottom:620.320000pt;}
.yab{bottom:627.386667pt;}
.yf2{bottom:629.626667pt;}
.y108{bottom:632.506667pt;}
.y7c{bottom:635.706667pt;}
.ycc{bottom:643.386667pt;}
.y55{bottom:646.266667pt;}
.y19{bottom:654.586667pt;}
.y107{bottom:655.226667pt;}
.yaa{bottom:658.746667pt;}
.y1a{bottom:660.026667pt;}
.yf1{bottom:660.986667pt;}
.y54{bottom:661.626667pt;}
.y7b{bottom:667.066667pt;}
.ycb{bottom:674.746667pt;}
.yf0{bottom:676.346667pt;}
.y53{bottom:676.986667pt;}
.y17{bottom:677.306667pt;}
.y106{bottom:678.266667pt;}
.y7a{bottom:682.426667pt;}
.y18{bottom:682.746667pt;}
.ya9{bottom:690.106667pt;}
.yef{bottom:691.386667pt;}
.y52{bottom:692.346667pt;}
.y79{bottom:697.786667pt;}
.y15{bottom:700.346667pt;}
.y105{bottom:701.306667pt;}
.ya8{bottom:705.466667pt;}
.y16{bottom:705.786667pt;}
.yee{bottom:706.746667pt;}
.y51{bottom:707.386667pt;}
.y78{bottom:713.146667pt;}
.ya7{bottom:720.826667pt;}
.yed{bottom:722.106667pt;}
.y50{bottom:722.746667pt;}
.y13{bottom:723.386667pt;}
.y104{bottom:724.346667pt;}
.y14{bottom:728.826667pt;}
.ya6{bottom:736.226667pt;}
.yec{bottom:737.506667pt;}
.y4f{bottom:738.146667pt;}
.y12{bottom:738.786667pt;}
.y77{bottom:744.546667pt;}
.y103{bottom:747.426667pt;}
.ya5{bottom:751.586667pt;}
.yeb{bottom:752.866667pt;}
.y4e{bottom:753.506667pt;}
.y11{bottom:755.746667pt;}
.y76{bottom:759.906667pt;}
.ya4{bottom:766.946667pt;}
.yf8{bottom:769.506667pt;}
.y102{bottom:770.466667pt;}
.y75{bottom:775.266667pt;}
.ya3{bottom:782.306667pt;}
.yea{bottom:784.226667pt;}
.y4d{bottom:784.866667pt;}
.y10{bottom:790.306667pt;}
.y101{bottom:793.506667pt;}
.ya2{bottom:797.666667pt;}
.yca{bottom:798.306667pt;}
.ye9{bottom:799.586667pt;}
.y4c{bottom:800.226667pt;}
.y74{bottom:806.626667pt;}
.ya1{bottom:813.026667pt;}
.yf{bottom:813.346667pt;}
.y9a{bottom:814.306667pt;}
.ye8{bottom:814.946667pt;}
.y4b{bottom:815.586667pt;}
.y100{bottom:816.546667pt;}
.y73{bottom:821.666667pt;}
.y99{bottom:829.666667pt;}
.ye7{bottom:830.306667pt;}
.y4a{bottom:830.946667pt;}
.y9{bottom:836.706667pt;}
.y72{bottom:837.026667pt;}
.yff{bottom:839.266667pt;}
.ya0{bottom:844.066667pt;}
.y98{bottom:845.026667pt;}
.y49{bottom:846.306667pt;}
.y8{bottom:852.093333pt;}
.y71{bottom:852.413333pt;}
.yc9{bottom:860.093333pt;}
.y48{bottom:861.693333pt;}
.yfe{bottom:862.653333pt;}
.y7{bottom:864.573333pt;}
.y70{bottom:867.773333pt;}
.y9f{bottom:875.453333pt;}
.y97{bottom:876.093333pt;}
.y47{bottom:877.053333pt;}
.y9e{bottom:890.813333pt;}
.y96{bottom:891.453333pt;}
.y46{bottom:892.093333pt;}
.yfd{bottom:895.933333pt;}
.y6f{bottom:899.133333pt;}
.yc8{bottom:906.173333pt;}
.y45{bottom:907.453333pt;}
.y6{bottom:913.213333pt;}
.yfc{bottom:913.533333pt;}
.yc7{bottom:921.533333pt;}
.y9d{bottom:922.173333pt;}
.y95{bottom:922.813333pt;}
.y6e{bottom:927.613333pt;}
.yfb{bottom:931.453333pt;}
.y5{bottom:935.293333pt;}
.y94{bottom:938.173333pt;}
.y44{bottom:938.813333pt;}
.y6d{bottom:945.213333pt;}
.yfa{bottom:949.053333pt;}
.yc6{bottom:952.893333pt;}
.y4{bottom:953.533333pt;}
.y43{bottom:954.173333pt;}
.yf9{bottom:966.693333pt;}
.y9c{bottom:968.933333pt;}
.y42{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.y6c{bottom:976.613333pt;}
.y9b{bottom:984.293333pt;}
.y41{bottom:984.933333pt;}
.y2{bottom:990.693333pt;}
.y40{bottom:1000.293333pt;}
.y1{bottom:1005.733333pt;}
.y3e{bottom:1015.653333pt;}
.y3f{bottom:1020.453333pt;}
.y3d{bottom:1036.773333pt;}
.y3c{bottom:1049.253333pt;}
.y3b{bottom:1067.813333pt;}
.y3a{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h11{height:19.093125pt;}
.hc{height:30.324375pt;}
.ha{height:30.695625pt;}
.h5{height:35.553750pt;}
.hf{height:37.063125pt;}
.h10{height:39.296250pt;}
.h7{height:42.678750pt;}
.h4{height:47.171250pt;}
.h2{height:47.748750pt;}
.he{height:49.524375pt;}
.hd{height:49.631042pt;}
.h3{height:56.843750pt;}
.h9{height:76.170625pt;}
.hb{height:297.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.w6{width:604.413333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.x19{left:98.911988pt;}
.x20{left:104.671988pt;}
.x1e{left:109.791988pt;}
.x1d{left:118.463988pt;}
.x1f{left:142.466655pt;}
.x1a{left:160.706655pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.xa{left:270.533333pt;}
.x13{left:283.013322pt;}
.x18{left:286.533322pt;}
.x17{left:302.208000pt;}
.x21{left:310.533322pt;}
.x5{left:316.293322pt;}
.x10{left:318.533322pt;}
.x16{left:328.773322pt;}
.xd{left:330.053322pt;}
.x4{left:337.733322pt;}
.x1c{left:342.533322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x1b{left:397.920000pt;}
.xb{left:448.826643pt;}
.xc{left:453.306655pt;}
.xe{left:456.186643pt;}
.xf{left:460.666655pt;}
.x11{left:467.386643pt;}
.x12{left:471.866655pt;}
.x14{left:502.586643pt;}
.x15{left:507.066655pt;}
.x1{left:699.493322pt;}
}




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