
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_453154cfc026c02151d4331e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.987000;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_d995389c5d76d67ef4add952.woff')format("woff");}.ff3{font-family:ff3;line-height:1.034000;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_53242fbe710f4ce27f5222d2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.194000;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_4d86ca1d35c9b7d4612546ae.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_56fb37e06e805887f2668e83.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758000;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_180710ec120772e923146e7f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.997000;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_ed9790b9cdee058aca5be64b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.719000;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_0da508e122cf1a10a2d44d1e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.088000;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_fbe7ca5a815a1d4dbd40a9c1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.074500;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_eb4c55eefa489f5f5da26cc5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.997000;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_9b4ebeabe34d33cefa5948cd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.724000;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7e7613ad0230586a428bb4ea.woff')format("woff");}.ff10{font-family:ff10;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6a0183806f3cf4c94af5e5c2.woff')format("woff");}.ff11{font-family:ff11;line-height:0.997000;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;}
.ff12{font-family:sans-serif;visibility:hidden;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-179.164845px;}
.ws0{word-spacing:-124.671461px;}
.ws4{word-spacing:-47.193974px;}
.ws9{word-spacing:-35.364597px;}
.wsb{word-spacing:-34.071478px;}
.wsc{word-spacing:-27.980819px;}
.ws11{word-spacing:-22.895999px;}
.ws2{word-spacing:-21.590953px;}
.wsd{word-spacing:-20.348819px;}
.wse{word-spacing:-17.975542px;}
.ws10{word-spacing:-17.801639px;}
.wsf{word-spacing:-16.595999px;}
.ws12{word-spacing:-15.206084px;}
.ws7{word-spacing:-13.830038px;}
.ws5{word-spacing:-13.829979px;}
.ws6{word-spacing:-13.826542px;}
.ws3{word-spacing:-13.289297px;}
.wsa{word-spacing:-12.446999px;}
.ws8{word-spacing:-11.064030px;}
.ws13{word-spacing:0.000000px;}
._a{margin-left:-12.066293px;}
._9{margin-left:-9.842133px;}
._8{margin-left:-7.049772px;}
._7{margin-left:-4.358119px;}
._3{margin-left:-2.990582px;}
._1{margin-left:-1.359245px;}
._5{width:1.029996px;}
._4{width:2.135920px;}
._6{width:4.338664px;}
._b{width:7.838550px;}
._0{width:12.306706px;}
._2{width:15.244242px;}
.fc4{color:transparent;}
.fc2{color:rgb(254,230,224);}
.fc1{color:rgb(58,161,126);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs15{font-size:44.400009px;}
.fsd{font-size:44.603174px;}
.fsb{font-size:48.000131px;}
.fs3{font-size:49.772646px;}
.fs10{font-size:53.999998px;}
.fs4{font-size:54.090000px;}
.fs9{font-size:59.984997px;}
.fs8{font-size:59.999907px;}
.fsa{font-size:60.000164px;}
.fs1a{font-size:65.969996px;}
.fs5{font-size:68.984997px;}
.fs12{font-size:71.999997px;}
.fs17{font-size:77.984997px;}
.fs2{font-size:80.864992px;}
.fs19{font-size:83.969997px;}
.fs16{font-size:95.984996px;}
.fs1b{font-size:101.969996px;}
.fs14{font-size:107.999996px;}
.fs18{font-size:113.984995px;}
.fsc{font-size:119.879991px;}
.fs11{font-size:119.969995px;}
.fs7{font-size:121.948253px;}
.fs6{font-size:121.951016px;}
.fs13{font-size:131.984995px;}
.fse{font-size:149.985003px;}
.fsf{font-size:161.999993px;}
.fs0{font-size:197.577592px;}
.fs1{font-size:283.937947px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000008px;}
.y2c{bottom:2.854401px;}
.y56{bottom:2.937712px;}
.y29{bottom:3.223025px;}
.y1d{bottom:4.023474px;}
.ya{bottom:5.402415px;}
.y4{bottom:16.405570px;}
.y3f{bottom:16.722611px;}
.y28{bottom:17.223063px;}
.y9{bottom:19.919437px;}
.y1c{bottom:22.023446px;}
.y27{bottom:31.223102px;}
.y8{bottom:34.436459px;}
.y3e{bottom:34.722611px;}
.y1b{bottom:40.023418px;}
.y26{bottom:47.223145px;}
.y3d{bottom:52.722610px;}
.y1a{bottom:58.023390px;}
.yf{bottom:62.829553px;}
.y11{bottom:63.254418px;}
.y3c{bottom:70.722609px;}
.y19{bottom:76.023362px;}
.y32{bottom:92.772608px;}
.y18{bottom:94.023335px;}
.y31{bottom:110.772607px;}
.y17{bottom:112.023307px;}
.y2{bottom:116.714789px;}
.y30{bottom:128.772607px;}
.y16{bottom:130.023279px;}
.y15{bottom:148.023251px;}
.y2f{bottom:160.746689px;}
.y14{bottom:166.023223px;}
.y13{bottom:184.023195px;}
.y37{bottom:199.016524px;}
.y36{bottom:219.266523px;}
.y35{bottom:239.516522px;}
.y34{bottom:259.766521px;}
.y33{bottom:287.891700px;}
.y46{bottom:326.141518px;}
.y45{bottom:346.391518px;}
.y44{bottom:366.641517px;}
.y43{bottom:386.891516px;}
.y42{bottom:407.141515px;}
.y41{bottom:427.391514px;}
.y40{bottom:447.641513px;}
.y52{bottom:475.509868px;}
.y51{bottom:529.089926px;}
.y7{bottom:556.739984px;}
.y50{bottom:558.339925px;}
.y4f{bottom:587.589924px;}
.y4e{bottom:616.839922px;}
.y3{bottom:639.899981px;}
.y4d{bottom:646.089921px;}
.y4c{bottom:675.339920px;}
.y4b{bottom:704.589919px;}
.yb{bottom:717.266202px;}
.y4a{bottom:733.839917px;}
.y6{bottom:735.120689px;}
.yd{bottom:737.746853px;}
.yc{bottom:761.371852px;}
.y49{bottom:763.089916px;}
.y55{bottom:777.419975px;}
.y12{bottom:803.699974px;}
.y48{bottom:829.345033px;}
.y2b{bottom:885.779971px;}
.y24{bottom:885.973139px;}
.y23{bottom:902.848138px;}
.y22{bottom:919.723138px;}
.y8a{bottom:920.158738px;}
.y21{bottom:936.598137px;}
.y25{bottom:940.499968px;}
.y89{bottom:942.658737px;}
.y20{bottom:953.473136px;}
.y88{bottom:965.158736px;}
.y1f{bottom:970.348136px;}
.y1e{bottom:987.223135px;}
.y87{bottom:987.658735px;}
.y86{bottom:1010.158734px;}
.y10{bottom:1015.739965px;}
.ye{bottom:1016.099965px;}
.y85{bottom:1032.658733px;}
.y84{bottom:1055.158732px;}
.y83{bottom:1077.658731px;}
.y82{bottom:1100.158730px;}
.y81{bottom:1122.658729px;}
.y80{bottom:1145.158728px;}
.y7f{bottom:1167.658727px;}
.y7e{bottom:1190.158726px;}
.y2a{bottom:1199.223238px;}
.y7d{bottom:1212.658725px;}
.y7c{bottom:1235.158725px;}
.y54{bottom:1249.023800px;}
.y7b{bottom:1257.658724px;}
.y7a{bottom:1280.158723px;}
.y66{bottom:1294.858782px;}
.y79{bottom:1302.658722px;}
.y65{bottom:1319.608781px;}
.y78{bottom:1325.158721px;}
.y64{bottom:1344.358780px;}
.y77{bottom:1347.658720px;}
.y63{bottom:1369.108779px;}
.y76{bottom:1370.158719px;}
.y75{bottom:1392.658718px;}
.y62{bottom:1393.858778px;}
.y74{bottom:1415.158717px;}
.y61{bottom:1418.608777px;}
.y73{bottom:1437.658716px;}
.y60{bottom:1443.358776px;}
.y72{bottom:1460.158715px;}
.y5f{bottom:1468.108775px;}
.y71{bottom:1482.658714px;}
.y5e{bottom:1492.858774px;}
.y70{bottom:1505.158713px;}
.y5d{bottom:1517.608773px;}
.y6f{bottom:1527.658712px;}
.y5c{bottom:1542.358772px;}
.y6e{bottom:1550.158711px;}
.y5b{bottom:1567.108771px;}
.y6d{bottom:1572.658710px;}
.y5a{bottom:1591.858770px;}
.y6c{bottom:1595.158710px;}
.y59{bottom:1616.608769px;}
.y8d{bottom:1634.130472px;}
.y58{bottom:1655.158827px;}
.y8c{bottom:1657.755471px;}
.y57{bottom:1678.783826px;}
.y8b{bottom:1681.380470px;}
.y53{bottom:1744.893575px;}
.y6b{bottom:1809.278025px;}
.y6a{bottom:1848.653023px;}
.y9f{bottom:1935.877995px;}
.y9e{bottom:1958.377994px;}
.y95{bottom:1970.684486px;}
.y9d{bottom:1980.877993px;}
.y94{bottom:1993.184485px;}
.y9c{bottom:2003.377993px;}
.y93{bottom:2015.684484px;}
.y9b{bottom:2025.877992px;}
.y92{bottom:2038.184483px;}
.y9a{bottom:2048.377991px;}
.y91{bottom:2060.684482px;}
.y99{bottom:2070.877990px;}
.y90{bottom:2083.184481px;}
.y98{bottom:2093.377989px;}
.y97{bottom:2115.877988px;}
.y8f{bottom:2119.934504px;}
.y96{bottom:2142.203023px;}
.y8e{bottom:2149.184502px;}
.y69{bottom:2202.659426px;}
.y68{bottom:2227.409425px;}
.y67{bottom:2252.159424px;}
.y2d{bottom:2310.734435px;}
.y47{bottom:2384.137870px;}
.y3b{bottom:2417.357383px;}
.y3a{bottom:2442.107382px;}
.y39{bottom:2466.857381px;}
.y38{bottom:2491.607380px;}
.y1{bottom:2557.979901px;}
.ya1{bottom:2583.114239px;}
.ya0{bottom:2617.989238px;}
.y2e{bottom:2680.239226px;}
.h17{height:13.319999px;}
.h9{height:38.026302px;}
.h15{height:39.648109px;}
.h25{height:40.714809px;}
.h18{height:40.901110px;}
.h8{height:47.159998px;}
.h1c{height:48.788998px;}
.h12{height:49.547608px;}
.h11{height:49.559923px;}
.h14{height:49.560136px;}
.ha{height:50.520060px;}
.h1e{height:54.196445px;}
.h1b{height:55.006242px;}
.h23{height:59.471998px;}
.h2b{height:59.603892px;}
.h13{height:60.479997px;}
.h7{height:61.780854px;}
.hb{height:62.983302px;}
.h1f{height:65.051997px;}
.h20{height:68.399997px;}
.h27{height:70.459445px;}
.h28{height:74.085747px;}
.h2a{height:77.000487px;}
.h4{height:83.879997px;}
.h2c{height:84.227216px;}
.h16{height:85.354553px;}
.h26{height:88.018241px;}
.hf{height:91.095345px;}
.hd{height:91.097409px;}
.h24{height:99.035996px;}
.h21{height:99.095216px;}
.h29{height:104.524241px;}
.h1d{height:110.012485px;}
.h22{height:121.030240px;}
.h19{height:137.536248px;}
.hc{height:146.879994px;}
.he{height:147.599994px;}
.h1a{height:148.553994px;}
.h3{height:163.199091px;}
.h10{height:197.279992px;}
.h2{height:228.239990px;}
.h5{height:234.532744px;}
.h6{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.wa{width:105.839996px;}
.w9{width:124.199995px;}
.w8{width:128.159995px;}
.w7{width:138.599994px;}
.w5{width:146.879994px;}
.w6{width:147.599994px;}
.w2{width:151.919994px;}
.w4{width:172.439993px;}
.w1{width:233.999990px;}
.w3{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x6{left:5.749761px;}
.x15{left:13.664675px;}
.x16{left:15.461555px;}
.x11{left:16.752188px;}
.x1b{left:25.015868px;}
.x1a{left:26.683246px;}
.x1{left:28.079999px;}
.x1c{left:30.411361px;}
.x2{left:37.478862px;}
.xb{left:40.319998px;}
.x7{left:43.387085px;}
.xe{left:45.404295px;}
.x10{left:47.879998px;}
.xc{left:49.666045px;}
.x3c{left:54.056566px;}
.x5{left:57.239998px;}
.x26{left:63.359997px;}
.x2c{left:66.363044px;}
.x27{left:68.300747px;}
.x29{left:70.036872px;}
.x3{left:75.959997px;}
.x2b{left:84.327887px;}
.x4{left:87.563351px;}
.x30{left:90.589809px;}
.x31{left:97.972621px;}
.x2f{left:117.480229px;}
.x1d{left:148.379939px;}
.x1e{left:166.379938px;}
.x3b{left:195.612495px;}
.x17{left:212.432675px;}
.xd{left:224.999991px;}
.x12{left:231.041876px;}
.x28{left:241.357381px;}
.x13{left:250.676641px;}
.x19{left:290.978493px;}
.x9{left:301.776534px;}
.x1f{left:334.321343px;}
.x20{left:352.321342px;}
.x2a{left:353.920817px;}
.x8{left:357.429866px;}
.xa{left:359.784344px;}
.x2d{left:367.036157px;}
.x25{left:371.113797px;}
.x2e{left:386.530178px;}
.x3d{left:392.581917px;}
.x3e{left:408.525276px;}
.xf{left:416.159983px;}
.x14{left:421.199982px;}
.x18{left:440.279982px;}
.x21{left:443.657276px;}
.x22{left:461.657275px;}
.x3a{left:565.771703px;}
.x38{left:589.589535px;}
.x24{left:617.085809px;}
.x23{left:619.892758px;}
.x34{left:649.592392px;}
.x32{left:653.002549px;}
.x37{left:657.766895px;}
.x33{left:666.186142px;}
.x39{left:674.544610px;}
.x35{left:693.503222px;}
.x36{left:701.307909px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-159.257640pt;}
.ws0{word-spacing:-110.819076pt;}
.ws4{word-spacing:-41.950199pt;}
.ws9{word-spacing:-31.435198pt;}
.wsb{word-spacing:-30.285759pt;}
.wsc{word-spacing:-24.871839pt;}
.ws11{word-spacing:-20.351999pt;}
.ws2{word-spacing:-19.191958pt;}
.wsd{word-spacing:-18.087839pt;}
.wse{word-spacing:-15.978259pt;}
.ws10{word-spacing:-15.823679pt;}
.wsf{word-spacing:-14.751999pt;}
.ws12{word-spacing:-13.516519pt;}
.ws7{word-spacing:-12.293367pt;}
.ws5{word-spacing:-12.293314pt;}
.ws6{word-spacing:-12.290259pt;}
.ws3{word-spacing:-11.812708pt;}
.wsa{word-spacing:-11.064000pt;}
.ws8{word-spacing:-9.834694pt;}
.ws13{word-spacing:0.000000pt;}
._a{margin-left:-10.725594pt;}
._9{margin-left:-8.748563pt;}
._8{margin-left:-6.266464pt;}
._7{margin-left:-3.873883pt;}
._3{margin-left:-2.658295pt;}
._1{margin-left:-1.208217pt;}
._5{width:0.915552pt;}
._4{width:1.898596pt;}
._6{width:3.856591pt;}
._b{width:6.967600pt;}
._0{width:10.939294pt;}
._2{width:13.550437pt;}
.fs15{font-size:39.466675pt;}
.fsd{font-size:39.647266pt;}
.fsb{font-size:42.666784pt;}
.fs3{font-size:44.242352pt;}
.fs10{font-size:47.999998pt;}
.fs4{font-size:48.080000pt;}
.fs9{font-size:53.319997pt;}
.fs8{font-size:53.333251pt;}
.fsa{font-size:53.333479pt;}
.fs1a{font-size:58.639997pt;}
.fs5{font-size:61.319997pt;}
.fs12{font-size:63.999997pt;}
.fs17{font-size:69.319997pt;}
.fs2{font-size:71.879993pt;}
.fs19{font-size:74.639997pt;}
.fs16{font-size:85.319996pt;}
.fs1b{font-size:90.639996pt;}
.fs14{font-size:95.999996pt;}
.fs18{font-size:101.319996pt;}
.fsc{font-size:106.559992pt;}
.fs11{font-size:106.639996pt;}
.fs7{font-size:108.398447pt;}
.fs6{font-size:108.400903pt;}
.fs13{font-size:117.319995pt;}
.fse{font-size:133.320002pt;}
.fsf{font-size:143.999994pt;}
.fs0{font-size:175.624526pt;}
.fs1{font-size:252.389286pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000007pt;}
.y2c{bottom:2.537246pt;}
.y56{bottom:2.611299pt;}
.y29{bottom:2.864911pt;}
.y1d{bottom:3.576421pt;}
.ya{bottom:4.802146pt;}
.y4{bottom:14.582729pt;}
.y3f{bottom:14.864543pt;}
.y28{bottom:15.309390pt;}
.y9{bottom:17.706166pt;}
.y1c{bottom:19.576396pt;}
.y27{bottom:27.753868pt;}
.y8{bottom:30.610185pt;}
.y3e{bottom:30.864543pt;}
.y1b{bottom:35.576372pt;}
.y26{bottom:41.976129pt;}
.y3d{bottom:46.864542pt;}
.y1a{bottom:51.576347pt;}
.yf{bottom:55.848491pt;}
.y11{bottom:56.226149pt;}
.y3c{bottom:62.864541pt;}
.y19{bottom:67.576322pt;}
.y32{bottom:82.464541pt;}
.y18{bottom:83.576297pt;}
.y31{bottom:98.464540pt;}
.y17{bottom:99.576273pt;}
.y2{bottom:103.746479pt;}
.y30{bottom:114.464539pt;}
.y16{bottom:115.576248pt;}
.y15{bottom:131.576223pt;}
.y2f{bottom:142.885946pt;}
.y14{bottom:147.576198pt;}
.y13{bottom:163.576174pt;}
.y37{bottom:176.903577pt;}
.y36{bottom:194.903576pt;}
.y35{bottom:212.903575pt;}
.y34{bottom:230.903574pt;}
.y33{bottom:255.903733pt;}
.y46{bottom:289.903572pt;}
.y45{bottom:307.903571pt;}
.y44{bottom:325.903570pt;}
.y43{bottom:343.903570pt;}
.y42{bottom:361.903569pt;}
.y41{bottom:379.903568pt;}
.y40{bottom:397.903567pt;}
.y52{bottom:422.675438pt;}
.y51{bottom:470.302156pt;}
.y7{bottom:494.879986pt;}
.y50{bottom:496.302155pt;}
.y4f{bottom:522.302154pt;}
.y4e{bottom:548.302153pt;}
.y3{bottom:568.799983pt;}
.y4d{bottom:574.302152pt;}
.y4c{bottom:600.302151pt;}
.y4b{bottom:626.302150pt;}
.yb{bottom:637.569957pt;}
.y4a{bottom:652.302149pt;}
.y6{bottom:653.440613pt;}
.yd{bottom:655.774981pt;}
.yc{bottom:676.774980pt;}
.y49{bottom:678.302148pt;}
.y55{bottom:691.039978pt;}
.y12{bottom:714.399977pt;}
.y48{bottom:737.195585pt;}
.y2b{bottom:787.359974pt;}
.y24{bottom:787.531679pt;}
.y23{bottom:802.531679pt;}
.y22{bottom:817.531678pt;}
.y8a{bottom:817.918878pt;}
.y21{bottom:832.531677pt;}
.y25{bottom:835.999972pt;}
.y89{bottom:837.918877pt;}
.y20{bottom:847.531677pt;}
.y88{bottom:857.918876pt;}
.y1f{bottom:862.531676pt;}
.y1e{bottom:877.531675pt;}
.y87{bottom:877.918875pt;}
.y86{bottom:897.918875pt;}
.y10{bottom:902.879969pt;}
.ye{bottom:903.199969pt;}
.y85{bottom:917.918874pt;}
.y84{bottom:937.918873pt;}
.y83{bottom:957.918872pt;}
.y82{bottom:977.918871pt;}
.y81{bottom:997.918870pt;}
.y80{bottom:1017.918870pt;}
.y7f{bottom:1037.918869pt;}
.y7e{bottom:1057.918868pt;}
.y2a{bottom:1065.976212pt;}
.y7d{bottom:1077.918867pt;}
.y7c{bottom:1097.918866pt;}
.y54{bottom:1110.243378pt;}
.y7b{bottom:1117.918865pt;}
.y7a{bottom:1137.918865pt;}
.y66{bottom:1150.985584pt;}
.y79{bottom:1157.918864pt;}
.y65{bottom:1172.985583pt;}
.y78{bottom:1177.918863pt;}
.y64{bottom:1194.985582pt;}
.y77{bottom:1197.918862pt;}
.y63{bottom:1216.985581pt;}
.y76{bottom:1217.918861pt;}
.y75{bottom:1237.918860pt;}
.y62{bottom:1238.985580pt;}
.y74{bottom:1257.918860pt;}
.y61{bottom:1260.985579pt;}
.y73{bottom:1277.918859pt;}
.y60{bottom:1282.985579pt;}
.y72{bottom:1297.918858pt;}
.y5f{bottom:1304.985578pt;}
.y71{bottom:1317.918857pt;}
.y5e{bottom:1326.985577pt;}
.y70{bottom:1337.918856pt;}
.y5d{bottom:1348.985576pt;}
.y6f{bottom:1357.918855pt;}
.y5c{bottom:1370.985575pt;}
.y6e{bottom:1377.918855pt;}
.y5b{bottom:1392.985574pt;}
.y6d{bottom:1397.918854pt;}
.y5a{bottom:1414.985573pt;}
.y6c{bottom:1417.918853pt;}
.y59{bottom:1436.985572pt;}
.y8d{bottom:1452.560419pt;}
.y58{bottom:1471.252291pt;}
.y8c{bottom:1473.560419pt;}
.y57{bottom:1492.252290pt;}
.y8b{bottom:1494.560418pt;}
.y53{bottom:1551.016511pt;}
.y6b{bottom:1608.247133pt;}
.y6a{bottom:1643.247132pt;}
.y9f{bottom:1720.780440pt;}
.y9e{bottom:1740.780439pt;}
.y95{bottom:1751.719543pt;}
.y9d{bottom:1760.780439pt;}
.y94{bottom:1771.719542pt;}
.y9c{bottom:1780.780438pt;}
.y93{bottom:1791.719541pt;}
.y9b{bottom:1800.780437pt;}
.y92{bottom:1811.719541pt;}
.y9a{bottom:1820.780436pt;}
.y91{bottom:1831.719540pt;}
.y99{bottom:1840.780435pt;}
.y90{bottom:1851.719539pt;}
.y98{bottom:1860.780434pt;}
.y97{bottom:1880.780434pt;}
.y8f{bottom:1884.386225pt;}
.y96{bottom:1904.180465pt;}
.y8e{bottom:1910.386224pt;}
.y69{bottom:1957.919490pt;}
.y68{bottom:1979.919489pt;}
.y67{bottom:2001.919488pt;}
.y2d{bottom:2053.986164pt;}
.y47{bottom:2119.233662pt;}
.y3b{bottom:2148.762118pt;}
.y3a{bottom:2170.762118pt;}
.y39{bottom:2192.762117pt;}
.y38{bottom:2214.762116pt;}
.y1{bottom:2273.759912pt;}
.ya1{bottom:2296.101546pt;}
.ya0{bottom:2327.101545pt;}
.y2e{bottom:2382.434867pt;}
.h17{height:11.840000pt;}
.h9{height:33.801157pt;}
.h15{height:35.242763pt;}
.h25{height:36.190941pt;}
.h18{height:36.356543pt;}
.h8{height:41.919998pt;}
.h1c{height:43.367998pt;}
.h12{height:44.042318pt;}
.h11{height:44.053265pt;}
.h14{height:44.053454pt;}
.ha{height:44.906720pt;}
.h1e{height:48.174618pt;}
.h1b{height:48.894438pt;}
.h23{height:52.863998pt;}
.h2b{height:52.981237pt;}
.h13{height:53.759998pt;}
.h7{height:54.916315pt;}
.hb{height:55.985157pt;}
.h1f{height:57.823998pt;}
.h20{height:60.799997pt;}
.h27{height:62.630617pt;}
.h28{height:65.853997pt;}
.h2a{height:68.444877pt;}
.h4{height:74.559997pt;}
.h2c{height:74.868637pt;}
.h16{height:75.870714pt;}
.h26{height:78.238437pt;}
.hf{height:80.973640pt;}
.hd{height:80.975474pt;}
.h24{height:88.031996pt;}
.h21{height:88.084636pt;}
.h29{height:92.910436pt;}
.h1d{height:97.788876pt;}
.h22{height:107.582436pt;}
.h19{height:122.254442pt;}
.hc{height:130.559995pt;}
.he{height:131.199995pt;}
.h1a{height:132.047994pt;}
.h3{height:145.065859pt;}
.h10{height:175.359993pt;}
.h2{height:202.879992pt;}
.h5{height:208.473551pt;}
.h6{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.wa{width:94.079996pt;}
.w9{width:110.399995pt;}
.w8{width:113.919995pt;}
.w7{width:123.199995pt;}
.w5{width:130.559995pt;}
.w6{width:131.199995pt;}
.w2{width:135.039994pt;}
.w4{width:153.279994pt;}
.w1{width:207.999991pt;}
.w3{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x6{left:5.110899pt;}
.x15{left:12.146378pt;}
.x16{left:13.743605pt;}
.x11{left:14.890834pt;}
.x1b{left:22.236327pt;}
.x1a{left:23.718441pt;}
.x1{left:24.959999pt;}
.x1c{left:27.032321pt;}
.x2{left:33.314544pt;}
.xb{left:35.839999pt;}
.x7{left:38.566298pt;}
.xe{left:40.359373pt;}
.x10{left:42.559998pt;}
.xc{left:44.147596pt;}
.x3c{left:48.050281pt;}
.x5{left:50.879998pt;}
.x26{left:56.319998pt;}
.x2c{left:58.989373pt;}
.x27{left:60.711775pt;}
.x29{left:62.254997pt;}
.x3{left:67.519997pt;}
.x2b{left:74.958122pt;}
.x4{left:77.834090pt;}
.x30{left:80.524274pt;}
.x31{left:87.086774pt;}
.x2f{left:104.426871pt;}
.x1d{left:131.893279pt;}
.x1e{left:147.893278pt;}
.x3b{left:173.877774pt;}
.x17{left:188.829044pt;}
.xd{left:199.999992pt;}
.x12{left:205.370556pt;}
.x28{left:214.539894pt;}
.x13{left:222.823681pt;}
.x19{left:258.647549pt;}
.x9{left:268.245808pt;}
.x1f{left:297.174527pt;}
.x20{left:313.174526pt;}
.x2a{left:314.596282pt;}
.x8{left:317.715436pt;}
.xa{left:319.808305pt;}
.x2d{left:326.254361pt;}
.x25{left:329.878930pt;}
.x2e{left:343.582381pt;}
.x3d{left:348.961704pt;}
.x3e{left:363.133578pt;}
.xf{left:369.919985pt;}
.x14{left:374.399984pt;}
.x18{left:391.359984pt;}
.x21{left:394.362023pt;}
.x22{left:410.362022pt;}
.x3a{left:502.908181pt;}
.x38{left:524.079587pt;}
.x24{left:548.520719pt;}
.x23{left:551.015785pt;}
.x34{left:577.415460pt;}
.x32{left:580.446710pt;}
.x37{left:584.681685pt;}
.x33{left:592.165459pt;}
.x39{left:599.595209pt;}
.x35{left:616.447308pt;}
.x36{left:623.384808pt;}
}




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