
    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_57a8afe006da45a5c6fe7191.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_12d331890a6f3fdabb8c9ada.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3688505e0ad9433333b1d624.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bac1450ccd4f718906d505a0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8bb4b4d5aaf7cddae03c3c4e.woff2')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_dda67b0d58f8cf0db3fbf1a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_08f7694f2f16f08d27ad2b24.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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:-30.240000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls1b{letter-spacing:-1.458000px;}
.lsf{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.756000px;}
.lsd{letter-spacing:-0.738000px;}
.ls7{letter-spacing:-0.378600px;}
.ls3{letter-spacing:-0.369600px;}
.ls5{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.341400px;}
.ls16{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.037440px;}
.ls19{letter-spacing:-0.018720px;}
.ls14{letter-spacing:-0.009360px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.252720px;}
.ls13{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.350400px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.485280px;}
.ls0{letter-spacing:0.504000px;}
.lsa{letter-spacing:4.140000px;}
.ls17{letter-spacing:4.860000px;}
.ls1a{letter-spacing:5.580000px;}
.ls18{letter-spacing:23.580000px;}
.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;}
}
.ws0{word-spacing:-24.300000px;}
.ws2{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.410400px;}
.ws8{word-spacing:-21.401400px;}
.ws4{word-spacing:-21.097440px;}
.ws16{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.wsf{word-spacing:-21.050640px;}
.ws15{word-spacing:-21.041280px;}
.ws10{word-spacing:-21.022560px;}
.wsd{word-spacing:-20.880000px;}
.wsc{word-spacing:-20.718600px;}
.ws5{word-spacing:-20.700000px;}
.ws3{word-spacing:-20.690400px;}
.ws7{word-spacing:-20.681400px;}
.wsb{word-spacing:-20.322000px;}
.wsa{word-spacing:-20.304000px;}
.wse{word-spacing:-20.160000px;}
.ws18{word-spacing:-19.602000px;}
.ws12{word-spacing:-16.865400px;}
.ws11{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.254600px;}
.ws17{word-spacing:-13.500000px;}
.ws14{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._26{margin-left:-6.449280px;}
._10{margin-left:-5.222880px;}
._a{margin-left:-3.642960px;}
._b{margin-left:-2.171040px;}
._1{margin-left:-1.158720px;}
._0{width:1.392000px;}
._20{width:2.414160px;}
._4{width:3.553200px;}
._3{width:5.391360px;}
._5{width:6.447840px;}
._16{width:7.497360px;}
._15{width:8.567760px;}
._17{width:10.551120px;}
._d{width:11.577600px;}
._e{width:12.622560px;}
._6{width:13.700160px;}
._7{width:15.376080px;}
._c{width:16.658880px;}
._12{width:18.029280px;}
._29{width:19.543680px;}
._2a{width:22.072560px;}
._1e{width:23.212080px;}
._1d{width:24.480000px;}
._24{width:25.811280px;}
._13{width:27.630720px;}
._8{width:28.641600px;}
._1f{width:30.043440px;}
._25{width:31.087680px;}
._18{width:32.343840px;}
._2{width:33.422640px;}
._19{width:34.557120px;}
._1a{width:35.814720px;}
._1c{width:37.007040px;}
._1b{width:38.345040px;}
._27{width:41.174160px;}
._f{width:42.689040px;}
._14{width:44.777280px;}
._30{width:46.163520px;}
._31{width:47.323680px;}
._32{width:48.324000px;}
._2d{width:50.965200px;}
._21{width:52.078080px;}
._22{width:53.137680px;}
._23{width:55.022400px;}
._9{width:56.777760px;}
._11{width:58.140720px;}
._2b{width:63.116640px;}
._2c{width:64.186080px;}
._28{width:68.404800px;}
._33{width:102.945840px;}
._34{width:104.067120px;}
._2e{width:119.372640px;}
._2f{width:120.587280px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y6d{bottom:6.300000px;}
.y9{bottom:7.380000px;}
.y76{bottom:10.080000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y73{bottom:17.100000px;}
.y6e{bottom:17.280000px;}
.y2{bottom:24.660000px;}
.y6c{bottom:28.080000px;}
.y72{bottom:28.125000px;}
.y70{bottom:28.260000px;}
.y8{bottom:44.640000px;}
.y69{bottom:55.260000px;}
.y6a{bottom:66.060000px;}
.y68{bottom:77.040000px;}
.y4c{bottom:95.256000px;}
.y7d{bottom:98.856000px;}
.y66{bottom:104.796000px;}
.y4b{bottom:122.976000px;}
.y30{bottom:126.576000px;}
.y65{bottom:132.696000px;}
.y4a{bottom:150.870000px;}
.y2f{bottom:154.470000px;}
.y64{bottom:160.410000px;}
.y49{bottom:178.590000px;}
.y2e{bottom:182.190000px;}
.y63{bottom:188.130000px;}
.y48{bottom:206.310000px;}
.y2d{bottom:209.910000px;}
.y62{bottom:215.850000px;}
.y47{bottom:234.030000px;}
.y2c{bottom:237.630000px;}
.y61{bottom:243.750000px;}
.y46{bottom:261.930000px;}
.y2b{bottom:265.530000px;}
.y60{bottom:271.470000px;}
.y45{bottom:289.650000px;}
.y2a{bottom:293.250000px;}
.y5f{bottom:299.190000px;}
.y44{bottom:317.370000px;}
.y29{bottom:320.970000px;}
.y5e{bottom:327.090000px;}
.y43{bottom:345.135000px;}
.y28{bottom:348.915000px;}
.y5d{bottom:354.855000px;}
.y42{bottom:373.035000px;}
.y27{bottom:376.635000px;}
.y5c{bottom:382.575000px;}
.y41{bottom:400.755000px;}
.y26{bottom:404.355000px;}
.y5b{bottom:410.295000px;}
.y40{bottom:428.475000px;}
.y25{bottom:432.075000px;}
.y5a{bottom:438.195000px;}
.y3f{bottom:456.375000px;}
.y24{bottom:459.975000px;}
.y59{bottom:465.915000px;}
.y3e{bottom:484.095000px;}
.y23{bottom:487.695000px;}
.y58{bottom:493.635000px;}
.y3d{bottom:511.815000px;}
.y22{bottom:515.415000px;}
.y57{bottom:521.355000px;}
.y3c{bottom:539.535000px;}
.y21{bottom:543.315000px;}
.y56{bottom:549.255000px;}
.y3b{bottom:567.435000px;}
.y20{bottom:571.035000px;}
.y55{bottom:576.975000px;}
.y3a{bottom:595.155000px;}
.y1f{bottom:598.755000px;}
.y54{bottom:604.725000px;}
.y39{bottom:622.905000px;}
.y1e{bottom:626.505000px;}
.y53{bottom:632.625000px;}
.y38{bottom:650.805000px;}
.y1d{bottom:654.405000px;}
.y52{bottom:660.345000px;}
.y37{bottom:678.525000px;}
.y1c{bottom:682.125000px;}
.y51{bottom:688.065000px;}
.y36{bottom:706.245000px;}
.y1b{bottom:709.845000px;}
.y50{bottom:715.785000px;}
.y35{bottom:733.965000px;}
.y1a{bottom:737.745000px;}
.y4f{bottom:743.685000px;}
.y34{bottom:761.865000px;}
.y19{bottom:765.465000px;}
.y4e{bottom:771.405000px;}
.y33{bottom:789.585000px;}
.y75{bottom:791.745000px;}
.y18{bottom:793.185000px;}
.y32{bottom:817.305000px;}
.y17{bottom:820.905000px;}
.y74{bottom:821.805000px;}
.y71{bottom:844.485000px;}
.y31{bottom:845.025000px;}
.y16{bottom:848.805000px;}
.y15{bottom:872.970000px;}
.y7c{bottom:876.570000px;}
.y6f{bottom:888.810000px;}
.y14{bottom:900.690000px;}
.y7b{bottom:904.290000px;}
.y13{bottom:928.410000px;}
.y7a{bottom:932.010000px;}
.y6b{bottom:933.270000px;}
.y12{bottom:956.310000px;}
.y79{bottom:959.910000px;}
.y67{bottom:977.550000px;}
.y11{bottom:984.030000px;}
.y78{bottom:987.630000px;}
.y10{bottom:1011.750000px;}
.y77{bottom:1015.350000px;}
.yf{bottom:1039.470000px;}
.ye{bottom:1067.370000px;}
.yd{bottom:1095.090000px;}
.yc{bottom:1122.810000px;}
.y4d{bottom:1126.950000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h19{height:21.780000px;}
.h7{height:27.576000px;}
.h1a{height:29.340000px;}
.h2{height:41.400000px;}
.h16{height:43.560000px;}
.h18{height:43.596000px;}
.h17{height:43.740000px;}
.h12{height:46.445625px;}
.h4{height:53.709961px;}
.hd{height:59.066719px;}
.he{height:59.436914px;}
.h14{height:65.010914px;}
.h13{height:65.010924px;}
.h15{height:65.010929px;}
.h10{height:65.010937px;}
.h6{height:66.757500px;}
.hf{height:67.734141px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hc{height:82.635820px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.h9{height:96.508125px;}
.h11{height:141.300000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:31.320000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w9{width:73.620000px;}
.wb{width:82.080000px;}
.wc{width:84.456000px;}
.wa{width:95.076000px;}
.wd{width:116.100000px;}
.w8{width:211.530000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x1a{left:-34.740000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x7{left:19.800000px;}
.x12{left:23.580000px;}
.x1{left:31.860000px;}
.x13{left:45.900000px;}
.x10{left:50.220000px;}
.x4{left:59.970000px;}
.x17{left:68.445000px;}
.x5{left:84.959987px;}
.x19{left:90.720000px;}
.xf{left:95.976000px;}
.xa{left:124.595987px;}
.x8{left:127.475987px;}
.xd{left:198.029987px;}
.x11{left:340.275000px;}
.xe{left:368.894987px;}
.xc{left:385.994987px;}
.xb{left:392.114987px;}
.x14{left:414.615000px;}
.x9{left:446.474987px;}
.x15{left:510.405000px;}
.x16{left:593.205000px;}
.x18{left:678.390000px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls1b{letter-spacing:-1.296000pt;}
.lsf{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.672000pt;}
.lsd{letter-spacing:-0.656000pt;}
.ls7{letter-spacing:-0.336533pt;}
.ls3{letter-spacing:-0.328533pt;}
.ls5{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.303467pt;}
.ls16{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.033280pt;}
.ls19{letter-spacing:-0.016640pt;}
.ls14{letter-spacing:-0.008320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.224640pt;}
.ls13{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.311467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.431360pt;}
.ls0{letter-spacing:0.448000pt;}
.lsa{letter-spacing:3.680000pt;}
.ls17{letter-spacing:4.320000pt;}
.ls1a{letter-spacing:4.960000pt;}
.ls18{letter-spacing:20.960000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws2{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.031467pt;}
.ws8{word-spacing:-19.023467pt;}
.ws4{word-spacing:-18.753280pt;}
.ws16{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.wsf{word-spacing:-18.711680pt;}
.ws15{word-spacing:-18.703360pt;}
.ws10{word-spacing:-18.686720pt;}
.wsd{word-spacing:-18.560000pt;}
.wsc{word-spacing:-18.416533pt;}
.ws5{word-spacing:-18.400000pt;}
.ws3{word-spacing:-18.391467pt;}
.ws7{word-spacing:-18.383467pt;}
.wsb{word-spacing:-18.064000pt;}
.wsa{word-spacing:-18.048000pt;}
.wse{word-spacing:-17.920000pt;}
.ws18{word-spacing:-17.424000pt;}
.ws12{word-spacing:-14.991467pt;}
.ws11{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.448533pt;}
.ws17{word-spacing:-12.000000pt;}
.ws14{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._26{margin-left:-5.732693pt;}
._10{margin-left:-4.642560pt;}
._a{margin-left:-3.238187pt;}
._b{margin-left:-1.929813pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.237333pt;}
._20{width:2.145920pt;}
._4{width:3.158400pt;}
._3{width:4.792320pt;}
._5{width:5.731413pt;}
._16{width:6.664320pt;}
._15{width:7.615787pt;}
._17{width:9.378773pt;}
._d{width:10.291200pt;}
._e{width:11.220053pt;}
._6{width:12.177920pt;}
._7{width:13.667627pt;}
._c{width:14.807893pt;}
._12{width:16.026027pt;}
._29{width:17.372160pt;}
._2a{width:19.620053pt;}
._1e{width:20.632960pt;}
._1d{width:21.760000pt;}
._24{width:22.943360pt;}
._13{width:24.560640pt;}
._8{width:25.459200pt;}
._1f{width:26.705280pt;}
._25{width:27.633493pt;}
._18{width:28.750080pt;}
._2{width:29.709013pt;}
._19{width:30.717440pt;}
._1a{width:31.835307pt;}
._1c{width:32.895147pt;}
._1b{width:34.084480pt;}
._27{width:36.599253pt;}
._f{width:37.945813pt;}
._14{width:39.802027pt;}
._30{width:41.034240pt;}
._31{width:42.065493pt;}
._32{width:42.954667pt;}
._2d{width:45.302400pt;}
._21{width:46.291627pt;}
._22{width:47.233493pt;}
._23{width:48.908800pt;}
._9{width:50.469120pt;}
._11{width:51.680640pt;}
._2b{width:56.103680pt;}
._2c{width:57.054293pt;}
._28{width:60.804267pt;}
._33{width:91.507413pt;}
._34{width:92.504107pt;}
._2e{width:106.109013pt;}
._2f{width:107.188693pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y6d{bottom:5.600000pt;}
.y9{bottom:6.560000pt;}
.y76{bottom:8.960000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y73{bottom:15.200000pt;}
.y6e{bottom:15.360000pt;}
.y2{bottom:21.920000pt;}
.y6c{bottom:24.960000pt;}
.y72{bottom:25.000000pt;}
.y70{bottom:25.120000pt;}
.y8{bottom:39.680000pt;}
.y69{bottom:49.120000pt;}
.y6a{bottom:58.720000pt;}
.y68{bottom:68.480000pt;}
.y4c{bottom:84.672000pt;}
.y7d{bottom:87.872000pt;}
.y66{bottom:93.152000pt;}
.y4b{bottom:109.312000pt;}
.y30{bottom:112.512000pt;}
.y65{bottom:117.952000pt;}
.y4a{bottom:134.106667pt;}
.y2f{bottom:137.306667pt;}
.y64{bottom:142.586667pt;}
.y49{bottom:158.746667pt;}
.y2e{bottom:161.946667pt;}
.y63{bottom:167.226667pt;}
.y48{bottom:183.386667pt;}
.y2d{bottom:186.586667pt;}
.y62{bottom:191.866667pt;}
.y47{bottom:208.026667pt;}
.y2c{bottom:211.226667pt;}
.y61{bottom:216.666667pt;}
.y46{bottom:232.826667pt;}
.y2b{bottom:236.026667pt;}
.y60{bottom:241.306667pt;}
.y45{bottom:257.466667pt;}
.y2a{bottom:260.666667pt;}
.y5f{bottom:265.946667pt;}
.y44{bottom:282.106667pt;}
.y29{bottom:285.306667pt;}
.y5e{bottom:290.746667pt;}
.y43{bottom:306.786667pt;}
.y28{bottom:310.146667pt;}
.y5d{bottom:315.426667pt;}
.y42{bottom:331.586667pt;}
.y27{bottom:334.786667pt;}
.y5c{bottom:340.066667pt;}
.y41{bottom:356.226667pt;}
.y26{bottom:359.426667pt;}
.y5b{bottom:364.706667pt;}
.y40{bottom:380.866667pt;}
.y25{bottom:384.066667pt;}
.y5a{bottom:389.506667pt;}
.y3f{bottom:405.666667pt;}
.y24{bottom:408.866667pt;}
.y59{bottom:414.146667pt;}
.y3e{bottom:430.306667pt;}
.y23{bottom:433.506667pt;}
.y58{bottom:438.786667pt;}
.y3d{bottom:454.946667pt;}
.y22{bottom:458.146667pt;}
.y57{bottom:463.426667pt;}
.y3c{bottom:479.586667pt;}
.y21{bottom:482.946667pt;}
.y56{bottom:488.226667pt;}
.y3b{bottom:504.386667pt;}
.y20{bottom:507.586667pt;}
.y55{bottom:512.866667pt;}
.y3a{bottom:529.026667pt;}
.y1f{bottom:532.226667pt;}
.y54{bottom:537.533333pt;}
.y39{bottom:553.693333pt;}
.y1e{bottom:556.893333pt;}
.y53{bottom:562.333333pt;}
.y38{bottom:578.493333pt;}
.y1d{bottom:581.693333pt;}
.y52{bottom:586.973333pt;}
.y37{bottom:603.133333pt;}
.y1c{bottom:606.333333pt;}
.y51{bottom:611.613333pt;}
.y36{bottom:627.773333pt;}
.y1b{bottom:630.973333pt;}
.y50{bottom:636.253333pt;}
.y35{bottom:652.413333pt;}
.y1a{bottom:655.773333pt;}
.y4f{bottom:661.053333pt;}
.y34{bottom:677.213333pt;}
.y19{bottom:680.413333pt;}
.y4e{bottom:685.693333pt;}
.y33{bottom:701.853333pt;}
.y75{bottom:703.773333pt;}
.y18{bottom:705.053333pt;}
.y32{bottom:726.493333pt;}
.y17{bottom:729.693333pt;}
.y74{bottom:730.493333pt;}
.y71{bottom:750.653333pt;}
.y31{bottom:751.133333pt;}
.y16{bottom:754.493333pt;}
.y15{bottom:775.973333pt;}
.y7c{bottom:779.173333pt;}
.y6f{bottom:790.053333pt;}
.y14{bottom:800.613333pt;}
.y7b{bottom:803.813333pt;}
.y13{bottom:825.253333pt;}
.y7a{bottom:828.453333pt;}
.y6b{bottom:829.573333pt;}
.y12{bottom:850.053333pt;}
.y79{bottom:853.253333pt;}
.y67{bottom:868.933333pt;}
.y11{bottom:874.693333pt;}
.y78{bottom:877.893333pt;}
.y10{bottom:899.333333pt;}
.y77{bottom:902.533333pt;}
.yf{bottom:923.973333pt;}
.ye{bottom:948.773333pt;}
.yd{bottom:973.413333pt;}
.yc{bottom:998.053333pt;}
.y4d{bottom:1001.733333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h19{height:19.360000pt;}
.h7{height:24.512000pt;}
.h1a{height:26.080000pt;}
.h2{height:36.800000pt;}
.h16{height:38.720000pt;}
.h18{height:38.752000pt;}
.h17{height:38.880000pt;}
.h12{height:41.285000pt;}
.h4{height:47.742188pt;}
.hd{height:52.503750pt;}
.he{height:52.832812pt;}
.h14{height:57.787479pt;}
.h13{height:57.787488pt;}
.h15{height:57.787493pt;}
.h10{height:57.787500pt;}
.h6{height:59.340000pt;}
.hf{height:60.208125pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hc{height:73.454062pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.h9{height:85.785000pt;}
.h11{height:125.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.840000pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w9{width:65.440000pt;}
.wb{width:72.960000pt;}
.wc{width:75.072000pt;}
.wa{width:84.512000pt;}
.wd{width:103.200000pt;}
.w8{width:188.026667pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x1a{left:-30.880000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x7{left:17.600000pt;}
.x12{left:20.960000pt;}
.x1{left:28.320000pt;}
.x13{left:40.800000pt;}
.x10{left:44.640000pt;}
.x4{left:53.306667pt;}
.x17{left:60.840000pt;}
.x5{left:75.519988pt;}
.x19{left:80.640000pt;}
.xf{left:85.312000pt;}
.xa{left:110.751988pt;}
.x8{left:113.311988pt;}
.xd{left:176.026655pt;}
.x11{left:302.466667pt;}
.xe{left:327.906655pt;}
.xc{left:343.106655pt;}
.xb{left:348.546655pt;}
.x14{left:368.546667pt;}
.x9{left:396.866655pt;}
.x15{left:453.693333pt;}
.x16{left:527.293333pt;}
.x18{left:603.013333pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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