
    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_26df0988ec0ca6cc540a7f7c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aa927a6910d3434761f339c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_79fdd20faea7e25898c70b29.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7df8a5180f1308d6e1772a0d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_bcd5e59b56f66e8288432775.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_fd592479274ca7cd86198b7b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_332ea45182cea73e6b7f9fe4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_6fcb22e0981f0c96204947cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_deb8324ce57fe620f9e8a75c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_081209baef1a3fe48b5ae2cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_510af754a21c79409f972cc5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2f{letter-spacing:-0.635040px;}
.lsd{letter-spacing:-0.629280px;}
.ls2e{letter-spacing:-0.604800px;}
.lsf{letter-spacing:-0.601920px;}
.lse{letter-spacing:-0.569088px;}
.ls30{letter-spacing:-0.538272px;}
.ls8{letter-spacing:-0.508896px;}
.lsa{letter-spacing:-0.481536px;}
.ls2c{letter-spacing:-0.459648px;}
.ls6{letter-spacing:-0.448704px;}
.ls5{letter-spacing:-0.393984px;}
.ls19{letter-spacing:-0.381024px;}
.lsb{letter-spacing:-0.361152px;}
.ls1b{letter-spacing:-0.338688px;}
.lsc{letter-spacing:-0.328320px;}
.ls10{letter-spacing:-0.320544px;}
.ls1a{letter-spacing:-0.302400px;}
.ls7{letter-spacing:-0.273600px;}
.ls15{letter-spacing:-0.260064px;}
.ls16{letter-spacing:-0.241920px;}
.ls11{letter-spacing:-0.223776px;}
.ls9{letter-spacing:-0.207936px;}
.ls12{letter-spacing:-0.175392px;}
.ls13{letter-spacing:-0.157248px;}
.ls18{letter-spacing:-0.145152px;}
.ls17{letter-spacing:-0.120960px;}
.ls4{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.118800px;}
.ls3{letter-spacing:0.119520px;}
.ls26{letter-spacing:0.120960px;}
.ls34{letter-spacing:0.123552px;}
.ls27{letter-spacing:0.142560px;}
.ls28{letter-spacing:0.159840px;}
.ls23{letter-spacing:0.161280px;}
.ls2b{letter-spacing:0.161568px;}
.ls31{letter-spacing:0.204336px;}
.ls25{letter-spacing:0.213840px;}
.ls29{letter-spacing:0.237600px;}
.ls33{letter-spacing:0.275616px;}
.ls22{letter-spacing:0.285120px;}
.ls2d{letter-spacing:0.318384px;}
.ls14{letter-spacing:0.356400px;}
.ls1f{letter-spacing:1.378080px;}
.ls1e{letter-spacing:2.775888px;}
.ls1d{letter-spacing:7.567488px;}
.ls21{letter-spacing:8.092800px;}
.ls20{letter-spacing:8.831520px;}
.ls1c{letter-spacing:10.516176px;}
.ls2{letter-spacing:20.507040px;}
.ls1{letter-spacing:25.309584px;}
.ls0{letter-spacing:30.496752px;}
.ls24{letter-spacing:40.150080px;}
.ls2a{letter-spacing:60.840864px;}
.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:-15.120000px;}
.wse{word-spacing:-14.974848px;}
.wsb{word-spacing:-14.962752px;}
.wsa{word-spacing:-14.944608px;}
.wsf{word-spacing:-14.896224px;}
.wsd{word-spacing:-14.878080px;}
.ws10{word-spacing:-14.817600px;}
.ws8{word-spacing:-14.799456px;}
.ws5{word-spacing:-13.472064px;}
.ws4{word-spacing:-13.406400px;}
.ws2{word-spacing:-13.318848px;}
.ws0{word-spacing:-13.231296px;}
.ws1{word-spacing:-13.198464px;}
.ws3{word-spacing:-13.171104px;}
.ws6{word-spacing:-13.110912px;}
.wsc{word-spacing:-12.236400px;}
.ws12{word-spacing:-12.198384px;}
.ws13{word-spacing:-12.165120px;}
.ws14{word-spacing:-12.117600px;}
.ws1c{word-spacing:-12.084336px;}
.ws16{word-spacing:-12.041568px;}
.ws19{word-spacing:-12.022560px;}
.ws1a{word-spacing:-12.003552px;}
.ws1b{word-spacing:-0.403920px;}
.ws17{word-spacing:-0.323136px;}
.ws18{word-spacing:-0.285120px;}
.ws15{word-spacing:-0.261360px;}
.ws11{word-spacing:0.000000px;}
.ws7{word-spacing:0.426816px;}
._20{margin-left:-4.354560px;}
._18{margin-left:-3.326400px;}
._14{margin-left:-2.237760px;}
._1{margin-left:-1.083312px;}
._0{width:1.082880px;}
._7{width:2.136960px;}
._9{width:3.749760px;}
._c{width:5.382720px;}
._5{width:6.550704px;}
._4{width:7.660800px;}
._13{width:8.703792px;}
._10{width:9.858240px;}
._1a{width:11.430720px;}
._2{width:12.509712px;}
._1c{width:13.859568px;}
._3{width:16.153920px;}
._12{width:17.399664px;}
._11{width:18.567360px;}
._a{width:20.260800px;}
._8{width:21.888000px;}
._15{width:23.290560px;}
._f{width:24.959808px;}
._e{width:26.006400px;}
._6{width:27.031680px;}
._d{width:28.486080px;}
._1e{width:30.421440px;}
._1f{width:31.631040px;}
._b{width:33.324480px;}
._19{width:37.200960px;}
._21{width:38.283840px;}
._1d{width:39.856320px;}
._1b{width:52.375680px;}
._17{width:53.403840px;}
._16{width:54.406224px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,173,71);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:144.000000px;}
.y91{bottom:-11.160000px;}
.y0{bottom:0.000000px;}
.y90{bottom:6.120000px;}
.y8f{bottom:54.000000px;}
.y1{bottom:56.520000px;}
.y36{bottom:113.040000px;}
.y57{bottom:128.880000px;}
.y35{bottom:130.320000px;}
.y56{bottom:146.160000px;}
.y34{bottom:159.480000px;}
.y55{bottom:163.440000px;}
.y33{bottom:176.760000px;}
.y54{bottom:180.720000px;}
.y32{bottom:194.040000px;}
.y53{bottom:198.000000px;}
.y31{bottom:211.320000px;}
.y52{bottom:215.280000px;}
.y30{bottom:228.600000px;}
.y51{bottom:232.200000px;}
.y2f{bottom:245.880000px;}
.y50{bottom:249.480000px;}
.y2e{bottom:263.160000px;}
.y4f{bottom:266.760000px;}
.y2d{bottom:280.440000px;}
.y4e{bottom:284.040000px;}
.y2c{bottom:297.720000px;}
.y4d{bottom:301.320000px;}
.y2b{bottom:315.000000px;}
.y4c{bottom:318.600000px;}
.y2a{bottom:331.920000px;}
.y4b{bottom:335.880000px;}
.y29{bottom:349.200000px;}
.y4a{bottom:353.160000px;}
.y28{bottom:366.480000px;}
.y49{bottom:370.440000px;}
.y27{bottom:383.760000px;}
.y48{bottom:387.720000px;}
.y26{bottom:401.040000px;}
.y47{bottom:405.000000px;}
.y8e{bottom:406.440000px;}
.y25{bottom:418.320000px;}
.y7e{bottom:419.400000px;}
.y46{bottom:421.920000px;}
.y8d{bottom:422.280000px;}
.y24{bottom:435.600000px;}
.y7d{bottom:436.680000px;}
.y8c{bottom:438.120000px;}
.y45{bottom:439.200000px;}
.y23{bottom:452.880000px;}
.y7c{bottom:453.960000px;}
.y44{bottom:456.480000px;}
.y8b{bottom:469.800000px;}
.y7b{bottom:471.240000px;}
.y43{bottom:479.880000px;}
.y22{bottom:482.040000px;}
.y8a{bottom:485.640000px;}
.y7a{bottom:488.520000px;}
.y89{bottom:501.480000px;}
.y79{bottom:505.800000px;}
.y42{bottom:509.040000px;}
.y21{bottom:511.200000px;}
.y88{bottom:517.320000px;}
.y78{bottom:523.080000px;}
.y41{bottom:526.320000px;}
.y20{bottom:528.480000px;}
.y87{bottom:533.520000px;}
.y77{bottom:540.360000px;}
.y40{bottom:543.600000px;}
.y86{bottom:549.360000px;}
.y76{bottom:557.640000px;}
.y1f{bottom:560.520000px;}
.y3f{bottom:560.880000px;}
.y85{bottom:565.200000px;}
.y75{bottom:574.920000px;}
.y1e{bottom:576.000000px;}
.y3e{bottom:578.160000px;}
.y84{bottom:581.040000px;}
.y1d{bottom:591.480000px;}
.y74{bottom:592.200000px;}
.y3d{bottom:595.440000px;}
.y83{bottom:596.880000px;}
.y1c{bottom:606.960000px;}
.y73{bottom:609.120000px;}
.y3c{bottom:612.720000px;}
.y82{bottom:617.400000px;}
.y1b{bottom:622.440000px;}
.y72{bottom:626.400000px;}
.y3b{bottom:630.000000px;}
.y1a{bottom:638.280000px;}
.y71{bottom:643.680000px;}
.y81{bottom:646.200000px;}
.y3a{bottom:646.920000px;}
.y19{bottom:653.760000px;}
.y70{bottom:660.960000px;}
.y80{bottom:662.760000px;}
.y39{bottom:664.200000px;}
.y18{bottom:669.240000px;}
.y6f{bottom:678.240000px;}
.y7f{bottom:679.320000px;}
.y38{bottom:681.480000px;}
.y17{bottom:684.720000px;}
.y6e{bottom:695.520000px;}
.y37{bottom:698.760000px;}
.y16{bottom:700.200000px;}
.y6d{bottom:712.800000px;}
.y15{bottom:718.200000px;}
.y6c{bottom:730.080000px;}
.y6b{bottom:747.360000px;}
.y14{bottom:750.600000px;}
.y13{bottom:758.160000px;}
.y6a{bottom:764.640000px;}
.y10{bottom:766.080000px;}
.yf{bottom:781.560000px;}
.y69{bottom:781.920000px;}
.y12{bottom:794.520000px;}
.ye{bottom:797.040000px;}
.y68{bottom:798.840000px;}
.yd{bottom:812.520000px;}
.y67{bottom:816.120000px;}
.yc{bottom:828.360000px;}
.y11{bottom:831.240000px;}
.y66{bottom:833.400000px;}
.y65{bottom:850.680000px;}
.y64{bottom:867.960000px;}
.yb{bottom:882.000000px;}
.y63{bottom:885.240000px;}
.ya{bottom:897.480000px;}
.y62{bottom:902.520000px;}
.y9{bottom:912.960000px;}
.y61{bottom:919.800000px;}
.y8{bottom:928.440000px;}
.y60{bottom:937.080000px;}
.y7{bottom:943.920000px;}
.y5f{bottom:954.360000px;}
.y6{bottom:959.400000px;}
.y5e{bottom:971.640000px;}
.y5{bottom:975.240000px;}
.y5d{bottom:988.920000px;}
.y4{bottom:990.720000px;}
.y5c{bottom:1005.840000px;}
.y5b{bottom:1023.120000px;}
.y3{bottom:1032.120000px;}
.y5a{bottom:1046.520000px;}
.y2{bottom:1073.520000px;}
.y59{bottom:1075.680000px;}
.y58{bottom:1092.960000px;}
.h8{height:21.000000px;}
.h1{height:33.018047px;}
.h4{height:37.085625px;}
.h3{height:38.020781px;}
.h6{height:40.310156px;}
.h5{height:40.959844px;}
.h7{height:42.022969px;}
.h2{height:97.593750px;}
.h0{height:1188.000000px;}
.w1{width:837.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2d{left:21.562860px;}
.x2c{left:42.000000px;}
.x1{left:66.959856px;}
.x22{left:68.040144px;}
.x2{left:74.559816px;}
.x5{left:81.639396px;}
.x7{left:86.520636px;}
.x21{left:88.440300px;}
.x9{left:95.679936px;}
.x1f{left:106.734384px;}
.x1e{left:111.819960px;}
.x4{left:122.693112px;}
.x8{left:123.991704px;}
.x6{left:140.879880px;}
.xa{left:158.872176px;}
.x23{left:198.477144px;}
.x3{left:248.539320px;}
.xc{left:281.799684px;}
.xe{left:286.680888px;}
.x10{left:293.219964px;}
.xf{left:324.151956px;}
.xb{left:326.600820px;}
.xd{left:341.040132px;}
.x11{left:359.032464px;}
.x2e{left:418.739880px;}
.x2b{left:458.984520px;}
.x24{left:472.680000px;}
.x13{left:481.599720px;}
.x17{left:482.898240px;}
.x15{left:486.480960px;}
.x28{left:494.280000px;}
.x2a{left:499.680000px;}
.x12{left:516.282480px;}
.x16{left:523.951920px;}
.x14{left:540.839880px;}
.x18{left:558.832320px;}
.x25{left:578.782440px;}
.x27{left:600.343200px;}
.x26{left:603.858960px;}
.x29{left:622.744200px;}
.x1a{left:681.759360px;}
.x1c{left:686.640600px;}
.x1d{left:696.182400px;}
.x19{left:723.195360px;}
.x1b{left:740.999880px;}
.x20{left:758.992320px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2f{letter-spacing:-0.564480pt;}
.lsd{letter-spacing:-0.559360pt;}
.ls2e{letter-spacing:-0.537600pt;}
.lsf{letter-spacing:-0.535040pt;}
.lse{letter-spacing:-0.505856pt;}
.ls30{letter-spacing:-0.478464pt;}
.ls8{letter-spacing:-0.452352pt;}
.lsa{letter-spacing:-0.428032pt;}
.ls2c{letter-spacing:-0.408576pt;}
.ls6{letter-spacing:-0.398848pt;}
.ls5{letter-spacing:-0.350208pt;}
.ls19{letter-spacing:-0.338688pt;}
.lsb{letter-spacing:-0.321024pt;}
.ls1b{letter-spacing:-0.301056pt;}
.lsc{letter-spacing:-0.291840pt;}
.ls10{letter-spacing:-0.284928pt;}
.ls1a{letter-spacing:-0.268800pt;}
.ls7{letter-spacing:-0.243200pt;}
.ls15{letter-spacing:-0.231168pt;}
.ls16{letter-spacing:-0.215040pt;}
.ls11{letter-spacing:-0.198912pt;}
.ls9{letter-spacing:-0.184832pt;}
.ls12{letter-spacing:-0.155904pt;}
.ls13{letter-spacing:-0.139776pt;}
.ls18{letter-spacing:-0.129024pt;}
.ls17{letter-spacing:-0.107520pt;}
.ls4{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.105600pt;}
.ls3{letter-spacing:0.106240pt;}
.ls26{letter-spacing:0.107520pt;}
.ls34{letter-spacing:0.109824pt;}
.ls27{letter-spacing:0.126720pt;}
.ls28{letter-spacing:0.142080pt;}
.ls23{letter-spacing:0.143360pt;}
.ls2b{letter-spacing:0.143616pt;}
.ls31{letter-spacing:0.181632pt;}
.ls25{letter-spacing:0.190080pt;}
.ls29{letter-spacing:0.211200pt;}
.ls33{letter-spacing:0.244992pt;}
.ls22{letter-spacing:0.253440pt;}
.ls2d{letter-spacing:0.283008pt;}
.ls14{letter-spacing:0.316800pt;}
.ls1f{letter-spacing:1.224960pt;}
.ls1e{letter-spacing:2.467456pt;}
.ls1d{letter-spacing:6.726656pt;}
.ls21{letter-spacing:7.193600pt;}
.ls20{letter-spacing:7.850240pt;}
.ls1c{letter-spacing:9.347712pt;}
.ls2{letter-spacing:18.228480pt;}
.ls1{letter-spacing:22.497408pt;}
.ls0{letter-spacing:27.108224pt;}
.ls24{letter-spacing:35.688960pt;}
.ls2a{letter-spacing:54.080768pt;}
.ws9{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.310976pt;}
.wsb{word-spacing:-13.300224pt;}
.wsa{word-spacing:-13.284096pt;}
.wsf{word-spacing:-13.241088pt;}
.wsd{word-spacing:-13.224960pt;}
.ws10{word-spacing:-13.171200pt;}
.ws8{word-spacing:-13.155072pt;}
.ws5{word-spacing:-11.975168pt;}
.ws4{word-spacing:-11.916800pt;}
.ws2{word-spacing:-11.838976pt;}
.ws0{word-spacing:-11.761152pt;}
.ws1{word-spacing:-11.731968pt;}
.ws3{word-spacing:-11.707648pt;}
.ws6{word-spacing:-11.654144pt;}
.wsc{word-spacing:-10.876800pt;}
.ws12{word-spacing:-10.843008pt;}
.ws13{word-spacing:-10.813440pt;}
.ws14{word-spacing:-10.771200pt;}
.ws1c{word-spacing:-10.741632pt;}
.ws16{word-spacing:-10.703616pt;}
.ws19{word-spacing:-10.686720pt;}
.ws1a{word-spacing:-10.669824pt;}
.ws1b{word-spacing:-0.359040pt;}
.ws17{word-spacing:-0.287232pt;}
.ws18{word-spacing:-0.253440pt;}
.ws15{word-spacing:-0.232320pt;}
.ws11{word-spacing:0.000000pt;}
.ws7{word-spacing:0.379392pt;}
._20{margin-left:-3.870720pt;}
._18{margin-left:-2.956800pt;}
._14{margin-left:-1.989120pt;}
._1{margin-left:-0.962944pt;}
._0{width:0.962560pt;}
._7{width:1.899520pt;}
._9{width:3.333120pt;}
._c{width:4.784640pt;}
._5{width:5.822848pt;}
._4{width:6.809600pt;}
._13{width:7.736704pt;}
._10{width:8.762880pt;}
._1a{width:10.160640pt;}
._2{width:11.119744pt;}
._1c{width:12.319616pt;}
._3{width:14.359040pt;}
._12{width:15.466368pt;}
._11{width:16.504320pt;}
._a{width:18.009600pt;}
._8{width:19.456000pt;}
._15{width:20.702720pt;}
._f{width:22.186496pt;}
._e{width:23.116800pt;}
._6{width:24.028160pt;}
._d{width:25.320960pt;}
._1e{width:27.041280pt;}
._1f{width:28.116480pt;}
._b{width:29.621760pt;}
._19{width:33.067520pt;}
._21{width:34.030080pt;}
._1d{width:35.427840pt;}
._1b{width:46.556160pt;}
._17{width:47.470080pt;}
._16{width:48.361088pt;}
.fs0{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:128.000000pt;}
.y91{bottom:-9.920000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:5.440000pt;}
.y8f{bottom:48.000000pt;}
.y1{bottom:50.240000pt;}
.y36{bottom:100.480000pt;}
.y57{bottom:114.560000pt;}
.y35{bottom:115.840000pt;}
.y56{bottom:129.920000pt;}
.y34{bottom:141.760000pt;}
.y55{bottom:145.280000pt;}
.y33{bottom:157.120000pt;}
.y54{bottom:160.640000pt;}
.y32{bottom:172.480000pt;}
.y53{bottom:176.000000pt;}
.y31{bottom:187.840000pt;}
.y52{bottom:191.360000pt;}
.y30{bottom:203.200000pt;}
.y51{bottom:206.400000pt;}
.y2f{bottom:218.560000pt;}
.y50{bottom:221.760000pt;}
.y2e{bottom:233.920000pt;}
.y4f{bottom:237.120000pt;}
.y2d{bottom:249.280000pt;}
.y4e{bottom:252.480000pt;}
.y2c{bottom:264.640000pt;}
.y4d{bottom:267.840000pt;}
.y2b{bottom:280.000000pt;}
.y4c{bottom:283.200000pt;}
.y2a{bottom:295.040000pt;}
.y4b{bottom:298.560000pt;}
.y29{bottom:310.400000pt;}
.y4a{bottom:313.920000pt;}
.y28{bottom:325.760000pt;}
.y49{bottom:329.280000pt;}
.y27{bottom:341.120000pt;}
.y48{bottom:344.640000pt;}
.y26{bottom:356.480000pt;}
.y47{bottom:360.000000pt;}
.y8e{bottom:361.280000pt;}
.y25{bottom:371.840000pt;}
.y7e{bottom:372.800000pt;}
.y46{bottom:375.040000pt;}
.y8d{bottom:375.360000pt;}
.y24{bottom:387.200000pt;}
.y7d{bottom:388.160000pt;}
.y8c{bottom:389.440000pt;}
.y45{bottom:390.400000pt;}
.y23{bottom:402.560000pt;}
.y7c{bottom:403.520000pt;}
.y44{bottom:405.760000pt;}
.y8b{bottom:417.600000pt;}
.y7b{bottom:418.880000pt;}
.y43{bottom:426.560000pt;}
.y22{bottom:428.480000pt;}
.y8a{bottom:431.680000pt;}
.y7a{bottom:434.240000pt;}
.y89{bottom:445.760000pt;}
.y79{bottom:449.600000pt;}
.y42{bottom:452.480000pt;}
.y21{bottom:454.400000pt;}
.y88{bottom:459.840000pt;}
.y78{bottom:464.960000pt;}
.y41{bottom:467.840000pt;}
.y20{bottom:469.760000pt;}
.y87{bottom:474.240000pt;}
.y77{bottom:480.320000pt;}
.y40{bottom:483.200000pt;}
.y86{bottom:488.320000pt;}
.y76{bottom:495.680000pt;}
.y1f{bottom:498.240000pt;}
.y3f{bottom:498.560000pt;}
.y85{bottom:502.400000pt;}
.y75{bottom:511.040000pt;}
.y1e{bottom:512.000000pt;}
.y3e{bottom:513.920000pt;}
.y84{bottom:516.480000pt;}
.y1d{bottom:525.760000pt;}
.y74{bottom:526.400000pt;}
.y3d{bottom:529.280000pt;}
.y83{bottom:530.560000pt;}
.y1c{bottom:539.520000pt;}
.y73{bottom:541.440000pt;}
.y3c{bottom:544.640000pt;}
.y82{bottom:548.800000pt;}
.y1b{bottom:553.280000pt;}
.y72{bottom:556.800000pt;}
.y3b{bottom:560.000000pt;}
.y1a{bottom:567.360000pt;}
.y71{bottom:572.160000pt;}
.y81{bottom:574.400000pt;}
.y3a{bottom:575.040000pt;}
.y19{bottom:581.120000pt;}
.y70{bottom:587.520000pt;}
.y80{bottom:589.120000pt;}
.y39{bottom:590.400000pt;}
.y18{bottom:594.880000pt;}
.y6f{bottom:602.880000pt;}
.y7f{bottom:603.840000pt;}
.y38{bottom:605.760000pt;}
.y17{bottom:608.640000pt;}
.y6e{bottom:618.240000pt;}
.y37{bottom:621.120000pt;}
.y16{bottom:622.400000pt;}
.y6d{bottom:633.600000pt;}
.y15{bottom:638.400000pt;}
.y6c{bottom:648.960000pt;}
.y6b{bottom:664.320000pt;}
.y14{bottom:667.200000pt;}
.y13{bottom:673.920000pt;}
.y6a{bottom:679.680000pt;}
.y10{bottom:680.960000pt;}
.yf{bottom:694.720000pt;}
.y69{bottom:695.040000pt;}
.y12{bottom:706.240000pt;}
.ye{bottom:708.480000pt;}
.y68{bottom:710.080000pt;}
.yd{bottom:722.240000pt;}
.y67{bottom:725.440000pt;}
.yc{bottom:736.320000pt;}
.y11{bottom:738.880000pt;}
.y66{bottom:740.800000pt;}
.y65{bottom:756.160000pt;}
.y64{bottom:771.520000pt;}
.yb{bottom:784.000000pt;}
.y63{bottom:786.880000pt;}
.ya{bottom:797.760000pt;}
.y62{bottom:802.240000pt;}
.y9{bottom:811.520000pt;}
.y61{bottom:817.600000pt;}
.y8{bottom:825.280000pt;}
.y60{bottom:832.960000pt;}
.y7{bottom:839.040000pt;}
.y5f{bottom:848.320000pt;}
.y6{bottom:852.800000pt;}
.y5e{bottom:863.680000pt;}
.y5{bottom:866.880000pt;}
.y5d{bottom:879.040000pt;}
.y4{bottom:880.640000pt;}
.y5c{bottom:894.080000pt;}
.y5b{bottom:909.440000pt;}
.y3{bottom:917.440000pt;}
.y5a{bottom:930.240000pt;}
.y2{bottom:954.240000pt;}
.y59{bottom:956.160000pt;}
.y58{bottom:971.520000pt;}
.h8{height:18.666667pt;}
.h1{height:29.349375pt;}
.h4{height:32.965000pt;}
.h3{height:33.796250pt;}
.h6{height:35.831250pt;}
.h5{height:36.408750pt;}
.h7{height:37.353750pt;}
.h2{height:86.750000pt;}
.h0{height:1056.000000pt;}
.w1{width:744.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:19.166987pt;}
.x2c{left:37.333333pt;}
.x1{left:59.519872pt;}
.x22{left:60.480128pt;}
.x2{left:66.275392pt;}
.x5{left:72.568352pt;}
.x7{left:76.907232pt;}
.x21{left:78.613600pt;}
.x9{left:85.048832pt;}
.x1f{left:94.875008pt;}
.x1e{left:99.395520pt;}
.x4{left:109.060544pt;}
.x8{left:110.214848pt;}
.x6{left:125.226560pt;}
.xa{left:141.219712pt;}
.x23{left:176.424128pt;}
.x3{left:220.923840pt;}
.xc{left:250.488608pt;}
.xe{left:254.827456pt;}
.x10{left:260.639968pt;}
.xf{left:288.135072pt;}
.xb{left:290.311840pt;}
.xd{left:303.146784pt;}
.x11{left:319.139968pt;}
.x2e{left:372.213227pt;}
.x2b{left:407.986240pt;}
.x24{left:420.160000pt;}
.x13{left:428.088640pt;}
.x17{left:429.242880pt;}
.x15{left:432.427520pt;}
.x28{left:439.360000pt;}
.x2a{left:444.160000pt;}
.x12{left:458.917760pt;}
.x16{left:465.735040pt;}
.x14{left:480.746560pt;}
.x18{left:496.739840pt;}
.x25{left:514.473280pt;}
.x27{left:533.638400pt;}
.x26{left:536.763520pt;}
.x29{left:553.550400pt;}
.x1a{left:606.008320pt;}
.x1c{left:610.347200pt;}
.x1d{left:618.828800pt;}
.x19{left:642.840320pt;}
.x1b{left:658.666560pt;}
.x20{left:674.659840pt;}
}




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