
    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_61f772d215b0c223690333b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_d703522d996a7e6f0e7c2aad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_23808eaa128ba15a5ec745e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_d6f9c4c86e0e1315beea4059.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_1426904b713d80ea4efcadc7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.658000;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_56bf7b2c6e4c83c2bc8b8e9e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899000;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_291dbe2185b2a5500faed1c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920000;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_cd412ac555a32b32211e6b11.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.643000;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_129cb793e2c5eaf330d7663e.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.400000;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:ffa;src:url('chunks/assets/font_998c452318f198d81817d3c9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.686000;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:ffb;src:url('chunks/assets/font_63ead0883296f0368e434031.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.383000;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:ffc;src:url('chunks/assets/font_784c49ac326d60e2faf9b6d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;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);}
.v3{vertical-align:-51.666000px;}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.724000px;}
.v6{vertical-align:26.028000px;}
.v2{vertical-align:48.528000px;}
.v4{vertical-align:114.504000px;}
.lsd{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.001114px;}
.ls16{letter-spacing:0.002294px;}
.ls10{letter-spacing:0.002759px;}
.lse{letter-spacing:0.003744px;}
.ls6{letter-spacing:0.004391px;}
.ls18{letter-spacing:0.592737px;}
.ls1{letter-spacing:1.816884px;}
.ls3{letter-spacing:1.945021px;}
.lsa{letter-spacing:1.951021px;}
.ls9{letter-spacing:2.570450px;}
.ls2{letter-spacing:2.576450px;}
.ls0{letter-spacing:2.988960px;}
.ls11{letter-spacing:7.168800px;}
.ls7{letter-spacing:9.121021px;}
.lsc{letter-spacing:19.921473px;}
.lsb{letter-spacing:19.922759px;}
.ls4{letter-spacing:19.928759px;}
.ls1a{letter-spacing:24.691473px;}
.lsf{letter-spacing:26.412960px;}
.ls19{letter-spacing:27.680915px;}
.ls14{letter-spacing:30.841809px;}
.ls17{letter-spacing:33.368915px;}
.ls15{letter-spacing:34.356993px;}
.ls1c{letter-spacing:35.117578px;}
.ls5{letter-spacing:56.221473px;}
.ls12{letter-spacing:62.539358px;}
.ls13{letter-spacing:1068.139114px;}
.ls8{letter-spacing:1140.433114px;}
.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;}
}
.ws21{word-spacing:-45.664082px;}
.ws8{word-spacing:-42.637126px;}
.ws2{word-spacing:-23.412998px;}
.ws16{word-spacing:-19.510886px;}
.ws9{word-spacing:-18.183288px;}
.ws37{word-spacing:-2.582323px;}
.ws29{word-spacing:-1.291162px;}
.ws12{word-spacing:-0.103292px;}
.ws1a{word-spacing:0.000000px;}
.ws4{word-spacing:0.078546px;}
.ws2d{word-spacing:0.215194px;}
.ws20{word-spacing:0.396117px;}
.ws30{word-spacing:0.573850px;}
.ws13{word-spacing:1.004237px;}
.ws7{word-spacing:2.173093px;}
.wsa{word-spacing:2.762184px;}
.ws1e{word-spacing:2.869248px;}
.ws2f{word-spacing:3.012710px;}
.ws1f{word-spacing:3.084442px;}
.ws35{word-spacing:3.227904px;}
.ws38{word-spacing:3.371366px;}
.wsb{word-spacing:3.416730px;}
.wsc{word-spacing:3.613094px;}
.ws2e{word-spacing:3.658291px;}
.ws6{word-spacing:3.744003px;}
.ws11{word-spacing:3.873485px;}
.ws15{word-spacing:3.945216px;}
.ws1{word-spacing:4.648169px;}
.ws2b{word-spacing:5.236378px;}
.ws28{word-spacing:6.671002px;}
.ws31{word-spacing:7.101389px;}
.ws14{word-spacing:8.249088px;}
.ws1b{word-spacing:8.607744px;}
.ws2a{word-spacing:9.970637px;}
.ws26{word-spacing:10.042368px;}
.ws5{word-spacing:10.747645px;}
.ws25{word-spacing:10.831411px;}
.ws22{word-spacing:10.862959px;}
.ws23{word-spacing:10.869972px;}
.ws24{word-spacing:10.903142px;}
.ws3{word-spacing:12.122192px;}
.ws2c{word-spacing:12.337766px;}
.ws19{word-spacing:12.552960px;}
.ws1c{word-spacing:12.839885px;}
.ws27{word-spacing:12.983347px;}
.ws18{word-spacing:14.059315px;}
.wse{word-spacing:20.658586px;}
.ws39{word-spacing:25.034189px;}
.wsd{word-spacing:26.827469px;}
.ws34{word-spacing:30.768200px;}
.ws36{word-spacing:31.127086px;}
.ws32{word-spacing:31.138746px;}
.ws33{word-spacing:31.149112px;}
.wsf{word-spacing:32.637696px;}
.ws1d{word-spacing:38.631358px;}
.ws10{word-spacing:38.878310px;}
.ws0{word-spacing:46.366650px;}
.ws17{word-spacing:829.214796px;}
._1{margin-left:-11.653650px;}
._14{margin-left:-9.709486px;}
._a{margin-left:-6.728393px;}
._6{margin-left:-4.849686px;}
._0{margin-left:-3.843225px;}
._3{margin-left:-2.238007px;}
._4{margin-left:-1.165632px;}
._2{width:2.324084px;}
._c{width:3.843225px;}
._16{width:19.199519px;}
._8{width:21.863670px;}
._b{width:23.391450px;}
._15{width:24.432304px;}
._7{width:28.396677px;}
._11{width:30.142108px;}
._13{width:31.891673px;}
._9{width:34.158391px;}
._f{width:35.683349px;}
._d{width:45.248047px;}
._12{width:49.365406px;}
._5{width:50.674411px;}
._10{width:57.288780px;}
._e{width:70.522869px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs5{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:63.168000px;}
.y1e{bottom:108.000000px;}
.y1d{bottom:129.669000px;}
.y3d{bottom:151.338000px;}
.y1c{bottom:167.343000px;}
.y3c{bottom:173.005500px;}
.y3b{bottom:194.674500px;}
.y1b{bottom:205.017000px;}
.y3a{bottom:216.343500px;}
.y19{bottom:244.530000px;}
.y1a{bottom:245.068500px;}
.y39{bottom:255.771000px;}
.y18{bottom:273.199500px;}
.y17{bottom:294.868500px;}
.y38{bottom:315.435000px;}
.y16{bottom:316.537500px;}
.y4d{bottom:333.918000px;}
.y37{bottom:337.104000px;}
.y15{bottom:355.963500px;}
.y4c{bottom:370.530000px;}
.y36{bottom:373.260000px;}
.y4b{bottom:392.199000px;}
.y35{bottom:394.929000px;}
.y14{bottom:415.579500px;}
.y34{bottom:431.083500px;}
.y4a{bottom:431.626500px;}
.y13{bottom:437.248500px;}
.y33{bottom:452.752500px;}
.y12{bottom:458.917500px;}
.y11{bottom:480.586500px;}
.y32{bottom:492.180000px;}
.y10{bottom:519.480000px;}
.y49{bottom:528.139500px;}
.y48{bottom:549.808500px;}
.y31{bottom:551.844000px;}
.yf{bottom:558.373500px;}
.y47{bottom:571.477500px;}
.y30{bottom:573.513000px;}
.ye{bottom:578.697000px;}
.y2f{bottom:595.182000px;}
.yd{bottom:599.020500px;}
.y2e{bottom:616.851000px;}
.yc{bottom:619.344000px;}
.yb{bottom:639.667500px;}
.y46{bottom:647.467500px;}
.y2d{bottom:656.278500px;}
.ya{bottom:659.992500px;}
.y45{bottom:669.136500px;}
.y9{bottom:680.316000px;}
.y44{bottom:690.804000px;}
.y8{bottom:700.639500px;}
.y43{bottom:712.473000px;}
.y2c{bottom:715.942500px;}
.y7{bottom:728.779500px;}
.y42{bottom:734.142000px;}
.y2b{bottom:737.611500px;}
.y41{bottom:755.811000px;}
.y2a{bottom:759.279000px;}
.y40{bottom:777.480000px;}
.y29{bottom:790.954500px;}
.y6{bottom:792.666000px;}
.y3f{bottom:799.149000px;}
.y28{bottom:803.256000px;}
.y3e{bottom:820.816500px;}
.y5{bottom:834.733500px;}
.y27{bottom:854.632500px;}
.y4{bottom:861.631500px;}
.y26{bottom:876.301500px;}
.y25{bottom:897.969000px;}
.y3{bottom:914.869500px;}
.y24{bottom:919.638000px;}
.y2{bottom:952.230000px;}
.y23{bottom:959.065500px;}
.y1{bottom:989.589000px;}
.y22{bottom:1018.729500px;}
.y21{bottom:1040.398500px;}
.y20{bottom:1062.067500px;}
.h3{height:45.687311px;}
.h4{height:49.090950px;}
.h5{height:50.211840px;}
.h9{height:51.644400px;}
.h6{height:53.798400px;}
.hc{height:57.828699px;}
.h2{height:64.557900px;}
.h7{height:72.304680px;}
.h1{height:86.782500px;}
.h8{height:102.326400px;}
.hb{height:103.004400px;}
.ha{height:117.373248px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:108.000000px;}
.x10{left:134.338500px;}
.x9{left:151.897500px;}
.x1{left:164.064000px;}
.x2{left:165.306000px;}
.x8{left:176.443500px;}
.x3{left:220.915500px;}
.x5{left:281.304000px;}
.xe{left:349.161000px;}
.x4{left:367.494000px;}
.x6{left:380.277000px;}
.xa{left:394.762500px;}
.x11{left:397.471500px;}
.xc{left:415.545000px;}
.x7{left:422.998500px;}
.xf{left:454.611000px;}
.xd{left:472.438500px;}
.x12{left:484.488000px;}
@media print{
.v3{vertical-align:-45.925333pt;}
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.421333pt;}
.v6{vertical-align:23.136000pt;}
.v2{vertical-align:43.136000pt;}
.v4{vertical-align:101.781333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000990pt;}
.ls16{letter-spacing:0.002039pt;}
.ls10{letter-spacing:0.002452pt;}
.lse{letter-spacing:0.003328pt;}
.ls6{letter-spacing:0.003903pt;}
.ls18{letter-spacing:0.526877pt;}
.ls1{letter-spacing:1.615008pt;}
.ls3{letter-spacing:1.728908pt;}
.lsa{letter-spacing:1.734241pt;}
.ls9{letter-spacing:2.284844pt;}
.ls2{letter-spacing:2.290178pt;}
.ls0{letter-spacing:2.656853pt;}
.ls11{letter-spacing:6.372267pt;}
.ls7{letter-spacing:8.107575pt;}
.lsc{letter-spacing:17.707976pt;}
.lsb{letter-spacing:17.709119pt;}
.ls4{letter-spacing:17.714452pt;}
.ls1a{letter-spacing:21.947976pt;}
.lsf{letter-spacing:23.478187pt;}
.ls19{letter-spacing:24.605258pt;}
.ls14{letter-spacing:27.414941pt;}
.ls17{letter-spacing:29.661258pt;}
.ls15{letter-spacing:30.539549pt;}
.ls1c{letter-spacing:31.215625pt;}
.ls5{letter-spacing:49.974642pt;}
.ls12{letter-spacing:55.590541pt;}
.ls13{letter-spacing:949.456990pt;}
.ls8{letter-spacing:1013.718323pt;}
.ws21{word-spacing:-40.590295pt;}
.ws8{word-spacing:-37.899668pt;}
.ws2{word-spacing:-20.811554pt;}
.ws16{word-spacing:-17.343010pt;}
.ws9{word-spacing:-16.162923pt;}
.ws37{word-spacing:-2.295398pt;}
.ws29{word-spacing:-1.147699pt;}
.ws12{word-spacing:-0.091815pt;}
.ws1a{word-spacing:0.000000pt;}
.ws4{word-spacing:0.069818pt;}
.ws2d{word-spacing:0.191283pt;}
.ws20{word-spacing:0.352104pt;}
.ws30{word-spacing:0.510089pt;}
.ws13{word-spacing:0.892655pt;}
.ws7{word-spacing:1.931638pt;}
.wsa{word-spacing:2.455275pt;}
.ws1e{word-spacing:2.550443pt;}
.ws2f{word-spacing:2.677965pt;}
.ws1f{word-spacing:2.741726pt;}
.ws35{word-spacing:2.869248pt;}
.ws38{word-spacing:2.996770pt;}
.wsb{word-spacing:3.037093pt;}
.wsc{word-spacing:3.211639pt;}
.ws2e{word-spacing:3.251814pt;}
.ws6{word-spacing:3.328003pt;}
.ws11{word-spacing:3.443098pt;}
.ws15{word-spacing:3.506859pt;}
.ws1{word-spacing:4.131706pt;}
.ws2b{word-spacing:4.654558pt;}
.ws28{word-spacing:5.929779pt;}
.ws31{word-spacing:6.312346pt;}
.ws14{word-spacing:7.332523pt;}
.ws1b{word-spacing:7.651328pt;}
.ws2a{word-spacing:8.862788pt;}
.ws26{word-spacing:8.926549pt;}
.ws5{word-spacing:9.553463pt;}
.ws25{word-spacing:9.627921pt;}
.ws22{word-spacing:9.655963pt;}
.ws23{word-spacing:9.662198pt;}
.ws24{word-spacing:9.691682pt;}
.ws3{word-spacing:10.775282pt;}
.ws2c{word-spacing:10.966903pt;}
.ws19{word-spacing:11.158187pt;}
.ws1c{word-spacing:11.413231pt;}
.ws27{word-spacing:11.540753pt;}
.ws18{word-spacing:12.497169pt;}
.wse{word-spacing:18.363187pt;}
.ws39{word-spacing:22.252612pt;}
.wsd{word-spacing:23.846639pt;}
.ws34{word-spacing:27.349511pt;}
.ws36{word-spacing:27.668521pt;}
.ws32{word-spacing:27.678886pt;}
.ws33{word-spacing:27.688100pt;}
.wsf{word-spacing:29.011285pt;}
.ws1d{word-spacing:34.338985pt;}
.ws10{word-spacing:34.558498pt;}
.ws0{word-spacing:41.214800pt;}
.ws17{word-spacing:737.079818pt;}
._1{margin-left:-10.358800pt;}
._14{margin-left:-8.630654pt;}
._a{margin-left:-5.980794pt;}
._6{margin-left:-4.310832pt;}
._0{margin-left:-3.416200pt;}
._3{margin-left:-1.989340pt;}
._4{margin-left:-1.036117pt;}
._2{width:2.065853pt;}
._c{width:3.416200pt;}
._16{width:17.066239pt;}
._8{width:19.434373pt;}
._b{width:20.792400pt;}
._15{width:21.717603pt;}
._7{width:25.241491pt;}
._11{width:26.792985pt;}
._13{width:28.348154pt;}
._9{width:30.363014pt;}
._f{width:31.718532pt;}
._d{width:40.220486pt;}
._12{width:43.880361pt;}
._5{width:45.043921pt;}
._10{width:50.923360pt;}
._e{width:62.686994pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs5{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:56.149333pt;}
.y1e{bottom:96.000000pt;}
.y1d{bottom:115.261333pt;}
.y3d{bottom:134.522667pt;}
.y1c{bottom:148.749333pt;}
.y3c{bottom:153.782667pt;}
.y3b{bottom:173.044000pt;}
.y1b{bottom:182.237333pt;}
.y3a{bottom:192.305333pt;}
.y19{bottom:217.360000pt;}
.y1a{bottom:217.838667pt;}
.y39{bottom:227.352000pt;}
.y18{bottom:242.844000pt;}
.y17{bottom:262.105333pt;}
.y38{bottom:280.386667pt;}
.y16{bottom:281.366667pt;}
.y4d{bottom:296.816000pt;}
.y37{bottom:299.648000pt;}
.y15{bottom:316.412000pt;}
.y4c{bottom:329.360000pt;}
.y36{bottom:331.786667pt;}
.y4b{bottom:348.621333pt;}
.y35{bottom:351.048000pt;}
.y14{bottom:369.404000pt;}
.y34{bottom:383.185333pt;}
.y4a{bottom:383.668000pt;}
.y13{bottom:388.665333pt;}
.y33{bottom:402.446667pt;}
.y12{bottom:407.926667pt;}
.y11{bottom:427.188000pt;}
.y32{bottom:437.493333pt;}
.y10{bottom:461.760000pt;}
.y49{bottom:469.457333pt;}
.y48{bottom:488.718667pt;}
.y31{bottom:490.528000pt;}
.yf{bottom:496.332000pt;}
.y47{bottom:507.980000pt;}
.y30{bottom:509.789333pt;}
.ye{bottom:514.397333pt;}
.y2f{bottom:529.050667pt;}
.yd{bottom:532.462667pt;}
.y2e{bottom:548.312000pt;}
.yc{bottom:550.528000pt;}
.yb{bottom:568.593333pt;}
.y46{bottom:575.526667pt;}
.y2d{bottom:583.358667pt;}
.ya{bottom:586.660000pt;}
.y45{bottom:594.788000pt;}
.y9{bottom:604.725333pt;}
.y44{bottom:614.048000pt;}
.y8{bottom:622.790667pt;}
.y43{bottom:633.309333pt;}
.y2c{bottom:636.393333pt;}
.y7{bottom:647.804000pt;}
.y42{bottom:652.570667pt;}
.y2b{bottom:655.654667pt;}
.y41{bottom:671.832000pt;}
.y2a{bottom:674.914667pt;}
.y40{bottom:691.093333pt;}
.y29{bottom:703.070667pt;}
.y6{bottom:704.592000pt;}
.y3f{bottom:710.354667pt;}
.y28{bottom:714.005333pt;}
.y3e{bottom:729.614667pt;}
.y5{bottom:741.985333pt;}
.y27{bottom:759.673333pt;}
.y4{bottom:765.894667pt;}
.y26{bottom:778.934667pt;}
.y25{bottom:798.194667pt;}
.y3{bottom:813.217333pt;}
.y24{bottom:817.456000pt;}
.y2{bottom:846.426667pt;}
.y23{bottom:852.502667pt;}
.y1{bottom:879.634667pt;}
.y22{bottom:905.537333pt;}
.y21{bottom:924.798667pt;}
.y20{bottom:944.060000pt;}
.h3{height:40.610943pt;}
.h4{height:43.636400pt;}
.h5{height:44.632747pt;}
.h9{height:45.906133pt;}
.h6{height:47.820800pt;}
.hc{height:51.403288pt;}
.h2{height:57.384800pt;}
.h7{height:64.270827pt;}
.h1{height:77.140000pt;}
.h8{height:90.956800pt;}
.hb{height:91.559467pt;}
.ha{height:104.331776pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:96.000000pt;}
.x10{left:119.412000pt;}
.x9{left:135.020000pt;}
.x1{left:145.834667pt;}
.x2{left:146.938667pt;}
.x8{left:156.838667pt;}
.x3{left:196.369333pt;}
.x5{left:250.048000pt;}
.xe{left:310.365333pt;}
.x4{left:326.661333pt;}
.x6{left:338.024000pt;}
.xa{left:350.900000pt;}
.x11{left:353.308000pt;}
.xc{left:369.373333pt;}
.x7{left:375.998667pt;}
.xf{left:404.098667pt;}
.xd{left:419.945333pt;}
.x12{left:430.656000pt;}
}




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