
    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_4d6a8de7af7204fa23b68beb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_6fd8e5dab7580a6348764287.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_caf43ce2bcaf2c0b17438cb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.111816;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_c06ac39cc1bb7439d9de147b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_e6b2e46201f2d853697ff3ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213379;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_61fc9c8c06450965936ec3a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_7ebdb31adad20e733d0a68e1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.213379;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,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);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.031104px;}
.ls5{letter-spacing:0.050400px;}
.lsd{letter-spacing:0.134496px;}
.ls0{letter-spacing:0.201025px;}
.ls3{letter-spacing:0.461377px;}
.lsb{letter-spacing:0.665280px;}
.lse{letter-spacing:1.349281px;}
.ls4{letter-spacing:2.001024px;}
.ls9{letter-spacing:2.911080px;}
.lsc{letter-spacing:2.911681px;}
.lsa{letter-spacing:4.351969px;}
.ls1{letter-spacing:7.687409px;}
.ls7{letter-spacing:11.553409px;}
.ls8{letter-spacing:28.836866px;}
.ls6{letter-spacing:34.598018px;}
.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;}
}
.ws6{word-spacing:-14.446080px;}
.ws4{word-spacing:-13.132800px;}
.ws2{word-spacing:-12.476023px;}
.ws7{word-spacing:-11.541600px;}
.ws8{word-spacing:-11.499840px;}
.ws3{word-spacing:-11.491200px;}
.ws9{word-spacing:-10.834560px;}
.ws0{word-spacing:-9.521280px;}
.ws1{word-spacing:-6.237943px;}
.ws5{word-spacing:0.000000px;}
._2a{margin-left:-10.533942px;}
._17{margin-left:-3.266060px;}
._6{margin-left:-2.169498px;}
._5{margin-left:-1.003668px;}
._0{width:1.283040px;}
._2{width:2.884007px;}
._4{width:4.243015px;}
._3{width:5.273003px;}
._1{width:6.534437px;}
._7{width:7.581844px;}
._10{width:9.556617px;}
._d{width:11.439850px;}
._c{width:14.317205px;}
._e{width:16.118470px;}
._f{width:17.276527px;}
._a{width:18.341946px;}
._b{width:19.517544px;}
._9{width:20.526970px;}
._8{width:22.504769px;}
._13{width:24.240694px;}
._14{width:25.694691px;}
._16{width:26.784000px;}
._18{width:28.073090px;}
._15{width:29.762476px;}
._12{width:32.010842px;}
._11{width:33.414275px;}
._1c{width:35.098918px;}
._1b{width:43.295898px;}
._26{width:46.306312px;}
._2c{width:50.182438px;}
._19{width:51.255336px;}
._1a{width:52.539864px;}
._28{width:57.951591px;}
._2d{width:68.162540px;}
._23{width:78.973135px;}
._29{width:107.049315px;}
._21{width:110.643124px;}
._1d{width:112.753077px;}
._2b{width:140.765758px;}
._24{width:159.657024px;}
._27{width:161.080545px;}
._25{width:173.584975px;}
._2e{width:177.003073px;}
._20{width:185.563007px;}
._22{width:197.120226px;}
._1f{width:199.245121px;}
._1e{width:200.687209px;}
.fc4{color:rgb(104,115,25);}
.fc3{color:rgb(105,114,25);}
.fc1{color:rgb(0,0,128);}
.fc5{color:rgb(51,51,51);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fsb{font-size:24.480000px;}
.fs3{font-size:27.359400px;}
.fs1{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs0{font-size:47.520000px;}
.fsa{font-size:50.400000px;}
.fs4{font-size:54.719400px;}
.fsc{font-size:57.600000px;}
.fs6{font-size:60.480000px;}
.fs9{font-size:63.360000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:96.479400px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.880000px;}
.y7{bottom:56.880000px;}
.y59{bottom:57.600000px;}
.y6{bottom:70.560000px;}
.ya{bottom:70.920000px;}
.y5{bottom:82.440000px;}
.y8{bottom:88.560000px;}
.y4{bottom:94.320000px;}
.y58{bottom:132.479850px;}
.y3b{bottom:133.920000px;}
.y70{bottom:138.240000px;}
.y57{bottom:149.040000px;}
.y3a{bottom:149.400000px;}
.y6f{bottom:155.160000px;}
.y39{bottom:164.880000px;}
.y56{bottom:166.320000px;}
.y6e{bottom:172.440000px;}
.y38{bottom:180.360000px;}
.y55{bottom:183.600000px;}
.y6d{bottom:189.720000px;}
.y37{bottom:195.840000px;}
.y54{bottom:200.879850px;}
.y6c{bottom:206.640000px;}
.y36{bottom:211.320000px;}
.y53{bottom:223.200000px;}
.y6b{bottom:223.920000px;}
.y35{bottom:231.120000px;}
.y52{bottom:240.120000px;}
.y6a{bottom:241.200000px;}
.y7b{bottom:245.879850px;}
.y34{bottom:246.600000px;}
.y51{bottom:257.760000px;}
.y69{bottom:258.480000px;}
.y33{bottom:262.080000px;}
.y7a{bottom:262.800000px;}
.y50{bottom:275.400000px;}
.y32{bottom:277.560000px;}
.y79{bottom:280.080000px;}
.y4f{bottom:292.680000px;}
.y31{bottom:293.040000px;}
.y78{bottom:297.000000px;}
.y68{bottom:297.360000px;}
.y30{bottom:308.879850px;}
.y4e{bottom:310.320000px;}
.y67{bottom:314.280000px;}
.y2f{bottom:324.360000px;}
.y4d{bottom:327.960000px;}
.y66{bottom:331.560000px;}
.y2e{bottom:339.840000px;}
.y4c{bottom:345.240000px;}
.y65{bottom:348.840000px;}
.y2d{bottom:355.320000px;}
.y4b{bottom:362.880000px;}
.y64{bottom:365.760000px;}
.y2c{bottom:370.800000px;}
.y4a{bottom:380.160000px;}
.y77{bottom:383.040000px;}
.y63{bottom:387.720000px;}
.y2b{bottom:390.600000px;}
.y49{bottom:397.800000px;}
.y76{bottom:400.320000px;}
.y62{bottom:404.640000px;}
.y2a{bottom:406.080000px;}
.yd5{bottom:414.360000px;}
.y48{bottom:415.440000px;}
.y75{bottom:417.240000px;}
.y29{bottom:421.560000px;}
.y61{bottom:421.919850px;}
.y47{bottom:432.720000px;}
.y74{bottom:434.520000px;}
.yd4{bottom:435.240000px;}
.y28{bottom:437.040000px;}
.y60{bottom:438.840000px;}
.y73{bottom:451.800000px;}
.y27{bottom:452.520000px;}
.y46{bottom:455.040000px;}
.y5f{bottom:456.120000px;}
.y26{bottom:468.000000px;}
.y72{bottom:468.720000px;}
.y45{bottom:472.320000px;}
.y5e{bottom:473.400000px;}
.yd3{bottom:476.640000px;}
.y25{bottom:483.480000px;}
.y44{bottom:489.960000px;}
.y5d{bottom:490.680000px;}
.y71{bottom:491.040000px;}
.yd2{bottom:497.520000px;}
.y24{bottom:498.960000px;}
.y43{bottom:507.240000px;}
.y5c{bottom:507.600000px;}
.y23{bottom:514.440000px;}
.yd1{bottom:518.400000px;}
.y42{bottom:524.880000px;}
.y22{bottom:534.600000px;}
.y5b{bottom:542.160000px;}
.y41{bottom:542.520000px;}
.yd0{bottom:543.600000px;}
.y21{bottom:550.080000px;}
.y5a{bottom:559.080000px;}
.y40{bottom:559.800000px;}
.y20{bottom:565.560000px;}
.y3f{bottom:577.440000px;}
.ycf{bottom:578.880000px;}
.y1f{bottom:581.040000px;}
.ya1{bottom:582.480000px;}
.y3e{bottom:595.080000px;}
.y1e{bottom:596.520000px;}
.yce{bottom:599.400000px;}
.ya0{bottom:599.759850px;}
.yb6{bottom:601.200000px;}
.y81{bottom:602.640000px;}
.y1d{bottom:612.000000px;}
.y9f{bottom:616.680000px;}
.y80{bottom:617.040000px;}
.ycd{bottom:620.280000px;}
.y1c{bottom:627.480000px;}
.y7f{bottom:631.440000px;}
.y9e{bottom:633.960000px;}
.y3d{bottom:638.640000px;}
.ycc{bottom:641.160000px;}
.y1b{bottom:642.960000px;}
.y7e{bottom:646.200000px;}
.y3c{bottom:654.120000px;}
.y9d{bottom:655.920000px;}
.yb5{bottom:657.360000px;}
.y1a{bottom:658.440000px;}
.ycb{bottom:661.680000px;}
.y7d{bottom:669.960000px;}
.yb4{bottom:671.760000px;}
.y9c{bottom:672.840000px;}
.y19{bottom:673.920000px;}
.yca{bottom:682.560000px;}
.yb3{bottom:686.520000px;}
.y7c{bottom:687.240000px;}
.y18{bottom:689.400000px;}
.y9b{bottom:690.120000px;}
.yb2{bottom:701.280000px;}
.yc9{bottom:703.440000px;}
.y17{bottom:704.880000px;}
.y9a{bottom:707.040000px;}
.yb1{bottom:715.680000px;}
.y16{bottom:720.360000px;}
.yc8{bottom:723.960000px;}
.y99{bottom:724.320000px;}
.yb0{bottom:730.440000px;}
.y15{bottom:735.840000px;}
.y98{bottom:741.600000px;}
.yc7{bottom:744.840000px;}
.yaf{bottom:745.200000px;}
.y14{bottom:751.320000px;}
.y97{bottom:758.520000px;}
.yae{bottom:759.600000px;}
.yc6{bottom:770.040000px;}
.yad{bottom:774.360000px;}
.y96{bottom:775.800000px;}
.y13{bottom:783.000000px;}
.yac{bottom:788.760000px;}
.y95{bottom:793.080000px;}
.yab{bottom:803.519850px;}
.yc5{bottom:805.320000px;}
.y94{bottom:815.040000px;}
.yaa{bottom:818.280000px;}
.yc4{bottom:826.200000px;}
.y12{bottom:827.280000px;}
.y93{bottom:831.960000px;}
.ya9{bottom:832.680000px;}
.y11{bottom:842.040000px;}
.yc3{bottom:846.720000px;}
.ya8{bottom:847.440000px;}
.y92{bottom:848.880000px;}
.y10{bottom:861.839850px;}
.ya7{bottom:862.200000px;}
.y91{bottom:866.160000px;}
.yc2{bottom:867.600000px;}
.ya6{bottom:876.600000px;}
.y90{bottom:883.440000px;}
.yc1{bottom:888.480000px;}
.ya5{bottom:891.360000px;}
.yf{bottom:895.320000px;}
.y8f{bottom:900.360000px;}
.ya4{bottom:906.120000px;}
.yc0{bottom:909.000000px;}
.y8e{bottom:917.640000px;}
.ybf{bottom:929.880000px;}
.y8d{bottom:934.920000px;}
.ye{bottom:944.640000px;}
.ya3{bottom:948.960000px;}
.ybe{bottom:950.760000px;}
.y8c{bottom:952.200000px;}
.y8b{bottom:969.120000px;}
.ybd{bottom:971.280000px;}
.y8a{bottom:986.400000px;}
.ybc{bottom:992.160000px;}
.y89{bottom:1003.680000px;}
.ya2{bottom:1004.040000px;}
.yd{bottom:1007.280000px;}
.ybb{bottom:1013.040000px;}
.y88{bottom:1020.600000px;}
.yba{bottom:1033.560000px;}
.yc{bottom:1034.640000px;}
.y87{bottom:1037.880000px;}
.y86{bottom:1055.160000px;}
.yb9{bottom:1058.760000px;}
.y85{bottom:1072.080000px;}
.y84{bottom:1089.360000px;}
.yb{bottom:1096.200000px;}
.yb8{bottom:1103.760000px;}
.y83{bottom:1106.640000px;}
.yb7{bottom:1122.480000px;}
.y82{bottom:1123.560000px;}
.y3{bottom:1171.080000px;}
.y2{bottom:1184.760000px;}
.y1{bottom:1198.440000px;}
.hd{height:3.839063px;}
.h6{height:15.480000px;}
.h9{height:17.280000px;}
.h10{height:22.065469px;}
.h3{height:30.504375px;}
.h4{height:37.641094px;}
.h5{height:38.008125px;}
.h16{height:42.075000px;}
.h2{height:42.832969px;}
.h13{height:43.250625px;}
.hb{height:44.178750px;}
.hf{height:45.428906px;}
.he{height:46.282500px;}
.ha{height:47.988281px;}
.h7{height:49.322272px;}
.h8{height:49.803204px;}
.h11{height:51.918750px;}
.h15{height:57.110625px;}
.h14{height:57.667500px;}
.h12{height:64.898438px;}
.hc{height:70.475187px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:3.240000px;}
.w4{width:4.680000px;}
.w5{width:10.440000px;}
.w2{width:18.360000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:95.760000px;}
.xe{left:117.000000px;}
.x13{left:122.760000px;}
.xb{left:138.240000px;}
.x1{left:325.440000px;}
.x10{left:376.560000px;}
.xc{left:456.840000px;}
.xd{left:478.080000px;}
.x11{left:533.520000px;}
.x6{left:584.280000px;}
.x9{left:626.400000px;}
.x7{left:630.000000px;}
.x12{left:661.680000px;}
.xa{left:690.840000px;}
.x8{left:712.440000px;}
.x3{left:769.680000px;}
.x4{left:788.040000px;}
.x5{left:791.280000px;}
.xf{left:797.040000px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.027648pt;}
.ls5{letter-spacing:0.044800pt;}
.lsd{letter-spacing:0.119552pt;}
.ls0{letter-spacing:0.178689pt;}
.ls3{letter-spacing:0.410113pt;}
.lsb{letter-spacing:0.591360pt;}
.lse{letter-spacing:1.199361pt;}
.ls4{letter-spacing:1.778688pt;}
.ls9{letter-spacing:2.587627pt;}
.lsc{letter-spacing:2.588161pt;}
.lsa{letter-spacing:3.868417pt;}
.ls1{letter-spacing:6.833253pt;}
.ls7{letter-spacing:10.269697pt;}
.ls8{letter-spacing:25.632769pt;}
.ls6{letter-spacing:30.753794pt;}
.ws6{word-spacing:-12.840960pt;}
.ws4{word-spacing:-11.673600pt;}
.ws2{word-spacing:-11.089798pt;}
.ws7{word-spacing:-10.259200pt;}
.ws8{word-spacing:-10.222080pt;}
.ws3{word-spacing:-10.214400pt;}
.ws9{word-spacing:-9.630720pt;}
.ws0{word-spacing:-8.463360pt;}
.ws1{word-spacing:-5.544838pt;}
.ws5{word-spacing:0.000000pt;}
._2a{margin-left:-9.363504pt;}
._17{margin-left:-2.903164pt;}
._6{margin-left:-1.928443pt;}
._5{margin-left:-0.892150pt;}
._0{width:1.140480pt;}
._2{width:2.563561pt;}
._4{width:3.771569pt;}
._3{width:4.687114pt;}
._1{width:5.808389pt;}
._7{width:6.739417pt;}
._10{width:8.494771pt;}
._d{width:10.168755pt;}
._c{width:12.726404pt;}
._e{width:14.327529pt;}
._f{width:15.356913pt;}
._a{width:16.303952pt;}
._b{width:17.348928pt;}
._9{width:18.246195pt;}
._8{width:20.004239pt;}
._13{width:21.547284pt;}
._14{width:22.839726pt;}
._16{width:23.808000pt;}
._18{width:24.953858pt;}
._15{width:26.455534pt;}
._12{width:28.454082pt;}
._11{width:29.701578pt;}
._1c{width:31.199038pt;}
._1b{width:38.485243pt;}
._26{width:41.161166pt;}
._2c{width:44.606612pt;}
._19{width:45.560299pt;}
._1a{width:46.702101pt;}
._28{width:51.512526pt;}
._2d{width:60.588925pt;}
._23{width:70.198343pt;}
._29{width:95.154946pt;}
._21{width:98.349443pt;}
._1d{width:100.224957pt;}
._2b{width:125.125118pt;}
._24{width:141.917354pt;}
._27{width:143.182707pt;}
._25{width:154.297755pt;}
._2e{width:157.336065pt;}
._20{width:164.944895pt;}
._22{width:175.217978pt;}
._1f{width:177.106774pt;}
._1e{width:178.388631pt;}
.fs8{font-size:5.120000pt;}
.fsb{font-size:21.760000pt;}
.fs3{font-size:24.319467pt;}
.fs1{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs0{font-size:42.240000pt;}
.fsa{font-size:44.800000pt;}
.fs4{font-size:48.639467pt;}
.fsc{font-size:51.200000pt;}
.fs6{font-size:53.760000pt;}
.fs9{font-size:56.320000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:85.759467pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.560000pt;}
.y7{bottom:50.560000pt;}
.y59{bottom:51.200000pt;}
.y6{bottom:62.720000pt;}
.ya{bottom:63.040000pt;}
.y5{bottom:73.280000pt;}
.y8{bottom:78.720000pt;}
.y4{bottom:83.840000pt;}
.y58{bottom:117.759867pt;}
.y3b{bottom:119.040000pt;}
.y70{bottom:122.880000pt;}
.y57{bottom:132.480000pt;}
.y3a{bottom:132.800000pt;}
.y6f{bottom:137.920000pt;}
.y39{bottom:146.560000pt;}
.y56{bottom:147.840000pt;}
.y6e{bottom:153.280000pt;}
.y38{bottom:160.320000pt;}
.y55{bottom:163.200000pt;}
.y6d{bottom:168.640000pt;}
.y37{bottom:174.080000pt;}
.y54{bottom:178.559867pt;}
.y6c{bottom:183.680000pt;}
.y36{bottom:187.840000pt;}
.y53{bottom:198.400000pt;}
.y6b{bottom:199.040000pt;}
.y35{bottom:205.440000pt;}
.y52{bottom:213.440000pt;}
.y6a{bottom:214.400000pt;}
.y7b{bottom:218.559867pt;}
.y34{bottom:219.200000pt;}
.y51{bottom:229.120000pt;}
.y69{bottom:229.760000pt;}
.y33{bottom:232.960000pt;}
.y7a{bottom:233.600000pt;}
.y50{bottom:244.800000pt;}
.y32{bottom:246.720000pt;}
.y79{bottom:248.960000pt;}
.y4f{bottom:260.160000pt;}
.y31{bottom:260.480000pt;}
.y78{bottom:264.000000pt;}
.y68{bottom:264.320000pt;}
.y30{bottom:274.559867pt;}
.y4e{bottom:275.840000pt;}
.y67{bottom:279.360000pt;}
.y2f{bottom:288.320000pt;}
.y4d{bottom:291.520000pt;}
.y66{bottom:294.720000pt;}
.y2e{bottom:302.080000pt;}
.y4c{bottom:306.880000pt;}
.y65{bottom:310.080000pt;}
.y2d{bottom:315.840000pt;}
.y4b{bottom:322.560000pt;}
.y64{bottom:325.120000pt;}
.y2c{bottom:329.600000pt;}
.y4a{bottom:337.920000pt;}
.y77{bottom:340.480000pt;}
.y63{bottom:344.640000pt;}
.y2b{bottom:347.200000pt;}
.y49{bottom:353.600000pt;}
.y76{bottom:355.840000pt;}
.y62{bottom:359.680000pt;}
.y2a{bottom:360.960000pt;}
.yd5{bottom:368.320000pt;}
.y48{bottom:369.280000pt;}
.y75{bottom:370.880000pt;}
.y29{bottom:374.720000pt;}
.y61{bottom:375.039867pt;}
.y47{bottom:384.640000pt;}
.y74{bottom:386.240000pt;}
.yd4{bottom:386.880000pt;}
.y28{bottom:388.480000pt;}
.y60{bottom:390.080000pt;}
.y73{bottom:401.600000pt;}
.y27{bottom:402.240000pt;}
.y46{bottom:404.480000pt;}
.y5f{bottom:405.440000pt;}
.y26{bottom:416.000000pt;}
.y72{bottom:416.640000pt;}
.y45{bottom:419.840000pt;}
.y5e{bottom:420.800000pt;}
.yd3{bottom:423.680000pt;}
.y25{bottom:429.760000pt;}
.y44{bottom:435.520000pt;}
.y5d{bottom:436.160000pt;}
.y71{bottom:436.480000pt;}
.yd2{bottom:442.240000pt;}
.y24{bottom:443.520000pt;}
.y43{bottom:450.880000pt;}
.y5c{bottom:451.200000pt;}
.y23{bottom:457.280000pt;}
.yd1{bottom:460.800000pt;}
.y42{bottom:466.560000pt;}
.y22{bottom:475.200000pt;}
.y5b{bottom:481.920000pt;}
.y41{bottom:482.240000pt;}
.yd0{bottom:483.200000pt;}
.y21{bottom:488.960000pt;}
.y5a{bottom:496.960000pt;}
.y40{bottom:497.600000pt;}
.y20{bottom:502.720000pt;}
.y3f{bottom:513.280000pt;}
.ycf{bottom:514.560000pt;}
.y1f{bottom:516.480000pt;}
.ya1{bottom:517.760000pt;}
.y3e{bottom:528.960000pt;}
.y1e{bottom:530.240000pt;}
.yce{bottom:532.800000pt;}
.ya0{bottom:533.119867pt;}
.yb6{bottom:534.400000pt;}
.y81{bottom:535.680000pt;}
.y1d{bottom:544.000000pt;}
.y9f{bottom:548.160000pt;}
.y80{bottom:548.480000pt;}
.ycd{bottom:551.360000pt;}
.y1c{bottom:557.760000pt;}
.y7f{bottom:561.280000pt;}
.y9e{bottom:563.520000pt;}
.y3d{bottom:567.680000pt;}
.ycc{bottom:569.920000pt;}
.y1b{bottom:571.520000pt;}
.y7e{bottom:574.400000pt;}
.y3c{bottom:581.440000pt;}
.y9d{bottom:583.040000pt;}
.yb5{bottom:584.320000pt;}
.y1a{bottom:585.280000pt;}
.ycb{bottom:588.160000pt;}
.y7d{bottom:595.520000pt;}
.yb4{bottom:597.120000pt;}
.y9c{bottom:598.080000pt;}
.y19{bottom:599.040000pt;}
.yca{bottom:606.720000pt;}
.yb3{bottom:610.240000pt;}
.y7c{bottom:610.880000pt;}
.y18{bottom:612.800000pt;}
.y9b{bottom:613.440000pt;}
.yb2{bottom:623.360000pt;}
.yc9{bottom:625.280000pt;}
.y17{bottom:626.560000pt;}
.y9a{bottom:628.480000pt;}
.yb1{bottom:636.160000pt;}
.y16{bottom:640.320000pt;}
.yc8{bottom:643.520000pt;}
.y99{bottom:643.840000pt;}
.yb0{bottom:649.280000pt;}
.y15{bottom:654.080000pt;}
.y98{bottom:659.200000pt;}
.yc7{bottom:662.080000pt;}
.yaf{bottom:662.400000pt;}
.y14{bottom:667.840000pt;}
.y97{bottom:674.240000pt;}
.yae{bottom:675.200000pt;}
.yc6{bottom:684.480000pt;}
.yad{bottom:688.320000pt;}
.y96{bottom:689.600000pt;}
.y13{bottom:696.000000pt;}
.yac{bottom:701.120000pt;}
.y95{bottom:704.960000pt;}
.yab{bottom:714.239867pt;}
.yc5{bottom:715.840000pt;}
.y94{bottom:724.480000pt;}
.yaa{bottom:727.360000pt;}
.yc4{bottom:734.400000pt;}
.y12{bottom:735.360000pt;}
.y93{bottom:739.520000pt;}
.ya9{bottom:740.160000pt;}
.y11{bottom:748.480000pt;}
.yc3{bottom:752.640000pt;}
.ya8{bottom:753.280000pt;}
.y92{bottom:754.560000pt;}
.y10{bottom:766.079867pt;}
.ya7{bottom:766.400000pt;}
.y91{bottom:769.920000pt;}
.yc2{bottom:771.200000pt;}
.ya6{bottom:779.200000pt;}
.y90{bottom:785.280000pt;}
.yc1{bottom:789.760000pt;}
.ya5{bottom:792.320000pt;}
.yf{bottom:795.840000pt;}
.y8f{bottom:800.320000pt;}
.ya4{bottom:805.440000pt;}
.yc0{bottom:808.000000pt;}
.y8e{bottom:815.680000pt;}
.ybf{bottom:826.560000pt;}
.y8d{bottom:831.040000pt;}
.ye{bottom:839.680000pt;}
.ya3{bottom:843.520000pt;}
.ybe{bottom:845.120000pt;}
.y8c{bottom:846.400000pt;}
.y8b{bottom:861.440000pt;}
.ybd{bottom:863.360000pt;}
.y8a{bottom:876.800000pt;}
.ybc{bottom:881.920000pt;}
.y89{bottom:892.160000pt;}
.ya2{bottom:892.480000pt;}
.yd{bottom:895.360000pt;}
.ybb{bottom:900.480000pt;}
.y88{bottom:907.200000pt;}
.yba{bottom:918.720000pt;}
.yc{bottom:919.680000pt;}
.y87{bottom:922.560000pt;}
.y86{bottom:937.920000pt;}
.yb9{bottom:941.120000pt;}
.y85{bottom:952.960000pt;}
.y84{bottom:968.320000pt;}
.yb{bottom:974.400000pt;}
.yb8{bottom:981.120000pt;}
.y83{bottom:983.680000pt;}
.yb7{bottom:997.760000pt;}
.y82{bottom:998.720000pt;}
.y3{bottom:1040.960000pt;}
.y2{bottom:1053.120000pt;}
.y1{bottom:1065.280000pt;}
.hd{height:3.412500pt;}
.h6{height:13.760000pt;}
.h9{height:15.360000pt;}
.h10{height:19.613750pt;}
.h3{height:27.115000pt;}
.h4{height:33.458750pt;}
.h5{height:33.785000pt;}
.h16{height:37.400000pt;}
.h2{height:38.073750pt;}
.h13{height:38.445000pt;}
.hb{height:39.270000pt;}
.hf{height:40.381250pt;}
.he{height:41.140000pt;}
.ha{height:42.656250pt;}
.h7{height:43.842019pt;}
.h8{height:44.269515pt;}
.h11{height:46.150000pt;}
.h15{height:50.765000pt;}
.h14{height:51.260000pt;}
.h12{height:57.687500pt;}
.hc{height:62.644610pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:2.880000pt;}
.w4{width:4.160000pt;}
.w5{width:9.280000pt;}
.w2{width:16.320000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:85.120000pt;}
.xe{left:104.000000pt;}
.x13{left:109.120000pt;}
.xb{left:122.880000pt;}
.x1{left:289.280000pt;}
.x10{left:334.720000pt;}
.xc{left:406.080000pt;}
.xd{left:424.960000pt;}
.x11{left:474.240000pt;}
.x6{left:519.360000pt;}
.x9{left:556.800000pt;}
.x7{left:560.000000pt;}
.x12{left:588.160000pt;}
.xa{left:614.080000pt;}
.x8{left:633.280000pt;}
.x3{left:684.160000pt;}
.x4{left:700.480000pt;}
.x5{left:703.360000pt;}
.xf{left:708.480000pt;}
}




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