
    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_02690ac371405393db9020db.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185547;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_909c7c8cc394fd646c7da0b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174316;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_97db122394e5181ae6599e30.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928571;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_b2858d8c5daa5fa7980d570f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734863;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_78ec1d3e7caae8e1cc1cce6b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937012;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_495f205414ebf6ea87c508a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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_b142b36aee6c19761c619165.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_80ea6870f4510f4203efbcb8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_dd23899215815aa0d2b61159.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.173340;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_9ce24ce01db97df7b78f01ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.738770;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.000000px;}
.v1{vertical-align:30.000000px;}
.lsa{letter-spacing:-0.050400px;}
.lsc{letter-spacing:-0.025200px;}
.ls9{letter-spacing:-0.016800px;}
.lsf{letter-spacing:-0.012000px;}
.ls8{letter-spacing:-0.008400px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008400px;}
.lsd{letter-spacing:0.016800px;}
.ls5{letter-spacing:0.025200px;}
.ls4{letter-spacing:0.042000px;}
.ls3{letter-spacing:1.841400px;}
.lse{letter-spacing:3.004800px;}
.lsb{letter-spacing:14.842800px;}
.ls2{letter-spacing:14.850000px;}
.ls1{letter-spacing:30.032400px;}
.ls6{letter-spacing:44.910000px;}
.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;}
}
.ws8{word-spacing:-21.882000px;}
.ws7{word-spacing:-21.848400px;}
.ws6{word-spacing:-21.840000px;}
.wsd{word-spacing:0.000000px;}
.wsb{word-spacing:23.199480px;}
.wsc{word-spacing:89.964720px;}
.ws5{word-spacing:158.146800px;}
.ws1{word-spacing:158.175600px;}
.ws4{word-spacing:158.190000px;}
.ws2{word-spacing:158.194800px;}
.ws3{word-spacing:158.226000px;}
.ws0{word-spacing:158.239200px;}
.wsa{word-spacing:637.872600px;}
.ws9{word-spacing:1019.923800px;}
._12{margin-left:-15.596400px;}
._11{margin-left:-14.461800px;}
._f{margin-left:-1.033200px;}
._1{width:1.008000px;}
._a{width:2.133600px;}
._8{width:3.150000px;}
._10{width:4.292400px;}
._d{width:5.401200px;}
._7{width:7.114800px;}
._6{width:8.148000px;}
._9{width:9.340800px;}
._c{width:10.710000px;}
._4{width:11.936400px;}
._5{width:13.120800px;}
._e{width:14.792400px;}
._1a{width:16.266600px;}
._19{width:17.283000px;}
._13{width:19.009200px;}
._1b{width:20.651400px;}
._18{width:21.745500px;}
._17{width:23.121000px;}
._16{width:24.983700px;}
._14{width:26.098800px;}
._1c{width:27.871200px;}
._3{width:29.958000px;}
._1d{width:31.639200px;}
._15{width:32.665500px;}
._1e{width:34.167000px;}
._b{width:35.691600px;}
._1f{width:40.303200px;}
._24{width:514.386000px;}
._22{width:545.699400px;}
._21{width:563.980200px;}
._23{width:603.072000px;}
._0{width:845.526600px;}
._20{width:890.778000px;}
._2{width:2881.701000px;}
.fc4{color:rgb(51,122,183);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(153,153,153);}
.fc2{color:rgb(4,4,4);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(51,51,51);}
.fs6{font-size:60.000000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fs4{font-size:105.000000px;}
.fs1{font-size:132.000000px;}
.fs3{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:49.500000px;}
.ya9{bottom:70.500000px;}
.ya8{bottom:91.500000px;}
.yab{bottom:114.000000px;}
.ya7{bottom:120.000000px;}
.ya6{bottom:278.250000px;}
.y1{bottom:280.500000px;}
.y27{bottom:610.500000px;}
.ya5{bottom:721.500000px;}
.ya4{bottom:1393.500000px;}
.ya3{bottom:1483.500000px;}
.ya2{bottom:1540.500000px;}
.ya1{bottom:1597.500000px;}
.ya0{bottom:1654.500000px;}
.y9f{bottom:1711.500000px;}
.y9e{bottom:1768.500000px;}
.y9d{bottom:1825.500000px;}
.y9c{bottom:1882.500000px;}
.y9b{bottom:1939.500000px;}
.y9a{bottom:1996.500000px;}
.y99{bottom:2053.500000px;}
.y98{bottom:2110.500000px;}
.y97{bottom:2145.000000px;}
.y96{bottom:2202.000000px;}
.y95{bottom:2259.000000px;}
.y94{bottom:2293.500000px;}
.y93{bottom:2350.500000px;}
.y92{bottom:2385.000000px;}
.y91{bottom:2442.000000px;}
.y90{bottom:2499.000000px;}
.y8f{bottom:2556.000000px;}
.y8e{bottom:2613.000000px;}
.y8d{bottom:2670.000000px;}
.y8c{bottom:2704.500000px;}
.y8b{bottom:2761.500000px;}
.y8a{bottom:2796.000000px;}
.y89{bottom:2853.000000px;}
.y88{bottom:2910.000000px;}
.y87{bottom:2967.000000px;}
.y86{bottom:3024.000000px;}
.y85{bottom:3058.500000px;}
.y84{bottom:3093.000000px;}
.y83{bottom:3127.500000px;}
.y82{bottom:3162.000000px;}
.y81{bottom:3196.500000px;}
.y80{bottom:3253.500000px;}
.y26{bottom:3316.500000px;}
.y25{bottom:3346.500000px;}
.y24{bottom:3376.500000px;}
.y23{bottom:3406.500000px;}
.y7f{bottom:3925.500000px;}
.y7e{bottom:3960.000000px;}
.y7d{bottom:3994.500000px;}
.y7c{bottom:4029.000000px;}
.y7b{bottom:4086.000000px;}
.y22{bottom:4149.000000px;}
.y21{bottom:4179.000000px;}
.y20{bottom:4209.000000px;}
.y1f{bottom:4239.000000px;}
.y1e{bottom:4269.000000px;}
.y1d{bottom:4740.000000px;}
.y1c{bottom:4770.000000px;}
.y1b{bottom:4800.000000px;}
.y1a{bottom:4830.000000px;}
.y19{bottom:4860.000000px;}
.y18{bottom:5374.500000px;}
.y17{bottom:5404.500000px;}
.y16{bottom:5434.500000px;}
.y15{bottom:5464.500000px;}
.y14{bottom:5494.500000px;}
.y13{bottom:5517.000000px;}
.y12{bottom:5547.000000px;}
.y11{bottom:5577.000000px;}
.y10{bottom:5607.000000px;}
.yf{bottom:5637.000000px;}
.y7a{bottom:6043.500000px;}
.y79{bottom:6078.000000px;}
.y78{bottom:6112.500000px;}
.y77{bottom:6147.000000px;}
.y76{bottom:6181.500000px;}
.y75{bottom:6216.000000px;}
.y74{bottom:6273.000000px;}
.yc{bottom:6336.000000px;}
.ye{bottom:6355.500000px;}
.yb{bottom:6366.000000px;}
.yd{bottom:6385.500000px;}
.ya{bottom:6396.000000px;}
.y9{bottom:6910.500000px;}
.y8{bottom:6940.500000px;}
.y7{bottom:6970.500000px;}
.y6{bottom:7000.500000px;}
.y73{bottom:7519.500000px;}
.y72{bottom:7554.000000px;}
.y71{bottom:7588.500000px;}
.y70{bottom:7623.000000px;}
.y6f{bottom:7657.500000px;}
.y6e{bottom:7692.000000px;}
.y6d{bottom:7726.500000px;}
.y6c{bottom:7761.000000px;}
.y6b{bottom:7818.000000px;}
.y5{bottom:7881.000000px;}
.y4{bottom:8406.000000px;}
.y3{bottom:8436.000000px;}
.y6a{bottom:8955.000000px;}
.y69{bottom:8989.500000px;}
.y68{bottom:9024.000000px;}
.y67{bottom:9058.500000px;}
.y66{bottom:9093.000000px;}
.y65{bottom:9127.500000px;}
.y64{bottom:9162.000000px;}
.y63{bottom:9196.500000px;}
.y62{bottom:9231.000000px;}
.y61{bottom:9265.500000px;}
.y60{bottom:9322.500000px;}
.y5f{bottom:9379.500000px;}
.y5e{bottom:9414.000000px;}
.y5d{bottom:9448.500000px;}
.y5c{bottom:9483.000000px;}
.y5b{bottom:9517.500000px;}
.y5a{bottom:9552.000000px;}
.y59{bottom:9586.500000px;}
.y58{bottom:9621.000000px;}
.y57{bottom:9699.000000px;}
.y56{bottom:9733.500000px;}
.y55{bottom:9768.000000px;}
.y54{bottom:9802.500000px;}
.y53{bottom:9837.000000px;}
.y52{bottom:9871.500000px;}
.y51{bottom:9906.000000px;}
.y50{bottom:9940.500000px;}
.y4f{bottom:9975.000000px;}
.y4e{bottom:10048.500000px;}
.y4d{bottom:10083.000000px;}
.y4c{bottom:10117.500000px;}
.y4b{bottom:10152.000000px;}
.y4a{bottom:10186.500000px;}
.y49{bottom:10221.000000px;}
.y48{bottom:10255.500000px;}
.y47{bottom:10290.000000px;}
.y46{bottom:10324.500000px;}
.y45{bottom:10359.000000px;}
.y44{bottom:10393.500000px;}
.y43{bottom:10428.000000px;}
.y42{bottom:10462.500000px;}
.y41{bottom:10519.500000px;}
.y40{bottom:10554.000000px;}
.y3f{bottom:10588.500000px;}
.y3e{bottom:10623.000000px;}
.y3d{bottom:10657.500000px;}
.y3c{bottom:10692.000000px;}
.y3b{bottom:10726.500000px;}
.y3a{bottom:10761.000000px;}
.y39{bottom:10795.500000px;}
.y38{bottom:10830.000000px;}
.y37{bottom:10864.500000px;}
.y36{bottom:10899.000000px;}
.y35{bottom:10956.000000px;}
.y34{bottom:10990.500000px;}
.y33{bottom:11025.000000px;}
.y32{bottom:11059.500000px;}
.y31{bottom:11094.000000px;}
.y30{bottom:11128.500000px;}
.y2f{bottom:11185.500000px;}
.y2e{bottom:11220.000000px;}
.y2d{bottom:11254.500000px;}
.y2c{bottom:11289.000000px;}
.y2b{bottom:11323.500000px;}
.y2a{bottom:11358.000000px;}
.y29{bottom:11439.000000px;}
.y28{bottom:11508.000000px;}
.y2{bottom:11731.500000px;}
.h7{height:55.986328px;}
.h9{height:56.718750px;}
.h2{height:78.462891px;}
.h1{height:79.406250px;}
.h8{height:89.578125px;}
.h6{height:99.257812px;}
.h3{height:109.406250px;}
.h4{height:113.142857px;}
.h5{height:233.666016px;}
.h0{height:11791.500000px;}
.w1{width:2135.571667px;}
.w0{width:2136.000000px;}
.x0{left:0.000000px;}
.x28{left:160.500000px;}
.x1{left:385.500000px;}
.x14{left:788.781000px;}
.xe{left:794.195100px;}
.x8{left:795.343500px;}
.x21{left:798.204300px;}
.x12{left:801.178050px;}
.x7{left:803.838900px;}
.x1b{left:807.863550px;}
.x1c{left:815.133600px;}
.xd{left:817.466250px;}
.x13{left:823.982700px;}
.x26{left:825.492150px;}
.x1a{left:833.682900px;}
.x1d{left:835.256850px;}
.x2{left:841.898400px;}
.x3{left:843.295950px;}
.x20{left:856.467000px;}
.x6{left:857.979450px;}
.xf{left:925.629600px;}
.x15{left:965.953200px;}
.x4{left:1025.743650px;}
.x22{left:1034.028750px;}
.x29{left:1343.414100px;}
.xb{left:1372.785600px;}
.x24{left:1375.564500px;}
.x9{left:1387.392300px;}
.x1e{left:1390.355700px;}
.x10{left:1393.283250px;}
.xa{left:1397.271900px;}
.x18{left:1398.789600px;}
.x17{left:1416.600600px;}
.x1f{left:1417.749000px;}
.x23{left:1438.959300px;}
.x16{left:1445.896050px;}
.x11{left:1524.784500px;}
.x19{left:1563.432000px;}
.x5{left:1595.721000px;}
.xc{left:1608.918000px;}
.x25{left:1627.261500px;}
.x27{left:1770.281250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.666667pt;}
.v1{vertical-align:26.666667pt;}
.lsa{letter-spacing:-0.044800pt;}
.lsc{letter-spacing:-0.022400pt;}
.ls9{letter-spacing:-0.014933pt;}
.lsf{letter-spacing:-0.010667pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007467pt;}
.lsd{letter-spacing:0.014933pt;}
.ls5{letter-spacing:0.022400pt;}
.ls4{letter-spacing:0.037333pt;}
.ls3{letter-spacing:1.636800pt;}
.lse{letter-spacing:2.670933pt;}
.lsb{letter-spacing:13.193600pt;}
.ls2{letter-spacing:13.200000pt;}
.ls1{letter-spacing:26.695467pt;}
.ls6{letter-spacing:39.920000pt;}
.ws8{word-spacing:-19.450667pt;}
.ws7{word-spacing:-19.420800pt;}
.ws6{word-spacing:-19.413333pt;}
.wsd{word-spacing:0.000000pt;}
.wsb{word-spacing:20.621760pt;}
.wsc{word-spacing:79.968640pt;}
.ws5{word-spacing:140.574933pt;}
.ws1{word-spacing:140.600533pt;}
.ws4{word-spacing:140.613333pt;}
.ws2{word-spacing:140.617600pt;}
.ws3{word-spacing:140.645333pt;}
.ws0{word-spacing:140.657067pt;}
.wsa{word-spacing:566.997867pt;}
.ws9{word-spacing:906.598933pt;}
._12{margin-left:-13.863467pt;}
._11{margin-left:-12.854933pt;}
._f{margin-left:-0.918400pt;}
._1{width:0.896000pt;}
._a{width:1.896533pt;}
._8{width:2.800000pt;}
._10{width:3.815467pt;}
._d{width:4.801067pt;}
._7{width:6.324267pt;}
._6{width:7.242667pt;}
._9{width:8.302933pt;}
._c{width:9.520000pt;}
._4{width:10.610133pt;}
._5{width:11.662933pt;}
._e{width:13.148800pt;}
._1a{width:14.459200pt;}
._19{width:15.362667pt;}
._13{width:16.897067pt;}
._1b{width:18.356800pt;}
._18{width:19.329333pt;}
._17{width:20.552000pt;}
._16{width:22.207733pt;}
._14{width:23.198933pt;}
._1c{width:24.774400pt;}
._3{width:26.629333pt;}
._1d{width:28.123733pt;}
._15{width:29.036000pt;}
._1e{width:30.370667pt;}
._b{width:31.725867pt;}
._1f{width:35.825067pt;}
._24{width:457.232000pt;}
._22{width:485.066133pt;}
._21{width:501.315733pt;}
._23{width:536.064000pt;}
._0{width:751.579200pt;}
._20{width:791.802667pt;}
._2{width:2561.512000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fs4{font-size:93.333333pt;}
.fs1{font-size:117.333333pt;}
.fs3{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:44.000000pt;}
.ya9{bottom:62.666667pt;}
.ya8{bottom:81.333333pt;}
.yab{bottom:101.333333pt;}
.ya7{bottom:106.666667pt;}
.ya6{bottom:247.333333pt;}
.y1{bottom:249.333333pt;}
.y27{bottom:542.666667pt;}
.ya5{bottom:641.333333pt;}
.ya4{bottom:1238.666667pt;}
.ya3{bottom:1318.666667pt;}
.ya2{bottom:1369.333333pt;}
.ya1{bottom:1420.000000pt;}
.ya0{bottom:1470.666667pt;}
.y9f{bottom:1521.333333pt;}
.y9e{bottom:1572.000000pt;}
.y9d{bottom:1622.666667pt;}
.y9c{bottom:1673.333333pt;}
.y9b{bottom:1724.000000pt;}
.y9a{bottom:1774.666667pt;}
.y99{bottom:1825.333333pt;}
.y98{bottom:1876.000000pt;}
.y97{bottom:1906.666667pt;}
.y96{bottom:1957.333333pt;}
.y95{bottom:2008.000000pt;}
.y94{bottom:2038.666667pt;}
.y93{bottom:2089.333333pt;}
.y92{bottom:2120.000000pt;}
.y91{bottom:2170.666667pt;}
.y90{bottom:2221.333333pt;}
.y8f{bottom:2272.000000pt;}
.y8e{bottom:2322.666667pt;}
.y8d{bottom:2373.333333pt;}
.y8c{bottom:2404.000000pt;}
.y8b{bottom:2454.666667pt;}
.y8a{bottom:2485.333333pt;}
.y89{bottom:2536.000000pt;}
.y88{bottom:2586.666667pt;}
.y87{bottom:2637.333333pt;}
.y86{bottom:2688.000000pt;}
.y85{bottom:2718.666667pt;}
.y84{bottom:2749.333333pt;}
.y83{bottom:2780.000000pt;}
.y82{bottom:2810.666667pt;}
.y81{bottom:2841.333333pt;}
.y80{bottom:2892.000000pt;}
.y26{bottom:2948.000000pt;}
.y25{bottom:2974.666667pt;}
.y24{bottom:3001.333333pt;}
.y23{bottom:3028.000000pt;}
.y7f{bottom:3489.333333pt;}
.y7e{bottom:3520.000000pt;}
.y7d{bottom:3550.666667pt;}
.y7c{bottom:3581.333333pt;}
.y7b{bottom:3632.000000pt;}
.y22{bottom:3688.000000pt;}
.y21{bottom:3714.666667pt;}
.y20{bottom:3741.333333pt;}
.y1f{bottom:3768.000000pt;}
.y1e{bottom:3794.666667pt;}
.y1d{bottom:4213.333333pt;}
.y1c{bottom:4240.000000pt;}
.y1b{bottom:4266.666667pt;}
.y1a{bottom:4293.333333pt;}
.y19{bottom:4320.000000pt;}
.y18{bottom:4777.333333pt;}
.y17{bottom:4804.000000pt;}
.y16{bottom:4830.666667pt;}
.y15{bottom:4857.333333pt;}
.y14{bottom:4884.000000pt;}
.y13{bottom:4904.000000pt;}
.y12{bottom:4930.666667pt;}
.y11{bottom:4957.333333pt;}
.y10{bottom:4984.000000pt;}
.yf{bottom:5010.666667pt;}
.y7a{bottom:5372.000000pt;}
.y79{bottom:5402.666667pt;}
.y78{bottom:5433.333333pt;}
.y77{bottom:5464.000000pt;}
.y76{bottom:5494.666667pt;}
.y75{bottom:5525.333333pt;}
.y74{bottom:5576.000000pt;}
.yc{bottom:5632.000000pt;}
.ye{bottom:5649.333333pt;}
.yb{bottom:5658.666667pt;}
.yd{bottom:5676.000000pt;}
.ya{bottom:5685.333333pt;}
.y9{bottom:6142.666667pt;}
.y8{bottom:6169.333333pt;}
.y7{bottom:6196.000000pt;}
.y6{bottom:6222.666667pt;}
.y73{bottom:6684.000000pt;}
.y72{bottom:6714.666667pt;}
.y71{bottom:6745.333333pt;}
.y70{bottom:6776.000000pt;}
.y6f{bottom:6806.666667pt;}
.y6e{bottom:6837.333333pt;}
.y6d{bottom:6868.000000pt;}
.y6c{bottom:6898.666667pt;}
.y6b{bottom:6949.333333pt;}
.y5{bottom:7005.333333pt;}
.y4{bottom:7472.000000pt;}
.y3{bottom:7498.666667pt;}
.y6a{bottom:7960.000000pt;}
.y69{bottom:7990.666667pt;}
.y68{bottom:8021.333333pt;}
.y67{bottom:8052.000000pt;}
.y66{bottom:8082.666667pt;}
.y65{bottom:8113.333333pt;}
.y64{bottom:8144.000000pt;}
.y63{bottom:8174.666667pt;}
.y62{bottom:8205.333333pt;}
.y61{bottom:8236.000000pt;}
.y60{bottom:8286.666667pt;}
.y5f{bottom:8337.333333pt;}
.y5e{bottom:8368.000000pt;}
.y5d{bottom:8398.666667pt;}
.y5c{bottom:8429.333333pt;}
.y5b{bottom:8460.000000pt;}
.y5a{bottom:8490.666667pt;}
.y59{bottom:8521.333333pt;}
.y58{bottom:8552.000000pt;}
.y57{bottom:8621.333333pt;}
.y56{bottom:8652.000000pt;}
.y55{bottom:8682.666667pt;}
.y54{bottom:8713.333333pt;}
.y53{bottom:8744.000000pt;}
.y52{bottom:8774.666667pt;}
.y51{bottom:8805.333333pt;}
.y50{bottom:8836.000000pt;}
.y4f{bottom:8866.666667pt;}
.y4e{bottom:8932.000000pt;}
.y4d{bottom:8962.666667pt;}
.y4c{bottom:8993.333333pt;}
.y4b{bottom:9024.000000pt;}
.y4a{bottom:9054.666667pt;}
.y49{bottom:9085.333333pt;}
.y48{bottom:9116.000000pt;}
.y47{bottom:9146.666667pt;}
.y46{bottom:9177.333333pt;}
.y45{bottom:9208.000000pt;}
.y44{bottom:9238.666667pt;}
.y43{bottom:9269.333333pt;}
.y42{bottom:9300.000000pt;}
.y41{bottom:9350.666667pt;}
.y40{bottom:9381.333333pt;}
.y3f{bottom:9412.000000pt;}
.y3e{bottom:9442.666667pt;}
.y3d{bottom:9473.333333pt;}
.y3c{bottom:9504.000000pt;}
.y3b{bottom:9534.666667pt;}
.y3a{bottom:9565.333333pt;}
.y39{bottom:9596.000000pt;}
.y38{bottom:9626.666667pt;}
.y37{bottom:9657.333333pt;}
.y36{bottom:9688.000000pt;}
.y35{bottom:9738.666667pt;}
.y34{bottom:9769.333333pt;}
.y33{bottom:9800.000000pt;}
.y32{bottom:9830.666667pt;}
.y31{bottom:9861.333333pt;}
.y30{bottom:9892.000000pt;}
.y2f{bottom:9942.666667pt;}
.y2e{bottom:9973.333333pt;}
.y2d{bottom:10004.000000pt;}
.y2c{bottom:10034.666667pt;}
.y2b{bottom:10065.333333pt;}
.y2a{bottom:10096.000000pt;}
.y29{bottom:10168.000000pt;}
.y28{bottom:10229.333333pt;}
.y2{bottom:10428.000000pt;}
.h7{height:49.765625pt;}
.h9{height:50.416667pt;}
.h2{height:69.744792pt;}
.h1{height:70.583333pt;}
.h8{height:79.625000pt;}
.h6{height:88.229167pt;}
.h3{height:97.250000pt;}
.h4{height:100.571429pt;}
.h5{height:207.703125pt;}
.h0{height:10481.333333pt;}
.w1{width:1898.285926pt;}
.w0{width:1898.666667pt;}
.x0{left:0.000000pt;}
.x28{left:142.666667pt;}
.x1{left:342.666667pt;}
.x14{left:701.138667pt;}
.xe{left:705.951200pt;}
.x8{left:706.972000pt;}
.x21{left:709.514933pt;}
.x12{left:712.158267pt;}
.x7{left:714.523467pt;}
.x1b{left:718.100933pt;}
.x1c{left:724.563200pt;}
.xd{left:726.636667pt;}
.x13{left:732.429067pt;}
.x26{left:733.770800pt;}
.x1a{left:741.051467pt;}
.x1d{left:742.450533pt;}
.x2{left:748.354133pt;}
.x3{left:749.596400pt;}
.x20{left:761.304000pt;}
.x6{left:762.648400pt;}
.xf{left:822.781867pt;}
.x15{left:858.625067pt;}
.x4{left:911.772133pt;}
.x22{left:919.136667pt;}
.x29{left:1194.145867pt;}
.xb{left:1220.253867pt;}
.x24{left:1222.724000pt;}
.x9{left:1233.237600pt;}
.x1e{left:1235.871733pt;}
.x10{left:1238.474000pt;}
.xa{left:1242.019467pt;}
.x18{left:1243.368533pt;}
.x17{left:1259.200533pt;}
.x1f{left:1260.221333pt;}
.x23{left:1279.074933pt;}
.x16{left:1285.240933pt;}
.x11{left:1355.364000pt;}
.x19{left:1389.717333pt;}
.x5{left:1418.418667pt;}
.xc{left:1430.149333pt;}
.x25{left:1446.454667pt;}
.x27{left:1573.583333pt;}
}




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