
    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_50a07ffe1538b292ac989d10.woff')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_d70977253b0649393f4d3431.woff')format("woff");}.ff2{font-family:ff2;line-height:1.075195;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_1023efe84aabac3b977e99c2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.911621;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_96a70dbe5b1fefbd49c5be94.woff')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_0a801e502d8e48ff05d959b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966797;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_e50edf6fb92ba39b19513507.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_4b611ccb97e3adc6a8d9c51a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.886230;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_75052c4bf080e27bf49ae2e9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.749023;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_18c66d27a6f0ca40809fa1d6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.948242;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_fde45d5acddba21ee076628d.woff')format("woff");}.ffa{font-family:ffa;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;}
.m2{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);}
.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);}
.v3{vertical-align:-19.440031px;}
.v2{vertical-align:-17.279847px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.440000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010291px;}
.ls7{letter-spacing:0.011347px;}
.ls1{letter-spacing:0.053055px;}
.ls5{letter-spacing:1.011846px;}
.ls6{letter-spacing:3.171859px;}
.ls4{letter-spacing:14.691850px;}
.ls3{letter-spacing:16.873012px;}
.ls2{letter-spacing:17.593169px;}
.ls9{letter-spacing:19.448080px;}
.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:-79.050150px;}
.ws8{word-spacing:-67.551750px;}
.ws15{word-spacing:-18.723181px;}
.ws19{word-spacing:-18.722126px;}
.wsd{word-spacing:-18.711835px;}
.ws7{word-spacing:-16.887938px;}
.ws9{word-spacing:-15.526903px;}
.wsf{word-spacing:-10.152182px;}
.ws14{word-spacing:-8.283007px;}
.ws3{word-spacing:-8.040130px;}
.ws2{word-spacing:-7.341242px;}
.ws0{word-spacing:-7.236117px;}
.ws1{word-spacing:-6.432104px;}
.ws11{word-spacing:-0.696359px;}
.ws4{word-spacing:0.000000px;}
.ws18{word-spacing:4.320532px;}
.wsb{word-spacing:5.040545px;}
.ws5{word-spacing:5.054863px;}
.ws17{word-spacing:5.760527px;}
.ws16{word-spacing:7.200527px;}
.ws13{word-spacing:9.360545px;}
.ws10{word-spacing:10.080527px;}
.wsa{word-spacing:10.800541px;}
.wsc{word-spacing:13.764755px;}
.ws12{word-spacing:17.273680px;}
.wse{word-spacing:17.563455px;}
._10{margin-left:-2697.583018px;}
._13{margin-left:-942.304878px;}
._1f{margin-left:-747.263921px;}
._20{margin-left:-738.174634px;}
._c{margin-left:-621.743290px;}
._d{margin-left:-612.665915px;}
._12{margin-left:-434.105911px;}
._11{margin-left:-422.124261px;}
._1d{margin-left:-293.214719px;}
._1b{margin-left:-244.025924px;}
._f{margin-left:-210.393059px;}
._1e{margin-left:-5.053413px;}
._1a{margin-left:-4.022493px;}
._19{margin-left:-2.687816px;}
._0{margin-left:-1.349112px;}
._1{width:1.035311px;}
._a{width:2.341749px;}
._9{width:3.369010px;}
._5{width:4.556840px;}
._4{width:5.584233px;}
._6{width:6.779373px;}
._7{width:8.113226px;}
._8{width:9.342196px;}
._26{width:10.903809px;}
._17{width:11.962326px;}
._22{width:13.032132px;}
._18{width:14.284089px;}
._2b{width:15.554745px;}
._e{width:16.766307px;}
._3{width:18.490076px;}
._b{width:20.057644px;}
._14{width:21.439356px;}
._15{width:23.193045px;}
._2{width:29.770581px;}
._16{width:34.016913px;}
._28{width:36.950807px;}
._29{width:41.700012px;}
._21{width:58.162057px;}
._2a{width:60.614502px;}
._25{width:282.797167px;}
._24{width:284.106883px;}
._23{width:285.133956px;}
._1c{width:558.780225px;}
._27{width:717.140286px;}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(56,116,161);}
.fc6{color:rgb(180,180,180);}
.fc4{color:rgb(85,85,85);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:18.000000px;}
.fs3{font-size:27.908791px;}
.fs4{font-size:31.895761px;}
.fs0{font-size:35.882732px;}
.fs7{font-size:36.650475px;}
.fs2{font-size:39.869702px;}
.fs5{font-size:47.843642px;}
.fs6{font-size:56.053800px;}
.fsa{font-size:62.521200px;}
.fs9{font-size:67.551750px;}
.fs8{font-size:79.050150px;}
.fs1{font-size:79.739403px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.879565px;}
.yb{bottom:3.986987px;}
.yd{bottom:3.986994px;}
.y11{bottom:24.918630px;}
.y10{bottom:47.843708px;}
.y2c{bottom:50.399986px;}
.y54{bottom:54.720017px;}
.y4d{bottom:55.980011px;}
.y33{bottom:66.779983px;}
.y4c{bottom:67.500000px;}
.y55{bottom:67.860008px;}
.y2b{bottom:70.919975px;}
.y42{bottom:72.360008px;}
.y6e{bottom:82.620002px;}
.y2a{bottom:82.799973px;}
.y41{bottom:89.460022px;}
.y32{bottom:99.000000px;}
.y4b{bottom:101.159981px;}
.y6d{bottom:102.059967px;}
.y29{bottom:103.320030px;}
.y40{bottom:106.740006px;}
.y28{bottom:115.379998px;}
.y4f{bottom:116.460022px;}
.y3f{bottom:118.259994px;}
.y6c{bottom:121.500000px;}
.y4a{bottom:122.940033px;}
.y53{bottom:131.580025px;}
.y49{bottom:134.639992px;}
.y27{bottom:135.899986px;}
.y3e{bottom:138.779983px;}
.y6b{bottom:141.120002px;}
.y26{bottom:147.779983px;}
.y3d{bottom:150.659981px;}
.y52{bottom:152.100013px;}
.y48{bottom:154.980011px;}
.y6a{bottom:160.559967px;}
.y25{bottom:164.159981px;}
.y47{bottom:168.120002px;}
.y3c{bottom:171.179970px;}
.y69{bottom:180.000000px;}
.y24{bottom:181.440033px;}
.y3b{bottom:183.240006px;}
.y31{bottom:184.320030px;}
.y30{bottom:197.639992px;}
.y51{bottom:200.700027px;}
.y3a{bottom:205.019989px;}
.y50{bottom:213.840019px;}
.y68{bottom:218.879998px;}
.y4e{bottom:224.100013px;}
.y67{bottom:238.320030px;}
.y39{bottom:249.120002px;}
.y66{bottom:257.940033px;}
.y38{bottom:269.639992px;}
.y65{bottom:277.379998px;}
.y37{bottom:282.779983px;}
.y64{bottom:296.820030px;}
.y63{bottom:316.259994px;}
.y62{bottom:335.700027px;}
.y61{bottom:355.139992px;}
.y60{bottom:374.759994px;}
.y5f{bottom:394.200027px;}
.y5e{bottom:472.139992px;}
.y5d{bottom:491.580025px;}
.y21{bottom:516.059967px;}
.y84{bottom:516.240006px;}
.y20{bottom:535.500000px;}
.y83{bottom:535.679970px;}
.y1f{bottom:555.120002px;}
.y82{bottom:555.299973px;}
.y1e{bottom:574.559967px;}
.y81{bottom:574.740006px;}
.y36{bottom:588.960022px;}
.y1d{bottom:594.000000px;}
.y2f{bottom:594.179970px;}
.y35{bottom:608.399986px;}
.y1c{bottom:613.439999px;}
.y80{bottom:613.620002px;}
.y5c{bottom:627.839985px;}
.y1b{bottom:632.879998px;}
.y2e{bottom:633.060001px;}
.y1a{bottom:652.500000px;}
.y46{bottom:652.680004px;}
.y19{bottom:671.939999px;}
.y7f{bottom:672.120002px;}
.y5b{bottom:686.339985px;}
.y18{bottom:691.560001px;}
.y2d{bottom:711.000000px;}
.y5a{bottom:725.220017px;}
.y7e{bottom:730.439999px;}
.y59{bottom:744.660015px;}
.y7d{bottom:749.879998px;}
.yf{bottom:757.524399px;}
.y7c{bottom:769.500000px;}
.ye{bottom:781.446220px;}
.y58{bottom:783.720017px;}
.y7b{bottom:788.939999px;}
.yc{bottom:796.280157px;}
.y57{bottom:803.160015px;}
.y7a{bottom:808.379998px;}
.ya{bottom:812.228045px;}
.y56{bottom:822.600013px;}
.y79{bottom:827.819995px;}
.y9{bottom:842.247515px;}
.y45{bottom:847.259994px;}
.y17{bottom:854.459988px;}
.y78{bottom:866.879998px;}
.y16{bottom:877.319996px;}
.y8{bottom:880.123731px;}
.y34{bottom:881.100013px;}
.y44{bottom:886.319996px;}
.y7{bottom:896.071612px;}
.y15{bottom:900.000000px;}
.y77{bottom:905.759994px;}
.y14{bottom:922.680004px;}
.y76{bottom:925.199993px;}
.y75{bottom:944.639992px;}
.y6{bottom:944.911997px;}
.y5{bottom:959.863135px;}
.y43{bottom:964.080008px;}
.y13{bottom:965.340002px;}
.y74{bottom:983.699993px;}
.y4{bottom:1001.726322px;}
.y73{bottom:1003.139992px;}
.y72{bottom:1022.580008px;}
.y3{bottom:1029.635113px;}
.y22{bottom:1052.459997px;}
.y71{bottom:1061.459997px;}
.y2{bottom:1070.501557px;}
.y70{bottom:1081.079999px;}
.y6f{bottom:1100.519998px;}
.y23{bottom:1121.040000px;}
.y12{bottom:1122.840002px;}
.y85{bottom:1182.375000px;}
.h9{height:12.957670px;}
.h1f{height:18.773438px;}
.h5{height:20.209344px;}
.h6{height:23.096394px;}
.h2{height:25.983443px;}
.h8{height:28.617413px;}
.h4{height:28.870492px;}
.h1b{height:30.091167px;}
.h1a{height:30.091441px;}
.h1c{height:30.091446px;}
.h1d{height:30.811320px;}
.h18{height:30.811324px;}
.h1e{height:32.856578px;}
.h14{height:32.971234px;}
.h13{height:32.971509px;}
.h16{height:33.691113px;}
.h15{height:33.691387px;}
.h19{height:33.691392px;}
.h7{height:34.644590px;}
.h10{height:41.301359px;}
.h17{height:41.356100px;}
.h11{height:44.876057px;}
.ha{height:45.299344px;}
.hd{height:47.662245px;}
.hf{height:48.486852px;}
.h12{height:50.251356px;}
.hc{height:55.775130px;}
.hb{height:59.442007px;}
.he{height:60.559088px;}
.h3{height:65.722711px;}
.h1{height:1187.120435px;}
.h0{height:1188.000000px;}
.w2{width:758.521012px;}
.w1{width:917.999890px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2e{left:56.250000px;}
.x1{left:59.804553px;}
.x5{left:64.788265px;}
.x3{left:99.674261px;}
.x4{left:110.638422px;}
.x27{left:138.959997px;}
.x8{left:145.979994px;}
.x21{left:164.340002px;}
.xb{left:177.479994px;}
.x28{left:190.979994px;}
.x18{left:208.080008px;}
.x20{left:219.599997px;}
.x6{left:230.400003px;}
.xe{left:231.659998px;}
.x23{left:253.259994px;}
.x1a{left:276.479994px;}
.x15{left:289.259994px;}
.x7{left:293.579990px;}
.xa{left:319.139992px;}
.x29{left:320.399987px;}
.x26{left:354.779983px;}
.x9{left:381.420010px;}
.x2d{left:391.860008px;}
.xd{left:398.519989px;}
.x22{left:404.459988px;}
.x1e{left:405.540012px;}
.x1b{left:417.420010px;}
.xc{left:427.680005px;}
.x24{left:446.040012px;}
.x2{left:458.501570px;}
.x1c{left:473.579990px;}
.x2a{left:481.500000px;}
.x1f{left:517.319996px;}
.x16{left:567.540012px;}
.xf{left:606.779983px;}
.x14{left:611.100014px;}
.x19{left:617.940033px;}
.x13{left:619.559967px;}
.x2c{left:627.480011px;}
.x10{left:631.440033px;}
.x25{left:643.679970px;}
.x2b{left:662.399987px;}
.x11{left:668.159981px;}
.x17{left:713.159981px;}
.x1d{left:714.419975px;}
.x12{left:718.559967px;}
@media print{
.v3{vertical-align:-17.280028pt;}
.v2{vertical-align:-15.359864pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.280000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.009148pt;}
.ls7{letter-spacing:0.010086pt;}
.ls1{letter-spacing:0.047160pt;}
.ls5{letter-spacing:0.899418pt;}
.ls6{letter-spacing:2.819430pt;}
.ls4{letter-spacing:13.059422pt;}
.ls3{letter-spacing:14.998233pt;}
.ls2{letter-spacing:15.638373pt;}
.ls9{letter-spacing:17.287182pt;}
.ws6{word-spacing:-70.266800pt;}
.ws8{word-spacing:-60.046000pt;}
.ws15{word-spacing:-16.642828pt;}
.ws19{word-spacing:-16.641890pt;}
.wsd{word-spacing:-16.632742pt;}
.ws7{word-spacing:-15.011500pt;}
.ws9{word-spacing:-13.801691pt;}
.wsf{word-spacing:-9.024161pt;}
.ws14{word-spacing:-7.362673pt;}
.ws3{word-spacing:-7.146783pt;}
.ws2{word-spacing:-6.525549pt;}
.ws0{word-spacing:-6.432104pt;}
.ws1{word-spacing:-5.717426pt;}
.ws11{word-spacing:-0.618986pt;}
.ws4{word-spacing:0.000000pt;}
.ws18{word-spacing:3.840473pt;}
.wsb{word-spacing:4.480485pt;}
.ws5{word-spacing:4.493212pt;}
.ws17{word-spacing:5.120469pt;}
.ws16{word-spacing:6.400469pt;}
.ws13{word-spacing:8.320485pt;}
.ws10{word-spacing:8.960469pt;}
.wsa{word-spacing:9.600481pt;}
.wsc{word-spacing:12.235338pt;}
.ws12{word-spacing:15.354382pt;}
.wse{word-spacing:15.611960pt;}
._10{margin-left:-2397.851572pt;}
._13{margin-left:-837.604336pt;}
._1f{margin-left:-664.234596pt;}
._20{margin-left:-656.155230pt;}
._c{margin-left:-552.660703pt;}
._d{margin-left:-544.591925pt;}
._12{margin-left:-385.871921pt;}
._11{margin-left:-375.221565pt;}
._1d{margin-left:-260.635306pt;}
._1b{margin-left:-216.911933pt;}
._f{margin-left:-187.016052pt;}
._1e{margin-left:-4.491922pt;}
._1a{margin-left:-3.575549pt;}
._19{margin-left:-2.389170pt;}
._0{margin-left:-1.199210pt;}
._1{width:0.920276pt;}
._a{width:2.081554pt;}
._9{width:2.994676pt;}
._5{width:4.050525pt;}
._4{width:4.963762pt;}
._6{width:6.026109pt;}
._7{width:7.211756pt;}
._8{width:8.304174pt;}
._26{width:9.692274pt;}
._17{width:10.633178pt;}
._22{width:11.584117pt;}
._18{width:12.696968pt;}
._2b{width:13.826440pt;}
._e{width:14.903384pt;}
._3{width:16.435623pt;}
._b{width:17.829017pt;}
._14{width:19.057206pt;}
._15{width:20.616040pt;}
._2{width:26.462738pt;}
._16{width:30.237256pt;}
._28{width:32.845162pt;}
._29{width:37.066677pt;}
._21{width:51.699606pt;}
._2a{width:53.879557pt;}
._25{width:251.375259pt;}
._24{width:252.539451pt;}
._23{width:253.452406pt;}
._1c{width:496.693534pt;}
._27{width:637.458032pt;}
.fsb{font-size:16.000000pt;}
.fs3{font-size:24.807814pt;}
.fs4{font-size:28.351788pt;}
.fs0{font-size:31.895761pt;}
.fs7{font-size:32.578200pt;}
.fs2{font-size:35.439735pt;}
.fs5{font-size:42.527682pt;}
.fs6{font-size:49.825600pt;}
.fsa{font-size:55.574400pt;}
.fs9{font-size:60.046000pt;}
.fs8{font-size:70.266800pt;}
.fs1{font-size:70.879470pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.781836pt;}
.yb{bottom:3.543988pt;}
.yd{bottom:3.543995pt;}
.y11{bottom:22.149893pt;}
.y10{bottom:42.527741pt;}
.y2c{bottom:44.799988pt;}
.y54{bottom:48.640015pt;}
.y4d{bottom:49.760010pt;}
.y33{bottom:59.359985pt;}
.y4c{bottom:60.000000pt;}
.y55{bottom:60.320007pt;}
.y2b{bottom:63.039978pt;}
.y42{bottom:64.320007pt;}
.y6e{bottom:73.440002pt;}
.y2a{bottom:73.599976pt;}
.y41{bottom:79.520020pt;}
.y32{bottom:88.000000pt;}
.y4b{bottom:89.919983pt;}
.y6d{bottom:90.719971pt;}
.y29{bottom:91.840027pt;}
.y40{bottom:94.880005pt;}
.y28{bottom:102.559998pt;}
.y4f{bottom:103.520020pt;}
.y3f{bottom:105.119995pt;}
.y6c{bottom:108.000000pt;}
.y4a{bottom:109.280029pt;}
.y53{bottom:116.960022pt;}
.y49{bottom:119.679993pt;}
.y27{bottom:120.799988pt;}
.y3e{bottom:123.359985pt;}
.y6b{bottom:125.440002pt;}
.y26{bottom:131.359985pt;}
.y3d{bottom:133.919983pt;}
.y52{bottom:135.200012pt;}
.y48{bottom:137.760010pt;}
.y6a{bottom:142.719971pt;}
.y25{bottom:145.919983pt;}
.y47{bottom:149.440002pt;}
.y3c{bottom:152.159973pt;}
.y69{bottom:160.000000pt;}
.y24{bottom:161.280029pt;}
.y3b{bottom:162.880005pt;}
.y31{bottom:163.840027pt;}
.y30{bottom:175.679993pt;}
.y51{bottom:178.400024pt;}
.y3a{bottom:182.239990pt;}
.y50{bottom:190.080017pt;}
.y68{bottom:194.559998pt;}
.y4e{bottom:199.200012pt;}
.y67{bottom:211.840027pt;}
.y39{bottom:221.440002pt;}
.y66{bottom:229.280029pt;}
.y38{bottom:239.679993pt;}
.y65{bottom:246.559998pt;}
.y37{bottom:251.359985pt;}
.y64{bottom:263.840027pt;}
.y63{bottom:281.119995pt;}
.y62{bottom:298.400024pt;}
.y61{bottom:315.679993pt;}
.y60{bottom:333.119995pt;}
.y5f{bottom:350.400024pt;}
.y5e{bottom:419.679993pt;}
.y5d{bottom:436.960022pt;}
.y21{bottom:458.719971pt;}
.y84{bottom:458.880005pt;}
.y20{bottom:476.000000pt;}
.y83{bottom:476.159973pt;}
.y1f{bottom:493.440002pt;}
.y82{bottom:493.599976pt;}
.y1e{bottom:510.719971pt;}
.y81{bottom:510.880005pt;}
.y36{bottom:523.520020pt;}
.y1d{bottom:528.000000pt;}
.y2f{bottom:528.159973pt;}
.y35{bottom:540.799988pt;}
.y1c{bottom:545.279999pt;}
.y80{bottom:545.440002pt;}
.y5c{bottom:558.079987pt;}
.y1b{bottom:562.559998pt;}
.y2e{bottom:562.720001pt;}
.y1a{bottom:580.000000pt;}
.y46{bottom:580.160004pt;}
.y19{bottom:597.279999pt;}
.y7f{bottom:597.440002pt;}
.y5b{bottom:610.079987pt;}
.y18{bottom:614.720001pt;}
.y2d{bottom:632.000000pt;}
.y5a{bottom:644.640015pt;}
.y7e{bottom:649.279999pt;}
.y59{bottom:661.920013pt;}
.y7d{bottom:666.559998pt;}
.yf{bottom:673.355021pt;}
.y7c{bottom:684.000000pt;}
.ye{bottom:694.618862pt;}
.y58{bottom:696.640015pt;}
.y7b{bottom:701.279999pt;}
.yc{bottom:707.804584pt;}
.y57{bottom:713.920013pt;}
.y7a{bottom:718.559998pt;}
.ya{bottom:721.980484pt;}
.y56{bottom:731.200012pt;}
.y79{bottom:735.839996pt;}
.y9{bottom:748.664458pt;}
.y45{bottom:753.119995pt;}
.y17{bottom:759.519989pt;}
.y78{bottom:770.559998pt;}
.y16{bottom:779.839996pt;}
.y8{bottom:782.332206pt;}
.y34{bottom:783.200012pt;}
.y44{bottom:787.839996pt;}
.y7{bottom:796.508100pt;}
.y15{bottom:800.000000pt;}
.y77{bottom:805.119995pt;}
.y14{bottom:820.160004pt;}
.y76{bottom:822.399994pt;}
.y75{bottom:839.679993pt;}
.y6{bottom:839.921775pt;}
.y5{bottom:853.211675pt;}
.y43{bottom:856.960007pt;}
.y13{bottom:858.080002pt;}
.y74{bottom:874.399994pt;}
.y4{bottom:890.423397pt;}
.y73{bottom:891.679993pt;}
.y72{bottom:908.960007pt;}
.y3{bottom:915.231211pt;}
.y22{bottom:935.519997pt;}
.y71{bottom:943.519997pt;}
.y2{bottom:951.556940pt;}
.y70{bottom:960.959999pt;}
.y6f{bottom:978.239998pt;}
.y23{bottom:996.480000pt;}
.y12{bottom:998.080002pt;}
.y85{bottom:1051.000000pt;}
.h9{height:11.517929pt;}
.h1f{height:16.687500pt;}
.h5{height:17.963862pt;}
.h6{height:20.530128pt;}
.h2{height:23.096394pt;}
.h8{height:25.437700pt;}
.h4{height:25.662660pt;}
.h1b{height:26.747704pt;}
.h1a{height:26.747948pt;}
.h1c{height:26.747952pt;}
.h1d{height:27.387840pt;}
.h18{height:27.387844pt;}
.h1e{height:29.205847pt;}
.h14{height:29.307764pt;}
.h13{height:29.308008pt;}
.h16{height:29.947656pt;}
.h15{height:29.947900pt;}
.h19{height:29.947904pt;}
.h7{height:30.795191pt;}
.h10{height:36.712320pt;}
.h17{height:36.760977pt;}
.h11{height:39.889828pt;}
.ha{height:40.266083pt;}
.hd{height:42.366440pt;}
.hf{height:43.099424pt;}
.h12{height:44.667872pt;}
.hc{height:49.577894pt;}
.hb{height:52.837340pt;}
.he{height:53.830301pt;}
.h3{height:58.420188pt;}
.h1{height:1055.218164pt;}
.h0{height:1056.000000pt;}
.w2{width:674.240900pt;}
.w1{width:815.999902pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:50.000000pt;}
.x1{left:53.159602pt;}
.x5{left:57.589569pt;}
.x3{left:88.599344pt;}
.x4{left:98.345264pt;}
.x27{left:123.519997pt;}
.x8{left:129.759995pt;}
.x21{left:146.080002pt;}
.xb{left:157.759995pt;}
.x28{left:169.759995pt;}
.x18{left:184.960007pt;}
.x20{left:195.199997pt;}
.x6{left:204.800003pt;}
.xe{left:205.919998pt;}
.x23{left:225.119995pt;}
.x1a{left:245.759995pt;}
.x15{left:257.119995pt;}
.x7{left:260.959991pt;}
.xa{left:283.679993pt;}
.x29{left:284.799988pt;}
.x26{left:315.359985pt;}
.x9{left:339.040009pt;}
.x2d{left:348.320007pt;}
.xd{left:354.239990pt;}
.x22{left:359.519989pt;}
.x1e{left:360.480011pt;}
.x1b{left:371.040009pt;}
.xc{left:380.160004pt;}
.x24{left:396.480011pt;}
.x2{left:407.556951pt;}
.x1c{left:420.959991pt;}
.x2a{left:428.000000pt;}
.x1f{left:459.839996pt;}
.x16{left:504.480011pt;}
.xf{left:539.359985pt;}
.x14{left:543.200012pt;}
.x19{left:549.280029pt;}
.x13{left:550.719971pt;}
.x2c{left:557.760010pt;}
.x10{left:561.280029pt;}
.x25{left:572.159973pt;}
.x2b{left:588.799988pt;}
.x11{left:593.919983pt;}
.x17{left:633.919983pt;}
.x1d{left:635.039978pt;}
.x12{left:638.719971pt;}
}




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