
    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_a748e9cbeb98dba53fd44076.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_f9ddf203e62ba5bf12012998.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_a0e2c099fe1a301ea9123fca.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_15704017bcc32c1f0d10ad84.woff')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_2e597652bcbff50c0d7040eb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e9dbde644d4cf02ed3b72fc4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7b7ca57c2fe5a6a47c9d83e5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.932617;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_7fc07c659127283b7bd81639.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932617;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_cf9f6d16430008c58f469fb1.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;}
.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);}
.m3{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v2{vertical-align:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.ls11{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-0.171600px;}
.ls10{letter-spacing:-0.112200px;}
.lse{letter-spacing:-0.072000px;}
.lsd{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.342857px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.480000px;}
.ls21{letter-spacing:0.504000px;}
.ls9{letter-spacing:2.880000px;}
.ls1e{letter-spacing:5.040000px;}
.ls1a{letter-spacing:5.940000px;}
.ls1f{letter-spacing:10.800000px;}
.ls5{letter-spacing:12.240000px;}
.ls12{letter-spacing:15.840000px;}
.ls13{letter-spacing:18.720000px;}
.ls18{letter-spacing:19.440000px;}
.ls17{letter-spacing:20.160000px;}
.ls8{letter-spacing:20.880000px;}
.ls20{letter-spacing:23.934240px;}
.lsa{letter-spacing:27.360000px;}
.lsb{letter-spacing:32.580000px;}
.ls4{letter-spacing:35.280000px;}
.ls6{letter-spacing:36.857143px;}
.ls22{letter-spacing:53.424000px;}
.ls14{letter-spacing:72.840000px;}
.ls1{letter-spacing:77.309760px;}
.ls0{letter-spacing:111.029760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.928000px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws7{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-2.360880px;}
._0{margin-left:-1.188000px;}
._1{width:1.244880px;}
._9{width:2.520000px;}
._11{width:3.648000px;}
._15{width:4.752000px;}
._c{width:6.120000px;}
._3{width:7.344000px;}
._4{width:8.700000px;}
._10{width:9.816000px;}
._d{width:11.016000px;}
._5{width:12.456000px;}
._6{width:13.761360px;}
._f{width:15.108000px;}
._8{width:16.392000px;}
._a{width:19.656000px;}
._b{width:20.952000px;}
._21{width:22.008000px;}
._1e{width:23.232000px;}
._1f{width:24.576000px;}
._2{width:26.040000px;}
._14{width:27.120000px;}
._13{width:28.128000px;}
._22{width:29.932560px;}
._1c{width:31.019040px;}
._17{width:32.280480px;}
._16{width:33.465600px;}
._7{width:35.712000px;}
._e{width:36.857143px;}
._18{width:37.905977px;}
._19{width:39.456000px;}
._1a{width:41.112000px;}
._20{width:42.912000px;}
._1d{width:43.992000px;}
._23{width:46.656000px;}
._1b{width:72.864000px;}
.fc8{color:rgb(5,99,193);}
.fc6{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc7{color:rgb(51,51,51);}
.fc5{color:rgb(24,24,24);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,56,100);}
.fs3{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:7.020000px;}
.y4e{bottom:7.200000px;}
.y5{bottom:10.260000px;}
.y6{bottom:11.340000px;}
.y4c{bottom:11.910000px;}
.y3d{bottom:30.960000px;}
.y4b{bottom:35.670000px;}
.y49{bottom:54.720000px;}
.y7{bottom:55.440000px;}
.y4{bottom:57.600000px;}
.y48{bottom:78.480000px;}
.y47{bottom:102.240000px;}
.y86{bottom:110.196000px;}
.y34{bottom:110.736000px;}
.y46{bottom:126.180000px;}
.y85{bottom:127.836000px;}
.y5c{bottom:130.356000px;}
.y5b{bottom:135.576000px;}
.y88{bottom:139.896000px;}
.y84{bottom:145.836000px;}
.y45{bottom:149.940000px;}
.y33{bottom:150.510000px;}
.y83{bottom:151.050000px;}
.y87{bottom:163.650000px;}
.y82{bottom:164.010000px;}
.y32{bottom:167.790000px;}
.y5a{bottom:168.690000px;}
.y31{bottom:173.010000px;}
.y44{bottom:173.700000px;}
.y30{bottom:185.790000px;}
.y58{bottom:185.970000px;}
.y81{bottom:187.590000px;}
.y59{bottom:191.190000px;}
.y43{bottom:197.460000px;}
.y80{bottom:211.350000px;}
.y2f{bottom:219.270000px;}
.y42{bottom:221.265000px;}
.y57{bottom:224.130000px;}
.y56{bottom:229.350000px;}
.y7f{bottom:235.110000px;}
.y2e{bottom:243.030000px;}
.y41{bottom:245.205000px;}
.y7e{bottom:258.870000px;}
.y55{bottom:263.190000px;}
.y2d{bottom:266.790000px;}
.y40{bottom:268.965000px;}
.y7d{bottom:282.810000px;}
.y2c{bottom:290.730000px;}
.y54{bottom:296.670000px;}
.y7c{bottom:306.570000px;}
.y2b{bottom:314.490000px;}
.y53{bottom:320.430000px;}
.y7b{bottom:330.330000px;}
.y2a{bottom:338.295000px;}
.y52{bottom:344.415000px;}
.y7a{bottom:354.135000px;}
.y29{bottom:362.055000px;}
.y51{bottom:368.175000px;}
.y79{bottom:378.075000px;}
.y28{bottom:385.995000px;}
.y50{bottom:391.935000px;}
.y78{bottom:401.835000px;}
.y4f{bottom:409.395000px;}
.y27{bottom:409.755000px;}
.y77{bottom:425.595000px;}
.y25{bottom:433.515000px;}
.y26{bottom:440.355000px;}
.y76{bottom:449.355000px;}
.y24{bottom:457.275000px;}
.y75{bottom:473.115000px;}
.y23{bottom:481.215000px;}
.y74{bottom:497.055000px;}
.y22{bottom:504.975000px;}
.y4d{bottom:505.335000px;}
.y73{bottom:520.815000px;}
.y21{bottom:528.735000px;}
.y72{bottom:544.575000px;}
.y20{bottom:552.495000px;}
.y71{bottom:568.335000px;}
.y1f{bottom:576.435000px;}
.y70{bottom:592.275000px;}
.y1e{bottom:600.195000px;}
.y4a{bottom:601.275000px;}
.y6f{bottom:616.065000px;}
.y1d{bottom:623.985000px;}
.y6e{bottom:639.825000px;}
.y1c{bottom:647.745000px;}
.y3f{bottom:654.405000px;}
.y6d{bottom:663.585000px;}
.y1b{bottom:671.505000px;}
.y6c{bottom:687.525000px;}
.y1a{bottom:695.445000px;}
.y6b{bottom:711.285000px;}
.y19{bottom:719.205000px;}
.y6a{bottom:735.045000px;}
.y18{bottom:742.965000px;}
.y69{bottom:758.805000px;}
.y17{bottom:766.725000px;}
.y68{bottom:782.745000px;}
.y16{bottom:790.665000px;}
.y67{bottom:806.505000px;}
.y15{bottom:814.425000px;}
.y66{bottom:830.265000px;}
.y14{bottom:838.185000px;}
.y65{bottom:854.025000px;}
.y13{bottom:861.945000px;}
.y64{bottom:878.010000px;}
.y12{bottom:885.930000px;}
.y62{bottom:901.770000px;}
.y63{bottom:908.610000px;}
.y11{bottom:909.690000px;}
.y61{bottom:925.530000px;}
.y10{bottom:933.450000px;}
.y3c{bottom:940.830000px;}
.y60{bottom:949.290000px;}
.yf{bottom:957.210000px;}
.y5f{bottom:973.050000px;}
.ye{bottom:981.150000px;}
.y3b{bottom:996.270000px;}
.y5e{bottom:996.990000px;}
.yd{bottom:1011.750000px;}
.y3a{bottom:1020.570000px;}
.y5d{bottom:1020.750000px;}
.yc{bottom:1035.510000px;}
.y39{bottom:1044.510000px;}
.yb{bottom:1058.370000px;}
.y38{bottom:1068.270000px;}
.ya{bottom:1082.310000px;}
.y37{bottom:1092.210000px;}
.y9{bottom:1102.470000px;}
.y36{bottom:1115.970000px;}
.y8{bottom:1134.150000px;}
.y35{bottom:1139.760000px;}
.y3{bottom:1185.120000px;}
.y2{bottom:1200.780000px;}
.y1{bottom:1216.260000px;}
.h6{height:4.165313px;}
.h3{height:27.036000px;}
.hd{height:27.432422px;}
.h8{height:34.036523px;}
.h9{height:34.884492px;}
.h2{height:38.100586px;}
.h16{height:38.671172px;}
.h14{height:42.164648px;}
.he{height:43.215117px;}
.hf{height:47.700000px;}
.h15{height:47.901094px;}
.hb{height:50.800781px;}
.hc{height:51.609375px;}
.ha{height:51.996094px;}
.h4{height:52.066406px;}
.h12{height:52.416000px;}
.h18{height:52.417969px;}
.h17{height:59.439023px;}
.h11{height:62.244492px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.h13{height:95.220000px;}
.h10{height:285.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:33.480000px;}
.w4{width:105.516000px;}
.w8{width:165.630000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w9{width:501.375000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:4.140000px;}
.x7{left:7.560000px;}
.x2b{left:8.820000px;}
.x34{left:10.620000px;}
.x36{left:12.780000px;}
.x33{left:16.380000px;}
.x2d{left:21.240000px;}
.x32{left:22.320000px;}
.x29{left:28.980000px;}
.x2e{left:32.940000px;}
.x37{left:41.580000px;}
.x30{left:42.660000px;}
.x31{left:44.460000px;}
.x2c{left:45.720000px;}
.x26{left:48.060000px;}
.x2a{left:50.400000px;}
.x2f{left:51.840000px;}
.x35{left:62.640000px;}
.x28{left:71.640000px;}
.x4{left:87.660000px;}
.x9{left:95.795987px;}
.x1{left:99.395987px;}
.x1f{left:106.415973px;}
.x20{left:111.275987px;}
.x23{left:118.836000px;}
.x2{left:122.615987px;}
.x3b{left:127.835973px;}
.x39{left:133.235973px;}
.x3a{left:138.095987px;}
.xa{left:139.175987px;}
.x38{left:143.135987px;}
.x11{left:148.895987px;}
.xe{left:149.975987px;}
.x25{left:153.030000px;}
.x3c{left:169.769973px;}
.x12{left:176.609987px;}
.x13{left:181.289987px;}
.x14{left:194.969987px;}
.x15{left:199.649987px;}
.x1a{left:239.069987px;}
.xf{left:255.989987px;}
.x22{left:284.114987px;}
.x16{left:288.074987px;}
.x10{left:295.814987px;}
.x5{left:297.795000px;}
.xd{left:305.714987px;}
.x1e{left:311.834987px;}
.xb{left:315.794987px;}
.x27{left:319.395000px;}
.x19{left:338.114987px;}
.x1b{left:344.054987px;}
.x1c{left:348.734987px;}
.x1d{left:353.414987px;}
.x3{left:378.434987px;}
.x6{left:393.915000px;}
.xc{left:446.474987px;}
.x3d{left:467.744987px;}
.x8{left:500.145000px;}
.x17{left:564.224987px;}
.x18{left:662.009987px;}
.x21{left:737.429987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.152533pt;}
.ls10{letter-spacing:-0.099733pt;}
.lse{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.304762pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.426667pt;}
.ls21{letter-spacing:0.448000pt;}
.ls9{letter-spacing:2.560000pt;}
.ls1e{letter-spacing:4.480000pt;}
.ls1a{letter-spacing:5.280000pt;}
.ls1f{letter-spacing:9.600000pt;}
.ls5{letter-spacing:10.880000pt;}
.ls12{letter-spacing:14.080000pt;}
.ls13{letter-spacing:16.640000pt;}
.ls18{letter-spacing:17.280000pt;}
.ls17{letter-spacing:17.920000pt;}
.ls8{letter-spacing:18.560000pt;}
.ls20{letter-spacing:21.274880pt;}
.lsa{letter-spacing:24.320000pt;}
.lsb{letter-spacing:28.960000pt;}
.ls4{letter-spacing:31.360000pt;}
.ls6{letter-spacing:32.761905pt;}
.ls22{letter-spacing:47.488000pt;}
.ls14{letter-spacing:64.746667pt;}
.ls1{letter-spacing:68.719787pt;}
.ls0{letter-spacing:98.693120pt;}
.ws5{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.936000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-2.098560pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.106560pt;}
._9{width:2.240000pt;}
._11{width:3.242667pt;}
._15{width:4.224000pt;}
._c{width:5.440000pt;}
._3{width:6.528000pt;}
._4{width:7.733333pt;}
._10{width:8.725333pt;}
._d{width:9.792000pt;}
._5{width:11.072000pt;}
._6{width:12.232320pt;}
._f{width:13.429333pt;}
._8{width:14.570667pt;}
._a{width:17.472000pt;}
._b{width:18.624000pt;}
._21{width:19.562667pt;}
._1e{width:20.650667pt;}
._1f{width:21.845333pt;}
._2{width:23.146667pt;}
._14{width:24.106667pt;}
._13{width:25.002667pt;}
._22{width:26.606720pt;}
._1c{width:27.572480pt;}
._17{width:28.693760pt;}
._16{width:29.747200pt;}
._7{width:31.744000pt;}
._e{width:32.761905pt;}
._18{width:33.694202pt;}
._19{width:35.072000pt;}
._1a{width:36.544000pt;}
._20{width:38.144000pt;}
._1d{width:39.104000pt;}
._23{width:41.472000pt;}
._1b{width:64.768000pt;}
.fs3{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:6.240000pt;}
.y4e{bottom:6.400000pt;}
.y5{bottom:9.120000pt;}
.y6{bottom:10.080000pt;}
.y4c{bottom:10.586667pt;}
.y3d{bottom:27.520000pt;}
.y4b{bottom:31.706667pt;}
.y49{bottom:48.640000pt;}
.y7{bottom:49.280000pt;}
.y4{bottom:51.200000pt;}
.y48{bottom:69.760000pt;}
.y47{bottom:90.880000pt;}
.y86{bottom:97.952000pt;}
.y34{bottom:98.432000pt;}
.y46{bottom:112.160000pt;}
.y85{bottom:113.632000pt;}
.y5c{bottom:115.872000pt;}
.y5b{bottom:120.512000pt;}
.y88{bottom:124.352000pt;}
.y84{bottom:129.632000pt;}
.y45{bottom:133.280000pt;}
.y33{bottom:133.786667pt;}
.y83{bottom:134.266667pt;}
.y87{bottom:145.466667pt;}
.y82{bottom:145.786667pt;}
.y32{bottom:149.146667pt;}
.y5a{bottom:149.946667pt;}
.y31{bottom:153.786667pt;}
.y44{bottom:154.400000pt;}
.y30{bottom:165.146667pt;}
.y58{bottom:165.306667pt;}
.y81{bottom:166.746667pt;}
.y59{bottom:169.946667pt;}
.y43{bottom:175.520000pt;}
.y80{bottom:187.866667pt;}
.y2f{bottom:194.906667pt;}
.y42{bottom:196.680000pt;}
.y57{bottom:199.226667pt;}
.y56{bottom:203.866667pt;}
.y7f{bottom:208.986667pt;}
.y2e{bottom:216.026667pt;}
.y41{bottom:217.960000pt;}
.y7e{bottom:230.106667pt;}
.y55{bottom:233.946667pt;}
.y2d{bottom:237.146667pt;}
.y40{bottom:239.080000pt;}
.y7d{bottom:251.386667pt;}
.y2c{bottom:258.426667pt;}
.y54{bottom:263.706667pt;}
.y7c{bottom:272.506667pt;}
.y2b{bottom:279.546667pt;}
.y53{bottom:284.826667pt;}
.y7b{bottom:293.626667pt;}
.y2a{bottom:300.706667pt;}
.y52{bottom:306.146667pt;}
.y7a{bottom:314.786667pt;}
.y29{bottom:321.826667pt;}
.y51{bottom:327.266667pt;}
.y79{bottom:336.066667pt;}
.y28{bottom:343.106667pt;}
.y50{bottom:348.386667pt;}
.y78{bottom:357.186667pt;}
.y4f{bottom:363.906667pt;}
.y27{bottom:364.226667pt;}
.y77{bottom:378.306667pt;}
.y25{bottom:385.346667pt;}
.y26{bottom:391.426667pt;}
.y76{bottom:399.426667pt;}
.y24{bottom:406.466667pt;}
.y75{bottom:420.546667pt;}
.y23{bottom:427.746667pt;}
.y74{bottom:441.826667pt;}
.y22{bottom:448.866667pt;}
.y4d{bottom:449.186667pt;}
.y73{bottom:462.946667pt;}
.y21{bottom:469.986667pt;}
.y72{bottom:484.066667pt;}
.y20{bottom:491.106667pt;}
.y71{bottom:505.186667pt;}
.y1f{bottom:512.386667pt;}
.y70{bottom:526.466667pt;}
.y1e{bottom:533.506667pt;}
.y4a{bottom:534.466667pt;}
.y6f{bottom:547.613333pt;}
.y1d{bottom:554.653333pt;}
.y6e{bottom:568.733333pt;}
.y1c{bottom:575.773333pt;}
.y3f{bottom:581.693333pt;}
.y6d{bottom:589.853333pt;}
.y1b{bottom:596.893333pt;}
.y6c{bottom:611.133333pt;}
.y1a{bottom:618.173333pt;}
.y6b{bottom:632.253333pt;}
.y19{bottom:639.293333pt;}
.y6a{bottom:653.373333pt;}
.y18{bottom:660.413333pt;}
.y69{bottom:674.493333pt;}
.y17{bottom:681.533333pt;}
.y68{bottom:695.773333pt;}
.y16{bottom:702.813333pt;}
.y67{bottom:716.893333pt;}
.y15{bottom:723.933333pt;}
.y66{bottom:738.013333pt;}
.y14{bottom:745.053333pt;}
.y65{bottom:759.133333pt;}
.y13{bottom:766.173333pt;}
.y64{bottom:780.453333pt;}
.y12{bottom:787.493333pt;}
.y62{bottom:801.573333pt;}
.y63{bottom:807.653333pt;}
.y11{bottom:808.613333pt;}
.y61{bottom:822.693333pt;}
.y10{bottom:829.733333pt;}
.y3c{bottom:836.293333pt;}
.y60{bottom:843.813333pt;}
.yf{bottom:850.853333pt;}
.y5f{bottom:864.933333pt;}
.ye{bottom:872.133333pt;}
.y3b{bottom:885.573333pt;}
.y5e{bottom:886.213333pt;}
.yd{bottom:899.333333pt;}
.y3a{bottom:907.173333pt;}
.y5d{bottom:907.333333pt;}
.yc{bottom:920.453333pt;}
.y39{bottom:928.453333pt;}
.yb{bottom:940.773333pt;}
.y38{bottom:949.573333pt;}
.ya{bottom:962.053333pt;}
.y37{bottom:970.853333pt;}
.y9{bottom:979.973333pt;}
.y36{bottom:991.973333pt;}
.y8{bottom:1008.133333pt;}
.y35{bottom:1013.120000pt;}
.y3{bottom:1053.440000pt;}
.y2{bottom:1067.360000pt;}
.y1{bottom:1081.120000pt;}
.h6{height:3.702500pt;}
.h3{height:24.032000pt;}
.hd{height:24.384375pt;}
.h8{height:30.254687pt;}
.h9{height:31.008437pt;}
.h2{height:33.867188pt;}
.h16{height:34.374375pt;}
.h14{height:37.479688pt;}
.he{height:38.413438pt;}
.hf{height:42.400000pt;}
.h15{height:42.578750pt;}
.hb{height:45.156250pt;}
.hc{height:45.875000pt;}
.ha{height:46.218750pt;}
.h4{height:46.281250pt;}
.h12{height:46.592000pt;}
.h18{height:46.593750pt;}
.h17{height:52.834688pt;}
.h11{height:55.328438pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.h13{height:84.640000pt;}
.h10{height:253.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:29.760000pt;}
.w4{width:93.792000pt;}
.w8{width:147.226667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w9{width:445.666667pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:3.680000pt;}
.x7{left:6.720000pt;}
.x2b{left:7.840000pt;}
.x34{left:9.440000pt;}
.x36{left:11.360000pt;}
.x33{left:14.560000pt;}
.x2d{left:18.880000pt;}
.x32{left:19.840000pt;}
.x29{left:25.760000pt;}
.x2e{left:29.280000pt;}
.x37{left:36.960000pt;}
.x30{left:37.920000pt;}
.x31{left:39.520000pt;}
.x2c{left:40.640000pt;}
.x26{left:42.720000pt;}
.x2a{left:44.800000pt;}
.x2f{left:46.080000pt;}
.x35{left:55.680000pt;}
.x28{left:63.680000pt;}
.x4{left:77.920000pt;}
.x9{left:85.151988pt;}
.x1{left:88.351988pt;}
.x1f{left:94.591976pt;}
.x20{left:98.911988pt;}
.x23{left:105.632000pt;}
.x2{left:108.991988pt;}
.x3b{left:113.631976pt;}
.x39{left:118.431976pt;}
.x3a{left:122.751988pt;}
.xa{left:123.711988pt;}
.x38{left:127.231988pt;}
.x11{left:132.351988pt;}
.xe{left:133.311988pt;}
.x25{left:136.026667pt;}
.x3c{left:150.906643pt;}
.x12{left:156.986655pt;}
.x13{left:161.146655pt;}
.x14{left:173.306655pt;}
.x15{left:177.466655pt;}
.x1a{left:212.506655pt;}
.xf{left:227.546655pt;}
.x22{left:252.546655pt;}
.x16{left:256.066655pt;}
.x10{left:262.946655pt;}
.x5{left:264.706667pt;}
.xd{left:271.746655pt;}
.x1e{left:277.186655pt;}
.xb{left:280.706655pt;}
.x27{left:283.906667pt;}
.x19{left:300.546655pt;}
.x1b{left:305.826655pt;}
.x1c{left:309.986655pt;}
.x1d{left:314.146655pt;}
.x3{left:336.386655pt;}
.x6{left:350.146667pt;}
.xc{left:396.866655pt;}
.x3d{left:415.773322pt;}
.x8{left:444.573333pt;}
.x17{left:501.533322pt;}
.x18{left:588.453322pt;}
.x21{left:655.493322pt;}
}




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