
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_384e0ce6602d662ffb8be775.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_953f82ed8ccef2f16a46b90c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.331543;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_ab1e2f531a65d94098f08008.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331331;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_45237d29324870900e561093.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919434;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_1b3f20849e84eca90c7a3c12.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331543;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_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921875;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_c1ebe0698dd5cead5b211678.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_594848ae1d0eaa150b8c6145.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.331331;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:ffb;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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:ffc;src:url('chunks/assets/font_99ff6160d3c12256adc34cad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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:ffe;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls17{letter-spacing:-2.536121px;}
.ls16{letter-spacing:-2.406000px;}
.lsd{letter-spacing:-1.008000px;}
.ls21{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.774000px;}
.ls1a{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.280200px;}
.ls2c{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.226200px;}
.ls15{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.089400px;}
.ls14{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.056161px;}
.ls10{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls2b{letter-spacing:0.021600px;}
.ls6{letter-spacing:0.113841px;}
.ls3{letter-spacing:0.126720px;}
.ls0{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.206400px;}
.ls1b{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.338400px;}
.lsb{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.397178px;}
.ls2a{letter-spacing:0.547800px;}
.lsf{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.666720px;}
.ls9{letter-spacing:0.872780px;}
.ls28{letter-spacing:0.979920px;}
.ls5{letter-spacing:1.461717px;}
.ls8{letter-spacing:1.631719px;}
.ls2d{letter-spacing:2.106720px;}
.ls7{letter-spacing:2.220656px;}
.ls1f{letter-spacing:2.826720px;}
.ls26{letter-spacing:3.546720px;}
.ls25{letter-spacing:5.706720px;}
.ls29{letter-spacing:6.426720px;}
.ls1e{letter-spacing:7.146720px;}
.ls1d{letter-spacing:7.866720px;}
.ls20{letter-spacing:9.306720px;}
.ls24{letter-spacing:11.466720px;}
.ls2e{letter-spacing:12.906720px;}
.ls23{letter-spacing:38.106720px;}
.ls2f{letter-spacing:41.706720px;}
.ls1c{letter-spacing:199.386720px;}
.ls1{letter-spacing:199.566720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-63.389119px;}
.wse{word-spacing:-62.991941px;}
.wsf{word-spacing:-60.455820px;}
.ws18{word-spacing:-60.307800px;}
.ws1c{word-spacing:-59.966400px;}
.ws1a{word-spacing:-59.781600px;}
.wsc{word-spacing:-59.760000px;}
.ws1b{word-spacing:-59.500200px;}
.wsb{word-spacing:-59.479800px;}
.wsd{word-spacing:-57.354000px;}
.ws13{word-spacing:-56.920429px;}
.ws10{word-spacing:-17.511760px;}
.ws8{word-spacing:-16.951680px;}
.ws19{word-spacing:-16.912080px;}
.ws3{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.506480px;}
.ws2{word-spacing:-16.333080px;}
.ws12{word-spacing:-15.823879px;}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws15{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.392000px;}
.ws14{word-spacing:-13.140000px;}
.ws4{word-spacing:-10.808640px;}
.ws7{word-spacing:-10.440000px;}
.ws6{word-spacing:-10.213800px;}
.ws9{word-spacing:-8.928000px;}
.ws16{word-spacing:0.000000px;}
._8{margin-left:-7.899360px;}
._6{margin-left:-4.462800px;}
._c{margin-left:-3.235680px;}
._10{margin-left:-2.109360px;}
._0{margin-left:-1.093680px;}
._1{width:1.245360px;}
._2{width:2.308800px;}
._4{width:3.676800px;}
._7{width:5.028960px;}
._9{width:6.164880px;}
._e{width:7.251600px;}
._3{width:8.306640px;}
._5{width:10.159200px;}
._11{width:11.166960px;}
._d{width:12.200640px;}
._12{width:13.997280px;}
._f{width:15.443760px;}
._b{width:18.116880px;}
._a{width:19.123200px;}
._13{width:20.491920px;}
.fc4{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fsc{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:2.340000px;}
.y5{bottom:3.780000px;}
.y4b{bottom:5.010000px;}
.y34{bottom:7.020000px;}
.y2{bottom:9.930000px;}
.y3d{bottom:10.260000px;}
.y49{bottom:12.420000px;}
.y4{bottom:22.710000px;}
.y33{bottom:30.240000px;}
.y48{bottom:32.040000px;}
.y3c{bottom:39.960000px;}
.y3{bottom:47.910000px;}
.y3b{bottom:51.660000px;}
.y32{bottom:53.325000px;}
.y47{bottom:56.340000px;}
.y7{bottom:57.060000px;}
.y3a{bottom:64.794000px;}
.y46{bottom:75.954000px;}
.y39{bottom:77.754000px;}
.y35{bottom:87.876000px;}
.y31{bottom:88.425000px;}
.y45{bottom:95.394000px;}
.y71{bottom:97.236000px;}
.y38{bottom:99.714000px;}
.y98{bottom:100.296000px;}
.y44{bottom:101.874000px;}
.y30{bottom:114.525000px;}
.y43{bottom:117.534000px;}
.y97{bottom:120.456000px;}
.y70{bottom:123.336000px;}
.y42{bottom:133.014000px;}
.y2f{bottom:140.625000px;}
.y96{bottom:143.496000px;}
.y41{bottom:148.494000px;}
.y6f{bottom:149.436000px;}
.y37{bottom:161.814000px;}
.y40{bottom:163.974000px;}
.y2e{bottom:166.725000px;}
.y95{bottom:169.590000px;}
.y36{bottom:172.254000px;}
.y6e{bottom:175.710000px;}
.y3f{bottom:179.634000px;}
.y2d{bottom:193.005000px;}
.y94{bottom:195.690000px;}
.y6d{bottom:201.810000px;}
.y2c{bottom:219.105000px;}
.y93{bottom:221.790000px;}
.y6c{bottom:227.910000px;}
.y2b{bottom:245.205000px;}
.y92{bottom:248.070000px;}
.y6b{bottom:254.010000px;}
.y1e{bottom:263.205000px;}
.y2a{bottom:271.305000px;}
.y91{bottom:274.170000px;}
.y6a{bottom:280.110000px;}
.y1d{bottom:287.325000px;}
.y10{bottom:290.370000px;}
.y29{bottom:297.405000px;}
.y90{bottom:300.270000px;}
.y69{bottom:306.210000px;}
.y1c{bottom:311.445000px;}
.y28{bottom:323.535000px;}
.y8f{bottom:326.370000px;}
.y68{bottom:332.490000px;}
.y1b{bottom:335.775000px;}
.y27{bottom:349.815000px;}
.y8e{bottom:352.515000px;}
.y67{bottom:358.635000px;}
.y1a{bottom:359.895000px;}
.y8d{bottom:378.615000px;}
.y19{bottom:384.015000px;}
.y66{bottom:384.735000px;}
.y26{bottom:384.915000px;}
.y8c{bottom:404.895000px;}
.y18{bottom:408.135000px;}
.y65{bottom:410.835000px;}
.y25{bottom:411.015000px;}
.y8b{bottom:430.995000px;}
.y17{bottom:432.255000px;}
.y64{bottom:436.935000px;}
.y24{bottom:437.115000px;}
.y16{bottom:456.375000px;}
.y8a{bottom:457.095000px;}
.y23{bottom:463.215000px;}
.y15{bottom:480.495000px;}
.y89{bottom:483.195000px;}
.y63{bottom:489.315000px;}
.y22{bottom:489.495000px;}
.y14{bottom:504.795000px;}
.y88{bottom:509.295000px;}
.y62{bottom:515.415000px;}
.y21{bottom:515.595000px;}
.y13{bottom:528.915000px;}
.y87{bottom:535.575000px;}
.y61{bottom:541.515000px;}
.y20{bottom:541.695000px;}
.y12{bottom:553.035000px;}
.y86{bottom:561.675000px;}
.y60{bottom:567.615000px;}
.y1f{bottom:567.795000px;}
.y11{bottom:577.200000px;}
.y85{bottom:587.775000px;}
.y5f{bottom:593.715000px;}
.y84{bottom:613.905000px;}
.y5e{bottom:620.025000px;}
.y83{bottom:640.005000px;}
.y5d{bottom:646.125000px;}
.y82{bottom:666.105000px;}
.y5c{bottom:672.225000px;}
.y81{bottom:692.385000px;}
.y5b{bottom:698.325000px;}
.y80{bottom:718.485000px;}
.y5a{bottom:724.425000px;}
.y7f{bottom:744.585000px;}
.y59{bottom:750.705000px;}
.y7e{bottom:770.685000px;}
.y58{bottom:776.805000px;}
.ya4{bottom:790.125000px;}
.y7d{bottom:796.785000px;}
.y57{bottom:802.905000px;}
.ya3{bottom:810.285000px;}
.y7c{bottom:823.065000px;}
.y56{bottom:829.005000px;}
.ya2{bottom:830.265000px;}
.y7b{bottom:849.165000px;}
.ya1{bottom:850.425000px;}
.y55{bottom:855.105000px;}
.ya0{bottom:870.630000px;}
.y7a{bottom:875.310000px;}
.y54{bottom:881.250000px;}
.yf{bottom:882.690000px;}
.y9f{bottom:893.670000px;}
.ye{bottom:900.870000px;}
.y79{bottom:901.410000px;}
.y53{bottom:907.530000px;}
.y9e{bottom:919.770000px;}
.yd{bottom:923.910000px;}
.y78{bottom:927.510000px;}
.y52{bottom:933.630000px;}
.y9d{bottom:942.090000px;}
.y77{bottom:953.610000px;}
.yc{bottom:953.790000px;}
.y9c{bottom:959.370000px;}
.y51{bottom:959.730000px;}
.y9b{bottom:976.470000px;}
.y76{bottom:979.890000px;}
.yb{bottom:980.070000px;}
.y50{bottom:985.830000px;}
.y9a{bottom:993.750000px;}
.ya{bottom:1002.390000px;}
.y75{bottom:1005.990000px;}
.y99{bottom:1011.030000px;}
.y4f{bottom:1011.930000px;}
.y74{bottom:1032.090000px;}
.y9{bottom:1036.050000px;}
.y4e{bottom:1038.210000px;}
.y73{bottom:1058.190000px;}
.y4d{bottom:1064.310000px;}
.y8{bottom:1071.870000px;}
.y4a{bottom:1075.140000px;}
.y72{bottom:1084.290000px;}
.y4c{bottom:1087.530000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h15{height:4.210313px;}
.h11{height:21.114844px;}
.h10{height:25.136719px;}
.h19{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h14{height:38.100586px;}
.h12{height:38.997070px;}
.h13{height:39.471680px;}
.h6{height:41.726953px;}
.hb{height:42.164648px;}
.h1b{height:43.506914px;}
.h5{height:46.251562px;}
.ha{height:48.229102px;}
.h17{height:55.825312px;}
.h7{height:56.574492px;}
.h18{height:60.338990px;}
.h9{height:63.349102px;}
.h1a{height:64.002656px;}
.h3{height:65.884219px;}
.h16{height:66.775148px;}
.h2{height:84.996000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.hf{height:201.600000px;}
.hc{height:586.905000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:132.660000px;}
.w7{width:162.900000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.x1a{left:8.100000px;}
.x4{left:12.780000px;}
.x1d{left:18.180000px;}
.x18{left:19.980000px;}
.x6{left:21.960000px;}
.x17{left:25.560000px;}
.x1f{left:29.160000px;}
.x11{left:43.740000px;}
.x1e{left:47.700000px;}
.x12{left:50.760000px;}
.x10{left:54.900000px;}
.x1b{left:62.145000px;}
.x16{left:67.134000px;}
.x1{left:78.300000px;}
.x14{left:79.374000px;}
.x15{left:83.694000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x20{left:102.774000px;}
.x1c{left:106.734000px;}
.x24{left:113.435987px;}
.x13{left:124.554000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x19{left:219.090000px;}
.x21{left:278.895000px;}
.x22{left:282.855000px;}
.xd{left:401.114987px;}
.xe{left:492.584987px;}
.xa{left:528.764987px;}
.xf{left:614.309987px;}
.xc{left:637.169987px;}
.xb{left:678.569987px;}
.x8{left:766.049987px;}
.x7{left:791.999987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls17{letter-spacing:-2.254330pt;}
.ls16{letter-spacing:-2.138667pt;}
.lsd{letter-spacing:-0.896000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.249067pt;}
.ls2c{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.201067pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.079467pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.049921pt;}
.ls10{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls2b{letter-spacing:0.019200pt;}
.ls6{letter-spacing:0.101192pt;}
.ls3{letter-spacing:0.112640pt;}
.ls0{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.183467pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.300800pt;}
.lsb{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.353047pt;}
.ls2a{letter-spacing:0.486933pt;}
.lsf{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.592640pt;}
.ls9{letter-spacing:0.775804pt;}
.ls28{letter-spacing:0.871040pt;}
.ls5{letter-spacing:1.299304pt;}
.ls8{letter-spacing:1.450417pt;}
.ls2d{letter-spacing:1.872640pt;}
.ls7{letter-spacing:1.973916pt;}
.ls1f{letter-spacing:2.512640pt;}
.ls26{letter-spacing:3.152640pt;}
.ls25{letter-spacing:5.072640pt;}
.ls29{letter-spacing:5.712640pt;}
.ls1e{letter-spacing:6.352640pt;}
.ls1d{letter-spacing:6.992640pt;}
.ls20{letter-spacing:8.272640pt;}
.ls24{letter-spacing:10.192640pt;}
.ls2e{letter-spacing:11.472640pt;}
.ls23{letter-spacing:33.872640pt;}
.ls2f{letter-spacing:37.072640pt;}
.ls1c{letter-spacing:177.232640pt;}
.ls1{letter-spacing:177.392640pt;}
.ws11{word-spacing:-56.345884pt;}
.wse{word-spacing:-55.992837pt;}
.wsf{word-spacing:-53.738506pt;}
.ws18{word-spacing:-53.606933pt;}
.ws1c{word-spacing:-53.303467pt;}
.ws1a{word-spacing:-53.139200pt;}
.wsc{word-spacing:-53.120000pt;}
.ws1b{word-spacing:-52.889067pt;}
.wsb{word-spacing:-52.870933pt;}
.wsd{word-spacing:-50.981333pt;}
.ws13{word-spacing:-50.595937pt;}
.ws10{word-spacing:-15.566009pt;}
.ws8{word-spacing:-15.068160pt;}
.ws19{word-spacing:-15.032960pt;}
.ws3{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.672427pt;}
.ws2{word-spacing:-14.518293pt;}
.ws12{word-spacing:-14.065670pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws15{word-spacing:-12.016000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws14{word-spacing:-11.680000pt;}
.ws4{word-spacing:-9.607680pt;}
.ws7{word-spacing:-9.280000pt;}
.ws6{word-spacing:-9.078933pt;}
.ws9{word-spacing:-7.936000pt;}
.ws16{word-spacing:0.000000pt;}
._8{margin-left:-7.021653pt;}
._6{margin-left:-3.966933pt;}
._c{margin-left:-2.876160pt;}
._10{margin-left:-1.874987pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.106987pt;}
._2{width:2.052267pt;}
._4{width:3.268267pt;}
._7{width:4.470187pt;}
._9{width:5.479893pt;}
._e{width:6.445867pt;}
._3{width:7.383680pt;}
._5{width:9.030400pt;}
._11{width:9.926187pt;}
._d{width:10.845013pt;}
._12{width:12.442027pt;}
._f{width:13.727787pt;}
._b{width:16.103893pt;}
._a{width:16.998400pt;}
._13{width:18.215040pt;}
.fs6{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fsc{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:2.080000pt;}
.y5{bottom:3.360000pt;}
.y4b{bottom:4.453333pt;}
.y34{bottom:6.240000pt;}
.y2{bottom:8.826667pt;}
.y3d{bottom:9.120000pt;}
.y49{bottom:11.040000pt;}
.y4{bottom:20.186667pt;}
.y33{bottom:26.880000pt;}
.y48{bottom:28.480000pt;}
.y3c{bottom:35.520000pt;}
.y3{bottom:42.586667pt;}
.y3b{bottom:45.920000pt;}
.y32{bottom:47.400000pt;}
.y47{bottom:50.080000pt;}
.y7{bottom:50.720000pt;}
.y3a{bottom:57.594667pt;}
.y46{bottom:67.514667pt;}
.y39{bottom:69.114667pt;}
.y35{bottom:78.112000pt;}
.y31{bottom:78.600000pt;}
.y45{bottom:84.794667pt;}
.y71{bottom:86.432000pt;}
.y38{bottom:88.634667pt;}
.y98{bottom:89.152000pt;}
.y44{bottom:90.554667pt;}
.y30{bottom:101.800000pt;}
.y43{bottom:104.474667pt;}
.y97{bottom:107.072000pt;}
.y70{bottom:109.632000pt;}
.y42{bottom:118.234667pt;}
.y2f{bottom:125.000000pt;}
.y96{bottom:127.552000pt;}
.y41{bottom:131.994667pt;}
.y6f{bottom:132.832000pt;}
.y37{bottom:143.834667pt;}
.y40{bottom:145.754667pt;}
.y2e{bottom:148.200000pt;}
.y95{bottom:150.746667pt;}
.y36{bottom:153.114667pt;}
.y6e{bottom:156.186667pt;}
.y3f{bottom:159.674667pt;}
.y2d{bottom:171.560000pt;}
.y94{bottom:173.946667pt;}
.y6d{bottom:179.386667pt;}
.y2c{bottom:194.760000pt;}
.y93{bottom:197.146667pt;}
.y6c{bottom:202.586667pt;}
.y2b{bottom:217.960000pt;}
.y92{bottom:220.506667pt;}
.y6b{bottom:225.786667pt;}
.y1e{bottom:233.960000pt;}
.y2a{bottom:241.160000pt;}
.y91{bottom:243.706667pt;}
.y6a{bottom:248.986667pt;}
.y1d{bottom:255.400000pt;}
.y10{bottom:258.106667pt;}
.y29{bottom:264.360000pt;}
.y90{bottom:266.906667pt;}
.y69{bottom:272.186667pt;}
.y1c{bottom:276.840000pt;}
.y28{bottom:287.586667pt;}
.y8f{bottom:290.106667pt;}
.y68{bottom:295.546667pt;}
.y1b{bottom:298.466667pt;}
.y27{bottom:310.946667pt;}
.y8e{bottom:313.346667pt;}
.y67{bottom:318.786667pt;}
.y1a{bottom:319.906667pt;}
.y8d{bottom:336.546667pt;}
.y19{bottom:341.346667pt;}
.y66{bottom:341.986667pt;}
.y26{bottom:342.146667pt;}
.y8c{bottom:359.906667pt;}
.y18{bottom:362.786667pt;}
.y65{bottom:365.186667pt;}
.y25{bottom:365.346667pt;}
.y8b{bottom:383.106667pt;}
.y17{bottom:384.226667pt;}
.y64{bottom:388.386667pt;}
.y24{bottom:388.546667pt;}
.y16{bottom:405.666667pt;}
.y8a{bottom:406.306667pt;}
.y23{bottom:411.746667pt;}
.y15{bottom:427.106667pt;}
.y89{bottom:429.506667pt;}
.y63{bottom:434.946667pt;}
.y22{bottom:435.106667pt;}
.y14{bottom:448.706667pt;}
.y88{bottom:452.706667pt;}
.y62{bottom:458.146667pt;}
.y21{bottom:458.306667pt;}
.y13{bottom:470.146667pt;}
.y87{bottom:476.066667pt;}
.y61{bottom:481.346667pt;}
.y20{bottom:481.506667pt;}
.y12{bottom:491.586667pt;}
.y86{bottom:499.266667pt;}
.y60{bottom:504.546667pt;}
.y1f{bottom:504.706667pt;}
.y11{bottom:513.066667pt;}
.y85{bottom:522.466667pt;}
.y5f{bottom:527.746667pt;}
.y84{bottom:545.693333pt;}
.y5e{bottom:551.133333pt;}
.y83{bottom:568.893333pt;}
.y5d{bottom:574.333333pt;}
.y82{bottom:592.093333pt;}
.y5c{bottom:597.533333pt;}
.y81{bottom:615.453333pt;}
.y5b{bottom:620.733333pt;}
.y80{bottom:638.653333pt;}
.y5a{bottom:643.933333pt;}
.y7f{bottom:661.853333pt;}
.y59{bottom:667.293333pt;}
.y7e{bottom:685.053333pt;}
.y58{bottom:690.493333pt;}
.ya4{bottom:702.333333pt;}
.y7d{bottom:708.253333pt;}
.y57{bottom:713.693333pt;}
.ya3{bottom:720.253333pt;}
.y7c{bottom:731.613333pt;}
.y56{bottom:736.893333pt;}
.ya2{bottom:738.013333pt;}
.y7b{bottom:754.813333pt;}
.ya1{bottom:755.933333pt;}
.y55{bottom:760.093333pt;}
.ya0{bottom:773.893333pt;}
.y7a{bottom:778.053333pt;}
.y54{bottom:783.333333pt;}
.yf{bottom:784.613333pt;}
.y9f{bottom:794.373333pt;}
.ye{bottom:800.773333pt;}
.y79{bottom:801.253333pt;}
.y53{bottom:806.693333pt;}
.y9e{bottom:817.573333pt;}
.yd{bottom:821.253333pt;}
.y78{bottom:824.453333pt;}
.y52{bottom:829.893333pt;}
.y9d{bottom:837.413333pt;}
.y77{bottom:847.653333pt;}
.yc{bottom:847.813333pt;}
.y9c{bottom:852.773333pt;}
.y51{bottom:853.093333pt;}
.y9b{bottom:867.973333pt;}
.y76{bottom:871.013333pt;}
.yb{bottom:871.173333pt;}
.y50{bottom:876.293333pt;}
.y9a{bottom:883.333333pt;}
.ya{bottom:891.013333pt;}
.y75{bottom:894.213333pt;}
.y99{bottom:898.693333pt;}
.y4f{bottom:899.493333pt;}
.y74{bottom:917.413333pt;}
.y9{bottom:920.933333pt;}
.y4e{bottom:922.853333pt;}
.y73{bottom:940.613333pt;}
.y4d{bottom:946.053333pt;}
.y8{bottom:952.773333pt;}
.y4a{bottom:955.680000pt;}
.y72{bottom:963.813333pt;}
.y4c{bottom:966.693333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h15{height:3.742500pt;}
.h11{height:18.768750pt;}
.h10{height:22.343750pt;}
.h19{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h14{height:33.867188pt;}
.h12{height:34.664062pt;}
.h13{height:35.085938pt;}
.h6{height:37.090625pt;}
.hb{height:37.479688pt;}
.h1b{height:38.672812pt;}
.h5{height:41.112500pt;}
.ha{height:42.870312pt;}
.h17{height:49.622500pt;}
.h7{height:50.288438pt;}
.h18{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1a{height:56.891250pt;}
.h3{height:58.563750pt;}
.h16{height:59.355688pt;}
.h2{height:75.552000pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.hf{height:179.200000pt;}
.hc{height:521.693333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.920000pt;}
.w7{width:144.800000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.x1a{left:7.200000pt;}
.x4{left:11.360000pt;}
.x1d{left:16.160000pt;}
.x18{left:17.760000pt;}
.x6{left:19.520000pt;}
.x17{left:22.720000pt;}
.x1f{left:25.920000pt;}
.x11{left:38.880000pt;}
.x1e{left:42.400000pt;}
.x12{left:45.120000pt;}
.x10{left:48.800000pt;}
.x1b{left:55.240000pt;}
.x16{left:59.674667pt;}
.x1{left:69.600000pt;}
.x14{left:70.554667pt;}
.x15{left:74.394667pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x20{left:91.354667pt;}
.x1c{left:94.874667pt;}
.x24{left:100.831988pt;}
.x13{left:110.714667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x19{left:194.746667pt;}
.x21{left:247.906667pt;}
.x22{left:251.426667pt;}
.xd{left:356.546655pt;}
.xe{left:437.853322pt;}
.xa{left:470.013322pt;}
.xf{left:546.053322pt;}
.xc{left:566.373322pt;}
.xb{left:603.173322pt;}
.x8{left:680.933322pt;}
.x7{left:703.999988pt;}
}




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