
    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_127908fb298bc0fbafbf20b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_341e1c52d005dbac39f9f9bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_6666355b300acc2acf85b1ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_bb546d0bd3e2380b3303f3f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dd45399e91ce30be1bd83186.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_371806be9ad4578494ca3a35.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.776855;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;}
.lsd{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.864000px;}
.lsa{letter-spacing:3.600000px;}
.ls7{letter-spacing:5.040000px;}
.lsf{letter-spacing:5.760000px;}
.ls5{letter-spacing:6.480000px;}
.lsb{letter-spacing:7.524000px;}
.lsc{letter-spacing:17.280000px;}
.ls4{letter-spacing:64.397280px;}
.ls3{letter-spacing:194.376000px;}
.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;}
}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.864000px;}
.ws7{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.568000px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-4.608000px;}
._8{margin-left:-2.808000px;}
._0{margin-left:-1.589760px;}
._2{width:1.092000px;}
._e{width:2.520000px;}
._9{width:3.617760px;}
._b{width:4.757760px;}
._a{width:6.192000px;}
._6{width:7.272000px;}
._7{width:9.096000px;}
._d{width:10.163520px;}
._c{width:11.448000px;}
._14{width:13.128960px;}
._10{width:14.832000px;}
._f{width:15.840000px;}
._1e{width:16.968000px;}
._17{width:19.152000px;}
._1c{width:20.237760px;}
._16{width:21.312000px;}
._19{width:24.264000px;}
._13{width:25.560000px;}
._11{width:26.712000px;}
._12{width:28.512000px;}
._1f{width:29.766720px;}
._18{width:30.881760px;}
._22{width:32.340480px;}
._1a{width:34.848000px;}
._1b{width:36.036000px;}
._1d{width:39.360000px;}
._24{width:64.296000px;}
._21{width:87.408000px;}
._20{width:102.180000px;}
._3{width:112.709520px;}
._1{width:113.820240px;}
._5{width:119.524560px;}
._4{width:120.830880px;}
._23{width:159.048000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:11.880000px;}
.ybf{bottom:24.840000px;}
.yc0{bottom:37.620000px;}
.y5{bottom:92.556000px;}
.y4{bottom:128.196000px;}
.y3{bottom:162.750000px;}
.y2{bottom:198.390000px;}
.y64{bottom:225.030000px;}
.y2c{bottom:228.450000px;}
.y74{bottom:232.950000px;}
.ydb{bottom:235.830000px;}
.yc3{bottom:239.070000px;}
.y8a{bottom:246.090000px;}
.y98{bottom:247.350000px;}
.y48{bottom:247.890000px;}
.y2b{bottom:249.150000px;}
.y63{bottom:256.170000px;}
.yc2{bottom:266.430000px;}
.y2a{bottom:269.850000px;}
.yab{bottom:270.210000px;}
.yda{bottom:272.910000px;}
.y89{bottom:277.050000px;}
.y47{bottom:279.030000px;}
.y97{bottom:284.430000px;}
.y62{bottom:287.130000px;}
.y29{bottom:290.550000px;}
.ybe{bottom:293.790000px;}
.y73{bottom:300.990000px;}
.yaa{bottom:301.170000px;}
.y88{bottom:308.190000px;}
.y46{bottom:309.990000px;}
.y28{bottom:311.250000px;}
.yb5{bottom:317.550000px;}
.y61{bottom:318.270000px;}
.y96{bottom:321.510000px;}
.y27{bottom:331.950000px;}
.ya9{bottom:332.310000px;}
.y87{bottom:339.195000px;}
.y45{bottom:341.175000px;}
.yd9{bottom:346.935000px;}
.yb4{bottom:348.555000px;}
.ybd{bottom:351.075000px;}
.y26{bottom:352.695000px;}
.y60{bottom:355.395000px;}
.y95{bottom:358.455000px;}
.y72{bottom:363.135000px;}
.ya8{bottom:363.315000px;}
.y44{bottom:372.135000px;}
.y25{bottom:373.395000px;}
.y86{bottom:376.275000px;}
.yb3{bottom:379.695000px;}
.yd8{bottom:384.015000px;}
.y5f{bottom:386.355000px;}
.ybc{bottom:388.155000px;}
.y24{bottom:394.095000px;}
.ya7{bottom:394.455000px;}
.y94{bottom:395.535000px;}
.y85{bottom:407.415000px;}
.y43{bottom:409.215000px;}
.yb2{bottom:410.655000px;}
.y23{bottom:414.795000px;}
.yd7{bottom:415.155000px;}
.y5e{bottom:417.495000px;}
.ybb{bottom:419.115000px;}
.y71{bottom:425.235000px;}
.ya6{bottom:425.415000px;}
.y93{bottom:432.615000px;}
.y22{bottom:435.495000px;}
.y84{bottom:438.375000px;}
.y42{bottom:440.355000px;}
.yb1{bottom:441.795000px;}
.yd6{bottom:446.115000px;}
.y5d{bottom:448.455000px;}
.yba{bottom:450.075000px;}
.y21{bottom:456.195000px;}
.ya5{bottom:456.555000px;}
.y83{bottom:469.515000px;}
.y92{bottom:469.695000px;}
.y41{bottom:471.315000px;}
.yb0{bottom:474.915000px;}
.y20{bottom:476.895000px;}
.yd5{bottom:477.255000px;}
.y5c{bottom:479.595000px;}
.yb9{bottom:481.215000px;}
.y70{bottom:487.335000px;}
.ya4{bottom:493.455000px;}
.y82{bottom:500.475000px;}
.y91{bottom:500.655000px;}
.y40{bottom:502.455000px;}
.y1f{bottom:507.855000px;}
.yd4{bottom:508.215000px;}
.y5b{bottom:510.555000px;}
.yb8{bottom:512.175000px;}
.y6f{bottom:518.295000px;}
.ya3{bottom:524.595000px;}
.y1e{bottom:528.555000px;}
.y81{bottom:531.615000px;}
.y90{bottom:531.795000px;}
.y3f{bottom:533.415000px;}
.yd3{bottom:539.355000px;}
.y5a{bottom:541.695000px;}
.yb7{bottom:545.475000px;}
.y1d{bottom:549.255000px;}
.y6e{bottom:549.435000px;}
.ya2{bottom:561.675000px;}
.y8f{bottom:562.755000px;}
.y3e{bottom:564.555000px;}
.y80{bottom:568.515000px;}
.y1c{bottom:569.955000px;}
.yd2{bottom:570.315000px;}
.y59{bottom:572.655000px;}
.y69{bottom:578.595000px;}
.y6d{bottom:580.395000px;}
.y1b{bottom:590.655000px;}
.ya1{bottom:592.635000px;}
.y8e{bottom:593.895000px;}
.y3d{bottom:595.515000px;}
.y7f{bottom:599.655000px;}
.yd1{bottom:601.455000px;}
.y58{bottom:609.765000px;}
.y1a{bottom:611.385000px;}
.y6c{bottom:615.165000px;}
.ya0{bottom:623.805000px;}
.y8d{bottom:624.885000px;}
.y3c{bottom:626.685000px;}
.y7e{bottom:630.645000px;}
.y19{bottom:632.085000px;}
.yd0{bottom:632.445000px;}
.y57{bottom:640.725000px;}
.y18{bottom:652.785000px;}
.yf0{bottom:652.965000px;}
.y9f{bottom:654.765000px;}
.y8c{bottom:656.205000px;}
.y3b{bottom:657.645000px;}
.ycf{bottom:663.585000px;}
.y7d{bottom:667.725000px;}
.y56{bottom:671.865000px;}
.y17{bottom:673.485000px;}
.yef{bottom:673.665000px;}
.y9e{bottom:685.905000px;}
.y16{bottom:694.185000px;}
.yee{bottom:694.365000px;}
.yce{bottom:694.545000px;}
.y3a{bottom:694.725000px;}
.y7c{bottom:698.865000px;}
.y55{bottom:702.825000px;}
.yaf{bottom:707.685000px;}
.y15{bottom:714.885000px;}
.y9d{bottom:716.865000px;}
.yed{bottom:721.185000px;}
.y39{bottom:725.685000px;}
.y7b{bottom:729.825000px;}
.y54{bottom:733.965000px;}
.y14{bottom:735.585000px;}
.yec{bottom:741.885000px;}
.yae{bottom:744.765000px;}
.y9c{bottom:748.005000px;}
.y13{bottom:756.285000px;}
.y38{bottom:756.825000px;}
.y7a{bottom:760.965000px;}
.yeb{bottom:762.405000px;}
.y53{bottom:764.925000px;}
.y6b{bottom:775.905000px;}
.y9b{bottom:778.965000px;}
.y12{bottom:787.245000px;}
.y37{bottom:787.785000px;}
.yea{bottom:789.225000px;}
.y79{bottom:791.925000px;}
.y52{bottom:796.065000px;}
.y68{bottom:802.005000px;}
.ycd{bottom:807.945000px;}
.ye9{bottom:809.925000px;}
.y9a{bottom:810.105000px;}
.y6a{bottom:812.805000px;}
.yad{bottom:814.965000px;}
.y11{bottom:818.385000px;}
.y36{bottom:818.925000px;}
.y78{bottom:823.065000px;}
.y51{bottom:827.025000px;}
.y67{bottom:833.145000px;}
.ye8{bottom:836.565000px;}
.ycc{bottom:838.905000px;}
.y99{bottom:843.045000px;}
.y10{bottom:849.345000px;}
.y35{bottom:849.885000px;}
.y77{bottom:854.025000px;}
.ye7{bottom:857.265000px;}
.yac{bottom:858.165000px;}
.yb6{bottom:860.865000px;}
.y50{bottom:864.105000px;}
.yf{bottom:870.045000px;}
.ye6{bottom:878.010000px;}
.y34{bottom:881.070000px;}
.y76{bottom:885.210000px;}
.y8b{bottom:889.170000px;}
.y4f{bottom:895.290000px;}
.ycb{bottom:901.050000px;}
.ye{bottom:901.230000px;}
.ye5{bottom:904.650000px;}
.y33{bottom:912.030000px;}
.y75{bottom:918.150000px;}
.ye4{bottom:925.350000px;}
.y4e{bottom:926.250000px;}
.yca{bottom:932.010000px;}
.yd{bottom:932.190000px;}
.y32{bottom:943.170000px;}
.ye3{bottom:946.050000px;}
.yc{bottom:952.890000px;}
.y4d{bottom:957.210000px;}
.yc9{bottom:963.150000px;}
.ye2{bottom:972.870000px;}
.y31{bottom:974.130000px;}
.yb{bottom:975.030000px;}
.y4c{bottom:988.350000px;}
.ye1{bottom:993.570000px;}
.yc8{bottom:994.110000px;}
.ya{bottom:1002.570000px;}
.y30{bottom:1005.270000px;}
.ye0{bottom:1014.270000px;}
.y4b{bottom:1019.310000px;}
.yc7{bottom:1025.250000px;}
.y66{bottom:1025.430000px;}
.y9{bottom:1030.110000px;}
.ydf{bottom:1034.970000px;}
.y2f{bottom:1036.230000px;}
.y4a{bottom:1050.450000px;}
.yde{bottom:1055.670000px;}
.y65{bottom:1056.390000px;}
.y8{bottom:1057.830000px;}
.yc6{bottom:1062.330000px;}
.y2e{bottom:1075.470000px;}
.ydd{bottom:1076.370000px;}
.yc5{bottom:1080.510000px;}
.y7{bottom:1085.370000px;}
.y49{bottom:1087.530000px;}
.yc4{bottom:1107.870000px;}
.y6{bottom:1112.910000px;}
.ydc{bottom:1115.610000px;}
.y2d{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.hb{height:25.920000px;}
.h9{height:51.696000px;}
.ha{height:53.077852px;}
.hc{height:53.573906px;}
.h7{height:54.878906px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:72.988945px;}
.h8{height:74.820586px;}
.h5{height:85.052461px;}
.h4{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:111.096000px;}
.w4{width:127.260000px;}
.w6{width:140.616000px;}
.w5{width:151.410000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.920000px;}
.x17{left:11.520000px;}
.x21{left:18.180000px;}
.x1d{left:32.940000px;}
.x1f{left:38.700000px;}
.x1e{left:42.480000px;}
.x22{left:44.460000px;}
.x20{left:51.150000px;}
.x1b{left:60.330000px;}
.x2{left:127.655987px;}
.x5{left:135.935987px;}
.x11{left:141.875987px;}
.x14{left:160.049987px;}
.x4{left:170.129987px;}
.x6{left:185.249987px;}
.x16{left:200.370000px;}
.x15{left:227.009987px;}
.x7{left:237.809987px;}
.x18{left:312.915000px;}
.xc{left:315.974987px;}
.x10{left:343.874987px;}
.xa{left:358.994987px;}
.xe{left:361.694987px;}
.x8{left:362.954987px;}
.x12{left:411.014987px;}
.x1a{left:441.615000px;}
.x1{left:489.164987px;}
.x1c{left:594.645000px;}
.xf{left:600.944987px;}
.xd{left:607.784987px;}
.xb{left:617.324987px;}
.x13{left:776.129987px;}
.x3{left:808.169987px;}
.x9{left:816.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.768000pt;}
.lsa{letter-spacing:3.200000pt;}
.ls7{letter-spacing:4.480000pt;}
.lsf{letter-spacing:5.120000pt;}
.ls5{letter-spacing:5.760000pt;}
.lsb{letter-spacing:6.688000pt;}
.lsc{letter-spacing:15.360000pt;}
.ls4{letter-spacing:57.242027pt;}
.ls3{letter-spacing:172.778667pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.768000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.616000pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-4.096000pt;}
._8{margin-left:-2.496000pt;}
._0{margin-left:-1.413120pt;}
._2{width:0.970667pt;}
._e{width:2.240000pt;}
._9{width:3.215787pt;}
._b{width:4.229120pt;}
._a{width:5.504000pt;}
._6{width:6.464000pt;}
._7{width:8.085333pt;}
._d{width:9.034240pt;}
._c{width:10.176000pt;}
._14{width:11.670187pt;}
._10{width:13.184000pt;}
._f{width:14.080000pt;}
._1e{width:15.082667pt;}
._17{width:17.024000pt;}
._1c{width:17.989120pt;}
._16{width:18.944000pt;}
._19{width:21.568000pt;}
._13{width:22.720000pt;}
._11{width:23.744000pt;}
._12{width:25.344000pt;}
._1f{width:26.459307pt;}
._18{width:27.450453pt;}
._22{width:28.747093pt;}
._1a{width:30.976000pt;}
._1b{width:32.032000pt;}
._1d{width:34.986667pt;}
._24{width:57.152000pt;}
._21{width:77.696000pt;}
._20{width:90.826667pt;}
._3{width:100.186240pt;}
._1{width:101.173547pt;}
._5{width:106.244053pt;}
._4{width:107.405227pt;}
._23{width:141.376000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:10.560000pt;}
.ybf{bottom:22.080000pt;}
.yc0{bottom:33.440000pt;}
.y5{bottom:82.272000pt;}
.y4{bottom:113.952000pt;}
.y3{bottom:144.666667pt;}
.y2{bottom:176.346667pt;}
.y64{bottom:200.026667pt;}
.y2c{bottom:203.066667pt;}
.y74{bottom:207.066667pt;}
.ydb{bottom:209.626667pt;}
.yc3{bottom:212.506667pt;}
.y8a{bottom:218.746667pt;}
.y98{bottom:219.866667pt;}
.y48{bottom:220.346667pt;}
.y2b{bottom:221.466667pt;}
.y63{bottom:227.706667pt;}
.yc2{bottom:236.826667pt;}
.y2a{bottom:239.866667pt;}
.yab{bottom:240.186667pt;}
.yda{bottom:242.586667pt;}
.y89{bottom:246.266667pt;}
.y47{bottom:248.026667pt;}
.y97{bottom:252.826667pt;}
.y62{bottom:255.226667pt;}
.y29{bottom:258.266667pt;}
.ybe{bottom:261.146667pt;}
.y73{bottom:267.546667pt;}
.yaa{bottom:267.706667pt;}
.y88{bottom:273.946667pt;}
.y46{bottom:275.546667pt;}
.y28{bottom:276.666667pt;}
.yb5{bottom:282.266667pt;}
.y61{bottom:282.906667pt;}
.y96{bottom:285.786667pt;}
.y27{bottom:295.066667pt;}
.ya9{bottom:295.386667pt;}
.y87{bottom:301.506667pt;}
.y45{bottom:303.266667pt;}
.yd9{bottom:308.386667pt;}
.yb4{bottom:309.826667pt;}
.ybd{bottom:312.066667pt;}
.y26{bottom:313.506667pt;}
.y60{bottom:315.906667pt;}
.y95{bottom:318.626667pt;}
.y72{bottom:322.786667pt;}
.ya8{bottom:322.946667pt;}
.y44{bottom:330.786667pt;}
.y25{bottom:331.906667pt;}
.y86{bottom:334.466667pt;}
.yb3{bottom:337.506667pt;}
.yd8{bottom:341.346667pt;}
.y5f{bottom:343.426667pt;}
.ybc{bottom:345.026667pt;}
.y24{bottom:350.306667pt;}
.ya7{bottom:350.626667pt;}
.y94{bottom:351.586667pt;}
.y85{bottom:362.146667pt;}
.y43{bottom:363.746667pt;}
.yb2{bottom:365.026667pt;}
.y23{bottom:368.706667pt;}
.yd7{bottom:369.026667pt;}
.y5e{bottom:371.106667pt;}
.ybb{bottom:372.546667pt;}
.y71{bottom:377.986667pt;}
.ya6{bottom:378.146667pt;}
.y93{bottom:384.546667pt;}
.y22{bottom:387.106667pt;}
.y84{bottom:389.666667pt;}
.y42{bottom:391.426667pt;}
.yb1{bottom:392.706667pt;}
.yd6{bottom:396.546667pt;}
.y5d{bottom:398.626667pt;}
.yba{bottom:400.066667pt;}
.y21{bottom:405.506667pt;}
.ya5{bottom:405.826667pt;}
.y83{bottom:417.346667pt;}
.y92{bottom:417.506667pt;}
.y41{bottom:418.946667pt;}
.yb0{bottom:422.146667pt;}
.y20{bottom:423.906667pt;}
.yd5{bottom:424.226667pt;}
.y5c{bottom:426.306667pt;}
.yb9{bottom:427.746667pt;}
.y70{bottom:433.186667pt;}
.ya4{bottom:438.626667pt;}
.y82{bottom:444.866667pt;}
.y91{bottom:445.026667pt;}
.y40{bottom:446.626667pt;}
.y1f{bottom:451.426667pt;}
.yd4{bottom:451.746667pt;}
.y5b{bottom:453.826667pt;}
.yb8{bottom:455.266667pt;}
.y6f{bottom:460.706667pt;}
.ya3{bottom:466.306667pt;}
.y1e{bottom:469.826667pt;}
.y81{bottom:472.546667pt;}
.y90{bottom:472.706667pt;}
.y3f{bottom:474.146667pt;}
.yd3{bottom:479.426667pt;}
.y5a{bottom:481.506667pt;}
.yb7{bottom:484.866667pt;}
.y1d{bottom:488.226667pt;}
.y6e{bottom:488.386667pt;}
.ya2{bottom:499.266667pt;}
.y8f{bottom:500.226667pt;}
.y3e{bottom:501.826667pt;}
.y80{bottom:505.346667pt;}
.y1c{bottom:506.626667pt;}
.yd2{bottom:506.946667pt;}
.y59{bottom:509.026667pt;}
.y69{bottom:514.306667pt;}
.y6d{bottom:515.906667pt;}
.y1b{bottom:525.026667pt;}
.ya1{bottom:526.786667pt;}
.y8e{bottom:527.906667pt;}
.y3d{bottom:529.346667pt;}
.y7f{bottom:533.026667pt;}
.yd1{bottom:534.626667pt;}
.y58{bottom:542.013333pt;}
.y1a{bottom:543.453333pt;}
.y6c{bottom:546.813333pt;}
.ya0{bottom:554.493333pt;}
.y8d{bottom:555.453333pt;}
.y3c{bottom:557.053333pt;}
.y7e{bottom:560.573333pt;}
.y19{bottom:561.853333pt;}
.yd0{bottom:562.173333pt;}
.y57{bottom:569.533333pt;}
.y18{bottom:580.253333pt;}
.yf0{bottom:580.413333pt;}
.y9f{bottom:582.013333pt;}
.y8c{bottom:583.293333pt;}
.y3b{bottom:584.573333pt;}
.ycf{bottom:589.853333pt;}
.y7d{bottom:593.533333pt;}
.y56{bottom:597.213333pt;}
.y17{bottom:598.653333pt;}
.yef{bottom:598.813333pt;}
.y9e{bottom:609.693333pt;}
.y16{bottom:617.053333pt;}
.yee{bottom:617.213333pt;}
.yce{bottom:617.373333pt;}
.y3a{bottom:617.533333pt;}
.y7c{bottom:621.213333pt;}
.y55{bottom:624.733333pt;}
.yaf{bottom:629.053333pt;}
.y15{bottom:635.453333pt;}
.y9d{bottom:637.213333pt;}
.yed{bottom:641.053333pt;}
.y39{bottom:645.053333pt;}
.y7b{bottom:648.733333pt;}
.y54{bottom:652.413333pt;}
.y14{bottom:653.853333pt;}
.yec{bottom:659.453333pt;}
.yae{bottom:662.013333pt;}
.y9c{bottom:664.893333pt;}
.y13{bottom:672.253333pt;}
.y38{bottom:672.733333pt;}
.y7a{bottom:676.413333pt;}
.yeb{bottom:677.693333pt;}
.y53{bottom:679.933333pt;}
.y6b{bottom:689.693333pt;}
.y9b{bottom:692.413333pt;}
.y12{bottom:699.773333pt;}
.y37{bottom:700.253333pt;}
.yea{bottom:701.533333pt;}
.y79{bottom:703.933333pt;}
.y52{bottom:707.613333pt;}
.y68{bottom:712.893333pt;}
.ycd{bottom:718.173333pt;}
.ye9{bottom:719.933333pt;}
.y9a{bottom:720.093333pt;}
.y6a{bottom:722.493333pt;}
.yad{bottom:724.413333pt;}
.y11{bottom:727.453333pt;}
.y36{bottom:727.933333pt;}
.y78{bottom:731.613333pt;}
.y51{bottom:735.133333pt;}
.y67{bottom:740.573333pt;}
.ye8{bottom:743.613333pt;}
.ycc{bottom:745.693333pt;}
.y99{bottom:749.373333pt;}
.y10{bottom:754.973333pt;}
.y35{bottom:755.453333pt;}
.y77{bottom:759.133333pt;}
.ye7{bottom:762.013333pt;}
.yac{bottom:762.813333pt;}
.yb6{bottom:765.213333pt;}
.y50{bottom:768.093333pt;}
.yf{bottom:773.373333pt;}
.ye6{bottom:780.453333pt;}
.y34{bottom:783.173333pt;}
.y76{bottom:786.853333pt;}
.y8b{bottom:790.373333pt;}
.y4f{bottom:795.813333pt;}
.ycb{bottom:800.933333pt;}
.ye{bottom:801.093333pt;}
.ye5{bottom:804.133333pt;}
.y33{bottom:810.693333pt;}
.y75{bottom:816.133333pt;}
.ye4{bottom:822.533333pt;}
.y4e{bottom:823.333333pt;}
.yca{bottom:828.453333pt;}
.yd{bottom:828.613333pt;}
.y32{bottom:838.373333pt;}
.ye3{bottom:840.933333pt;}
.yc{bottom:847.013333pt;}
.y4d{bottom:850.853333pt;}
.yc9{bottom:856.133333pt;}
.ye2{bottom:864.773333pt;}
.y31{bottom:865.893333pt;}
.yb{bottom:866.693333pt;}
.y4c{bottom:878.533333pt;}
.ye1{bottom:883.173333pt;}
.yc8{bottom:883.653333pt;}
.ya{bottom:891.173333pt;}
.y30{bottom:893.573333pt;}
.ye0{bottom:901.573333pt;}
.y4b{bottom:906.053333pt;}
.yc7{bottom:911.333333pt;}
.y66{bottom:911.493333pt;}
.y9{bottom:915.653333pt;}
.ydf{bottom:919.973333pt;}
.y2f{bottom:921.093333pt;}
.y4a{bottom:933.733333pt;}
.yde{bottom:938.373333pt;}
.y65{bottom:939.013333pt;}
.y8{bottom:940.293333pt;}
.yc6{bottom:944.293333pt;}
.y2e{bottom:955.973333pt;}
.ydd{bottom:956.773333pt;}
.yc5{bottom:960.453333pt;}
.y7{bottom:964.773333pt;}
.y49{bottom:966.693333pt;}
.yc4{bottom:984.773333pt;}
.y6{bottom:989.253333pt;}
.ydc{bottom:991.653333pt;}
.y2d{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.hb{height:23.040000pt;}
.h9{height:45.952000pt;}
.ha{height:47.180312pt;}
.hc{height:47.621250pt;}
.h7{height:48.781250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:64.879063pt;}
.h8{height:66.507188pt;}
.h5{height:75.602187pt;}
.h4{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:98.752000pt;}
.w4{width:113.120000pt;}
.w6{width:124.992000pt;}
.w5{width:134.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.040000pt;}
.x17{left:10.240000pt;}
.x21{left:16.160000pt;}
.x1d{left:29.280000pt;}
.x1f{left:34.400000pt;}
.x1e{left:37.760000pt;}
.x22{left:39.520000pt;}
.x20{left:45.466667pt;}
.x1b{left:53.626667pt;}
.x2{left:113.471988pt;}
.x5{left:120.831988pt;}
.x11{left:126.111988pt;}
.x14{left:142.266655pt;}
.x4{left:151.226655pt;}
.x6{left:164.666655pt;}
.x16{left:178.106667pt;}
.x15{left:201.786655pt;}
.x7{left:211.386655pt;}
.x18{left:278.146667pt;}
.xc{left:280.866655pt;}
.x10{left:305.666655pt;}
.xa{left:319.106655pt;}
.xe{left:321.506655pt;}
.x8{left:322.626655pt;}
.x12{left:365.346655pt;}
.x1a{left:392.546667pt;}
.x1{left:434.813322pt;}
.x1c{left:528.573333pt;}
.xf{left:534.173322pt;}
.xd{left:540.253322pt;}
.xb{left:548.733322pt;}
.x13{left:689.893322pt;}
.x3{left:718.373322pt;}
.x9{left:726.213322pt;}
}




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