
    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_811832cac680f5b839430b3a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_d3117ff401ee846177df7a4b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_0c18f156645196f1db8da518.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104492;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_56116f5e55ba6beb03631fba.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_3efe271dde0b67504292fb2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_06c594afadb577f045a37b60.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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;}
.m1{transform:matrix(0.219513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219513,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lse{letter-spacing:-0.828000px;}
.ls14{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.017280px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.286800px;}
.ls11{letter-spacing:0.319680px;}
.ls8{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.413400px;}
.ls5{letter-spacing:0.445200px;}
.ls7{letter-spacing:0.460200px;}
.ls3{letter-spacing:0.555000px;}
.lsa{letter-spacing:0.612000px;}
.lsb{letter-spacing:0.642720px;}
.ls6{letter-spacing:0.666720px;}
.ls0{letter-spacing:2.429280px;}
.ls1{letter-spacing:2.430000px;}
.ls4{letter-spacing:4.626000px;}
.lsc{letter-spacing:7.866720px;}
.lsf{letter-spacing:41.706720px;}
.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:-18.414720px;}
.ws9{word-spacing:-17.225280px;}
.wsc{word-spacing:-17.026680px;}
.ws6{word-spacing:-16.973280px;}
.wsb{word-spacing:-16.900080px;}
.ws3{word-spacing:-16.613280px;}
.ws8{word-spacing:-16.506480px;}
.wsd{word-spacing:-16.353480px;}
.ws1{word-spacing:-15.840720px;}
.wsa{word-spacing:-15.785280px;}
.ws2{word-spacing:-13.410720px;}
.ws5{word-spacing:-10.808640px;}
.ws7{word-spacing:-10.791360px;}
.ws4{word-spacing:0.000000px;}
._2d{margin-left:-6.221040px;}
._3{margin-left:-4.835520px;}
._e{margin-left:-3.764880px;}
._8{margin-left:-2.748960px;}
._1{margin-left:-1.226880px;}
._2{width:1.075680px;}
._7{width:2.156400px;}
._0{width:3.373920px;}
._5{width:4.905453px;}
._c{width:6.314029px;}
._a{width:7.948080px;}
._b{width:9.203040px;}
._13{width:10.784160px;}
._f{width:11.832480px;}
._9{width:12.967920px;}
._d{width:14.222880px;}
._2a{width:15.477840px;}
._15{width:18.352800px;}
._24{width:19.475280px;}
._6{width:20.620289px;}
._4{width:22.199667px;}
._16{width:23.250960px;}
._12{width:24.717600px;}
._17{width:25.899120px;}
._1b{width:27.848160px;}
._1a{width:29.043360px;}
._34{width:30.292320px;}
._20{width:31.824000px;}
._1f{width:32.927760px;}
._28{width:34.270560px;}
._26{width:36.513360px;}
._27{width:38.963520px;}
._29{width:40.218480px;}
._23{width:42.011280px;}
._25{width:43.027200px;}
._1c{width:46.074960px;}
._1e{width:48.286080px;}
._1d{width:49.600800px;}
._19{width:56.473200px;}
._11{width:58.803840px;}
._10{width:59.879520px;}
._14{width:61.672320px;}
._18{width:62.927280px;}
._21{width:64.122480px;}
._22{width:65.496960px;}
._2b{width:66.849840px;}
._2c{width:68.133600px;}
._2f{width:73.320480px;}
._31{width:103.026240px;}
._32{width:104.400720px;}
._30{width:115.934400px;}
._33{width:118.361520px;}
._37{width:124.241040px;}
._35{width:134.346240px;}
._36{width:139.599360px;}
._38{width:170.734320px;}
._2e{width:321.150240px;}
.fc6{color:rgb(5,99,193);}
.fc4{color:rgb(68,114,196);}
.fc5{color:rgb(33,33,33);}
.fc3{color:rgb(71,71,71);}
.fc2{color:rgb(40,40,40);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y23{bottom:111.456000px;}
.y20{bottom:125.496000px;}
.yae{bottom:125.676000px;}
.y46{bottom:126.216000px;}
.y64{bottom:128.016000px;}
.y22{bottom:137.376000px;}
.y86{bottom:141.876000px;}
.y77{bottom:147.816000px;}
.y8f{bottom:150.150000px;}
.y1f{bottom:151.230000px;}
.y63{bottom:153.930000px;}
.y21{bottom:163.290000px;}
.yad{bottom:163.470000px;}
.y45{bottom:164.010000px;}
.y76{bottom:173.730000px;}
.y8e{bottom:176.070000px;}
.y62{bottom:179.670000px;}
.y1e{bottom:189.210000px;}
.y44{bottom:189.930000px;}
.y75{bottom:199.650000px;}
.yac{bottom:201.450000px;}
.y8d{bottom:201.810000px;}
.y61{bottom:205.590000px;}
.y43{bottom:215.670000px;}
.y74{bottom:225.570000px;}
.y1d{bottom:227.010000px;}
.y8c{bottom:227.730000px;}
.y85{bottom:231.510000px;}
.yab{bottom:239.250000px;}
.y42{bottom:241.590000px;}
.y60{bottom:243.570000px;}
.y73{bottom:251.310000px;}
.y8b{bottom:253.650000px;}
.y84{bottom:257.430000px;}
.y41{bottom:267.510000px;}
.y5f{bottom:269.310000px;}
.y1c{bottom:270.930000px;}
.yaa{bottom:277.050000px;}
.y72{bottom:277.230000px;}
.y8a{bottom:279.570000px;}
.y83{bottom:283.170000px;}
.y5e{bottom:295.230000px;}
.y1b{bottom:296.850000px;}
.y71{bottom:303.150000px;}
.y40{bottom:305.310000px;}
.ya9{bottom:315.030000px;}
.y5d{bottom:321.195000px;}
.y1a{bottom:322.635000px;}
.y3f{bottom:331.275000px;}
.ya8{bottom:340.995000px;}
.y5c{bottom:347.115000px;}
.y19{bottom:348.555000px;}
.y3e{bottom:357.195000px;}
.ya7{bottom:366.735000px;}
.y5b{bottom:372.855000px;}
.y18{bottom:374.475000px;}
.y3d{bottom:383.115000px;}
.ya6{bottom:392.655000px;}
.y5a{bottom:398.775000px;}
.y17{bottom:400.395000px;}
.y3c{bottom:408.855000px;}
.y82{bottom:410.835000px;}
.ya5{bottom:418.575000px;}
.y59{bottom:424.695000px;}
.y16{bottom:426.135000px;}
.y3b{bottom:434.775000px;}
.ya4{bottom:444.315000px;}
.y81{bottom:448.635000px;}
.y70{bottom:450.615000px;}
.y15{bottom:452.055000px;}
.y3a{bottom:460.695000px;}
.y58{bottom:462.495000px;}
.ya3{bottom:470.235000px;}
.y80{bottom:474.555000px;}
.y6f{bottom:476.355000px;}
.y14{bottom:477.975000px;}
.y39{bottom:486.615000px;}
.y57{bottom:488.415000px;}
.ya2{bottom:496.155000px;}
.y7f{bottom:500.475000px;}
.y6e{bottom:502.275000px;}
.y38{bottom:512.355000px;}
.y56{bottom:514.335000px;}
.y13{bottom:521.715000px;}
.ya1{bottom:522.435000px;}
.y7e{bottom:526.215000px;}
.y6d{bottom:528.195000px;}
.y37{bottom:538.275000px;}
.y55{bottom:540.075000px;}
.y12{bottom:547.635000px;}
.ya0{bottom:548.355000px;}
.y6c{bottom:553.935000px;}
.y7d{bottom:564.195000px;}
.y54{bottom:565.995000px;}
.y9f{bottom:574.305000px;}
.y36{bottom:576.105000px;}
.y11{bottom:585.645000px;}
.y7c{bottom:589.965000px;}
.y53{bottom:591.945000px;}
.y6b{bottom:597.885000px;}
.y9e{bottom:600.225000px;}
.y35{bottom:602.025000px;}
.y10{bottom:611.385000px;}
.y7b{bottom:615.885000px;}
.y6a{bottom:623.805000px;}
.y9d{bottom:625.965000px;}
.y34{bottom:627.945000px;}
.y52{bottom:629.745000px;}
.yf{bottom:637.305000px;}
.y7a{bottom:641.805000px;}
.y69{bottom:649.725000px;}
.y9c{bottom:651.885000px;}
.y33{bottom:653.865000px;}
.y51{bottom:655.665000px;}
.ye{bottom:663.225000px;}
.y79{bottom:667.725000px;}
.y9b{bottom:677.805000px;}
.y32{bottom:679.605000px;}
.y50{bottom:681.585000px;}
.yd{bottom:689.145000px;}
.y68{bottom:693.465000px;}
.y9a{bottom:703.725000px;}
.y31{bottom:705.525000px;}
.yc{bottom:714.885000px;}
.y4f{bottom:719.385000px;}
.y99{bottom:729.465000px;}
.y30{bottom:731.445000px;}
.yb{bottom:740.805000px;}
.y4e{bottom:745.305000px;}
.y98{bottom:755.385000px;}
.y2f{bottom:757.365000px;}
.ya{bottom:766.725000px;}
.y78{bottom:769.245000px;}
.y4d{bottom:771.225000px;}
.y97{bottom:781.305000px;}
.y9{bottom:792.645000px;}
.y2e{bottom:795.165000px;}
.y4c{bottom:796.965000px;}
.y96{bottom:807.225000px;}
.y8{bottom:818.385000px;}
.y2d{bottom:821.130000px;}
.y4b{bottom:822.930000px;}
.y95{bottom:833.010000px;}
.y7{bottom:834.990000px;}
.y2c{bottom:846.870000px;}
.y4a{bottom:848.850000px;}
.y94{bottom:858.930000px;}
.y6{bottom:861.810000px;}
.y2b{bottom:872.790000px;}
.y49{bottom:874.770000px;}
.y93{bottom:884.850000px;}
.y67{bottom:886.650000px;}
.y5{bottom:897.990000px;}
.y2a{bottom:898.710000px;}
.y89{bottom:900.510000px;}
.y92{bottom:910.770000px;}
.y48{bottom:912.570000px;}
.y29{bottom:924.630000px;}
.y88{bottom:926.430000px;}
.y4{bottom:926.610000px;}
.y91{bottom:936.510000px;}
.y28{bottom:950.370000px;}
.y90{bottom:962.430000px;}
.y87{bottom:964.230000px;}
.y3{bottom:966.030000px;}
.y27{bottom:976.290000px;}
.y66{bottom:988.350000px;}
.y26{bottom:1002.210000px;}
.y2{bottom:1012.110000px;}
.y65{bottom:1014.270000px;}
.y47{bottom:1028.130000px;}
.y25{bottom:1040.010000px;}
.y1{bottom:1056.030000px;}
.y24{bottom:1065.930000px;}
.h4{height:43.128633px;}
.h5{height:53.603086px;}
.h2{height:54.069961px;}
.h3{height:59.221406px;}
.h1{height:92.505234px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:80.999986px;}
.xc{left:91.655986px;}
.x1c{left:108.035986px;}
.x2{left:120.455986px;}
.x3{left:131.795986px;}
.x1d{left:135.035986px;}
.x4{left:146.375986px;}
.x5{left:157.709986px;}
.xd{left:246.449986px;}
.x6{left:261.569986px;}
.x7{left:272.729986px;}
.x8{left:447.734986px;}
.x15{left:485.564986px;}
.x1f{left:512.564986px;}
.x9{left:533.624986px;}
.x1e{left:539.564986px;}
.x16{left:606.164986px;}
.xa{left:628.484986px;}
.xe{left:647.564986px;}
.xf{left:651.344986px;}
.x17{left:675.329986px;}
.x10{left:685.589986px;}
.x11{left:689.549986px;}
.x12{left:725.009986px;}
.x13{left:728.789986px;}
.x1b{left:751.469986px;}
.x1a{left:777.029986px;}
.x14{left:782.429986px;}
.x18{left:787.469986px;}
.x19{left:793.229986px;}
.xb{left:832.289986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lse{letter-spacing:-0.736000pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.015360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.254933pt;}
.ls11{letter-spacing:0.284160pt;}
.ls8{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.367467pt;}
.ls5{letter-spacing:0.395733pt;}
.ls7{letter-spacing:0.409067pt;}
.ls3{letter-spacing:0.493333pt;}
.lsa{letter-spacing:0.544000pt;}
.lsb{letter-spacing:0.571307pt;}
.ls6{letter-spacing:0.592640pt;}
.ls0{letter-spacing:2.159360pt;}
.ls1{letter-spacing:2.160000pt;}
.ls4{letter-spacing:4.112000pt;}
.lsc{letter-spacing:6.992640pt;}
.lsf{letter-spacing:37.072640pt;}
.ws0{word-spacing:-16.368640pt;}
.ws9{word-spacing:-15.311360pt;}
.wsc{word-spacing:-15.134827pt;}
.ws6{word-spacing:-15.087360pt;}
.wsb{word-spacing:-15.022293pt;}
.ws3{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.672427pt;}
.wsd{word-spacing:-14.536427pt;}
.ws1{word-spacing:-14.080640pt;}
.wsa{word-spacing:-14.031360pt;}
.ws2{word-spacing:-11.920640pt;}
.ws5{word-spacing:-9.607680pt;}
.ws7{word-spacing:-9.592320pt;}
.ws4{word-spacing:0.000000pt;}
._2d{margin-left:-5.529813pt;}
._3{margin-left:-4.298240pt;}
._e{margin-left:-3.346560pt;}
._8{margin-left:-2.443520pt;}
._1{margin-left:-1.090560pt;}
._2{width:0.956160pt;}
._7{width:1.916800pt;}
._0{width:2.999040pt;}
._5{width:4.360402pt;}
._c{width:5.612470pt;}
._a{width:7.064960pt;}
._b{width:8.180480pt;}
._13{width:9.585920pt;}
._f{width:10.517760pt;}
._9{width:11.527040pt;}
._d{width:12.642560pt;}
._2a{width:13.758080pt;}
._15{width:16.313600pt;}
._24{width:17.311360pt;}
._6{width:18.329146pt;}
._4{width:19.733038pt;}
._16{width:20.667520pt;}
._12{width:21.971200pt;}
._17{width:23.021440pt;}
._1b{width:24.753920pt;}
._1a{width:25.816320pt;}
._34{width:26.926507pt;}
._20{width:28.288000pt;}
._1f{width:29.269120pt;}
._28{width:30.462720pt;}
._26{width:32.456320pt;}
._27{width:34.634240pt;}
._29{width:35.749760pt;}
._23{width:37.343360pt;}
._25{width:38.246400pt;}
._1c{width:40.955520pt;}
._1e{width:42.920960pt;}
._1d{width:44.089600pt;}
._19{width:50.198400pt;}
._11{width:52.270080pt;}
._10{width:53.226240pt;}
._14{width:54.819840pt;}
._18{width:55.935360pt;}
._21{width:56.997760pt;}
._22{width:58.219520pt;}
._2b{width:59.422080pt;}
._2c{width:60.563200pt;}
._2f{width:65.173760pt;}
._31{width:91.578880pt;}
._32{width:92.800640pt;}
._30{width:103.052800pt;}
._33{width:105.210240pt;}
._37{width:110.436480pt;}
._35{width:119.418880pt;}
._36{width:124.088320pt;}
._38{width:151.763840pt;}
._2e{width:285.466880pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:99.072000pt;}
.y20{bottom:111.552000pt;}
.yae{bottom:111.712000pt;}
.y46{bottom:112.192000pt;}
.y64{bottom:113.792000pt;}
.y22{bottom:122.112000pt;}
.y86{bottom:126.112000pt;}
.y77{bottom:131.392000pt;}
.y8f{bottom:133.466667pt;}
.y1f{bottom:134.426667pt;}
.y63{bottom:136.826667pt;}
.y21{bottom:145.146667pt;}
.yad{bottom:145.306667pt;}
.y45{bottom:145.786667pt;}
.y76{bottom:154.426667pt;}
.y8e{bottom:156.506667pt;}
.y62{bottom:159.706667pt;}
.y1e{bottom:168.186667pt;}
.y44{bottom:168.826667pt;}
.y75{bottom:177.466667pt;}
.yac{bottom:179.066667pt;}
.y8d{bottom:179.386667pt;}
.y61{bottom:182.746667pt;}
.y43{bottom:191.706667pt;}
.y74{bottom:200.506667pt;}
.y1d{bottom:201.786667pt;}
.y8c{bottom:202.426667pt;}
.y85{bottom:205.786667pt;}
.yab{bottom:212.666667pt;}
.y42{bottom:214.746667pt;}
.y60{bottom:216.506667pt;}
.y73{bottom:223.386667pt;}
.y8b{bottom:225.466667pt;}
.y84{bottom:228.826667pt;}
.y41{bottom:237.786667pt;}
.y5f{bottom:239.386667pt;}
.y1c{bottom:240.826667pt;}
.yaa{bottom:246.266667pt;}
.y72{bottom:246.426667pt;}
.y8a{bottom:248.506667pt;}
.y83{bottom:251.706667pt;}
.y5e{bottom:262.426667pt;}
.y1b{bottom:263.866667pt;}
.y71{bottom:269.466667pt;}
.y40{bottom:271.386667pt;}
.ya9{bottom:280.026667pt;}
.y5d{bottom:285.506667pt;}
.y1a{bottom:286.786667pt;}
.y3f{bottom:294.466667pt;}
.ya8{bottom:303.106667pt;}
.y5c{bottom:308.546667pt;}
.y19{bottom:309.826667pt;}
.y3e{bottom:317.506667pt;}
.ya7{bottom:325.986667pt;}
.y5b{bottom:331.426667pt;}
.y18{bottom:332.866667pt;}
.y3d{bottom:340.546667pt;}
.ya6{bottom:349.026667pt;}
.y5a{bottom:354.466667pt;}
.y17{bottom:355.906667pt;}
.y3c{bottom:363.426667pt;}
.y82{bottom:365.186667pt;}
.ya5{bottom:372.066667pt;}
.y59{bottom:377.506667pt;}
.y16{bottom:378.786667pt;}
.y3b{bottom:386.466667pt;}
.ya4{bottom:394.946667pt;}
.y81{bottom:398.786667pt;}
.y70{bottom:400.546667pt;}
.y15{bottom:401.826667pt;}
.y3a{bottom:409.506667pt;}
.y58{bottom:411.106667pt;}
.ya3{bottom:417.986667pt;}
.y80{bottom:421.826667pt;}
.y6f{bottom:423.426667pt;}
.y14{bottom:424.866667pt;}
.y39{bottom:432.546667pt;}
.y57{bottom:434.146667pt;}
.ya2{bottom:441.026667pt;}
.y7f{bottom:444.866667pt;}
.y6e{bottom:446.466667pt;}
.y38{bottom:455.426667pt;}
.y56{bottom:457.186667pt;}
.y13{bottom:463.746667pt;}
.ya1{bottom:464.386667pt;}
.y7e{bottom:467.746667pt;}
.y6d{bottom:469.506667pt;}
.y37{bottom:478.466667pt;}
.y55{bottom:480.066667pt;}
.y12{bottom:486.786667pt;}
.ya0{bottom:487.426667pt;}
.y6c{bottom:492.386667pt;}
.y7d{bottom:501.506667pt;}
.y54{bottom:503.106667pt;}
.y9f{bottom:510.493333pt;}
.y36{bottom:512.093333pt;}
.y11{bottom:520.573333pt;}
.y7c{bottom:524.413333pt;}
.y53{bottom:526.173333pt;}
.y6b{bottom:531.453333pt;}
.y9e{bottom:533.533333pt;}
.y35{bottom:535.133333pt;}
.y10{bottom:543.453333pt;}
.y7b{bottom:547.453333pt;}
.y6a{bottom:554.493333pt;}
.y9d{bottom:556.413333pt;}
.y34{bottom:558.173333pt;}
.y52{bottom:559.773333pt;}
.yf{bottom:566.493333pt;}
.y7a{bottom:570.493333pt;}
.y69{bottom:577.533333pt;}
.y9c{bottom:579.453333pt;}
.y33{bottom:581.213333pt;}
.y51{bottom:582.813333pt;}
.ye{bottom:589.533333pt;}
.y79{bottom:593.533333pt;}
.y9b{bottom:602.493333pt;}
.y32{bottom:604.093333pt;}
.y50{bottom:605.853333pt;}
.yd{bottom:612.573333pt;}
.y68{bottom:616.413333pt;}
.y9a{bottom:625.533333pt;}
.y31{bottom:627.133333pt;}
.yc{bottom:635.453333pt;}
.y4f{bottom:639.453333pt;}
.y99{bottom:648.413333pt;}
.y30{bottom:650.173333pt;}
.yb{bottom:658.493333pt;}
.y4e{bottom:662.493333pt;}
.y98{bottom:671.453333pt;}
.y2f{bottom:673.213333pt;}
.ya{bottom:681.533333pt;}
.y78{bottom:683.773333pt;}
.y4d{bottom:685.533333pt;}
.y97{bottom:694.493333pt;}
.y9{bottom:704.573333pt;}
.y2e{bottom:706.813333pt;}
.y4c{bottom:708.413333pt;}
.y96{bottom:717.533333pt;}
.y8{bottom:727.453333pt;}
.y2d{bottom:729.893333pt;}
.y4b{bottom:731.493333pt;}
.y95{bottom:740.453333pt;}
.y7{bottom:742.213333pt;}
.y2c{bottom:752.773333pt;}
.y4a{bottom:754.533333pt;}
.y94{bottom:763.493333pt;}
.y6{bottom:766.053333pt;}
.y2b{bottom:775.813333pt;}
.y49{bottom:777.573333pt;}
.y93{bottom:786.533333pt;}
.y67{bottom:788.133333pt;}
.y5{bottom:798.213333pt;}
.y2a{bottom:798.853333pt;}
.y89{bottom:800.453333pt;}
.y92{bottom:809.573333pt;}
.y48{bottom:811.173333pt;}
.y29{bottom:821.893333pt;}
.y88{bottom:823.493333pt;}
.y4{bottom:823.653333pt;}
.y91{bottom:832.453333pt;}
.y28{bottom:844.773333pt;}
.y90{bottom:855.493333pt;}
.y87{bottom:857.093333pt;}
.y3{bottom:858.693333pt;}
.y27{bottom:867.813333pt;}
.y66{bottom:878.533333pt;}
.y26{bottom:890.853333pt;}
.y2{bottom:899.653333pt;}
.y65{bottom:901.573333pt;}
.y47{bottom:913.893333pt;}
.y25{bottom:924.453333pt;}
.y1{bottom:938.693333pt;}
.y24{bottom:947.493333pt;}
.h4{height:38.336562pt;}
.h5{height:47.647188pt;}
.h2{height:48.062188pt;}
.h3{height:52.641250pt;}
.h1{height:82.226875pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.999988pt;}
.xc{left:81.471988pt;}
.x1c{left:96.031988pt;}
.x2{left:107.071988pt;}
.x3{left:117.151988pt;}
.x1d{left:120.031988pt;}
.x4{left:130.111988pt;}
.x5{left:140.186655pt;}
.xd{left:219.066655pt;}
.x6{left:232.506655pt;}
.x7{left:242.426655pt;}
.x8{left:397.986655pt;}
.x15{left:431.613321pt;}
.x1f{left:455.613321pt;}
.x9{left:474.333321pt;}
.x1e{left:479.613321pt;}
.x16{left:538.813321pt;}
.xa{left:558.653321pt;}
.xe{left:575.613321pt;}
.xf{left:578.973321pt;}
.x17{left:600.293321pt;}
.x10{left:609.413321pt;}
.x11{left:612.933321pt;}
.x12{left:644.453321pt;}
.x13{left:647.813321pt;}
.x1b{left:667.973321pt;}
.x1a{left:690.693321pt;}
.x14{left:695.493321pt;}
.x18{left:699.973321pt;}
.x19{left:705.093321pt;}
.xb{left:739.813321pt;}
}




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