
    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_c5ec4257cef9e43da3c152ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_2bbe7602cf95c066c13c48f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6febbae6a1a16f3ec339c552.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_7ef0404aca5dae4f6bfb94b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927500;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_0cc2be5785cf032a287c9f7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970000;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_921c22e68b8043d6c5998032.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_17b6730847f5ea55c7f30cde.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_52595772ef3c1e86310b3ee2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.945000;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_6431acfc563cc14845ac8a21.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.707000;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_70792d7e12a7d5ab5ccd98f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_b2f08bae85bc0e0029515e4e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692871;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_dea686a1e654714326bf8055.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_c5ec4257cef9e43da3c152ab.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_2bbe7602cf95c066c13c48f8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9b340e3c34368ab88a756975.woff2')format("woff");}.fff{font-family:fff;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b532157be022fe9027efea07.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;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;}
.m5{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls2{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-0.060000px;}
.ws6{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:0.144000px;}
.ws5{word-spacing:0.720000px;}
.ws0{word-spacing:48.021000px;}
.ws1{word-spacing:386.314800px;}
.ws4{word-spacing:1714.377600px;}
._1{margin-left:-18.720000px;}
._24{margin-left:-15.422400px;}
._f{margin-left:-13.046400px;}
._35{margin-left:-10.051200px;}
._3c{margin-left:-8.892000px;}
._4a{margin-left:-6.991200px;}
._11{margin-left:-5.616000px;}
._e{margin-left:-4.356000px;}
._0{margin-left:-2.376000px;}
._16{margin-left:-1.134000px;}
._17{width:1.368000px;}
._2d{width:2.721600px;}
._c{width:5.464800px;}
._29{width:8.028000px;}
._57{width:9.360000px;}
._10{width:10.591200px;}
._33{width:11.649600px;}
._38{width:12.772800px;}
._9{width:14.047200px;}
._1a{width:15.732000px;}
._12{width:17.618400px;}
._4{width:20.649600px;}
._a{width:22.068000px;}
._15{width:23.277600px;}
._13{width:24.832800px;}
._21{width:25.992000px;}
._37{width:27.576000px;}
._3{width:29.167200px;}
._2f{width:30.384000px;}
._50{width:32.976000px;}
._6{width:34.804800px;}
._39{width:36.050400px;}
._4e{width:37.108800px;}
._26{width:38.109600px;}
._4b{width:39.182400px;}
._20{width:40.212000px;}
._14{width:41.479200px;}
._2{width:42.933600px;}
._7{width:44.582400px;}
._45{width:46.044000px;}
._34{width:47.188800px;}
._32{width:48.751200px;}
._4c{width:49.845600px;}
._1c{width:50.940000px;}
._48{width:52.200000px;}
._22{width:55.656000px;}
._2b{width:57.340800px;}
._b{width:59.680800px;}
._1b{width:61.099200px;}
._27{width:63.050400px;}
._8{width:65.304000px;}
._18{width:66.312000px;}
._3b{width:67.543200px;}
._1e{width:69.012000px;}
._40{width:70.596000px;}
._42{width:72.043200px;}
._19{width:73.188000px;}
._d{width:74.728800px;}
._5{width:76.903200px;}
._43{width:78.890400px;}
._4d{width:80.596800px;}
._55{width:81.770400px;}
._2a{width:86.616000px;}
._49{width:87.984000px;}
._2c{width:92.736000px;}
._3d{width:94.564800px;}
._54{width:96.364800px;}
._44{width:99.936000px;}
._25{width:103.788000px;}
._1d{width:105.055200px;}
._23{width:109.224000px;}
._53{width:111.096000px;}
._52{width:112.543200px;}
._28{width:113.983200px;}
._31{width:115.920000px;}
._47{width:121.824000px;}
._58{width:126.432000px;}
._41{width:131.659200px;}
._4f{width:142.855200px;}
._3e{width:143.935200px;}
._56{width:147.600000px;}
._46{width:154.303200px;}
._51{width:158.263200px;}
._3f{width:159.264000px;}
._2e{width:165.182400px;}
._30{width:183.463200px;}
._36{width:192.463200px;}
._1f{width:198.468000px;}
._3a{width:231.775200px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y33{bottom:64.760550px;}
.y32{bottom:65.586600px;}
.yae{bottom:86.460150px;}
.y88{bottom:89.460150px;}
.y5d{bottom:93.824100px;}
.y28{bottom:94.717050px;}
.yad{bottom:108.960150px;}
.y87{bottom:111.960150px;}
.y5c{bottom:116.324100px;}
.y27{bottom:116.461050px;}
.yac{bottom:131.460150px;}
.y86{bottom:134.460150px;}
.y26{bottom:138.205050px;}
.y5b{bottom:138.824100px;}
.yab{bottom:153.960150px;}
.y85{bottom:156.960150px;}
.y25{bottom:159.949050px;}
.y5a{bottom:161.324100px;}
.yaa{bottom:176.460150px;}
.y84{bottom:179.460150px;}
.y24{bottom:181.693050px;}
.y59{bottom:183.824100px;}
.ya9{bottom:198.960150px;}
.y83{bottom:201.960150px;}
.y58{bottom:206.324100px;}
.ya8{bottom:221.460150px;}
.y82{bottom:224.460150px;}
.y23{bottom:225.289050px;}
.y5e{bottom:228.824100px;}
.ya7{bottom:243.960150px;}
.y81{bottom:246.960150px;}
.y22{bottom:247.033050px;}
.y57{bottom:251.324100px;}
.ya6{bottom:266.460150px;}
.y21{bottom:268.777050px;}
.y80{bottom:269.460150px;}
.y56{bottom:273.824100px;}
.ya5{bottom:288.960150px;}
.y20{bottom:290.521050px;}
.y7f{bottom:291.960150px;}
.y55{bottom:296.324100px;}
.y1f{bottom:312.265050px;}
.y7e{bottom:314.460150px;}
.y54{bottom:318.824100px;}
.ya4{bottom:326.460150px;}
.y1e{bottom:334.009050px;}
.y7d{bottom:336.960150px;}
.y53{bottom:341.324100px;}
.ya3{bottom:348.960150px;}
.y1d{bottom:355.753050px;}
.y7c{bottom:359.460150px;}
.y52{bottom:363.824100px;}
.ya2{bottom:371.460150px;}
.y1c{bottom:377.497050px;}
.y7b{bottom:381.960150px;}
.y51{bottom:386.324100px;}
.ya1{bottom:393.960150px;}
.y1b{bottom:399.241050px;}
.y7a{bottom:404.460150px;}
.y50{bottom:408.824100px;}
.ya0{bottom:416.460150px;}
.y1a{bottom:420.985050px;}
.y79{bottom:426.960150px;}
.y4f{bottom:431.324100px;}
.y19{bottom:442.729050px;}
.y78{bottom:449.466150px;}
.y4e{bottom:453.824100px;}
.y31{bottom:456.139950px;}
.y9f{bottom:461.460150px;}
.y18{bottom:464.473050px;}
.y77{bottom:471.966150px;}
.y4d{bottom:476.324100px;}
.y30{bottom:478.639950px;}
.y9e{bottom:483.960150px;}
.y17{bottom:486.217050px;}
.y76{bottom:493.710150px;}
.y4c{bottom:498.824100px;}
.y2f{bottom:501.139950px;}
.y9d{bottom:506.460150px;}
.y16{bottom:507.961050px;}
.y75{bottom:515.460150px;}
.y4b{bottom:521.324100px;}
.y9c{bottom:528.960150px;}
.y15{bottom:529.705050px;}
.y74{bottom:537.216150px;}
.y2e{bottom:541.639950px;}
.y4a{bottom:543.824100px;}
.y14{bottom:551.449050px;}
.y9b{bottom:551.460150px;}
.y73{bottom:558.960150px;}
.y49{bottom:566.324100px;}
.y13{bottom:573.193050px;}
.y9a{bottom:573.960150px;}
.y2d{bottom:586.639950px;}
.y48{bottom:588.824100px;}
.y72{bottom:602.532150px;}
.y47{bottom:611.324100px;}
.y99{bottom:611.460150px;}
.y12{bottom:616.735050px;}
.y71{bottom:624.276150px;}
.y2c{bottom:627.139950px;}
.y46{bottom:633.824100px;}
.y98{bottom:633.960150px;}
.y11{bottom:638.479050px;}
.y70{bottom:646.020150px;}
.y45{bottom:656.324100px;}
.y97{bottom:656.460150px;}
.y10{bottom:660.223050px;}
.y2b{bottom:663.139950px;}
.y6f{bottom:667.764150px;}
.y44{bottom:678.824100px;}
.y96{bottom:678.960150px;}
.yf{bottom:681.967050px;}
.y6e{bottom:689.508150px;}
.y2a{bottom:699.139950px;}
.y43{bottom:701.324100px;}
.y95{bottom:701.460150px;}
.ye{bottom:703.711050px;}
.y6d{bottom:711.252150px;}
.y42{bottom:723.824100px;}
.y94{bottom:723.960150px;}
.yd{bottom:725.455050px;}
.y6c{bottom:732.996150px;}
.y29{bottom:735.139950px;}
.y41{bottom:746.324100px;}
.y93{bottom:746.460150px;}
.yc{bottom:747.199050px;}
.y6b{bottom:754.740150px;}
.y40{bottom:768.824100px;}
.yb{bottom:768.943050px;}
.ya{bottom:768.949050px;}
.y92{bottom:768.960150px;}
.y6a{bottom:776.484150px;}
.y9{bottom:790.693050px;}
.y3f{bottom:791.324100px;}
.y91{bottom:791.460150px;}
.y69{bottom:798.228150px;}
.y3e{bottom:813.824100px;}
.y90{bottom:813.960150px;}
.y68{bottom:819.972150px;}
.y8{bottom:834.929550px;}
.y3d{bottom:836.324100px;}
.y8f{bottom:836.460150px;}
.y67{bottom:841.716150px;}
.y7{bottom:855.934050px;}
.y3c{bottom:858.824100px;}
.y8e{bottom:858.960150px;}
.y66{bottom:863.460150px;}
.y65{bottom:863.496150px;}
.y6{bottom:876.938550px;}
.y3b{bottom:881.324100px;}
.y8d{bottom:881.460150px;}
.y64{bottom:885.240150px;}
.y5{bottom:897.943050px;}
.y3a{bottom:903.824100px;}
.y8c{bottom:903.960150px;}
.y63{bottom:906.984150px;}
.y4{bottom:918.943050px;}
.y39{bottom:926.324100px;}
.y8b{bottom:926.460150px;}
.y62{bottom:928.728150px;}
.y38{bottom:948.824100px;}
.y8a{bottom:948.960150px;}
.y61{bottom:950.472150px;}
.y3{bottom:968.443050px;}
.y37{bottom:971.324100px;}
.y89{bottom:971.460150px;}
.y60{bottom:972.216150px;}
.y36{bottom:993.824100px;}
.y5f{bottom:993.960150px;}
.y35{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y34{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.h8{height:40.634766px;}
.h9{height:41.660156px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xd{left:63.779550px;}
.x2{left:65.202600px;}
.xc{left:73.559100px;}
.x1{left:74.853150px;}
.x13{left:85.039350px;}
.x9{left:224.187900px;}
.xa{left:245.187900px;}
.x3{left:246.848550px;}
.x7{left:312.741750px;}
.x6{left:343.415250px;}
.x14{left:374.424150px;}
.x11{left:399.929550px;}
.x10{left:412.272150px;}
.x5{left:413.622750px;}
.x8{left:585.239250px;}
.x12{left:606.843600px;}
.xf{left:614.196150px;}
.x4{left:624.607650px;}
.xe{left:632.875800px;}
.xb{left:710.503950px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-0.053333pt;}
.ws6{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:0.128000pt;}
.ws5{word-spacing:0.640000pt;}
.ws0{word-spacing:42.685333pt;}
.ws1{word-spacing:343.390933pt;}
.ws4{word-spacing:1523.891200pt;}
._1{margin-left:-16.640000pt;}
._24{margin-left:-13.708800pt;}
._f{margin-left:-11.596800pt;}
._35{margin-left:-8.934400pt;}
._3c{margin-left:-7.904000pt;}
._4a{margin-left:-6.214400pt;}
._11{margin-left:-4.992000pt;}
._e{margin-left:-3.872000pt;}
._0{margin-left:-2.112000pt;}
._16{margin-left:-1.008000pt;}
._17{width:1.216000pt;}
._2d{width:2.419200pt;}
._c{width:4.857600pt;}
._29{width:7.136000pt;}
._57{width:8.320000pt;}
._10{width:9.414400pt;}
._33{width:10.355200pt;}
._38{width:11.353600pt;}
._9{width:12.486400pt;}
._1a{width:13.984000pt;}
._12{width:15.660800pt;}
._4{width:18.355200pt;}
._a{width:19.616000pt;}
._15{width:20.691200pt;}
._13{width:22.073600pt;}
._21{width:23.104000pt;}
._37{width:24.512000pt;}
._3{width:25.926400pt;}
._2f{width:27.008000pt;}
._50{width:29.312000pt;}
._6{width:30.937600pt;}
._39{width:32.044800pt;}
._4e{width:32.985600pt;}
._26{width:33.875200pt;}
._4b{width:34.828800pt;}
._20{width:35.744000pt;}
._14{width:36.870400pt;}
._2{width:38.163200pt;}
._7{width:39.628800pt;}
._45{width:40.928000pt;}
._34{width:41.945600pt;}
._32{width:43.334400pt;}
._4c{width:44.307200pt;}
._1c{width:45.280000pt;}
._48{width:46.400000pt;}
._22{width:49.472000pt;}
._2b{width:50.969600pt;}
._b{width:53.049600pt;}
._1b{width:54.310400pt;}
._27{width:56.044800pt;}
._8{width:58.048000pt;}
._18{width:58.944000pt;}
._3b{width:60.038400pt;}
._1e{width:61.344000pt;}
._40{width:62.752000pt;}
._42{width:64.038400pt;}
._19{width:65.056000pt;}
._d{width:66.425600pt;}
._5{width:68.358400pt;}
._43{width:70.124800pt;}
._4d{width:71.641600pt;}
._55{width:72.684800pt;}
._2a{width:76.992000pt;}
._49{width:78.208000pt;}
._2c{width:82.432000pt;}
._3d{width:84.057600pt;}
._54{width:85.657600pt;}
._44{width:88.832000pt;}
._25{width:92.256000pt;}
._1d{width:93.382400pt;}
._23{width:97.088000pt;}
._53{width:98.752000pt;}
._52{width:100.038400pt;}
._28{width:101.318400pt;}
._31{width:103.040000pt;}
._47{width:108.288000pt;}
._58{width:112.384000pt;}
._41{width:117.030400pt;}
._4f{width:126.982400pt;}
._3e{width:127.942400pt;}
._56{width:131.200000pt;}
._46{width:137.158400pt;}
._51{width:140.678400pt;}
._3f{width:141.568000pt;}
._2e{width:146.828800pt;}
._30{width:163.078400pt;}
._36{width:171.078400pt;}
._1f{width:176.416000pt;}
._3a{width:206.022400pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y33{bottom:57.564933pt;}
.y32{bottom:58.299200pt;}
.yae{bottom:76.853467pt;}
.y88{bottom:79.520133pt;}
.y5d{bottom:83.399200pt;}
.y28{bottom:84.192933pt;}
.yad{bottom:96.853467pt;}
.y87{bottom:99.520133pt;}
.y5c{bottom:103.399200pt;}
.y27{bottom:103.520933pt;}
.yac{bottom:116.853467pt;}
.y86{bottom:119.520133pt;}
.y26{bottom:122.848933pt;}
.y5b{bottom:123.399200pt;}
.yab{bottom:136.853467pt;}
.y85{bottom:139.520133pt;}
.y25{bottom:142.176933pt;}
.y5a{bottom:143.399200pt;}
.yaa{bottom:156.853467pt;}
.y84{bottom:159.520133pt;}
.y24{bottom:161.504933pt;}
.y59{bottom:163.399200pt;}
.ya9{bottom:176.853467pt;}
.y83{bottom:179.520133pt;}
.y58{bottom:183.399200pt;}
.ya8{bottom:196.853467pt;}
.y82{bottom:199.520133pt;}
.y23{bottom:200.256933pt;}
.y5e{bottom:203.399200pt;}
.ya7{bottom:216.853467pt;}
.y81{bottom:219.520133pt;}
.y22{bottom:219.584933pt;}
.y57{bottom:223.399200pt;}
.ya6{bottom:236.853467pt;}
.y21{bottom:238.912933pt;}
.y80{bottom:239.520133pt;}
.y56{bottom:243.399200pt;}
.ya5{bottom:256.853467pt;}
.y20{bottom:258.240933pt;}
.y7f{bottom:259.520133pt;}
.y55{bottom:263.399200pt;}
.y1f{bottom:277.568933pt;}
.y7e{bottom:279.520133pt;}
.y54{bottom:283.399200pt;}
.ya4{bottom:290.186800pt;}
.y1e{bottom:296.896933pt;}
.y7d{bottom:299.520133pt;}
.y53{bottom:303.399200pt;}
.ya3{bottom:310.186800pt;}
.y1d{bottom:316.224933pt;}
.y7c{bottom:319.520133pt;}
.y52{bottom:323.399200pt;}
.ya2{bottom:330.186800pt;}
.y1c{bottom:335.552933pt;}
.y7b{bottom:339.520133pt;}
.y51{bottom:343.399200pt;}
.ya1{bottom:350.186800pt;}
.y1b{bottom:354.880933pt;}
.y7a{bottom:359.520133pt;}
.y50{bottom:363.399200pt;}
.ya0{bottom:370.186800pt;}
.y1a{bottom:374.208933pt;}
.y79{bottom:379.520133pt;}
.y4f{bottom:383.399200pt;}
.y19{bottom:393.536933pt;}
.y78{bottom:399.525467pt;}
.y4e{bottom:403.399200pt;}
.y31{bottom:405.457733pt;}
.y9f{bottom:410.186800pt;}
.y18{bottom:412.864933pt;}
.y77{bottom:419.525467pt;}
.y4d{bottom:423.399200pt;}
.y30{bottom:425.457733pt;}
.y9e{bottom:430.186800pt;}
.y17{bottom:432.192933pt;}
.y76{bottom:438.853467pt;}
.y4c{bottom:443.399200pt;}
.y2f{bottom:445.457733pt;}
.y9d{bottom:450.186800pt;}
.y16{bottom:451.520933pt;}
.y75{bottom:458.186800pt;}
.y4b{bottom:463.399200pt;}
.y9c{bottom:470.186800pt;}
.y15{bottom:470.848933pt;}
.y74{bottom:477.525467pt;}
.y2e{bottom:481.457733pt;}
.y4a{bottom:483.399200pt;}
.y14{bottom:490.176933pt;}
.y9b{bottom:490.186800pt;}
.y73{bottom:496.853467pt;}
.y49{bottom:503.399200pt;}
.y13{bottom:509.504933pt;}
.y9a{bottom:510.186800pt;}
.y2d{bottom:521.457733pt;}
.y48{bottom:523.399200pt;}
.y72{bottom:535.584133pt;}
.y47{bottom:543.399200pt;}
.y99{bottom:543.520133pt;}
.y12{bottom:548.208933pt;}
.y71{bottom:554.912133pt;}
.y2c{bottom:557.457733pt;}
.y46{bottom:563.399200pt;}
.y98{bottom:563.520133pt;}
.y11{bottom:567.536933pt;}
.y70{bottom:574.240133pt;}
.y45{bottom:583.399200pt;}
.y97{bottom:583.520133pt;}
.y10{bottom:586.864933pt;}
.y2b{bottom:589.457733pt;}
.y6f{bottom:593.568133pt;}
.y44{bottom:603.399200pt;}
.y96{bottom:603.520133pt;}
.yf{bottom:606.192933pt;}
.y6e{bottom:612.896133pt;}
.y2a{bottom:621.457733pt;}
.y43{bottom:623.399200pt;}
.y95{bottom:623.520133pt;}
.ye{bottom:625.520933pt;}
.y6d{bottom:632.224133pt;}
.y42{bottom:643.399200pt;}
.y94{bottom:643.520133pt;}
.yd{bottom:644.848933pt;}
.y6c{bottom:651.552133pt;}
.y29{bottom:653.457733pt;}
.y41{bottom:663.399200pt;}
.y93{bottom:663.520133pt;}
.yc{bottom:664.176933pt;}
.y6b{bottom:670.880133pt;}
.y40{bottom:683.399200pt;}
.yb{bottom:683.504933pt;}
.ya{bottom:683.510267pt;}
.y92{bottom:683.520133pt;}
.y6a{bottom:690.208133pt;}
.y9{bottom:702.838267pt;}
.y3f{bottom:703.399200pt;}
.y91{bottom:703.520133pt;}
.y69{bottom:709.536133pt;}
.y3e{bottom:723.399200pt;}
.y90{bottom:723.520133pt;}
.y68{bottom:728.864133pt;}
.y8{bottom:742.159600pt;}
.y3d{bottom:743.399200pt;}
.y8f{bottom:743.520133pt;}
.y67{bottom:748.192133pt;}
.y7{bottom:760.830267pt;}
.y3c{bottom:763.399200pt;}
.y8e{bottom:763.520133pt;}
.y66{bottom:767.520133pt;}
.y65{bottom:767.552133pt;}
.y6{bottom:779.500933pt;}
.y3b{bottom:783.399200pt;}
.y8d{bottom:783.520133pt;}
.y64{bottom:786.880133pt;}
.y5{bottom:798.171600pt;}
.y3a{bottom:803.399200pt;}
.y8c{bottom:803.520133pt;}
.y63{bottom:806.208133pt;}
.y4{bottom:816.838267pt;}
.y39{bottom:823.399200pt;}
.y8b{bottom:823.520133pt;}
.y62{bottom:825.536133pt;}
.y38{bottom:843.399200pt;}
.y8a{bottom:843.520133pt;}
.y61{bottom:844.864133pt;}
.y3{bottom:860.838267pt;}
.y37{bottom:863.399200pt;}
.y89{bottom:863.520133pt;}
.y60{bottom:864.192133pt;}
.y36{bottom:883.399200pt;}
.y5f{bottom:883.520133pt;}
.y35{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y34{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.h8{height:36.119792pt;}
.h9{height:37.031250pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xd{left:56.692933pt;}
.x2{left:57.957867pt;}
.xc{left:65.385867pt;}
.x1{left:66.536133pt;}
.x13{left:75.590533pt;}
.x9{left:199.278133pt;}
.xa{left:217.944800pt;}
.x3{left:219.420933pt;}
.x7{left:277.992667pt;}
.x6{left:305.258000pt;}
.x14{left:332.821467pt;}
.x11{left:355.492933pt;}
.x10{left:366.464133pt;}
.x5{left:367.664667pt;}
.x8{left:520.212667pt;}
.x12{left:539.416533pt;}
.xf{left:545.952133pt;}
.x4{left:555.206800pt;}
.xe{left:562.556267pt;}
.xb{left:631.559067pt;}
}




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