
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bfda72a65536ee4702d8756b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_b88d2ca400ff5d7edde8f06d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_0cf88d546b3606df8847fd9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_c6057a6291393d385d8b8160.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_ae082adcf54cfea5fdf106f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_44793d54f74893ee43a09a79.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_4d6639831a08cc5314ed011d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.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;}
.ls6{letter-spacing:-0.774000px;}
.ls18{letter-spacing:-0.750000px;}
.ls12{letter-spacing:-0.726000px;}
.lsc{letter-spacing:-0.541200px;}
.ls7{letter-spacing:-0.334200px;}
.ls17{letter-spacing:-0.310800px;}
.lsd{letter-spacing:-0.259200px;}
.ls9{letter-spacing:-0.166800px;}
.ls11{letter-spacing:-0.103800px;}
.ls10{letter-spacing:-0.086400px;}
.ls8{letter-spacing:-0.028800px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.046080px;}
.lsa{letter-spacing:0.178800px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.184200px;}
.ls14{letter-spacing:0.190080px;}
.lsb{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:1.180800px;}
.ls1a{letter-spacing:6.865920px;}
.ls13{letter-spacing:7.660800px;}
.ls4{letter-spacing:10.540800px;}
.lsf{letter-spacing:11.260800px;}
.ls3{letter-spacing:12.700800px;}
.ls16{letter-spacing:31.345920px;}
.ls19{letter-spacing:42.145920px;}
.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;}
}
.ws9{word-spacing:-63.360000px;}
.ws5{word-spacing:-20.070000px;}
.ws4{word-spacing:-19.800000px;}
.ws3{word-spacing:-14.118000px;}
.ws2{word-spacing:-13.939200px;}
.wsa{word-spacing:-13.628400px;}
.ws1{word-spacing:-13.605000px;}
.ws6{word-spacing:-13.398000px;}
.ws8{word-spacing:-13.213200px;}
.ws0{word-spacing:-13.165200px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-11.279040px;}
._26{margin-left:-10.109760px;}
._13{margin-left:-2.344320px;}
._0{margin-left:-1.267200px;}
._2{width:1.233600px;}
._7{width:2.344320px;}
._6{width:3.358080px;}
._8{width:5.258880px;}
._9{width:6.336000px;}
._b{width:7.983360px;}
._a{width:9.060480px;}
._f{width:10.159680px;}
._e{width:11.347200px;}
._d{width:12.666240px;}
._12{width:15.903360px;}
._11{width:17.043840px;}
._14{width:18.408000px;}
._4{width:20.268720px;}
._3{width:21.438720px;}
._c{width:22.969920px;}
._10{width:24.001920px;}
._1{width:25.060800px;}
._41{width:26.428800px;}
._3f{width:28.131840px;}
._40{width:29.300160px;}
._1a{width:30.816000px;}
._3c{width:39.944640px;}
._1c{width:42.162240px;}
._20{width:49.679040px;}
._34{width:50.858880px;}
._1f{width:55.273440px;}
._23{width:61.085280px;}
._25{width:64.650240px;}
._37{width:69.706560px;}
._2b{width:71.227200px;}
._2a{width:72.805440px;}
._2e{width:77.373120px;}
._39{width:78.509280px;}
._18{width:82.627680px;}
._31{width:83.772480px;}
._21{width:87.067200px;}
._3b{width:89.660640px;}
._15{width:97.592160px;}
._3e{width:101.323200px;}
._3a{width:104.457120px;}
._1b{width:108.322080px;}
._38{width:116.652000px;}
._2f{width:121.162080px;}
._27{width:126.490080px;}
._2c{width:130.660320px;}
._22{width:132.826080px;}
._29{width:139.162080px;}
._1d{width:143.832000px;}
._1e{width:145.992000px;}
._30{width:148.985280px;}
._19{width:156.125280px;}
._3d{width:159.500640px;}
._32{width:166.405920px;}
._2d{width:168.620160px;}
._24{width:174.580320px;}
._36{width:183.576000px;}
._17{width:185.154720px;}
._28{width:195.235680px;}
._33{width:201.107520px;}
._16{width:202.180800px;}
._35{width:203.194080px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.420000px;}
.y5{bottom:21.960000px;}
.y4{bottom:40.350000px;}
.y9{bottom:55.440000px;}
.y8{bottom:58.320000px;}
.y3{bottom:58.890000px;}
.y7b{bottom:85.140000px;}
.y3e{bottom:87.840000px;}
.y7a{bottom:88.920000px;}
.ya1{bottom:92.520000px;}
.y7e{bottom:95.400000px;}
.y79{bottom:103.860000px;}
.y3d{bottom:106.200000px;}
.y81{bottom:107.640000px;}
.ya0{bottom:110.880000px;}
.y7d{bottom:113.760000px;}
.y80{bottom:122.580000px;}
.y3c{bottom:124.740000px;}
.y9f{bottom:129.420000px;}
.y78{bottom:132.300000px;}
.y3b{bottom:143.280000px;}
.y9e{bottom:147.960000px;}
.y77{bottom:150.660000px;}
.y3a{bottom:161.640000px;}
.y9d{bottom:166.320000px;}
.y76{bottom:169.200000px;}
.y39{bottom:180.180000px;}
.y9c{bottom:184.860000px;}
.y75{bottom:187.740000px;}
.y38{bottom:198.540000px;}
.y9b{bottom:203.220000px;}
.y74{bottom:206.100000px;}
.y37{bottom:217.110000px;}
.y9a{bottom:221.790000px;}
.y73{bottom:224.670000px;}
.y36{bottom:235.470000px;}
.y99{bottom:240.330000px;}
.y72{bottom:243.030000px;}
.y71{bottom:246.810000px;}
.y35{bottom:254.010000px;}
.y70{bottom:261.570000px;}
.y98{bottom:270.750000px;}
.y34{bottom:272.550000px;}
.y6f{bottom:279.930000px;}
.y33{bottom:290.910000px;}
.y6e{bottom:298.470000px;}
.y97{bottom:301.170000px;}
.y32{bottom:309.450000px;}
.y6d{bottom:317.010000px;}
.y31{bottom:327.810000px;}
.y96{bottom:331.590000px;}
.y6c{bottom:335.370000px;}
.y30{bottom:346.350000px;}
.y6b{bottom:353.910000px;}
.y95{bottom:362.190000px;}
.y2f{bottom:364.890000px;}
.y6a{bottom:372.270000px;}
.y2e{bottom:383.250000px;}
.y69{bottom:390.810000px;}
.y94{bottom:392.610000px;}
.y2d{bottom:401.790000px;}
.y68{bottom:409.350000px;}
.y2c{bottom:420.150000px;}
.y93{bottom:423.030000px;}
.y67{bottom:427.710000px;}
.y2b{bottom:438.690000px;}
.y92{bottom:441.570000px;}
.y66{bottom:446.295000px;}
.y2a{bottom:457.095000px;}
.y65{bottom:464.655000px;}
.y91{bottom:470.415000px;}
.y29{bottom:475.635000px;}
.y64{bottom:483.195000px;}
.y90{bottom:488.955000px;}
.y28{bottom:494.175000px;}
.y63{bottom:501.555000px;}
.y27{bottom:512.535000px;}
.y8f{bottom:517.935000px;}
.y62{bottom:520.095000px;}
.y26{bottom:531.075000px;}
.y61{bottom:538.635000px;}
.y8e{bottom:546.735000px;}
.y25{bottom:549.435000px;}
.y60{bottom:556.995000px;}
.y24{bottom:567.975000px;}
.y5f{bottom:575.535000px;}
.y8d{bottom:575.715000px;}
.y23{bottom:586.515000px;}
.y5e{bottom:593.895000px;}
.y8c{bottom:604.695000px;}
.y22{bottom:604.875000px;}
.y5d{bottom:612.435000px;}
.y7f{bottom:616.215000px;}
.y8b{bottom:623.235000px;}
.y21{bottom:623.415000px;}
.y5c{bottom:630.975000px;}
.y20{bottom:641.775000px;}
.y5b{bottom:649.335000px;}
.y8a{bottom:652.215000px;}
.y1f{bottom:660.315000px;}
.y5a{bottom:667.875000px;}
.y89{bottom:670.755000px;}
.y1e{bottom:678.675000px;}
.y59{bottom:686.265000px;}
.y88{bottom:699.585000px;}
.y1d{bottom:701.025000px;}
.y58{bottom:704.805000px;}
.y1c{bottom:719.385000px;}
.y57{bottom:723.165000px;}
.y87{bottom:728.565000px;}
.y1b{bottom:737.925000px;}
.y56{bottom:741.705000px;}
.y86{bottom:747.105000px;}
.y1a{bottom:756.465000px;}
.y55{bottom:760.245000px;}
.y7c{bottom:764.025000px;}
.y19{bottom:774.825000px;}
.y85{bottom:776.085000px;}
.y54{bottom:778.605000px;}
.y18{bottom:793.365000px;}
.y53{bottom:797.145000px;}
.y84{bottom:805.065000px;}
.y17{bottom:811.725000px;}
.y52{bottom:815.505000px;}
.y83{bottom:823.605000px;}
.y16{bottom:830.265000px;}
.y51{bottom:834.045000px;}
.y15{bottom:850.965000px;}
.y82{bottom:852.405000px;}
.y50{bottom:852.585000px;}
.y14{bottom:869.505000px;}
.y4f{bottom:870.945000px;}
.y13{bottom:887.865000px;}
.y4e{bottom:889.485000px;}
.y12{bottom:906.405000px;}
.y4d{bottom:907.845000px;}
.y11{bottom:924.810000px;}
.y4c{bottom:926.430000px;}
.y10{bottom:943.350000px;}
.y4b{bottom:944.790000px;}
.yf{bottom:961.890000px;}
.y4a{bottom:963.330000px;}
.ye{bottom:980.250000px;}
.y49{bottom:981.870000px;}
.yd{bottom:998.790000px;}
.y48{bottom:1000.230000px;}
.yc{bottom:1018.770000px;}
.y47{bottom:1037.130000px;}
.yb{bottom:1045.230000px;}
.y46{bottom:1055.670000px;}
.y45{bottom:1074.210000px;}
.ya{bottom:1081.950000px;}
.y44{bottom:1092.570000px;}
.y7{bottom:1110.930000px;}
.y43{bottom:1111.110000px;}
.y2{bottom:1118.130000px;}
.y42{bottom:1129.470000px;}
.y41{bottom:1148.010000px;}
.y40{bottom:1166.400000px;}
.y1{bottom:1191.960000px;}
.y3f{bottom:1193.400000px;}
.h7{height:18.360000px;}
.h5{height:30.077578px;}
.ha{height:32.918906px;}
.h9{height:35.357344px;}
.hb{height:50.597578px;}
.h4{height:53.645625px;}
.h2{height:53.709961px;}
.h6{height:65.884219px;}
.h3{height:73.836000px;}
.h8{height:76.201172px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:17.496000px;}
.w3{width:364.605000px;}
.w4{width:366.735000px;}
.w6{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:23.220000px;}
.x2{left:81.000000px;}
.x11{left:86.795987px;}
.xc{left:87.875987px;}
.x4{left:102.420000px;}
.x17{left:107.855987px;}
.x5{left:119.880000px;}
.x8{left:123.335987px;}
.x9{left:142.595987px;}
.x13{left:165.089973px;}
.x14{left:170.849987px;}
.x12{left:297.074987px;}
.xe{left:315.434987px;}
.xd{left:332.894987px;}
.xb{left:338.654987px;}
.xf{left:381.494987px;}
.x3{left:445.605000px;}
.xa{left:446.684987px;}
.x15{left:644.369973px;}
.x16{left:650.129987px;}
.x10{left:785.309987px;}
.x7{left:794.850000px;}
.x1{left:812.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.688000pt;}
.ls18{letter-spacing:-0.666667pt;}
.ls12{letter-spacing:-0.645333pt;}
.lsc{letter-spacing:-0.481067pt;}
.ls7{letter-spacing:-0.297067pt;}
.ls17{letter-spacing:-0.276267pt;}
.lsd{letter-spacing:-0.230400pt;}
.ls9{letter-spacing:-0.148267pt;}
.ls11{letter-spacing:-0.092267pt;}
.ls10{letter-spacing:-0.076800pt;}
.ls8{letter-spacing:-0.025600pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.040960pt;}
.lsa{letter-spacing:0.158933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.163733pt;}
.ls14{letter-spacing:0.168960pt;}
.lsb{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:1.049600pt;}
.ls1a{letter-spacing:6.103040pt;}
.ls13{letter-spacing:6.809600pt;}
.ls4{letter-spacing:9.369600pt;}
.lsf{letter-spacing:10.009600pt;}
.ls3{letter-spacing:11.289600pt;}
.ls16{letter-spacing:27.863040pt;}
.ls19{letter-spacing:37.463040pt;}
.ws9{word-spacing:-56.320000pt;}
.ws5{word-spacing:-17.840000pt;}
.ws4{word-spacing:-17.600000pt;}
.ws3{word-spacing:-12.549333pt;}
.ws2{word-spacing:-12.390400pt;}
.wsa{word-spacing:-12.114133pt;}
.ws1{word-spacing:-12.093333pt;}
.ws6{word-spacing:-11.909333pt;}
.ws8{word-spacing:-11.745067pt;}
.ws0{word-spacing:-11.702400pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-10.025813pt;}
._26{margin-left:-8.986453pt;}
._13{margin-left:-2.083840pt;}
._0{margin-left:-1.126400pt;}
._2{width:1.096533pt;}
._7{width:2.083840pt;}
._6{width:2.984960pt;}
._8{width:4.674560pt;}
._9{width:5.632000pt;}
._b{width:7.096320pt;}
._a{width:8.053760pt;}
._f{width:9.030827pt;}
._e{width:10.086400pt;}
._d{width:11.258880pt;}
._12{width:14.136320pt;}
._11{width:15.150080pt;}
._14{width:16.362667pt;}
._4{width:18.016640pt;}
._3{width:19.056640pt;}
._c{width:20.417707pt;}
._10{width:21.335040pt;}
._1{width:22.276267pt;}
._41{width:23.492267pt;}
._3f{width:25.006080pt;}
._40{width:26.044587pt;}
._1a{width:27.392000pt;}
._3c{width:35.506347pt;}
._1c{width:37.477547pt;}
._20{width:44.159147pt;}
._34{width:45.207893pt;}
._1f{width:49.131947pt;}
._23{width:54.298027pt;}
._25{width:57.466880pt;}
._37{width:61.961387pt;}
._2b{width:63.313067pt;}
._2a{width:64.715947pt;}
._2e{width:68.776107pt;}
._39{width:69.786027pt;}
._18{width:73.446827pt;}
._31{width:74.464427pt;}
._21{width:77.393067pt;}
._3b{width:79.698347pt;}
._15{width:86.748587pt;}
._3e{width:90.065067pt;}
._3a{width:92.850773pt;}
._1b{width:96.286293pt;}
._38{width:103.690667pt;}
._2f{width:107.699627pt;}
._27{width:112.435627pt;}
._2c{width:116.142507pt;}
._22{width:118.067627pt;}
._29{width:123.699627pt;}
._1d{width:127.850667pt;}
._1e{width:129.770667pt;}
._30{width:132.431360pt;}
._19{width:138.778027pt;}
._3d{width:141.778347pt;}
._32{width:147.916373pt;}
._2d{width:149.884587pt;}
._24{width:155.182507pt;}
._36{width:163.178667pt;}
._17{width:164.581973pt;}
._28{width:173.542827pt;}
._33{width:178.762240pt;}
._16{width:179.716267pt;}
._35{width:180.616960pt;}
.fs2{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.040000pt;}
.y5{bottom:19.520000pt;}
.y4{bottom:35.866667pt;}
.y9{bottom:49.280000pt;}
.y8{bottom:51.840000pt;}
.y3{bottom:52.346667pt;}
.y7b{bottom:75.680000pt;}
.y3e{bottom:78.080000pt;}
.y7a{bottom:79.040000pt;}
.ya1{bottom:82.240000pt;}
.y7e{bottom:84.800000pt;}
.y79{bottom:92.320000pt;}
.y3d{bottom:94.400000pt;}
.y81{bottom:95.680000pt;}
.ya0{bottom:98.560000pt;}
.y7d{bottom:101.120000pt;}
.y80{bottom:108.960000pt;}
.y3c{bottom:110.880000pt;}
.y9f{bottom:115.040000pt;}
.y78{bottom:117.600000pt;}
.y3b{bottom:127.360000pt;}
.y9e{bottom:131.520000pt;}
.y77{bottom:133.920000pt;}
.y3a{bottom:143.680000pt;}
.y9d{bottom:147.840000pt;}
.y76{bottom:150.400000pt;}
.y39{bottom:160.160000pt;}
.y9c{bottom:164.320000pt;}
.y75{bottom:166.880000pt;}
.y38{bottom:176.480000pt;}
.y9b{bottom:180.640000pt;}
.y74{bottom:183.200000pt;}
.y37{bottom:192.986667pt;}
.y9a{bottom:197.146667pt;}
.y73{bottom:199.706667pt;}
.y36{bottom:209.306667pt;}
.y99{bottom:213.626667pt;}
.y72{bottom:216.026667pt;}
.y71{bottom:219.386667pt;}
.y35{bottom:225.786667pt;}
.y70{bottom:232.506667pt;}
.y98{bottom:240.666667pt;}
.y34{bottom:242.266667pt;}
.y6f{bottom:248.826667pt;}
.y33{bottom:258.586667pt;}
.y6e{bottom:265.306667pt;}
.y97{bottom:267.706667pt;}
.y32{bottom:275.066667pt;}
.y6d{bottom:281.786667pt;}
.y31{bottom:291.386667pt;}
.y96{bottom:294.746667pt;}
.y6c{bottom:298.106667pt;}
.y30{bottom:307.866667pt;}
.y6b{bottom:314.586667pt;}
.y95{bottom:321.946667pt;}
.y2f{bottom:324.346667pt;}
.y6a{bottom:330.906667pt;}
.y2e{bottom:340.666667pt;}
.y69{bottom:347.386667pt;}
.y94{bottom:348.986667pt;}
.y2d{bottom:357.146667pt;}
.y68{bottom:363.866667pt;}
.y2c{bottom:373.466667pt;}
.y93{bottom:376.026667pt;}
.y67{bottom:380.186667pt;}
.y2b{bottom:389.946667pt;}
.y92{bottom:392.506667pt;}
.y66{bottom:396.706667pt;}
.y2a{bottom:406.306667pt;}
.y65{bottom:413.026667pt;}
.y91{bottom:418.146667pt;}
.y29{bottom:422.786667pt;}
.y64{bottom:429.506667pt;}
.y90{bottom:434.626667pt;}
.y28{bottom:439.266667pt;}
.y63{bottom:445.826667pt;}
.y27{bottom:455.586667pt;}
.y8f{bottom:460.386667pt;}
.y62{bottom:462.306667pt;}
.y26{bottom:472.066667pt;}
.y61{bottom:478.786667pt;}
.y8e{bottom:485.986667pt;}
.y25{bottom:488.386667pt;}
.y60{bottom:495.106667pt;}
.y24{bottom:504.866667pt;}
.y5f{bottom:511.586667pt;}
.y8d{bottom:511.746667pt;}
.y23{bottom:521.346667pt;}
.y5e{bottom:527.906667pt;}
.y8c{bottom:537.506667pt;}
.y22{bottom:537.666667pt;}
.y5d{bottom:544.386667pt;}
.y7f{bottom:547.746667pt;}
.y8b{bottom:553.986667pt;}
.y21{bottom:554.146667pt;}
.y5c{bottom:560.866667pt;}
.y20{bottom:570.466667pt;}
.y5b{bottom:577.186667pt;}
.y8a{bottom:579.746667pt;}
.y1f{bottom:586.946667pt;}
.y5a{bottom:593.666667pt;}
.y89{bottom:596.226667pt;}
.y1e{bottom:603.266667pt;}
.y59{bottom:610.013333pt;}
.y88{bottom:621.853333pt;}
.y1d{bottom:623.133333pt;}
.y58{bottom:626.493333pt;}
.y1c{bottom:639.453333pt;}
.y57{bottom:642.813333pt;}
.y87{bottom:647.613333pt;}
.y1b{bottom:655.933333pt;}
.y56{bottom:659.293333pt;}
.y86{bottom:664.093333pt;}
.y1a{bottom:672.413333pt;}
.y55{bottom:675.773333pt;}
.y7c{bottom:679.133333pt;}
.y19{bottom:688.733333pt;}
.y85{bottom:689.853333pt;}
.y54{bottom:692.093333pt;}
.y18{bottom:705.213333pt;}
.y53{bottom:708.573333pt;}
.y84{bottom:715.613333pt;}
.y17{bottom:721.533333pt;}
.y52{bottom:724.893333pt;}
.y83{bottom:732.093333pt;}
.y16{bottom:738.013333pt;}
.y51{bottom:741.373333pt;}
.y15{bottom:756.413333pt;}
.y82{bottom:757.693333pt;}
.y50{bottom:757.853333pt;}
.y14{bottom:772.893333pt;}
.y4f{bottom:774.173333pt;}
.y13{bottom:789.213333pt;}
.y4e{bottom:790.653333pt;}
.y12{bottom:805.693333pt;}
.y4d{bottom:806.973333pt;}
.y11{bottom:822.053333pt;}
.y4c{bottom:823.493333pt;}
.y10{bottom:838.533333pt;}
.y4b{bottom:839.813333pt;}
.yf{bottom:855.013333pt;}
.y4a{bottom:856.293333pt;}
.ye{bottom:871.333333pt;}
.y49{bottom:872.773333pt;}
.yd{bottom:887.813333pt;}
.y48{bottom:889.093333pt;}
.yc{bottom:905.573333pt;}
.y47{bottom:921.893333pt;}
.yb{bottom:929.093333pt;}
.y46{bottom:938.373333pt;}
.y45{bottom:954.853333pt;}
.ya{bottom:961.733333pt;}
.y44{bottom:971.173333pt;}
.y7{bottom:987.493333pt;}
.y43{bottom:987.653333pt;}
.y2{bottom:993.893333pt;}
.y42{bottom:1003.973333pt;}
.y41{bottom:1020.453333pt;}
.y40{bottom:1036.800000pt;}
.y1{bottom:1059.520000pt;}
.y3f{bottom:1060.800000pt;}
.h7{height:16.320000pt;}
.h5{height:26.735625pt;}
.ha{height:29.261250pt;}
.h9{height:31.428750pt;}
.hb{height:44.975625pt;}
.h4{height:47.685000pt;}
.h2{height:47.742188pt;}
.h6{height:58.563750pt;}
.h3{height:65.632000pt;}
.h8{height:67.734375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:15.552000pt;}
.w3{width:324.093333pt;}
.w4{width:325.986667pt;}
.w6{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:20.640000pt;}
.x2{left:72.000000pt;}
.x11{left:77.151988pt;}
.xc{left:78.111988pt;}
.x4{left:91.040000pt;}
.x17{left:95.871988pt;}
.x5{left:106.560000pt;}
.x8{left:109.631988pt;}
.x9{left:126.751988pt;}
.x13{left:146.746643pt;}
.x14{left:151.866655pt;}
.x12{left:264.066655pt;}
.xe{left:280.386655pt;}
.xd{left:295.906655pt;}
.xb{left:301.026655pt;}
.xf{left:339.106655pt;}
.x3{left:396.093333pt;}
.xa{left:397.053322pt;}
.x15{left:572.773310pt;}
.x16{left:577.893322pt;}
.x10{left:698.053322pt;}
.x7{left:706.533333pt;}
.x1{left:722.079988pt;}
}




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