
    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_359a703769ee0ea26536c713.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_d66eb74864ec0db6f81a19dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_a5394c1c427a8ce05da4f6cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_daafffb464c5dbbd81ca8408.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_292fa5e5f0d35e0639de2da5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_68a82a8b5746a8a554091b37.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_9979be2065bbe030c9336f90.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0fcb2e2857258033a1c74969.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.940000px;}
.lsc{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.lse{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.ls11{letter-spacing:2.160000px;}
.ls4{letter-spacing:7.200000px;}
.ls8{letter-spacing:10.800000px;}
.ls6{letter-spacing:12.240000px;}
.ls9{letter-spacing:17.280000px;}
.lsa{letter-spacing:18.000000px;}
.ls5{letter-spacing:18.840000px;}
.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:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws0{word-spacing:-13.505760px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-4.919040px;}
._12{margin-left:-3.816000px;}
._a{margin-left:-2.016000px;}
._2{margin-left:-1.008000px;}
._0{width:1.055520px;}
._13{width:2.760480px;}
._16{width:3.935520px;}
._d{width:5.832000px;}
._b{width:7.512480px;}
._5{width:8.640000px;}
._6{width:10.212000px;}
._c{width:11.220000px;}
._7{width:13.032000px;}
._8{width:14.184000px;}
._9{width:15.984000px;}
._10{width:16.992000px;}
._11{width:19.296000px;}
._3{width:20.952000px;}
._4{width:22.116000px;}
._18{width:23.556480px;}
._19{width:25.150080px;}
._1d{width:27.504000px;}
._f{width:29.304000px;}
._1a{width:30.312000px;}
._20{width:31.680000px;}
._22{width:33.264000px;}
._1e{width:34.488000px;}
._1f{width:36.144000px;}
._1b{width:38.160000px;}
._e{width:40.032000px;}
._1c{width:41.280480px;}
._14{width:47.088000px;}
._15{width:48.096000px;}
._21{width:49.896000px;}
._1{width:82.776000px;}
._25{width:95.472000px;}
._24{width:96.480000px;}
._23{width:297.792000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.y3{bottom:5.400000px;}
.y9{bottom:6.300000px;}
.yf{bottom:12.600000px;}
.y6{bottom:14.400000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.y2{bottom:40.140000px;}
.y5{bottom:49.140000px;}
.y8f{bottom:111.960000px;}
.yd6{bottom:115.560000px;}
.yc5{bottom:118.260000px;}
.y3a{bottom:126.360000px;}
.y8e{bottom:132.660000px;}
.yd5{bottom:136.260000px;}
.yc4{bottom:138.960000px;}
.y39{bottom:147.060000px;}
.y67{bottom:147.960000px;}
.y8d{bottom:153.360000px;}
.yd4{bottom:156.960000px;}
.yc3{bottom:159.660000px;}
.y38{bottom:167.760000px;}
.y66{bottom:168.660000px;}
.y101{bottom:173.160000px;}
.yd3{bottom:177.660000px;}
.yc2{bottom:180.360000px;}
.y8c{bottom:183.060000px;}
.y37{bottom:188.460000px;}
.y65{bottom:189.360000px;}
.yc1{bottom:201.090000px;}
.y100{bottom:202.890000px;}
.ye3{bottom:203.790000px;}
.yd2{bottom:207.390000px;}
.y36{bottom:209.190000px;}
.y64{bottom:210.090000px;}
.y110{bottom:211.890000px;}
.y8b{bottom:212.790000px;}
.yb5{bottom:219.090000px;}
.yff{bottom:223.590000px;}
.ye2{bottom:224.490000px;}
.yd1{bottom:228.090000px;}
.y35{bottom:229.890000px;}
.y63{bottom:230.790000px;}
.y8a{bottom:233.490000px;}
.y10f{bottom:241.590000px;}
.yfe{bottom:244.290000px;}
.yb4{bottom:248.790000px;}
.y34{bottom:250.590000px;}
.y62{bottom:251.490000px;}
.y89{bottom:254.190000px;}
.yc0{bottom:260.490000px;}
.yfd{bottom:264.990000px;}
.yb3{bottom:269.490000px;}
.y33{bottom:271.290000px;}
.y61{bottom:272.190000px;}
.y88{bottom:274.890000px;}
.ybf{bottom:281.190000px;}
.ye1{bottom:283.890000px;}
.yb2{bottom:290.190000px;}
.y32{bottom:291.990000px;}
.yfc{bottom:294.690000px;}
.y87{bottom:295.590000px;}
.y10e{bottom:300.990000px;}
.y60{bottom:301.890000px;}
.yb1{bottom:310.890000px;}
.y31{bottom:312.690000px;}
.ye0{bottom:313.590000px;}
.yfb{bottom:315.390000px;}
.y86{bottom:316.290000px;}
.y5f{bottom:322.590000px;}
.y10d{bottom:330.690000px;}
.yb0{bottom:331.590000px;}
.y30{bottom:333.390000px;}
.ydf{bottom:334.290000px;}
.y85{bottom:336.990000px;}
.y5e{bottom:343.290000px;}
.yfa{bottom:345.090000px;}
.yaf{bottom:352.290000px;}
.yde{bottom:354.990000px;}
.y84{bottom:357.690000px;}
.y10c{bottom:360.390000px;}
.yd0{bottom:361.290000px;}
.y2f{bottom:363.090000px;}
.y5d{bottom:363.990000px;}
.yae{bottom:372.990000px;}
.yf9{bottom:374.790000px;}
.ydd{bottom:375.690000px;}
.y83{bottom:378.390000px;}
.y10b{bottom:381.090000px;}
.ycf{bottom:381.990000px;}
.y5c{bottom:384.690000px;}
.y2e{bottom:392.790000px;}
.yf8{bottom:395.490000px;}
.ydc{bottom:396.390000px;}
.yad{bottom:402.690000px;}
.y5b{bottom:405.390000px;}
.y82{bottom:408.090000px;}
.y10a{bottom:410.790000px;}
.ydb{bottom:417.090000px;}
.y2d{bottom:422.490000px;}
.yac{bottom:423.390000px;}
.yf7{bottom:425.190000px;}
.y5a{bottom:426.090000px;}
.y81{bottom:428.790000px;}
.y109{bottom:431.490000px;}
.ybe{bottom:435.090000px;}
.yda{bottom:437.835000px;}
.y2c{bottom:443.235000px;}
.yab{bottom:444.135000px;}
.y59{bottom:446.835000px;}
.y80{bottom:449.535000px;}
.y108{bottom:452.235000px;}
.yf6{bottom:454.935000px;}
.yaa{bottom:464.835000px;}
.y58{bottom:467.535000px;}
.y7f{bottom:470.235000px;}
.y2b{bottom:472.935000px;}
.yf5{bottom:475.635000px;}
.y107{bottom:481.935000px;}
.ya9{bottom:485.535000px;}
.y57{bottom:488.235000px;}
.y7e{bottom:490.935000px;}
.y2a{bottom:493.635000px;}
.yd9{bottom:497.235000px;}
.y106{bottom:502.635000px;}
.yf4{bottom:505.335000px;}
.ya8{bottom:506.235000px;}
.y56{bottom:508.935000px;}
.y7d{bottom:511.635000px;}
.y29{bottom:514.335000px;}
.y105{bottom:523.335000px;}
.yf3{bottom:526.035000px;}
.ya7{bottom:526.935000px;}
.y55{bottom:529.635000px;}
.y7c{bottom:532.335000px;}
.y28{bottom:535.035000px;}
.ya6{bottom:547.635000px;}
.y7b{bottom:553.035000px;}
.y27{bottom:555.735000px;}
.yce{bottom:556.635000px;}
.y54{bottom:559.335000px;}
.ybd{bottom:568.335000px;}
.y26{bottom:576.435000px;}
.ya5{bottom:577.335000px;}
.y7a{bottom:582.735000px;}
.y53{bottom:589.035000px;}
.y25{bottom:597.135000px;}
.ybc{bottom:598.035000px;}
.y104{bottom:603.435000px;}
.yf2{bottom:606.135000px;}
.ya4{bottom:607.035000px;}
.y52{bottom:609.735000px;}
.y79{bottom:612.435000px;}
.ye{bottom:617.475000px;}
.y24{bottom:617.835000px;}
.ycd{bottom:618.735000px;}
.yf1{bottom:626.835000px;}
.ya3{bottom:627.735000px;}
.y51{bottom:630.435000px;}
.y78{bottom:633.135000px;}
.y23{bottom:638.535000px;}
.ycc{bottom:639.435000px;}
.ya2{bottom:648.435000px;}
.y50{bottom:651.135000px;}
.y77{bottom:653.835000px;}
.yf0{bottom:656.535000px;}
.y22{bottom:659.235000px;}
.ycb{bottom:660.135000px;}
.ya1{bottom:669.135000px;}
.y4f{bottom:671.835000px;}
.y76{bottom:674.565000px;}
.yef{bottom:677.265000px;}
.y21{bottom:679.965000px;}
.yca{bottom:680.865000px;}
.y103{bottom:683.565000px;}
.ya0{bottom:689.865000px;}
.y4e{bottom:692.565000px;}
.y20{bottom:700.665000px;}
.yc9{bottom:701.565000px;}
.y75{bottom:704.265000px;}
.yee{bottom:706.965000px;}
.y9f{bottom:710.565000px;}
.y4d{bottom:713.265000px;}
.y1f{bottom:721.365000px;}
.yc8{bottom:722.265000px;}
.y102{bottom:724.965000px;}
.yed{bottom:727.665000px;}
.y9e{bottom:731.265000px;}
.y4c{bottom:733.965000px;}
.yc7{bottom:742.965000px;}
.y1e{bottom:751.065000px;}
.y9d{bottom:751.965000px;}
.y74{bottom:754.665000px;}
.yec{bottom:757.365000px;}
.ybb{bottom:760.965000px;}
.y4b{bottom:763.665000px;}
.y73{bottom:775.365000px;}
.yeb{bottom:778.065000px;}
.y9c{bottom:781.665000px;}
.y4a{bottom:784.365000px;}
.y1d{bottom:787.605000px;}
.y72{bottom:796.065000px;}
.y9b{bottom:802.365000px;}
.y49{bottom:805.065000px;}
.yea{bottom:807.765000px;}
.y1c{bottom:810.465000px;}
.yc6{bottom:814.065000px;}
.y9a{bottom:823.065000px;}
.y48{bottom:825.765000px;}
.ye9{bottom:828.465000px;}
.y1b{bottom:838.005000px;}
.y99{bottom:843.765000px;}
.y47{bottom:846.465000px;}
.y71{bottom:855.465000px;}
.ye8{bottom:858.165000px;}
.y1a{bottom:860.865000px;}
.y98{bottom:864.465000px;}
.y46{bottom:867.165000px;}
.yba{bottom:873.465000px;}
.y70{bottom:876.165000px;}
.y97{bottom:885.165000px;}
.y45{bottom:887.865000px;}
.y19{bottom:888.405000px;}
.y6f{bottom:896.865000px;}
.yb9{bottom:903.165000px;}
.y96{bottom:905.865000px;}
.y44{bottom:908.565000px;}
.y18{bottom:911.265000px;}
.yd8{bottom:914.910000px;}
.y6e{bottom:917.610000px;}
.yb8{bottom:923.910000px;}
.y95{bottom:926.610000px;}
.y43{bottom:929.310000px;}
.yd7{bottom:935.610000px;}
.ye7{bottom:938.310000px;}
.y17{bottom:941.010000px;}
.yb7{bottom:944.610000px;}
.y6d{bottom:947.310000px;}
.y42{bottom:950.010000px;}
.y94{bottom:956.310000px;}
.ye6{bottom:959.010000px;}
.yb6{bottom:965.310000px;}
.y16{bottom:970.710000px;}
.y6c{bottom:977.010000px;}
.y41{bottom:979.710000px;}
.y93{bottom:986.010000px;}
.y15{bottom:991.410000px;}
.y6b{bottom:997.710000px;}
.y92{bottom:1006.710000px;}
.y40{bottom:1009.410000px;}
.y6a{bottom:1018.410000px;}
.y14{bottom:1021.110000px;}
.y91{bottom:1027.410000px;}
.ye5{bottom:1030.110000px;}
.y3f{bottom:1039.110000px;}
.y13{bottom:1041.810000px;}
.y90{bottom:1048.110000px;}
.y69{bottom:1059.810000px;}
.y3e{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.y68{bottom:1089.510000px;}
.y3d{bottom:1098.510000px;}
.y11{bottom:1101.210000px;}
.ye4{bottom:1110.210000px;}
.y3c{bottom:1119.210000px;}
.y10{bottom:1130.910000px;}
.y3b{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.hb{height:28.260000px;}
.hf{height:40.254961px;}
.h9{height:49.868086px;}
.h2{height:54.900000px;}
.hd{height:60.082031px;}
.h10{height:61.171875px;}
.h7{height:61.189805px;}
.hc{height:61.734375px;}
.h4{height:63.900000px;}
.he{height:65.302031px;}
.ha{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.240000px;}
.w8{width:84.990000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.w2{width:359.175000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.xd{left:10.800000px;}
.x5{left:21.780000px;}
.xa{left:31.185000px;}
.x7{left:47.340000px;}
.x3{left:51.120000px;}
.xb{left:106.235987px;}
.xe{left:110.915987px;}
.x14{left:137.735987px;}
.x13{left:152.129987px;}
.x15{left:158.069987px;}
.x2{left:161.145000px;}
.x1{left:212.430000px;}
.x16{left:243.569987px;}
.x12{left:296.354987px;}
.x10{left:385.094987px;}
.xf{left:399.134987px;}
.x8{left:420.375000px;}
.x11{left:446.474987px;}
.x9{left:656.205000px;}
.x4{left:761.010000px;}
.xc{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.280000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.920000pt;}
.ls4{letter-spacing:6.400000pt;}
.ls8{letter-spacing:9.600000pt;}
.ls6{letter-spacing:10.880000pt;}
.ls9{letter-spacing:15.360000pt;}
.lsa{letter-spacing:16.000000pt;}
.ls5{letter-spacing:16.746667pt;}
.ws3{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-4.372480pt;}
._12{margin-left:-3.392000pt;}
._a{margin-left:-1.792000pt;}
._2{margin-left:-0.896000pt;}
._0{width:0.938240pt;}
._13{width:2.453760pt;}
._16{width:3.498240pt;}
._d{width:5.184000pt;}
._b{width:6.677760pt;}
._5{width:7.680000pt;}
._6{width:9.077333pt;}
._c{width:9.973333pt;}
._7{width:11.584000pt;}
._8{width:12.608000pt;}
._9{width:14.208000pt;}
._10{width:15.104000pt;}
._11{width:17.152000pt;}
._3{width:18.624000pt;}
._4{width:19.658667pt;}
._18{width:20.939093pt;}
._19{width:22.355627pt;}
._1d{width:24.448000pt;}
._f{width:26.048000pt;}
._1a{width:26.944000pt;}
._20{width:28.160000pt;}
._22{width:29.568000pt;}
._1e{width:30.656000pt;}
._1f{width:32.128000pt;}
._1b{width:33.920000pt;}
._e{width:35.584000pt;}
._1c{width:36.693760pt;}
._14{width:41.856000pt;}
._15{width:42.752000pt;}
._21{width:44.352000pt;}
._1{width:73.578667pt;}
._25{width:84.864000pt;}
._24{width:85.760000pt;}
._23{width:264.704000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:4.800000pt;}
.y9{bottom:5.600000pt;}
.yf{bottom:11.200000pt;}
.y6{bottom:12.800000pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.y2{bottom:35.680000pt;}
.y5{bottom:43.680000pt;}
.y8f{bottom:99.520000pt;}
.yd6{bottom:102.720000pt;}
.yc5{bottom:105.120000pt;}
.y3a{bottom:112.320000pt;}
.y8e{bottom:117.920000pt;}
.yd5{bottom:121.120000pt;}
.yc4{bottom:123.520000pt;}
.y39{bottom:130.720000pt;}
.y67{bottom:131.520000pt;}
.y8d{bottom:136.320000pt;}
.yd4{bottom:139.520000pt;}
.yc3{bottom:141.920000pt;}
.y38{bottom:149.120000pt;}
.y66{bottom:149.920000pt;}
.y101{bottom:153.920000pt;}
.yd3{bottom:157.920000pt;}
.yc2{bottom:160.320000pt;}
.y8c{bottom:162.720000pt;}
.y37{bottom:167.520000pt;}
.y65{bottom:168.320000pt;}
.yc1{bottom:178.746667pt;}
.y100{bottom:180.346667pt;}
.ye3{bottom:181.146667pt;}
.yd2{bottom:184.346667pt;}
.y36{bottom:185.946667pt;}
.y64{bottom:186.746667pt;}
.y110{bottom:188.346667pt;}
.y8b{bottom:189.146667pt;}
.yb5{bottom:194.746667pt;}
.yff{bottom:198.746667pt;}
.ye2{bottom:199.546667pt;}
.yd1{bottom:202.746667pt;}
.y35{bottom:204.346667pt;}
.y63{bottom:205.146667pt;}
.y8a{bottom:207.546667pt;}
.y10f{bottom:214.746667pt;}
.yfe{bottom:217.146667pt;}
.yb4{bottom:221.146667pt;}
.y34{bottom:222.746667pt;}
.y62{bottom:223.546667pt;}
.y89{bottom:225.946667pt;}
.yc0{bottom:231.546667pt;}
.yfd{bottom:235.546667pt;}
.yb3{bottom:239.546667pt;}
.y33{bottom:241.146667pt;}
.y61{bottom:241.946667pt;}
.y88{bottom:244.346667pt;}
.ybf{bottom:249.946667pt;}
.ye1{bottom:252.346667pt;}
.yb2{bottom:257.946667pt;}
.y32{bottom:259.546667pt;}
.yfc{bottom:261.946667pt;}
.y87{bottom:262.746667pt;}
.y10e{bottom:267.546667pt;}
.y60{bottom:268.346667pt;}
.yb1{bottom:276.346667pt;}
.y31{bottom:277.946667pt;}
.ye0{bottom:278.746667pt;}
.yfb{bottom:280.346667pt;}
.y86{bottom:281.146667pt;}
.y5f{bottom:286.746667pt;}
.y10d{bottom:293.946667pt;}
.yb0{bottom:294.746667pt;}
.y30{bottom:296.346667pt;}
.ydf{bottom:297.146667pt;}
.y85{bottom:299.546667pt;}
.y5e{bottom:305.146667pt;}
.yfa{bottom:306.746667pt;}
.yaf{bottom:313.146667pt;}
.yde{bottom:315.546667pt;}
.y84{bottom:317.946667pt;}
.y10c{bottom:320.346667pt;}
.yd0{bottom:321.146667pt;}
.y2f{bottom:322.746667pt;}
.y5d{bottom:323.546667pt;}
.yae{bottom:331.546667pt;}
.yf9{bottom:333.146667pt;}
.ydd{bottom:333.946667pt;}
.y83{bottom:336.346667pt;}
.y10b{bottom:338.746667pt;}
.ycf{bottom:339.546667pt;}
.y5c{bottom:341.946667pt;}
.y2e{bottom:349.146667pt;}
.yf8{bottom:351.546667pt;}
.ydc{bottom:352.346667pt;}
.yad{bottom:357.946667pt;}
.y5b{bottom:360.346667pt;}
.y82{bottom:362.746667pt;}
.y10a{bottom:365.146667pt;}
.ydb{bottom:370.746667pt;}
.y2d{bottom:375.546667pt;}
.yac{bottom:376.346667pt;}
.yf7{bottom:377.946667pt;}
.y5a{bottom:378.746667pt;}
.y81{bottom:381.146667pt;}
.y109{bottom:383.546667pt;}
.ybe{bottom:386.746667pt;}
.yda{bottom:389.186667pt;}
.y2c{bottom:393.986667pt;}
.yab{bottom:394.786667pt;}
.y59{bottom:397.186667pt;}
.y80{bottom:399.586667pt;}
.y108{bottom:401.986667pt;}
.yf6{bottom:404.386667pt;}
.yaa{bottom:413.186667pt;}
.y58{bottom:415.586667pt;}
.y7f{bottom:417.986667pt;}
.y2b{bottom:420.386667pt;}
.yf5{bottom:422.786667pt;}
.y107{bottom:428.386667pt;}
.ya9{bottom:431.586667pt;}
.y57{bottom:433.986667pt;}
.y7e{bottom:436.386667pt;}
.y2a{bottom:438.786667pt;}
.yd9{bottom:441.986667pt;}
.y106{bottom:446.786667pt;}
.yf4{bottom:449.186667pt;}
.ya8{bottom:449.986667pt;}
.y56{bottom:452.386667pt;}
.y7d{bottom:454.786667pt;}
.y29{bottom:457.186667pt;}
.y105{bottom:465.186667pt;}
.yf3{bottom:467.586667pt;}
.ya7{bottom:468.386667pt;}
.y55{bottom:470.786667pt;}
.y7c{bottom:473.186667pt;}
.y28{bottom:475.586667pt;}
.ya6{bottom:486.786667pt;}
.y7b{bottom:491.586667pt;}
.y27{bottom:493.986667pt;}
.yce{bottom:494.786667pt;}
.y54{bottom:497.186667pt;}
.ybd{bottom:505.186667pt;}
.y26{bottom:512.386667pt;}
.ya5{bottom:513.186667pt;}
.y7a{bottom:517.986667pt;}
.y53{bottom:523.586667pt;}
.y25{bottom:530.786667pt;}
.ybc{bottom:531.586667pt;}
.y104{bottom:536.386667pt;}
.yf2{bottom:538.786667pt;}
.ya4{bottom:539.586667pt;}
.y52{bottom:541.986667pt;}
.y79{bottom:544.386667pt;}
.ye{bottom:548.866667pt;}
.y24{bottom:549.186667pt;}
.ycd{bottom:549.986667pt;}
.yf1{bottom:557.186667pt;}
.ya3{bottom:557.986667pt;}
.y51{bottom:560.386667pt;}
.y78{bottom:562.786667pt;}
.y23{bottom:567.586667pt;}
.ycc{bottom:568.386667pt;}
.ya2{bottom:576.386667pt;}
.y50{bottom:578.786667pt;}
.y77{bottom:581.186667pt;}
.yf0{bottom:583.586667pt;}
.y22{bottom:585.986667pt;}
.ycb{bottom:586.786667pt;}
.ya1{bottom:594.786667pt;}
.y4f{bottom:597.186667pt;}
.y76{bottom:599.613333pt;}
.yef{bottom:602.013333pt;}
.y21{bottom:604.413333pt;}
.yca{bottom:605.213333pt;}
.y103{bottom:607.613333pt;}
.ya0{bottom:613.213333pt;}
.y4e{bottom:615.613333pt;}
.y20{bottom:622.813333pt;}
.yc9{bottom:623.613333pt;}
.y75{bottom:626.013333pt;}
.yee{bottom:628.413333pt;}
.y9f{bottom:631.613333pt;}
.y4d{bottom:634.013333pt;}
.y1f{bottom:641.213333pt;}
.yc8{bottom:642.013333pt;}
.y102{bottom:644.413333pt;}
.yed{bottom:646.813333pt;}
.y9e{bottom:650.013333pt;}
.y4c{bottom:652.413333pt;}
.yc7{bottom:660.413333pt;}
.y1e{bottom:667.613333pt;}
.y9d{bottom:668.413333pt;}
.y74{bottom:670.813333pt;}
.yec{bottom:673.213333pt;}
.ybb{bottom:676.413333pt;}
.y4b{bottom:678.813333pt;}
.y73{bottom:689.213333pt;}
.yeb{bottom:691.613333pt;}
.y9c{bottom:694.813333pt;}
.y4a{bottom:697.213333pt;}
.y1d{bottom:700.093333pt;}
.y72{bottom:707.613333pt;}
.y9b{bottom:713.213333pt;}
.y49{bottom:715.613333pt;}
.yea{bottom:718.013333pt;}
.y1c{bottom:720.413333pt;}
.yc6{bottom:723.613333pt;}
.y9a{bottom:731.613333pt;}
.y48{bottom:734.013333pt;}
.ye9{bottom:736.413333pt;}
.y1b{bottom:744.893333pt;}
.y99{bottom:750.013333pt;}
.y47{bottom:752.413333pt;}
.y71{bottom:760.413333pt;}
.ye8{bottom:762.813333pt;}
.y1a{bottom:765.213333pt;}
.y98{bottom:768.413333pt;}
.y46{bottom:770.813333pt;}
.yba{bottom:776.413333pt;}
.y70{bottom:778.813333pt;}
.y97{bottom:786.813333pt;}
.y45{bottom:789.213333pt;}
.y19{bottom:789.693333pt;}
.y6f{bottom:797.213333pt;}
.yb9{bottom:802.813333pt;}
.y96{bottom:805.213333pt;}
.y44{bottom:807.613333pt;}
.y18{bottom:810.013333pt;}
.yd8{bottom:813.253333pt;}
.y6e{bottom:815.653333pt;}
.yb8{bottom:821.253333pt;}
.y95{bottom:823.653333pt;}
.y43{bottom:826.053333pt;}
.yd7{bottom:831.653333pt;}
.ye7{bottom:834.053333pt;}
.y17{bottom:836.453333pt;}
.yb7{bottom:839.653333pt;}
.y6d{bottom:842.053333pt;}
.y42{bottom:844.453333pt;}
.y94{bottom:850.053333pt;}
.ye6{bottom:852.453333pt;}
.yb6{bottom:858.053333pt;}
.y16{bottom:862.853333pt;}
.y6c{bottom:868.453333pt;}
.y41{bottom:870.853333pt;}
.y93{bottom:876.453333pt;}
.y15{bottom:881.253333pt;}
.y6b{bottom:886.853333pt;}
.y92{bottom:894.853333pt;}
.y40{bottom:897.253333pt;}
.y6a{bottom:905.253333pt;}
.y14{bottom:907.653333pt;}
.y91{bottom:913.253333pt;}
.ye5{bottom:915.653333pt;}
.y3f{bottom:923.653333pt;}
.y13{bottom:926.053333pt;}
.y90{bottom:931.653333pt;}
.y69{bottom:942.053333pt;}
.y3e{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.y68{bottom:968.453333pt;}
.y3d{bottom:976.453333pt;}
.y11{bottom:978.853333pt;}
.ye4{bottom:986.853333pt;}
.y3c{bottom:994.853333pt;}
.y10{bottom:1005.253333pt;}
.y3b{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.hb{height:25.120000pt;}
.hf{height:35.782187pt;}
.h9{height:44.327188pt;}
.h2{height:48.800000pt;}
.hd{height:53.406250pt;}
.h10{height:54.375000pt;}
.h7{height:54.390938pt;}
.hc{height:54.875000pt;}
.h4{height:56.800000pt;}
.he{height:58.046250pt;}
.ha{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.880000pt;}
.w8{width:75.546667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.w2{width:319.266667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.xd{left:9.600000pt;}
.x5{left:19.360000pt;}
.xa{left:27.720000pt;}
.x7{left:42.080000pt;}
.x3{left:45.440000pt;}
.xb{left:94.431988pt;}
.xe{left:98.591988pt;}
.x14{left:122.431988pt;}
.x13{left:135.226655pt;}
.x15{left:140.506655pt;}
.x2{left:143.240000pt;}
.x1{left:188.826667pt;}
.x16{left:216.506655pt;}
.x12{left:263.426655pt;}
.x10{left:342.306655pt;}
.xf{left:354.786655pt;}
.x8{left:373.666667pt;}
.x11{left:396.866655pt;}
.x9{left:583.293333pt;}
.x4{left:676.453333pt;}
.xc{left:718.213333pt;}
}




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