
    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_cc3d75d4d84327c24d601d6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_e67955515427a391fe4a396a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_a98830c545768560e9d845fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_240c326b2e3b7dab7583e0e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_df5cd3de1df9c1934af51d7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_454a195875b51bab16a2d1ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_4d402ce414ed7770f763b805.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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_b3e137f65d631609b696c441.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.022000;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_025b376ea32458aa0a208752.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.989000;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_a1fe4a30c15b0d87bcbbb64c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937500;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_119c9e26309049a1197dc446.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.249799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249799,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.280054px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.280054px;}
.v1{vertical-align:20.160050px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.150992px;}
.ls7{letter-spacing:0.447211px;}
.ls3{letter-spacing:0.517577px;}
.ls0{letter-spacing:0.517644px;}
.ls1{letter-spacing:0.517712px;}
.ls4{letter-spacing:0.517716px;}
.ls5{letter-spacing:1.237590px;}
.ls2{letter-spacing:1.237729px;}
.ls6{letter-spacing:2.607224px;}
.lsb{letter-spacing:11.240937px;}
.lsc{letter-spacing:15.567247px;}
.lsa{letter-spacing:31.407265px;}
.lsd{letter-spacing:36.673400px;}
.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;}
}
.ws4{word-spacing:-64.476000px;}
.ws2{word-spacing:-14.542200px;}
.wsb{word-spacing:-12.656524px;}
.wsc{word-spacing:-11.738813px;}
.ws5{word-spacing:-11.509233px;}
.ws6{word-spacing:-11.145305px;}
.wse{word-spacing:-10.692610px;}
.wsf{word-spacing:-10.354504px;}
.ws8{word-spacing:-10.280780px;}
.ws0{word-spacing:-9.461160px;}
.ws1{word-spacing:-7.358681px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:41.479991px;}
.wsa{word-spacing:45.770116px;}
.wsd{word-spacing:141.819007px;}
.ws7{word-spacing:474.062150px;}
.ws9{word-spacing:1150.503800px;}
._d{margin-left:-678.589841px;}
._c{margin-left:-5.908190px;}
._a{margin-left:-4.246088px;}
._5{margin-left:-3.226625px;}
._1{margin-left:-1.350598px;}
._0{width:1.110784px;}
._4{width:2.117613px;}
._6{width:3.832655px;}
._9{width:5.162585px;}
._7{width:7.018410px;}
._3{width:8.018433px;}
._2{width:9.514572px;}
._8{width:11.387101px;}
._b{width:13.130802px;}
._10{width:56.327305px;}
._e{width:63.644233px;}
._11{width:120.723774px;}
._f{width:311.656296px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,17,53);}
.fc1{color:rgb(18,65,145);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.434725px;}
.fs6{font-size:35.041365px;}
.fs3{font-size:37.844640px;}
.fsc{font-size:42.263280px;}
.fs9{font-size:45.490175px;}
.fs8{font-size:45.491040px;}
.fs5{font-size:46.955250px;}
.fsa{font-size:51.659280px;}
.fs1{font-size:52.562250px;}
.fsb{font-size:54.650880px;}
.fs2{font-size:58.168800px;}
.fs7{font-size:64.476000px;}
.fs0{font-size:105.124055px;}
.y0{bottom:0.000000px;}
.y4e{bottom:174.600083px;}
.y94{bottom:187.560036px;}
.y4d{bottom:193.500068px;}
.y93{bottom:201.060036px;}
.y4c{bottom:210.240074px;}
.y92{bottom:214.560036px;}
.y4b{bottom:226.800041px;}
.y91{bottom:227.880066px;}
.y32{bottom:233.280052px;}
.y90{bottom:241.380066px;}
.y4a{bottom:243.720085px;}
.y31{bottom:250.020058px;}
.y8f{bottom:254.880066px;}
.y49{bottom:260.460091px;}
.y8e{bottom:268.200096px;}
.y30{bottom:275.400055px;}
.y48{bottom:278.100083px;}
.y8d{bottom:281.700096px;}
.y2f{bottom:292.320099px;}
.y47{bottom:294.840088px;}
.y8c{bottom:295.200096px;}
.y8b{bottom:308.520058px;}
.y2e{bottom:309.060036px;}
.y46{bottom:311.760064px;}
.y8a{bottom:322.020058px;}
.y2d{bottom:325.800041px;}
.y45{bottom:328.320099px;}
.y89{bottom:336.240074px;}
.y2c{bottom:342.720085px;}
.y44{bottom:345.060036px;}
.y2b{bottom:359.460091px;}
.y88{bottom:361.620072px;}
.y43{bottom:361.980079px;}
.y2a{bottom:376.200096px;}
.y87{bottom:377.820099px;}
.y42{bottom:378.720085px;}
.y86{bottom:391.860077px;}
.y29{bottom:392.940033px;}
.y41{bottom:395.640060px;}
.y85{bottom:408.780052px;}
.y28{bottom:409.860077px;}
.y40{bottom:412.380066px;}
.y84{bottom:425.520058px;}
.y27{bottom:426.600083px;}
.y3f{bottom:430.020058px;}
.y83{bottom:442.260064px;}
.y3e{bottom:446.580093px;}
.y26{bottom:452.160049px;}
.y82{bottom:459.000068px;}
.y3d{bottom:463.320099px;}
.y25{bottom:469.080093px;}
.y81{bottom:475.920043px;}
.y3c{bottom:480.240074px;}
.y24{bottom:485.640060px;}
.y80{bottom:492.660049px;}
.y3b{bottom:496.980079px;}
.y23{bottom:502.560036px;}
.y7f{bottom:509.400055px;}
.y3a{bottom:513.900055px;}
.y22{bottom:519.300041px;}
.y7e{bottom:526.140060px;}
.y39{bottom:530.640060px;}
.y21{bottom:536.040047px;}
.y7d{bottom:542.880066px;}
.y38{bottom:547.380066px;}
.y20{bottom:552.960091px;}
.y7c{bottom:559.800041px;}
.y37{bottom:564.120072px;}
.y1f{bottom:569.700096px;}
.y7b{bottom:576.540047px;}
.y36{bottom:581.040047px;}
.y1e{bottom:586.440033px;}
.y7a{bottom:593.460091px;}
.y35{bottom:597.780052px;}
.y1d{bottom:603.180039px;}
.y79{bottom:610.200096px;}
.y34{bottom:614.520058px;}
.y1c{bottom:620.100083px;}
.y78{bottom:626.940033px;}
.y33{bottom:631.260064px;}
.y1b{bottom:636.840088px;}
.y77{bottom:643.680039px;}
.y1a{bottom:653.760064px;}
.y6b{bottom:657.540047px;}
.y76{bottom:660.420043px;}
.y19{bottom:670.320099px;}
.y6a{bottom:674.280052px;}
.y75{bottom:677.340088px;}
.y18{bottom:687.060070px;}
.y69{bottom:687.960056px;}
.y74{bottom:694.080059px;}
.y62{bottom:700.572861px;}
.y17{bottom:703.980079px;}
.y73{bottom:711.000068px;}
.y5c{bottom:712.984387px;}
.y61{bottom:714.250614px;}
.y16{bottom:720.720051px;}
.y60{bottom:721.081787px;}
.y72{bottom:727.560070px;}
.y65{bottom:737.453534px;}
.y15{bottom:737.640060px;}
.y71{bottom:744.480079px;}
.y5d{bottom:748.444644px;}
.y14{bottom:754.380066px;}
.y70{bottom:770.040081px;}
.y13{bottom:771.120072px;}
.y66{bottom:771.122479px;}
.y5a{bottom:786.054370px;}
.y6f{bottom:786.780052px;}
.y12{bottom:787.860077px;}
.y6e{bottom:803.700061px;}
.y11{bottom:804.780052px;}
.y6d{bottom:820.440067px;}
.y10{bottom:821.520058px;}
.y5e{bottom:821.878564px;}
.y6c{bottom:837.180073px;}
.yf{bottom:838.260064px;}
.y64{bottom:848.340159px;}
.ye{bottom:855.180073px;}
.y5b{bottom:859.317670px;}
.yb0{bottom:862.740074px;}
.y5f{bottom:863.457372px;}
.y63{bottom:869.042614px;}
.yd{bottom:871.740074px;}
.yaf{bottom:876.420078px;}
.y9d{bottom:881.644141px;}
.ya8{bottom:896.584226px;}
.yc{bottom:897.300076px;}
.yae{bottom:898.919263px;}
.y9c{bottom:902.881446px;}
.y59{bottom:905.036180px;}
.y9b{bottom:905.396116px;}
.yb{bottom:914.220051px;}
.y51{bottom:922.504722px;}
.y9f{bottom:929.338268px;}
.ya{bottom:930.960056px;}
.yac{bottom:934.198552px;}
.y50{bottom:945.898498px;}
.yab{bottom:946.803567px;}
.ya7{bottom:946.983168px;}
.y54{bottom:947.160892px;}
.y9{bottom:947.880066px;}
.y53{bottom:960.660353px;}
.y4f{bottom:961.922713px;}
.y8{bottom:963.360077px;}
.y9a{bottom:969.118574px;}
.y99{bottom:973.439990px;}
.y7{bottom:973.980079px;}
.ya6{bottom:980.096444px;}
.y57{bottom:984.963935px;}
.y6{bottom:991.800058px;}
.y96{bottom:1000.794898px;}
.ya5{bottom:1003.679362px;}
.y56{bottom:1005.116468px;}
.y5{bottom:1005.120072px;}
.ya3{bottom:1008.898880px;}
.y58{bottom:1014.123691px;}
.y4{bottom:1015.020058px;}
.y55{bottom:1018.615928px;}
.ya2{bottom:1021.683528px;}
.yaa{bottom:1027.262280px;}
.y3{bottom:1031.400072px;}
.y98{bottom:1032.661415px;}
.ya4{bottom:1035.355702px;}
.ya9{bottom:1040.036352px;}
.ya1{bottom:1044.357769px;}
.y2{bottom:1049.400072px;}
.y52{bottom:1050.664357px;}
.y97{bottom:1056.962801px;}
.y68{bottom:1057.135461px;}
.yad{bottom:1057.860902px;}
.y9e{bottom:1059.118221px;}
.y1{bottom:1079.640060px;}
.ya0{bottom:1082.696108px;}
.y95{bottom:1082.873730px;}
.y67{bottom:1083.054105px;}
.h18{height:12.959988px;}
.h12{height:12.960022px;}
.h5{height:24.260652px;}
.h7{height:24.467359px;}
.h16{height:31.993303px;}
.h13{height:32.786136px;}
.h17{height:33.176675px;}
.h14{height:34.184706px;}
.hf{height:34.436717px;}
.h10{height:34.539659px;}
.he{height:35.710466px;}
.h3{height:37.086158px;}
.h6{height:38.701397px;}
.h11{height:40.552535px;}
.h9{height:40.615910px;}
.h8{height:41.041951px;}
.ha{height:42.348477px;}
.h15{height:42.900941px;}
.h4{height:46.861956px;}
.hc{height:46.908809px;}
.hd{height:46.940291px;}
.hb{height:47.943816px;}
.h2{height:74.172001px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:4.139992px;}
.w2{width:7.379998px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:105.120002px;}
.xa{left:109.980002px;}
.x5{left:111.420001px;}
.x1{left:114.120002px;}
.x2{left:115.560001px;}
.x30{left:119.699345px;}
.x4{left:121.680005px;}
.xb{left:125.819996px;}
.x2a{left:131.219999px;}
.xc{left:136.260003px;}
.x28{left:140.939999px;}
.x2b{left:151.916561px;}
.x9{left:157.680005px;}
.x3d{left:169.020006px;}
.x22{left:186.121332px;}
.x6{left:191.340002px;}
.xe{left:203.213796px;}
.x16{left:229.858059px;}
.x2c{left:232.557525px;}
.x24{left:240.300036px;}
.x25{left:275.225275px;}
.x2e{left:282.061001px;}
.x29{left:286.919992px;}
.x2f{left:288.902150px;}
.xd{left:290.160653px;}
.x10{left:292.494876px;}
.x2d{left:300.599723px;}
.x7{left:316.439999px;}
.x23{left:351.178902px;}
.x15{left:387.355305px;}
.x3a{left:402.298758px;}
.x38{left:404.642493px;}
.x39{left:407.334607px;}
.x14{left:409.684097px;}
.x13{left:416.515961px;}
.x3{left:446.759994px;}
.xf{left:451.620375px;}
.x17{left:456.835349px;}
.x33{left:460.797093px;}
.x37{left:462.422936px;}
.x34{left:468.894602px;}
.x31{left:473.578852px;}
.x1d{left:490.140686px;}
.x32{left:513.900601px;}
.x1a{left:520.200881px;}
.x26{left:521.282607px;}
.x1f{left:525.598077px;}
.x11{left:537.474126px;}
.x12{left:540.901456px;}
.x1b{left:587.881883px;}
.x35{left:594.178776px;}
.x1c{left:622.439770px;}
.x18{left:628.201306px;}
.x36{left:636.661582px;}
.x19{left:639.177782px;}
.x1e{left:650.336548px;}
.x21{left:666.002795px;}
.x20{left:686.693443px;}
.x27{left:720.360008px;}
.x3b{left:732.957928px;}
.x3c{left:784.259994px;}
@media print{
.v2{vertical-align:-15.360048pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.360048pt;}
.v1{vertical-align:17.920044pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.134215pt;}
.ls7{letter-spacing:0.397521pt;}
.ls3{letter-spacing:0.460068pt;}
.ls0{letter-spacing:0.460128pt;}
.ls1{letter-spacing:0.460188pt;}
.ls4{letter-spacing:0.460192pt;}
.ls5{letter-spacing:1.100080pt;}
.ls2{letter-spacing:1.100204pt;}
.ls6{letter-spacing:2.317533pt;}
.lsb{letter-spacing:9.991944pt;}
.lsc{letter-spacing:13.837553pt;}
.lsa{letter-spacing:27.917569pt;}
.lsd{letter-spacing:32.598578pt;}
.ws4{word-spacing:-57.312000pt;}
.ws2{word-spacing:-12.926400pt;}
.wsb{word-spacing:-11.250243pt;}
.wsc{word-spacing:-10.434500pt;}
.ws5{word-spacing:-10.230429pt;}
.ws6{word-spacing:-9.906938pt;}
.wse{word-spacing:-9.504542pt;}
.wsf{word-spacing:-9.204003pt;}
.ws8{word-spacing:-9.138471pt;}
.ws0{word-spacing:-8.409920pt;}
.ws1{word-spacing:-6.541050pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:36.871103pt;}
.wsa{word-spacing:40.684548pt;}
.wsd{word-spacing:126.061340pt;}
.ws7{word-spacing:421.388578pt;}
.ws9{word-spacing:1022.670044pt;}
._d{margin-left:-603.190970pt;}
._c{margin-left:-5.251724pt;}
._a{margin-left:-3.774301pt;}
._5{margin-left:-2.868111pt;}
._1{margin-left:-1.200531pt;}
._0{width:0.987363pt;}
._4{width:1.882323pt;}
._6{width:3.406805pt;}
._9{width:4.588965pt;}
._7{width:6.238587pt;}
._3{width:7.127496pt;}
._2{width:8.457398pt;}
._8{width:10.121868pt;}
._b{width:11.671824pt;}
._10{width:50.068715pt;}
._e{width:56.572652pt;}
._11{width:107.310021pt;}
._f{width:277.027819pt;}
.fs4{font-size:26.164200pt;}
.fs6{font-size:31.147880pt;}
.fs3{font-size:33.639680pt;}
.fsc{font-size:37.567360pt;}
.fs9{font-size:40.435711pt;}
.fs8{font-size:40.436480pt;}
.fs5{font-size:41.738000pt;}
.fsa{font-size:45.919360pt;}
.fs1{font-size:46.722000pt;}
.fsb{font-size:48.578560pt;}
.fs2{font-size:51.705600pt;}
.fs7{font-size:57.312000pt;}
.fs0{font-size:93.443604pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:155.200074pt;}
.y94{bottom:166.720032pt;}
.y4d{bottom:172.000061pt;}
.y93{bottom:178.720032pt;}
.y4c{bottom:186.880066pt;}
.y92{bottom:190.720032pt;}
.y4b{bottom:201.600037pt;}
.y91{bottom:202.560059pt;}
.y32{bottom:207.360047pt;}
.y90{bottom:214.560059pt;}
.y4a{bottom:216.640076pt;}
.y31{bottom:222.240052pt;}
.y8f{bottom:226.560059pt;}
.y49{bottom:231.520081pt;}
.y8e{bottom:238.400086pt;}
.y30{bottom:244.800049pt;}
.y48{bottom:247.200074pt;}
.y8d{bottom:250.400086pt;}
.y2f{bottom:259.840088pt;}
.y47{bottom:262.080079pt;}
.y8c{bottom:262.400086pt;}
.y8b{bottom:274.240052pt;}
.y2e{bottom:274.720032pt;}
.y46{bottom:277.120057pt;}
.y8a{bottom:286.240052pt;}
.y2d{bottom:289.600037pt;}
.y45{bottom:291.840088pt;}
.y89{bottom:298.880066pt;}
.y2c{bottom:304.640076pt;}
.y44{bottom:306.720032pt;}
.y2b{bottom:319.520081pt;}
.y88{bottom:321.440064pt;}
.y43{bottom:321.760071pt;}
.y2a{bottom:334.400086pt;}
.y87{bottom:335.840088pt;}
.y42{bottom:336.640076pt;}
.y86{bottom:348.320069pt;}
.y29{bottom:349.280030pt;}
.y41{bottom:351.680054pt;}
.y85{bottom:363.360047pt;}
.y28{bottom:364.320069pt;}
.y40{bottom:366.560059pt;}
.y84{bottom:378.240052pt;}
.y27{bottom:379.200074pt;}
.y3f{bottom:382.240052pt;}
.y83{bottom:393.120057pt;}
.y3e{bottom:396.960083pt;}
.y26{bottom:401.920044pt;}
.y82{bottom:408.000061pt;}
.y3d{bottom:411.840088pt;}
.y25{bottom:416.960083pt;}
.y81{bottom:423.040039pt;}
.y3c{bottom:426.880066pt;}
.y24{bottom:431.680054pt;}
.y80{bottom:437.920044pt;}
.y3b{bottom:441.760071pt;}
.y23{bottom:446.720032pt;}
.y7f{bottom:452.800049pt;}
.y3a{bottom:456.800049pt;}
.y22{bottom:461.600037pt;}
.y7e{bottom:467.680054pt;}
.y39{bottom:471.680054pt;}
.y21{bottom:476.480042pt;}
.y7d{bottom:482.560059pt;}
.y38{bottom:486.560059pt;}
.y20{bottom:491.520081pt;}
.y7c{bottom:497.600037pt;}
.y37{bottom:501.440064pt;}
.y1f{bottom:506.400086pt;}
.y7b{bottom:512.480042pt;}
.y36{bottom:516.480042pt;}
.y1e{bottom:521.280030pt;}
.y7a{bottom:527.520081pt;}
.y35{bottom:531.360047pt;}
.y1d{bottom:536.160035pt;}
.y79{bottom:542.400086pt;}
.y34{bottom:546.240052pt;}
.y1c{bottom:551.200074pt;}
.y78{bottom:557.280030pt;}
.y33{bottom:561.120057pt;}
.y1b{bottom:566.080079pt;}
.y77{bottom:572.160035pt;}
.y1a{bottom:581.120057pt;}
.y6b{bottom:584.480042pt;}
.y76{bottom:587.040039pt;}
.y19{bottom:595.840088pt;}
.y6a{bottom:599.360047pt;}
.y75{bottom:602.080079pt;}
.y18{bottom:610.720063pt;}
.y69{bottom:611.520050pt;}
.y74{bottom:616.960053pt;}
.y62{bottom:622.731432pt;}
.y17{bottom:625.760071pt;}
.y73{bottom:632.000061pt;}
.y5c{bottom:633.763900pt;}
.y61{bottom:634.889435pt;}
.y16{bottom:640.640046pt;}
.y60{bottom:640.961588pt;}
.y72{bottom:646.720063pt;}
.y65{bottom:655.514252pt;}
.y15{bottom:655.680054pt;}
.y71{bottom:661.760071pt;}
.y5d{bottom:665.284128pt;}
.y14{bottom:670.560059pt;}
.y70{bottom:684.480072pt;}
.y13{bottom:685.440064pt;}
.y66{bottom:685.442204pt;}
.y5a{bottom:698.714996pt;}
.y6f{bottom:699.360047pt;}
.y12{bottom:700.320069pt;}
.y6e{bottom:714.400055pt;}
.y11{bottom:715.360047pt;}
.y6d{bottom:729.280060pt;}
.y10{bottom:730.240052pt;}
.y5e{bottom:730.558724pt;}
.y6c{bottom:744.160065pt;}
.yf{bottom:745.120057pt;}
.y64{bottom:754.080142pt;}
.ye{bottom:760.160065pt;}
.y5b{bottom:763.837929pt;}
.yb0{bottom:766.880066pt;}
.y5f{bottom:767.517664pt;}
.y63{bottom:772.482324pt;}
.yd{bottom:774.880066pt;}
.yaf{bottom:779.040070pt;}
.y9d{bottom:783.683681pt;}
.ya8{bottom:796.963756pt;}
.yc{bottom:797.600068pt;}
.yae{bottom:799.039345pt;}
.y9c{bottom:802.561285pt;}
.y59{bottom:804.476604pt;}
.y9b{bottom:804.796548pt;}
.yb{bottom:812.640046pt;}
.y51{bottom:820.004198pt;}
.y9f{bottom:826.078460pt;}
.ya{bottom:827.520050pt;}
.yac{bottom:830.398713pt;}
.y50{bottom:840.798665pt;}
.yab{bottom:841.603171pt;}
.ya7{bottom:841.762816pt;}
.y54{bottom:841.920793pt;}
.y9{bottom:842.560059pt;}
.y53{bottom:853.920314pt;}
.y4f{bottom:855.042411pt;}
.y8{bottom:856.320069pt;}
.y9a{bottom:861.438732pt;}
.y99{bottom:865.279991pt;}
.y7{bottom:865.760071pt;}
.ya6{bottom:871.196839pt;}
.y57{bottom:875.523498pt;}
.y6{bottom:881.600052pt;}
.y96{bottom:889.595465pt;}
.ya5{bottom:892.159433pt;}
.y56{bottom:893.436860pt;}
.y5{bottom:893.440064pt;}
.ya3{bottom:896.799004pt;}
.y58{bottom:901.443281pt;}
.y4{bottom:902.240052pt;}
.y55{bottom:905.436381pt;}
.ya2{bottom:908.163136pt;}
.yaa{bottom:913.122027pt;}
.y3{bottom:916.800064pt;}
.y98{bottom:917.921257pt;}
.ya4{bottom:920.316180pt;}
.ya9{bottom:924.476758pt;}
.ya1{bottom:928.318017pt;}
.y2{bottom:932.800064pt;}
.y52{bottom:933.923873pt;}
.y97{bottom:939.522489pt;}
.y68{bottom:939.675965pt;}
.yad{bottom:940.320802pt;}
.y9e{bottom:941.438419pt;}
.y1{bottom:959.680054pt;}
.ya0{bottom:962.396540pt;}
.y95{bottom:962.554427pt;}
.y67{bottom:962.714760pt;}
.h18{height:11.519989pt;}
.h12{height:11.520020pt;}
.h5{height:21.565024pt;}
.h7{height:21.748764pt;}
.h16{height:28.438492pt;}
.h13{height:29.143232pt;}
.h17{height:29.490378pt;}
.h14{height:30.386405pt;}
.hf{height:30.610415pt;}
.h10{height:30.701919pt;}
.he{height:31.742637pt;}
.h3{height:32.965474pt;}
.h6{height:34.401242pt;}
.h11{height:36.046698pt;}
.h9{height:36.103031pt;}
.h8{height:36.481734pt;}
.ha{height:37.643091pt;}
.h15{height:38.134170pt;}
.h4{height:41.655072pt;}
.hc{height:41.696719pt;}
.hd{height:41.724703pt;}
.hb{height:42.616725pt;}
.h2{height:65.930668pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:3.679993pt;}
.w2{width:6.559998pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:93.440002pt;}
.xa{left:97.760002pt;}
.x5{left:99.040001pt;}
.x1{left:101.440002pt;}
.x2{left:102.720001pt;}
.x30{left:106.399418pt;}
.x4{left:108.160004pt;}
.xb{left:111.839996pt;}
.x2a{left:116.639999pt;}
.xc{left:121.120003pt;}
.x28{left:125.279999pt;}
.x2b{left:135.036943pt;}
.x9{left:140.160004pt;}
.x3d{left:150.240005pt;}
.x22{left:165.441184pt;}
.x6{left:170.080002pt;}
.xe{left:180.634485pt;}
.x16{left:204.318274pt;}
.x2c{left:206.717800pt;}
.x24{left:213.600032pt;}
.x25{left:244.644689pt;}
.x2e{left:250.720890pt;}
.x29{left:255.039993pt;}
.x2f{left:256.801911pt;}
.xd{left:257.920580pt;}
.x10{left:259.995446pt;}
.x2d{left:267.199754pt;}
.x7{left:281.279999pt;}
.x23{left:312.159024pt;}
.x15{left:344.315827pt;}
.x3a{left:357.598896pt;}
.x38{left:359.682216pt;}
.x39{left:362.075206pt;}
.x14{left:364.163642pt;}
.x13{left:370.236410pt;}
.x3{left:397.119995pt;}
.xf{left:401.440334pt;}
.x17{left:406.075866pt;}
.x33{left:409.597416pt;}
.x37{left:411.042609pt;}
.x34{left:416.795202pt;}
.x31{left:420.958980pt;}
.x1d{left:435.680610pt;}
.x32{left:456.800534pt;}
.x1a{left:462.400783pt;}
.x26{left:463.362317pt;}
.x1f{left:467.198291pt;}
.x11{left:477.754779pt;}
.x12{left:480.801294pt;}
.x1b{left:522.561674pt;}
.x35{left:528.158912pt;}
.x1c{left:553.279796pt;}
.x18{left:558.401161pt;}
.x36{left:565.921406pt;}
.x19{left:568.158028pt;}
.x1e{left:578.076932pt;}
.x21{left:592.002485pt;}
.x20{left:610.394172pt;}
.x27{left:640.320007pt;}
.x3b{left:651.518158pt;}
.x3c{left:697.119995pt;}
}




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