
    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_a5d99fed386df05ec389da1b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2664abe7939024450422ac76.woff')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_7719f72c7bbca075c2be19ad.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_6f677dcb8fa0bfbb25a9651d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_d28b82e5c11b135f4497a89d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.748000;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_15b3f414fd04c08c33d9d669.woff')format("woff");}.ff6{font-family:ff6;line-height:0.936000;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_77095df862785938b9c18db0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_54856ebb22449653aecf797b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9ee15e93a000fbbf80701e11.woff')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_2dfaf35e982725abaaad3332.woff')format("woff");}.ffa{font-family:ffa;line-height:0.926000;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_742655d46668f230d26a9cd8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.280000;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_15dc51ec1e3f53706409cda7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.728000;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_f60b6bda14edc66dfc191784.woff')format("woff");}.ffd{font-family:ffd;line-height:0.941000;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_16fe27bf1bdcef7651bf5f49.woff')format("woff");}.ffe{font-family:ffe;line-height:0.941000;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_39ed4f14bb4e912f225adae3.woff')format("woff");}.fff{font-family:fff;line-height:0.909000;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_7db1232df73830dd9946a3f0.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e199a91341a1992738718d54.woff')format("woff");}.ff11{font-family:ff11;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-12.150000px;}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws4{word-spacing:-43.008000px;}
.ws5{word-spacing:-13.344000px;}
.ws0{word-spacing:-11.676000px;}
.ws6{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:29.064000px;}
.ws3{word-spacing:30.576000px;}
._17{margin-left:-9.858000px;}
._16{margin-left:-7.298400px;}
._6{margin-left:-6.096000px;}
._4{margin-left:-4.662000px;}
._3{margin-left:-3.552000px;}
._12{margin-left:-2.521800px;}
._0{margin-left:-1.440000px;}
._7{width:1.620000px;}
._10{width:3.402000px;}
._c{width:14.280000px;}
._b{width:25.158000px;}
._15{width:32.059200px;}
._11{width:36.036000px;}
._9{width:39.942000px;}
._a{width:42.132000px;}
._5{width:47.664000px;}
._8{width:50.820000px;}
._d{width:73.374000px;}
._f{width:82.698000px;}
._e{width:85.050000px;}
._14{width:735.768600px;}
._13{width:744.339600px;}
._1{width:1112.130000px;}
._2{width:4345.650000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(247,143,30);}
.fs4{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs8{font-size:96.000000px;}
.fs6{font-size:102.000000px;}
.fs9{font-size:114.000000px;}
.fs7{font-size:120.000000px;}
.fsa{font-size:132.000000px;}
.fsb{font-size:144.000000px;}
.fsc{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y56{bottom:17.382600px;}
.y7a{bottom:21.110700px;}
.y8b{bottom:28.064550px;}
.y55{bottom:29.384100px;}
.y9c{bottom:33.190200px;}
.yb1{bottom:33.600300px;}
.y79{bottom:36.110700px;}
.y54{bottom:41.385600px;}
.y8a{bottom:43.064550px;}
.y9b{bottom:46.693200px;}
.y12{bottom:50.940750px;}
.y78{bottom:51.110700px;}
.y68{bottom:51.297900px;}
.yb0{bottom:56.759850px;}
.y3b{bottom:56.791650px;}
.y53{bottom:57.881100px;}
.y89{bottom:58.064550px;}
.y9a{bottom:60.196200px;}
.y11{bottom:62.942250px;}
.y77{bottom:66.110700px;}
.y67{bottom:66.297900px;}
.yaf{bottom:71.759850px;}
.y3a{bottom:71.791650px;}
.y2c{bottom:73.303650px;}
.y99{bottom:73.699200px;}
.y52{bottom:74.376600px;}
.y76{bottom:81.110700px;}
.y66{bottom:81.297900px;}
.y10{bottom:82.440750px;}
.y88{bottom:83.564550px;}
.y51{bottom:86.378100px;}
.yae{bottom:86.759850px;}
.y39{bottom:86.791650px;}
.y98{bottom:87.202200px;}
.y2b{bottom:88.303650px;}
.ya2{bottom:88.512150px;}
.yf{bottom:94.442250px;}
.y75{bottom:96.110700px;}
.y65{bottom:96.297900px;}
.y50{bottom:98.379600px;}
.y87{bottom:98.564550px;}
.yad{bottom:101.759850px;}
.y38{bottom:101.791650px;}
.ye{bottom:106.443750px;}
.y64{bottom:111.297900px;}
.y86{bottom:113.564550px;}
.y97{bottom:114.197700px;}
.y1e{bottom:114.583650px;}
.y4f{bottom:114.875100px;}
.y37{bottom:116.791650px;}
.y2a{bottom:116.803650px;}
.yd{bottom:118.445250px;}
.yac{bottom:125.759850px;}
.y74{bottom:126.110700px;}
.y63{bottom:126.297900px;}
.y4e{bottom:126.876600px;}
.y96{bottom:127.700700px;}
.y85{bottom:128.564550px;}
.y1d{bottom:129.583650px;}
.y36{bottom:131.791650px;}
.y29{bottom:131.803650px;}
.ya1{bottom:133.524150px;}
.yc{bottom:137.943750px;}
.y4d{bottom:138.878100px;}
.yab{bottom:140.759850px;}
.y73{bottom:141.110700px;}
.y95{bottom:141.203700px;}
.y62{bottom:141.297900px;}
.y84{bottom:143.564550px;}
.y1c{bottom:144.583650px;}
.y35{bottom:146.791650px;}
.y28{bottom:146.803650px;}
.yb{bottom:149.945250px;}
.y4c{bottom:150.879600px;}
.y94{bottom:154.706700px;}
.yaa{bottom:155.759850px;}
.y72{bottom:156.110700px;}
.y61{bottom:156.297900px;}
.y83{bottom:158.564550px;}
.y1b{bottom:159.583650px;}
.y34{bottom:161.791650px;}
.y27{bottom:161.803650px;}
.ya{bottom:161.945250px;}
.y4b{bottom:162.881100px;}
.y93{bottom:168.209700px;}
.ya0{bottom:171.012150px;}
.y71{bottom:171.110700px;}
.y82{bottom:173.564550px;}
.y1a{bottom:174.583650px;}
.y33{bottom:176.791650px;}
.y26{bottom:176.803650px;}
.y4a{bottom:179.376600px;}
.ya9{bottom:179.759850px;}
.y92{bottom:181.712700px;}
.y70{bottom:186.110700px;}
.y60{bottom:186.297900px;}
.y41{bottom:186.598350px;}
.y81{bottom:188.564550px;}
.y49{bottom:191.378100px;}
.ya8{bottom:194.759850px;}
.y9{bottom:194.945250px;}
.y5f{bottom:201.297900px;}
.y80{bottom:203.564550px;}
.y19{bottom:204.583650px;}
.y40{bottom:204.598350px;}
.y32{bottom:206.791650px;}
.y25{bottom:206.803650px;}
.y48{bottom:207.873600px;}
.y9f{bottom:208.512150px;}
.y91{bottom:208.708200px;}
.y8{bottom:209.945250px;}
.y6f{bottom:216.110700px;}
.y5e{bottom:216.297900px;}
.ya7{bottom:218.759850px;}
.y18{bottom:219.583650px;}
.y47{bottom:219.875100px;}
.y31{bottom:221.791650px;}
.y24{bottom:221.803650px;}
.y90{bottom:222.211200px;}
.y7{bottom:224.945250px;}
.y3f{bottom:227.098350px;}
.y7f{bottom:229.064550px;}
.y6e{bottom:231.110700px;}
.y5d{bottom:231.297900px;}
.y46{bottom:231.876600px;}
.ya6{bottom:233.759850px;}
.y17{bottom:234.583650px;}
.y8f{bottom:235.714200px;}
.y30{bottom:236.791650px;}
.y23{bottom:236.803650px;}
.y6{bottom:239.945250px;}
.y7e{bottom:244.064550px;}
.y6d{bottom:246.110700px;}
.y5c{bottom:246.297900px;}
.y45{bottom:248.372100px;}
.y8e{bottom:249.217200px;}
.y16{bottom:249.583650px;}
.y3e{bottom:249.598350px;}
.y22{bottom:251.803650px;}
.ya5{bottom:257.759850px;}
.y7d{bottom:259.064550px;}
.y6c{bottom:261.110700px;}
.y5b{bottom:261.297900px;}
.y15{bottom:264.583650px;}
.y44{bottom:264.867600px;}
.y2f{bottom:266.791650px;}
.y21{bottom:266.803650px;}
.y5{bottom:269.945250px;}
.y3d{bottom:272.098350px;}
.ya4{bottom:272.759850px;}
.y7c{bottom:274.064550px;}
.y6b{bottom:276.110700px;}
.y8d{bottom:276.212700px;}
.y5a{bottom:276.297900px;}
.y14{bottom:279.583650px;}
.y9e{bottom:280.512150px;}
.y43{bottom:281.363100px;}
.y2e{bottom:281.791650px;}
.y20{bottom:281.803650px;}
.y4{bottom:284.945250px;}
.ya3{bottom:287.759850px;}
.y7b{bottom:289.064550px;}
.y8c{bottom:289.715700px;}
.y6a{bottom:291.110700px;}
.y59{bottom:291.297900px;}
.y13{bottom:294.583650px;}
.y3c{bottom:294.598350px;}
.y2d{bottom:296.791650px;}
.y1f{bottom:296.803650px;}
.y42{bottom:297.858600px;}
.y3{bottom:299.945250px;}
.y2{bottom:314.945250px;}
.y58{bottom:351.506400px;}
.y9d{bottom:351.909750px;}
.y69{bottom:351.921600px;}
.y1{bottom:354.118350px;}
.y57{bottom:354.671100px;}
.h8{height:29.988000px;}
.h5{height:30.702000px;}
.h3{height:35.088000px;}
.h4{height:39.474000px;}
.h6{height:43.860000px;}
.h7{height:57.600000px;}
.h2{height:72.000000px;}
.he{height:81.600000px;}
.ha{height:91.200000px;}
.h9{height:96.000000px;}
.hb{height:105.600000px;}
.hc{height:115.152000px;}
.hd{height:153.600000px;}
.h0{height:403.936500px;}
.h1{height:404.250000px;}
.w0{width:2423.625000px;}
.w1{width:2424.000000px;}
.x0{left:0.000000px;}
.x1{left:29.763750px;}
.x2{left:31.464600px;}
.x12{left:34.015800px;}
.x3{left:48.472500px;}
.xf{left:427.747950px;}
.x9{left:431.303100px;}
.x10{left:823.540050px;}
.x7{left:825.954900px;}
.xa{left:833.881950px;}
.x11{left:844.799850px;}
.x8{left:847.218900px;}
.xe{left:1226.738550px;}
.x4{left:1241.574900px;}
.x5{left:1262.838900px;}
.x14{left:1628.503800px;}
.x6{left:1639.914900px;}
.x15{left:1649.763600px;}
.xd{left:2032.441050px;}
.xb{left:2038.110300px;}
.x13{left:2046.720300px;}
.xc{left:2059.372800px;}
.x16{left:2254.606350px;}
@media print{
.v1{vertical-align:-10.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-38.229333pt;}
.ws5{word-spacing:-11.861333pt;}
.ws0{word-spacing:-10.378667pt;}
.ws6{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:25.834667pt;}
.ws3{word-spacing:27.178667pt;}
._17{margin-left:-8.762667pt;}
._16{margin-left:-6.487467pt;}
._6{margin-left:-5.418667pt;}
._4{margin-left:-4.144000pt;}
._3{margin-left:-3.157333pt;}
._12{margin-left:-2.241600pt;}
._0{margin-left:-1.280000pt;}
._7{width:1.440000pt;}
._10{width:3.024000pt;}
._c{width:12.693333pt;}
._b{width:22.362667pt;}
._15{width:28.497067pt;}
._11{width:32.032000pt;}
._9{width:35.504000pt;}
._a{width:37.450667pt;}
._5{width:42.368000pt;}
._8{width:45.173333pt;}
._d{width:65.221333pt;}
._f{width:73.509333pt;}
._e{width:75.600000pt;}
._14{width:654.016533pt;}
._13{width:661.635200pt;}
._1{width:988.560000pt;}
._2{width:3862.800000pt;}
.fs4{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs8{font-size:85.333333pt;}
.fs6{font-size:90.666667pt;}
.fs9{font-size:101.333333pt;}
.fs7{font-size:106.666667pt;}
.fsa{font-size:117.333333pt;}
.fsb{font-size:128.000000pt;}
.fsc{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:15.451200pt;}
.y7a{bottom:18.765067pt;}
.y8b{bottom:24.946267pt;}
.y55{bottom:26.119200pt;}
.y9c{bottom:29.502400pt;}
.yb1{bottom:29.866933pt;}
.y79{bottom:32.098400pt;}
.y54{bottom:36.787200pt;}
.y8a{bottom:38.279600pt;}
.y9b{bottom:41.505067pt;}
.y12{bottom:45.280667pt;}
.y78{bottom:45.431733pt;}
.y68{bottom:45.598133pt;}
.yb0{bottom:50.453200pt;}
.y3b{bottom:50.481467pt;}
.y53{bottom:51.449867pt;}
.y89{bottom:51.612933pt;}
.y9a{bottom:53.507733pt;}
.y11{bottom:55.948667pt;}
.y77{bottom:58.765067pt;}
.y67{bottom:58.931467pt;}
.yaf{bottom:63.786533pt;}
.y3a{bottom:63.814800pt;}
.y2c{bottom:65.158800pt;}
.y99{bottom:65.510400pt;}
.y52{bottom:66.112533pt;}
.y76{bottom:72.098400pt;}
.y66{bottom:72.264800pt;}
.y10{bottom:73.280667pt;}
.y88{bottom:74.279600pt;}
.y51{bottom:76.780533pt;}
.yae{bottom:77.119867pt;}
.y39{bottom:77.148133pt;}
.y98{bottom:77.513067pt;}
.y2b{bottom:78.492133pt;}
.ya2{bottom:78.677467pt;}
.yf{bottom:83.948667pt;}
.y75{bottom:85.431733pt;}
.y65{bottom:85.598133pt;}
.y50{bottom:87.448533pt;}
.y87{bottom:87.612933pt;}
.yad{bottom:90.453200pt;}
.y38{bottom:90.481467pt;}
.ye{bottom:94.616667pt;}
.y64{bottom:98.931467pt;}
.y86{bottom:100.946267pt;}
.y97{bottom:101.509067pt;}
.y1e{bottom:101.852133pt;}
.y4f{bottom:102.111200pt;}
.y37{bottom:103.814800pt;}
.y2a{bottom:103.825467pt;}
.yd{bottom:105.284667pt;}
.yac{bottom:111.786533pt;}
.y74{bottom:112.098400pt;}
.y63{bottom:112.264800pt;}
.y4e{bottom:112.779200pt;}
.y96{bottom:113.511733pt;}
.y85{bottom:114.279600pt;}
.y1d{bottom:115.185467pt;}
.y36{bottom:117.148133pt;}
.y29{bottom:117.158800pt;}
.ya1{bottom:118.688133pt;}
.yc{bottom:122.616667pt;}
.y4d{bottom:123.447200pt;}
.yab{bottom:125.119867pt;}
.y73{bottom:125.431733pt;}
.y95{bottom:125.514400pt;}
.y62{bottom:125.598133pt;}
.y84{bottom:127.612933pt;}
.y1c{bottom:128.518800pt;}
.y35{bottom:130.481467pt;}
.y28{bottom:130.492133pt;}
.yb{bottom:133.284667pt;}
.y4c{bottom:134.115200pt;}
.y94{bottom:137.517067pt;}
.yaa{bottom:138.453200pt;}
.y72{bottom:138.765067pt;}
.y61{bottom:138.931467pt;}
.y83{bottom:140.946267pt;}
.y1b{bottom:141.852133pt;}
.y34{bottom:143.814800pt;}
.y27{bottom:143.825467pt;}
.ya{bottom:143.951333pt;}
.y4b{bottom:144.783200pt;}
.y93{bottom:149.519733pt;}
.ya0{bottom:152.010800pt;}
.y71{bottom:152.098400pt;}
.y82{bottom:154.279600pt;}
.y1a{bottom:155.185467pt;}
.y33{bottom:157.148133pt;}
.y26{bottom:157.158800pt;}
.y4a{bottom:159.445867pt;}
.ya9{bottom:159.786533pt;}
.y92{bottom:161.522400pt;}
.y70{bottom:165.431733pt;}
.y60{bottom:165.598133pt;}
.y41{bottom:165.865200pt;}
.y81{bottom:167.612933pt;}
.y49{bottom:170.113867pt;}
.ya8{bottom:173.119867pt;}
.y9{bottom:173.284667pt;}
.y5f{bottom:178.931467pt;}
.y80{bottom:180.946267pt;}
.y19{bottom:181.852133pt;}
.y40{bottom:181.865200pt;}
.y32{bottom:183.814800pt;}
.y25{bottom:183.825467pt;}
.y48{bottom:184.776533pt;}
.y9f{bottom:185.344133pt;}
.y91{bottom:185.518400pt;}
.y8{bottom:186.618000pt;}
.y6f{bottom:192.098400pt;}
.y5e{bottom:192.264800pt;}
.ya7{bottom:194.453200pt;}
.y18{bottom:195.185467pt;}
.y47{bottom:195.444533pt;}
.y31{bottom:197.148133pt;}
.y24{bottom:197.158800pt;}
.y90{bottom:197.521067pt;}
.y7{bottom:199.951333pt;}
.y3f{bottom:201.865200pt;}
.y7f{bottom:203.612933pt;}
.y6e{bottom:205.431733pt;}
.y5d{bottom:205.598133pt;}
.y46{bottom:206.112533pt;}
.ya6{bottom:207.786533pt;}
.y17{bottom:208.518800pt;}
.y8f{bottom:209.523733pt;}
.y30{bottom:210.481467pt;}
.y23{bottom:210.492133pt;}
.y6{bottom:213.284667pt;}
.y7e{bottom:216.946267pt;}
.y6d{bottom:218.765067pt;}
.y5c{bottom:218.931467pt;}
.y45{bottom:220.775200pt;}
.y8e{bottom:221.526400pt;}
.y16{bottom:221.852133pt;}
.y3e{bottom:221.865200pt;}
.y22{bottom:223.825467pt;}
.ya5{bottom:229.119867pt;}
.y7d{bottom:230.279600pt;}
.y6c{bottom:232.098400pt;}
.y5b{bottom:232.264800pt;}
.y15{bottom:235.185467pt;}
.y44{bottom:235.437867pt;}
.y2f{bottom:237.148133pt;}
.y21{bottom:237.158800pt;}
.y5{bottom:239.951333pt;}
.y3d{bottom:241.865200pt;}
.ya4{bottom:242.453200pt;}
.y7c{bottom:243.612933pt;}
.y6b{bottom:245.431733pt;}
.y8d{bottom:245.522400pt;}
.y5a{bottom:245.598133pt;}
.y14{bottom:248.518800pt;}
.y9e{bottom:249.344133pt;}
.y43{bottom:250.100533pt;}
.y2e{bottom:250.481467pt;}
.y20{bottom:250.492133pt;}
.y4{bottom:253.284667pt;}
.ya3{bottom:255.786533pt;}
.y7b{bottom:256.946267pt;}
.y8c{bottom:257.525067pt;}
.y6a{bottom:258.765067pt;}
.y59{bottom:258.931467pt;}
.y13{bottom:261.852133pt;}
.y3c{bottom:261.865200pt;}
.y2d{bottom:263.814800pt;}
.y1f{bottom:263.825467pt;}
.y42{bottom:264.763200pt;}
.y3{bottom:266.618000pt;}
.y2{bottom:279.951333pt;}
.y58{bottom:312.450133pt;}
.y9d{bottom:312.808667pt;}
.y69{bottom:312.819200pt;}
.y1{bottom:314.771867pt;}
.y57{bottom:315.263200pt;}
.h8{height:26.656000pt;}
.h5{height:27.290667pt;}
.h3{height:31.189333pt;}
.h4{height:35.088000pt;}
.h6{height:38.986667pt;}
.h7{height:51.200000pt;}
.h2{height:64.000000pt;}
.he{height:72.533333pt;}
.ha{height:81.066667pt;}
.h9{height:85.333333pt;}
.hb{height:93.866667pt;}
.hc{height:102.357333pt;}
.hd{height:136.533333pt;}
.h0{height:359.054667pt;}
.h1{height:359.333333pt;}
.w0{width:2154.333333pt;}
.w1{width:2154.666667pt;}
.x0{left:0.000000pt;}
.x1{left:26.456667pt;}
.x2{left:27.968533pt;}
.x12{left:30.236267pt;}
.x3{left:43.086667pt;}
.xf{left:380.220400pt;}
.x9{left:383.380533pt;}
.x10{left:732.035600pt;}
.x7{left:734.182133pt;}
.xa{left:741.228400pt;}
.x11{left:750.933200pt;}
.x8{left:753.083467pt;}
.xe{left:1090.434267pt;}
.x4{left:1103.622133pt;}
.x5{left:1122.523467pt;}
.x14{left:1447.558933pt;}
.x6{left:1457.702133pt;}
.x15{left:1466.456533pt;}
.xd{left:1806.614267pt;}
.xb{left:1811.653600pt;}
.x13{left:1819.306933pt;}
.xc{left:1830.553600pt;}
.x16{left:2004.094533pt;}
}




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