
    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_f3e8068ba6bf330581433bfc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_937a8fe88107fc48a06844a6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d147841cf1924ebaa51281be.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f8e995177bd25d48b5d9f028.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_862da157ecd7f1e110276cd3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_577141277b29c2af332a3610.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_11452ffc8620005fc2096dbf.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_961a5c40f365acca35260e92.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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);}
.v1{vertical-align:-76.500000px;}
.v2{vertical-align:-75.180000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.500000px;}
.ls11{letter-spacing:-0.978000px;}
.ls1d{letter-spacing:-0.804000px;}
.lse{letter-spacing:-0.522000px;}
.ls12{letter-spacing:-0.348000px;}
.lsd{letter-spacing:-0.006000px;}
.lsc{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012000px;}
.ls1f{letter-spacing:0.024000px;}
.ls22{letter-spacing:0.060000px;}
.ls18{letter-spacing:0.174000px;}
.ls1b{letter-spacing:0.348000px;}
.ls17{letter-spacing:0.522000px;}
.ls19{letter-spacing:0.696000px;}
.ls23{letter-spacing:1.152000px;}
.ls10{letter-spacing:1.500000px;}
.ls6{letter-spacing:1.650000px;}
.ls16{letter-spacing:3.000000px;}
.ls1c{letter-spacing:6.000000px;}
.ls13{letter-spacing:9.000000px;}
.ls9{letter-spacing:10.500000px;}
.lsb{letter-spacing:19.500000px;}
.ls20{letter-spacing:25.104000px;}
.ls1a{letter-spacing:27.000000px;}
.lsa{letter-spacing:31.500000px;}
.ls15{letter-spacing:32.652000px;}
.ls1e{letter-spacing:34.272000px;}
.ls21{letter-spacing:37.620000px;}
.ls7{letter-spacing:52.500000px;}
.ls8{letter-spacing:89.652000px;}
.ls14{letter-spacing:91.500000px;}
.ls1{letter-spacing:349.878000px;}
.ls3{letter-spacing:355.878000px;}
.ls5{letter-spacing:582.300000px;}
.ls2{letter-spacing:601.800000px;}
.ls0{letter-spacing:1000.920000px;}
.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;}
}
.wsb{word-spacing:-18.024000px;}
.ws9{word-spacing:-17.196000px;}
.ws7{word-spacing:-17.022000px;}
.wsa{word-spacing:-16.848000px;}
.ws8{word-spacing:-16.674000px;}
.ws6{word-spacing:-16.500000px;}
.ws4{word-spacing:-16.152000px;}
.ws3{word-spacing:-15.522000px;}
.wsc{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.494000px;}
.ws2{word-spacing:-0.066000px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:0.456000px;}
._2b{margin-left:-4.488000px;}
._1b{margin-left:-3.360000px;}
._e{margin-left:-2.172000px;}
._1{margin-left:-1.104000px;}
._0{width:1.278000px;}
._c{width:3.012000px;}
._f{width:4.056000px;}
._d{width:5.148000px;}
._2e{width:6.228000px;}
._18{width:7.368000px;}
._17{width:8.646000px;}
._16{width:9.768000px;}
._41{width:10.812000px;}
._2c{width:11.856000px;}
._28{width:12.870000px;}
._1d{width:14.388000px;}
._2d{width:15.432000px;}
._13{width:18.396000px;}
._12{width:19.512000px;}
._1e{width:21.090000px;}
._2a{width:22.272000px;}
._31{width:23.922000px;}
._26{width:25.056000px;}
._27{width:26.070000px;}
._34{width:27.960000px;}
._15{width:29.736000px;}
._14{width:31.140000px;}
._23{width:32.880000px;}
._20{width:33.921000px;}
._29{width:35.046000px;}
._24{width:36.408000px;}
._25{width:38.190000px;}
._19{width:39.510000px;}
._1a{width:41.160000px;}
._3f{width:43.230000px;}
._35{width:44.916000px;}
._21{width:45.960000px;}
._22{width:47.112000px;}
._39{width:48.180000px;}
._30{width:49.896000px;}
._2f{width:50.952000px;}
._33{width:52.764000px;}
._1c{width:53.790000px;}
._3e{width:55.440000px;}
._3b{width:56.538000px;}
._3c{width:57.618000px;}
._32{width:59.064000px;}
._9{width:60.558000px;}
._8{width:61.908000px;}
._38{width:63.402000px;}
._1f{width:65.076000px;}
._37{width:66.594000px;}
._36{width:67.782000px;}
._10{width:77.790000px;}
._11{width:78.840000px;}
._3a{width:80.190000px;}
._3d{width:87.078000px;}
._4c{width:92.706000px;}
._45{width:103.464000px;}
._a{width:110.502000px;}
._b{width:111.762000px;}
._44{width:114.378000px;}
._46{width:119.394000px;}
._47{width:120.660000px;}
._4b{width:135.036000px;}
._42{width:139.806000px;}
._43{width:141.282000px;}
._4d{width:169.842000px;}
._48{width:215.928000px;}
._40{width:272.712000px;}
._49{width:427.614000px;}
._4a{width:429.066000px;}
._6{width:544.680000px;}
._7{width:575.586000px;}
._5{width:600.000000px;}
._4{width:793.548000px;}
._3{width:795.330000px;}
._2{width:1014.450000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:196.200000px;}
.y6e{bottom:196.950000px;}
.yc2{bottom:197.700000px;}
.y45{bottom:198.075000px;}
.y8e{bottom:199.200000px;}
.y32{bottom:200.700000px;}
.y9a{bottom:215.325000px;}
.y6d{bottom:215.700000px;}
.yc1{bottom:216.450000px;}
.y8d{bottom:217.950000px;}
.y44{bottom:218.700000px;}
.y31{bottom:219.825000px;}
.y99{bottom:234.075000px;}
.y6c{bottom:234.825000px;}
.yc0{bottom:235.575000px;}
.y8c{bottom:237.075000px;}
.y43{bottom:237.825000px;}
.y30{bottom:238.575000px;}
.y98{bottom:253.200000px;}
.y6b{bottom:253.575000px;}
.ybf{bottom:254.700000px;}
.y8b{bottom:255.825000px;}
.y42{bottom:256.950000px;}
.y2f{bottom:257.700000px;}
.y97{bottom:272.325000px;}
.y6a{bottom:272.700000px;}
.ybe{bottom:273.450000px;}
.y8a{bottom:274.950000px;}
.y41{bottom:275.700000px;}
.y2e{bottom:276.450000px;}
.y96{bottom:291.075000px;}
.y69{bottom:291.825000px;}
.ybd{bottom:292.575000px;}
.y89{bottom:294.075000px;}
.y40{bottom:294.825000px;}
.y2d{bottom:295.575000px;}
.y95{bottom:310.245000px;}
.y68{bottom:310.605000px;}
.ybc{bottom:311.355000px;}
.y88{bottom:312.870000px;}
.y3f{bottom:313.620000px;}
.y2c{bottom:314.730000px;}
.y94{bottom:328.995000px;}
.y67{bottom:329.745000px;}
.ybb{bottom:330.495000px;}
.y87{bottom:331.995000px;}
.y3e{bottom:332.745000px;}
.y2b{bottom:333.495000px;}
.y93{bottom:348.105000px;}
.y66{bottom:348.480000px;}
.yba{bottom:349.620000px;}
.y86{bottom:350.745000px;}
.y3d{bottom:351.855000px;}
.y2a{bottom:352.620000px;}
.y92{bottom:367.245000px;}
.y65{bottom:367.620000px;}
.yb9{bottom:368.355000px;}
.y85{bottom:369.870000px;}
.y3c{bottom:370.620000px;}
.y29{bottom:371.355000px;}
.y91{bottom:385.995000px;}
.y64{bottom:386.745000px;}
.yb8{bottom:387.495000px;}
.y84{bottom:388.980000px;}
.y3b{bottom:389.745000px;}
.y28{bottom:390.495000px;}
.y90{bottom:405.120000px;}
.yb7{bottom:406.245000px;}
.y83{bottom:407.745000px;}
.y3a{bottom:408.495000px;}
.y27{bottom:409.620000px;}
.y8f{bottom:420.120000px;}
.yc4{bottom:423.495000px;}
.y63{bottom:424.620000px;}
.yb6{bottom:425.370000px;}
.y82{bottom:426.870000px;}
.y39{bottom:427.620000px;}
.y26{bottom:428.370000px;}
.y62{bottom:443.400000px;}
.yc3{bottom:444.150000px;}
.yb5{bottom:444.525000px;}
.y81{bottom:445.650000px;}
.y38{bottom:446.775000px;}
.y25{bottom:447.525000px;}
.y61{bottom:462.525000px;}
.yb4{bottom:463.275000px;}
.y80{bottom:464.775000px;}
.y37{bottom:465.525000px;}
.y60{bottom:481.650000px;}
.yb3{bottom:482.400000px;}
.y7f{bottom:483.900000px;}
.y36{bottom:484.650000px;}
.y24{bottom:485.400000px;}
.y5f{bottom:500.400000px;}
.yb2{bottom:501.150000px;}
.y7e{bottom:502.650000px;}
.y35{bottom:503.400000px;}
.y23{bottom:504.150000px;}
.y5e{bottom:519.525000px;}
.yb1{bottom:520.275000px;}
.y22{bottom:521.775000px;}
.y34{bottom:522.525000px;}
.y5d{bottom:538.275000px;}
.yb0{bottom:539.400000px;}
.y7d{bottom:540.525000px;}
.y33{bottom:541.650000px;}
.y21{bottom:542.025000px;}
.yaf{bottom:558.150000px;}
.y7c{bottom:559.650000px;}
.y20{bottom:560.445000px;}
.y5c{bottom:576.195000px;}
.yae{bottom:577.320000px;}
.y7b{bottom:578.820000px;}
.y1f{bottom:579.570000px;}
.y5b{bottom:595.320000px;}
.yad{bottom:596.070000px;}
.y7a{bottom:597.570000px;}
.y1e{bottom:598.320000px;}
.y5a{bottom:614.445000px;}
.yac{bottom:615.195000px;}
.y79{bottom:616.695000px;}
.y1d{bottom:617.445000px;}
.y59{bottom:629.445000px;}
.yab{bottom:634.320000px;}
.y78{bottom:635.445000px;}
.y1c{bottom:636.570000px;}
.yaa{bottom:653.070000px;}
.y77{bottom:654.570000px;}
.y1b{bottom:655.320000px;}
.ya9{bottom:672.195000px;}
.y76{bottom:673.695000px;}
.y1a{bottom:674.445000px;}
.ya8{bottom:690.975000px;}
.y75{bottom:692.475000px;}
.y19{bottom:693.225000px;}
.ya7{bottom:710.100000px;}
.y74{bottom:711.600000px;}
.y18{bottom:712.350000px;}
.ya6{bottom:729.225000px;}
.y73{bottom:730.350000px;}
.y17{bottom:731.100000px;}
.ya5{bottom:747.975000px;}
.y72{bottom:749.475000px;}
.y16{bottom:750.225000px;}
.ya4{bottom:767.100000px;}
.y71{bottom:768.225000px;}
.y15{bottom:769.350000px;}
.ya3{bottom:785.850000px;}
.y70{bottom:787.350000px;}
.y14{bottom:788.100000px;}
.ya2{bottom:804.975000px;}
.y6f{bottom:806.475000px;}
.y13{bottom:807.225000px;}
.ya1{bottom:824.130000px;}
.y58{bottom:825.270000px;}
.y12{bottom:826.005000px;}
.ya0{bottom:842.895000px;}
.y57{bottom:844.380000px;}
.y11{bottom:845.130000px;}
.y9f{bottom:862.005000px;}
.y56{bottom:863.145000px;}
.y10{bottom:864.255000px;}
.y9e{bottom:880.755000px;}
.y55{bottom:882.255000px;}
.yf{bottom:883.005000px;}
.y9d{bottom:899.880000px;}
.y54{bottom:901.380000px;}
.ye{bottom:902.130000px;}
.y9c{bottom:918.630000px;}
.y53{bottom:920.130000px;}
.yd{bottom:920.880000px;}
.y52{bottom:939.255000px;}
.yc{bottom:940.005000px;}
.y51{bottom:958.050000px;}
.yb{bottom:959.175000px;}
.y50{bottom:977.175000px;}
.ya{bottom:977.925000px;}
.y4f{bottom:996.300000px;}
.y9{bottom:996.675000px;}
.y8{bottom:1014.300000px;}
.y4e{bottom:1015.050000px;}
.y7{bottom:1031.175000px;}
.y4d{bottom:1034.175000px;}
.y6{bottom:1048.800000px;}
.y4c{bottom:1052.925000px;}
.y5{bottom:1067.175000px;}
.y4b{bottom:1072.050000px;}
.y4{bottom:1085.955000px;}
.y4a{bottom:1091.205000px;}
.y3{bottom:1105.455000px;}
.y49{bottom:1109.955000px;}
.y2{bottom:1124.580000px;}
.y48{bottom:1129.080000px;}
.y47{bottom:1147.830000px;}
.y1{bottom:1148.580000px;}
.y46{bottom:1166.955000px;}
.hd{height:47.727539px;}
.h2{height:52.998047px;}
.h8{height:60.468750px;}
.h7{height:63.492188px;}
.ha{height:64.743164px;}
.h9{height:64.775391px;}
.h6{height:66.515625px;}
.hb{height:67.837600px;}
.h3{height:70.664062px;}
.h5{height:71.613281px;}
.hc{height:74.004654px;}
.h4{height:82.441406px;}
.h1{height:141.328125px;}
.h0{height:1263.000000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:60.787487px;}
.x6{left:66.412487px;}
.x5{left:82.537487px;}
.x1{left:93.412487px;}
.x7{left:114.787487px;}
.x4{left:432.944987px;}
.x9{left:434.444987px;}
.x3{left:455.444987px;}
.xa{left:487.724987px;}
.x8{left:509.474987px;}
@media print{
.v1{vertical-align:-68.000000pt;}
.v2{vertical-align:-66.826667pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.333333pt;}
.ls11{letter-spacing:-0.869333pt;}
.ls1d{letter-spacing:-0.714667pt;}
.lse{letter-spacing:-0.464000pt;}
.ls12{letter-spacing:-0.309333pt;}
.lsd{letter-spacing:-0.005333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.010667pt;}
.ls1f{letter-spacing:0.021333pt;}
.ls22{letter-spacing:0.053333pt;}
.ls18{letter-spacing:0.154667pt;}
.ls1b{letter-spacing:0.309333pt;}
.ls17{letter-spacing:0.464000pt;}
.ls19{letter-spacing:0.618667pt;}
.ls23{letter-spacing:1.024000pt;}
.ls10{letter-spacing:1.333333pt;}
.ls6{letter-spacing:1.466667pt;}
.ls16{letter-spacing:2.666667pt;}
.ls1c{letter-spacing:5.333333pt;}
.ls13{letter-spacing:8.000000pt;}
.ls9{letter-spacing:9.333333pt;}
.lsb{letter-spacing:17.333333pt;}
.ls20{letter-spacing:22.314667pt;}
.ls1a{letter-spacing:24.000000pt;}
.lsa{letter-spacing:28.000000pt;}
.ls15{letter-spacing:29.024000pt;}
.ls1e{letter-spacing:30.464000pt;}
.ls21{letter-spacing:33.440000pt;}
.ls7{letter-spacing:46.666667pt;}
.ls8{letter-spacing:79.690667pt;}
.ls14{letter-spacing:81.333333pt;}
.ls1{letter-spacing:311.002667pt;}
.ls3{letter-spacing:316.336000pt;}
.ls5{letter-spacing:517.600000pt;}
.ls2{letter-spacing:534.933333pt;}
.ls0{letter-spacing:889.706667pt;}
.wsb{word-spacing:-16.021333pt;}
.ws9{word-spacing:-15.285333pt;}
.ws7{word-spacing:-15.130667pt;}
.wsa{word-spacing:-14.976000pt;}
.ws8{word-spacing:-14.821333pt;}
.ws6{word-spacing:-14.666667pt;}
.ws4{word-spacing:-14.357333pt;}
.ws3{word-spacing:-13.797333pt;}
.wsc{word-spacing:-13.333333pt;}
.ws0{word-spacing:-11.994667pt;}
.ws2{word-spacing:-0.058667pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:0.405333pt;}
._2b{margin-left:-3.989333pt;}
._1b{margin-left:-2.986667pt;}
._e{margin-left:-1.930667pt;}
._1{margin-left:-0.981333pt;}
._0{width:1.136000pt;}
._c{width:2.677333pt;}
._f{width:3.605333pt;}
._d{width:4.576000pt;}
._2e{width:5.536000pt;}
._18{width:6.549333pt;}
._17{width:7.685333pt;}
._16{width:8.682667pt;}
._41{width:9.610667pt;}
._2c{width:10.538667pt;}
._28{width:11.440000pt;}
._1d{width:12.789333pt;}
._2d{width:13.717333pt;}
._13{width:16.352000pt;}
._12{width:17.344000pt;}
._1e{width:18.746667pt;}
._2a{width:19.797333pt;}
._31{width:21.264000pt;}
._26{width:22.272000pt;}
._27{width:23.173333pt;}
._34{width:24.853333pt;}
._15{width:26.432000pt;}
._14{width:27.680000pt;}
._23{width:29.226667pt;}
._20{width:30.152000pt;}
._29{width:31.152000pt;}
._24{width:32.362667pt;}
._25{width:33.946667pt;}
._19{width:35.120000pt;}
._1a{width:36.586667pt;}
._3f{width:38.426667pt;}
._35{width:39.925333pt;}
._21{width:40.853333pt;}
._22{width:41.877333pt;}
._39{width:42.826667pt;}
._30{width:44.352000pt;}
._2f{width:45.290667pt;}
._33{width:46.901333pt;}
._1c{width:47.813333pt;}
._3e{width:49.280000pt;}
._3b{width:50.256000pt;}
._3c{width:51.216000pt;}
._32{width:52.501333pt;}
._9{width:53.829333pt;}
._8{width:55.029333pt;}
._38{width:56.357333pt;}
._1f{width:57.845333pt;}
._37{width:59.194667pt;}
._36{width:60.250667pt;}
._10{width:69.146667pt;}
._11{width:70.080000pt;}
._3a{width:71.280000pt;}
._3d{width:77.402667pt;}
._4c{width:82.405333pt;}
._45{width:91.968000pt;}
._a{width:98.224000pt;}
._b{width:99.344000pt;}
._44{width:101.669333pt;}
._46{width:106.128000pt;}
._47{width:107.253333pt;}
._4b{width:120.032000pt;}
._42{width:124.272000pt;}
._43{width:125.584000pt;}
._4d{width:150.970667pt;}
._48{width:191.936000pt;}
._40{width:242.410667pt;}
._49{width:380.101333pt;}
._4a{width:381.392000pt;}
._6{width:484.160000pt;}
._7{width:511.632000pt;}
._5{width:533.333333pt;}
._4{width:705.376000pt;}
._3{width:706.960000pt;}
._2{width:901.733333pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:174.400000pt;}
.y6e{bottom:175.066667pt;}
.yc2{bottom:175.733333pt;}
.y45{bottom:176.066667pt;}
.y8e{bottom:177.066667pt;}
.y32{bottom:178.400000pt;}
.y9a{bottom:191.400000pt;}
.y6d{bottom:191.733333pt;}
.yc1{bottom:192.400000pt;}
.y8d{bottom:193.733333pt;}
.y44{bottom:194.400000pt;}
.y31{bottom:195.400000pt;}
.y99{bottom:208.066667pt;}
.y6c{bottom:208.733333pt;}
.yc0{bottom:209.400000pt;}
.y8c{bottom:210.733333pt;}
.y43{bottom:211.400000pt;}
.y30{bottom:212.066667pt;}
.y98{bottom:225.066667pt;}
.y6b{bottom:225.400000pt;}
.ybf{bottom:226.400000pt;}
.y8b{bottom:227.400000pt;}
.y42{bottom:228.400000pt;}
.y2f{bottom:229.066667pt;}
.y97{bottom:242.066667pt;}
.y6a{bottom:242.400000pt;}
.ybe{bottom:243.066667pt;}
.y8a{bottom:244.400000pt;}
.y41{bottom:245.066667pt;}
.y2e{bottom:245.733333pt;}
.y96{bottom:258.733333pt;}
.y69{bottom:259.400000pt;}
.ybd{bottom:260.066667pt;}
.y89{bottom:261.400000pt;}
.y40{bottom:262.066667pt;}
.y2d{bottom:262.733333pt;}
.y95{bottom:275.773333pt;}
.y68{bottom:276.093333pt;}
.ybc{bottom:276.760000pt;}
.y88{bottom:278.106667pt;}
.y3f{bottom:278.773333pt;}
.y2c{bottom:279.760000pt;}
.y94{bottom:292.440000pt;}
.y67{bottom:293.106667pt;}
.ybb{bottom:293.773333pt;}
.y87{bottom:295.106667pt;}
.y3e{bottom:295.773333pt;}
.y2b{bottom:296.440000pt;}
.y93{bottom:309.426667pt;}
.y66{bottom:309.760000pt;}
.yba{bottom:310.773333pt;}
.y86{bottom:311.773333pt;}
.y3d{bottom:312.760000pt;}
.y2a{bottom:313.440000pt;}
.y92{bottom:326.440000pt;}
.y65{bottom:326.773333pt;}
.yb9{bottom:327.426667pt;}
.y85{bottom:328.773333pt;}
.y3c{bottom:329.440000pt;}
.y29{bottom:330.093333pt;}
.y91{bottom:343.106667pt;}
.y64{bottom:343.773333pt;}
.yb8{bottom:344.440000pt;}
.y84{bottom:345.760000pt;}
.y3b{bottom:346.440000pt;}
.y28{bottom:347.106667pt;}
.y90{bottom:360.106667pt;}
.yb7{bottom:361.106667pt;}
.y83{bottom:362.440000pt;}
.y3a{bottom:363.106667pt;}
.y27{bottom:364.106667pt;}
.y8f{bottom:373.440000pt;}
.yc4{bottom:376.440000pt;}
.y63{bottom:377.440000pt;}
.yb6{bottom:378.106667pt;}
.y82{bottom:379.440000pt;}
.y39{bottom:380.106667pt;}
.y26{bottom:380.773333pt;}
.y62{bottom:394.133333pt;}
.yc3{bottom:394.800000pt;}
.yb5{bottom:395.133333pt;}
.y81{bottom:396.133333pt;}
.y38{bottom:397.133333pt;}
.y25{bottom:397.800000pt;}
.y61{bottom:411.133333pt;}
.yb4{bottom:411.800000pt;}
.y80{bottom:413.133333pt;}
.y37{bottom:413.800000pt;}
.y60{bottom:428.133333pt;}
.yb3{bottom:428.800000pt;}
.y7f{bottom:430.133333pt;}
.y36{bottom:430.800000pt;}
.y24{bottom:431.466667pt;}
.y5f{bottom:444.800000pt;}
.yb2{bottom:445.466667pt;}
.y7e{bottom:446.800000pt;}
.y35{bottom:447.466667pt;}
.y23{bottom:448.133333pt;}
.y5e{bottom:461.800000pt;}
.yb1{bottom:462.466667pt;}
.y22{bottom:463.800000pt;}
.y34{bottom:464.466667pt;}
.y5d{bottom:478.466667pt;}
.yb0{bottom:479.466667pt;}
.y7d{bottom:480.466667pt;}
.y33{bottom:481.466667pt;}
.y21{bottom:481.800000pt;}
.yaf{bottom:496.133333pt;}
.y7c{bottom:497.466667pt;}
.y20{bottom:498.173333pt;}
.y5c{bottom:512.173333pt;}
.yae{bottom:513.173333pt;}
.y7b{bottom:514.506667pt;}
.y1f{bottom:515.173333pt;}
.y5b{bottom:529.173333pt;}
.yad{bottom:529.840000pt;}
.y7a{bottom:531.173333pt;}
.y1e{bottom:531.840000pt;}
.y5a{bottom:546.173333pt;}
.yac{bottom:546.840000pt;}
.y79{bottom:548.173333pt;}
.y1d{bottom:548.840000pt;}
.y59{bottom:559.506667pt;}
.yab{bottom:563.840000pt;}
.y78{bottom:564.840000pt;}
.y1c{bottom:565.840000pt;}
.yaa{bottom:580.506667pt;}
.y77{bottom:581.840000pt;}
.y1b{bottom:582.506667pt;}
.ya9{bottom:597.506667pt;}
.y76{bottom:598.840000pt;}
.y1a{bottom:599.506667pt;}
.ya8{bottom:614.200000pt;}
.y75{bottom:615.533333pt;}
.y19{bottom:616.200000pt;}
.ya7{bottom:631.200000pt;}
.y74{bottom:632.533333pt;}
.y18{bottom:633.200000pt;}
.ya6{bottom:648.200000pt;}
.y73{bottom:649.200000pt;}
.y17{bottom:649.866667pt;}
.ya5{bottom:664.866667pt;}
.y72{bottom:666.200000pt;}
.y16{bottom:666.866667pt;}
.ya4{bottom:681.866667pt;}
.y71{bottom:682.866667pt;}
.y15{bottom:683.866667pt;}
.ya3{bottom:698.533333pt;}
.y70{bottom:699.866667pt;}
.y14{bottom:700.533333pt;}
.ya2{bottom:715.533333pt;}
.y6f{bottom:716.866667pt;}
.y13{bottom:717.533333pt;}
.ya1{bottom:732.560000pt;}
.y58{bottom:733.573333pt;}
.y12{bottom:734.226667pt;}
.ya0{bottom:749.240000pt;}
.y57{bottom:750.560000pt;}
.y11{bottom:751.226667pt;}
.y9f{bottom:766.226667pt;}
.y56{bottom:767.240000pt;}
.y10{bottom:768.226667pt;}
.y9e{bottom:782.893333pt;}
.y55{bottom:784.226667pt;}
.yf{bottom:784.893333pt;}
.y9d{bottom:799.893333pt;}
.y54{bottom:801.226667pt;}
.ye{bottom:801.893333pt;}
.y9c{bottom:816.560000pt;}
.y53{bottom:817.893333pt;}
.yd{bottom:818.560000pt;}
.y52{bottom:834.893333pt;}
.yc{bottom:835.560000pt;}
.y51{bottom:851.600000pt;}
.yb{bottom:852.600000pt;}
.y50{bottom:868.600000pt;}
.ya{bottom:869.266667pt;}
.y4f{bottom:885.600000pt;}
.y9{bottom:885.933333pt;}
.y8{bottom:901.600000pt;}
.y4e{bottom:902.266667pt;}
.y7{bottom:916.600000pt;}
.y4d{bottom:919.266667pt;}
.y6{bottom:932.266667pt;}
.y4c{bottom:935.933333pt;}
.y5{bottom:948.600000pt;}
.y4b{bottom:952.933333pt;}
.y4{bottom:965.293333pt;}
.y4a{bottom:969.960000pt;}
.y3{bottom:982.626667pt;}
.y49{bottom:986.626667pt;}
.y2{bottom:999.626667pt;}
.y48{bottom:1003.626667pt;}
.y47{bottom:1020.293333pt;}
.y1{bottom:1020.960000pt;}
.y46{bottom:1037.293333pt;}
.hd{height:42.424479pt;}
.h2{height:47.109375pt;}
.h8{height:53.750000pt;}
.h7{height:56.437500pt;}
.ha{height:57.549479pt;}
.h9{height:57.578125pt;}
.h6{height:59.125000pt;}
.hb{height:60.300089pt;}
.h3{height:62.812500pt;}
.h5{height:63.656250pt;}
.hc{height:65.781915pt;}
.h4{height:73.281250pt;}
.h1{height:125.625000pt;}
.h0{height:1122.666667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.033322pt;}
.x6{left:59.033322pt;}
.x5{left:73.366655pt;}
.x1{left:83.033322pt;}
.x7{left:102.033322pt;}
.x4{left:384.839988pt;}
.x9{left:386.173322pt;}
.x3{left:404.839988pt;}
.xa{left:433.533322pt;}
.x8{left:452.866655pt;}
}




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