
    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_a98fa2adf725c944bae73453.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_065d71022f54d44e7d406b8e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e96a30991d022c1bc72ff317.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')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_c64705b681cbd27568be57e1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_739c842804270ae0acc7baf6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f4e4bee7fe0342afc9d45ae4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.ls7{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.045360px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.090000px;}
.ls8{letter-spacing:0.139800px;}
.ls0{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.lsc{letter-spacing:9.450000px;}
.lsa{letter-spacing:12.330000px;}
.lsb{letter-spacing:20.250000px;}
.ls3{letter-spacing:36.926640px;}
.lsd{letter-spacing:46.286640px;}
.ls9{letter-spacing:49.347360px;}
.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;}
}
.ws7{word-spacing:-60.120000px;}
.ws3{word-spacing:-16.424640px;}
.ws9{word-spacing:-15.210000px;}
.wsa{word-spacing:-15.169800px;}
.ws0{word-spacing:-15.030000px;}
.ws8{word-spacing:-14.850000px;}
.wsc{word-spacing:-14.220000px;}
.ws6{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.ws4{word-spacing:-10.530000px;}
.ws2{word-spacing:-10.350000px;}
.ws5{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
._c{margin-left:-3.186360px;}
._0{margin-left:-1.202400px;}
._5{width:1.014240px;}
._b{width:2.532840px;}
._d{width:4.268520px;}
._9{width:5.771520px;}
._a{width:6.973920px;}
._8{width:7.995960px;}
._e{width:9.979920px;}
._18{width:11.242440px;}
._10{width:12.324600px;}
._11{width:13.527000px;}
._25{width:14.578560px;}
._f{width:17.134200px;}
._12{width:19.779480px;}
._1a{width:22.424760px;}
._22{width:23.427360px;}
._23{width:24.514560px;}
._20{width:27.806400px;}
._19{width:29.458800px;}
._27{width:35.622720px;}
._21{width:37.305360px;}
._15{width:38.803320px;}
._16{width:39.841920px;}
._24{width:42.661080px;}
._1e{width:44.760240px;}
._1f{width:46.186200px;}
._26{width:49.843080px;}
._1c{width:55.009800px;}
._1b{width:56.091960px;}
._4{width:65.700000px;}
._2{width:93.090000px;}
._14{width:95.049720px;}
._13{width:117.783360px;}
._17{width:167.076720px;}
._3{width:200.970000px;}
._1d{width:391.982400px;}
._7{width:402.435240px;}
._1{width:735.748680px;}
._6{width:1131.762360px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(192,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fsa{font-size:18.000000px;}
.fsb{font-size:24.120000px;}
.fs4{font-size:29.880000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fsc{font-size:56.880000px;}
.fs0{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:96.120000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y59{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y1a{bottom:3.240000px;}
.ya4{bottom:3.330000px;}
.y96{bottom:4.050000px;}
.y3d{bottom:5.310000px;}
.y34{bottom:5.670000px;}
.y36{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.y9c{bottom:10.710000px;}
.y9{bottom:14.040000px;}
.y33{bottom:14.580000px;}
.y93{bottom:16.380000px;}
.y5{bottom:16.470000px;}
.ya3{bottom:17.100000px;}
.y3f{bottom:17.280000px;}
.y3c{bottom:22.500000px;}
.y92{bottom:30.240000px;}
.ya2{bottom:30.870000px;}
.y32{bottom:31.770000px;}
.y7{bottom:35.550000px;}
.y3b{bottom:39.780000px;}
.y91{bottom:44.010000px;}
.ya1{bottom:44.730000px;}
.y31{bottom:49.050000px;}
.y3a{bottom:57.060000px;}
.y9a{bottom:57.870000px;}
.y3{bottom:58.140000px;}
.ya0{bottom:58.500000px;}
.y30{bottom:66.330000px;}
.y99{bottom:71.640000px;}
.y9f{bottom:72.270000px;}
.y39{bottom:74.250000px;}
.y2f{bottom:83.520000px;}
.y98{bottom:85.410000px;}
.y9e{bottom:86.160000px;}
.y38{bottom:91.530000px;}
.y97{bottom:99.270000px;}
.y2e{bottom:100.800000px;}
.y3e{bottom:113.670000px;}
.y2d{bottom:118.080000px;}
.y7b{bottom:119.520000px;}
.y42{bottom:123.030000px;}
.y2c{bottom:135.300000px;}
.y7a{bottom:136.710000px;}
.y2b{bottom:150.330000px;}
.y41{bottom:152.280000px;}
.y79{bottom:153.990000px;}
.y40{bottom:169.590000px;}
.y78{bottom:171.300000px;}
.y8b{bottom:179.850000px;}
.y29{bottom:180.360000px;}
.y1b{bottom:184.350000px;}
.y77{bottom:188.490000px;}
.y28{bottom:197.640000px;}
.y8a{bottom:205.680000px;}
.y76{bottom:205.770000px;}
.y27{bottom:214.830000px;}
.y75{bottom:222.960000px;}
.y89{bottom:231.600000px;}
.y26{bottom:232.110000px;}
.y74{bottom:240.240000px;}
.y25{bottom:249.390000px;}
.y88{bottom:257.430000px;}
.y73{bottom:257.520000px;}
.y24{bottom:266.580000px;}
.y72{bottom:274.710000px;}
.y87{bottom:283.350000px;}
.y23{bottom:283.860000px;}
.y71{bottom:291.990000px;}
.y22{bottom:301.140000px;}
.y86{bottom:309.180000px;}
.y70{bottom:309.270000px;}
.y37{bottom:312.780000px;}
.y21{bottom:318.330000px;}
.y6f{bottom:326.460000px;}
.y85{bottom:335.100000px;}
.y20{bottom:335.610000px;}
.y6e{bottom:343.740000px;}
.y1f{bottom:352.890000px;}
.y84{bottom:360.930000px;}
.y6d{bottom:361.020000px;}
.y1e{bottom:370.080000px;}
.y6c{bottom:378.210000px;}
.y83{bottom:386.850000px;}
.y1d{bottom:387.360000px;}
.y6b{bottom:395.490000px;}
.y1c{bottom:403.050000px;}
.y82{bottom:412.680000px;}
.y6a{bottom:412.770000px;}
.y35{bottom:419.070000px;}
.y69{bottom:429.960000px;}
.y81{bottom:438.600000px;}
.y2a{bottom:439.860000px;}
.y68{bottom:447.240000px;}
.y80{bottom:464.430000px;}
.y67{bottom:464.520000px;}
.y66{bottom:481.710000px;}
.y9d{bottom:490.260000px;}
.y7f{bottom:490.350000px;}
.y65{bottom:498.990000px;}
.y7e{bottom:516.180000px;}
.y64{bottom:516.270000px;}
.y63{bottom:533.460000px;}
.y7d{bottom:542.100000px;}
.y62{bottom:550.740000px;}
.y61{bottom:567.930000px;}
.y60{bottom:585.240000px;}
.y9b{bottom:588.300000px;}
.y7c{bottom:593.880000px;}
.y19{bottom:595.140000px;}
.y5f{bottom:602.520000px;}
.y5e{bottom:619.710000px;}
.y18{bottom:629.700000px;}
.y5d{bottom:636.990000px;}
.y17{bottom:649.590000px;}
.y5c{bottom:669.030000px;}
.y16{bottom:677.670000px;}
.y5b{bottom:683.520000px;}
.y15{bottom:693.240000px;}
.y5a{bottom:698.100000px;}
.y95{bottom:699.450000px;}
.y58{bottom:712.680000px;}
.y14{bottom:713.220000px;}
.y13{bottom:724.290000px;}
.y57{bottom:727.170000px;}
.y12{bottom:744.270000px;}
.y56{bottom:744.990000px;}
.y11{bottom:755.340000px;}
.y55{bottom:762.270000px;}
.y10{bottom:775.320000px;}
.y54{bottom:779.460000px;}
.yf{bottom:787.020000px;}
.y53{bottom:796.740000px;}
.ye{bottom:808.260000px;}
.y94{bottom:810.600000px;}
.y52{bottom:814.020000px;}
.y90{bottom:825.180000px;}
.y51{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.y50{bottom:848.490000px;}
.y4f{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.y8f{bottom:881.070000px;}
.y4e{bottom:882.960000px;}
.y4d{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y4c{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.y4b{bottom:934.710000px;}
.y8e{bottom:943.350000px;}
.y8{bottom:945.600000px;}
.y4a{bottom:951.990000px;}
.y49{bottom:969.180000px;}
.y48{bottom:986.460000px;}
.y8d{bottom:995.130000px;}
.y47{bottom:1003.770000px;}
.y46{bottom:1020.960000px;}
.y45{bottom:1038.240000px;}
.y8c{bottom:1046.880000px;}
.y44{bottom:1055.520000px;}
.y43{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h14{height:12.568359px;}
.h1c{height:13.770000px;}
.h1a{height:13.860000px;}
.h16{height:16.841602px;}
.he{height:17.190000px;}
.h17{height:19.980000px;}
.h11{height:20.863477px;}
.hc{height:25.136719px;}
.h3{height:27.630000px;}
.h1b{height:33.431836px;}
.h5{height:33.782520px;}
.hd{height:37.705078px;}
.h6{height:39.082324px;}
.h4{height:41.978320px;}
.hf{height:42.418652px;}
.h1d{height:43.769004px;}
.h15{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h12{height:49.552031px;}
.h1{height:50.800781px;}
.h1e{height:55.170000px;}
.h9{height:65.526152px;}
.hb{height:67.819043px;}
.ha{height:76.201172px;}
.h20{height:97.320000px;}
.h18{height:105.570000px;}
.h1f{height:110.430000px;}
.h19{height:127.710000px;}
.h7{height:153.930000px;}
.h13{height:154.470000px;}
.h10{height:409.980000px;}
.h0{height:1188.000000px;}
.w2{width:38.070000px;}
.wa{width:71.220000px;}
.wc{width:83.910000px;}
.w8{width:180.210000px;}
.w7{width:222.780000px;}
.w9{width:224.100000px;}
.w6{width:249.600000px;}
.wd{width:307.620000px;}
.wb{width:392.250000px;}
.w5{width:559.230000px;}
.w3{width:769.050000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:6.660000px;}
.x4{left:8.640000px;}
.x20{left:10.440000px;}
.x24{left:14.760000px;}
.x15{left:20.160000px;}
.x16{left:26.910000px;}
.x28{left:32.940000px;}
.x1c{left:35.910000px;}
.x18{left:45.810000px;}
.x1f{left:50.790000px;}
.x2{left:53.999986px;}
.x21{left:57.090000px;}
.x25{left:58.710000px;}
.x1{left:60.749986px;}
.x3{left:69.390000px;}
.x22{left:72.090000px;}
.x26{left:77.940000px;}
.x2e{left:82.440000px;}
.xc{left:85.049986px;}
.x2a{left:86.759986px;}
.xb{left:88.109986px;}
.x8{left:91.169986px;}
.xe{left:92.339986px;}
.x23{left:94.140000px;}
.x27{left:99.900000px;}
.x5{left:108.540000px;}
.x2b{left:111.540000px;}
.x10{left:123.569986px;}
.x9{left:131.579986px;}
.x2c{left:151.770000px;}
.x2d{left:153.660000px;}
.x19{left:171.360000px;}
.x1b{left:332.310000px;}
.xd{left:346.169986px;}
.x12{left:362.279986px;}
.xf{left:369.569986px;}
.x11{left:414.209986px;}
.x7{left:459.029986px;}
.xa{left:465.779986px;}
.x13{left:475.889986px;}
.x1a{left:479.309986px;}
.x29{left:505.319986px;}
.x1d{left:513.240000px;}
.x14{left:621.420000px;}
.x1e{left:738.150000px;}
.x6{left:812.430000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.040320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.080000pt;}
.ls8{letter-spacing:0.124267pt;}
.ls0{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsc{letter-spacing:8.400000pt;}
.lsa{letter-spacing:10.960000pt;}
.lsb{letter-spacing:18.000000pt;}
.ls3{letter-spacing:32.823680pt;}
.lsd{letter-spacing:41.143680pt;}
.ls9{letter-spacing:43.864320pt;}
.ws7{word-spacing:-53.440000pt;}
.ws3{word-spacing:-14.599680pt;}
.ws9{word-spacing:-13.520000pt;}
.wsa{word-spacing:-13.484267pt;}
.ws0{word-spacing:-13.360000pt;}
.ws8{word-spacing:-13.200000pt;}
.wsc{word-spacing:-12.640000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws4{word-spacing:-9.360000pt;}
.ws2{word-spacing:-9.200000pt;}
.ws5{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
._c{margin-left:-2.832320pt;}
._0{margin-left:-1.068800pt;}
._5{width:0.901547pt;}
._b{width:2.251413pt;}
._d{width:3.794240pt;}
._9{width:5.130240pt;}
._a{width:6.199040pt;}
._8{width:7.107520pt;}
._e{width:8.871040pt;}
._18{width:9.993280pt;}
._10{width:10.955200pt;}
._11{width:12.024000pt;}
._25{width:12.958720pt;}
._f{width:15.230400pt;}
._12{width:17.581760pt;}
._1a{width:19.933120pt;}
._22{width:20.824320pt;}
._23{width:21.790720pt;}
._20{width:24.716800pt;}
._19{width:26.185600pt;}
._27{width:31.664640pt;}
._21{width:33.160320pt;}
._15{width:34.491840pt;}
._16{width:35.415040pt;}
._24{width:37.920960pt;}
._1e{width:39.786880pt;}
._1f{width:41.054400pt;}
._26{width:44.304960pt;}
._1c{width:48.897600pt;}
._1b{width:49.859520pt;}
._4{width:58.400000pt;}
._2{width:82.746667pt;}
._14{width:84.488640pt;}
._13{width:104.696320pt;}
._17{width:148.512640pt;}
._3{width:178.640000pt;}
._1d{width:348.428800pt;}
._7{width:357.720213pt;}
._1{width:653.998827pt;}
._6{width:1006.010987pt;}
.fsa{font-size:16.000000pt;}
.fsb{font-size:21.440000pt;}
.fs4{font-size:26.560000pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fsc{font-size:50.560000pt;}
.fs0{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:85.440000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y1a{bottom:2.880000pt;}
.ya4{bottom:2.960000pt;}
.y96{bottom:3.600000pt;}
.y3d{bottom:4.720000pt;}
.y34{bottom:5.040000pt;}
.y36{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.y9c{bottom:9.520000pt;}
.y9{bottom:12.480000pt;}
.y33{bottom:12.960000pt;}
.y93{bottom:14.560000pt;}
.y5{bottom:14.640000pt;}
.ya3{bottom:15.200000pt;}
.y3f{bottom:15.360000pt;}
.y3c{bottom:20.000000pt;}
.y92{bottom:26.880000pt;}
.ya2{bottom:27.440000pt;}
.y32{bottom:28.240000pt;}
.y7{bottom:31.600000pt;}
.y3b{bottom:35.360000pt;}
.y91{bottom:39.120000pt;}
.ya1{bottom:39.760000pt;}
.y31{bottom:43.600000pt;}
.y3a{bottom:50.720000pt;}
.y9a{bottom:51.440000pt;}
.y3{bottom:51.680000pt;}
.ya0{bottom:52.000000pt;}
.y30{bottom:58.960000pt;}
.y99{bottom:63.680000pt;}
.y9f{bottom:64.240000pt;}
.y39{bottom:66.000000pt;}
.y2f{bottom:74.240000pt;}
.y98{bottom:75.920000pt;}
.y9e{bottom:76.586667pt;}
.y38{bottom:81.360000pt;}
.y97{bottom:88.240000pt;}
.y2e{bottom:89.600000pt;}
.y3e{bottom:101.040000pt;}
.y2d{bottom:104.960000pt;}
.y7b{bottom:106.240000pt;}
.y42{bottom:109.360000pt;}
.y2c{bottom:120.266667pt;}
.y7a{bottom:121.520000pt;}
.y2b{bottom:133.626667pt;}
.y41{bottom:135.360000pt;}
.y79{bottom:136.880000pt;}
.y40{bottom:150.746667pt;}
.y78{bottom:152.266667pt;}
.y8b{bottom:159.866667pt;}
.y29{bottom:160.320000pt;}
.y1b{bottom:163.866667pt;}
.y77{bottom:167.546667pt;}
.y28{bottom:175.680000pt;}
.y8a{bottom:182.826667pt;}
.y76{bottom:182.906667pt;}
.y27{bottom:190.960000pt;}
.y75{bottom:198.186667pt;}
.y89{bottom:205.866667pt;}
.y26{bottom:206.320000pt;}
.y74{bottom:213.546667pt;}
.y25{bottom:221.680000pt;}
.y88{bottom:228.826667pt;}
.y73{bottom:228.906667pt;}
.y24{bottom:236.960000pt;}
.y72{bottom:244.186667pt;}
.y87{bottom:251.866667pt;}
.y23{bottom:252.320000pt;}
.y71{bottom:259.546667pt;}
.y22{bottom:267.680000pt;}
.y86{bottom:274.826667pt;}
.y70{bottom:274.906667pt;}
.y37{bottom:278.026667pt;}
.y21{bottom:282.960000pt;}
.y6f{bottom:290.186667pt;}
.y85{bottom:297.866667pt;}
.y20{bottom:298.320000pt;}
.y6e{bottom:305.546667pt;}
.y1f{bottom:313.680000pt;}
.y84{bottom:320.826667pt;}
.y6d{bottom:320.906667pt;}
.y1e{bottom:328.960000pt;}
.y6c{bottom:336.186667pt;}
.y83{bottom:343.866667pt;}
.y1d{bottom:344.320000pt;}
.y6b{bottom:351.546667pt;}
.y1c{bottom:358.266667pt;}
.y82{bottom:366.826667pt;}
.y6a{bottom:366.906667pt;}
.y35{bottom:372.506667pt;}
.y69{bottom:382.186667pt;}
.y81{bottom:389.866667pt;}
.y2a{bottom:390.986667pt;}
.y68{bottom:397.546667pt;}
.y80{bottom:412.826667pt;}
.y67{bottom:412.906667pt;}
.y66{bottom:428.186667pt;}
.y9d{bottom:435.786667pt;}
.y7f{bottom:435.866667pt;}
.y65{bottom:443.546667pt;}
.y7e{bottom:458.826667pt;}
.y64{bottom:458.906667pt;}
.y63{bottom:474.186667pt;}
.y7d{bottom:481.866667pt;}
.y62{bottom:489.546667pt;}
.y61{bottom:504.826667pt;}
.y60{bottom:520.213333pt;}
.y9b{bottom:522.933333pt;}
.y7c{bottom:527.893333pt;}
.y19{bottom:529.013333pt;}
.y5f{bottom:535.573333pt;}
.y5e{bottom:550.853333pt;}
.y18{bottom:559.733333pt;}
.y5d{bottom:566.213333pt;}
.y17{bottom:577.413333pt;}
.y5c{bottom:594.693333pt;}
.y16{bottom:602.373333pt;}
.y5b{bottom:607.573333pt;}
.y15{bottom:616.213333pt;}
.y5a{bottom:620.533333pt;}
.y95{bottom:621.733333pt;}
.y58{bottom:633.493333pt;}
.y14{bottom:633.973333pt;}
.y13{bottom:643.813333pt;}
.y57{bottom:646.373333pt;}
.y12{bottom:661.573333pt;}
.y56{bottom:662.213333pt;}
.y11{bottom:671.413333pt;}
.y55{bottom:677.573333pt;}
.y10{bottom:689.173333pt;}
.y54{bottom:692.853333pt;}
.yf{bottom:699.573333pt;}
.y53{bottom:708.213333pt;}
.ye{bottom:718.453333pt;}
.y94{bottom:720.533333pt;}
.y52{bottom:723.573333pt;}
.y90{bottom:733.493333pt;}
.y51{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.y50{bottom:754.213333pt;}
.y4f{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.y8f{bottom:783.173333pt;}
.y4e{bottom:784.853333pt;}
.y4d{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y4c{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.y4b{bottom:830.853333pt;}
.y8e{bottom:838.533333pt;}
.y8{bottom:840.533333pt;}
.y4a{bottom:846.213333pt;}
.y49{bottom:861.493333pt;}
.y48{bottom:876.853333pt;}
.y8d{bottom:884.560000pt;}
.y47{bottom:892.240000pt;}
.y46{bottom:907.520000pt;}
.y45{bottom:922.880000pt;}
.y8c{bottom:930.560000pt;}
.y44{bottom:938.240000pt;}
.y43{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h14{height:11.171875pt;}
.h1c{height:12.240000pt;}
.h1a{height:12.320000pt;}
.h16{height:14.970312pt;}
.he{height:15.280000pt;}
.h17{height:17.760000pt;}
.h11{height:18.545312pt;}
.hc{height:22.343750pt;}
.h3{height:24.560000pt;}
.h1b{height:29.717188pt;}
.h5{height:30.028906pt;}
.hd{height:33.515625pt;}
.h6{height:34.739844pt;}
.h4{height:37.314062pt;}
.hf{height:37.705469pt;}
.h1d{height:38.905781pt;}
.h15{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h12{height:44.046250pt;}
.h1{height:45.156250pt;}
.h1e{height:49.040000pt;}
.h9{height:58.245469pt;}
.hb{height:60.283594pt;}
.ha{height:67.734375pt;}
.h20{height:86.506667pt;}
.h18{height:93.840000pt;}
.h1f{height:98.160000pt;}
.h19{height:113.520000pt;}
.h7{height:136.826667pt;}
.h13{height:137.306667pt;}
.h10{height:364.426667pt;}
.h0{height:1056.000000pt;}
.w2{width:33.840000pt;}
.wa{width:63.306667pt;}
.wc{width:74.586667pt;}
.w8{width:160.186667pt;}
.w7{width:198.026667pt;}
.w9{width:199.200000pt;}
.w6{width:221.866667pt;}
.wd{width:273.440000pt;}
.wb{width:348.666667pt;}
.w5{width:497.093333pt;}
.w3{width:683.600000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:5.920000pt;}
.x4{left:7.680000pt;}
.x20{left:9.280000pt;}
.x24{left:13.120000pt;}
.x15{left:17.920000pt;}
.x16{left:23.920000pt;}
.x28{left:29.280000pt;}
.x1c{left:31.920000pt;}
.x18{left:40.720000pt;}
.x1f{left:45.146667pt;}
.x2{left:47.999988pt;}
.x21{left:50.746667pt;}
.x25{left:52.186667pt;}
.x1{left:53.999988pt;}
.x3{left:61.680000pt;}
.x22{left:64.080000pt;}
.x26{left:69.280000pt;}
.x2e{left:73.280000pt;}
.xc{left:75.599988pt;}
.x2a{left:77.119988pt;}
.xb{left:78.319988pt;}
.x8{left:81.039988pt;}
.xe{left:82.079988pt;}
.x23{left:83.680000pt;}
.x27{left:88.800000pt;}
.x5{left:96.480000pt;}
.x2b{left:99.146667pt;}
.x10{left:109.839988pt;}
.x9{left:116.959988pt;}
.x2c{left:134.906667pt;}
.x2d{left:136.586667pt;}
.x19{left:152.320000pt;}
.x1b{left:295.386667pt;}
.xd{left:307.706655pt;}
.x12{left:322.026655pt;}
.xf{left:328.506655pt;}
.x11{left:368.186655pt;}
.x7{left:408.026655pt;}
.xa{left:414.026655pt;}
.x13{left:423.013321pt;}
.x1a{left:426.053321pt;}
.x29{left:449.173321pt;}
.x1d{left:456.213333pt;}
.x14{left:552.373333pt;}
.x1e{left:656.133333pt;}
.x6{left:722.160000pt;}
}




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