
    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_78614b04dfb37f176fc28e1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_01d6ca6da11a4e7da6fd0030.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d36050133cb0b128f7e7a5f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_8312fa9d36abee5c2c4dc618.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ee0fad0027c3c9ce5ef888eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_c5e24a1c774183654d9888e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_2e14e02d6904b1c7c0da605f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_e81024b59d2a204700322c1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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:ff9;src:url('chunks/assets/font_f52f8c75d81a41dfeea2604c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{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);}
.v3{vertical-align:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v5{vertical-align:27.360000px;}
.ls1d{letter-spacing:-1.008000px;}
.ls29{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.576000px;}
.ls3b{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.341400px;}
.ls12{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.037440px;}
.lse{letter-spacing:-0.018720px;}
.lsb{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.ls30{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.252000px;}
.lsd{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.350640px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.378600px;}
.ls14{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.480000px;}
.ls26{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.440000px;}
.ls17{letter-spacing:2.880000px;}
.ls9{letter-spacing:3.600000px;}
.ls8{letter-spacing:3.780000px;}
.ls39{letter-spacing:5.760000px;}
.lsa{letter-spacing:6.480000px;}
.ls36{letter-spacing:7.920000px;}
.ls37{letter-spacing:8.640000px;}
.ls28{letter-spacing:12.240000px;}
.ls2b{letter-spacing:14.400000px;}
.ls27{letter-spacing:15.120000px;}
.ls21{letter-spacing:16.560000px;}
.ls15{letter-spacing:17.280000px;}
.ls33{letter-spacing:18.000000px;}
.ls32{letter-spacing:23.040000px;}
.ls2e{letter-spacing:23.760000px;}
.ls2d{letter-spacing:24.480000px;}
.ls4{letter-spacing:28.800000px;}
.ls2a{letter-spacing:30.960000px;}
.ls2f{letter-spacing:35.280000px;}
.ls18{letter-spacing:36.000000px;}
.ls22{letter-spacing:39.600000px;}
.ls23{letter-spacing:39.780000px;}
.ls38{letter-spacing:41.040000px;}
.ls16{letter-spacing:43.200000px;}
.ls24{letter-spacing:54.000000px;}
.ls1b{letter-spacing:62.616000px;}
.ls1c{letter-spacing:62.640000px;}
.ls31{letter-spacing:70.560000px;}
.ls3a{letter-spacing:144.864000px;}
.ls34{letter-spacing:180.864000px;}
.ls25{letter-spacing:194.376000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-26.424000px;}
.ws4{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.wsc{word-spacing:-21.022560px;}
.ws5{word-spacing:-20.718600px;}
.ws16{word-spacing:-18.720000px;}
.wse{word-spacing:-18.432000px;}
.ws14{word-spacing:-18.360000px;}
.wsf{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.352000px;}
.ws13{word-spacing:-17.280000px;}
.ws1{word-spacing:-15.226440px;}
.ws7{word-spacing:-12.060000px;}
.ws10{word-spacing:0.000000px;}
._1b{margin-left:-4.592400px;}
._2{margin-left:-3.099600px;}
._0{margin-left:-1.188000px;}
._3{width:1.092000px;}
._6{width:2.271600px;}
._c{width:3.504000px;}
._d{width:5.016000px;}
._e{width:6.228000px;}
._10{width:7.812000px;}
._f{width:8.976000px;}
._11{width:10.896000px;}
._2c{width:12.168000px;}
._2b{width:13.356000px;}
._24{width:15.192000px;}
._13{width:16.248000px;}
._1{width:18.648000px;}
._33{width:19.838400px;}
._1d{width:20.990400px;}
._17{width:22.011600px;}
._16{width:23.780400px;}
._b{width:24.891600px;}
._a{width:26.136000px;}
._1c{width:27.648000px;}
._4{width:28.776000px;}
._5{width:29.880000px;}
._12{width:31.224000px;}
._27{width:33.048000px;}
._26{width:34.056000px;}
._9{width:35.928000px;}
._8{width:36.984000px;}
._1f{width:38.064000px;}
._28{width:39.924000px;}
._25{width:41.928000px;}
._14{width:42.960000px;}
._15{width:44.064000px;}
._38{width:45.432000px;}
._2a{width:46.632000px;}
._29{width:47.664000px;}
._31{width:49.728000px;}
._20{width:50.916000px;}
._1e{width:52.920000px;}
._19{width:54.144000px;}
._18{width:55.224000px;}
._1a{width:57.144000px;}
._39{width:58.224000px;}
._2d{width:59.328000px;}
._2e{width:60.636000px;}
._23{width:61.716000px;}
._22{width:63.168000px;}
._36{width:64.512000px;}
._32{width:70.272000px;}
._37{width:83.880000px;}
._7{width:91.632000px;}
._2f{width:94.104000px;}
._30{width:95.592000px;}
._21{width:100.080000px;}
._35{width:357.300000px;}
._34{width:462.600000px;}
.fcd{color:rgb(74,85,97);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc4{color:rgb(71,71,71);}
.fc6{color:rgb(34,34,34);}
.fce{color:rgb(10,10,10);}
.fc7{color:rgb(24,28,40);}
.fc8{color:rgb(64,64,64);}
.fca{color:rgb(51,51,51);}
.fc1{color:rgb(51,51,255);}
.fc5{color:rgb(192,0,0);}
.fcb{color:rgb(10,10,12);}
.fc2{color:rgb(112,48,160);}
.fc9{color:transparent;}
.fcc{color:rgb(0,0,255);}
.fs3{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y62{bottom:3.960000px;}
.y3{bottom:7.020000px;}
.y7{bottom:11.340000px;}
.y67{bottom:14.220000px;}
.y6b{bottom:14.400000px;}
.y7b{bottom:24.654000px;}
.y65{bottom:24.660000px;}
.y7e{bottom:24.690000px;}
.y2{bottom:28.260000px;}
.y7a{bottom:45.354000px;}
.y73{bottom:45.360000px;}
.y76{bottom:45.405000px;}
.y79{bottom:66.054000px;}
.y72{bottom:66.060000px;}
.y8{bottom:71.136000px;}
.y71{bottom:86.760000px;}
.y6{bottom:86.796000px;}
.y52{bottom:121.176000px;}
.y7c{bottom:122.436000px;}
.y5f{bottom:131.616000px;}
.y9c{bottom:141.156000px;}
.y78{bottom:143.856000px;}
.y51{bottom:152.310000px;}
.y31{bottom:161.490000px;}
.y5e{bottom:162.570000px;}
.y9b{bottom:175.170000px;}
.y50{bottom:183.270000px;}
.y5d{bottom:193.710000px;}
.y30{bottom:194.790000px;}
.y9a{bottom:206.130000px;}
.y4f{bottom:214.410000px;}
.y2f{bottom:221.610000px;}
.y5c{bottom:224.670000px;}
.y77{bottom:227.370000px;}
.y99{bottom:237.270000px;}
.y2e{bottom:245.370000px;}
.y5b{bottom:255.810000px;}
.y98{bottom:268.230000px;}
.y2d{bottom:269.130000px;}
.y4e{bottom:276.510000px;}
.y5a{bottom:286.770000px;}
.y2c{bottom:292.890000px;}
.y97{bottom:299.370000px;}
.y4d{bottom:307.470000px;}
.y75{bottom:310.890000px;}
.y2b{bottom:316.830000px;}
.y59{bottom:317.910000px;}
.y96{bottom:330.330000px;}
.y4c{bottom:338.655000px;}
.y2a{bottom:340.635000px;}
.y58{bottom:348.915000px;}
.y95{bottom:361.515000px;}
.y4b{bottom:369.615000px;}
.y74{bottom:373.755000px;}
.y29{bottom:375.555000px;}
.y57{bottom:380.055000px;}
.y94{bottom:392.475000px;}
.y28{bottom:399.675000px;}
.y4a{bottom:400.755000px;}
.y56{bottom:411.015000px;}
.y27{bottom:420.375000px;}
.y93{bottom:423.615000px;}
.y49{bottom:431.715000px;}
.y70{bottom:436.575000px;}
.y26{bottom:441.075000px;}
.y55{bottom:442.155000px;}
.y92{bottom:454.575000px;}
.y48{bottom:462.855000px;}
.y25{bottom:465.015000px;}
.y54{bottom:473.115000px;}
.y91{bottom:485.715000px;}
.y24{bottom:488.775000px;}
.y6d{bottom:493.455000px;}
.y47{bottom:493.815000px;}
.y53{bottom:504.255000px;}
.y23{bottom:512.535000px;}
.y90{bottom:516.675000px;}
.y46{bottom:524.955000px;}
.y6c{bottom:535.575000px;}
.y22{bottom:536.295000px;}
.y6f{bottom:540.795000px;}
.y8f{bottom:547.815000px;}
.y45{bottom:555.915000px;}
.y21{bottom:560.235000px;}
.y6e{bottom:566.355000px;}
.y6a{bottom:577.695000px;}
.y8e{bottom:578.775000px;}
.y20{bottom:583.995000px;}
.y44{bottom:587.055000px;}
.y1f{bottom:607.785000px;}
.y8d{bottom:609.945000px;}
.y43{bottom:618.045000px;}
.y69{bottom:620.025000px;}
.y1e{bottom:630.105000px;}
.y8c{bottom:640.905000px;}
.y42{bottom:649.185000px;}
.y1d{bottom:654.765000px;}
.y68{bottom:662.145000px;}
.y8b{bottom:672.045000px;}
.y1c{bottom:678.885000px;}
.y41{bottom:680.145000px;}
.y66{bottom:683.565000px;}
.y1b{bottom:703.005000px;}
.y40{bottom:711.285000px;}
.y64{bottom:725.685000px;}
.y9d{bottom:731.265000px;}
.y8a{bottom:734.145000px;}
.y1a{bottom:740.985000px;}
.y3f{bottom:742.245000px;}
.y89{bottom:765.105000px;}
.y63{bottom:767.805000px;}
.y19{bottom:768.165000px;}
.y3e{bottom:773.385000px;}
.y61{bottom:789.225000px;}
.y18{bottom:791.925000px;}
.y88{bottom:796.245000px;}
.y3d{bottom:804.345000px;}
.y60{bottom:814.785000px;}
.y17{bottom:815.685000px;}
.y87{bottom:827.205000px;}
.y3c{bottom:835.305000px;}
.y16{bottom:839.445000px;}
.y86{bottom:858.345000px;}
.y15{bottom:863.385000px;}
.y3b{bottom:866.445000px;}
.y14{bottom:887.190000px;}
.y85{bottom:889.350000px;}
.y3a{bottom:897.450000px;}
.y13{bottom:910.950000px;}
.y84{bottom:920.490000px;}
.y39{bottom:928.590000px;}
.y12{bottom:934.710000px;}
.y83{bottom:951.450000px;}
.y38{bottom:959.550000px;}
.y11{bottom:965.850000px;}
.y82{bottom:982.410000px;}
.y37{bottom:990.690000px;}
.y10{bottom:995.550000px;}
.y81{bottom:1015.890000px;}
.yf{bottom:1020.210000px;}
.y36{bottom:1021.650000px;}
.y80{bottom:1036.230000px;}
.ye{bottom:1043.250000px;}
.y35{bottom:1052.790000px;}
.yd{bottom:1056.390000px;}
.yc{bottom:1070.610000px;}
.y7f{bottom:1078.350000px;}
.y34{bottom:1083.750000px;}
.yb{bottom:1094.730000px;}
.y33{bottom:1114.890000px;}
.ya{bottom:1118.850000px;}
.y7d{bottom:1120.470000px;}
.y9{bottom:1143.000000px;}
.y32{bottom:1145.880000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.hf{height:20.700000px;}
.h5{height:27.000000px;}
.h7{height:36.111797px;}
.h10{height:41.400000px;}
.h11{height:41.436000px;}
.h8{height:41.715352px;}
.h9{height:43.246406px;}
.h2{height:53.460000px;}
.hb{height:59.343750px;}
.h13{height:62.100000px;}
.h14{height:62.136000px;}
.hd{height:62.261719px;}
.ha{height:64.546875px;}
.h4{height:65.884219px;}
.he{height:70.606406px;}
.h6{height:72.846211px;}
.h16{height:75.519844px;}
.h15{height:82.800000px;}
.hc{height:83.787539px;}
.h3{height:96.820312px;}
.h12{height:103.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:41.400000px;}
.w7{width:52.020000px;}
.w9{width:105.696000px;}
.w5{width:106.416000px;}
.wf{width:232.950000px;}
.wa{width:254.370000px;}
.w8{width:296.850000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.wc{width:360.795000px;}
.we{width:424.515000px;}
.w2{width:498.675000px;}
.wb{width:658.545000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:7.560000px;}
.x37{left:10.254000px;}
.x21{left:16.020000px;}
.x1d{left:17.460000px;}
.x2f{left:19.260000px;}
.x26{left:21.420000px;}
.x24{left:25.920000px;}
.x2d{left:27.210000px;}
.x2e{left:31.170000px;}
.x35{left:32.940000px;}
.x30{left:34.380000px;}
.x2a{left:37.830000px;}
.x9{left:44.820000px;}
.x27{left:48.060000px;}
.x36{left:71.460000px;}
.x1f{left:73.980000px;}
.x31{left:78.300000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x34{left:97.425000px;}
.x1c{left:98.676000px;}
.x28{left:101.700000px;}
.x5{left:106.415987px;}
.x23{left:108.225000px;}
.x18{left:111.095987px;}
.x2b{left:113.430000px;}
.xc{left:114.875987px;}
.x16{left:117.575987px;}
.xd{left:134.135987px;}
.x32{left:140.796000px;}
.x14{left:148.895987px;}
.x1e{left:151.410000px;}
.x15{left:155.729987px;}
.x19{left:159.509987px;}
.x17{left:162.569987px;}
.x10{left:169.949987px;}
.x2c{left:189.045000px;}
.x2{left:197.310000px;}
.xb{left:210.629987px;}
.x25{left:234.585000px;}
.x11{left:241.409987px;}
.x1{left:278.175000px;}
.x7{left:297.795000px;}
.x13{left:324.074987px;}
.x12{left:328.934987px;}
.x38{left:364.754987px;}
.x8{left:390.855000px;}
.x1b{left:411.374987px;}
.xe{left:437.654987px;}
.x20{left:449.175000px;}
.xf{left:478.364987px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x22{left:555.585000px;}
.x33{left:566.025000px;}
.x1a{left:728.249987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v5{vertical-align:24.320000pt;}
.ls1d{letter-spacing:-0.896000pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls3b{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.303467pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.033280pt;}
.lse{letter-spacing:-0.016640pt;}
.lsb{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.ls30{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.224000pt;}
.lsd{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.311680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.336533pt;}
.ls14{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls26{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls17{letter-spacing:2.560000pt;}
.ls9{letter-spacing:3.200000pt;}
.ls8{letter-spacing:3.360000pt;}
.ls39{letter-spacing:5.120000pt;}
.lsa{letter-spacing:5.760000pt;}
.ls36{letter-spacing:7.040000pt;}
.ls37{letter-spacing:7.680000pt;}
.ls28{letter-spacing:10.880000pt;}
.ls2b{letter-spacing:12.800000pt;}
.ls27{letter-spacing:13.440000pt;}
.ls21{letter-spacing:14.720000pt;}
.ls15{letter-spacing:15.360000pt;}
.ls33{letter-spacing:16.000000pt;}
.ls32{letter-spacing:20.480000pt;}
.ls2e{letter-spacing:21.120000pt;}
.ls2d{letter-spacing:21.760000pt;}
.ls4{letter-spacing:25.600000pt;}
.ls2a{letter-spacing:27.520000pt;}
.ls2f{letter-spacing:31.360000pt;}
.ls18{letter-spacing:32.000000pt;}
.ls22{letter-spacing:35.200000pt;}
.ls23{letter-spacing:35.360000pt;}
.ls38{letter-spacing:36.480000pt;}
.ls16{letter-spacing:38.400000pt;}
.ls24{letter-spacing:48.000000pt;}
.ls1b{letter-spacing:55.658667pt;}
.ls1c{letter-spacing:55.680000pt;}
.ls31{letter-spacing:62.720000pt;}
.ls3a{letter-spacing:128.768000pt;}
.ls34{letter-spacing:160.768000pt;}
.ls25{letter-spacing:172.778667pt;}
.ws0{word-spacing:-23.488000pt;}
.ws4{word-spacing:-19.056533pt;}
.ws3{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.wsc{word-spacing:-18.686720pt;}
.ws5{word-spacing:-18.416533pt;}
.ws16{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.384000pt;}
.ws14{word-spacing:-16.320000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.424000pt;}
.ws13{word-spacing:-15.360000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws7{word-spacing:-10.720000pt;}
.ws10{word-spacing:0.000000pt;}
._1b{margin-left:-4.082133pt;}
._2{margin-left:-2.755200pt;}
._0{margin-left:-1.056000pt;}
._3{width:0.970667pt;}
._6{width:2.019200pt;}
._c{width:3.114667pt;}
._d{width:4.458667pt;}
._e{width:5.536000pt;}
._10{width:6.944000pt;}
._f{width:7.978667pt;}
._11{width:9.685333pt;}
._2c{width:10.816000pt;}
._2b{width:11.872000pt;}
._24{width:13.504000pt;}
._13{width:14.442667pt;}
._1{width:16.576000pt;}
._33{width:17.634133pt;}
._1d{width:18.658133pt;}
._17{width:19.565867pt;}
._16{width:21.138133pt;}
._b{width:22.125867pt;}
._a{width:23.232000pt;}
._1c{width:24.576000pt;}
._4{width:25.578667pt;}
._5{width:26.560000pt;}
._12{width:27.754667pt;}
._27{width:29.376000pt;}
._26{width:30.272000pt;}
._9{width:31.936000pt;}
._8{width:32.874667pt;}
._1f{width:33.834667pt;}
._28{width:35.488000pt;}
._25{width:37.269333pt;}
._14{width:38.186667pt;}
._15{width:39.168000pt;}
._38{width:40.384000pt;}
._2a{width:41.450667pt;}
._29{width:42.368000pt;}
._31{width:44.202667pt;}
._20{width:45.258667pt;}
._1e{width:47.040000pt;}
._19{width:48.128000pt;}
._18{width:49.088000pt;}
._1a{width:50.794667pt;}
._39{width:51.754667pt;}
._2d{width:52.736000pt;}
._2e{width:53.898667pt;}
._23{width:54.858667pt;}
._22{width:56.149333pt;}
._36{width:57.344000pt;}
._32{width:62.464000pt;}
._37{width:74.560000pt;}
._7{width:81.450667pt;}
._2f{width:83.648000pt;}
._30{width:84.970667pt;}
._21{width:88.960000pt;}
._35{width:317.600000pt;}
._34{width:411.200000pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:3.520000pt;}
.y3{bottom:6.240000pt;}
.y7{bottom:10.080000pt;}
.y67{bottom:12.640000pt;}
.y6b{bottom:12.800000pt;}
.y7b{bottom:21.914667pt;}
.y65{bottom:21.920000pt;}
.y7e{bottom:21.946667pt;}
.y2{bottom:25.120000pt;}
.y7a{bottom:40.314667pt;}
.y73{bottom:40.320000pt;}
.y76{bottom:40.360000pt;}
.y79{bottom:58.714667pt;}
.y72{bottom:58.720000pt;}
.y8{bottom:63.232000pt;}
.y71{bottom:77.120000pt;}
.y6{bottom:77.152000pt;}
.y52{bottom:107.712000pt;}
.y7c{bottom:108.832000pt;}
.y5f{bottom:116.992000pt;}
.y9c{bottom:125.472000pt;}
.y78{bottom:127.872000pt;}
.y51{bottom:135.386667pt;}
.y31{bottom:143.546667pt;}
.y5e{bottom:144.506667pt;}
.y9b{bottom:155.706667pt;}
.y50{bottom:162.906667pt;}
.y5d{bottom:172.186667pt;}
.y30{bottom:173.146667pt;}
.y9a{bottom:183.226667pt;}
.y4f{bottom:190.586667pt;}
.y2f{bottom:196.986667pt;}
.y5c{bottom:199.706667pt;}
.y77{bottom:202.106667pt;}
.y99{bottom:210.906667pt;}
.y2e{bottom:218.106667pt;}
.y5b{bottom:227.386667pt;}
.y98{bottom:238.426667pt;}
.y2d{bottom:239.226667pt;}
.y4e{bottom:245.786667pt;}
.y5a{bottom:254.906667pt;}
.y2c{bottom:260.346667pt;}
.y97{bottom:266.106667pt;}
.y4d{bottom:273.306667pt;}
.y75{bottom:276.346667pt;}
.y2b{bottom:281.626667pt;}
.y59{bottom:282.586667pt;}
.y96{bottom:293.626667pt;}
.y4c{bottom:301.026667pt;}
.y2a{bottom:302.786667pt;}
.y58{bottom:310.146667pt;}
.y95{bottom:321.346667pt;}
.y4b{bottom:328.546667pt;}
.y74{bottom:332.226667pt;}
.y29{bottom:333.826667pt;}
.y57{bottom:337.826667pt;}
.y94{bottom:348.866667pt;}
.y28{bottom:355.266667pt;}
.y4a{bottom:356.226667pt;}
.y56{bottom:365.346667pt;}
.y27{bottom:373.666667pt;}
.y93{bottom:376.546667pt;}
.y49{bottom:383.746667pt;}
.y70{bottom:388.066667pt;}
.y26{bottom:392.066667pt;}
.y55{bottom:393.026667pt;}
.y92{bottom:404.066667pt;}
.y48{bottom:411.426667pt;}
.y25{bottom:413.346667pt;}
.y54{bottom:420.546667pt;}
.y91{bottom:431.746667pt;}
.y24{bottom:434.466667pt;}
.y6d{bottom:438.626667pt;}
.y47{bottom:438.946667pt;}
.y53{bottom:448.226667pt;}
.y23{bottom:455.586667pt;}
.y90{bottom:459.266667pt;}
.y46{bottom:466.626667pt;}
.y6c{bottom:476.066667pt;}
.y22{bottom:476.706667pt;}
.y6f{bottom:480.706667pt;}
.y8f{bottom:486.946667pt;}
.y45{bottom:494.146667pt;}
.y21{bottom:497.986667pt;}
.y6e{bottom:503.426667pt;}
.y6a{bottom:513.506667pt;}
.y8e{bottom:514.466667pt;}
.y20{bottom:519.106667pt;}
.y44{bottom:521.826667pt;}
.y1f{bottom:540.253333pt;}
.y8d{bottom:542.173333pt;}
.y43{bottom:549.373333pt;}
.y69{bottom:551.133333pt;}
.y1e{bottom:560.093333pt;}
.y8c{bottom:569.693333pt;}
.y42{bottom:577.053333pt;}
.y1d{bottom:582.013333pt;}
.y68{bottom:588.573333pt;}
.y8b{bottom:597.373333pt;}
.y1c{bottom:603.453333pt;}
.y41{bottom:604.573333pt;}
.y66{bottom:607.613333pt;}
.y1b{bottom:624.893333pt;}
.y40{bottom:632.253333pt;}
.y64{bottom:645.053333pt;}
.y9d{bottom:650.013333pt;}
.y8a{bottom:652.573333pt;}
.y1a{bottom:658.653333pt;}
.y3f{bottom:659.773333pt;}
.y89{bottom:680.093333pt;}
.y63{bottom:682.493333pt;}
.y19{bottom:682.813333pt;}
.y3e{bottom:687.453333pt;}
.y61{bottom:701.533333pt;}
.y18{bottom:703.933333pt;}
.y88{bottom:707.773333pt;}
.y3d{bottom:714.973333pt;}
.y60{bottom:724.253333pt;}
.y17{bottom:725.053333pt;}
.y87{bottom:735.293333pt;}
.y3c{bottom:742.493333pt;}
.y16{bottom:746.173333pt;}
.y86{bottom:762.973333pt;}
.y15{bottom:767.453333pt;}
.y3b{bottom:770.173333pt;}
.y14{bottom:788.613333pt;}
.y85{bottom:790.533333pt;}
.y3a{bottom:797.733333pt;}
.y13{bottom:809.733333pt;}
.y84{bottom:818.213333pt;}
.y39{bottom:825.413333pt;}
.y12{bottom:830.853333pt;}
.y83{bottom:845.733333pt;}
.y38{bottom:852.933333pt;}
.y11{bottom:858.533333pt;}
.y82{bottom:873.253333pt;}
.y37{bottom:880.613333pt;}
.y10{bottom:884.933333pt;}
.y81{bottom:903.013333pt;}
.yf{bottom:906.853333pt;}
.y36{bottom:908.133333pt;}
.y80{bottom:921.093333pt;}
.ye{bottom:927.333333pt;}
.y35{bottom:935.813333pt;}
.yd{bottom:939.013333pt;}
.yc{bottom:951.653333pt;}
.y7f{bottom:958.533333pt;}
.y34{bottom:963.333333pt;}
.yb{bottom:973.093333pt;}
.y33{bottom:991.013333pt;}
.ya{bottom:994.533333pt;}
.y7d{bottom:995.973333pt;}
.y9{bottom:1016.000000pt;}
.y32{bottom:1018.560000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.hf{height:18.400000pt;}
.h5{height:24.000000pt;}
.h7{height:32.099375pt;}
.h10{height:36.800000pt;}
.h11{height:36.832000pt;}
.h8{height:37.080312pt;}
.h9{height:38.441250pt;}
.h2{height:47.520000pt;}
.hb{height:52.750000pt;}
.h13{height:55.200000pt;}
.h14{height:55.232000pt;}
.hd{height:55.343750pt;}
.ha{height:57.375000pt;}
.h4{height:58.563750pt;}
.he{height:62.761250pt;}
.h6{height:64.752187pt;}
.h16{height:67.128750pt;}
.h15{height:73.600000pt;}
.hc{height:74.477812pt;}
.h3{height:86.062500pt;}
.h12{height:92.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:36.800000pt;}
.w7{width:46.240000pt;}
.w9{width:93.952000pt;}
.w5{width:94.592000pt;}
.wf{width:207.066667pt;}
.wa{width:226.106667pt;}
.w8{width:263.866667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.wc{width:320.706667pt;}
.we{width:377.346667pt;}
.w2{width:443.266667pt;}
.wb{width:585.373333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.720000pt;}
.x37{left:9.114667pt;}
.x21{left:14.240000pt;}
.x1d{left:15.520000pt;}
.x2f{left:17.120000pt;}
.x26{left:19.040000pt;}
.x24{left:23.040000pt;}
.x2d{left:24.186667pt;}
.x2e{left:27.706667pt;}
.x35{left:29.280000pt;}
.x30{left:30.560000pt;}
.x2a{left:33.626667pt;}
.x9{left:39.840000pt;}
.x27{left:42.720000pt;}
.x36{left:63.520000pt;}
.x1f{left:65.760000pt;}
.x31{left:69.600000pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x34{left:86.600000pt;}
.x1c{left:87.712000pt;}
.x28{left:90.400000pt;}
.x5{left:94.591988pt;}
.x23{left:96.200000pt;}
.x18{left:98.751988pt;}
.x2b{left:100.826667pt;}
.xc{left:102.111988pt;}
.x16{left:104.511988pt;}
.xd{left:119.231988pt;}
.x32{left:125.152000pt;}
.x14{left:132.351988pt;}
.x1e{left:134.586667pt;}
.x15{left:138.426655pt;}
.x19{left:141.786655pt;}
.x17{left:144.506655pt;}
.x10{left:151.066655pt;}
.x2c{left:168.040000pt;}
.x2{left:175.386667pt;}
.xb{left:187.226655pt;}
.x25{left:208.520000pt;}
.x11{left:214.586655pt;}
.x1{left:247.266667pt;}
.x7{left:264.706667pt;}
.x13{left:288.066655pt;}
.x12{left:292.386655pt;}
.x38{left:324.226655pt;}
.x8{left:347.426667pt;}
.x1b{left:365.666655pt;}
.xe{left:389.026655pt;}
.x20{left:399.266667pt;}
.xf{left:425.213322pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x22{left:493.853333pt;}
.x33{left:503.133333pt;}
.x1a{left:647.333322pt;}
}




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