
    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_fe45e5581448b3d4be8475ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_4d68b23f2bc36d4e510cb95a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_1a479934bb21015e8d9ffd69.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_2c1bd95120198e0815fac74b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_a186facfa68cf71188df943c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.678711;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_983756790c59176cc6fb1087.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_3aa4efd8d035dddf6e3f6070.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_fe45e5581448b3d4be8475ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;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_fde292db1dea9125f7f6fb8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_1a479934bb21015e8d9ffd69.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_15ed57b92d7421aba5f84d3a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.689453;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_ff1942bc8382d53e89178bb9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.890000;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_ce8a651007fce7ebb441241a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.906000;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_3c5366aecce0dce8e145b351.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.890000;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);}
.v2{vertical-align:-36.719985px;}
.v3{vertical-align:-30.959988px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.719985px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.008400px;}
.ls4{letter-spacing:0.095040px;}
.ls11{letter-spacing:0.184140px;}
.ls3{letter-spacing:0.217440px;}
.ls5{letter-spacing:0.312480px;}
.lse{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.364500px;}
.ls10{letter-spacing:0.368280px;}
.ls2{letter-spacing:0.407520px;}
.ls6{letter-spacing:0.529920px;}
.lsd{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.624960px;}
.ls7{letter-spacing:0.815040px;}
.ls8{letter-spacing:0.937440px;}
.lsf{letter-spacing:1.084200px;}
.lsb{letter-spacing:62.999970px;}
.lsa{letter-spacing:63.010080px;}
.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:-52.587339px;}
.ws7{word-spacing:-19.795792px;}
.ws3{word-spacing:-19.795500px;}
.ws5{word-spacing:-16.920000px;}
.ws1{word-spacing:-16.919993px;}
.ws4{word-spacing:-15.565500px;}
.ws6{word-spacing:-13.366500px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-64.111995px;}
._11{margin-left:-62.558066px;}
._f{margin-left:-58.745898px;}
._b{margin-left:-13.536813px;}
._22{margin-left:-12.250083px;}
._e{margin-left:-8.835052px;}
._26{margin-left:-7.530394px;}
._14{margin-left:-5.486510px;}
._8{margin-left:-3.878065px;}
._1{margin-left:-2.851201px;}
._0{margin-left:-1.718788px;}
._2{width:1.052665px;}
._23{width:2.712419px;}
._1a{width:3.794181px;}
._1c{width:4.970563px;}
._24{width:6.079979px;}
._20{width:7.211014px;}
._1f{width:8.508447px;}
._d{width:9.724949px;}
._19{width:10.834069px;}
._4{width:12.250080px;}
._29{width:13.874135px;}
._13{width:14.937980px;}
._12{width:16.297076px;}
._1b{width:17.799723px;}
._1e{width:20.860088px;}
._1d{width:22.094918px;}
._28{width:23.671391px;}
._27{width:25.005480px;}
._25{width:26.014726px;}
._15{width:27.403958px;}
._2a{width:34.822364px;}
._a{width:36.220166px;}
._16{width:37.352027px;}
._17{width:38.532284px;}
._3{width:44.680583px;}
._7{width:46.090080px;}
._c{width:47.610039px;}
._9{width:53.903777px;}
._21{width:56.875838px;}
._6{width:62.333280px;}
._5{width:63.686880px;}
._18{width:69.881256px;}
.fc2{color:transparent;}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:45.343422px;}
.fsc{font-size:50.759980px;}
.fsb{font-size:53.465739px;}
.fsa{font-size:53.466000px;}
.fs7{font-size:56.172000px;}
.fs0{font-size:56.174378px;}
.fs8{font-size:62.262000px;}
.fs2{font-size:67.679973px;}
.fs9{font-size:67.680000px;}
.fs6{font-size:79.182000px;}
.fs4{font-size:79.183168px;}
.fs5{font-size:90.012000px;}
.fs3{font-size:90.014364px;}
.y0{bottom:0.000000px;}
.y99{bottom:4.139551px;}
.y72{bottom:4.139583px;}
.y7b{bottom:55.439978px;}
.y93{bottom:85.319966px;}
.y6b{bottom:87.119700px;}
.yb6{bottom:93.059963px;}
.y92{bottom:104.759958px;}
.y6a{bottom:106.559700px;}
.y9{bottom:109.619956px;}
.ybb{bottom:112.499955px;}
.yb5{bottom:124.199950px;}
.y69{bottom:126.179700px;}
.y91{bottom:131.939947px;}
.y3b{bottom:138.599945px;}
.y8{bottom:140.759944px;}
.yb4{bottom:143.639943px;}
.y68{bottom:145.619700px;}
.yd7{bottom:149.039940px;}
.y90{bottom:153.179939px;}
.y3a{bottom:158.039937px;}
.yba{bottom:163.079935px;}
.y67{bottom:165.059700px;}
.yb3{bottom:170.999932px;}
.y39{bottom:177.479929px;}
.yd6{bottom:178.379929px;}
.yb9{bottom:182.519927px;}
.y7{bottom:190.799924px;}
.yb2{bottom:192.059923px;}
.y38{bottom:196.379921px;}
.yb8{bottom:202.139919px;}
.yd5{bottom:207.539917px;}
.y37{bottom:212.399915px;}
.y6{bottom:213.839914px;}
.yb1{bottom:223.199911px;}
.y66{bottom:226.799700px;}
.y36{bottom:229.319908px;}
.yd4{bottom:239.039904px;}
.y8f{bottom:243.539903px;}
.y5{bottom:248.399901px;}
.y35{bottom:248.759900px;}
.yb7{bottom:250.379900px;}
.yb0{bottom:257.219897px;}
.y34{bottom:268.199893px;}
.yd3{bottom:273.059891px;}
.y8e{bottom:277.559889px;}
.y33{bottom:287.639885px;}
.y65{bottom:288.539700px;}
.yaf{bottom:291.239884px;}
.y4{bottom:295.379882px;}
.y32{bottom:307.079877px;}
.y64{bottom:307.979700px;}
.y8d{bottom:311.579875px;}
.yae{bottom:325.259870px;}
.y31{bottom:326.519869px;}
.y63{bottom:327.419700px;}
.yd2{bottom:341.099864px;}
.y8c{bottom:345.599862px;}
.y30{bottom:346.139862px;}
.y62{bottom:346.859700px;}
.yad{bottom:359.279856px;}
.y2f{bottom:365.579854px;}
.y61{bottom:366.299700px;}
.yd1{bottom:375.299850px;}
.y8b{bottom:379.619848px;}
.y2e{bottom:385.019846px;}
.y60{bottom:385.739700px;}
.yac{bottom:393.479843px;}
.y2d{bottom:404.459838px;}
.y5f{bottom:405.359700px;}
.yd0{bottom:409.319836px;}
.y8a{bottom:413.819834px;}
.y2c{bottom:423.899830px;}
.y5e{bottom:424.799700px;}
.yab{bottom:427.499829px;}
.y2b{bottom:443.339823px;}
.y5d{bottom:444.239700px;}
.y89{bottom:447.659821px;}
.yaa{bottom:461.519815px;}
.y2a{bottom:462.779815px;}
.y5c{bottom:463.679700px;}
.ycf{bottom:477.359809px;}
.y29{bottom:481.679807px;}
.y5b{bottom:483.119700px;}
.ya9{bottom:495.539802px;}
.y5a{bottom:502.559700px;}
.y28{bottom:510.119796px;}
.yce{bottom:511.559795px;}
.y88{bottom:515.699794px;}
.y59{bottom:521.999700px;}
.y27{bottom:529.559788px;}
.y58{bottom:541.439700px;}
.ycd{bottom:545.579782px;}
.y26{bottom:549.179780px;}
.y87{bottom:549.899780px;}
.y57{bottom:560.879700px;}
.ya8{bottom:563.579775px;}
.y25{bottom:568.619773px;}
.ycc{bottom:579.599768px;}
.y56{bottom:580.319700px;}
.y86{bottom:583.919766px;}
.y24{bottom:588.059765px;}
.ya7{bottom:597.599761px;}
.y55{bottom:599.939700px;}
.y23{bottom:607.499757px;}
.ycb{bottom:613.619755px;}
.y85{bottom:617.939753px;}
.y54{bottom:619.379700px;}
.y22{bottom:626.939749px;}
.ya6{bottom:631.619747px;}
.ybc{bottom:634.139746px;}
.y53{bottom:638.819700px;}
.y21{bottom:645.839742px;}
.yca{bottom:647.639741px;}
.y84{bottom:651.959739px;}
.y52{bottom:658.259700px;}
.ya5{bottom:665.819734px;}
.y20{bottom:674.279730px;}
.y51{bottom:677.699700px;}
.yc9{bottom:681.659727px;}
.y83{bottom:686.159726px;}
.y1f{bottom:693.719723px;}
.y50{bottom:697.139700px;}
.ya4{bottom:699.839720px;}
.y1e{bottom:713.159715px;}
.yc8{bottom:715.679714px;}
.y4f{bottom:716.579700px;}
.y82{bottom:720.179712px;}
.y1d{bottom:732.599707px;}
.ya3{bottom:733.859706px;}
.y4e{bottom:736.019700px;}
.yc7{bottom:749.699700px;}
.y1c{bottom:751.679699px;}
.y81{bottom:753.659699px;}
.y4d{bottom:755.459700px;}
.ya2{bottom:767.879693px;}
.y4c{bottom:774.899700px;}
.y1b{bottom:780.119688px;}
.yc6{bottom:783.719687px;}
.y80{bottom:787.679685px;}
.y4b{bottom:794.519700px;}
.y1a{bottom:799.559680px;}
.ya1{bottom:801.899679px;}
.y4a{bottom:813.959700px;}
.yc5{bottom:817.919673px;}
.y19{bottom:818.999672px;}
.y7f{bottom:821.699671px;}
.y49{bottom:833.399550px;}
.ya0{bottom:836.099666px;}
.y18{bottom:838.439665px;}
.yc4{bottom:851.939659px;}
.y48{bottom:852.839550px;}
.y7e{bottom:855.899658px;}
.y17{bottom:857.879657px;}
.y9f{bottom:870.119652px;}
.y47{bottom:872.279550px;}
.y16{bottom:877.319649px;}
.yc3{bottom:885.959646px;}
.y7d{bottom:889.919644px;}
.y46{bottom:891.719550px;}
.y15{bottom:896.759641px;}
.y9e{bottom:904.139638px;}
.y45{bottom:911.159550px;}
.y14{bottom:916.199634px;}
.yc2{bottom:919.979632px;}
.y7c{bottom:923.939630px;}
.y44{bottom:930.599550px;}
.y13{bottom:935.639626px;}
.y9d{bottom:938.159625px;}
.y7a{bottom:946.619621px;}
.yc1{bottom:954.179618px;}
.y12{bottom:954.719618px;}
.y43{bottom:957.959550px;}
.y79{bottom:966.059614px;}
.y9c{bottom:972.179611px;}
.y42{bottom:980.819550px;}
.y11{bottom:983.159607px;}
.y78{bottom:985.499606px;}
.yc0{bottom:988.199605px;}
.y10{bottom:1002.599599px;}
.y77{bottom:1004.939598px;}
.y9b{bottom:1006.199598px;}
.y41{bottom:1006.739550px;}
.yf{bottom:1021.499591px;}
.ybf{bottom:1022.219591px;}
.y76{bottom:1024.379590px;}
.y40{bottom:1031.039550px;}
.y70{bottom:1031.579587px;}
.y71{bottom:1037.880000px;}
.y9a{bottom:1040.219584px;}
.ye{bottom:1040.759584px;}
.y3f{bottom:1047.239550px;}
.y6f{bottom:1051.199580px;}
.y75{bottom:1052.999579px;}
.ybe{bottom:1056.239578px;}
.yd{bottom:1056.959577px;}
.y97{bottom:1062.359575px;}
.y3e{bottom:1063.439550px;}
.y6e{bottom:1070.639572px;}
.yc{bottom:1073.159571px;}
.y3d{bottom:1080.899550px;}
.y74{bottom:1080.899568px;}
.y96{bottom:1081.979567px;}
.y3{bottom:1082.879567px;}
.yb{bottom:1089.359564px;}
.y6d{bottom:1090.079564px;}
.ybd{bottom:1090.439564px;}
.y2{bottom:1098.359561px;}
.y95{bottom:1101.419559px;}
.y3c{bottom:1104.119550px;}
.ya{bottom:1106.819557px;}
.y73{bottom:1108.799556px;}
.y6c{bottom:1109.519556px;}
.y1{bottom:1112.039555px;}
.y98{bottom:1118.700000px;}
.y94{bottom:1122.839551px;}
.hf{height:19.260000px;}
.h2{height:31.196274px;}
.ha{height:38.646336px;}
.h1{height:38.647972px;}
.h13{height:46.225422px;}
.hc{height:46.225440px;}
.h3{height:46.563821px;}
.hb{height:46.563840px;}
.hd{height:46.564440px;}
.h7{height:46.766861px;}
.h6{height:47.308301px;}
.he{height:54.081306px;}
.h9{height:54.477216px;}
.h5{height:54.478020px;}
.h10{height:56.457599px;}
.h8{height:61.928256px;}
.h4{height:61.929882px;}
.h12{height:70.922852px;}
.h11{height:71.642851px;}
.h0{height:1188.000000px;}
.w2{width:0.180000px;}
.w1{width:1.980000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:158.759936px;}
.xa{left:159.839850px;}
.x10{left:184.140000px;}
.xe{left:208.799916px;}
.x4{left:236.879905px;}
.x17{left:238.499905px;}
.x16{left:249.479900px;}
.xc{left:258.480000px;}
.xd{left:268.199893px;}
.x5{left:317.699873px;}
.x11{left:327.239869px;}
.xf{left:345.779862px;}
.x6{left:348.659861px;}
.x7{left:362.699855px;}
.x8{left:368.639850px;}
.x9{left:373.139850px;}
.xb{left:377.279850px;}
.x15{left:396.539841px;}
.x2{left:458.459817px;}
.x14{left:558.179777px;}
.x3{left:724.679710px;}
.x12{left:732.959707px;}
.x13{left:758.340000px;}
@media print{
.v2{vertical-align:-32.639987pt;}
.v3{vertical-align:-27.519989pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.639987pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.007467pt;}
.ls4{letter-spacing:0.084480pt;}
.ls11{letter-spacing:0.163680pt;}
.ls3{letter-spacing:0.193280pt;}
.ls5{letter-spacing:0.277760pt;}
.lse{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.324000pt;}
.ls10{letter-spacing:0.327360pt;}
.ls2{letter-spacing:0.362240pt;}
.ls6{letter-spacing:0.471040pt;}
.lsd{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.555520pt;}
.ls7{letter-spacing:0.724480pt;}
.ls8{letter-spacing:0.833280pt;}
.lsf{letter-spacing:0.963733pt;}
.lsb{letter-spacing:55.999974pt;}
.lsa{letter-spacing:56.008960pt;}
.ws2{word-spacing:-46.744301pt;}
.ws7{word-spacing:-17.596260pt;}
.ws3{word-spacing:-17.596000pt;}
.ws5{word-spacing:-15.040000pt;}
.ws1{word-spacing:-15.039994pt;}
.ws4{word-spacing:-13.836000pt;}
.ws6{word-spacing:-11.881333pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-56.988440pt;}
._11{margin-left:-55.607170pt;}
._f{margin-left:-52.218576pt;}
._b{margin-left:-12.032722pt;}
._22{margin-left:-10.888963pt;}
._e{margin-left:-7.853379pt;}
._26{margin-left:-6.693684pt;}
._14{margin-left:-4.876897pt;}
._8{margin-left:-3.447168pt;}
._1{margin-left:-2.534401pt;}
._0{margin-left:-1.527812pt;}
._2{width:0.935702pt;}
._23{width:2.411039pt;}
._1a{width:3.372605pt;}
._1c{width:4.418278pt;}
._24{width:5.404426pt;}
._20{width:6.409790pt;}
._1f{width:7.563064pt;}
._d{width:8.644400pt;}
._19{width:9.630283pt;}
._4{width:10.888960pt;}
._29{width:12.332564pt;}
._13{width:13.278205pt;}
._12{width:14.486290pt;}
._1b{width:15.821976pt;}
._1e{width:18.542300pt;}
._1d{width:19.639927pt;}
._28{width:21.041236pt;}
._27{width:22.227093pt;}
._25{width:23.124201pt;}
._15{width:24.359073pt;}
._2a{width:30.953213pt;}
._a{width:32.195703pt;}
._16{width:33.201802pt;}
._17{width:34.250919pt;}
._3{width:39.716074pt;}
._7{width:40.968960pt;}
._c{width:42.320035pt;}
._9{width:47.914469pt;}
._21{width:50.556301pt;}
._6{width:55.407360pt;}
._5{width:56.610560pt;}
._18{width:62.116672pt;}
.fs1{font-size:40.305264pt;}
.fsc{font-size:45.119982pt;}
.fsb{font-size:47.525101pt;}
.fsa{font-size:47.525333pt;}
.fs7{font-size:49.930667pt;}
.fs0{font-size:49.932780pt;}
.fs8{font-size:55.344000pt;}
.fs2{font-size:60.159976pt;}
.fs9{font-size:60.160000pt;}
.fs6{font-size:70.384000pt;}
.fs4{font-size:70.385039pt;}
.fs5{font-size:80.010667pt;}
.fs3{font-size:80.012768pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:3.679601pt;}
.y72{bottom:3.679630pt;}
.y7b{bottom:49.279980pt;}
.y93{bottom:75.839970pt;}
.y6b{bottom:77.439733pt;}
.yb6{bottom:82.719967pt;}
.y92{bottom:93.119963pt;}
.y6a{bottom:94.719733pt;}
.y9{bottom:97.439961pt;}
.ybb{bottom:99.999960pt;}
.yb5{bottom:110.399956pt;}
.y69{bottom:112.159733pt;}
.y91{bottom:117.279953pt;}
.y3b{bottom:123.199951pt;}
.y8{bottom:125.119950pt;}
.yb4{bottom:127.679949pt;}
.y68{bottom:129.439733pt;}
.yd7{bottom:132.479947pt;}
.y90{bottom:136.159946pt;}
.y3a{bottom:140.479944pt;}
.yba{bottom:144.959942pt;}
.y67{bottom:146.719733pt;}
.yb3{bottom:151.999939pt;}
.y39{bottom:157.759937pt;}
.yd6{bottom:158.559937pt;}
.yb9{bottom:162.239935pt;}
.y7{bottom:169.599932pt;}
.yb2{bottom:170.719932pt;}
.y38{bottom:174.559930pt;}
.yb8{bottom:179.679928pt;}
.yd5{bottom:184.479926pt;}
.y37{bottom:188.799924pt;}
.y6{bottom:190.079924pt;}
.yb1{bottom:198.399921pt;}
.y66{bottom:201.599733pt;}
.y36{bottom:203.839918pt;}
.yd4{bottom:212.479915pt;}
.y8f{bottom:216.479913pt;}
.y5{bottom:220.799912pt;}
.y35{bottom:221.119912pt;}
.yb7{bottom:222.559911pt;}
.yb0{bottom:228.639909pt;}
.y34{bottom:238.399905pt;}
.yd3{bottom:242.719903pt;}
.y8e{bottom:246.719901pt;}
.y33{bottom:255.679898pt;}
.y65{bottom:256.479733pt;}
.yaf{bottom:258.879896pt;}
.y4{bottom:262.559895pt;}
.y32{bottom:272.959891pt;}
.y64{bottom:273.759733pt;}
.y8d{bottom:276.959889pt;}
.yae{bottom:289.119884pt;}
.y31{bottom:290.239884pt;}
.y63{bottom:291.039733pt;}
.yd2{bottom:303.199879pt;}
.y8c{bottom:307.199877pt;}
.y30{bottom:307.679877pt;}
.y62{bottom:308.319733pt;}
.yad{bottom:319.359872pt;}
.y2f{bottom:324.959870pt;}
.y61{bottom:325.599733pt;}
.yd1{bottom:333.599867pt;}
.y8b{bottom:337.439865pt;}
.y2e{bottom:342.239863pt;}
.y60{bottom:342.879733pt;}
.yac{bottom:349.759860pt;}
.y2d{bottom:359.519856pt;}
.y5f{bottom:360.319733pt;}
.yd0{bottom:363.839854pt;}
.y8a{bottom:367.839853pt;}
.y2c{bottom:376.799849pt;}
.y5e{bottom:377.599733pt;}
.yab{bottom:379.999848pt;}
.y2b{bottom:394.079842pt;}
.y5d{bottom:394.879733pt;}
.y89{bottom:397.919841pt;}
.yaa{bottom:410.239836pt;}
.y2a{bottom:411.359835pt;}
.y5c{bottom:412.159733pt;}
.ycf{bottom:424.319830pt;}
.y29{bottom:428.159829pt;}
.y5b{bottom:429.439733pt;}
.ya9{bottom:440.479824pt;}
.y5a{bottom:446.719733pt;}
.y28{bottom:453.439819pt;}
.yce{bottom:454.719818pt;}
.y88{bottom:458.399817pt;}
.y59{bottom:463.999733pt;}
.y27{bottom:470.719812pt;}
.y58{bottom:481.279733pt;}
.ycd{bottom:484.959806pt;}
.y26{bottom:488.159805pt;}
.y87{bottom:488.799804pt;}
.y57{bottom:498.559733pt;}
.ya8{bottom:500.959800pt;}
.y25{bottom:505.439798pt;}
.ycc{bottom:515.199794pt;}
.y56{bottom:515.839733pt;}
.y86{bottom:519.039792pt;}
.y24{bottom:522.719791pt;}
.ya7{bottom:531.199788pt;}
.y55{bottom:533.279733pt;}
.y23{bottom:539.999784pt;}
.ycb{bottom:545.439782pt;}
.y85{bottom:549.279780pt;}
.y54{bottom:550.559733pt;}
.y22{bottom:557.279777pt;}
.ya6{bottom:561.439775pt;}
.ybc{bottom:563.679775pt;}
.y53{bottom:567.839733pt;}
.y21{bottom:574.079770pt;}
.yca{bottom:575.679770pt;}
.y84{bottom:579.519768pt;}
.y52{bottom:585.119733pt;}
.ya5{bottom:591.839763pt;}
.y20{bottom:599.359760pt;}
.y51{bottom:602.399733pt;}
.yc9{bottom:605.919758pt;}
.y83{bottom:609.919756pt;}
.y1f{bottom:616.639753pt;}
.y50{bottom:619.679733pt;}
.ya4{bottom:622.079751pt;}
.y1e{bottom:633.919746pt;}
.yc8{bottom:636.159746pt;}
.y4f{bottom:636.959733pt;}
.y82{bottom:640.159744pt;}
.y1d{bottom:651.199740pt;}
.ya3{bottom:652.319739pt;}
.y4e{bottom:654.239733pt;}
.yc7{bottom:666.399733pt;}
.y1c{bottom:668.159733pt;}
.y81{bottom:669.919732pt;}
.y4d{bottom:671.519733pt;}
.ya2{bottom:682.559727pt;}
.y4c{bottom:688.799733pt;}
.y1b{bottom:693.439723pt;}
.yc6{bottom:696.639721pt;}
.y80{bottom:700.159720pt;}
.y4b{bottom:706.239733pt;}
.y1a{bottom:710.719716pt;}
.ya1{bottom:712.799715pt;}
.y4a{bottom:723.519733pt;}
.yc5{bottom:727.039709pt;}
.y19{bottom:727.999709pt;}
.y7f{bottom:730.399708pt;}
.y49{bottom:740.799600pt;}
.ya0{bottom:743.199703pt;}
.y18{bottom:745.279702pt;}
.yc4{bottom:757.279697pt;}
.y48{bottom:758.079600pt;}
.y7e{bottom:760.799696pt;}
.y17{bottom:762.559695pt;}
.y9f{bottom:773.439691pt;}
.y47{bottom:775.359600pt;}
.y16{bottom:779.839688pt;}
.yc3{bottom:787.519685pt;}
.y7d{bottom:791.039684pt;}
.y46{bottom:792.639600pt;}
.y15{bottom:797.119681pt;}
.y9e{bottom:803.679679pt;}
.y45{bottom:809.919600pt;}
.y14{bottom:814.399674pt;}
.yc2{bottom:817.759673pt;}
.y7c{bottom:821.279671pt;}
.y44{bottom:827.199600pt;}
.y13{bottom:831.679667pt;}
.y9d{bottom:833.919666pt;}
.y7a{bottom:841.439663pt;}
.yc1{bottom:848.159661pt;}
.y12{bottom:848.639661pt;}
.y43{bottom:851.519600pt;}
.y79{bottom:858.719657pt;}
.y9c{bottom:864.159654pt;}
.y42{bottom:871.839600pt;}
.y11{bottom:873.919650pt;}
.y78{bottom:875.999650pt;}
.yc0{bottom:878.399649pt;}
.y10{bottom:891.199644pt;}
.y77{bottom:893.279643pt;}
.y9b{bottom:894.399642pt;}
.y41{bottom:894.879600pt;}
.yf{bottom:907.999637pt;}
.ybf{bottom:908.639637pt;}
.y76{bottom:910.559636pt;}
.y40{bottom:916.479600pt;}
.y70{bottom:916.959633pt;}
.y71{bottom:922.560000pt;}
.y9a{bottom:924.639630pt;}
.ye{bottom:925.119630pt;}
.y3f{bottom:930.879600pt;}
.y6f{bottom:934.399626pt;}
.y75{bottom:935.999626pt;}
.ybe{bottom:938.879624pt;}
.yd{bottom:939.519624pt;}
.y97{bottom:944.319622pt;}
.y3e{bottom:945.279600pt;}
.y6e{bottom:951.679619pt;}
.yc{bottom:953.919618pt;}
.y3d{bottom:960.799600pt;}
.y74{bottom:960.799616pt;}
.y96{bottom:961.759615pt;}
.y3{bottom:962.559615pt;}
.yb{bottom:968.319613pt;}
.y6d{bottom:968.959612pt;}
.ybd{bottom:969.279612pt;}
.y2{bottom:976.319609pt;}
.y95{bottom:979.039608pt;}
.y3c{bottom:981.439600pt;}
.ya{bottom:983.839606pt;}
.y73{bottom:985.599606pt;}
.y6c{bottom:986.239606pt;}
.y1{bottom:988.479605pt;}
.y98{bottom:994.400000pt;}
.y94{bottom:998.079601pt;}
.hf{height:17.120000pt;}
.h2{height:27.730022pt;}
.ha{height:34.352299pt;}
.h1{height:34.353753pt;}
.h13{height:41.089264pt;}
.hc{height:41.089280pt;}
.h3{height:41.390063pt;}
.hb{height:41.390080pt;}
.hd{height:41.390613pt;}
.h7{height:41.570543pt;}
.h6{height:42.051823pt;}
.he{height:48.072272pt;}
.h9{height:48.424192pt;}
.h5{height:48.424906pt;}
.h10{height:50.184532pt;}
.h8{height:55.047339pt;}
.h4{height:55.048784pt;}
.h12{height:63.042535pt;}
.h11{height:63.682535pt;}
.h0{height:1056.000000pt;}
.w2{width:0.160000pt;}
.w1{width:1.760000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:141.119944pt;}
.xa{left:142.079867pt;}
.x10{left:163.680000pt;}
.xe{left:185.599926pt;}
.x4{left:210.559916pt;}
.x17{left:211.999915pt;}
.x16{left:221.759911pt;}
.xc{left:229.760000pt;}
.xd{left:238.399905pt;}
.x5{left:282.399887pt;}
.x11{left:290.879884pt;}
.xf{left:307.359877pt;}
.x6{left:309.919876pt;}
.x7{left:322.399871pt;}
.x8{left:327.679867pt;}
.x9{left:331.679867pt;}
.xb{left:335.359867pt;}
.x15{left:352.479859pt;}
.x2{left:407.519837pt;}
.x14{left:496.159802pt;}
.x3{left:644.159742pt;}
.x12{left:651.519739pt;}
.x13{left:674.080000pt;}
}




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