
    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_7564dcb8ad0312d96f466b25.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_ded706c549051971848c9111.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_347527381f5026959f2098b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_509e981d34519dcb305b3006.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_dd4da3c6fec449d9f03848e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_e665f27a05e2614f0f554e0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_2bfddce328aaa65146ed1b42.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056152;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_510d0b8da9d1b9ca05a043b4.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.678000px;}
.lse{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.106560px;}
.ls2{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.826560px;}
.ls4{letter-spacing:4.500000px;}
.ls9{letter-spacing:8.100000px;}
.lsa{letter-spacing:434.316000px;}
.ls1{letter-spacing:2303.916000px;}
.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:-15.300000px;}
.ws2{word-spacing:-15.199800px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.262000px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-3.824640px;}
._4{margin-left:-2.629440px;}
._3{margin-left:-1.434240px;}
._1{width:1.015920px;}
._2{width:2.786880px;}
._a{width:3.944160px;}
._9{width:4.960080px;}
._16{width:6.021360px;}
._7{width:7.050000px;}
._8{width:8.120400px;}
._d{width:9.975120px;}
._c{width:11.179920px;}
._22{width:12.246000px;}
._10{width:13.266720px;}
._5{width:16.075440px;}
._6{width:17.810160px;}
._18{width:19.061760px;}
._2e{width:20.084400px;}
._f{width:21.155040px;}
._e{width:22.589280px;}
._28{width:24.023520px;}
._15{width:25.278480px;}
._20{width:26.354160px;}
._21{width:27.370080px;}
._11{width:28.386000px;}
._24{width:29.461680px;}
._23{width:30.597120px;}
._1f{width:32.389920px;}
._19{width:33.405840px;}
._29{width:34.720560px;}
._1c{width:35.796240px;}
._27{width:37.051200px;}
._2b{width:38.246400px;}
._26{width:39.859920px;}
._1b{width:40.935600px;}
._1a{width:42.011280px;}
._2a{width:45.059040px;}
._2d{width:46.732320px;}
._1e{width:47.808000px;}
._1d{width:49.361760px;}
._17{width:50.556960px;}
._31{width:54.262080px;}
._25{width:55.696320px;}
._13{width:57.190320px;}
._12{width:58.445280px;}
._14{width:64.002960px;}
._32{width:65.936160px;}
._33{width:104.161680px;}
._2c{width:476.820000px;}
._2f{width:633.240000px;}
._0{width:737.610240px;}
._34{width:849.216000px;}
._30{width:1098.480000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.800000px;}
.y40{bottom:91.440000px;}
.yb3{bottom:95.760000px;}
.y72{bottom:96.480000px;}
.y8a{bottom:105.840000px;}
.y3f{bottom:108.720000px;}
.yb2{bottom:113.040000px;}
.y71{bottom:113.760000px;}
.y89{bottom:123.120000px;}
.y3e{bottom:126.000000px;}
.yb1{bottom:130.320000px;}
.y70{bottom:131.040000px;}
.y88{bottom:140.436000px;}
.y3d{bottom:143.136000px;}
.yb0{bottom:147.636000px;}
.y6f{bottom:148.356000px;}
.y87{bottom:157.710000px;}
.y3c{bottom:160.410000px;}
.yaf{bottom:164.730000px;}
.y6e{bottom:165.630000px;}
.y86{bottom:174.990000px;}
.y3b{bottom:177.690000px;}
.yae{bottom:182.010000px;}
.y6d{bottom:182.730000px;}
.y85{bottom:192.090000px;}
.y3a{bottom:194.970000px;}
.yad{bottom:199.290000px;}
.y6c{bottom:200.010000px;}
.y84{bottom:209.370000px;}
.yd6{bottom:211.530000px;}
.y39{bottom:212.250000px;}
.yac{bottom:216.570000px;}
.y6b{bottom:217.290000px;}
.y83{bottom:226.650000px;}
.yd4{bottom:228.810000px;}
.y38{bottom:229.530000px;}
.yab{bottom:233.850000px;}
.y6a{bottom:234.570000px;}
.y82{bottom:243.930000px;}
.yd3{bottom:246.090000px;}
.y37{bottom:246.630000px;}
.yaa{bottom:250.950000px;}
.y69{bottom:251.850000px;}
.y81{bottom:257.970000px;}
.yd2{bottom:263.370000px;}
.y36{bottom:263.910000px;}
.ya9{bottom:268.230000px;}
.y68{bottom:269.130000px;}
.yd1{bottom:280.650000px;}
.y35{bottom:281.190000px;}
.ya8{bottom:285.510000px;}
.y67{bottom:286.230000px;}
.yd0{bottom:297.930000px;}
.y34{bottom:298.470000px;}
.ya7{bottom:302.790000px;}
.y66{bottom:303.510000px;}
.ycf{bottom:315.030000px;}
.y33{bottom:315.750000px;}
.ya6{bottom:320.070000px;}
.y65{bottom:320.790000px;}
.yce{bottom:332.310000px;}
.y32{bottom:332.850000px;}
.ya5{bottom:337.350000px;}
.y64{bottom:338.070000px;}
.ycd{bottom:349.590000px;}
.y31{bottom:350.130000px;}
.ya4{bottom:354.450000px;}
.y63{bottom:355.350000px;}
.ycc{bottom:366.870000px;}
.y30{bottom:367.410000px;}
.ya3{bottom:371.730000px;}
.y62{bottom:372.630000px;}
.ycb{bottom:384.150000px;}
.y2f{bottom:384.690000px;}
.ya2{bottom:389.055000px;}
.y61{bottom:389.775000px;}
.yca{bottom:401.475000px;}
.y2e{bottom:402.015000px;}
.ya1{bottom:403.095000px;}
.y60{bottom:407.055000px;}
.yc9{bottom:418.575000px;}
.y2d{bottom:419.295000px;}
.y5f{bottom:424.335000px;}
.yc8{bottom:435.855000px;}
.y2c{bottom:436.395000px;}
.y5e{bottom:441.615000px;}
.yc7{bottom:453.135000px;}
.y2b{bottom:453.675000px;}
.y5d{bottom:458.895000px;}
.yc6{bottom:470.415000px;}
.y2a{bottom:470.955000px;}
.y5c{bottom:475.995000px;}
.yc5{bottom:487.695000px;}
.y29{bottom:488.235000px;}
.y5b{bottom:493.275000px;}
.yc4{bottom:504.795000px;}
.y28{bottom:505.515000px;}
.y5a{bottom:510.555000px;}
.yd5{bottom:522.075000px;}
.y27{bottom:522.795000px;}
.y80{bottom:526.935000px;}
.y59{bottom:527.835000px;}
.yc3{bottom:539.355000px;}
.y26{bottom:539.895000px;}
.y7f{bottom:544.215000px;}
.y58{bottom:545.115000px;}
.yc2{bottom:556.635000px;}
.y25{bottom:557.175000px;}
.y57{bottom:559.155000px;}
.y7e{bottom:561.495000px;}
.yc1{bottom:573.915000px;}
.y24{bottom:574.455000px;}
.y7d{bottom:578.595000px;}
.yc0{bottom:591.195000px;}
.y23{bottom:591.735000px;}
.y7c{bottom:595.875000px;}
.ybf{bottom:608.295000px;}
.y22{bottom:609.015000px;}
.y7b{bottom:613.155000px;}
.ybe{bottom:625.575000px;}
.y21{bottom:626.295000px;}
.y7a{bottom:630.435000px;}
.ya0{bottom:635.835000px;}
.ybd{bottom:642.885000px;}
.y20{bottom:643.425000px;}
.y79{bottom:647.745000px;}
.y9f{bottom:653.145000px;}
.ybc{bottom:660.165000px;}
.y1f{bottom:660.705000px;}
.y78{bottom:665.025000px;}
.y9e{bottom:670.425000px;}
.ybb{bottom:677.445000px;}
.y1e{bottom:677.985000px;}
.y77{bottom:682.125000px;}
.y9d{bottom:687.525000px;}
.yba{bottom:694.725000px;}
.y1d{bottom:695.265000px;}
.y76{bottom:699.405000px;}
.y9c{bottom:704.805000px;}
.yb9{bottom:711.825000px;}
.y1c{bottom:712.545000px;}
.y75{bottom:716.685000px;}
.y9b{bottom:722.085000px;}
.yb8{bottom:729.105000px;}
.y1b{bottom:729.645000px;}
.y74{bottom:733.965000px;}
.y9a{bottom:739.365000px;}
.yb7{bottom:746.385000px;}
.y1a{bottom:746.925000px;}
.y73{bottom:748.005000px;}
.y99{bottom:756.645000px;}
.yb6{bottom:763.665000px;}
.y19{bottom:764.205000px;}
.y98{bottom:773.925000px;}
.yb5{bottom:780.945000px;}
.y18{bottom:781.485000px;}
.y97{bottom:791.025000px;}
.yb4{bottom:798.045000px;}
.y17{bottom:798.765000px;}
.y96{bottom:808.305000px;}
.y56{bottom:812.085000px;}
.y16{bottom:816.045000px;}
.y95{bottom:825.585000px;}
.y55{bottom:829.365000px;}
.y15{bottom:833.145000px;}
.y94{bottom:842.865000px;}
.y54{bottom:846.645000px;}
.y14{bottom:850.425000px;}
.y93{bottom:860.145000px;}
.y53{bottom:863.925000px;}
.y13{bottom:867.705000px;}
.y92{bottom:877.245000px;}
.y52{bottom:881.025000px;}
.y12{bottom:884.985000px;}
.y91{bottom:894.570000px;}
.y51{bottom:898.350000px;}
.y11{bottom:902.310000px;}
.y90{bottom:911.850000px;}
.y50{bottom:915.630000px;}
.y10{bottom:919.590000px;}
.y8f{bottom:929.130000px;}
.y4f{bottom:932.910000px;}
.yf{bottom:936.690000px;}
.y8e{bottom:946.410000px;}
.y4e{bottom:950.190000px;}
.ye{bottom:953.970000px;}
.y8d{bottom:963.690000px;}
.y4d{bottom:967.470000px;}
.yd{bottom:971.250000px;}
.y8c{bottom:980.790000px;}
.y4c{bottom:984.570000px;}
.yc{bottom:988.530000px;}
.y8b{bottom:994.830000px;}
.y4b{bottom:1001.850000px;}
.yb{bottom:1005.810000px;}
.y4a{bottom:1019.130000px;}
.ya{bottom:1023.090000px;}
.y49{bottom:1036.410000px;}
.y9{bottom:1040.190000px;}
.y48{bottom:1053.690000px;}
.y8{bottom:1057.470000px;}
.y47{bottom:1070.790000px;}
.y46{bottom:1088.070000px;}
.y7{bottom:1092.030000px;}
.y45{bottom:1105.350000px;}
.y6{bottom:1109.310000px;}
.y44{bottom:1122.630000px;}
.y5{bottom:1126.410000px;}
.y43{bottom:1139.910000px;}
.y4{bottom:1143.690000px;}
.y42{bottom:1157.220000px;}
.y3{bottom:1163.880000px;}
.y41{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.h6{height:52.290000px;}
.h3{height:52.998047px;}
.h9{height:53.573906px;}
.h8{height:58.621992px;}
.h7{height:58.651172px;}
.h2{height:59.439023px;}
.h5{height:60.226875px;}
.h4{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x6{left:136.115987px;}
.x4{left:150.149987px;}
.x17{left:222.689987px;}
.x1b{left:226.289987px;}
.x1a{left:262.334987px;}
.x13{left:291.134987px;}
.x15{left:305.714987px;}
.x2{left:328.754987px;}
.x1d{left:352.154987px;}
.x18{left:368.534987px;}
.x5{left:399.494987px;}
.x16{left:454.964987px;}
.x11{left:457.304987px;}
.x3{left:461.444987px;}
.x10{left:487.004987px;}
.x14{left:511.844987px;}
.x1c{left:515.084987px;}
.x12{left:516.524987px;}
.x19{left:521.924987px;}
.xb{left:537.944987px;}
.x7{left:546.764987px;}
.xd{left:570.524987px;}
.x8{left:582.944987px;}
.x9{left:643.469987px;}
.xa{left:687.569987px;}
.xe{left:706.289987px;}
.xf{left:782.969987px;}
.xc{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.602667pt;}
.lse{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.094720pt;}
.ls2{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.734720pt;}
.ls4{letter-spacing:4.000000pt;}
.ls9{letter-spacing:7.200000pt;}
.lsa{letter-spacing:386.058667pt;}
.ls1{letter-spacing:2047.925333pt;}
.ws0{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.510933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.677333pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-3.399680pt;}
._4{margin-left:-2.337280pt;}
._3{margin-left:-1.274880pt;}
._1{width:0.903040pt;}
._2{width:2.477227pt;}
._a{width:3.505920pt;}
._9{width:4.408960pt;}
._16{width:5.352320pt;}
._7{width:6.266667pt;}
._8{width:7.218133pt;}
._d{width:8.866773pt;}
._c{width:9.937707pt;}
._22{width:10.885333pt;}
._10{width:11.792640pt;}
._5{width:14.289280pt;}
._6{width:15.831253pt;}
._18{width:16.943787pt;}
._2e{width:17.852800pt;}
._f{width:18.804480pt;}
._e{width:20.079360pt;}
._28{width:21.354240pt;}
._15{width:22.469760pt;}
._20{width:23.425920pt;}
._21{width:24.328960pt;}
._11{width:25.232000pt;}
._24{width:26.188160pt;}
._23{width:27.197440pt;}
._1f{width:28.791040pt;}
._19{width:29.694080pt;}
._29{width:30.862720pt;}
._1c{width:31.818880pt;}
._27{width:32.934400pt;}
._2b{width:33.996800pt;}
._26{width:35.431040pt;}
._1b{width:36.387200pt;}
._1a{width:37.343360pt;}
._2a{width:40.052480pt;}
._2d{width:41.539840pt;}
._1e{width:42.496000pt;}
._1d{width:43.877120pt;}
._17{width:44.939520pt;}
._31{width:48.232960pt;}
._25{width:49.507840pt;}
._13{width:50.835840pt;}
._12{width:51.951360pt;}
._14{width:56.891520pt;}
._32{width:58.609920pt;}
._33{width:92.588160pt;}
._2c{width:423.840000pt;}
._2f{width:562.880000pt;}
._0{width:655.653547pt;}
._34{width:754.858667pt;}
._30{width:976.426667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.600000pt;}
.y40{bottom:81.280000pt;}
.yb3{bottom:85.120000pt;}
.y72{bottom:85.760000pt;}
.y8a{bottom:94.080000pt;}
.y3f{bottom:96.640000pt;}
.yb2{bottom:100.480000pt;}
.y71{bottom:101.120000pt;}
.y89{bottom:109.440000pt;}
.y3e{bottom:112.000000pt;}
.yb1{bottom:115.840000pt;}
.y70{bottom:116.480000pt;}
.y88{bottom:124.832000pt;}
.y3d{bottom:127.232000pt;}
.yb0{bottom:131.232000pt;}
.y6f{bottom:131.872000pt;}
.y87{bottom:140.186667pt;}
.y3c{bottom:142.586667pt;}
.yaf{bottom:146.426667pt;}
.y6e{bottom:147.226667pt;}
.y86{bottom:155.546667pt;}
.y3b{bottom:157.946667pt;}
.yae{bottom:161.786667pt;}
.y6d{bottom:162.426667pt;}
.y85{bottom:170.746667pt;}
.y3a{bottom:173.306667pt;}
.yad{bottom:177.146667pt;}
.y6c{bottom:177.786667pt;}
.y84{bottom:186.106667pt;}
.yd6{bottom:188.026667pt;}
.y39{bottom:188.666667pt;}
.yac{bottom:192.506667pt;}
.y6b{bottom:193.146667pt;}
.y83{bottom:201.466667pt;}
.yd4{bottom:203.386667pt;}
.y38{bottom:204.026667pt;}
.yab{bottom:207.866667pt;}
.y6a{bottom:208.506667pt;}
.y82{bottom:216.826667pt;}
.yd3{bottom:218.746667pt;}
.y37{bottom:219.226667pt;}
.yaa{bottom:223.066667pt;}
.y69{bottom:223.866667pt;}
.y81{bottom:229.306667pt;}
.yd2{bottom:234.106667pt;}
.y36{bottom:234.586667pt;}
.ya9{bottom:238.426667pt;}
.y68{bottom:239.226667pt;}
.yd1{bottom:249.466667pt;}
.y35{bottom:249.946667pt;}
.ya8{bottom:253.786667pt;}
.y67{bottom:254.426667pt;}
.yd0{bottom:264.826667pt;}
.y34{bottom:265.306667pt;}
.ya7{bottom:269.146667pt;}
.y66{bottom:269.786667pt;}
.ycf{bottom:280.026667pt;}
.y33{bottom:280.666667pt;}
.ya6{bottom:284.506667pt;}
.y65{bottom:285.146667pt;}
.yce{bottom:295.386667pt;}
.y32{bottom:295.866667pt;}
.ya5{bottom:299.866667pt;}
.y64{bottom:300.506667pt;}
.ycd{bottom:310.746667pt;}
.y31{bottom:311.226667pt;}
.ya4{bottom:315.066667pt;}
.y63{bottom:315.866667pt;}
.ycc{bottom:326.106667pt;}
.y30{bottom:326.586667pt;}
.ya3{bottom:330.426667pt;}
.y62{bottom:331.226667pt;}
.ycb{bottom:341.466667pt;}
.y2f{bottom:341.946667pt;}
.ya2{bottom:345.826667pt;}
.y61{bottom:346.466667pt;}
.yca{bottom:356.866667pt;}
.y2e{bottom:357.346667pt;}
.ya1{bottom:358.306667pt;}
.y60{bottom:361.826667pt;}
.yc9{bottom:372.066667pt;}
.y2d{bottom:372.706667pt;}
.y5f{bottom:377.186667pt;}
.yc8{bottom:387.426667pt;}
.y2c{bottom:387.906667pt;}
.y5e{bottom:392.546667pt;}
.yc7{bottom:402.786667pt;}
.y2b{bottom:403.266667pt;}
.y5d{bottom:407.906667pt;}
.yc6{bottom:418.146667pt;}
.y2a{bottom:418.626667pt;}
.y5c{bottom:423.106667pt;}
.yc5{bottom:433.506667pt;}
.y29{bottom:433.986667pt;}
.y5b{bottom:438.466667pt;}
.yc4{bottom:448.706667pt;}
.y28{bottom:449.346667pt;}
.y5a{bottom:453.826667pt;}
.yd5{bottom:464.066667pt;}
.y27{bottom:464.706667pt;}
.y80{bottom:468.386667pt;}
.y59{bottom:469.186667pt;}
.yc3{bottom:479.426667pt;}
.y26{bottom:479.906667pt;}
.y7f{bottom:483.746667pt;}
.y58{bottom:484.546667pt;}
.yc2{bottom:494.786667pt;}
.y25{bottom:495.266667pt;}
.y57{bottom:497.026667pt;}
.y7e{bottom:499.106667pt;}
.yc1{bottom:510.146667pt;}
.y24{bottom:510.626667pt;}
.y7d{bottom:514.306667pt;}
.yc0{bottom:525.506667pt;}
.y23{bottom:525.986667pt;}
.y7c{bottom:529.666667pt;}
.ybf{bottom:540.706667pt;}
.y22{bottom:541.346667pt;}
.y7b{bottom:545.026667pt;}
.ybe{bottom:556.066667pt;}
.y21{bottom:556.706667pt;}
.y7a{bottom:560.386667pt;}
.ya0{bottom:565.186667pt;}
.ybd{bottom:571.453333pt;}
.y20{bottom:571.933333pt;}
.y79{bottom:575.773333pt;}
.y9f{bottom:580.573333pt;}
.ybc{bottom:586.813333pt;}
.y1f{bottom:587.293333pt;}
.y78{bottom:591.133333pt;}
.y9e{bottom:595.933333pt;}
.ybb{bottom:602.173333pt;}
.y1e{bottom:602.653333pt;}
.y77{bottom:606.333333pt;}
.y9d{bottom:611.133333pt;}
.yba{bottom:617.533333pt;}
.y1d{bottom:618.013333pt;}
.y76{bottom:621.693333pt;}
.y9c{bottom:626.493333pt;}
.yb9{bottom:632.733333pt;}
.y1c{bottom:633.373333pt;}
.y75{bottom:637.053333pt;}
.y9b{bottom:641.853333pt;}
.yb8{bottom:648.093333pt;}
.y1b{bottom:648.573333pt;}
.y74{bottom:652.413333pt;}
.y9a{bottom:657.213333pt;}
.yb7{bottom:663.453333pt;}
.y1a{bottom:663.933333pt;}
.y73{bottom:664.893333pt;}
.y99{bottom:672.573333pt;}
.yb6{bottom:678.813333pt;}
.y19{bottom:679.293333pt;}
.y98{bottom:687.933333pt;}
.yb5{bottom:694.173333pt;}
.y18{bottom:694.653333pt;}
.y97{bottom:703.133333pt;}
.yb4{bottom:709.373333pt;}
.y17{bottom:710.013333pt;}
.y96{bottom:718.493333pt;}
.y56{bottom:721.853333pt;}
.y16{bottom:725.373333pt;}
.y95{bottom:733.853333pt;}
.y55{bottom:737.213333pt;}
.y15{bottom:740.573333pt;}
.y94{bottom:749.213333pt;}
.y54{bottom:752.573333pt;}
.y14{bottom:755.933333pt;}
.y93{bottom:764.573333pt;}
.y53{bottom:767.933333pt;}
.y13{bottom:771.293333pt;}
.y92{bottom:779.773333pt;}
.y52{bottom:783.133333pt;}
.y12{bottom:786.653333pt;}
.y91{bottom:795.173333pt;}
.y51{bottom:798.533333pt;}
.y11{bottom:802.053333pt;}
.y90{bottom:810.533333pt;}
.y50{bottom:813.893333pt;}
.y10{bottom:817.413333pt;}
.y8f{bottom:825.893333pt;}
.y4f{bottom:829.253333pt;}
.yf{bottom:832.613333pt;}
.y8e{bottom:841.253333pt;}
.y4e{bottom:844.613333pt;}
.ye{bottom:847.973333pt;}
.y8d{bottom:856.613333pt;}
.y4d{bottom:859.973333pt;}
.yd{bottom:863.333333pt;}
.y8c{bottom:871.813333pt;}
.y4c{bottom:875.173333pt;}
.yc{bottom:878.693333pt;}
.y8b{bottom:884.293333pt;}
.y4b{bottom:890.533333pt;}
.yb{bottom:894.053333pt;}
.y4a{bottom:905.893333pt;}
.ya{bottom:909.413333pt;}
.y49{bottom:921.253333pt;}
.y9{bottom:924.613333pt;}
.y48{bottom:936.613333pt;}
.y8{bottom:939.973333pt;}
.y47{bottom:951.813333pt;}
.y46{bottom:967.173333pt;}
.y7{bottom:970.693333pt;}
.y45{bottom:982.533333pt;}
.y6{bottom:986.053333pt;}
.y44{bottom:997.893333pt;}
.y5{bottom:1001.253333pt;}
.y43{bottom:1013.253333pt;}
.y4{bottom:1016.613333pt;}
.y42{bottom:1028.640000pt;}
.y3{bottom:1034.560000pt;}
.y41{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.h6{height:46.480000pt;}
.h3{height:47.109375pt;}
.h9{height:47.621250pt;}
.h8{height:52.108438pt;}
.h7{height:52.134375pt;}
.h2{height:52.834688pt;}
.h5{height:53.535000pt;}
.h4{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x6{left:120.991988pt;}
.x4{left:133.466655pt;}
.x17{left:197.946655pt;}
.x1b{left:201.146655pt;}
.x1a{left:233.186655pt;}
.x13{left:258.786655pt;}
.x15{left:271.746655pt;}
.x2{left:292.226655pt;}
.x1d{left:313.026655pt;}
.x18{left:327.586655pt;}
.x5{left:355.106655pt;}
.x16{left:404.413322pt;}
.x11{left:406.493322pt;}
.x3{left:410.173322pt;}
.x10{left:432.893322pt;}
.x14{left:454.973322pt;}
.x1c{left:457.853322pt;}
.x12{left:459.133322pt;}
.x19{left:463.933322pt;}
.xb{left:478.173322pt;}
.x7{left:486.013322pt;}
.xd{left:507.133322pt;}
.x8{left:518.173322pt;}
.x9{left:571.973322pt;}
.xa{left:611.173322pt;}
.xe{left:627.813322pt;}
.xf{left:695.973322pt;}
.xc{left:699.333322pt;}
}




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