
    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_c54205ce25d4cb3a751d0111.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_597e56ea39b22a302dd43817.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690430;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_9820c613ff11d3be6508b6ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_6fd398506264eefbc1276a42.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_baafda59afc7d58d30d06718.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892578;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_26cdae7fb765c95132a4ea7c.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v2{vertical-align:-43.200027px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:42.480009px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.094821px;}
.ls0{letter-spacing:0.606186px;}
.ls3{letter-spacing:187.504290px;}
.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;}
}
.ws4{word-spacing:-72.955800px;}
.ws5{word-spacing:-59.445450px;}
.ws0{word-spacing:-28.202851px;}
.ws1{word-spacing:-21.785514px;}
.wsa{word-spacing:-19.758936px;}
.ws9{word-spacing:-19.757361px;}
.wsb{word-spacing:-16.887938px;}
.ws2{word-spacing:-15.536925px;}
.ws7{word-spacing:-15.535688px;}
.ws3{word-spacing:-14.861363px;}
.ws8{word-spacing:-14.860238px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-2.252016px;}
._1{margin-left:-1.121364px;}
._0{width:1.345637px;}
._2{width:2.574942px;}
._a{width:3.891792px;}
._6{width:5.265373px;}
._5{width:6.474782px;}
._4{width:7.943725px;}
._f{width:9.178144px;}
._7{width:10.204412px;}
._8{width:11.269708px;}
._9{width:12.736461px;}
._e{width:14.522580px;}
._17{width:15.544341px;}
._b{width:16.894707px;}
._c{width:18.444778px;}
._15{width:21.032030px;}
._14{width:22.168822px;}
._11{width:24.590411px;}
._10{width:25.595169px;}
._d{width:28.332589px;}
._12{width:31.117864px;}
._13{width:32.500658px;}
._16{width:45.639515px;}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:50.663700px;}
.fsa{font-size:56.063700px;}
.fs0{font-size:56.068200px;}
.fse{font-size:59.440950px;}
.fs7{font-size:59.445450px;}
.fsb{font-size:62.142750px;}
.fs6{font-size:62.147700px;}
.fs8{font-size:64.849950px;}
.fsc{font-size:67.546800px;}
.fs1{font-size:67.551750px;}
.fs5{font-size:72.955800px;}
.fsd{font-size:79.029445px;}
.fs9{font-size:79.035746px;}
.fs3{font-size:87.142055px;}
.fs4{font-size:89.843850px;}
.fs2{font-size:112.811405px;}
.y0{bottom:0.000000px;}
.y74{bottom:66.059967px;}
.y73{bottom:83.700027px;}
.y2{bottom:83.879998px;}
.y37{bottom:101.700027px;}
.yae{bottom:108.539977px;}
.y35{bottom:114.659981px;}
.y71{bottom:122.220017px;}
.yad{bottom:126.360008px;}
.y34{bottom:132.480011px;}
.y70{bottom:140.039977px;}
.yac{bottom:144.360008px;}
.y33{bottom:150.299973px;}
.y6f{bottom:157.860008px;}
.yab{bottom:162.000000px;}
.y32{bottom:168.120002px;}
.y6e{bottom:175.679970px;}
.yaa{bottom:180.000000px;}
.y113{bottom:180.179970px;}
.y31{bottom:185.940033px;}
.y6d{bottom:193.500000px;}
.y112{bottom:195.120002px;}
.ya9{bottom:197.820030px;}
.y30{bottom:203.759994px;}
.y6c{bottom:211.320030px;}
.ya8{bottom:215.639992px;}
.y2f{bottom:221.759994px;}
.y111{bottom:227.700027px;}
.y6b{bottom:229.320030px;}
.ya7{bottom:233.460022px;}
.y2e{bottom:239.399986px;}
.y110{bottom:243.899986px;}
.y6a{bottom:246.960022px;}
.ya6{bottom:251.279983px;}
.y2d{bottom:257.220017px;}
.ydd{bottom:259.919975px;}
.y10f{bottom:260.100013px;}
.y69{bottom:264.779983px;}
.ya5{bottom:269.100013px;}
.y2c{bottom:275.220017px;}
.y10e{bottom:276.120002px;}
.ydc{bottom:279.539977px;}
.y68{bottom:282.600013px;}
.ya4{bottom:286.919975px;}
.y10d{bottom:292.500000px;}
.y2b{bottom:293.580025px;}
.ydb{bottom:295.200027px;}
.y67{bottom:299.519989px;}
.yda{bottom:304.019989px;}
.ya3{bottom:304.919975px;}
.y10c{bottom:308.159981px;}
.y2a{bottom:313.019989px;}
.yd9{bottom:315.720017px;}
.y66{bottom:321.480011px;}
.ya2{bottom:322.379998px;}
.y10b{bottom:323.279983px;}
.y29{bottom:335.700027px;}
.yd8{bottom:337.500000px;}
.y65{bottom:337.860008px;}
.ya1{bottom:338.940033px;}
.y10a{bottom:339.480011px;}
.y28{bottom:354.600013px;}
.yd7{bottom:355.500000px;}
.y64{bottom:355.679970px;}
.ya0{bottom:356.399986px;}
.y109{bottom:371.879998px;}
.y27{bottom:372.419975px;}
.yd6{bottom:373.139992px;}
.y63{bottom:373.500000px;}
.y108{bottom:387.360008px;}
.yd5{bottom:389.519989px;}
.y26{bottom:390.240006px;}
.y9f{bottom:390.600013px;}
.y62{bottom:391.139992px;}
.y107{bottom:402.659981px;}
.yd4{bottom:407.340019px;}
.y61{bottom:407.519989px;}
.y25{bottom:408.240006px;}
.y9e{bottom:408.600013px;}
.y106{bottom:422.100013px;}
.yd3{bottom:425.159981px;}
.y60{bottom:425.340019px;}
.y24{bottom:425.879998px;}
.y9d{bottom:426.419975px;}
.y105{bottom:439.740006px;}
.yd2{bottom:442.980011px;}
.y5f{bottom:443.159981px;}
.y23{bottom:443.700027px;}
.y9c{bottom:444.240006px;}
.y104{bottom:456.120002px;}
.y5e{bottom:459.360008px;}
.yd1{bottom:460.799973px;}
.y22{bottom:461.700027px;}
.y9b{bottom:461.879998px;}
.y103{bottom:472.320030px;}
.y5d{bottom:477.179970px;}
.y9a{bottom:478.259994px;}
.yd0{bottom:478.620002px;}
.y21{bottom:479.340019px;}
.y102{bottom:488.340019px;}
.y5c{bottom:493.559967px;}
.y99{bottom:496.080025px;}
.ycf{bottom:496.620002px;}
.y20{bottom:497.340019px;}
.y101{bottom:504.539977px;}
.y5b{bottom:511.200027px;}
.y98{bottom:513.899986px;}
.yce{bottom:514.259994px;}
.y1f{bottom:515.700027px;}
.y100{bottom:520.919975px;}
.y5a{bottom:529.019989px;}
.y97{bottom:531.720017px;}
.ycd{bottom:532.080025px;}
.y1e{bottom:535.139992px;}
.yff{bottom:537.120002px;}
.y59{bottom:545.220017px;}
.y96{bottom:549.720017px;}
.ycc{bottom:550.080025px;}
.yfe{bottom:553.320030px;}
.y1d{bottom:557.820030px;}
.y58{bottom:559.799973px;}
.y57{bottom:565.200027px;}
.y95{bottom:567.360008px;}
.ycb{bottom:567.720017px;}
.yfd{bottom:569.519989px;}
.y1c{bottom:576.720017px;}
.y56{bottom:582.659981px;}
.y94{bottom:585.179970px;}
.yca{bottom:585.720017px;}
.y1b{bottom:592.740006px;}
.y55{bottom:601.200027px;}
.yfc{bottom:601.919975px;}
.y93{bottom:603.179970px;}
.yc9{bottom:603.539977px;}
.y1a{bottom:609.659981px;}
.yfb{bottom:618.120002px;}
.y92{bottom:621.000000px;}
.yc8{bottom:621.180004px;}
.y54{bottom:622.439999px;}
.y19{bottom:628.740006px;}
.yfa{bottom:634.319995px;}
.y53{bottom:637.740006px;}
.y91{bottom:638.819995px;}
.yc7{bottom:639.180004px;}
.y18{bottom:650.339985px;}
.yf9{bottom:650.699993px;}
.y52{bottom:654.839985px;}
.y90{bottom:656.639992px;}
.yc6{bottom:657.000000px;}
.yf8{bottom:666.899986px;}
.y17{bottom:669.060001px;}
.y51{bottom:671.579990px;}
.yc5{bottom:674.819995px;}
.y8f{bottom:679.680004px;}
.yf7{bottom:682.920010px;}
.y16{bottom:685.259994px;}
.y50{bottom:688.680004px;}
.yc4{bottom:692.639992px;}
.y8e{bottom:698.399986px;}
.yf6{bottom:699.120002px;}
.y15{bottom:701.459988px;}
.y4f{bottom:709.560001px;}
.yc3{bottom:710.459988px;}
.yf5{bottom:715.500000px;}
.y8d{bottom:716.220017px;}
.y14{bottom:717.660015px;}
.y4e{bottom:723.600013px;}
.yc2{bottom:728.279983px;}
.yf4{bottom:731.699993px;}
.y13{bottom:733.860008px;}
.y4d{bottom:737.639992px;}
.y8c{bottom:739.620002px;}
.yc1{bottom:746.100013px;}
.yf3{bottom:747.899986px;}
.y12{bottom:750.060001px;}
.y4c{bottom:751.860008px;}
.y8b{bottom:753.660015px;}
.yf2{bottom:763.920010px;}
.yc0{bottom:764.100013px;}
.y4b{bottom:765.899986px;}
.y11{bottom:766.980011px;}
.y8a{bottom:767.879998px;}
.y4a{bottom:779.939999px;}
.yf1{bottom:780.300007px;}
.ybf{bottom:781.740006px;}
.y89{bottom:781.920010px;}
.y10{bottom:786.060001px;}
.y49{bottom:794.160015px;}
.y88{bottom:795.959988px;}
.yf0{bottom:796.500000px;}
.ybe{bottom:799.560001px;}
.yf{bottom:807.480011px;}
.y48{bottom:808.199993px;}
.y87{bottom:810.180004px;}
.yef{bottom:812.699993px;}
.ybd{bottom:817.560001px;}
.y47{bottom:822.240006px;}
.y86{bottom:824.220017px;}
.ye{bottom:826.920010px;}
.yee{bottom:828.899986px;}
.ybc{bottom:835.199993px;}
.y46{bottom:836.459988px;}
.y85{bottom:838.259994px;}
.yed{bottom:845.279983px;}
.yd{bottom:846.180004px;}
.y45{bottom:850.500000px;}
.y84{bottom:852.480011px;}
.ybb{bottom:853.199993px;}
.yec{bottom:861.300007px;}
.y44{bottom:864.540012px;}
.yc{bottom:864.899987px;}
.y83{bottom:866.519989px;}
.yba{bottom:871.019989px;}
.yeb{bottom:877.500000px;}
.y43{bottom:878.759994px;}
.y82{bottom:880.560001px;}
.yb9{bottom:888.839985px;}
.y42{bottom:892.800007px;}
.yea{bottom:893.699993px;}
.y81{bottom:894.779983px;}
.yb{bottom:895.500000px;}
.yb8{bottom:906.479994px;}
.y41{bottom:906.840002px;}
.y80{bottom:908.819996px;}
.ya{bottom:909.719999px;}
.ye9{bottom:910.080008px;}
.y40{bottom:921.060001px;}
.y7f{bottom:922.860008px;}
.yb7{bottom:923.400003px;}
.ye8{bottom:926.280001px;}
.y9{bottom:930.599997px;}
.y3f{bottom:935.099997px;}
.y7e{bottom:937.080008px;}
.ye7{bottom:942.479994px;}
.yb6{bottom:945.360008px;}
.y3e{bottom:949.139992px;}
.y7d{bottom:951.120002px;}
.y8{bottom:956.159998px;}
.ye6{bottom:958.500000px;}
.yb5{bottom:961.740006px;}
.y3d{bottom:963.360008px;}
.y7c{bottom:965.159998px;}
.y7{bottom:974.159998px;}
.ye5{bottom:974.879998px;}
.y3c{bottom:977.400003px;}
.y7b{bottom:979.379998px;}
.yb4{bottom:979.560001px;}
.ye4{bottom:991.080008px;}
.y6{bottom:991.439999px;}
.y7a{bottom:993.419992px;}
.yb3{bottom:997.560001px;}
.y3b{bottom:1005.659998px;}
.ye3{bottom:1007.280001px;}
.y79{bottom:1007.460004px;}
.y5{bottom:1011.780001px;}
.yb2{bottom:1015.199993px;}
.y3a{bottom:1019.699993px;}
.y78{bottom:1021.680004px;}
.y4{bottom:1022.939999px;}
.ye2{bottom:1023.479994px;}
.yb1{bottom:1033.020006px;}
.y39{bottom:1034.819996px;}
.y77{bottom:1035.719999px;}
.ye1{bottom:1037.520006px;}
.ye0{bottom:1048.319996px;}
.y76{bottom:1050.840002px;}
.yb0{bottom:1051.019998px;}
.y3{bottom:1051.739997px;}
.y38{bottom:1052.640000px;}
.y75{bottom:1068.659998px;}
.yaf{bottom:1068.840002px;}
.ydf{bottom:1070.459997px;}
.y36{bottom:1080.000000px;}
.y1{bottom:1080.180004px;}
.y72{bottom:1086.480002px;}
.yde{bottom:1086.659998px;}
.h13{height:35.375533px;}
.hc{height:39.146041px;}
.h1{height:39.149183px;}
.h9{height:40.983445px;}
.h12{height:41.504179px;}
.h6{height:41.507321px;}
.h11{height:43.274637px;}
.hd{height:43.390690px;}
.hb{height:43.394146px;}
.h10{height:45.241621px;}
.h7{height:45.280971px;}
.he{height:47.164025px;}
.h2{height:47.167482px;}
.hf{height:54.448510px;}
.ha{height:54.452850px;}
.h8{height:54.966211px;}
.h4{height:60.846396px;}
.h3{height:76.401083px;}
.h5{height:85.874155px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:158.939999px;}
.xf{left:170.280001px;}
.x3{left:172.979994px;}
.xe{left:174.419992px;}
.x7{left:181.080008px;}
.xb{left:184.319996px;}
.x1{left:189.000000px;}
.x11{left:190.259994px;}
.x8{left:213.840002px;}
.x4{left:304.019989px;}
.x5{left:328.139992px;}
.xa{left:333.000000px;}
.xd{left:354.779983px;}
.x6{left:387.360008px;}
.x10{left:737.100014px;}
.xc{left:738.360008px;}
.x9{left:747.539978px;}
@media print{
.v2{vertical-align:-38.400024pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:37.760008pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.084285pt;}
.ls0{letter-spacing:0.538832pt;}
.ls3{letter-spacing:166.670480pt;}
.ws4{word-spacing:-64.849600pt;}
.ws5{word-spacing:-52.840400pt;}
.ws0{word-spacing:-25.069201pt;}
.ws1{word-spacing:-19.364901pt;}
.wsa{word-spacing:-17.563499pt;}
.ws9{word-spacing:-17.562099pt;}
.wsb{word-spacing:-15.011500pt;}
.ws2{word-spacing:-13.810600pt;}
.ws7{word-spacing:-13.809500pt;}
.ws3{word-spacing:-13.210100pt;}
.ws8{word-spacing:-13.209100pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-2.001792pt;}
._1{margin-left:-0.996768pt;}
._0{width:1.196122pt;}
._2{width:2.288837pt;}
._a{width:3.459371pt;}
._6{width:4.680332pt;}
._5{width:5.755362pt;}
._4{width:7.061089pt;}
._f{width:8.158351pt;}
._7{width:9.070589pt;}
._8{width:10.017518pt;}
._9{width:11.321299pt;}
._e{width:12.908960pt;}
._17{width:13.817192pt;}
._b{width:15.017517pt;}
._c{width:16.395358pt;}
._15{width:18.695138pt;}
._14{width:19.705620pt;}
._11{width:21.858143pt;}
._10{width:22.751262pt;}
._d{width:25.184523pt;}
._12{width:27.660323pt;}
._13{width:28.889474pt;}
._16{width:40.568458pt;}
.fsf{font-size:45.034400pt;}
.fsa{font-size:49.834400pt;}
.fs0{font-size:49.838400pt;}
.fse{font-size:52.836400pt;}
.fs7{font-size:52.840400pt;}
.fsb{font-size:55.238000pt;}
.fs6{font-size:55.242400pt;}
.fs8{font-size:57.644400pt;}
.fsc{font-size:60.041600pt;}
.fs1{font-size:60.046000pt;}
.fs5{font-size:64.849600pt;}
.fsd{font-size:70.248396pt;}
.fs9{font-size:70.253996pt;}
.fs3{font-size:77.459604pt;}
.fs4{font-size:79.861200pt;}
.fs2{font-size:100.276804pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:58.719971pt;}
.y73{bottom:74.400024pt;}
.y2{bottom:74.559998pt;}
.y37{bottom:90.400024pt;}
.yae{bottom:96.479980pt;}
.y35{bottom:101.919983pt;}
.y71{bottom:108.640015pt;}
.yad{bottom:112.320007pt;}
.y34{bottom:117.760010pt;}
.y70{bottom:124.479980pt;}
.yac{bottom:128.320007pt;}
.y33{bottom:133.599976pt;}
.y6f{bottom:140.320007pt;}
.yab{bottom:144.000000pt;}
.y32{bottom:149.440002pt;}
.y6e{bottom:156.159973pt;}
.yaa{bottom:160.000000pt;}
.y113{bottom:160.159973pt;}
.y31{bottom:165.280029pt;}
.y6d{bottom:172.000000pt;}
.y112{bottom:173.440002pt;}
.ya9{bottom:175.840027pt;}
.y30{bottom:181.119995pt;}
.y6c{bottom:187.840027pt;}
.ya8{bottom:191.679993pt;}
.y2f{bottom:197.119995pt;}
.y111{bottom:202.400024pt;}
.y6b{bottom:203.840027pt;}
.ya7{bottom:207.520020pt;}
.y2e{bottom:212.799988pt;}
.y110{bottom:216.799988pt;}
.y6a{bottom:219.520020pt;}
.ya6{bottom:223.359985pt;}
.y2d{bottom:228.640015pt;}
.ydd{bottom:231.039978pt;}
.y10f{bottom:231.200012pt;}
.y69{bottom:235.359985pt;}
.ya5{bottom:239.200012pt;}
.y2c{bottom:244.640015pt;}
.y10e{bottom:245.440002pt;}
.ydc{bottom:248.479980pt;}
.y68{bottom:251.200012pt;}
.ya4{bottom:255.039978pt;}
.y10d{bottom:260.000000pt;}
.y2b{bottom:260.960022pt;}
.ydb{bottom:262.400024pt;}
.y67{bottom:266.239990pt;}
.yda{bottom:270.239990pt;}
.ya3{bottom:271.039978pt;}
.y10c{bottom:273.919983pt;}
.y2a{bottom:278.239990pt;}
.yd9{bottom:280.640015pt;}
.y66{bottom:285.760010pt;}
.ya2{bottom:286.559998pt;}
.y10b{bottom:287.359985pt;}
.y29{bottom:298.400024pt;}
.yd8{bottom:300.000000pt;}
.y65{bottom:300.320007pt;}
.ya1{bottom:301.280029pt;}
.y10a{bottom:301.760010pt;}
.y28{bottom:315.200012pt;}
.yd7{bottom:316.000000pt;}
.y64{bottom:316.159973pt;}
.ya0{bottom:316.799988pt;}
.y109{bottom:330.559998pt;}
.y27{bottom:331.039978pt;}
.yd6{bottom:331.679993pt;}
.y63{bottom:332.000000pt;}
.y108{bottom:344.320007pt;}
.yd5{bottom:346.239990pt;}
.y26{bottom:346.880005pt;}
.y9f{bottom:347.200012pt;}
.y62{bottom:347.679993pt;}
.y107{bottom:357.919983pt;}
.yd4{bottom:362.080017pt;}
.y61{bottom:362.239990pt;}
.y25{bottom:362.880005pt;}
.y9e{bottom:363.200012pt;}
.y106{bottom:375.200012pt;}
.yd3{bottom:377.919983pt;}
.y60{bottom:378.080017pt;}
.y24{bottom:378.559998pt;}
.y9d{bottom:379.039978pt;}
.y105{bottom:390.880005pt;}
.yd2{bottom:393.760010pt;}
.y5f{bottom:393.919983pt;}
.y23{bottom:394.400024pt;}
.y9c{bottom:394.880005pt;}
.y104{bottom:405.440002pt;}
.y5e{bottom:408.320007pt;}
.yd1{bottom:409.599976pt;}
.y22{bottom:410.400024pt;}
.y9b{bottom:410.559998pt;}
.y103{bottom:419.840027pt;}
.y5d{bottom:424.159973pt;}
.y9a{bottom:425.119995pt;}
.yd0{bottom:425.440002pt;}
.y21{bottom:426.080017pt;}
.y102{bottom:434.080017pt;}
.y5c{bottom:438.719971pt;}
.y99{bottom:440.960022pt;}
.ycf{bottom:441.440002pt;}
.y20{bottom:442.080017pt;}
.y101{bottom:448.479980pt;}
.y5b{bottom:454.400024pt;}
.y98{bottom:456.799988pt;}
.yce{bottom:457.119995pt;}
.y1f{bottom:458.400024pt;}
.y100{bottom:463.039978pt;}
.y5a{bottom:470.239990pt;}
.y97{bottom:472.640015pt;}
.ycd{bottom:472.960022pt;}
.y1e{bottom:475.679993pt;}
.yff{bottom:477.440002pt;}
.y59{bottom:484.640015pt;}
.y96{bottom:488.640015pt;}
.ycc{bottom:488.960022pt;}
.yfe{bottom:491.840027pt;}
.y1d{bottom:495.840027pt;}
.y58{bottom:497.599976pt;}
.y57{bottom:502.400024pt;}
.y95{bottom:504.320007pt;}
.ycb{bottom:504.640015pt;}
.yfd{bottom:506.239990pt;}
.y1c{bottom:512.640015pt;}
.y56{bottom:517.919983pt;}
.y94{bottom:520.159973pt;}
.yca{bottom:520.640015pt;}
.y1b{bottom:526.880005pt;}
.y55{bottom:534.400024pt;}
.yfc{bottom:535.039978pt;}
.y93{bottom:536.159973pt;}
.yc9{bottom:536.479980pt;}
.y1a{bottom:541.919983pt;}
.yfb{bottom:549.440002pt;}
.y92{bottom:552.000000pt;}
.yc8{bottom:552.160004pt;}
.y54{bottom:553.279999pt;}
.y19{bottom:558.880005pt;}
.yfa{bottom:563.839996pt;}
.y53{bottom:566.880005pt;}
.y91{bottom:567.839996pt;}
.yc7{bottom:568.160004pt;}
.y18{bottom:578.079987pt;}
.yf9{bottom:578.399994pt;}
.y52{bottom:582.079987pt;}
.y90{bottom:583.679993pt;}
.yc6{bottom:584.000000pt;}
.yf8{bottom:592.799988pt;}
.y17{bottom:594.720001pt;}
.y51{bottom:596.959991pt;}
.yc5{bottom:599.839996pt;}
.y8f{bottom:604.160004pt;}
.yf7{bottom:607.040009pt;}
.y16{bottom:609.119995pt;}
.y50{bottom:612.160004pt;}
.yc4{bottom:615.679993pt;}
.y8e{bottom:620.799988pt;}
.yf6{bottom:621.440002pt;}
.y15{bottom:623.519989pt;}
.y4f{bottom:630.720001pt;}
.yc3{bottom:631.519989pt;}
.yf5{bottom:636.000000pt;}
.y8d{bottom:636.640015pt;}
.y14{bottom:637.920013pt;}
.y4e{bottom:643.200012pt;}
.yc2{bottom:647.359985pt;}
.yf4{bottom:650.399994pt;}
.y13{bottom:652.320007pt;}
.y4d{bottom:655.679993pt;}
.y8c{bottom:657.440002pt;}
.yc1{bottom:663.200012pt;}
.yf3{bottom:664.799988pt;}
.y12{bottom:666.720001pt;}
.y4c{bottom:668.320007pt;}
.y8b{bottom:669.920013pt;}
.yf2{bottom:679.040009pt;}
.yc0{bottom:679.200012pt;}
.y4b{bottom:680.799988pt;}
.y11{bottom:681.760010pt;}
.y8a{bottom:682.559998pt;}
.y4a{bottom:693.279999pt;}
.yf1{bottom:693.600006pt;}
.ybf{bottom:694.880005pt;}
.y89{bottom:695.040009pt;}
.y10{bottom:698.720001pt;}
.y49{bottom:705.920013pt;}
.y88{bottom:707.519989pt;}
.yf0{bottom:708.000000pt;}
.ybe{bottom:710.720001pt;}
.yf{bottom:717.760010pt;}
.y48{bottom:718.399994pt;}
.y87{bottom:720.160004pt;}
.yef{bottom:722.399994pt;}
.ybd{bottom:726.720001pt;}
.y47{bottom:730.880005pt;}
.y86{bottom:732.640015pt;}
.ye{bottom:735.040009pt;}
.yee{bottom:736.799988pt;}
.ybc{bottom:742.399994pt;}
.y46{bottom:743.519989pt;}
.y85{bottom:745.119995pt;}
.yed{bottom:751.359985pt;}
.yd{bottom:752.160004pt;}
.y45{bottom:756.000000pt;}
.y84{bottom:757.760010pt;}
.ybb{bottom:758.399994pt;}
.yec{bottom:765.600006pt;}
.y44{bottom:768.480011pt;}
.yc{bottom:768.799988pt;}
.y83{bottom:770.239990pt;}
.yba{bottom:774.239990pt;}
.yeb{bottom:780.000000pt;}
.y43{bottom:781.119995pt;}
.y82{bottom:782.720001pt;}
.yb9{bottom:790.079987pt;}
.y42{bottom:793.600006pt;}
.yea{bottom:794.399994pt;}
.y81{bottom:795.359985pt;}
.yb{bottom:796.000000pt;}
.yb8{bottom:805.759995pt;}
.y41{bottom:806.080002pt;}
.y80{bottom:807.839996pt;}
.ya{bottom:808.639999pt;}
.ye9{bottom:808.960007pt;}
.y40{bottom:818.720001pt;}
.y7f{bottom:820.320007pt;}
.yb7{bottom:820.800003pt;}
.ye8{bottom:823.360001pt;}
.y9{bottom:827.199997pt;}
.y3f{bottom:831.199997pt;}
.y7e{bottom:832.960007pt;}
.ye7{bottom:837.759995pt;}
.yb6{bottom:840.320007pt;}
.y3e{bottom:843.679993pt;}
.y7d{bottom:845.440002pt;}
.y8{bottom:849.919998pt;}
.ye6{bottom:852.000000pt;}
.yb5{bottom:854.880005pt;}
.y3d{bottom:856.320007pt;}
.y7c{bottom:857.919998pt;}
.y7{bottom:865.919998pt;}
.ye5{bottom:866.559998pt;}
.y3c{bottom:868.800003pt;}
.y7b{bottom:870.559998pt;}
.yb4{bottom:870.720001pt;}
.ye4{bottom:880.960007pt;}
.y6{bottom:881.279999pt;}
.y7a{bottom:883.039993pt;}
.yb3{bottom:886.720001pt;}
.y3b{bottom:893.919998pt;}
.ye3{bottom:895.360001pt;}
.y79{bottom:895.520004pt;}
.y5{bottom:899.360001pt;}
.yb2{bottom:902.399994pt;}
.y3a{bottom:906.399994pt;}
.y78{bottom:908.160004pt;}
.y4{bottom:909.279999pt;}
.ye2{bottom:909.759995pt;}
.yb1{bottom:918.240005pt;}
.y39{bottom:919.839996pt;}
.y77{bottom:920.639999pt;}
.ye1{bottom:922.240005pt;}
.ye0{bottom:931.839996pt;}
.y76{bottom:934.080002pt;}
.yb0{bottom:934.239998pt;}
.y3{bottom:934.879997pt;}
.y38{bottom:935.680000pt;}
.y75{bottom:949.919998pt;}
.yaf{bottom:950.080002pt;}
.ydf{bottom:951.519997pt;}
.y36{bottom:960.000000pt;}
.y1{bottom:960.160004pt;}
.y72{bottom:965.760002pt;}
.yde{bottom:965.919998pt;}
.h13{height:31.444918pt;}
.hc{height:34.796480pt;}
.h1{height:34.799273pt;}
.h9{height:36.429729pt;}
.h12{height:36.892604pt;}
.h6{height:36.895396pt;}
.h11{height:38.466344pt;}
.hd{height:38.569502pt;}
.hb{height:38.572574pt;}
.h10{height:40.214774pt;}
.h7{height:40.249752pt;}
.he{height:41.923578pt;}
.h2{height:41.926650pt;}
.hf{height:48.398675pt;}
.ha{height:48.402533pt;}
.h8{height:48.858854pt;}
.h4{height:54.085686pt;}
.h3{height:67.912074pt;}
.h5{height:76.332582pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:141.279999pt;}
.xf{left:151.360001pt;}
.x3{left:153.759995pt;}
.xe{left:155.039993pt;}
.x7{left:160.960007pt;}
.xb{left:163.839996pt;}
.x1{left:168.000000pt;}
.x11{left:169.119995pt;}
.x8{left:190.080002pt;}
.x4{left:270.239990pt;}
.x5{left:291.679993pt;}
.xa{left:296.000000pt;}
.xd{left:315.359985pt;}
.x6{left:344.320007pt;}
.x10{left:655.200012pt;}
.xc{left:656.320007pt;}
.x9{left:664.479980pt;}
}




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