
    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_70bf92646b79232abb10cd7c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.726203;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_f842b9b1bb931f3469597b57.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.166000;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_c235acde003a4a9e3c79d4cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.175000;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_958b6ed82387bf6617b6b79e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.134000;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_8dea851501bdfc9f1bd5dc5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_5adaa7bdb6fe9852a5265fc2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172000;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_195a4718af91bbe12bd10b56.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.132000;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_324f45dd792e9ac2d233c387.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.121000;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_f842b9b1bb931f3469597b57.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.166000;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_687c5f2cc14b78fc9405d16b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.132000;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_f95fba7bf0619ee14d11193e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739000;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_177c990477e6270f85bf316d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666000;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:ffd;src:url('chunks/assets/font_11a85328b1f991d08b0e3598.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.142000;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;}
.m1{transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224999,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);}
.m2{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;}
.ls3{letter-spacing:-6.978000px;}
.ls2{letter-spacing:-0.480000px;}
.ls1{letter-spacing:-0.264000px;}
.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;}
}
.ws31{word-spacing:-29.022000px;}
.ws33{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.490000px;}
.ws34{word-spacing:-17.280000px;}
.ws35{word-spacing:-15.000000px;}
.ws18{word-spacing:-13.440000px;}
.ws1{word-spacing:-12.243000px;}
.ws2c{word-spacing:-11.484000px;}
.ws26{word-spacing:-3.168000px;}
.ws11{word-spacing:-2.970000px;}
.ws2b{word-spacing:-2.508000px;}
.ws25{word-spacing:-2.442000px;}
.ws17{word-spacing:-2.376000px;}
.ws6{word-spacing:-2.178000px;}
.wse{word-spacing:-2.112000px;}
.ws16{word-spacing:-2.046000px;}
.ws19{word-spacing:-1.914000px;}
.ws27{word-spacing:-1.716000px;}
.ws24{word-spacing:-1.584000px;}
.wsc{word-spacing:-1.518000px;}
.ws13{word-spacing:-1.386000px;}
.ws1a{word-spacing:-1.320000px;}
.wsd{word-spacing:-1.188000px;}
.ws36{word-spacing:-1.080000px;}
.ws4{word-spacing:-0.726000px;}
.ws20{word-spacing:-0.660000px;}
.ws8{word-spacing:-0.066000px;}
.ws32{word-spacing:-0.030000px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:0.132000px;}
.ws22{word-spacing:0.198000px;}
.ws1e{word-spacing:0.264000px;}
.ws5{word-spacing:0.330000px;}
.ws2d{word-spacing:0.660000px;}
.ws10{word-spacing:0.726000px;}
.ws23{word-spacing:0.792000px;}
.ws2a{word-spacing:0.924000px;}
.ws29{word-spacing:1.122000px;}
.ws14{word-spacing:1.254000px;}
.ws3{word-spacing:1.320000px;}
.wsb{word-spacing:1.650000px;}
.ws2f{word-spacing:2.706000px;}
.ws1b{word-spacing:3.300000px;}
.ws1f{word-spacing:3.630000px;}
.ws21{word-spacing:3.696000px;}
.ws9{word-spacing:3.762000px;}
.wsf{word-spacing:4.224000px;}
.ws1d{word-spacing:4.488000px;}
.ws15{word-spacing:4.686000px;}
.ws7{word-spacing:5.214000px;}
.ws1c{word-spacing:5.280000px;}
.ws30{word-spacing:5.544000px;}
.wsa{word-spacing:6.006000px;}
.ws2e{word-spacing:9.372000px;}
.ws28{word-spacing:9.768000px;}
._b{margin-left:-26.127600px;}
._7{margin-left:-21.399000px;}
._6{margin-left:-16.500000px;}
._8{margin-left:-15.271200px;}
._9{margin-left:-9.240000px;}
._5{margin-left:-6.759600px;}
._3{margin-left:-5.661000px;}
._2{margin-left:-4.368000px;}
._0{margin-left:-2.937600px;}
._1{margin-left:-1.003200px;}
._4{width:1.147200px;}
._a{width:3.161400px;}
.fc3{color:rgb(39,91,155);}
.fc2{color:rgb(56,182,171);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(4,73,143);}
.fs3{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:144.000000px;}
.fs5{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:38.834700px;}
.y35{bottom:102.755850px;}
.y4f{bottom:115.410000px;}
.y22{bottom:122.555850px;}
.y45{bottom:128.400000px;}
.y21{bottom:142.355850px;}
.y4e{bottom:145.506000px;}
.y44{bottom:150.000000px;}
.y20{bottom:162.155850px;}
.y4d{bottom:167.106000px;}
.y1f{bottom:181.955850px;}
.y4c{bottom:188.706000px;}
.y1e{bottom:201.755850px;}
.y4b{bottom:210.306000px;}
.y1d{bottom:221.555850px;}
.y4a{bottom:231.906000px;}
.y1c{bottom:241.355850px;}
.y1b{bottom:261.155850px;}
.y49{bottom:275.106000px;}
.y1a{bottom:280.955850px;}
.y48{bottom:296.706000px;}
.y19{bottom:300.755850px;}
.y47{bottom:318.306000px;}
.y18{bottom:320.555850px;}
.y17{bottom:340.355850px;}
.y16{bottom:360.155850px;}
.y15{bottom:379.955850px;}
.y14{bottom:399.755850px;}
.y13{bottom:419.555850px;}
.y46{bottom:426.306000px;}
.y12{bottom:439.355850px;}
.y11{bottom:459.155850px;}
.y10{bottom:478.955850px;}
.y43{bottom:481.876500px;}
.yf{bottom:498.755850px;}
.y42{bottom:510.676500px;}
.ye{bottom:518.555850px;}
.yd{bottom:538.355850px;}
.y41{bottom:539.476500px;}
.yc{bottom:558.155850px;}
.y40{bottom:568.276500px;}
.yb{bottom:577.955850px;}
.y5e{bottom:577.956000px;}
.ya{bottom:597.755850px;}
.y5d{bottom:597.756000px;}
.y9{bottom:617.555850px;}
.y5c{bottom:617.556000px;}
.y34{bottom:637.355850px;}
.y5b{bottom:637.356000px;}
.y8{bottom:657.155850px;}
.y5a{bottom:657.156000px;}
.y33{bottom:676.955850px;}
.y3f{bottom:683.476500px;}
.y32{bottom:696.755850px;}
.y3e{bottom:715.876500px;}
.y31{bottom:716.555850px;}
.y7{bottom:730.785900px;}
.y3d{bottom:748.276500px;}
.y6{bottom:755.489850px;}
.y30{bottom:756.155850px;}
.y59{bottom:756.156000px;}
.y5{bottom:775.289850px;}
.y58{bottom:775.956000px;}
.y57{bottom:795.756000px;}
.y4{bottom:807.845700px;}
.y3c{bottom:813.076500px;}
.y2f{bottom:815.555850px;}
.y56{bottom:815.556000px;}
.y2e{bottom:835.355850px;}
.y55{bottom:835.356000px;}
.y3{bottom:836.645700px;}
.y3b{bottom:852.076500px;}
.y2d{bottom:855.155850px;}
.y2c{bottom:874.955850px;}
.y2b{bottom:894.755850px;}
.y3a{bottom:906.061500px;}
.y2a{bottom:914.555850px;}
.y29{bottom:934.355850px;}
.y54{bottom:934.356000px;}
.y28{bottom:954.155850px;}
.y53{bottom:954.156000px;}
.y39{bottom:957.240000px;}
.y27{bottom:973.955850px;}
.y52{bottom:973.956000px;}
.y26{bottom:993.755850px;}
.y51{bottom:993.756000px;}
.y25{bottom:1013.555850px;}
.y50{bottom:1013.556000px;}
.y24{bottom:1033.355850px;}
.y23{bottom:1072.955850px;}
.y2{bottom:1146.443550px;}
.y38{bottom:1161.956400px;}
.y37{bottom:1176.356400px;}
.y36{bottom:1190.756400px;}
.h2{height:34.227024px;}
.h6{height:41.202000px;}
.h3{height:44.304000px;}
.h8{height:44.736000px;}
.h10{height:51.780000px;}
.h7{height:56.958000px;}
.h5{height:61.314000px;}
.he{height:62.136000px;}
.hf{height:62.856000px;}
.hd{height:82.848000px;}
.h4{height:89.472000px;}
.hc{height:93.204000px;}
.ha{height:111.888000px;}
.hb{height:124.272000px;}
.h9{height:144.984000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:85.039350px;}
.x9{left:119.062350px;}
.x21{left:128.633700px;}
.x1d{left:131.828700px;}
.x1e{left:134.423700px;}
.x1c{left:136.718700px;}
.x3{left:138.097200px;}
.x23{left:139.148700px;}
.xa{left:153.085350px;}
.xb{left:173.710350px;}
.x22{left:175.373700px;}
.x1f{left:200.363700px;}
.x24{left:220.133700px;}
.x4{left:232.057200px;}
.x20{left:269.708700px;}
.x14{left:272.407950px;}
.xc{left:274.075500px;}
.x1b{left:276.007950px;}
.x18{left:278.059950px;}
.x13{left:287.031000px;}
.xe{left:290.113500px;}
.x7{left:329.993250px;}
.xf{left:332.856000px;}
.x1a{left:337.549950px;}
.x11{left:346.173000px;}
.x10{left:350.644500px;}
.x6{left:351.906300px;}
.x5{left:357.762450px;}
.x15{left:363.415950px;}
.x17{left:377.455950px;}
.x16{left:397.273950px;}
.x19{left:398.749950px;}
.x1{left:426.889950px;}
.x12{left:428.457000px;}
.x2{left:541.417350px;}
.xd{left:724.197294px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-6.202667pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:-0.234667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws31{word-spacing:-25.797333pt;}
.ws33{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.546667pt;}
.ws34{word-spacing:-15.360000pt;}
.ws35{word-spacing:-13.333333pt;}
.ws18{word-spacing:-11.946667pt;}
.ws1{word-spacing:-10.882667pt;}
.ws2c{word-spacing:-10.208000pt;}
.ws26{word-spacing:-2.816000pt;}
.ws11{word-spacing:-2.640000pt;}
.ws2b{word-spacing:-2.229333pt;}
.ws25{word-spacing:-2.170667pt;}
.ws17{word-spacing:-2.112000pt;}
.ws6{word-spacing:-1.936000pt;}
.wse{word-spacing:-1.877333pt;}
.ws16{word-spacing:-1.818667pt;}
.ws19{word-spacing:-1.701333pt;}
.ws27{word-spacing:-1.525333pt;}
.ws24{word-spacing:-1.408000pt;}
.wsc{word-spacing:-1.349333pt;}
.ws13{word-spacing:-1.232000pt;}
.ws1a{word-spacing:-1.173333pt;}
.wsd{word-spacing:-1.056000pt;}
.ws36{word-spacing:-0.960000pt;}
.ws4{word-spacing:-0.645333pt;}
.ws20{word-spacing:-0.586667pt;}
.ws8{word-spacing:-0.058667pt;}
.ws32{word-spacing:-0.026667pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:0.117333pt;}
.ws22{word-spacing:0.176000pt;}
.ws1e{word-spacing:0.234667pt;}
.ws5{word-spacing:0.293333pt;}
.ws2d{word-spacing:0.586667pt;}
.ws10{word-spacing:0.645333pt;}
.ws23{word-spacing:0.704000pt;}
.ws2a{word-spacing:0.821333pt;}
.ws29{word-spacing:0.997333pt;}
.ws14{word-spacing:1.114667pt;}
.ws3{word-spacing:1.173333pt;}
.wsb{word-spacing:1.466667pt;}
.ws2f{word-spacing:2.405333pt;}
.ws1b{word-spacing:2.933333pt;}
.ws1f{word-spacing:3.226667pt;}
.ws21{word-spacing:3.285333pt;}
.ws9{word-spacing:3.344000pt;}
.wsf{word-spacing:3.754667pt;}
.ws1d{word-spacing:3.989333pt;}
.ws15{word-spacing:4.165333pt;}
.ws7{word-spacing:4.634667pt;}
.ws1c{word-spacing:4.693333pt;}
.ws30{word-spacing:4.928000pt;}
.wsa{word-spacing:5.338667pt;}
.ws2e{word-spacing:8.330667pt;}
.ws28{word-spacing:8.682667pt;}
._b{margin-left:-23.224533pt;}
._7{margin-left:-19.021333pt;}
._6{margin-left:-14.666667pt;}
._8{margin-left:-13.574400pt;}
._9{margin-left:-8.213333pt;}
._5{margin-left:-6.008533pt;}
._3{margin-left:-5.032000pt;}
._2{margin-left:-3.882667pt;}
._0{margin-left:-2.611200pt;}
._1{margin-left:-0.891733pt;}
._4{width:1.019733pt;}
._a{width:2.810133pt;}
.fs3{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:128.000000pt;}
.fs5{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:34.519733pt;}
.y35{bottom:91.338533pt;}
.y4f{bottom:102.586667pt;}
.y22{bottom:108.938533pt;}
.y45{bottom:114.133333pt;}
.y21{bottom:126.538533pt;}
.y4e{bottom:129.338667pt;}
.y44{bottom:133.333333pt;}
.y20{bottom:144.138533pt;}
.y4d{bottom:148.538667pt;}
.y1f{bottom:161.738533pt;}
.y4c{bottom:167.738667pt;}
.y1e{bottom:179.338533pt;}
.y4b{bottom:186.938667pt;}
.y1d{bottom:196.938533pt;}
.y4a{bottom:206.138667pt;}
.y1c{bottom:214.538533pt;}
.y1b{bottom:232.138533pt;}
.y49{bottom:244.538667pt;}
.y1a{bottom:249.738533pt;}
.y48{bottom:263.738667pt;}
.y19{bottom:267.338533pt;}
.y47{bottom:282.938667pt;}
.y18{bottom:284.938533pt;}
.y17{bottom:302.538533pt;}
.y16{bottom:320.138533pt;}
.y15{bottom:337.738533pt;}
.y14{bottom:355.338533pt;}
.y13{bottom:372.938533pt;}
.y46{bottom:378.938667pt;}
.y12{bottom:390.538533pt;}
.y11{bottom:408.138533pt;}
.y10{bottom:425.738533pt;}
.y43{bottom:428.334667pt;}
.yf{bottom:443.338533pt;}
.y42{bottom:453.934667pt;}
.ye{bottom:460.938533pt;}
.yd{bottom:478.538533pt;}
.y41{bottom:479.534667pt;}
.yc{bottom:496.138533pt;}
.y40{bottom:505.134667pt;}
.yb{bottom:513.738533pt;}
.y5e{bottom:513.738667pt;}
.ya{bottom:531.338533pt;}
.y5d{bottom:531.338667pt;}
.y9{bottom:548.938533pt;}
.y5c{bottom:548.938667pt;}
.y34{bottom:566.538533pt;}
.y5b{bottom:566.538667pt;}
.y8{bottom:584.138533pt;}
.y5a{bottom:584.138667pt;}
.y33{bottom:601.738533pt;}
.y3f{bottom:607.534667pt;}
.y32{bottom:619.338533pt;}
.y3e{bottom:636.334667pt;}
.y31{bottom:636.938533pt;}
.y7{bottom:649.587467pt;}
.y3d{bottom:665.134667pt;}
.y6{bottom:671.546533pt;}
.y30{bottom:672.138533pt;}
.y59{bottom:672.138667pt;}
.y5{bottom:689.146533pt;}
.y58{bottom:689.738667pt;}
.y57{bottom:707.338667pt;}
.y4{bottom:718.085067pt;}
.y3c{bottom:722.734667pt;}
.y2f{bottom:724.938533pt;}
.y56{bottom:724.938667pt;}
.y2e{bottom:742.538533pt;}
.y55{bottom:742.538667pt;}
.y3{bottom:743.685067pt;}
.y3b{bottom:757.401333pt;}
.y2d{bottom:760.138533pt;}
.y2c{bottom:777.738533pt;}
.y2b{bottom:795.338533pt;}
.y3a{bottom:805.388000pt;}
.y2a{bottom:812.938533pt;}
.y29{bottom:830.538533pt;}
.y54{bottom:830.538667pt;}
.y28{bottom:848.138533pt;}
.y53{bottom:848.138667pt;}
.y39{bottom:850.880000pt;}
.y27{bottom:865.738533pt;}
.y52{bottom:865.738667pt;}
.y26{bottom:883.338533pt;}
.y51{bottom:883.338667pt;}
.y25{bottom:900.938533pt;}
.y50{bottom:900.938667pt;}
.y24{bottom:918.538533pt;}
.y23{bottom:953.738533pt;}
.y2{bottom:1019.060933pt;}
.y38{bottom:1032.850133pt;}
.y37{bottom:1045.650133pt;}
.y36{bottom:1058.450133pt;}
.h2{height:30.424021pt;}
.h6{height:36.624000pt;}
.h3{height:39.381333pt;}
.h8{height:39.765333pt;}
.h10{height:46.026667pt;}
.h7{height:50.629333pt;}
.h5{height:54.501333pt;}
.he{height:55.232000pt;}
.hf{height:55.872000pt;}
.hd{height:73.642667pt;}
.h4{height:79.530667pt;}
.hc{height:82.848000pt;}
.ha{height:99.456000pt;}
.hb{height:110.464000pt;}
.h9{height:128.874667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:75.590533pt;}
.x9{left:105.833200pt;}
.x21{left:114.341067pt;}
.x1d{left:117.181067pt;}
.x1e{left:119.487733pt;}
.x1c{left:121.527733pt;}
.x3{left:122.753067pt;}
.x23{left:123.687733pt;}
.xa{left:136.075867pt;}
.xb{left:154.409200pt;}
.x22{left:155.887733pt;}
.x1f{left:178.101067pt;}
.x24{left:195.674400pt;}
.x4{left:206.273067pt;}
.x20{left:239.741067pt;}
.x14{left:242.140400pt;}
.xc{left:243.622667pt;}
.x1b{left:245.340400pt;}
.x18{left:247.164400pt;}
.x13{left:255.138667pt;}
.xe{left:257.878667pt;}
.x7{left:293.327333pt;}
.xf{left:295.872000pt;}
.x1a{left:300.044400pt;}
.x11{left:307.709333pt;}
.x10{left:311.684000pt;}
.x6{left:312.805600pt;}
.x5{left:318.011067pt;}
.x15{left:323.036400pt;}
.x17{left:335.516400pt;}
.x16{left:353.132400pt;}
.x19{left:354.444400pt;}
.x1{left:379.457733pt;}
.x12{left:380.850667pt;}
.x2{left:481.259867pt;}
.xd{left:643.730928pt;}
}




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