
    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_a8608c5421ec2fcfb950ca01.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a37ffc6327cb60a84ce06db9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_655c8c1158ea4172200a970f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_931330800b71d0fa0b1cae02.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_785651b0f9fa567a641d6a04.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9676d173bd52dd89b69c9b68.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_e2683647eb77bf49f22a89ba.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3ebf5562eeb730a515f5a5f9.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;}
.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;}
.lse{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.738000px;}
.lsa{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.034560px;}
.ls6{letter-spacing:-0.017280px;}
.ls5{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.ls7{letter-spacing:0.025920px;}
.ls2{letter-spacing:0.034560px;}
.ls10{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.205920px;}
.ls13{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.702000px;}
.ls3{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.745920px;}
.ls9{letter-spacing:1.465920px;}
.ls11{letter-spacing:44.640000px;}
.ls12{letter-spacing:132.600000px;}
.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.617280px;}
.wsa{word-spacing:-20.160000px;}
.wsd{word-spacing:-20.142000px;}
.ws6{word-spacing:-19.474560px;}
.ws7{word-spacing:-19.465920px;}
.ws8{word-spacing:-19.457280px;}
.ws3{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.wsb{word-spacing:-19.431360px;}
.ws4{word-spacing:-19.422720px;}
.ws9{word-spacing:-18.702000px;}
.wse{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.000000px;}
.ws1{word-spacing:-0.077760px;}
.ws5{word-spacing:0.000000px;}
._34{margin-left:-2.099520px;}
._1{margin-left:-1.010880px;}
._0{width:1.244160px;}
._2{width:2.633280px;}
._20{width:3.743040px;}
._1a{width:5.209920px;}
._12{width:6.376320px;}
._4{width:7.542720px;}
._11{width:8.553600px;}
._28{width:9.564480px;}
._f{width:10.575360px;}
._10{width:11.739840px;}
._1f{width:12.908160px;}
._22{width:13.996800px;}
._18{width:15.085440px;}
._1c{width:17.029440px;}
._17{width:18.040320px;}
._37{width:19.440000px;}
._16{width:20.571840px;}
._b{width:21.695040px;}
._d{width:23.561280px;}
._21{width:25.395840px;}
._31{width:26.516640px;}
._1b{width:27.837600px;}
._8{width:28.926720px;}
._5{width:30.170880px;}
._6{width:31.415040px;}
._13{width:32.659200px;}
._14{width:34.603200px;}
._30{width:35.614080px;}
._3{width:36.624960px;}
._2b{width:38.024640px;}
._2a{width:39.424320px;}
._15{width:40.901760px;}
._25{width:41.912640px;}
._e{width:43.545600px;}
._24{width:44.945280px;}
._23{width:45.956160px;}
._c{width:47.433600px;}
._19{width:50.310720px;}
._36{width:52.643520px;}
._1e{width:55.209600px;}
._1d{width:56.220480px;}
._33{width:57.697920px;}
._32{width:58.708800px;}
._2d{width:63.296640px;}
._2e{width:64.463040px;}
._2c{width:65.600640px;}
._2f{width:71.150400px;}
._26{width:72.929280px;}
._29{width:87.635520px;}
._a{width:89.190720px;}
._35{width:97.132800px;}
._7{width:123.016320px;}
._9{width:125.193600px;}
._27{width:844.860000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y16{bottom:7.560000px;}
.y25{bottom:8.100000px;}
.y6d{bottom:8.130000px;}
.y65{bottom:8.280000px;}
.y60{bottom:21.060000px;}
.y6f{bottom:21.090000px;}
.y15{bottom:33.480000px;}
.y24{bottom:33.840000px;}
.y6c{bottom:33.870000px;}
.y5d{bottom:33.885000px;}
.y63{bottom:34.020000px;}
.y29{bottom:34.200000px;}
.y2f{bottom:46.620000px;}
.y73{bottom:46.800000px;}
.y6a{bottom:46.830000px;}
.y5f{bottom:46.845000px;}
.y67{bottom:46.980000px;}
.y28{bottom:56.700000px;}
.yd{bottom:58.140000px;}
.y23{bottom:59.610000px;}
.y62{bottom:59.760000px;}
.y6b{bottom:59.790000px;}
.y5c{bottom:59.805000px;}
.y2e{bottom:72.390000px;}
.y72{bottom:72.540000px;}
.y69{bottom:72.570000px;}
.y5e{bottom:72.585000px;}
.y66{bottom:72.720000px;}
.y27{bottom:79.020000px;}
.yc{bottom:82.296000px;}
.y64{bottom:85.500000px;}
.y22{bottom:85.530000px;}
.y5b{bottom:85.545000px;}
.y7a{bottom:85.680000px;}
.y2d{bottom:98.130000px;}
.y6e{bottom:98.310000px;}
.yb{bottom:106.416000px;}
.y21{bottom:111.270000px;}
.y2c{bottom:124.050000px;}
.ya{bottom:130.536000px;}
.y20{bottom:137.010000px;}
.y2b{bottom:149.790000px;}
.y9{bottom:154.470000px;}
.y1f{bottom:162.750000px;}
.y8{bottom:176.250000px;}
.y1e{bottom:188.670000px;}
.y7{bottom:198.750000px;}
.y1d{bottom:214.410000px;}
.y6{bottom:221.250000px;}
.y1c{bottom:240.150000px;}
.y9b{bottom:246.090000px;}
.y87{bottom:247.890000px;}
.y59{bottom:252.930000px;}
.y3a{bottom:259.950000px;}
.y1b{bottom:265.890000px;}
.y9a{bottom:267.150000px;}
.y86{bottom:273.810000px;}
.y58{bottom:278.670000px;}
.y39{bottom:285.690000px;}
.y1a{bottom:291.810000px;}
.y85{bottom:299.550000px;}
.y99{bottom:299.730000px;}
.y57{bottom:304.410000px;}
.y38{bottom:311.430000px;}
.y19{bottom:317.550000px;}
.y98{bottom:320.430000px;}
.y75{bottom:325.290000px;}
.y56{bottom:330.375000px;}
.y37{bottom:337.395000px;}
.y97{bottom:341.175000px;}
.y74{bottom:351.075000px;}
.y55{bottom:356.115000px;}
.y96{bottom:361.875000px;}
.y36{bottom:363.135000px;}
.y71{bottom:372.135000px;}
.y84{bottom:376.995000px;}
.y54{bottom:381.855000px;}
.y95{bottom:382.575000px;}
.y35{bottom:388.875000px;}
.y83{bottom:402.735000px;}
.y94{bottom:403.275000px;}
.y53{bottom:407.595000px;}
.y34{bottom:414.615000px;}
.y93{bottom:423.975000px;}
.y82{bottom:428.475000px;}
.y52{bottom:433.515000px;}
.y33{bottom:440.535000px;}
.y92{bottom:444.675000px;}
.y81{bottom:454.215000px;}
.y51{bottom:459.255000px;}
.y91{bottom:465.375000px;}
.y32{bottom:466.275000px;}
.y80{bottom:480.135000px;}
.y70{bottom:481.215000px;}
.y50{bottom:484.995000px;}
.y90{bottom:486.075000px;}
.y31{bottom:492.015000px;}
.y7f{bottom:505.875000px;}
.y8f{bottom:506.775000px;}
.y4f{bottom:510.735000px;}
.y30{bottom:517.395000px;}
.y8e{bottom:527.475000px;}
.y7e{bottom:531.615000px;}
.y18{bottom:535.575000px;}
.y4e{bottom:536.655000px;}
.y8d{bottom:548.175000px;}
.y7d{bottom:557.355000px;}
.y4d{bottom:562.395000px;}
.y8c{bottom:568.875000px;}
.y7c{bottom:583.275000px;}
.y4c{bottom:588.135000px;}
.y8b{bottom:589.575000px;}
.y68{bottom:590.475000px;}
.y7b{bottom:604.185000px;}
.y8a{bottom:613.365000px;}
.y4b{bottom:613.905000px;}
.y89{bottom:639.285000px;}
.y4a{bottom:639.825000px;}
.y88{bottom:665.025000px;}
.y49{bottom:665.565000px;}
.y79{bottom:687.525000px;}
.y48{bottom:691.305000px;}
.y2a{bottom:703.725000px;}
.y47{bottom:717.225000px;}
.y61{bottom:725.325000px;}
.y46{bottom:742.965000px;}
.y26{bottom:747.465000px;}
.y45{bottom:768.705000px;}
.y44{bottom:794.445000px;}
.y78{bottom:796.785000px;}
.y43{bottom:820.365000px;}
.y5a{bottom:834.585000px;}
.y17{bottom:845.025000px;}
.y42{bottom:846.105000px;}
.y41{bottom:871.890000px;}
.y77{bottom:880.170000px;}
.y14{bottom:880.530000px;}
.y40{bottom:897.630000px;}
.y3f{bottom:923.550000px;}
.y13{bottom:949.290000px;}
.y76{bottom:963.510000px;}
.y12{bottom:975.030000px;}
.y11{bottom:1000.230000px;}
.y3e{bottom:1000.770000px;}
.y10{bottom:1026.150000px;}
.y3d{bottom:1026.690000px;}
.yf{bottom:1051.890000px;}
.y3c{bottom:1052.430000px;}
.ye{bottom:1077.630000px;}
.y3b{bottom:1078.170000px;}
.y5{bottom:1100.850000px;}
.y4{bottom:1124.250000px;}
.y3{bottom:1147.140000px;}
.y2{bottom:1170.900000px;}
.y1{bottom:1193.220000px;}
.hb{height:34.762500px;}
.hf{height:43.740000px;}
.h11{height:54.295313px;}
.hd{height:56.839219px;}
.ha{height:60.645000px;}
.h1b{height:70.664062px;}
.h2{height:72.562500px;}
.h1a{height:75.093750px;}
.h9{height:76.279219px;}
.h8{height:76.317188px;}
.h16{height:77.385000px;}
.h19{height:77.400000px;}
.h17{height:77.422500px;}
.h3{height:78.367500px;}
.h7{height:80.949375px;}
.h5{height:81.101250px;}
.h6{height:82.676953px;}
.h4{height:84.898125px;}
.he{height:96.660000px;}
.h15{height:103.125000px;}
.h13{height:103.140000px;}
.h12{height:103.162500px;}
.h18{height:103.320000px;}
.h14{height:128.910000px;}
.h10{height:167.430000px;}
.hc{height:344.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:86.436000px;}
.w7{width:117.525000px;}
.w4{width:120.274500px;}
.wc{width:125.985000px;}
.w8{width:127.425000px;}
.wa{width:131.781000px;}
.w5{width:149.961000px;}
.wd{width:176.235000px;}
.w6{width:177.690000px;}
.w9{width:189.748500px;}
.w2{width:209.539500px;}
.w3{width:432.795000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:2.700000px;}
.x1f{left:4.485000px;}
.x33{left:6.480000px;}
.x10{left:8.100000px;}
.x2a{left:9.525000px;}
.x15{left:11.509500px;}
.x28{left:12.600000px;}
.x16{left:14.749500px;}
.x40{left:15.825000px;}
.x36{left:17.460000px;}
.x34{left:18.705000px;}
.x26{left:20.014500px;}
.x41{left:21.225000px;}
.x35{left:24.105000px;}
.x29{left:25.185000px;}
.x1b{left:26.494500px;}
.x1c{left:27.574500px;}
.xf{left:29.323500px;}
.x3e{left:30.405000px;}
.x13{left:31.663500px;}
.x31{left:33.645000px;}
.x11{left:34.723500px;}
.x23{left:36.180000px;}
.x37{left:38.160000px;}
.x12{left:39.763500px;}
.x2e{left:41.025000px;}
.x2d{left:42.840000px;}
.x39{left:44.820000px;}
.x21{left:45.900000px;}
.xc{left:47.683500px;}
.x22{left:49.320000px;}
.x2c{left:51.840000px;}
.x1a{left:53.674500px;}
.x2f{left:57.240000px;}
.x27{left:58.305000px;}
.x14{left:61.543500px;}
.x1e{left:64.785000px;}
.x30{left:68.025000px;}
.xb{left:70.363500px;}
.x38{left:73.080000px;}
.x32{left:77.580000px;}
.x19{left:83.881500px;}
.x1{left:84.960000px;}
.x2{left:103.356000px;}
.x17{left:118.836000px;}
.xa{left:125.326500px;}
.x18{left:134.496000px;}
.x8{left:140.256000px;}
.xe{left:151.770000px;}
.x4{left:153.750000px;}
.x1d{left:207.945000px;}
.x3b{left:277.425000px;}
.x7{left:314.355000px;}
.x5{left:328.575000px;}
.xd{left:334.875000px;}
.x20{left:361.695000px;}
.x9{left:405.795000px;}
.x3c{left:412.995000px;}
.x6{left:457.095000px;}
.x3a{left:463.395000px;}
.x3d{left:503.220000px;}
.x24{left:543.180000px;}
.x3f{left:633.000000px;}
.x25{left:664.530000px;}
.x3{left:778.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.656000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.030720pt;}
.ls6{letter-spacing:-0.015360pt;}
.ls5{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.ls7{letter-spacing:0.023040pt;}
.ls2{letter-spacing:0.030720pt;}
.ls10{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.183040pt;}
.ls13{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.624000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.663040pt;}
.ls9{letter-spacing:1.303040pt;}
.ls11{letter-spacing:39.680000pt;}
.ls12{letter-spacing:117.866667pt;}
.ws0{word-spacing:-19.215360pt;}
.wsa{word-spacing:-17.920000pt;}
.wsd{word-spacing:-17.904000pt;}
.ws6{word-spacing:-17.310720pt;}
.ws7{word-spacing:-17.303040pt;}
.ws8{word-spacing:-17.295360pt;}
.ws3{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.wsb{word-spacing:-17.272320pt;}
.ws4{word-spacing:-17.264640pt;}
.ws9{word-spacing:-16.624000pt;}
.wse{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws1{word-spacing:-0.069120pt;}
.ws5{word-spacing:0.000000pt;}
._34{margin-left:-1.866240pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.105920pt;}
._2{width:2.340693pt;}
._20{width:3.327147pt;}
._1a{width:4.631040pt;}
._12{width:5.667840pt;}
._4{width:6.704640pt;}
._11{width:7.603200pt;}
._28{width:8.501760pt;}
._f{width:9.400320pt;}
._10{width:10.435413pt;}
._1f{width:11.473920pt;}
._22{width:12.441600pt;}
._18{width:13.409280pt;}
._1c{width:15.137280pt;}
._17{width:16.035840pt;}
._37{width:17.280000pt;}
._16{width:18.286080pt;}
._b{width:19.284480pt;}
._d{width:20.943360pt;}
._21{width:22.574080pt;}
._31{width:23.570347pt;}
._1b{width:24.744533pt;}
._8{width:25.712640pt;}
._5{width:26.818560pt;}
._6{width:27.924480pt;}
._13{width:29.030400pt;}
._14{width:30.758400pt;}
._30{width:31.656960pt;}
._3{width:32.555520pt;}
._2b{width:33.799680pt;}
._2a{width:35.043840pt;}
._15{width:36.357120pt;}
._25{width:37.255680pt;}
._e{width:38.707200pt;}
._24{width:39.951360pt;}
._23{width:40.849920pt;}
._c{width:42.163200pt;}
._19{width:44.720640pt;}
._36{width:46.794240pt;}
._1e{width:49.075200pt;}
._1d{width:49.973760pt;}
._33{width:51.287040pt;}
._32{width:52.185600pt;}
._2d{width:56.263680pt;}
._2e{width:57.300480pt;}
._2c{width:58.311680pt;}
._2f{width:63.244800pt;}
._26{width:64.826027pt;}
._29{width:77.898240pt;}
._a{width:79.280640pt;}
._35{width:86.340267pt;}
._7{width:109.347840pt;}
._9{width:111.283200pt;}
._27{width:750.986667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:6.720000pt;}
.y25{bottom:7.200000pt;}
.y6d{bottom:7.226667pt;}
.y65{bottom:7.360000pt;}
.y60{bottom:18.720000pt;}
.y6f{bottom:18.746667pt;}
.y15{bottom:29.760000pt;}
.y24{bottom:30.080000pt;}
.y6c{bottom:30.106667pt;}
.y5d{bottom:30.120000pt;}
.y63{bottom:30.240000pt;}
.y29{bottom:30.400000pt;}
.y2f{bottom:41.440000pt;}
.y73{bottom:41.600000pt;}
.y6a{bottom:41.626667pt;}
.y5f{bottom:41.640000pt;}
.y67{bottom:41.760000pt;}
.y28{bottom:50.400000pt;}
.yd{bottom:51.680000pt;}
.y23{bottom:52.986667pt;}
.y62{bottom:53.120000pt;}
.y6b{bottom:53.146667pt;}
.y5c{bottom:53.160000pt;}
.y2e{bottom:64.346667pt;}
.y72{bottom:64.480000pt;}
.y69{bottom:64.506667pt;}
.y5e{bottom:64.520000pt;}
.y66{bottom:64.640000pt;}
.y27{bottom:70.240000pt;}
.yc{bottom:73.152000pt;}
.y64{bottom:76.000000pt;}
.y22{bottom:76.026667pt;}
.y5b{bottom:76.040000pt;}
.y7a{bottom:76.160000pt;}
.y2d{bottom:87.226667pt;}
.y6e{bottom:87.386667pt;}
.yb{bottom:94.592000pt;}
.y21{bottom:98.906667pt;}
.y2c{bottom:110.266667pt;}
.ya{bottom:116.032000pt;}
.y20{bottom:121.786667pt;}
.y2b{bottom:133.146667pt;}
.y9{bottom:137.306667pt;}
.y1f{bottom:144.666667pt;}
.y8{bottom:156.666667pt;}
.y1e{bottom:167.706667pt;}
.y7{bottom:176.666667pt;}
.y1d{bottom:190.586667pt;}
.y6{bottom:196.666667pt;}
.y1c{bottom:213.466667pt;}
.y9b{bottom:218.746667pt;}
.y87{bottom:220.346667pt;}
.y59{bottom:224.826667pt;}
.y3a{bottom:231.066667pt;}
.y1b{bottom:236.346667pt;}
.y9a{bottom:237.466667pt;}
.y86{bottom:243.386667pt;}
.y58{bottom:247.706667pt;}
.y39{bottom:253.946667pt;}
.y1a{bottom:259.386667pt;}
.y85{bottom:266.266667pt;}
.y99{bottom:266.426667pt;}
.y57{bottom:270.586667pt;}
.y38{bottom:276.826667pt;}
.y19{bottom:282.266667pt;}
.y98{bottom:284.826667pt;}
.y75{bottom:289.146667pt;}
.y56{bottom:293.666667pt;}
.y37{bottom:299.906667pt;}
.y97{bottom:303.266667pt;}
.y74{bottom:312.066667pt;}
.y55{bottom:316.546667pt;}
.y96{bottom:321.666667pt;}
.y36{bottom:322.786667pt;}
.y71{bottom:330.786667pt;}
.y84{bottom:335.106667pt;}
.y54{bottom:339.426667pt;}
.y95{bottom:340.066667pt;}
.y35{bottom:345.666667pt;}
.y83{bottom:357.986667pt;}
.y94{bottom:358.466667pt;}
.y53{bottom:362.306667pt;}
.y34{bottom:368.546667pt;}
.y93{bottom:376.866667pt;}
.y82{bottom:380.866667pt;}
.y52{bottom:385.346667pt;}
.y33{bottom:391.586667pt;}
.y92{bottom:395.266667pt;}
.y81{bottom:403.746667pt;}
.y51{bottom:408.226667pt;}
.y91{bottom:413.666667pt;}
.y32{bottom:414.466667pt;}
.y80{bottom:426.786667pt;}
.y70{bottom:427.746667pt;}
.y50{bottom:431.106667pt;}
.y90{bottom:432.066667pt;}
.y31{bottom:437.346667pt;}
.y7f{bottom:449.666667pt;}
.y8f{bottom:450.466667pt;}
.y4f{bottom:453.986667pt;}
.y30{bottom:459.906667pt;}
.y8e{bottom:468.866667pt;}
.y7e{bottom:472.546667pt;}
.y18{bottom:476.066667pt;}
.y4e{bottom:477.026667pt;}
.y8d{bottom:487.266667pt;}
.y7d{bottom:495.426667pt;}
.y4d{bottom:499.906667pt;}
.y8c{bottom:505.666667pt;}
.y7c{bottom:518.466667pt;}
.y4c{bottom:522.786667pt;}
.y8b{bottom:524.066667pt;}
.y68{bottom:524.866667pt;}
.y7b{bottom:537.053333pt;}
.y8a{bottom:545.213333pt;}
.y4b{bottom:545.693333pt;}
.y89{bottom:568.253333pt;}
.y4a{bottom:568.733333pt;}
.y88{bottom:591.133333pt;}
.y49{bottom:591.613333pt;}
.y79{bottom:611.133333pt;}
.y48{bottom:614.493333pt;}
.y2a{bottom:625.533333pt;}
.y47{bottom:637.533333pt;}
.y61{bottom:644.733333pt;}
.y46{bottom:660.413333pt;}
.y26{bottom:664.413333pt;}
.y45{bottom:683.293333pt;}
.y44{bottom:706.173333pt;}
.y78{bottom:708.253333pt;}
.y43{bottom:729.213333pt;}
.y5a{bottom:741.853333pt;}
.y17{bottom:751.133333pt;}
.y42{bottom:752.093333pt;}
.y41{bottom:775.013333pt;}
.y77{bottom:782.373333pt;}
.y14{bottom:782.693333pt;}
.y40{bottom:797.893333pt;}
.y3f{bottom:820.933333pt;}
.y13{bottom:843.813333pt;}
.y76{bottom:856.453333pt;}
.y12{bottom:866.693333pt;}
.y11{bottom:889.093333pt;}
.y3e{bottom:889.573333pt;}
.y10{bottom:912.133333pt;}
.y3d{bottom:912.613333pt;}
.yf{bottom:935.013333pt;}
.y3c{bottom:935.493333pt;}
.ye{bottom:957.893333pt;}
.y3b{bottom:958.373333pt;}
.y5{bottom:978.533333pt;}
.y4{bottom:999.333333pt;}
.y3{bottom:1019.680000pt;}
.y2{bottom:1040.800000pt;}
.y1{bottom:1060.640000pt;}
.hb{height:30.900000pt;}
.hf{height:38.880000pt;}
.h11{height:48.262500pt;}
.hd{height:50.523750pt;}
.ha{height:53.906667pt;}
.h1b{height:62.812500pt;}
.h2{height:64.500000pt;}
.h1a{height:66.750000pt;}
.h9{height:67.803750pt;}
.h8{height:67.837500pt;}
.h16{height:68.786667pt;}
.h19{height:68.800000pt;}
.h17{height:68.820000pt;}
.h3{height:69.660000pt;}
.h7{height:71.955000pt;}
.h5{height:72.090000pt;}
.h6{height:73.490625pt;}
.h4{height:75.465000pt;}
.he{height:85.920000pt;}
.h15{height:91.666667pt;}
.h13{height:91.680000pt;}
.h12{height:91.700000pt;}
.h18{height:91.840000pt;}
.h14{height:114.586667pt;}
.h10{height:148.826667pt;}
.hc{height:305.973333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:76.832000pt;}
.w7{width:104.466667pt;}
.w4{width:106.910667pt;}
.wc{width:111.986667pt;}
.w8{width:113.266667pt;}
.wa{width:117.138667pt;}
.w5{width:133.298667pt;}
.wd{width:156.653333pt;}
.w6{width:157.946667pt;}
.w9{width:168.665333pt;}
.w2{width:186.257333pt;}
.w3{width:384.706667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:2.400000pt;}
.x1f{left:3.986667pt;}
.x33{left:5.760000pt;}
.x10{left:7.200000pt;}
.x2a{left:8.466667pt;}
.x15{left:10.230667pt;}
.x28{left:11.200000pt;}
.x16{left:13.110667pt;}
.x40{left:14.066667pt;}
.x36{left:15.520000pt;}
.x34{left:16.626667pt;}
.x26{left:17.790667pt;}
.x41{left:18.866667pt;}
.x35{left:21.426667pt;}
.x29{left:22.386667pt;}
.x1b{left:23.550667pt;}
.x1c{left:24.510667pt;}
.xf{left:26.065333pt;}
.x3e{left:27.026667pt;}
.x13{left:28.145333pt;}
.x31{left:29.906667pt;}
.x11{left:30.865333pt;}
.x23{left:32.160000pt;}
.x37{left:33.920000pt;}
.x12{left:35.345333pt;}
.x2e{left:36.466667pt;}
.x2d{left:38.080000pt;}
.x39{left:39.840000pt;}
.x21{left:40.800000pt;}
.xc{left:42.385333pt;}
.x22{left:43.840000pt;}
.x2c{left:46.080000pt;}
.x1a{left:47.710667pt;}
.x2f{left:50.880000pt;}
.x27{left:51.826667pt;}
.x14{left:54.705333pt;}
.x1e{left:57.586667pt;}
.x30{left:60.466667pt;}
.xb{left:62.545333pt;}
.x38{left:64.960000pt;}
.x32{left:68.960000pt;}
.x19{left:74.561333pt;}
.x1{left:75.520000pt;}
.x2{left:91.872000pt;}
.x17{left:105.632000pt;}
.xa{left:111.401333pt;}
.x18{left:119.552000pt;}
.x8{left:124.672000pt;}
.xe{left:134.906667pt;}
.x4{left:136.666667pt;}
.x1d{left:184.840000pt;}
.x3b{left:246.600000pt;}
.x7{left:279.426667pt;}
.x5{left:292.066667pt;}
.xd{left:297.666667pt;}
.x20{left:321.506667pt;}
.x9{left:360.706667pt;}
.x3c{left:367.106667pt;}
.x6{left:406.306667pt;}
.x3a{left:411.906667pt;}
.x3d{left:447.306667pt;}
.x24{left:482.826667pt;}
.x3f{left:562.666667pt;}
.x25{left:590.693333pt;}
.x3{left:692.133333pt;}
}




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