
    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_45f3a7206299acb625bfedc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_edfad1d960d2af035d9d5134.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_207c6517ba5a70987c61c74a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707000;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_b7c58580b3aa0dbb1387fa7e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_2459a2646a65e69d8b6ba318.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.902000;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_a19cb5a74d5a9c24dff51b2d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002000;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_aee3c769bb1c6ce523076810.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.705000;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_68d922638e8f9c7cfe3d8a6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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_4c79988e3565a37e6ad58560.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.706490;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:ffa;src:url('chunks/assets/font_8f54a7e8533126a6ae32222e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000493px;}
.ls2{letter-spacing:19.920493px;}
.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;}
}
.ws23{word-spacing:-29.881822px;}
.ws24{word-spacing:-16.611639px;}
.ws2f{word-spacing:-15.595454px;}
.wsd{word-spacing:-13.682635px;}
.ws1a{word-spacing:-12.606674px;}
.ws2e{word-spacing:-12.487123px;}
.wsb{word-spacing:-12.307796px;}
.ws1b{word-spacing:-12.008918px;}
.ws25{word-spacing:-10.992733px;}
.ws2c{word-spacing:-9.979927px;}
.ws16{word-spacing:-9.976548px;}
.ws26{word-spacing:-9.916772px;}
.ws7{word-spacing:-9.242565px;}
.wsf{word-spacing:-8.482158px;}
.ws20{word-spacing:-7.884402px;}
.wsa{word-spacing:-7.705075px;}
.ws14{word-spacing:-7.226870px;}
.ws10{word-spacing:-7.167094px;}
.ws2{word-spacing:-7.090629px;}
.ws11{word-spacing:-7.047543px;}
.ws1e{word-spacing:-6.987768px;}
.ws1c{word-spacing:-6.808441px;}
.ws12{word-spacing:-6.688890px;}
.ws5{word-spacing:-6.660242px;}
.ws15{word-spacing:-6.569338px;}
.ws17{word-spacing:-6.509563px;}
.ws13{word-spacing:-6.270460px;}
.wsc{word-spacing:-6.091134px;}
.ws2b{word-spacing:-5.852031px;}
.ws2d{word-spacing:-5.612929px;}
.ws18{word-spacing:-5.314051px;}
.ws27{word-spacing:-4.835846px;}
.ws28{word-spacing:-3.341456px;}
.ws1d{word-spacing:-3.281680px;}
.ws9{word-spacing:-2.982802px;}
.ws3{word-spacing:-2.463967px;}
.ws6{word-spacing:-1.549394px;}
.ws4{word-spacing:-0.742418px;}
.ws1f{word-spacing:-0.086077px;}
.ws21{word-spacing:-0.059776px;}
.ws19{word-spacing:0.000000px;}
.ws29{word-spacing:2.038348px;}
.ws30{word-spacing:6.342191px;}
.ws2a{word-spacing:7.298601px;}
.ws22{word-spacing:19.874492px;}
.ws1{word-spacing:23.312640px;}
.wse{word-spacing:31.418178px;}
.ws0{word-spacing:32.227229px;}
.ws8{word-spacing:94.598843px;}
._1{margin-left:-8.056807px;}
._12{margin-left:-5.893836px;}
._8{margin-left:-4.626662px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.075968px;}
._2{width:1.936742px;}
._13{width:4.662497px;}
._f{width:18.442438px;}
._11{width:19.960751px;}
._6{width:22.272538px;}
._e{width:24.388445px;}
._a{width:25.823059px;}
._7{width:27.163874px;}
._4{width:28.728346px;}
._10{width:29.887800px;}
._5{width:31.848653px;}
._d{width:35.215458px;}
._b{width:38.192323px;}
._14{width:40.475718px;}
._9{width:47.110817px;}
._c{width:94.684920px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y8c{bottom:51.043500px;}
.y8b{bottom:68.976000px;}
.y8a{bottom:86.908500px;}
.y89{bottom:104.841000px;}
.y88{bottom:122.775000px;}
.y1f{bottom:134.047500px;}
.y87{bottom:140.707500px;}
.y86{bottom:158.640000px;}
.y85{bottom:176.572500px;}
.y58{bottom:177.486000px;}
.y1e{bottom:178.879500px;}
.y84{bottom:194.505000px;}
.y57{bottom:195.418500px;}
.y1d{bottom:196.812000px;}
.y83{bottom:212.437500px;}
.y56{bottom:213.351000px;}
.y1c{bottom:229.539000px;}
.y82{bottom:230.371500px;}
.y55{bottom:231.283500px;}
.y81{bottom:248.304000px;}
.y54{bottom:249.216000px;}
.y80{bottom:266.236500px;}
.y53{bottom:267.150000px;}
.y1b{bottom:278.541000px;}
.y7f{bottom:284.169000px;}
.y52{bottom:285.082500px;}
.y1a{bottom:296.473500px;}
.yae{bottom:297.516000px;}
.y7e{bottom:302.101500px;}
.y51{bottom:303.015000px;}
.y19{bottom:314.407500px;}
.yad{bottom:315.448500px;}
.y7d{bottom:320.034000px;}
.y50{bottom:320.947500px;}
.y18{bottom:332.340000px;}
.yac{bottom:333.381000px;}
.y7c{bottom:337.968000px;}
.y4f{bottom:338.880000px;}
.ya8{bottom:342.781500px;}
.y17{bottom:350.272500px;}
.yab{bottom:351.313500px;}
.y7b{bottom:355.900500px;}
.y4e{bottom:356.812500px;}
.ya7{bottom:360.714000px;}
.y16{bottom:368.205000px;}
.yaa{bottom:369.247500px;}
.y7a{bottom:373.833000px;}
.y4d{bottom:374.746500px;}
.ya6{bottom:378.646500px;}
.y15{bottom:386.137500px;}
.ya9{bottom:387.180000px;}
.y79{bottom:391.765500px;}
.y4c{bottom:392.679000px;}
.ya5{bottom:396.579000px;}
.y14{bottom:404.071500px;}
.y78{bottom:409.698000px;}
.y4b{bottom:410.611500px;}
.ya4{bottom:414.513000px;}
.y77{bottom:427.632000px;}
.y4a{bottom:428.544000px;}
.ya3{bottom:432.445500px;}
.y13{bottom:436.798500px;}
.y76{bottom:445.564500px;}
.y49{bottom:446.476500px;}
.ya2{bottom:450.378000px;}
.y75{bottom:463.497000px;}
.y48{bottom:464.410500px;}
.ya1{bottom:468.310500px;}
.y74{bottom:481.429500px;}
.y47{bottom:482.343000px;}
.y12{bottom:485.800500px;}
.ya0{bottom:486.243000px;}
.y73{bottom:499.362000px;}
.y46{bottom:500.275500px;}
.y11{bottom:503.733000px;}
.y9f{bottom:504.177000px;}
.y72{bottom:517.294500px;}
.y45{bottom:518.208000px;}
.y10{bottom:521.665500px;}
.y9e{bottom:522.109500px;}
.y71{bottom:535.228500px;}
.y44{bottom:536.140500px;}
.yf{bottom:539.598000px;}
.y9d{bottom:540.042000px;}
.y70{bottom:553.161000px;}
.y43{bottom:554.073000px;}
.ye{bottom:557.532000px;}
.y9c{bottom:557.974500px;}
.y6f{bottom:571.093500px;}
.y42{bottom:572.007000px;}
.yd{bottom:575.464500px;}
.y9b{bottom:575.907000px;}
.y6e{bottom:589.026000px;}
.y41{bottom:589.939500px;}
.y9a{bottom:593.839500px;}
.y6d{bottom:606.958500px;}
.y40{bottom:607.872000px;}
.yc{bottom:608.191500px;}
.y99{bottom:611.773500px;}
.y6c{bottom:624.891000px;}
.y3f{bottom:625.804500px;}
.y98{bottom:629.706000px;}
.y6b{bottom:642.825000px;}
.y3e{bottom:643.737000px;}
.y97{bottom:647.638500px;}
.yb{bottom:657.193500px;}
.y6a{bottom:660.757500px;}
.y3d{bottom:661.669500px;}
.y96{bottom:665.571000px;}
.ya{bottom:673.632000px;}
.y69{bottom:678.690000px;}
.y3c{bottom:679.603500px;}
.y95{bottom:683.503500px;}
.y9{bottom:690.070500px;}
.y68{bottom:696.622500px;}
.y3b{bottom:697.536000px;}
.y94{bottom:701.436000px;}
.y8{bottom:706.509000px;}
.y2a{bottom:713.974500px;}
.y67{bottom:714.555000px;}
.y3a{bottom:715.468500px;}
.y93{bottom:719.370000px;}
.y7{bottom:722.947500px;}
.y29{bottom:731.907000px;}
.y66{bottom:732.487500px;}
.y39{bottom:733.401000px;}
.y92{bottom:737.302500px;}
.y6{bottom:739.386000px;}
.y65{bottom:750.421500px;}
.y38{bottom:751.333500px;}
.y91{bottom:755.235000px;}
.y5{bottom:760.422000px;}
.y28{bottom:764.634000px;}
.y64{bottom:768.354000px;}
.y37{bottom:769.266000px;}
.y90{bottom:773.167500px;}
.y63{bottom:786.286500px;}
.y36{bottom:787.200000px;}
.y8f{bottom:791.100000px;}
.y62{bottom:804.219000px;}
.y35{bottom:805.132500px;}
.y8e{bottom:809.032500px;}
.y4{bottom:811.825500px;}
.y27{bottom:814.048500px;}
.y61{bottom:822.151500px;}
.y34{bottom:823.065000px;}
.y8d{bottom:829.719000px;}
.y60{bottom:840.085500px;}
.y33{bottom:840.997500px;}
.y26{bottom:846.775500px;}
.y3{bottom:846.886500px;}
.y5f{bottom:858.018000px;}
.y32{bottom:858.930000px;}
.y5e{bottom:875.950500px;}
.y31{bottom:876.864000px;}
.y2{bottom:890.218500px;}
.y5d{bottom:893.883000px;}
.y30{bottom:894.796500px;}
.y25{bottom:896.188500px;}
.y5c{bottom:911.815500px;}
.y2f{bottom:912.729000px;}
.y24{bottom:914.122500px;}
.y1{bottom:923.095500px;}
.y5b{bottom:929.748000px;}
.y2e{bottom:930.661500px;}
.y23{bottom:932.055000px;}
.y5a{bottom:947.682000px;}
.y2d{bottom:948.594000px;}
.y22{bottom:949.987500px;}
.y59{bottom:965.614500px;}
.y2c{bottom:966.526500px;}
.y21{bottom:967.920000px;}
.y20{bottom:985.852500px;}
.y2b{bottom:986.299500px;}
.h3{height:37.712678px;}
.h4{height:37.981670px;}
.h6{height:44.951251px;}
.h2{height:51.287808px;}
.h5{height:60.426194px;}
.h1{height:72.614557px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:200.652000px;}
.xa{left:223.894500px;}
.x1{left:225.957000px;}
.x7{left:238.012500px;}
.x6{left:258.742500px;}
.x2{left:358.531500px;}
.x4{left:392.848500px;}
.x3{left:417.966000px;}
.x5{left:428.002500px;}
.x9{left:454.701000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000439pt;}
.ls2{letter-spacing:17.707105pt;}
.ws23{word-spacing:-26.561620pt;}
.ws24{word-spacing:-14.765902pt;}
.ws2f{word-spacing:-13.862626pt;}
.wsd{word-spacing:-12.162342pt;}
.ws1a{word-spacing:-11.205932pt;}
.ws2e{word-spacing:-11.099665pt;}
.wsb{word-spacing:-10.940263pt;}
.ws1b{word-spacing:-10.674594pt;}
.ws25{word-spacing:-9.771318pt;}
.ws2c{word-spacing:-8.871047pt;}
.ws16{word-spacing:-8.868042pt;}
.ws26{word-spacing:-8.814908pt;}
.ws7{word-spacing:-8.215613pt;}
.wsf{word-spacing:-7.539696pt;}
.ws20{word-spacing:-7.008357pt;}
.wsa{word-spacing:-6.848955pt;}
.ws14{word-spacing:-6.423884pt;}
.ws10{word-spacing:-6.370751pt;}
.ws2{word-spacing:-6.302781pt;}
.ws11{word-spacing:-6.264483pt;}
.ws1e{word-spacing:-6.211349pt;}
.ws1c{word-spacing:-6.051947pt;}
.ws12{word-spacing:-5.945680pt;}
.ws5{word-spacing:-5.920215pt;}
.ws15{word-spacing:-5.839412pt;}
.ws17{word-spacing:-5.786278pt;}
.ws13{word-spacing:-5.573743pt;}
.wsc{word-spacing:-5.414341pt;}
.ws2b{word-spacing:-5.201806pt;}
.ws2d{word-spacing:-4.989270pt;}
.ws18{word-spacing:-4.723601pt;}
.ws27{word-spacing:-4.298530pt;}
.ws28{word-spacing:-2.970183pt;}
.ws1d{word-spacing:-2.917049pt;}
.ws9{word-spacing:-2.651380pt;}
.ws3{word-spacing:-2.190193pt;}
.ws6{word-spacing:-1.377239pt;}
.ws4{word-spacing:-0.659927pt;}
.ws1f{word-spacing:-0.076513pt;}
.ws21{word-spacing:-0.053134pt;}
.ws19{word-spacing:0.000000pt;}
.ws29{word-spacing:1.811865pt;}
.ws30{word-spacing:5.637503pt;}
.ws2a{word-spacing:6.487645pt;}
.ws22{word-spacing:17.666215pt;}
.ws1{word-spacing:20.722347pt;}
.wse{word-spacing:27.927269pt;}
.ws0{word-spacing:28.646426pt;}
.ws8{word-spacing:84.087860pt;}
._1{margin-left:-7.161606pt;}
._12{margin-left:-5.238965pt;}
._8{margin-left:-4.112589pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-0.956416pt;}
._2{width:1.721549pt;}
._13{width:4.144442pt;}
._f{width:16.393278pt;}
._11{width:17.742890pt;}
._6{width:19.797811pt;}
._e{width:21.678618pt;}
._a{width:22.953830pt;}
._7{width:24.145666pt;}
._4{width:25.536307pt;}
._10{width:26.566933pt;}
._5{width:28.309914pt;}
._d{width:31.302629pt;}
._b{width:33.948732pt;}
._14{width:35.978416pt;}
._9{width:41.876282pt;}
._c{width:84.164373pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:45.372000pt;}
.y8b{bottom:61.312000pt;}
.y8a{bottom:77.252000pt;}
.y89{bottom:93.192000pt;}
.y88{bottom:109.133333pt;}
.y1f{bottom:119.153333pt;}
.y87{bottom:125.073333pt;}
.y86{bottom:141.013333pt;}
.y85{bottom:156.953333pt;}
.y58{bottom:157.765333pt;}
.y1e{bottom:159.004000pt;}
.y84{bottom:172.893333pt;}
.y57{bottom:173.705333pt;}
.y1d{bottom:174.944000pt;}
.y83{bottom:188.833333pt;}
.y56{bottom:189.645333pt;}
.y1c{bottom:204.034667pt;}
.y82{bottom:204.774667pt;}
.y55{bottom:205.585333pt;}
.y81{bottom:220.714667pt;}
.y54{bottom:221.525333pt;}
.y80{bottom:236.654667pt;}
.y53{bottom:237.466667pt;}
.y1b{bottom:247.592000pt;}
.y7f{bottom:252.594667pt;}
.y52{bottom:253.406667pt;}
.y1a{bottom:263.532000pt;}
.yae{bottom:264.458667pt;}
.y7e{bottom:268.534667pt;}
.y51{bottom:269.346667pt;}
.y19{bottom:279.473333pt;}
.yad{bottom:280.398667pt;}
.y7d{bottom:284.474667pt;}
.y50{bottom:285.286667pt;}
.y18{bottom:295.413333pt;}
.yac{bottom:296.338667pt;}
.y7c{bottom:300.416000pt;}
.y4f{bottom:301.226667pt;}
.ya8{bottom:304.694667pt;}
.y17{bottom:311.353333pt;}
.yab{bottom:312.278667pt;}
.y7b{bottom:316.356000pt;}
.y4e{bottom:317.166667pt;}
.ya7{bottom:320.634667pt;}
.y16{bottom:327.293333pt;}
.yaa{bottom:328.220000pt;}
.y7a{bottom:332.296000pt;}
.y4d{bottom:333.108000pt;}
.ya6{bottom:336.574667pt;}
.y15{bottom:343.233333pt;}
.ya9{bottom:344.160000pt;}
.y79{bottom:348.236000pt;}
.y4c{bottom:349.048000pt;}
.ya5{bottom:352.514667pt;}
.y14{bottom:359.174667pt;}
.y78{bottom:364.176000pt;}
.y4b{bottom:364.988000pt;}
.ya4{bottom:368.456000pt;}
.y77{bottom:380.117333pt;}
.y4a{bottom:380.928000pt;}
.ya3{bottom:384.396000pt;}
.y13{bottom:388.265333pt;}
.y76{bottom:396.057333pt;}
.y49{bottom:396.868000pt;}
.ya2{bottom:400.336000pt;}
.y75{bottom:411.997333pt;}
.y48{bottom:412.809333pt;}
.ya1{bottom:416.276000pt;}
.y74{bottom:427.937333pt;}
.y47{bottom:428.749333pt;}
.y12{bottom:431.822667pt;}
.ya0{bottom:432.216000pt;}
.y73{bottom:443.877333pt;}
.y46{bottom:444.689333pt;}
.y11{bottom:447.762667pt;}
.y9f{bottom:448.157333pt;}
.y72{bottom:459.817333pt;}
.y45{bottom:460.629333pt;}
.y10{bottom:463.702667pt;}
.y9e{bottom:464.097333pt;}
.y71{bottom:475.758667pt;}
.y44{bottom:476.569333pt;}
.yf{bottom:479.642667pt;}
.y9d{bottom:480.037333pt;}
.y70{bottom:491.698667pt;}
.y43{bottom:492.509333pt;}
.ye{bottom:495.584000pt;}
.y9c{bottom:495.977333pt;}
.y6f{bottom:507.638667pt;}
.y42{bottom:508.450667pt;}
.yd{bottom:511.524000pt;}
.y9b{bottom:511.917333pt;}
.y6e{bottom:523.578667pt;}
.y41{bottom:524.390667pt;}
.y9a{bottom:527.857333pt;}
.y6d{bottom:539.518667pt;}
.y40{bottom:540.330667pt;}
.yc{bottom:540.614667pt;}
.y99{bottom:543.798667pt;}
.y6c{bottom:555.458667pt;}
.y3f{bottom:556.270667pt;}
.y98{bottom:559.738667pt;}
.y6b{bottom:571.400000pt;}
.y3e{bottom:572.210667pt;}
.y97{bottom:575.678667pt;}
.yb{bottom:584.172000pt;}
.y6a{bottom:587.340000pt;}
.y3d{bottom:588.150667pt;}
.y96{bottom:591.618667pt;}
.ya{bottom:598.784000pt;}
.y69{bottom:603.280000pt;}
.y3c{bottom:604.092000pt;}
.y95{bottom:607.558667pt;}
.y9{bottom:613.396000pt;}
.y68{bottom:619.220000pt;}
.y3b{bottom:620.032000pt;}
.y94{bottom:623.498667pt;}
.y8{bottom:628.008000pt;}
.y2a{bottom:634.644000pt;}
.y67{bottom:635.160000pt;}
.y3a{bottom:635.972000pt;}
.y93{bottom:639.440000pt;}
.y7{bottom:642.620000pt;}
.y29{bottom:650.584000pt;}
.y66{bottom:651.100000pt;}
.y39{bottom:651.912000pt;}
.y92{bottom:655.380000pt;}
.y6{bottom:657.232000pt;}
.y65{bottom:667.041333pt;}
.y38{bottom:667.852000pt;}
.y91{bottom:671.320000pt;}
.y5{bottom:675.930667pt;}
.y28{bottom:679.674667pt;}
.y64{bottom:682.981333pt;}
.y37{bottom:683.792000pt;}
.y90{bottom:687.260000pt;}
.y63{bottom:698.921333pt;}
.y36{bottom:699.733333pt;}
.y8f{bottom:703.200000pt;}
.y62{bottom:714.861333pt;}
.y35{bottom:715.673333pt;}
.y8e{bottom:719.140000pt;}
.y4{bottom:721.622667pt;}
.y27{bottom:723.598667pt;}
.y61{bottom:730.801333pt;}
.y34{bottom:731.613333pt;}
.y8d{bottom:737.528000pt;}
.y60{bottom:746.742667pt;}
.y33{bottom:747.553333pt;}
.y26{bottom:752.689333pt;}
.y3{bottom:752.788000pt;}
.y5f{bottom:762.682667pt;}
.y32{bottom:763.493333pt;}
.y5e{bottom:778.622667pt;}
.y31{bottom:779.434667pt;}
.y2{bottom:791.305333pt;}
.y5d{bottom:794.562667pt;}
.y30{bottom:795.374667pt;}
.y25{bottom:796.612000pt;}
.y5c{bottom:810.502667pt;}
.y2f{bottom:811.314667pt;}
.y24{bottom:812.553333pt;}
.y1{bottom:820.529333pt;}
.y5b{bottom:826.442667pt;}
.y2e{bottom:827.254667pt;}
.y23{bottom:828.493333pt;}
.y5a{bottom:842.384000pt;}
.y2d{bottom:843.194667pt;}
.y22{bottom:844.433333pt;}
.y59{bottom:858.324000pt;}
.y2c{bottom:859.134667pt;}
.y21{bottom:860.373333pt;}
.y20{bottom:876.313333pt;}
.y2b{bottom:876.710667pt;}
.h3{height:33.522381pt;}
.h4{height:33.761485pt;}
.h6{height:39.956668pt;}
.h2{height:45.589163pt;}
.h5{height:53.712173pt;}
.h1{height:64.546273pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:178.357333pt;}
.xa{left:199.017333pt;}
.x1{left:200.850667pt;}
.x7{left:211.566667pt;}
.x6{left:229.993333pt;}
.x2{left:318.694667pt;}
.x4{left:349.198667pt;}
.x3{left:371.525333pt;}
.x5{left:380.446667pt;}
.x9{left:404.178667pt;}
}




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