
    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_ee7e3e50b750835dcb1de594.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_60590b4e9b7c8986ae94758e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_662f535e37973ee6772f94e0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2c06f56bdfc90ae3516ec3bc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_31341e7fcc9762982ac77788.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_264da8e425e7ff34fd6ef52e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_eb891866e2b804db2286167a.woff')format("woff");}.ffa{font-family:ffa;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;}
.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:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.ls7{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.045360px;}
.ls9{letter-spacing:-0.009360px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:46.286640px;}
.ls8{letter-spacing:53.010000px;}
.ls2{letter-spacing:620.850000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.424640px;}
.ws7{word-spacing:-15.210000px;}
.ws0{word-spacing:-15.030000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.wsa{word-spacing:-12.150000px;}
.ws1{word-spacing:-11.970000px;}
.ws9{word-spacing:-11.960640px;}
.ws8{word-spacing:0.000000px;}
._a{margin-left:-6.372000px;}
._0{margin-left:-1.128960px;}
._2{width:1.110000px;}
._4{width:2.244960px;}
._19{width:3.887280px;}
._8{width:5.290560px;}
._9{width:6.539160px;}
._10{width:8.056080px;}
._d{width:9.476640px;}
._7{width:11.399760px;}
._6{width:12.416760px;}
._5{width:13.587120px;}
._25{width:16.183440px;}
._1e{width:17.254440px;}
._15{width:19.238400px;}
._11{width:20.861640px;}
._12{width:21.943800px;}
._14{width:23.867640px;}
._1d{width:24.949800px;}
._1c{width:26.693280px;}
._16{width:27.835560px;}
._20{width:31.202280px;}
._23{width:33.066000px;}
._f{width:34.629120px;}
._22{width:36.733320px;}
._1f{width:38.952000px;}
._1b{width:40.226040px;}
._17{width:41.542920px;}
._18{width:42.718320px;}
._26{width:44.079360px;}
._b{width:45.090000px;}
._27{width:46.395720px;}
._21{width:47.554920px;}
._13{width:51.689880px;}
._1a{width:53.106480px;}
._c{width:57.186000px;}
._3{width:62.070000px;}
._24{width:63.426600px;}
._e{width:67.995720px;}
._1{width:435.469920px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fsb{font-size:11.880000px;}
.fs3{font-size:29.880000px;}
.fsa{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsd{font-size:51.120000px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y21{bottom:0.450000px;}
.y7{bottom:2.610000px;}
.y76{bottom:2.700000px;}
.y3e{bottom:2.880000px;}
.y3c{bottom:2.970000px;}
.y93{bottom:3.060000px;}
.y24{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y25{bottom:4.590000px;}
.y5{bottom:8.370000px;}
.y6f{bottom:9.540000px;}
.y33{bottom:13.410000px;}
.ya3{bottom:14.880000px;}
.y9a{bottom:16.380000px;}
.y6{bottom:16.470000px;}
.y3b{bottom:18.450000px;}
.yf{bottom:22.320000px;}
.ya2{bottom:28.650000px;}
.y90{bottom:30.240000px;}
.y32{bottom:30.690000px;}
.ye{bottom:33.210000px;}
.y3a{bottom:34.020000px;}
.y4e{bottom:35.640000px;}
.ya1{bottom:42.510000px;}
.y99{bottom:44.010000px;}
.y8f{bottom:44.100000px;}
.y31{bottom:47.880000px;}
.y8{bottom:49.140000px;}
.y39{bottom:49.500000px;}
.yd{bottom:51.690000px;}
.ya0{bottom:56.280000px;}
.y98{bottom:57.780000px;}
.y4d{bottom:60.030000px;}
.y38{bottom:65.070000px;}
.y30{bottom:65.160000px;}
.yc{bottom:65.820000px;}
.y9f{bottom:70.050000px;}
.y97{bottom:71.640000px;}
.y4{bottom:73.530000px;}
.y37{bottom:80.550000px;}
.y2f{bottom:82.440000px;}
.y9e{bottom:83.910000px;}
.y96{bottom:85.410000px;}
.y36{bottom:96.120000px;}
.y9d{bottom:97.680000px;}
.y95{bottom:99.180000px;}
.y2e{bottom:99.630000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y9c{bottom:111.450000px;}
.y35{bottom:111.630000px;}
.y94{bottom:112.950000px;}
.y87{bottom:116.730000px;}
.y2d{bottom:116.910000px;}
.y4c{bottom:123.570000px;}
.y8c{bottom:127.440000px;}
.y86{bottom:133.920000px;}
.y2c{bottom:134.100000px;}
.ya{bottom:136.200000px;}
.y4b{bottom:140.760000px;}
.y9b{bottom:142.200000px;}
.y85{bottom:151.200000px;}
.y2b{bottom:151.380000px;}
.y4a{bottom:158.070000px;}
.y84{bottom:168.510000px;}
.y2a{bottom:168.660000px;}
.y49{bottom:175.350000px;}
.y83{bottom:185.700000px;}
.y29{bottom:185.850000px;}
.y48{bottom:192.540000px;}
.y82{bottom:202.980000px;}
.y28{bottom:203.130000px;}
.y47{bottom:209.820000px;}
.y81{bottom:220.260000px;}
.y27{bottom:220.440000px;}
.y46{bottom:227.100000px;}
.y80{bottom:237.450000px;}
.y45{bottom:244.290000px;}
.y7f{bottom:254.730000px;}
.y44{bottom:261.570000px;}
.y92{bottom:265.620000px;}
.y7e{bottom:272.010000px;}
.y43{bottom:278.850000px;}
.y7d{bottom:289.200000px;}
.y42{bottom:296.040000px;}
.y7c{bottom:305.490000px;}
.y41{bottom:313.320000px;}
.y7b{bottom:316.020000px;}
.y40{bottom:330.600000px;}
.y7a{bottom:345.180000px;}
.y3f{bottom:347.340000px;}
.y79{bottom:359.670000px;}
.y26{bottom:359.940000px;}
.y78{bottom:374.250000px;}
.y77{bottom:388.830000px;}
.y91{bottom:390.540000px;}
.y75{bottom:403.320000px;}
.y8e{bottom:405.030000px;}
.y74{bottom:421.140000px;}
.y73{bottom:438.420000px;}
.y3d{bottom:453.900000px;}
.y72{bottom:455.070000px;}
.y8d{bottom:461.010000px;}
.y71{bottom:466.950000px;}
.y34{bottom:470.100000px;}
.y8b{bottom:486.210000px;}
.y70{bottom:495.300000px;}
.y8a{bottom:503.490000px;}
.y89{bottom:520.770000px;}
.y6e{bottom:523.650000px;}
.y88{bottom:537.960000px;}
.y6d{bottom:555.240000px;}
.y6c{bottom:572.430000px;}
.y6b{bottom:589.740000px;}
.y23{bottom:595.140000px;}
.y6a{bottom:607.020000px;}
.y69{bottom:624.210000px;}
.y22{bottom:625.920000px;}
.y20{bottom:628.800000px;}
.y1f{bottom:634.560000px;}
.y68{bottom:641.490000px;}
.y1e{bottom:651.840000px;}
.y67{bottom:658.770000px;}
.y66{bottom:675.960000px;}
.y1d{bottom:676.410000px;}
.y65{bottom:693.240000px;}
.y1c{bottom:705.210000px;}
.y64{bottom:710.520000px;}
.y63{bottom:727.710000px;}
.y1b{bottom:730.950000px;}
.y1a{bottom:743.190000px;}
.y62{bottom:744.990000px;}
.y61{bottom:762.270000px;}
.y19{bottom:768.840000px;}
.y60{bottom:779.460000px;}
.y18{bottom:781.080000px;}
.y5f{bottom:796.740000px;}
.y17{bottom:805.650000px;}
.y5e{bottom:814.020000px;}
.y5d{bottom:831.210000px;}
.y16{bottom:836.700000px;}
.y5c{bottom:848.490000px;}
.y5b{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.y5a{bottom:882.960000px;}
.y14{bottom:898.800000px;}
.y59{bottom:900.240000px;}
.y58{bottom:917.430000px;}
.y13{bottom:927.240000px;}
.y57{bottom:934.710000px;}
.y56{bottom:951.990000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.y55{bottom:969.180000px;}
.y54{bottom:986.460000px;}
.y53{bottom:1003.770000px;}
.y52{bottom:1020.960000px;}
.y51{bottom:1038.240000px;}
.y50{bottom:1055.520000px;}
.y4f{bottom:1072.710000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h14{height:1.800000px;}
.h15{height:4.273242px;}
.hf{height:4.318066px;}
.h16{height:8.382129px;}
.h22{height:13.770000px;}
.h26{height:13.770150px;}
.h21{height:13.860000px;}
.h1c{height:15.480000px;}
.h17{height:17.190000px;}
.hc{height:20.863477px;}
.ha{height:21.082324px;}
.h4{height:27.630000px;}
.h12{height:29.409961px;}
.h6{height:33.431836px;}
.h24{height:33.782520px;}
.h1f{height:36.068555px;}
.h1e{height:37.705078px;}
.h18{height:38.100586px;}
.h7{height:39.082324px;}
.h1b{height:41.343750px;}
.h5{height:41.978320px;}
.h3{height:42.418652px;}
.h20{height:43.769004px;}
.h2{height:45.295488px;}
.h13{height:46.000195px;}
.h23{height:49.552031px;}
.h1{height:50.800781px;}
.h11{height:53.838457px;}
.h25{height:55.260000px;}
.h8{height:65.526152px;}
.hd{height:72.418535px;}
.h10{height:76.201172px;}
.h1d{height:93.150000px;}
.hb{height:93.219434px;}
.he{height:118.619824px;}
.h28{height:122.610000px;}
.h27{height:124.110000px;}
.h1a{height:124.230000px;}
.h9{height:143.220000px;}
.h19{height:234.390000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w9{width:83.970000px;}
.wa{width:95.700000px;}
.wb{width:104.220000px;}
.w11{width:113.670000px;}
.wc{width:120.870000px;}
.we{width:121.770000px;}
.wf{width:122.130000px;}
.wd{width:161.580000px;}
.w5{width:165.900000px;}
.w8{width:217.740000px;}
.w12{width:267.600000px;}
.w10{width:382.080000px;}
.w7{width:603.240000px;}
.w4{width:648.060000px;}
.w3{width:745.470000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x17{left:3.150000px;}
.x4{left:4.320000px;}
.x1e{left:6.749986px;}
.x18{left:8.100000px;}
.x22{left:10.080000px;}
.x2e{left:14.490000px;}
.x25{left:15.840000px;}
.x20{left:17.640000px;}
.x26{left:20.520000px;}
.x2b{left:21.870000px;}
.x29{left:23.610000px;}
.x2a{left:30.870000px;}
.x2c{left:32.130000px;}
.x23{left:33.420000px;}
.x30{left:34.560000px;}
.x32{left:36.810000px;}
.x1c{left:38.340000px;}
.x34{left:41.310000px;}
.x28{left:42.390000px;}
.x6{left:45.540000px;}
.x19{left:46.710000px;}
.x33{left:47.970000px;}
.x31{left:50.040000px;}
.x1f{left:52.110000px;}
.x1{left:53.999986px;}
.x1b{left:59.760000px;}
.x12{left:65.069986px;}
.xa{left:70.470000px;}
.x14{left:77.489986px;}
.xe{left:87.749986px;}
.x3{left:99.360000px;}
.x9{left:105.480000px;}
.x2{left:107.999986px;}
.x39{left:113.220000px;}
.x37{left:119.250000px;}
.xf{left:127.439986px;}
.x5{left:134.460000px;}
.x21{left:137.700000px;}
.x13{left:152.759986px;}
.x8{left:200.190000px;}
.x11{left:202.079986px;}
.x2d{left:215.400000px;}
.xb{left:231.780000px;}
.x24{left:234.210000px;}
.x7{left:324.030000px;}
.x2f{left:337.890000px;}
.x27{left:339.150000px;}
.x15{left:368.129986px;}
.x10{left:464.159986px;}
.x16{left:466.139986px;}
.x1d{left:486.059986px;}
.x36{left:503.250000px;}
.x35{left:513.059986px;}
.x38{left:617.730000px;}
.x1a{left:650.670000px;}
.xc{left:693.600000px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.040320pt;}
.ls9{letter-spacing:-0.008320pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:41.143680pt;}
.ls8{letter-spacing:47.120000pt;}
.ls2{letter-spacing:551.866667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.599680pt;}
.ws7{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.360000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.wsa{word-spacing:-10.800000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws9{word-spacing:-10.631680pt;}
.ws8{word-spacing:0.000000pt;}
._a{margin-left:-5.664000pt;}
._0{margin-left:-1.003520pt;}
._2{width:0.986667pt;}
._4{width:1.995520pt;}
._19{width:3.455360pt;}
._8{width:4.702720pt;}
._9{width:5.812587pt;}
._10{width:7.160960pt;}
._d{width:8.423680pt;}
._7{width:10.133120pt;}
._6{width:11.037120pt;}
._5{width:12.077440pt;}
._25{width:14.385280pt;}
._1e{width:15.337280pt;}
._15{width:17.100800pt;}
._11{width:18.543680pt;}
._12{width:19.505600pt;}
._14{width:21.215680pt;}
._1d{width:22.177600pt;}
._1c{width:23.727360pt;}
._16{width:24.742720pt;}
._20{width:27.735360pt;}
._23{width:29.392000pt;}
._f{width:30.781440pt;}
._22{width:32.651840pt;}
._1f{width:34.624000pt;}
._1b{width:35.756480pt;}
._17{width:36.927040pt;}
._18{width:37.971840pt;}
._26{width:39.181653pt;}
._b{width:40.080000pt;}
._27{width:41.240640pt;}
._21{width:42.271040pt;}
._13{width:45.946560pt;}
._1a{width:47.205760pt;}
._c{width:50.832000pt;}
._3{width:55.173333pt;}
._24{width:56.379200pt;}
._e{width:60.440640pt;}
._1{width:387.084373pt;}
.fs8{font-size:5.440000pt;}
.fsb{font-size:10.560000pt;}
.fs3{font-size:26.560000pt;}
.fsa{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsd{font-size:45.440000pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:0.400000pt;}
.y7{bottom:2.320000pt;}
.y76{bottom:2.400000pt;}
.y3e{bottom:2.560000pt;}
.y3c{bottom:2.640000pt;}
.y93{bottom:2.720000pt;}
.y24{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y25{bottom:4.080000pt;}
.y5{bottom:7.440000pt;}
.y6f{bottom:8.480000pt;}
.y33{bottom:11.920000pt;}
.ya3{bottom:13.226667pt;}
.y9a{bottom:14.560000pt;}
.y6{bottom:14.640000pt;}
.y3b{bottom:16.400000pt;}
.yf{bottom:19.840000pt;}
.ya2{bottom:25.466667pt;}
.y90{bottom:26.880000pt;}
.y32{bottom:27.280000pt;}
.ye{bottom:29.520000pt;}
.y3a{bottom:30.240000pt;}
.y4e{bottom:31.680000pt;}
.ya1{bottom:37.786667pt;}
.y99{bottom:39.120000pt;}
.y8f{bottom:39.200000pt;}
.y31{bottom:42.560000pt;}
.y8{bottom:43.680000pt;}
.y39{bottom:44.000000pt;}
.yd{bottom:45.946667pt;}
.ya0{bottom:50.026667pt;}
.y98{bottom:51.360000pt;}
.y4d{bottom:53.360000pt;}
.y38{bottom:57.840000pt;}
.y30{bottom:57.920000pt;}
.yc{bottom:58.506667pt;}
.y9f{bottom:62.266667pt;}
.y97{bottom:63.680000pt;}
.y4{bottom:65.360000pt;}
.y37{bottom:71.600000pt;}
.y2f{bottom:73.280000pt;}
.y9e{bottom:74.586667pt;}
.y96{bottom:75.920000pt;}
.y36{bottom:85.440000pt;}
.y9d{bottom:86.826667pt;}
.y95{bottom:88.160000pt;}
.y2e{bottom:88.560000pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y9c{bottom:99.066667pt;}
.y35{bottom:99.226667pt;}
.y94{bottom:100.400000pt;}
.y87{bottom:103.760000pt;}
.y2d{bottom:103.920000pt;}
.y4c{bottom:109.840000pt;}
.y8c{bottom:113.280000pt;}
.y86{bottom:119.040000pt;}
.y2c{bottom:119.200000pt;}
.ya{bottom:121.066667pt;}
.y4b{bottom:125.120000pt;}
.y9b{bottom:126.400000pt;}
.y85{bottom:134.400000pt;}
.y2b{bottom:134.560000pt;}
.y4a{bottom:140.506667pt;}
.y84{bottom:149.786667pt;}
.y2a{bottom:149.920000pt;}
.y49{bottom:155.866667pt;}
.y83{bottom:165.066667pt;}
.y29{bottom:165.200000pt;}
.y48{bottom:171.146667pt;}
.y82{bottom:180.426667pt;}
.y28{bottom:180.560000pt;}
.y47{bottom:186.506667pt;}
.y81{bottom:195.786667pt;}
.y27{bottom:195.946667pt;}
.y46{bottom:201.866667pt;}
.y80{bottom:211.066667pt;}
.y45{bottom:217.146667pt;}
.y7f{bottom:226.426667pt;}
.y44{bottom:232.506667pt;}
.y92{bottom:236.106667pt;}
.y7e{bottom:241.786667pt;}
.y43{bottom:247.866667pt;}
.y7d{bottom:257.066667pt;}
.y42{bottom:263.146667pt;}
.y7c{bottom:271.546667pt;}
.y41{bottom:278.506667pt;}
.y7b{bottom:280.906667pt;}
.y40{bottom:293.866667pt;}
.y7a{bottom:306.826667pt;}
.y3f{bottom:308.746667pt;}
.y79{bottom:319.706667pt;}
.y26{bottom:319.946667pt;}
.y78{bottom:332.666667pt;}
.y77{bottom:345.626667pt;}
.y91{bottom:347.146667pt;}
.y75{bottom:358.506667pt;}
.y8e{bottom:360.026667pt;}
.y74{bottom:374.346667pt;}
.y73{bottom:389.706667pt;}
.y3d{bottom:403.466667pt;}
.y72{bottom:404.506667pt;}
.y8d{bottom:409.786667pt;}
.y71{bottom:415.066667pt;}
.y34{bottom:417.866667pt;}
.y8b{bottom:432.186667pt;}
.y70{bottom:440.266667pt;}
.y8a{bottom:447.546667pt;}
.y89{bottom:462.906667pt;}
.y6e{bottom:465.466667pt;}
.y88{bottom:478.186667pt;}
.y6d{bottom:493.546667pt;}
.y6c{bottom:508.826667pt;}
.y6b{bottom:524.213333pt;}
.y23{bottom:529.013333pt;}
.y6a{bottom:539.573333pt;}
.y69{bottom:554.853333pt;}
.y22{bottom:556.373333pt;}
.y20{bottom:558.933333pt;}
.y1f{bottom:564.053333pt;}
.y68{bottom:570.213333pt;}
.y1e{bottom:579.413333pt;}
.y67{bottom:585.573333pt;}
.y66{bottom:600.853333pt;}
.y1d{bottom:601.253333pt;}
.y65{bottom:616.213333pt;}
.y1c{bottom:626.853333pt;}
.y64{bottom:631.573333pt;}
.y63{bottom:646.853333pt;}
.y1b{bottom:649.733333pt;}
.y1a{bottom:660.613333pt;}
.y62{bottom:662.213333pt;}
.y61{bottom:677.573333pt;}
.y19{bottom:683.413333pt;}
.y60{bottom:692.853333pt;}
.y18{bottom:694.293333pt;}
.y5f{bottom:708.213333pt;}
.y17{bottom:716.133333pt;}
.y5e{bottom:723.573333pt;}
.y5d{bottom:738.853333pt;}
.y16{bottom:743.733333pt;}
.y5c{bottom:754.213333pt;}
.y5b{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.y5a{bottom:784.853333pt;}
.y14{bottom:798.933333pt;}
.y59{bottom:800.213333pt;}
.y58{bottom:815.493333pt;}
.y13{bottom:824.213333pt;}
.y57{bottom:830.853333pt;}
.y56{bottom:846.213333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.y55{bottom:861.493333pt;}
.y54{bottom:876.853333pt;}
.y53{bottom:892.240000pt;}
.y52{bottom:907.520000pt;}
.y51{bottom:922.880000pt;}
.y50{bottom:938.240000pt;}
.y4f{bottom:953.520000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h14{height:1.600000pt;}
.h15{height:3.798437pt;}
.hf{height:3.838281pt;}
.h16{height:7.450781pt;}
.h22{height:12.240000pt;}
.h26{height:12.240133pt;}
.h21{height:12.320000pt;}
.h1c{height:13.760000pt;}
.h17{height:15.280000pt;}
.hc{height:18.545312pt;}
.ha{height:18.739844pt;}
.h4{height:24.560000pt;}
.h12{height:26.142187pt;}
.h6{height:29.717188pt;}
.h24{height:30.028906pt;}
.h1f{height:32.060937pt;}
.h1e{height:33.515625pt;}
.h18{height:33.867188pt;}
.h7{height:34.739844pt;}
.h1b{height:36.750000pt;}
.h5{height:37.314062pt;}
.h3{height:37.705469pt;}
.h20{height:38.905781pt;}
.h2{height:40.262656pt;}
.h13{height:40.889062pt;}
.h23{height:44.046250pt;}
.h1{height:45.156250pt;}
.h11{height:47.856406pt;}
.h25{height:49.120000pt;}
.h8{height:58.245469pt;}
.hd{height:64.372031pt;}
.h10{height:67.734375pt;}
.h1d{height:82.800000pt;}
.hb{height:82.861719pt;}
.he{height:105.439844pt;}
.h28{height:108.986667pt;}
.h27{height:110.320000pt;}
.h1a{height:110.426667pt;}
.h9{height:127.306667pt;}
.h19{height:208.346667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w9{width:74.640000pt;}
.wa{width:85.066667pt;}
.wb{width:92.640000pt;}
.w11{width:101.040000pt;}
.wc{width:107.440000pt;}
.we{width:108.240000pt;}
.wf{width:108.560000pt;}
.wd{width:143.626667pt;}
.w5{width:147.466667pt;}
.w8{width:193.546667pt;}
.w12{width:237.866667pt;}
.w10{width:339.626667pt;}
.w7{width:536.213333pt;}
.w4{width:576.053333pt;}
.w3{width:662.640000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x17{left:2.800000pt;}
.x4{left:3.840000pt;}
.x1e{left:5.999988pt;}
.x18{left:7.200000pt;}
.x22{left:8.960000pt;}
.x2e{left:12.880000pt;}
.x25{left:14.080000pt;}
.x20{left:15.680000pt;}
.x26{left:18.240000pt;}
.x2b{left:19.440000pt;}
.x29{left:20.986667pt;}
.x2a{left:27.440000pt;}
.x2c{left:28.560000pt;}
.x23{left:29.706667pt;}
.x30{left:30.720000pt;}
.x32{left:32.720000pt;}
.x1c{left:34.080000pt;}
.x34{left:36.720000pt;}
.x28{left:37.680000pt;}
.x6{left:40.480000pt;}
.x19{left:41.520000pt;}
.x33{left:42.640000pt;}
.x31{left:44.480000pt;}
.x1f{left:46.320000pt;}
.x1{left:47.999988pt;}
.x1b{left:53.120000pt;}
.x12{left:57.839988pt;}
.xa{left:62.640000pt;}
.x14{left:68.879988pt;}
.xe{left:77.999988pt;}
.x3{left:88.320000pt;}
.x9{left:93.760000pt;}
.x2{left:95.999988pt;}
.x39{left:100.640000pt;}
.x37{left:106.000000pt;}
.xf{left:113.279988pt;}
.x5{left:119.520000pt;}
.x21{left:122.400000pt;}
.x13{left:135.786655pt;}
.x8{left:177.946667pt;}
.x11{left:179.626655pt;}
.x2d{left:191.466667pt;}
.xb{left:206.026667pt;}
.x24{left:208.186667pt;}
.x7{left:288.026667pt;}
.x2f{left:300.346667pt;}
.x27{left:301.466667pt;}
.x15{left:327.226655pt;}
.x10{left:412.586655pt;}
.x16{left:414.346655pt;}
.x1d{left:432.053321pt;}
.x36{left:447.333333pt;}
.x35{left:456.053321pt;}
.x38{left:549.093333pt;}
.x1a{left:578.373333pt;}
.xc{left:616.533333pt;}
}




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