
    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_2c516885f22f24d886fd9de1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957000;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_2baa2c874c0aaf9e9c63f0cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966000;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_697092ad6f6805c23b4797d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;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_8e50337da58ade65f71c312a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.956000;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_9abdf88f83de37d5b9ad0cef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.745000;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_fceb48c3e2d80e766ba5d3ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953000;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_010d73cb8a289bff75f78000.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.957000;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_a910ac5a1b5a91e408ec58fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966000;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_4ff46c91000edd8e8d779b1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966000;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_9ab262c48853cd78e4734dab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948000;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_081704f42e236c7d4d66e147.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.680000;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_2c516885f22f24d886fd9de1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.957000;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_2baa2c874c0aaf9e9c63f0cc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966000;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_081704f42e236c7d4d66e147.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.680000;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:fff;src:url('chunks/assets/font_081704f42e236c7d4d66e147.woff2')format("woff");}.fff{font-family:fff;line-height:0.680000;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:ff10;src:url('chunks/assets/font_081704f42e236c7d4d66e147.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.680000;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:ff11;src:url('chunks/assets/font_1d213acee8547abe8aa195bd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.953000;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:ff12;src:url('chunks/assets/font_5fd763eed99c5ba25dbecf84.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.931000;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:ff13;src:url('chunks/assets/font_081704f42e236c7d4d66e147.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.680000;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:ff14;src:url('chunks/assets/font_081704f42e236c7d4d66e147.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.680000;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982600px;}
.ls1{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:30.000000px;}
.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;}
}
.wsa{word-spacing:-20.460000px;}
.ws2{word-spacing:-17.160000px;}
.ws1{word-spacing:-9.853866px;}
.ws9{word-spacing:-1.500000px;}
.wsb{word-spacing:-0.480000px;}
.ws0{word-spacing:-0.132000px;}
.ws7{word-spacing:-0.120000px;}
.ws3{word-spacing:-0.049114px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:0.540000px;}
.ws8{word-spacing:0.600000px;}
.ws5{word-spacing:1.080000px;}
._a{margin-left:-53.160000px;}
._1{margin-left:-15.201600px;}
._b{margin-left:-9.426000px;}
._4{margin-left:-7.920000px;}
._7{margin-left:-6.600000px;}
._2{margin-left:-4.929600px;}
._3{margin-left:-3.052800px;}
._0{margin-left:-1.108800px;}
._6{width:1.461600px;}
._5{width:8.586000px;}
._8{width:147.499200px;}
._9{width:175.080000px;}
.fc5{color:rgb(48,88,159);}
.fc3{color:transparent;}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(122,122,122);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(123,121,121);}
.fs3{font-size:31.482000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:49.114086px;}
.fs8{font-size:52.002997px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.781183px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:2.999960px;}
.yc7{bottom:2.999964px;}
.y53{bottom:2.999999px;}
.yc6{bottom:19.499938px;}
.y2{bottom:52.312500px;}
.y52{bottom:59.619062px;}
.y1{bottom:64.312500px;}
.y8{bottom:102.047250px;}
.yf8{bottom:130.543650px;}
.y84{bottom:140.874300px;}
.y51{bottom:141.751950px;}
.yaf{bottom:142.860600px;}
.yf7{bottom:148.543650px;}
.y4a{bottom:148.907400px;}
.y50{bottom:157.951950px;}
.y83{bottom:158.874300px;}
.yae{bottom:160.860600px;}
.yf6{bottom:166.543650px;}
.y49{bottom:166.907400px;}
.y4f{bottom:174.151950px;}
.y82{bottom:176.874300px;}
.y48{bottom:184.907400px;}
.yf5{bottom:188.788650px;}
.y4e{bottom:194.604450px;}
.y81{bottom:194.874300px;}
.yad{bottom:195.870600px;}
.y47{bottom:202.907400px;}
.y4d{bottom:210.804450px;}
.yac{bottom:213.870600px;}
.yf4{bottom:219.538650px;}
.y46{bottom:220.907400px;}
.y80{bottom:221.379300px;}
.y4c{bottom:231.256950px;}
.yab{bottom:231.870600px;}
.y45{bottom:238.907400px;}
.y7f{bottom:239.379300px;}
.yf3{bottom:241.783650px;}
.y4b{bottom:247.456950px;}
.yaa{bottom:249.870600px;}
.y7e{bottom:257.379300px;}
.yf2{bottom:259.783650px;}
.y7d{bottom:275.379300px;}
.ya9{bottom:276.374550px;}
.yf1{bottom:277.783650px;}
.y44{bottom:285.523050px;}
.yf0{bottom:295.783650px;}
.y43{bottom:301.723050px;}
.y7c{bottom:301.884300px;}
.y42{bottom:317.923050px;}
.yef{bottom:318.028650px;}
.y7b{bottom:319.884300px;}
.ya8{bottom:327.075750px;}
.y3a{bottom:332.852100px;}
.y41{bottom:334.123050px;}
.y7a{bottom:337.884300px;}
.ya7{bottom:345.075750px;}
.y39{bottom:350.852100px;}
.y40{bottom:354.575550px;}
.y79{bottom:355.884300px;}
.yee{bottom:357.283650px;}
.ya6{bottom:363.075750px;}
.y38{bottom:368.852100px;}
.y3f{bottom:370.775550px;}
.y78{bottom:373.884300px;}
.yed{bottom:379.528650px;}
.ya5{bottom:381.075750px;}
.y37{bottom:386.852100px;}
.y3e{bottom:386.975550px;}
.y77{bottom:391.884300px;}
.yec{bottom:397.528650px;}
.ya4{bottom:399.075750px;}
.y3d{bottom:403.175550px;}
.y76{bottom:409.884300px;}
.yeb{bottom:415.528650px;}
.ya3{bottom:417.075750px;}
.y3c{bottom:419.375550px;}
.y75{bottom:427.884300px;}
.yea{bottom:433.528650px;}
.ya2{bottom:435.075750px;}
.y3b{bottom:435.575550px;}
.ye9{bottom:451.528650px;}
.ya1{bottom:453.075750px;}
.y74{bottom:454.389300px;}
.y73{bottom:472.389300px;}
.y36{bottom:473.641200px;}
.ye8{bottom:473.773650px;}
.ya0{bottom:488.085750px;}
.y35{bottom:489.841200px;}
.y72{bottom:490.389300px;}
.y34{bottom:506.041200px;}
.y9f{bottom:506.085750px;}
.y71{bottom:508.389300px;}
.ye7{bottom:513.028650px;}
.y33{bottom:526.493700px;}
.y2b{bottom:531.196800px;}
.y70{bottom:534.894300px;}
.ye6{bottom:535.273650px;}
.y9e{bottom:541.095750px;}
.y32{bottom:542.693700px;}
.y2a{bottom:549.196800px;}
.y6f{bottom:552.894300px;}
.ye5{bottom:553.273650px;}
.y31{bottom:558.893700px;}
.y9d{bottom:559.095750px;}
.y29{bottom:567.196800px;}
.y6e{bottom:570.894300px;}
.ye4{bottom:571.273650px;}
.y30{bottom:575.093700px;}
.y9c{bottom:577.095750px;}
.y28{bottom:585.196800px;}
.y6d{bottom:588.894300px;}
.ye3{bottom:589.273650px;}
.y2f{bottom:591.293700px;}
.yc8{bottom:594.042473px;}
.y9b{bottom:595.095750px;}
.ye2{bottom:607.273650px;}
.y2e{bottom:611.746200px;}
.y9a{bottom:613.095750px;}
.y6c{bottom:615.398100px;}
.yc5{bottom:617.298177px;}
.y2d{bottom:627.946200px;}
.ye1{bottom:629.518650px;}
.y99{bottom:631.095750px;}
.yc4{bottom:638.794950px;}
.y2c{bottom:644.146200px;}
.y98{bottom:649.095750px;}
.y6b{bottom:666.105750px;}
.y97{bottom:667.095750px;}
.ye0{bottom:668.773650px;}
.y27{bottom:682.212450px;}
.yc3{bottom:682.309950px;}
.y6a{bottom:684.105750px;}
.ydf{bottom:691.018650px;}
.y1e{bottom:694.441350px;}
.y26{bottom:698.412450px;}
.yc2{bottom:700.309950px;}
.y96{bottom:702.105750px;}
.yde{bottom:709.018650px;}
.y1d{bottom:712.441350px;}
.y25{bottom:714.612450px;}
.yc1{bottom:718.309950px;}
.y69{bottom:719.115750px;}
.y95{bottom:720.105750px;}
.ydd{bottom:727.018650px;}
.y1c{bottom:730.441350px;}
.y24{bottom:730.812450px;}
.yc0{bottom:736.309950px;}
.y68{bottom:737.115750px;}
.y94{bottom:738.105750px;}
.ydc{bottom:745.018650px;}
.y23{bottom:747.012450px;}
.y1b{bottom:748.441350px;}
.ybf{bottom:754.309950px;}
.y67{bottom:755.115750px;}
.y93{bottom:756.105750px;}
.ydb{bottom:763.018650px;}
.y1a{bottom:766.441350px;}
.y22{bottom:767.464950px;}
.y92{bottom:774.105750px;}
.ybe{bottom:780.813900px;}
.y21{bottom:783.664950px;}
.y19{bottom:784.441350px;}
.yda{bottom:785.263650px;}
.y66{bottom:790.125750px;}
.y91{bottom:792.105750px;}
.y20{bottom:799.864950px;}
.y18{bottom:802.441350px;}
.y65{bottom:808.125750px;}
.y90{bottom:810.105750px;}
.y1f{bottom:816.064950px;}
.yd9{bottom:824.518650px;}
.y64{bottom:826.125750px;}
.ybd{bottom:831.521550px;}
.y63{bottom:844.125750px;}
.y8f{bottom:845.115750px;}
.yd8{bottom:846.763650px;}
.ybc{bottom:851.321550px;}
.y17{bottom:854.130600px;}
.y62{bottom:862.125750px;}
.y8e{bottom:863.115750px;}
.yd7{bottom:864.763650px;}
.ybb{bottom:869.321550px;}
.y16{bottom:870.330600px;}
.y61{bottom:880.125750px;}
.y8d{bottom:881.115750px;}
.yd6{bottom:882.763650px;}
.y15{bottom:886.530600px;}
.yba{bottom:887.321550px;}
.y102{bottom:897.851550px;}
.y60{bottom:898.125750px;}
.y8c{bottom:899.115750px;}
.yd5{bottom:900.763650px;}
.y14{bottom:902.730600px;}
.yb9{bottom:905.321550px;}
.yc{bottom:911.686050px;}
.y5f{bottom:916.125750px;}
.y8b{bottom:917.115750px;}
.yd4{bottom:918.763650px;}
.y101{bottom:920.096550px;}
.y13{bottom:923.183100px;}
.yb8{bottom:923.321550px;}
.yb{bottom:929.686050px;}
.y5e{bottom:934.125750px;}
.yd3{bottom:936.763650px;}
.y100{bottom:938.096550px;}
.y12{bottom:939.383100px;}
.ya{bottom:947.686050px;}
.y5d{bottom:952.125750px;}
.yd2{bottom:954.763650px;}
.yb7{bottom:958.331550px;}
.y11{bottom:959.835600px;}
.yff{bottom:960.341550px;}
.y9{bottom:965.686050px;}
.y5c{bottom:970.125750px;}
.y10{bottom:976.035600px;}
.yb6{bottom:976.331550px;}
.yd1{bottom:977.008650px;}
.y8a{bottom:988.125750px;}
.yf{bottom:992.235600px;}
.yb5{bottom:994.331550px;}
.y5b{bottom:996.629700px;}
.yfe{bottom:999.596550px;}
.y89{bottom:1006.125750px;}
.ye{bottom:1008.435600px;}
.yb4{bottom:1012.331550px;}
.yd0{bottom:1016.263650px;}
.yfd{bottom:1017.596550px;}
.y88{bottom:1024.125750px;}
.yd{bottom:1024.635600px;}
.yb3{bottom:1030.331550px;}
.ycf{bottom:1038.508650px;}
.yfc{bottom:1039.841550px;}
.y87{bottom:1042.125750px;}
.y5a{bottom:1047.341550px;}
.yb2{bottom:1048.331550px;}
.yce{bottom:1056.508650px;}
.yfb{bottom:1057.841550px;}
.y86{bottom:1060.125750px;}
.y7{bottom:1065.297750px;}
.y59{bottom:1065.341550px;}
.yb1{bottom:1066.331550px;}
.ycd{bottom:1074.508650px;}
.yfa{bottom:1075.841550px;}
.y6{bottom:1081.497600px;}
.y58{bottom:1083.341550px;}
.yb0{bottom:1084.331550px;}
.y85{bottom:1086.629700px;}
.ycc{bottom:1092.508650px;}
.y5{bottom:1097.697600px;}
.y57{bottom:1101.341550px;}
.y4{bottom:1113.897600px;}
.ycb{bottom:1114.753650px;}
.yf9{bottom:1115.096550px;}
.y56{bottom:1119.341550px;}
.y55{bottom:1137.341550px;}
.y3{bottom:1138.601550px;}
.yca{bottom:1149.761550px;}
.y54{bottom:1155.341550px;}
.h11{height:14.999957px;}
.hb{height:15.000000px;}
.hc{height:32.906438px;}
.hf{height:32.999949px;}
.h7{height:35.568000px;}
.h2{height:35.616000px;}
.h3{height:36.048000px;}
.h12{height:37.494161px;}
.h5{height:40.014000px;}
.h9{height:40.068000px;}
.ha{height:40.554000px;}
.h6{height:41.310762px;}
.h10{height:42.642513px;}
.h8{height:44.280000px;}
.hd{height:45.060000px;}
.he{height:61.992000px;}
.h4{height:96.888000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:71.952232px;}
.w4{width:171.285300px;}
.w3{width:637.934041px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:1.065808px;}
.x8{left:90.354300px;}
.x5{left:92.477400px;}
.xc{left:93.543300px;}
.x6{left:97.445400px;}
.x4{left:100.482900px;}
.x9{left:103.485300px;}
.xd{left:114.803100px;}
.x13{left:123.803100px;}
.xe{left:134.778300px;}
.xf{left:152.617741px;}
.x7{left:167.925450px;}
.x1{left:196.355550px;}
.x2{left:202.199550px;}
.xa{left:207.283500px;}
.x11{left:210.103989px;}
.x3{left:328.548750px;}
.xb{left:435.554585px;}
.x12{left:619.854181px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984533pt;}
.ls1{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:26.666667pt;}
.wsa{word-spacing:-18.186667pt;}
.ws2{word-spacing:-15.253333pt;}
.ws1{word-spacing:-8.758992pt;}
.ws9{word-spacing:-1.333333pt;}
.wsb{word-spacing:-0.426667pt;}
.ws0{word-spacing:-0.117333pt;}
.ws7{word-spacing:-0.106667pt;}
.ws3{word-spacing:-0.043657pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:0.480000pt;}
.ws8{word-spacing:0.533333pt;}
.ws5{word-spacing:0.960000pt;}
._a{margin-left:-47.253333pt;}
._1{margin-left:-13.512533pt;}
._b{margin-left:-8.378667pt;}
._4{margin-left:-7.040000pt;}
._7{margin-left:-5.866667pt;}
._2{margin-left:-4.381867pt;}
._3{margin-left:-2.713600pt;}
._0{margin-left:-0.985600pt;}
._6{width:1.299200pt;}
._5{width:7.632000pt;}
._8{width:131.110400pt;}
._9{width:155.626667pt;}
.fs3{font-size:27.984000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:43.656965pt;}
.fs8{font-size:46.224886pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:51.361051pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:2.666631pt;}
.yc7{bottom:2.666635pt;}
.y53{bottom:2.666665pt;}
.yc6{bottom:17.333279pt;}
.y2{bottom:46.500000pt;}
.y52{bottom:52.994721pt;}
.y1{bottom:57.166667pt;}
.y8{bottom:90.708667pt;}
.yf8{bottom:116.038800pt;}
.y84{bottom:125.221600pt;}
.y51{bottom:126.001733pt;}
.yaf{bottom:126.987200pt;}
.yf7{bottom:132.038800pt;}
.y4a{bottom:132.362133pt;}
.y50{bottom:140.401733pt;}
.y83{bottom:141.221600pt;}
.yae{bottom:142.987200pt;}
.yf6{bottom:148.038800pt;}
.y49{bottom:148.362133pt;}
.y4f{bottom:154.801733pt;}
.y82{bottom:157.221600pt;}
.y48{bottom:164.362133pt;}
.yf5{bottom:167.812133pt;}
.y4e{bottom:172.981733pt;}
.y81{bottom:173.221600pt;}
.yad{bottom:174.107200pt;}
.y47{bottom:180.362133pt;}
.y4d{bottom:187.381733pt;}
.yac{bottom:190.107200pt;}
.yf4{bottom:195.145467pt;}
.y46{bottom:196.362133pt;}
.y80{bottom:196.781600pt;}
.y4c{bottom:205.561733pt;}
.yab{bottom:206.107200pt;}
.y45{bottom:212.362133pt;}
.y7f{bottom:212.781600pt;}
.yf3{bottom:214.918800pt;}
.y4b{bottom:219.961733pt;}
.yaa{bottom:222.107200pt;}
.y7e{bottom:228.781600pt;}
.yf2{bottom:230.918800pt;}
.y7d{bottom:244.781600pt;}
.ya9{bottom:245.666267pt;}
.yf1{bottom:246.918800pt;}
.y44{bottom:253.798267pt;}
.yf0{bottom:262.918800pt;}
.y43{bottom:268.198267pt;}
.y7c{bottom:268.341600pt;}
.y42{bottom:282.598267pt;}
.yef{bottom:282.692133pt;}
.y7b{bottom:284.341600pt;}
.ya8{bottom:290.734000pt;}
.y3a{bottom:295.868533pt;}
.y41{bottom:296.998267pt;}
.y7a{bottom:300.341600pt;}
.ya7{bottom:306.734000pt;}
.y39{bottom:311.868533pt;}
.y40{bottom:315.178267pt;}
.y79{bottom:316.341600pt;}
.yee{bottom:317.585467pt;}
.ya6{bottom:322.734000pt;}
.y38{bottom:327.868533pt;}
.y3f{bottom:329.578267pt;}
.y78{bottom:332.341600pt;}
.yed{bottom:337.358800pt;}
.ya5{bottom:338.734000pt;}
.y37{bottom:343.868533pt;}
.y3e{bottom:343.978267pt;}
.y77{bottom:348.341600pt;}
.yec{bottom:353.358800pt;}
.ya4{bottom:354.734000pt;}
.y3d{bottom:358.378267pt;}
.y76{bottom:364.341600pt;}
.yeb{bottom:369.358800pt;}
.ya3{bottom:370.734000pt;}
.y3c{bottom:372.778267pt;}
.y75{bottom:380.341600pt;}
.yea{bottom:385.358800pt;}
.ya2{bottom:386.734000pt;}
.y3b{bottom:387.178267pt;}
.ye9{bottom:401.358800pt;}
.ya1{bottom:402.734000pt;}
.y74{bottom:403.901600pt;}
.y73{bottom:419.901600pt;}
.y36{bottom:421.014400pt;}
.ye8{bottom:421.132133pt;}
.ya0{bottom:433.854000pt;}
.y35{bottom:435.414400pt;}
.y72{bottom:435.901600pt;}
.y34{bottom:449.814400pt;}
.y9f{bottom:449.854000pt;}
.y71{bottom:451.901600pt;}
.ye7{bottom:456.025467pt;}
.y33{bottom:467.994400pt;}
.y2b{bottom:472.174933pt;}
.y70{bottom:475.461600pt;}
.ye6{bottom:475.798800pt;}
.y9e{bottom:480.974000pt;}
.y32{bottom:482.394400pt;}
.y2a{bottom:488.174933pt;}
.y6f{bottom:491.461600pt;}
.ye5{bottom:491.798800pt;}
.y31{bottom:496.794400pt;}
.y9d{bottom:496.974000pt;}
.y29{bottom:504.174933pt;}
.y6e{bottom:507.461600pt;}
.ye4{bottom:507.798800pt;}
.y30{bottom:511.194400pt;}
.y9c{bottom:512.974000pt;}
.y28{bottom:520.174933pt;}
.y6d{bottom:523.461600pt;}
.ye3{bottom:523.798800pt;}
.y2f{bottom:525.594400pt;}
.yc8{bottom:528.037754pt;}
.y9b{bottom:528.974000pt;}
.ye2{bottom:539.798800pt;}
.y2e{bottom:543.774400pt;}
.y9a{bottom:544.974000pt;}
.y6c{bottom:547.020533pt;}
.yc5{bottom:548.709491pt;}
.y2d{bottom:558.174400pt;}
.ye1{bottom:559.572133pt;}
.y99{bottom:560.974000pt;}
.yc4{bottom:567.817733pt;}
.y2c{bottom:572.574400pt;}
.y98{bottom:576.974000pt;}
.y6b{bottom:592.094000pt;}
.y97{bottom:592.974000pt;}
.ye0{bottom:594.465467pt;}
.y27{bottom:606.411067pt;}
.yc3{bottom:606.497733pt;}
.y6a{bottom:608.094000pt;}
.ydf{bottom:614.238800pt;}
.y1e{bottom:617.281200pt;}
.y26{bottom:620.811067pt;}
.yc2{bottom:622.497733pt;}
.y96{bottom:624.094000pt;}
.yde{bottom:630.238800pt;}
.y1d{bottom:633.281200pt;}
.y25{bottom:635.211067pt;}
.yc1{bottom:638.497733pt;}
.y69{bottom:639.214000pt;}
.y95{bottom:640.094000pt;}
.ydd{bottom:646.238800pt;}
.y1c{bottom:649.281200pt;}
.y24{bottom:649.611067pt;}
.yc0{bottom:654.497733pt;}
.y68{bottom:655.214000pt;}
.y94{bottom:656.094000pt;}
.ydc{bottom:662.238800pt;}
.y23{bottom:664.011067pt;}
.y1b{bottom:665.281200pt;}
.ybf{bottom:670.497733pt;}
.y67{bottom:671.214000pt;}
.y93{bottom:672.094000pt;}
.ydb{bottom:678.238800pt;}
.y1a{bottom:681.281200pt;}
.y22{bottom:682.191067pt;}
.y92{bottom:688.094000pt;}
.ybe{bottom:694.056800pt;}
.y21{bottom:696.591067pt;}
.y19{bottom:697.281200pt;}
.yda{bottom:698.012133pt;}
.y66{bottom:702.334000pt;}
.y91{bottom:704.094000pt;}
.y20{bottom:710.991067pt;}
.y18{bottom:713.281200pt;}
.y65{bottom:718.334000pt;}
.y90{bottom:720.094000pt;}
.y1f{bottom:725.391067pt;}
.yd9{bottom:732.905467pt;}
.y64{bottom:734.334000pt;}
.ybd{bottom:739.130267pt;}
.y63{bottom:750.334000pt;}
.y8f{bottom:751.214000pt;}
.yd8{bottom:752.678800pt;}
.ybc{bottom:756.730267pt;}
.y17{bottom:759.227200pt;}
.y62{bottom:766.334000pt;}
.y8e{bottom:767.214000pt;}
.yd7{bottom:768.678800pt;}
.ybb{bottom:772.730267pt;}
.y16{bottom:773.627200pt;}
.y61{bottom:782.334000pt;}
.y8d{bottom:783.214000pt;}
.yd6{bottom:784.678800pt;}
.y15{bottom:788.027200pt;}
.yba{bottom:788.730267pt;}
.y102{bottom:798.090267pt;}
.y60{bottom:798.334000pt;}
.y8c{bottom:799.214000pt;}
.yd5{bottom:800.678800pt;}
.y14{bottom:802.427200pt;}
.yb9{bottom:804.730267pt;}
.yc{bottom:810.387600pt;}
.y5f{bottom:814.334000pt;}
.y8b{bottom:815.214000pt;}
.yd4{bottom:816.678800pt;}
.y101{bottom:817.863600pt;}
.y13{bottom:820.607200pt;}
.yb8{bottom:820.730267pt;}
.yb{bottom:826.387600pt;}
.y5e{bottom:830.334000pt;}
.yd3{bottom:832.678800pt;}
.y100{bottom:833.863600pt;}
.y12{bottom:835.007200pt;}
.ya{bottom:842.387600pt;}
.y5d{bottom:846.334000pt;}
.yd2{bottom:848.678800pt;}
.yb7{bottom:851.850267pt;}
.y11{bottom:853.187200pt;}
.yff{bottom:853.636933pt;}
.y9{bottom:858.387600pt;}
.y5c{bottom:862.334000pt;}
.y10{bottom:867.587200pt;}
.yb6{bottom:867.850267pt;}
.yd1{bottom:868.452133pt;}
.y8a{bottom:878.334000pt;}
.yf{bottom:881.987200pt;}
.yb5{bottom:883.850267pt;}
.y5b{bottom:885.893067pt;}
.yfe{bottom:888.530267pt;}
.y89{bottom:894.334000pt;}
.ye{bottom:896.387200pt;}
.yb4{bottom:899.850267pt;}
.yd0{bottom:903.345467pt;}
.yfd{bottom:904.530267pt;}
.y88{bottom:910.334000pt;}
.yd{bottom:910.787200pt;}
.yb3{bottom:915.850267pt;}
.ycf{bottom:923.118800pt;}
.yfc{bottom:924.303600pt;}
.y87{bottom:926.334000pt;}
.y5a{bottom:930.970267pt;}
.yb2{bottom:931.850267pt;}
.yce{bottom:939.118800pt;}
.yfb{bottom:940.303600pt;}
.y86{bottom:942.334000pt;}
.y7{bottom:946.931333pt;}
.y59{bottom:946.970267pt;}
.yb1{bottom:947.850267pt;}
.ycd{bottom:955.118800pt;}
.yfa{bottom:956.303600pt;}
.y6{bottom:961.331200pt;}
.y58{bottom:962.970267pt;}
.yb0{bottom:963.850267pt;}
.y85{bottom:965.893067pt;}
.ycc{bottom:971.118800pt;}
.y5{bottom:975.731200pt;}
.y57{bottom:978.970267pt;}
.y4{bottom:990.131200pt;}
.ycb{bottom:990.892133pt;}
.yf9{bottom:991.196933pt;}
.y56{bottom:994.970267pt;}
.y55{bottom:1010.970267pt;}
.y3{bottom:1012.090267pt;}
.yca{bottom:1022.010267pt;}
.y54{bottom:1026.970267pt;}
.h11{height:13.333295pt;}
.hb{height:13.333333pt;}
.hc{height:29.250167pt;}
.hf{height:29.333288pt;}
.h7{height:31.616000pt;}
.h2{height:31.658667pt;}
.h3{height:32.042667pt;}
.h12{height:33.328143pt;}
.h5{height:35.568000pt;}
.h9{height:35.616000pt;}
.ha{height:36.048000pt;}
.h6{height:36.720677pt;}
.h10{height:37.904456pt;}
.h8{height:39.360000pt;}
.hd{height:40.053333pt;}
.he{height:55.104000pt;}
.h4{height:86.122667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:63.957540pt;}
.w4{width:152.253600pt;}
.w3{width:567.052480pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:0.947385pt;}
.x8{left:80.314933pt;}
.x5{left:82.202133pt;}
.xc{left:83.149600pt;}
.x6{left:86.618133pt;}
.x4{left:89.318133pt;}
.x9{left:91.986933pt;}
.xd{left:102.047200pt;}
.x13{left:110.047200pt;}
.xe{left:119.802933pt;}
.xf{left:135.660214pt;}
.x7{left:149.267067pt;}
.x1{left:174.538267pt;}
.x2{left:179.732933pt;}
.xa{left:184.252000pt;}
.x11{left:186.759101pt;}
.x3{left:292.043333pt;}
.xb{left:387.159632pt;}
.x12{left:550.981495pt;}
}




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