
    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_f8dec3b199476545bed7dc29.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_17a2d42725b69728770575ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_b29d20bc234b1c815a5eedaf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_23004884214540cdc64ddf1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_684b73082e2904d6183ec29e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972656;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_c837dc88f84119c32720841d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_87745c534d92e31dffe540ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972656;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_e5ca64fa2bc8ffa1024b4f1e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_24fdced0b90c4ca05ee0d286.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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;}
.ls10{letter-spacing:-0.894960px;}
.lsd{letter-spacing:-0.813600px;}
.ls12{letter-spacing:-0.732240px;}
.ls11{letter-spacing:-0.650880px;}
.ls18{letter-spacing:-0.569520px;}
.lsa{letter-spacing:-0.488160px;}
.lse{letter-spacing:-0.406800px;}
.ls1a{letter-spacing:-0.252720px;}
.lsf{letter-spacing:-0.244080px;}
.ls3{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.162720px;}
.ls0{letter-spacing:-0.095760px;}
.ls8{letter-spacing:-0.081360px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.081360px;}
.ls17{letter-spacing:0.162720px;}
.ls2{letter-spacing:0.244080px;}
.ls9{letter-spacing:0.325440px;}
.ls7{letter-spacing:1.220400px;}
.ls19{letter-spacing:7.729200px;}
.ls13{letter-spacing:13.505760px;}
.lsb{letter-spacing:17.817840px;}
.ls15{letter-spacing:19.282320px;}
.ls6{letter-spacing:20.665440px;}
.lsc{letter-spacing:27.174240px;}
.ls14{letter-spacing:27.906480px;}
.ls16{letter-spacing:33.683040px;}
.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;}
}
.ws1c{word-spacing:-83.987280px;}
.ws18{word-spacing:-33.683040px;}
.ws17{word-spacing:-27.906480px;}
.wsd{word-spacing:-27.174240px;}
.ws8{word-spacing:-20.665440px;}
.ws1{word-spacing:-19.689120px;}
.ws0{word-spacing:-19.607760px;}
.ws14{word-spacing:-19.445040px;}
.ws15{word-spacing:-19.200960px;}
.ws16{word-spacing:-13.505760px;}
.ws1b{word-spacing:-7.729200px;}
.ws9{word-spacing:-1.220400px;}
.wsb{word-spacing:-0.325440px;}
.ws4{word-spacing:-0.244080px;}
.ws19{word-spacing:-0.162720px;}
.ws7{word-spacing:-0.081360px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:0.081360px;}
.ws2{word-spacing:0.095760px;}
.ws6{word-spacing:0.162720px;}
.ws5{word-spacing:0.216000px;}
.ws10{word-spacing:0.244080px;}
.wsf{word-spacing:0.406800px;}
.wsc{word-spacing:0.488160px;}
.ws1a{word-spacing:0.569520px;}
.ws12{word-spacing:0.650880px;}
.ws13{word-spacing:0.732240px;}
.wse{word-spacing:0.813600px;}
.ws11{word-spacing:0.894960px;}
._33{margin-left:-34.216704px;}
._34{margin-left:-32.921568px;}
._1b{margin-left:-28.630584px;}
._18{margin-left:-27.426456px;}
._1a{margin-left:-26.344368px;}
._9{margin-left:-22.292640px;}
._8{margin-left:-20.518992px;}
._b{margin-left:-19.428768px;}
._2a{margin-left:-14.446224px;}
._2b{margin-left:-13.440672px;}
._2c{margin-left:-12.399552px;}
._39{margin-left:-8.690256px;}
._38{margin-left:-7.661088px;}
._23{margin-left:-5.402304px;}
._1c{margin-left:-3.937824px;}
._12{margin-left:-2.579112px;}
._2{margin-left:-1.220400px;}
._0{width:1.168272px;}
._13{width:2.216304px;}
._17{width:3.574080px;}
._16{width:4.726296px;}
._c{width:6.427440px;}
._32{width:7.447752px;}
._d{width:8.477712px;}
._4{width:9.901512px;}
._3{width:11.219544px;}
._21{width:13.180320px;}
._1f{width:14.595984px;}
._1e{width:15.645528px;}
._f{width:16.825248px;}
._e{width:18.013104px;}
._a{width:21.519720px;}
._5{width:22.992336px;}
._6{width:24.147648px;}
._3f{width:25.481952px;}
._19{width:27.174240px;}
._11{width:28.549224px;}
._10{width:29.606904px;}
._30{width:30.713400px;}
._31{width:31.771080px;}
._25{width:33.430824px;}
._24{width:34.618680px;}
._15{width:36.441144px;}
._14{width:37.889352px;}
._1d{width:39.331800px;}
._7{width:41.387832px;}
._1{width:42.583824px;}
._3d{width:46.245024px;}
._28{width:47.969856px;}
._26{width:49.003128px;}
._27{width:50.475744px;}
._22{width:52.493472px;}
._29{width:53.762688px;}
._20{width:58.924224px;}
._3e{width:63.110952px;}
._3b{width:64.111680px;}
._3a{width:65.616840px;}
._3c{width:81.091512px;}
._37{width:86.379912px;}
._35{width:88.926480px;}
._2d{width:112.691736px;}
._2e{width:113.822640px;}
._36{width:125.408304px;}
._2f{width:159.644592px;}
.fc4{color:rgb(149,79,114);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(236,104,3);}
.fc1{color:rgb(26,114,163);}
.fc0{color:rgb(31,33,36);}
.fs2{font-size:5.760000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:81.360000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y19{bottom:75.060000px;}
.y46{bottom:77.040000px;}
.y6a{bottom:84.420000px;}
.y74{bottom:92.700000px;}
.y18{bottom:98.100000px;}
.y45{bottom:100.080000px;}
.y69{bottom:107.460000px;}
.y73{bottom:115.740000px;}
.y17{bottom:121.140000px;}
.y44{bottom:123.120000px;}
.y68{bottom:130.500000px;}
.y16{bottom:144.180000px;}
.y43{bottom:146.160000px;}
.y67{bottom:153.540000px;}
.y15{bottom:167.220000px;}
.y42{bottom:169.200000px;}
.y66{bottom:176.580000px;}
.y41{bottom:192.240000px;}
.y65{bottom:199.440000px;}
.y40{bottom:215.100000px;}
.y14{bottom:220.500000px;}
.y64{bottom:222.480000px;}
.y3f{bottom:238.140000px;}
.y13{bottom:243.540000px;}
.y63{bottom:245.520000px;}
.y3e{bottom:261.180000px;}
.y12{bottom:266.580000px;}
.y62{bottom:268.560000px;}
.y72{bottom:284.220000px;}
.y11{bottom:289.620000px;}
.y61{bottom:291.600000px;}
.y71{bottom:307.260000px;}
.y10{bottom:312.660000px;}
.y3d{bottom:314.460000px;}
.y60{bottom:314.640000px;}
.y70{bottom:330.300000px;}
.yf{bottom:335.520000px;}
.y3c{bottom:337.500000px;}
.y6f{bottom:353.160000px;}
.y3b{bottom:360.540000px;}
.y6e{bottom:376.200000px;}
.y3a{bottom:383.580000px;}
.ye{bottom:388.980000px;}
.y5f{bottom:390.960000px;}
.y39{bottom:406.620000px;}
.yd{bottom:412.020000px;}
.y5e{bottom:414.000000px;}
.y38{bottom:429.660000px;}
.yc{bottom:435.060000px;}
.y5d{bottom:437.040000px;}
.y37{bottom:452.700000px;}
.yb{bottom:457.920000px;}
.y5c{bottom:459.900000px;}
.y36{bottom:475.560000px;}
.ya{bottom:480.960000px;}
.y5b{bottom:482.940000px;}
.y35{bottom:498.600000px;}
.y9{bottom:504.000000px;}
.y5a{bottom:505.980000px;}
.y34{bottom:521.640000px;}
.y8{bottom:527.040000px;}
.y59{bottom:529.020000px;}
.y33{bottom:544.680000px;}
.y7{bottom:550.080000px;}
.y58{bottom:552.060000px;}
.y32{bottom:567.720000px;}
.y57{bottom:575.100000px;}
.y31{bottom:590.760000px;}
.y56{bottom:597.960000px;}
.y6{bottom:601.920000px;}
.y30{bottom:613.620000px;}
.y5{bottom:618.840000px;}
.y55{bottom:621.000000px;}
.y2f{bottom:636.660000px;}
.y4{bottom:641.700000px;}
.y54{bottom:644.040000px;}
.y2e{bottom:659.700000px;}
.y53{bottom:667.080000px;}
.y2d{bottom:682.740000px;}
.y52{bottom:690.120000px;}
.y3{bottom:690.480000px;}
.y2c{bottom:705.780000px;}
.y51{bottom:713.160000px;}
.y2b{bottom:728.640000px;}
.y50{bottom:736.020000px;}
.y2a{bottom:751.680000px;}
.y4f{bottom:759.060000px;}
.y29{bottom:774.720000px;}
.y4e{bottom:782.100000px;}
.y28{bottom:797.760000px;}
.y4d{bottom:805.140000px;}
.y27{bottom:820.800000px;}
.y4c{bottom:828.180000px;}
.y4b{bottom:851.220000px;}
.y7d{bottom:854.460000px;}
.y26{bottom:874.080000px;}
.y7c{bottom:889.920000px;}
.y25{bottom:897.120000px;}
.y24{bottom:920.160000px;}
.y4a{bottom:927.540000px;}
.y7b{bottom:927.907920px;}
.y23{bottom:943.200000px;}
.y49{bottom:950.580000px;}
.y7a{bottom:961.740000px;}
.y22{bottom:966.240000px;}
.y48{bottom:973.620000px;}
.y79{bottom:981.900000px;}
.y6d{bottom:989.100000px;}
.y47{bottom:996.480000px;}
.y78{bottom:1004.760000px;}
.y6c{bottom:1012.140000px;}
.y21{bottom:1019.520000px;}
.y6b{bottom:1035.180000px;}
.y20{bottom:1042.560000px;}
.y77{bottom:1058.220000px;}
.y1f{bottom:1065.600000px;}
.y76{bottom:1081.260000px;}
.y1e{bottom:1088.640000px;}
.y75{bottom:1104.300000px;}
.y1d{bottom:1111.680000px;}
.y2{bottom:1128.240000px;}
.y1c{bottom:1134.540000px;}
.y1b{bottom:1157.580000px;}
.y1{bottom:1176.840000px;}
.y1a{bottom:1180.620000px;}
.h4{height:4.320000px;}
.h6{height:40.816406px;}
.h7{height:44.149219px;}
.h8{height:60.465234px;}
.h3{height:61.020000px;}
.h5{height:61.496719px;}
.h2{height:66.489609px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.200000px;}
.x2{left:829.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.795520pt;}
.lsd{letter-spacing:-0.723200pt;}
.ls12{letter-spacing:-0.650880pt;}
.ls11{letter-spacing:-0.578560pt;}
.ls18{letter-spacing:-0.506240pt;}
.lsa{letter-spacing:-0.433920pt;}
.lse{letter-spacing:-0.361600pt;}
.ls1a{letter-spacing:-0.224640pt;}
.lsf{letter-spacing:-0.216960pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.144640pt;}
.ls0{letter-spacing:-0.085120pt;}
.ls8{letter-spacing:-0.072320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.072320pt;}
.ls17{letter-spacing:0.144640pt;}
.ls2{letter-spacing:0.216960pt;}
.ls9{letter-spacing:0.289280pt;}
.ls7{letter-spacing:1.084800pt;}
.ls19{letter-spacing:6.870400pt;}
.ls13{letter-spacing:12.005120pt;}
.lsb{letter-spacing:15.838080pt;}
.ls15{letter-spacing:17.139840pt;}
.ls6{letter-spacing:18.369280pt;}
.lsc{letter-spacing:24.154880pt;}
.ls14{letter-spacing:24.805760pt;}
.ls16{letter-spacing:29.940480pt;}
.ws1c{word-spacing:-74.655360pt;}
.ws18{word-spacing:-29.940480pt;}
.ws17{word-spacing:-24.805760pt;}
.wsd{word-spacing:-24.154880pt;}
.ws8{word-spacing:-18.369280pt;}
.ws1{word-spacing:-17.501440pt;}
.ws0{word-spacing:-17.429120pt;}
.ws14{word-spacing:-17.284480pt;}
.ws15{word-spacing:-17.067520pt;}
.ws16{word-spacing:-12.005120pt;}
.ws1b{word-spacing:-6.870400pt;}
.ws9{word-spacing:-1.084800pt;}
.wsb{word-spacing:-0.289280pt;}
.ws4{word-spacing:-0.216960pt;}
.ws19{word-spacing:-0.144640pt;}
.ws7{word-spacing:-0.072320pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:0.072320pt;}
.ws2{word-spacing:0.085120pt;}
.ws6{word-spacing:0.144640pt;}
.ws5{word-spacing:0.192000pt;}
.ws10{word-spacing:0.216960pt;}
.wsf{word-spacing:0.361600pt;}
.wsc{word-spacing:0.433920pt;}
.ws1a{word-spacing:0.506240pt;}
.ws12{word-spacing:0.578560pt;}
.ws13{word-spacing:0.650880pt;}
.wse{word-spacing:0.723200pt;}
.ws11{word-spacing:0.795520pt;}
._33{margin-left:-30.414848pt;}
._34{margin-left:-29.263616pt;}
._1b{margin-left:-25.449408pt;}
._18{margin-left:-24.379072pt;}
._1a{margin-left:-23.417216pt;}
._9{margin-left:-19.815680pt;}
._8{margin-left:-18.239104pt;}
._b{margin-left:-17.270016pt;}
._2a{margin-left:-12.841088pt;}
._2b{margin-left:-11.947264pt;}
._2c{margin-left:-11.021824pt;}
._39{margin-left:-7.724672pt;}
._38{margin-left:-6.809856pt;}
._23{margin-left:-4.802048pt;}
._1c{margin-left:-3.500288pt;}
._12{margin-left:-2.292544pt;}
._2{margin-left:-1.084800pt;}
._0{width:1.038464pt;}
._13{width:1.970048pt;}
._17{width:3.176960pt;}
._16{width:4.201152pt;}
._c{width:5.713280pt;}
._32{width:6.620224pt;}
._d{width:7.535744pt;}
._4{width:8.801344pt;}
._3{width:9.972928pt;}
._21{width:11.715840pt;}
._1f{width:12.974208pt;}
._1e{width:13.907136pt;}
._f{width:14.955776pt;}
._e{width:16.011648pt;}
._a{width:19.128640pt;}
._5{width:20.437632pt;}
._6{width:21.464576pt;}
._3f{width:22.650624pt;}
._19{width:24.154880pt;}
._11{width:25.377088pt;}
._10{width:26.317248pt;}
._30{width:27.300800pt;}
._31{width:28.240960pt;}
._25{width:29.716288pt;}
._24{width:30.772160pt;}
._15{width:32.392128pt;}
._14{width:33.679424pt;}
._1d{width:34.961600pt;}
._7{width:36.789184pt;}
._1{width:37.852288pt;}
._3d{width:41.106688pt;}
._28{width:42.639872pt;}
._26{width:43.558336pt;}
._27{width:44.867328pt;}
._22{width:46.660864pt;}
._29{width:47.789056pt;}
._20{width:52.377088pt;}
._3e{width:56.098624pt;}
._3b{width:56.988160pt;}
._3a{width:58.326080pt;}
._3c{width:72.081344pt;}
._37{width:76.782144pt;}
._35{width:79.045760pt;}
._2d{width:100.170432pt;}
._2e{width:101.175680pt;}
._36{width:111.474048pt;}
._2f{width:141.906304pt;}
.fs2{font-size:5.120000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:72.320000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:66.720000pt;}
.y46{bottom:68.480000pt;}
.y6a{bottom:75.040000pt;}
.y74{bottom:82.400000pt;}
.y18{bottom:87.200000pt;}
.y45{bottom:88.960000pt;}
.y69{bottom:95.520000pt;}
.y73{bottom:102.880000pt;}
.y17{bottom:107.680000pt;}
.y44{bottom:109.440000pt;}
.y68{bottom:116.000000pt;}
.y16{bottom:128.160000pt;}
.y43{bottom:129.920000pt;}
.y67{bottom:136.480000pt;}
.y15{bottom:148.640000pt;}
.y42{bottom:150.400000pt;}
.y66{bottom:156.960000pt;}
.y41{bottom:170.880000pt;}
.y65{bottom:177.280000pt;}
.y40{bottom:191.200000pt;}
.y14{bottom:196.000000pt;}
.y64{bottom:197.760000pt;}
.y3f{bottom:211.680000pt;}
.y13{bottom:216.480000pt;}
.y63{bottom:218.240000pt;}
.y3e{bottom:232.160000pt;}
.y12{bottom:236.960000pt;}
.y62{bottom:238.720000pt;}
.y72{bottom:252.640000pt;}
.y11{bottom:257.440000pt;}
.y61{bottom:259.200000pt;}
.y71{bottom:273.120000pt;}
.y10{bottom:277.920000pt;}
.y3d{bottom:279.520000pt;}
.y60{bottom:279.680000pt;}
.y70{bottom:293.600000pt;}
.yf{bottom:298.240000pt;}
.y3c{bottom:300.000000pt;}
.y6f{bottom:313.920000pt;}
.y3b{bottom:320.480000pt;}
.y6e{bottom:334.400000pt;}
.y3a{bottom:340.960000pt;}
.ye{bottom:345.760000pt;}
.y5f{bottom:347.520000pt;}
.y39{bottom:361.440000pt;}
.yd{bottom:366.240000pt;}
.y5e{bottom:368.000000pt;}
.y38{bottom:381.920000pt;}
.yc{bottom:386.720000pt;}
.y5d{bottom:388.480000pt;}
.y37{bottom:402.400000pt;}
.yb{bottom:407.040000pt;}
.y5c{bottom:408.800000pt;}
.y36{bottom:422.720000pt;}
.ya{bottom:427.520000pt;}
.y5b{bottom:429.280000pt;}
.y35{bottom:443.200000pt;}
.y9{bottom:448.000000pt;}
.y5a{bottom:449.760000pt;}
.y34{bottom:463.680000pt;}
.y8{bottom:468.480000pt;}
.y59{bottom:470.240000pt;}
.y33{bottom:484.160000pt;}
.y7{bottom:488.960000pt;}
.y58{bottom:490.720000pt;}
.y32{bottom:504.640000pt;}
.y57{bottom:511.200000pt;}
.y31{bottom:525.120000pt;}
.y56{bottom:531.520000pt;}
.y6{bottom:535.040000pt;}
.y30{bottom:545.440000pt;}
.y5{bottom:550.080000pt;}
.y55{bottom:552.000000pt;}
.y2f{bottom:565.920000pt;}
.y4{bottom:570.400000pt;}
.y54{bottom:572.480000pt;}
.y2e{bottom:586.400000pt;}
.y53{bottom:592.960000pt;}
.y2d{bottom:606.880000pt;}
.y52{bottom:613.440000pt;}
.y3{bottom:613.760000pt;}
.y2c{bottom:627.360000pt;}
.y51{bottom:633.920000pt;}
.y2b{bottom:647.680000pt;}
.y50{bottom:654.240000pt;}
.y2a{bottom:668.160000pt;}
.y4f{bottom:674.720000pt;}
.y29{bottom:688.640000pt;}
.y4e{bottom:695.200000pt;}
.y28{bottom:709.120000pt;}
.y4d{bottom:715.680000pt;}
.y27{bottom:729.600000pt;}
.y4c{bottom:736.160000pt;}
.y4b{bottom:756.640000pt;}
.y7d{bottom:759.520000pt;}
.y26{bottom:776.960000pt;}
.y7c{bottom:791.040000pt;}
.y25{bottom:797.440000pt;}
.y24{bottom:817.920000pt;}
.y4a{bottom:824.480000pt;}
.y7b{bottom:824.807040pt;}
.y23{bottom:838.400000pt;}
.y49{bottom:844.960000pt;}
.y7a{bottom:854.880000pt;}
.y22{bottom:858.880000pt;}
.y48{bottom:865.440000pt;}
.y79{bottom:872.800000pt;}
.y6d{bottom:879.200000pt;}
.y47{bottom:885.760000pt;}
.y78{bottom:893.120000pt;}
.y6c{bottom:899.680000pt;}
.y21{bottom:906.240000pt;}
.y6b{bottom:920.160000pt;}
.y20{bottom:926.720000pt;}
.y77{bottom:940.640000pt;}
.y1f{bottom:947.200000pt;}
.y76{bottom:961.120000pt;}
.y1e{bottom:967.680000pt;}
.y75{bottom:981.600000pt;}
.y1d{bottom:988.160000pt;}
.y2{bottom:1002.880000pt;}
.y1c{bottom:1008.480000pt;}
.y1b{bottom:1028.960000pt;}
.y1{bottom:1046.080000pt;}
.y1a{bottom:1049.440000pt;}
.h4{height:3.840000pt;}
.h6{height:36.281250pt;}
.h7{height:39.243750pt;}
.h8{height:53.746875pt;}
.h3{height:54.240000pt;}
.h5{height:54.663750pt;}
.h2{height:59.101875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.400000pt;}
.x2{left:736.960000pt;}
}




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