
    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_77807493399a77ff9a64544b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.966309;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_58f2e607165ddbb46bce16c2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_9e3aefd9337829ee75afc015.woff')format("woff");}.ff3{font-family:ff3;line-height:1.145508;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_20c33b18b29d29f4952351ef.woff')format("woff");}.ff4{font-family:ff4;line-height:1.145508;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_c5cd2ad11bd92e040b7c75ef.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_bdad92243a2fd6e9ff2bf564.woff')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_5afd99e5ffe03f15751c0d58.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_e21f4506b7469748585ae731.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_e204ed5533e426142ba19877.woff')format("woff");}.ff9{font-family:ff9;line-height:0.989258;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_8c11199bd834e9df10991661.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_eb3b09d9285104fa05333e46.woff')format("woff");}.ffb{font-family:ffb;line-height:0.989258;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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.550200px;}
.ls11{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.181200px;}
.lsc{letter-spacing:-0.175800px;}
.ls5{letter-spacing:-0.166800px;}
.ls14{letter-spacing:-0.158400px;}
.ls10{letter-spacing:-0.150000px;}
.lsd{letter-spacing:-0.100800px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.169800px;}
.ls4{letter-spacing:0.169920px;}
.lsa{letter-spacing:0.221760px;}
.ls13{letter-spacing:0.256200px;}
.ls15{letter-spacing:0.305400px;}
.ls16{letter-spacing:0.319800px;}
.ls9{letter-spacing:1.661760px;}
.ls12{letter-spacing:5.261760px;}
.ls7{letter-spacing:5.981760px;}
.ls3{letter-spacing:9.581760px;}
.ls2{letter-spacing:9.761760px;}
.ls8{letter-spacing:19.661760px;}
.ls0{letter-spacing:837.678720px;}
.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;}
}
.ws9{word-spacing:-20.258040px;}
.ws6{word-spacing:-20.108040px;}
.ws3{word-spacing:-19.938240px;}
.ws5{word-spacing:-19.837440px;}
.ws7{word-spacing:-19.788240px;}
.ws2{word-spacing:-19.771440px;}
.ws4{word-spacing:-19.762440px;}
.wsa{word-spacing:-19.722240px;}
.ws8{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.970240px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-10.172160px;}
._9{margin-left:-8.614080px;}
._13{margin-left:-7.299360px;}
._6{margin-left:-5.759040px;}
._a{margin-left:-4.504320px;}
._0{margin-left:-3.187440px;}
._1{margin-left:-2.180880px;}
._4{margin-left:-1.135440px;}
._3{width:1.038000px;}
._5{width:2.363040px;}
._b{width:3.461760px;}
._10{width:4.886400px;}
._12{width:5.948400px;}
._8{width:7.815360px;}
._7{width:9.538560px;}
._16{width:11.402640px;}
._e{width:12.519360px;}
._11{width:14.369040px;}
._c{width:16.096320px;}
._d{width:17.822880px;}
._f{width:21.196800px;}
._1c{width:23.820240px;}
._18{width:24.834960px;}
._17{width:26.226000px;}
._15{width:30.268560px;}
._14{width:31.397760px;}
._19{width:32.737440px;}
._1a{width:37.955520px;}
._1b{width:39.449280px;}
._1d{width:40.532160px;}
._1e{width:41.679600px;}
._1f{width:1146.041760px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,95,145);}
.fs4{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:167.760000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:57.456000px;}
.y11{bottom:77.616000px;}
.y90{bottom:98.136000px;}
.y5d{bottom:102.996000px;}
.y9b{bottom:106.956000px;}
.yb3{bottom:109.476000px;}
.ya9{bottom:112.896000px;}
.y7d{bottom:113.436000px;}
.y3c{bottom:113.976000px;}
.y5c{bottom:124.956000px;}
.yb2{bottom:131.616000px;}
.ya8{bottom:135.036000px;}
.y8f{bottom:135.216000px;}
.y3b{bottom:136.116000px;}
.y9a{bottom:143.136000px;}
.y5b{bottom:146.916000px;}
.y3a{bottom:158.070000px;}
.y24{bottom:158.790000px;}
.yb1{bottom:167.970000px;}
.ya7{bottom:168.150000px;}
.y8e{bottom:172.290000px;}
.y39{bottom:180.210000px;}
.y23{bottom:180.930000px;}
.y5a{bottom:183.270000px;}
.y22{bottom:201.990000px;}
.y38{bottom:202.170000px;}
.y8d{bottom:209.370000px;}
.y21{bottom:223.050000px;}
.y37{bottom:224.130000px;}
.y8c{bottom:246.270000px;}
.y4e{bottom:250.410000px;}
.y20{bottom:262.110000px;}
.y4d{bottom:272.550000px;}
.y36{bottom:276.150000px;}
.y8b{bottom:283.395000px;}
.y4c{bottom:294.555000px;}
.y6d{bottom:300.495000px;}
.y1f{bottom:302.115000px;}
.y10{bottom:304.275000px;}
.y6c{bottom:322.635000px;}
.y8a{bottom:323.535000px;}
.y35{bottom:328.755000px;}
.y4b{bottom:334.515000px;}
.y1e{bottom:342.075000px;}
.y6b{bottom:344.595000px;}
.yf{bottom:354.315000px;}
.y4a{bottom:356.655000px;}
.y89{bottom:363.675000px;}
.y49{bottom:378.615000px;}
.ye{bottom:383.655000px;}
.y6a{bottom:384.735000px;}
.y1d{bottom:385.095000px;}
.y48{bottom:400.755000px;}
.y88{bottom:403.635000px;}
.y69{bottom:406.695000px;}
.yd{bottom:410.295000px;}
.y47{bottom:422.715000px;}
.y68{bottom:428.655000px;}
.y1c{bottom:435.135000px;}
.yc{bottom:442.515000px;}
.y87{bottom:443.775000px;}
.y46{bottom:444.675000px;}
.y67{bottom:450.795000px;}
.y7c{bottom:457.635000px;}
.y86{bottom:465.735000px;}
.y45{bottom:466.815000px;}
.yb{bottom:474.555000px;}
.y1b{bottom:478.695000px;}
.y7b{bottom:479.775000px;}
.y85{bottom:487.695000px;}
.y66{bottom:490.755000px;}
.y7a{bottom:501.735000px;}
.ya{bottom:506.595000px;}
.y44{bottom:506.775000px;}
.y99{bottom:508.935000px;}
.y84{bottom:509.835000px;}
.y65{bottom:512.895000px;}
.y79{bottom:523.695000px;}
.y43{bottom:528.915000px;}
.y98{bottom:531.075000px;}
.y9{bottom:533.775000px;}
.y64{bottom:534.855000px;}
.yb0{bottom:538.995000px;}
.ya6{bottom:541.695000px;}
.y78{bottom:545.835000px;}
.y83{bottom:549.795000px;}
.y97{bottom:553.215000px;}
.y63{bottom:556.815000px;}
.yaf{bottom:561.135000px;}
.ya5{bottom:563.655000px;}
.y59{bottom:564.195000px;}
.y8{bottom:564.765000px;}
.y77{bottom:567.825000px;}
.y42{bottom:568.905000px;}
.y96{bottom:575.205000px;}
.y62{bottom:578.985000px;}
.yae{bottom:583.125000px;}
.ya4{bottom:585.825000px;}
.y82{bottom:586.185000px;}
.y76{bottom:589.965000px;}
.y95{bottom:597.345000px;}
.y61{bottom:600.945000px;}
.y58{bottom:604.185000px;}
.yad{bottom:605.085000px;}
.y41{bottom:605.265000px;}
.ya3{bottom:607.785000px;}
.y7{bottom:609.765000px;}
.y75{bottom:611.925000px;}
.yb4{bottom:617.325000px;}
.y57{bottom:626.145000px;}
.yac{bottom:627.225000px;}
.ya2{bottom:629.925000px;}
.y94{bottom:630.645000px;}
.y1a{bottom:635.505000px;}
.y56{bottom:648.285000px;}
.yab{bottom:649.185000px;}
.y74{bottom:651.885000px;}
.y60{bottom:652.965000px;}
.y6{bottom:662.505000px;}
.y55{bottom:670.245000px;}
.ya1{bottom:673.845000px;}
.y73{bottom:674.025000px;}
.y19{bottom:679.065000px;}
.yaa{bottom:682.485000px;}
.y54{bottom:692.385000px;}
.y72{bottom:695.985000px;}
.y5f{bottom:709.125000px;}
.y5{bottom:711.285000px;}
.ya0{bottom:713.985000px;}
.y53{bottom:714.345000px;}
.y71{bottom:718.125000px;}
.y9f{bottom:735.945000px;}
.y52{bottom:736.305000px;}
.y70{bottom:740.085000px;}
.y5e{bottom:745.485000px;}
.y9e{bottom:758.085000px;}
.y51{bottom:758.445000px;}
.y34{bottom:759.525000px;}
.y6f{bottom:762.045000px;}
.y4{bottom:773.205000px;}
.y9d{bottom:780.045000px;}
.y3{bottom:794.805000px;}
.y50{bottom:798.405000px;}
.y6e{bottom:798.585000px;}
.y33{bottom:799.665000px;}
.y9c{bottom:813.345000px;}
.y32{bottom:821.625000px;}
.y4f{bottom:834.765000px;}
.y31{bottom:843.585000px;}
.y18{bottom:864.150000px;}
.y30{bottom:865.770000px;}
.y2f{bottom:905.730000px;}
.y17{bottom:907.530000px;}
.y2e{bottom:927.870000px;}
.y2d{bottom:949.830000px;}
.y81{bottom:968.910000px;}
.y2c{bottom:971.790000px;}
.y40{bottom:990.870000px;}
.y2b{bottom:993.930000px;}
.y16{bottom:1011.030000px;}
.y80{bottom:1013.010000px;}
.y2a{bottom:1015.890000px;}
.y3f{bottom:1031.010000px;}
.y7f{bottom:1034.970000px;}
.y29{bottom:1038.030000px;}
.y2{bottom:1043.070000px;}
.y15{bottom:1050.990000px;}
.y3e{bottom:1052.970000px;}
.y7e{bottom:1056.930000px;}
.y93{bottom:1059.990000px;}
.y28{bottom:1074.750000px;}
.y3d{bottom:1074.930000px;}
.y92{bottom:1082.130000px;}
.y14{bottom:1091.130000px;}
.y27{bottom:1097.070000px;}
.y1{bottom:1105.890000px;}
.y26{bottom:1119.030000px;}
.y91{bottom:1134.000000px;}
.y13{bottom:1134.180000px;}
.y25{bottom:1141.200000px;}
.h6{height:45.177891px;}
.he{height:50.423906px;}
.hd{height:50.812031px;}
.hc{height:59.439023px;}
.hb{height:62.035312px;}
.h3{height:65.884219px;}
.h8{height:67.429688px;}
.h9{height:72.895430px;}
.h5{height:82.212891px;}
.h7{height:89.681484px;}
.ha{height:95.526211px;}
.h4{height:157.111172px;}
.h2{height:164.425781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:84.959987px;}
.x4{left:111.455987px;}
.x11{left:131.255987px;}
.x5{left:153.209987px;}
.x10{left:169.949987px;}
.x7{left:232.229987px;}
.x6{left:296.534987px;}
.xa{left:337.214987px;}
.x8{left:340.634987px;}
.xb{left:356.474987px;}
.x9{left:364.574987px;}
.x17{left:438.014987px;}
.xc{left:442.334987px;}
.x1{left:446.474987px;}
.xf{left:751.289987px;}
.xe{left:767.129987px;}
.xd{left:773.249987px;}
.x2{left:782.249987px;}
.x14{left:802.769987px;}
.x13{left:806.009987px;}
.x12{left:807.269987px;}
.x15{left:810.509987px;}
.x18{left:812.309987px;}
.x16{left:814.109987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.489067pt;}
.ls11{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.161067pt;}
.lsc{letter-spacing:-0.156267pt;}
.ls5{letter-spacing:-0.148267pt;}
.ls14{letter-spacing:-0.140800pt;}
.ls10{letter-spacing:-0.133333pt;}
.lsd{letter-spacing:-0.089600pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.150933pt;}
.ls4{letter-spacing:0.151040pt;}
.lsa{letter-spacing:0.197120pt;}
.ls13{letter-spacing:0.227733pt;}
.ls15{letter-spacing:0.271467pt;}
.ls16{letter-spacing:0.284267pt;}
.ls9{letter-spacing:1.477120pt;}
.ls12{letter-spacing:4.677120pt;}
.ls7{letter-spacing:5.317120pt;}
.ls3{letter-spacing:8.517120pt;}
.ls2{letter-spacing:8.677120pt;}
.ls8{letter-spacing:17.477120pt;}
.ls0{letter-spacing:744.603307pt;}
.ws9{word-spacing:-18.007147pt;}
.ws6{word-spacing:-17.873813pt;}
.ws3{word-spacing:-17.722880pt;}
.ws5{word-spacing:-17.633280pt;}
.ws7{word-spacing:-17.589547pt;}
.ws2{word-spacing:-17.574613pt;}
.ws4{word-spacing:-17.566613pt;}
.wsa{word-spacing:-17.530880pt;}
.ws8{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.306880pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-9.041920pt;}
._9{margin-left:-7.656960pt;}
._13{margin-left:-6.488320pt;}
._6{margin-left:-5.119147pt;}
._a{margin-left:-4.003840pt;}
._0{margin-left:-2.833280pt;}
._1{margin-left:-1.938560pt;}
._4{margin-left:-1.009280pt;}
._3{width:0.922667pt;}
._5{width:2.100480pt;}
._b{width:3.077120pt;}
._10{width:4.343467pt;}
._12{width:5.287467pt;}
._8{width:6.946987pt;}
._7{width:8.478720pt;}
._16{width:10.135680pt;}
._e{width:11.128320pt;}
._11{width:12.772480pt;}
._c{width:14.307840pt;}
._d{width:15.842560pt;}
._f{width:18.841600pt;}
._1c{width:21.173547pt;}
._18{width:22.075520pt;}
._17{width:23.312000pt;}
._15{width:26.905387pt;}
._14{width:27.909120pt;}
._19{width:29.099947pt;}
._1a{width:33.738240pt;}
._1b{width:35.066027pt;}
._1d{width:36.028587pt;}
._1e{width:37.048533pt;}
._1f{width:1018.703787pt;}
.fs4{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:149.120000pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:51.072000pt;}
.y11{bottom:68.992000pt;}
.y90{bottom:87.232000pt;}
.y5d{bottom:91.552000pt;}
.y9b{bottom:95.072000pt;}
.yb3{bottom:97.312000pt;}
.ya9{bottom:100.352000pt;}
.y7d{bottom:100.832000pt;}
.y3c{bottom:101.312000pt;}
.y5c{bottom:111.072000pt;}
.yb2{bottom:116.992000pt;}
.ya8{bottom:120.032000pt;}
.y8f{bottom:120.192000pt;}
.y3b{bottom:120.992000pt;}
.y9a{bottom:127.232000pt;}
.y5b{bottom:130.592000pt;}
.y3a{bottom:140.506667pt;}
.y24{bottom:141.146667pt;}
.yb1{bottom:149.306667pt;}
.ya7{bottom:149.466667pt;}
.y8e{bottom:153.146667pt;}
.y39{bottom:160.186667pt;}
.y23{bottom:160.826667pt;}
.y5a{bottom:162.906667pt;}
.y22{bottom:179.546667pt;}
.y38{bottom:179.706667pt;}
.y8d{bottom:186.106667pt;}
.y21{bottom:198.266667pt;}
.y37{bottom:199.226667pt;}
.y8c{bottom:218.906667pt;}
.y4e{bottom:222.586667pt;}
.y20{bottom:232.986667pt;}
.y4d{bottom:242.266667pt;}
.y36{bottom:245.466667pt;}
.y8b{bottom:251.906667pt;}
.y4c{bottom:261.826667pt;}
.y6d{bottom:267.106667pt;}
.y1f{bottom:268.546667pt;}
.y10{bottom:270.466667pt;}
.y6c{bottom:286.786667pt;}
.y8a{bottom:287.586667pt;}
.y35{bottom:292.226667pt;}
.y4b{bottom:297.346667pt;}
.y1e{bottom:304.066667pt;}
.y6b{bottom:306.306667pt;}
.yf{bottom:314.946667pt;}
.y4a{bottom:317.026667pt;}
.y89{bottom:323.266667pt;}
.y49{bottom:336.546667pt;}
.ye{bottom:341.026667pt;}
.y6a{bottom:341.986667pt;}
.y1d{bottom:342.306667pt;}
.y48{bottom:356.226667pt;}
.y88{bottom:358.786667pt;}
.y69{bottom:361.506667pt;}
.yd{bottom:364.706667pt;}
.y47{bottom:375.746667pt;}
.y68{bottom:381.026667pt;}
.y1c{bottom:386.786667pt;}
.yc{bottom:393.346667pt;}
.y87{bottom:394.466667pt;}
.y46{bottom:395.266667pt;}
.y67{bottom:400.706667pt;}
.y7c{bottom:406.786667pt;}
.y86{bottom:413.986667pt;}
.y45{bottom:414.946667pt;}
.yb{bottom:421.826667pt;}
.y1b{bottom:425.506667pt;}
.y7b{bottom:426.466667pt;}
.y85{bottom:433.506667pt;}
.y66{bottom:436.226667pt;}
.y7a{bottom:445.986667pt;}
.ya{bottom:450.306667pt;}
.y44{bottom:450.466667pt;}
.y99{bottom:452.386667pt;}
.y84{bottom:453.186667pt;}
.y65{bottom:455.906667pt;}
.y79{bottom:465.506667pt;}
.y43{bottom:470.146667pt;}
.y98{bottom:472.066667pt;}
.y9{bottom:474.466667pt;}
.y64{bottom:475.426667pt;}
.yb0{bottom:479.106667pt;}
.ya6{bottom:481.506667pt;}
.y78{bottom:485.186667pt;}
.y83{bottom:488.706667pt;}
.y97{bottom:491.746667pt;}
.y63{bottom:494.946667pt;}
.yaf{bottom:498.786667pt;}
.ya5{bottom:501.026667pt;}
.y59{bottom:501.506667pt;}
.y8{bottom:502.013333pt;}
.y77{bottom:504.733333pt;}
.y42{bottom:505.693333pt;}
.y96{bottom:511.293333pt;}
.y62{bottom:514.653333pt;}
.yae{bottom:518.333333pt;}
.ya4{bottom:520.733333pt;}
.y82{bottom:521.053333pt;}
.y76{bottom:524.413333pt;}
.y95{bottom:530.973333pt;}
.y61{bottom:534.173333pt;}
.y58{bottom:537.053333pt;}
.yad{bottom:537.853333pt;}
.y41{bottom:538.013333pt;}
.ya3{bottom:540.253333pt;}
.y7{bottom:542.013333pt;}
.y75{bottom:543.933333pt;}
.yb4{bottom:548.733333pt;}
.y57{bottom:556.573333pt;}
.yac{bottom:557.533333pt;}
.ya2{bottom:559.933333pt;}
.y94{bottom:560.573333pt;}
.y1a{bottom:564.893333pt;}
.y56{bottom:576.253333pt;}
.yab{bottom:577.053333pt;}
.y74{bottom:579.453333pt;}
.y60{bottom:580.413333pt;}
.y6{bottom:588.893333pt;}
.y55{bottom:595.773333pt;}
.ya1{bottom:598.973333pt;}
.y73{bottom:599.133333pt;}
.y19{bottom:603.613333pt;}
.yaa{bottom:606.653333pt;}
.y54{bottom:615.453333pt;}
.y72{bottom:618.653333pt;}
.y5f{bottom:630.333333pt;}
.y5{bottom:632.253333pt;}
.ya0{bottom:634.653333pt;}
.y53{bottom:634.973333pt;}
.y71{bottom:638.333333pt;}
.y9f{bottom:654.173333pt;}
.y52{bottom:654.493333pt;}
.y70{bottom:657.853333pt;}
.y5e{bottom:662.653333pt;}
.y9e{bottom:673.853333pt;}
.y51{bottom:674.173333pt;}
.y34{bottom:675.133333pt;}
.y6f{bottom:677.373333pt;}
.y4{bottom:687.293333pt;}
.y9d{bottom:693.373333pt;}
.y3{bottom:706.493333pt;}
.y50{bottom:709.693333pt;}
.y6e{bottom:709.853333pt;}
.y33{bottom:710.813333pt;}
.y9c{bottom:722.973333pt;}
.y32{bottom:730.333333pt;}
.y4f{bottom:742.013333pt;}
.y31{bottom:749.853333pt;}
.y18{bottom:768.133333pt;}
.y30{bottom:769.573333pt;}
.y2f{bottom:805.093333pt;}
.y17{bottom:806.693333pt;}
.y2e{bottom:824.773333pt;}
.y2d{bottom:844.293333pt;}
.y81{bottom:861.253333pt;}
.y2c{bottom:863.813333pt;}
.y40{bottom:880.773333pt;}
.y2b{bottom:883.493333pt;}
.y16{bottom:898.693333pt;}
.y80{bottom:900.453333pt;}
.y2a{bottom:903.013333pt;}
.y3f{bottom:916.453333pt;}
.y7f{bottom:919.973333pt;}
.y29{bottom:922.693333pt;}
.y2{bottom:927.173333pt;}
.y15{bottom:934.213333pt;}
.y3e{bottom:935.973333pt;}
.y7e{bottom:939.493333pt;}
.y93{bottom:942.213333pt;}
.y28{bottom:955.333333pt;}
.y3d{bottom:955.493333pt;}
.y92{bottom:961.893333pt;}
.y14{bottom:969.893333pt;}
.y27{bottom:975.173333pt;}
.y1{bottom:983.013333pt;}
.y26{bottom:994.693333pt;}
.y91{bottom:1008.000000pt;}
.y13{bottom:1008.160000pt;}
.y25{bottom:1014.400000pt;}
.h6{height:40.158125pt;}
.he{height:44.821250pt;}
.hd{height:45.166250pt;}
.hc{height:52.834688pt;}
.hb{height:55.142500pt;}
.h3{height:58.563750pt;}
.h8{height:59.937500pt;}
.h9{height:64.795937pt;}
.h5{height:73.078125pt;}
.h7{height:79.716875pt;}
.ha{height:84.912188pt;}
.h4{height:139.654375pt;}
.h2{height:146.156250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.519988pt;}
.x4{left:99.071988pt;}
.x11{left:116.671988pt;}
.x5{left:136.186655pt;}
.x10{left:151.066655pt;}
.x7{left:206.426655pt;}
.x6{left:263.586655pt;}
.xa{left:299.746655pt;}
.x8{left:302.786655pt;}
.xb{left:316.866655pt;}
.x9{left:324.066655pt;}
.x17{left:389.346655pt;}
.xc{left:393.186655pt;}
.x1{left:396.866655pt;}
.xf{left:667.813322pt;}
.xe{left:681.893322pt;}
.xd{left:687.333322pt;}
.x2{left:695.333322pt;}
.x14{left:713.573322pt;}
.x13{left:716.453322pt;}
.x12{left:717.573322pt;}
.x15{left:720.453322pt;}
.x18{left:722.053322pt;}
.x16{left:723.653322pt;}
}




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