
    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_34289f6b3f414a0c6a11b076.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_042c4f40506010421afdc7f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_72a9ac4b7c9e26433f566689.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_2592d74bde7dbdfe90ee72e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_b134b14102eb07df012ea85a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981934;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_7c115b3b2808dc817615319f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.981934;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);}
.va{vertical-align:-30.600000px;}
.v2{vertical-align:-11.040000px;}
.v9{vertical-align:-6.360000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.400000px;}
.v5{vertical-align:21.600000px;}
.v4{vertical-align:28.800000px;}
.v6{vertical-align:36.000000px;}
.v3{vertical-align:84.960000px;}
.v1{vertical-align:137.400000px;}
.ls9{letter-spacing:-0.229200px;}
.ls10{letter-spacing:-0.204600px;}
.ls8{letter-spacing:-0.162600px;}
.lse{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.130800px;}
.lsf{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.039960px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.005280px;}
.lsc{letter-spacing:0.011520px;}
.ls5{letter-spacing:0.026640px;}
.ls7{letter-spacing:0.030240px;}
.lsb{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.162600px;}
.ls2{letter-spacing:120.042000px;}
.lsd{letter-spacing:273.096000px;}
.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;}
}
.ws21{word-spacing:-46.737360px;}
.ws3e{word-spacing:-40.032000px;}
.ws18{word-spacing:-33.326640px;}
.ws17{word-spacing:-33.273360px;}
.ws2e{word-spacing:-30.024000px;}
.ws25{word-spacing:-27.092880px;}
.ws29{word-spacing:-26.754720px;}
.ws28{word-spacing:-26.721360px;}
.ws33{word-spacing:-16.272000px;}
.ws3c{word-spacing:-14.888880px;}
.ws3b{word-spacing:-12.204000px;}
.ws34{word-spacing:-10.820880px;}
.ws20{word-spacing:-6.533280px;}
.ws2b{word-spacing:-6.156000px;}
.ws5{word-spacing:-1.277280px;}
.ws15{word-spacing:-1.172760px;}
.ws0{word-spacing:-1.146960px;}
.ws42{word-spacing:-0.998880px;}
.ws1{word-spacing:-0.801000px;}
.ws2{word-spacing:-0.776880px;}
.ws1b{word-spacing:-0.773280px;}
.ws41{word-spacing:-0.753600px;}
.ws8{word-spacing:-0.712800px;}
.ws45{word-spacing:-0.432000px;}
.ws40{word-spacing:-0.371880px;}
.ws2a{word-spacing:-0.324000px;}
.wsd{word-spacing:-0.259920px;}
.ws43{word-spacing:-0.255840px;}
.ws2d{word-spacing:-0.252000px;}
.ws44{word-spacing:-0.240000px;}
.ws6{word-spacing:-0.214200px;}
.ws2c{word-spacing:-0.204000px;}
.ws47{word-spacing:-0.168000px;}
.wsc{word-spacing:-0.153360px;}
.ws48{word-spacing:-0.146520px;}
.ws3f{word-spacing:-0.072000px;}
.ws1e{word-spacing:-0.053280px;}
.ws4{word-spacing:0.000000px;}
.ws1a{word-spacing:0.046800px;}
.ws1c{word-spacing:0.146880px;}
.ws22{word-spacing:0.186840px;}
.ws14{word-spacing:0.193680px;}
.ws9{word-spacing:0.206640px;}
.ws10{word-spacing:0.240120px;}
.ws16{word-spacing:0.246960px;}
.ws12{word-spacing:0.366840px;}
.wsb{word-spacing:0.374040px;}
.ws23{word-spacing:0.480240px;}
.wse{word-spacing:0.493560px;}
.ws1d{word-spacing:0.526680px;}
.ws13{word-spacing:0.586920px;}
.ws7{word-spacing:0.705600px;}
.wsf{word-spacing:0.753480px;}
.ws11{word-spacing:0.980640px;}
.wsa{word-spacing:1.100640px;}
.ws24{word-spacing:1.352640px;}
.ws27{word-spacing:1.526760px;}
.ws1f{word-spacing:1.586880px;}
.ws19{word-spacing:1.720080px;}
.ws30{word-spacing:8.454240px;}
.ws2f{word-spacing:9.731520px;}
.ws26{word-spacing:88.753320px;}
.ws46{word-spacing:96.012000px;}
.ws38{word-spacing:185.712000px;}
.ws35{word-spacing:199.752000px;}
.ws37{word-spacing:221.496000px;}
.ws32{word-spacing:222.000000px;}
.ws39{word-spacing:240.096000px;}
.ws36{word-spacing:244.152000px;}
.ws3a{word-spacing:254.535360px;}
.ws3d{word-spacing:268.992000px;}
.ws31{word-spacing:690.144000px;}
.ws3{word-spacing:1275.648000px;}
._26{margin-left:-567.474840px;}
._8{margin-left:-18.829440px;}
._a{margin-left:-13.560000px;}
._f{margin-left:-11.232000px;}
._5{margin-left:-9.504000px;}
._10{margin-left:-7.200000px;}
._3{margin-left:-5.409120px;}
._4{margin-left:-4.248000px;}
._2{margin-left:-3.132000px;}
._0{margin-left:-1.836000px;}
._1{width:1.188000px;}
._c{width:2.232360px;}
._2b{width:24.096000px;}
._d{width:28.410960px;}
._6{width:34.853400px;}
._2a{width:118.116000px;}
._29{width:119.916000px;}
._b{width:122.079960px;}
._28{width:126.036000px;}
._9{width:129.960000px;}
._7{width:132.159960px;}
._13{width:228.900000px;}
._18{width:238.800000px;}
._12{width:241.704000px;}
._1c{width:244.200000px;}
._14{width:247.920000px;}
._17{width:250.224840px;}
._1b{width:256.200000px;}
._20{width:293.549880px;}
._1f{width:304.769880px;}
._15{width:307.152000px;}
._24{width:311.309880px;}
._16{width:328.152000px;}
._19{width:337.080000px;}
._1d{width:350.040000px;}
._21{width:373.469880px;}
._23{width:391.469880px;}
._1a{width:449.640000px;}
._1e{width:468.000000px;}
._22{width:486.389880px;}
._e{width:1004.052000px;}
._25{width:1891.553040px;}
._11{width:2178.981120px;}
._2c{width:2473.986720px;}
._27{width:2497.200000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(85,142,213);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:47.880000px;}
.fsf{font-size:54.000000px;}
.fsa{font-size:64.080000px;}
.fse{font-size:65.880000px;}
.fs9{font-size:72.000000px;}
.fsd{font-size:72.120000px;}
.fsb{font-size:78.120000px;}
.fs0{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs8{font-size:96.240000px;}
.fs1{font-size:108.000000px;}
.fs11{font-size:108.120000px;}
.fs4{font-size:119.880000px;}
.fs5{font-size:120.000000px;}
.fs10{font-size:144.000000px;}
.fs6{font-size:155.880000px;}
.fs3{font-size:168.120000px;}
.fs2{font-size:168.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y2{bottom:24.809908px;}
.y4{bottom:52.859908px;}
.y3{bottom:90.449908px;}
.y27{bottom:134.639908px;}
.y6d{bottom:141.599908px;}
.y7f{bottom:150.839908px;}
.y23{bottom:163.859908px;}
.ya{bottom:166.739908px;}
.y85{bottom:166.949908px;}
.yb{bottom:168.689908px;}
.y83{bottom:169.649908px;}
.y8{bottom:170.309908px;}
.y57{bottom:174.029908px;}
.y71{bottom:176.909908px;}
.y24{bottom:178.469908px;}
.y43{bottom:181.739908px;}
.y44{bottom:184.739908px;}
.y9{bottom:199.139908px;}
.y7{bottom:202.709908px;}
.y84{bottom:202.949908px;}
.y82{bottom:205.649908px;}
.y65{bottom:213.419908px;}
.y5f{bottom:229.499908px;}
.y26{bottom:230.309908px;}
.y72{bottom:230.939908px;}
.y53{bottom:231.149908px;}
.y56{bottom:232.169908px;}
.y39{bottom:233.159908px;}
.y3e{bottom:234.089908px;}
.y75{bottom:238.019908px;}
.y3a{bottom:238.169908px;}
.y3f{bottom:240.359908px;}
.y81{bottom:244.799908px;}
.y3d{bottom:245.249908px;}
.y67{bottom:245.429908px;}
.y6f{bottom:245.999908px;}
.y48{bottom:246.389908px;}
.y3b{bottom:247.319908px;}
.y5b{bottom:257.099908px;}
.y42{bottom:262.199908px;}
.y3c{bottom:277.649908px;}
.y47{bottom:282.419908px;}
.y41{bottom:290.999908px;}
.y66{bottom:312.569908px;}
.y46{bottom:318.419908px;}
.y68{bottom:321.899908px;}
.y1a{bottom:342.119908px;}
.y45{bottom:355.229908px;}
.y60{bottom:355.349908px;}
.y5c{bottom:356.219908px;}
.y19{bottom:378.119908px;}
.y70{bottom:409.919908px;}
.y64{bottom:410.039908px;}
.y6c{bottom:410.099908px;}
.y18{bottom:414.119908px;}
.y62{bottom:427.289908px;}
.y59{bottom:432.299908px;}
.y6e{bottom:432.839908px;}
.y6a{bottom:433.019908px;}
.y6b{bottom:433.739908px;}
.y54{bottom:444.599908px;}
.y5a{bottom:449.339908px;}
.y5e{bottom:449.549908px;}
.y5d{bottom:455.279908px;}
.y17{bottom:474.629908px;}
.y74{bottom:500.039908px;}
.y63{bottom:502.199908px;}
.y35{bottom:503.459908px;}
.y55{bottom:509.039908px;}
.y69{bottom:511.679908px;}
.y58{bottom:524.459908px;}
.y61{bottom:533.939908px;}
.y31{bottom:612.029908px;}
.y86{bottom:619.379908px;}
.y80{bottom:644.159908px;}
.y30{bottom:648.029908px;}
.y15{bottom:653.309908px;}
.y25{bottom:670.739908px;}
.y2f{bottom:684.029908px;}
.y14{bottom:689.309908px;}
.y34{bottom:695.999908px;}
.y2e{bottom:720.029908px;}
.y7e{bottom:722.849908px;}
.y33{bottom:732.749908px;}
.y21{bottom:734.969908px;}
.y7d{bottom:755.249908px;}
.y2d{bottom:756.029908px;}
.y13{bottom:761.309908px;}
.y73{bottom:764.969908px;}
.y20{bottom:770.999908px;}
.y7c{bottom:787.649908px;}
.y2c{bottom:794.729908px;}
.y12{bottom:797.309908px;}
.y40{bottom:802.229908px;}
.y1f{bottom:806.999908px;}
.y38{bottom:817.349908px;}
.y7b{bottom:820.049908px;}
.y11{bottom:833.309908px;}
.y1e{bottom:845.699908px;}
.y7a{bottom:852.449908px;}
.y37{bottom:857.759908px;}
.y52{bottom:865.949908px;}
.y10{bottom:869.309908px;}
.y2b{bottom:878.459908px;}
.y51{bottom:883.979908px;}
.y79{bottom:886.919908px;}
.y50{bottom:903.989908px;}
.y2a{bottom:914.459908px;}
.y4f{bottom:921.989908px;}
.ye{bottom:929.309908px;}
.y1d{bottom:929.399908px;}
.y36{bottom:937.919908px;}
.y4e{bottom:939.989908px;}
.yf{bottom:941.309908px;}
.y29{bottom:950.459908px;}
.yd{bottom:961.709908px;}
.y4d{bottom:962.669908px;}
.y78{bottom:964.079908px;}
.y1c{bottom:965.399908px;}
.y4c{bottom:980.669908px;}
.y28{bottom:989.159908px;}
.yc{bottom:994.919908px;}
.y77{bottom:996.479908px;}
.y1b{bottom:1004.099908px;}
.y4b{bottom:1007.279908px;}
.y16{bottom:1023.839908px;}
.y76{bottom:1030.949908px;}
.y4a{bottom:1034.189908px;}
.y6{bottom:1043.819908px;}
.y49{bottom:1062.629908px;}
.y5{bottom:1094.249908px;}
.y22{bottom:1119.689908px;}
.y32{bottom:1121.189908px;}
.h1a{height:44.534180px;}
.h19{height:54.331699px;}
.h14{height:57.867188px;}
.h17{height:57.963633px;}
.h13{height:59.378906px;}
.h1b{height:59.731699px;}
.h12{height:62.785898px;}
.h16{height:73.653750px;}
.h10{height:75.093750px;}
.h3{height:87.484219px;}
.h4{height:89.068359px;}
.h15{height:95.378906px;}
.h18{height:95.597871px;}
.h9{height:98.865879px;}
.he{height:100.250156px;}
.hf{height:100.375312px;}
.h7{height:112.640625px;}
.h1d{height:112.765781px;}
.ha{height:125.031094px;}
.hc{height:125.156250px;}
.h6{height:138.649746px;}
.h5{height:138.748711px;}
.h1c{height:150.187500px;}
.hd{height:162.577969px;}
.hb{height:175.343906px;}
.h11{height:197.600625px;}
.h8{height:250.040625px;}
.h2{height:1177.919908px;}
.h0{height:1177.920000px;}
.h1{height:1178.250000px;}
.w1{width:1700.999975px;}
.w0{width:1701.000000px;}
.x0{left:0.000000px;}
.x15{left:16.439975px;}
.x25{left:46.679975px;}
.x1d{left:52.139975px;}
.x4c{left:66.929975px;}
.x32{left:72.329975px;}
.xe{left:75.269975px;}
.x34{left:77.399975px;}
.x11{left:78.869975px;}
.x2f{left:80.189975px;}
.x4a{left:82.169975px;}
.x2d{left:83.429975px;}
.x26{left:85.169975px;}
.x30{left:90.179975px;}
.x2{left:91.229975px;}
.x2e{left:94.859975px;}
.x3{left:95.879975px;}
.x12{left:104.369975px;}
.x4{left:111.479975px;}
.x8{left:115.319975px;}
.xf{left:157.349975px;}
.x13{left:160.319975px;}
.x51{left:197.939975px;}
.x31{left:214.829975px;}
.x2c{left:217.439975px;}
.x3c{left:233.339975px;}
.x49{left:236.879975px;}
.x10{left:239.699975px;}
.x3e{left:246.779975px;}
.x3f{left:251.219975px;}
.x2a{left:256.409975px;}
.x48{left:257.519975px;}
.x9{left:260.849975px;}
.x45{left:269.969975px;}
.x47{left:271.349975px;}
.x46{left:275.399975px;}
.x2b{left:336.479975px;}
.x22{left:445.469975px;}
.x44{left:454.079975px;}
.x3d{left:535.619975px;}
.x40{left:555.749975px;}
.x35{left:558.329975px;}
.x16{left:571.109975px;}
.x18{left:584.699975px;}
.xc{left:626.999975px;}
.x54{left:628.259975px;}
.x33{left:647.909975px;}
.x5{left:662.219975px;}
.x50{left:668.669975px;}
.x52{left:671.699975px;}
.x1b{left:676.949975px;}
.x1c{left:678.449975px;}
.x36{left:680.639975px;}
.xa{left:707.939975px;}
.xb{left:713.759975px;}
.x28{left:722.459975px;}
.x17{left:728.639975px;}
.xd{left:730.229975px;}
.x4b{left:733.319975px;}
.x27{left:739.109975px;}
.x1e{left:756.089975px;}
.x53{left:784.559975px;}
.x3a{left:801.899975px;}
.x37{left:805.289975px;}
.x3b{left:806.819975px;}
.x1f{left:810.779975px;}
.x42{left:826.079975px;}
.x20{left:828.779975px;}
.x43{left:831.029975px;}
.x4e{left:842.909975px;}
.x4f{left:852.209975px;}
.x38{left:888.389975px;}
.x41{left:912.599975px;}
.x4d{left:915.749975px;}
.x19{left:923.339975px;}
.x14{left:954.899975px;}
.x1a{left:963.839975px;}
.x1{left:969.899975px;}
.x21{left:978.059975px;}
.x39{left:990.119975px;}
.x29{left:1194.539975px;}
.x6{left:1211.489975px;}
.x7{left:1344.269975px;}
.x24{left:1439.699975px;}
.x23{left:1519.349975px;}
@media print{
.va{vertical-align:-27.200000pt;}
.v2{vertical-align:-9.813333pt;}
.v9{vertical-align:-5.653333pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:4.800000pt;}
.v5{vertical-align:19.200000pt;}
.v4{vertical-align:25.600000pt;}
.v6{vertical-align:32.000000pt;}
.v3{vertical-align:75.520000pt;}
.v1{vertical-align:122.133333pt;}
.ls9{letter-spacing:-0.203733pt;}
.ls10{letter-spacing:-0.181867pt;}
.ls8{letter-spacing:-0.144533pt;}
.lse{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.116267pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.035520pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.004693pt;}
.lsc{letter-spacing:0.010240pt;}
.ls5{letter-spacing:0.023680pt;}
.ls7{letter-spacing:0.026880pt;}
.lsb{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.144533pt;}
.ls2{letter-spacing:106.704000pt;}
.lsd{letter-spacing:242.752000pt;}
.ws21{word-spacing:-41.544320pt;}
.ws3e{word-spacing:-35.584000pt;}
.ws18{word-spacing:-29.623680pt;}
.ws17{word-spacing:-29.576320pt;}
.ws2e{word-spacing:-26.688000pt;}
.ws25{word-spacing:-24.082560pt;}
.ws29{word-spacing:-23.781973pt;}
.ws28{word-spacing:-23.752320pt;}
.ws33{word-spacing:-14.464000pt;}
.ws3c{word-spacing:-13.234560pt;}
.ws3b{word-spacing:-10.848000pt;}
.ws34{word-spacing:-9.618560pt;}
.ws20{word-spacing:-5.807360pt;}
.ws2b{word-spacing:-5.472000pt;}
.ws5{word-spacing:-1.135360pt;}
.ws15{word-spacing:-1.042453pt;}
.ws0{word-spacing:-1.019520pt;}
.ws42{word-spacing:-0.887893pt;}
.ws1{word-spacing:-0.712000pt;}
.ws2{word-spacing:-0.690560pt;}
.ws1b{word-spacing:-0.687360pt;}
.ws41{word-spacing:-0.669867pt;}
.ws8{word-spacing:-0.633600pt;}
.ws45{word-spacing:-0.384000pt;}
.ws40{word-spacing:-0.330560pt;}
.ws2a{word-spacing:-0.288000pt;}
.wsd{word-spacing:-0.231040pt;}
.ws43{word-spacing:-0.227413pt;}
.ws2d{word-spacing:-0.224000pt;}
.ws44{word-spacing:-0.213333pt;}
.ws6{word-spacing:-0.190400pt;}
.ws2c{word-spacing:-0.181333pt;}
.ws47{word-spacing:-0.149333pt;}
.wsc{word-spacing:-0.136320pt;}
.ws48{word-spacing:-0.130240pt;}
.ws3f{word-spacing:-0.064000pt;}
.ws1e{word-spacing:-0.047360pt;}
.ws4{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.041600pt;}
.ws1c{word-spacing:0.130560pt;}
.ws22{word-spacing:0.166080pt;}
.ws14{word-spacing:0.172160pt;}
.ws9{word-spacing:0.183680pt;}
.ws10{word-spacing:0.213440pt;}
.ws16{word-spacing:0.219520pt;}
.ws12{word-spacing:0.326080pt;}
.wsb{word-spacing:0.332480pt;}
.ws23{word-spacing:0.426880pt;}
.wse{word-spacing:0.438720pt;}
.ws1d{word-spacing:0.468160pt;}
.ws13{word-spacing:0.521707pt;}
.ws7{word-spacing:0.627200pt;}
.wsf{word-spacing:0.669760pt;}
.ws11{word-spacing:0.871680pt;}
.wsa{word-spacing:0.978347pt;}
.ws24{word-spacing:1.202347pt;}
.ws27{word-spacing:1.357120pt;}
.ws1f{word-spacing:1.410560pt;}
.ws19{word-spacing:1.528960pt;}
.ws30{word-spacing:7.514880pt;}
.ws2f{word-spacing:8.650240pt;}
.ws26{word-spacing:78.891840pt;}
.ws46{word-spacing:85.344000pt;}
.ws38{word-spacing:165.077333pt;}
.ws35{word-spacing:177.557333pt;}
.ws37{word-spacing:196.885333pt;}
.ws32{word-spacing:197.333333pt;}
.ws39{word-spacing:213.418667pt;}
.ws36{word-spacing:217.024000pt;}
.ws3a{word-spacing:226.253653pt;}
.ws3d{word-spacing:239.104000pt;}
.ws31{word-spacing:613.461333pt;}
.ws3{word-spacing:1133.909333pt;}
._26{margin-left:-504.422080pt;}
._8{margin-left:-16.737280pt;}
._a{margin-left:-12.053333pt;}
._f{margin-left:-9.984000pt;}
._5{margin-left:-8.448000pt;}
._10{margin-left:-6.400000pt;}
._3{margin-left:-4.808107pt;}
._4{margin-left:-3.776000pt;}
._2{margin-left:-2.784000pt;}
._0{margin-left:-1.632000pt;}
._1{width:1.056000pt;}
._c{width:1.984320pt;}
._2b{width:21.418667pt;}
._d{width:25.254187pt;}
._6{width:30.980800pt;}
._2a{width:104.992000pt;}
._29{width:106.592000pt;}
._b{width:108.515520pt;}
._28{width:112.032000pt;}
._9{width:115.520000pt;}
._7{width:117.475520pt;}
._13{width:203.466667pt;}
._18{width:212.266667pt;}
._12{width:214.848000pt;}
._1c{width:217.066667pt;}
._14{width:220.373333pt;}
._17{width:222.422080pt;}
._1b{width:227.733333pt;}
._20{width:260.933227pt;}
._1f{width:270.906560pt;}
._15{width:273.024000pt;}
._24{width:276.719893pt;}
._16{width:291.690667pt;}
._19{width:299.626667pt;}
._1d{width:311.146667pt;}
._21{width:331.973227pt;}
._23{width:347.973227pt;}
._1a{width:399.680000pt;}
._1e{width:416.000000pt;}
._22{width:432.346560pt;}
._e{width:892.490667pt;}
._25{width:1681.380480pt;}
._11{width:1936.872107pt;}
._2c{width:2199.099307pt;}
._27{width:2219.733333pt;}
.fsc{font-size:42.560000pt;}
.fsf{font-size:48.000000pt;}
.fsa{font-size:56.960000pt;}
.fse{font-size:58.560000pt;}
.fs9{font-size:64.000000pt;}
.fsd{font-size:64.106667pt;}
.fsb{font-size:69.440000pt;}
.fs0{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs8{font-size:85.546667pt;}
.fs1{font-size:96.000000pt;}
.fs11{font-size:96.106667pt;}
.fs4{font-size:106.560000pt;}
.fs5{font-size:106.666667pt;}
.fs10{font-size:128.000000pt;}
.fs6{font-size:138.560000pt;}
.fs3{font-size:149.440000pt;}
.fs2{font-size:149.546667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y2{bottom:22.053252pt;}
.y4{bottom:46.986585pt;}
.y3{bottom:80.399919pt;}
.y27{bottom:119.679919pt;}
.y6d{bottom:125.866585pt;}
.y7f{bottom:134.079919pt;}
.y23{bottom:145.653252pt;}
.ya{bottom:148.213252pt;}
.y85{bottom:148.399919pt;}
.yb{bottom:149.946585pt;}
.y83{bottom:150.799919pt;}
.y8{bottom:151.386585pt;}
.y57{bottom:154.693252pt;}
.y71{bottom:157.253252pt;}
.y24{bottom:158.639919pt;}
.y43{bottom:161.546585pt;}
.y44{bottom:164.213252pt;}
.y9{bottom:177.013252pt;}
.y7{bottom:180.186585pt;}
.y84{bottom:180.399919pt;}
.y82{bottom:182.799919pt;}
.y65{bottom:189.706585pt;}
.y5f{bottom:203.999919pt;}
.y26{bottom:204.719919pt;}
.y72{bottom:205.279919pt;}
.y53{bottom:205.466585pt;}
.y56{bottom:206.373252pt;}
.y39{bottom:207.253252pt;}
.y3e{bottom:208.079919pt;}
.y75{bottom:211.573252pt;}
.y3a{bottom:211.706585pt;}
.y3f{bottom:213.653252pt;}
.y81{bottom:217.599919pt;}
.y3d{bottom:217.999919pt;}
.y67{bottom:218.159919pt;}
.y6f{bottom:218.666585pt;}
.y48{bottom:219.013252pt;}
.y3b{bottom:219.839919pt;}
.y5b{bottom:228.533252pt;}
.y42{bottom:233.066585pt;}
.y3c{bottom:246.799919pt;}
.y47{bottom:251.039919pt;}
.y41{bottom:258.666585pt;}
.y66{bottom:277.839919pt;}
.y46{bottom:283.039919pt;}
.y68{bottom:286.133252pt;}
.y1a{bottom:304.106585pt;}
.y45{bottom:315.759919pt;}
.y60{bottom:315.866585pt;}
.y5c{bottom:316.639919pt;}
.y19{bottom:336.106585pt;}
.y70{bottom:364.373252pt;}
.y64{bottom:364.479919pt;}
.y6c{bottom:364.533252pt;}
.y18{bottom:368.106585pt;}
.y62{bottom:379.813252pt;}
.y59{bottom:384.266585pt;}
.y6e{bottom:384.746585pt;}
.y6a{bottom:384.906585pt;}
.y6b{bottom:385.546585pt;}
.y54{bottom:395.199919pt;}
.y5a{bottom:399.413252pt;}
.y5e{bottom:399.599919pt;}
.y5d{bottom:404.693252pt;}
.y17{bottom:421.893252pt;}
.y74{bottom:444.479919pt;}
.y63{bottom:446.399919pt;}
.y35{bottom:447.519919pt;}
.y55{bottom:452.479919pt;}
.y69{bottom:454.826585pt;}
.y58{bottom:466.186585pt;}
.y61{bottom:474.613252pt;}
.y31{bottom:544.026585pt;}
.y86{bottom:550.559919pt;}
.y80{bottom:572.586585pt;}
.y30{bottom:576.026585pt;}
.y15{bottom:580.719919pt;}
.y25{bottom:596.213252pt;}
.y2f{bottom:608.026585pt;}
.y14{bottom:612.719919pt;}
.y34{bottom:618.666585pt;}
.y2e{bottom:640.026585pt;}
.y7e{bottom:642.533252pt;}
.y33{bottom:651.333252pt;}
.y21{bottom:653.306585pt;}
.y7d{bottom:671.333252pt;}
.y2d{bottom:672.026585pt;}
.y13{bottom:676.719919pt;}
.y73{bottom:679.973252pt;}
.y20{bottom:685.333252pt;}
.y7c{bottom:700.133252pt;}
.y2c{bottom:706.426585pt;}
.y12{bottom:708.719919pt;}
.y40{bottom:713.093252pt;}
.y1f{bottom:717.333252pt;}
.y38{bottom:726.533252pt;}
.y7b{bottom:728.933252pt;}
.y11{bottom:740.719919pt;}
.y1e{bottom:751.733252pt;}
.y7a{bottom:757.733252pt;}
.y37{bottom:762.453252pt;}
.y52{bottom:769.733252pt;}
.y10{bottom:772.719919pt;}
.y2b{bottom:780.853252pt;}
.y51{bottom:785.759919pt;}
.y79{bottom:788.373252pt;}
.y50{bottom:803.546585pt;}
.y2a{bottom:812.853252pt;}
.y4f{bottom:819.546585pt;}
.ye{bottom:826.053252pt;}
.y1d{bottom:826.133252pt;}
.y36{bottom:833.706585pt;}
.y4e{bottom:835.546585pt;}
.yf{bottom:836.719919pt;}
.y29{bottom:844.853252pt;}
.yd{bottom:854.853252pt;}
.y4d{bottom:855.706585pt;}
.y78{bottom:856.959919pt;}
.y1c{bottom:858.133252pt;}
.y4c{bottom:871.706585pt;}
.y28{bottom:879.253252pt;}
.yc{bottom:884.373252pt;}
.y77{bottom:885.759919pt;}
.y1b{bottom:892.533252pt;}
.y4b{bottom:895.359919pt;}
.y16{bottom:910.079919pt;}
.y76{bottom:916.399919pt;}
.y4a{bottom:919.279919pt;}
.y6{bottom:927.839919pt;}
.y49{bottom:944.559919pt;}
.y5{bottom:972.666585pt;}
.y22{bottom:995.279919pt;}
.y32{bottom:996.613252pt;}
.h1a{height:39.585938pt;}
.h19{height:48.294844pt;}
.h14{height:51.437500pt;}
.h17{height:51.523229pt;}
.h13{height:52.781250pt;}
.h1b{height:53.094844pt;}
.h12{height:55.809687pt;}
.h16{height:65.470000pt;}
.h10{height:66.750000pt;}
.h3{height:77.763750pt;}
.h4{height:79.171875pt;}
.h15{height:84.781250pt;}
.h18{height:84.975885pt;}
.h9{height:87.880781pt;}
.he{height:89.111250pt;}
.hf{height:89.222500pt;}
.h7{height:100.125000pt;}
.h1d{height:100.236250pt;}
.ha{height:111.138750pt;}
.hc{height:111.250000pt;}
.h6{height:123.244219pt;}
.h5{height:123.332188pt;}
.h1c{height:133.500000pt;}
.hd{height:144.513750pt;}
.hb{height:155.861250pt;}
.h11{height:175.645000pt;}
.h8{height:222.258333pt;}
.h2{height:1047.039919pt;}
.h0{height:1047.040000pt;}
.h1{height:1047.333333pt;}
.w1{width:1511.999977pt;}
.w0{width:1512.000000pt;}
.x0{left:0.000000pt;}
.x15{left:14.613311pt;}
.x25{left:41.493311pt;}
.x1d{left:46.346644pt;}
.x4c{left:59.493311pt;}
.x32{left:64.293311pt;}
.xe{left:66.906644pt;}
.x34{left:68.799977pt;}
.x11{left:70.106644pt;}
.x2f{left:71.279977pt;}
.x4a{left:73.039977pt;}
.x2d{left:74.159977pt;}
.x26{left:75.706644pt;}
.x30{left:80.159977pt;}
.x2{left:81.093311pt;}
.x2e{left:84.319977pt;}
.x3{left:85.226644pt;}
.x12{left:92.773311pt;}
.x4{left:99.093311pt;}
.x8{left:102.506644pt;}
.xf{left:139.866644pt;}
.x13{left:142.506644pt;}
.x51{left:175.946644pt;}
.x31{left:190.959977pt;}
.x2c{left:193.279977pt;}
.x3c{left:207.413311pt;}
.x49{left:210.559977pt;}
.x10{left:213.066644pt;}
.x3e{left:219.359977pt;}
.x3f{left:223.306644pt;}
.x2a{left:227.919977pt;}
.x48{left:228.906644pt;}
.x9{left:231.866644pt;}
.x45{left:239.973311pt;}
.x47{left:241.199977pt;}
.x46{left:244.799977pt;}
.x2b{left:299.093311pt;}
.x22{left:395.973311pt;}
.x44{left:403.626644pt;}
.x3d{left:476.106644pt;}
.x40{left:493.999977pt;}
.x35{left:496.293311pt;}
.x16{left:507.653311pt;}
.x18{left:519.733311pt;}
.xc{left:557.333311pt;}
.x54{left:558.453311pt;}
.x33{left:575.919977pt;}
.x5{left:588.639977pt;}
.x50{left:594.373311pt;}
.x52{left:597.066644pt;}
.x1b{left:601.733311pt;}
.x1c{left:603.066644pt;}
.x36{left:605.013311pt;}
.xa{left:629.279977pt;}
.xb{left:634.453311pt;}
.x28{left:642.186644pt;}
.x17{left:647.679977pt;}
.xd{left:649.093311pt;}
.x4b{left:651.839977pt;}
.x27{left:656.986644pt;}
.x1e{left:672.079977pt;}
.x53{left:697.386644pt;}
.x3a{left:712.799977pt;}
.x37{left:715.813311pt;}
.x3b{left:717.173311pt;}
.x1f{left:720.693311pt;}
.x42{left:734.293311pt;}
.x20{left:736.693311pt;}
.x43{left:738.693311pt;}
.x4e{left:749.253311pt;}
.x4f{left:757.519977pt;}
.x38{left:789.679977pt;}
.x41{left:811.199977pt;}
.x4d{left:813.999977pt;}
.x19{left:820.746644pt;}
.x14{left:848.799977pt;}
.x1a{left:856.746644pt;}
.x1{left:862.133311pt;}
.x21{left:869.386644pt;}
.x39{left:880.106644pt;}
.x29{left:1061.813311pt;}
.x6{left:1076.879977pt;}
.x7{left:1194.906644pt;}
.x24{left:1279.733311pt;}
.x23{left:1350.533311pt;}
}




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