
    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_c09ec3f1066fe89f18d99963.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_551b8cb64a264bc121b885fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.136000;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_a5d82fbd2488e95b5c10b8f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.140000;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_f21b02feadf7bf432df450ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.171000;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_4474b9b6aeec1a6b85783d9b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056000;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_558f0c4d31eacd8ff83a66e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_745d5b24ce777abab2d3b9d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008000;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_0e1f72160e8bbfc8fb8f3fc0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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);}
.v2{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls1{letter-spacing:-26.100000px;}
.ls4{letter-spacing:-3.600000px;}
.ls5{letter-spacing:-1.800000px;}
.ls8{letter-spacing:-1.320000px;}
.ls2{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:19.536000px;}
.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:-19.536000px;}
.ws1{word-spacing:-18.348000px;}
.ws5{word-spacing:-17.028000px;}
.ws2{word-spacing:-15.984000px;}
.ws3{word-spacing:-15.012000px;}
.ws4{word-spacing:-0.240000px;}
.ws6{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-37.314600px;}
._3{margin-left:-33.511800px;}
._5{margin-left:-32.257200px;}
._1{margin-left:-26.100000px;}
._9{margin-left:-24.469800px;}
._7{margin-left:-21.684000px;}
._b{margin-left:-19.536000px;}
._19{margin-left:-18.199800px;}
._f{margin-left:-12.240000px;}
._18{margin-left:-10.990200px;}
._15{margin-left:-8.111400px;}
._8{margin-left:-6.072000px;}
._0{margin-left:-4.320000px;}
._13{margin-left:-3.295800px;}
._4{margin-left:-2.281800px;}
._2{margin-left:-1.080000px;}
._d{width:1.181400px;}
._12{width:2.997000px;}
._10{width:4.396800px;}
._c{width:6.079200px;}
._a{width:7.743600px;}
._11{width:9.342000px;}
._16{width:10.758000px;}
._14{width:12.855000px;}
._e{width:14.009400px;}
._17{width:16.368000px;}
.fc4{color:rgb(145,143,143);}
.fc3{color:rgb(186,21,27);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:90.000000px;}
.fs7{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.fs8{font-size:180.000000px;}
.fsb{font-size:240.000000px;}
.fs1{font-size:348.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:69.873450px;}
.yd{bottom:127.559100px;}
.yc{bottom:144.059100px;}
.y2d{bottom:148.811550px;}
.y81{bottom:149.305800px;}
.ya8{bottom:152.332350px;}
.yb{bottom:160.559100px;}
.y2c{bottom:170.773050px;}
.y80{bottom:173.605800px;}
.ya7{bottom:176.632350px;}
.yc7{bottom:179.672400px;}
.y53{bottom:180.435750px;}
.y2b{bottom:192.720000px;}
.y52{bottom:196.935750px;}
.y7f{bottom:197.905800px;}
.ya6{bottom:200.932500px;}
.yc6{bottom:203.972400px;}
.ya{bottom:213.059100px;}
.y51{bottom:213.435750px;}
.y7e{bottom:222.205650px;}
.ya5{bottom:225.232500px;}
.yc5{bottom:228.272400px;}
.y50{bottom:229.935750px;}
.y2a{bottom:236.643000px;}
.y4f{bottom:246.435750px;}
.y73{bottom:246.505800px;}
.y9{bottom:249.059100px;}
.ya4{bottom:249.532500px;}
.yc4{bottom:252.572400px;}
.y29{bottom:258.604500px;}
.y4e{bottom:262.935750px;}
.y72{bottom:270.805800px;}
.ya3{bottom:273.832500px;}
.yc3{bottom:276.872400px;}
.y4d{bottom:279.435750px;}
.y28{bottom:280.551300px;}
.y8{bottom:285.059100px;}
.y71{bottom:295.105800px;}
.y4c{bottom:295.935750px;}
.ya2{bottom:298.132500px;}
.yc2{bottom:301.172400px;}
.y70{bottom:319.405800px;}
.ya1{bottom:322.432500px;}
.y27{bottom:324.474300px;}
.yc1{bottom:325.472400px;}
.y6f{bottom:343.705650px;}
.y4b{bottom:344.177100px;}
.y26{bottom:346.435800px;}
.ya0{bottom:346.732500px;}
.yc0{bottom:349.772400px;}
.y4a{bottom:359.927100px;}
.y7d{bottom:368.005800px;}
.y25{bottom:368.382750px;}
.y9f{bottom:371.032350px;}
.ybf{bottom:374.072400px;}
.y7{bottom:375.059100px;}
.y49{bottom:375.677100px;}
.y48{bottom:391.427100px;}
.y6e{bottom:392.305800px;}
.y9e{bottom:395.332500px;}
.ybe{bottom:398.372400px;}
.y24{bottom:412.305750px;}
.y6d{bottom:416.605800px;}
.y9d{bottom:419.632500px;}
.y47{bottom:422.927100px;}
.y23{bottom:434.267250px;}
.y46{bottom:438.677100px;}
.y6c{bottom:440.905800px;}
.y9c{bottom:443.932500px;}
.ybd{bottom:446.972400px;}
.y22{bottom:456.214050px;}
.y6b{bottom:465.205800px;}
.y9b{bottom:468.232500px;}
.y45{bottom:470.177100px;}
.ybc{bottom:471.272400px;}
.y6{bottom:483.059100px;}
.y44{bottom:485.927100px;}
.y6a{bottom:489.505800px;}
.y9a{bottom:492.532350px;}
.y7a{bottom:494.215050px;}
.ybb{bottom:495.572400px;}
.y21{bottom:500.137050px;}
.y69{bottom:513.805800px;}
.y99{bottom:516.832500px;}
.y43{bottom:517.427100px;}
.yba{bottom:519.872400px;}
.y79{bottom:521.215050px;}
.y20{bottom:522.098550px;}
.y42{bottom:533.177100px;}
.y68{bottom:538.105800px;}
.y98{bottom:541.132500px;}
.y1f{bottom:544.045350px;}
.yb9{bottom:544.172400px;}
.y78{bottom:548.215050px;}
.y5{bottom:555.059100px;}
.y67{bottom:562.405800px;}
.y41{bottom:564.677100px;}
.yaa{bottom:565.432500px;}
.yb8{bottom:568.472400px;}
.y4{bottom:573.059100px;}
.y77{bottom:575.215050px;}
.y40{bottom:580.427100px;}
.y7c{bottom:586.705800px;}
.y1e{bottom:587.968350px;}
.y97{bottom:589.732500px;}
.y86{bottom:599.238600px;}
.y76{bottom:602.215050px;}
.y1d{bottom:609.929850px;}
.y66{bottom:611.005800px;}
.y3f{bottom:611.927100px;}
.y96{bottom:614.032350px;}
.yb7{bottom:617.072400px;}
.y85{bottom:626.238600px;}
.y3e{bottom:627.677100px;}
.y75{bottom:629.215050px;}
.y1c{bottom:631.876800px;}
.y65{bottom:635.305800px;}
.y95{bottom:638.332500px;}
.yb6{bottom:641.372400px;}
.y74{bottom:650.215050px;}
.y84{bottom:653.238600px;}
.y3d{bottom:659.177100px;}
.y64{bottom:659.605800px;}
.y94{bottom:662.632350px;}
.yb5{bottom:665.672400px;}
.y3c{bottom:674.927100px;}
.y1b{bottom:675.799800px;}
.y83{bottom:680.238600px;}
.y63{bottom:683.905800px;}
.y93{bottom:686.932500px;}
.yb4{bottom:689.972400px;}
.y3b{bottom:690.677100px;}
.y1a{bottom:697.761300px;}
.y82{bottom:701.238600px;}
.y62{bottom:708.205800px;}
.y92{bottom:711.232500px;}
.yb3{bottom:714.272400px;}
.y19{bottom:719.708100px;}
.y3a{bottom:722.177100px;}
.y61{bottom:732.505800px;}
.y91{bottom:735.532500px;}
.y39{bottom:737.927100px;}
.yb2{bottom:738.572400px;}
.y38{bottom:753.677100px;}
.y60{bottom:756.805800px;}
.y90{bottom:759.832500px;}
.y18{bottom:763.631100px;}
.y5f{bottom:781.105800px;}
.y8f{bottom:784.132350px;}
.y37{bottom:785.177100px;}
.y17{bottom:785.592600px;}
.yb1{bottom:787.172400px;}
.y36{bottom:800.927100px;}
.y5e{bottom:805.405800px;}
.y16{bottom:807.539400px;}
.y8e{bottom:808.432500px;}
.yb0{bottom:811.472400px;}
.ycf{bottom:811.472700px;}
.y5d{bottom:829.705800px;}
.y35{bottom:832.427100px;}
.y8d{bottom:832.732500px;}
.yaf{bottom:835.772400px;}
.yce{bottom:835.772700px;}
.y34{bottom:848.177100px;}
.y15{bottom:851.462400px;}
.y7b{bottom:854.005800px;}
.y8c{bottom:857.032500px;}
.ycd{bottom:860.072550px;}
.y14{bottom:873.423900px;}
.y5c{bottom:878.305800px;}
.y33{bottom:879.677100px;}
.ya9{bottom:881.332350px;}
.yae{bottom:884.372400px;}
.ycc{bottom:884.372550px;}
.y13{bottom:895.370700px;}
.y32{bottom:895.427100px;}
.y5b{bottom:902.605800px;}
.y8b{bottom:905.632350px;}
.ycb{bottom:908.672550px;}
.y5a{bottom:926.905800px;}
.y31{bottom:926.927100px;}
.y8a{bottom:929.932350px;}
.y12{bottom:939.293700px;}
.y59{bottom:951.205800px;}
.y89{bottom:954.232350px;}
.yad{bottom:957.272400px;}
.yca{bottom:957.272550px;}
.y11{bottom:961.255200px;}
.y58{bottom:975.505800px;}
.y88{bottom:978.532350px;}
.yac{bottom:981.572400px;}
.yc9{bottom:981.572550px;}
.y10{bottom:983.209350px;}
.y1{bottom:995.382600px;}
.y57{bottom:999.805800px;}
.y87{bottom:1002.832350px;}
.yab{bottom:1005.872400px;}
.yc8{bottom:1005.872550px;}
.y56{bottom:1024.105800px;}
.yf{bottom:1027.132350px;}
.y30{bottom:1046.335800px;}
.y3{bottom:1049.909400px;}
.y2e{bottom:1086.799950px;}
.y2f{bottom:1091.335800px;}
.y55{bottom:1097.005800px;}
.y2{bottom:1135.409400px;}
.y54{bottom:1226.975850px;}
.h8{height:36.288000px;}
.h14{height:37.086000px;}
.h13{height:41.472000px;}
.h7{height:47.682000px;}
.h12{height:48.600000px;}
.h5{height:52.980000px;}
.h6{height:54.000000px;}
.hb{height:58.278000px;}
.h9{height:59.400000px;}
.ha{height:59.429400px;}
.hd{height:59.458200px;}
.hc{height:59.458800px;}
.h4{height:64.800000px;}
.h16{height:69.120000px;}
.h11{height:81.000000px;}
.hf{height:108.000000px;}
.h2{height:108.864000px;}
.he{height:129.024000px;}
.h17{height:132.000000px;}
.h10{height:161.280000px;}
.h15{height:168.000000px;}
.h3{height:311.808000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:75.303900px;}
.xa{left:79.646100px;}
.xc{left:88.128300px;}
.x8{left:90.745650px;}
.xb{left:95.103150px;}
.x9{left:103.630200px;}
.x11{left:115.398300px;}
.x10{left:142.945050px;}
.x4{left:144.567000px;}
.x2{left:148.818900px;}
.x13{left:168.354450px;}
.x1{left:208.346400px;}
.xe{left:213.617550px;}
.x12{left:262.846200px;}
.x3{left:287.007900px;}
.xf{left:465.590550px;}
.x7{left:467.716500px;}
.x6{left:504.921300px;}
.x5{left:637.795200px;}
@media print{
.v2{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls1{letter-spacing:-23.200000pt;}
.ls4{letter-spacing:-3.200000pt;}
.ls5{letter-spacing:-1.600000pt;}
.ls8{letter-spacing:-1.173333pt;}
.ls2{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:17.365333pt;}
.ws7{word-spacing:-17.365333pt;}
.ws1{word-spacing:-16.309333pt;}
.ws5{word-spacing:-15.136000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws4{word-spacing:-0.213333pt;}
.ws6{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-33.168533pt;}
._3{margin-left:-29.788267pt;}
._5{margin-left:-28.673067pt;}
._1{margin-left:-23.200000pt;}
._9{margin-left:-21.750933pt;}
._7{margin-left:-19.274667pt;}
._b{margin-left:-17.365333pt;}
._19{margin-left:-16.177600pt;}
._f{margin-left:-10.880000pt;}
._18{margin-left:-9.769067pt;}
._15{margin-left:-7.210133pt;}
._8{margin-left:-5.397333pt;}
._0{margin-left:-3.840000pt;}
._13{margin-left:-2.929600pt;}
._4{margin-left:-2.028267pt;}
._2{margin-left:-0.960000pt;}
._d{width:1.050133pt;}
._12{width:2.664000pt;}
._10{width:3.908267pt;}
._c{width:5.403733pt;}
._a{width:6.883200pt;}
._11{width:8.304000pt;}
._16{width:9.562667pt;}
._14{width:11.426667pt;}
._e{width:12.452800pt;}
._17{width:14.549333pt;}
.fsa{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:80.000000pt;}
.fs7{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.fs8{font-size:160.000000pt;}
.fsb{font-size:213.333333pt;}
.fs1{font-size:309.333333pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:62.109733pt;}
.yd{bottom:113.385867pt;}
.yc{bottom:128.052533pt;}
.y2d{bottom:132.276933pt;}
.y81{bottom:132.716267pt;}
.ya8{bottom:135.406533pt;}
.yb{bottom:142.719200pt;}
.y2c{bottom:151.798267pt;}
.y80{bottom:154.316267pt;}
.ya7{bottom:157.006533pt;}
.yc7{bottom:159.708800pt;}
.y53{bottom:160.387333pt;}
.y2b{bottom:171.306667pt;}
.y52{bottom:175.054000pt;}
.y7f{bottom:175.916267pt;}
.ya6{bottom:178.606667pt;}
.yc6{bottom:181.308800pt;}
.ya{bottom:189.385867pt;}
.y51{bottom:189.720667pt;}
.y7e{bottom:197.516133pt;}
.ya5{bottom:200.206667pt;}
.yc5{bottom:202.908800pt;}
.y50{bottom:204.387333pt;}
.y2a{bottom:210.349333pt;}
.y4f{bottom:219.054000pt;}
.y73{bottom:219.116267pt;}
.y9{bottom:221.385867pt;}
.ya4{bottom:221.806667pt;}
.yc4{bottom:224.508800pt;}
.y29{bottom:229.870667pt;}
.y4e{bottom:233.720667pt;}
.y72{bottom:240.716267pt;}
.ya3{bottom:243.406667pt;}
.yc3{bottom:246.108800pt;}
.y4d{bottom:248.387333pt;}
.y28{bottom:249.378933pt;}
.y8{bottom:253.385867pt;}
.y71{bottom:262.316267pt;}
.y4c{bottom:263.054000pt;}
.ya2{bottom:265.006667pt;}
.yc2{bottom:267.708800pt;}
.y70{bottom:283.916267pt;}
.ya1{bottom:286.606667pt;}
.y27{bottom:288.421600pt;}
.yc1{bottom:289.308800pt;}
.y6f{bottom:305.516133pt;}
.y4b{bottom:305.935200pt;}
.y26{bottom:307.942933pt;}
.ya0{bottom:308.206667pt;}
.yc0{bottom:310.908800pt;}
.y4a{bottom:319.935200pt;}
.y7d{bottom:327.116267pt;}
.y25{bottom:327.451333pt;}
.y9f{bottom:329.806533pt;}
.ybf{bottom:332.508800pt;}
.y7{bottom:333.385867pt;}
.y49{bottom:333.935200pt;}
.y48{bottom:347.935200pt;}
.y6e{bottom:348.716267pt;}
.y9e{bottom:351.406667pt;}
.ybe{bottom:354.108800pt;}
.y24{bottom:366.494000pt;}
.y6d{bottom:370.316267pt;}
.y9d{bottom:373.006667pt;}
.y47{bottom:375.935200pt;}
.y23{bottom:386.015333pt;}
.y46{bottom:389.935200pt;}
.y6c{bottom:391.916267pt;}
.y9c{bottom:394.606667pt;}
.ybd{bottom:397.308800pt;}
.y22{bottom:405.523600pt;}
.y6b{bottom:413.516267pt;}
.y9b{bottom:416.206667pt;}
.y45{bottom:417.935200pt;}
.ybc{bottom:418.908800pt;}
.y6{bottom:429.385867pt;}
.y44{bottom:431.935200pt;}
.y6a{bottom:435.116267pt;}
.y9a{bottom:437.806533pt;}
.y7a{bottom:439.302267pt;}
.ybb{bottom:440.508800pt;}
.y21{bottom:444.566267pt;}
.y69{bottom:456.716267pt;}
.y99{bottom:459.406667pt;}
.y43{bottom:459.935200pt;}
.yba{bottom:462.108800pt;}
.y79{bottom:463.302267pt;}
.y20{bottom:464.087600pt;}
.y42{bottom:473.935200pt;}
.y68{bottom:478.316267pt;}
.y98{bottom:481.006667pt;}
.y1f{bottom:483.595867pt;}
.yb9{bottom:483.708800pt;}
.y78{bottom:487.302267pt;}
.y5{bottom:493.385867pt;}
.y67{bottom:499.916267pt;}
.y41{bottom:501.935200pt;}
.yaa{bottom:502.606667pt;}
.yb8{bottom:505.308800pt;}
.y4{bottom:509.385867pt;}
.y77{bottom:511.302267pt;}
.y40{bottom:515.935200pt;}
.y7c{bottom:521.516267pt;}
.y1e{bottom:522.638533pt;}
.y97{bottom:524.206667pt;}
.y86{bottom:532.656533pt;}
.y76{bottom:535.302267pt;}
.y1d{bottom:542.159867pt;}
.y66{bottom:543.116267pt;}
.y3f{bottom:543.935200pt;}
.y96{bottom:545.806533pt;}
.yb7{bottom:548.508800pt;}
.y85{bottom:556.656533pt;}
.y3e{bottom:557.935200pt;}
.y75{bottom:559.302267pt;}
.y1c{bottom:561.668267pt;}
.y65{bottom:564.716267pt;}
.y95{bottom:567.406667pt;}
.yb6{bottom:570.108800pt;}
.y74{bottom:577.968933pt;}
.y84{bottom:580.656533pt;}
.y3d{bottom:585.935200pt;}
.y64{bottom:586.316267pt;}
.y94{bottom:589.006533pt;}
.yb5{bottom:591.708800pt;}
.y3c{bottom:599.935200pt;}
.y1b{bottom:600.710933pt;}
.y83{bottom:604.656533pt;}
.y63{bottom:607.916267pt;}
.y93{bottom:610.606667pt;}
.yb4{bottom:613.308800pt;}
.y3b{bottom:613.935200pt;}
.y1a{bottom:620.232267pt;}
.y82{bottom:623.323200pt;}
.y62{bottom:629.516267pt;}
.y92{bottom:632.206667pt;}
.yb3{bottom:634.908800pt;}
.y19{bottom:639.740533pt;}
.y3a{bottom:641.935200pt;}
.y61{bottom:651.116267pt;}
.y91{bottom:653.806667pt;}
.y39{bottom:655.935200pt;}
.yb2{bottom:656.508800pt;}
.y38{bottom:669.935200pt;}
.y60{bottom:672.716267pt;}
.y90{bottom:675.406667pt;}
.y18{bottom:678.783200pt;}
.y5f{bottom:694.316267pt;}
.y8f{bottom:697.006533pt;}
.y37{bottom:697.935200pt;}
.y17{bottom:698.304533pt;}
.yb1{bottom:699.708800pt;}
.y36{bottom:711.935200pt;}
.y5e{bottom:715.916267pt;}
.y16{bottom:717.812800pt;}
.y8e{bottom:718.606667pt;}
.yb0{bottom:721.308800pt;}
.ycf{bottom:721.309067pt;}
.y5d{bottom:737.516267pt;}
.y35{bottom:739.935200pt;}
.y8d{bottom:740.206667pt;}
.yaf{bottom:742.908800pt;}
.yce{bottom:742.909067pt;}
.y34{bottom:753.935200pt;}
.y15{bottom:756.855467pt;}
.y7b{bottom:759.116267pt;}
.y8c{bottom:761.806667pt;}
.ycd{bottom:764.508933pt;}
.y14{bottom:776.376800pt;}
.y5c{bottom:780.716267pt;}
.y33{bottom:781.935200pt;}
.ya9{bottom:783.406533pt;}
.yae{bottom:786.108800pt;}
.ycc{bottom:786.108933pt;}
.y13{bottom:795.885067pt;}
.y32{bottom:795.935200pt;}
.y5b{bottom:802.316267pt;}
.y8b{bottom:805.006533pt;}
.ycb{bottom:807.708933pt;}
.y5a{bottom:823.916267pt;}
.y31{bottom:823.935200pt;}
.y8a{bottom:826.606533pt;}
.y12{bottom:834.927733pt;}
.y59{bottom:845.516267pt;}
.y89{bottom:848.206533pt;}
.yad{bottom:850.908800pt;}
.yca{bottom:850.908933pt;}
.y11{bottom:854.449067pt;}
.y58{bottom:867.116267pt;}
.y88{bottom:869.806533pt;}
.yac{bottom:872.508800pt;}
.yc9{bottom:872.508933pt;}
.y10{bottom:873.963867pt;}
.y1{bottom:884.784533pt;}
.y57{bottom:888.716267pt;}
.y87{bottom:891.406533pt;}
.yab{bottom:894.108800pt;}
.yc8{bottom:894.108933pt;}
.y56{bottom:910.316267pt;}
.yf{bottom:913.006533pt;}
.y30{bottom:930.076267pt;}
.y3{bottom:933.252800pt;}
.y2e{bottom:966.044400pt;}
.y2f{bottom:970.076267pt;}
.y55{bottom:975.116267pt;}
.y2{bottom:1009.252800pt;}
.y54{bottom:1090.645200pt;}
.h8{height:32.256000pt;}
.h14{height:32.965333pt;}
.h13{height:36.864000pt;}
.h7{height:42.384000pt;}
.h12{height:43.200000pt;}
.h5{height:47.093333pt;}
.h6{height:48.000000pt;}
.hb{height:51.802667pt;}
.h9{height:52.800000pt;}
.ha{height:52.826133pt;}
.hd{height:52.851733pt;}
.hc{height:52.852267pt;}
.h4{height:57.600000pt;}
.h16{height:61.440000pt;}
.h11{height:72.000000pt;}
.hf{height:96.000000pt;}
.h2{height:96.768000pt;}
.he{height:114.688000pt;}
.h17{height:117.333333pt;}
.h10{height:143.360000pt;}
.h15{height:149.333333pt;}
.h3{height:277.162667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:66.936800pt;}
.xa{left:70.796533pt;}
.xc{left:78.336267pt;}
.x8{left:80.662800pt;}
.xb{left:84.536133pt;}
.x9{left:92.115733pt;}
.x11{left:102.576267pt;}
.x10{left:127.062267pt;}
.x4{left:128.504000pt;}
.x2{left:132.283467pt;}
.x13{left:149.648400pt;}
.x1{left:185.196800pt;}
.xe{left:189.882267pt;}
.x12{left:233.641067pt;}
.x3{left:255.118133pt;}
.xf{left:413.858267pt;}
.x7{left:415.748000pt;}
.x6{left:448.818933pt;}
.x5{left:566.929067pt;}
}




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