
    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_181d3cdb737c842edd58a9dc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9e71bdb7b56f86a305dc4eec.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c88fe4d7128eb2724313fe57.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_519d3e89b886a7fd7c41c2b3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_30f0d0511709009850ca089b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_2a6eb8a6e125487904e23fc0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1bf77844433d55b4ee6e8cbf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.746094;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_1c16a1b4052187e0f1cd187c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_75d08308882de0abd4eb2a66.woff')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.496200px;}
.lsb{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.120000px;}
.ls3{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.078000px;}
.ls2{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.408000px;}
.ls14{letter-spacing:0.420000px;}
.lse{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.660000px;}
.ls1{letter-spacing:45.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;}
}
.wsa{word-spacing:-18.408000px;}
.ws1{word-spacing:-18.384000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.240000px;}
.ws0{word-spacing:-15.204000px;}
.ws3{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.880000px;}
.ws9{word-spacing:-14.760000px;}
.wsb{word-spacing:-13.560000px;}
.ws5{word-spacing:-12.900000px;}
.ws6{word-spacing:-11.136000px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:317.760000px;}
._e{margin-left:-2.304000px;}
._1{margin-left:-1.146000px;}
._0{width:1.056000px;}
._c{width:2.616000px;}
._a{width:4.452000px;}
._b{width:5.628000px;}
._9{width:6.660000px;}
._6{width:7.848000px;}
._7{width:9.576000px;}
._8{width:10.788000px;}
._d{width:12.660000px;}
._10{width:13.764000px;}
._2{width:43.800000px;}
._4{width:336.180000px;}
._f{width:343.260000px;}
._3{width:1162.530000px;}
._5{width:1208.820000px;}
.fc6{color:transparent;}
.fc4{color:rgb(0,29,53);}
.fc3{color:rgb(0,79,136);}
.fc7{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fsa{font-size:60.150000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:3.300000px;}
.y8e{bottom:3.585000px;}
.y95{bottom:3.600000px;}
.y8a{bottom:3.615000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y87{bottom:6.300000px;}
.y93{bottom:8.400000px;}
.y98{bottom:12.000000px;}
.y5{bottom:12.337500px;}
.yaa{bottom:13.312500px;}
.y8d{bottom:20.685000px;}
.y82{bottom:20.700000px;}
.y3e{bottom:22.500000px;}
.y86{bottom:23.700000px;}
.ya0{bottom:32.820000px;}
.y8c{bottom:38.100000px;}
.y89{bottom:38.145000px;}
.y85{bottom:40.800000px;}
.y3d{bottom:42.615000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3c{bottom:60.045000px;}
.ya1{bottom:68.775000px;}
.y40{bottom:74.137500px;}
.y3b{bottom:77.145000px;}
.y3{bottom:81.337500px;}
.y3a{bottom:94.545000px;}
.ya2{bottom:104.775000px;}
.y39{bottom:111.645000px;}
.y76{bottom:116.737500px;}
.y9e{bottom:126.937500px;}
.y9f{bottom:127.200000px;}
.y38{bottom:129.045000px;}
.y29{bottom:134.137500px;}
.y75{bottom:134.437500px;}
.ya3{bottom:140.745000px;}
.y37{bottom:146.145000px;}
.y28{bottom:151.530000px;}
.y74{bottom:153.930000px;}
.yad{bottom:157.125000px;}
.y36{bottom:163.545000px;}
.y27{bottom:168.630000px;}
.ya4{bottom:176.745000px;}
.y35{bottom:180.645000px;}
.yac{bottom:184.275000px;}
.y73{bottom:185.775000px;}
.y26{bottom:186.075000px;}
.y34{bottom:198.045000px;}
.y72{bottom:203.475000px;}
.y25{bottom:203.775000px;}
.yab{bottom:211.395000px;}
.ya5{bottom:212.700000px;}
.y33{bottom:215.145000px;}
.y24{bottom:223.275000px;}
.y32{bottom:232.575000px;}
.y23{bottom:237.675000px;}
.y71{bottom:238.275000px;}
.ya6{bottom:248.700000px;}
.y31{bottom:249.675000px;}
.y22{bottom:255.075000px;}
.y70{bottom:255.975000px;}
.y30{bottom:267.075000px;}
.y21{bottom:272.775000px;}
.y6f{bottom:273.075000px;}
.y2f{bottom:284.175000px;}
.ya7{bottom:284.700000px;}
.y6e{bottom:290.475000px;}
.y20{bottom:292.275000px;}
.y2e{bottom:301.575000px;}
.y1f{bottom:306.675000px;}
.y6d{bottom:307.575000px;}
.y2d{bottom:318.675000px;}
.ya8{bottom:320.670000px;}
.y1e{bottom:324.075000px;}
.y6c{bottom:324.975000px;}
.y2c{bottom:336.690000px;}
.y1d{bottom:341.175000px;}
.y6b{bottom:342.075000px;}
.y2b{bottom:354.675000px;}
.ya9{bottom:356.670000px;}
.y1c{bottom:358.920000px;}
.y6a{bottom:359.505000px;}
.y69{bottom:376.620000px;}
.y1b{bottom:377.205000px;}
.y68{bottom:394.005000px;}
.y67{bottom:411.705000px;}
.y66{bottom:446.505000px;}
.y2a{bottom:458.205000px;}
.y65{bottom:464.505000px;}
.y64{bottom:499.620000px;}
.y9d{bottom:516.450000px;}
.y63{bottom:517.650000px;}
.y9c{bottom:552.150000px;}
.y62{bottom:552.450000px;}
.y61{bottom:570.450000px;}
.y9b{bottom:571.650000px;}
.y9a{bottom:584.250000px;}
.y60{bottom:589.650000px;}
.y99{bottom:592.050000px;}
.y5f{bottom:609.150000px;}
.y97{bottom:610.050000px;}
.y5e{bottom:623.550000px;}
.y5d{bottom:640.950000px;}
.y96{bottom:645.150000px;}
.y5c{bottom:658.050000px;}
.y94{bottom:663.150000px;}
.y5b{bottom:675.450000px;}
.y92{bottom:681.195000px;}
.y5a{bottom:692.595000px;}
.y59{bottom:710.295000px;}
.y91{bottom:720.495000px;}
.y58{bottom:729.780000px;}
.y90{bottom:741.195000px;}
.y57{bottom:744.495000px;}
.y8f{bottom:760.695000px;}
.y56{bottom:761.595000px;}
.y8b{bottom:772.395000px;}
.y55{bottom:778.980000px;}
.y54{bottom:796.080000px;}
.y53{bottom:813.495000px;}
.y88{bottom:824.880000px;}
.y52{bottom:830.580000px;}
.y51{bottom:847.995000px;}
.y1a{bottom:861.525000px;}
.y50{bottom:865.725000px;}
.yb9{bottom:872.625000px;}
.y84{bottom:877.425000px;}
.y19{bottom:881.925000px;}
.y4f{bottom:885.225000px;}
.yb8{bottom:892.725000px;}
.y4e{bottom:899.625000px;}
.y18{bottom:900.225000px;}
.yb7{bottom:910.125000px;}
.y17{bottom:913.125000px;}
.y4d{bottom:917.025000px;}
.yb6{bottom:927.225000px;}
.y81{bottom:932.925000px;}
.y4c{bottom:934.125000px;}
.y16{bottom:937.425000px;}
.yb5{bottom:944.625000px;}
.y4b{bottom:951.525000px;}
.y15{bottom:954.825000px;}
.yb4{bottom:961.725000px;}
.y14{bottom:966.225000px;}
.y4a{bottom:968.625000px;}
.yb3{bottom:979.125000px;}
.y80{bottom:979.425000px;}
.y49{bottom:986.025000px;}
.y13{bottom:987.525000px;}
.yb2{bottom:996.225000px;}
.y12{bottom:999.825000px;}
.y7f{bottom:1000.125000px;}
.y48{bottom:1003.725000px;}
.yb1{bottom:1013.625000px;}
.y7e{bottom:1019.670000px;}
.y11{bottom:1020.570000px;}
.y47{bottom:1023.255000px;}
.yb0{bottom:1030.755000px;}
.y7d{bottom:1034.370000px;}
.y46{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.yaf{bottom:1048.455000px;}
.y7c{bottom:1052.070000px;}
.y45{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.yae{bottom:1068.870000px;}
.y7b{bottom:1071.570000px;}
.y44{bottom:1072.170000px;}
.ya{bottom:1083.570000px;}
.y7a{bottom:1085.955000px;}
.y43{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y79{bottom:1103.370000px;}
.y42{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y78{bottom:1120.455000px;}
.y41{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y77{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3f{bottom:1196.400000px;}
.h9{height:8.677734px;}
.h5{height:12.700195px;}
.h20{height:17.100000px;}
.h1f{height:17.400000px;}
.ha{height:21.000000px;}
.he{height:21.166992px;}
.h10{height:21.694336px;}
.h1e{height:27.000000px;}
.hc{height:28.636523px;}
.h7{height:33.867188px;}
.h1a{height:34.500000px;}
.h12{height:34.710938px;}
.h3{height:36.000000px;}
.hd{height:38.100586px;}
.h8{height:39.049805px;}
.h18{height:41.159180px;}
.h4{height:42.333984px;}
.h17{height:43.330078px;}
.h11{height:43.388672px;}
.h13{height:43.681641px;}
.hf{height:45.732422px;}
.h19{height:46.567383px;}
.h6{height:50.800781px;}
.h1d{height:51.900000px;}
.h1c{height:51.937500px;}
.h15{height:51.996094px;}
.hb{height:52.066406px;}
.h1b{height:54.600000px;}
.h22{height:59.677734px;}
.h23{height:59.826929px;}
.h16{height:64.025391px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h14{height:371.475000px;}
.h21{height:378.000000px;}
.h0{height:1263.000000px;}
.wd{width:30.337500px;}
.wb{width:46.500000px;}
.wc{width:49.200000px;}
.w9{width:49.237500px;}
.w12{width:60.000000px;}
.w4{width:72.300000px;}
.w13{width:72.337500px;}
.we{width:75.637500px;}
.wa{width:82.200000px;}
.w3{width:108.000000px;}
.w10{width:122.437500px;}
.w11{width:143.437500px;}
.w8{width:170.430000px;}
.wf{width:182.730000px;}
.w6{width:253.875000px;}
.w14{width:266.775000px;}
.w5{width:483.450000px;}
.w15{width:648.000000px;}
.w7{width:730.725000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.800000px;}
.x17{left:9.600000px;}
.x2{left:10.799998px;}
.x1b{left:13.200000px;}
.x23{left:15.045000px;}
.x11{left:16.200000px;}
.x24{left:18.300000px;}
.x3{left:22.200000px;}
.x21{left:24.600000px;}
.x4{left:27.600000px;}
.x2d{left:30.000000px;}
.x2e{left:33.592500px;}
.x25{left:37.800000px;}
.x22{left:41.100000px;}
.x2b{left:47.745000px;}
.x2c{left:58.230000px;}
.x14{left:71.392500px;}
.xb{left:78.037500px;}
.x10{left:79.537500px;}
.x1{left:81.037487px;}
.x31{left:83.100000px;}
.x15{left:85.192500px;}
.x32{left:99.105000px;}
.xf{left:108.037487px;}
.xe{left:117.330000px;}
.x2a{left:130.530000px;}
.x13{left:135.037487px;}
.x28{left:141.937500px;}
.x9{left:153.629987px;}
.x29{left:214.875000px;}
.xc{left:241.582500px;}
.x16{left:252.675000px;}
.x26{left:264.975000px;}
.x18{left:302.520000px;}
.x1a{left:385.620000px;}
.x27{left:388.320000px;}
.x6{left:393.719987px;}
.x2f{left:421.049987px;}
.x1c{left:435.450000px;}
.x1d{left:482.550000px;}
.x1e{left:532.650000px;}
.xd{left:561.495000px;}
.x1f{left:563.895000px;}
.x33{left:570.120000px;}
.x12{left:594.479987px;}
.x20{left:613.695000px;}
.x8{left:614.879987px;}
.x7{left:648.194987px;}
.x5{left:697.124987px;}
.x30{left:733.724987px;}
.xa{left:812.369987px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.441067pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.362667pt;}
.ls14{letter-spacing:0.373333pt;}
.lse{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.586667pt;}
.ls1{letter-spacing:40.640000pt;}
.wsa{word-spacing:-16.362667pt;}
.ws1{word-spacing:-16.341333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.546667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.226667pt;}
.ws9{word-spacing:-13.120000pt;}
.wsb{word-spacing:-12.053333pt;}
.ws5{word-spacing:-11.466667pt;}
.ws6{word-spacing:-9.898667pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:282.453333pt;}
._e{margin-left:-2.048000pt;}
._1{margin-left:-1.018667pt;}
._0{width:0.938667pt;}
._c{width:2.325333pt;}
._a{width:3.957333pt;}
._b{width:5.002667pt;}
._9{width:5.920000pt;}
._6{width:6.976000pt;}
._7{width:8.512000pt;}
._8{width:9.589333pt;}
._d{width:11.253333pt;}
._10{width:12.234667pt;}
._2{width:38.933333pt;}
._4{width:298.826667pt;}
._f{width:305.120000pt;}
._3{width:1033.360000pt;}
._5{width:1074.506667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fsa{font-size:53.466667pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:2.933333pt;}
.y8e{bottom:3.186667pt;}
.y95{bottom:3.200000pt;}
.y8a{bottom:3.213333pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y87{bottom:5.600000pt;}
.y93{bottom:7.466667pt;}
.y98{bottom:10.666667pt;}
.y5{bottom:10.966667pt;}
.yaa{bottom:11.833333pt;}
.y8d{bottom:18.386667pt;}
.y82{bottom:18.400000pt;}
.y3e{bottom:20.000000pt;}
.y86{bottom:21.066667pt;}
.ya0{bottom:29.173333pt;}
.y8c{bottom:33.866667pt;}
.y89{bottom:33.906667pt;}
.y85{bottom:36.266667pt;}
.y3d{bottom:37.880000pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3c{bottom:53.373333pt;}
.ya1{bottom:61.133333pt;}
.y40{bottom:65.900000pt;}
.y3b{bottom:68.573333pt;}
.y3{bottom:72.300000pt;}
.y3a{bottom:84.040000pt;}
.ya2{bottom:93.133333pt;}
.y39{bottom:99.240000pt;}
.y76{bottom:103.766667pt;}
.y9e{bottom:112.833333pt;}
.y9f{bottom:113.066667pt;}
.y38{bottom:114.706667pt;}
.y29{bottom:119.233333pt;}
.y75{bottom:119.500000pt;}
.ya3{bottom:125.106667pt;}
.y37{bottom:129.906667pt;}
.y28{bottom:134.693333pt;}
.y74{bottom:136.826667pt;}
.yad{bottom:139.666667pt;}
.y36{bottom:145.373333pt;}
.y27{bottom:149.893333pt;}
.ya4{bottom:157.106667pt;}
.y35{bottom:160.573333pt;}
.yac{bottom:163.800000pt;}
.y73{bottom:165.133333pt;}
.y26{bottom:165.400000pt;}
.y34{bottom:176.040000pt;}
.y72{bottom:180.866667pt;}
.y25{bottom:181.133333pt;}
.yab{bottom:187.906667pt;}
.ya5{bottom:189.066667pt;}
.y33{bottom:191.240000pt;}
.y24{bottom:198.466667pt;}
.y32{bottom:206.733333pt;}
.y23{bottom:211.266667pt;}
.y71{bottom:211.800000pt;}
.ya6{bottom:221.066667pt;}
.y31{bottom:221.933333pt;}
.y22{bottom:226.733333pt;}
.y70{bottom:227.533333pt;}
.y30{bottom:237.400000pt;}
.y21{bottom:242.466667pt;}
.y6f{bottom:242.733333pt;}
.y2f{bottom:252.600000pt;}
.ya7{bottom:253.066667pt;}
.y6e{bottom:258.200000pt;}
.y20{bottom:259.800000pt;}
.y2e{bottom:268.066667pt;}
.y1f{bottom:272.600000pt;}
.y6d{bottom:273.400000pt;}
.y2d{bottom:283.266667pt;}
.ya8{bottom:285.040000pt;}
.y1e{bottom:288.066667pt;}
.y6c{bottom:288.866667pt;}
.y2c{bottom:299.280000pt;}
.y1d{bottom:303.266667pt;}
.y6b{bottom:304.066667pt;}
.y2b{bottom:315.266667pt;}
.ya9{bottom:317.040000pt;}
.y1c{bottom:319.040000pt;}
.y6a{bottom:319.560000pt;}
.y69{bottom:334.773333pt;}
.y1b{bottom:335.293333pt;}
.y68{bottom:350.226667pt;}
.y67{bottom:365.960000pt;}
.y66{bottom:396.893333pt;}
.y2a{bottom:407.293333pt;}
.y65{bottom:412.893333pt;}
.y64{bottom:444.106667pt;}
.y9d{bottom:459.066667pt;}
.y63{bottom:460.133333pt;}
.y9c{bottom:490.800000pt;}
.y62{bottom:491.066667pt;}
.y61{bottom:507.066667pt;}
.y9b{bottom:508.133333pt;}
.y9a{bottom:519.333333pt;}
.y60{bottom:524.133333pt;}
.y99{bottom:526.266667pt;}
.y5f{bottom:541.466667pt;}
.y97{bottom:542.266667pt;}
.y5e{bottom:554.266667pt;}
.y5d{bottom:569.733333pt;}
.y96{bottom:573.466667pt;}
.y5c{bottom:584.933333pt;}
.y94{bottom:589.466667pt;}
.y5b{bottom:600.400000pt;}
.y92{bottom:605.506667pt;}
.y5a{bottom:615.640000pt;}
.y59{bottom:631.373333pt;}
.y91{bottom:640.440000pt;}
.y58{bottom:648.693333pt;}
.y90{bottom:658.840000pt;}
.y57{bottom:661.773333pt;}
.y8f{bottom:676.173333pt;}
.y56{bottom:676.973333pt;}
.y8b{bottom:686.573333pt;}
.y55{bottom:692.426667pt;}
.y54{bottom:707.626667pt;}
.y53{bottom:723.106667pt;}
.y88{bottom:733.226667pt;}
.y52{bottom:738.293333pt;}
.y51{bottom:753.773333pt;}
.y1a{bottom:765.800000pt;}
.y50{bottom:769.533333pt;}
.yb9{bottom:775.666667pt;}
.y84{bottom:779.933333pt;}
.y19{bottom:783.933333pt;}
.y4f{bottom:786.866667pt;}
.yb8{bottom:793.533333pt;}
.y4e{bottom:799.666667pt;}
.y18{bottom:800.200000pt;}
.yb7{bottom:809.000000pt;}
.y17{bottom:811.666667pt;}
.y4d{bottom:815.133333pt;}
.yb6{bottom:824.200000pt;}
.y81{bottom:829.266667pt;}
.y4c{bottom:830.333333pt;}
.y16{bottom:833.266667pt;}
.yb5{bottom:839.666667pt;}
.y4b{bottom:845.800000pt;}
.y15{bottom:848.733333pt;}
.yb4{bottom:854.866667pt;}
.y14{bottom:858.866667pt;}
.y4a{bottom:861.000000pt;}
.yb3{bottom:870.333333pt;}
.y80{bottom:870.600000pt;}
.y49{bottom:876.466667pt;}
.y13{bottom:877.800000pt;}
.yb2{bottom:885.533333pt;}
.y12{bottom:888.733333pt;}
.y7f{bottom:889.000000pt;}
.y48{bottom:892.200000pt;}
.yb1{bottom:901.000000pt;}
.y7e{bottom:906.373333pt;}
.y11{bottom:907.173333pt;}
.y47{bottom:909.560000pt;}
.yb0{bottom:916.226667pt;}
.y7d{bottom:919.440000pt;}
.y46{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.yaf{bottom:931.960000pt;}
.y7c{bottom:935.173333pt;}
.y45{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.yae{bottom:950.106667pt;}
.y7b{bottom:952.506667pt;}
.y44{bottom:953.040000pt;}
.ya{bottom:963.173333pt;}
.y7a{bottom:965.293333pt;}
.y43{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y79{bottom:980.773333pt;}
.y42{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y78{bottom:995.960000pt;}
.y41{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y77{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3f{bottom:1063.466667pt;}
.h9{height:7.713542pt;}
.h5{height:11.289062pt;}
.h20{height:15.200000pt;}
.h1f{height:15.466667pt;}
.ha{height:18.666667pt;}
.he{height:18.815104pt;}
.h10{height:19.283854pt;}
.h1e{height:24.000000pt;}
.hc{height:25.454687pt;}
.h7{height:30.104167pt;}
.h1a{height:30.666667pt;}
.h12{height:30.854167pt;}
.h3{height:32.000000pt;}
.hd{height:33.867188pt;}
.h8{height:34.710938pt;}
.h18{height:36.585938pt;}
.h4{height:37.630208pt;}
.h17{height:38.515625pt;}
.h11{height:38.567708pt;}
.h13{height:38.828125pt;}
.hf{height:40.651042pt;}
.h19{height:41.393229pt;}
.h6{height:45.156250pt;}
.h1d{height:46.133333pt;}
.h1c{height:46.166667pt;}
.h15{height:46.218750pt;}
.hb{height:46.281250pt;}
.h1b{height:48.533333pt;}
.h22{height:53.046875pt;}
.h23{height:53.179492pt;}
.h16{height:56.911458pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h14{height:330.200000pt;}
.h21{height:336.000000pt;}
.h0{height:1122.666667pt;}
.wd{width:26.966667pt;}
.wb{width:41.333333pt;}
.wc{width:43.733333pt;}
.w9{width:43.766667pt;}
.w12{width:53.333333pt;}
.w4{width:64.266667pt;}
.w13{width:64.300000pt;}
.we{width:67.233333pt;}
.wa{width:73.066667pt;}
.w3{width:96.000000pt;}
.w10{width:108.833333pt;}
.w11{width:127.500000pt;}
.w8{width:151.493333pt;}
.wf{width:162.426667pt;}
.w6{width:225.666667pt;}
.w14{width:237.133333pt;}
.w5{width:429.733333pt;}
.w15{width:576.000000pt;}
.w7{width:649.533333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.933333pt;}
.x17{left:8.533333pt;}
.x2{left:9.599999pt;}
.x1b{left:11.733333pt;}
.x23{left:13.373333pt;}
.x11{left:14.400000pt;}
.x24{left:16.266667pt;}
.x3{left:19.733333pt;}
.x21{left:21.866667pt;}
.x4{left:24.533333pt;}
.x2d{left:26.666667pt;}
.x2e{left:29.860000pt;}
.x25{left:33.600000pt;}
.x22{left:36.533333pt;}
.x2b{left:42.440000pt;}
.x2c{left:51.760000pt;}
.x14{left:63.460000pt;}
.xb{left:69.366667pt;}
.x10{left:70.700000pt;}
.x1{left:72.033322pt;}
.x31{left:73.866667pt;}
.x15{left:75.726667pt;}
.x32{left:88.093333pt;}
.xf{left:96.033322pt;}
.xe{left:104.293333pt;}
.x2a{left:116.026667pt;}
.x13{left:120.033322pt;}
.x28{left:126.166667pt;}
.x9{left:136.559988pt;}
.x29{left:191.000000pt;}
.xc{left:214.740000pt;}
.x16{left:224.600000pt;}
.x26{left:235.533333pt;}
.x18{left:268.906667pt;}
.x1a{left:342.773333pt;}
.x27{left:345.173333pt;}
.x6{left:349.973322pt;}
.x2f{left:374.266655pt;}
.x1c{left:387.066667pt;}
.x1d{left:428.933333pt;}
.x1e{left:473.466667pt;}
.xd{left:499.106667pt;}
.x1f{left:501.240000pt;}
.x33{left:506.773333pt;}
.x12{left:528.426655pt;}
.x20{left:545.506667pt;}
.x8{left:546.559988pt;}
.x7{left:576.173322pt;}
.x5{left:619.666655pt;}
.x30{left:652.199988pt;}
.xa{left:722.106655pt;}
}




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