
    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_343a459c375238dde37d4653.woff')format("woff");}.ff1{font-family:ff1;line-height:1.386719;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_4fddb4664c957c124a67a4b1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.891602;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_1d09cbc99f8f80b9061abdbf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.319336;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_4d03cd0465b7ce36a0e2547c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.197754;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_2dc5feb573c5cdbb686a0a76.woff')format("woff");}.ff5{font-family:ff5;line-height:1.083984;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_9f21ab68418b221c960f924c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.386719;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cbebc52ce0a54fdb7214aebf.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_44ef87acdcf3015cf122c64c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.319336;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);}
.v1{vertical-align:-82.860000px;}
.v5{vertical-align:-43.200000px;}
.v4{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v6{vertical-align:27.600000px;}
.v2{vertical-align:33.600000px;}
.ls1c{letter-spacing:-1.446000px;}
.ls10{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.564000px;}
.ls17{letter-spacing:-0.558000px;}
.ls1d{letter-spacing:-0.546000px;}
.ls18{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.192000px;}
.lsf{letter-spacing:-0.096000px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.048000px;}
.lsd{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.186000px;}
.ls1{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.516000px;}
.ls3{letter-spacing:0.600000px;}
.ls1f{letter-spacing:0.654000px;}
.ls1b{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.840000px;}
.ls7{letter-spacing:1.248000px;}
.ls12{letter-spacing:21.054000px;}
.ls9{letter-spacing:63.690000px;}
.ls0{letter-spacing:288.180000px;}
.ls6{letter-spacing:417.192000px;}
.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;}
}
.ws7{word-spacing:-60.000000px;}
.ws2{word-spacing:-32.292000px;}
.ws10{word-spacing:-24.096000px;}
.wse{word-spacing:-23.436000px;}
.wsb{word-spacing:-22.896000px;}
.ws6{word-spacing:-20.832000px;}
.ws1{word-spacing:-17.940000px;}
.ws8{word-spacing:-17.580000px;}
.ws13{word-spacing:-16.806000px;}
.ws12{word-spacing:-16.662000px;}
.wsd{word-spacing:-16.146000px;}
.wsc{word-spacing:-15.726000px;}
.ws11{word-spacing:-15.606000px;}
.wsf{word-spacing:-15.582000px;}
.wsa{word-spacing:-14.784000px;}
.ws3{word-spacing:-14.352000px;}
.ws0{word-spacing:-13.872000px;}
.ws5{word-spacing:-13.776000px;}
.ws4{word-spacing:-8.970000px;}
.ws9{word-spacing:0.000000px;}
._1e{margin-left:-2.376000px;}
._2{margin-left:-1.260000px;}
._1{width:1.560000px;}
._3{width:3.162000px;}
._4{width:4.266000px;}
._d{width:5.556000px;}
._7{width:6.624000px;}
._8{width:7.866000px;}
._6{width:9.378000px;}
._1c{width:10.500000px;}
._1b{width:11.910000px;}
._10{width:13.284000px;}
._f{width:14.400000px;}
._5{width:15.426000px;}
._c{width:16.440000px;}
._1f{width:17.532000px;}
._e{width:19.500000px;}
._11{width:21.060000px;}
._1d{width:22.962000px;}
._13{width:25.020000px;}
._12{width:26.622000px;}
._18{width:28.134000px;}
._b{width:29.598000px;}
._14{width:32.472000px;}
._17{width:35.316000px;}
._19{width:37.692000px;}
._1a{width:38.952000px;}
._16{width:70.740000px;}
._15{width:72.126000px;}
._9{width:82.578000px;}
._a{width:197.988000px;}
._0{width:383.040000px;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:12.000000px;}
.fsa{font-size:18.000000px;}
.fs5{font-size:24.000000px;}
.fs9{font-size:27.600000px;}
.fs8{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fsb{font-size:39.600000px;}
.fs7{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y86{bottom:5.100000px;}
.y9{bottom:8.370000px;}
.y84{bottom:9.585000px;}
.y3{bottom:11.685000px;}
.y83{bottom:26.085000px;}
.y2{bottom:27.885000px;}
.y82{bottom:42.870000px;}
.yc{bottom:57.337500px;}
.y8{bottom:63.285000px;}
.yb{bottom:78.037500px;}
.y80{bottom:79.200000px;}
.y7{bottom:82.515000px;}
.y5{bottom:92.715000px;}
.y6{bottom:96.015000px;}
.y42{bottom:98.737500px;}
.y41{bottom:107.137500px;}
.y7e{bottom:111.637500px;}
.y40{bottom:119.437500px;}
.y7d{bottom:130.837500px;}
.y7c{bottom:148.237500px;}
.y3f{bottom:151.830000px;}
.y7b{bottom:163.245000px;}
.y3e{bottom:172.530000px;}
.y7a{bottom:181.830000px;}
.y3d{bottom:193.530000px;}
.y79{bottom:199.875000px;}
.y3c{bottom:214.275000px;}
.y78{bottom:215.475000px;}
.y3b{bottom:231.975000px;}
.y77{bottom:234.375000px;}
.y3a{bottom:239.175000px;}
.y76{bottom:252.075000px;}
.y39{bottom:259.575000px;}
.y75{bottom:267.375000px;}
.y38{bottom:277.275000px;}
.y74{bottom:286.575000px;}
.y37{bottom:297.975000px;}
.y73{bottom:305.475000px;}
.y36{bottom:318.975000px;}
.y72{bottom:323.175000px;}
.y71{bottom:338.775000px;}
.y35{bottom:339.975000px;}
.y70{bottom:357.375000px;}
.y34{bottom:360.705000px;}
.y6f{bottom:375.405000px;}
.y33{bottom:381.705000px;}
.y6e{bottom:391.320000px;}
.y32{bottom:402.705000px;}
.y6d{bottom:409.905000px;}
.y31{bottom:423.705000px;}
.y6c{bottom:427.620000px;}
.y6b{bottom:443.505000px;}
.y30{bottom:444.405000px;}
.y6a{bottom:462.120000px;}
.y2f{bottom:465.405000px;}
.y69{bottom:479.820000px;}
.y2e{bottom:486.405000px;}
.y68{bottom:495.405000px;}
.y2d{bottom:507.105000px;}
.y67{bottom:514.605000px;}
.y2b{bottom:528.150000px;}
.y66{bottom:532.950000px;}
.y2c{bottom:535.050000px;}
.y2a{bottom:549.150000px;}
.y65{bottom:550.950000px;}
.y64{bottom:566.850000px;}
.y29{bottom:569.850000px;}
.y63{bottom:585.750000px;}
.y28{bottom:590.850000px;}
.y62{bottom:603.150000px;}
.y27{bottom:610.650000px;}
.y61{bottom:619.050000px;}
.y26{bottom:628.050000px;}
.y60{bottom:637.650000px;}
.y25{bottom:644.850000px;}
.y5f{bottom:655.350000px;}
.y24{bottom:659.250000px;}
.y23{bottom:667.950000px;}
.y5e{bottom:670.050000px;}
.y22{bottom:682.050000px;}
.y5d{bottom:688.980000px;}
.y21{bottom:690.780000px;}
.y5c{bottom:706.695000px;}
.y20{bottom:707.580000px;}
.y5b{bottom:721.080000px;}
.y1f{bottom:724.380000px;}
.y5a{bottom:740.280000px;}
.y1e{bottom:740.880000px;}
.y1d{bottom:757.695000px;}
.y59{bottom:758.880000px;}
.y7f{bottom:761.880000px;}
.y1c{bottom:773.580000px;}
.y81{bottom:777.210000px;}
.y58{bottom:777.795000px;}
.y1b{bottom:787.080000px;}
.y57{bottom:796.380000px;}
.y1a{bottom:803.580000px;}
.y56{bottom:815.295000px;}
.y19{bottom:820.380000px;}
.y55{bottom:834.195000px;}
.y18{bottom:837.195000px;}
.y54{bottom:852.825000px;}
.y17{bottom:854.925000px;}
.y85{bottom:856.425000px;}
.y53{bottom:870.825000px;}
.y16{bottom:873.825000px;}
.y52{bottom:886.725000px;}
.y15{bottom:903.525000px;}
.y51{bottom:905.625000px;}
.y14{bottom:918.825000px;}
.y50{bottom:924.225000px;}
.y13{bottom:940.725000px;}
.y4f{bottom:943.125000px;}
.y12{bottom:956.025000px;}
.y4e{bottom:961.725000px;}
.y11{bottom:968.325000px;}
.y4d{bottom:979.425000px;}
.y10{bottom:991.425000px;}
.y4c{bottom:994.425000px;}
.yf{bottom:1009.725000px;}
.y4b{bottom:1013.025000px;}
.y4a{bottom:1031.670000px;}
.ye{bottom:1043.670000px;}
.y49{bottom:1050.570000px;}
.y48{bottom:1069.455000px;}
.yd{bottom:1071.570000px;}
.ya{bottom:1082.370000px;}
.y47{bottom:1087.155000px;}
.y1{bottom:1098.570000px;}
.y4{bottom:1098.585000px;}
.y46{bottom:1103.070000px;}
.y45{bottom:1124.655000px;}
.y44{bottom:1148.955000px;}
.y43{bottom:1172.655000px;}
.h18{height:10.968750px;}
.h11{height:19.713867px;}
.h1e{height:24.900000px;}
.h9{height:26.285156px;}
.hd{height:30.227930px;}
.he{height:32.856445px;}
.h19{height:33.515625px;}
.h7{height:39.427734px;}
.h13{height:41.894531px;}
.h16{height:43.370508px;}
.h10{height:43.875000px;}
.hb{height:45.999023px;}
.h6{height:49.593750px;}
.h5{height:50.273438px;}
.hf{height:52.570312px;}
.h1d{height:54.456445px;}
.h17{height:54.843750px;}
.h1c{height:55.770000px;}
.h1a{height:59.141602px;}
.h3{height:65.712891px;}
.h14{height:70.970508px;}
.h12{height:78.855469px;}
.hc{height:86.170312px;}
.ha{height:105.140625px;}
.h4{height:108.922500px;}
.h2{height:108.937500px;}
.h8{height:111.585938px;}
.h1b{height:380.475000px;}
.h15{height:1262.688660px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w8{width:35.085000px;}
.w3{width:42.585000px;}
.w2{width:337.920000px;}
.w4{width:367.305000px;}
.w7{width:427.620000px;}
.w6{width:427.650000px;}
.w5{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x1c{left:10.530000px;}
.x3{left:20.100000px;}
.x8{left:22.200000px;}
.x1{left:72.637500px;}
.x9{left:80.737500px;}
.x17{left:87.037500px;}
.x18{left:122.437500px;}
.x14{left:129.337500px;}
.x11{left:133.837500px;}
.xf{left:137.737500px;}
.xc{left:148.837500px;}
.x15{left:156.330000px;}
.xd{left:164.730000px;}
.x2{left:174.637500px;}
.xe{left:254.775000px;}
.x7{left:259.875000px;}
.x10{left:266.775000px;}
.x16{left:297.120000px;}
.x19{left:309.405000px;}
.x1a{left:394.020000px;}
.x4{left:410.550000px;}
.x1d{left:415.050000px;}
.x1b{left:416.850000px;}
.x12{left:425.531250px;}
.x13{left:430.050000px;}
.xb{left:446.550000px;}
.x6{left:453.150000px;}
.xa{left:794.370000px;}
@media print{
.v1{vertical-align:-73.653333pt;}
.v5{vertical-align:-38.400000pt;}
.v4{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v6{vertical-align:24.533333pt;}
.v2{vertical-align:29.866667pt;}
.ls1c{letter-spacing:-1.285333pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.501333pt;}
.ls17{letter-spacing:-0.496000pt;}
.ls1d{letter-spacing:-0.485333pt;}
.ls18{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.170667pt;}
.lsf{letter-spacing:-0.085333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.042667pt;}
.lsd{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.165333pt;}
.ls1{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.458667pt;}
.ls3{letter-spacing:0.533333pt;}
.ls1f{letter-spacing:0.581333pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.746667pt;}
.ls7{letter-spacing:1.109333pt;}
.ls12{letter-spacing:18.714667pt;}
.ls9{letter-spacing:56.613333pt;}
.ls0{letter-spacing:256.160000pt;}
.ls6{letter-spacing:370.837333pt;}
.ws7{word-spacing:-53.333333pt;}
.ws2{word-spacing:-28.704000pt;}
.ws10{word-spacing:-21.418667pt;}
.wse{word-spacing:-20.832000pt;}
.wsb{word-spacing:-20.352000pt;}
.ws6{word-spacing:-18.517333pt;}
.ws1{word-spacing:-15.946667pt;}
.ws8{word-spacing:-15.626667pt;}
.ws13{word-spacing:-14.938667pt;}
.ws12{word-spacing:-14.810667pt;}
.wsd{word-spacing:-14.352000pt;}
.wsc{word-spacing:-13.978667pt;}
.ws11{word-spacing:-13.872000pt;}
.wsf{word-spacing:-13.850667pt;}
.wsa{word-spacing:-13.141333pt;}
.ws3{word-spacing:-12.757333pt;}
.ws0{word-spacing:-12.330667pt;}
.ws5{word-spacing:-12.245333pt;}
.ws4{word-spacing:-7.973333pt;}
.ws9{word-spacing:0.000000pt;}
._1e{margin-left:-2.112000pt;}
._2{margin-left:-1.120000pt;}
._1{width:1.386667pt;}
._3{width:2.810667pt;}
._4{width:3.792000pt;}
._d{width:4.938667pt;}
._7{width:5.888000pt;}
._8{width:6.992000pt;}
._6{width:8.336000pt;}
._1c{width:9.333333pt;}
._1b{width:10.586667pt;}
._10{width:11.808000pt;}
._f{width:12.800000pt;}
._5{width:13.712000pt;}
._c{width:14.613333pt;}
._1f{width:15.584000pt;}
._e{width:17.333333pt;}
._11{width:18.720000pt;}
._1d{width:20.410667pt;}
._13{width:22.240000pt;}
._12{width:23.664000pt;}
._18{width:25.008000pt;}
._b{width:26.309333pt;}
._14{width:28.864000pt;}
._17{width:31.392000pt;}
._19{width:33.504000pt;}
._1a{width:34.624000pt;}
._16{width:62.880000pt;}
._15{width:64.112000pt;}
._9{width:73.402667pt;}
._a{width:175.989333pt;}
._0{width:340.480000pt;}
.fsc{font-size:10.666667pt;}
.fsa{font-size:16.000000pt;}
.fs5{font-size:21.333333pt;}
.fs9{font-size:24.533333pt;}
.fs8{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fsb{font-size:35.200000pt;}
.fs7{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:4.533333pt;}
.y9{bottom:7.440000pt;}
.y84{bottom:8.520000pt;}
.y3{bottom:10.386667pt;}
.y83{bottom:23.186667pt;}
.y2{bottom:24.786667pt;}
.y82{bottom:38.106667pt;}
.yc{bottom:50.966667pt;}
.y8{bottom:56.253333pt;}
.yb{bottom:69.366667pt;}
.y80{bottom:70.400000pt;}
.y7{bottom:73.346667pt;}
.y5{bottom:82.413333pt;}
.y6{bottom:85.346667pt;}
.y42{bottom:87.766667pt;}
.y41{bottom:95.233333pt;}
.y7e{bottom:99.233333pt;}
.y40{bottom:106.166667pt;}
.y7d{bottom:116.300000pt;}
.y7c{bottom:131.766667pt;}
.y3f{bottom:134.960000pt;}
.y7b{bottom:145.106667pt;}
.y3e{bottom:153.360000pt;}
.y7a{bottom:161.626667pt;}
.y3d{bottom:172.026667pt;}
.y79{bottom:177.666667pt;}
.y3c{bottom:190.466667pt;}
.y78{bottom:191.533333pt;}
.y3b{bottom:206.200000pt;}
.y77{bottom:208.333333pt;}
.y3a{bottom:212.600000pt;}
.y76{bottom:224.066667pt;}
.y39{bottom:230.733333pt;}
.y75{bottom:237.666667pt;}
.y38{bottom:246.466667pt;}
.y74{bottom:254.733333pt;}
.y37{bottom:264.866667pt;}
.y73{bottom:271.533333pt;}
.y36{bottom:283.533333pt;}
.y72{bottom:287.266667pt;}
.y71{bottom:301.133333pt;}
.y35{bottom:302.200000pt;}
.y70{bottom:317.666667pt;}
.y34{bottom:320.626667pt;}
.y6f{bottom:333.693333pt;}
.y33{bottom:339.293333pt;}
.y6e{bottom:347.840000pt;}
.y32{bottom:357.960000pt;}
.y6d{bottom:364.360000pt;}
.y31{bottom:376.626667pt;}
.y6c{bottom:380.106667pt;}
.y6b{bottom:394.226667pt;}
.y30{bottom:395.026667pt;}
.y6a{bottom:410.773333pt;}
.y2f{bottom:413.693333pt;}
.y69{bottom:426.506667pt;}
.y2e{bottom:432.360000pt;}
.y68{bottom:440.360000pt;}
.y2d{bottom:450.760000pt;}
.y67{bottom:457.426667pt;}
.y2b{bottom:469.466667pt;}
.y66{bottom:473.733333pt;}
.y2c{bottom:475.600000pt;}
.y2a{bottom:488.133333pt;}
.y65{bottom:489.733333pt;}
.y64{bottom:503.866667pt;}
.y29{bottom:506.533333pt;}
.y63{bottom:520.666667pt;}
.y28{bottom:525.200000pt;}
.y62{bottom:536.133333pt;}
.y27{bottom:542.800000pt;}
.y61{bottom:550.266667pt;}
.y26{bottom:558.266667pt;}
.y60{bottom:566.800000pt;}
.y25{bottom:573.200000pt;}
.y5f{bottom:582.533333pt;}
.y24{bottom:586.000000pt;}
.y23{bottom:593.733333pt;}
.y5e{bottom:595.600000pt;}
.y22{bottom:606.266667pt;}
.y5d{bottom:612.426667pt;}
.y21{bottom:614.026667pt;}
.y5c{bottom:628.173333pt;}
.y20{bottom:628.960000pt;}
.y5b{bottom:640.960000pt;}
.y1f{bottom:643.893333pt;}
.y5a{bottom:658.026667pt;}
.y1e{bottom:658.560000pt;}
.y1d{bottom:673.506667pt;}
.y59{bottom:674.560000pt;}
.y7f{bottom:677.226667pt;}
.y1c{bottom:687.626667pt;}
.y81{bottom:690.853333pt;}
.y58{bottom:691.373333pt;}
.y1b{bottom:699.626667pt;}
.y57{bottom:707.893333pt;}
.y1a{bottom:714.293333pt;}
.y56{bottom:724.706667pt;}
.y19{bottom:729.226667pt;}
.y55{bottom:741.506667pt;}
.y18{bottom:744.173333pt;}
.y54{bottom:758.066667pt;}
.y17{bottom:759.933333pt;}
.y85{bottom:761.266667pt;}
.y53{bottom:774.066667pt;}
.y16{bottom:776.733333pt;}
.y52{bottom:788.200000pt;}
.y15{bottom:803.133333pt;}
.y51{bottom:805.000000pt;}
.y14{bottom:816.733333pt;}
.y50{bottom:821.533333pt;}
.y13{bottom:836.200000pt;}
.y4f{bottom:838.333333pt;}
.y12{bottom:849.800000pt;}
.y4e{bottom:854.866667pt;}
.y11{bottom:860.733333pt;}
.y4d{bottom:870.600000pt;}
.y10{bottom:881.266667pt;}
.y4c{bottom:883.933333pt;}
.yf{bottom:897.533333pt;}
.y4b{bottom:900.466667pt;}
.y4a{bottom:917.040000pt;}
.ye{bottom:927.706667pt;}
.y49{bottom:933.840000pt;}
.y48{bottom:950.626667pt;}
.yd{bottom:952.506667pt;}
.ya{bottom:962.106667pt;}
.y47{bottom:966.360000pt;}
.y1{bottom:976.506667pt;}
.y4{bottom:976.520000pt;}
.y46{bottom:980.506667pt;}
.y45{bottom:999.693333pt;}
.y44{bottom:1021.293333pt;}
.y43{bottom:1042.360000pt;}
.h18{height:9.750000pt;}
.h11{height:17.523438pt;}
.h1e{height:22.133333pt;}
.h9{height:23.364583pt;}
.hd{height:26.869271pt;}
.he{height:29.205729pt;}
.h19{height:29.791667pt;}
.h7{height:35.046875pt;}
.h13{height:37.239583pt;}
.h16{height:38.551562pt;}
.h10{height:39.000000pt;}
.hb{height:40.888021pt;}
.h6{height:44.083333pt;}
.h5{height:44.687500pt;}
.hf{height:46.729167pt;}
.h1d{height:48.405729pt;}
.h17{height:48.750000pt;}
.h1c{height:49.573333pt;}
.h1a{height:52.570312pt;}
.h3{height:58.411458pt;}
.h14{height:63.084896pt;}
.h12{height:70.093750pt;}
.hc{height:76.595833pt;}
.ha{height:93.458333pt;}
.h4{height:96.820000pt;}
.h2{height:96.833333pt;}
.h8{height:99.187500pt;}
.h1b{height:338.200000pt;}
.h15{height:1122.389920pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w8{width:31.186667pt;}
.w3{width:37.853333pt;}
.w2{width:300.373333pt;}
.w4{width:326.493333pt;}
.w7{width:380.106667pt;}
.w6{width:380.133333pt;}
.w5{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x1c{left:9.360000pt;}
.x3{left:17.866667pt;}
.x8{left:19.733333pt;}
.x1{left:64.566667pt;}
.x9{left:71.766667pt;}
.x17{left:77.366667pt;}
.x18{left:108.833333pt;}
.x14{left:114.966667pt;}
.x11{left:118.966667pt;}
.xf{left:122.433333pt;}
.xc{left:132.300000pt;}
.x15{left:138.960000pt;}
.xd{left:146.426667pt;}
.x2{left:155.233333pt;}
.xe{left:226.466667pt;}
.x7{left:231.000000pt;}
.x10{left:237.133333pt;}
.x16{left:264.106667pt;}
.x19{left:275.026667pt;}
.x1a{left:350.240000pt;}
.x4{left:364.933333pt;}
.x1d{left:368.933333pt;}
.x1b{left:370.533333pt;}
.x12{left:378.250000pt;}
.x13{left:382.266667pt;}
.xb{left:396.933333pt;}
.x6{left:402.800000pt;}
.xa{left:706.106667pt;}
}




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