
    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_53fddbb8405a6efe39fb9aef.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_511618a75a87f97761576ec6.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_c3e7f37b997919a04eddaad6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3748038ee07960d4e2727757.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_d86fe2c191bb807b8f216018.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0de65c3793c6bca4615932dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_74274dad47cc5cd6d1c15eb0.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_f366c0efd70ac22c34edb029.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_7fd5dbb5fad7dbd87dab9e88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_f29245dc3d6bab3cb8b8194d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4b4111532c94604fed97891d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0353d36ddb39033c5599d318.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;}
.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);}
.v1{vertical-align:-97.200000px;}
.v0{vertical-align:0.000000px;}
.ls30{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.576000px;}
.ls20{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls31{letter-spacing:-0.058320px;}
.ls1a{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.192000px;}
.ls1{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.259920px;}
.ls2a{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.324000px;}
.ls2e{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.408000px;}
.ls8{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.468000px;}
.ls10{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.552000px;}
.ls21{letter-spacing:0.612000px;}
.ls6{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.864000px;}
.ls36{letter-spacing:0.984000px;}
.ls28{letter-spacing:1.008000px;}
.ls2b{letter-spacing:1.440000px;}
.ls12{letter-spacing:2.160000px;}
.ls34{letter-spacing:2.880000px;}
.ls15{letter-spacing:5.760000px;}
.lsb{letter-spacing:7.200000px;}
.lsc{letter-spacing:7.320000px;}
.ls13{letter-spacing:7.920000px;}
.ls37{letter-spacing:10.080000px;}
.ls14{letter-spacing:10.800000px;}
.ls22{letter-spacing:11.520000px;}
.ls26{letter-spacing:13.680000px;}
.ls32{letter-spacing:16.560000px;}
.ls33{letter-spacing:18.720000px;}
.ls23{letter-spacing:19.440000px;}
.ls27{letter-spacing:21.060000px;}
.ls29{letter-spacing:21.600000px;}
.ls24{letter-spacing:23.040000px;}
.ls2d{letter-spacing:28.080000px;}
.ls11{letter-spacing:29.520000px;}
.ls17{letter-spacing:31.680000px;}
.lsd{letter-spacing:32.400000px;}
.ls35{letter-spacing:33.120000px;}
.ls2c{letter-spacing:46.080000px;}
.ls16{letter-spacing:49.680000px;}
.ls9{letter-spacing:61.200000px;}
.ls38{letter-spacing:138.384000px;}
.ls0{letter-spacing:1039.457280px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws10{word-spacing:-18.864000px;}
.ws8{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.504000px;}
.ws11{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.wsd{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.wsf{word-spacing:-13.505760px;}
.wse{word-spacing:-13.447440px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-3.768000px;}
._5{margin-left:-2.592000px;}
._0{margin-left:-1.072320px;}
._1{width:1.032000px;}
._9{width:2.592000px;}
._a{width:4.224000px;}
._11{width:5.520000px;}
._6{width:7.344000px;}
._14{width:9.029280px;}
._2{width:10.080000px;}
._d{width:11.820000px;}
._1d{width:13.392000px;}
._e{width:14.400000px;}
._f{width:15.744000px;}
._1c{width:16.848000px;}
._15{width:19.416000px;}
._17{width:20.508000px;}
._1a{width:21.744000px;}
._16{width:23.328000px;}
._10{width:24.808320px;}
._1f{width:27.360000px;}
._b{width:28.944000px;}
._c{width:30.144000px;}
._8{width:31.440000px;}
._7{width:32.472000px;}
._23{width:33.480000px;}
._27{width:34.920000px;}
._1b{width:36.432000px;}
._28{width:38.008320px;}
._18{width:39.096000px;}
._19{width:40.188000px;}
._21{width:41.328000px;}
._22{width:43.068000px;}
._26{width:44.328000px;}
._1e{width:45.936000px;}
._12{width:49.440000px;}
._13{width:50.532000px;}
._20{width:59.328000px;}
._3{width:60.912000px;}
._25{width:73.632000px;}
._24{width:74.736000px;}
.fc2{color:rgb(33,37,41);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(57,127,172);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.600000px;}
.y9{bottom:3.780000px;}
.y7{bottom:18.000000px;}
.y5{bottom:22.500000px;}
.y8{bottom:22.680000px;}
.y4{bottom:41.400000px;}
.y37{bottom:88.236000px;}
.y67{bottom:88.956000px;}
.y36{bottom:93.456000px;}
.y66{bottom:94.176000px;}
.y35{bottom:105.876000px;}
.y65{bottom:106.416000px;}
.y64{bottom:111.636000px;}
.y6a{bottom:115.776000px;}
.y63{bottom:123.696000px;}
.y62{bottom:128.916000px;}
.y69{bottom:139.536000px;}
.y61{bottom:140.976000px;}
.y60{bottom:146.196000px;}
.y34{bottom:151.410000px;}
.y5f{bottom:158.610000px;}
.y68{bottom:163.290000px;}
.y33{bottom:175.170000px;}
.y5e{bottom:187.230000px;}
.y31{bottom:198.930000px;}
.y32{bottom:205.770000px;}
.y5d{bottom:210.990000px;}
.y30{bottom:222.690000px;}
.y5c{bottom:234.750000px;}
.y2f{bottom:246.630000px;}
.y5b{bottom:258.510000px;}
.y2e{bottom:270.390000px;}
.y5a{bottom:282.450000px;}
.y2d{bottom:294.150000px;}
.y59{bottom:306.210000px;}
.y2c{bottom:317.910000px;}
.y58{bottom:329.970000px;}
.y2b{bottom:341.895000px;}
.y57{bottom:353.775000px;}
.y2a{bottom:365.655000px;}
.y56{bottom:377.715000px;}
.y29{bottom:389.415000px;}
.y55{bottom:401.475000px;}
.y28{bottom:413.175000px;}
.y54{bottom:425.235000px;}
.y27{bottom:437.115000px;}
.y53{bottom:448.995000px;}
.y26{bottom:460.875000px;}
.y52{bottom:472.935000px;}
.y25{bottom:484.635000px;}
.y51{bottom:496.695000px;}
.y24{bottom:508.395000px;}
.y50{bottom:520.455000px;}
.y23{bottom:532.335000px;}
.y4f{bottom:544.215000px;}
.y22{bottom:556.095000px;}
.y4e{bottom:567.975000px;}
.y21{bottom:579.855000px;}
.y4d{bottom:591.915000px;}
.y20{bottom:603.615000px;}
.y4c{bottom:615.705000px;}
.y1f{bottom:627.585000px;}
.y4b{bottom:639.465000px;}
.y1e{bottom:651.345000px;}
.y4a{bottom:663.225000px;}
.y1d{bottom:675.105000px;}
.y49{bottom:687.165000px;}
.y1c{bottom:698.865000px;}
.y48{bottom:710.925000px;}
.y1b{bottom:722.625000px;}
.y47{bottom:734.685000px;}
.y1a{bottom:746.565000px;}
.y46{bottom:758.445000px;}
.y19{bottom:770.325000px;}
.y45{bottom:782.385000px;}
.y18{bottom:794.085000px;}
.y44{bottom:806.145000px;}
.y17{bottom:817.845000px;}
.y43{bottom:829.905000px;}
.y16{bottom:841.785000px;}
.y42{bottom:853.665000px;}
.y15{bottom:865.545000px;}
.y40{bottom:877.650000px;}
.y41{bottom:884.490000px;}
.y14{bottom:889.350000px;}
.y3f{bottom:901.410000px;}
.y13{bottom:913.110000px;}
.y3e{bottom:925.170000px;}
.y12{bottom:937.050000px;}
.y3c{bottom:948.930000px;}
.y3d{bottom:955.770000px;}
.y11{bottom:960.810000px;}
.y3b{bottom:972.870000px;}
.y10{bottom:984.570000px;}
.y3a{bottom:996.630000px;}
.yf{bottom:1020.390000px;}
.y39{bottom:1027.230000px;}
.ye{bottom:1044.150000px;}
.yd{bottom:1067.910000px;}
.yc{bottom:1091.850000px;}
.yb{bottom:1115.610000px;}
.y38{bottom:1122.450000px;}
.ya{bottom:1139.400000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1209.060000px;}
.y1{bottom:1233.180000px;}
.h4{height:37.980000px;}
.h9{height:38.158594px;}
.hd{height:38.671172px;}
.h8{height:47.344922px;}
.hb{height:50.273438px;}
.ha{height:58.651172px;}
.hc{height:59.439023px;}
.h3{height:65.010937px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.h5{height:72.562500px;}
.he{height:74.004654px;}
.h2{height:87.859687px;}
.h0{height:1263.420000px;}
.h1{height:1263.750000px;}
.w3{width:23.760000px;}
.w1{width:894.000000px;}
.w4{width:894.059973px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x4{left:3.600000px;}
.x1{left:84.995987px;}
.xf{left:89.855987px;}
.x5{left:91.835987px;}
.x12{left:160.409973px;}
.x13{left:166.529987px;}
.xc{left:185.429973px;}
.xd{left:191.549987px;}
.xa{left:231.509987px;}
.x8{left:267.014987px;}
.x9{left:299.234987px;}
.xe{left:301.034987px;}
.x10{left:317.954973px;}
.x11{left:324.074987px;}
.x18{left:326.054987px;}
.x6{left:350.714987px;}
.xb{left:381.314987px;}
.x7{left:432.824987px;}
.x3{left:442.365000px;}
.x2{left:457.664987px;}
.x16{left:599.369973px;}
.x17{left:605.489987px;}
.x14{left:737.099973px;}
.x15{left:743.219987px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls30{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.512000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls31{letter-spacing:-0.051840pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.170667pt;}
.ls1{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.231040pt;}
.ls2a{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.288000pt;}
.ls2e{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.362667pt;}
.ls8{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.416000pt;}
.ls10{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.490667pt;}
.ls21{letter-spacing:0.544000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.768000pt;}
.ls36{letter-spacing:0.874667pt;}
.ls28{letter-spacing:0.896000pt;}
.ls2b{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.920000pt;}
.ls34{letter-spacing:2.560000pt;}
.ls15{letter-spacing:5.120000pt;}
.lsb{letter-spacing:6.400000pt;}
.lsc{letter-spacing:6.506667pt;}
.ls13{letter-spacing:7.040000pt;}
.ls37{letter-spacing:8.960000pt;}
.ls14{letter-spacing:9.600000pt;}
.ls22{letter-spacing:10.240000pt;}
.ls26{letter-spacing:12.160000pt;}
.ls32{letter-spacing:14.720000pt;}
.ls33{letter-spacing:16.640000pt;}
.ls23{letter-spacing:17.280000pt;}
.ls27{letter-spacing:18.720000pt;}
.ls29{letter-spacing:19.200000pt;}
.ls24{letter-spacing:20.480000pt;}
.ls2d{letter-spacing:24.960000pt;}
.ls11{letter-spacing:26.240000pt;}
.ls17{letter-spacing:28.160000pt;}
.lsd{letter-spacing:28.800000pt;}
.ls35{letter-spacing:29.440000pt;}
.ls2c{letter-spacing:40.960000pt;}
.ls16{letter-spacing:44.160000pt;}
.ls9{letter-spacing:54.400000pt;}
.ls38{letter-spacing:123.008000pt;}
.ls0{letter-spacing:923.962027pt;}
.ws0{word-spacing:-64.000000pt;}
.ws10{word-spacing:-16.768000pt;}
.ws8{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.448000pt;}
.ws11{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.wsd{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.953280pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-3.349333pt;}
._5{margin-left:-2.304000pt;}
._0{margin-left:-0.953173pt;}
._1{width:0.917333pt;}
._9{width:2.304000pt;}
._a{width:3.754667pt;}
._11{width:4.906667pt;}
._6{width:6.528000pt;}
._14{width:8.026027pt;}
._2{width:8.960000pt;}
._d{width:10.506667pt;}
._1d{width:11.904000pt;}
._e{width:12.800000pt;}
._f{width:13.994667pt;}
._1c{width:14.976000pt;}
._15{width:17.258667pt;}
._17{width:18.229333pt;}
._1a{width:19.328000pt;}
._16{width:20.736000pt;}
._10{width:22.051840pt;}
._1f{width:24.320000pt;}
._b{width:25.728000pt;}
._c{width:26.794667pt;}
._8{width:27.946667pt;}
._7{width:28.864000pt;}
._23{width:29.760000pt;}
._27{width:31.040000pt;}
._1b{width:32.384000pt;}
._28{width:33.785173pt;}
._18{width:34.752000pt;}
._19{width:35.722667pt;}
._21{width:36.736000pt;}
._22{width:38.282667pt;}
._26{width:39.402667pt;}
._1e{width:40.832000pt;}
._12{width:43.946667pt;}
._13{width:44.917333pt;}
._20{width:52.736000pt;}
._3{width:54.144000pt;}
._25{width:65.450667pt;}
._24{width:66.432000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.200000pt;}
.y9{bottom:3.360000pt;}
.y7{bottom:16.000000pt;}
.y5{bottom:20.000000pt;}
.y8{bottom:20.160000pt;}
.y4{bottom:36.800000pt;}
.y37{bottom:78.432000pt;}
.y67{bottom:79.072000pt;}
.y36{bottom:83.072000pt;}
.y66{bottom:83.712000pt;}
.y35{bottom:94.112000pt;}
.y65{bottom:94.592000pt;}
.y64{bottom:99.232000pt;}
.y6a{bottom:102.912000pt;}
.y63{bottom:109.952000pt;}
.y62{bottom:114.592000pt;}
.y69{bottom:124.032000pt;}
.y61{bottom:125.312000pt;}
.y60{bottom:129.952000pt;}
.y34{bottom:134.586667pt;}
.y5f{bottom:140.986667pt;}
.y68{bottom:145.146667pt;}
.y33{bottom:155.706667pt;}
.y5e{bottom:166.426667pt;}
.y31{bottom:176.826667pt;}
.y32{bottom:182.906667pt;}
.y5d{bottom:187.546667pt;}
.y30{bottom:197.946667pt;}
.y5c{bottom:208.666667pt;}
.y2f{bottom:219.226667pt;}
.y5b{bottom:229.786667pt;}
.y2e{bottom:240.346667pt;}
.y5a{bottom:251.066667pt;}
.y2d{bottom:261.466667pt;}
.y59{bottom:272.186667pt;}
.y2c{bottom:282.586667pt;}
.y58{bottom:293.306667pt;}
.y2b{bottom:303.906667pt;}
.y57{bottom:314.466667pt;}
.y2a{bottom:325.026667pt;}
.y56{bottom:335.746667pt;}
.y29{bottom:346.146667pt;}
.y55{bottom:356.866667pt;}
.y28{bottom:367.266667pt;}
.y54{bottom:377.986667pt;}
.y27{bottom:388.546667pt;}
.y53{bottom:399.106667pt;}
.y26{bottom:409.666667pt;}
.y52{bottom:420.386667pt;}
.y25{bottom:430.786667pt;}
.y51{bottom:441.506667pt;}
.y24{bottom:451.906667pt;}
.y50{bottom:462.626667pt;}
.y23{bottom:473.186667pt;}
.y4f{bottom:483.746667pt;}
.y22{bottom:494.306667pt;}
.y4e{bottom:504.866667pt;}
.y21{bottom:515.426667pt;}
.y4d{bottom:526.146667pt;}
.y20{bottom:536.546667pt;}
.y4c{bottom:547.293333pt;}
.y1f{bottom:557.853333pt;}
.y4b{bottom:568.413333pt;}
.y1e{bottom:578.973333pt;}
.y4a{bottom:589.533333pt;}
.y1d{bottom:600.093333pt;}
.y49{bottom:610.813333pt;}
.y1c{bottom:621.213333pt;}
.y48{bottom:631.933333pt;}
.y1b{bottom:642.333333pt;}
.y47{bottom:653.053333pt;}
.y1a{bottom:663.613333pt;}
.y46{bottom:674.173333pt;}
.y19{bottom:684.733333pt;}
.y45{bottom:695.453333pt;}
.y18{bottom:705.853333pt;}
.y44{bottom:716.573333pt;}
.y17{bottom:726.973333pt;}
.y43{bottom:737.693333pt;}
.y16{bottom:748.253333pt;}
.y42{bottom:758.813333pt;}
.y15{bottom:769.373333pt;}
.y40{bottom:780.133333pt;}
.y41{bottom:786.213333pt;}
.y14{bottom:790.533333pt;}
.y3f{bottom:801.253333pt;}
.y13{bottom:811.653333pt;}
.y3e{bottom:822.373333pt;}
.y12{bottom:832.933333pt;}
.y3c{bottom:843.493333pt;}
.y3d{bottom:849.573333pt;}
.y11{bottom:854.053333pt;}
.y3b{bottom:864.773333pt;}
.y10{bottom:875.173333pt;}
.y3a{bottom:885.893333pt;}
.yf{bottom:907.013333pt;}
.y39{bottom:913.093333pt;}
.ye{bottom:928.133333pt;}
.yd{bottom:949.253333pt;}
.yc{bottom:970.533333pt;}
.yb{bottom:991.653333pt;}
.y38{bottom:997.733333pt;}
.ya{bottom:1012.800000pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1074.720000pt;}
.y1{bottom:1096.160000pt;}
.h4{height:33.760000pt;}
.h9{height:33.918750pt;}
.hd{height:34.374375pt;}
.h8{height:42.084375pt;}
.hb{height:44.687500pt;}
.ha{height:52.134375pt;}
.hc{height:52.834688pt;}
.h3{height:57.787500pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.h5{height:64.500000pt;}
.he{height:65.781915pt;}
.h2{height:78.097500pt;}
.h0{height:1123.040000pt;}
.h1{height:1123.333333pt;}
.w3{width:21.120000pt;}
.w1{width:794.666667pt;}
.w4{width:794.719976pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x4{left:3.200000pt;}
.x1{left:75.551988pt;}
.xf{left:79.871988pt;}
.x5{left:81.631988pt;}
.x12{left:142.586643pt;}
.x13{left:148.026655pt;}
.xc{left:164.826643pt;}
.xd{left:170.266655pt;}
.xa{left:205.786655pt;}
.x8{left:237.346655pt;}
.x9{left:265.986655pt;}
.xe{left:267.586655pt;}
.x10{left:282.626643pt;}
.x11{left:288.066655pt;}
.x18{left:289.826655pt;}
.x6{left:311.746655pt;}
.xb{left:338.946655pt;}
.x7{left:384.733321pt;}
.x3{left:393.213333pt;}
.x2{left:406.813321pt;}
.x16{left:532.773310pt;}
.x17{left:538.213321pt;}
.x14{left:655.199976pt;}
.x15{left:660.639988pt;}
}




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