
    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_c6e0351cdcf239c44a231fbe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c37f298c0e8996b986e2b03d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_01822626109fcb23b72e36d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_a1e3c91573456a1fafe1122b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7ecdb60cb0518567f4fa142e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_23b57c9bf71ec4f613dcbb3a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e462e6de64ac9f58ca5feae.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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_6193fc93719873dbca485474.woff2')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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.583800px;}
.lsb{letter-spacing:-0.457800px;}
.ls3{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.305400px;}
.ls2{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.152400px;}
.ls4{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.900000px;}
.lsf{letter-spacing:2.340000px;}
.ls12{letter-spacing:3.060000px;}
.ls11{letter-spacing:3.780000px;}
.ls10{letter-spacing:4.500000px;}
.ls15{letter-spacing:6.660000px;}
.lse{letter-spacing:28.224000px;}
.lsc{letter-spacing:39.185280px;}
.ls7{letter-spacing:39.881280px;}
.ls5{letter-spacing:39.905280px;}
.lsd{letter-spacing:42.785280px;}
.ls6{letter-spacing:43.481280px;}
.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:-18.000000px;}
.ws8{word-spacing:-16.822200px;}
.ws5{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.407600px;}
.wsb{word-spacing:-16.254600px;}
.ws6{word-spacing:-16.102200px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws9{word-spacing:-11.476200px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-4.239360px;}
._14{margin-left:-3.113280px;}
._0{margin-left:-1.258560px;}
._2{width:1.374480px;}
._5{width:2.509920px;}
._7{width:4.482000px;}
._8{width:6.334560px;}
._10{width:7.575840px;}
._a{width:8.844480px;}
._9{width:9.979920px;}
._18{width:11.004480px;}
._3{width:12.310560px;}
._6{width:13.625280px;}
._11{width:14.970240px;}
._4{width:16.374240px;}
._f{width:17.951040px;}
._1b{width:19.275840px;}
._17{width:20.468160px;}
._1c{width:21.528000px;}
._c{width:23.605200px;}
._b{width:24.621120px;}
._d{width:26.772480px;}
._21{width:27.996480px;}
._1d{width:29.410560px;}
._1e{width:30.486960px;}
._15{width:31.728960px;}
._16{width:32.857440px;}
._12{width:34.492800px;}
._1a{width:35.637120px;}
._19{width:36.763200px;}
._20{width:38.302560px;}
._1f{width:39.609360px;}
._e{width:106.993920px;}
._1{width:1286.733120px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.500000px;}
.y8c{bottom:6.300000px;}
.y90{bottom:16.920000px;}
.y8e{bottom:17.100000px;}
.y95{bottom:17.865000px;}
.y8b{bottom:28.080000px;}
.y92{bottom:28.260000px;}
.y5{bottom:33.120000px;}
.y4{bottom:64.080000px;}
.y7d{bottom:110.376000px;}
.ybd{bottom:113.796000px;}
.y7c{bottom:114.876000px;}
.y7b{bottom:124.056000px;}
.y7a{bottom:128.556000px;}
.y3b{bottom:130.716000px;}
.ybc{bottom:135.576000px;}
.y79{bottom:137.916000px;}
.y85{bottom:142.416000px;}
.y78{bottom:151.770000px;}
.y3a{bottom:152.490000px;}
.y77{bottom:156.270000px;}
.ybb{bottom:157.350000px;}
.y76{bottom:165.450000px;}
.y75{bottom:169.950000px;}
.y39{bottom:174.270000px;}
.yba{bottom:179.130000px;}
.y74{bottom:179.310000px;}
.y73{bottom:183.810000px;}
.y72{bottom:193.170000px;}
.y38{bottom:196.050000px;}
.y71{bottom:197.670000px;}
.yb9{bottom:201.090000px;}
.y70{bottom:206.850000px;}
.yb5{bottom:211.350000px;}
.y37{bottom:217.830000px;}
.y6f{bottom:220.710000px;}
.yb4{bottom:222.690000px;}
.yb8{bottom:222.870000px;}
.y6e{bottom:225.210000px;}
.y6d{bottom:234.570000px;}
.y6c{bottom:239.070000px;}
.y36{bottom:239.790000px;}
.yb7{bottom:244.650000px;}
.y6b{bottom:250.230000px;}
.y35{bottom:261.570000px;}
.yb6{bottom:266.430000px;}
.yb3{bottom:270.750000px;}
.y84{bottom:282.810000px;}
.y34{bottom:283.350000px;}
.y69{bottom:288.210000px;}
.yb2{bottom:292.530000px;}
.y6a{bottom:294.150000px;}
.y33{bottom:305.130000px;}
.y83{bottom:306.030000px;}
.y68{bottom:310.170000px;}
.yb0{bottom:314.310000px;}
.yb1{bottom:320.250000px;}
.y32{bottom:327.090000px;}
.y82{bottom:329.250000px;}
.y67{bottom:331.950000px;}
.yaf{bottom:336.090000px;}
.y31{bottom:348.915000px;}
.y81{bottom:352.515000px;}
.y66{bottom:353.775000px;}
.yae{bottom:357.915000px;}
.y30{bottom:370.695000px;}
.y65{bottom:375.555000px;}
.yad{bottom:379.875000px;}
.y80{bottom:381.495000px;}
.y2f{bottom:392.475000px;}
.y63{bottom:397.515000px;}
.yab{bottom:401.655000px;}
.y64{bottom:403.455000px;}
.yac{bottom:407.595000px;}
.y2e{bottom:414.255000px;}
.y62{bottom:419.295000px;}
.yaa{bottom:423.435000px;}
.y2d{bottom:434.415000px;}
.y61{bottom:441.075000px;}
.ya9{bottom:445.215000px;}
.y2c{bottom:450.255000px;}
.y5f{bottom:462.855000px;}
.y2b{bottom:464.835000px;}
.ya8{bottom:467.175000px;}
.y60{bottom:468.795000px;}
.y2a{bottom:482.115000px;}
.y5e{bottom:484.635000px;}
.ya7{bottom:488.955000px;}
.y29{bottom:499.215000px;}
.y5d{bottom:506.595000px;}
.ya6{bottom:510.735000px;}
.y28{bottom:516.495000px;}
.y5c{bottom:528.375000px;}
.ya5{bottom:532.515000px;}
.y27{bottom:533.775000px;}
.y5b{bottom:550.155000px;}
.y26{bottom:551.055000px;}
.ya4{bottom:554.295000px;}
.y25{bottom:568.335000px;}
.y5a{bottom:571.935000px;}
.ya3{bottom:576.255000px;}
.y24{bottom:585.615000px;}
.y58{bottom:593.895000px;}
.ya2{bottom:598.035000px;}
.y59{bottom:599.835000px;}
.y23{bottom:602.715000px;}
.y57{bottom:615.705000px;}
.ya1{bottom:619.845000px;}
.y22{bottom:620.025000px;}
.y21{bottom:637.305000px;}
.y56{bottom:637.485000px;}
.ya0{bottom:641.625000px;}
.y20{bottom:654.585000px;}
.y54{bottom:659.265000px;}
.y9f{bottom:663.405000px;}
.y55{bottom:665.205000px;}
.y1f{bottom:671.865000px;}
.y52{bottom:681.045000px;}
.y9e{bottom:685.365000px;}
.y53{bottom:686.985000px;}
.y1e{bottom:689.145000px;}
.y51{bottom:703.005000px;}
.y1d{bottom:706.245000px;}
.y9c{bottom:707.145000px;}
.y9d{bottom:713.085000px;}
.y1c{bottom:723.525000px;}
.y50{bottom:724.785000px;}
.y9b{bottom:728.925000px;}
.y1b{bottom:740.805000px;}
.y4f{bottom:746.565000px;}
.y9a{bottom:750.705000px;}
.y1a{bottom:758.085000px;}
.y4e{bottom:768.345000px;}
.y99{bottom:772.665000px;}
.y19{bottom:775.365000px;}
.y4d{bottom:790.125000px;}
.y18{bottom:792.465000px;}
.y98{bottom:794.445000px;}
.y17{bottom:809.745000px;}
.y4c{bottom:812.085000px;}
.y97{bottom:816.225000px;}
.y7f{bottom:818.025000px;}
.y16{bottom:827.025000px;}
.y4b{bottom:833.865000px;}
.y96{bottom:838.005000px;}
.y15{bottom:844.305000px;}
.y94{bottom:854.205000px;}
.y4a{bottom:855.645000px;}
.y14{bottom:864.645000px;}
.y49{bottom:877.470000px;}
.y13{bottom:885.930000px;}
.y93{bottom:888.450000px;}
.y48{bottom:899.430000px;}
.y12{bottom:905.730000px;}
.y47{bottom:921.210000px;}
.y11{bottom:926.250000px;}
.y7e{bottom:927.150000px;}
.y91{bottom:932.730000px;}
.y46{bottom:942.990000px;}
.y10{bottom:946.230000px;}
.yf{bottom:963.870000px;}
.y44{bottom:964.770000px;}
.y45{bottom:970.710000px;}
.y8f{bottom:977.190000px;}
.ye{bottom:985.650000px;}
.y43{bottom:986.550000px;}
.y42{bottom:1008.510000px;}
.yd{bottom:1008.690000px;}
.y8d{bottom:1010.310000px;}
.y41{bottom:1030.290000px;}
.yc{bottom:1034.610000px;}
.y8a{bottom:1043.610000px;}
.y40{bottom:1052.070000px;}
.yb{bottom:1057.290000px;}
.ya{bottom:1071.870000px;}
.y3f{bottom:1073.850000px;}
.y9{bottom:1089.150000px;}
.y88{bottom:1094.370000px;}
.y3e{bottom:1095.810000px;}
.y89{bottom:1100.310000px;}
.y8{bottom:1106.430000px;}
.y87{bottom:1116.150000px;}
.y3d{bottom:1117.590000px;}
.y7{bottom:1123.530000px;}
.y86{bottom:1138.140000px;}
.y3c{bottom:1139.400000px;}
.y6{bottom:1140.840000px;}
.y3{bottom:1173.060000px;}
.y1{bottom:1188.720000px;}
.h2{height:20.160000px;}
.h12{height:21.661172px;}
.h10{height:29.913047px;}
.h16{height:32.400000px;}
.h15{height:32.580000px;}
.h18{height:33.336000px;}
.h9{height:34.036523px;}
.hc{height:34.554727px;}
.hf{height:34.837383px;}
.h5{height:39.760312px;}
.h7{height:42.164648px;}
.h8{height:42.806602px;}
.h14{height:43.560000px;}
.h17{height:43.740000px;}
.hd{height:46.736719px;}
.h6{height:47.448281px;}
.h11{height:48.224531px;}
.he{height:49.255313px;}
.h3{height:50.068125px;}
.h13{height:52.417969px;}
.hb{height:54.596250px;}
.ha{height:54.864844px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:61.200000px;}
.w6{width:146.880000px;}
.w7{width:223.275000px;}
.w8{width:260.850000px;}
.w3{width:619.485000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.036000px;}
.x22{left:111.815987px;}
.x11{left:113.075987px;}
.x2f{left:115.595987px;}
.x5{left:119.735987px;}
.x18{left:135.035987px;}
.x7{left:136.835987px;}
.x29{left:139.895987px;}
.xb{left:149.075987px;}
.xe{left:161.129987px;}
.x2e{left:165.989987px;}
.x2a{left:167.069987px;}
.x3{left:169.230000px;}
.x2b{left:221.069973px;}
.xa{left:229.349987px;}
.x2c{left:231.509987px;}
.xf{left:243.749973px;}
.x10{left:248.969987px;}
.x27{left:251.489973px;}
.x32{left:256.530000px;}
.x1d{left:258.329973px;}
.x28{left:261.929987px;}
.x1e{left:263.549987px;}
.x9{left:297.974987px;}
.x21{left:324.074987px;}
.x6{left:328.934987px;}
.x1b{left:369.434973px;}
.x1c{left:374.654987px;}
.x38{left:376.094973px;}
.x39{left:386.534987px;}
.x8{left:392.834987px;}
.x19{left:394.454973px;}
.x1a{left:399.674987px;}
.x12{left:411.014973px;}
.x13{left:416.234987px;}
.xc{left:418.574987px;}
.xd{left:420.194987px;}
.x4{left:446.474987px;}
.x30{left:477.284973px;}
.x33{left:480.525000px;}
.x31{left:487.724987px;}
.x1f{left:503.204973px;}
.x20{left:508.424987px;}
.x2d{left:514.724973px;}
.x23{left:520.124973px;}
.x24{left:525.344987px;}
.x16{left:553.244973px;}
.x17{left:558.464987px;}
.x25{left:577.364973px;}
.x26{left:587.804987px;}
.x14{left:643.064973px;}
.x15{left:648.284987px;}
.x36{left:690.089973px;}
.x37{left:700.529987px;}
.x34{left:737.609973px;}
.x35{left:748.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.518933pt;}
.lsb{letter-spacing:-0.406933pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.800000pt;}
.lsf{letter-spacing:2.080000pt;}
.ls12{letter-spacing:2.720000pt;}
.ls11{letter-spacing:3.360000pt;}
.ls10{letter-spacing:4.000000pt;}
.ls15{letter-spacing:5.920000pt;}
.lse{letter-spacing:25.088000pt;}
.lsc{letter-spacing:34.831360pt;}
.ls7{letter-spacing:35.450027pt;}
.ls5{letter-spacing:35.471360pt;}
.lsd{letter-spacing:38.031360pt;}
.ls6{letter-spacing:38.650027pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.953067pt;}
.ws5{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.584533pt;}
.wsb{word-spacing:-14.448533pt;}
.ws6{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws9{word-spacing:-10.201067pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-3.768320pt;}
._14{margin-left:-2.767360pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.221760pt;}
._5{width:2.231040pt;}
._7{width:3.984000pt;}
._8{width:5.630720pt;}
._10{width:6.734080pt;}
._a{width:7.861760pt;}
._9{width:8.871040pt;}
._18{width:9.781760pt;}
._3{width:10.942720pt;}
._6{width:12.111360pt;}
._11{width:13.306880pt;}
._4{width:14.554880pt;}
._f{width:15.956480pt;}
._1b{width:17.134080pt;}
._17{width:18.193920pt;}
._1c{width:19.136000pt;}
._c{width:20.982400pt;}
._b{width:21.885440pt;}
._d{width:23.797760pt;}
._21{width:24.885760pt;}
._1d{width:26.142720pt;}
._1e{width:27.099520pt;}
._15{width:28.203520pt;}
._16{width:29.206613pt;}
._12{width:30.660267pt;}
._1a{width:31.677440pt;}
._19{width:32.678400pt;}
._20{width:34.046720pt;}
._1f{width:35.208320pt;}
._e{width:95.105707pt;}
._1{width:1143.762773pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.000000pt;}
.y8c{bottom:5.600000pt;}
.y90{bottom:15.040000pt;}
.y8e{bottom:15.200000pt;}
.y95{bottom:15.880000pt;}
.y8b{bottom:24.960000pt;}
.y92{bottom:25.120000pt;}
.y5{bottom:29.440000pt;}
.y4{bottom:56.960000pt;}
.y7d{bottom:98.112000pt;}
.ybd{bottom:101.152000pt;}
.y7c{bottom:102.112000pt;}
.y7b{bottom:110.272000pt;}
.y7a{bottom:114.272000pt;}
.y3b{bottom:116.192000pt;}
.ybc{bottom:120.512000pt;}
.y79{bottom:122.592000pt;}
.y85{bottom:126.592000pt;}
.y78{bottom:134.906667pt;}
.y3a{bottom:135.546667pt;}
.y77{bottom:138.906667pt;}
.ybb{bottom:139.866667pt;}
.y76{bottom:147.066667pt;}
.y75{bottom:151.066667pt;}
.y39{bottom:154.906667pt;}
.yba{bottom:159.226667pt;}
.y74{bottom:159.386667pt;}
.y73{bottom:163.386667pt;}
.y72{bottom:171.706667pt;}
.y38{bottom:174.266667pt;}
.y71{bottom:175.706667pt;}
.yb9{bottom:178.746667pt;}
.y70{bottom:183.866667pt;}
.yb5{bottom:187.866667pt;}
.y37{bottom:193.626667pt;}
.y6f{bottom:196.186667pt;}
.yb4{bottom:197.946667pt;}
.yb8{bottom:198.106667pt;}
.y6e{bottom:200.186667pt;}
.y6d{bottom:208.506667pt;}
.y6c{bottom:212.506667pt;}
.y36{bottom:213.146667pt;}
.yb7{bottom:217.466667pt;}
.y6b{bottom:222.426667pt;}
.y35{bottom:232.506667pt;}
.yb6{bottom:236.826667pt;}
.yb3{bottom:240.666667pt;}
.y84{bottom:251.386667pt;}
.y34{bottom:251.866667pt;}
.y69{bottom:256.186667pt;}
.yb2{bottom:260.026667pt;}
.y6a{bottom:261.466667pt;}
.y33{bottom:271.226667pt;}
.y83{bottom:272.026667pt;}
.y68{bottom:275.706667pt;}
.yb0{bottom:279.386667pt;}
.yb1{bottom:284.666667pt;}
.y32{bottom:290.746667pt;}
.y82{bottom:292.666667pt;}
.y67{bottom:295.066667pt;}
.yaf{bottom:298.746667pt;}
.y31{bottom:310.146667pt;}
.y81{bottom:313.346667pt;}
.y66{bottom:314.466667pt;}
.yae{bottom:318.146667pt;}
.y30{bottom:329.506667pt;}
.y65{bottom:333.826667pt;}
.yad{bottom:337.666667pt;}
.y80{bottom:339.106667pt;}
.y2f{bottom:348.866667pt;}
.y63{bottom:353.346667pt;}
.yab{bottom:357.026667pt;}
.y64{bottom:358.626667pt;}
.yac{bottom:362.306667pt;}
.y2e{bottom:368.226667pt;}
.y62{bottom:372.706667pt;}
.yaa{bottom:376.386667pt;}
.y2d{bottom:386.146667pt;}
.y61{bottom:392.066667pt;}
.ya9{bottom:395.746667pt;}
.y2c{bottom:400.226667pt;}
.y5f{bottom:411.426667pt;}
.y2b{bottom:413.186667pt;}
.ya8{bottom:415.266667pt;}
.y60{bottom:416.706667pt;}
.y2a{bottom:428.546667pt;}
.y5e{bottom:430.786667pt;}
.ya7{bottom:434.626667pt;}
.y29{bottom:443.746667pt;}
.y5d{bottom:450.306667pt;}
.ya6{bottom:453.986667pt;}
.y28{bottom:459.106667pt;}
.y5c{bottom:469.666667pt;}
.ya5{bottom:473.346667pt;}
.y27{bottom:474.466667pt;}
.y5b{bottom:489.026667pt;}
.y26{bottom:489.826667pt;}
.ya4{bottom:492.706667pt;}
.y25{bottom:505.186667pt;}
.y5a{bottom:508.386667pt;}
.ya3{bottom:512.226667pt;}
.y24{bottom:520.546667pt;}
.y58{bottom:527.906667pt;}
.ya2{bottom:531.586667pt;}
.y59{bottom:533.186667pt;}
.y23{bottom:535.746667pt;}
.y57{bottom:547.293333pt;}
.ya1{bottom:550.973333pt;}
.y22{bottom:551.133333pt;}
.y21{bottom:566.493333pt;}
.y56{bottom:566.653333pt;}
.ya0{bottom:570.333333pt;}
.y20{bottom:581.853333pt;}
.y54{bottom:586.013333pt;}
.y9f{bottom:589.693333pt;}
.y55{bottom:591.293333pt;}
.y1f{bottom:597.213333pt;}
.y52{bottom:605.373333pt;}
.y9e{bottom:609.213333pt;}
.y53{bottom:610.653333pt;}
.y1e{bottom:612.573333pt;}
.y51{bottom:624.893333pt;}
.y1d{bottom:627.773333pt;}
.y9c{bottom:628.573333pt;}
.y9d{bottom:633.853333pt;}
.y1c{bottom:643.133333pt;}
.y50{bottom:644.253333pt;}
.y9b{bottom:647.933333pt;}
.y1b{bottom:658.493333pt;}
.y4f{bottom:663.613333pt;}
.y9a{bottom:667.293333pt;}
.y1a{bottom:673.853333pt;}
.y4e{bottom:682.973333pt;}
.y99{bottom:686.813333pt;}
.y19{bottom:689.213333pt;}
.y4d{bottom:702.333333pt;}
.y18{bottom:704.413333pt;}
.y98{bottom:706.173333pt;}
.y17{bottom:719.773333pt;}
.y4c{bottom:721.853333pt;}
.y97{bottom:725.533333pt;}
.y7f{bottom:727.133333pt;}
.y16{bottom:735.133333pt;}
.y4b{bottom:741.213333pt;}
.y96{bottom:744.893333pt;}
.y15{bottom:750.493333pt;}
.y94{bottom:759.293333pt;}
.y4a{bottom:760.573333pt;}
.y14{bottom:768.573333pt;}
.y49{bottom:779.973333pt;}
.y13{bottom:787.493333pt;}
.y93{bottom:789.733333pt;}
.y48{bottom:799.493333pt;}
.y12{bottom:805.093333pt;}
.y47{bottom:818.853333pt;}
.y11{bottom:823.333333pt;}
.y7e{bottom:824.133333pt;}
.y91{bottom:829.093333pt;}
.y46{bottom:838.213333pt;}
.y10{bottom:841.093333pt;}
.yf{bottom:856.773333pt;}
.y44{bottom:857.573333pt;}
.y45{bottom:862.853333pt;}
.y8f{bottom:868.613333pt;}
.ye{bottom:876.133333pt;}
.y43{bottom:876.933333pt;}
.y42{bottom:896.453333pt;}
.yd{bottom:896.613333pt;}
.y8d{bottom:898.053333pt;}
.y41{bottom:915.813333pt;}
.yc{bottom:919.653333pt;}
.y8a{bottom:927.653333pt;}
.y40{bottom:935.173333pt;}
.yb{bottom:939.813333pt;}
.ya{bottom:952.773333pt;}
.y3f{bottom:954.533333pt;}
.y9{bottom:968.133333pt;}
.y88{bottom:972.773333pt;}
.y3e{bottom:974.053333pt;}
.y89{bottom:978.053333pt;}
.y8{bottom:983.493333pt;}
.y87{bottom:992.133333pt;}
.y3d{bottom:993.413333pt;}
.y7{bottom:998.693333pt;}
.y86{bottom:1011.680000pt;}
.y3c{bottom:1012.800000pt;}
.y6{bottom:1014.080000pt;}
.y3{bottom:1042.720000pt;}
.y1{bottom:1056.640000pt;}
.h2{height:17.920000pt;}
.h12{height:19.254375pt;}
.h10{height:26.589375pt;}
.h16{height:28.800000pt;}
.h15{height:28.960000pt;}
.h18{height:29.632000pt;}
.h9{height:30.254687pt;}
.hc{height:30.715312pt;}
.hf{height:30.966562pt;}
.h5{height:35.342500pt;}
.h7{height:37.479688pt;}
.h8{height:38.050313pt;}
.h14{height:38.720000pt;}
.h17{height:38.880000pt;}
.hd{height:41.543750pt;}
.h6{height:42.176250pt;}
.h11{height:42.866250pt;}
.he{height:43.782500pt;}
.h3{height:44.505000pt;}
.h13{height:46.593750pt;}
.hb{height:48.530000pt;}
.ha{height:48.768750pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:54.400000pt;}
.w6{width:130.560000pt;}
.w7{width:198.466667pt;}
.w8{width:231.866667pt;}
.w3{width:550.653333pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.032000pt;}
.x22{left:99.391988pt;}
.x11{left:100.511988pt;}
.x2f{left:102.751988pt;}
.x5{left:106.431988pt;}
.x18{left:120.031988pt;}
.x7{left:121.631988pt;}
.x29{left:124.351988pt;}
.xb{left:132.511988pt;}
.xe{left:143.226655pt;}
.x2e{left:147.546655pt;}
.x2a{left:148.506655pt;}
.x3{left:150.426667pt;}
.x2b{left:196.506643pt;}
.xa{left:203.866655pt;}
.x2c{left:205.786655pt;}
.xf{left:216.666643pt;}
.x10{left:221.306655pt;}
.x27{left:223.546643pt;}
.x32{left:228.026667pt;}
.x1d{left:229.626643pt;}
.x28{left:232.826655pt;}
.x1e{left:234.266655pt;}
.x9{left:264.866655pt;}
.x21{left:288.066655pt;}
.x6{left:292.386655pt;}
.x1b{left:328.386643pt;}
.x1c{left:333.026655pt;}
.x38{left:334.306643pt;}
.x39{left:343.586655pt;}
.x8{left:349.186655pt;}
.x19{left:350.626643pt;}
.x1a{left:355.266655pt;}
.x12{left:365.346643pt;}
.x13{left:369.986655pt;}
.xc{left:372.066655pt;}
.xd{left:373.506655pt;}
.x4{left:396.866655pt;}
.x30{left:424.253310pt;}
.x33{left:427.133333pt;}
.x31{left:433.533322pt;}
.x1f{left:447.293310pt;}
.x20{left:451.933322pt;}
.x2d{left:457.533310pt;}
.x23{left:462.333310pt;}
.x24{left:466.973322pt;}
.x16{left:491.773310pt;}
.x17{left:496.413322pt;}
.x25{left:513.213310pt;}
.x26{left:522.493322pt;}
.x14{left:571.613310pt;}
.x15{left:576.253322pt;}
.x36{left:613.413310pt;}
.x37{left:622.693322pt;}
.x34{left:655.653310pt;}
.x35{left:664.933322pt;}
}




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