
    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_6a4a1c2d706bd95017860a96.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_1f26963434c7604a5789a4cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_0ef6b822d122431cbbc78889.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_ab0dd8d99378a6368f4bfd18.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_88e1d3619b17b3fe59fa8abb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_a7b53cf5c0f61f0902480b96.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871094;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_73a21f5a97696a76d2f66475.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.662400px;}
.ls5{letter-spacing:-0.505440px;}
.lsa{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.264960px;}
.lsb{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.198720px;}
.ls8{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.066240px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.066240px;}
.ls7{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.084240px;}
.lsf{letter-spacing:0.132480px;}
.lsc{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.198720px;}
.ls16{letter-spacing:0.264960px;}
.ls12{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.331200px;}
.ls15{letter-spacing:0.504000px;}
.ls0{letter-spacing:5.760000px;}
.ls1{letter-spacing:54.864000px;}
.ls2{letter-spacing:849.029760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.122480px;}
.ws1{word-spacing:-18.532800px;}
.ws19{word-spacing:-18.144000px;}
.ws1e{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws1a{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.208000px;}
.ws28{word-spacing:-17.064000px;}
.ws2{word-spacing:-15.301440px;}
.ws29{word-spacing:-15.168960px;}
.ws8{word-spacing:-15.102720px;}
.ws27{word-spacing:-15.036480px;}
.ws26{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.771520px;}
.ws2b{word-spacing:-14.705280px;}
.ws2a{word-spacing:-14.307840px;}
.ws1f{word-spacing:-12.528000px;}
.ws20{word-spacing:-12.204000px;}
.ws22{word-spacing:-12.096000px;}
.ws21{word-spacing:-11.934000px;}
.ws14{word-spacing:-3.024000px;}
.ws13{word-spacing:-2.592000px;}
.ws17{word-spacing:-0.728640px;}
.ws24{word-spacing:-0.594000px;}
.ws1d{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.331200px;}
.ws1b{word-spacing:-0.324000px;}
.ws2c{word-spacing:-0.264960px;}
.wse{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.072000px;}
.ws9{word-spacing:0.000000px;}
.ws25{word-spacing:0.054000px;}
.ws23{word-spacing:0.108000px;}
.wsf{word-spacing:0.144000px;}
.ws1c{word-spacing:0.162000px;}
.ws18{word-spacing:0.198720px;}
.wsd{word-spacing:0.216000px;}
.wsc{word-spacing:0.288000px;}
.ws15{word-spacing:0.397440px;}
.wsa{word-spacing:0.720000px;}
.ws11{word-spacing:5.760000px;}
.ws12{word-spacing:6.048000px;}
.ws10{word-spacing:15.120000px;}
._1{margin-left:-2.119680px;}
._0{margin-left:-1.000224px;}
._2{width:1.039680px;}
._6{width:2.168640px;}
._5{width:5.816448px;}
._4{width:15.448320px;}
._3{width:62.784000px;}
.fc2{color:transparent;}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:5.580000px;}
.y22{bottom:5.940000px;}
.y4d{bottom:6.120000px;}
.y86{bottom:7.020000px;}
.y1d{bottom:7.200000px;}
.y74{bottom:16.380000px;}
.y1f{bottom:17.100000px;}
.y38{bottom:17.280000px;}
.y82{bottom:17.640000px;}
.y71{bottom:27.540000px;}
.y21{bottom:28.260000px;}
.y3a{bottom:28.440000px;}
.y73{bottom:38.700000px;}
.y5d{bottom:39.420000px;}
.y56{bottom:39.600000px;}
.y24{bottom:50.580000px;}
.y59{bottom:50.760000px;}
.y2{bottom:57.786480px;}
.y30{bottom:61.740000px;}
.y27{bottom:72.900000px;}
.y58{bottom:73.080000px;}
.y1{bottom:77.940000px;}
.y2c{bottom:84.060000px;}
.y26{bottom:95.220000px;}
.y2e{bottom:106.560000px;}
.y34{bottom:117.719850px;}
.y50{bottom:118.080000px;}
.yb2{bottom:119.327760px;}
.y8f{bottom:128.700000px;}
.y91{bottom:134.640000px;}
.y51{bottom:135.180000px;}
.y33{bottom:140.040000px;}
.yb1{bottom:152.994240px;}
.y90{bottom:156.960000px;}
.y32{bottom:162.360000px;}
.y4c{bottom:167.940000px;}
.y4e{bottom:174.060000px;}
.y4f{bottom:185.220000px;}
.yb0{bottom:186.826320px;}
.y8d{bottom:197.460000px;}
.y4a{bottom:217.980000px;}
.yaf{bottom:220.492800px;}
.y8e{bottom:225.720000px;}
.y4b{bottom:235.080000px;}
.yae{bottom:254.324880px;}
.y8b{bottom:266.220000px;}
.y48{bottom:267.840000px;}
.y49{bottom:284.940000px;}
.yad{bottom:287.991360px;}
.y8c{bottom:294.660000px;}
.y45{bottom:317.880000px;}
.yac{bottom:321.657840px;}
.y46{bottom:323.820000px;}
.y47{bottom:334.980000px;}
.y89{bottom:335.160000px;}
.yab{bottom:355.489920px;}
.y8a{bottom:363.420000px;}
.y43{bottom:367.740000px;}
.y44{bottom:384.840000px;}
.yaa{bottom:389.156400px;}
.y87{bottom:403.920000px;}
.y41{bottom:417.600000px;}
.y1a{bottom:420.141600px;}
.ya9{bottom:422.988480px;}
.y88{bottom:432.180000px;}
.y42{bottom:434.700000px;}
.y19{bottom:451.274400px;}
.ya8{bottom:456.654960px;}
.y3e{bottom:467.640000px;}
.y85{bottom:472.680000px;}
.y40{bottom:473.580000px;}
.y18{bottom:484.940880px;}
.ya7{bottom:490.321440px;}
.y3f{bottom:495.900000px;}
.y84{bottom:498.960000px;}
.y17{bottom:518.772960px;}
.y83{bottom:523.260000px;}
.ya6{bottom:524.153520px;}
.y3b{bottom:539.820000px;}
.y16{bottom:540.367200px;}
.y3d{bottom:545.760000px;}
.y81{bottom:547.380000px;}
.y3c{bottom:556.920000px;}
.ya5{bottom:557.820000px;}
.y15{bottom:562.143600px;}
.ya4{bottom:574.920000px;}
.y14{bottom:583.920000px;}
.y37{bottom:589.680000px;}
.ya2{bottom:599.040000px;}
.y80{bottom:602.100000px;}
.y39{bottom:606.960000px;}
.ya3{bottom:616.140000px;}
.y6a{bottom:620.820000px;}
.y13{bottom:624.960000px;}
.y7f{bottom:633.233520px;}
.y36{bottom:639.720000px;}
.y69{bottom:642.960000px;}
.ya0{bottom:645.480000px;}
.ya1{bottom:662.580000px;}
.y68{bottom:664.200000px;}
.y7e{bottom:666.900000px;}
.y2b{bottom:667.260000px;}
.y12{bottom:668.340000px;}
.y35{bottom:673.200000px;}
.y7c{bottom:689.220000px;}
.y67{bottom:691.740000px;}
.y9e{bottom:691.920000px;}
.y7d{bottom:706.500000px;}
.y9f{bottom:709.020000px;}
.y11{bottom:709.380000px;}
.y66{bottom:719.280000px;}
.y31{bottom:729.000000px;}
.y10{bottom:730.080000px;}
.y9c{bottom:738.360000px;}
.y7a{bottom:741.600000px;}
.y63{bottom:747.000000px;}
.y2d{bottom:751.320000px;}
.y65{bottom:752.940000px;}
.y7b{bottom:758.700000px;}
.y9d{bottom:766.620000px;}
.yf{bottom:771.840000px;}
.y2f{bottom:773.820000px;}
.y64{bottom:775.260000px;}
.y78{bottom:793.980000px;}
.y9a{bottom:807.300000px;}
.ye{bottom:814.680000px;}
.y61{bottom:819.180000px;}
.y79{bottom:822.240000px;}
.ybd{bottom:822.965040px;}
.yd{bottom:835.380000px;}
.y9b{bottom:835.560000px;}
.y62{bottom:836.280000px;}
.y29{bottom:851.220000px;}
.ybc{bottom:856.631520px;}
.y2a{bottom:868.320000px;}
.y76{bottom:868.680000px;}
.y5f{bottom:869.220000px;}
.y98{bottom:876.060000px;}
.yc{bottom:877.140000px;}
.y60{bottom:886.320000px;}
.ybb{bottom:890.463600px;}
.y77{bottom:896.940000px;}
.yb{bottom:897.660000px;}
.y28{bottom:901.080000px;}
.y99{bottom:904.320000px;}
.yba{bottom:912.240000px;}
.ya{bottom:918.540000px;}
.y5c{bottom:919.080000px;}
.y23{bottom:928.800000px;}
.y9{bottom:939.240000px;}
.y70{bottom:943.200000px;}
.y97{bottom:944.820000px;}
.yb9{bottom:945.720000px;}
.y5e{bottom:958.500000px;}
.y75{bottom:959.580000px;}
.y96{bottom:968.940000px;}
.y72{bottom:970.740000px;}
.y25{bottom:979.380000px;}
.y8{bottom:981.180000px;}
.yb8{bottom:981.541440px;}
.y95{bottom:993.060000px;}
.y7{bottom:1010.880000px;}
.y55{bottom:1013.580000px;}
.yb7{bottom:1015.207920px;}
.y6e{bottom:1016.100000px;}
.y94{bottom:1017.180000px;}
.y5b{bottom:1019.700000px;}
.y6{bottom:1031.580000px;}
.y6f{bottom:1033.380000px;}
.y1e{bottom:1045.620000px;}
.yb6{bottom:1049.040000px;}
.y57{bottom:1053.180000px;}
.y20{bottom:1062.720000px;}
.y5a{bottom:1064.340000px;}
.y5{bottom:1065.967920px;}
.y6d{bottom:1068.480000px;}
.yb5{bottom:1082.520000px;}
.y92{bottom:1086.120000px;}
.y1c{bottom:1095.660000px;}
.y6b{bottom:1098.720000px;}
.y4{bottom:1099.800000px;}
.yb4{bottom:1104.840000px;}
.y52{bottom:1108.260000px;}
.y53{bottom:1114.200000px;}
.y93{bottom:1114.380000px;}
.y54{bottom:1125.360000px;}
.y3{bottom:1134.900000px;}
.yb3{bottom:1139.402880px;}
.y1b{bottom:1142.100000px;}
.ha{height:22.320000px;}
.h17{height:22.321500px;}
.h12{height:22.498500px;}
.h11{height:22.500000px;}
.h15{height:24.481500px;}
.h7{height:25.740000px;}
.h14{height:34.200000px;}
.h6{height:37.415039px;}
.hd{height:44.638500px;}
.h8{height:44.640000px;}
.hc{height:44.820000px;}
.h2{height:45.895781px;}
.h4{height:48.095156px;}
.h5{height:50.027344px;}
.h3{height:61.164492px;}
.h13{height:65.340000px;}
.he{height:66.960000px;}
.h16{height:67.140000px;}
.h18{height:67.141500px;}
.h10{height:89.280000px;}
.hf{height:89.460000px;}
.h9{height:111.600000px;}
.hb{height:178.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:58.140000px;}
.w3{width:169.020000px;}
.w5{width:187.560000px;}
.w7{width:236.520000px;}
.w6{width:251.998500px;}
.w4{width:261.718500px;}
.w2{width:287.098500px;}
.w9{width:469.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:107.996400px;}
.x6{left:109.440000px;}
.x3{left:135.000000px;}
.x17{left:136.440000px;}
.x4{left:162.000000px;}
.x2a{left:167.400000px;}
.x2c{left:175.500000px;}
.x28{left:183.420000px;}
.x22{left:192.420000px;}
.x36{left:197.460000px;}
.x34{left:199.440000px;}
.x32{left:203.400000px;}
.xd{left:219.420000px;}
.x3b{left:228.420000px;}
.x3a{left:230.400000px;}
.x14{left:233.460000px;}
.x9{left:238.500000px;}
.x12{left:240.300000px;}
.x20{left:241.380000px;}
.x2b{left:249.480000px;}
.x5{left:258.300000px;}
.x38{left:262.440000px;}
.x2f{left:266.400000px;}
.x1d{left:277.380000px;}
.x30{left:279.900000px;}
.x10{left:282.420000px;}
.x26{left:285.480000px;}
.x16{left:294.480000px;}
.x24{left:298.440000px;}
.xb{left:305.460000px;}
.xc{left:317.340000px;}
.x33{left:330.840000px;}
.x31{left:339.480000px;}
.x27{left:344.520000px;}
.x21{left:354.420000px;}
.x2e{left:356.400000px;}
.x2d{left:365.400000px;}
.x7{left:397.980000px;}
.xe{left:403.920000px;}
.xa{left:435.060000px;}
.x1{left:442.260000px;}
.x11{left:448.920000px;}
.x39{left:469.260000px;}
.x25{left:551.880000px;}
.x35{left:565.020000px;}
.x8{left:568.440000px;}
.x15{left:598.500000px;}
.x1e{left:621.000000px;}
.xf{left:628.020000px;}
.x1f{left:630.720000px;}
.x1a{left:655.380000px;}
.x29{left:699.840000px;}
.x37{left:730.800000px;}
.x1c{left:740.880000px;}
.x18{left:746.460000px;}
.x13{left:767.340000px;}
.x19{left:785.340000px;}
.x23{left:808.380000px;}
.x1b{left:814.320000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.588800pt;}
.ls5{letter-spacing:-0.449280pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.235520pt;}
.lsb{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.176640pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.058880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.058880pt;}
.ls7{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.074880pt;}
.lsf{letter-spacing:0.117760pt;}
.lsc{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.176640pt;}
.ls16{letter-spacing:0.235520pt;}
.ls12{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.294400pt;}
.ls15{letter-spacing:0.448000pt;}
.ls0{letter-spacing:5.120000pt;}
.ls1{letter-spacing:48.768000pt;}
.ls2{letter-spacing:754.693120pt;}
.ws0{word-spacing:-16.997760pt;}
.ws1{word-spacing:-16.473600pt;}
.ws19{word-spacing:-16.128000pt;}
.ws1e{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws1a{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.296000pt;}
.ws28{word-spacing:-15.168000pt;}
.ws2{word-spacing:-13.601280pt;}
.ws29{word-spacing:-13.483520pt;}
.ws8{word-spacing:-13.424640pt;}
.ws27{word-spacing:-13.365760pt;}
.ws26{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.130240pt;}
.ws2b{word-spacing:-13.071360pt;}
.ws2a{word-spacing:-12.718080pt;}
.ws1f{word-spacing:-11.136000pt;}
.ws20{word-spacing:-10.848000pt;}
.ws22{word-spacing:-10.752000pt;}
.ws21{word-spacing:-10.608000pt;}
.ws14{word-spacing:-2.688000pt;}
.ws13{word-spacing:-2.304000pt;}
.ws17{word-spacing:-0.647680pt;}
.ws24{word-spacing:-0.528000pt;}
.ws1d{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.294400pt;}
.ws1b{word-spacing:-0.288000pt;}
.ws2c{word-spacing:-0.235520pt;}
.wse{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.064000pt;}
.ws9{word-spacing:0.000000pt;}
.ws25{word-spacing:0.048000pt;}
.ws23{word-spacing:0.096000pt;}
.wsf{word-spacing:0.128000pt;}
.ws1c{word-spacing:0.144000pt;}
.ws18{word-spacing:0.176640pt;}
.wsd{word-spacing:0.192000pt;}
.wsc{word-spacing:0.256000pt;}
.ws15{word-spacing:0.353280pt;}
.wsa{word-spacing:0.640000pt;}
.ws11{word-spacing:5.120000pt;}
.ws12{word-spacing:5.376000pt;}
.ws10{word-spacing:13.440000pt;}
._1{margin-left:-1.884160pt;}
._0{margin-left:-0.889088pt;}
._2{width:0.924160pt;}
._6{width:1.927680pt;}
._5{width:5.170176pt;}
._4{width:13.731840pt;}
._3{width:55.808000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:4.960000pt;}
.y22{bottom:5.280000pt;}
.y4d{bottom:5.440000pt;}
.y86{bottom:6.240000pt;}
.y1d{bottom:6.400000pt;}
.y74{bottom:14.560000pt;}
.y1f{bottom:15.200000pt;}
.y38{bottom:15.360000pt;}
.y82{bottom:15.680000pt;}
.y71{bottom:24.480000pt;}
.y21{bottom:25.120000pt;}
.y3a{bottom:25.280000pt;}
.y73{bottom:34.400000pt;}
.y5d{bottom:35.040000pt;}
.y56{bottom:35.200000pt;}
.y24{bottom:44.960000pt;}
.y59{bottom:45.120000pt;}
.y2{bottom:51.365760pt;}
.y30{bottom:54.880000pt;}
.y27{bottom:64.800000pt;}
.y58{bottom:64.960000pt;}
.y1{bottom:69.280000pt;}
.y2c{bottom:74.720000pt;}
.y26{bottom:84.640000pt;}
.y2e{bottom:94.720000pt;}
.y34{bottom:104.639867pt;}
.y50{bottom:104.960000pt;}
.yb2{bottom:106.069120pt;}
.y8f{bottom:114.400000pt;}
.y91{bottom:119.680000pt;}
.y51{bottom:120.160000pt;}
.y33{bottom:124.480000pt;}
.yb1{bottom:135.994880pt;}
.y90{bottom:139.520000pt;}
.y32{bottom:144.320000pt;}
.y4c{bottom:149.280000pt;}
.y4e{bottom:154.720000pt;}
.y4f{bottom:164.640000pt;}
.yb0{bottom:166.067840pt;}
.y8d{bottom:175.520000pt;}
.y4a{bottom:193.760000pt;}
.yaf{bottom:195.993600pt;}
.y8e{bottom:200.640000pt;}
.y4b{bottom:208.960000pt;}
.yae{bottom:226.066560pt;}
.y8b{bottom:236.640000pt;}
.y48{bottom:238.080000pt;}
.y49{bottom:253.280000pt;}
.yad{bottom:255.992320pt;}
.y8c{bottom:261.920000pt;}
.y45{bottom:282.560000pt;}
.yac{bottom:285.918080pt;}
.y46{bottom:287.840000pt;}
.y47{bottom:297.760000pt;}
.y89{bottom:297.920000pt;}
.yab{bottom:315.991040pt;}
.y8a{bottom:323.040000pt;}
.y43{bottom:326.880000pt;}
.y44{bottom:342.080000pt;}
.yaa{bottom:345.916800pt;}
.y87{bottom:359.040000pt;}
.y41{bottom:371.200000pt;}
.y1a{bottom:373.459200pt;}
.ya9{bottom:375.989760pt;}
.y88{bottom:384.160000pt;}
.y42{bottom:386.400000pt;}
.y19{bottom:401.132800pt;}
.ya8{bottom:405.915520pt;}
.y3e{bottom:415.680000pt;}
.y85{bottom:420.160000pt;}
.y40{bottom:420.960000pt;}
.y18{bottom:431.058560pt;}
.ya7{bottom:435.841280pt;}
.y3f{bottom:440.800000pt;}
.y84{bottom:443.520000pt;}
.y17{bottom:461.131520pt;}
.y83{bottom:465.120000pt;}
.ya6{bottom:465.914240pt;}
.y3b{bottom:479.840000pt;}
.y16{bottom:480.326400pt;}
.y3d{bottom:485.120000pt;}
.y81{bottom:486.560000pt;}
.y3c{bottom:495.040000pt;}
.ya5{bottom:495.840000pt;}
.y15{bottom:499.683200pt;}
.ya4{bottom:511.040000pt;}
.y14{bottom:519.040000pt;}
.y37{bottom:524.160000pt;}
.ya2{bottom:532.480000pt;}
.y80{bottom:535.200000pt;}
.y39{bottom:539.520000pt;}
.ya3{bottom:547.680000pt;}
.y6a{bottom:551.840000pt;}
.y13{bottom:555.520000pt;}
.y7f{bottom:562.874240pt;}
.y36{bottom:568.640000pt;}
.y69{bottom:571.520000pt;}
.ya0{bottom:573.760000pt;}
.ya1{bottom:588.960000pt;}
.y68{bottom:590.400000pt;}
.y7e{bottom:592.800000pt;}
.y2b{bottom:593.120000pt;}
.y12{bottom:594.080000pt;}
.y35{bottom:598.400000pt;}
.y7c{bottom:612.640000pt;}
.y67{bottom:614.880000pt;}
.y9e{bottom:615.040000pt;}
.y7d{bottom:628.000000pt;}
.y9f{bottom:630.240000pt;}
.y11{bottom:630.560000pt;}
.y66{bottom:639.360000pt;}
.y31{bottom:648.000000pt;}
.y10{bottom:648.960000pt;}
.y9c{bottom:656.320000pt;}
.y7a{bottom:659.200000pt;}
.y63{bottom:664.000000pt;}
.y2d{bottom:667.840000pt;}
.y65{bottom:669.280000pt;}
.y7b{bottom:674.400000pt;}
.y9d{bottom:681.440000pt;}
.yf{bottom:686.080000pt;}
.y2f{bottom:687.840000pt;}
.y64{bottom:689.120000pt;}
.y78{bottom:705.760000pt;}
.y9a{bottom:717.600000pt;}
.ye{bottom:724.160000pt;}
.y61{bottom:728.160000pt;}
.y79{bottom:730.880000pt;}
.ybd{bottom:731.524480pt;}
.yd{bottom:742.560000pt;}
.y9b{bottom:742.720000pt;}
.y62{bottom:743.360000pt;}
.y29{bottom:756.640000pt;}
.ybc{bottom:761.450240pt;}
.y2a{bottom:771.840000pt;}
.y76{bottom:772.160000pt;}
.y5f{bottom:772.640000pt;}
.y98{bottom:778.720000pt;}
.yc{bottom:779.680000pt;}
.y60{bottom:787.840000pt;}
.ybb{bottom:791.523200pt;}
.y77{bottom:797.280000pt;}
.yb{bottom:797.920000pt;}
.y28{bottom:800.960000pt;}
.y99{bottom:803.840000pt;}
.yba{bottom:810.880000pt;}
.ya{bottom:816.480000pt;}
.y5c{bottom:816.960000pt;}
.y23{bottom:825.600000pt;}
.y9{bottom:834.880000pt;}
.y70{bottom:838.400000pt;}
.y97{bottom:839.840000pt;}
.yb9{bottom:840.640000pt;}
.y5e{bottom:852.000000pt;}
.y75{bottom:852.960000pt;}
.y96{bottom:861.280000pt;}
.y72{bottom:862.880000pt;}
.y25{bottom:870.560000pt;}
.y8{bottom:872.160000pt;}
.yb8{bottom:872.481280pt;}
.y95{bottom:882.720000pt;}
.y7{bottom:898.560000pt;}
.y55{bottom:900.960000pt;}
.yb7{bottom:902.407040pt;}
.y6e{bottom:903.200000pt;}
.y94{bottom:904.160000pt;}
.y5b{bottom:906.400000pt;}
.y6{bottom:916.960000pt;}
.y6f{bottom:918.560000pt;}
.y1e{bottom:929.440000pt;}
.yb6{bottom:932.480000pt;}
.y57{bottom:936.160000pt;}
.y20{bottom:944.640000pt;}
.y5a{bottom:946.080000pt;}
.y5{bottom:947.527040pt;}
.y6d{bottom:949.760000pt;}
.yb5{bottom:962.240000pt;}
.y92{bottom:965.440000pt;}
.y1c{bottom:973.920000pt;}
.y6b{bottom:976.640000pt;}
.y4{bottom:977.600000pt;}
.yb4{bottom:982.080000pt;}
.y52{bottom:985.120000pt;}
.y53{bottom:990.400000pt;}
.y93{bottom:990.560000pt;}
.y54{bottom:1000.320000pt;}
.y3{bottom:1008.800000pt;}
.yb3{bottom:1012.802560pt;}
.y1b{bottom:1015.200000pt;}
.ha{height:19.840000pt;}
.h17{height:19.841333pt;}
.h12{height:19.998667pt;}
.h11{height:20.000000pt;}
.h15{height:21.761333pt;}
.h7{height:22.880000pt;}
.h14{height:30.400000pt;}
.h6{height:33.257812pt;}
.hd{height:39.678667pt;}
.h8{height:39.680000pt;}
.hc{height:39.840000pt;}
.h2{height:40.796250pt;}
.h4{height:42.751250pt;}
.h5{height:44.468750pt;}
.h3{height:54.368437pt;}
.h13{height:58.080000pt;}
.he{height:59.520000pt;}
.h16{height:59.680000pt;}
.h18{height:59.681333pt;}
.h10{height:79.360000pt;}
.hf{height:79.520000pt;}
.h9{height:99.200000pt;}
.hb{height:158.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:51.680000pt;}
.w3{width:150.240000pt;}
.w5{width:166.720000pt;}
.w7{width:210.240000pt;}
.w6{width:223.998667pt;}
.w4{width:232.638667pt;}
.w2{width:255.198667pt;}
.w9{width:417.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:95.996800pt;}
.x6{left:97.280000pt;}
.x3{left:120.000000pt;}
.x17{left:121.280000pt;}
.x4{left:144.000000pt;}
.x2a{left:148.800000pt;}
.x2c{left:156.000000pt;}
.x28{left:163.040000pt;}
.x22{left:171.040000pt;}
.x36{left:175.520000pt;}
.x34{left:177.280000pt;}
.x32{left:180.800000pt;}
.xd{left:195.040000pt;}
.x3b{left:203.040000pt;}
.x3a{left:204.800000pt;}
.x14{left:207.520000pt;}
.x9{left:212.000000pt;}
.x12{left:213.600000pt;}
.x20{left:214.560000pt;}
.x2b{left:221.760000pt;}
.x5{left:229.600000pt;}
.x38{left:233.280000pt;}
.x2f{left:236.800000pt;}
.x1d{left:246.560000pt;}
.x30{left:248.800000pt;}
.x10{left:251.040000pt;}
.x26{left:253.760000pt;}
.x16{left:261.760000pt;}
.x24{left:265.280000pt;}
.xb{left:271.520000pt;}
.xc{left:282.080000pt;}
.x33{left:294.080000pt;}
.x31{left:301.760000pt;}
.x27{left:306.240000pt;}
.x21{left:315.040000pt;}
.x2e{left:316.800000pt;}
.x2d{left:324.800000pt;}
.x7{left:353.760000pt;}
.xe{left:359.040000pt;}
.xa{left:386.720000pt;}
.x1{left:393.120000pt;}
.x11{left:399.040000pt;}
.x39{left:417.120000pt;}
.x25{left:490.560000pt;}
.x35{left:502.240000pt;}
.x8{left:505.280000pt;}
.x15{left:532.000000pt;}
.x1e{left:552.000000pt;}
.xf{left:558.240000pt;}
.x1f{left:560.640000pt;}
.x1a{left:582.560000pt;}
.x29{left:622.080000pt;}
.x37{left:649.600000pt;}
.x1c{left:658.560000pt;}
.x18{left:663.520000pt;}
.x13{left:682.080000pt;}
.x19{left:698.080000pt;}
.x23{left:718.560000pt;}
.x1b{left:723.840000pt;}
}




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