
    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_27486c9dffbfef726b0f1e61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934000;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_4d41d583ecd149c6d0279d89.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_fc167a8c818a10432ad7fa54.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_b8666ff3496b56aee6532d2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_0f1e631792931eef3105533c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_fca1254fed4e340eded0b404.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.945312;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_60c73a1f5a47fdb9a676453f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_12c0c26f871b179fd844275e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710449;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_42aa29c8c2cbe39a1077ba6c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.129395;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_34796de9e1bbf3f9ee8fa4b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.906738;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_e6fa49bc728382df68305555.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.079102;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_bcdbb15a66d79701c1449d6c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.837891;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_7635f6c5d6c909776fd25b1a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.688965;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);}
.v3{vertical-align:-24.678037px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.742430px;}
.v1{vertical-align:24.678037px;}
.ls9{letter-spacing:-2.786469px;}
.ls8{letter-spacing:-1.598588px;}
.ls5{letter-spacing:-1.067158px;}
.ls3{letter-spacing:-0.741082px;}
.lsa{letter-spacing:-0.592866px;}
.lsb{letter-spacing:-0.370541px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.097082px;}
.ls1{letter-spacing:0.432051px;}
.ls0{letter-spacing:0.741082px;}
.ls6{letter-spacing:4.446493px;}
.ls4{letter-spacing:15.278892px;}
.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:-18.527055px;}
.ws8{word-spacing:-18.156514px;}
.ws9{word-spacing:-17.934189px;}
.ws3{word-spacing:-14.821644px;}
.ws7{word-spacing:-14.228778px;}
.ws0{word-spacing:-10.801273px;}
.ws5{word-spacing:-9.202685px;}
.ws1{word-spacing:-0.059287px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:2.727182px;}
._1{margin-left:-13.472874px;}
._1c{margin-left:-10.277328px;}
._1b{margin-left:-9.201277px;}
._5{margin-left:-6.820921px;}
._19{margin-left:-5.700404px;}
._4{margin-left:-4.668818px;}
._3{margin-left:-3.284476px;}
._0{margin-left:-2.217318px;}
._2{margin-left:-1.102730px;}
._11{width:1.926814px;}
._6{width:3.583874px;}
._7{width:5.060109px;}
._e{width:6.150982px;}
._13{width:7.188497px;}
._d{width:8.522445px;}
._8{width:9.930501px;}
._b{width:11.783207px;}
._16{width:12.968939px;}
._17{width:14.154670px;}
._1a{width:15.192185px;}
._f{width:16.303808px;}
._c{width:17.489540px;}
._15{width:20.118900px;}
._a{width:21.147522px;}
._9{width:22.671187px;}
._10{width:24.159280px;}
._18{width:26.086093px;}
._12{width:50.690022px;}
._14{width:51.727538px;}
.fc2{color:rgb(128,130,133);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(158,29,33);}
.fs5{font-size:34.564074px;}
.fs4{font-size:43.205092px;}
.fs0{font-size:59.286576px;}
.fs3{font-size:66.697398px;}
.fs1{font-size:74.108220px;}
.fs2{font-size:133.394796px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.500000px;}
.yae{bottom:19.616446px;}
.y2{bottom:19.616816px;}
.y83{bottom:19.617002px;}
.y57{bottom:19.617187px;}
.y26{bottom:78.776482px;}
.y82{bottom:78.776667px;}
.yd7{bottom:91.934582px;}
.y55{bottom:91.934952px;}
.yac{bottom:91.935138px;}
.y25{bottom:96.562455px;}
.y81{bottom:96.562640px;}
.y54{bottom:109.720925px;}
.y24{bottom:114.348428px;}
.y80{bottom:114.348613px;}
.yd6{bottom:117.872459px;}
.yab{bottom:117.873015px;}
.y53{bottom:127.506898px;}
.y7f{bottom:132.134586px;}
.yd5{bottom:143.810336px;}
.yaa{bottom:143.810892px;}
.y52{bottom:145.292871px;}
.y7e{bottom:149.920559px;}
.y51{bottom:163.078844px;}
.y7d{bottom:167.706531px;}
.y23{bottom:167.822881px;}
.yd4{bottom:169.748213px;}
.ya9{bottom:169.748769px;}
.y50{bottom:180.864816px;}
.y7c{bottom:185.492504px;}
.y22{bottom:193.760758px;}
.yd3{bottom:195.686090px;}
.ya8{bottom:195.686646px;}
.y4f{bottom:198.650789px;}
.y7b{bottom:203.278477px;}
.y4e{bottom:216.436762px;}
.y21{bottom:219.698635px;}
.y7a{bottom:221.064450px;}
.yd2{bottom:221.623967px;}
.ya7{bottom:221.624523px;}
.y4d{bottom:234.222735px;}
.y20{bottom:245.636512px;}
.yd1{bottom:247.561844px;}
.ya6{bottom:247.562400px;}
.y4c{bottom:252.008708px;}
.y4b{bottom:269.794680px;}
.y1f{bottom:271.574389px;}
.yd0{bottom:273.499721px;}
.ya5{bottom:273.500277px;}
.y79{bottom:273.500462px;}
.y4a{bottom:287.580653px;}
.y1e{bottom:297.512266px;}
.ycf{bottom:299.437598px;}
.ya4{bottom:299.438154px;}
.y78{bottom:299.438339px;}
.y49{bottom:305.366626px;}
.y48{bottom:323.152599px;}
.y1d{bottom:323.450143px;}
.yce{bottom:325.375475px;}
.ya3{bottom:325.376031px;}
.y77{bottom:325.376216px;}
.y47{bottom:340.938572px;}
.y1c{bottom:349.388020px;}
.ycd{bottom:351.313352px;}
.ya2{bottom:351.313908px;}
.y76{bottom:351.314093px;}
.y46{bottom:358.724544px;}
.y1b{bottom:375.325897px;}
.y45{bottom:376.510517px;}
.ycc{bottom:377.251229px;}
.ya1{bottom:377.251785px;}
.y75{bottom:377.251970px;}
.y44{bottom:394.296490px;}
.y1a{bottom:401.263774px;}
.ycb{bottom:403.189106px;}
.ya0{bottom:403.189662px;}
.y74{bottom:403.189847px;}
.y43{bottom:412.082463px;}
.y19{bottom:427.201651px;}
.yca{bottom:429.126983px;}
.y9f{bottom:429.127539px;}
.y73{bottom:429.127724px;}
.y42{bottom:429.868436px;}
.y18{bottom:453.139528px;}
.yc9{bottom:455.064860px;}
.y9e{bottom:455.065416px;}
.y72{bottom:455.065601px;}
.y17{bottom:479.077405px;}
.yc8{bottom:481.002737px;}
.y41{bottom:481.002922px;}
.y9d{bottom:481.003293px;}
.y71{bottom:481.003478px;}
.y16{bottom:505.015282px;}
.yc7{bottom:506.940614px;}
.y40{bottom:506.940799px;}
.y9c{bottom:506.941170px;}
.y70{bottom:506.941355px;}
.y15{bottom:530.953159px;}
.yc6{bottom:532.878491px;}
.y3f{bottom:532.878676px;}
.y9b{bottom:532.879047px;}
.y6f{bottom:532.879232px;}
.y14{bottom:556.891036px;}
.yc5{bottom:558.816368px;}
.y3e{bottom:558.816553px;}
.y9a{bottom:558.816924px;}
.y6e{bottom:558.817109px;}
.y13{bottom:582.828913px;}
.yc4{bottom:584.754245px;}
.y3d{bottom:584.754430px;}
.y99{bottom:584.754801px;}
.y6d{bottom:584.754986px;}
.y12{bottom:608.766790px;}
.yc3{bottom:610.692122px;}
.y3c{bottom:610.692307px;}
.y98{bottom:610.692678px;}
.y6c{bottom:610.692863px;}
.y11{bottom:634.704667px;}
.yc2{bottom:636.629999px;}
.y3b{bottom:636.630184px;}
.y97{bottom:636.630555px;}
.y6b{bottom:636.630740px;}
.y10{bottom:660.642544px;}
.yc1{bottom:662.567876px;}
.y3a{bottom:662.568061px;}
.y96{bottom:662.568432px;}
.y6a{bottom:662.568617px;}
.yf{bottom:686.580421px;}
.yc0{bottom:688.505753px;}
.y39{bottom:688.505938px;}
.y95{bottom:688.506309px;}
.y69{bottom:688.506494px;}
.ybf{bottom:714.443630px;}
.y38{bottom:714.443815px;}
.y94{bottom:714.444186px;}
.y68{bottom:714.444371px;}
.ye{bottom:738.433943px;}
.ybe{bottom:740.381507px;}
.y37{bottom:740.381692px;}
.y93{bottom:740.382063px;}
.y67{bottom:740.382248px;}
.yd{bottom:764.379231px;}
.ybd{bottom:766.319384px;}
.y36{bottom:766.319569px;}
.y92{bottom:766.319940px;}
.y66{bottom:766.320125px;}
.yc{bottom:790.324518px;}
.ybc{bottom:792.257261px;}
.y35{bottom:792.257446px;}
.y91{bottom:792.257817px;}
.y65{bottom:792.258002px;}
.yb{bottom:816.269806px;}
.ybb{bottom:818.195138px;}
.y34{bottom:818.195323px;}
.y90{bottom:818.195694px;}
.y64{bottom:818.195879px;}
.yba{bottom:844.133015px;}
.y33{bottom:844.133200px;}
.y8f{bottom:844.133571px;}
.y63{bottom:844.133756px;}
.ya{bottom:868.145560px;}
.yb9{bottom:870.070892px;}
.y32{bottom:870.071077px;}
.y8e{bottom:870.071448px;}
.y62{bottom:870.071633px;}
.y9{bottom:894.083437px;}
.yb8{bottom:896.008769px;}
.y31{bottom:896.008954px;}
.y8d{bottom:896.009325px;}
.y61{bottom:896.009510px;}
.y8{bottom:920.021314px;}
.yb7{bottom:921.946646px;}
.y30{bottom:921.946831px;}
.y8c{bottom:921.947202px;}
.y60{bottom:921.947387px;}
.y7{bottom:945.959191px;}
.yb6{bottom:947.884523px;}
.y2f{bottom:947.884708px;}
.y8b{bottom:947.885079px;}
.y5f{bottom:947.885264px;}
.y6{bottom:971.897068px;}
.yb5{bottom:973.822400px;}
.y2e{bottom:973.822585px;}
.y8a{bottom:973.822956px;}
.y5e{bottom:973.823141px;}
.yb4{bottom:999.760277px;}
.y2d{bottom:999.760462px;}
.y89{bottom:999.760833px;}
.y5d{bottom:999.761018px;}
.yb3{bottom:1025.698154px;}
.y2c{bottom:1025.698339px;}
.y88{bottom:1025.698710px;}
.y5c{bottom:1025.698895px;}
.y5{bottom:1045.093572px;}
.yb2{bottom:1051.636031px;}
.y2b{bottom:1051.636216px;}
.y87{bottom:1051.636587px;}
.y5b{bottom:1051.636772px;}
.yb1{bottom:1077.573908px;}
.y2a{bottom:1077.574093px;}
.y86{bottom:1077.574464px;}
.y5a{bottom:1077.574649px;}
.y4{bottom:1082.143976px;}
.yb0{bottom:1103.511785px;}
.y29{bottom:1103.511970px;}
.y85{bottom:1103.512341px;}
.y59{bottom:1103.512526px;}
.yaf{bottom:1129.449662px;}
.y28{bottom:1129.449847px;}
.y84{bottom:1129.450218px;}
.y58{bottom:1129.450403px;}
.y3{bottom:1163.451069px;}
.yad{bottom:1211.078569px;}
.y27{bottom:1211.078940px;}
.y56{bottom:1211.079310px;}
.hc{height:41.193749px;}
.h3{height:43.219914px;}
.hb{height:44.939640px;}
.he{height:50.732287px;}
.h9{height:51.492186px;}
.ha{height:52.020497px;}
.hd{height:52.831055px;}
.h7{height:58.523059px;}
.h8{height:62.587974px;}
.hf{height:63.976237px;}
.h6{height:65.025621px;}
.h4{height:66.038819px;}
.h5{height:98.287474px;}
.h2{height:1260.000000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:100.221178px;}
.x3{left:157.552964px;}
.x5{left:178.559865px;}
.x4{left:199.566952px;}
.x6{left:242.456343px;}
.x1{left:433.823035px;}
@media print{
.v3{vertical-align:-21.936033pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.548826pt;}
.v1{vertical-align:21.936033pt;}
.ls9{letter-spacing:-2.476861pt;}
.ls8{letter-spacing:-1.420967pt;}
.ls5{letter-spacing:-0.948585pt;}
.ls3{letter-spacing:-0.658740pt;}
.lsa{letter-spacing:-0.526992pt;}
.lsb{letter-spacing:-0.329370pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.086295pt;}
.ls1{letter-spacing:0.384045pt;}
.ls0{letter-spacing:0.658740pt;}
.ls6{letter-spacing:3.952438pt;}
.ls4{letter-spacing:13.581237pt;}
.ws4{word-spacing:-16.468493pt;}
.ws8{word-spacing:-16.139123pt;}
.ws9{word-spacing:-15.941502pt;}
.ws3{word-spacing:-13.174795pt;}
.ws7{word-spacing:-12.647803pt;}
.ws0{word-spacing:-9.601132pt;}
.ws5{word-spacing:-8.180164pt;}
.ws1{word-spacing:-0.052699pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:2.424162pt;}
._1{margin-left:-11.975888pt;}
._1c{margin-left:-9.135403pt;}
._1b{margin-left:-8.178913pt;}
._5{margin-left:-6.063041pt;}
._19{margin-left:-5.067026pt;}
._4{margin-left:-4.150060pt;}
._3{margin-left:-2.919534pt;}
._0{margin-left:-1.970949pt;}
._2{margin-left:-0.980205pt;}
._11{width:1.712723pt;}
._6{width:3.185665pt;}
._7{width:4.497875pt;}
._e{width:5.467540pt;}
._13{width:6.389775pt;}
._d{width:7.575507pt;}
._8{width:8.827112pt;}
._b{width:10.473962pt;}
._16{width:11.527945pt;}
._17{width:12.581929pt;}
._1a{width:13.504165pt;}
._f{width:14.492274pt;}
._c{width:15.546258pt;}
._15{width:17.883466pt;}
._a{width:18.797797pt;}
._9{width:20.152166pt;}
._10{width:21.474915pt;}
._18{width:23.187639pt;}
._12{width:45.057798pt;}
._14{width:45.980033pt;}
.fs5{font-size:30.723621pt;}
.fs4{font-size:38.404526pt;}
.fs0{font-size:52.699179pt;}
.fs3{font-size:59.286576pt;}
.fs1{font-size:65.873973pt;}
.fs2{font-size:118.573152pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.333333pt;}
.yae{bottom:17.436841pt;}
.y2{bottom:17.437170pt;}
.y83{bottom:17.437335pt;}
.y57{bottom:17.437499pt;}
.y26{bottom:70.023540pt;}
.y82{bottom:70.023704pt;}
.yd7{bottom:81.719628pt;}
.y55{bottom:81.719958pt;}
.yac{bottom:81.720122pt;}
.y25{bottom:85.833293pt;}
.y81{bottom:85.833458pt;}
.y54{bottom:97.529711pt;}
.y24{bottom:101.643047pt;}
.y80{bottom:101.643211pt;}
.yd6{bottom:104.775519pt;}
.yab{bottom:104.776013pt;}
.y53{bottom:113.339465pt;}
.y7f{bottom:117.452965pt;}
.yd5{bottom:127.831410pt;}
.yaa{bottom:127.831904pt;}
.y52{bottom:129.149218pt;}
.y7e{bottom:133.262719pt;}
.y51{bottom:144.958972pt;}
.y7d{bottom:149.072472pt;}
.y23{bottom:149.175894pt;}
.yd4{bottom:150.887300pt;}
.ya9{bottom:150.887794pt;}
.y50{bottom:160.768726pt;}
.y7c{bottom:164.882226pt;}
.y22{bottom:172.231785pt;}
.yd3{bottom:173.943191pt;}
.ya8{bottom:173.943685pt;}
.y4f{bottom:176.578479pt;}
.y7b{bottom:180.691979pt;}
.y4e{bottom:192.388233pt;}
.y21{bottom:195.287676pt;}
.y7a{bottom:196.501733pt;}
.yd2{bottom:196.999082pt;}
.ya7{bottom:196.999576pt;}
.y4d{bottom:208.197986pt;}
.y20{bottom:218.343566pt;}
.yd1{bottom:220.054972pt;}
.ya6{bottom:220.055466pt;}
.y4c{bottom:224.007740pt;}
.y4b{bottom:239.817494pt;}
.y1f{bottom:241.399457pt;}
.yd0{bottom:243.110863pt;}
.ya5{bottom:243.111357pt;}
.y79{bottom:243.111522pt;}
.y4a{bottom:255.627247pt;}
.y1e{bottom:264.455348pt;}
.ycf{bottom:266.166754pt;}
.ya4{bottom:266.167248pt;}
.y78{bottom:266.167412pt;}
.y49{bottom:271.437001pt;}
.y48{bottom:287.246754pt;}
.y1d{bottom:287.511238pt;}
.yce{bottom:289.222644pt;}
.ya3{bottom:289.223138pt;}
.y77{bottom:289.223303pt;}
.y47{bottom:303.056508pt;}
.y1c{bottom:310.567129pt;}
.ycd{bottom:312.278535pt;}
.ya2{bottom:312.279029pt;}
.y76{bottom:312.279194pt;}
.y46{bottom:318.866262pt;}
.y1b{bottom:333.623020pt;}
.y45{bottom:334.676015pt;}
.ycc{bottom:335.334426pt;}
.ya1{bottom:335.334920pt;}
.y75{bottom:335.335084pt;}
.y44{bottom:350.485769pt;}
.y1a{bottom:356.678910pt;}
.ycb{bottom:358.390316pt;}
.ya0{bottom:358.390810pt;}
.y74{bottom:358.390975pt;}
.y43{bottom:366.295522pt;}
.y19{bottom:379.734801pt;}
.yca{bottom:381.446207pt;}
.y9f{bottom:381.446701pt;}
.y73{bottom:381.446866pt;}
.y42{bottom:382.105276pt;}
.y18{bottom:402.790692pt;}
.yc9{bottom:404.502098pt;}
.y9e{bottom:404.502592pt;}
.y72{bottom:404.502756pt;}
.y17{bottom:425.846582pt;}
.yc8{bottom:427.557988pt;}
.y41{bottom:427.558153pt;}
.y9d{bottom:427.558482pt;}
.y71{bottom:427.558647pt;}
.y16{bottom:448.902473pt;}
.yc7{bottom:450.613879pt;}
.y40{bottom:450.614044pt;}
.y9c{bottom:450.614373pt;}
.y70{bottom:450.614538pt;}
.y15{bottom:471.958364pt;}
.yc6{bottom:473.669770pt;}
.y3f{bottom:473.669934pt;}
.y9b{bottom:473.670264pt;}
.y6f{bottom:473.670428pt;}
.y14{bottom:495.014254pt;}
.yc5{bottom:496.725660pt;}
.y3e{bottom:496.725825pt;}
.y9a{bottom:496.726154pt;}
.y6e{bottom:496.726319pt;}
.y13{bottom:518.070145pt;}
.yc4{bottom:519.781551pt;}
.y3d{bottom:519.781716pt;}
.y99{bottom:519.782045pt;}
.y6d{bottom:519.782210pt;}
.y12{bottom:541.126036pt;}
.yc3{bottom:542.837442pt;}
.y3c{bottom:542.837606pt;}
.y98{bottom:542.837936pt;}
.y6c{bottom:542.838100pt;}
.y11{bottom:564.181926pt;}
.yc2{bottom:565.893332pt;}
.y3b{bottom:565.893497pt;}
.y97{bottom:565.893826pt;}
.y6b{bottom:565.893991pt;}
.y10{bottom:587.237817pt;}
.yc1{bottom:588.949223pt;}
.y3a{bottom:588.949388pt;}
.y96{bottom:588.949717pt;}
.y6a{bottom:588.949882pt;}
.yf{bottom:610.293708pt;}
.yc0{bottom:612.005114pt;}
.y39{bottom:612.005278pt;}
.y95{bottom:612.005608pt;}
.y69{bottom:612.005772pt;}
.ybf{bottom:635.061004pt;}
.y38{bottom:635.061169pt;}
.y94{bottom:635.061498pt;}
.y68{bottom:635.061663pt;}
.ye{bottom:656.385727pt;}
.ybe{bottom:658.116895pt;}
.y37{bottom:658.117060pt;}
.y93{bottom:658.117389pt;}
.y67{bottom:658.117554pt;}
.yd{bottom:679.448205pt;}
.ybd{bottom:681.172786pt;}
.y36{bottom:681.172950pt;}
.y92{bottom:681.173280pt;}
.y66{bottom:681.173444pt;}
.yc{bottom:702.510683pt;}
.ybc{bottom:704.228676pt;}
.y35{bottom:704.228841pt;}
.y91{bottom:704.229170pt;}
.y65{bottom:704.229335pt;}
.yb{bottom:725.573161pt;}
.ybb{bottom:727.284567pt;}
.y34{bottom:727.284732pt;}
.y90{bottom:727.285061pt;}
.y64{bottom:727.285226pt;}
.yba{bottom:750.340458pt;}
.y33{bottom:750.340622pt;}
.y8f{bottom:750.340952pt;}
.y63{bottom:750.341116pt;}
.ya{bottom:771.684942pt;}
.yb9{bottom:773.396348pt;}
.y32{bottom:773.396513pt;}
.y8e{bottom:773.396842pt;}
.y62{bottom:773.397007pt;}
.y9{bottom:794.740833pt;}
.yb8{bottom:796.452239pt;}
.y31{bottom:796.452404pt;}
.y8d{bottom:796.452733pt;}
.y61{bottom:796.452898pt;}
.y8{bottom:817.796724pt;}
.yb7{bottom:819.508130pt;}
.y30{bottom:819.508294pt;}
.y8c{bottom:819.508624pt;}
.y60{bottom:819.508788pt;}
.y7{bottom:840.852614pt;}
.yb6{bottom:842.564020pt;}
.y2f{bottom:842.564185pt;}
.y8b{bottom:842.564514pt;}
.y5f{bottom:842.564679pt;}
.y6{bottom:863.908505pt;}
.yb5{bottom:865.619911pt;}
.y2e{bottom:865.620076pt;}
.y8a{bottom:865.620405pt;}
.y5e{bottom:865.620570pt;}
.yb4{bottom:888.675802pt;}
.y2d{bottom:888.675966pt;}
.y89{bottom:888.676296pt;}
.y5d{bottom:888.676460pt;}
.yb3{bottom:911.731692pt;}
.y2c{bottom:911.731857pt;}
.y88{bottom:911.732186pt;}
.y5c{bottom:911.732351pt;}
.y5{bottom:928.972064pt;}
.yb2{bottom:934.787583pt;}
.y2b{bottom:934.787748pt;}
.y87{bottom:934.788077pt;}
.y5b{bottom:934.788242pt;}
.yb1{bottom:957.843474pt;}
.y2a{bottom:957.843638pt;}
.y86{bottom:957.843968pt;}
.y5a{bottom:957.844132pt;}
.y4{bottom:961.905757pt;}
.yb0{bottom:980.899364pt;}
.y29{bottom:980.899529pt;}
.y85{bottom:980.899858pt;}
.y59{bottom:980.900023pt;}
.yaf{bottom:1003.955255pt;}
.y28{bottom:1003.955420pt;}
.y84{bottom:1003.955749pt;}
.y58{bottom:1003.955914pt;}
.y3{bottom:1034.178728pt;}
.yad{bottom:1076.514284pt;}
.y27{bottom:1076.514613pt;}
.y56{bottom:1076.514942pt;}
.hc{height:36.616666pt;}
.h3{height:38.417701pt;}
.hb{height:39.946346pt;}
.he{height:45.095367pt;}
.h9{height:45.770832pt;}
.ha{height:46.240441pt;}
.hd{height:46.960938pt;}
.h7{height:52.020497pt;}
.h8{height:55.633755pt;}
.hf{height:56.867766pt;}
.h6{height:57.800552pt;}
.h4{height:58.701173pt;}
.h5{height:87.366644pt;}
.h2{height:1120.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:89.085491pt;}
.x3{left:140.047079pt;}
.x5{left:158.719880pt;}
.x4{left:177.392846pt;}
.x6{left:215.516750pt;}
.x1{left:385.620476pt;}
}




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