
    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_2c87d70034de48282d0a8740.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_d836c3895a787d83776cc3f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_55ab74e8fb9d16f75b3eedf3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049000;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_dcace9e3e85f50687aac3455.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049000;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_9c6273b19e030ad375dc38da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_6db3fe26d49f3544657485d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_bdbda68da583d56b0d90d26a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_46448410d19f8472eca100d9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_050e0efd991c970a04526e32.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_97445ed12629cc7dbb9a7995.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.331055;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_fd735eece6f6bb9295397a75.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.331055;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_5228f57df0ec7329f3d5e14f.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v1{vertical-align:-74.880000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.853806px;}
.ls10{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.708343px;}
.ls28{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.630000px;}
.ls27{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.524933px;}
.ls26{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.349112px;}
.ls25{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.185308px;}
.lsf{letter-spacing:-0.089400px;}
.ls1a{letter-spacing:-0.082218px;}
.ls12{letter-spacing:-0.072000px;}
.lsd{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.051840px;}
.ls24{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.242860px;}
.lse{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.336000px;}
.ls20{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.558579px;}
.ls4{letter-spacing:0.576000px;}
.ls1e{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.661795px;}
.ls14{letter-spacing:0.664072px;}
.ls1{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.792000px;}
.lsa{letter-spacing:8.251185px;}
.lsc{letter-spacing:8.440920px;}
.ls1f{letter-spacing:8.712000px;}
.lsb{letter-spacing:9.769063px;}
.ls1c{letter-spacing:11.592000px;}
.ls1b{letter-spacing:18.792000px;}
.ls6{letter-spacing:30.384000px;}
.ls22{letter-spacing:40.625280px;}
.ls21{letter-spacing:43.416000px;}
.ls7{letter-spacing:43.666560px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-60.480000px;}
.wsd{word-spacing:-27.936000px;}
.ws2{word-spacing:-27.864000px;}
.wse{word-spacing:-27.648000px;}
.ws3{word-spacing:-27.576000px;}
.ws15{word-spacing:-27.504000px;}
.ws1{word-spacing:-27.288000px;}
.wsf{word-spacing:-27.072000px;}
.ws11{word-spacing:-26.928000px;}
.ws12{word-spacing:-26.784000px;}
.ws13{word-spacing:-26.712000px;}
.ws14{word-spacing:-26.640000px;}
.ws7{word-spacing:-26.462687px;}
.ws10{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-13.680000px;}
.wsa{word-spacing:-13.050000px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
._e{margin-left:-9.076247px;}
._d{margin-left:-7.478571px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._9{width:4.587840px;}
._a{width:5.906880px;}
._7{width:7.820108px;}
._6{width:9.021794px;}
._5{width:10.049017px;}
._11{width:11.070720px;}
._10{width:12.158663px;}
._12{width:13.278070px;}
._13{width:14.832480px;}
._b{width:16.107840px;}
._c{width:17.280000px;}
._f{width:18.518880px;}
._8{width:39.096000px;}
.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;}
.fs3{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:54.720000px;}
.fsb{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:69.822393px;}
.fs5{font-size:72.000000px;}
.fsc{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:1.075500px;}
.y5{bottom:3.960000px;}
.y42{bottom:4.680000px;}
.y58{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y56{bottom:10.795500px;}
.y4{bottom:21.240000px;}
.y41{bottom:23.400000px;}
.y55{bottom:29.515500px;}
.y4a{bottom:30.595500px;}
.y40{bottom:42.480000px;}
.y49{bottom:42.835500px;}
.y3{bottom:44.280000px;}
.y54{bottom:51.871500px;}
.y48{bottom:55.831500px;}
.y7{bottom:57.636000px;}
.y3f{bottom:61.200000px;}
.y47{bottom:68.794500px;}
.y53{bottom:70.954500px;}
.y3e{bottom:79.920000px;}
.y52{bottom:88.594500px;}
.y46{bottom:90.394500px;}
.y43{bottom:91.840500px;}
.y8b{bottom:93.996000px;}
.y51{bottom:94.714500px;}
.y3d{bottom:99.000000px;}
.y50{bottom:110.554500px;}
.y8a{bottom:112.716000px;}
.y3c{bottom:117.720000px;}
.y4f{bottom:126.034500px;}
.y89{bottom:131.796000px;}
.y3b{bottom:136.845000px;}
.y4e{bottom:141.514500px;}
.y88{bottom:152.355000px;}
.y45{bottom:152.674500px;}
.y3a{bottom:155.565000px;}
.y4d{bottom:157.354500px;}
.y44{bottom:163.474500px;}
.y87{bottom:171.435000px;}
.y4c{bottom:172.474500px;}
.y39{bottom:176.445000px;}
.yb6{bottom:190.155000px;}
.y86{bottom:191.955000px;}
.y38{bottom:204.165000px;}
.yb5{bottom:209.955000px;}
.y85{bottom:212.475000px;}
.y37{bottom:222.885000px;}
.yb4{bottom:229.755000px;}
.y84{bottom:231.555000px;}
.y36{bottom:241.965000px;}
.yb3{bottom:249.555000px;}
.y83{bottom:252.075000px;}
.y35{bottom:260.715000px;}
.yb2{bottom:269.715000px;}
.y82{bottom:271.155000px;}
.y34{bottom:279.795000px;}
.ye{bottom:284.865000px;}
.yb1{bottom:289.545000px;}
.y81{bottom:291.705000px;}
.y33{bottom:298.515000px;}
.yb0{bottom:309.345000px;}
.y1f{bottom:309.675000px;}
.y80{bottom:310.425000px;}
.y32{bottom:317.595000px;}
.yaf{bottom:329.145000px;}
.y7f{bottom:331.305000px;}
.y1e{bottom:333.795000px;}
.y31{bottom:336.315000px;}
.y7e{bottom:350.025000px;}
.y30{bottom:355.395000px;}
.yae{bottom:357.225000px;}
.y1d{bottom:357.915000px;}
.y7d{bottom:369.105000px;}
.y2f{bottom:374.115000px;}
.yad{bottom:375.945000px;}
.y1c{bottom:382.395000px;}
.y7c{bottom:389.625000px;}
.y2e{bottom:393.225000px;}
.yac{bottom:395.025000px;}
.y1b{bottom:406.545000px;}
.y7b{bottom:408.390000px;}
.yab{bottom:413.790000px;}
.y7a{bottom:429.270000px;}
.y1a{bottom:430.665000px;}
.yaa{bottom:432.870000px;}
.y79{bottom:447.990000px;}
.ya9{bottom:451.590000px;}
.y19{bottom:454.785000px;}
.y2d{bottom:458.385000px;}
.y78{bottom:467.070000px;}
.y2c{bottom:475.665000px;}
.y18{bottom:478.905000px;}
.y77{bottom:487.590000px;}
.ya8{bottom:489.390000px;}
.y2b{bottom:492.945000px;}
.y17{bottom:503.025000px;}
.y76{bottom:506.310000px;}
.y2a{bottom:510.225000px;}
.ya7{bottom:517.110000px;}
.y16{bottom:527.190000px;}
.y29{bottom:527.550000px;}
.ya6{bottom:536.190000px;}
.y28{bottom:544.830000px;}
.y75{bottom:545.940000px;}
.y15{bottom:551.310000px;}
.ya5{bottom:554.940000px;}
.y27{bottom:562.110000px;}
.y74{bottom:566.820000px;}
.ya4{bottom:574.020000px;}
.y14{bottom:575.430000px;}
.y26{bottom:579.390000px;}
.ya3{bottom:592.740000px;}
.y73{bottom:594.540000px;}
.y25{bottom:596.670000px;}
.y13{bottom:599.550000px;}
.ya2{bottom:611.820000px;}
.y72{bottom:613.620000px;}
.y24{bottom:613.950000px;}
.y12{bottom:623.670000px;}
.ya1{bottom:630.540000px;}
.y23{bottom:631.230000px;}
.y71{bottom:632.340000px;}
.y11{bottom:647.790000px;}
.y22{bottom:648.540000px;}
.ya0{bottom:649.620000px;}
.y70{bottom:660.060000px;}
.y21{bottom:665.820000px;}
.y9f{bottom:668.340000px;}
.y10{bottom:671.940000px;}
.y6f{bottom:679.170000px;}
.y20{bottom:683.460000px;}
.y9e{bottom:687.090000px;}
.yf{bottom:696.420000px;}
.y6e{bottom:697.890000px;}
.y9d{bottom:706.170000px;}
.y6d{bottom:716.970000px;}
.y9c{bottom:724.890000px;}
.y6c{bottom:735.690000px;}
.y9b{bottom:743.970000px;}
.y6b{bottom:754.770000px;}
.y9a{bottom:762.690000px;}
.y6a{bottom:773.490000px;}
.y99{bottom:781.770000px;}
.y69{bottom:792.570000px;}
.y98{bottom:800.490000px;}
.y68{bottom:811.335000px;}
.y97{bottom:821.415000px;}
.y67{bottom:830.415000px;}
.y96{bottom:840.135000px;}
.y66{bottom:849.135000px;}
.y95{bottom:860.655000px;}
.y65{bottom:867.855000px;}
.y94{bottom:879.735000px;}
.y64{bottom:888.735000px;}
.y93{bottom:900.255000px;}
.y63{bottom:907.455000px;}
.y92{bottom:918.975000px;}
.y62{bottom:928.335000px;}
.y91{bottom:939.885000px;}
.y61{bottom:947.085000px;}
.y90{bottom:958.605000px;}
.y60{bottom:965.805000px;}
.y8f{bottom:977.685000px;}
.y5f{bottom:986.685000px;}
.yd{bottom:993.165000px;}
.y8e{bottom:996.405000px;}
.yc{bottom:998.565000px;}
.y5e{bottom:1005.405000px;}
.yb{bottom:1016.205000px;}
.y5d{bottom:1024.485000px;}
.ya{bottom:1037.805000px;}
.y8d{bottom:1043.205000px;}
.y5c{bottom:1045.005000px;}
.y5b{bottom:1064.085000px;}
.y9{bottom:1067.730000px;}
.y5a{bottom:1082.850000px;}
.y8{bottom:1086.450000px;}
.y57{bottom:1089.720000px;}
.y59{bottom:1101.570000px;}
.y8c{bottom:1103.370000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.hb{height:4.165313px;}
.h18{height:5.650313px;}
.h1b{height:27.720000px;}
.h15{height:29.678906px;}
.h6{height:30.077578px;}
.h14{height:35.332031px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h16{height:53.677969px;}
.h1a{height:54.426094px;}
.h17{height:55.147500px;}
.hf{height:55.927736px;}
.h8{height:57.672000px;}
.h5{height:59.357813px;}
.h12{height:60.155156px;}
.ha{height:60.952500px;}
.h19{height:61.143509px;}
.h11{height:62.163910px;}
.h1c{height:63.455625px;}
.h3{height:65.884219px;}
.h1d{height:68.084282px;}
.h9{height:70.664062px;}
.h10{height:74.004654px;}
.h7{height:77.280480px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h13{height:192.285000px;}
.hc{height:705.765000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:6.876000px;}
.x17{left:8.266500px;}
.x22{left:12.255000px;}
.x4{left:13.305000px;}
.x15{left:14.746500px;}
.x1c{left:18.346500px;}
.x5{left:19.425000px;}
.x16{left:26.626500px;}
.x1e{left:29.146500px;}
.x1a{left:35.295000px;}
.x6{left:38.145000px;}
.xf{left:43.906500px;}
.x1d{left:47.542500px;}
.x10{left:50.782500px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x20{left:57.262500px;}
.x19{left:62.295000px;}
.x1f{left:66.265500px;}
.x13{left:73.105500px;}
.x12{left:75.265500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x21{left:102.985500px;}
.x1b{left:106.945500px;}
.x25{left:113.436000px;}
.x11{left:124.585500px;}
.x23{left:140.460000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.xb{left:350.790000px;}
.xc{left:598.935000px;}
.xa{left:721.725000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.758939pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.629638pt;}
.ls28{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.560000pt;}
.ls27{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.466607pt;}
.ls26{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.310322pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.164718pt;}
.lsf{letter-spacing:-0.079467pt;}
.ls1a{letter-spacing:-0.073083pt;}
.ls12{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.046080pt;}
.ls24{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.215876pt;}
.lse{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.298667pt;}
.ls20{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.496515pt;}
.ls4{letter-spacing:0.512000pt;}
.ls1e{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.588262pt;}
.ls14{letter-spacing:0.590286pt;}
.ls1{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.704000pt;}
.lsa{letter-spacing:7.334387pt;}
.lsc{letter-spacing:7.503040pt;}
.ls1f{letter-spacing:7.744000pt;}
.lsb{letter-spacing:8.683612pt;}
.ls1c{letter-spacing:10.304000pt;}
.ls1b{letter-spacing:16.704000pt;}
.ls6{letter-spacing:27.008000pt;}
.ls22{letter-spacing:36.111360pt;}
.ls21{letter-spacing:38.592000pt;}
.ls7{letter-spacing:38.814720pt;}
.ws8{word-spacing:-53.760000pt;}
.wsd{word-spacing:-24.832000pt;}
.ws2{word-spacing:-24.768000pt;}
.wse{word-spacing:-24.576000pt;}
.ws3{word-spacing:-24.512000pt;}
.ws15{word-spacing:-24.448000pt;}
.ws1{word-spacing:-24.256000pt;}
.wsf{word-spacing:-24.064000pt;}
.ws11{word-spacing:-23.936000pt;}
.ws12{word-spacing:-23.808000pt;}
.ws13{word-spacing:-23.744000pt;}
.ws14{word-spacing:-23.680000pt;}
.ws7{word-spacing:-23.522388pt;}
.ws10{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-12.160000pt;}
.wsa{word-spacing:-11.600000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
._e{margin-left:-8.067775pt;}
._d{margin-left:-6.647618pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._9{width:4.078080pt;}
._a{width:5.250560pt;}
._7{width:6.951207pt;}
._6{width:8.019373pt;}
._5{width:8.932459pt;}
._11{width:9.840640pt;}
._10{width:10.807701pt;}
._12{width:11.802729pt;}
._13{width:13.184427pt;}
._b{width:14.318080pt;}
._c{width:15.360000pt;}
._f{width:16.461227pt;}
._8{width:34.752000pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:48.640000pt;}
.fsb{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:62.064349pt;}
.fs5{font-size:64.000000pt;}
.fsc{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:0.956000pt;}
.y5{bottom:3.520000pt;}
.y42{bottom:4.160000pt;}
.y58{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y56{bottom:9.596000pt;}
.y4{bottom:18.880000pt;}
.y41{bottom:20.800000pt;}
.y55{bottom:26.236000pt;}
.y4a{bottom:27.196000pt;}
.y40{bottom:37.760000pt;}
.y49{bottom:38.076000pt;}
.y3{bottom:39.360000pt;}
.y54{bottom:46.108000pt;}
.y48{bottom:49.628000pt;}
.y7{bottom:51.232000pt;}
.y3f{bottom:54.400000pt;}
.y47{bottom:61.150667pt;}
.y53{bottom:63.070667pt;}
.y3e{bottom:71.040000pt;}
.y52{bottom:78.750667pt;}
.y46{bottom:80.350667pt;}
.y43{bottom:81.636000pt;}
.y8b{bottom:83.552000pt;}
.y51{bottom:84.190667pt;}
.y3d{bottom:88.000000pt;}
.y50{bottom:98.270667pt;}
.y8a{bottom:100.192000pt;}
.y3c{bottom:104.640000pt;}
.y4f{bottom:112.030667pt;}
.y89{bottom:117.152000pt;}
.y3b{bottom:121.640000pt;}
.y4e{bottom:125.790667pt;}
.y88{bottom:135.426667pt;}
.y45{bottom:135.710667pt;}
.y3a{bottom:138.280000pt;}
.y4d{bottom:139.870667pt;}
.y44{bottom:145.310667pt;}
.y87{bottom:152.386667pt;}
.y4c{bottom:153.310667pt;}
.y39{bottom:156.840000pt;}
.yb6{bottom:169.026667pt;}
.y86{bottom:170.626667pt;}
.y38{bottom:181.480000pt;}
.yb5{bottom:186.626667pt;}
.y85{bottom:188.866667pt;}
.y37{bottom:198.120000pt;}
.yb4{bottom:204.226667pt;}
.y84{bottom:205.826667pt;}
.y36{bottom:215.080000pt;}
.yb3{bottom:221.826667pt;}
.y83{bottom:224.066667pt;}
.y35{bottom:231.746667pt;}
.yb2{bottom:239.746667pt;}
.y82{bottom:241.026667pt;}
.y34{bottom:248.706667pt;}
.ye{bottom:253.213333pt;}
.yb1{bottom:257.373333pt;}
.y81{bottom:259.293333pt;}
.y33{bottom:265.346667pt;}
.yb0{bottom:274.973333pt;}
.y1f{bottom:275.266667pt;}
.y80{bottom:275.933333pt;}
.y32{bottom:282.306667pt;}
.yaf{bottom:292.573333pt;}
.y7f{bottom:294.493333pt;}
.y1e{bottom:296.706667pt;}
.y31{bottom:298.946667pt;}
.y7e{bottom:311.133333pt;}
.y30{bottom:315.906667pt;}
.yae{bottom:317.533333pt;}
.y1d{bottom:318.146667pt;}
.y7d{bottom:328.093333pt;}
.y2f{bottom:332.546667pt;}
.yad{bottom:334.173333pt;}
.y1c{bottom:339.906667pt;}
.y7c{bottom:346.333333pt;}
.y2e{bottom:349.533333pt;}
.yac{bottom:351.133333pt;}
.y1b{bottom:361.373333pt;}
.y7b{bottom:363.013333pt;}
.yab{bottom:367.813333pt;}
.y7a{bottom:381.573333pt;}
.y1a{bottom:382.813333pt;}
.yaa{bottom:384.773333pt;}
.y79{bottom:398.213333pt;}
.ya9{bottom:401.413333pt;}
.y19{bottom:404.253333pt;}
.y2d{bottom:407.453333pt;}
.y78{bottom:415.173333pt;}
.y2c{bottom:422.813333pt;}
.y18{bottom:425.693333pt;}
.y77{bottom:433.413333pt;}
.ya8{bottom:435.013333pt;}
.y2b{bottom:438.173333pt;}
.y17{bottom:447.133333pt;}
.y76{bottom:450.053333pt;}
.y2a{bottom:453.533333pt;}
.ya7{bottom:459.653333pt;}
.y16{bottom:468.613333pt;}
.y29{bottom:468.933333pt;}
.ya6{bottom:476.613333pt;}
.y28{bottom:484.293333pt;}
.y75{bottom:485.280000pt;}
.y15{bottom:490.053333pt;}
.ya5{bottom:493.280000pt;}
.y27{bottom:499.653333pt;}
.y74{bottom:503.840000pt;}
.ya4{bottom:510.240000pt;}
.y14{bottom:511.493333pt;}
.y26{bottom:515.013333pt;}
.ya3{bottom:526.880000pt;}
.y73{bottom:528.480000pt;}
.y25{bottom:530.373333pt;}
.y13{bottom:532.933333pt;}
.ya2{bottom:543.840000pt;}
.y72{bottom:545.440000pt;}
.y24{bottom:545.733333pt;}
.y12{bottom:554.373333pt;}
.ya1{bottom:560.480000pt;}
.y23{bottom:561.093333pt;}
.y71{bottom:562.080000pt;}
.y11{bottom:575.813333pt;}
.y22{bottom:576.480000pt;}
.ya0{bottom:577.440000pt;}
.y70{bottom:586.720000pt;}
.y21{bottom:591.840000pt;}
.y9f{bottom:594.080000pt;}
.y10{bottom:597.280000pt;}
.y6f{bottom:603.706667pt;}
.y20{bottom:607.520000pt;}
.y9e{bottom:610.746667pt;}
.yf{bottom:619.040000pt;}
.y6e{bottom:620.346667pt;}
.y9d{bottom:627.706667pt;}
.y6d{bottom:637.306667pt;}
.y9c{bottom:644.346667pt;}
.y6c{bottom:653.946667pt;}
.y9b{bottom:661.306667pt;}
.y6b{bottom:670.906667pt;}
.y9a{bottom:677.946667pt;}
.y6a{bottom:687.546667pt;}
.y99{bottom:694.906667pt;}
.y69{bottom:704.506667pt;}
.y98{bottom:711.546667pt;}
.y68{bottom:721.186667pt;}
.y97{bottom:730.146667pt;}
.y67{bottom:738.146667pt;}
.y96{bottom:746.786667pt;}
.y66{bottom:754.786667pt;}
.y95{bottom:765.026667pt;}
.y65{bottom:771.426667pt;}
.y94{bottom:781.986667pt;}
.y64{bottom:789.986667pt;}
.y93{bottom:800.226667pt;}
.y63{bottom:806.626667pt;}
.y92{bottom:816.866667pt;}
.y62{bottom:825.186667pt;}
.y91{bottom:835.453333pt;}
.y61{bottom:841.853333pt;}
.y90{bottom:852.093333pt;}
.y60{bottom:858.493333pt;}
.y8f{bottom:869.053333pt;}
.y5f{bottom:877.053333pt;}
.yd{bottom:882.813333pt;}
.y8e{bottom:885.693333pt;}
.yc{bottom:887.613333pt;}
.y5e{bottom:893.693333pt;}
.yb{bottom:903.293333pt;}
.y5d{bottom:910.653333pt;}
.ya{bottom:922.493333pt;}
.y8d{bottom:927.293333pt;}
.y5c{bottom:928.893333pt;}
.y5b{bottom:945.853333pt;}
.y9{bottom:949.093333pt;}
.y5a{bottom:962.533333pt;}
.y8{bottom:965.733333pt;}
.y57{bottom:968.640000pt;}
.y59{bottom:979.173333pt;}
.y8c{bottom:980.773333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.hb{height:3.702500pt;}
.h18{height:5.022500pt;}
.h1b{height:24.640000pt;}
.h15{height:26.381250pt;}
.h6{height:26.735625pt;}
.h14{height:31.406250pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h16{height:47.713750pt;}
.h1a{height:48.378750pt;}
.h17{height:49.020000pt;}
.hf{height:49.713543pt;}
.h8{height:51.264000pt;}
.h5{height:52.762500pt;}
.h12{height:53.471250pt;}
.ha{height:54.180000pt;}
.h19{height:54.349786pt;}
.h11{height:55.256809pt;}
.h1c{height:56.405000pt;}
.h3{height:58.563750pt;}
.h1d{height:60.519362pt;}
.h9{height:62.812500pt;}
.h10{height:65.781915pt;}
.h7{height:68.693760pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h13{height:170.920000pt;}
.hc{height:627.346667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.112000pt;}
.x17{left:7.348000pt;}
.x22{left:10.893333pt;}
.x4{left:11.826667pt;}
.x15{left:13.108000pt;}
.x1c{left:16.308000pt;}
.x5{left:17.266667pt;}
.x16{left:23.668000pt;}
.x1e{left:25.908000pt;}
.x1a{left:31.373333pt;}
.x6{left:33.906667pt;}
.xf{left:39.028000pt;}
.x1d{left:42.260000pt;}
.x10{left:45.140000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x20{left:50.900000pt;}
.x19{left:55.373333pt;}
.x1f{left:58.902667pt;}
.x13{left:64.982667pt;}
.x12{left:66.902667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x21{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x25{left:100.832000pt;}
.x11{left:110.742667pt;}
.x23{left:124.853333pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.xb{left:311.813333pt;}
.xc{left:532.386667pt;}
.xa{left:641.533333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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