
    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_89681bca63ed09c3abbf30cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_01402f3a8c51d19642af8c65.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_03c3242d37c24300aba4e42e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_89b31b66e90aa48fc9952975.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_0b76d799c5247e02a2f1ef49.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a456336b18a27bfe05719aef.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_01ad3419dea12071317c4998.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_420b546c69d260a48cbe3d69.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e5a339963ba9c7b841303b93.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0e851979e269f31f84db78d5.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.740000px;}
.ls13{letter-spacing:-1.572000px;}
.ls1c{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.552000px;}
.ls3{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.396000px;}
.ls12{letter-spacing:-0.372000px;}
.lsa{letter-spacing:-0.276000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.145800px;}
.lsb{letter-spacing:0.222000px;}
.ls11{letter-spacing:0.372000px;}
.ls16{letter-spacing:0.444000px;}
.ls18{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.552000px;}
.ls8{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.828000px;}
.lsf{letter-spacing:0.888000px;}
.ls10{letter-spacing:1.008000px;}
.ls6{letter-spacing:4.200000px;}
.ls15{letter-spacing:30.660000px;}
.ls17{letter-spacing:103.800000px;}
.ls19{letter-spacing:105.000000px;}
.ls0{letter-spacing:113.520000px;}
.ls14{letter-spacing:125.448000px;}
.ls1b{letter-spacing:135.000000px;}
.ls1a{letter-spacing:136.200000px;}
.ls7{letter-spacing:171.720000px;}
.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;}
}
.ws5{word-spacing:-60.000000px;}
.wsc{word-spacing:-21.504000px;}
.wsa{word-spacing:-21.372000px;}
.ws3{word-spacing:-21.000000px;}
.ws6{word-spacing:-20.724000px;}
.wsb{word-spacing:-20.628000px;}
.ws7{word-spacing:-20.448000px;}
.ws0{word-spacing:-19.776000px;}
.ws2{word-spacing:-15.384000px;}
.ws1{word-spacing:-14.832000px;}
.ws8{word-spacing:-12.204000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:268.212000px;}
._23{margin-left:-5.382000px;}
._21{margin-left:-4.332000px;}
._c{margin-left:-2.610000px;}
._2{margin-left:-1.344000px;}
._3{width:1.176000px;}
._4{width:2.388000px;}
._5{width:3.444000px;}
._17{width:5.376000px;}
._20{width:6.606000px;}
._9{width:7.644000px;}
._7{width:8.904000px;}
._8{width:10.248000px;}
._1d{width:11.310000px;}
._1e{width:13.170000px;}
._15{width:14.364000px;}
._16{width:15.456000px;}
._f{width:16.716000px;}
._e{width:18.060000px;}
._1c{width:19.470000px;}
._b{width:23.022000px;}
._6{width:24.522000px;}
._2b{width:26.064000px;}
._a{width:27.132000px;}
._d{width:28.266000px;}
._22{width:29.970000px;}
._14{width:31.080000px;}
._13{width:32.094000px;}
._1f{width:33.456000px;}
._29{width:34.620000px;}
._2a{width:35.856000px;}
._25{width:45.498000px;}
._24{width:46.788000px;}
._1b{width:48.888000px;}
._1a{width:49.896000px;}
._11{width:52.434000px;}
._10{width:53.760000px;}
._2c{width:103.290000px;}
._2d{width:105.420000px;}
._19{width:112.290000px;}
._18{width:113.568000px;}
._26{width:129.648000px;}
._12{width:132.888000px;}
._28{width:165.564000px;}
._27{width:177.132000px;}
._0{width:292.446000px;}
._1{width:1212.996000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,128,0);}
.fc6{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.150000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs5{font-size:120.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.237500px;}
.y6d{bottom:17.400000px;}
.y45{bottom:17.430000px;}
.y5{bottom:30.937500px;}
.y6b{bottom:47.280000px;}
.y43{bottom:47.355000px;}
.y6a{bottom:63.780000px;}
.y38{bottom:64.920000px;}
.y62{bottom:73.237500px;}
.y64{bottom:81.375000px;}
.y2c{bottom:87.037500px;}
.y39{bottom:90.420000px;}
.y36{bottom:92.137500px;}
.y61{bottom:100.837500px;}
.y65{bottom:110.370000px;}
.y2b{bottom:114.937500px;}
.y3a{bottom:115.950000px;}
.y35{bottom:119.737500px;}
.y60{bottom:128.737500px;}
.y66{bottom:139.350000px;}
.y3b{bottom:141.450000px;}
.y2a{bottom:142.537500px;}
.y34{bottom:147.637500px;}
.y5f{bottom:156.630000px;}
.y3c{bottom:166.950000px;}
.y67{bottom:168.375000px;}
.y29{bottom:170.475000px;}
.y33{bottom:175.275000px;}
.y5e{bottom:184.275000px;}
.y3d{bottom:192.450000px;}
.y68{bottom:197.370000px;}
.y28{bottom:198.075000px;}
.y32{bottom:203.175000px;}
.y5d{bottom:212.175000px;}
.y3e{bottom:217.980000px;}
.y27{bottom:225.975000px;}
.y69{bottom:226.350000px;}
.y31{bottom:230.775000px;}
.y5c{bottom:239.775000px;}
.y3f{bottom:243.480000px;}
.y26{bottom:253.875000px;}
.y6c{bottom:254.580000px;}
.y30{bottom:258.675000px;}
.y5b{bottom:267.675000px;}
.y40{bottom:268.980000px;}
.y25{bottom:281.475000px;}
.y2f{bottom:286.575000px;}
.y41{bottom:294.525000px;}
.y5a{bottom:295.275000px;}
.y24{bottom:309.375000px;}
.y2e{bottom:314.175000px;}
.y42{bottom:320.025000px;}
.y59{bottom:323.175000px;}
.y23{bottom:336.975000px;}
.y2d{bottom:337.575000px;}
.y37{bottom:338.400000px;}
.y44{bottom:348.225000px;}
.y58{bottom:350.805000px;}
.y22{bottom:364.905000px;}
.y57{bottom:378.720000px;}
.y21{bottom:392.505000px;}
.y56{bottom:406.620000px;}
.y20{bottom:420.405000px;}
.y55{bottom:434.205000px;}
.y1f{bottom:448.320000px;}
.y54{bottom:462.120000px;}
.y1e{bottom:475.905000px;}
.y53{bottom:489.705000px;}
.y1d{bottom:503.805000px;}
.y52{bottom:517.650000px;}
.y1c{bottom:531.450000px;}
.y51{bottom:545.250000px;}
.y1b{bottom:559.350000px;}
.y50{bottom:573.150000px;}
.y1a{bottom:586.950000px;}
.y4f{bottom:601.050000px;}
.y19{bottom:614.850000px;}
.y4e{bottom:628.650000px;}
.y18{bottom:642.750000px;}
.y4d{bottom:656.550000px;}
.y17{bottom:670.350000px;}
.y4c{bottom:684.180000px;}
.y16{bottom:698.280000px;}
.y4b{bottom:712.095000px;}
.y15{bottom:725.880000px;}
.y4a{bottom:739.695000px;}
.y14{bottom:753.780000px;}
.y49{bottom:767.595000px;}
.y13{bottom:781.380000px;}
.y48{bottom:795.480000px;}
.y12{bottom:809.280000px;}
.y47{bottom:823.080000px;}
.y11{bottom:837.195000px;}
.y46{bottom:846.525000px;}
.y63{bottom:848.700000px;}
.y10{bottom:864.825000px;}
.yf{bottom:892.725000px;}
.ye{bottom:920.325000px;}
.yd{bottom:948.225000px;}
.yc{bottom:975.825000px;}
.yb{bottom:1003.725000px;}
.ya{bottom:1031.655000px;}
.y9{bottom:1059.255000px;}
.y8{bottom:1087.155000px;}
.y7{bottom:1114.755000px;}
.y4{bottom:1139.070000px;}
.y3{bottom:1158.870000px;}
.y2{bottom:1183.155000px;}
.y1{bottom:1210.500000px;}
.h7{height:48.972000px;}
.h5{height:50.047852px;}
.hd{height:53.709961px;}
.he{height:53.859155px;}
.h4{height:66.978516px;}
.ha{height:74.033203px;}
.h2{height:76.546875px;}
.hb{height:82.400391px;}
.h9{height:82.441406px;}
.hf{height:83.548828px;}
.h8{height:84.656250px;}
.h11{height:87.445312px;}
.h6{height:95.683594px;}
.h3{height:105.251953px;}
.h10{height:285.900000px;}
.hc{height:379.800000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:649.800000px;}
.w4{width:725.400000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:9.937500px;}
.x11{left:16.762500px;}
.x17{left:23.625000px;}
.x10{left:30.450000px;}
.x5{left:42.299987px;}
.x18{left:68.130000px;}
.x4{left:84.937487px;}
.x1{left:106.537487px;}
.xd{left:113.737487px;}
.x6{left:132.637487px;}
.xf{left:147.337487px;}
.x13{left:181.620000px;}
.x9{left:194.474987px;}
.x14{left:251.400000px;}
.x7{left:276.074987px;}
.x1a{left:323.625000px;}
.x16{left:325.019987px;}
.x1b{left:345.750000px;}
.xb{left:352.019987px;}
.xa{left:353.819987px;}
.x8{left:446.249987px;}
.x2{left:521.249987px;}
.x19{left:590.130000px;}
.x3{left:641.879987px;}
.xc{left:732.824987px;}
.xe{left:735.224987px;}
.x15{left:811.754987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.546667pt;}
.ls13{letter-spacing:-1.397333pt;}
.ls1c{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.490667pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.352000pt;}
.ls12{letter-spacing:-0.330667pt;}
.lsa{letter-spacing:-0.245333pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.129600pt;}
.lsb{letter-spacing:0.197333pt;}
.ls11{letter-spacing:0.330667pt;}
.ls16{letter-spacing:0.394667pt;}
.ls18{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.490667pt;}
.ls8{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.736000pt;}
.lsf{letter-spacing:0.789333pt;}
.ls10{letter-spacing:0.896000pt;}
.ls6{letter-spacing:3.733333pt;}
.ls15{letter-spacing:27.253333pt;}
.ls17{letter-spacing:92.266667pt;}
.ls19{letter-spacing:93.333333pt;}
.ls0{letter-spacing:100.906667pt;}
.ls14{letter-spacing:111.509333pt;}
.ls1b{letter-spacing:120.000000pt;}
.ls1a{letter-spacing:121.066667pt;}
.ls7{letter-spacing:152.640000pt;}
.ws5{word-spacing:-53.333333pt;}
.wsc{word-spacing:-19.114667pt;}
.wsa{word-spacing:-18.997333pt;}
.ws3{word-spacing:-18.666667pt;}
.ws6{word-spacing:-18.421333pt;}
.wsb{word-spacing:-18.336000pt;}
.ws7{word-spacing:-18.176000pt;}
.ws0{word-spacing:-17.578667pt;}
.ws2{word-spacing:-13.674667pt;}
.ws1{word-spacing:-13.184000pt;}
.ws8{word-spacing:-10.848000pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:238.410667pt;}
._23{margin-left:-4.784000pt;}
._21{margin-left:-3.850667pt;}
._c{margin-left:-2.320000pt;}
._2{margin-left:-1.194667pt;}
._3{width:1.045333pt;}
._4{width:2.122667pt;}
._5{width:3.061333pt;}
._17{width:4.778667pt;}
._20{width:5.872000pt;}
._9{width:6.794667pt;}
._7{width:7.914667pt;}
._8{width:9.109333pt;}
._1d{width:10.053333pt;}
._1e{width:11.706667pt;}
._15{width:12.768000pt;}
._16{width:13.738667pt;}
._f{width:14.858667pt;}
._e{width:16.053333pt;}
._1c{width:17.306667pt;}
._b{width:20.464000pt;}
._6{width:21.797333pt;}
._2b{width:23.168000pt;}
._a{width:24.117333pt;}
._d{width:25.125333pt;}
._22{width:26.640000pt;}
._14{width:27.626667pt;}
._13{width:28.528000pt;}
._1f{width:29.738667pt;}
._29{width:30.773333pt;}
._2a{width:31.872000pt;}
._25{width:40.442667pt;}
._24{width:41.589333pt;}
._1b{width:43.456000pt;}
._1a{width:44.352000pt;}
._11{width:46.608000pt;}
._10{width:47.786667pt;}
._2c{width:91.813333pt;}
._2d{width:93.706667pt;}
._19{width:99.813333pt;}
._18{width:100.949333pt;}
._26{width:115.242667pt;}
._12{width:118.122667pt;}
._28{width:147.168000pt;}
._27{width:157.450667pt;}
._0{width:259.952000pt;}
._1{width:1078.218667pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.133333pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs5{font-size:106.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.100000pt;}
.y6d{bottom:15.466667pt;}
.y45{bottom:15.493333pt;}
.y5{bottom:27.500000pt;}
.y6b{bottom:42.026667pt;}
.y43{bottom:42.093333pt;}
.y6a{bottom:56.693333pt;}
.y38{bottom:57.706667pt;}
.y62{bottom:65.100000pt;}
.y64{bottom:72.333333pt;}
.y2c{bottom:77.366667pt;}
.y39{bottom:80.373333pt;}
.y36{bottom:81.900000pt;}
.y61{bottom:89.633333pt;}
.y65{bottom:98.106667pt;}
.y2b{bottom:102.166667pt;}
.y3a{bottom:103.066667pt;}
.y35{bottom:106.433333pt;}
.y60{bottom:114.433333pt;}
.y66{bottom:123.866667pt;}
.y3b{bottom:125.733333pt;}
.y2a{bottom:126.700000pt;}
.y34{bottom:131.233333pt;}
.y5f{bottom:139.226667pt;}
.y3c{bottom:148.400000pt;}
.y67{bottom:149.666667pt;}
.y29{bottom:151.533333pt;}
.y33{bottom:155.800000pt;}
.y5e{bottom:163.800000pt;}
.y3d{bottom:171.066667pt;}
.y68{bottom:175.440000pt;}
.y28{bottom:176.066667pt;}
.y32{bottom:180.600000pt;}
.y5d{bottom:188.600000pt;}
.y3e{bottom:193.760000pt;}
.y27{bottom:200.866667pt;}
.y69{bottom:201.200000pt;}
.y31{bottom:205.133333pt;}
.y5c{bottom:213.133333pt;}
.y3f{bottom:216.426667pt;}
.y26{bottom:225.666667pt;}
.y6c{bottom:226.293333pt;}
.y30{bottom:229.933333pt;}
.y5b{bottom:237.933333pt;}
.y40{bottom:239.093333pt;}
.y25{bottom:250.200000pt;}
.y2f{bottom:254.733333pt;}
.y41{bottom:261.800000pt;}
.y5a{bottom:262.466667pt;}
.y24{bottom:275.000000pt;}
.y2e{bottom:279.266667pt;}
.y42{bottom:284.466667pt;}
.y59{bottom:287.266667pt;}
.y23{bottom:299.533333pt;}
.y2d{bottom:300.066667pt;}
.y37{bottom:300.800000pt;}
.y44{bottom:309.533333pt;}
.y58{bottom:311.826667pt;}
.y22{bottom:324.360000pt;}
.y57{bottom:336.640000pt;}
.y21{bottom:348.893333pt;}
.y56{bottom:361.440000pt;}
.y20{bottom:373.693333pt;}
.y55{bottom:385.960000pt;}
.y1f{bottom:398.506667pt;}
.y54{bottom:410.773333pt;}
.y1e{bottom:423.026667pt;}
.y53{bottom:435.293333pt;}
.y1d{bottom:447.826667pt;}
.y52{bottom:460.133333pt;}
.y1c{bottom:472.400000pt;}
.y51{bottom:484.666667pt;}
.y1b{bottom:497.200000pt;}
.y50{bottom:509.466667pt;}
.y1a{bottom:521.733333pt;}
.y4f{bottom:534.266667pt;}
.y19{bottom:546.533333pt;}
.y4e{bottom:558.800000pt;}
.y18{bottom:571.333333pt;}
.y4d{bottom:583.600000pt;}
.y17{bottom:595.866667pt;}
.y4c{bottom:608.160000pt;}
.y16{bottom:620.693333pt;}
.y4b{bottom:632.973333pt;}
.y15{bottom:645.226667pt;}
.y4a{bottom:657.506667pt;}
.y14{bottom:670.026667pt;}
.y49{bottom:682.306667pt;}
.y13{bottom:694.560000pt;}
.y48{bottom:707.093333pt;}
.y12{bottom:719.360000pt;}
.y47{bottom:731.626667pt;}
.y11{bottom:744.173333pt;}
.y46{bottom:752.466667pt;}
.y63{bottom:754.400000pt;}
.y10{bottom:768.733333pt;}
.yf{bottom:793.533333pt;}
.ye{bottom:818.066667pt;}
.yd{bottom:842.866667pt;}
.yc{bottom:867.400000pt;}
.yb{bottom:892.200000pt;}
.ya{bottom:917.026667pt;}
.y9{bottom:941.560000pt;}
.y8{bottom:966.360000pt;}
.y7{bottom:990.893333pt;}
.y4{bottom:1012.506667pt;}
.y3{bottom:1030.106667pt;}
.y2{bottom:1051.693333pt;}
.y1{bottom:1076.000000pt;}
.h7{height:43.530667pt;}
.h5{height:44.486979pt;}
.hd{height:47.742188pt;}
.he{height:47.874805pt;}
.h4{height:59.536458pt;}
.ha{height:65.807292pt;}
.h2{height:68.041667pt;}
.hb{height:73.244792pt;}
.h9{height:73.281250pt;}
.hf{height:74.265625pt;}
.h8{height:75.250000pt;}
.h11{height:77.729167pt;}
.h6{height:85.052083pt;}
.h3{height:93.557292pt;}
.h10{height:254.133333pt;}
.hc{height:337.600000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:577.600000pt;}
.w4{width:644.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:8.833333pt;}
.x11{left:14.900000pt;}
.x17{left:21.000000pt;}
.x10{left:27.066667pt;}
.x5{left:37.599988pt;}
.x18{left:60.560000pt;}
.x4{left:75.499988pt;}
.x1{left:94.699988pt;}
.xd{left:101.099988pt;}
.x6{left:117.899988pt;}
.xf{left:130.966655pt;}
.x13{left:161.440000pt;}
.x9{left:172.866655pt;}
.x14{left:223.466667pt;}
.x7{left:245.399988pt;}
.x1a{left:287.666667pt;}
.x16{left:288.906655pt;}
.x1b{left:307.333333pt;}
.xb{left:312.906655pt;}
.xa{left:314.506655pt;}
.x8{left:396.666655pt;}
.x2{left:463.333322pt;}
.x19{left:524.560000pt;}
.x3{left:570.559988pt;}
.xc{left:651.399988pt;}
.xe{left:653.533322pt;}
.x15{left:721.559988pt;}
}




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