
    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_8c903af5065cd480ac98fcd8.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_9ea9c833092ae736f85d2610.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_51ea01cbb5a98d23231f9c43.woff')format("woff");}.ff3{font-family:ff3;line-height:1.078613;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_236f47bbc3407c3c6ef5cb8b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_4038ad99bcb9c8cea32bccb4.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_46b12f97fbe82182b30905ce.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_768d684bd033b12e8a1292f6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_a041e50184ef660e3c25b39c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_75db79f9d529bade16d4a816.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7a8c25d438a624ae364b3232.woff')format("woff");}.ffa{font-family:ffa;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:-78.480000px;}
.v2{vertical-align:-66.240000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.398400px;}
.lse{letter-spacing:-0.180000px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012240px;}
.ls5{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.504000px;}
.lsd{letter-spacing:9.900000px;}
.ls2{letter-spacing:10.080000px;}
.lsc{letter-spacing:10.620000px;}
.ls1{letter-spacing:10.800000px;}
.ls10{letter-spacing:11.316000px;}
.lsf{letter-spacing:12.060000px;}
.lsa{letter-spacing:16.380000px;}
.ls9{letter-spacing:19.980000px;}
.ls12{letter-spacing:33.984000px;}
.ls4{letter-spacing:40.140000px;}
.ls0{letter-spacing:47.700000px;}
.ls3{letter-spacing:901.020000px;}
.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;}
}
.ws3{word-spacing:-84.240000px;}
.ws0{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.880000px;}
.ws5{word-spacing:-20.661600px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.516320px;}
._1{width:1.162560px;}
._3{width:3.048000px;}
._d{width:5.054400px;}
._e{width:6.166320px;}
._18{width:7.475760px;}
._13{width:8.585520px;}
._2{width:10.200000px;}
._c{width:11.274240px;}
._1b{width:12.433200px;}
._19{width:13.478400px;}
._1a{width:14.708160px;}
._15{width:16.511040px;}
._14{width:17.690400px;}
._f{width:19.012320px;}
._4{width:20.088000px;}
._5{width:21.157440px;}
._17{width:22.554960px;}
._27{width:24.149760px;}
._1c{width:25.356240px;}
._6{width:26.712000px;}
._7{width:27.997440px;}
._1d{width:31.084560px;}
._8{width:32.544000px;}
._9{width:33.852000px;}
._10{width:35.296560px;}
._11{width:36.307440px;}
._16{width:37.655280px;}
._a{width:39.592800px;}
._b{width:42.110160px;}
._23{width:49.586640px;}
._20{width:50.712480px;}
._21{width:52.060320px;}
._26{width:57.406320px;}
._22{width:58.631040px;}
._28{width:71.182800px;}
._29{width:72.277920px;}
._1e{width:79.522560px;}
._1f{width:80.786160px;}
._24{width:86.009040px;}
._25{width:87.525360px;}
._2a{width:120.715920px;}
._12{width:150.958080px;}
.fc4{color:rgb(0,176,240);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{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:40.680000px;}
.y72{bottom:64.974000px;}
.y2d{bottom:82.836000px;}
.y8c{bottom:84.636000px;}
.y6b{bottom:87.876000px;}
.y71{bottom:89.094000px;}
.y52{bottom:93.096000px;}
.y2c{bottom:110.556000px;}
.y8b{bottom:112.356000px;}
.y70{bottom:113.214000px;}
.y51{bottom:117.216000px;}
.y6f{bottom:137.334000px;}
.y2b{bottom:138.276000px;}
.y8a{bottom:140.076000px;}
.y50{bottom:141.336000px;}
.y6e{bottom:161.454000px;}
.y4f{bottom:165.450000px;}
.y2a{bottom:165.990000px;}
.y89{bottom:167.970000px;}
.y6d{bottom:185.574000px;}
.y4e{bottom:193.170000px;}
.y29{bottom:193.890000px;}
.y88{bottom:195.690000px;}
.y6c{bottom:209.919000px;}
.y4d{bottom:221.070000px;}
.y28{bottom:221.610000px;}
.y87{bottom:223.410000px;}
.y4c{bottom:248.790000px;}
.y27{bottom:249.330000px;}
.y86{bottom:251.130000px;}
.y4b{bottom:276.510000px;}
.y26{bottom:277.230000px;}
.y85{bottom:279.030000px;}
.y4a{bottom:300.675000px;}
.y25{bottom:304.995000px;}
.y84{bottom:306.795000px;}
.y49{bottom:324.975000px;}
.y6a{bottom:325.515000px;}
.y24{bottom:332.715000px;}
.y83{bottom:334.515000px;}
.y48{bottom:349.095000px;}
.y69{bottom:353.595000px;}
.y23{bottom:360.435000px;}
.y82{bottom:362.415000px;}
.y47{bottom:373.215000px;}
.y68{bottom:383.295000px;}
.y22{bottom:388.335000px;}
.y81{bottom:390.135000px;}
.y46{bottom:397.335000px;}
.y67{bottom:412.455000px;}
.y21{bottom:416.055000px;}
.y80{bottom:417.855000px;}
.y45{bottom:421.455000px;}
.y66{bottom:440.175000px;}
.y20{bottom:443.775000px;}
.y44{bottom:445.575000px;}
.y65{bottom:467.895000px;}
.y43{bottom:469.695000px;}
.y7f{bottom:469.875000px;}
.y1f{bottom:471.675000px;}
.y42{bottom:493.995000px;}
.y64{bottom:495.795000px;}
.y1e{bottom:499.395000px;}
.y41{bottom:518.115000px;}
.y63{bottom:523.515000px;}
.y1d{bottom:527.115000px;}
.y40{bottom:542.235000px;}
.y62{bottom:551.235000px;}
.y1c{bottom:555.195000px;}
.y3f{bottom:566.385000px;}
.y61{bottom:579.165000px;}
.y3e{bottom:590.505000px;}
.y1b{bottom:595.905000px;}
.y60{bottom:606.885000px;}
.y3d{bottom:614.625000px;}
.y1a{bottom:616.605000px;}
.y5f{bottom:634.605000px;}
.y19{bottom:637.305000px;}
.y3c{bottom:638.925000px;}
.y18{bottom:658.005000px;}
.y5e{bottom:662.325000px;}
.y3b{bottom:663.045000px;}
.y17{bottom:678.705000px;}
.y3a{bottom:687.165000px;}
.y5d{bottom:690.225000px;}
.y7e{bottom:690.765000px;}
.y98{bottom:691.305000px;}
.y16{bottom:698.685000px;}
.y5c{bottom:714.345000px;}
.y39{bottom:714.885000px;}
.y15{bottom:716.685000px;}
.y7d{bottom:718.485000px;}
.y97{bottom:719.025000px;}
.y14{bottom:737.205000px;}
.y5b{bottom:738.465000px;}
.y38{bottom:742.605000px;}
.y7c{bottom:746.385000px;}
.y96{bottom:746.925000px;}
.y13{bottom:757.905000px;}
.y5a{bottom:762.585000px;}
.y37{bottom:770.505000px;}
.y7b{bottom:774.105000px;}
.y95{bottom:774.645000px;}
.y12{bottom:778.605000px;}
.y59{bottom:786.705000px;}
.y94{bottom:798.225000px;}
.y11{bottom:798.405000px;}
.y36{bottom:798.585000px;}
.y7a{bottom:801.825000px;}
.y58{bottom:810.825000px;}
.y10{bottom:814.965000px;}
.y93{bottom:818.925000px;}
.y35{bottom:827.745000px;}
.y79{bottom:829.545000px;}
.y57{bottom:835.125000px;}
.yf{bottom:835.665000px;}
.y92{bottom:839.625000px;}
.y34{bottom:855.690000px;}
.ye{bottom:856.410000px;}
.y78{bottom:857.490000px;}
.y56{bottom:859.290000px;}
.y91{bottom:860.370000px;}
.yd{bottom:877.110000px;}
.y90{bottom:881.070000px;}
.y33{bottom:883.410000px;}
.y77{bottom:885.210000px;}
.yc{bottom:896.730000px;}
.y8f{bottom:901.770000px;}
.y32{bottom:911.130000px;}
.y76{bottom:912.930000px;}
.y8e{bottom:923.730000px;}
.yb{bottom:932.910000px;}
.y31{bottom:938.850000px;}
.y75{bottom:940.830000px;}
.y8d{bottom:946.410000px;}
.ya{bottom:949.470000px;}
.y30{bottom:966.750000px;}
.y55{bottom:967.110000px;}
.y74{bottom:968.550000px;}
.y9{bottom:970.170000px;}
.y8{bottom:990.870000px;}
.y2f{bottom:994.470000px;}
.y54{bottom:996.270000px;}
.y7{bottom:1010.490000px;}
.y2e{bottom:1022.550000px;}
.y53{bottom:1023.990000px;}
.y6{bottom:1027.770000px;}
.y5{bottom:1051.890000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.ha{height:52.971680px;}
.h8{height:52.998047px;}
.h5{height:54.421875px;}
.hb{height:58.621992px;}
.hc{height:59.066719px;}
.h9{height:59.343750px;}
.hf{height:60.226875px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.h10{height:72.562500px;}
.h11{height:74.004654px;}
.hd{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.he{height:229.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w4{width:369.435000px;}
.w5{width:369.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:27.360000px;}
.xd{left:61.056000px;}
.xc{left:77.040000px;}
.x1{left:84.959987px;}
.x10{left:90.035987px;}
.x11{left:117.035987px;}
.xa{left:138.095987px;}
.x4{left:175.349987px;}
.x5{left:199.109987px;}
.xb{left:212.609987px;}
.x8{left:238.529987px;}
.x7{left:292.034987px;}
.x9{left:340.634987px;}
.xf{left:369.434987px;}
.x2{left:409.035000px;}
.x6{left:446.474987px;}
.xe{left:472.964987px;}
@media print{
.v1{vertical-align:-69.760000pt;}
.v2{vertical-align:-58.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.354133pt;}
.lse{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.010880pt;}
.ls5{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.448000pt;}
.lsd{letter-spacing:8.800000pt;}
.ls2{letter-spacing:8.960000pt;}
.lsc{letter-spacing:9.440000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls10{letter-spacing:10.058667pt;}
.lsf{letter-spacing:10.720000pt;}
.lsa{letter-spacing:14.560000pt;}
.ls9{letter-spacing:17.760000pt;}
.ls12{letter-spacing:30.208000pt;}
.ls4{letter-spacing:35.680000pt;}
.ls0{letter-spacing:42.400000pt;}
.ls3{letter-spacing:800.906667pt;}
.ws3{word-spacing:-74.880000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.560000pt;}
.ws5{word-spacing:-18.365867pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.347840pt;}
._1{width:1.033387pt;}
._3{width:2.709333pt;}
._d{width:4.492800pt;}
._e{width:5.481173pt;}
._18{width:6.645120pt;}
._13{width:7.631573pt;}
._2{width:9.066667pt;}
._c{width:10.021547pt;}
._1b{width:11.051733pt;}
._19{width:11.980800pt;}
._1a{width:13.073920pt;}
._15{width:14.676480pt;}
._14{width:15.724800pt;}
._f{width:16.899840pt;}
._4{width:17.856000pt;}
._5{width:18.806613pt;}
._17{width:20.048853pt;}
._27{width:21.466453pt;}
._1c{width:22.538880pt;}
._6{width:23.744000pt;}
._7{width:24.886613pt;}
._1d{width:27.630720pt;}
._8{width:28.928000pt;}
._9{width:30.090667pt;}
._10{width:31.374720pt;}
._11{width:32.273280pt;}
._16{width:33.471360pt;}
._a{width:35.193600pt;}
._b{width:37.431253pt;}
._23{width:44.077013pt;}
._20{width:45.077760pt;}
._21{width:46.275840pt;}
._26{width:51.027840pt;}
._22{width:52.116480pt;}
._28{width:63.273600pt;}
._29{width:64.247040pt;}
._1e{width:70.686720pt;}
._1f{width:71.809920pt;}
._24{width:76.452480pt;}
._25{width:77.800320pt;}
._2a{width:107.303040pt;}
._12{width:134.184960pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{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:36.160000pt;}
.y72{bottom:57.754667pt;}
.y2d{bottom:73.632000pt;}
.y8c{bottom:75.232000pt;}
.y6b{bottom:78.112000pt;}
.y71{bottom:79.194667pt;}
.y52{bottom:82.752000pt;}
.y2c{bottom:98.272000pt;}
.y8b{bottom:99.872000pt;}
.y70{bottom:100.634667pt;}
.y51{bottom:104.192000pt;}
.y6f{bottom:122.074667pt;}
.y2b{bottom:122.912000pt;}
.y8a{bottom:124.512000pt;}
.y50{bottom:125.632000pt;}
.y6e{bottom:143.514667pt;}
.y4f{bottom:147.066667pt;}
.y2a{bottom:147.546667pt;}
.y89{bottom:149.306667pt;}
.y6d{bottom:164.954667pt;}
.y4e{bottom:171.706667pt;}
.y29{bottom:172.346667pt;}
.y88{bottom:173.946667pt;}
.y6c{bottom:186.594667pt;}
.y4d{bottom:196.506667pt;}
.y28{bottom:196.986667pt;}
.y87{bottom:198.586667pt;}
.y4c{bottom:221.146667pt;}
.y27{bottom:221.626667pt;}
.y86{bottom:223.226667pt;}
.y4b{bottom:245.786667pt;}
.y26{bottom:246.426667pt;}
.y85{bottom:248.026667pt;}
.y4a{bottom:267.266667pt;}
.y25{bottom:271.106667pt;}
.y84{bottom:272.706667pt;}
.y49{bottom:288.866667pt;}
.y6a{bottom:289.346667pt;}
.y24{bottom:295.746667pt;}
.y83{bottom:297.346667pt;}
.y48{bottom:310.306667pt;}
.y69{bottom:314.306667pt;}
.y23{bottom:320.386667pt;}
.y82{bottom:322.146667pt;}
.y47{bottom:331.746667pt;}
.y68{bottom:340.706667pt;}
.y22{bottom:345.186667pt;}
.y81{bottom:346.786667pt;}
.y46{bottom:353.186667pt;}
.y67{bottom:366.626667pt;}
.y21{bottom:369.826667pt;}
.y80{bottom:371.426667pt;}
.y45{bottom:374.626667pt;}
.y66{bottom:391.266667pt;}
.y20{bottom:394.466667pt;}
.y44{bottom:396.066667pt;}
.y65{bottom:415.906667pt;}
.y43{bottom:417.506667pt;}
.y7f{bottom:417.666667pt;}
.y1f{bottom:419.266667pt;}
.y42{bottom:439.106667pt;}
.y64{bottom:440.706667pt;}
.y1e{bottom:443.906667pt;}
.y41{bottom:460.546667pt;}
.y63{bottom:465.346667pt;}
.y1d{bottom:468.546667pt;}
.y40{bottom:481.986667pt;}
.y62{bottom:489.986667pt;}
.y1c{bottom:493.506667pt;}
.y3f{bottom:503.453333pt;}
.y61{bottom:514.813333pt;}
.y3e{bottom:524.893333pt;}
.y1b{bottom:529.693333pt;}
.y60{bottom:539.453333pt;}
.y3d{bottom:546.333333pt;}
.y1a{bottom:548.093333pt;}
.y5f{bottom:564.093333pt;}
.y19{bottom:566.493333pt;}
.y3c{bottom:567.933333pt;}
.y18{bottom:584.893333pt;}
.y5e{bottom:588.733333pt;}
.y3b{bottom:589.373333pt;}
.y17{bottom:603.293333pt;}
.y3a{bottom:610.813333pt;}
.y5d{bottom:613.533333pt;}
.y7e{bottom:614.013333pt;}
.y98{bottom:614.493333pt;}
.y16{bottom:621.053333pt;}
.y5c{bottom:634.973333pt;}
.y39{bottom:635.453333pt;}
.y15{bottom:637.053333pt;}
.y7d{bottom:638.653333pt;}
.y97{bottom:639.133333pt;}
.y14{bottom:655.293333pt;}
.y5b{bottom:656.413333pt;}
.y38{bottom:660.093333pt;}
.y7c{bottom:663.453333pt;}
.y96{bottom:663.933333pt;}
.y13{bottom:673.693333pt;}
.y5a{bottom:677.853333pt;}
.y37{bottom:684.893333pt;}
.y7b{bottom:688.093333pt;}
.y95{bottom:688.573333pt;}
.y12{bottom:692.093333pt;}
.y59{bottom:699.293333pt;}
.y94{bottom:709.533333pt;}
.y11{bottom:709.693333pt;}
.y36{bottom:709.853333pt;}
.y7a{bottom:712.733333pt;}
.y58{bottom:720.733333pt;}
.y10{bottom:724.413333pt;}
.y93{bottom:727.933333pt;}
.y35{bottom:735.773333pt;}
.y79{bottom:737.373333pt;}
.y57{bottom:742.333333pt;}
.yf{bottom:742.813333pt;}
.y92{bottom:746.333333pt;}
.y34{bottom:760.613333pt;}
.ye{bottom:761.253333pt;}
.y78{bottom:762.213333pt;}
.y56{bottom:763.813333pt;}
.y91{bottom:764.773333pt;}
.yd{bottom:779.653333pt;}
.y90{bottom:783.173333pt;}
.y33{bottom:785.253333pt;}
.y77{bottom:786.853333pt;}
.yc{bottom:797.093333pt;}
.y8f{bottom:801.573333pt;}
.y32{bottom:809.893333pt;}
.y76{bottom:811.493333pt;}
.y8e{bottom:821.093333pt;}
.yb{bottom:829.253333pt;}
.y31{bottom:834.533333pt;}
.y75{bottom:836.293333pt;}
.y8d{bottom:841.253333pt;}
.ya{bottom:843.973333pt;}
.y30{bottom:859.333333pt;}
.y55{bottom:859.653333pt;}
.y74{bottom:860.933333pt;}
.y9{bottom:862.373333pt;}
.y8{bottom:880.773333pt;}
.y2f{bottom:883.973333pt;}
.y54{bottom:885.573333pt;}
.y7{bottom:898.213333pt;}
.y2e{bottom:908.933333pt;}
.y53{bottom:910.213333pt;}
.y6{bottom:913.573333pt;}
.y5{bottom:935.013333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.ha{height:47.085938pt;}
.h8{height:47.109375pt;}
.h5{height:48.375000pt;}
.hb{height:52.108438pt;}
.hc{height:52.503750pt;}
.h9{height:52.750000pt;}
.hf{height:53.535000pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.h10{height:64.500000pt;}
.h11{height:65.781915pt;}
.hd{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.he{height:204.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w4{width:328.386667pt;}
.w5{width:328.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:24.320000pt;}
.xd{left:54.272000pt;}
.xc{left:68.480000pt;}
.x1{left:75.519988pt;}
.x10{left:80.031988pt;}
.x11{left:104.031988pt;}
.xa{left:122.751988pt;}
.x4{left:155.866655pt;}
.x5{left:176.986655pt;}
.xb{left:188.986655pt;}
.x8{left:212.026655pt;}
.x7{left:259.586655pt;}
.x9{left:302.786655pt;}
.xf{left:328.386655pt;}
.x2{left:363.586667pt;}
.x6{left:396.866655pt;}
.xe{left:420.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; }
  