
    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_be62d3ba8174323898193729.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_bd377dd3d3cd287813baa699.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.208008;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_f25f88433ebaf51be97de2fd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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_d851d19ce69e8d57b3419d7c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_dcb5bd95ede751888dd992ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_eb2c6e48d768b4e917a8efc1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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;}
.m2{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.300000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.600000px;}
.ls0{letter-spacing:1.650000px;}
.ls2{letter-spacing:1.800000px;}
.ls1{letter-spacing:1.950000px;}
.lsb{letter-spacing:3.000000px;}
.ls6{letter-spacing:3.300000px;}
.ls5{letter-spacing:4.200000px;}
.ls4{letter-spacing:8.400000px;}
.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;}
}
.ws1{word-spacing:-37.968000px;}
.ws4{word-spacing:-25.872000px;}
.ws19{word-spacing:-23.520000px;}
.ws18{word-spacing:-21.120000px;}
.ws2{word-spacing:-19.008000px;}
.ws3{word-spacing:-4.200000px;}
.ws25{word-spacing:-3.660000px;}
.ws14{word-spacing:-3.540000px;}
.ws9{word-spacing:-3.300000px;}
.ws1e{word-spacing:-1.740000px;}
.ws8{word-spacing:-0.600000px;}
.wse{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.240000px;}
.ws22{word-spacing:-0.180000px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:0.180000px;}
.ws6{word-spacing:0.300000px;}
.wsf{word-spacing:0.420000px;}
.ws1d{word-spacing:0.600000px;}
.ws12{word-spacing:1.080000px;}
.ws15{word-spacing:1.200000px;}
.ws26{word-spacing:1.740000px;}
.ws27{word-spacing:2.340000px;}
.ws17{word-spacing:3.060000px;}
.wsa{word-spacing:3.600000px;}
.ws11{word-spacing:3.900000px;}
.ws24{word-spacing:3.960000px;}
.ws1c{word-spacing:4.920000px;}
.ws1f{word-spacing:5.640000px;}
.ws1b{word-spacing:5.940000px;}
.wsb{word-spacing:8.400000px;}
.ws13{word-spacing:8.580000px;}
.wsc{word-spacing:8.820000px;}
.ws28{word-spacing:9.240000px;}
.wsd{word-spacing:9.360000px;}
.ws16{word-spacing:10.140000px;}
.ws7{word-spacing:10.920000px;}
.ws5{word-spacing:11.040000px;}
.ws21{word-spacing:12.300000px;}
.ws20{word-spacing:17.160000px;}
.ws10{word-spacing:24.540000px;}
._7{margin-left:-16.018200px;}
._1f{margin-left:-9.456000px;}
._5{margin-left:-8.237400px;}
._6{margin-left:-6.493200px;}
._3{margin-left:-5.321400px;}
._2{margin-left:-4.116000px;}
._0{margin-left:-2.376000px;}
._1{margin-left:-1.092000px;}
._4{width:1.725000px;}
._8{width:3.420000px;}
._a{width:4.920000px;}
._b{width:6.000000px;}
._c{width:7.260000px;}
._13{width:8.340000px;}
._10{width:9.840000px;}
._12{width:10.980000px;}
._9{width:12.000000px;}
._e{width:13.560000px;}
._16{width:14.700000px;}
._1c{width:15.840000px;}
._18{width:17.040000px;}
._19{width:18.240000px;}
._1e{width:19.260000px;}
._1d{width:22.260000px;}
._15{width:31.320000px;}
._f{width:34.260000px;}
._d{width:35.580000px;}
._17{width:38.880000px;}
._11{width:40.380000px;}
._14{width:47.100000px;}
._1b{width:104.160000px;}
._1a{width:120.600000px;}
.fc2{color:rgb(236,153,94);}
.fc1{color:rgb(0,173,239);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.727200px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs5{font-size:84.000000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:82.762200px;}
.y5b{bottom:132.624750px;}
.y2e{bottom:132.840000px;}
.yd4{bottom:133.853100px;}
.ycf{bottom:134.136600px;}
.ye{bottom:134.766450px;}
.y83{bottom:135.446400px;}
.y9d{bottom:141.128700px;}
.ye8{bottom:142.357050px;}
.y96{bottom:142.640550px;}
.yc6{bottom:148.120950px;}
.yb1{bottom:149.349300px;}
.y48{bottom:149.632650px;}
.y5a{bottom:156.624750px;}
.y2d{bottom:156.840000px;}
.yd3{bottom:157.853100px;}
.yce{bottom:158.136600px;}
.y82{bottom:159.446400px;}
.y9c{bottom:165.128700px;}
.ye7{bottom:166.357050px;}
.y95{bottom:166.640550px;}
.y8{bottom:167.312400px;}
.yd{bottom:170.766450px;}
.yc5{bottom:172.120950px;}
.yb0{bottom:173.349300px;}
.y47{bottom:173.632650px;}
.y59{bottom:180.624750px;}
.ycd{bottom:182.136600px;}
.y81{bottom:183.446400px;}
.yc{bottom:188.766450px;}
.y2c{bottom:189.343800px;}
.ye6{bottom:190.357050px;}
.yd8{bottom:190.640550px;}
.yc4{bottom:196.120950px;}
.yaf{bottom:197.349300px;}
.y46{bottom:197.632650px;}
.y94{bottom:199.144500px;}
.y58{bottom:204.624750px;}
.ycc{bottom:206.136600px;}
.y80{bottom:207.446400px;}
.yd2{bottom:211.617000px;}
.y2b{bottom:213.343800px;}
.ye5{bottom:214.357050px;}
.yd7{bottom:214.640550px;}
.yc3{bottom:220.120950px;}
.yae{bottom:221.349300px;}
.y45{bottom:221.632650px;}
.y93{bottom:223.144500px;}
.yb{bottom:224.766450px;}
.y6c{bottom:225.601200px;}
.ycb{bottom:230.136600px;}
.y7f{bottom:231.446400px;}
.yd1{bottom:235.617000px;}
.y57{bottom:237.128700px;}
.y2a{bottom:237.343800px;}
.ya{bottom:238.266450px;}
.ye4{bottom:238.357050px;}
.yd6{bottom:238.640550px;}
.yad{bottom:245.349300px;}
.y44{bottom:245.632650px;}
.y92{bottom:247.144500px;}
.y6b{bottom:249.601200px;}
.yc2{bottom:252.624750px;}
.yca{bottom:254.136600px;}
.yd0{bottom:259.617000px;}
.y9{bottom:260.270400px;}
.y56{bottom:261.128700px;}
.y29{bottom:261.343800px;}
.yf0{bottom:262.264290px;}
.ye3{bottom:262.357050px;}
.yd5{bottom:262.640550px;}
.yac{bottom:269.349300px;}
.y43{bottom:269.632650px;}
.y91{bottom:271.144500px;}
.y6a{bottom:273.601200px;}
.yef{bottom:275.982450px;}
.yc1{bottom:276.624750px;}
.y9b{bottom:278.136600px;}
.y55{bottom:285.128700px;}
.y7e{bottom:285.210150px;}
.y28{bottom:285.343800px;}
.ye2{bottom:286.357050px;}
.yc9{bottom:286.640550px;}
.yab{bottom:293.349300px;}
.y90{bottom:295.144500px;}
.y69{bottom:297.601200px;}
.yc0{bottom:300.624750px;}
.y42{bottom:302.136600px;}
.y54{bottom:309.128700px;}
.y7d{bottom:309.210150px;}
.y27{bottom:309.343800px;}
.ye1{bottom:310.357050px;}
.yc8{bottom:310.640550px;}
.yaa{bottom:317.349300px;}
.y8f{bottom:319.144500px;}
.y1a{bottom:319.696800px;}
.y68{bottom:321.601200px;}
.ybf{bottom:324.624750px;}
.y41{bottom:326.136600px;}
.y53{bottom:333.128700px;}
.y26{bottom:333.343800px;}
.ye0{bottom:334.357050px;}
.yc7{bottom:334.640550px;}
.ya9{bottom:341.349300px;}
.y8e{bottom:343.144500px;}
.ybe{bottom:348.624750px;}
.y40{bottom:350.136600px;}
.y67{bottom:354.105150px;}
.y52{bottom:357.128700px;}
.y25{bottom:357.343800px;}
.ydf{bottom:358.357050px;}
.y9a{bottom:358.640550px;}
.y19{bottom:364.956600px;}
.y8d{bottom:367.144500px;}
.ybd{bottom:372.624750px;}
.ya8{bottom:373.853100px;}
.y3f{bottom:374.136600px;}
.y51{bottom:381.128700px;}
.y24{bottom:381.343800px;}
.yde{bottom:382.357050px;}
.y99{bottom:382.640550px;}
.y7c{bottom:384.233700px;}
.y66{bottom:386.609100px;}
.y18{bottom:388.956600px;}
.y8c{bottom:391.144500px;}
.ybc{bottom:396.624750px;}
.ya7{bottom:397.853100px;}
.y3e{bottom:398.136600px;}
.y50{bottom:405.128700px;}
.y23{bottom:405.343800px;}
.ydd{bottom:406.357050px;}
.y98{bottom:406.640550px;}
.y7b{bottom:408.233700px;}
.y8b{bottom:415.144500px;}
.y65{bottom:419.113050px;}
.ybb{bottom:420.624900px;}
.ya6{bottom:421.853100px;}
.y3d{bottom:422.136600px;}
.y17{bottom:422.712450px;}
.y22{bottom:429.343800px;}
.ydc{bottom:430.357050px;}
.y97{bottom:430.640550px;}
.y7a{bottom:432.233700px;}
.y4f{bottom:437.632650px;}
.y8a{bottom:439.144500px;}
.yba{bottom:444.624900px;}
.ya5{bottom:445.853100px;}
.yec{bottom:446.136600px;}
.y16{bottom:446.712450px;}
.y64{bottom:451.616850px;}
.y21{bottom:453.343800px;}
.ydb{bottom:454.357050px;}
.y3c{bottom:454.640550px;}
.y79{bottom:456.233700px;}
.yee{bottom:460.120950px;}
.y89{bottom:463.144500px;}
.yb9{bottom:468.624900px;}
.ya4{bottom:469.853100px;}
.y4e{bottom:470.136600px;}
.y20{bottom:477.343800px;}
.y3b{bottom:478.640550px;}
.y78{bottom:480.233700px;}
.y63{bottom:484.120950px;}
.y15{bottom:484.172400px;}
.y88{bottom:487.144500px;}
.yb8{bottom:492.624900px;}
.ya3{bottom:493.853100px;}
.y4d{bottom:494.136600px;}
.y1f{bottom:501.343800px;}
.y3a{bottom:502.640550px;}
.y77{bottom:504.233700px;}
.yda{bottom:508.120950px;}
.y14{bottom:508.172400px;}
.y87{bottom:511.144500px;}
.y62{bottom:516.624900px;}
.ya2{bottom:517.853100px;}
.y4c{bottom:518.136600px;}
.y39{bottom:526.640550px;}
.y76{bottom:528.233700px;}
.yd9{bottom:532.120950px;}
.y86{bottom:535.144500px;}
.yb7{bottom:540.624900px;}
.ya1{bottom:541.853100px;}
.y13{bottom:541.928250px;}
.yeb{bottom:542.136600px;}
.y61{bottom:549.128700px;}
.y38{bottom:550.640550px;}
.y7{bottom:550.981800px;}
.y75{bottom:552.233700px;}
.y1e{bottom:555.107700px;}
.y4{bottom:558.656400px;}
.y85{bottom:559.144500px;}
.yb6{bottom:564.624900px;}
.y12{bottom:565.928250px;}
.yea{bottom:566.136600px;}
.y60{bottom:573.128700px;}
.y37{bottom:574.640550px;}
.y74{bottom:576.233700px;}
.y6{bottom:577.981800px;}
.y84{bottom:583.144500px;}
.ye9{bottom:590.136600px;}
.y3{bottom:594.656400px;}
.ya0{bottom:595.617000px;}
.yb5{bottom:597.128700px;}
.y4b{bottom:598.640550px;}
.y11{bottom:599.684100px;}
.y73{bottom:600.233700px;}
.y5f{bottom:605.632650px;}
.y36{bottom:607.144500px;}
.yed{bottom:614.136600px;}
.y9f{bottom:619.617000px;}
.yb4{bottom:621.128700px;}
.y4a{bottom:622.640550px;}
.y72{bottom:624.233700px;}
.y2{bottom:630.656400px;}
.y35{bottom:631.144500px;}
.y5e{bottom:638.136600px;}
.y10{bottom:646.144050px;}
.y49{bottom:646.640550px;}
.y71{bottom:648.233700px;}
.yb3{bottom:653.632650px;}
.y34{bottom:655.144500px;}
.y5d{bottom:670.640550px;}
.y70{bottom:672.233700px;}
.y33{bottom:679.144500px;}
.yb2{bottom:686.136600px;}
.y5c{bottom:694.640550px;}
.y6f{bottom:696.233700px;}
.y32{bottom:703.144500px;}
.y1{bottom:709.176000px;}
.y9e{bottom:718.640550px;}
.y31{bottom:727.144500px;}
.y5{bottom:732.540750px;}
.y6e{bottom:749.997600px;}
.y30{bottom:751.144500px;}
.y1d{bottom:753.438300px;}
.yf{bottom:764.887350px;}
.y6d{bottom:773.997600px;}
.y2f{bottom:775.144500px;}
.y1c{bottom:777.438300px;}
.hb{height:33.290652px;}
.h6{height:42.020508px;}
.h5{height:48.023438px;}
.h8{height:54.026367px;}
.ha{height:60.029297px;}
.h2{height:66.032227px;}
.h4{height:72.035156px;}
.h3{height:78.038086px;}
.h7{height:84.041016px;}
.h9{height:95.976562px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x8{left:106.299150px;}
.x6{left:118.103550px;}
.x9{left:121.299150px;}
.xd{left:127.559100px;}
.xb{left:136.062900px;}
.x10{left:148.818900px;}
.x1{left:164.676600px;}
.x3{left:177.389250px;}
.xf{left:190.134900px;}
.x7{left:215.259900px;}
.x4{left:221.131950px;}
.x2{left:238.796100px;}
.x5{left:251.581350px;}
.xe{left:275.670150px;}
.x11{left:302.003400px;}
.xc{left:511.148550px;}
.xa{left:519.790800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls0{letter-spacing:1.466667pt;}
.ls2{letter-spacing:1.600000pt;}
.ls1{letter-spacing:1.733333pt;}
.lsb{letter-spacing:2.666667pt;}
.ls6{letter-spacing:2.933333pt;}
.ls5{letter-spacing:3.733333pt;}
.ls4{letter-spacing:7.466667pt;}
.ws1{word-spacing:-33.749333pt;}
.ws4{word-spacing:-22.997333pt;}
.ws19{word-spacing:-20.906667pt;}
.ws18{word-spacing:-18.773333pt;}
.ws2{word-spacing:-16.896000pt;}
.ws3{word-spacing:-3.733333pt;}
.ws25{word-spacing:-3.253333pt;}
.ws14{word-spacing:-3.146667pt;}
.ws9{word-spacing:-2.933333pt;}
.ws1e{word-spacing:-1.546667pt;}
.ws8{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.213333pt;}
.ws22{word-spacing:-0.160000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.160000pt;}
.ws6{word-spacing:0.266667pt;}
.wsf{word-spacing:0.373333pt;}
.ws1d{word-spacing:0.533333pt;}
.ws12{word-spacing:0.960000pt;}
.ws15{word-spacing:1.066667pt;}
.ws26{word-spacing:1.546667pt;}
.ws27{word-spacing:2.080000pt;}
.ws17{word-spacing:2.720000pt;}
.wsa{word-spacing:3.200000pt;}
.ws11{word-spacing:3.466667pt;}
.ws24{word-spacing:3.520000pt;}
.ws1c{word-spacing:4.373333pt;}
.ws1f{word-spacing:5.013333pt;}
.ws1b{word-spacing:5.280000pt;}
.wsb{word-spacing:7.466667pt;}
.ws13{word-spacing:7.626667pt;}
.wsc{word-spacing:7.840000pt;}
.ws28{word-spacing:8.213333pt;}
.wsd{word-spacing:8.320000pt;}
.ws16{word-spacing:9.013333pt;}
.ws7{word-spacing:9.706667pt;}
.ws5{word-spacing:9.813333pt;}
.ws21{word-spacing:10.933333pt;}
.ws20{word-spacing:15.253333pt;}
.ws10{word-spacing:21.813333pt;}
._7{margin-left:-14.238400pt;}
._1f{margin-left:-8.405333pt;}
._5{margin-left:-7.322133pt;}
._6{margin-left:-5.771733pt;}
._3{margin-left:-4.730133pt;}
._2{margin-left:-3.658667pt;}
._0{margin-left:-2.112000pt;}
._1{margin-left:-0.970667pt;}
._4{width:1.533333pt;}
._8{width:3.040000pt;}
._a{width:4.373333pt;}
._b{width:5.333333pt;}
._c{width:6.453333pt;}
._13{width:7.413333pt;}
._10{width:8.746667pt;}
._12{width:9.760000pt;}
._9{width:10.666667pt;}
._e{width:12.053333pt;}
._16{width:13.066667pt;}
._1c{width:14.080000pt;}
._18{width:15.146667pt;}
._19{width:16.213333pt;}
._1e{width:17.120000pt;}
._1d{width:19.786667pt;}
._15{width:27.840000pt;}
._f{width:30.453333pt;}
._d{width:31.626667pt;}
._17{width:34.560000pt;}
._11{width:35.893333pt;}
._14{width:41.866667pt;}
._1b{width:92.586667pt;}
._1a{width:107.200000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.646400pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs5{font-size:74.666667pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:73.566400pt;}
.y5b{bottom:117.888667pt;}
.y2e{bottom:118.080000pt;}
.yd4{bottom:118.980533pt;}
.ycf{bottom:119.232533pt;}
.ye{bottom:119.792400pt;}
.y83{bottom:120.396800pt;}
.y9d{bottom:125.447733pt;}
.ye8{bottom:126.539600pt;}
.y96{bottom:126.791600pt;}
.yc6{bottom:131.663067pt;}
.yb1{bottom:132.754933pt;}
.y48{bottom:133.006800pt;}
.y5a{bottom:139.222000pt;}
.y2d{bottom:139.413333pt;}
.yd3{bottom:140.313867pt;}
.yce{bottom:140.565867pt;}
.y82{bottom:141.730133pt;}
.y9c{bottom:146.781067pt;}
.ye7{bottom:147.872933pt;}
.y95{bottom:148.124933pt;}
.y8{bottom:148.722133pt;}
.yd{bottom:151.792400pt;}
.yc5{bottom:152.996400pt;}
.yb0{bottom:154.088267pt;}
.y47{bottom:154.340133pt;}
.y59{bottom:160.555333pt;}
.ycd{bottom:161.899200pt;}
.y81{bottom:163.063467pt;}
.yc{bottom:167.792400pt;}
.y2c{bottom:168.305600pt;}
.ye6{bottom:169.206267pt;}
.yd8{bottom:169.458267pt;}
.yc4{bottom:174.329733pt;}
.yaf{bottom:175.421600pt;}
.y46{bottom:175.673467pt;}
.y94{bottom:177.017333pt;}
.y58{bottom:181.888667pt;}
.ycc{bottom:183.232533pt;}
.y80{bottom:184.396800pt;}
.yd2{bottom:188.104000pt;}
.y2b{bottom:189.638933pt;}
.ye5{bottom:190.539600pt;}
.yd7{bottom:190.791600pt;}
.yc3{bottom:195.663067pt;}
.yae{bottom:196.754933pt;}
.y45{bottom:197.006800pt;}
.y93{bottom:198.350667pt;}
.yb{bottom:199.792400pt;}
.y6c{bottom:200.534400pt;}
.ycb{bottom:204.565867pt;}
.y7f{bottom:205.730133pt;}
.yd1{bottom:209.437333pt;}
.y57{bottom:210.781067pt;}
.y2a{bottom:210.972267pt;}
.ya{bottom:211.792400pt;}
.ye4{bottom:211.872933pt;}
.yd6{bottom:212.124933pt;}
.yad{bottom:218.088267pt;}
.y44{bottom:218.340133pt;}
.y92{bottom:219.684000pt;}
.y6b{bottom:221.867733pt;}
.yc2{bottom:224.555333pt;}
.yca{bottom:225.899200pt;}
.yd0{bottom:230.770667pt;}
.y9{bottom:231.351467pt;}
.y56{bottom:232.114400pt;}
.y29{bottom:232.305600pt;}
.yf0{bottom:233.123813pt;}
.ye3{bottom:233.206267pt;}
.yd5{bottom:233.458267pt;}
.yac{bottom:239.421600pt;}
.y43{bottom:239.673467pt;}
.y91{bottom:241.017333pt;}
.y6a{bottom:243.201067pt;}
.yef{bottom:245.317733pt;}
.yc1{bottom:245.888667pt;}
.y9b{bottom:247.232533pt;}
.y55{bottom:253.447733pt;}
.y7e{bottom:253.520133pt;}
.y28{bottom:253.638933pt;}
.ye2{bottom:254.539600pt;}
.yc9{bottom:254.791600pt;}
.yab{bottom:260.754933pt;}
.y90{bottom:262.350667pt;}
.y69{bottom:264.534400pt;}
.yc0{bottom:267.222000pt;}
.y42{bottom:268.565867pt;}
.y54{bottom:274.781067pt;}
.y7d{bottom:274.853467pt;}
.y27{bottom:274.972267pt;}
.ye1{bottom:275.872933pt;}
.yc8{bottom:276.124933pt;}
.yaa{bottom:282.088267pt;}
.y8f{bottom:283.684000pt;}
.y1a{bottom:284.174933pt;}
.y68{bottom:285.867733pt;}
.ybf{bottom:288.555333pt;}
.y41{bottom:289.899200pt;}
.y53{bottom:296.114400pt;}
.y26{bottom:296.305600pt;}
.ye0{bottom:297.206267pt;}
.yc7{bottom:297.458267pt;}
.ya9{bottom:303.421600pt;}
.y8e{bottom:305.017333pt;}
.ybe{bottom:309.888667pt;}
.y40{bottom:311.232533pt;}
.y67{bottom:314.760133pt;}
.y52{bottom:317.447733pt;}
.y25{bottom:317.638933pt;}
.ydf{bottom:318.539600pt;}
.y9a{bottom:318.791600pt;}
.y19{bottom:324.405867pt;}
.y8d{bottom:326.350667pt;}
.ybd{bottom:331.222000pt;}
.ya8{bottom:332.313867pt;}
.y3f{bottom:332.565867pt;}
.y51{bottom:338.781067pt;}
.y24{bottom:338.972267pt;}
.yde{bottom:339.872933pt;}
.y99{bottom:340.124933pt;}
.y7c{bottom:341.541067pt;}
.y66{bottom:343.652533pt;}
.y18{bottom:345.739200pt;}
.y8c{bottom:347.684000pt;}
.ybc{bottom:352.555333pt;}
.ya7{bottom:353.647200pt;}
.y3e{bottom:353.899200pt;}
.y50{bottom:360.114400pt;}
.y23{bottom:360.305600pt;}
.ydd{bottom:361.206267pt;}
.y98{bottom:361.458267pt;}
.y7b{bottom:362.874400pt;}
.y8b{bottom:369.017333pt;}
.y65{bottom:372.544933pt;}
.ybb{bottom:373.888800pt;}
.ya6{bottom:374.980533pt;}
.y3d{bottom:375.232533pt;}
.y17{bottom:375.744400pt;}
.y22{bottom:381.638933pt;}
.ydc{bottom:382.539600pt;}
.y97{bottom:382.791600pt;}
.y7a{bottom:384.207733pt;}
.y4f{bottom:389.006800pt;}
.y8a{bottom:390.350667pt;}
.yba{bottom:395.222133pt;}
.ya5{bottom:396.313867pt;}
.yec{bottom:396.565867pt;}
.y16{bottom:397.077733pt;}
.y64{bottom:401.437200pt;}
.y21{bottom:402.972267pt;}
.ydb{bottom:403.872933pt;}
.y3c{bottom:404.124933pt;}
.y79{bottom:405.541067pt;}
.yee{bottom:408.996400pt;}
.y89{bottom:411.684000pt;}
.yb9{bottom:416.555467pt;}
.ya4{bottom:417.647200pt;}
.y4e{bottom:417.899200pt;}
.y20{bottom:424.305600pt;}
.y3b{bottom:425.458267pt;}
.y78{bottom:426.874400pt;}
.y63{bottom:430.329733pt;}
.y15{bottom:430.375467pt;}
.y88{bottom:433.017333pt;}
.yb8{bottom:437.888800pt;}
.ya3{bottom:438.980533pt;}
.y4d{bottom:439.232533pt;}
.y1f{bottom:445.638933pt;}
.y3a{bottom:446.791600pt;}
.y77{bottom:448.207733pt;}
.yda{bottom:451.663067pt;}
.y14{bottom:451.708800pt;}
.y87{bottom:454.350667pt;}
.y62{bottom:459.222133pt;}
.ya2{bottom:460.313867pt;}
.y4c{bottom:460.565867pt;}
.y39{bottom:468.124933pt;}
.y76{bottom:469.541067pt;}
.yd9{bottom:472.996400pt;}
.y86{bottom:475.684000pt;}
.yb7{bottom:480.555467pt;}
.ya1{bottom:481.647200pt;}
.y13{bottom:481.714000pt;}
.yeb{bottom:481.899200pt;}
.y61{bottom:488.114400pt;}
.y38{bottom:489.458267pt;}
.y7{bottom:489.761600pt;}
.y75{bottom:490.874400pt;}
.y1e{bottom:493.429067pt;}
.y4{bottom:496.583467pt;}
.y85{bottom:497.017333pt;}
.yb6{bottom:501.888800pt;}
.y12{bottom:503.047333pt;}
.yea{bottom:503.232533pt;}
.y60{bottom:509.447733pt;}
.y37{bottom:510.791600pt;}
.y74{bottom:512.207733pt;}
.y6{bottom:513.761600pt;}
.y84{bottom:518.350667pt;}
.ye9{bottom:524.565867pt;}
.y3{bottom:528.583467pt;}
.ya0{bottom:529.437333pt;}
.yb5{bottom:530.781067pt;}
.y4b{bottom:532.124933pt;}
.y11{bottom:533.052533pt;}
.y73{bottom:533.541067pt;}
.y5f{bottom:538.340133pt;}
.y36{bottom:539.684000pt;}
.yed{bottom:545.899200pt;}
.y9f{bottom:550.770667pt;}
.yb4{bottom:552.114400pt;}
.y4a{bottom:553.458267pt;}
.y72{bottom:554.874400pt;}
.y2{bottom:560.583467pt;}
.y35{bottom:561.017333pt;}
.y5e{bottom:567.232533pt;}
.y10{bottom:574.350267pt;}
.y49{bottom:574.791600pt;}
.y71{bottom:576.207733pt;}
.yb3{bottom:581.006800pt;}
.y34{bottom:582.350667pt;}
.y5d{bottom:596.124933pt;}
.y70{bottom:597.541067pt;}
.y33{bottom:603.684000pt;}
.yb2{bottom:609.899200pt;}
.y5c{bottom:617.458267pt;}
.y6f{bottom:618.874400pt;}
.y32{bottom:625.017333pt;}
.y1{bottom:630.378667pt;}
.y9e{bottom:638.791600pt;}
.y31{bottom:646.350667pt;}
.y5{bottom:651.147333pt;}
.y6e{bottom:666.664533pt;}
.y30{bottom:667.684000pt;}
.y1d{bottom:669.722933pt;}
.yf{bottom:679.899867pt;}
.y6d{bottom:687.997867pt;}
.y2f{bottom:689.017333pt;}
.y1c{bottom:691.056267pt;}
.hb{height:29.591691pt;}
.h6{height:37.351562pt;}
.h5{height:42.687500pt;}
.h8{height:48.023438pt;}
.ha{height:53.359375pt;}
.h2{height:58.695312pt;}
.h4{height:64.031250pt;}
.h3{height:69.367188pt;}
.h7{height:74.703125pt;}
.h9{height:85.312500pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x8{left:94.488133pt;}
.x6{left:104.980933pt;}
.x9{left:107.821467pt;}
.xd{left:113.385867pt;}
.xb{left:120.944800pt;}
.x10{left:132.283467pt;}
.x1{left:146.379200pt;}
.x3{left:157.679333pt;}
.xf{left:169.008800pt;}
.x7{left:191.342133pt;}
.x4{left:196.561733pt;}
.x2{left:212.263200pt;}
.x5{left:223.627867pt;}
.xe{left:245.040133pt;}
.x11{left:268.447467pt;}
.xc{left:454.354267pt;}
.xa{left:462.036267pt;}
}




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