
    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_903869ef6629bcdf7fe5c3de.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_e6da0238cac7f970d3c9f40c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_ca7f3e917a276109e2d8f99d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909000;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_01802a271496d0382e3ba851.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_18e5f0dd005183789144bb84.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_98bbe3b397e7aded001b7c4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_3c2ea4114b9f5714de5eec6e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_722b336c90e3f8a5449c2508.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_e2a6d68db0324806a69dd238.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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_3f4865bc7f3adad551cfd4d9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_d7697dadb370e5443a3173c9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.525000;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_6fad29544b77a4696ba42a2c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888000;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_5ad7c757fc35b808e3aa39a8.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.399000;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_334e2b380050cab000409541.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958000;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);}
.v2{vertical-align:-23.754000px;}
.v4{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:23.754000px;}
.v3{vertical-align:27.024000px;}
.v1{vertical-align:31.236000px;}
.v5{vertical-align:44.898000px;}
.v7{vertical-align:89.544000px;}
.v8{vertical-align:120.882000px;}
.v6{vertical-align:137.190000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.001050px;}
.ls10{letter-spacing:0.006372px;}
.lsf{letter-spacing:0.010231px;}
.lsb{letter-spacing:2.984915px;}
.ls0{letter-spacing:2.986053px;}
.lsa{letter-spacing:2.988103px;}
.ls3{letter-spacing:3.861821px;}
.ls8{letter-spacing:6.480005px;}
.ls18{letter-spacing:13.895971px;}
.lse{letter-spacing:14.530921px;}
.ls14{letter-spacing:17.194869px;}
.lsd{letter-spacing:17.532103px;}
.ls13{letter-spacing:18.179412px;}
.ls9{letter-spacing:18.196379px;}
.ls16{letter-spacing:18.392743px;}
.ls15{letter-spacing:18.458197px;}
.ls4{letter-spacing:21.796382px;}
.ls11{letter-spacing:23.629111px;}
.ls5{letter-spacing:23.825474px;}
.ls1a{letter-spacing:31.090935px;}
.ls7{letter-spacing:32.007299px;}
.ls6{letter-spacing:32.072754px;}
.ls17{letter-spacing:32.596391px;}
.ls2{letter-spacing:32.727300px;}
.ls19{letter-spacing:42.951231px;}
.ls12{letter-spacing:42.957231px;}
.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;}
}
.ws2a{word-spacing:-42.637126px;}
.ws28{word-spacing:-31.771663px;}
.ws27{word-spacing:-31.706208px;}
.ws29{word-spacing:-18.183288px;}
.ws2e{word-spacing:-0.576000px;}
.ws11{word-spacing:-0.071731px;}
.ws39{word-spacing:-0.065455px;}
.ws43{word-spacing:-0.047821px;}
.ws10{word-spacing:0.000000px;}
.ws1c{word-spacing:0.013091px;}
.ws1a{word-spacing:0.667637px;}
.ws47{word-spacing:0.798546px;}
.ws16{word-spacing:1.322183px;}
.ws36{word-spacing:1.387638px;}
.ws26{word-spacing:1.518547px;}
.ws3a{word-spacing:1.714911px;}
.ws35{word-spacing:2.238547px;}
.ws48{word-spacing:3.285821px;}
.ws4b{word-spacing:3.299613px;}
.ws4d{word-spacing:3.359389px;}
.ws4{word-spacing:3.613094px;}
.ws14{word-spacing:3.678549px;}
.ws19{word-spacing:3.940367px;}
.ws13{word-spacing:4.162913px;}
.ws3e{word-spacing:4.228367px;}
.ws2b{word-spacing:4.725822px;}
.ws33{word-spacing:4.922186px;}
.ws1e{word-spacing:5.642187px;}
.ws8{word-spacing:5.707641px;}
.ws45{word-spacing:5.773096px;}
.wse{word-spacing:5.969460px;}
.ws23{word-spacing:6.362187px;}
.ws18{word-spacing:6.427642px;}
.wsc{word-spacing:6.493096px;}
.wsd{word-spacing:6.558551px;}
.ws3b{word-spacing:7.016733px;}
.ws31{word-spacing:7.409461px;}
.ws46{word-spacing:7.474915px;}
.ws22{word-spacing:7.540370px;}
.ws20{word-spacing:7.605825px;}
.ws30{word-spacing:7.736734px;}
.wsa{word-spacing:8.129461px;}
.ws9{word-spacing:8.456734px;}
.wsb{word-spacing:8.522189px;}
.ws3d{word-spacing:8.587644px;}
.ws21{word-spacing:8.679280px;}
.ws49{word-spacing:8.849462px;}
.wsf{word-spacing:9.242190px;}
.ws25{word-spacing:9.504008px;}
.ws17{word-spacing:9.569463px;}
.ws38{word-spacing:10.112981px;}
.ws2f{word-spacing:10.420372px;}
.ws2c{word-spacing:10.551282px;}
.ws34{word-spacing:10.616736px;}
.ws5{word-spacing:10.878555px;}
.ws7{word-spacing:11.729464px;}
.ws1b{word-spacing:11.794919px;}
.ws4a{word-spacing:12.056737px;}
.ws32{word-spacing:13.169466px;}
.ws40{word-spacing:13.845066px;}
.ws42{word-spacing:21.116981px;}
.ws3f{word-spacing:21.124594px;}
.ws4c{word-spacing:21.339889px;}
.ws37{word-spacing:22.516594px;}
.ws24{word-spacing:25.854567px;}
.ws2{word-spacing:26.253619px;}
.ws1d{word-spacing:26.827469px;}
.ws0{word-spacing:31.322414px;}
.ws3{word-spacing:31.504255px;}
.ws44{word-spacing:32.334572px;}
.ws2d{word-spacing:32.661845px;}
.ws1f{word-spacing:34.036392px;}
.ws3c{word-spacing:34.952756px;}
.ws12{word-spacing:39.639306px;}
.ws1{word-spacing:54.432472px;}
.ws15{word-spacing:80.625869px;}
.ws6{word-spacing:83.186520px;}
.ws41{word-spacing:99.202992px;}
._27{margin-left:-30.796777px;}
._24{margin-left:-6.377675px;}
._0{margin-left:-4.610401px;}
._8{margin-left:-3.600003px;}
._1{margin-left:-2.223667px;}
._16{margin-left:-1.116307px;}
._1c{width:1.010398px;}
._2{width:2.223667px;}
._1e{width:3.272730px;}
._21{width:18.652772px;}
._19{width:20.131438px;}
._1d{width:22.815077px;}
._1f{width:23.927805px;}
._4{width:24.934624px;}
._18{width:26.112807px;}
._6{width:27.975904px;}
._17{width:30.006785px;}
._1b{width:31.025480px;}
._20{width:32.401816px;}
._3{width:35.345484px;}
._7{width:36.847361px;}
._25{width:39.272760px;}
._22{width:41.072191px;}
._5{width:43.852793px;}
._9{width:45.818220px;}
._23{width:49.510467px;}
._b{width:60.545505px;}
._11{width:66.894601px;}
._26{width:75.272790px;}
._1a{width:80.697600px;}
._10{width:945.159056px;}
._c{width:1146.110046px;}
._d{width:1342.038875px;}
._13{width:1388.028458px;}
._f{width:1523.257662px;}
._e{width:1754.834248px;}
._12{width:1793.586949px;}
._a{width:2079.361733px;}
._15{width:2134.278142px;}
._14{width:2150.986541px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y32{bottom:93.813000px;}
.y31{bottom:176.005500px;}
.y30{bottom:196.329000px;}
.y73{bottom:216.996000px;}
.y52{bottom:217.254000px;}
.y2f{bottom:222.145500px;}
.y72{bottom:237.319500px;}
.y51{bottom:237.577500px;}
.y2e{bottom:242.469000px;}
.y71{bottom:257.643000px;}
.y2d{bottom:273.780000px;}
.y50{bottom:275.839500px;}
.y70{bottom:295.161000px;}
.y2c{bottom:306.567000px;}
.y4f{bottom:325.702500px;}
.y2b{bottom:339.355500px;}
.y6f{bottom:343.186500px;}
.y6e{bottom:363.510000px;}
.y4e{bottom:364.282500px;}
.y2a{bottom:370.665000px;}
.y6d{bottom:384.177000px;}
.y4d{bottom:384.606000px;}
.y11{bottom:403.464000px;}
.y6c{bottom:404.500500px;}
.y4c{bottom:404.929500px;}
.y29{bottom:406.264500px;}
.y10{bottom:423.789000px;}
.y6b{bottom:424.825500px;}
.y4b{bottom:425.253000px;}
.yf{bottom:444.112500px;}
.y4a{bottom:445.578000px;}
.y28{bottom:450.219000px;}
.y6a{bottom:462.343500px;}
.ye{bottom:464.436000px;}
.y27{bottom:470.542500px;}
.y49{bottom:484.758000px;}
.yd{bottom:484.759500px;}
.y26{bottom:490.866000px;}
.y48{bottom:505.081500px;}
.yc{bottom:505.083000px;}
.y69{bottom:510.369000px;}
.y25{bottom:511.191000px;}
.y47{bottom:525.405000px;}
.yb{bottom:525.408000px;}
.y68{bottom:531.034500px;}
.y24{bottom:531.514500px;}
.ya{bottom:545.731500px;}
.y46{bottom:546.330000px;}
.y67{bottom:551.359500px;}
.y23{bottom:551.838000px;}
.y9{bottom:566.055000px;}
.y66{bottom:571.683000px;}
.y22{bottom:572.161500px;}
.y45{bottom:584.592000px;}
.y8{bottom:586.378500px;}
.y21{bottom:592.485000px;}
.y65{bottom:609.201000px;}
.y20{bottom:612.810000px;}
.y7{bottom:626.130000px;}
.y1f{bottom:633.133500px;}
.y44{bottom:634.455000px;}
.y1e{bottom:653.457000px;}
.y43{bottom:654.778500px;}
.y64{bottom:657.226500px;}
.y6{bottom:662.853000px;}
.y63{bottom:677.550000px;}
.y1d{bottom:689.056500px;}
.y5{bottom:691.584000px;}
.y42{bottom:693.958500px;}
.y62{bottom:705.456000px;}
.y41{bottom:714.283500px;}
.y61{bottom:731.506500px;}
.y1c{bottom:733.122000px;}
.y40{bottom:735.207000px;}
.y60{bottom:753.801000px;}
.y3f{bottom:755.532000px;}
.y1b{bottom:769.809000px;}
.y5f{bottom:770.871000px;}
.y3e{bottom:794.697000px;}
.y5e{bottom:802.108500px;}
.y1a{bottom:806.496000px;}
.y4{bottom:813.258000px;}
.y5d{bottom:823.461000px;}
.y3d{bottom:833.260500px;}
.y19{bottom:843.183000px;}
.y3{bottom:850.537500px;}
.y5c{bottom:853.066500px;}
.y18{bottom:863.508000px;}
.y3c{bottom:871.522500px;}
.y5b{bottom:891.555000px;}
.y2{bottom:895.369500px;}
.y17{bottom:900.195000px;}
.y5a{bottom:911.878500px;}
.y3b{bottom:921.387000px;}
.y16{bottom:936.882000px;}
.y3a{bottom:942.310500px;}
.y59{bottom:948.396000px;}
.y39{bottom:962.635500px;}
.y58{bottom:968.719500px;}
.y79{bottom:972.751500px;}
.y15{bottom:973.570500px;}
.y38{bottom:983.559000px;}
.y57{bottom:989.043000px;}
.y78{bottom:990.685500px;}
.y37{bottom:1003.882500px;}
.y14{bottom:1010.257500px;}
.y77{bottom:1016.089500px;}
.y56{bottom:1025.902500px;}
.y76{bottom:1034.022000px;}
.y36{bottom:1040.059500px;}
.y13{bottom:1046.944500px;}
.y75{bottom:1059.427500px;}
.y35{bottom:1060.383000px;}
.y54{bottom:1060.549500px;}
.y55{bottom:1071.774000px;}
.y34{bottom:1080.706500px;}
.y53{bottom:1082.844000px;}
.y12{bottom:1083.633000px;}
.y74{bottom:1084.831500px;}
.y1{bottom:1087.587000px;}
.y33{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.h11{height:44.831700px;}
.h9{height:45.818220px;}
.hb{height:46.865494px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.ha{height:53.755715px;}
.h10{height:56.941496px;}
.he{height:60.211496px;}
.h5{height:74.035330px;}
.hf{height:105.115496px;}
.h3{height:106.485382px;}
.hc{height:139.808184px;}
.hd{height:141.970885px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x10{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x11{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.x8{left:310.756500px;}
.xd{left:331.425000px;}
.x9{left:397.792500px;}
.xa{left:401.737500px;}
.xe{left:412.752000px;}
.xf{left:416.698500px;}
.x7{left:438.466500px;}
.xb{left:456.070500px;}
.xc{left:511.845000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v4{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:21.114667pt;}
.v3{vertical-align:24.021333pt;}
.v1{vertical-align:27.765333pt;}
.v5{vertical-align:39.909333pt;}
.v7{vertical-align:79.594667pt;}
.v8{vertical-align:107.450667pt;}
.v6{vertical-align:121.946667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000933pt;}
.ls10{letter-spacing:0.005664pt;}
.lsf{letter-spacing:0.009094pt;}
.lsb{letter-spacing:2.653258pt;}
.ls0{letter-spacing:2.654270pt;}
.lsa{letter-spacing:2.656092pt;}
.ls3{letter-spacing:3.432730pt;}
.ls8{letter-spacing:5.760005pt;}
.ls18{letter-spacing:12.351975pt;}
.lse{letter-spacing:12.916374pt;}
.ls14{letter-spacing:15.284328pt;}
.lsd{letter-spacing:15.584092pt;}
.ls13{letter-spacing:16.159477pt;}
.ls9{letter-spacing:16.174559pt;}
.ls16{letter-spacing:16.349105pt;}
.ls15{letter-spacing:16.407286pt;}
.ls4{letter-spacing:19.374562pt;}
.ls11{letter-spacing:21.003654pt;}
.ls5{letter-spacing:21.178199pt;}
.ls1a{letter-spacing:27.636387pt;}
.ls7{letter-spacing:28.450933pt;}
.ls6{letter-spacing:28.509115pt;}
.ls17{letter-spacing:28.974570pt;}
.ls2{letter-spacing:29.090933pt;}
.ls19{letter-spacing:38.178872pt;}
.ls12{letter-spacing:38.184205pt;}
.ws2a{word-spacing:-37.899668pt;}
.ws28{word-spacing:-28.241478pt;}
.ws27{word-spacing:-28.183296pt;}
.ws29{word-spacing:-16.162923pt;}
.ws2e{word-spacing:-0.512000pt;}
.ws11{word-spacing:-0.063761pt;}
.ws39{word-spacing:-0.058182pt;}
.ws43{word-spacing:-0.042507pt;}
.ws10{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.011636pt;}
.ws1a{word-spacing:0.593455pt;}
.ws47{word-spacing:0.709819pt;}
.ws16{word-spacing:1.175274pt;}
.ws36{word-spacing:1.233456pt;}
.ws26{word-spacing:1.349819pt;}
.ws3a{word-spacing:1.524365pt;}
.ws35{word-spacing:1.989820pt;}
.ws48{word-spacing:2.920730pt;}
.ws4b{word-spacing:2.932989pt;}
.ws4d{word-spacing:2.986123pt;}
.ws4{word-spacing:3.211639pt;}
.ws14{word-spacing:3.269821pt;}
.ws19{word-spacing:3.502548pt;}
.ws13{word-spacing:3.700367pt;}
.ws3e{word-spacing:3.758549pt;}
.ws2b{word-spacing:4.200731pt;}
.ws33{word-spacing:4.375276pt;}
.ws1e{word-spacing:5.015277pt;}
.ws8{word-spacing:5.073459pt;}
.ws45{word-spacing:5.131641pt;}
.wse{word-spacing:5.306186pt;}
.ws23{word-spacing:5.655277pt;}
.ws18{word-spacing:5.713459pt;}
.wsc{word-spacing:5.771641pt;}
.wsd{word-spacing:5.829823pt;}
.ws3b{word-spacing:6.237096pt;}
.ws31{word-spacing:6.586187pt;}
.ws46{word-spacing:6.644369pt;}
.ws22{word-spacing:6.702551pt;}
.ws20{word-spacing:6.760733pt;}
.ws30{word-spacing:6.877097pt;}
.wsa{word-spacing:7.226188pt;}
.ws9{word-spacing:7.517097pt;}
.wsb{word-spacing:7.575279pt;}
.ws3d{word-spacing:7.633461pt;}
.ws21{word-spacing:7.714916pt;}
.ws49{word-spacing:7.866188pt;}
.wsf{word-spacing:8.215280pt;}
.ws25{word-spacing:8.448007pt;}
.ws17{word-spacing:8.506189pt;}
.ws38{word-spacing:8.989316pt;}
.ws2f{word-spacing:9.262553pt;}
.ws2c{word-spacing:9.378917pt;}
.ws34{word-spacing:9.437099pt;}
.ws5{word-spacing:9.669826pt;}
.ws7{word-spacing:10.426191pt;}
.ws1b{word-spacing:10.484372pt;}
.ws4a{word-spacing:10.717100pt;}
.ws32{word-spacing:11.706192pt;}
.ws40{word-spacing:12.306725pt;}
.ws42{word-spacing:18.770650pt;}
.ws3f{word-spacing:18.777417pt;}
.ws4c{word-spacing:18.968790pt;}
.ws37{word-spacing:20.014751pt;}
.ws24{word-spacing:22.981837pt;}
.ws2{word-spacing:23.336550pt;}
.ws1d{word-spacing:23.846639pt;}
.ws0{word-spacing:27.842146pt;}
.ws3{word-spacing:28.003782pt;}
.ws44{word-spacing:28.741842pt;}
.ws2d{word-spacing:29.032751pt;}
.ws1f{word-spacing:30.254571pt;}
.ws3c{word-spacing:31.069117pt;}
.ws12{word-spacing:35.234938pt;}
.ws1{word-spacing:48.384419pt;}
.ws15{word-spacing:71.667439pt;}
.ws6{word-spacing:73.943573pt;}
.ws41{word-spacing:88.180437pt;}
._27{margin-left:-27.374913pt;}
._24{margin-left:-5.669044pt;}
._0{margin-left:-4.098134pt;}
._8{margin-left:-3.200003pt;}
._1{margin-left:-1.976593pt;}
._16{margin-left:-0.992273pt;}
._1c{width:0.898131pt;}
._2{width:1.976593pt;}
._1e{width:2.909093pt;}
._21{width:16.580242pt;}
._19{width:17.894612pt;}
._1d{width:20.280068pt;}
._1f{width:21.269160pt;}
._4{width:22.164110pt;}
._18{width:23.211384pt;}
._6{width:24.867470pt;}
._17{width:26.672698pt;}
._1b{width:27.578205pt;}
._20{width:28.801614pt;}
._3{width:31.418208pt;}
._7{width:32.753210pt;}
._25{width:34.909120pt;}
._22{width:36.508614pt;}
._5{width:38.980260pt;}
._9{width:40.727307pt;}
._23{width:44.009304pt;}
._b{width:53.818227pt;}
._11{width:59.461868pt;}
._26{width:66.909147pt;}
._1a{width:71.731200pt;}
._10{width:840.141383pt;}
._c{width:1018.764485pt;}
._d{width:1192.923444pt;}
._13{width:1233.803074pt;}
._f{width:1354.006811pt;}
._e{width:1559.852665pt;}
._12{width:1594.299510pt;}
._a{width:1848.321540pt;}
._15{width:1897.136126pt;}
._14{width:1911.988037pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:83.389333pt;}
.y31{bottom:156.449333pt;}
.y30{bottom:174.514667pt;}
.y73{bottom:192.885333pt;}
.y52{bottom:193.114667pt;}
.y2f{bottom:197.462667pt;}
.y72{bottom:210.950667pt;}
.y51{bottom:211.180000pt;}
.y2e{bottom:215.528000pt;}
.y71{bottom:229.016000pt;}
.y2d{bottom:243.360000pt;}
.y50{bottom:245.190667pt;}
.y70{bottom:262.365333pt;}
.y2c{bottom:272.504000pt;}
.y4f{bottom:289.513333pt;}
.y2b{bottom:301.649333pt;}
.y6f{bottom:305.054667pt;}
.y6e{bottom:323.120000pt;}
.y4e{bottom:323.806667pt;}
.y2a{bottom:329.480000pt;}
.y6d{bottom:341.490667pt;}
.y4d{bottom:341.872000pt;}
.y11{bottom:358.634667pt;}
.y6c{bottom:359.556000pt;}
.y4c{bottom:359.937333pt;}
.y29{bottom:361.124000pt;}
.y10{bottom:376.701333pt;}
.y6b{bottom:377.622667pt;}
.y4b{bottom:378.002667pt;}
.yf{bottom:394.766667pt;}
.y4a{bottom:396.069333pt;}
.y28{bottom:400.194667pt;}
.y6a{bottom:410.972000pt;}
.ye{bottom:412.832000pt;}
.y27{bottom:418.260000pt;}
.y49{bottom:430.896000pt;}
.yd{bottom:430.897333pt;}
.y26{bottom:436.325333pt;}
.y48{bottom:448.961333pt;}
.yc{bottom:448.962667pt;}
.y69{bottom:453.661333pt;}
.y25{bottom:454.392000pt;}
.y47{bottom:467.026667pt;}
.yb{bottom:467.029333pt;}
.y68{bottom:472.030667pt;}
.y24{bottom:472.457333pt;}
.ya{bottom:485.094667pt;}
.y46{bottom:485.626667pt;}
.y67{bottom:490.097333pt;}
.y23{bottom:490.522667pt;}
.y9{bottom:503.160000pt;}
.y66{bottom:508.162667pt;}
.y22{bottom:508.588000pt;}
.y45{bottom:519.637333pt;}
.y8{bottom:521.225333pt;}
.y21{bottom:526.653333pt;}
.y65{bottom:541.512000pt;}
.y20{bottom:544.720000pt;}
.y7{bottom:556.560000pt;}
.y1f{bottom:562.785333pt;}
.y44{bottom:563.960000pt;}
.y1e{bottom:580.850667pt;}
.y43{bottom:582.025333pt;}
.y64{bottom:584.201333pt;}
.y6{bottom:589.202667pt;}
.y63{bottom:602.266667pt;}
.y1d{bottom:612.494667pt;}
.y5{bottom:614.741333pt;}
.y42{bottom:616.852000pt;}
.y62{bottom:627.072000pt;}
.y41{bottom:634.918667pt;}
.y61{bottom:650.228000pt;}
.y1c{bottom:651.664000pt;}
.y40{bottom:653.517333pt;}
.y60{bottom:670.045333pt;}
.y3f{bottom:671.584000pt;}
.y1b{bottom:684.274667pt;}
.y5f{bottom:685.218667pt;}
.y3e{bottom:706.397333pt;}
.y5e{bottom:712.985333pt;}
.y1a{bottom:716.885333pt;}
.y4{bottom:722.896000pt;}
.y5d{bottom:731.965333pt;}
.y3d{bottom:740.676000pt;}
.y19{bottom:749.496000pt;}
.y3{bottom:756.033333pt;}
.y5c{bottom:758.281333pt;}
.y18{bottom:767.562667pt;}
.y3c{bottom:774.686667pt;}
.y5b{bottom:792.493333pt;}
.y2{bottom:795.884000pt;}
.y17{bottom:800.173333pt;}
.y5a{bottom:810.558667pt;}
.y3b{bottom:819.010667pt;}
.y16{bottom:832.784000pt;}
.y3a{bottom:837.609333pt;}
.y59{bottom:843.018667pt;}
.y39{bottom:855.676000pt;}
.y58{bottom:861.084000pt;}
.y79{bottom:864.668000pt;}
.y15{bottom:865.396000pt;}
.y38{bottom:874.274667pt;}
.y57{bottom:879.149333pt;}
.y78{bottom:880.609333pt;}
.y37{bottom:892.340000pt;}
.y14{bottom:898.006667pt;}
.y77{bottom:903.190667pt;}
.y56{bottom:911.913333pt;}
.y76{bottom:919.130667pt;}
.y36{bottom:924.497333pt;}
.y13{bottom:930.617333pt;}
.y75{bottom:941.713333pt;}
.y35{bottom:942.562667pt;}
.y54{bottom:942.710667pt;}
.y55{bottom:952.688000pt;}
.y34{bottom:960.628000pt;}
.y53{bottom:962.528000pt;}
.y12{bottom:963.229333pt;}
.y74{bottom:964.294667pt;}
.y1{bottom:966.744000pt;}
.y33{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.h11{height:39.850400pt;}
.h9{height:40.727307pt;}
.hb{height:41.658217pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.ha{height:47.782858pt;}
.h10{height:50.614663pt;}
.he{height:53.521330pt;}
.h5{height:65.809182pt;}
.hf{height:93.435997pt;}
.h3{height:94.653673pt;}
.hc{height:124.273941pt;}
.hd{height:126.196342pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x10{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x11{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.x8{left:276.228000pt;}
.xd{left:294.600000pt;}
.x9{left:353.593333pt;}
.xa{left:357.100000pt;}
.xe{left:366.890667pt;}
.xf{left:370.398667pt;}
.x7{left:389.748000pt;}
.xb{left:405.396000pt;}
.xc{left:454.973333pt;}
}




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