
    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_de12b4a239e3ee241a00352f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_6a3c73e58dee17d051a8e0ce.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922363;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_b70698bc2e11a6eebc2b98a8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_90d63d061b20b0ca6457ffe0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_43bcb6cbdb9274c9967f1492.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b07aa75b46361e2ff7dac059.woff')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_4f93c9f82b6b86cf23c91953.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_e95254c106896d8b1287ef2c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.947000;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_7da9a4a35d5d177542d30431.woff')format("woff");}.ff9{font-family:ff9;line-height:0.922363;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:-16.983000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982600px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.750000px;}
.ws3{word-spacing:-7.870500px;}
.ws2{word-spacing:-7.433250px;}
.ws43{word-spacing:-2.970000px;}
.ws3d{word-spacing:-2.397000px;}
.ws32{word-spacing:-2.142000px;}
.ws46{word-spacing:-1.989000px;}
.ws41{word-spacing:-1.938000px;}
.wsb{word-spacing:-1.785000px;}
.ws24{word-spacing:-1.683000px;}
.ws15{word-spacing:-1.632000px;}
.ws34{word-spacing:-1.326000px;}
.wsf{word-spacing:-1.275000px;}
.ws49{word-spacing:-1.173000px;}
.ws36{word-spacing:-1.122000px;}
.ws42{word-spacing:-0.561000px;}
.ws2b{word-spacing:-0.459000px;}
.ws2c{word-spacing:-0.357000px;}
.ws13{word-spacing:-0.255000px;}
.ws3a{word-spacing:-0.102000px;}
.ws4{word-spacing:0.000000px;}
.ws47{word-spacing:0.204000px;}
.ws3e{word-spacing:0.306000px;}
.ws28{word-spacing:0.408000px;}
.ws10{word-spacing:0.510000px;}
.ws1f{word-spacing:0.663000px;}
.ws1b{word-spacing:0.969000px;}
.ws1e{word-spacing:1.224000px;}
.ws23{word-spacing:1.377000px;}
.ws4a{word-spacing:1.632000px;}
.ws1d{word-spacing:1.887000px;}
.ws11{word-spacing:2.040000px;}
.ws14{word-spacing:2.091000px;}
.ws27{word-spacing:2.142000px;}
.ws26{word-spacing:2.244000px;}
.ws3c{word-spacing:2.448000px;}
.ws2e{word-spacing:2.805000px;}
.ws3b{word-spacing:2.907000px;}
.ws2d{word-spacing:2.958000px;}
.ws39{word-spacing:3.009000px;}
.ws25{word-spacing:3.060000px;}
.ws2f{word-spacing:3.162000px;}
.ws35{word-spacing:3.264000px;}
.ws22{word-spacing:3.366000px;}
.ws12{word-spacing:3.417000px;}
.wsc{word-spacing:3.570000px;}
.ws30{word-spacing:3.621000px;}
.ws1c{word-spacing:3.774000px;}
.ws1a{word-spacing:3.825000px;}
.ws31{word-spacing:3.876000px;}
.ws3f{word-spacing:3.927000px;}
.wsd{word-spacing:3.978000px;}
.ws2a{word-spacing:4.080000px;}
.ws38{word-spacing:4.284000px;}
.ws40{word-spacing:4.590000px;}
.ws8{word-spacing:4.743000px;}
.ws21{word-spacing:4.896000px;}
.ws6{word-spacing:4.947000px;}
.ws20{word-spacing:4.998000px;}
.ws7{word-spacing:5.304000px;}
.ws17{word-spacing:5.457000px;}
.ws19{word-spacing:5.508000px;}
.wsa{word-spacing:5.763000px;}
.ws29{word-spacing:5.814000px;}
.ws5{word-spacing:6.171000px;}
.wse{word-spacing:6.630000px;}
.ws16{word-spacing:6.885000px;}
.ws37{word-spacing:7.089000px;}
.ws45{word-spacing:7.242000px;}
.ws33{word-spacing:7.344000px;}
.ws18{word-spacing:7.497000px;}
.ws48{word-spacing:7.752000px;}
.ws9{word-spacing:8.160000px;}
.ws4b{word-spacing:11.985000px;}
.ws44{word-spacing:34.833000px;}
._1{margin-left:-8.271000px;}
._0{margin-left:-5.808900px;}
._2{margin-left:-4.100100px;}
._9{margin-left:-2.891700px;}
._3{margin-left:-1.593000px;}
._4{width:1.254600px;}
._7{width:2.388300px;}
._5{width:3.522600px;}
._8{width:4.620600px;}
._6{width:5.625300px;}
._a{width:34.039200px;}
.fc2{color:rgb(0,96,173);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:29.733000px;}
.fs4{font-size:31.482000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:90.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:42.381900px;}
.y1{bottom:43.458900px;}
.y34{bottom:85.200000px;}
.y62{bottom:87.504150px;}
.y33{bottom:100.950000px;}
.y61{bottom:103.254150px;}
.y32{bottom:116.700000px;}
.y60{bottom:123.256050px;}
.y31{bottom:132.450000px;}
.y5f{bottom:139.006050px;}
.y30{bottom:148.200000px;}
.y5e{bottom:159.008100px;}
.y2f{bottom:163.950000px;}
.y2e{bottom:179.700000px;}
.y5d{bottom:183.262050px;}
.y2d{bottom:195.450000px;}
.y5c{bottom:205.513950px;}
.y2c{bottom:211.200000px;}
.y5b{bottom:221.263950px;}
.y2b{bottom:226.950000px;}
.y5a{bottom:237.013950px;}
.y2a{bottom:242.700000px;}
.y59{bottom:252.763950px;}
.y29{bottom:258.450000px;}
.y58{bottom:268.513950px;}
.y28{bottom:274.200000px;}
.y57{bottom:284.263950px;}
.y27{bottom:289.950000px;}
.y56{bottom:300.013950px;}
.y26{bottom:305.700000px;}
.y55{bottom:315.763950px;}
.y25{bottom:321.450000px;}
.y54{bottom:331.513950px;}
.y24{bottom:337.200000px;}
.y53{bottom:347.263950px;}
.y23{bottom:352.950000px;}
.y52{bottom:363.013950px;}
.y22{bottom:368.700000px;}
.y51{bottom:378.763950px;}
.y21{bottom:384.450000px;}
.y50{bottom:394.513950px;}
.y20{bottom:400.200000px;}
.y4f{bottom:410.263950px;}
.y1f{bottom:415.950000px;}
.y4e{bottom:426.013950px;}
.y1e{bottom:431.700000px;}
.y4d{bottom:441.763950px;}
.y1d{bottom:447.449850px;}
.y4c{bottom:457.513950px;}
.y1c{bottom:463.199850px;}
.y4b{bottom:473.263950px;}
.y1b{bottom:478.949850px;}
.y4a{bottom:489.013950px;}
.y1a{bottom:494.699850px;}
.y49{bottom:504.763950px;}
.y19{bottom:510.449850px;}
.y48{bottom:520.513950px;}
.y18{bottom:526.199850px;}
.y47{bottom:536.263950px;}
.y17{bottom:541.949850px;}
.y46{bottom:552.013950px;}
.y16{bottom:557.699850px;}
.y45{bottom:567.763950px;}
.y15{bottom:573.449850px;}
.y44{bottom:583.513950px;}
.y14{bottom:589.199850px;}
.y43{bottom:599.263950px;}
.y13{bottom:604.949850px;}
.y42{bottom:615.013950px;}
.y12{bottom:620.699850px;}
.y41{bottom:630.763950px;}
.y11{bottom:636.449850px;}
.y40{bottom:646.513950px;}
.y10{bottom:652.200000px;}
.y3f{bottom:662.263950px;}
.yf{bottom:667.950000px;}
.y3e{bottom:678.013950px;}
.ye{bottom:683.700000px;}
.y3d{bottom:693.763950px;}
.yd{bottom:699.450000px;}
.y3c{bottom:709.513950px;}
.yc{bottom:715.200000px;}
.y3b{bottom:725.263950px;}
.yb{bottom:730.950000px;}
.y3a{bottom:741.013950px;}
.ya{bottom:746.700000px;}
.y39{bottom:756.763950px;}
.y9{bottom:762.450000px;}
.y38{bottom:772.513950px;}
.y8{bottom:778.199850px;}
.y37{bottom:788.263950px;}
.y7{bottom:793.949850px;}
.y36{bottom:804.013950px;}
.y6{bottom:818.203800px;}
.y35{bottom:819.763950px;}
.y79{bottom:855.616200px;}
.y78{bottom:871.366200px;}
.y77{bottom:887.116200px;}
.y76{bottom:902.866200px;}
.y6b{bottom:937.263450px;}
.y75{bottom:937.520850px;}
.y6a{bottom:953.013450px;}
.y74{bottom:953.270850px;}
.y6f{bottom:954.069150px;}
.y69{bottom:968.763450px;}
.y73{bottom:969.020850px;}
.y6e{bottom:975.069150px;}
.y68{bottom:984.513450px;}
.y72{bottom:984.770850px;}
.y6d{bottom:996.069150px;}
.y67{bottom:1000.263450px;}
.y71{bottom:1000.520850px;}
.y70{bottom:1016.270850px;}
.y6c{bottom:1017.069150px;}
.y66{bottom:1020.509100px;}
.y65{bottom:1055.431050px;}
.y64{bottom:1071.181050px;}
.y5{bottom:1088.531550px;}
.y4{bottom:1110.430350px;}
.y3{bottom:1148.053200px;}
.y7a{bottom:1148.489850px;}
.y63{bottom:1198.926300px;}
.ha{height:20.659208px;}
.hb{height:21.551643px;}
.h4{height:32.859375px;}
.he{height:34.913086px;}
.h8{height:35.411133px;}
.h2{height:35.436035px;}
.h3{height:35.909180px;}
.hc{height:36.966797px;}
.hd{height:37.520508px;}
.h6{height:39.534243px;}
.h7{height:41.074219px;}
.h5{height:61.611328px;}
.h9{height:75.924000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:63.141900px;}
.x8{left:75.521250px;}
.x4{left:85.039350px;}
.x7{left:134.656350px;}
.x9{left:384.853500px;}
.x5{left:457.086600px;}
.x6{left:478.346400px;}
.xa{left:557.007900px;}
.x3{left:691.133850px;}
.x1{left:822.973200px;}
@media print{
.v2{vertical-align:-15.096000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984533pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:-11.333333pt;}
.ws3{word-spacing:-6.996000pt;}
.ws2{word-spacing:-6.607333pt;}
.ws43{word-spacing:-2.640000pt;}
.ws3d{word-spacing:-2.130667pt;}
.ws32{word-spacing:-1.904000pt;}
.ws46{word-spacing:-1.768000pt;}
.ws41{word-spacing:-1.722667pt;}
.wsb{word-spacing:-1.586667pt;}
.ws24{word-spacing:-1.496000pt;}
.ws15{word-spacing:-1.450667pt;}
.ws34{word-spacing:-1.178667pt;}
.wsf{word-spacing:-1.133333pt;}
.ws49{word-spacing:-1.042667pt;}
.ws36{word-spacing:-0.997333pt;}
.ws42{word-spacing:-0.498667pt;}
.ws2b{word-spacing:-0.408000pt;}
.ws2c{word-spacing:-0.317333pt;}
.ws13{word-spacing:-0.226667pt;}
.ws3a{word-spacing:-0.090667pt;}
.ws4{word-spacing:0.000000pt;}
.ws47{word-spacing:0.181333pt;}
.ws3e{word-spacing:0.272000pt;}
.ws28{word-spacing:0.362667pt;}
.ws10{word-spacing:0.453333pt;}
.ws1f{word-spacing:0.589333pt;}
.ws1b{word-spacing:0.861333pt;}
.ws1e{word-spacing:1.088000pt;}
.ws23{word-spacing:1.224000pt;}
.ws4a{word-spacing:1.450667pt;}
.ws1d{word-spacing:1.677333pt;}
.ws11{word-spacing:1.813333pt;}
.ws14{word-spacing:1.858667pt;}
.ws27{word-spacing:1.904000pt;}
.ws26{word-spacing:1.994667pt;}
.ws3c{word-spacing:2.176000pt;}
.ws2e{word-spacing:2.493333pt;}
.ws3b{word-spacing:2.584000pt;}
.ws2d{word-spacing:2.629333pt;}
.ws39{word-spacing:2.674667pt;}
.ws25{word-spacing:2.720000pt;}
.ws2f{word-spacing:2.810667pt;}
.ws35{word-spacing:2.901333pt;}
.ws22{word-spacing:2.992000pt;}
.ws12{word-spacing:3.037333pt;}
.wsc{word-spacing:3.173333pt;}
.ws30{word-spacing:3.218667pt;}
.ws1c{word-spacing:3.354667pt;}
.ws1a{word-spacing:3.400000pt;}
.ws31{word-spacing:3.445333pt;}
.ws3f{word-spacing:3.490667pt;}
.wsd{word-spacing:3.536000pt;}
.ws2a{word-spacing:3.626667pt;}
.ws38{word-spacing:3.808000pt;}
.ws40{word-spacing:4.080000pt;}
.ws8{word-spacing:4.216000pt;}
.ws21{word-spacing:4.352000pt;}
.ws6{word-spacing:4.397333pt;}
.ws20{word-spacing:4.442667pt;}
.ws7{word-spacing:4.714667pt;}
.ws17{word-spacing:4.850667pt;}
.ws19{word-spacing:4.896000pt;}
.wsa{word-spacing:5.122667pt;}
.ws29{word-spacing:5.168000pt;}
.ws5{word-spacing:5.485333pt;}
.wse{word-spacing:5.893333pt;}
.ws16{word-spacing:6.120000pt;}
.ws37{word-spacing:6.301333pt;}
.ws45{word-spacing:6.437333pt;}
.ws33{word-spacing:6.528000pt;}
.ws18{word-spacing:6.664000pt;}
.ws48{word-spacing:6.890667pt;}
.ws9{word-spacing:7.253333pt;}
.ws4b{word-spacing:10.653333pt;}
.ws44{word-spacing:30.962667pt;}
._1{margin-left:-7.352000pt;}
._0{margin-left:-5.163467pt;}
._2{margin-left:-3.644533pt;}
._9{margin-left:-2.570400pt;}
._3{margin-left:-1.416000pt;}
._4{width:1.115200pt;}
._7{width:2.122933pt;}
._5{width:3.131200pt;}
._8{width:4.107200pt;}
._6{width:5.000267pt;}
._a{width:30.257067pt;}
.fs7{font-size:26.429333pt;}
.fs4{font-size:27.984000pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:80.000000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:37.672800pt;}
.y1{bottom:38.630133pt;}
.y34{bottom:75.733333pt;}
.y62{bottom:77.781467pt;}
.y33{bottom:89.733333pt;}
.y61{bottom:91.781467pt;}
.y32{bottom:103.733333pt;}
.y60{bottom:109.560933pt;}
.y31{bottom:117.733333pt;}
.y5f{bottom:123.560933pt;}
.y30{bottom:131.733333pt;}
.y5e{bottom:141.340533pt;}
.y2f{bottom:145.733333pt;}
.y2e{bottom:159.733333pt;}
.y5d{bottom:162.899600pt;}
.y2d{bottom:173.733333pt;}
.y5c{bottom:182.679067pt;}
.y2c{bottom:187.733333pt;}
.y5b{bottom:196.679067pt;}
.y2b{bottom:201.733333pt;}
.y5a{bottom:210.679067pt;}
.y2a{bottom:215.733333pt;}
.y59{bottom:224.679067pt;}
.y29{bottom:229.733333pt;}
.y58{bottom:238.679067pt;}
.y28{bottom:243.733333pt;}
.y57{bottom:252.679067pt;}
.y27{bottom:257.733333pt;}
.y56{bottom:266.679067pt;}
.y26{bottom:271.733333pt;}
.y55{bottom:280.679067pt;}
.y25{bottom:285.733333pt;}
.y54{bottom:294.679067pt;}
.y24{bottom:299.733333pt;}
.y53{bottom:308.679067pt;}
.y23{bottom:313.733333pt;}
.y52{bottom:322.679067pt;}
.y22{bottom:327.733333pt;}
.y51{bottom:336.679067pt;}
.y21{bottom:341.733333pt;}
.y50{bottom:350.679067pt;}
.y20{bottom:355.733333pt;}
.y4f{bottom:364.679067pt;}
.y1f{bottom:369.733333pt;}
.y4e{bottom:378.679067pt;}
.y1e{bottom:383.733333pt;}
.y4d{bottom:392.679067pt;}
.y1d{bottom:397.733200pt;}
.y4c{bottom:406.679067pt;}
.y1c{bottom:411.733200pt;}
.y4b{bottom:420.679067pt;}
.y1b{bottom:425.733200pt;}
.y4a{bottom:434.679067pt;}
.y1a{bottom:439.733200pt;}
.y49{bottom:448.679067pt;}
.y19{bottom:453.733200pt;}
.y48{bottom:462.679067pt;}
.y18{bottom:467.733200pt;}
.y47{bottom:476.679067pt;}
.y17{bottom:481.733200pt;}
.y46{bottom:490.679067pt;}
.y16{bottom:495.733200pt;}
.y45{bottom:504.679067pt;}
.y15{bottom:509.733200pt;}
.y44{bottom:518.679067pt;}
.y14{bottom:523.733200pt;}
.y43{bottom:532.679067pt;}
.y13{bottom:537.733200pt;}
.y42{bottom:546.679067pt;}
.y12{bottom:551.733200pt;}
.y41{bottom:560.679067pt;}
.y11{bottom:565.733200pt;}
.y40{bottom:574.679067pt;}
.y10{bottom:579.733333pt;}
.y3f{bottom:588.679067pt;}
.yf{bottom:593.733333pt;}
.y3e{bottom:602.679067pt;}
.ye{bottom:607.733333pt;}
.y3d{bottom:616.679067pt;}
.yd{bottom:621.733333pt;}
.y3c{bottom:630.679067pt;}
.yc{bottom:635.733333pt;}
.y3b{bottom:644.679067pt;}
.yb{bottom:649.733333pt;}
.y3a{bottom:658.679067pt;}
.ya{bottom:663.733333pt;}
.y39{bottom:672.679067pt;}
.y9{bottom:677.733333pt;}
.y38{bottom:686.679067pt;}
.y8{bottom:691.733200pt;}
.y37{bottom:700.679067pt;}
.y7{bottom:705.733200pt;}
.y36{bottom:714.679067pt;}
.y6{bottom:727.292267pt;}
.y35{bottom:728.679067pt;}
.y79{bottom:760.547733pt;}
.y78{bottom:774.547733pt;}
.y77{bottom:788.547733pt;}
.y76{bottom:802.547733pt;}
.y6b{bottom:833.123067pt;}
.y75{bottom:833.351867pt;}
.y6a{bottom:847.123067pt;}
.y74{bottom:847.351867pt;}
.y6f{bottom:848.061467pt;}
.y69{bottom:861.123067pt;}
.y73{bottom:861.351867pt;}
.y6e{bottom:866.728133pt;}
.y68{bottom:875.123067pt;}
.y72{bottom:875.351867pt;}
.y6d{bottom:885.394800pt;}
.y67{bottom:889.123067pt;}
.y71{bottom:889.351867pt;}
.y70{bottom:903.351867pt;}
.y6c{bottom:904.061467pt;}
.y66{bottom:907.119200pt;}
.y65{bottom:938.160933pt;}
.y64{bottom:952.160933pt;}
.y5{bottom:967.583600pt;}
.y4{bottom:987.049200pt;}
.y3{bottom:1020.491733pt;}
.y7a{bottom:1020.879867pt;}
.y63{bottom:1065.712267pt;}
.ha{height:18.363741pt;}
.hb{height:19.157016pt;}
.h4{height:29.208333pt;}
.he{height:31.033854pt;}
.h8{height:31.476562pt;}
.h2{height:31.498698pt;}
.h3{height:31.919271pt;}
.hc{height:32.859375pt;}
.hd{height:33.351562pt;}
.h6{height:35.141549pt;}
.h7{height:36.510417pt;}
.h5{height:54.765625pt;}
.h9{height:67.488000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:56.126133pt;}
.x8{left:67.130000pt;}
.x4{left:75.590533pt;}
.x7{left:119.694533pt;}
.x9{left:342.092000pt;}
.x5{left:406.299200pt;}
.x6{left:425.196800pt;}
.xa{left:495.118133pt;}
.x3{left:614.341200pt;}
.x1{left:731.531733pt;}
}




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