
    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_430d33365836fa5f46d5a64e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_b849fa77a89604fd15f4f8fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.862793;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_d467c7f16d461b350408c5fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.835449;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_fc6cfaeebab28365590d05c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_6ed86eaee7b6023b292b57ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.873535;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_57900d4c4930e03437b62bd2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_cb9ace6a5b536afcf9753846.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_b581647be3515a6846d87761.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.599999px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.068520px;}
.lsa{letter-spacing:94.531201px;}
.lse{letter-spacing:94.532230px;}
.lsb{letter-spacing:94.532594px;}
.lsc{letter-spacing:94.532803px;}
.ls10{letter-spacing:94.533677px;}
.ls6{letter-spacing:94.533757px;}
.ls2{letter-spacing:94.533951px;}
.ls7{letter-spacing:94.534030px;}
.ls11{letter-spacing:94.534243px;}
.ls3{letter-spacing:94.534810px;}
.ls5{letter-spacing:94.535222px;}
.ls9{letter-spacing:94.535427px;}
.lsd{letter-spacing:94.535444px;}
.ls8{letter-spacing:94.536630px;}
.lsf{letter-spacing:94.536695px;}
.ls4{letter-spacing:94.536885px;}
.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;}
}
.ws0{word-spacing:-59.718216px;}
.ws9{word-spacing:-48.815980px;}
.ws5{word-spacing:-43.446223px;}
.ws4{word-spacing:-32.543987px;}
.ws2{word-spacing:-21.641751px;}
.ws8{word-spacing:-20.015992px;}
.ws6{word-spacing:-19.038232px;}
.ws7{word-spacing:-16.271993px;}
.ws3{word-spacing:-13.505755px;}
.ws1{word-spacing:0.000000px;}
._1c{margin-left:-23.760927px;}
._34{margin-left:-21.628140px;}
._1d{margin-left:-17.626357px;}
._2a{margin-left:-15.346251px;}
._e{margin-left:-14.062415px;}
._26{margin-left:-11.636269px;}
._33{margin-left:-9.879730px;}
._1e{margin-left:-7.157381px;}
._1f{margin-left:-5.720377px;}
._2{margin-left:-4.350583px;}
._0{margin-left:-2.388924px;}
._1{margin-left:-1.374496px;}
._3{width:1.145427px;}
._5{width:2.259804px;}
._4{width:3.708320px;}
._8{width:5.544848px;}
._f{width:7.617063px;}
._10{width:8.862063px;}
._22{width:10.041417px;}
._6{width:11.385509px;}
._7{width:12.637411px;}
._12{width:13.847595px;}
._16{width:14.940790px;}
._15{width:15.942598px;}
._29{width:17.290497px;}
._20{width:18.926697px;}
._21{width:20.757491px;}
._36{width:21.984024px;}
._11{width:23.072190px;}
._25{width:25.461238px;}
._23{width:26.584858px;}
._24{width:28.056377px;}
._3a{width:32.975565px;}
._28{width:34.270284px;}
._13{width:36.191897px;}
._31{width:37.322029px;}
._32{width:38.436662px;}
._37{width:42.731376px;}
._18{width:49.695934px;}
._17{width:51.276964px;}
._2f{width:57.865325px;}
._d{width:67.452752px;}
._38{width:70.676177px;}
._39{width:72.006575px;}
._30{width:75.069143px;}
._2c{width:76.387658px;}
._2b{width:77.620246px;}
._c{width:79.077237px;}
._b{width:80.269230px;}
._2e{width:81.376602px;}
._2d{width:82.423994px;}
._27{width:90.583856px;}
._19{width:95.778531px;}
._1a{width:96.909665px;}
._a{width:98.427902px;}
._9{width:100.262821px;}
._1b{width:106.007801px;}
._35{width:116.773182px;}
._14{width:123.398000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(55,96,146);}
.fc4{color:rgb(139,139,139);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:59.039976px;}
.fs7{font-size:59.759976px;}
.fsb{font-size:71.999971px;}
.fs2{font-size:77.759969px;}
.fs6{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fsc{font-size:107.999957px;}
.fs8{font-size:131.759947px;}
.fsa{font-size:143.999942px;}
.fs3{font-size:167.759933px;}
.fs1{font-size:185.759926px;}
.fs5{font-size:192.239923px;}
.fse{font-size:215.999914px;}
.fsd{font-size:239.759904px;}
.fs0{font-size:264.239894px;}
.y0{bottom:0.000000px;}
.y94{bottom:17.820024px;}
.y83{bottom:92.580320px;}
.y6d{bottom:97.800318px;}
.y92{bottom:99.780317px;}
.y4b{bottom:102.480316px;}
.y48{bottom:103.920315px;}
.y65{bottom:105.360315px;}
.y45{bottom:106.440314px;}
.y66{bottom:110.760313px;}
.y9{bottom:111.840312px;}
.y9f{bottom:113.280312px;}
.y8{bottom:135.240303px;}
.y64{bottom:146.400298px;}
.y2b{bottom:156.660294px;}
.y7{bottom:158.640294px;}
.y6{bottom:182.040284px;}
.y91{bottom:196.440278px;}
.y9b{bottom:205.980275px;}
.y3a{bottom:207.780274px;}
.y16{bottom:210.120273px;}
.y2a{bottom:214.260271px;}
.y39{bottom:216.060271px;}
.y6b{bottom:218.760269px;}
.y63{bottom:222.720268px;}
.y90{bottom:228.840265px;}
.y9a{bottom:231.540264px;}
.y15{bottom:238.740262px;}
.y38{bottom:247.380258px;}
.y6a{bottom:251.160257px;}
.y62{bottom:255.120255px;}
.y37{bottom:255.660255px;}
.y8f{bottom:261.240253px;}
.y14{bottom:267.540250px;}
.y29{bottom:270.600249px;}
.y69{bottom:283.560244px;}
.y43{bottom:286.080243px;}
.y82{bottom:286.440242px;}
.y36{bottom:286.980242px;}
.y61{bottom:287.520242px;}
.y28{bottom:289.860241px;}
.y12{bottom:292.920240px;}
.y8e{bottom:293.640240px;}
.y13{bottom:296.340238px;}
.y81{bottom:308.400234px;}
.y27{bottom:313.800231px;}
.y60{bottom:319.920229px;}
.y53{bottom:326.040227px;}
.y35{bottom:326.580226px;}
.y42{bottom:329.280225px;}
.y80{bottom:330.360225px;}
.y34{bottom:334.860223px;}
.y5{bottom:337.020222px;}
.y11{bottom:343.320220px;}
.ya4{bottom:347.820218px;}
.y5f{bottom:352.320216px;}
.y7f{bottom:359.160213px;}
.y26{bottom:364.200211px;}
.y33{bottom:366.180211px;}
.y41{bottom:372.480208px;}
.y32{bottom:374.460207px;}
.y1d{bottom:376.080207px;}
.y52{bottom:376.440206px;}
.y7e{bottom:381.120205px;}
.y25{bottom:383.280204px;}
.y5e{bottom:384.720203px;}
.y10{bottom:393.720200px;}
.y7d{bottom:402.900196px;}
.y31{bottom:405.780195px;}
.y40{bottom:415.680191px;}
.y5d{bottom:417.120190px;}
.y7c{bottom:424.860187px;}
.y8d{bottom:425.040187px;}
.y1c{bottom:426.480186px;}
.y51{bottom:426.840186px;}
.y8c{bottom:427.200186px;}
.yf{bottom:444.120179px;}
.y30{bottom:445.380179px;}
.y7b{bottom:446.820178px;}
.y5c{bottom:449.520177px;}
.y3f{bottom:458.880173px;}
.y8b{bottom:468.240170px;}
.y7a{bottom:468.780169px;}
.y8a{bottom:470.400169px;}
.y24{bottom:472.200168px;}
.y1b{bottom:476.880166px;}
.y50{bottom:477.240166px;}
.y5b{bottom:481.920164px;}
.y4{bottom:484.980163px;}
.ya3{bottom:489.300161px;}
.y79{bottom:490.740161px;}
.y23{bottom:491.280160px;}
.ye{bottom:494.520159px;}
.y3e{bottom:502.080156px;}
.y89{bottom:511.440152px;}
.y78{bottom:512.700152px;}
.y5a{bottom:514.320151px;}
.y1a{bottom:527.280146px;}
.y4f{bottom:527.640146px;}
.y77{bottom:534.660143px;}
.yd{bottom:544.740139px;}
.y3d{bottom:545.280139px;}
.y59{bottom:547.260138px;}
.y22{bottom:548.880137px;}
.ya2{bottom:554.100135px;}
.y88{bottom:554.640135px;}
.y76{bottom:556.620134px;}
.y2f{bottom:556.980134px;}
.y3{bottom:564.180131px;}
.y19{bottom:577.680126px;}
.y4e{bottom:578.040126px;}
.y58{bottom:579.660125px;}
.y75{bottom:585.240123px;}
.y99{bottom:585.420123px;}
.y3c{bottom:588.480122px;}
.yc{bottom:595.140119px;}
.y2e{bottom:596.400118px;}
.y87{bottom:597.840118px;}
.y74{bottom:607.200114px;}
.ya1{bottom:618.900109px;}
.y98{bottom:625.020107px;}
.y18{bottom:627.900106px;}
.y4d{bottom:628.440106px;}
.y73{bottom:629.160105px;}
.y2d{bottom:636.000103px;}
.y86{bottom:641.040101px;}
.y2{bottom:643.380100px;}
.y57{bottom:644.460099px;}
.yb{bottom:645.540099px;}
.y72{bottom:651.120097px;}
.y3b{bottom:664.080091px;}
.y97{bottom:664.620091px;}
.y71{bottom:673.080088px;}
.y2c{bottom:675.600087px;}
.y56{bottom:676.860086px;}
.y17{bottom:678.300086px;}
.y4c{bottom:678.840085px;}
.ya0{bottom:683.700084px;}
.y85{bottom:684.240083px;}
.y70{bottom:695.040079px;}
.y96{bottom:704.220075px;}
.y55{bottom:709.260073px;}
.y6f{bottom:717.000070px;}
.y1{bottom:722.400068px;}
.y1f{bottom:726.720066px;}
.y6e{bottom:738.960061px;}
.y54{bottom:741.660060px;}
.y95{bottom:753.900055px;}
.ya{bottom:766.320050px;}
.y47{bottom:769.380049px;}
.y9e{bottom:774.420047px;}
.y21{bottom:776.400046px;}
.y68{bottom:776.760046px;}
.y4a{bottom:777.840046px;}
.y84{bottom:793.500040px;}
.y9c{bottom:795.840039px;}
.y6c{bottom:803.940035px;}
.y1e{bottom:805.920035px;}
.y44{bottom:812.760032px;}
.y93{bottom:815.280000px;}
.y46{bottom:819.780029px;}
.y67{bottom:827.160026px;}
.y49{bottom:828.240026px;}
.y9d{bottom:832.020024px;}
.y20{bottom:833.820023px;}
.h8{height:41.551858px;}
.ha{height:42.665608px;}
.hd{height:51.679667px;}
.h7{height:58.573102px;}
.hc{height:60.465210px;}
.h3{height:63.635600px;}
.h5{height:65.554427px;}
.h10{height:66.583098px;}
.hf{height:75.093720px;}
.h12{height:77.220000px;}
.he{height:77.519500px;}
.h9{height:94.573790px;}
.hb{height:103.359334px;}
.h4{height:120.413624px;}
.h2{height:133.333540px;}
.h14{height:133.666822px;}
.h6{height:137.984710px;}
.h11{height:150.187440px;}
.h15{height:155.039000px;}
.h13{height:172.093291px;}
.h1{height:189.664377px;}
.h0{height:892.500000px;}
.w1{width:320.040000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x33{left:37.065885px;}
.x28{left:40.305884px;}
.x44{left:57.405877px;}
.x22{left:64.605874px;}
.x1e{left:67.665873px;}
.x18{left:68.925872px;}
.x7{left:74.325870px;}
.x1b{left:78.645869px;}
.x30{left:82.785867px;}
.x1a{left:86.926722px;}
.x1{left:91.605863px;}
.x11{left:93.766280px;}
.x1c{left:95.745862px;}
.x13{left:103.125859px;}
.x12{left:106.365857px;}
.x3f{left:108.345857px;}
.x15{left:117.165853px;}
.x1d{left:121.125852px;}
.x6{left:124.725850px;}
.x37{left:127.245849px;}
.x42{left:129.405848px;}
.x8{left:132.285847px;}
.x40{left:136.965845px;}
.xe{left:143.985842px;}
.x9{left:150.826440px;}
.x19{left:158.026437px;}
.x45{left:159.466436px;}
.x41{left:162.346435px;}
.x10{left:176.926429px;}
.x16{left:178.006429px;}
.x38{left:183.586427px;}
.x17{left:200.146519px;}
.x3e{left:201.766419px;}
.xc{left:204.466418px;}
.x31{left:206.806417px;}
.x2c{left:210.046416px;}
.x1f{left:216.886413px;}
.x34{left:219.046412px;}
.x2e{left:227.506409px;}
.x25{left:235.966406px;}
.xa{left:239.566404px;}
.xb{left:251.086400px;}
.x3a{left:260.626396px;}
.x35{left:273.046391px;}
.x2f{left:274.666390px;}
.x23{left:296.085525px;}
.x4c{left:326.686369px;}
.x3c{left:328.486369px;}
.xf{left:344.504987px;}
.x14{left:345.767139px;}
.x49{left:363.224061px;}
.x29{left:367.006353px;}
.x20{left:377.806349px;}
.x2b{left:380.864763px;}
.x2d{left:382.486347px;}
.xd{left:399.766147px;}
.x27{left:445.846322px;}
.x46{left:449.086320px;}
.x47{left:459.526316px;}
.x48{left:473.026311px;}
.x26{left:495.346302px;}
.x36{left:516.586293px;}
.x32{left:525.046290px;}
.x2a{left:560.506276px;}
.x3{left:621.345841px;}
.x39{left:622.786251px;}
.x4b{left:635.746246px;}
.x4{left:674.805957px;}
.x3b{left:682.366227px;}
.x43{left:692.086223px;}
.x2{left:713.506215px;}
.x5{left:735.646226px;}
.x3d{left:741.946203px;}
.x21{left:763.546195px;}
.x24{left:773.086191px;}
.x4a{left:996.826101px;}
@media print{
.v1{vertical-align:-3.199999pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.060907pt;}
.lsa{letter-spacing:84.027734pt;}
.lse{letter-spacing:84.028648pt;}
.lsb{letter-spacing:84.028973pt;}
.lsc{letter-spacing:84.029159pt;}
.ls10{letter-spacing:84.029936pt;}
.ls6{letter-spacing:84.030006pt;}
.ls2{letter-spacing:84.030179pt;}
.ls7{letter-spacing:84.030249pt;}
.ls11{letter-spacing:84.030438pt;}
.ls3{letter-spacing:84.030942pt;}
.ls5{letter-spacing:84.031309pt;}
.ls9{letter-spacing:84.031490pt;}
.lsd{letter-spacing:84.031506pt;}
.ls8{letter-spacing:84.032560pt;}
.lsf{letter-spacing:84.032618pt;}
.ls4{letter-spacing:84.032786pt;}
.ws0{word-spacing:-53.082859pt;}
.ws9{word-spacing:-43.391983pt;}
.ws5{word-spacing:-38.618865pt;}
.ws4{word-spacing:-28.927988pt;}
.ws2{word-spacing:-19.237112pt;}
.ws8{word-spacing:-17.791993pt;}
.ws6{word-spacing:-16.922873pt;}
.ws7{word-spacing:-14.463994pt;}
.ws3{word-spacing:-12.005115pt;}
.ws1{word-spacing:0.000000pt;}
._1c{margin-left:-21.120824pt;}
._34{margin-left:-19.225014pt;}
._1d{margin-left:-15.667873pt;}
._2a{margin-left:-13.641112pt;}
._e{margin-left:-12.499924pt;}
._26{margin-left:-10.343350pt;}
._33{margin-left:-8.781983pt;}
._1e{margin-left:-6.362117pt;}
._1f{margin-left:-5.084780pt;}
._2{margin-left:-3.867185pt;}
._0{margin-left:-2.123488pt;}
._1{margin-left:-1.221774pt;}
._3{width:1.018157pt;}
._5{width:2.008715pt;}
._4{width:3.296284pt;}
._8{width:4.928754pt;}
._f{width:6.770723pt;}
._10{width:7.877389pt;}
._22{width:8.925704pt;}
._6{width:10.120453pt;}
._7{width:11.233255pt;}
._12{width:12.308973pt;}
._16{width:13.280702pt;}
._15{width:14.171198pt;}
._29{width:15.369331pt;}
._20{width:16.823730pt;}
._21{width:18.451103pt;}
._36{width:19.541355pt;}
._11{width:20.508613pt;}
._25{width:22.632211pt;}
._23{width:23.630985pt;}
._24{width:24.939002pt;}
._3a{width:29.311613pt;}
._28{width:30.462475pt;}
._13{width:32.170575pt;}
._31{width:33.175137pt;}
._32{width:34.165922pt;}
._37{width:37.983445pt;}
._18{width:44.174163pt;}
._17{width:45.579524pt;}
._2f{width:51.435845pt;}
._d{width:59.958002pt;}
._38{width:62.823268pt;}
._39{width:64.005845pt;}
._30{width:66.728127pt;}
._2c{width:67.900141pt;}
._2b{width:68.995774pt;}
._c{width:70.290877pt;}
._b{width:71.350427pt;}
._2e{width:72.334757pt;}
._2d{width:73.265772pt;}
._27{width:80.518983pt;}
._19{width:85.136472pt;}
._1a{width:86.141925pt;}
._a{width:87.491468pt;}
._9{width:89.122508pt;}
._1b{width:94.229157pt;}
._35{width:103.798384pt;}
._14{width:109.687111pt;}
.fs9{font-size:52.479979pt;}
.fs7{font-size:53.119979pt;}
.fsb{font-size:63.999974pt;}
.fs2{font-size:69.119972pt;}
.fs6{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fsc{font-size:95.999962pt;}
.fs8{font-size:117.119953pt;}
.fsa{font-size:127.999949pt;}
.fs3{font-size:149.119940pt;}
.fs1{font-size:165.119934pt;}
.fs5{font-size:170.879932pt;}
.fse{font-size:191.999923pt;}
.fsd{font-size:213.119915pt;}
.fs0{font-size:234.879906pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:15.840021pt;}
.y83{bottom:82.293618pt;}
.y6d{bottom:86.933616pt;}
.y92{bottom:88.693615pt;}
.y4b{bottom:91.093614pt;}
.y48{bottom:92.373614pt;}
.y65{bottom:93.653613pt;}
.y45{bottom:94.613613pt;}
.y66{bottom:98.453611pt;}
.y9{bottom:99.413611pt;}
.y9f{bottom:100.693610pt;}
.y8{bottom:120.213603pt;}
.y64{bottom:130.133599pt;}
.y2b{bottom:139.253595pt;}
.y7{bottom:141.013594pt;}
.y6{bottom:161.813586pt;}
.y91{bottom:174.613581pt;}
.y9b{bottom:183.093577pt;}
.y3a{bottom:184.693577pt;}
.y16{bottom:186.773576pt;}
.y2a{bottom:190.453574pt;}
.y39{bottom:192.053574pt;}
.y6b{bottom:194.453573pt;}
.y63{bottom:197.973571pt;}
.y90{bottom:203.413569pt;}
.y9a{bottom:205.813568pt;}
.y15{bottom:212.213566pt;}
.y38{bottom:219.893563pt;}
.y6a{bottom:223.253561pt;}
.y62{bottom:226.773560pt;}
.y37{bottom:227.253560pt;}
.y8f{bottom:232.213558pt;}
.y14{bottom:237.813556pt;}
.y29{bottom:240.533554pt;}
.y69{bottom:252.053550pt;}
.y43{bottom:254.293549pt;}
.y82{bottom:254.613549pt;}
.y36{bottom:255.093549pt;}
.y61{bottom:255.573548pt;}
.y28{bottom:257.653548pt;}
.y12{bottom:260.373547pt;}
.y8e{bottom:261.013546pt;}
.y13{bottom:263.413545pt;}
.y81{bottom:274.133541pt;}
.y27{bottom:278.933539pt;}
.y60{bottom:284.373537pt;}
.y53{bottom:289.813535pt;}
.y35{bottom:290.293535pt;}
.y42{bottom:292.693534pt;}
.y80{bottom:293.653533pt;}
.y34{bottom:297.653532pt;}
.y5{bottom:299.573531pt;}
.y11{bottom:305.173529pt;}
.ya4{bottom:309.173527pt;}
.y5f{bottom:313.173525pt;}
.y7f{bottom:319.253523pt;}
.y26{bottom:323.733521pt;}
.y33{bottom:325.493520pt;}
.y41{bottom:331.093518pt;}
.y32{bottom:332.853518pt;}
.y1d{bottom:334.293517pt;}
.y52{bottom:334.613517pt;}
.y7e{bottom:338.773515pt;}
.y25{bottom:340.693514pt;}
.y5e{bottom:341.973514pt;}
.y10{bottom:349.973511pt;}
.y7d{bottom:358.133507pt;}
.y31{bottom:360.693506pt;}
.y40{bottom:369.493503pt;}
.y5d{bottom:370.773502pt;}
.y7c{bottom:377.653500pt;}
.y8d{bottom:377.813500pt;}
.y1c{bottom:379.093499pt;}
.y51{bottom:379.413499pt;}
.y8c{bottom:379.733499pt;}
.yf{bottom:394.773493pt;}
.y30{bottom:395.893492pt;}
.y7b{bottom:397.173492pt;}
.y5c{bottom:399.573491pt;}
.y3f{bottom:407.893488pt;}
.y8b{bottom:416.213484pt;}
.y7a{bottom:416.693484pt;}
.y8a{bottom:418.133483pt;}
.y24{bottom:419.733483pt;}
.y1b{bottom:423.893481pt;}
.y50{bottom:424.213481pt;}
.y5b{bottom:428.373479pt;}
.y4{bottom:431.093478pt;}
.ya3{bottom:434.933477pt;}
.y79{bottom:436.213476pt;}
.y23{bottom:436.693476pt;}
.ye{bottom:439.573475pt;}
.y3e{bottom:446.293472pt;}
.y89{bottom:454.613469pt;}
.y78{bottom:455.733468pt;}
.y5a{bottom:457.173468pt;}
.y1a{bottom:468.693463pt;}
.y4f{bottom:469.013463pt;}
.y77{bottom:475.253461pt;}
.yd{bottom:484.213457pt;}
.y3d{bottom:484.693457pt;}
.y59{bottom:486.453456pt;}
.y22{bottom:487.893456pt;}
.ya2{bottom:492.533454pt;}
.y88{bottom:493.013453pt;}
.y76{bottom:494.773453pt;}
.y2f{bottom:495.093453pt;}
.y3{bottom:501.493450pt;}
.y19{bottom:513.493445pt;}
.y4e{bottom:513.813445pt;}
.y58{bottom:515.253445pt;}
.y75{bottom:520.213443pt;}
.y99{bottom:520.373443pt;}
.y3c{bottom:523.093441pt;}
.yc{bottom:529.013439pt;}
.y2e{bottom:530.133439pt;}
.y87{bottom:531.413438pt;}
.y74{bottom:539.733435pt;}
.ya1{bottom:550.133431pt;}
.y98{bottom:555.573428pt;}
.y18{bottom:558.133427pt;}
.y4d{bottom:558.613427pt;}
.y73{bottom:559.253427pt;}
.y2d{bottom:565.333425pt;}
.y86{bottom:569.813423pt;}
.y2{bottom:571.893422pt;}
.y57{bottom:572.853422pt;}
.yb{bottom:573.813421pt;}
.y72{bottom:578.773419pt;}
.y3b{bottom:590.293415pt;}
.y97{bottom:590.773414pt;}
.y71{bottom:598.293411pt;}
.y2c{bottom:600.533410pt;}
.y56{bottom:601.653410pt;}
.y17{bottom:602.933409pt;}
.y4c{bottom:603.413409pt;}
.ya0{bottom:607.733408pt;}
.y85{bottom:608.213407pt;}
.y70{bottom:617.813404pt;}
.y96{bottom:625.973400pt;}
.y55{bottom:630.453398pt;}
.y6f{bottom:637.333396pt;}
.y1{bottom:642.133394pt;}
.y1f{bottom:645.973392pt;}
.y6e{bottom:656.853388pt;}
.y54{bottom:659.253387pt;}
.y95{bottom:670.133383pt;}
.ya{bottom:681.173378pt;}
.y47{bottom:683.893377pt;}
.y9e{bottom:688.373375pt;}
.y21{bottom:690.133375pt;}
.y68{bottom:690.453374pt;}
.y4a{bottom:691.413374pt;}
.y84{bottom:705.333369pt;}
.y9c{bottom:707.413368pt;}
.y6c{bottom:714.613365pt;}
.y1e{bottom:716.373364pt;}
.y44{bottom:722.453362pt;}
.y93{bottom:724.693333pt;}
.y46{bottom:728.693359pt;}
.y67{bottom:735.253357pt;}
.y49{bottom:736.213356pt;}
.y9d{bottom:739.573355pt;}
.y20{bottom:741.173354pt;}
.h8{height:36.934985pt;}
.ha{height:37.924985pt;}
.hd{height:45.937482pt;}
.h7{height:52.064979pt;}
.hc{height:53.746854pt;}
.h3{height:56.564977pt;}
.h5{height:58.270602pt;}
.h10{height:59.184976pt;}
.hf{height:66.749973pt;}
.h12{height:68.640000pt;}
.he{height:68.906222pt;}
.h9{height:84.065591pt;}
.hb{height:91.874963pt;}
.h4{height:107.034332pt;}
.h2{height:118.518703pt;}
.h14{height:118.814952pt;}
.h6{height:122.653076pt;}
.h11{height:133.499947pt;}
.h15{height:137.812445pt;}
.h13{height:152.971814pt;}
.h1{height:168.590558pt;}
.h0{height:793.333333pt;}
.w1{width:284.480000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x33{left:32.947453pt;}
.x28{left:35.827452pt;}
.x44{left:51.027446pt;}
.x22{left:57.427444pt;}
.x1e{left:60.147443pt;}
.x18{left:61.267442pt;}
.x7{left:66.067440pt;}
.x1b{left:69.907439pt;}
.x30{left:73.587437pt;}
.x1a{left:77.268197pt;}
.x1{left:81.427434pt;}
.x11{left:83.347805pt;}
.x1c{left:85.107433pt;}
.x13{left:91.667430pt;}
.x12{left:94.547429pt;}
.x3f{left:96.307428pt;}
.x15{left:104.147425pt;}
.x1d{left:107.667424pt;}
.x6{left:110.867422pt;}
.x37{left:113.107421pt;}
.x42{left:115.027421pt;}
.x8{left:117.587420pt;}
.x40{left:121.747418pt;}
.xe{left:127.987415pt;}
.x9{left:134.067946pt;}
.x19{left:140.467944pt;}
.x45{left:141.747943pt;}
.x41{left:144.307942pt;}
.x10{left:157.267937pt;}
.x16{left:158.227937pt;}
.x38{left:163.187935pt;}
.x17{left:177.908017pt;}
.x3e{left:179.347928pt;}
.xc{left:181.747927pt;}
.x31{left:183.827926pt;}
.x2c{left:186.707925pt;}
.x1f{left:192.787923pt;}
.x34{left:194.707922pt;}
.x2e{left:202.227919pt;}
.x25{left:209.747916pt;}
.xa{left:212.947915pt;}
.xb{left:223.187911pt;}
.x3a{left:231.667907pt;}
.x35{left:242.707903pt;}
.x2f{left:244.147902pt;}
.x23{left:263.187134pt;}
.x4c{left:290.387884pt;}
.x3c{left:291.987883pt;}
.xf{left:306.226655pt;}
.x14{left:307.348568pt;}
.x49{left:322.865832pt;}
.x29{left:326.227870pt;}
.x20{left:335.827866pt;}
.x2b{left:338.546456pt;}
.x2d{left:339.987864pt;}
.xd{left:355.347686pt;}
.x27{left:396.307841pt;}
.x46{left:399.187840pt;}
.x47{left:408.467837pt;}
.x48{left:420.467832pt;}
.x26{left:440.307824pt;}
.x36{left:459.187816pt;}
.x32{left:466.707813pt;}
.x2a{left:498.227801pt;}
.x3{left:552.307414pt;}
.x39{left:553.587779pt;}
.x4b{left:565.107774pt;}
.x4{left:599.827517pt;}
.x3b{left:606.547757pt;}
.x43{left:615.187754pt;}
.x2{left:634.227746pt;}
.x5{left:653.907756pt;}
.x3d{left:659.507736pt;}
.x21{left:678.707729pt;}
.x24{left:687.187725pt;}
.x4a{left:886.067646pt;}
}




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