
    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_741539ad3ec073a462f2ea23.woff')format("woff");}.ff1{font-family:ff1;line-height:1.046387;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_d80074107056dd47ac5a1659.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_4616128477ea78e4c2cd73bc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_9c3482d9a9261f9f1e0b67b8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.046387;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_fd4ca16f40f8c493a15588ad.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_949bffad2c65eff2cf352634.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_e8668a69c7ba19ff16ea0e6e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_534452836df5974f6105e0fd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.937500;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_d7254d9f00b341c14ac7f886.woff')format("woff");}.ff9{font-family:ff9;line-height:0.900391;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_e85ad68141897e0a9f6052b2.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v3{vertical-align:-24.000000px;}
.v5{vertical-align:-6.000000px;}
.v1{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.940000px;}
.v4{vertical-align:24.000000px;}
.ls5{letter-spacing:-0.516000px;}
.lsc{letter-spacing:-0.462000px;}
.ls9{letter-spacing:-0.156000px;}
.ls6{letter-spacing:-0.024000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.084000px;}
.ls7{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.264000px;}
.ls3{letter-spacing:0.516000px;}
.lsa{letter-spacing:1.476000px;}
.lse{letter-spacing:7.320000px;}
.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;}
}
.wsb{word-spacing:-22.236000px;}
.ws7{word-spacing:-19.476000px;}
.ws5{word-spacing:-18.516000px;}
.ws2{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.976000px;}
.ws9{word-spacing:-14.916000px;}
.ws0{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.844000px;}
.wsa{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:0.396000px;}
._10{margin-left:-14.436000px;}
._e{margin-left:-5.526000px;}
._8{margin-left:-3.942000px;}
._6{margin-left:-2.502000px;}
._0{margin-left:-1.440000px;}
._1{width:1.428000px;}
._2{width:2.652000px;}
._7{width:4.386000px;}
._9{width:5.760000px;}
._3{width:8.280000px;}
._4{width:9.726000px;}
._5{width:10.956000px;}
._a{width:22.320000px;}
._b{width:23.982000px;}
._c{width:43.272000px;}
._d{width:45.282000px;}
._11{width:93.786000px;}
._f{width:127.248000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.735000px;}
.ye{bottom:3.750000px;}
.y11{bottom:3.765000px;}
.y1a{bottom:3.780000px;}
.yc{bottom:4.125000px;}
.y2c{bottom:24.360000px;}
.y28{bottom:24.375000px;}
.y41{bottom:24.390000px;}
.y3d{bottom:24.405000px;}
.y21{bottom:24.420000px;}
.y1f{bottom:24.750000px;}
.y39{bottom:24.780000px;}
.y32{bottom:30.375000px;}
.y30{bottom:30.750000px;}
.y3a{bottom:30.780000px;}
.y2b{bottom:45.000000px;}
.y27{bottom:45.030000px;}
.y35{bottom:45.382500px;}
.y42{bottom:51.000000px;}
.y3e{bottom:51.030000px;}
.y36{bottom:51.367500px;}
.y2a{bottom:66.000000px;}
.y2e{bottom:72.000000px;}
.y34{bottom:117.787500px;}
.y61{bottom:118.537500px;}
.y8d{bottom:119.662500px;}
.y94{bottom:122.662500px;}
.y4e{bottom:128.662500px;}
.y60{bottom:139.162500px;}
.y8c{bottom:140.287500px;}
.y93{bottom:143.287500px;}
.y77{bottom:144.412500px;}
.ya3{bottom:147.787500px;}
.y4d{bottom:149.662500px;}
.y5f{bottom:159.795000px;}
.y92{bottom:160.170000px;}
.y8b{bottom:160.920000px;}
.y76{bottom:165.030000px;}
.y4c{bottom:166.545000px;}
.ya2{bottom:167.670000px;}
.y5e{bottom:176.700000px;}
.y8a{bottom:177.825000px;}
.y33{bottom:180.825000px;}
.y75{bottom:185.700000px;}
.ya1{bottom:187.950000px;}
.y74{bottom:202.575000px;}
.ya0{bottom:208.200000px;}
.y59{bottom:211.575000px;}
.y31{bottom:222.825000px;}
.y9f{bottom:228.450000px;}
.y58{bottom:232.575000px;}
.y9e{bottom:247.575000px;}
.y57{bottom:249.450000px;}
.y2f{bottom:264.825000px;}
.y9d{bottom:268.575000px;}
.y68{bottom:273.825000px;}
.y9c{bottom:289.200000px;}
.y67{bottom:294.450000px;}
.y29{bottom:307.245000px;}
.y9b{bottom:309.870000px;}
.y66{bottom:315.495000px;}
.y9a{bottom:330.495000px;}
.y65{bottom:332.370000px;}
.y99{bottom:347.370000px;}
.y7d{bottom:373.245000px;}
.y26{bottom:390.870000px;}
.y7c{bottom:393.870000px;}
.y7b{bottom:414.870000px;}
.y7a{bottom:435.525000px;}
.y6f{bottom:444.900000px;}
.y79{bottom:456.150000px;}
.y25{bottom:457.275000px;}
.y6e{bottom:465.900000px;}
.y78{bottom:473.025000px;}
.y24{bottom:478.275000px;}
.y6d{bottom:482.775000px;}
.y89{bottom:485.775000px;}
.y23{bottom:498.900000px;}
.y88{bottom:506.400000px;}
.y22{bottom:519.525000px;}
.y87{bottom:527.025000px;}
.y20{bottom:537.150000px;}
.y86{bottom:547.650000px;}
.y85{bottom:564.570000px;}
.y1e{bottom:579.195000px;}
.y56{bottom:581.820000px;}
.y55{bottom:602.445000px;}
.y91{bottom:609.570000px;}
.y4b{bottom:613.695000px;}
.y1d{bottom:621.570000px;}
.y54{bottom:623.070000px;}
.y90{bottom:630.195000px;}
.y4a{bottom:634.320000px;}
.y5d{bottom:637.320000px;}
.y1c{bottom:642.945000px;}
.y53{bottom:643.695000px;}
.y73{bottom:650.820000px;}
.y8f{bottom:651.195000px;}
.y49{bottom:655.320000px;}
.y5c{bottom:657.945000px;}
.ybb{bottom:662.070000px;}
.y1b{bottom:664.320000px;}
.y52{bottom:664.695000px;}
.y72{bottom:671.445000px;}
.y64{bottom:671.820000px;}
.y48{bottom:675.945000px;}
.y5b{bottom:678.945000px;}
.yba{bottom:682.695000px;}
.y51{bottom:685.320000px;}
.y19{bottom:685.695000px;}
.y8e{bottom:688.725000px;}
.y71{bottom:692.100000px;}
.y63{bottom:692.475000px;}
.y5a{bottom:695.850000px;}
.y47{bottom:696.600000px;}
.y50{bottom:702.225000px;}
.y18{bottom:707.100000px;}
.y70{bottom:708.975000px;}
.y62{bottom:709.350000px;}
.yb9{bottom:716.100000px;}
.y46{bottom:717.225000px;}
.y17{bottom:732.600000px;}
.yb8{bottom:736.350000px;}
.y45{bottom:737.850000px;}
.y98{bottom:749.475000px;}
.y16{bottom:753.225000px;}
.yb7{bottom:756.600000px;}
.y44{bottom:758.475000px;}
.y84{bottom:768.975000px;}
.y97{bottom:770.475000px;}
.y15{bottom:773.850000px;}
.y43{bottom:776.100000px;}
.yb6{bottom:776.475000px;}
.y6c{bottom:785.850000px;}
.y96{bottom:787.350000px;}
.y83{bottom:789.600000px;}
.y14{bottom:794.475000px;}
.yb5{bottom:796.725000px;}
.y6b{bottom:807.975000px;}
.y82{bottom:810.225000px;}
.y13{bottom:812.100000px;}
.yb4{bottom:817.020000px;}
.y40{bottom:818.505000px;}
.y6a{bottom:829.755000px;}
.y81{bottom:831.255000px;}
.y12{bottom:833.880000px;}
.yb3{bottom:837.255000px;}
.y69{bottom:846.630000px;}
.y80{bottom:851.880000px;}
.y10{bottom:855.255000px;}
.yb2{bottom:857.130000px;}
.y7f{bottom:872.520000px;}
.yf{bottom:876.630000px;}
.yb1{bottom:877.380000px;}
.y3f{bottom:881.130000px;}
.y7e{bottom:889.380000px;}
.yb0{bottom:897.630000px;}
.yd{bottom:898.005000px;}
.yaf{bottom:917.505000px;}
.yb{bottom:919.380000px;}
.y3c{bottom:923.520000px;}
.yae{bottom:937.755000px;}
.ya{bottom:944.880000px;}
.yad{bottom:958.050000px;}
.y9{bottom:965.550000px;}
.yac{bottom:978.300000px;}
.y8{bottom:986.175000px;}
.yab{bottom:998.175000px;}
.y7{bottom:1006.800000px;}
.yaa{bottom:1018.425000px;}
.y6{bottom:1027.800000px;}
.y3b{bottom:1028.550000px;}
.ya9{bottom:1038.675000px;}
.y5{bottom:1048.425000px;}
.ya8{bottom:1058.550000px;}
.y4{bottom:1069.050000px;}
.y38{bottom:1070.550000px;}
.ya7{bottom:1078.830000px;}
.y3{bottom:1089.705000px;}
.ya6{bottom:1099.080000px;}
.y2{bottom:1110.330000px;}
.y37{bottom:1112.955000px;}
.y95{bottom:1117.455000px;}
.ya5{bottom:1119.330000px;}
.y1{bottom:1132.455000px;}
.y4f{bottom:1138.080000px;}
.ya4{bottom:1139.205000px;}
.h9{height:20.610000px;}
.h6{height:20.625000px;}
.h8{height:20.647500px;}
.h5{height:21.000000px;}
.h7{height:21.037500px;}
.he{height:39.867188px;}
.h10{height:41.250000px;}
.hb{height:41.287500px;}
.ha{height:41.625000px;}
.hf{height:41.662500px;}
.h3{height:50.800781px;}
.h4{height:59.343750px;}
.h2{height:59.800781px;}
.h14{height:61.875000px;}
.h13{height:61.897500px;}
.hc{height:61.912500px;}
.h16{height:62.226562px;}
.h12{height:62.287500px;}
.h17{height:63.562500px;}
.h15{height:63.807188px;}
.h11{height:63.867188px;}
.h18{height:65.645508px;}
.h1{height:79.734375px;}
.hd{height:82.875000px;}
.h0{height:1263.000000px;}
.wf{width:48.787500px;}
.w12{width:52.537500px;}
.wb{width:55.537500px;}
.w11{width:64.500000px;}
.w10{width:64.537500px;}
.wd{width:94.537500px;}
.w8{width:105.412500px;}
.wa{width:105.450000px;}
.w9{width:105.787500px;}
.w7{width:109.575000px;}
.w4{width:134.287500px;}
.w6{width:134.325000px;}
.w5{width:134.662500px;}
.w3{width:134.700000px;}
.we{width:139.537500px;}
.wc{width:150.450000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.875000px;}
.x5{left:108.037487px;}
.x4{left:151.949987px;}
.x3{left:160.949987px;}
.x1e{left:162.074987px;}
.x10{left:165.075000px;}
.xb{left:219.120000px;}
.x7{left:244.245000px;}
.x11{left:316.275000px;}
.xc{left:325.275000px;}
.x1{left:332.774987px;}
.x8{left:379.275000px;}
.x12{left:411.570000px;}
.xd{left:431.445000px;}
.x2{left:446.444987px;}
.x9{left:514.725000px;}
.xe{left:537.600000px;}
.x18{left:540.974987px;}
.x13{left:551.850000px;}
.x19{left:578.519987px;}
.x14{left:601.395000px;}
.xf{left:644.145000px;}
.xa{left:650.145000px;}
.x15{left:666.675000px;}
.x1d{left:675.299987px;}
.x16{left:731.925000px;}
.x1a{left:745.799987px;}
.x17{left:764.219987px;}
.x1c{left:769.844987px;}
.x1b{left:788.579987px;}
@media print{
.v3{vertical-align:-21.333333pt;}
.v5{vertical-align:-5.333333pt;}
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.613333pt;}
.v4{vertical-align:21.333333pt;}
.ls5{letter-spacing:-0.458667pt;}
.lsc{letter-spacing:-0.410667pt;}
.ls9{letter-spacing:-0.138667pt;}
.ls6{letter-spacing:-0.021333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.074667pt;}
.ls7{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.234667pt;}
.ls3{letter-spacing:0.458667pt;}
.lsa{letter-spacing:1.312000pt;}
.lse{letter-spacing:6.506667pt;}
.wsb{word-spacing:-19.765333pt;}
.ws7{word-spacing:-17.312000pt;}
.ws5{word-spacing:-16.458667pt;}
.ws2{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.978667pt;}
.ws9{word-spacing:-13.258667pt;}
.ws0{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.528000pt;}
.wsa{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:0.352000pt;}
._10{margin-left:-12.832000pt;}
._e{margin-left:-4.912000pt;}
._8{margin-left:-3.504000pt;}
._6{margin-left:-2.224000pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.269333pt;}
._2{width:2.357333pt;}
._7{width:3.898667pt;}
._9{width:5.120000pt;}
._3{width:7.360000pt;}
._4{width:8.645333pt;}
._5{width:9.738667pt;}
._a{width:19.840000pt;}
._b{width:21.317333pt;}
._c{width:38.464000pt;}
._d{width:40.250667pt;}
._11{width:83.365333pt;}
._f{width:113.109333pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:3.320000pt;}
.ye{bottom:3.333333pt;}
.y11{bottom:3.346667pt;}
.y1a{bottom:3.360000pt;}
.yc{bottom:3.666667pt;}
.y2c{bottom:21.653333pt;}
.y28{bottom:21.666667pt;}
.y41{bottom:21.680000pt;}
.y3d{bottom:21.693333pt;}
.y21{bottom:21.706667pt;}
.y1f{bottom:22.000000pt;}
.y39{bottom:22.026667pt;}
.y32{bottom:27.000000pt;}
.y30{bottom:27.333333pt;}
.y3a{bottom:27.360000pt;}
.y2b{bottom:40.000000pt;}
.y27{bottom:40.026667pt;}
.y35{bottom:40.340000pt;}
.y42{bottom:45.333333pt;}
.y3e{bottom:45.360000pt;}
.y36{bottom:45.660000pt;}
.y2a{bottom:58.666667pt;}
.y2e{bottom:64.000000pt;}
.y34{bottom:104.700000pt;}
.y61{bottom:105.366667pt;}
.y8d{bottom:106.366667pt;}
.y94{bottom:109.033333pt;}
.y4e{bottom:114.366667pt;}
.y60{bottom:123.700000pt;}
.y8c{bottom:124.700000pt;}
.y93{bottom:127.366667pt;}
.y77{bottom:128.366667pt;}
.ya3{bottom:131.366667pt;}
.y4d{bottom:133.033333pt;}
.y5f{bottom:142.040000pt;}
.y92{bottom:142.373333pt;}
.y8b{bottom:143.040000pt;}
.y76{bottom:146.693333pt;}
.y4c{bottom:148.040000pt;}
.ya2{bottom:149.040000pt;}
.y5e{bottom:157.066667pt;}
.y8a{bottom:158.066667pt;}
.y33{bottom:160.733333pt;}
.y75{bottom:165.066667pt;}
.ya1{bottom:167.066667pt;}
.y74{bottom:180.066667pt;}
.ya0{bottom:185.066667pt;}
.y59{bottom:188.066667pt;}
.y31{bottom:198.066667pt;}
.y9f{bottom:203.066667pt;}
.y58{bottom:206.733333pt;}
.y9e{bottom:220.066667pt;}
.y57{bottom:221.733333pt;}
.y2f{bottom:235.400000pt;}
.y9d{bottom:238.733333pt;}
.y68{bottom:243.400000pt;}
.y9c{bottom:257.066667pt;}
.y67{bottom:261.733333pt;}
.y29{bottom:273.106667pt;}
.y9b{bottom:275.440000pt;}
.y66{bottom:280.440000pt;}
.y9a{bottom:293.773333pt;}
.y65{bottom:295.440000pt;}
.y99{bottom:308.773333pt;}
.y7d{bottom:331.773333pt;}
.y26{bottom:347.440000pt;}
.y7c{bottom:350.106667pt;}
.y7b{bottom:368.773333pt;}
.y7a{bottom:387.133333pt;}
.y6f{bottom:395.466667pt;}
.y79{bottom:405.466667pt;}
.y25{bottom:406.466667pt;}
.y6e{bottom:414.133333pt;}
.y78{bottom:420.466667pt;}
.y24{bottom:425.133333pt;}
.y6d{bottom:429.133333pt;}
.y89{bottom:431.800000pt;}
.y23{bottom:443.466667pt;}
.y88{bottom:450.133333pt;}
.y22{bottom:461.800000pt;}
.y87{bottom:468.466667pt;}
.y20{bottom:477.466667pt;}
.y86{bottom:486.800000pt;}
.y85{bottom:501.840000pt;}
.y1e{bottom:514.840000pt;}
.y56{bottom:517.173333pt;}
.y55{bottom:535.506667pt;}
.y91{bottom:541.840000pt;}
.y4b{bottom:545.506667pt;}
.y1d{bottom:552.506667pt;}
.y54{bottom:553.840000pt;}
.y90{bottom:560.173333pt;}
.y4a{bottom:563.840000pt;}
.y5d{bottom:566.506667pt;}
.y1c{bottom:571.506667pt;}
.y53{bottom:572.173333pt;}
.y73{bottom:578.506667pt;}
.y8f{bottom:578.840000pt;}
.y49{bottom:582.506667pt;}
.y5c{bottom:584.840000pt;}
.ybb{bottom:588.506667pt;}
.y1b{bottom:590.506667pt;}
.y52{bottom:590.840000pt;}
.y72{bottom:596.840000pt;}
.y64{bottom:597.173333pt;}
.y48{bottom:600.840000pt;}
.y5b{bottom:603.506667pt;}
.yba{bottom:606.840000pt;}
.y51{bottom:609.173333pt;}
.y19{bottom:609.506667pt;}
.y8e{bottom:612.200000pt;}
.y71{bottom:615.200000pt;}
.y63{bottom:615.533333pt;}
.y5a{bottom:618.533333pt;}
.y47{bottom:619.200000pt;}
.y50{bottom:624.200000pt;}
.y18{bottom:628.533333pt;}
.y70{bottom:630.200000pt;}
.y62{bottom:630.533333pt;}
.yb9{bottom:636.533333pt;}
.y46{bottom:637.533333pt;}
.y17{bottom:651.200000pt;}
.yb8{bottom:654.533333pt;}
.y45{bottom:655.866667pt;}
.y98{bottom:666.200000pt;}
.y16{bottom:669.533333pt;}
.yb7{bottom:672.533333pt;}
.y44{bottom:674.200000pt;}
.y84{bottom:683.533333pt;}
.y97{bottom:684.866667pt;}
.y15{bottom:687.866667pt;}
.y43{bottom:689.866667pt;}
.yb6{bottom:690.200000pt;}
.y6c{bottom:698.533333pt;}
.y96{bottom:699.866667pt;}
.y83{bottom:701.866667pt;}
.y14{bottom:706.200000pt;}
.yb5{bottom:708.200000pt;}
.y6b{bottom:718.200000pt;}
.y82{bottom:720.200000pt;}
.y13{bottom:721.866667pt;}
.yb4{bottom:726.240000pt;}
.y40{bottom:727.560000pt;}
.y6a{bottom:737.560000pt;}
.y81{bottom:738.893333pt;}
.y12{bottom:741.226667pt;}
.yb3{bottom:744.226667pt;}
.y69{bottom:752.560000pt;}
.y80{bottom:757.226667pt;}
.y10{bottom:760.226667pt;}
.yb2{bottom:761.893333pt;}
.y7f{bottom:775.573333pt;}
.yf{bottom:779.226667pt;}
.yb1{bottom:779.893333pt;}
.y3f{bottom:783.226667pt;}
.y7e{bottom:790.560000pt;}
.yb0{bottom:797.893333pt;}
.yd{bottom:798.226667pt;}
.yaf{bottom:815.560000pt;}
.yb{bottom:817.226667pt;}
.y3c{bottom:820.906667pt;}
.yae{bottom:833.560000pt;}
.ya{bottom:839.893333pt;}
.yad{bottom:851.600000pt;}
.y9{bottom:858.266667pt;}
.yac{bottom:869.600000pt;}
.y8{bottom:876.600000pt;}
.yab{bottom:887.266667pt;}
.y7{bottom:894.933333pt;}
.yaa{bottom:905.266667pt;}
.y6{bottom:913.600000pt;}
.y3b{bottom:914.266667pt;}
.ya9{bottom:923.266667pt;}
.y5{bottom:931.933333pt;}
.ya8{bottom:940.933333pt;}
.y4{bottom:950.266667pt;}
.y38{bottom:951.600000pt;}
.ya7{bottom:958.960000pt;}
.y3{bottom:968.626667pt;}
.ya6{bottom:976.960000pt;}
.y2{bottom:986.960000pt;}
.y37{bottom:989.293333pt;}
.y95{bottom:993.293333pt;}
.ya5{bottom:994.960000pt;}
.y1{bottom:1006.626667pt;}
.y4f{bottom:1011.626667pt;}
.ya4{bottom:1012.626667pt;}
.h9{height:18.320000pt;}
.h6{height:18.333333pt;}
.h8{height:18.353333pt;}
.h5{height:18.666667pt;}
.h7{height:18.700000pt;}
.he{height:35.437500pt;}
.h10{height:36.666667pt;}
.hb{height:36.700000pt;}
.ha{height:37.000000pt;}
.hf{height:37.033333pt;}
.h3{height:45.156250pt;}
.h4{height:52.750000pt;}
.h2{height:53.156250pt;}
.h14{height:55.000000pt;}
.h13{height:55.020000pt;}
.hc{height:55.033333pt;}
.h16{height:55.312500pt;}
.h12{height:55.366667pt;}
.h17{height:56.500000pt;}
.h15{height:56.717500pt;}
.h11{height:56.770833pt;}
.h18{height:58.351562pt;}
.h1{height:70.875000pt;}
.hd{height:73.666667pt;}
.h0{height:1122.666667pt;}
.wf{width:43.366667pt;}
.w12{width:46.700000pt;}
.wb{width:49.366667pt;}
.w11{width:57.333333pt;}
.w10{width:57.366667pt;}
.wd{width:84.033333pt;}
.w8{width:93.700000pt;}
.wa{width:93.733333pt;}
.w9{width:94.033333pt;}
.w7{width:97.400000pt;}
.w4{width:119.366667pt;}
.w6{width:119.400000pt;}
.w5{width:119.700000pt;}
.w3{width:119.733333pt;}
.we{width:124.033333pt;}
.wc{width:133.733333pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.000000pt;}
.x5{left:96.033322pt;}
.x4{left:135.066655pt;}
.x3{left:143.066655pt;}
.x1e{left:144.066655pt;}
.x10{left:146.733333pt;}
.xb{left:194.773333pt;}
.x7{left:217.106667pt;}
.x11{left:281.133333pt;}
.xc{left:289.133333pt;}
.x1{left:295.799988pt;}
.x8{left:337.133333pt;}
.x12{left:365.840000pt;}
.xd{left:383.506667pt;}
.x2{left:396.839988pt;}
.x9{left:457.533333pt;}
.xe{left:477.866667pt;}
.x18{left:480.866655pt;}
.x13{left:490.533333pt;}
.x19{left:514.239988pt;}
.x14{left:534.573333pt;}
.xf{left:572.573333pt;}
.xa{left:577.906667pt;}
.x15{left:592.600000pt;}
.x1d{left:600.266655pt;}
.x16{left:650.600000pt;}
.x1a{left:662.933322pt;}
.x17{left:679.306655pt;}
.x1c{left:684.306655pt;}
.x1b{left:700.959988pt;}
}




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