
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_788c1bf52921c72a6d6bdc53.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_99c3ebcd0148588355e268c7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fdebf040e41d645804d2292e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_a52e7cc824e57d3f37ccaa90.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_356722d3f4686d600136ec6e.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_4560ee77fdd63d240f47600a.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_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_0dfc74d56d95369dcb3ec614.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsd{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.226200px;}
.ls14{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.089400px;}
.ls13{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.053280px;}
.ls1f{letter-spacing:-0.008640px;}
.lsb{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.206400px;}
.lsc{letter-spacing:0.262200px;}
.ls1a{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.311040px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.493800px;}
.ls17{letter-spacing:1.620000px;}
.ls18{letter-spacing:2.106720px;}
.ls4{letter-spacing:2.340000px;}
.ls16{letter-spacing:4.500000px;}
.ls15{letter-spacing:5.220000px;}
.ls5{letter-spacing:8.100000px;}
.ls6{letter-spacing:10.260000px;}
.ls1b{letter-spacing:12.679920px;}
.lsa{letter-spacing:15.269760px;}
.ls9{letter-spacing:15.876000px;}
.ls1d{letter-spacing:16.506720px;}
.ls19{letter-spacing:46.026720px;}
.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:-16.822200px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.wse{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.392000px;}
.ws7{word-spacing:-10.933800px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws3{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.711360px;}
.wsa{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
._4{margin-left:-6.714240px;}
._e{margin-left:-4.986000px;}
._d{margin-left:-3.942000px;}
._2{margin-left:-2.357040px;}
._0{margin-left:-1.093680px;}
._1{width:1.414320px;}
._a{width:2.424000px;}
._c{width:4.131360px;}
._8{width:5.400000px;}
._f{width:6.593520px;}
._11{width:8.605440px;}
._10{width:9.621360px;}
._3{width:11.599920px;}
._5{width:13.035120px;}
._9{width:14.526000px;}
._17{width:15.714000px;}
._7{width:17.064000px;}
._6{width:18.576000px;}
._12{width:20.733120px;}
._13{width:22.913280px;}
._14{width:24.939840px;}
._b{width:26.164080px;}
._19{width:27.549360px;}
._15{width:58.764000px;}
._16{width:60.138480px;}
._1a{width:227.944560px;}
._18{width:284.591280px;}
.fc6{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y57{bottom:1.620000px;}
.y9a{bottom:2.880000px;}
.y9d{bottom:3.060000px;}
.y4d{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y74{bottom:4.860000px;}
.y64{bottom:5.010000px;}
.y78{bottom:5.400000px;}
.y76{bottom:5.580000px;}
.y81{bottom:6.120000px;}
.y8c{bottom:6.165000px;}
.y84{bottom:6.300000px;}
.y2{bottom:9.930000px;}
.y56{bottom:10.260000px;}
.y62{bottom:10.440000px;}
.y8a{bottom:19.440000px;}
.y4c{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.y61{bottom:25.920000px;}
.y89{bottom:34.920000px;}
.y4b{bottom:37.800000px;}
.y60{bottom:41.580000px;}
.y55{bottom:46.440000px;}
.y3{bottom:47.910000px;}
.y29{bottom:50.400000px;}
.y4a{bottom:55.125000px;}
.y54{bottom:55.434000px;}
.y7{bottom:57.060000px;}
.y5f{bottom:59.214000px;}
.y53{bottom:66.234000px;}
.y49{bottom:72.405000px;}
.y5e{bottom:74.874000px;}
.y28{bottom:75.465000px;}
.y52{bottom:78.294000px;}
.y48{bottom:89.505000px;}
.y51{bottom:90.354000px;}
.y5d{bottom:92.514000px;}
.y4e{bottom:97.596000px;}
.y27{bottom:100.485000px;}
.y47{bottom:106.785000px;}
.y5c{bottom:108.174000px;}
.y98{bottom:117.576000px;}
.y5b{bottom:123.654000px;}
.y46{bottom:124.065000px;}
.y26{bottom:125.505000px;}
.y97{bottom:136.116000px;}
.y5a{bottom:139.134000px;}
.y45{bottom:141.345000px;}
.y25{bottom:150.525000px;}
.y50{bottom:151.374000px;}
.y59{bottom:154.614000px;}
.y96{bottom:154.830000px;}
.y44{bottom:158.625000px;}
.y4f{bottom:161.094000px;}
.y58{bottom:170.274000px;}
.y95{bottom:173.370000px;}
.y24{bottom:175.545000px;}
.y43{bottom:175.905000px;}
.y94{bottom:191.910000px;}
.y42{bottom:193.005000px;}
.y23{bottom:200.565000px;}
.y41{bottom:210.285000px;}
.y93{bottom:210.630000px;}
.y22{bottom:225.585000px;}
.y40{bottom:227.565000px;}
.y92{bottom:228.450000px;}
.y3f{bottom:244.845000px;}
.y21{bottom:250.605000px;}
.y91{bottom:254.730000px;}
.y3e{bottom:262.125000px;}
.y90{bottom:272.010000px;}
.y20{bottom:275.625000px;}
.y3d{bottom:279.225000px;}
.y10{bottom:288.570000px;}
.y8f{bottom:289.290000px;}
.y3c{bottom:296.505000px;}
.y1f{bottom:300.645000px;}
.y8e{bottom:306.570000px;}
.y1e{bottom:313.785000px;}
.y8d{bottom:323.850000px;}
.y3b{bottom:331.095000px;}
.y1d{bottom:337.935000px;}
.y8b{bottom:338.610000px;}
.y3a{bottom:348.375000px;}
.y88{bottom:358.095000px;}
.y1c{bottom:362.055000px;}
.y39{bottom:365.655000px;}
.y38{bottom:382.755000px;}
.y1b{bottom:386.175000px;}
.y37{bottom:400.035000px;}
.y87{bottom:406.335000px;}
.y1a{bottom:410.295000px;}
.y36{bottom:417.315000px;}
.y19{bottom:434.415000px;}
.y35{bottom:434.595000px;}
.y86{bottom:440.355000px;}
.y34{bottom:451.875000px;}
.y18{bottom:458.535000px;}
.y85{bottom:459.795000px;}
.y33{bottom:469.155000px;}
.y83{bottom:479.415000px;}
.y17{bottom:482.835000px;}
.y32{bottom:486.255000px;}
.y82{bottom:499.035000px;}
.y31{bottom:504.615000px;}
.y16{bottom:506.955000px;}
.y80{bottom:518.655000px;}
.y30{bottom:530.535000px;}
.y15{bottom:531.075000px;}
.y7f{bottom:541.335000px;}
.y2f{bottom:546.195000px;}
.y14{bottom:555.195000px;}
.ya2{bottom:556.095000px;}
.y2e{bottom:561.675000px;}
.ya1{bottom:572.475000px;}
.y2d{bottom:577.155000px;}
.y13{bottom:579.360000px;}
.ya0{bottom:588.675000px;}
.y2c{bottom:592.680000px;}
.y12{bottom:603.480000px;}
.y9f{bottom:605.085000px;}
.y2b{bottom:608.340000px;}
.y9e{bottom:621.285000px;}
.y2a{bottom:624.900000px;}
.y11{bottom:627.780000px;}
.y9c{bottom:637.485000px;}
.y9b{bottom:653.865000px;}
.yb8{bottom:665.205000px;}
.y99{bottom:670.065000px;}
.y7e{bottom:673.665000px;}
.yb7{bottom:682.485000px;}
.y7d{bottom:690.765000px;}
.yb6{bottom:699.765000px;}
.y7c{bottom:708.045000px;}
.yb5{bottom:717.045000px;}
.y7b{bottom:722.805000px;}
.yb4{bottom:734.325000px;}
.y7a{bottom:741.705000px;}
.yb3{bottom:751.605000px;}
.y79{bottom:760.425000px;}
.yb2{bottom:771.405000px;}
.y77{bottom:779.325000px;}
.yb1{bottom:791.205000px;}
.y75{bottom:798.045000px;}
.yb0{bottom:808.485000px;}
.y73{bottom:816.945000px;}
.yaf{bottom:825.765000px;}
.y72{bottom:838.365000px;}
.yae{bottom:842.865000px;}
.y71{bottom:857.085000px;}
.yad{bottom:862.665000px;}
.y70{bottom:875.670000px;}
.yac{bottom:882.690000px;}
.y6f{bottom:894.210000px;}
.yab{bottom:900.510000px;}
.y6e{bottom:912.930000px;}
.yaa{bottom:918.330000px;}
.yf{bottom:931.470000px;}
.ya9{bottom:935.610000px;}
.y6d{bottom:948.750000px;}
.ye{bottom:950.010000px;}
.ya8{bottom:952.890000px;}
.y6c{bottom:966.030000px;}
.yd{bottom:968.730000px;}
.ya7{bottom:970.170000px;}
.y6b{bottom:983.310000px;}
.ya6{bottom:987.990000px;}
.yc{bottom:992.490000px;}
.y6a{bottom:1001.850000px;}
.yb{bottom:1011.210000px;}
.ya5{bottom:1015.710000px;}
.y69{bottom:1019.850000px;}
.ya{bottom:1024.530000px;}
.ya4{bottom:1034.250000px;}
.y68{bottom:1037.130000px;}
.y9{bottom:1043.250000px;}
.ya3{bottom:1052.970000px;}
.y67{bottom:1054.230000px;}
.y66{bottom:1071.510000px;}
.y8{bottom:1071.870000px;}
.y63{bottom:1075.140000px;}
.y65{bottom:1089.330000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h23{height:15.480000px;}
.h25{height:15.516000px;}
.h24{height:15.660000px;}
.h19{height:17.460000px;}
.h1c{height:18.000000px;}
.h1a{height:18.180000px;}
.h1e{height:18.720000px;}
.h22{height:18.756000px;}
.h1f{height:18.900000px;}
.h15{height:21.114844px;}
.h14{height:25.136719px;}
.ha{height:27.147656px;}
.h17{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h20{height:33.120000px;}
.h1b{height:37.705078px;}
.h16{height:38.100586px;}
.hf{height:38.997070px;}
.h10{height:39.471680px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.hb{height:42.164648px;}
.h1d{height:43.156758px;}
.h26{height:43.506914px;}
.h11{height:43.681992px;}
.h5{height:46.251562px;}
.h21{height:47.520000px;}
.h12{height:48.027656px;}
.h9{height:61.189805px;}
.h18{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h13{height:190.260000px;}
.hc{height:637.485000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w12{width:56.340000px;}
.w9{width:59.400000px;}
.w11{width:81.900000px;}
.w13{width:90.216000px;}
.w2{width:104.076000px;}
.wd{width:111.420000px;}
.wf{width:112.536000px;}
.wb{width:120.096000px;}
.wc{width:128.736000px;}
.w5{width:131.940000px;}
.we{width:138.600000px;}
.w14{width:149.580000px;}
.w8{width:162.900000px;}
.wa{width:170.850000px;}
.w10{width:290.055000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x26{left:-37.440000px;}
.x0{left:0.000000px;}
.x19{left:7.380000px;}
.x4{left:12.780000px;}
.x17{left:18.180000px;}
.x6{left:19.260000px;}
.x11{left:25.560000px;}
.x12{left:28.980000px;}
.x10{left:31.140000px;}
.x16{left:37.260000px;}
.x15{left:40.320000px;}
.x14{left:42.480000px;}
.x1c{left:47.340000px;}
.x1d{left:56.700000px;}
.x1a{left:62.145000px;}
.x13{left:65.874000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x1b{left:106.374000px;}
.x22{left:113.256000px;}
.x1e{left:131.076000px;}
.x5{left:141.345000px;}
.x27{left:144.935987px;}
.x3{left:182.370000px;}
.x1f{left:191.190000px;}
.x18{left:218.370000px;}
.x23{left:252.570000px;}
.x28{left:297.795000px;}
.xb{left:344.954987px;}
.x29{left:354.855000px;}
.xa{left:359.534987px;}
.xc{left:363.674987px;}
.x24{left:366.015000px;}
.x2a{left:445.785000px;}
.xd{left:449.744987px;}
.x20{left:483.585000px;}
.xe{left:574.484987px;}
.x21{left:613.050000px;}
.x25{left:656.790000px;}
.x8{left:766.049987px;}
.x7{left:784.439987px;}
.xf{left:806.939987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.201067pt;}
.ls14{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.079467pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls1f{letter-spacing:-0.007680pt;}
.lsb{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.183467pt;}
.lsc{letter-spacing:0.233067pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.276480pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.438933pt;}
.ls17{letter-spacing:1.440000pt;}
.ls18{letter-spacing:1.872640pt;}
.ls4{letter-spacing:2.080000pt;}
.ls16{letter-spacing:4.000000pt;}
.ls15{letter-spacing:4.640000pt;}
.ls5{letter-spacing:7.200000pt;}
.ls6{letter-spacing:9.120000pt;}
.ls1b{letter-spacing:11.271040pt;}
.lsa{letter-spacing:13.573120pt;}
.ls9{letter-spacing:14.112000pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls19{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.953067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsf{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws7{word-spacing:-9.718933pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws3{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.632320pt;}
.wsa{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
._4{margin-left:-5.968213pt;}
._e{margin-left:-4.432000pt;}
._d{margin-left:-3.504000pt;}
._2{margin-left:-2.095147pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.257173pt;}
._a{width:2.154667pt;}
._c{width:3.672320pt;}
._8{width:4.800000pt;}
._f{width:5.860907pt;}
._11{width:7.649280pt;}
._10{width:8.552320pt;}
._3{width:10.311040pt;}
._5{width:11.586773pt;}
._9{width:12.912000pt;}
._17{width:13.968000pt;}
._7{width:15.168000pt;}
._6{width:16.512000pt;}
._12{width:18.429440pt;}
._13{width:20.367360pt;}
._14{width:22.168747pt;}
._b{width:23.256960pt;}
._19{width:24.488320pt;}
._15{width:52.234667pt;}
._16{width:53.456427pt;}
._1a{width:202.617387pt;}
._18{width:252.970027pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:1.440000pt;}
.y9a{bottom:2.560000pt;}
.y9d{bottom:2.720000pt;}
.y4d{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y74{bottom:4.320000pt;}
.y64{bottom:4.453333pt;}
.y78{bottom:4.800000pt;}
.y76{bottom:4.960000pt;}
.y81{bottom:5.440000pt;}
.y8c{bottom:5.480000pt;}
.y84{bottom:5.600000pt;}
.y2{bottom:8.826667pt;}
.y56{bottom:9.120000pt;}
.y62{bottom:9.280000pt;}
.y8a{bottom:17.280000pt;}
.y4c{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.y61{bottom:23.040000pt;}
.y89{bottom:31.040000pt;}
.y4b{bottom:33.600000pt;}
.y60{bottom:36.960000pt;}
.y55{bottom:41.280000pt;}
.y3{bottom:42.586667pt;}
.y29{bottom:44.800000pt;}
.y4a{bottom:49.000000pt;}
.y54{bottom:49.274667pt;}
.y7{bottom:50.720000pt;}
.y5f{bottom:52.634667pt;}
.y53{bottom:58.874667pt;}
.y49{bottom:64.360000pt;}
.y5e{bottom:66.554667pt;}
.y28{bottom:67.080000pt;}
.y52{bottom:69.594667pt;}
.y48{bottom:79.560000pt;}
.y51{bottom:80.314667pt;}
.y5d{bottom:82.234667pt;}
.y4e{bottom:86.752000pt;}
.y27{bottom:89.320000pt;}
.y47{bottom:94.920000pt;}
.y5c{bottom:96.154667pt;}
.y98{bottom:104.512000pt;}
.y5b{bottom:109.914667pt;}
.y46{bottom:110.280000pt;}
.y26{bottom:111.560000pt;}
.y97{bottom:120.992000pt;}
.y5a{bottom:123.674667pt;}
.y45{bottom:125.640000pt;}
.y25{bottom:133.800000pt;}
.y50{bottom:134.554667pt;}
.y59{bottom:137.434667pt;}
.y96{bottom:137.626667pt;}
.y44{bottom:141.000000pt;}
.y4f{bottom:143.194667pt;}
.y58{bottom:151.354667pt;}
.y95{bottom:154.106667pt;}
.y24{bottom:156.040000pt;}
.y43{bottom:156.360000pt;}
.y94{bottom:170.586667pt;}
.y42{bottom:171.560000pt;}
.y23{bottom:178.280000pt;}
.y41{bottom:186.920000pt;}
.y93{bottom:187.226667pt;}
.y22{bottom:200.520000pt;}
.y40{bottom:202.280000pt;}
.y92{bottom:203.066667pt;}
.y3f{bottom:217.640000pt;}
.y21{bottom:222.760000pt;}
.y91{bottom:226.426667pt;}
.y3e{bottom:233.000000pt;}
.y90{bottom:241.786667pt;}
.y20{bottom:245.000000pt;}
.y3d{bottom:248.200000pt;}
.y10{bottom:256.506667pt;}
.y8f{bottom:257.146667pt;}
.y3c{bottom:263.560000pt;}
.y1f{bottom:267.240000pt;}
.y8e{bottom:272.506667pt;}
.y1e{bottom:278.920000pt;}
.y8d{bottom:287.866667pt;}
.y3b{bottom:294.306667pt;}
.y1d{bottom:300.386667pt;}
.y8b{bottom:300.986667pt;}
.y3a{bottom:309.666667pt;}
.y88{bottom:318.306667pt;}
.y1c{bottom:321.826667pt;}
.y39{bottom:325.026667pt;}
.y38{bottom:340.226667pt;}
.y1b{bottom:343.266667pt;}
.y37{bottom:355.586667pt;}
.y87{bottom:361.186667pt;}
.y1a{bottom:364.706667pt;}
.y36{bottom:370.946667pt;}
.y19{bottom:386.146667pt;}
.y35{bottom:386.306667pt;}
.y86{bottom:391.426667pt;}
.y34{bottom:401.666667pt;}
.y18{bottom:407.586667pt;}
.y85{bottom:408.706667pt;}
.y33{bottom:417.026667pt;}
.y83{bottom:426.146667pt;}
.y17{bottom:429.186667pt;}
.y32{bottom:432.226667pt;}
.y82{bottom:443.586667pt;}
.y31{bottom:448.546667pt;}
.y16{bottom:450.626667pt;}
.y80{bottom:461.026667pt;}
.y30{bottom:471.586667pt;}
.y15{bottom:472.066667pt;}
.y7f{bottom:481.186667pt;}
.y2f{bottom:485.506667pt;}
.y14{bottom:493.506667pt;}
.ya2{bottom:494.306667pt;}
.y2e{bottom:499.266667pt;}
.ya1{bottom:508.866667pt;}
.y2d{bottom:513.026667pt;}
.y13{bottom:514.986667pt;}
.ya0{bottom:523.266667pt;}
.y2c{bottom:526.826667pt;}
.y12{bottom:536.426667pt;}
.y9f{bottom:537.853333pt;}
.y2b{bottom:540.746667pt;}
.y9e{bottom:552.253333pt;}
.y2a{bottom:555.466667pt;}
.y11{bottom:558.026667pt;}
.y9c{bottom:566.653333pt;}
.y9b{bottom:581.213333pt;}
.yb8{bottom:591.293333pt;}
.y99{bottom:595.613333pt;}
.y7e{bottom:598.813333pt;}
.yb7{bottom:606.653333pt;}
.y7d{bottom:614.013333pt;}
.yb6{bottom:622.013333pt;}
.y7c{bottom:629.373333pt;}
.yb5{bottom:637.373333pt;}
.y7b{bottom:642.493333pt;}
.yb4{bottom:652.733333pt;}
.y7a{bottom:659.293333pt;}
.yb3{bottom:668.093333pt;}
.y79{bottom:675.933333pt;}
.yb2{bottom:685.693333pt;}
.y77{bottom:692.733333pt;}
.yb1{bottom:703.293333pt;}
.y75{bottom:709.373333pt;}
.yb0{bottom:718.653333pt;}
.y73{bottom:726.173333pt;}
.yaf{bottom:734.013333pt;}
.y72{bottom:745.213333pt;}
.yae{bottom:749.213333pt;}
.y71{bottom:761.853333pt;}
.yad{bottom:766.813333pt;}
.y70{bottom:778.373333pt;}
.yac{bottom:784.613333pt;}
.y6f{bottom:794.853333pt;}
.yab{bottom:800.453333pt;}
.y6e{bottom:811.493333pt;}
.yaa{bottom:816.293333pt;}
.yf{bottom:827.973333pt;}
.ya9{bottom:831.653333pt;}
.y6d{bottom:843.333333pt;}
.ye{bottom:844.453333pt;}
.ya8{bottom:847.013333pt;}
.y6c{bottom:858.693333pt;}
.yd{bottom:861.093333pt;}
.ya7{bottom:862.373333pt;}
.y6b{bottom:874.053333pt;}
.ya6{bottom:878.213333pt;}
.yc{bottom:882.213333pt;}
.y6a{bottom:890.533333pt;}
.yb{bottom:898.853333pt;}
.ya5{bottom:902.853333pt;}
.y69{bottom:906.533333pt;}
.ya{bottom:910.693333pt;}
.ya4{bottom:919.333333pt;}
.y68{bottom:921.893333pt;}
.y9{bottom:927.333333pt;}
.ya3{bottom:935.973333pt;}
.y67{bottom:937.093333pt;}
.y66{bottom:952.453333pt;}
.y8{bottom:952.773333pt;}
.y63{bottom:955.680000pt;}
.y65{bottom:968.293333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h23{height:13.760000pt;}
.h25{height:13.792000pt;}
.h24{height:13.920000pt;}
.h19{height:15.520000pt;}
.h1c{height:16.000000pt;}
.h1a{height:16.160000pt;}
.h1e{height:16.640000pt;}
.h22{height:16.672000pt;}
.h1f{height:16.800000pt;}
.h15{height:18.768750pt;}
.h14{height:22.343750pt;}
.ha{height:24.131250pt;}
.h17{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h20{height:29.440000pt;}
.h1b{height:33.515625pt;}
.h16{height:33.867188pt;}
.hf{height:34.664062pt;}
.h10{height:35.085938pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.hb{height:37.479688pt;}
.h1d{height:38.361562pt;}
.h26{height:38.672812pt;}
.h11{height:38.828437pt;}
.h5{height:41.112500pt;}
.h21{height:42.240000pt;}
.h12{height:42.691250pt;}
.h9{height:54.390938pt;}
.h18{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h13{height:169.120000pt;}
.hc{height:566.653333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w12{width:50.080000pt;}
.w9{width:52.800000pt;}
.w11{width:72.800000pt;}
.w13{width:80.192000pt;}
.w2{width:92.512000pt;}
.wd{width:99.040000pt;}
.wf{width:100.032000pt;}
.wb{width:106.752000pt;}
.wc{width:114.432000pt;}
.w5{width:117.280000pt;}
.we{width:123.200000pt;}
.w14{width:132.960000pt;}
.w8{width:144.800000pt;}
.wa{width:151.866667pt;}
.w10{width:257.826667pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x26{left:-33.280000pt;}
.x0{left:0.000000pt;}
.x19{left:6.560000pt;}
.x4{left:11.360000pt;}
.x17{left:16.160000pt;}
.x6{left:17.120000pt;}
.x11{left:22.720000pt;}
.x12{left:25.760000pt;}
.x10{left:27.680000pt;}
.x16{left:33.120000pt;}
.x15{left:35.840000pt;}
.x14{left:37.760000pt;}
.x1c{left:42.080000pt;}
.x1d{left:50.400000pt;}
.x1a{left:55.240000pt;}
.x13{left:58.554667pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x1b{left:94.554667pt;}
.x22{left:100.672000pt;}
.x1e{left:116.512000pt;}
.x5{left:125.640000pt;}
.x27{left:128.831988pt;}
.x3{left:162.106667pt;}
.x1f{left:169.946667pt;}
.x18{left:194.106667pt;}
.x23{left:224.506667pt;}
.x28{left:264.706667pt;}
.xb{left:306.626655pt;}
.x29{left:315.426667pt;}
.xa{left:319.586655pt;}
.xc{left:323.266655pt;}
.x24{left:325.346667pt;}
.x2a{left:396.253333pt;}
.xd{left:399.773322pt;}
.x20{left:429.853333pt;}
.xe{left:510.653322pt;}
.x21{left:544.933333pt;}
.x25{left:583.813333pt;}
.x8{left:680.933322pt;}
.x7{left:697.279988pt;}
.xf{left:717.279988pt;}
}




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