
    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_0b01b60da35720228c1fbcfb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_c22fb3accc6396e148877160.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_2fd9e904f52ccda5cfe56fd7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_40fbec089dfd8ac7c68adadd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_2b8e991fa42d5de2cbe30065.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_cecb367083c77797492d3599.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_9cba2614c8f58f195e3b5461.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_3edd84dfb86c967b837858c1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_2184fdf1f463980f73f88332.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_47a4562001077c190101d179.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_4c6dd6c8d18a63550b7c91e5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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);}
.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;}
.lsf{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.756000px;}
.ls15{letter-spacing:-0.738000px;}
.lse{letter-spacing:-0.690000px;}
.ls10{letter-spacing:-0.378600px;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.018720px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls1b{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.181440px;}
.ls19{letter-spacing:0.252720px;}
.ls1{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.540000px;}
.ls2{letter-spacing:3.600000px;}
.ls0{letter-spacing:12.960000px;}
.ls3{letter-spacing:14.580000px;}
.ls14{letter-spacing:19.260000px;}
.ls1a{letter-spacing:33.984000px;}
.ls18{letter-spacing:51.636000px;}
.ls12{letter-spacing:65.340000px;}
.ls13{letter-spacing:66.060000px;}
.ls17{letter-spacing:166.637280px;}
.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;}
}
.wsc{word-spacing:-84.240000px;}
.ws3{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.312720px;}
.wsa{word-spacing:-21.088080px;}
.ws4{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws1{word-spacing:-20.700000px;}
.ws8{word-spacing:-20.681400px;}
.ws7{word-spacing:-20.370000px;}
.wsb{word-spacing:-20.322000px;}
.ws5{word-spacing:-20.304000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.263600px;}
._1{width:1.904160px;}
._2{width:3.144000px;}
._9{width:4.392000px;}
._8{width:6.120000px;}
._7{width:7.248000px;}
._1c{width:8.252160px;}
._12{width:9.486720px;}
._11{width:10.516800px;}
._6{width:12.324000px;}
._5{width:13.392000px;}
._19{width:14.419920px;}
._3{width:15.552000px;}
._e{width:16.936560px;}
._1a{width:18.522480px;}
._1b{width:19.671600px;}
._c{width:21.168000px;}
._4{width:23.112000px;}
._24{width:25.103520px;}
._26{width:26.282880px;}
._1d{width:27.394320px;}
._a{width:28.584000px;}
._b{width:29.640000px;}
._25{width:30.916080px;}
._18{width:31.919760px;}
._17{width:33.387360px;}
._23{width:34.622640px;}
._20{width:35.866800px;}
._1e{width:37.318320px;}
._1f{width:38.413440px;}
._14{width:39.931680px;}
._13{width:41.036160px;}
._27{width:42.433920px;}
._d{width:44.424000px;}
._29{width:51.616080px;}
._22{width:53.576640px;}
._21{width:54.727200px;}
._28{width:56.693520px;}
._2a{width:58.125600px;}
._2b{width:59.220720px;}
._16{width:65.199840px;}
._15{width:66.959760px;}
._10{width:73.179840px;}
._f{width:75.108720px;}
.fc4{color:rgb(4,12,40);}
.fc3{color:rgb(5,99,193);}
.fc5{color:rgb(32,33,34);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y73{bottom:97.956000px;}
.y30{bottom:101.736000px;}
.y51{bottom:107.496000px;}
.y2f{bottom:129.456000px;}
.y50{bottom:135.216000px;}
.y5a{bottom:140.076000px;}
.y6a{bottom:146.556000px;}
.y2e{bottom:157.170000px;}
.y4f{bottom:163.110000px;}
.y59{bottom:168.330000px;}
.y69{bottom:174.270000px;}
.y2d{bottom:184.890000px;}
.y4e{bottom:190.830000px;}
.y58{bottom:196.050000px;}
.y68{bottom:202.170000px;}
.y2c{bottom:212.790000px;}
.y4d{bottom:218.550000px;}
.y57{bottom:225.030000px;}
.y67{bottom:229.890000px;}
.y2b{bottom:240.510000px;}
.y4c{bottom:246.450000px;}
.y66{bottom:253.110000px;}
.y56{bottom:253.290000px;}
.y2a{bottom:268.230000px;}
.y4b{bottom:274.170000px;}
.y55{bottom:281.190000px;}
.y29{bottom:296.175000px;}
.y4a{bottom:301.935000px;}
.y54{bottom:308.955000px;}
.y28{bottom:323.895000px;}
.y49{bottom:329.655000px;}
.y53{bottom:336.675000px;}
.y27{bottom:347.475000px;}
.y48{bottom:357.555000px;}
.y52{bottom:359.895000px;}
.y26{bottom:368.175000px;}
.y47{bottom:385.275000px;}
.y25{bottom:388.875000px;}
.y24{bottom:409.575000px;}
.y46{bottom:412.995000px;}
.y65{bottom:423.255000px;}
.y23{bottom:430.275000px;}
.y45{bottom:440.895000px;}
.y22{bottom:450.975000px;}
.y64{bottom:451.155000px;}
.y44{bottom:468.615000px;}
.y21{bottom:471.675000px;}
.y63{bottom:478.875000px;}
.y20{bottom:492.375000px;}
.y43{bottom:496.335000px;}
.y62{bottom:506.595000px;}
.y1f{bottom:513.075000px;}
.y7f{bottom:517.395000px;}
.y42{bottom:524.055000px;}
.y61{bottom:529.815000px;}
.y1e{bottom:533.775000px;}
.y7e{bottom:545.115000px;}
.y41{bottom:551.955000px;}
.y1d{bottom:554.475000px;}
.y7d{bottom:568.725000px;}
.y1c{bottom:575.205000px;}
.y72{bottom:576.105000px;}
.y40{bottom:579.705000px;}
.y7c{bottom:589.425000px;}
.y1b{bottom:595.905000px;}
.y71{bottom:604.005000px;}
.y3f{bottom:607.425000px;}
.y7b{bottom:610.125000px;}
.y1a{bottom:616.605000px;}
.y70{bottom:631.725000px;}
.y3e{bottom:635.145000px;}
.y19{bottom:637.305000px;}
.y7a{bottom:652.785000px;}
.y18{bottom:658.005000px;}
.y6f{bottom:659.445000px;}
.y3d{bottom:663.045000px;}
.y79{bottom:673.485000px;}
.y17{bottom:678.705000px;}
.y6e{bottom:687.165000px;}
.y3c{bottom:690.765000px;}
.y78{bottom:694.185000px;}
.y16{bottom:699.405000px;}
.y77{bottom:714.885000px;}
.y6d{bottom:715.065000px;}
.y3b{bottom:718.485000px;}
.y15{bottom:720.105000px;}
.y60{bottom:733.785000px;}
.y76{bottom:735.585000px;}
.y14{bottom:740.805000px;}
.y6c{bottom:742.785000px;}
.y3a{bottom:746.385000px;}
.y75{bottom:756.285000px;}
.y13{bottom:761.505000px;}
.y6b{bottom:766.005000px;}
.y39{bottom:774.105000px;}
.y74{bottom:776.985000px;}
.y12{bottom:782.205000px;}
.y5f{bottom:789.405000px;}
.y38{bottom:801.825000px;}
.y11{bottom:802.905000px;}
.y5e{bottom:817.125000px;}
.y10{bottom:823.605000px;}
.y37{bottom:829.545000px;}
.yf{bottom:844.305000px;}
.y5d{bottom:844.845000px;}
.y36{bottom:857.490000px;}
.ye{bottom:865.050000px;}
.y5c{bottom:872.790000px;}
.y35{bottom:885.210000px;}
.yd{bottom:885.750000px;}
.y5b{bottom:896.010000px;}
.yc{bottom:906.450000px;}
.y34{bottom:912.930000px;}
.yb{bottom:927.150000px;}
.y33{bottom:940.830000px;}
.ya{bottom:947.850000px;}
.y9{bottom:968.550000px;}
.y8{bottom:989.250000px;}
.y32{bottom:996.270000px;}
.y7{bottom:1009.950000px;}
.y31{bottom:1023.990000px;}
.y6{bottom:1030.650000px;}
.y5{bottom:1051.890000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.h8{height:52.628906px;}
.h9{height:58.819922px;}
.h7{height:70.628906px;}
.h5{height:70.664062px;}
.hd{height:71.613281px;}
.h6{height:72.562500px;}
.hc{height:74.004654px;}
.h2{height:82.676953px;}
.hb{height:83.787539px;}
.h4{height:84.898125px;}
.ha{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.140000px;}
.x1{left:84.959987px;}
.x15{left:90.035987px;}
.xe{left:111.995987px;}
.x16{left:117.035987px;}
.xd{left:138.095987px;}
.x8{left:157.349987px;}
.x4{left:162.209987px;}
.xa{left:294.914987px;}
.x7{left:302.654987px;}
.x6{left:323.354987px;}
.x9{left:353.954987px;}
.x14{left:390.674987px;}
.x2{left:409.035000px;}
.x5{left:446.474987px;}
.xc{left:461.774987px;}
.xb{left:472.964987px;}
.x12{left:597.344987px;}
.x11{left:640.544987px;}
.x10{left:654.764987px;}
.xf{left:710.429987px;}
.x13{left:739.589987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.672000pt;}
.ls15{letter-spacing:-0.656000pt;}
.lse{letter-spacing:-0.613333pt;}
.ls10{letter-spacing:-0.336533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.016640pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.161280pt;}
.ls19{letter-spacing:0.224640pt;}
.ls1{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls2{letter-spacing:3.200000pt;}
.ls0{letter-spacing:11.520000pt;}
.ls3{letter-spacing:12.960000pt;}
.ls14{letter-spacing:17.120000pt;}
.ls1a{letter-spacing:30.208000pt;}
.ls18{letter-spacing:45.898667pt;}
.ls12{letter-spacing:58.080000pt;}
.ls13{letter-spacing:58.720000pt;}
.ls17{letter-spacing:148.122027pt;}
.wsc{word-spacing:-74.880000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.023467pt;}
.wsd{word-spacing:-18.944640pt;}
.wsa{word-spacing:-18.744960pt;}
.ws4{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws1{word-spacing:-18.400000pt;}
.ws8{word-spacing:-18.383467pt;}
.ws7{word-spacing:-18.106667pt;}
.wsb{word-spacing:-18.064000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.692587pt;}
._2{width:2.794667pt;}
._9{width:3.904000pt;}
._8{width:5.440000pt;}
._7{width:6.442667pt;}
._1c{width:7.335253pt;}
._12{width:8.432640pt;}
._11{width:9.348267pt;}
._6{width:10.954667pt;}
._5{width:11.904000pt;}
._19{width:12.817707pt;}
._3{width:13.824000pt;}
._e{width:15.054720pt;}
._1a{width:16.464427pt;}
._1b{width:17.485867pt;}
._c{width:18.816000pt;}
._4{width:20.544000pt;}
._24{width:22.314240pt;}
._26{width:23.362560pt;}
._1d{width:24.350507pt;}
._a{width:25.408000pt;}
._b{width:26.346667pt;}
._25{width:27.480960pt;}
._18{width:28.373120pt;}
._17{width:29.677653pt;}
._23{width:30.775680pt;}
._20{width:31.881600pt;}
._1e{width:33.171840pt;}
._1f{width:34.145280pt;}
._14{width:35.494827pt;}
._13{width:36.476587pt;}
._27{width:37.719040pt;}
._d{width:39.488000pt;}
._29{width:45.880960pt;}
._22{width:47.623680pt;}
._21{width:48.646400pt;}
._28{width:50.394240pt;}
._2a{width:51.667200pt;}
._2b{width:52.640640pt;}
._16{width:57.955413pt;}
._15{width:59.519787pt;}
._10{width:65.048747pt;}
._f{width:66.763307pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y73{bottom:87.072000pt;}
.y30{bottom:90.432000pt;}
.y51{bottom:95.552000pt;}
.y2f{bottom:115.072000pt;}
.y50{bottom:120.192000pt;}
.y5a{bottom:124.512000pt;}
.y6a{bottom:130.272000pt;}
.y2e{bottom:139.706667pt;}
.y4f{bottom:144.986667pt;}
.y59{bottom:149.626667pt;}
.y69{bottom:154.906667pt;}
.y2d{bottom:164.346667pt;}
.y4e{bottom:169.626667pt;}
.y58{bottom:174.266667pt;}
.y68{bottom:179.706667pt;}
.y2c{bottom:189.146667pt;}
.y4d{bottom:194.266667pt;}
.y57{bottom:200.026667pt;}
.y67{bottom:204.346667pt;}
.y2b{bottom:213.786667pt;}
.y4c{bottom:219.066667pt;}
.y66{bottom:224.986667pt;}
.y56{bottom:225.146667pt;}
.y2a{bottom:238.426667pt;}
.y4b{bottom:243.706667pt;}
.y55{bottom:249.946667pt;}
.y29{bottom:263.266667pt;}
.y4a{bottom:268.386667pt;}
.y54{bottom:274.626667pt;}
.y28{bottom:287.906667pt;}
.y49{bottom:293.026667pt;}
.y53{bottom:299.266667pt;}
.y27{bottom:308.866667pt;}
.y48{bottom:317.826667pt;}
.y52{bottom:319.906667pt;}
.y26{bottom:327.266667pt;}
.y47{bottom:342.466667pt;}
.y25{bottom:345.666667pt;}
.y24{bottom:364.066667pt;}
.y46{bottom:367.106667pt;}
.y65{bottom:376.226667pt;}
.y23{bottom:382.466667pt;}
.y45{bottom:391.906667pt;}
.y22{bottom:400.866667pt;}
.y64{bottom:401.026667pt;}
.y44{bottom:416.546667pt;}
.y21{bottom:419.266667pt;}
.y63{bottom:425.666667pt;}
.y20{bottom:437.666667pt;}
.y43{bottom:441.186667pt;}
.y62{bottom:450.306667pt;}
.y1f{bottom:456.066667pt;}
.y7f{bottom:459.906667pt;}
.y42{bottom:465.826667pt;}
.y61{bottom:470.946667pt;}
.y1e{bottom:474.466667pt;}
.y7e{bottom:484.546667pt;}
.y41{bottom:490.626667pt;}
.y1d{bottom:492.866667pt;}
.y7d{bottom:505.533333pt;}
.y1c{bottom:511.293333pt;}
.y72{bottom:512.093333pt;}
.y40{bottom:515.293333pt;}
.y7c{bottom:523.933333pt;}
.y1b{bottom:529.693333pt;}
.y71{bottom:536.893333pt;}
.y3f{bottom:539.933333pt;}
.y7b{bottom:542.333333pt;}
.y1a{bottom:548.093333pt;}
.y70{bottom:561.533333pt;}
.y3e{bottom:564.573333pt;}
.y19{bottom:566.493333pt;}
.y7a{bottom:580.253333pt;}
.y18{bottom:584.893333pt;}
.y6f{bottom:586.173333pt;}
.y3d{bottom:589.373333pt;}
.y79{bottom:598.653333pt;}
.y17{bottom:603.293333pt;}
.y6e{bottom:610.813333pt;}
.y3c{bottom:614.013333pt;}
.y78{bottom:617.053333pt;}
.y16{bottom:621.693333pt;}
.y77{bottom:635.453333pt;}
.y6d{bottom:635.613333pt;}
.y3b{bottom:638.653333pt;}
.y15{bottom:640.093333pt;}
.y60{bottom:652.253333pt;}
.y76{bottom:653.853333pt;}
.y14{bottom:658.493333pt;}
.y6c{bottom:660.253333pt;}
.y3a{bottom:663.453333pt;}
.y75{bottom:672.253333pt;}
.y13{bottom:676.893333pt;}
.y6b{bottom:680.893333pt;}
.y39{bottom:688.093333pt;}
.y74{bottom:690.653333pt;}
.y12{bottom:695.293333pt;}
.y5f{bottom:701.693333pt;}
.y38{bottom:712.733333pt;}
.y11{bottom:713.693333pt;}
.y5e{bottom:726.333333pt;}
.y10{bottom:732.093333pt;}
.y37{bottom:737.373333pt;}
.yf{bottom:750.493333pt;}
.y5d{bottom:750.973333pt;}
.y36{bottom:762.213333pt;}
.ye{bottom:768.933333pt;}
.y5c{bottom:775.813333pt;}
.y35{bottom:786.853333pt;}
.yd{bottom:787.333333pt;}
.y5b{bottom:796.453333pt;}
.yc{bottom:805.733333pt;}
.y34{bottom:811.493333pt;}
.yb{bottom:824.133333pt;}
.y33{bottom:836.293333pt;}
.ya{bottom:842.533333pt;}
.y9{bottom:860.933333pt;}
.y8{bottom:879.333333pt;}
.y32{bottom:885.573333pt;}
.y7{bottom:897.733333pt;}
.y31{bottom:910.213333pt;}
.y6{bottom:916.133333pt;}
.y5{bottom:935.013333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.h8{height:46.781250pt;}
.h9{height:52.284375pt;}
.h7{height:62.781250pt;}
.h5{height:62.812500pt;}
.hd{height:63.656250pt;}
.h6{height:64.500000pt;}
.hc{height:65.781915pt;}
.h2{height:73.490625pt;}
.hb{height:74.477812pt;}
.h4{height:75.465000pt;}
.ha{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:19.680000pt;}
.x1{left:75.519988pt;}
.x15{left:80.031988pt;}
.xe{left:99.551988pt;}
.x16{left:104.031988pt;}
.xd{left:122.751988pt;}
.x8{left:139.866655pt;}
.x4{left:144.186655pt;}
.xa{left:262.146655pt;}
.x7{left:269.026655pt;}
.x6{left:287.426655pt;}
.x9{left:314.626655pt;}
.x14{left:347.266655pt;}
.x2{left:363.586667pt;}
.x5{left:396.866655pt;}
.xc{left:410.466655pt;}
.xb{left:420.413322pt;}
.x12{left:530.973322pt;}
.x11{left:569.373322pt;}
.x10{left:582.013322pt;}
.xf{left:631.493322pt;}
.x13{left:657.413322pt;}
}




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