
    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_fc272835a47ad03ae0e0abfe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_7b5b654c547e18f108d87032.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_67a54d031d1363f39b63dc39.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_81c6fbaad0e768b61ed8ed9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_002cfc5cec829da8f6f55008.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_1e4792acacfbd37c53f8a901.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.726190;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_67a54d031d1363f39b63dc39.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8{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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000042px;}
.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;}
}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.353970px;}
.ws13{word-spacing:-10.455000px;}
.wsc{word-spacing:-2.563802px;}
.ws10{word-spacing:-0.267133px;}
.ws1b{word-spacing:-0.250920px;}
.ws1c{word-spacing:-0.083556px;}
.ws9{word-spacing:-0.055186px;}
.ws5{word-spacing:-0.000179px;}
.ws16{word-spacing:-0.000125px;}
.ws8{word-spacing:-0.000110px;}
.ws1{word-spacing:-0.000107px;}
.ws18{word-spacing:-0.000084px;}
.ws7{word-spacing:-0.000055px;}
.ws3{word-spacing:-0.000053px;}
.ws12{word-spacing:-0.000042px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.000042px;}
.wsa{word-spacing:0.000055px;}
.ws1d{word-spacing:0.000084px;}
.ws2{word-spacing:0.000107px;}
.wse{word-spacing:0.053309px;}
.ws14{word-spacing:0.250753px;}
.wsb{word-spacing:0.266866px;}
.ws1a{word-spacing:0.334602px;}
.ws19{word-spacing:0.836358px;}
.ws15{word-spacing:2.801898px;}
.wsf{word-spacing:3.632226px;}
.wsd{word-spacing:3.899359px;}
.ws11{word-spacing:429.780696px;}
._11{margin-left:-2770.037081px;}
._e{margin-left:-2654.243588px;}
._14{margin-left:-2595.910197px;}
._f{margin-left:-2566.698240px;}
._12{margin-left:-2398.795118px;}
._10{margin-left:-2212.664630px;}
._13{margin-left:-2205.360863px;}
._c{margin-left:-8.610172px;}
._2{margin-left:-4.780740px;}
._0{margin-left:-2.937766px;}
._1{margin-left:-1.068745px;}
._1b{width:9.641427px;}
._15{width:12.338694px;}
._18{width:14.344260px;}
._16{width:65.050594px;}
._1a{width:119.518693px;}
._d{width:339.083085px;}
._3{width:435.846932px;}
._19{width:572.471447px;}
._17{width:717.586722px;}
._4{width:1243.842038px;}
._a{width:1712.617609px;}
._5{width:1743.812375px;}
._9{width:1817.900091px;}
._7{width:1822.333823px;}
._b{width:1834.405811px;}
._6{width:1984.130465px;}
._8{width:2020.774185px;}
.fc1{color:rgb(178,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:20.940000px;}
.fs2{font-size:24.026419px;}
.fs6{font-size:41.820000px;}
.fs0{font-size:53.415878px;}
.fs5{font-size:55.185970px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:86.100000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:79.442212px;}
.y19{bottom:192.417618px;}
.y9{bottom:193.339920px;}
.y8{bottom:209.368720px;}
.y18{bottom:218.718612px;}
.y7{bottom:225.397453px;}
.y6{bottom:248.406234px;}
.y14{bottom:264.435059px;}
.y5{bottom:280.463836px;}
.y4{bottom:296.492637px;}
.y1c{bottom:303.600563px;}
.y3{bottom:319.501374px;}
.y1b{bottom:329.901558px;}
.y2{bottom:335.530219px;}
.y13{bottom:351.559021px;}
.y1d{bottom:359.192048px;}
.y1{bottom:374.567871px;}
.y39{bottom:397.576401px;}
.y12{bottom:413.605407px;}
.y3a{bottom:429.634093px;}
.y1e{bottom:441.681428px;}
.y11{bottom:445.662965px;}
.y38{bottom:461.691742px;}
.y10{bottom:477.720565px;}
.y34{bottom:500.729187px;}
.yf{bottom:516.758056px;}
.y35{bottom:532.786743px;}
.ye{bottom:548.815568px;}
.y36{bottom:564.845718px;}
.yd{bottom:580.874359px;}
.y37{bottom:596.903412px;}
.yc{bottom:612.932007px;}
.yb{bottom:635.941039px;}
.ya{bottom:656.866516px;}
.y5a{bottom:671.542419px;}
.y55{bottom:685.888322px;}
.y59{bottom:685.888413px;}
.y50{bottom:700.234267px;}
.y54{bottom:700.234314px;}
.y58{bottom:700.234359px;}
.y57{bottom:700.804367px;}
.y56{bottom:712.759370px;}
.y53{bottom:714.580307px;}
.y52{bottom:728.926254px;}
.y51{bottom:743.272340px;}
.y4c{bottom:758.216766px;}
.y4b{bottom:772.562713px;}
.y4f{bottom:786.908661px;}
.y4a{bottom:786.908753px;}
.y33{bottom:791.118805px;}
.y4e{bottom:799.435272px;}
.y49{bottom:801.254700px;}
.y32{bottom:807.678589px;}
.y31{bottom:807.678772px;}
.y45{bottom:808.709748px;}
.y4d{bottom:811.390320px;}
.y48{bottom:813.209748px;}
.y30{bottom:824.238739px;}
.y47{bottom:827.555786px;}
.y6d{bottom:834.161316px;}
.y46{bottom:839.510651px;}
.y2f{bottom:840.798615px;}
.y17{bottom:848.220703px;}
.y44{bottom:853.858338px;}
.y2e{bottom:857.359863px;}
.y41{bottom:868.801209px;}
.y43{bottom:869.372772px;}
.y2d{bottom:873.919556px;}
.y2c{bottom:873.919738px;}
.y42{bottom:881.327728px;}
.y40{bottom:883.147248px;}
.y2a{bottom:890.479523px;}
.y2b{bottom:890.479614px;}
.y68{bottom:898.091675px;}
.y3f{bottom:898.091857px;}
.y29{bottom:907.039673px;}
.y67{bottom:912.437622px;}
.y16{bottom:919.315613px;}
.y64{bottom:921.392762px;}
.y28{bottom:923.599640px;}
.y5b{bottom:923.767365px;}
.y66{bottom:924.392578px;}
.y65{bottom:938.738617px;}
.y27{bottom:940.159607px;}
.y3e{bottom:950.693664px;}
.y15{bottom:951.374268px;}
.y25{bottom:956.720856px;}
.y26{bottom:956.720947px;}
.y5f{bottom:965.638092px;}
.y5c{bottom:972.185852px;}
.y24{bottom:973.280731px;}
.y23{bottom:973.280914px;}
.y5e{bottom:979.984222px;}
.y6b{bottom:994.927185px;}
.y22{bottom:997.050659px;}
.y6a{bottom:1006.882141px;}
.y6c{bottom:1008.319336px;}
.y5d{bottom:1014.511138px;}
.y21{bottom:1018.513092px;}
.y69{bottom:1018.838562px;}
.y60{bottom:1033.184510px;}
.y62{bottom:1048.127472px;}
.y61{bottom:1062.473511px;}
.y3d{bottom:1062.929810px;}
.y63{bottom:1076.819459px;}
.y20{bottom:1090.290985px;}
.y3c{bottom:1091.764068px;}
.y3b{bottom:1107.134583px;}
.y1f{bottom:1117.190643px;}
.h5{height:22.342980px;}
.h4{height:25.636189px;}
.hb{height:28.772160px;}
.ha{height:29.023080px;}
.h9{height:31.347132px;}
.h1{height:36.750124px;}
.h3{height:37.070620px;}
.h8{height:37.967947px;}
.h7{height:38.299063px;}
.h2{height:41.114880px;}
.h6{height:59.753400px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:80.666336px;}
.x10{left:86.585273px;}
.x3{left:89.015064px;}
.x16{left:93.554277px;}
.x18{left:105.561768px;}
.x15{left:108.732777px;}
.x13{left:111.662270px;}
.xb{left:113.441848px;}
.x17{left:125.160771px;}
.x14{left:132.206268px;}
.xa{left:189.596832px;}
.x12{left:232.076202px;}
.x2{left:239.379021px;}
.xe{left:259.100991px;}
.x1{left:267.668655px;}
.xf{left:278.556702px;}
.xc{left:282.522171px;}
.x7{left:411.621093px;}
.x6{left:444.262391px;}
.x19{left:446.563201px;}
.x11{left:462.608277px;}
.x5{left:628.720688px;}
.x4{left:644.753265px;}
.x9{left:685.993928px;}
.x8{left:748.172379px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000037pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:-11.870195pt;}
.ws13{word-spacing:-9.293333pt;}
.wsc{word-spacing:-2.278935pt;}
.ws10{word-spacing:-0.237451pt;}
.ws1b{word-spacing:-0.223040pt;}
.ws1c{word-spacing:-0.074272pt;}
.ws9{word-spacing:-0.049054pt;}
.ws5{word-spacing:-0.000159pt;}
.ws16{word-spacing:-0.000112pt;}
.ws8{word-spacing:-0.000098pt;}
.ws1{word-spacing:-0.000095pt;}
.ws18{word-spacing:-0.000074pt;}
.ws7{word-spacing:-0.000049pt;}
.ws3{word-spacing:-0.000047pt;}
.ws12{word-spacing:-0.000037pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.000037pt;}
.wsa{word-spacing:0.000049pt;}
.ws1d{word-spacing:0.000074pt;}
.ws2{word-spacing:0.000095pt;}
.wse{word-spacing:0.047386pt;}
.ws14{word-spacing:0.222891pt;}
.wsb{word-spacing:0.237214pt;}
.ws1a{word-spacing:0.297424pt;}
.ws19{word-spacing:0.743429pt;}
.ws15{word-spacing:2.490576pt;}
.wsf{word-spacing:3.228646pt;}
.wsd{word-spacing:3.466097pt;}
.ws11{word-spacing:382.027285pt;}
._11{margin-left:-2462.255183pt;}
._e{margin-left:-2359.327634pt;}
._14{margin-left:-2307.475731pt;}
._f{margin-left:-2281.509547pt;}
._12{margin-left:-2132.262327pt;}
._10{margin-left:-1966.813004pt;}
._13{margin-left:-1960.320768pt;}
._c{margin-left:-7.653486pt;}
._2{margin-left:-4.249547pt;}
._0{margin-left:-2.611348pt;}
._1{margin-left:-0.949995pt;}
._1b{width:8.570157pt;}
._15{width:10.967728pt;}
._18{width:12.750453pt;}
._16{width:57.822750pt;}
._1a{width:106.238838pt;}
._d{width:301.407186pt;}
._3{width:387.419495pt;}
._19{width:508.863509pt;}
._17{width:637.854864pt;}
._4{width:1105.637367pt;}
._a{width:1522.326763pt;}
._5{width:1550.055444pt;}
._9{width:1615.911192pt;}
._7{width:1619.852287pt;}
._b{width:1630.582943pt;}
._6{width:1763.671525pt;}
._8{width:1796.243720pt;}
.fs3{font-size:18.613333pt;}
.fs2{font-size:21.356817pt;}
.fs6{font-size:37.173333pt;}
.fs0{font-size:47.480781pt;}
.fs5{font-size:49.054195pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:76.533333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:70.615300pt;}
.y19{bottom:171.037883pt;}
.y9{bottom:171.857707pt;}
.y8{bottom:186.105529pt;}
.y18{bottom:194.416544pt;}
.y7{bottom:200.353292pt;}
.y6{bottom:220.805541pt;}
.y14{bottom:235.053385pt;}
.y5{bottom:249.301188pt;}
.y4{bottom:263.549011pt;}
.y1c{bottom:269.867167pt;}
.y3{bottom:284.001221pt;}
.y1b{bottom:293.245829pt;}
.y2{bottom:298.249084pt;}
.y13{bottom:312.496908pt;}
.y1d{bottom:319.281820pt;}
.y1{bottom:332.949219pt;}
.y39{bottom:353.401245pt;}
.y12{bottom:367.649251pt;}
.y3a{bottom:381.896972pt;}
.y1e{bottom:392.605713pt;}
.y11{bottom:396.144857pt;}
.y38{bottom:410.392660pt;}
.y10{bottom:424.640503pt;}
.y34{bottom:445.092611pt;}
.yf{bottom:459.340495pt;}
.y35{bottom:473.588216pt;}
.ye{bottom:487.836060pt;}
.y36{bottom:502.085083pt;}
.yd{bottom:516.332764pt;}
.y37{bottom:530.580811pt;}
.yc{bottom:544.828451pt;}
.yb{bottom:565.280924pt;}
.ya{bottom:583.881348pt;}
.y5a{bottom:596.926595pt;}
.y55{bottom:609.678508pt;}
.y59{bottom:609.678589pt;}
.y50{bottom:622.430460pt;}
.y54{bottom:622.430501pt;}
.y58{bottom:622.430541pt;}
.y57{bottom:622.937215pt;}
.y56{bottom:633.563884pt;}
.y53{bottom:635.182495pt;}
.y52{bottom:647.934448pt;}
.y51{bottom:660.686524pt;}
.y4c{bottom:673.970459pt;}
.y4b{bottom:686.722412pt;}
.y4f{bottom:699.474365pt;}
.y4a{bottom:699.474447pt;}
.y33{bottom:703.216716pt;}
.y4e{bottom:710.609131pt;}
.y49{bottom:712.226400pt;}
.y32{bottom:717.936524pt;}
.y31{bottom:717.936687pt;}
.y45{bottom:718.853109pt;}
.y4d{bottom:721.235840pt;}
.y48{bottom:722.853109pt;}
.y30{bottom:732.656657pt;}
.y47{bottom:735.605143pt;}
.y6d{bottom:741.476725pt;}
.y46{bottom:746.231689pt;}
.y2f{bottom:747.376547pt;}
.y17{bottom:753.973959pt;}
.y44{bottom:758.985189pt;}
.y2e{bottom:762.097656pt;}
.y41{bottom:772.267741pt;}
.y43{bottom:772.775797pt;}
.y2d{bottom:776.817383pt;}
.y2c{bottom:776.817545pt;}
.y42{bottom:783.402425pt;}
.y40{bottom:785.019776pt;}
.y2a{bottom:791.537353pt;}
.y2b{bottom:791.537435pt;}
.y68{bottom:798.303711pt;}
.y3f{bottom:798.303873pt;}
.y29{bottom:806.257487pt;}
.y67{bottom:811.055664pt;}
.y16{bottom:817.169433pt;}
.y64{bottom:819.015788pt;}
.y28{bottom:820.977457pt;}
.y5b{bottom:821.126547pt;}
.y66{bottom:821.682292pt;}
.y65{bottom:834.434327pt;}
.y27{bottom:835.697428pt;}
.y3e{bottom:845.061035pt;}
.y15{bottom:845.666016pt;}
.y25{bottom:850.418539pt;}
.y26{bottom:850.418620pt;}
.y5f{bottom:858.344971pt;}
.y5c{bottom:864.165201pt;}
.y24{bottom:865.138428pt;}
.y23{bottom:865.138591pt;}
.y5e{bottom:871.097087pt;}
.y6b{bottom:884.379720pt;}
.y22{bottom:886.267252pt;}
.y6a{bottom:895.006348pt;}
.y6c{bottom:896.283855pt;}
.y5d{bottom:901.787679pt;}
.y21{bottom:905.344971pt;}
.y69{bottom:905.634277pt;}
.y60{bottom:918.386231pt;}
.y62{bottom:931.668864pt;}
.y61{bottom:944.420899pt;}
.y3d{bottom:944.826497pt;}
.y63{bottom:957.172852pt;}
.y20{bottom:969.147543pt;}
.y3c{bottom:970.456949pt;}
.y3b{bottom:984.119629pt;}
.y1f{bottom:993.058349pt;}
.h5{height:19.860427pt;}
.h4{height:22.787724pt;}
.hb{height:25.575253pt;}
.ha{height:25.798293pt;}
.h9{height:27.864118pt;}
.h1{height:32.666777pt;}
.h3{height:32.951662pt;}
.h8{height:33.749286pt;}
.h7{height:34.043611pt;}
.h2{height:36.546560pt;}
.h6{height:53.114133pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:71.703409pt;}
.x10{left:76.964687pt;}
.x3{left:79.124501pt;}
.x16{left:83.159357pt;}
.x18{left:93.832683pt;}
.x15{left:96.651357pt;}
.x13{left:99.255351pt;}
.xb{left:100.837199pt;}
.x17{left:111.254019pt;}
.x14{left:117.516683pt;}
.xa{left:168.530517pt;}
.x12{left:206.289957pt;}
.x2{left:212.781352pt;}
.xe{left:230.311992pt;}
.x1{left:237.927693pt;}
.xf{left:247.605957pt;}
.xc{left:251.130819pt;}
.x7{left:365.885416pt;}
.x6{left:394.899903pt;}
.x19{left:396.945068pt;}
.x11{left:411.207357pt;}
.x5{left:558.862833pt;}
.x4{left:573.114013pt;}
.x9{left:609.772380pt;}
.x8{left:665.042115pt;}
}




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