
    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_7d6bd3235ce1358e3dff7c08.woff')format("woff");}.ff1{font-family:ff1;line-height:1.111000;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_a255d60b4af95cfa5523658c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.055000;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_28e8ff8ea829121d79593c87.woff')format("woff");}.ff3{font-family:ff3;line-height:1.111000;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_75db79f9d529bade16d4a816.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b9289b6204480e2cb573590f.woff')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.258600px;}
.ls16{letter-spacing:-0.230400px;}
.ls8{letter-spacing:-0.178800px;}
.lsc{letter-spacing:-0.168000px;}
.ls9{letter-spacing:-0.117600px;}
.ls18{letter-spacing:-0.115800px;}
.ls3{letter-spacing:-0.100800px;}
.ls15{letter-spacing:-0.043920px;}
.lsb{letter-spacing:-0.029520px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.034560px;}
.ls19{letter-spacing:0.043920px;}
.ls11{letter-spacing:0.146400px;}
.ls17{letter-spacing:0.171600px;}
.lse{letter-spacing:0.234600px;}
.lsf{letter-spacing:0.296400px;}
.ls13{letter-spacing:0.311760px;}
.ls4{letter-spacing:0.348480px;}
.ls7{letter-spacing:0.541200px;}
.ls5{letter-spacing:0.541440px;}
.ls1b{letter-spacing:0.606000px;}
.ls6{letter-spacing:0.619200px;}
.ls1a{letter-spacing:0.678000px;}
.lsa{letter-spacing:0.690000px;}
.ls12{letter-spacing:1.014000px;}
.ls14{letter-spacing:58.266720px;}
.ls10{letter-spacing:849.001440px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.565440px;}
.ws1{word-spacing:-21.306840px;}
.ws5{word-spacing:-15.988560px;}
.ws12{word-spacing:-15.976560px;}
.ws13{word-spacing:-15.904560px;}
.wsb{word-spacing:-15.594960px;}
.wsa{word-spacing:-15.533160px;}
.ws10{word-spacing:-15.470160px;}
.wsd{word-spacing:-15.444960px;}
.ws8{word-spacing:-15.307200px;}
.ws4{word-spacing:-15.298560px;}
.ws6{word-spacing:-15.269040px;}
.wsf{word-spacing:-15.254640px;}
.ws2{word-spacing:-15.197760px;}
.ws11{word-spacing:-15.182760px;}
.wse{word-spacing:-15.180960px;}
.ws9{word-spacing:-14.521680px;}
.ws7{word-spacing:-14.353680px;}
.wsc{word-spacing:-9.953280px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-10.811280px;}
._8{margin-left:-8.173680px;}
._b{margin-left:-3.944160px;}
._7{margin-left:-2.840400px;}
._1{margin-left:-1.152000px;}
._2{width:1.226640px;}
._a{width:2.349600px;}
._4{width:3.525840px;}
._5{width:4.541760px;}
._f{width:5.911200px;}
._3{width:7.470000px;}
._10{width:8.496960px;}
._d{width:10.458000px;}
._e{width:11.510640px;}
._c{width:13.326480px;}
._11{width:16.613280px;}
._12{width:18.221760px;}
._13{width:20.084400px;}
._6{width:843.829680px;}
._0{width:849.001440px;}
.fc5{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(61,174,43);}
.fc0{color:rgb(84,86,90);}
.fs6{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:144.000000px;}
.y7{bottom:-49.140000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.340000px;}
.y33{bottom:3.240000px;}
.yf{bottom:3.960000px;}
.y11{bottom:6.660000px;}
.y15{bottom:6.840000px;}
.y23{bottom:7.020000px;}
.y6{bottom:9.540000px;}
.y13{bottom:9.900000px;}
.y31{bottom:12.240000px;}
.y1c{bottom:12.420000px;}
.y32{bottom:21.240000px;}
.ye{bottom:23.400000px;}
.y1f{bottom:41.436000px;}
.y1b{bottom:42.156000px;}
.yd{bottom:42.840000px;}
.yb{bottom:50.445000px;}
.y5{bottom:56.160000px;}
.y1a{bottom:56.376000px;}
.y1e{bottom:59.976000px;}
.yc{bottom:63.036000px;}
.y19{bottom:81.576000px;}
.y60{bottom:99.396000px;}
.y7f{bottom:104.256000px;}
.ya4{bottom:111.096000px;}
.y18{bottom:112.176000px;}
.ye2{bottom:113.076000px;}
.y5f{bottom:132.156000px;}
.y17{bottom:137.376000px;}
.ye1{bottom:148.716000px;}
.ya3{bottom:149.616000px;}
.y16{bottom:159.870000px;}
.y5e{bottom:161.490000px;}
.ye0{bottom:169.770000px;}
.ya2{bottom:182.370000px;}
.y14{bottom:184.890000px;}
.ydf{bottom:190.650000px;}
.y12{bottom:209.190000px;}
.ya1{bottom:215.130000px;}
.yde{bottom:223.770000px;}
.y10{bottom:234.390000px;}
.ya0{bottom:247.710000px;}
.ydd{bottom:256.350000px;}
.yba{bottom:262.110000px;}
.ya{bottom:277.050000px;}
.ydc{bottom:277.230000px;}
.y9f{bottom:280.470000px;}
.ydb{bottom:298.290000px;}
.yb9{bottom:303.150000px;}
.y9e{bottom:313.275000px;}
.yda{bottom:319.395000px;}
.y7e{bottom:329.295000px;}
.yd9{bottom:340.275000px;}
.yb8{bottom:341.895000px;}
.y9d{bottom:345.855000px;}
.y7d{bottom:349.995000px;}
.yd8{bottom:361.335000px;}
.y7c{bottom:370.695000px;}
.yb7{bottom:374.475000px;}
.y9c{bottom:378.615000px;}
.y8{bottom:385.635000px;}
.y7b{bottom:391.395000px;}
.yd7{bottom:394.275000px;}
.yb6{bottom:407.235000px;}
.y9b{bottom:411.375000px;}
.y4{bottom:423.615000px;}
.y7a{bottom:423.975000px;}
.yd6{bottom:426.855000px;}
.yb5{bottom:439.995000px;}
.y9a{bottom:443.955000px;}
.yd5{bottom:447.915000px;}
.y79{bottom:456.735000px;}
.y99{bottom:464.655000px;}
.yd4{bottom:468.975000px;}
.yb4{bottom:472.575000px;}
.y3b{bottom:473.835000px;}
.y78{bottom:489.495000px;}
.yd3{bottom:489.855000px;}
.y98{bottom:497.415000px;}
.yb3{bottom:505.335000px;}
.yd2{bottom:510.915000px;}
.y3a{bottom:512.355000px;}
.y5d{bottom:514.875000px;}
.y97{bottom:518.115000px;}
.y77{bottom:522.075000px;}
.yd1{bottom:531.795000px;}
.y39{bottom:533.055000px;}
.y5c{bottom:535.575000px;}
.yb2{bottom:538.095000px;}
.y96{bottom:551.955000px;}
.yd0{bottom:552.855000px;}
.y38{bottom:553.755000px;}
.y76{bottom:554.835000px;}
.y5b{bottom:556.275000px;}
.yb1{bottom:570.675000px;}
.ycf{bottom:573.735000px;}
.y37{bottom:574.455000px;}
.y5a{bottom:576.975000px;}
.y75{bottom:587.625000px;}
.yce{bottom:594.825000px;}
.yb0{bottom:604.545000px;}
.y36{bottom:607.785000px;}
.y59{bottom:610.665000px;}
.ycd{bottom:615.705000px;}
.y74{bottom:620.205000px;}
.y95{bottom:620.385000px;}
.ycc{bottom:636.765000px;}
.y94{bottom:641.085000px;}
.yaf{bottom:642.705000px;}
.y58{bottom:646.485000px;}
.y35{bottom:647.025000px;}
.y73{bottom:652.965000px;}
.ycb{bottom:657.645000px;}
.y93{bottom:661.785000px;}
.y57{bottom:667.185000px;}
.yca{bottom:678.705000px;}
.y92{bottom:682.485000px;}
.yae{bottom:683.565000px;}
.y72{bottom:685.725000px;}
.y34{bottom:686.265000px;}
.y56{bottom:687.885000px;}
.yc9{bottom:699.585000px;}
.y30{bottom:707.685000px;}
.y55{bottom:708.585000px;}
.y91{bottom:715.245000px;}
.y71{bottom:718.305000px;}
.yc8{bottom:720.645000px;}
.yad{bottom:724.605000px;}
.y54{bottom:729.285000px;}
.y90{bottom:735.945000px;}
.yc7{bottom:741.525000px;}
.y2f{bottom:744.405000px;}
.y70{bottom:751.065000px;}
.y8f{bottom:756.645000px;}
.y53{bottom:763.125000px;}
.yac{bottom:765.645000px;}
.y2e{bottom:770.685000px;}
.yc6{bottom:774.645000px;}
.y8e{bottom:777.345000px;}
.y6f{bottom:783.825000px;}
.y2d{bottom:796.965000px;}
.y8d{bottom:798.045000px;}
.y46{bottom:800.925000px;}
.y52{bottom:801.105000px;}
.yab{bottom:806.505000px;}
.yc5{bottom:807.225000px;}
.y6e{bottom:816.405000px;}
.yc4{bottom:828.285000px;}
.y8c{bottom:830.625000px;}
.y45{bottom:835.485000px;}
.y6d{bottom:837.105000px;}
.y51{bottom:839.805000px;}
.y2c{bottom:841.605000px;}
.yaa{bottom:847.545000px;}
.yc3{bottom:849.165000px;}
.y8b{bottom:851.325000px;}
.y6c{bottom:857.805000px;}
.y2b{bottom:863.070000px;}
.y44{bottom:866.850000px;}
.yc2{bottom:870.270000px;}
.y8a{bottom:872.070000px;}
.y50{bottom:872.610000px;}
.ya9{bottom:888.630000px;}
.y2a{bottom:889.350000px;}
.y6b{bottom:890.610000px;}
.yc1{bottom:891.150000px;}
.y89{bottom:892.770000px;}
.y4f{bottom:893.310000px;}
.y43{bottom:895.290000px;}
.y6a{bottom:911.310000px;}
.yc0{bottom:912.210000px;}
.y88{bottom:913.470000px;}
.y4e{bottom:914.010000px;}
.y29{bottom:915.630000px;}
.y42{bottom:923.010000px;}
.ya8{bottom:929.490000px;}
.ybf{bottom:933.090000px;}
.y28{bottom:941.910000px;}
.y69{bottom:943.890000px;}
.y87{bottom:946.230000px;}
.y4d{bottom:946.590000px;}
.y41{bottom:950.010000px;}
.ybe{bottom:954.150000px;}
.y68{bottom:964.950000px;}
.y86{bottom:966.930000px;}
.y4c{bottom:967.290000px;}
.y27{bottom:968.190000px;}
.ya7{bottom:970.530000px;}
.ybd{bottom:975.210000px;}
.y40{bottom:976.830000px;}
.y67{bottom:985.830000px;}
.y85{bottom:987.630000px;}
.y4b{bottom:987.990000px;}
.y26{bottom:994.290000px;}
.ybc{bottom:996.090000px;}
.y3f{bottom:1003.830000px;}
.y66{bottom:1006.890000px;}
.y84{bottom:1008.330000px;}
.ya6{bottom:1011.570000px;}
.ybb{bottom:1017.150000px;}
.y25{bottom:1020.570000px;}
.y4a{bottom:1020.750000px;}
.y65{bottom:1027.770000px;}
.y83{bottom:1029.030000px;}
.y3e{bottom:1030.830000px;}
.y49{bottom:1041.450000px;}
.y24{bottom:1046.850000px;}
.y64{bottom:1048.830000px;}
.ya5{bottom:1050.090000px;}
.y3d{bottom:1057.650000px;}
.y82{bottom:1061.790000px;}
.y48{bottom:1062.150000px;}
.y63{bottom:1069.710000px;}
.y22{bottom:1073.130000px;}
.y81{bottom:1082.490000px;}
.y47{bottom:1082.850000px;}
.y3c{bottom:1084.650000px;}
.y62{bottom:1090.770000px;}
.y80{bottom:1103.190000px;}
.y21{bottom:1117.950000px;}
.y61{bottom:1123.890000px;}
.y3{bottom:1131.270000px;}
.y1d{bottom:1141.920000px;}
.y2{bottom:1162.620000px;}
.y20{bottom:1168.740000px;}
.y1{bottom:1194.120000px;}
.ha{height:24.480000px;}
.hc{height:24.660000px;}
.h12{height:25.380000px;}
.h10{height:25.560000px;}
.h5{height:26.100000px;}
.hd{height:27.180000px;}
.h13{height:36.000000px;}
.he{height:38.160000px;}
.h11{height:52.230240px;}
.h2{height:55.337760px;}
.h9{height:57.600000px;}
.h16{height:61.423863px;}
.hb{height:62.928000px;}
.h14{height:65.884219px;}
.h15{height:66.672000px;}
.h7{height:71.136000px;}
.hf{height:73.625760px;}
.h8{height:78.006240px;}
.h6{height:88.673760px;}
.h3{height:91.620000px;}
.h4{height:125.856000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:83.916000px;}
.wd{width:105.516000px;}
.we{width:137.520000px;}
.wa{width:254.055000px;}
.w5{width:352.365000px;}
.w7{width:356.115000px;}
.w6{width:356.295000px;}
.wf{width:454.425000px;}
.w4{width:479.805000px;}
.wb{width:528.765000px;}
.w9{width:537.450000px;}
.w8{width:548.430000px;}
.w3{width:803.880000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.xa{left:10.800000px;}
.x8{left:41.805000px;}
.x2{left:44.640000px;}
.x14{left:47.520000px;}
.x1{left:53.999987px;}
.x3{left:64.836000px;}
.x1b{left:70.559987px;}
.x1d{left:81.035987px;}
.x18{left:139.536000px;}
.x11{left:189.045000px;}
.x7{left:206.670000px;}
.xc{left:211.905000px;}
.x9{left:214.770000px;}
.x4{left:221.115000px;}
.xf{left:237.825000px;}
.x19{left:245.775000px;}
.x10{left:268.275000px;}
.x12{left:283.755000px;}
.xd{left:294.195000px;}
.x17{left:309.675000px;}
.x6{left:312.915000px;}
.x13{left:324.615000px;}
.x1a{left:384.015000px;}
.x5{left:401.865000px;}
.xb{left:467.745000px;}
.xe{left:469.365000px;}
.x1e{left:655.889987px;}
.x1c{left:697.649987px;}
.x15{left:828.719987px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.229867pt;}
.ls16{letter-spacing:-0.204800pt;}
.ls8{letter-spacing:-0.158933pt;}
.lsc{letter-spacing:-0.149333pt;}
.ls9{letter-spacing:-0.104533pt;}
.ls18{letter-spacing:-0.102933pt;}
.ls3{letter-spacing:-0.089600pt;}
.ls15{letter-spacing:-0.039040pt;}
.lsb{letter-spacing:-0.026240pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.030720pt;}
.ls19{letter-spacing:0.039040pt;}
.ls11{letter-spacing:0.130133pt;}
.ls17{letter-spacing:0.152533pt;}
.lse{letter-spacing:0.208533pt;}
.lsf{letter-spacing:0.263467pt;}
.ls13{letter-spacing:0.277120pt;}
.ls4{letter-spacing:0.309760pt;}
.ls7{letter-spacing:0.481067pt;}
.ls5{letter-spacing:0.481280pt;}
.ls1b{letter-spacing:0.538667pt;}
.ls6{letter-spacing:0.550400pt;}
.ls1a{letter-spacing:0.602667pt;}
.lsa{letter-spacing:0.613333pt;}
.ls12{letter-spacing:0.901333pt;}
.ls14{letter-spacing:51.792640pt;}
.ls10{letter-spacing:754.667947pt;}
.ws0{word-spacing:-19.169280pt;}
.ws1{word-spacing:-18.939413pt;}
.ws5{word-spacing:-14.212053pt;}
.ws12{word-spacing:-14.201387pt;}
.ws13{word-spacing:-14.137387pt;}
.wsb{word-spacing:-13.862187pt;}
.wsa{word-spacing:-13.807253pt;}
.ws10{word-spacing:-13.751253pt;}
.wsd{word-spacing:-13.728853pt;}
.ws8{word-spacing:-13.606400pt;}
.ws4{word-spacing:-13.598720pt;}
.ws6{word-spacing:-13.572480pt;}
.wsf{word-spacing:-13.559680pt;}
.ws2{word-spacing:-13.509120pt;}
.ws11{word-spacing:-13.495787pt;}
.wse{word-spacing:-13.494187pt;}
.ws9{word-spacing:-12.908160pt;}
.ws7{word-spacing:-12.758827pt;}
.wsc{word-spacing:-8.847360pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-9.610027pt;}
._8{margin-left:-7.265493pt;}
._b{margin-left:-3.505920pt;}
._7{margin-left:-2.524800pt;}
._1{margin-left:-1.024000pt;}
._2{width:1.090347pt;}
._a{width:2.088533pt;}
._4{width:3.134080pt;}
._5{width:4.037120pt;}
._f{width:5.254400pt;}
._3{width:6.640000pt;}
._10{width:7.552853pt;}
._d{width:9.296000pt;}
._e{width:10.231680pt;}
._c{width:11.845760pt;}
._11{width:14.767360pt;}
._12{width:16.197120pt;}
._13{width:17.852800pt;}
._6{width:750.070827pt;}
._0{width:754.667947pt;}
.fs6{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:128.000000pt;}
.y7{bottom:-43.680000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.080000pt;}
.y33{bottom:2.880000pt;}
.yf{bottom:3.520000pt;}
.y11{bottom:5.920000pt;}
.y15{bottom:6.080000pt;}
.y23{bottom:6.240000pt;}
.y6{bottom:8.480000pt;}
.y13{bottom:8.800000pt;}
.y31{bottom:10.880000pt;}
.y1c{bottom:11.040000pt;}
.y32{bottom:18.880000pt;}
.ye{bottom:20.800000pt;}
.y1f{bottom:36.832000pt;}
.y1b{bottom:37.472000pt;}
.yd{bottom:38.080000pt;}
.yb{bottom:44.840000pt;}
.y5{bottom:49.920000pt;}
.y1a{bottom:50.112000pt;}
.y1e{bottom:53.312000pt;}
.yc{bottom:56.032000pt;}
.y19{bottom:72.512000pt;}
.y60{bottom:88.352000pt;}
.y7f{bottom:92.672000pt;}
.ya4{bottom:98.752000pt;}
.y18{bottom:99.712000pt;}
.ye2{bottom:100.512000pt;}
.y5f{bottom:117.472000pt;}
.y17{bottom:122.112000pt;}
.ye1{bottom:132.192000pt;}
.ya3{bottom:132.992000pt;}
.y16{bottom:142.106667pt;}
.y5e{bottom:143.546667pt;}
.ye0{bottom:150.906667pt;}
.ya2{bottom:162.106667pt;}
.y14{bottom:164.346667pt;}
.ydf{bottom:169.466667pt;}
.y12{bottom:185.946667pt;}
.ya1{bottom:191.226667pt;}
.yde{bottom:198.906667pt;}
.y10{bottom:208.346667pt;}
.ya0{bottom:220.186667pt;}
.ydd{bottom:227.866667pt;}
.yba{bottom:232.986667pt;}
.ya{bottom:246.266667pt;}
.ydc{bottom:246.426667pt;}
.y9f{bottom:249.306667pt;}
.ydb{bottom:265.146667pt;}
.yb9{bottom:269.466667pt;}
.y9e{bottom:278.466667pt;}
.yda{bottom:283.906667pt;}
.y7e{bottom:292.706667pt;}
.yd9{bottom:302.466667pt;}
.yb8{bottom:303.906667pt;}
.y9d{bottom:307.426667pt;}
.y7d{bottom:311.106667pt;}
.yd8{bottom:321.186667pt;}
.y7c{bottom:329.506667pt;}
.yb7{bottom:332.866667pt;}
.y9c{bottom:336.546667pt;}
.y8{bottom:342.786667pt;}
.y7b{bottom:347.906667pt;}
.yd7{bottom:350.466667pt;}
.yb6{bottom:361.986667pt;}
.y9b{bottom:365.666667pt;}
.y4{bottom:376.546667pt;}
.y7a{bottom:376.866667pt;}
.yd6{bottom:379.426667pt;}
.yb5{bottom:391.106667pt;}
.y9a{bottom:394.626667pt;}
.yd5{bottom:398.146667pt;}
.y79{bottom:405.986667pt;}
.y99{bottom:413.026667pt;}
.yd4{bottom:416.866667pt;}
.yb4{bottom:420.066667pt;}
.y3b{bottom:421.186667pt;}
.y78{bottom:435.106667pt;}
.yd3{bottom:435.426667pt;}
.y98{bottom:442.146667pt;}
.yb3{bottom:449.186667pt;}
.yd2{bottom:454.146667pt;}
.y3a{bottom:455.426667pt;}
.y5d{bottom:457.666667pt;}
.y97{bottom:460.546667pt;}
.y77{bottom:464.066667pt;}
.yd1{bottom:472.706667pt;}
.y39{bottom:473.826667pt;}
.y5c{bottom:476.066667pt;}
.yb2{bottom:478.306667pt;}
.y96{bottom:490.626667pt;}
.yd0{bottom:491.426667pt;}
.y38{bottom:492.226667pt;}
.y76{bottom:493.186667pt;}
.y5b{bottom:494.466667pt;}
.yb1{bottom:507.266667pt;}
.ycf{bottom:509.986667pt;}
.y37{bottom:510.626667pt;}
.y5a{bottom:512.866667pt;}
.y75{bottom:522.333333pt;}
.yce{bottom:528.733333pt;}
.yb0{bottom:537.373333pt;}
.y36{bottom:540.253333pt;}
.y59{bottom:542.813333pt;}
.ycd{bottom:547.293333pt;}
.y74{bottom:551.293333pt;}
.y95{bottom:551.453333pt;}
.ycc{bottom:566.013333pt;}
.y94{bottom:569.853333pt;}
.yaf{bottom:571.293333pt;}
.y58{bottom:574.653333pt;}
.y35{bottom:575.133333pt;}
.y73{bottom:580.413333pt;}
.ycb{bottom:584.573333pt;}
.y93{bottom:588.253333pt;}
.y57{bottom:593.053333pt;}
.yca{bottom:603.293333pt;}
.y92{bottom:606.653333pt;}
.yae{bottom:607.613333pt;}
.y72{bottom:609.533333pt;}
.y34{bottom:610.013333pt;}
.y56{bottom:611.453333pt;}
.yc9{bottom:621.853333pt;}
.y30{bottom:629.053333pt;}
.y55{bottom:629.853333pt;}
.y91{bottom:635.773333pt;}
.y71{bottom:638.493333pt;}
.yc8{bottom:640.573333pt;}
.yad{bottom:644.093333pt;}
.y54{bottom:648.253333pt;}
.y90{bottom:654.173333pt;}
.yc7{bottom:659.133333pt;}
.y2f{bottom:661.693333pt;}
.y70{bottom:667.613333pt;}
.y8f{bottom:672.573333pt;}
.y53{bottom:678.333333pt;}
.yac{bottom:680.573333pt;}
.y2e{bottom:685.053333pt;}
.yc6{bottom:688.573333pt;}
.y8e{bottom:690.973333pt;}
.y6f{bottom:696.733333pt;}
.y2d{bottom:708.413333pt;}
.y8d{bottom:709.373333pt;}
.y46{bottom:711.933333pt;}
.y52{bottom:712.093333pt;}
.yab{bottom:716.893333pt;}
.yc5{bottom:717.533333pt;}
.y6e{bottom:725.693333pt;}
.yc4{bottom:736.253333pt;}
.y8c{bottom:738.333333pt;}
.y45{bottom:742.653333pt;}
.y6d{bottom:744.093333pt;}
.y51{bottom:746.493333pt;}
.y2c{bottom:748.093333pt;}
.yaa{bottom:753.373333pt;}
.yc3{bottom:754.813333pt;}
.y8b{bottom:756.733333pt;}
.y6c{bottom:762.493333pt;}
.y2b{bottom:767.173333pt;}
.y44{bottom:770.533333pt;}
.yc2{bottom:773.573333pt;}
.y8a{bottom:775.173333pt;}
.y50{bottom:775.653333pt;}
.ya9{bottom:789.893333pt;}
.y2a{bottom:790.533333pt;}
.y6b{bottom:791.653333pt;}
.yc1{bottom:792.133333pt;}
.y89{bottom:793.573333pt;}
.y4f{bottom:794.053333pt;}
.y43{bottom:795.813333pt;}
.y6a{bottom:810.053333pt;}
.yc0{bottom:810.853333pt;}
.y88{bottom:811.973333pt;}
.y4e{bottom:812.453333pt;}
.y29{bottom:813.893333pt;}
.y42{bottom:820.453333pt;}
.ya8{bottom:826.213333pt;}
.ybf{bottom:829.413333pt;}
.y28{bottom:837.253333pt;}
.y69{bottom:839.013333pt;}
.y87{bottom:841.093333pt;}
.y4d{bottom:841.413333pt;}
.y41{bottom:844.453333pt;}
.ybe{bottom:848.133333pt;}
.y68{bottom:857.733333pt;}
.y86{bottom:859.493333pt;}
.y4c{bottom:859.813333pt;}
.y27{bottom:860.613333pt;}
.ya7{bottom:862.693333pt;}
.ybd{bottom:866.853333pt;}
.y40{bottom:868.293333pt;}
.y67{bottom:876.293333pt;}
.y85{bottom:877.893333pt;}
.y4b{bottom:878.213333pt;}
.y26{bottom:883.813333pt;}
.ybc{bottom:885.413333pt;}
.y3f{bottom:892.293333pt;}
.y66{bottom:895.013333pt;}
.y84{bottom:896.293333pt;}
.ya6{bottom:899.173333pt;}
.ybb{bottom:904.133333pt;}
.y25{bottom:907.173333pt;}
.y4a{bottom:907.333333pt;}
.y65{bottom:913.573333pt;}
.y83{bottom:914.693333pt;}
.y3e{bottom:916.293333pt;}
.y49{bottom:925.733333pt;}
.y24{bottom:930.533333pt;}
.y64{bottom:932.293333pt;}
.ya5{bottom:933.413333pt;}
.y3d{bottom:940.133333pt;}
.y82{bottom:943.813333pt;}
.y48{bottom:944.133333pt;}
.y63{bottom:950.853333pt;}
.y22{bottom:953.893333pt;}
.y81{bottom:962.213333pt;}
.y47{bottom:962.533333pt;}
.y3c{bottom:964.133333pt;}
.y62{bottom:969.573333pt;}
.y80{bottom:980.613333pt;}
.y21{bottom:993.733333pt;}
.y61{bottom:999.013333pt;}
.y3{bottom:1005.573333pt;}
.y1d{bottom:1015.040000pt;}
.y2{bottom:1033.440000pt;}
.y20{bottom:1038.880000pt;}
.y1{bottom:1061.440000pt;}
.ha{height:21.760000pt;}
.hc{height:21.920000pt;}
.h12{height:22.560000pt;}
.h10{height:22.720000pt;}
.h5{height:23.200000pt;}
.hd{height:24.160000pt;}
.h13{height:32.000000pt;}
.he{height:33.920000pt;}
.h11{height:46.426880pt;}
.h2{height:49.189120pt;}
.h9{height:51.200000pt;}
.h16{height:54.598989pt;}
.hb{height:55.936000pt;}
.h14{height:58.563750pt;}
.h15{height:59.264000pt;}
.h7{height:63.232000pt;}
.hf{height:65.445120pt;}
.h8{height:69.338880pt;}
.h6{height:78.821120pt;}
.h3{height:81.440000pt;}
.h4{height:111.872000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:74.592000pt;}
.wd{width:93.792000pt;}
.we{width:122.240000pt;}
.wa{width:225.826667pt;}
.w5{width:313.213333pt;}
.w7{width:316.546667pt;}
.w6{width:316.706667pt;}
.wf{width:403.933333pt;}
.w4{width:426.493333pt;}
.wb{width:470.013333pt;}
.w9{width:477.733333pt;}
.w8{width:487.493333pt;}
.w3{width:714.560000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.xa{left:9.600000pt;}
.x8{left:37.160000pt;}
.x2{left:39.680000pt;}
.x14{left:42.240000pt;}
.x1{left:47.999988pt;}
.x3{left:57.632000pt;}
.x1b{left:62.719988pt;}
.x1d{left:72.031988pt;}
.x18{left:124.032000pt;}
.x11{left:168.040000pt;}
.x7{left:183.706667pt;}
.xc{left:188.360000pt;}
.x9{left:190.906667pt;}
.x4{left:196.546667pt;}
.xf{left:211.400000pt;}
.x19{left:218.466667pt;}
.x10{left:238.466667pt;}
.x12{left:252.226667pt;}
.xd{left:261.506667pt;}
.x17{left:275.266667pt;}
.x6{left:278.146667pt;}
.x13{left:288.546667pt;}
.x1a{left:341.346667pt;}
.x5{left:357.213333pt;}
.xb{left:415.773333pt;}
.xe{left:417.213333pt;}
.x1e{left:583.013322pt;}
.x1c{left:620.133322pt;}
.x15{left:736.639988pt;}
}




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