
    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_d39a3276125e059596b95611.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3ee2361891e5a1e36e7e61ba.woff2')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_68315baff536264e9fdabee2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_b0ac2f72d3d2b8197efe2bed.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5fd7fcd3a9ba410994b8dd5c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8da893ccc029baf0d5fdd2dd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6f3a64d1ab951cb5cda72cfe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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_cf5b54b838ee9f69dcdff9c4.woff2')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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-1.008000px;}
.ls10{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.108000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls7{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:25.308000px;}
.lsa{letter-spacing:52.668000px;}
.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;}
}
.ws7{word-spacing:-19.457280px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.166000px;}
.wsc{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.824000px;}
.ws5{word-spacing:-13.608000px;}
.ws6{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.392000px;}
.wsa{word-spacing:-12.888000px;}
.ws3{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._e{margin-left:-4.376160px;}
._4{margin-left:-3.033600px;}
._1{margin-left:-1.404000px;}
._0{width:1.116000px;}
._f{width:2.168160px;}
._d{width:3.225840px;}
._b{width:4.422240px;}
._7{width:6.210000px;}
._c{width:7.230960px;}
._10{width:8.375040px;}
._6{width:9.450000px;}
._5{width:11.340000px;}
._1b{width:12.474000px;}
._20{width:14.634000px;}
._12{width:15.708000px;}
._11{width:16.866000px;}
._a{width:18.036000px;}
._9{width:19.542000px;}
._17{width:20.574000px;}
._14{width:21.648000px;}
._13{width:23.112000px;}
._8{width:24.300000px;}
._1a{width:25.308000px;}
._1d{width:26.334000px;}
._18{width:27.540000px;}
._23{width:28.692000px;}
._1e{width:30.240000px;}
._16{width:31.266000px;}
._15{width:32.940000px;}
._24{width:34.776000px;}
._1f{width:36.342000px;}
._1c{width:37.368000px;}
._19{width:39.150000px;}
._21{width:45.090000px;}
._22{width:46.200000px;}
._3{width:73.920000px;}
._2{width:1038.000000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y3e{bottom:3.060000px;}
.y4{bottom:15.480000px;}
.y2{bottom:18.360000px;}
.y3d{bottom:18.540000px;}
.y5{bottom:36.540000px;}
.y3b{bottom:37.080000px;}
.y3f{bottom:39.600000px;}
.y1{bottom:57.600000px;}
.y3c{bottom:60.660000px;}
.y3a{bottom:65.880000px;}
.y39{bottom:85.680000px;}
.y38{bottom:105.660000px;}
.y7a{bottom:106.740000px;}
.ya4{bottom:107.100000px;}
.y30{bottom:111.780000px;}
.y79{bottom:124.560000px;}
.ya3{bottom:124.920000px;}
.y37{bottom:125.460000px;}
.y2f{bottom:129.600000px;}
.y78{bottom:142.380000px;}
.ya2{bottom:142.920000px;}
.y36{bottom:145.260000px;}
.y2e{bottom:147.420000px;}
.y77{bottom:160.200000px;}
.y35{bottom:165.060000px;}
.y2d{bottom:165.240000px;}
.ya1{bottom:169.740000px;}
.y2c{bottom:183.090000px;}
.y34{bottom:184.905000px;}
.y76{bottom:187.050000px;}
.ya0{bottom:187.590000px;}
.y2b{bottom:203.430000px;}
.y75{bottom:204.870000px;}
.y33{bottom:204.885000px;}
.y9f{bottom:205.410000px;}
.y74{bottom:222.870000px;}
.y9e{bottom:232.230000px;}
.y32{bottom:235.485000px;}
.y73{bottom:240.690000px;}
.y2a{bottom:244.830000px;}
.y31{bottom:246.990000px;}
.y9d{bottom:250.050000px;}
.y72{bottom:258.510000px;}
.y9c{bottom:268.050000px;}
.y29{bottom:271.650000px;}
.y71{bottom:276.330000px;}
.y9b{bottom:285.870000px;}
.y70{bottom:294.150000px;}
.y28{bottom:299.550000px;}
.y6f{bottom:312.150000px;}
.y9a{bottom:312.690000px;}
.y6e{bottom:329.970000px;}
.y27{bottom:330.330000px;}
.y99{bottom:330.510000px;}
.y6d{bottom:347.790000px;}
.y98{bottom:348.330000px;}
.y26{bottom:356.790000px;}
.y97{bottom:366.330000px;}
.y6c{bottom:374.610000px;}
.y25{bottom:383.070000px;}
.y6b{bottom:392.430000px;}
.y96{bottom:393.150000px;}
.y24{bottom:409.350000px;}
.y6a{bottom:410.250000px;}
.y95{bottom:410.970000px;}
.y69{bottom:428.295000px;}
.y94{bottom:428.835000px;}
.y23{bottom:435.675000px;}
.y68{bottom:446.115000px;}
.y93{bottom:455.655000px;}
.y22{bottom:462.135000px;}
.y67{bottom:463.935000px;}
.y92{bottom:473.475000px;}
.y66{bottom:481.755000px;}
.y21{bottom:488.415000px;}
.y91{bottom:491.475000px;}
.y65{bottom:499.575000px;}
.y90{bottom:509.295000px;}
.y20{bottom:514.695000px;}
.y64{bottom:526.575000px;}
.y8f{bottom:536.115000px;}
.y1f{bottom:540.975000px;}
.y63{bottom:544.395000px;}
.y8e{bottom:553.935000px;}
.y62{bottom:562.215000px;}
.y1e{bottom:567.255000px;}
.y61{bottom:580.035000px;}
.y8d{bottom:580.755000px;}
.y60{bottom:597.855000px;}
.y1d{bottom:598.215000px;}
.y8c{bottom:598.755000px;}
.y5f{bottom:615.675000px;}
.y8b{bottom:616.575000px;}
.y1c{bottom:619.995000px;}
.y5e{bottom:633.675000px;}
.y8a{bottom:643.395000px;}
.y5d{bottom:651.495000px;}
.y1b{bottom:652.215000px;}
.y89{bottom:661.245000px;}
.y5c{bottom:669.345000px;}
.y1a{bottom:683.025000px;}
.y88{bottom:688.065000px;}
.y5b{bottom:696.165000px;}
.y19{bottom:699.045000px;}
.y87{bottom:705.885000px;}
.y5a{bottom:713.985000px;}
.y18{bottom:720.825000px;}
.y86{bottom:723.885000px;}
.y59{bottom:731.805000px;}
.y58{bottom:749.805000px;}
.y85{bottom:753.045000px;}
.y57{bottom:767.625000px;}
.y17{bottom:771.405000px;}
.y56{bottom:785.445000px;}
.yba{bottom:789.405000px;}
.y16{bottom:799.125000px;}
.y55{bottom:803.265000px;}
.yb9{bottom:819.285000px;}
.y54{bottom:821.085000px;}
.y53{bottom:839.085000px;}
.y15{bottom:845.025000px;}
.y52{bottom:856.905000px;}
.yb8{bottom:865.185000px;}
.y14{bottom:870.405000px;}
.y84{bottom:874.725000px;}
.y51{bottom:883.725000px;}
.y13{bottom:890.205000px;}
.y83{bottom:892.545000px;}
.y50{bottom:901.590000px;}
.y82{bottom:910.410000px;}
.y12{bottom:910.590000px;}
.yb7{bottom:914.010000px;}
.y4f{bottom:919.410000px;}
.y81{bottom:928.230000px;}
.y11{bottom:931.830000px;}
.y4e{bottom:937.230000px;}
.y80{bottom:946.230000px;}
.y10{bottom:951.810000px;}
.y4d{bottom:955.230000px;}
.yb6{bottom:960.990000px;}
.yf{bottom:972.870000px;}
.y4c{bottom:973.050000px;}
.yab{bottom:981.870000px;}
.yb5{bottom:987.450000px;}
.y4b{bottom:990.870000px;}
.ye{bottom:993.750000px;}
.yaa{bottom:999.690000px;}
.yb4{bottom:1007.430000px;}
.yd{bottom:1007.610000px;}
.y4a{bottom:1008.690000px;}
.ya9{bottom:1017.510000px;}
.yc{bottom:1021.470000px;}
.y7f{bottom:1026.510000px;}
.yb3{bottom:1027.590000px;}
.yb{bottom:1035.330000px;}
.y49{bottom:1035.510000px;}
.y7e{bottom:1044.510000px;}
.yb2{bottom:1047.750000px;}
.ya8{bottom:1053.330000px;}
.y48{bottom:1053.510000px;}
.ya{bottom:1053.870000px;}
.y7d{bottom:1062.330000px;}
.yb1{bottom:1067.910000px;}
.y47{bottom:1071.330000px;}
.y7c{bottom:1080.150000px;}
.y9{bottom:1083.030000px;}
.yb0{bottom:1088.070000px;}
.y46{bottom:1089.150000px;}
.y7b{bottom:1097.970000px;}
.y45{bottom:1106.970000px;}
.yaf{bottom:1108.230000px;}
.y8{bottom:1110.750000px;}
.ya7{bottom:1115.790000px;}
.y44{bottom:1124.790000px;}
.yae{bottom:1128.390000px;}
.ya6{bottom:1133.610000px;}
.y7{bottom:1138.650000px;}
.y43{bottom:1142.640000px;}
.yad{bottom:1148.580000px;}
.ya5{bottom:1151.640000px;}
.y42{bottom:1160.640000px;}
.yac{bottom:1169.460000px;}
.y6{bottom:1170.540000px;}
.y41{bottom:1178.460000px;}
.y40{bottom:1196.280000px;}
.h9{height:29.158594px;}
.h2{height:30.960000px;}
.h14{height:31.140000px;}
.h3{height:37.705078px;}
.h4{height:38.100586px;}
.h16{height:39.313477px;}
.hb{height:41.726953px;}
.hc{height:42.164648px;}
.h15{height:44.507812px;}
.hd{height:46.251562px;}
.h10{height:46.736719px;}
.h13{height:49.255313px;}
.ha{height:50.800781px;}
.hf{height:53.224453px;}
.h11{height:54.864844px;}
.he{height:58.819922px;}
.h7{height:59.436914px;}
.h8{height:63.500977px;}
.h5{height:65.884219px;}
.h6{height:88.901367px;}
.h12{height:262.650000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:78.480000px;}
.w2{width:706.650000px;}
.w5{width:811.770000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x12{left:10.800000px;}
.x11{left:40.140000px;}
.x1{left:54.000000px;}
.x16{left:80.999987px;}
.xb{left:97.235987px;}
.x15{left:108.035987px;}
.xe{left:180.029987px;}
.x2{left:214.590000px;}
.x7{left:270.569987px;}
.x8{left:272.549987px;}
.x9{left:287.669987px;}
.xd{left:297.254987px;}
.xf{left:324.074987px;}
.x6{left:365.294987px;}
.xa{left:378.794987px;}
.xc{left:404.534987px;}
.x5{left:446.474987px;}
.x10{left:473.474987px;}
.x13{left:500.504987px;}
.x14{left:527.504987px;}
.x4{left:760.650000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls7{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:22.496000pt;}
.lsa{letter-spacing:46.816000pt;}
.ws7{word-spacing:-17.295360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.592000pt;}
.wsc{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.288000pt;}
.ws5{word-spacing:-12.096000pt;}
.ws6{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.456000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._e{margin-left:-3.889920pt;}
._4{margin-left:-2.696533pt;}
._1{margin-left:-1.248000pt;}
._0{width:0.992000pt;}
._f{width:1.927253pt;}
._d{width:2.867413pt;}
._b{width:3.930880pt;}
._7{width:5.520000pt;}
._c{width:6.427520pt;}
._10{width:7.444480pt;}
._6{width:8.400000pt;}
._5{width:10.080000pt;}
._1b{width:11.088000pt;}
._20{width:13.008000pt;}
._12{width:13.962667pt;}
._11{width:14.992000pt;}
._a{width:16.032000pt;}
._9{width:17.370667pt;}
._17{width:18.288000pt;}
._14{width:19.242667pt;}
._13{width:20.544000pt;}
._8{width:21.600000pt;}
._1a{width:22.496000pt;}
._1d{width:23.408000pt;}
._18{width:24.480000pt;}
._23{width:25.504000pt;}
._1e{width:26.880000pt;}
._16{width:27.792000pt;}
._15{width:29.280000pt;}
._24{width:30.912000pt;}
._1f{width:32.304000pt;}
._1c{width:33.216000pt;}
._19{width:34.800000pt;}
._21{width:40.080000pt;}
._22{width:41.066667pt;}
._3{width:65.706667pt;}
._2{width:922.666667pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y3e{bottom:2.720000pt;}
.y4{bottom:13.760000pt;}
.y2{bottom:16.320000pt;}
.y3d{bottom:16.480000pt;}
.y5{bottom:32.480000pt;}
.y3b{bottom:32.960000pt;}
.y3f{bottom:35.200000pt;}
.y1{bottom:51.200000pt;}
.y3c{bottom:53.920000pt;}
.y3a{bottom:58.560000pt;}
.y39{bottom:76.160000pt;}
.y38{bottom:93.920000pt;}
.y7a{bottom:94.880000pt;}
.ya4{bottom:95.200000pt;}
.y30{bottom:99.360000pt;}
.y79{bottom:110.720000pt;}
.ya3{bottom:111.040000pt;}
.y37{bottom:111.520000pt;}
.y2f{bottom:115.200000pt;}
.y78{bottom:126.560000pt;}
.ya2{bottom:127.040000pt;}
.y36{bottom:129.120000pt;}
.y2e{bottom:131.040000pt;}
.y77{bottom:142.400000pt;}
.y35{bottom:146.720000pt;}
.y2d{bottom:146.880000pt;}
.ya1{bottom:150.880000pt;}
.y2c{bottom:162.746667pt;}
.y34{bottom:164.360000pt;}
.y76{bottom:166.266667pt;}
.ya0{bottom:166.746667pt;}
.y2b{bottom:180.826667pt;}
.y75{bottom:182.106667pt;}
.y33{bottom:182.120000pt;}
.y9f{bottom:182.586667pt;}
.y74{bottom:198.106667pt;}
.y9e{bottom:206.426667pt;}
.y32{bottom:209.320000pt;}
.y73{bottom:213.946667pt;}
.y2a{bottom:217.626667pt;}
.y31{bottom:219.546667pt;}
.y9d{bottom:222.266667pt;}
.y72{bottom:229.786667pt;}
.y9c{bottom:238.266667pt;}
.y29{bottom:241.466667pt;}
.y71{bottom:245.626667pt;}
.y9b{bottom:254.106667pt;}
.y70{bottom:261.466667pt;}
.y28{bottom:266.266667pt;}
.y6f{bottom:277.466667pt;}
.y9a{bottom:277.946667pt;}
.y6e{bottom:293.306667pt;}
.y27{bottom:293.626667pt;}
.y99{bottom:293.786667pt;}
.y6d{bottom:309.146667pt;}
.y98{bottom:309.626667pt;}
.y26{bottom:317.146667pt;}
.y97{bottom:325.626667pt;}
.y6c{bottom:332.986667pt;}
.y25{bottom:340.506667pt;}
.y6b{bottom:348.826667pt;}
.y96{bottom:349.466667pt;}
.y24{bottom:363.866667pt;}
.y6a{bottom:364.666667pt;}
.y95{bottom:365.306667pt;}
.y69{bottom:380.706667pt;}
.y94{bottom:381.186667pt;}
.y23{bottom:387.266667pt;}
.y68{bottom:396.546667pt;}
.y93{bottom:405.026667pt;}
.y22{bottom:410.786667pt;}
.y67{bottom:412.386667pt;}
.y92{bottom:420.866667pt;}
.y66{bottom:428.226667pt;}
.y21{bottom:434.146667pt;}
.y91{bottom:436.866667pt;}
.y65{bottom:444.066667pt;}
.y90{bottom:452.706667pt;}
.y20{bottom:457.506667pt;}
.y64{bottom:468.066667pt;}
.y8f{bottom:476.546667pt;}
.y1f{bottom:480.866667pt;}
.y63{bottom:483.906667pt;}
.y8e{bottom:492.386667pt;}
.y62{bottom:499.746667pt;}
.y1e{bottom:504.226667pt;}
.y61{bottom:515.586667pt;}
.y8d{bottom:516.226667pt;}
.y60{bottom:531.426667pt;}
.y1d{bottom:531.746667pt;}
.y8c{bottom:532.226667pt;}
.y5f{bottom:547.266667pt;}
.y8b{bottom:548.066667pt;}
.y1c{bottom:551.106667pt;}
.y5e{bottom:563.266667pt;}
.y8a{bottom:571.906667pt;}
.y5d{bottom:579.106667pt;}
.y1b{bottom:579.746667pt;}
.y89{bottom:587.773333pt;}
.y5c{bottom:594.973333pt;}
.y1a{bottom:607.133333pt;}
.y88{bottom:611.613333pt;}
.y5b{bottom:618.813333pt;}
.y19{bottom:621.373333pt;}
.y87{bottom:627.453333pt;}
.y5a{bottom:634.653333pt;}
.y18{bottom:640.733333pt;}
.y86{bottom:643.453333pt;}
.y59{bottom:650.493333pt;}
.y58{bottom:666.493333pt;}
.y85{bottom:669.373333pt;}
.y57{bottom:682.333333pt;}
.y17{bottom:685.693333pt;}
.y56{bottom:698.173333pt;}
.yba{bottom:701.693333pt;}
.y16{bottom:710.333333pt;}
.y55{bottom:714.013333pt;}
.yb9{bottom:728.253333pt;}
.y54{bottom:729.853333pt;}
.y53{bottom:745.853333pt;}
.y15{bottom:751.133333pt;}
.y52{bottom:761.693333pt;}
.yb8{bottom:769.053333pt;}
.y14{bottom:773.693333pt;}
.y84{bottom:777.533333pt;}
.y51{bottom:785.533333pt;}
.y13{bottom:791.293333pt;}
.y83{bottom:793.373333pt;}
.y50{bottom:801.413333pt;}
.y82{bottom:809.253333pt;}
.y12{bottom:809.413333pt;}
.yb7{bottom:812.453333pt;}
.y4f{bottom:817.253333pt;}
.y81{bottom:825.093333pt;}
.y11{bottom:828.293333pt;}
.y4e{bottom:833.093333pt;}
.y80{bottom:841.093333pt;}
.y10{bottom:846.053333pt;}
.y4d{bottom:849.093333pt;}
.yb6{bottom:854.213333pt;}
.yf{bottom:864.773333pt;}
.y4c{bottom:864.933333pt;}
.yab{bottom:872.773333pt;}
.yb5{bottom:877.733333pt;}
.y4b{bottom:880.773333pt;}
.ye{bottom:883.333333pt;}
.yaa{bottom:888.613333pt;}
.yb4{bottom:895.493333pt;}
.yd{bottom:895.653333pt;}
.y4a{bottom:896.613333pt;}
.ya9{bottom:904.453333pt;}
.yc{bottom:907.973333pt;}
.y7f{bottom:912.453333pt;}
.yb3{bottom:913.413333pt;}
.yb{bottom:920.293333pt;}
.y49{bottom:920.453333pt;}
.y7e{bottom:928.453333pt;}
.yb2{bottom:931.333333pt;}
.ya8{bottom:936.293333pt;}
.y48{bottom:936.453333pt;}
.ya{bottom:936.773333pt;}
.y7d{bottom:944.293333pt;}
.yb1{bottom:949.253333pt;}
.y47{bottom:952.293333pt;}
.y7c{bottom:960.133333pt;}
.y9{bottom:962.693333pt;}
.yb0{bottom:967.173333pt;}
.y46{bottom:968.133333pt;}
.y7b{bottom:975.973333pt;}
.y45{bottom:983.973333pt;}
.yaf{bottom:985.093333pt;}
.y8{bottom:987.333333pt;}
.ya7{bottom:991.813333pt;}
.y44{bottom:999.813333pt;}
.yae{bottom:1003.013333pt;}
.ya6{bottom:1007.653333pt;}
.y7{bottom:1012.133333pt;}
.y43{bottom:1015.680000pt;}
.yad{bottom:1020.960000pt;}
.ya5{bottom:1023.680000pt;}
.y42{bottom:1031.680000pt;}
.yac{bottom:1039.520000pt;}
.y6{bottom:1040.480000pt;}
.y41{bottom:1047.520000pt;}
.y40{bottom:1063.360000pt;}
.h9{height:25.918750pt;}
.h2{height:27.520000pt;}
.h14{height:27.680000pt;}
.h3{height:33.515625pt;}
.h4{height:33.867188pt;}
.h16{height:34.945312pt;}
.hb{height:37.090625pt;}
.hc{height:37.479688pt;}
.h15{height:39.562500pt;}
.hd{height:41.112500pt;}
.h10{height:41.543750pt;}
.h13{height:43.782500pt;}
.ha{height:45.156250pt;}
.hf{height:47.310625pt;}
.h11{height:48.768750pt;}
.he{height:52.284375pt;}
.h7{height:52.832812pt;}
.h8{height:56.445312pt;}
.h5{height:58.563750pt;}
.h6{height:79.023438pt;}
.h12{height:233.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:69.760000pt;}
.w2{width:628.133333pt;}
.w5{width:721.573333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x12{left:9.600000pt;}
.x11{left:35.680000pt;}
.x1{left:48.000000pt;}
.x16{left:71.999988pt;}
.xb{left:86.431988pt;}
.x15{left:96.031988pt;}
.xe{left:160.026655pt;}
.x2{left:190.746667pt;}
.x7{left:240.506655pt;}
.x8{left:242.266655pt;}
.x9{left:255.706655pt;}
.xd{left:264.226655pt;}
.xf{left:288.066655pt;}
.x6{left:324.706655pt;}
.xa{left:336.706655pt;}
.xc{left:359.586655pt;}
.x5{left:396.866655pt;}
.x10{left:420.866655pt;}
.x13{left:444.893322pt;}
.x14{left:468.893322pt;}
.x4{left:676.133333pt;}
}




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