
    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_1127917e96330e047fddb66b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.174316;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_2728542fe6d9771ac53f62aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174316;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_30a16afe3108d63da8df3378.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.158691;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_8f750aca7ca4b1b7f8b18e42.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.158691;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_8c22c2ac463ae9c5c03d67a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_f2cdf518d42a045bfbe3afb4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_dcfd2e05f5ffd54a0a045d44.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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;}
.ls2{letter-spacing:-0.304800px;}
.ls15{letter-spacing:-0.271200px;}
.ls13{letter-spacing:-0.047520px;}
.ls7{letter-spacing:-0.007920px;}
.lsd{letter-spacing:-0.000006px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.024480px;}
.ls6{letter-spacing:0.037440px;}
.ls10{letter-spacing:0.066240px;}
.ls0{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.155520px;}
.ls9{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.185760px;}
.lsa{letter-spacing:0.189600px;}
.ls14{letter-spacing:0.263400px;}
.lsf{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.365760px;}
.lsc{letter-spacing:0.374400px;}
.lse{letter-spacing:0.786240px;}
.lsb{letter-spacing:0.905760px;}
.ls8{letter-spacing:64.002720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.wsb{word-spacing:-29.808000px;}
.wsc{word-spacing:-29.807994px;}
.ws4{word-spacing:-29.592000px;}
.ws3{word-spacing:-23.081760px;}
.ws1{word-spacing:-22.776960px;}
.ws7{word-spacing:-18.187200px;}
.ws6{word-spacing:-18.149760px;}
.ws9{word-spacing:-16.748640px;}
.ws10{word-spacing:-16.637640px;}
.wse{word-spacing:-16.518240px;}
.wsf{word-spacing:-16.493760px;}
.ws0{word-spacing:-16.374240px;}
.ws8{word-spacing:-16.366320px;}
.ws11{word-spacing:-16.103040px;}
.wsd{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.796000px;}
.ws5{word-spacing:0.000000px;}
._b{margin-left:-16.457040px;}
._7{margin-left:-15.174240px;}
._a{margin-left:-14.011440px;}
._6{margin-left:-11.704320px;}
._8{margin-left:-7.779600px;}
._9{margin-left:-5.276880px;}
._4{margin-left:-3.283200px;}
._2{margin-left:-1.853280px;}
._0{width:1.195200px;}
._3{width:2.528400px;}
._c{width:3.873840px;}
._5{width:86.585760px;}
._1{width:847.781760px;}
.fc6{color:transparent;}
.fc4{color:rgb(247,11,42);}
.fc1{color:rgb(21,54,119);}
.fc7{color:rgb(127,127,127);}
.fc5{color:rgb(64,64,64);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.420000px;}
.yd{bottom:3.780000px;}
.y15{bottom:4.140000px;}
.y12{bottom:19.260000px;}
.y7{bottom:23.220000px;}
.yc{bottom:23.760000px;}
.y14{bottom:26.100000px;}
.yb{bottom:43.740000px;}
.y3{bottom:56.736000px;}
.y11{bottom:58.860000px;}
.ya{bottom:65.160000px;}
.y2{bottom:76.716000px;}
.y10{bottom:98.280000px;}
.ya1{bottom:110.016000px;}
.ya0{bottom:115.236000px;}
.y4b{bottom:123.876000px;}
.y64{bottom:124.056000px;}
.y9f{bottom:129.816000px;}
.ybc{bottom:139.536000px;}
.yf{bottom:141.660000px;}
.y82{bottom:143.856000px;}
.y4a{bottom:162.930000px;}
.y63{bottom:163.830000px;}
.ybb{bottom:169.410000px;}
.y9e{bottom:179.310000px;}
.y81{bottom:182.730000px;}
.y49{bottom:201.810000px;}
.y62{bottom:203.610000px;}
.yba{bottom:208.470000px;}
.y9d{bottom:209.370000px;}
.y6{bottom:210.450000px;}
.y80{bottom:221.790000px;}
.y61{bottom:233.670000px;}
.y9c{bottom:239.250000px;}
.y48{bottom:240.690000px;}
.yb9{bottom:247.350000px;}
.y7f{bottom:260.670000px;}
.y60{bottom:273.495000px;}
.y9b{bottom:278.175000px;}
.y47{bottom:279.615000px;}
.yb8{bottom:286.275000px;}
.y9{bottom:290.595000px;}
.y7e{bottom:299.595000px;}
.y5f{bottom:303.735000px;}
.y9a{bottom:308.235000px;}
.y46{bottom:309.675000px;}
.yb7{bottom:325.335000px;}
.y7d{bottom:329.475000px;}
.y5e{bottom:333.795000px;}
.y45{bottom:339.555000px;}
.y99{bottom:347.115000px;}
.y7c{bottom:359.535000px;}
.yb6{bottom:364.215000px;}
.y5d{bottom:372.675000px;}
.y98{bottom:376.995000px;}
.y44{bottom:378.435000px;}
.ye{bottom:380.235000px;}
.y7b{bottom:389.415000px;}
.yb5{bottom:403.095000px;}
.y43{bottom:408.315000px;}
.y5c{bottom:411.735000px;}
.y97{bottom:415.875000px;}
.y7a{bottom:419.295000px;}
.y42{bottom:438.375000px;}
.y5b{bottom:441.615000px;}
.yb4{bottom:441.975000px;}
.y96{bottom:445.935000px;}
.y79{bottom:458.175000px;}
.y41{bottom:468.255000px;}
.yb3{bottom:472.035000px;}
.y95{bottom:475.815000px;}
.y5a{bottom:480.495000px;}
.y78{bottom:497.235000px;}
.y40{bottom:498.135000px;}
.yb2{bottom:501.915000px;}
.y94{bottom:505.695000px;}
.y59{bottom:519.375000px;}
.y77{bottom:527.115000px;}
.y3f{bottom:528.015000px;}
.yb1{bottom:535.215000px;}
.y93{bottom:535.575000px;}
.y58{bottom:549.435000px;}
.y76{bottom:557.025000px;}
.y3e{bottom:558.105000px;}
.yb0{bottom:563.505000px;}
.yc8{bottom:564.585000px;}
.y92{bottom:565.665000px;}
.y57{bottom:579.345000px;}
.y75{bottom:586.905000px;}
.y3d{bottom:587.985000px;}
.y91{bottom:595.545000px;}
.yaf{bottom:599.505000px;}
.yc7{bottom:616.425000px;}
.y74{bottom:616.965000px;}
.y90{bottom:625.425000px;}
.y3c{bottom:626.865000px;}
.y56{bottom:628.665000px;}
.y3b{bottom:655.125000px;}
.y8f{bottom:655.305000px;}
.yc6{bottom:655.485000px;}
.y73{bottom:655.845000px;}
.yae{bottom:663.765000px;}
.y55{bottom:677.085000px;}
.y8e{bottom:685.365000px;}
.y72{bottom:694.725000px;}
.yad{bottom:697.785000px;}
.y8d{bottom:715.245000px;}
.y54{bottom:716.145000px;}
.y2d{bottom:722.085000px;}
.y71{bottom:724.785000px;}
.y3a{bottom:728.025000px;}
.yac{bottom:736.125000px;}
.y8c{bottom:745.125000px;}
.y53{bottom:746.025000px;}
.y2c{bottom:751.965000px;}
.yc5{bottom:754.125000px;}
.y70{bottom:754.665000px;}
.yab{bottom:766.185000px;}
.y39{bottom:766.905000px;}
.y8b{bottom:775.005000px;}
.y52{bottom:775.905000px;}
.y2b{bottom:781.845000px;}
.yc4{bottom:784.185000px;}
.y6f{bottom:784.545000px;}
.y38{bottom:796.785000px;}
.y1f{bottom:803.445000px;}
.y8a{bottom:805.065000px;}
.yc3{bottom:814.065000px;}
.y6e{bottom:814.425000px;}
.y51{bottom:814.785000px;}
.y2a{bottom:820.905000px;}
.y37{bottom:826.845000px;}
.y1e{bottom:840.930000px;}
.yaa{bottom:843.990000px;}
.y88{bottom:844.710000px;}
.y50{bottom:844.890000px;}
.y89{bottom:849.930000px;}
.y29{bottom:850.830000px;}
.y6d{bottom:854.250000px;}
.y36{bottom:865.770000px;}
.y87{bottom:874.590000px;}
.y4f{bottom:874.770000px;}
.y1d{bottom:878.370000px;}
.y28{bottom:880.710000px;}
.ya9{bottom:883.050000px;}
.y6c{bottom:892.590000px;}
.y35{bottom:895.650000px;}
.y4e{bottom:904.650000px;}
.y27{bottom:910.590000px;}
.yc2{bottom:912.930000px;}
.y1c{bottom:915.810000px;}
.ya8{bottom:921.930000px;}
.y6b{bottom:922.650000px;}
.y34{bottom:925.530000px;}
.y4d{bottom:934.530000px;}
.y26{bottom:940.650000px;}
.yc1{bottom:942.810000px;}
.ya7{bottom:951.810000px;}
.y6a{bottom:952.530000px;}
.y1b{bottom:953.250000px;}
.y33{bottom:955.590000px;}
.y86{bottom:964.410000px;}
.y4c{bottom:964.590000px;}
.y25{bottom:970.530000px;}
.yc0{bottom:972.690000px;}
.ya6{bottom:981.690000px;}
.y69{bottom:982.410000px;}
.y1a{bottom:990.690000px;}
.y32{bottom:994.470000px;}
.y24{bottom:1000.410000px;}
.y85{bottom:1003.290000px;}
.ya5{bottom:1011.750000px;}
.y68{bottom:1012.290000px;}
.y31{bottom:1024.350000px;}
.y19{bottom:1028.130000px;}
.y23{bottom:1030.290000px;}
.y84{bottom:1031.550000px;}
.ybf{bottom:1041.630000px;}
.y67{bottom:1042.350000px;}
.y5{bottom:1049.010000px;}
.ya4{bottom:1050.630000px;}
.y22{bottom:1060.350000px;}
.y30{bottom:1063.230000px;}
.y18{bottom:1065.570000px;}
.y83{bottom:1067.550000px;}
.ybe{bottom:1071.510000px;}
.ya3{bottom:1080.510000px;}
.y4{bottom:1088.070000px;}
.y2f{bottom:1091.490000px;}
.y66{bottom:1091.670000px;}
.y21{bottom:1099.230000px;}
.ybd{bottom:1101.390000px;}
.y17{bottom:1103.010000px;}
.ya2{bottom:1110.390000px;}
.y20{bottom:1127.340000px;}
.y2e{bottom:1127.520000px;}
.y16{bottom:1140.480000px;}
.y65{bottom:1141.020000px;}
.y13{bottom:1182.780000px;}
.y1{bottom:1193.580000px;}
.h11{height:36.032344px;}
.h5{height:50.044922px;}
.h10{height:55.207969px;}
.h2{height:55.383047px;}
.hb{height:61.388437px;}
.hd{height:61.423863px;}
.hf{height:65.884219px;}
.he{height:77.823281px;}
.h4{height:78.070078px;}
.ha{height:79.740000px;}
.h6{height:87.840000px;}
.hc{height:99.773438px;}
.h9{height:100.089844px;}
.h3{height:114.516000px;}
.h8{height:177.596719px;}
.h7{height:479.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:438.374971px;}
.w3{width:839.850000px;}
.w4{width:841.830000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:26.640000px;}
.x2{left:106.235987px;}
.xf{left:110.735971px;}
.x10{left:133.235987px;}
.x1{left:159.329987px;}
.x14{left:164.549987px;}
.x7{left:198.210000px;}
.x8{left:207.750000px;}
.xb{left:295.635000px;}
.xc{left:320.295000px;}
.x13{left:375.374987px;}
.xa{left:461.955000px;}
.x9{left:473.655000px;}
.x4{left:504.105000px;}
.xe{left:505.544987px;}
.x5{left:596.805000px;}
.xd{left:617.505000px;}
.x11{left:640.184973px;}
.x12{left:645.404987px;}
.x6{left:685.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.270933pt;}
.ls15{letter-spacing:-0.241067pt;}
.ls13{letter-spacing:-0.042240pt;}
.ls7{letter-spacing:-0.007040pt;}
.lsd{letter-spacing:-0.000005pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.021760pt;}
.ls6{letter-spacing:0.033280pt;}
.ls10{letter-spacing:0.058880pt;}
.ls0{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.138240pt;}
.ls9{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.165120pt;}
.lsa{letter-spacing:0.168533pt;}
.ls14{letter-spacing:0.234133pt;}
.lsf{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.325120pt;}
.lsc{letter-spacing:0.332800pt;}
.lse{letter-spacing:0.698880pt;}
.lsb{letter-spacing:0.805120pt;}
.ls8{letter-spacing:56.891307pt;}
.wsa{word-spacing:-53.120000pt;}
.wsb{word-spacing:-26.496000pt;}
.wsc{word-spacing:-26.495995pt;}
.ws4{word-spacing:-26.304000pt;}
.ws3{word-spacing:-20.517120pt;}
.ws1{word-spacing:-20.246187pt;}
.ws7{word-spacing:-16.166400pt;}
.ws6{word-spacing:-16.133120pt;}
.ws9{word-spacing:-14.887680pt;}
.ws10{word-spacing:-14.789013pt;}
.wse{word-spacing:-14.682880pt;}
.wsf{word-spacing:-14.661120pt;}
.ws0{word-spacing:-14.554880pt;}
.ws8{word-spacing:-14.547840pt;}
.ws11{word-spacing:-14.313813pt;}
.wsd{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.152000pt;}
.ws5{word-spacing:0.000000pt;}
._b{margin-left:-14.628480pt;}
._7{margin-left:-13.488213pt;}
._a{margin-left:-12.454613pt;}
._6{margin-left:-10.403840pt;}
._8{margin-left:-6.915200pt;}
._9{margin-left:-4.690560pt;}
._4{margin-left:-2.918400pt;}
._2{margin-left:-1.647360pt;}
._0{width:1.062400pt;}
._3{width:2.247467pt;}
._c{width:3.443413pt;}
._5{width:76.965120pt;}
._1{width:753.583787pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.040000pt;}
.yd{bottom:3.360000pt;}
.y15{bottom:3.680000pt;}
.y12{bottom:17.120000pt;}
.y7{bottom:20.640000pt;}
.yc{bottom:21.120000pt;}
.y14{bottom:23.200000pt;}
.yb{bottom:38.880000pt;}
.y3{bottom:50.432000pt;}
.y11{bottom:52.320000pt;}
.ya{bottom:57.920000pt;}
.y2{bottom:68.192000pt;}
.y10{bottom:87.360000pt;}
.ya1{bottom:97.792000pt;}
.ya0{bottom:102.432000pt;}
.y4b{bottom:110.112000pt;}
.y64{bottom:110.272000pt;}
.y9f{bottom:115.392000pt;}
.ybc{bottom:124.032000pt;}
.yf{bottom:125.920000pt;}
.y82{bottom:127.872000pt;}
.y4a{bottom:144.826667pt;}
.y63{bottom:145.626667pt;}
.ybb{bottom:150.586667pt;}
.y9e{bottom:159.386667pt;}
.y81{bottom:162.426667pt;}
.y49{bottom:179.386667pt;}
.y62{bottom:180.986667pt;}
.yba{bottom:185.306667pt;}
.y9d{bottom:186.106667pt;}
.y6{bottom:187.066667pt;}
.y80{bottom:197.146667pt;}
.y61{bottom:207.706667pt;}
.y9c{bottom:212.666667pt;}
.y48{bottom:213.946667pt;}
.yb9{bottom:219.866667pt;}
.y7f{bottom:231.706667pt;}
.y60{bottom:243.106667pt;}
.y9b{bottom:247.266667pt;}
.y47{bottom:248.546667pt;}
.yb8{bottom:254.466667pt;}
.y9{bottom:258.306667pt;}
.y7e{bottom:266.306667pt;}
.y5f{bottom:269.986667pt;}
.y9a{bottom:273.986667pt;}
.y46{bottom:275.266667pt;}
.yb7{bottom:289.186667pt;}
.y7d{bottom:292.866667pt;}
.y5e{bottom:296.706667pt;}
.y45{bottom:301.826667pt;}
.y99{bottom:308.546667pt;}
.y7c{bottom:319.586667pt;}
.yb6{bottom:323.746667pt;}
.y5d{bottom:331.266667pt;}
.y98{bottom:335.106667pt;}
.y44{bottom:336.386667pt;}
.ye{bottom:337.986667pt;}
.y7b{bottom:346.146667pt;}
.yb5{bottom:358.306667pt;}
.y43{bottom:362.946667pt;}
.y5c{bottom:365.986667pt;}
.y97{bottom:369.666667pt;}
.y7a{bottom:372.706667pt;}
.y42{bottom:389.666667pt;}
.y5b{bottom:392.546667pt;}
.yb4{bottom:392.866667pt;}
.y96{bottom:396.386667pt;}
.y79{bottom:407.266667pt;}
.y41{bottom:416.226667pt;}
.yb3{bottom:419.586667pt;}
.y95{bottom:422.946667pt;}
.y5a{bottom:427.106667pt;}
.y78{bottom:441.986667pt;}
.y40{bottom:442.786667pt;}
.yb2{bottom:446.146667pt;}
.y94{bottom:449.506667pt;}
.y59{bottom:461.666667pt;}
.y77{bottom:468.546667pt;}
.y3f{bottom:469.346667pt;}
.yb1{bottom:475.746667pt;}
.y93{bottom:476.066667pt;}
.y58{bottom:488.386667pt;}
.y76{bottom:495.133333pt;}
.y3e{bottom:496.093333pt;}
.yb0{bottom:500.893333pt;}
.yc8{bottom:501.853333pt;}
.y92{bottom:502.813333pt;}
.y57{bottom:514.973333pt;}
.y75{bottom:521.693333pt;}
.y3d{bottom:522.653333pt;}
.y91{bottom:529.373333pt;}
.yaf{bottom:532.893333pt;}
.yc7{bottom:547.933333pt;}
.y74{bottom:548.413333pt;}
.y90{bottom:555.933333pt;}
.y3c{bottom:557.213333pt;}
.y56{bottom:558.813333pt;}
.y3b{bottom:582.333333pt;}
.y8f{bottom:582.493333pt;}
.yc6{bottom:582.653333pt;}
.y73{bottom:582.973333pt;}
.yae{bottom:590.013333pt;}
.y55{bottom:601.853333pt;}
.y8e{bottom:609.213333pt;}
.y72{bottom:617.533333pt;}
.yad{bottom:620.253333pt;}
.y8d{bottom:635.773333pt;}
.y54{bottom:636.573333pt;}
.y2d{bottom:641.853333pt;}
.y71{bottom:644.253333pt;}
.y3a{bottom:647.133333pt;}
.yac{bottom:654.333333pt;}
.y8c{bottom:662.333333pt;}
.y53{bottom:663.133333pt;}
.y2c{bottom:668.413333pt;}
.yc5{bottom:670.333333pt;}
.y70{bottom:670.813333pt;}
.yab{bottom:681.053333pt;}
.y39{bottom:681.693333pt;}
.y8b{bottom:688.893333pt;}
.y52{bottom:689.693333pt;}
.y2b{bottom:694.973333pt;}
.yc4{bottom:697.053333pt;}
.y6f{bottom:697.373333pt;}
.y38{bottom:708.253333pt;}
.y1f{bottom:714.173333pt;}
.y8a{bottom:715.613333pt;}
.yc3{bottom:723.613333pt;}
.y6e{bottom:723.933333pt;}
.y51{bottom:724.253333pt;}
.y2a{bottom:729.693333pt;}
.y37{bottom:734.973333pt;}
.y1e{bottom:747.493333pt;}
.yaa{bottom:750.213333pt;}
.y88{bottom:750.853333pt;}
.y50{bottom:751.013333pt;}
.y89{bottom:755.493333pt;}
.y29{bottom:756.293333pt;}
.y6d{bottom:759.333333pt;}
.y36{bottom:769.573333pt;}
.y87{bottom:777.413333pt;}
.y4f{bottom:777.573333pt;}
.y1d{bottom:780.773333pt;}
.y28{bottom:782.853333pt;}
.ya9{bottom:784.933333pt;}
.y6c{bottom:793.413333pt;}
.y35{bottom:796.133333pt;}
.y4e{bottom:804.133333pt;}
.y27{bottom:809.413333pt;}
.yc2{bottom:811.493333pt;}
.y1c{bottom:814.053333pt;}
.ya8{bottom:819.493333pt;}
.y6b{bottom:820.133333pt;}
.y34{bottom:822.693333pt;}
.y4d{bottom:830.693333pt;}
.y26{bottom:836.133333pt;}
.yc1{bottom:838.053333pt;}
.ya7{bottom:846.053333pt;}
.y6a{bottom:846.693333pt;}
.y1b{bottom:847.333333pt;}
.y33{bottom:849.413333pt;}
.y86{bottom:857.253333pt;}
.y4c{bottom:857.413333pt;}
.y25{bottom:862.693333pt;}
.yc0{bottom:864.613333pt;}
.ya6{bottom:872.613333pt;}
.y69{bottom:873.253333pt;}
.y1a{bottom:880.613333pt;}
.y32{bottom:883.973333pt;}
.y24{bottom:889.253333pt;}
.y85{bottom:891.813333pt;}
.ya5{bottom:899.333333pt;}
.y68{bottom:899.813333pt;}
.y31{bottom:910.533333pt;}
.y19{bottom:913.893333pt;}
.y23{bottom:915.813333pt;}
.y84{bottom:916.933333pt;}
.ybf{bottom:925.893333pt;}
.y67{bottom:926.533333pt;}
.y5{bottom:932.453333pt;}
.ya4{bottom:933.893333pt;}
.y22{bottom:942.533333pt;}
.y30{bottom:945.093333pt;}
.y18{bottom:947.173333pt;}
.y83{bottom:948.933333pt;}
.ybe{bottom:952.453333pt;}
.ya3{bottom:960.453333pt;}
.y4{bottom:967.173333pt;}
.y2f{bottom:970.213333pt;}
.y66{bottom:970.373333pt;}
.y21{bottom:977.093333pt;}
.ybd{bottom:979.013333pt;}
.y17{bottom:980.453333pt;}
.ya2{bottom:987.013333pt;}
.y20{bottom:1002.080000pt;}
.y2e{bottom:1002.240000pt;}
.y16{bottom:1013.760000pt;}
.y65{bottom:1014.240000pt;}
.y13{bottom:1051.360000pt;}
.y1{bottom:1060.960000pt;}
.h11{height:32.028750pt;}
.h5{height:44.484375pt;}
.h10{height:49.073750pt;}
.h2{height:49.229375pt;}
.hb{height:54.567500pt;}
.hd{height:54.598989pt;}
.hf{height:58.563750pt;}
.he{height:69.176250pt;}
.h4{height:69.395625pt;}
.ha{height:70.880000pt;}
.h6{height:78.080000pt;}
.hc{height:88.687500pt;}
.h9{height:88.968750pt;}
.h3{height:101.792000pt;}
.h8{height:157.863750pt;}
.h7{height:426.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:389.666641pt;}
.w3{width:746.533333pt;}
.w4{width:748.293333pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:23.680000pt;}
.x2{left:94.431988pt;}
.xf{left:98.431974pt;}
.x10{left:118.431988pt;}
.x1{left:141.626655pt;}
.x14{left:146.266655pt;}
.x7{left:176.186667pt;}
.x8{left:184.666667pt;}
.xb{left:262.786667pt;}
.xc{left:284.706667pt;}
.x13{left:333.666655pt;}
.xa{left:410.626667pt;}
.x9{left:421.026667pt;}
.x4{left:448.093333pt;}
.xe{left:449.373322pt;}
.x5{left:530.493333pt;}
.xd{left:548.893333pt;}
.x11{left:569.053310pt;}
.x12{left:573.693322pt;}
.x6{left:609.093333pt;}
}




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