
    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_ab1f0b6e8300c2fc4fc5cae5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_afa1783f9a416c44203bcd6b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_46c2f2eb6479ab43f9b8fcd4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_67b1a0453ceaa6ecc41e08b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ae756b595a62e0a4845ee3f9.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_85bc7af0933a84bd8e824666.woff2')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_a07b9b25e4281ae13f87016c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_c08b9587e62b5f2e255ee4bb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_efa1755712cb399a3e22b6a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_697e38765bbf2cd535380154.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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:ffb;src:url('chunks/assets/font_e9168ee71093af234bfa086a.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.880000px;}
.lsd{letter-spacing:-1.872000px;}
.ls18{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.200400px;}
.lsb{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.108000px;}
.ls1e{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.063000px;}
.ls1c{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.035640px;}
.ls19{letter-spacing:0.066720px;}
.ls10{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.077760px;}
.lsf{letter-spacing:0.078600px;}
.ls3{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.109560px;}
.ls1f{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.139800px;}
.ls1{letter-spacing:0.141840px;}
.ls11{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.192000px;}
.ls25{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.432000px;}
.ls21{letter-spacing:2.700000px;}
.ls6{letter-spacing:3.452880px;}
.ls1d{letter-spacing:10.080000px;}
.ls26{letter-spacing:10.800000px;}
.ls24{letter-spacing:22.320000px;}
.ls20{letter-spacing:33.840000px;}
.ls27{letter-spacing:72.144000px;}
.ls14{letter-spacing:87.984000px;}
.ls17{letter-spacing:91.944000px;}
.ls13{letter-spacing:108.144000px;}
.ls15{letter-spacing:109.560000px;}
.ls23{letter-spacing:112.104000px;}
.ls12{letter-spacing:127.944000px;}
.lse{letter-spacing:400.311120px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.wse{word-spacing:-60.120000px;}
.ws2{word-spacing:-21.723120px;}
.ws1{word-spacing:-21.660120px;}
.wsc{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.ws13{word-spacing:-17.856000px;}
.ws14{word-spacing:-17.712000px;}
.ws10{word-spacing:-15.169800px;}
.ws5{word-spacing:-15.030000px;}
.ws11{word-spacing:-14.976720px;}
.wsb{word-spacing:-14.967480px;}
.wsa{word-spacing:-14.888880px;}
.ws6{word-spacing:-14.850000px;}
.ws0{word-spacing:-14.238000px;}
.ws4{word-spacing:-14.220000px;}
.ws7{word-spacing:-12.204000px;}
.ws8{word-spacing:-12.096000px;}
.ws9{word-spacing:0.000000px;}
._32{margin-left:-8.736000px;}
._6{margin-left:-5.890200px;}
._5{margin-left:-4.727880px;}
._4{margin-left:-3.113400px;}
._3{margin-left:-2.055840px;}
._9{margin-left:-1.012200px;}
._2{width:1.259040px;}
._a{width:2.765520px;}
._b{width:3.948480px;}
._f{width:5.832000px;}
._e{width:7.290000px;}
._15{width:8.442480px;}
._d{width:9.501840px;}
._c{width:10.542000px;}
._16{width:11.640000px;}
._17{width:12.642000px;}
._1b{width:14.496000px;}
._13{width:16.392000px;}
._20{width:17.494920px;}
._14{width:19.200000px;}
._11{width:20.520000px;}
._12{width:21.590640px;}
._19{width:22.845600px;}
._22{width:24.746400px;}
._24{width:26.400000px;}
._25{width:27.912000px;}
._2a{width:28.980960px;}
._1f{width:30.024000px;}
._1d{width:31.032000px;}
._1c{width:32.616000px;}
._23{width:33.693480px;}
._7{width:34.898520px;}
._8{width:35.915400px;}
._18{width:37.236600px;}
._21{width:39.083400px;}
._1e{width:40.248000px;}
._2e{width:41.340600px;}
._30{width:42.467400px;}
._2d{width:44.280000px;}
._2b{width:46.512000px;}
._2c{width:47.664000px;}
._27{width:61.848000px;}
._28{width:63.576000px;}
._26{width:65.232000px;}
._2f{width:68.520000px;}
._29{width:87.240000px;}
._31{width:91.560000px;}
._10{width:115.596000px;}
._0{width:677.700000px;}
._1a{width:1231.911840px;}
._1{width:1620.780000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5{bottom:45.359908px;}
.y4{bottom:60.869908px;}
.y3{bottom:76.439908px;}
.y2e{bottom:96.689908px;}
.yc1{bottom:98.039908px;}
.y8e{bottom:101.909908px;}
.yb1{bottom:106.769908px;}
.y2d{bottom:113.969908px;}
.ybd{bottom:118.739908px;}
.y8d{bottom:119.189908px;}
.yb0{bottom:127.469908px;}
.y5b{bottom:131.159908px;}
.y8c{bottom:131.609908px;}
.y80{bottom:136.379908px;}
.y2c{bottom:137.279908px;}
.ybc{bottom:139.439908px;}
.yaf{bottom:148.169908px;}
.y5a{bottom:148.439908px;}
.y7f{bottom:148.799908px;}
.y2b{bottom:149.879908px;}
.y59{bottom:153.659908px;}
.yb2{bottom:160.139908px;}
.y58{bottom:165.719908px;}
.y8b{bottom:168.869908px;}
.ya8{bottom:170.939908px;}
.y2a{bottom:175.169908px;}
.y7e{bottom:180.839908px;}
.y57{bottom:182.909908px;}
.y56{bottom:188.129908px;}
.y8a{bottom:189.569908px;}
.y29{bottom:191.639908px;}
.y55{bottom:200.189908px;}
.ya7{bottom:200.549908px;}
.y7d{bottom:201.539908px;}
.y54{bottom:205.409908px;}
.y28{bottom:208.109908px;}
.yae{bottom:210.269908px;}
.y88{bottom:217.469908px;}
.y53{bottom:217.829908px;}
.y7c{bottom:222.239908px;}
.yc0{bottom:222.689908px;}
.y27{bottom:224.669908px;}
.ya6{bottom:230.969908px;}
.y87{bottom:234.659908px;}
.ybf{bottom:235.019908px;}
.y26{bottom:241.139908px;}
.y7a{bottom:242.939908px;}
.y7b{bottom:249.689908px;}
.ya4{bottom:251.669908px;}
.y86{bottom:251.939908px;}
.y85{bottom:257.159908px;}
.y25{bottom:257.609908px;}
.ya5{bottom:258.419908px;}
.y52{bottom:262.289908px;}
.y79{bottom:263.639908px;}
.yad{bottom:269.219908px;}
.y84{bottom:269.579908px;}
.ya3{bottom:272.369908px;}
.y24{bottom:274.079908px;}
.y51{bottom:282.989908px;}
.y78{bottom:284.339908px;}
.yac{bottom:286.409908px;}
.y23{bottom:290.549908px;}
.ya2{bottom:293.069908px;}
.y50{bottom:303.689908px;}
.y77{bottom:305.039908px;}
.y22{bottom:307.019908px;}
.yab{bottom:308.909908px;}
.ya1{bottom:313.769908px;}
.yaa{bottom:321.329908px;}
.y21{bottom:323.489908px;}
.y4f{bottom:324.389908px;}
.y76{bottom:325.739908px;}
.ya0{bottom:334.469908px;}
.y20{bottom:339.959908px;}
.y4e{bottom:345.089908px;}
.y75{bottom:346.439908px;}
.y9f{bottom:355.169908px;}
.y1f{bottom:356.429908px;}
.y4d{bottom:365.789908px;}
.y74{bottom:367.139908px;}
.y1e{bottom:372.899908px;}
.y9e{bottom:375.869908px;}
.y4c{bottom:386.489908px;}
.y73{bottom:387.839908px;}
.y1d{bottom:389.459908px;}
.y9d{bottom:396.569908px;}
.y1c{bottom:405.929908px;}
.y4b{bottom:407.189908px;}
.y72{bottom:408.539908px;}
.y9c{bottom:417.269908px;}
.y1b{bottom:422.399908px;}
.y4a{bottom:427.889908px;}
.y71{bottom:429.239908px;}
.y9b{bottom:437.969908px;}
.y1a{bottom:438.869908px;}
.y49{bottom:448.589908px;}
.y83{bottom:449.969908px;}
.y19{bottom:455.009908px;}
.y9a{bottom:458.699908px;}
.y48{bottom:469.319908px;}
.y70{bottom:470.669908px;}
.y18{bottom:472.289908px;}
.y99{bottom:479.399908px;}
.y17{bottom:489.479908px;}
.y47{bottom:490.019908px;}
.y6f{bottom:491.369908px;}
.y98{bottom:500.099908px;}
.y16{bottom:506.759908px;}
.y46{bottom:510.719908px;}
.y6e{bottom:512.069908px;}
.y97{bottom:520.799908px;}
.y15{bottom:524.039908px;}
.y45{bottom:531.419908px;}
.y6d{bottom:532.769908px;}
.y14{bottom:541.229908px;}
.y95{bottom:541.499908px;}
.y96{bottom:548.249908px;}
.y43{bottom:552.119908px;}
.y6c{bottom:553.469908px;}
.y13{bottom:558.509908px;}
.y44{bottom:558.869908px;}
.y94{bottom:562.199908px;}
.y41{bottom:572.819908px;}
.y6b{bottom:574.169908px;}
.y12{bottom:575.699908px;}
.y42{bottom:579.569908px;}
.y93{bottom:582.899908px;}
.y11{bottom:592.979908px;}
.y3f{bottom:593.519908px;}
.y6a{bottom:594.869908px;}
.y40{bottom:600.269908px;}
.y89{bottom:601.619908px;}
.y92{bottom:603.599908px;}
.y10{bottom:610.259908px;}
.y3e{bottom:614.219908px;}
.y69{bottom:615.569908px;}
.y91{bottom:624.299908px;}
.yf{bottom:627.449908px;}
.y3d{bottom:634.919908px;}
.y68{bottom:636.269908px;}
.y90{bottom:644.999908px;}
.ye{bottom:645.359908px;}
.y3c{bottom:655.619908px;}
.y67{bottom:656.969908px;}
.y8f{bottom:665.699908px;}
.y3b{bottom:676.229908px;}
.y66{bottom:677.669908px;}
.yd{bottom:679.559908px;}
.y82{bottom:684.419908px;}
.ybb{bottom:686.399908px;}
.y3a{bottom:696.929908px;}
.y65{bottom:698.369908px;}
.yc{bottom:702.869908px;}
.yba{bottom:707.099908px;}
.y39{bottom:717.629908px;}
.y64{bottom:719.069908px;}
.yb9{bottom:727.709908px;}
.yb{bottom:732.209908px;}
.y38{bottom:738.329908px;}
.y63{bottom:739.769908px;}
.yb8{bottom:748.409908px;}
.y37{bottom:759.029908px;}
.y62{bottom:760.469908px;}
.ya{bottom:761.459908px;}
.ya9{bottom:767.219908px;}
.yb7{bottom:769.109908px;}
.y61{bottom:781.169908px;}
.y36{bottom:785.759908px;}
.yb6{bottom:789.809908px;}
.y9{bottom:790.799908px;}
.y60{bottom:801.869908px;}
.y35{bottom:806.189908px;}
.ybe{bottom:808.619908px;}
.yb5{bottom:810.509908px;}
.y8{bottom:820.049908px;}
.y5f{bottom:822.569908px;}
.y34{bottom:822.659908px;}
.yb4{bottom:831.209908px;}
.y33{bottom:839.159908px;}
.y81{bottom:843.299908px;}
.y7{bottom:849.419908px;}
.yb3{bottom:851.939908px;}
.y32{bottom:855.629908px;}
.y5e{bottom:863.999908px;}
.y31{bottom:872.189908px;}
.y6{bottom:878.669908px;}
.y5d{bottom:884.699908px;}
.y30{bottom:888.659908px;}
.y5c{bottom:916.739908px;}
.y2f{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.h12{height:38.158594px;}
.hc{height:38.917090px;}
.h10{height:46.991602px;}
.h4{height:52.998047px;}
.hb{height:53.709961px;}
.h8{height:53.896641px;}
.h14{height:54.878906px;}
.ha{height:55.291992px;}
.h15{height:58.975137px;}
.h7{height:59.004492px;}
.h9{height:60.589687px;}
.hf{height:64.546875px;}
.hd{height:64.657617px;}
.h3{height:65.526152px;}
.h13{height:70.628906px;}
.h6{height:70.664062px;}
.he{height:72.562500px;}
.h11{height:74.004654px;}
.h5{height:95.603730px;}
.h2{height:1020.599908px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:95.669989px;}
.xa{left:100.529989px;}
.x18{left:105.419989px;}
.x1d{left:117.029989px;}
.x20{left:122.699989px;}
.x1{left:127.559989px;}
.xf{left:131.699978px;}
.x10{left:137.729989px;}
.xd{left:148.619978px;}
.x9{left:149.699989px;}
.xe{left:154.649989px;}
.x12{left:194.789978px;}
.x13{left:200.819989px;}
.x14{left:312.509978px;}
.x15{left:324.599989px;}
.x21{left:342.419978px;}
.x1e{left:344.849978px;}
.x4{left:354.929978px;}
.x3{left:361.499989px;}
.x1f{left:371.849989px;}
.xb{left:434.489978px;}
.xc{left:440.519989px;}
.x19{left:485.699978px;}
.x1a{left:497.759989px;}
.x7{left:532.259978px;}
.x8{left:538.289989px;}
.x16{left:539.549978px;}
.x17{left:551.609989px;}
.x5{left:594.539978px;}
.x6{left:600.569989px;}
.x11{left:606.599989px;}
.x1b{left:610.649978px;}
.x1c{left:622.709989px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.560000pt;}
.lsd{letter-spacing:-1.664000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.178133pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls1e{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.056000pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.031680pt;}
.ls19{letter-spacing:0.059307pt;}
.ls10{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.069120pt;}
.lsf{letter-spacing:0.069867pt;}
.ls3{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.097387pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.124267pt;}
.ls1{letter-spacing:0.126080pt;}
.ls11{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.170667pt;}
.ls25{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls21{letter-spacing:2.400000pt;}
.ls6{letter-spacing:3.069227pt;}
.ls1d{letter-spacing:8.960000pt;}
.ls26{letter-spacing:9.600000pt;}
.ls24{letter-spacing:19.840000pt;}
.ls20{letter-spacing:30.080000pt;}
.ls27{letter-spacing:64.128000pt;}
.ls14{letter-spacing:78.208000pt;}
.ls17{letter-spacing:81.728000pt;}
.ls13{letter-spacing:96.128000pt;}
.ls15{letter-spacing:97.386667pt;}
.ls23{letter-spacing:99.648000pt;}
.ls12{letter-spacing:113.728000pt;}
.lse{letter-spacing:355.832107pt;}
.wsf{word-spacing:-64.000000pt;}
.wse{word-spacing:-53.440000pt;}
.ws2{word-spacing:-19.309440pt;}
.ws1{word-spacing:-19.253440pt;}
.wsc{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.ws13{word-spacing:-15.872000pt;}
.ws14{word-spacing:-15.744000pt;}
.ws10{word-spacing:-13.484267pt;}
.ws5{word-spacing:-13.360000pt;}
.ws11{word-spacing:-13.312640pt;}
.wsb{word-spacing:-13.304427pt;}
.wsa{word-spacing:-13.234560pt;}
.ws6{word-spacing:-13.200000pt;}
.ws0{word-spacing:-12.656000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws7{word-spacing:-10.848000pt;}
.ws8{word-spacing:-10.752000pt;}
.ws9{word-spacing:0.000000pt;}
._32{margin-left:-7.765333pt;}
._6{margin-left:-5.235733pt;}
._5{margin-left:-4.202560pt;}
._4{margin-left:-2.767467pt;}
._3{margin-left:-1.827413pt;}
._9{margin-left:-0.899733pt;}
._2{width:1.119147pt;}
._a{width:2.458240pt;}
._b{width:3.509760pt;}
._f{width:5.184000pt;}
._e{width:6.480000pt;}
._15{width:7.504427pt;}
._d{width:8.446080pt;}
._c{width:9.370667pt;}
._16{width:10.346667pt;}
._17{width:11.237333pt;}
._1b{width:12.885333pt;}
._13{width:14.570667pt;}
._20{width:15.551040pt;}
._14{width:17.066667pt;}
._11{width:18.240000pt;}
._12{width:19.191680pt;}
._19{width:20.307200pt;}
._22{width:21.996800pt;}
._24{width:23.466667pt;}
._25{width:24.810667pt;}
._2a{width:25.760853pt;}
._1f{width:26.688000pt;}
._1d{width:27.584000pt;}
._1c{width:28.992000pt;}
._23{width:29.949760pt;}
._7{width:31.020907pt;}
._8{width:31.924800pt;}
._18{width:33.099200pt;}
._21{width:34.740800pt;}
._1e{width:35.776000pt;}
._2e{width:36.747200pt;}
._30{width:37.748800pt;}
._2d{width:39.360000pt;}
._2b{width:41.344000pt;}
._2c{width:42.368000pt;}
._27{width:54.976000pt;}
._28{width:56.512000pt;}
._26{width:57.984000pt;}
._2f{width:60.906667pt;}
._29{width:77.546667pt;}
._31{width:81.386667pt;}
._10{width:102.752000pt;}
._0{width:602.400000pt;}
._1a{width:1095.032747pt;}
._1{width:1440.693333pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5{bottom:40.319919pt;}
.y4{bottom:54.106585pt;}
.y3{bottom:67.946585pt;}
.y2e{bottom:85.946585pt;}
.yc1{bottom:87.146585pt;}
.y8e{bottom:90.586585pt;}
.yb1{bottom:94.906585pt;}
.y2d{bottom:101.306585pt;}
.ybd{bottom:105.546585pt;}
.y8d{bottom:105.946585pt;}
.yb0{bottom:113.306585pt;}
.y5b{bottom:116.586585pt;}
.y8c{bottom:116.986585pt;}
.y80{bottom:121.226585pt;}
.y2c{bottom:122.026585pt;}
.ybc{bottom:123.946585pt;}
.yaf{bottom:131.706585pt;}
.y5a{bottom:131.946585pt;}
.y7f{bottom:132.266585pt;}
.y2b{bottom:133.226585pt;}
.y59{bottom:136.586585pt;}
.yb2{bottom:142.346585pt;}
.y58{bottom:147.306585pt;}
.y8b{bottom:150.106585pt;}
.ya8{bottom:151.946585pt;}
.y2a{bottom:155.706585pt;}
.y7e{bottom:160.746585pt;}
.y57{bottom:162.586585pt;}
.y56{bottom:167.226585pt;}
.y8a{bottom:168.506585pt;}
.y29{bottom:170.346585pt;}
.y55{bottom:177.946585pt;}
.ya7{bottom:178.266585pt;}
.y7d{bottom:179.146585pt;}
.y54{bottom:182.586585pt;}
.y28{bottom:184.986585pt;}
.yae{bottom:186.906585pt;}
.y88{bottom:193.306585pt;}
.y53{bottom:193.626585pt;}
.y7c{bottom:197.546585pt;}
.yc0{bottom:197.946585pt;}
.y27{bottom:199.706585pt;}
.ya6{bottom:205.306585pt;}
.y87{bottom:208.586585pt;}
.ybf{bottom:208.906585pt;}
.y26{bottom:214.346585pt;}
.y7a{bottom:215.946585pt;}
.y7b{bottom:221.946585pt;}
.ya4{bottom:223.706585pt;}
.y86{bottom:223.946585pt;}
.y85{bottom:228.586585pt;}
.y25{bottom:228.986585pt;}
.ya5{bottom:229.706585pt;}
.y52{bottom:233.146585pt;}
.y79{bottom:234.346585pt;}
.yad{bottom:239.306585pt;}
.y84{bottom:239.626585pt;}
.ya3{bottom:242.106585pt;}
.y24{bottom:243.626585pt;}
.y51{bottom:251.546585pt;}
.y78{bottom:252.746585pt;}
.yac{bottom:254.586585pt;}
.y23{bottom:258.266585pt;}
.ya2{bottom:260.506585pt;}
.y50{bottom:269.946585pt;}
.y77{bottom:271.146585pt;}
.y22{bottom:272.906585pt;}
.yab{bottom:274.586585pt;}
.ya1{bottom:278.906585pt;}
.yaa{bottom:285.626585pt;}
.y21{bottom:287.546585pt;}
.y4f{bottom:288.346585pt;}
.y76{bottom:289.546585pt;}
.ya0{bottom:297.306585pt;}
.y20{bottom:302.186585pt;}
.y4e{bottom:306.746585pt;}
.y75{bottom:307.946585pt;}
.y9f{bottom:315.706585pt;}
.y1f{bottom:316.826585pt;}
.y4d{bottom:325.146585pt;}
.y74{bottom:326.346585pt;}
.y1e{bottom:331.466585pt;}
.y9e{bottom:334.106585pt;}
.y4c{bottom:343.546585pt;}
.y73{bottom:344.746585pt;}
.y1d{bottom:346.186585pt;}
.y9d{bottom:352.506585pt;}
.y1c{bottom:360.826585pt;}
.y4b{bottom:361.946585pt;}
.y72{bottom:363.146585pt;}
.y9c{bottom:370.906585pt;}
.y1b{bottom:375.466585pt;}
.y4a{bottom:380.346585pt;}
.y71{bottom:381.546585pt;}
.y9b{bottom:389.306585pt;}
.y1a{bottom:390.106585pt;}
.y49{bottom:398.746585pt;}
.y83{bottom:399.973252pt;}
.y19{bottom:404.453252pt;}
.y9a{bottom:407.733252pt;}
.y48{bottom:417.173252pt;}
.y70{bottom:418.373252pt;}
.y18{bottom:419.813252pt;}
.y99{bottom:426.133252pt;}
.y17{bottom:435.093252pt;}
.y47{bottom:435.573252pt;}
.y6f{bottom:436.773252pt;}
.y98{bottom:444.533252pt;}
.y16{bottom:450.453252pt;}
.y46{bottom:453.973252pt;}
.y6e{bottom:455.173252pt;}
.y97{bottom:462.933252pt;}
.y15{bottom:465.813252pt;}
.y45{bottom:472.373252pt;}
.y6d{bottom:473.573252pt;}
.y14{bottom:481.093252pt;}
.y95{bottom:481.333252pt;}
.y96{bottom:487.333252pt;}
.y43{bottom:490.773252pt;}
.y6c{bottom:491.973252pt;}
.y13{bottom:496.453252pt;}
.y44{bottom:496.773252pt;}
.y94{bottom:499.733252pt;}
.y41{bottom:509.173252pt;}
.y6b{bottom:510.373252pt;}
.y12{bottom:511.733252pt;}
.y42{bottom:515.173252pt;}
.y93{bottom:518.133252pt;}
.y11{bottom:527.093252pt;}
.y3f{bottom:527.573252pt;}
.y6a{bottom:528.773252pt;}
.y40{bottom:533.573252pt;}
.y89{bottom:534.773252pt;}
.y92{bottom:536.533252pt;}
.y10{bottom:542.453252pt;}
.y3e{bottom:545.973252pt;}
.y69{bottom:547.173252pt;}
.y91{bottom:554.933252pt;}
.yf{bottom:557.733252pt;}
.y3d{bottom:564.373252pt;}
.y68{bottom:565.573252pt;}
.y90{bottom:573.333252pt;}
.ye{bottom:573.653252pt;}
.y3c{bottom:582.773252pt;}
.y67{bottom:583.973252pt;}
.y8f{bottom:591.733252pt;}
.y3b{bottom:601.093252pt;}
.y66{bottom:602.373252pt;}
.yd{bottom:604.053252pt;}
.y82{bottom:608.373252pt;}
.ybb{bottom:610.133252pt;}
.y3a{bottom:619.493252pt;}
.y65{bottom:620.773252pt;}
.yc{bottom:624.773252pt;}
.yba{bottom:628.533252pt;}
.y39{bottom:637.893252pt;}
.y64{bottom:639.173252pt;}
.yb9{bottom:646.853252pt;}
.yb{bottom:650.853252pt;}
.y38{bottom:656.293252pt;}
.y63{bottom:657.573252pt;}
.yb8{bottom:665.253252pt;}
.y37{bottom:674.693252pt;}
.y62{bottom:675.973252pt;}
.ya{bottom:676.853252pt;}
.ya9{bottom:681.973252pt;}
.yb7{bottom:683.653252pt;}
.y61{bottom:694.373252pt;}
.y36{bottom:698.453252pt;}
.yb6{bottom:702.053252pt;}
.y9{bottom:702.933252pt;}
.y60{bottom:712.773252pt;}
.y35{bottom:716.613252pt;}
.ybe{bottom:718.773252pt;}
.yb5{bottom:720.453252pt;}
.y8{bottom:728.933252pt;}
.y5f{bottom:731.173252pt;}
.y34{bottom:731.253252pt;}
.yb4{bottom:738.853252pt;}
.y33{bottom:745.919919pt;}
.y81{bottom:749.599919pt;}
.y7{bottom:755.039919pt;}
.yb3{bottom:757.279919pt;}
.y32{bottom:760.559919pt;}
.y5e{bottom:767.999919pt;}
.y31{bottom:775.279919pt;}
.y6{bottom:781.039919pt;}
.y5d{bottom:786.399919pt;}
.y30{bottom:789.919919pt;}
.y5c{bottom:814.879919pt;}
.y2f{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.h12{height:33.918750pt;}
.hc{height:34.592969pt;}
.h10{height:41.770312pt;}
.h4{height:47.109375pt;}
.hb{height:47.742188pt;}
.h8{height:47.908125pt;}
.h14{height:48.781250pt;}
.ha{height:49.148438pt;}
.h15{height:52.422344pt;}
.h7{height:52.448437pt;}
.h9{height:53.857500pt;}
.hf{height:57.375000pt;}
.hd{height:57.473437pt;}
.h3{height:58.245469pt;}
.h13{height:62.781250pt;}
.h6{height:62.812500pt;}
.he{height:64.500000pt;}
.h11{height:65.781915pt;}
.h5{height:84.981094pt;}
.h2{height:907.199919pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:85.039990pt;}
.xa{left:89.359990pt;}
.x18{left:93.706657pt;}
.x1d{left:104.026657pt;}
.x20{left:109.066657pt;}
.x1{left:113.386657pt;}
.xf{left:117.066648pt;}
.x10{left:122.426657pt;}
.xd{left:132.106648pt;}
.x9{left:133.066657pt;}
.xe{left:137.466657pt;}
.x12{left:173.146648pt;}
.x13{left:178.506657pt;}
.x14{left:277.786648pt;}
.x15{left:288.533324pt;}
.x21{left:304.373314pt;}
.x1e{left:306.533314pt;}
.x4{left:315.493314pt;}
.x3{left:321.333324pt;}
.x1f{left:330.533324pt;}
.xb{left:386.213314pt;}
.xc{left:391.573324pt;}
.x19{left:431.733314pt;}
.x1a{left:442.453324pt;}
.x7{left:473.119981pt;}
.x8{left:478.479990pt;}
.x16{left:479.599981pt;}
.x17{left:490.319990pt;}
.x5{left:528.479981pt;}
.x6{left:533.839990pt;}
.x11{left:539.199990pt;}
.x1b{left:542.799981pt;}
.x1c{left:553.519990pt;}
}




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