
    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_437e794e0e6962f90c5d7989.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_12ef2c19176db118feb580ef.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_9f843d8d2948cf7bdb3a2238.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_ea3a9b14ff3818ca38af6aa0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7061ebd3555937196a3a9872.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923340;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.903040px;}
.ls1c{letter-spacing:-0.861120px;}
.ls24{letter-spacing:-0.758160px;}
.ls12{letter-spacing:-0.696960px;}
.ls13{letter-spacing:-0.570240px;}
.ls10{letter-spacing:-0.506880px;}
.lsc{letter-spacing:-0.316800px;}
.lsf{letter-spacing:-0.190080px;}
.ls19{letter-spacing:-0.132480px;}
.lse{letter-spacing:-0.119520px;}
.ls18{letter-spacing:-0.084240px;}
.lsb{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.063360px;}
.lsd{letter-spacing:0.120240px;}
.ls27{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.190080px;}
.ls29{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.264960px;}
.ls0{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.316800px;}
.ls1d{letter-spacing:0.331200px;}
.ls1b{letter-spacing:0.336960px;}
.ls28{letter-spacing:0.361152px;}
.ls1f{letter-spacing:0.421200px;}
.ls20{letter-spacing:1.837440px;}
.ls23{letter-spacing:2.534400px;}
.ls22{letter-spacing:8.262144px;}
.ls26{letter-spacing:8.300160px;}
.ls21{letter-spacing:52.208640px;}
.ls25{letter-spacing:52.704000px;}
.ls8{letter-spacing:135.717120px;}
.ls14{letter-spacing:205.513920px;}
.ls15{letter-spacing:311.356800px;}
.ls7{letter-spacing:541.837440px;}
.ls16{letter-spacing:570.576960px;}
.ls5{letter-spacing:583.591680px;}
.ls3{letter-spacing:667.797120px;}
.lsa{letter-spacing:846.362880px;}
.ls1e{letter-spacing:846.385920px;}
.ls1{letter-spacing:867.254400px;}
.ls4{letter-spacing:888.117120px;}
.ls6{letter-spacing:1024.974720px;}
.ls9{letter-spacing:1468.494720px;}
.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;}
}
.ws22{word-spacing:-63.360000px;}
.ws0{word-spacing:-33.546960px;}
.ws23{word-spacing:-23.755680px;}
.ws21{word-spacing:-23.334480px;}
.ws31{word-spacing:-20.160000px;}
.ws1d{word-spacing:-18.745920px;}
.ws11{word-spacing:-18.282240px;}
.ws4{word-spacing:-17.804160px;}
.ws1{word-spacing:-17.677440px;}
.ws5{word-spacing:-17.614080px;}
.ws2{word-spacing:-17.424000px;}
.ws12{word-spacing:-17.297280px;}
.ws3{word-spacing:-17.107200px;}
.ws7{word-spacing:-17.043840px;}
.ws6{word-spacing:-16.917120px;}
.ws19{word-spacing:-3.841920px;}
.ws28{word-spacing:-3.294720px;}
.ws3e{word-spacing:-2.534400px;}
.ws25{word-spacing:-1.837440px;}
.ws10{word-spacing:-1.203840px;}
.wse{word-spacing:-1.077120px;}
.ws1e{word-spacing:-0.758160px;}
.ws15{word-spacing:-0.633600px;}
.wsd{word-spacing:-0.380160px;}
.wsc{word-spacing:-0.360720px;}
.ws1f{word-spacing:-0.264960px;}
.ws20{word-spacing:-0.252720px;}
.ws39{word-spacing:-0.144000px;}
.ws36{word-spacing:-0.126720px;}
.ws3d{word-spacing:-0.108000px;}
.ws9{word-spacing:-0.063360px;}
.ws8{word-spacing:0.000000px;}
.wsb{word-spacing:0.059760px;}
.ws17{word-spacing:0.132480px;}
.wsa{word-spacing:0.316800px;}
.ws13{word-spacing:0.421200px;}
.ws14{word-spacing:0.463680px;}
.ws26{word-spacing:0.696960px;}
.ws1c{word-spacing:0.861120px;}
.ws3c{word-spacing:1.077120px;}
.ws2a{word-spacing:1.095120px;}
.ws27{word-spacing:1.774080px;}
.ws30{word-spacing:2.154240px;}
.ws2c{word-spacing:2.471040px;}
.ws2d{word-spacing:2.534400px;}
.ws2f{word-spacing:2.851200px;}
.ws35{word-spacing:3.231360px;}
.ws16{word-spacing:3.312000px;}
.ws1a{word-spacing:4.040640px;}
.ws38{word-spacing:4.625280px;}
.ws18{word-spacing:6.955200px;}
.ws40{word-spacing:7.539840px;}
.ws3b{word-spacing:8.236800px;}
.ws2e{word-spacing:8.997120px;}
.ws24{word-spacing:9.694080px;}
.ws33{word-spacing:10.264320px;}
.ws32{word-spacing:10.391040px;}
.ws34{word-spacing:11.151360px;}
.ws3f{word-spacing:11.848320px;}
.ws29{word-spacing:12.545280px;}
.ws41{word-spacing:13.305600px;}
.ws37{word-spacing:16.156800px;}
.ws2b{word-spacing:17.614080px;}
.wsf{word-spacing:32.757120px;}
.ws3a{word-spacing:41.374080px;}
.ws1b{word-spacing:44.380800px;}
._9{margin-left:-17.893440px;}
._8{margin-left:-13.443840px;}
._5{margin-left:-12.101760px;}
._4{margin-left:-9.169920px;}
._6{margin-left:-7.741440px;}
._7{margin-left:-3.020256px;}
._0{margin-left:-1.221120px;}
._1{width:1.541808px;}
._2{width:6.690240px;}
._c{width:8.519616px;}
._a{width:59.304960px;}
._b{width:69.315840px;}
._3{width:846.370512px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(51,90,147);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.fs4{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.420000px;}
.y6e{bottom:5.040000px;}
.y6c{bottom:5.220000px;}
.y2d{bottom:12.420000px;}
.y2f{bottom:21.600000px;}
.y1e{bottom:25.920000px;}
.y6{bottom:56.527200px;}
.y5{bottom:75.064320px;}
.y28{bottom:119.350080px;}
.y9e{bottom:132.167520px;}
.y77{bottom:134.825760px;}
.y27{bottom:139.324320px;}
.y76{bottom:154.800000px;}
.y26{bottom:159.298560px;}
.y9d{bottom:170.151840px;}
.y75{bottom:183.960000px;}
.y25{bottom:186.654240px;}
.y9c{bottom:189.951840px;}
.y9b{bottom:209.926080px;}
.y24{bottom:214.200000px;}
.y74{bottom:226.800000px;}
.y9a{bottom:229.900320px;}
.y23{bottom:237.414240px;}
.y73{bottom:246.600000px;}
.y22{bottom:260.097120px;}
.y99{bottom:267.694560px;}
.y21{bottom:282.780000px;}
.y98{bottom:287.668800px;}
.y72{bottom:288.360000px;}
.y1d{bottom:302.760000px;}
.y97{bottom:307.643040px;}
.y1f{bottom:310.500000px;}
.y71{bottom:324.900000px;}
.y20{bottom:328.680000px;}
.y54{bottom:332.650080px;}
.y96{bottom:345.437280px;}
.y1c{bottom:356.580000px;}
.y70{bottom:361.260000px;}
.y95{bottom:365.411520px;}
.y53{bottom:367.925760px;}
.y1b{bottom:384.300000px;}
.y94{bottom:385.385760px;}
.y6f{bottom:397.620000px;}
.y93{bottom:405.360000px;}
.y52{bottom:405.720000px;}
.y1a{bottom:412.200000px;}
.y51{bottom:425.340000px;}
.y6d{bottom:434.160000px;}
.y19{bottom:440.100000px;}
.y8f{bottom:440.651520px;}
.y92{bottom:444.960000px;}
.y50{bottom:455.220000px;}
.y8e{bottom:460.625760px;}
.y18{bottom:468.000000px;}
.y6b{bottom:470.520000px;}
.y8d{bottom:480.600000px;}
.y91{bottom:487.080000px;}
.y17{bottom:495.900000px;}
.y4f{bottom:498.240000px;}
.y6a{bottom:504.534240px;}
.y90{bottom:509.040000px;}
.y4e{bottom:517.680000px;}
.y8c{bottom:522.360000px;}
.y16{bottom:525.240000px;}
.y69{bottom:532.080000px;}
.y4d{bottom:547.740000px;}
.y68{bottom:552.060000px;}
.y15{bottom:557.100000px;}
.y67{bottom:571.875840px;}
.y8b{bottom:574.391520px;}
.y14{bottom:590.220000px;}
.y4c{bottom:590.582880px;}
.y8a{bottom:594.365760px;}
.y66{bottom:599.421600px;}
.y89{bottom:614.340000px;}
.y65{bottom:619.221600px;}
.y4b{bottom:622.627200px;}
.y88{bottom:634.140000px;}
.y13{bottom:638.473680px;}
.y64{bottom:639.195840px;}
.y3b{bottom:650.355120px;}
.y87{bottom:654.120000px;}
.y4a{bottom:654.481440px;}
.y63{bottom:659.170080px;}
.y3a{bottom:672.313680px;}
.y86{bottom:674.100000px;}
.y12{bottom:676.259100px;}
.y49{bottom:686.335680px;}
.y62{bottom:686.525760px;}
.y39{bottom:694.272240px;}
.y61{bottom:706.500000px;}
.y85{bottom:712.620000px;}
.y38{bottom:716.048640px;}
.y48{bottom:718.380000px;}
.y11{bottom:721.800000px;}
.y60{bottom:735.480000px;}
.y37{bottom:737.825040px;}
.y47{bottom:747.360000px;}
.y84{bottom:752.807520px;}
.y36{bottom:759.601440px;}
.y10{bottom:762.664320px;}
.y83{bottom:772.607520px;}
.y5f{bottom:778.528800px;}
.y35{bottom:781.560000px;}
.yf{bottom:790.020000px;}
.y46{bottom:790.380000px;}
.y82{bottom:792.581760px;}
.y5e{bottom:798.328800px;}
.y45{bottom:808.561440px;}
.y34{bottom:811.260000px;}
.ye{bottom:817.200000px;}
.y5d{bottom:818.303040px;}
.y81{bottom:830.566080px;}
.y44{bottom:831.960720px;}
.y5c{bottom:838.277280px;}
.y80{bottom:850.366080px;}
.y33{bottom:854.094240px;}
.y43{bottom:855.360000px;}
.yd{bottom:855.522000px;}
.y5b{bottom:865.632960px;}
.y7f{bottom:870.340320px;}
.y42{bottom:878.040000px;}
.y32{bottom:881.640000px;}
.y5a{bottom:885.607200px;}
.yc{bottom:890.091000px;}
.y7e{bottom:890.314560px;}
.y31{bottom:897.120000px;}
.y41{bottom:900.720000px;}
.y59{bottom:905.407200px;}
.y7d{bottom:910.114560px;}
.y40{bottom:923.220000px;}
.yb{bottom:924.660000px;}
.y7c{bottom:930.088800px;}
.y2e{bottom:934.020000px;}
.y58{bottom:943.391520px;}
.y3f{bottom:945.900000px;}
.y7b{bottom:950.063040px;}
.y57{bottom:963.365760px;}
.ya{bottom:965.332800px;}
.y3e{bottom:968.400000px;}
.y2c{bottom:971.100000px;}
.y2b{bottom:978.840000px;}
.y56{bottom:983.165760px;}
.y7a{bottom:987.857280px;}
.y3d{bottom:991.080000px;}
.y9{bottom:992.878560px;}
.y55{bottom:1003.140000px;}
.y79{bottom:1007.831520px;}
.y2a{bottom:1008.360000px;}
.y3c{bottom:1013.760000px;}
.y8{bottom:1020.234240px;}
.y78{bottom:1027.805760px;}
.y29{bottom:1042.740000px;}
.y7{bottom:1047.780000px;}
.y4{bottom:1065.967200px;}
.y3{bottom:1083.961440px;}
.y2{bottom:1102.145760px;}
.y1{bottom:1120.140000px;}
.h14{height:19.798500px;}
.h13{height:19.800000px;}
.h12{height:19.980000px;}
.hc{height:27.000000px;}
.he{height:36.180000px;}
.hd{height:36.360000px;}
.h16{height:39.313477px;}
.h5{height:43.565273px;}
.h8{height:45.178500px;}
.h7{height:46.127812px;}
.h1{height:46.189687px;}
.hb{height:48.224531px;}
.hf{height:48.289219px;}
.h2{height:52.400689px;}
.h15{height:52.488281px;}
.h10{height:61.329023px;}
.ha{height:61.411289px;}
.h11{height:69.675578px;}
.h9{height:85.092727px;}
.h4{height:87.538008px;}
.h3{height:87.655430px;}
.h6{height:95.924883px;}
.h0{height:1188.000000px;}
.w2{width:78.840000px;}
.w6{width:111.960000px;}
.w5{width:175.140000px;}
.w3{width:211.861500px;}
.w4{width:233.820000px;}
.w1{width:297.000000px;}
.w8{width:349.560000px;}
.w7{width:587.160000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x24{left:6.840000px;}
.xd{left:8.100000px;}
.x15{left:18.360000px;}
.x1d{left:19.980000px;}
.x1f{left:21.240000px;}
.x1c{left:22.320000px;}
.x19{left:25.740000px;}
.x14{left:28.440000px;}
.x1e{left:37.080000px;}
.x18{left:48.240000px;}
.x1b{left:62.460000px;}
.x17{left:70.740000px;}
.x1a{left:87.120000px;}
.x20{left:91.260000px;}
.x4{left:108.002880px;}
.x23{left:109.440000px;}
.x8{left:111.240000px;}
.xc{left:116.100000px;}
.xa{left:133.730460px;}
.x21{left:134.997840px;}
.x11{left:154.440000px;}
.x12{left:156.240000px;}
.x22{left:162.030240px;}
.xb{left:167.217300px;}
.x6{left:218.517120px;}
.xf{left:219.957120px;}
.x25{left:222.840000px;}
.x10{left:275.032800px;}
.x13{left:283.860000px;}
.x28{left:309.960000px;}
.x7{left:339.661800px;}
.x9{left:363.960000px;}
.xe{left:413.460000px;}
.x5{left:459.000000px;}
.x26{left:460.440000px;}
.x16{left:576.180000px;}
.x1{left:696.420000px;}
.x3{left:726.832800px;}
.x2{left:809.992800px;}
.x27{left:814.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.580480pt;}
.ls1c{letter-spacing:-0.765440pt;}
.ls24{letter-spacing:-0.673920pt;}
.ls12{letter-spacing:-0.619520pt;}
.ls13{letter-spacing:-0.506880pt;}
.ls10{letter-spacing:-0.450560pt;}
.lsc{letter-spacing:-0.281600pt;}
.lsf{letter-spacing:-0.168960pt;}
.ls19{letter-spacing:-0.117760pt;}
.lse{letter-spacing:-0.106240pt;}
.ls18{letter-spacing:-0.074880pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.056320pt;}
.lsd{letter-spacing:0.106880pt;}
.ls27{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.168960pt;}
.ls29{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.235520pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.281600pt;}
.ls1d{letter-spacing:0.294400pt;}
.ls1b{letter-spacing:0.299520pt;}
.ls28{letter-spacing:0.321024pt;}
.ls1f{letter-spacing:0.374400pt;}
.ls20{letter-spacing:1.633280pt;}
.ls23{letter-spacing:2.252800pt;}
.ls22{letter-spacing:7.344128pt;}
.ls26{letter-spacing:7.377920pt;}
.ls21{letter-spacing:46.407680pt;}
.ls25{letter-spacing:46.848000pt;}
.ls8{letter-spacing:120.637440pt;}
.ls14{letter-spacing:182.679040pt;}
.ls15{letter-spacing:276.761600pt;}
.ls7{letter-spacing:481.633280pt;}
.ls16{letter-spacing:507.179520pt;}
.ls5{letter-spacing:518.748160pt;}
.ls3{letter-spacing:593.597440pt;}
.lsa{letter-spacing:752.322560pt;}
.ls1e{letter-spacing:752.343040pt;}
.ls1{letter-spacing:770.892800pt;}
.ls4{letter-spacing:789.437440pt;}
.ls6{letter-spacing:911.088640pt;}
.ls9{letter-spacing:1305.328640pt;}
.ws22{word-spacing:-56.320000pt;}
.ws0{word-spacing:-29.819520pt;}
.ws23{word-spacing:-21.116160pt;}
.ws21{word-spacing:-20.741760pt;}
.ws31{word-spacing:-17.920000pt;}
.ws1d{word-spacing:-16.663040pt;}
.ws11{word-spacing:-16.250880pt;}
.ws4{word-spacing:-15.825920pt;}
.ws1{word-spacing:-15.713280pt;}
.ws5{word-spacing:-15.656960pt;}
.ws2{word-spacing:-15.488000pt;}
.ws12{word-spacing:-15.375360pt;}
.ws3{word-spacing:-15.206400pt;}
.ws7{word-spacing:-15.150080pt;}
.ws6{word-spacing:-15.037440pt;}
.ws19{word-spacing:-3.415040pt;}
.ws28{word-spacing:-2.928640pt;}
.ws3e{word-spacing:-2.252800pt;}
.ws25{word-spacing:-1.633280pt;}
.ws10{word-spacing:-1.070080pt;}
.wse{word-spacing:-0.957440pt;}
.ws1e{word-spacing:-0.673920pt;}
.ws15{word-spacing:-0.563200pt;}
.wsd{word-spacing:-0.337920pt;}
.wsc{word-spacing:-0.320640pt;}
.ws1f{word-spacing:-0.235520pt;}
.ws20{word-spacing:-0.224640pt;}
.ws39{word-spacing:-0.128000pt;}
.ws36{word-spacing:-0.112640pt;}
.ws3d{word-spacing:-0.096000pt;}
.ws9{word-spacing:-0.056320pt;}
.ws8{word-spacing:0.000000pt;}
.wsb{word-spacing:0.053120pt;}
.ws17{word-spacing:0.117760pt;}
.wsa{word-spacing:0.281600pt;}
.ws13{word-spacing:0.374400pt;}
.ws14{word-spacing:0.412160pt;}
.ws26{word-spacing:0.619520pt;}
.ws1c{word-spacing:0.765440pt;}
.ws3c{word-spacing:0.957440pt;}
.ws2a{word-spacing:0.973440pt;}
.ws27{word-spacing:1.576960pt;}
.ws30{word-spacing:1.914880pt;}
.ws2c{word-spacing:2.196480pt;}
.ws2d{word-spacing:2.252800pt;}
.ws2f{word-spacing:2.534400pt;}
.ws35{word-spacing:2.872320pt;}
.ws16{word-spacing:2.944000pt;}
.ws1a{word-spacing:3.591680pt;}
.ws38{word-spacing:4.111360pt;}
.ws18{word-spacing:6.182400pt;}
.ws40{word-spacing:6.702080pt;}
.ws3b{word-spacing:7.321600pt;}
.ws2e{word-spacing:7.997440pt;}
.ws24{word-spacing:8.616960pt;}
.ws33{word-spacing:9.123840pt;}
.ws32{word-spacing:9.236480pt;}
.ws34{word-spacing:9.912320pt;}
.ws3f{word-spacing:10.531840pt;}
.ws29{word-spacing:11.151360pt;}
.ws41{word-spacing:11.827200pt;}
.ws37{word-spacing:14.361600pt;}
.ws2b{word-spacing:15.656960pt;}
.wsf{word-spacing:29.117440pt;}
.ws3a{word-spacing:36.776960pt;}
.ws1b{word-spacing:39.449600pt;}
._9{margin-left:-15.905280pt;}
._8{margin-left:-11.950080pt;}
._5{margin-left:-10.757120pt;}
._4{margin-left:-8.151040pt;}
._6{margin-left:-6.881280pt;}
._7{margin-left:-2.684672pt;}
._0{margin-left:-1.085440pt;}
._1{width:1.370496pt;}
._2{width:5.946880pt;}
._c{width:7.572992pt;}
._a{width:52.715520pt;}
._b{width:61.614080pt;}
._3{width:752.329344pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.fs4{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:3.040000pt;}
.y6e{bottom:4.480000pt;}
.y6c{bottom:4.640000pt;}
.y2d{bottom:11.040000pt;}
.y2f{bottom:19.200000pt;}
.y1e{bottom:23.040000pt;}
.y6{bottom:50.246400pt;}
.y5{bottom:66.723840pt;}
.y28{bottom:106.088960pt;}
.y9e{bottom:117.482240pt;}
.y77{bottom:119.845120pt;}
.y27{bottom:123.843840pt;}
.y76{bottom:137.600000pt;}
.y26{bottom:141.598720pt;}
.y9d{bottom:151.246080pt;}
.y75{bottom:163.520000pt;}
.y25{bottom:165.914880pt;}
.y9c{bottom:168.846080pt;}
.y9b{bottom:186.600960pt;}
.y24{bottom:190.400000pt;}
.y74{bottom:201.600000pt;}
.y9a{bottom:204.355840pt;}
.y23{bottom:211.034880pt;}
.y73{bottom:219.200000pt;}
.y22{bottom:231.197440pt;}
.y99{bottom:237.950720pt;}
.y21{bottom:251.360000pt;}
.y98{bottom:255.705600pt;}
.y72{bottom:256.320000pt;}
.y1d{bottom:269.120000pt;}
.y97{bottom:273.460480pt;}
.y1f{bottom:276.000000pt;}
.y71{bottom:288.800000pt;}
.y20{bottom:292.160000pt;}
.y54{bottom:295.688960pt;}
.y96{bottom:307.055360pt;}
.y1c{bottom:316.960000pt;}
.y70{bottom:321.120000pt;}
.y95{bottom:324.810240pt;}
.y53{bottom:327.045120pt;}
.y1b{bottom:341.600000pt;}
.y94{bottom:342.565120pt;}
.y6f{bottom:353.440000pt;}
.y93{bottom:360.320000pt;}
.y52{bottom:360.640000pt;}
.y1a{bottom:366.400000pt;}
.y51{bottom:378.080000pt;}
.y6d{bottom:385.920000pt;}
.y19{bottom:391.200000pt;}
.y8f{bottom:391.690240pt;}
.y92{bottom:395.520000pt;}
.y50{bottom:404.640000pt;}
.y8e{bottom:409.445120pt;}
.y18{bottom:416.000000pt;}
.y6b{bottom:418.240000pt;}
.y8d{bottom:427.200000pt;}
.y91{bottom:432.960000pt;}
.y17{bottom:440.800000pt;}
.y4f{bottom:442.880000pt;}
.y6a{bottom:448.474880pt;}
.y90{bottom:452.480000pt;}
.y4e{bottom:460.160000pt;}
.y8c{bottom:464.320000pt;}
.y16{bottom:466.880000pt;}
.y69{bottom:472.960000pt;}
.y4d{bottom:486.880000pt;}
.y68{bottom:490.720000pt;}
.y15{bottom:495.200000pt;}
.y67{bottom:508.334080pt;}
.y8b{bottom:510.570240pt;}
.y14{bottom:524.640000pt;}
.y4c{bottom:524.962560pt;}
.y8a{bottom:528.325120pt;}
.y66{bottom:532.819200pt;}
.y89{bottom:546.080000pt;}
.y65{bottom:550.419200pt;}
.y4b{bottom:553.446400pt;}
.y88{bottom:563.680000pt;}
.y13{bottom:567.532160pt;}
.y64{bottom:568.174080pt;}
.y3b{bottom:578.093440pt;}
.y87{bottom:581.440000pt;}
.y4a{bottom:581.761280pt;}
.y63{bottom:585.928960pt;}
.y3a{bottom:597.612160pt;}
.y86{bottom:599.200000pt;}
.y12{bottom:601.119200pt;}
.y49{bottom:610.076160pt;}
.y62{bottom:610.245120pt;}
.y39{bottom:617.130880pt;}
.y61{bottom:628.000000pt;}
.y85{bottom:633.440000pt;}
.y38{bottom:636.487680pt;}
.y48{bottom:638.560000pt;}
.y11{bottom:641.600000pt;}
.y60{bottom:653.760000pt;}
.y37{bottom:655.844480pt;}
.y47{bottom:664.320000pt;}
.y84{bottom:669.162240pt;}
.y36{bottom:675.201280pt;}
.y10{bottom:677.923840pt;}
.y83{bottom:686.762240pt;}
.y5f{bottom:692.025600pt;}
.y35{bottom:694.720000pt;}
.yf{bottom:702.240000pt;}
.y46{bottom:702.560000pt;}
.y82{bottom:704.517120pt;}
.y5e{bottom:709.625600pt;}
.y45{bottom:718.721280pt;}
.y34{bottom:721.120000pt;}
.ye{bottom:726.400000pt;}
.y5d{bottom:727.380480pt;}
.y81{bottom:738.280960pt;}
.y44{bottom:739.520640pt;}
.y5c{bottom:745.135360pt;}
.y80{bottom:755.880960pt;}
.y33{bottom:759.194880pt;}
.y43{bottom:760.320000pt;}
.yd{bottom:760.464000pt;}
.y5b{bottom:769.451520pt;}
.y7f{bottom:773.635840pt;}
.y42{bottom:780.480000pt;}
.y32{bottom:783.680000pt;}
.y5a{bottom:787.206400pt;}
.yc{bottom:791.192000pt;}
.y7e{bottom:791.390720pt;}
.y31{bottom:797.440000pt;}
.y41{bottom:800.640000pt;}
.y59{bottom:804.806400pt;}
.y7d{bottom:808.990720pt;}
.y40{bottom:820.640000pt;}
.yb{bottom:821.920000pt;}
.y7c{bottom:826.745600pt;}
.y2e{bottom:830.240000pt;}
.y58{bottom:838.570240pt;}
.y3f{bottom:840.800000pt;}
.y7b{bottom:844.500480pt;}
.y57{bottom:856.325120pt;}
.ya{bottom:858.073600pt;}
.y3e{bottom:860.800000pt;}
.y2c{bottom:863.200000pt;}
.y2b{bottom:870.080000pt;}
.y56{bottom:873.925120pt;}
.y7a{bottom:878.095360pt;}
.y3d{bottom:880.960000pt;}
.y9{bottom:882.558720pt;}
.y55{bottom:891.680000pt;}
.y79{bottom:895.850240pt;}
.y2a{bottom:896.320000pt;}
.y3c{bottom:901.120000pt;}
.y8{bottom:906.874880pt;}
.y78{bottom:913.605120pt;}
.y29{bottom:926.880000pt;}
.y7{bottom:931.360000pt;}
.y4{bottom:947.526400pt;}
.y3{bottom:963.521280pt;}
.y2{bottom:979.685120pt;}
.y1{bottom:995.680000pt;}
.h14{height:17.598667pt;}
.h13{height:17.600000pt;}
.h12{height:17.760000pt;}
.hc{height:24.000000pt;}
.he{height:32.160000pt;}
.hd{height:32.320000pt;}
.h16{height:34.945312pt;}
.h5{height:38.724688pt;}
.h8{height:40.158667pt;}
.h7{height:41.002500pt;}
.h1{height:41.057500pt;}
.hb{height:42.866250pt;}
.hf{height:42.923750pt;}
.h2{height:46.578390pt;}
.h15{height:46.656250pt;}
.h10{height:54.514687pt;}
.ha{height:54.587812pt;}
.h11{height:61.933848pt;}
.h9{height:75.637980pt;}
.h4{height:77.811562pt;}
.h3{height:77.915937pt;}
.h6{height:85.266562pt;}
.h0{height:1056.000000pt;}
.w2{width:70.080000pt;}
.w6{width:99.520000pt;}
.w5{width:155.680000pt;}
.w3{width:188.321333pt;}
.w4{width:207.840000pt;}
.w1{width:264.000000pt;}
.w8{width:310.720000pt;}
.w7{width:521.920000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.080000pt;}
.xd{left:7.200000pt;}
.x15{left:16.320000pt;}
.x1d{left:17.760000pt;}
.x1f{left:18.880000pt;}
.x1c{left:19.840000pt;}
.x19{left:22.880000pt;}
.x14{left:25.280000pt;}
.x1e{left:32.960000pt;}
.x18{left:42.880000pt;}
.x1b{left:55.520000pt;}
.x17{left:62.880000pt;}
.x1a{left:77.440000pt;}
.x20{left:81.120000pt;}
.x4{left:96.002560pt;}
.x23{left:97.280000pt;}
.x8{left:98.880000pt;}
.xc{left:103.200000pt;}
.xa{left:118.871520pt;}
.x21{left:119.998080pt;}
.x11{left:137.280000pt;}
.x12{left:138.880000pt;}
.x22{left:144.026880pt;}
.xb{left:148.637600pt;}
.x6{left:194.237440pt;}
.xf{left:195.517440pt;}
.x25{left:198.080000pt;}
.x10{left:244.473600pt;}
.x13{left:252.320000pt;}
.x28{left:275.520000pt;}
.x7{left:301.921600pt;}
.x9{left:323.520000pt;}
.xe{left:367.520000pt;}
.x5{left:408.000000pt;}
.x26{left:409.280000pt;}
.x16{left:512.160000pt;}
.x1{left:619.040000pt;}
.x3{left:646.073600pt;}
.x2{left:719.993600pt;}
.x27{left:724.000000pt;}
}




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