
    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_88e571cce849f05f753df474.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_0f8378f295003fe5f19ea8c0.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1c0a952c2307eaf1753ed167.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_292ddd8ac34d9296a6092490.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_117ecd9a66223b6109b19efb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_b238afdbeefa1143f06458ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_71ea6b8609b834f9294df6ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.041992;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_d0d831afd161358fa35048bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_0c14cfbe89645b66013f8c2d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_4d1ff284a3db53121deb9f17.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0755e37593d81d9b3709258e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937988;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:ffc;src:url('chunks/assets/font_12b5b1c8be9b7c12e9678b08.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c2c0e24e83060d34c463221e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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:ffe;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d2b76efa0f5be08429244629.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6e92aa9d813c784aa911c4f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.041992;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.vd{vertical-align:-10.080000px;}
.vb{vertical-align:-8.640000px;}
.v1{vertical-align:-7.200000px;}
.v3{vertical-align:-5.760000px;}
.v4{vertical-align:-4.553634px;}
.v8{vertical-align:-2.880000px;}
.v5{vertical-align:-1.517878px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.440000px;}
.v9{vertical-align:2.880000px;}
.v7{vertical-align:4.320000px;}
.v6{vertical-align:6.071512px;}
.v2{vertical-align:7.200000px;}
.vc{vertical-align:8.640000px;}
.ve{vertical-align:10.080000px;}
.ls1b{letter-spacing:-1.062000px;}
.ls1f{letter-spacing:-0.924000px;}
.ls27{letter-spacing:-0.756000px;}
.ls10{letter-spacing:-0.548400px;}
.ls26{letter-spacing:-0.538800px;}
.ls18{letter-spacing:-0.483600px;}
.ls8{letter-spacing:-0.420600px;}
.lsd{letter-spacing:-0.241596px;}
.lsf{letter-spacing:-0.229200px;}
.ls1a{letter-spacing:-0.186000px;}
.ls20{letter-spacing:-0.129600px;}
.ls24{letter-spacing:-0.014400px;}
.ls9{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.078000px;}
.ls1e{letter-spacing:0.096600px;}
.ls13{letter-spacing:0.132480px;}
.ls19{letter-spacing:0.132600px;}
.ls7{letter-spacing:0.198720px;}
.ls29{letter-spacing:0.303600px;}
.ls6{letter-spacing:0.414720px;}
.ls5{letter-spacing:0.516960px;}
.lsb{letter-spacing:0.576000px;}
.ls25{letter-spacing:0.665280px;}
.lsc{letter-spacing:0.678000px;}
.ls22{letter-spacing:0.972960px;}
.lse{letter-spacing:1.277547px;}
.ls17{letter-spacing:1.356480px;}
.ls4{letter-spacing:1.435680px;}
.ls3{letter-spacing:1.440000px;}
.ls0{letter-spacing:1.517878px;}
.ls1c{letter-spacing:1.896000px;}
.ls15{letter-spacing:1.956960px;}
.ls21{letter-spacing:2.880000px;}
.ls2{letter-spacing:3.035756px;}
.ls1d{letter-spacing:4.320000px;}
.ls1{letter-spacing:4.553634px;}
.ls23{letter-spacing:7.200000px;}
.ls11{letter-spacing:11.520000px;}
.ls12{letter-spacing:12.960000px;}
.ls14{letter-spacing:14.400000px;}
.ls16{letter-spacing:15.840000px;}
.ls28{letter-spacing:30.939840px;}
.ls2a{letter-spacing:30.951840px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-83.520000px;}
.ws8{word-spacing:-60.480000px;}
.ws0{word-spacing:-23.549640px;}
.ws1{word-spacing:-19.010880px;}
.wsd{word-spacing:-17.890800px;}
.wse{word-spacing:-17.508960px;}
.ws17{word-spacing:-16.960560px;}
.ws4{word-spacing:-16.416000px;}
.ws3{word-spacing:-14.650800px;}
.ws5{word-spacing:-0.780240px;}
.ws16{word-spacing:-0.394320px;}
.ws11{word-spacing:-0.187320px;}
.ws6{word-spacing:-0.102240px;}
.ws7{word-spacing:-0.096480px;}
.wsa{word-spacing:-0.095626px;}
.wsb{word-spacing:-0.090720px;}
.ws14{word-spacing:-0.076320px;}
.ws9{word-spacing:-0.075894px;}
.wsc{word-spacing:0.000000px;}
.ws13{word-spacing:0.038880px;}
.wsf{word-spacing:0.095280px;}
.ws15{word-spacing:0.448080px;}
.ws12{word-spacing:0.833280px;}
.ws10{word-spacing:14.309280px;}
._9{margin-left:-15.701554px;}
._27{margin-left:-14.478960px;}
._24{margin-left:-12.433819px;}
._40{margin-left:-6.535560px;}
._8{margin-left:-5.362750px;}
._3{margin-left:-3.866760px;}
._41{margin-left:-2.754241px;}
._2{margin-left:-1.722240px;}
._0{width:1.620360px;}
._1{width:3.264840px;}
._4{width:5.225503px;}
._5{width:6.529360px;}
._d{width:7.610641px;}
._e{width:9.141026px;}
._f{width:10.232982px;}
._c{width:11.234722px;}
._a{width:12.528014px;}
._b{width:14.186833px;}
._6{width:15.879257px;}
._7{width:17.161296px;}
._16{width:18.930504px;}
._29{width:20.233410px;}
._25{width:21.285720px;}
._28{width:22.353840px;}
._13{width:23.676480px;}
._12{width:24.857280px;}
._11{width:26.382720px;}
._3a{width:27.496920px;}
._1d{width:28.539120px;}
._10{width:30.300480px;}
._34{width:31.652160px;}
._26{width:33.164640px;}
._31{width:34.199040px;}
._20{width:35.409120px;}
._1c{width:36.665280px;}
._1b{width:38.165760px;}
._37{width:40.078800px;}
._17{width:41.912640px;}
._18{width:43.772760px;}
._32{width:45.801240px;}
._2e{width:47.999160px;}
._30{width:49.069800px;}
._2f{width:50.192160px;}
._44{width:51.501721px;}
._3c{width:52.653120px;}
._15{width:53.964000px;}
._14{width:55.457280px;}
._39{width:57.074400px;}
._45{width:58.426202px;}
._38{width:59.714880px;}
._3f{width:60.740640px;}
._1f{width:62.488800px;}
._1e{width:63.526680px;}
._19{width:64.954080px;}
._1a{width:65.960160px;}
._2b{width:67.107480px;}
._2a{width:68.139360px;}
._46{width:69.492600px;}
._3d{width:71.828640px;}
._35{width:73.920960px;}
._43{width:78.960960px;}
._3b{width:80.854560px;}
._47{width:81.959640px;}
._48{width:92.442240px;}
._49{width:93.854400px;}
._42{width:97.068960px;}
._2d{width:98.560800px;}
._2c{width:99.836160px;}
._3e{width:101.128320px;}
._33{width:111.231360px;}
._36{width:113.045760px;}
._4a{width:117.754560px;}
._23{width:154.994280px;}
._4c{width:177.629760px;}
._4b{width:178.807680px;}
._21{width:190.248600px;}
._22{width:197.745600px;}
._4d{width:892.751641px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs6{font-size:24.480000px;}
.fse{font-size:36.000000px;}
.fs9{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:75.893905px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fsd{font-size:90.720000px;}
.fsb{font-size:93.600000px;}
.fsc{font-size:95.626320px;}
.fs7{font-size:96.480000px;}
.fs8{font-size:101.697833px;}
.fs5{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y1a{bottom:1.425000px;}
.y12{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.yb{bottom:6.480000px;}
.y9{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.y10{bottom:20.160000px;}
.y17{bottom:29.865000px;}
.y5{bottom:33.120000px;}
.y1{bottom:51.120000px;}
.y16{bottom:57.585000px;}
.y34{bottom:77.796000px;}
.y15{bottom:89.295000px;}
.y14{bottom:121.335000px;}
.y54{bottom:121.356000px;}
.y31{bottom:144.756000px;}
.y53{bottom:155.190000px;}
.y30{bottom:178.590000px;}
.y52{bottom:189.030000px;}
.y2f{bottom:212.115000px;}
.y51{bottom:222.555000px;}
.y2e{bottom:245.955000px;}
.y59{bottom:254.595000px;}
.y50{bottom:256.395000px;}
.y2d{bottom:279.795000px;}
.y4f{bottom:290.235000px;}
.y2c{bottom:313.275000px;}
.y4e{bottom:323.715000px;}
.y2b{bottom:347.145000px;}
.y4d{bottom:357.585000px;}
.y2a{bottom:380.985000px;}
.y4c{bottom:391.425000px;}
.y29{bottom:414.465000px;}
.y4b{bottom:424.905000px;}
.y28{bottom:448.305000px;}
.y4a{bottom:458.790000px;}
.y27{bottom:482.190000px;}
.y57{bottom:490.830000px;}
.y49{bottom:492.630000px;}
.y26{bottom:515.670000px;}
.y48{bottom:526.110000px;}
.y25{bottom:549.510000px;}
.y47{bottom:559.950000px;}
.y24{bottom:583.380000px;}
.y46{bottom:593.820000px;}
.y23{bottom:615.060000px;}
.y45{bottom:627.300000px;}
.y22{bottom:645.300000px;}
.y58{bottom:659.340000px;}
.y44{bottom:661.140000px;}
.y21{bottom:674.820000px;}
.y43{bottom:694.980000px;}
.y20{bottom:704.730000px;}
.y42{bottom:728.490000px;}
.y1f{bottom:734.610000px;}
.y41{bottom:762.330000px;}
.y1e{bottom:764.490000px;}
.y1d{bottom:794.370000px;}
.y40{bottom:796.170000px;}
.y1c{bottom:824.250000px;}
.y3f{bottom:830.055000px;}
.y1b{bottom:854.175000px;}
.y3e{bottom:863.535000px;}
.y19{bottom:872.190000px;}
.y13{bottom:879.390000px;}
.y18{bottom:883.190140px;}
.y3d{bottom:897.375000px;}
.y3c{bottom:931.215000px;}
.y3b{bottom:964.725000px;}
.y3a{bottom:998.565000px;}
.y11{bottom:1029.165000px;}
.y39{bottom:1032.405000px;}
.yf{bottom:1035.645000px;}
.y38{bottom:1065.885000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y56{bottom:1097.970000px;}
.y37{bottom:1099.770000px;}
.y2{bottom:1106.250000px;}
.y7{bottom:1128.570000px;}
.y36{bottom:1133.610000px;}
.y4{bottom:1156.650000px;}
.y55{bottom:1165.290000px;}
.y35{bottom:1167.090000px;}
.y33{bottom:1187.250000px;}
.y32{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h19{height:7.185000px;}
.hd{height:13.857187px;}
.h1a{height:18.120938px;}
.h11{height:19.584000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h1e{height:30.480469px;}
.he{height:41.070000px;}
.h20{height:51.880599px;}
.h5{height:52.950000px;}
.h16{height:55.586356px;}
.h9{height:56.084062px;}
.h15{height:59.328281px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h1c{height:62.015625px;}
.h17{height:63.984375px;}
.h1f{height:65.884219px;}
.h1d{height:66.445312px;}
.h1b{height:70.038809px;}
.h13{height:70.664062px;}
.h6{height:70.714687px;}
.h18{height:72.562500px;}
.h21{height:73.645312px;}
.h14{height:74.485717px;}
.hf{height:74.882812px;}
.h4{height:79.925027px;}
.h22{height:93.245864px;}
.h3{height:103.350000px;}
.h12{height:149.760000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.266500px;}
.x5{left:11.145000px;}
.x10{left:20.520000px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.x12{left:72.385500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.xd{left:96.150000px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x26{left:135.072000px;}
.x1b{left:162.075000px;}
.x4{left:168.930000px;}
.x15{left:177.175500px;}
.x16{left:206.740500px;}
.x6{left:208.860000px;}
.x1e{left:210.315000px;}
.x1f{left:213.915000px;}
.x22{left:226.155000px;}
.x24{left:248.115000px;}
.x13{left:267.580500px;}
.x14{left:287.380500px;}
.x23{left:312.225000px;}
.x19{left:325.030998px;}
.x11{left:335.650500px;}
.x17{left:362.290500px;}
.xa{left:445.860000px;}
.x18{left:464.560500px;}
.x1c{left:473.580000px;}
.x25{left:500.610000px;}
.x1d{left:527.610000px;}
.x21{left:684.180000px;}
.x20{left:704.340000px;}
.x7{left:722.445000px;}
.x1{left:749.445000px;}
@media print{
.vd{vertical-align:-8.960000pt;}
.vb{vertical-align:-7.680000pt;}
.v1{vertical-align:-6.400000pt;}
.v3{vertical-align:-5.120000pt;}
.v4{vertical-align:-4.047675pt;}
.v8{vertical-align:-2.560000pt;}
.v5{vertical-align:-1.349225pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.280000pt;}
.v9{vertical-align:2.560000pt;}
.v7{vertical-align:3.840000pt;}
.v6{vertical-align:5.396900pt;}
.v2{vertical-align:6.400000pt;}
.vc{vertical-align:7.680000pt;}
.ve{vertical-align:8.960000pt;}
.ls1b{letter-spacing:-0.944000pt;}
.ls1f{letter-spacing:-0.821333pt;}
.ls27{letter-spacing:-0.672000pt;}
.ls10{letter-spacing:-0.487467pt;}
.ls26{letter-spacing:-0.478933pt;}
.ls18{letter-spacing:-0.429867pt;}
.ls8{letter-spacing:-0.373867pt;}
.lsd{letter-spacing:-0.214752pt;}
.lsf{letter-spacing:-0.203733pt;}
.ls1a{letter-spacing:-0.165333pt;}
.ls20{letter-spacing:-0.115200pt;}
.ls24{letter-spacing:-0.012800pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.069333pt;}
.ls1e{letter-spacing:0.085867pt;}
.ls13{letter-spacing:0.117760pt;}
.ls19{letter-spacing:0.117867pt;}
.ls7{letter-spacing:0.176640pt;}
.ls29{letter-spacing:0.269867pt;}
.ls6{letter-spacing:0.368640pt;}
.ls5{letter-spacing:0.459520pt;}
.lsb{letter-spacing:0.512000pt;}
.ls25{letter-spacing:0.591360pt;}
.lsc{letter-spacing:0.602667pt;}
.ls22{letter-spacing:0.864853pt;}
.lse{letter-spacing:1.135598pt;}
.ls17{letter-spacing:1.205760pt;}
.ls4{letter-spacing:1.276160pt;}
.ls3{letter-spacing:1.280000pt;}
.ls0{letter-spacing:1.349225pt;}
.ls1c{letter-spacing:1.685333pt;}
.ls15{letter-spacing:1.739520pt;}
.ls21{letter-spacing:2.560000pt;}
.ls2{letter-spacing:2.698450pt;}
.ls1d{letter-spacing:3.840000pt;}
.ls1{letter-spacing:4.047675pt;}
.ls23{letter-spacing:6.400000pt;}
.ls11{letter-spacing:10.240000pt;}
.ls12{letter-spacing:11.520000pt;}
.ls14{letter-spacing:12.800000pt;}
.ls16{letter-spacing:14.080000pt;}
.ls28{letter-spacing:27.502080pt;}
.ls2a{letter-spacing:27.512747pt;}
.ws2{word-spacing:-74.240000pt;}
.ws8{word-spacing:-53.760000pt;}
.ws0{word-spacing:-20.933013pt;}
.ws1{word-spacing:-16.898560pt;}
.wsd{word-spacing:-15.902933pt;}
.wse{word-spacing:-15.563520pt;}
.ws17{word-spacing:-15.076053pt;}
.ws4{word-spacing:-14.592000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws5{word-spacing:-0.693547pt;}
.ws16{word-spacing:-0.350507pt;}
.ws11{word-spacing:-0.166507pt;}
.ws6{word-spacing:-0.090880pt;}
.ws7{word-spacing:-0.085760pt;}
.wsa{word-spacing:-0.085001pt;}
.wsb{word-spacing:-0.080640pt;}
.ws14{word-spacing:-0.067840pt;}
.ws9{word-spacing:-0.067461pt;}
.wsc{word-spacing:0.000000pt;}
.ws13{word-spacing:0.034560pt;}
.wsf{word-spacing:0.084693pt;}
.ws15{word-spacing:0.398293pt;}
.ws12{word-spacing:0.740693pt;}
.ws10{word-spacing:12.719360pt;}
._9{margin-left:-13.956937pt;}
._27{margin-left:-12.870187pt;}
._24{margin-left:-11.052284pt;}
._40{margin-left:-5.809387pt;}
._8{margin-left:-4.766889pt;}
._3{margin-left:-3.437120pt;}
._41{margin-left:-2.448214pt;}
._2{margin-left:-1.530880pt;}
._0{width:1.440320pt;}
._1{width:2.902080pt;}
._4{width:4.644891pt;}
._5{width:5.803876pt;}
._d{width:6.765014pt;}
._e{width:8.125357pt;}
._f{width:9.095984pt;}
._c{width:9.986419pt;}
._a{width:11.136013pt;}
._b{width:12.610518pt;}
._6{width:14.114895pt;}
._7{width:15.254485pt;}
._16{width:16.827115pt;}
._29{width:17.985253pt;}
._25{width:18.920640pt;}
._28{width:19.870080pt;}
._13{width:21.045760pt;}
._12{width:22.095360pt;}
._11{width:23.451307pt;}
._3a{width:24.441707pt;}
._1d{width:25.368107pt;}
._10{width:26.933760pt;}
._34{width:28.135253pt;}
._26{width:29.479680pt;}
._31{width:30.399147pt;}
._20{width:31.474773pt;}
._1c{width:32.591360pt;}
._1b{width:33.925120pt;}
._37{width:35.625600pt;}
._17{width:37.255680pt;}
._18{width:38.909120pt;}
._32{width:40.712213pt;}
._2e{width:42.665920pt;}
._30{width:43.617600pt;}
._2f{width:44.615253pt;}
._44{width:45.779307pt;}
._3c{width:46.802773pt;}
._15{width:47.968000pt;}
._14{width:49.295360pt;}
._39{width:50.732800pt;}
._45{width:51.934401pt;}
._38{width:53.079893pt;}
._3f{width:53.991680pt;}
._1f{width:55.545600pt;}
._1e{width:56.468160pt;}
._19{width:57.736960pt;}
._1a{width:58.631253pt;}
._2b{width:59.651093pt;}
._2a{width:60.568320pt;}
._46{width:61.771200pt;}
._3d{width:63.847680pt;}
._35{width:65.707520pt;}
._43{width:70.187520pt;}
._3b{width:71.870720pt;}
._47{width:72.853013pt;}
._48{width:82.170880pt;}
._49{width:83.426133pt;}
._42{width:86.283520pt;}
._2d{width:87.609600pt;}
._2c{width:88.743253pt;}
._3e{width:89.891840pt;}
._33{width:98.872320pt;}
._36{width:100.485120pt;}
._4a{width:104.670720pt;}
._23{width:137.772693pt;}
._4c{width:157.893120pt;}
._4b{width:158.940160pt;}
._21{width:169.109867pt;}
._22{width:175.773867pt;}
._4d{width:793.557014pt;}
.fs4{font-size:16.640000pt;}
.fs6{font-size:21.760000pt;}
.fse{font-size:32.000000pt;}
.fs9{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:67.461249pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fsd{font-size:80.640000pt;}
.fsb{font-size:83.200000pt;}
.fsc{font-size:85.001174pt;}
.fs7{font-size:85.760000pt;}
.fs8{font-size:90.398073pt;}
.fs5{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y1a{bottom:1.266667pt;}
.y12{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.yb{bottom:5.760000pt;}
.y9{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.y10{bottom:17.920000pt;}
.y17{bottom:26.546667pt;}
.y5{bottom:29.440000pt;}
.y1{bottom:45.440000pt;}
.y16{bottom:51.186667pt;}
.y34{bottom:69.152000pt;}
.y15{bottom:79.373333pt;}
.y14{bottom:107.853333pt;}
.y54{bottom:107.872000pt;}
.y31{bottom:128.672000pt;}
.y53{bottom:137.946667pt;}
.y30{bottom:158.746667pt;}
.y52{bottom:168.026667pt;}
.y2f{bottom:188.546667pt;}
.y51{bottom:197.826667pt;}
.y2e{bottom:218.626667pt;}
.y59{bottom:226.306667pt;}
.y50{bottom:227.906667pt;}
.y2d{bottom:248.706667pt;}
.y4f{bottom:257.986667pt;}
.y2c{bottom:278.466667pt;}
.y4e{bottom:287.746667pt;}
.y2b{bottom:308.573333pt;}
.y4d{bottom:317.853333pt;}
.y2a{bottom:338.653333pt;}
.y4c{bottom:347.933333pt;}
.y29{bottom:368.413333pt;}
.y4b{bottom:377.693333pt;}
.y28{bottom:398.493333pt;}
.y4a{bottom:407.813333pt;}
.y27{bottom:428.613333pt;}
.y57{bottom:436.293333pt;}
.y49{bottom:437.893333pt;}
.y26{bottom:458.373333pt;}
.y48{bottom:467.653333pt;}
.y25{bottom:488.453333pt;}
.y47{bottom:497.733333pt;}
.y24{bottom:518.560000pt;}
.y46{bottom:527.840000pt;}
.y23{bottom:546.720000pt;}
.y45{bottom:557.600000pt;}
.y22{bottom:573.600000pt;}
.y58{bottom:586.080000pt;}
.y44{bottom:587.680000pt;}
.y21{bottom:599.840000pt;}
.y43{bottom:617.760000pt;}
.y20{bottom:626.426667pt;}
.y42{bottom:647.546667pt;}
.y1f{bottom:652.986667pt;}
.y41{bottom:677.626667pt;}
.y1e{bottom:679.546667pt;}
.y1d{bottom:706.106667pt;}
.y40{bottom:707.706667pt;}
.y1c{bottom:732.666667pt;}
.y3f{bottom:737.826667pt;}
.y1b{bottom:759.266667pt;}
.y3e{bottom:767.586667pt;}
.y19{bottom:775.280000pt;}
.y13{bottom:781.680000pt;}
.y18{bottom:785.057902pt;}
.y3d{bottom:797.666667pt;}
.y3c{bottom:827.746667pt;}
.y3b{bottom:857.533333pt;}
.y3a{bottom:887.613333pt;}
.y11{bottom:914.813333pt;}
.y39{bottom:917.693333pt;}
.yf{bottom:920.573333pt;}
.y38{bottom:947.453333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y56{bottom:975.973333pt;}
.y37{bottom:977.573333pt;}
.y2{bottom:983.333333pt;}
.y7{bottom:1003.173333pt;}
.y36{bottom:1007.653333pt;}
.y4{bottom:1028.133333pt;}
.y55{bottom:1035.813333pt;}
.y35{bottom:1037.413333pt;}
.y33{bottom:1055.333333pt;}
.y32{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h19{height:6.386667pt;}
.hd{height:12.317500pt;}
.h1a{height:16.107500pt;}
.h11{height:17.408000pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h1e{height:27.093750pt;}
.he{height:36.506667pt;}
.h20{height:46.116088pt;}
.h5{height:47.066667pt;}
.h16{height:49.410094pt;}
.h9{height:49.852500pt;}
.h15{height:52.736250pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h1c{height:55.125000pt;}
.h17{height:56.875000pt;}
.h1f{height:58.563750pt;}
.h1d{height:59.062500pt;}
.h1b{height:62.256719pt;}
.h13{height:62.812500pt;}
.h6{height:62.857500pt;}
.h18{height:64.500000pt;}
.h21{height:65.462500pt;}
.h14{height:66.209526pt;}
.hf{height:66.562500pt;}
.h4{height:71.044468pt;}
.h22{height:82.885213pt;}
.h3{height:91.866667pt;}
.h12{height:133.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.348000pt;}
.x5{left:9.906667pt;}
.x10{left:18.240000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.x12{left:64.342667pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.xd{left:85.466667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x26{left:120.064000pt;}
.x1b{left:144.066667pt;}
.x4{left:150.160000pt;}
.x15{left:157.489333pt;}
.x16{left:183.769333pt;}
.x6{left:185.653333pt;}
.x1e{left:186.946667pt;}
.x1f{left:190.146667pt;}
.x22{left:201.026667pt;}
.x24{left:220.546667pt;}
.x13{left:237.849333pt;}
.x14{left:255.449333pt;}
.x23{left:277.533333pt;}
.x19{left:288.916443pt;}
.x11{left:298.356000pt;}
.x17{left:322.036000pt;}
.xa{left:396.320000pt;}
.x18{left:412.942667pt;}
.x1c{left:420.960000pt;}
.x25{left:444.986667pt;}
.x1d{left:468.986667pt;}
.x21{left:608.160000pt;}
.x20{left:626.080000pt;}
.x7{left:642.173333pt;}
.x1{left:666.173333pt;}
}




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