
    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_4d422805550933018e38d10b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.754395;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_2b5803e418f6f4802ea31449.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_317dd31d9bdf79da5f4aa617.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_00e30501b1b2a38fee54ff57.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_09015af26483c8c13a6022dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a7098e68462f7b0a8df4eb14.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c191e2401b8c9ca1e940294c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_2ea06f5eeb04d1b6aee7613a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944824;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_6e0cce83e3a4ea1803ebda61.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_9c7845147ab3d78d9a4ed388.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.lsd{letter-spacing:-4.500000px;}
.ls1a{letter-spacing:-0.684000px;}
.ls16{letter-spacing:-0.378600px;}
.ls9{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.341400px;}
.ls4{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.028080px;}
.ls5{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls17{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.129600px;}
.ls1d{letter-spacing:0.148080px;}
.lsc{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.181440px;}
.lsf{letter-spacing:0.252720px;}
.ls10{letter-spacing:0.259920px;}
.ls1f{letter-spacing:0.341400px;}
.ls1b{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.378600px;}
.lsa{letter-spacing:0.378720px;}
.lsb{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.540000px;}
.lse{letter-spacing:4.140000px;}
.ls11{letter-spacing:6.480000px;}
.ls18{letter-spacing:7.740000px;}
.ls1e{letter-spacing:11.861280px;}
.ls19{letter-spacing:14.940000px;}
.ls13{letter-spacing:17.100000px;}
.ls15{letter-spacing:19.260000px;}
.ls20{letter-spacing:20.700000px;}
.ls1c{letter-spacing:25.020000px;}
.ls21{letter-spacing:49.500000px;}
.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;}
}
.ws6{word-spacing:-84.618600px;}
.ws8{word-spacing:-84.600000px;}
.ws5{word-spacing:-84.240000px;}
.ws7{word-spacing:-83.880000px;}
.ws0{word-spacing:-24.300000px;}
.wsc{word-spacing:-21.438600px;}
.wsb{word-spacing:-21.420000px;}
.ws11{word-spacing:-21.410400px;}
.ws13{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.312720px;}
.ws10{word-spacing:-21.097440px;}
.wse{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws3{word-spacing:-21.031920px;}
.ws4{word-spacing:-20.718600px;}
.wsa{word-spacing:-20.700000px;}
.wsf{word-spacing:-16.560000px;}
.ws14{word-spacing:-14.940000px;}
.ws12{word-spacing:-0.084240px;}
.ws9{word-spacing:0.000000px;}
._1f{margin-left:-19.818720px;}
._12{margin-left:-6.212160px;}
._9{margin-left:-5.028720px;}
._8{margin-left:-3.875040px;}
._5{margin-left:-2.611440px;}
._0{margin-left:-1.263600px;}
._1{width:1.241040px;}
._e{width:2.273280px;}
._b{width:3.496800px;}
._2{width:4.885920px;}
._3{width:5.919360px;}
._4{width:7.507680px;}
._a{width:8.857440px;}
._11{width:10.614240px;}
._24{width:11.643600px;}
._15{width:13.141440px;}
._f{width:14.236560px;}
._13{width:16.538160px;}
._10{width:18.027360px;}
._14{width:19.375200px;}
._1c{width:22.709280px;}
._1b{width:23.755680px;}
._19{width:25.242480px;}
._1a{width:26.451360px;}
._6{width:28.894320px;}
._7{width:30.156960px;}
._22{width:31.842720px;}
._21{width:33.190560px;}
._28{width:38.534400px;}
._1d{width:40.108080px;}
._18{width:41.361840px;}
._20{width:42.541200px;}
._25{width:48.774960px;}
._2b{width:49.967040px;}
._2c{width:51.452880px;}
._29{width:54.334800px;}
._16{width:57.788640px;}
._17{width:59.555280px;}
._23{width:67.728960px;}
._2a{width:69.463440px;}
._d{width:72.699120px;}
._c{width:73.710000px;}
._26{width:158.708160px;}
._27{width:159.798480px;}
._1e{width:217.844640px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y4{bottom:-14.580000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.680000px;}
.y8{bottom:5.400000px;}
.y7{bottom:6.300000px;}
.y9{bottom:14.400000px;}
.y6{bottom:34.200000px;}
.y35{bottom:88.236000px;}
.y43{bottom:97.956000px;}
.y34{bottom:105.336000px;}
.y33{bottom:110.556000px;}
.y26{bottom:117.396000px;}
.y53{bottom:122.616000px;}
.y32{bottom:123.876000px;}
.y42{bottom:126.396000px;}
.y41{bottom:132.336000px;}
.y52{bottom:139.896000px;}
.y40{bottom:145.116000px;}
.y25{bottom:153.570000px;}
.y51{bottom:158.430000px;}
.y3f{bottom:162.390000px;}
.y3e{bottom:167.610000px;}
.y3d{bottom:179.670000px;}
.y31{bottom:189.750000px;}
.y24{bottom:189.930000px;}
.y3c{bottom:196.770000px;}
.y3b{bottom:214.050000px;}
.y3a{bottom:219.270000px;}
.y4f{bottom:224.490000px;}
.y30{bottom:225.930000px;}
.y23{bottom:226.110000px;}
.y50{bottom:232.050000px;}
.y39{bottom:232.590000px;}
.y4e{bottom:260.670000px;}
.y22{bottom:262.290000px;}
.y4d{bottom:296.850000px;}
.y21{bottom:298.470000px;}
.y38{bottom:306.030000px;}
.y4c{bottom:333.210000px;}
.y20{bottom:334.650000px;}
.y4b{bottom:369.435000px;}
.y2f{bottom:370.875000px;}
.y1f{bottom:371.055000px;}
.y4a{bottom:405.615000px;}
.y1e{bottom:407.235000px;}
.y37{bottom:414.795000px;}
.y49{bottom:441.795000px;}
.y1d{bottom:443.415000px;}
.y48{bottom:478.155000px;}
.y1c{bottom:479.595000px;}
.y47{bottom:514.335000px;}
.y2e{bottom:515.775000px;}
.y1b{bottom:515.955000px;}
.y46{bottom:550.515000px;}
.y2d{bottom:551.955000px;}
.y1a{bottom:552.135000px;}
.y45{bottom:586.695000px;}
.y19{bottom:588.315000px;}
.y44{bottom:622.905000px;}
.y18{bottom:624.525000px;}
.y2c{bottom:632.085000px;}
.y2b{bottom:660.705000px;}
.y17{bottom:660.885000px;}
.y2a{bottom:696.885000px;}
.y16{bottom:697.065000px;}
.y15{bottom:733.245000px;}
.y14{bottom:769.425000px;}
.y13{bottom:805.605000px;}
.y54{bottom:813.165000px;}
.y29{bottom:841.785000px;}
.y12{bottom:841.965000px;}
.y11{bottom:878.190000px;}
.y10{bottom:914.370000px;}
.y36{bottom:921.930000px;}
.yf{bottom:950.550000px;}
.y28{bottom:986.730000px;}
.ye{bottom:986.910000px;}
.y27{bottom:1022.910000px;}
.yd{bottom:1023.090000px;}
.yc{bottom:1059.270000px;}
.yb{bottom:1095.450000px;}
.ya{bottom:1131.630000px;}
.y5{bottom:1155.960000px;}
.y3{bottom:1177.020000px;}
.y1{bottom:1194.300000px;}
.h4{height:6.480000px;}
.h2{height:25.740000px;}
.h5{height:27.720000px;}
.he{height:38.158594px;}
.h11{height:40.985156px;}
.h8{height:47.344922px;}
.hd{height:52.998047px;}
.hf{height:58.651172px;}
.hb{height:59.436914px;}
.h10{height:60.917695px;}
.h14{height:61.423863px;}
.h3{height:62.028281px;}
.h12{height:65.010937px;}
.hc{height:82.635820px;}
.h9{height:82.676953px;}
.h6{height:83.787539px;}
.ha{height:84.898125px;}
.h13{height:86.585445px;}
.h7{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:404.205000px;}
.w2{width:425.235000px;}
.w5{width:765.690000px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x9{left:13.860000px;}
.x7{left:28.620000px;}
.x1{left:31.860000px;}
.x6{left:84.959987px;}
.x16{left:89.855987px;}
.x4{left:98.850000px;}
.xb{left:108.395987px;}
.x2{left:110.376000px;}
.xa{left:127.475987px;}
.xc{left:160.229987px;}
.x1d{left:174.269973px;}
.x19{left:177.149973px;}
.x1e{left:181.109987px;}
.x1a{left:183.989987px;}
.xf{left:253.289987px;}
.x21{left:271.109987px;}
.x15{left:301.034987px;}
.x10{left:310.574987px;}
.x1b{left:313.634973px;}
.xe{left:319.034987px;}
.x1c{left:320.474987px;}
.x13{left:330.734973px;}
.x14{left:337.574987px;}
.x11{left:373.574987px;}
.x12{left:392.654987px;}
.xd{left:446.474987px;}
.x3{left:457.095000px;}
.x17{left:625.064973px;}
.x18{left:631.904987px;}
.x1f{left:779.189973px;}
.x20{left:786.029987px;}
.x8{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-4.000000pt;}
.ls1a{letter-spacing:-0.608000pt;}
.ls16{letter-spacing:-0.336533pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.303467pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.024960pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls17{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.115200pt;}
.ls1d{letter-spacing:0.131627pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.161280pt;}
.lsf{letter-spacing:0.224640pt;}
.ls10{letter-spacing:0.231040pt;}
.ls1f{letter-spacing:0.303467pt;}
.ls1b{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.336533pt;}
.lsa{letter-spacing:0.336640pt;}
.lsb{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.480000pt;}
.lse{letter-spacing:3.680000pt;}
.ls11{letter-spacing:5.760000pt;}
.ls18{letter-spacing:6.880000pt;}
.ls1e{letter-spacing:10.543360pt;}
.ls19{letter-spacing:13.280000pt;}
.ls13{letter-spacing:15.200000pt;}
.ls15{letter-spacing:17.120000pt;}
.ls20{letter-spacing:18.400000pt;}
.ls1c{letter-spacing:22.240000pt;}
.ls21{letter-spacing:44.000000pt;}
.ws6{word-spacing:-75.216533pt;}
.ws8{word-spacing:-75.200000pt;}
.ws5{word-spacing:-74.880000pt;}
.ws7{word-spacing:-74.560000pt;}
.ws0{word-spacing:-21.600000pt;}
.wsc{word-spacing:-19.056533pt;}
.wsb{word-spacing:-19.040000pt;}
.ws11{word-spacing:-19.031467pt;}
.ws13{word-spacing:-19.023467pt;}
.wsd{word-spacing:-18.944640pt;}
.ws10{word-spacing:-18.753280pt;}
.wse{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws3{word-spacing:-18.695040pt;}
.ws4{word-spacing:-18.416533pt;}
.wsa{word-spacing:-18.400000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws14{word-spacing:-13.280000pt;}
.ws12{word-spacing:-0.074880pt;}
.ws9{word-spacing:0.000000pt;}
._1f{margin-left:-17.616640pt;}
._12{margin-left:-5.521920pt;}
._9{margin-left:-4.469973pt;}
._8{margin-left:-3.444480pt;}
._5{margin-left:-2.321280pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.103147pt;}
._e{width:2.020693pt;}
._b{width:3.108267pt;}
._2{width:4.343040pt;}
._3{width:5.261653pt;}
._4{width:6.673493pt;}
._a{width:7.873280pt;}
._11{width:9.434880pt;}
._24{width:10.349867pt;}
._15{width:11.681280pt;}
._f{width:12.654720pt;}
._13{width:14.700587pt;}
._10{width:16.024320pt;}
._14{width:17.222400pt;}
._1c{width:20.186027pt;}
._1b{width:21.116160pt;}
._19{width:22.437760pt;}
._1a{width:23.512320pt;}
._6{width:25.683840pt;}
._7{width:26.806187pt;}
._22{width:28.304640pt;}
._21{width:29.502720pt;}
._28{width:34.252800pt;}
._1d{width:35.651627pt;}
._18{width:36.766080pt;}
._20{width:37.814400pt;}
._25{width:43.355520pt;}
._2b{width:44.415147pt;}
._2c{width:45.735893pt;}
._29{width:48.297600pt;}
._16{width:51.367680pt;}
._17{width:52.938027pt;}
._23{width:60.203520pt;}
._2a{width:61.745280pt;}
._d{width:64.621440pt;}
._c{width:65.520000pt;}
._26{width:141.073920pt;}
._27{width:142.043093pt;}
._1e{width:193.639680pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y4{bottom:-12.960000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.160000pt;}
.y8{bottom:4.800000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:12.800000pt;}
.y6{bottom:30.400000pt;}
.y35{bottom:78.432000pt;}
.y43{bottom:87.072000pt;}
.y34{bottom:93.632000pt;}
.y33{bottom:98.272000pt;}
.y26{bottom:104.352000pt;}
.y53{bottom:108.992000pt;}
.y32{bottom:110.112000pt;}
.y42{bottom:112.352000pt;}
.y41{bottom:117.632000pt;}
.y52{bottom:124.352000pt;}
.y40{bottom:128.992000pt;}
.y25{bottom:136.506667pt;}
.y51{bottom:140.826667pt;}
.y3f{bottom:144.346667pt;}
.y3e{bottom:148.986667pt;}
.y3d{bottom:159.706667pt;}
.y31{bottom:168.666667pt;}
.y24{bottom:168.826667pt;}
.y3c{bottom:174.906667pt;}
.y3b{bottom:190.266667pt;}
.y3a{bottom:194.906667pt;}
.y4f{bottom:199.546667pt;}
.y30{bottom:200.826667pt;}
.y23{bottom:200.986667pt;}
.y50{bottom:206.266667pt;}
.y39{bottom:206.746667pt;}
.y4e{bottom:231.706667pt;}
.y22{bottom:233.146667pt;}
.y4d{bottom:263.866667pt;}
.y21{bottom:265.306667pt;}
.y38{bottom:272.026667pt;}
.y4c{bottom:296.186667pt;}
.y20{bottom:297.466667pt;}
.y4b{bottom:328.386667pt;}
.y2f{bottom:329.666667pt;}
.y1f{bottom:329.826667pt;}
.y4a{bottom:360.546667pt;}
.y1e{bottom:361.986667pt;}
.y37{bottom:368.706667pt;}
.y49{bottom:392.706667pt;}
.y1d{bottom:394.146667pt;}
.y48{bottom:425.026667pt;}
.y1c{bottom:426.306667pt;}
.y47{bottom:457.186667pt;}
.y2e{bottom:458.466667pt;}
.y1b{bottom:458.626667pt;}
.y46{bottom:489.346667pt;}
.y2d{bottom:490.626667pt;}
.y1a{bottom:490.786667pt;}
.y45{bottom:521.506667pt;}
.y19{bottom:522.946667pt;}
.y44{bottom:553.693333pt;}
.y18{bottom:555.133333pt;}
.y2c{bottom:561.853333pt;}
.y2b{bottom:587.293333pt;}
.y17{bottom:587.453333pt;}
.y2a{bottom:619.453333pt;}
.y16{bottom:619.613333pt;}
.y15{bottom:651.773333pt;}
.y14{bottom:683.933333pt;}
.y13{bottom:716.093333pt;}
.y54{bottom:722.813333pt;}
.y29{bottom:748.253333pt;}
.y12{bottom:748.413333pt;}
.y11{bottom:780.613333pt;}
.y10{bottom:812.773333pt;}
.y36{bottom:819.493333pt;}
.yf{bottom:844.933333pt;}
.y28{bottom:877.093333pt;}
.ye{bottom:877.253333pt;}
.y27{bottom:909.253333pt;}
.yd{bottom:909.413333pt;}
.yc{bottom:941.573333pt;}
.yb{bottom:973.733333pt;}
.ya{bottom:1005.893333pt;}
.y5{bottom:1027.520000pt;}
.y3{bottom:1046.240000pt;}
.y1{bottom:1061.600000pt;}
.h4{height:5.760000pt;}
.h2{height:22.880000pt;}
.h5{height:24.640000pt;}
.he{height:33.918750pt;}
.h11{height:36.431250pt;}
.h8{height:42.084375pt;}
.hd{height:47.109375pt;}
.hf{height:52.134375pt;}
.hb{height:52.832812pt;}
.h10{height:54.149062pt;}
.h14{height:54.598989pt;}
.h3{height:55.136250pt;}
.h12{height:57.787500pt;}
.hc{height:73.454062pt;}
.h9{height:73.490625pt;}
.h6{height:74.477812pt;}
.ha{height:75.465000pt;}
.h13{height:76.964840pt;}
.h7{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:359.293333pt;}
.w2{width:377.986667pt;}
.w5{width:680.613333pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x9{left:12.320000pt;}
.x7{left:25.440000pt;}
.x1{left:28.320000pt;}
.x6{left:75.519988pt;}
.x16{left:79.871988pt;}
.x4{left:87.866667pt;}
.xb{left:96.351988pt;}
.x2{left:98.112000pt;}
.xa{left:113.311988pt;}
.xc{left:142.426655pt;}
.x1d{left:154.906643pt;}
.x19{left:157.466643pt;}
.x1e{left:160.986655pt;}
.x1a{left:163.546655pt;}
.xf{left:225.146655pt;}
.x21{left:240.986655pt;}
.x15{left:267.586655pt;}
.x10{left:276.066655pt;}
.x1b{left:278.786643pt;}
.xe{left:283.586655pt;}
.x1c{left:284.866655pt;}
.x13{left:293.986643pt;}
.x14{left:300.066655pt;}
.x11{left:332.066655pt;}
.x12{left:349.026655pt;}
.xd{left:396.866655pt;}
.x3{left:406.306667pt;}
.x17{left:555.613310pt;}
.x18{left:561.693322pt;}
.x1f{left:692.613310pt;}
.x20{left:698.693322pt;}
.x8{left:708.933333pt;}
}




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