
    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_f9474726d805cbcdeb383864.woff')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_40fab81e0f9c246ff4db115b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_d14a8c691c655c1c7cae9552.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_777e79b745f915adb5e0c8d2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_249a6a9f297976fc3b18f96e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_7d30233cc274ab452b0018c4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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:-5.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.006000px;}
.lse{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.074400px;}
.ls5{letter-spacing:0.096000px;}
.ls9{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.186000px;}
.ls6{letter-spacing:74.460000px;}
.ls0{letter-spacing:252.360000px;}
.ls4{letter-spacing:309.360000px;}
.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;}
}
.ws16{word-spacing:-21.060000px;}
.wsa{word-spacing:-20.460000px;}
.ws10{word-spacing:-18.954000px;}
.ws3{word-spacing:-18.414000px;}
.ws6{word-spacing:-16.620000px;}
.ws9{word-spacing:-16.368000px;}
.ws2{word-spacing:-14.731200px;}
.ws5{word-spacing:-13.296000px;}
.ws17{word-spacing:-12.214800px;}
.ws0{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.ws15{word-spacing:27.060000px;}
.ws12{word-spacing:49.747200px;}
.ws1e{word-spacing:49.749600px;}
.ws1b{word-spacing:49.780800px;}
.wsf{word-spacing:49.845600px;}
.wsc{word-spacing:49.852800px;}
.ws19{word-spacing:49.857600px;}
.ws18{word-spacing:65.964000px;}
.ws13{word-spacing:73.740000px;}
.ws8{word-spacing:94.440000px;}
.ws1c{word-spacing:99.612000px;}
.ws4{word-spacing:144.196800px;}
.ws11{word-spacing:153.864000px;}
.ws14{word-spacing:179.064000px;}
.wse{word-spacing:194.664000px;}
.ws1{word-spacing:197.346000px;}
.ws1a{word-spacing:226.212000px;}
.wsd{word-spacing:227.964000px;}
.wsb{word-spacing:241.464000px;}
.ws1d{word-spacing:256.512000px;}
._9{margin-left:-2807.880000px;}
._3{margin-left:-469.512000px;}
._1{margin-left:-423.258000px;}
._5{margin-left:-3.408000px;}
._6{margin-left:-1.092000px;}
._0{width:1.008000px;}
._a{width:48.120000px;}
._8{width:360.420000px;}
._2{width:385.020000px;}
._4{width:432.108000px;}
._7{width:527.640000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.800000px;}
.fs2{font-size:43.200000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1f{bottom:56.191500px;}
.y23{bottom:351.016500px;}
.y2a{bottom:355.441500px;}
.y25{bottom:359.941500px;}
.y27{bottom:364.216500px;}
.y22{bottom:364.816500px;}
.y29{bottom:372.691500px;}
.y24{bottom:377.191500px;}
.y21{bottom:378.616500px;}
.y26{bottom:381.466500px;}
.y28{bottom:389.941500px;}
.y20{bottom:392.416500px;}
.y67{bottom:396.241500px;}
.y66{bottom:404.491500px;}
.y65{bottom:430.141500px;}
.y5f{bottom:443.491500px;}
.y2b{bottom:447.916500px;}
.y64{bottom:448.366500px;}
.y5e{bottom:459.916500px;}
.y63{bottom:466.591500px;}
.y5d{bottom:476.341500px;}
.y62{bottom:484.816500px;}
.y5c{bottom:492.766500px;}
.y61{bottom:503.041500px;}
.y5b{bottom:509.191500px;}
.y60{bottom:521.266500px;}
.y1e{bottom:538.891500px;}
.y1d{bottom:572.716500px;}
.y58{bottom:608.116500px;}
.y59{bottom:624.541500px;}
.y5a{bottom:658.591500px;}
.y1c{bottom:672.766500px;}
.y19{bottom:689.191500px;}
.y18{bottom:697.441500px;}
.y1b{bottom:705.616500px;}
.y40{bottom:711.916500px;}
.y3f{bottom:720.166500px;}
.y1a{bottom:722.041500px;}
.y3e{bottom:745.516500px;}
.y15{bottom:758.716500px;}
.y3d{bottom:761.941500px;}
.y17{bottom:765.091500px;}
.y79{bottom:765.541500px;}
.y14{bottom:766.966500px;}
.y3a{bottom:770.191500px;}
.y3c{bottom:778.366500px;}
.y16{bottom:781.516500px;}
.y77{bottom:781.966500px;}
.y3b{bottom:794.791500px;}
.y78{bottom:798.391500px;}
.y13{bottom:798.691500px;}
.y57{bottom:803.791500px;}
.y12{bottom:815.116500px;}
.y76{bottom:815.566500px;}
.y56{bottom:822.016500px;}
.yf{bottom:823.366500px;}
.y53{bottom:823.516500px;}
.y39{bottom:828.391500px;}
.y11{bottom:831.541500px;}
.y74{bottom:831.991500px;}
.y52{bottom:839.941500px;}
.y55{bottom:840.241500px;}
.y10{bottom:847.966500px;}
.y75{bottom:848.416500px;}
.y54{bottom:858.466500px;}
.y4d{bottom:864.991500px;}
.y73{bottom:865.591500px;}
.ye{bottom:865.966500px;}
.y38{bottom:878.416500px;}
.y4c{bottom:881.416500px;}
.y72{bottom:882.016500px;}
.yb{bottom:882.391500px;}
.y35{bottom:886.666500px;}
.ya{bottom:890.566500px;}
.y37{bottom:894.841500px;}
.y49{bottom:897.841500px;}
.y6f{bottom:898.441500px;}
.yd{bottom:898.816500px;}
.y51{bottom:909.991500px;}
.y36{bottom:911.266500px;}
.y4b{bottom:914.266500px;}
.y70{bottom:914.866500px;}
.yc{bottom:915.241500px;}
.y4f{bottom:918.241500px;}
.y4a{bottom:930.691500px;}
.y71{bottom:931.291500px;}
.y34{bottom:933.166500px;}
.y4e{bottom:934.666500px;}
.y9{bottom:935.791500px;}
.y8{bottom:952.216500px;}
.y33{bottom:956.491500px;}
.y5{bottom:960.466500px;}
.y6e{bottom:964.891500px;}
.y7{bottom:968.641500px;}
.y31{bottom:972.916500px;}
.y6{bottom:985.066500px;}
.y32{bottom:989.341500px;}
.y50{bottom:992.116500px;}
.y30{bottom:1012.891500px;}
.y47{bottom:1013.866500px;}
.y4{bottom:1014.166500px;}
.y6d{bottom:1014.916500px;}
.y46{bottom:1022.116500px;}
.y48{bottom:1025.716500px;}
.y6b{bottom:1031.341500px;}
.y6c{bottom:1047.766500px;}
.y44{bottom:1052.041500px;}
.y2f{bottom:1053.541500px;}
.y42{bottom:1068.466500px;}
.y45{bottom:1072.141500px;}
.y2e{bottom:1072.366500px;}
.y3{bottom:1078.666500px;}
.y6a{bottom:1081.366500px;}
.y43{bottom:1084.891500px;}
.y69{bottom:1089.616500px;}
.y2{bottom:1099.591500px;}
.y41{bottom:1102.366500px;}
.y2d{bottom:1106.791500px;}
.y68{bottom:1119.766500px;}
.y2c{bottom:1141.441500px;}
.h7{height:33.032813px;}
.h8{height:34.781250px;}
.h4{height:41.291016px;}
.h9{height:43.476562px;}
.h3{height:45.878906px;}
.h6{height:73.991016px;}
.h5{height:74.291016px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:95.775000px;}
.x10{left:106.425000px;}
.x4{left:116.475000px;}
.x11{left:124.350000px;}
.x13{left:125.925000px;}
.x27{left:135.300000px;}
.x20{left:140.550000px;}
.x1f{left:146.250000px;}
.xa{left:148.350000px;}
.x12{left:153.225000px;}
.xd{left:155.625000px;}
.x14{left:161.925000px;}
.x8{left:164.775000px;}
.xc{left:171.975000px;}
.x32{left:175.200000px;}
.x2b{left:178.350000px;}
.x2a{left:186.825000px;}
.x23{left:191.250000px;}
.x21{left:195.300000px;}
.x6{left:199.350000px;}
.x24{left:201.450000px;}
.x26{left:202.575000px;}
.x2c{left:204.075000px;}
.x28{left:206.850000px;}
.x3d{left:211.125000px;}
.x9{left:212.700000px;}
.x25{left:214.275000px;}
.x3c{left:215.700000px;}
.x29{left:216.900000px;}
.xb{left:219.150000px;}
.x3b{left:225.675000px;}
.x35{left:245.025000px;}
.x5{left:268.350000px;}
.x33{left:269.925000px;}
.x30{left:277.200000px;}
.x2e{left:288.450000px;}
.x2d{left:292.950000px;}
.x2{left:294.750000px;}
.x22{left:309.375000px;}
.x36{left:310.875000px;}
.x15{left:320.700000px;}
.x1{left:326.175000px;}
.x3{left:327.450000px;}
.x38{left:330.525000px;}
.x34{left:332.100000px;}
.x39{left:336.975000px;}
.x16{left:339.900000px;}
.x1d{left:343.050000px;}
.x31{left:344.550000px;}
.x37{left:346.575000px;}
.x1b{left:354.075000px;}
.x7{left:367.500000px;}
.x2f{left:371.550000px;}
.xe{left:381.075000px;}
.x3a{left:418.650000px;}
.x1c{left:421.125000px;}
.xf{left:444.300000px;}
.x18{left:535.125000px;}
.x17{left:543.900000px;}
.x1a{left:719.100000px;}
.x19{left:724.275000px;}
@media print{
.v2{vertical-align:-4.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.333333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.005333pt;}
.lse{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.066133pt;}
.ls5{letter-spacing:0.085333pt;}
.ls9{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.165333pt;}
.ls6{letter-spacing:66.186667pt;}
.ls0{letter-spacing:224.320000pt;}
.ls4{letter-spacing:274.986667pt;}
.ws16{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.186667pt;}
.ws10{word-spacing:-16.848000pt;}
.ws3{word-spacing:-16.368000pt;}
.ws6{word-spacing:-14.773333pt;}
.ws9{word-spacing:-14.549333pt;}
.ws2{word-spacing:-13.094400pt;}
.ws5{word-spacing:-11.818667pt;}
.ws17{word-spacing:-10.857600pt;}
.ws0{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.ws15{word-spacing:24.053333pt;}
.ws12{word-spacing:44.219733pt;}
.ws1e{word-spacing:44.221867pt;}
.ws1b{word-spacing:44.249600pt;}
.wsf{word-spacing:44.307200pt;}
.wsc{word-spacing:44.313600pt;}
.ws19{word-spacing:44.317867pt;}
.ws18{word-spacing:58.634667pt;}
.ws13{word-spacing:65.546667pt;}
.ws8{word-spacing:83.946667pt;}
.ws1c{word-spacing:88.544000pt;}
.ws4{word-spacing:128.174933pt;}
.ws11{word-spacing:136.768000pt;}
.ws14{word-spacing:159.168000pt;}
.wse{word-spacing:173.034667pt;}
.ws1{word-spacing:175.418667pt;}
.ws1a{word-spacing:201.077333pt;}
.wsd{word-spacing:202.634667pt;}
.wsb{word-spacing:214.634667pt;}
.ws1d{word-spacing:228.010667pt;}
._9{margin-left:-2495.893333pt;}
._3{margin-left:-417.344000pt;}
._1{margin-left:-376.229333pt;}
._5{margin-left:-3.029333pt;}
._6{margin-left:-0.970667pt;}
._0{width:0.896000pt;}
._a{width:42.773333pt;}
._8{width:320.373333pt;}
._2{width:342.240000pt;}
._4{width:384.096000pt;}
._7{width:469.013333pt;}
.fs4{font-size:30.933333pt;}
.fs2{font-size:38.400000pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1f{bottom:49.948000pt;}
.y23{bottom:312.014667pt;}
.y2a{bottom:315.948000pt;}
.y25{bottom:319.948000pt;}
.y27{bottom:323.748000pt;}
.y22{bottom:324.281333pt;}
.y29{bottom:331.281333pt;}
.y24{bottom:335.281333pt;}
.y21{bottom:336.548000pt;}
.y26{bottom:339.081333pt;}
.y28{bottom:346.614667pt;}
.y20{bottom:348.814667pt;}
.y67{bottom:352.214667pt;}
.y66{bottom:359.548000pt;}
.y65{bottom:382.348000pt;}
.y5f{bottom:394.214667pt;}
.y2b{bottom:398.148000pt;}
.y64{bottom:398.548000pt;}
.y5e{bottom:408.814667pt;}
.y63{bottom:414.748000pt;}
.y5d{bottom:423.414667pt;}
.y62{bottom:430.948000pt;}
.y5c{bottom:438.014667pt;}
.y61{bottom:447.148000pt;}
.y5b{bottom:452.614667pt;}
.y60{bottom:463.348000pt;}
.y1e{bottom:479.014667pt;}
.y1d{bottom:509.081333pt;}
.y58{bottom:540.548000pt;}
.y59{bottom:555.148000pt;}
.y5a{bottom:585.414667pt;}
.y1c{bottom:598.014667pt;}
.y19{bottom:612.614667pt;}
.y18{bottom:619.948000pt;}
.y1b{bottom:627.214667pt;}
.y40{bottom:632.814667pt;}
.y3f{bottom:640.148000pt;}
.y1a{bottom:641.814667pt;}
.y3e{bottom:662.681333pt;}
.y15{bottom:674.414667pt;}
.y3d{bottom:677.281333pt;}
.y17{bottom:680.081333pt;}
.y79{bottom:680.481333pt;}
.y14{bottom:681.748000pt;}
.y3a{bottom:684.614667pt;}
.y3c{bottom:691.881333pt;}
.y16{bottom:694.681333pt;}
.y77{bottom:695.081333pt;}
.y3b{bottom:706.481333pt;}
.y78{bottom:709.681333pt;}
.y13{bottom:709.948000pt;}
.y57{bottom:714.481333pt;}
.y12{bottom:724.548000pt;}
.y76{bottom:724.948000pt;}
.y56{bottom:730.681333pt;}
.yf{bottom:731.881333pt;}
.y53{bottom:732.014667pt;}
.y39{bottom:736.348000pt;}
.y11{bottom:739.148000pt;}
.y74{bottom:739.548000pt;}
.y52{bottom:746.614667pt;}
.y55{bottom:746.881333pt;}
.y10{bottom:753.748000pt;}
.y75{bottom:754.148000pt;}
.y54{bottom:763.081333pt;}
.y4d{bottom:768.881333pt;}
.y73{bottom:769.414667pt;}
.ye{bottom:769.748000pt;}
.y38{bottom:780.814667pt;}
.y4c{bottom:783.481333pt;}
.y72{bottom:784.014667pt;}
.yb{bottom:784.348000pt;}
.y35{bottom:788.148000pt;}
.ya{bottom:791.614667pt;}
.y37{bottom:795.414667pt;}
.y49{bottom:798.081333pt;}
.y6f{bottom:798.614667pt;}
.yd{bottom:798.948000pt;}
.y51{bottom:808.881333pt;}
.y36{bottom:810.014667pt;}
.y4b{bottom:812.681333pt;}
.y70{bottom:813.214667pt;}
.yc{bottom:813.548000pt;}
.y4f{bottom:816.214667pt;}
.y4a{bottom:827.281333pt;}
.y71{bottom:827.814667pt;}
.y34{bottom:829.481333pt;}
.y4e{bottom:830.814667pt;}
.y9{bottom:831.814667pt;}
.y8{bottom:846.414667pt;}
.y33{bottom:850.214667pt;}
.y5{bottom:853.748000pt;}
.y6e{bottom:857.681333pt;}
.y7{bottom:861.014667pt;}
.y31{bottom:864.814667pt;}
.y6{bottom:875.614667pt;}
.y32{bottom:879.414667pt;}
.y50{bottom:881.881333pt;}
.y30{bottom:900.348000pt;}
.y47{bottom:901.214667pt;}
.y4{bottom:901.481333pt;}
.y6d{bottom:902.148000pt;}
.y46{bottom:908.548000pt;}
.y48{bottom:911.748000pt;}
.y6b{bottom:916.748000pt;}
.y6c{bottom:931.348000pt;}
.y44{bottom:935.148000pt;}
.y2f{bottom:936.481333pt;}
.y42{bottom:949.748000pt;}
.y45{bottom:953.014667pt;}
.y2e{bottom:953.214667pt;}
.y3{bottom:958.814667pt;}
.y6a{bottom:961.214667pt;}
.y43{bottom:964.348000pt;}
.y69{bottom:968.548000pt;}
.y2{bottom:977.414667pt;}
.y41{bottom:979.881333pt;}
.y2d{bottom:983.814667pt;}
.y68{bottom:995.348000pt;}
.y2c{bottom:1014.614667pt;}
.h7{height:29.362500pt;}
.h8{height:30.916667pt;}
.h4{height:36.703125pt;}
.h9{height:38.645833pt;}
.h3{height:40.781250pt;}
.h6{height:65.769792pt;}
.h5{height:66.036458pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:85.133333pt;}
.x10{left:94.600000pt;}
.x4{left:103.533333pt;}
.x11{left:110.533333pt;}
.x13{left:111.933333pt;}
.x27{left:120.266667pt;}
.x20{left:124.933333pt;}
.x1f{left:130.000000pt;}
.xa{left:131.866667pt;}
.x12{left:136.200000pt;}
.xd{left:138.333333pt;}
.x14{left:143.933333pt;}
.x8{left:146.466667pt;}
.xc{left:152.866667pt;}
.x32{left:155.733333pt;}
.x2b{left:158.533333pt;}
.x2a{left:166.066667pt;}
.x23{left:170.000000pt;}
.x21{left:173.600000pt;}
.x6{left:177.200000pt;}
.x24{left:179.066667pt;}
.x26{left:180.066667pt;}
.x2c{left:181.400000pt;}
.x28{left:183.866667pt;}
.x3d{left:187.666667pt;}
.x9{left:189.066667pt;}
.x25{left:190.466667pt;}
.x3c{left:191.733333pt;}
.x29{left:192.800000pt;}
.xb{left:194.800000pt;}
.x3b{left:200.600000pt;}
.x35{left:217.800000pt;}
.x5{left:238.533333pt;}
.x33{left:239.933333pt;}
.x30{left:246.400000pt;}
.x2e{left:256.400000pt;}
.x2d{left:260.400000pt;}
.x2{left:262.000000pt;}
.x22{left:275.000000pt;}
.x36{left:276.333333pt;}
.x15{left:285.066667pt;}
.x1{left:289.933333pt;}
.x3{left:291.066667pt;}
.x38{left:293.800000pt;}
.x34{left:295.200000pt;}
.x39{left:299.533333pt;}
.x16{left:302.133333pt;}
.x1d{left:304.933333pt;}
.x31{left:306.266667pt;}
.x37{left:308.066667pt;}
.x1b{left:314.733333pt;}
.x7{left:326.666667pt;}
.x2f{left:330.266667pt;}
.xe{left:338.733333pt;}
.x3a{left:372.133333pt;}
.x1c{left:374.333333pt;}
.xf{left:394.933333pt;}
.x18{left:475.666667pt;}
.x17{left:483.466667pt;}
.x1a{left:639.200000pt;}
.x19{left:643.800000pt;}
}




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