
    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_57c23bc11af724f3927e037f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_775529c5b473c0a827c434e0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e1c4e46192d4e7d64b239a9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_1907fef6349be887722689c6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_16021952fea605419a9a6134.woff2')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_bd83bcb9e4de0a9e73145e9a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090820;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_fa718b18eba5c6a547b3ad5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056152;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_757db66664116be54d6a6541.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.128418;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_b46100962ae4d183ebbdbbae.woff2')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;}
.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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.291600px;}
.ls17{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.259920px;}
.ls1d{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.480000px;}
.ls5{letter-spacing:1.620000px;}
.ls1b{letter-spacing:2.106720px;}
.ls4{letter-spacing:2.340000px;}
.lsa{letter-spacing:3.060000px;}
.ls6{letter-spacing:3.780000px;}
.ls10{letter-spacing:4.500000px;}
.ls3{letter-spacing:6.060000px;}
.ls9{letter-spacing:6.660000px;}
.ls8{letter-spacing:7.380000px;}
.lse{letter-spacing:8.100000px;}
.ls14{letter-spacing:10.980000px;}
.lsb{letter-spacing:11.700000px;}
.ls13{letter-spacing:13.860000px;}
.lsf{letter-spacing:15.300000px;}
.lsd{letter-spacing:28.956000px;}
.lsc{letter-spacing:28.980000px;}
.ls1a{letter-spacing:31.602720px;}
.ls16{letter-spacing:31.626720px;}
.ls0{letter-spacing:123.300000px;}
.ls15{letter-spacing:375.300000px;}
.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:-15.300000px;}
.ws3{word-spacing:-15.199800px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.648400px;}
.ws6{word-spacing:-14.580000px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-3.613680px;}
._5{margin-left:-2.509920px;}
._4{margin-left:-1.314720px;}
._0{width:1.075680px;}
._1{width:2.463600px;}
._a{width:3.751440px;}
._d{width:4.854000px;}
._8{width:6.155280px;}
._9{width:7.171200px;}
._f{width:8.545680px;}
._10{width:9.680160px;}
._e{width:10.756800px;}
._11{width:12.609360px;}
._14{width:13.687680px;}
._6{width:16.374240px;}
._7{width:17.390160px;}
._b{width:19.242720px;}
._c{width:20.660880px;}
._12{width:21.784800px;}
._17{width:23.127120px;}
._1a{width:24.501600px;}
._13{width:26.294400px;}
._1f{width:27.549360px;}
._21{width:28.923840px;}
._1d{width:30.298320px;}
._16{width:32.509440px;}
._18{width:33.585120px;}
._2a{width:35.598960px;}
._20{width:37.469520px;}
._24{width:39.095760px;}
._3a{width:40.372320px;}
._1c{width:41.848560px;}
._2b{width:43.524480px;}
._31{width:44.879760px;}
._2f{width:45.895680px;}
._41{width:46.911600px;}
._29{width:49.600800px;}
._1e{width:50.676480px;}
._26{width:52.603680px;}
._39{width:58.537200px;}
._2c{width:60.473280px;}
._42{width:63.345600px;}
._34{width:64.962480px;}
._30{width:66.632400px;}
._3b{width:69.437280px;}
._35{width:70.516800px;}
._19{width:71.771760px;}
._1b{width:77.807520px;}
._28{width:78.883200px;}
._25{width:80.059680px;}
._43{width:86.646720px;}
._3d{width:89.520480px;}
._38{width:92.448720px;}
._37{width:94.154160px;}
._2d{width:100.815120px;}
._23{width:104.400720px;}
._22{width:105.595920px;}
._40{width:112.826880px;}
._3f{width:114.440400px;}
._33{width:117.240240px;}
._3c{width:131.946480px;}
._27{width:139.360320px;}
._2e{width:171.511200px;}
._36{width:193.046880px;}
._3e{width:203.671920px;}
._3{width:263.514720px;}
._2{width:768.843840px;}
._44{width:849.216000px;}
._32{width:937.096560px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:56.160000px;}
.y7d{bottom:105.120000px;}
.y3d{bottom:109.080000px;}
.y7c{bottom:122.400000px;}
.y3c{bottom:126.360000px;}
.y7b{bottom:139.680000px;}
.y3b{bottom:143.460000px;}
.y7a{bottom:156.960000px;}
.y3a{bottom:160.770000px;}
.y79{bottom:174.270000px;}
.y39{bottom:178.050000px;}
.y78{bottom:191.370000px;}
.y38{bottom:195.330000px;}
.y77{bottom:208.650000px;}
.y37{bottom:212.610000px;}
.y76{bottom:225.930000px;}
.y36{bottom:229.890000px;}
.y75{bottom:243.210000px;}
.y35{bottom:246.990000px;}
.y74{bottom:260.490000px;}
.y34{bottom:263.910000px;}
.y73{bottom:277.770000px;}
.y33{bottom:281.550000px;}
.y72{bottom:294.870000px;}
.y32{bottom:298.830000px;}
.y71{bottom:312.150000px;}
.y31{bottom:316.110000px;}
.y70{bottom:329.430000px;}
.y30{bottom:333.210000px;}
.y6f{bottom:346.710000px;}
.y2f{bottom:350.490000px;}
.y6e{bottom:363.990000px;}
.y2e{bottom:367.770000px;}
.y6d{bottom:381.090000px;}
.y2d{bottom:385.050000px;}
.y6c{bottom:398.370000px;}
.y2c{bottom:402.330000px;}
.y6b{bottom:415.695000px;}
.y2b{bottom:419.655000px;}
.y6a{bottom:432.975000px;}
.y2a{bottom:436.755000px;}
.y69{bottom:450.255000px;}
.y29{bottom:454.035000px;}
.y68{bottom:467.535000px;}
.y28{bottom:471.315000px;}
.y67{bottom:484.635000px;}
.y27{bottom:488.595000px;}
.y66{bottom:501.915000px;}
.y26{bottom:505.875000px;}
.y65{bottom:519.195000px;}
.y25{bottom:523.155000px;}
.y64{bottom:536.475000px;}
.y24{bottom:540.255000px;}
.y63{bottom:553.755000px;}
.y23{bottom:557.535000px;}
.y62{bottom:571.035000px;}
.y22{bottom:574.815000px;}
.y61{bottom:588.135000px;}
.y21{bottom:591.735000px;}
.y82{bottom:605.055000px;}
.y60{bottom:605.415000px;}
.y20{bottom:609.375000px;}
.y5f{bottom:622.695000px;}
.y1f{bottom:626.655000px;}
.y81{bottom:639.615000px;}
.y5e{bottom:639.975000px;}
.y1e{bottom:643.755000px;}
.y5d{bottom:657.285000px;}
.y1d{bottom:661.065000px;}
.y5c{bottom:674.385000px;}
.y1c{bottom:678.345000px;}
.y5b{bottom:691.665000px;}
.y1b{bottom:695.625000px;}
.y80{bottom:708.585000px;}
.y5a{bottom:708.945000px;}
.y1a{bottom:712.545000px;}
.y7f{bottom:725.865000px;}
.y59{bottom:726.225000px;}
.y19{bottom:730.005000px;}
.y58{bottom:743.505000px;}
.y18{bottom:747.285000px;}
.y57{bottom:760.785000px;}
.y17{bottom:764.565000px;}
.y56{bottom:777.885000px;}
.y16{bottom:781.845000px;}
.y55{bottom:795.165000px;}
.y15{bottom:799.125000px;}
.y54{bottom:812.445000px;}
.y14{bottom:816.045000px;}
.y53{bottom:829.725000px;}
.y52{bottom:847.005000px;}
.y13{bottom:850.425000px;}
.y51{bottom:864.285000px;}
.y12{bottom:867.705000px;}
.y50{bottom:881.385000px;}
.y11{bottom:885.345000px;}
.y4f{bottom:898.710000px;}
.y10{bottom:902.670000px;}
.y4e{bottom:915.990000px;}
.yf{bottom:919.950000px;}
.y4d{bottom:933.270000px;}
.ye{bottom:937.050000px;}
.y4c{bottom:950.550000px;}
.yd{bottom:954.330000px;}
.y4b{bottom:967.830000px;}
.yc{bottom:971.250000px;}
.y4a{bottom:984.930000px;}
.yb{bottom:988.890000px;}
.y49{bottom:1001.850000px;}
.y7e{bottom:1002.210000px;}
.ya{bottom:1006.170000px;}
.y48{bottom:1019.490000px;}
.y9{bottom:1023.450000px;}
.y47{bottom:1036.770000px;}
.y8{bottom:1040.550000px;}
.y46{bottom:1054.050000px;}
.y7{bottom:1057.830000px;}
.y45{bottom:1071.150000px;}
.y6{bottom:1074.750000px;}
.y44{bottom:1088.430000px;}
.y43{bottom:1105.710000px;}
.y5{bottom:1109.310000px;}
.y42{bottom:1122.990000px;}
.y4{bottom:1126.410000px;}
.y41{bottom:1140.270000px;}
.y3{bottom:1144.080000px;}
.y40{bottom:1157.580000px;}
.y2{bottom:1163.880000px;}
.y3f{bottom:1174.680000px;}
.y1{bottom:1195.380000px;}
.h7{height:52.290000px;}
.h9{height:52.998047px;}
.h8{height:54.536836px;}
.h6{height:58.621992px;}
.h4{height:58.651172px;}
.h2{height:59.439023px;}
.h5{height:60.226875px;}
.ha{height:61.423863px;}
.h3{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x4{left:108.755987px;}
.x3{left:136.115987px;}
.xe{left:141.155987px;}
.xf{left:144.575987px;}
.x5{left:175.889987px;}
.x2{left:328.754987px;}
.xd{left:376.094987px;}
.x15{left:398.414987px;}
.x10{left:457.814987px;}
.x8{left:461.234987px;}
.x18{left:487.004987px;}
.x11{left:494.564987px;}
.x7{left:514.184987px;}
.x12{left:519.764987px;}
.x16{left:537.944987px;}
.xb{left:553.784987px;}
.x1a{left:555.044987px;}
.x9{left:626.324987px;}
.x19{left:636.764987px;}
.x14{left:686.489987px;}
.x13{left:699.809987px;}
.xc{left:700.889987px;}
.xa{left:702.689987px;}
.x6{left:704.669987px;}
.x17{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.259200pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.231040pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.426667pt;}
.ls5{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:1.872640pt;}
.ls4{letter-spacing:2.080000pt;}
.lsa{letter-spacing:2.720000pt;}
.ls6{letter-spacing:3.360000pt;}
.ls10{letter-spacing:4.000000pt;}
.ls3{letter-spacing:5.386667pt;}
.ls9{letter-spacing:5.920000pt;}
.ls8{letter-spacing:6.560000pt;}
.lse{letter-spacing:7.200000pt;}
.ls14{letter-spacing:9.760000pt;}
.lsb{letter-spacing:10.400000pt;}
.ls13{letter-spacing:12.320000pt;}
.lsf{letter-spacing:13.600000pt;}
.lsd{letter-spacing:25.738667pt;}
.lsc{letter-spacing:25.760000pt;}
.ls1a{letter-spacing:28.091307pt;}
.ls16{letter-spacing:28.112640pt;}
.ls0{letter-spacing:109.600000pt;}
.ls15{letter-spacing:333.600000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.510933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.020800pt;}
.ws6{word-spacing:-12.960000pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-3.212160pt;}
._5{margin-left:-2.231040pt;}
._4{margin-left:-1.168640pt;}
._0{width:0.956160pt;}
._1{width:2.189867pt;}
._a{width:3.334613pt;}
._d{width:4.314667pt;}
._8{width:5.471360pt;}
._9{width:6.374400pt;}
._f{width:7.596160pt;}
._10{width:8.604587pt;}
._e{width:9.561600pt;}
._11{width:11.208320pt;}
._14{width:12.166827pt;}
._6{width:14.554880pt;}
._7{width:15.457920pt;}
._b{width:17.104640pt;}
._c{width:18.365227pt;}
._12{width:19.364267pt;}
._17{width:20.557440pt;}
._1a{width:21.779200pt;}
._13{width:23.372800pt;}
._1f{width:24.488320pt;}
._21{width:25.710080pt;}
._1d{width:26.931840pt;}
._16{width:28.897280pt;}
._18{width:29.853440pt;}
._2a{width:31.643520pt;}
._20{width:33.306240pt;}
._24{width:34.751787pt;}
._3a{width:35.886507pt;}
._1c{width:37.198720pt;}
._2b{width:38.688427pt;}
._31{width:39.893120pt;}
._2f{width:40.796160pt;}
._41{width:41.699200pt;}
._29{width:44.089600pt;}
._1e{width:45.045760pt;}
._26{width:46.758827pt;}
._39{width:52.033067pt;}
._2c{width:53.754027pt;}
._42{width:56.307200pt;}
._34{width:57.744427pt;}
._30{width:59.228800pt;}
._3b{width:61.722027pt;}
._35{width:62.681600pt;}
._19{width:63.797120pt;}
._1b{width:69.162240pt;}
._28{width:70.118400pt;}
._25{width:71.164160pt;}
._43{width:77.019307pt;}
._3d{width:79.573760pt;}
._38{width:82.176640pt;}
._37{width:83.692587pt;}
._2d{width:89.613440pt;}
._23{width:92.800640pt;}
._22{width:93.863040pt;}
._40{width:100.290560pt;}
._3f{width:101.724800pt;}
._33{width:104.213547pt;}
._3c{width:117.285760pt;}
._27{width:123.875840pt;}
._2e{width:152.454400pt;}
._36{width:171.597227pt;}
._3e{width:181.041707pt;}
._3{width:234.235307pt;}
._2{width:683.416747pt;}
._44{width:754.858667pt;}
._32{width:832.974720pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:49.920000pt;}
.y7d{bottom:93.440000pt;}
.y3d{bottom:96.960000pt;}
.y7c{bottom:108.800000pt;}
.y3c{bottom:112.320000pt;}
.y7b{bottom:124.160000pt;}
.y3b{bottom:127.520000pt;}
.y7a{bottom:139.520000pt;}
.y3a{bottom:142.906667pt;}
.y79{bottom:154.906667pt;}
.y39{bottom:158.266667pt;}
.y78{bottom:170.106667pt;}
.y38{bottom:173.626667pt;}
.y77{bottom:185.466667pt;}
.y37{bottom:188.986667pt;}
.y76{bottom:200.826667pt;}
.y36{bottom:204.346667pt;}
.y75{bottom:216.186667pt;}
.y35{bottom:219.546667pt;}
.y74{bottom:231.546667pt;}
.y34{bottom:234.586667pt;}
.y73{bottom:246.906667pt;}
.y33{bottom:250.266667pt;}
.y72{bottom:262.106667pt;}
.y32{bottom:265.626667pt;}
.y71{bottom:277.466667pt;}
.y31{bottom:280.986667pt;}
.y70{bottom:292.826667pt;}
.y30{bottom:296.186667pt;}
.y6f{bottom:308.186667pt;}
.y2f{bottom:311.546667pt;}
.y6e{bottom:323.546667pt;}
.y2e{bottom:326.906667pt;}
.y6d{bottom:338.746667pt;}
.y2d{bottom:342.266667pt;}
.y6c{bottom:354.106667pt;}
.y2c{bottom:357.626667pt;}
.y6b{bottom:369.506667pt;}
.y2b{bottom:373.026667pt;}
.y6a{bottom:384.866667pt;}
.y2a{bottom:388.226667pt;}
.y69{bottom:400.226667pt;}
.y29{bottom:403.586667pt;}
.y68{bottom:415.586667pt;}
.y28{bottom:418.946667pt;}
.y67{bottom:430.786667pt;}
.y27{bottom:434.306667pt;}
.y66{bottom:446.146667pt;}
.y26{bottom:449.666667pt;}
.y65{bottom:461.506667pt;}
.y25{bottom:465.026667pt;}
.y64{bottom:476.866667pt;}
.y24{bottom:480.226667pt;}
.y63{bottom:492.226667pt;}
.y23{bottom:495.586667pt;}
.y62{bottom:507.586667pt;}
.y22{bottom:510.946667pt;}
.y61{bottom:522.786667pt;}
.y21{bottom:525.986667pt;}
.y82{bottom:537.826667pt;}
.y60{bottom:538.146667pt;}
.y20{bottom:541.666667pt;}
.y5f{bottom:553.506667pt;}
.y1f{bottom:557.026667pt;}
.y81{bottom:568.546667pt;}
.y5e{bottom:568.866667pt;}
.y1e{bottom:572.226667pt;}
.y5d{bottom:584.253333pt;}
.y1d{bottom:587.613333pt;}
.y5c{bottom:599.453333pt;}
.y1c{bottom:602.973333pt;}
.y5b{bottom:614.813333pt;}
.y1b{bottom:618.333333pt;}
.y80{bottom:629.853333pt;}
.y5a{bottom:630.173333pt;}
.y1a{bottom:633.373333pt;}
.y7f{bottom:645.213333pt;}
.y59{bottom:645.533333pt;}
.y19{bottom:648.893333pt;}
.y58{bottom:660.893333pt;}
.y18{bottom:664.253333pt;}
.y57{bottom:676.253333pt;}
.y17{bottom:679.613333pt;}
.y56{bottom:691.453333pt;}
.y16{bottom:694.973333pt;}
.y55{bottom:706.813333pt;}
.y15{bottom:710.333333pt;}
.y54{bottom:722.173333pt;}
.y14{bottom:725.373333pt;}
.y53{bottom:737.533333pt;}
.y52{bottom:752.893333pt;}
.y13{bottom:755.933333pt;}
.y51{bottom:768.253333pt;}
.y12{bottom:771.293333pt;}
.y50{bottom:783.453333pt;}
.y11{bottom:786.973333pt;}
.y4f{bottom:798.853333pt;}
.y10{bottom:802.373333pt;}
.y4e{bottom:814.213333pt;}
.yf{bottom:817.733333pt;}
.y4d{bottom:829.573333pt;}
.ye{bottom:832.933333pt;}
.y4c{bottom:844.933333pt;}
.yd{bottom:848.293333pt;}
.y4b{bottom:860.293333pt;}
.yc{bottom:863.333333pt;}
.y4a{bottom:875.493333pt;}
.yb{bottom:879.013333pt;}
.y49{bottom:890.533333pt;}
.y7e{bottom:890.853333pt;}
.ya{bottom:894.373333pt;}
.y48{bottom:906.213333pt;}
.y9{bottom:909.733333pt;}
.y47{bottom:921.573333pt;}
.y8{bottom:924.933333pt;}
.y46{bottom:936.933333pt;}
.y7{bottom:940.293333pt;}
.y45{bottom:952.133333pt;}
.y6{bottom:955.333333pt;}
.y44{bottom:967.493333pt;}
.y43{bottom:982.853333pt;}
.y5{bottom:986.053333pt;}
.y42{bottom:998.213333pt;}
.y4{bottom:1001.253333pt;}
.y41{bottom:1013.573333pt;}
.y3{bottom:1016.960000pt;}
.y40{bottom:1028.960000pt;}
.y2{bottom:1034.560000pt;}
.y3f{bottom:1044.160000pt;}
.y1{bottom:1062.560000pt;}
.h7{height:46.480000pt;}
.h9{height:47.109375pt;}
.h8{height:48.477187pt;}
.h6{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2{height:52.834688pt;}
.h5{height:53.535000pt;}
.ha{height:54.598989pt;}
.h3{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x4{left:96.671988pt;}
.x3{left:120.991988pt;}
.xe{left:125.471988pt;}
.xf{left:128.511988pt;}
.x5{left:156.346655pt;}
.x2{left:292.226655pt;}
.xd{left:334.306655pt;}
.x15{left:354.146655pt;}
.x10{left:406.946655pt;}
.x8{left:409.986655pt;}
.x18{left:432.893322pt;}
.x11{left:439.613322pt;}
.x7{left:457.053322pt;}
.x12{left:462.013322pt;}
.x16{left:478.173322pt;}
.xb{left:492.253322pt;}
.x1a{left:493.373322pt;}
.x9{left:556.733322pt;}
.x19{left:566.013322pt;}
.x14{left:610.213322pt;}
.x13{left:622.053322pt;}
.xc{left:623.013322pt;}
.xa{left:624.613322pt;}
.x6{left:626.373322pt;}
.x17{left:699.333322pt;}
}




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