
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_0f97208f44d026f1d21c6b11.woff')format("woff");}.ff2{font-family:ff2;line-height:1.141500;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_35492c4301614b82df4338e2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.135000;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_1ba28e7aa50b17046d6aad33.woff')format("woff");}.ff4{font-family:ff4;line-height:0.987000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a742399d3b9d89c67b61a91f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.987000;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_dfa48dafa7e86aa08b5aadd9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.991000;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_338c3c948ce06a6d845221e7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.997000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.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:-4.500000px;}
.v1{vertical-align:-1.275552px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:30.236543px;}
.v5{vertical-align:40.499998px;}
.v3{vertical-align:53.368558px;}
.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;}
}
.ws0{word-spacing:-124.671461px;}
.ws3{word-spacing:-27.980819px;}
.ws6{word-spacing:-17.801639px;}
.ws5{word-spacing:-16.595999px;}
.ws4{word-spacing:-16.450784px;}
.ws7{word-spacing:-15.263999px;}
.ws1{word-spacing:-13.826542px;}
.ws2{word-spacing:-12.446999px;}
.ws8{word-spacing:-12.446992px;}
.ws9{word-spacing:-11.374542px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-14.242926px;}
._6{margin-left:-6.258792px;}
._5{margin-left:-4.751509px;}
._3{margin-left:-3.646107px;}
._2{margin-left:-2.453396px;}
._1{margin-left:-1.240642px;}
._4{width:1.218018px;}
._8{width:12.845765px;}
._b{width:410.153739px;}
._9{width:519.570993px;}
._7{width:674.131422px;}
._d{width:679.957422px;}
._c{width:781.066227px;}
._a{width:930.721101px;}
.fc4{color:transparent;}
.fc3{color:rgb(26,77,125);}
.fc2{color:rgb(1,1,1);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs19{font-size:35.915397px;}
.fs16{font-size:36.790197px;}
.fs11{font-size:49.347256px;}
.fs17{font-size:53.999961px;}
.fsf{font-size:53.999965px;}
.fs4{font-size:53.999998px;}
.fs2{font-size:59.984997px;}
.fs5{font-size:69.299995px;}
.fs18{font-size:71.190328px;}
.fs7{font-size:71.369996px;}
.fs9{font-size:71.549995px;}
.fsb{font-size:71.999997px;}
.fsa{font-size:77.984997px;}
.fs15{font-size:79.957361px;}
.fsd{font-size:83.969997px;}
.fsc{font-size:101.969996px;}
.fs3{font-size:119.969995px;}
.fs6{font-size:131.984995px;}
.fs14{font-size:140.576813px;}
.fs8{font-size:155.519998px;}
.fs1{font-size:155.969994px;}
.fs10{font-size:161.706762px;}
.fs12{font-size:169.775648px;}
.fse{font-size:171.794668px;}
.fs13{font-size:182.196523px;}
.fs0{font-size:197.577592px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.000008px;}
.y63{bottom:2.645446px;}
.y6c{bottom:2.721622px;}
.y54{bottom:3.170057px;}
.y59{bottom:3.443574px;}
.y4f{bottom:3.545703px;}
.y5e{bottom:3.571718px;}
.y69{bottom:3.574745px;}
.y60{bottom:7.957170px;}
.y51{bottom:9.351827px;}
.y4c{bottom:9.757992px;}
.y56{bottom:9.877668px;}
.y5b{bottom:10.526978px;}
.y2{bottom:11.594793px;}
.y25{bottom:15.749999px;}
.y4a{bottom:16.874999px;}
.y10{bottom:17.121635px;}
.y6b{bottom:17.501621px;}
.y62{bottom:18.741157px;}
.y53{bottom:19.943034px;}
.y58{bottom:21.443562px;}
.y4e{bottom:21.545691px;}
.y5d{bottom:21.571707px;}
.y68{bottom:21.574732px;}
.y40{bottom:25.874999px;}
.y3c{bottom:26.999999px;}
.yf{bottom:37.371634px;}
.y3e{bottom:38.249998px;}
.y42{bottom:39.374998px;}
.y67{bottom:39.574719px;}
.y24{bottom:40.499998px;}
.y3f{bottom:50.624998px;}
.y43{bottom:51.749998px;}
.y66{bottom:57.574706px;}
.ye{bottom:57.621634px;}
.y23{bottom:65.249997px;}
.y65{bottom:75.574693px;}
.y9{bottom:84.996896px;}
.y22{bottom:89.999996px;}
.y8{bottom:105.246896px;}
.y21{bottom:114.749995px;}
.y7{bottom:125.496895px;}
.y20{bottom:139.499994px;}
.y6{bottom:150.751398px;}
.y1f{bottom:164.249993px;}
.y1e{bottom:188.999992px;}
.yd{bottom:193.250908px;}
.yc{bottom:213.500907px;}
.y1d{bottom:213.749991px;}
.yb{bottom:233.750906px;}
.y27{bottom:238.499990px;}
.ya{bottom:258.501085px;}
.y19{bottom:297.112128px;}
.y18{bottom:318.487127px;}
.y17{bottom:339.862126px;}
.y16{bottom:361.237125px;}
.y15{bottom:382.612124px;}
.y14{bottom:403.987123px;}
.y13{bottom:425.362122px;}
.y12{bottom:446.737121px;}
.y11{bottom:468.112120px;}
.y1b{bottom:489.832360px;}
.y4d{bottom:547.739985px;}
.y5c{bottom:548.819985px;}
.y57{bottom:549.539985px;}
.y52{bottom:551.699985px;}
.y64{bottom:552.419985px;}
.y5a{bottom:593.099983px;}
.y4b{bottom:596.339983px;}
.y55{bottom:596.699983px;}
.y50{bottom:599.579983px;}
.y5f{bottom:603.539983px;}
.y61{bottom:661.499980px;}
.y6a{bottom:664.739980px;}
.y48{bottom:719.375414px;}
.y47{bottom:809.375410px;}
.y46{bottom:899.375406px;}
.y45{bottom:989.375402px;}
.y44{bottom:1079.870399px;}
.y41{bottom:1170.680395px;}
.y3d{bottom:1261.805391px;}
.y3b{bottom:1351.805387px;}
.y49{bottom:1430.157872px;}
.y38{bottom:1529.923544px;}
.y37{bottom:1544.548544px;}
.y36{bottom:1593.823650px;}
.y35{bottom:1611.014513px;}
.y34{bottom:1675.230230px;}
.y33{bottom:1725.946020px;}
.y32{bottom:1750.696019px;}
.y31{bottom:1806.878949px;}
.y30{bottom:1859.686879px;}
.y2e{bottom:1860.811878px;}
.y2f{bottom:1884.436877px;}
.y2d{bottom:1885.561877px;}
.y2c{bottom:1939.971555px;}
.y3a{bottom:2007.517848px;}
.y39{bottom:2034.517847px;}
.y26{bottom:2099.927073px;}
.y1c{bottom:2127.769022px;}
.y2b{bottom:2384.729987px;}
.y29{bottom:2385.013084px;}
.y2a{bottom:2416.229986px;}
.y28{bottom:2416.513083px;}
.y1a{bottom:2492.441108px;}
.y70{bottom:2527.169046px;}
.y6f{bottom:2551.919045px;}
.y6e{bottom:2576.669044px;}
.y6d{bottom:2601.419043px;}
.y1{bottom:2663.099897px;}
.y5{bottom:2666.549882px;}
.y4{bottom:2720.549879px;}
.h33{height:29.666118px;}
.h2e{height:30.388703px;}
.h23{height:31.679999px;}
.h27{height:33.839999px;}
.h1f{height:34.199999px;}
.h2c{height:38.159998px;}
.h24{height:40.760833px;}
.h2a{height:41.039998px;}
.h20{height:44.603971px;}
.h21{height:47.519998px;}
.h25{height:49.679998px;}
.h1d{height:50.039998px;}
.h31{height:50.165964px;}
.h8{height:50.165998px;}
.h30{height:51.299963px;}
.h28{height:53.279998px;}
.h6{height:55.726062px;}
.h2{height:58.679998px;}
.h32{height:58.803211px;}
.h17{height:59.471998px;}
.h9{height:64.379696px;}
.ha{height:65.834996px;}
.h2d{height:66.044780px;}
.hd{height:66.302726px;}
.h10{height:66.469946px;}
.h12{height:66.887997px;}
.h18{height:67.499997px;}
.h11{height:72.448062px;}
.h19{height:78.008127px;}
.h16{height:84.227216px;}
.h1c{height:84.374996px;}
.h1a{height:87.749996px;}
.h2f{height:88.199996px;}
.h1b{height:88.874996px;}
.h14{height:97.124540px;}
.h15{height:107.387996px;}
.h7{height:111.452125px;}
.h13{height:120.256555px;}
.hb{height:122.614060px;}
.hf{height:128.459518px;}
.h2b{height:133.547972px;}
.h5{height:144.896124px;}
.h22{height:153.621424px;}
.h26{height:161.286865px;}
.h3{height:163.199091px;}
.h1e{height:163.204935px;}
.h29{height:173.086697px;}
.hc{height:240.749990px;}
.he{height:265.499989px;}
.h4{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w11{width:37.439998px;}
.wb{width:42.839998px;}
.wd{width:44.999998px;}
.w9{width:45.359998px;}
.wf{width:48.239998px;}
.wc{width:65.879997px;}
.we{width:92.519996px;}
.w12{width:98.279996px;}
.wa{width:106.199996px;}
.w10{width:125.279995px;}
.w1{width:159.839993px;}
.w15{width:172.079993px;}
.w14{width:236.519990px;}
.w5{width:238.499990px;}
.w13{width:283.679988px;}
.w8{width:323.999987px;}
.w6{width:336.374964px;}
.w7{width:359.999985px;}
.w3{width:397.124983px;}
.w4{width:464.624981px;}
.w2{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x23{left:1.058687px;}
.xb{left:7.435547px;}
.x1f{left:9.439453px;}
.x22{left:11.394618px;}
.x30{left:13.558745px;}
.x1c{left:16.874999px;}
.x2a{left:18.907678px;}
.x27{left:20.264027px;}
.x4{left:24.118931px;}
.x5{left:25.524664px;}
.x1d{left:29.042500px;}
.x16{left:30.843214px;}
.x14{left:34.652405px;}
.xa{left:37.775389px;}
.x12{left:39.815229px;}
.x9{left:41.690169px;}
.x13{left:44.174603px;}
.x21{left:47.519998px;}
.x1e{left:59.958982px;}
.x1{left:65.159997px;}
.x15{left:77.753966px;}
.x17{left:80.824215px;}
.x20{left:85.679996px;}
.x19{left:92.496111px;}
.x2e{left:102.940194px;}
.x1b{left:137.953119px;}
.xf{left:145.480687px;}
.x2d{left:163.079993px;}
.x25{left:182.519992px;}
.x10{left:184.064670px;}
.x24{left:191.519992px;}
.x18{left:271.402041px;}
.x26{left:293.759988px;}
.x2{left:335.473361px;}
.x32{left:337.424224px;}
.x29{left:377.999984px;}
.x3{left:393.024140px;}
.x11{left:396.045775px;}
.x28{left:422.999982px;}
.xd{left:456.629526px;}
.xc{left:478.454920px;}
.x2c{left:524.159978px;}
.x2b{left:554.039977px;}
.x1a{left:610.407659px;}
.xe{left:644.733034px;}
.x2f{left:686.879971px;}
.x6{left:703.817728px;}
.x31{left:708.119970px;}
.x7{left:833.948582px;}
.x8{left:851.263034px;}
@media print{
.v2{vertical-align:-4.000000pt;}
.v1{vertical-align:-1.133824pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.876927pt;}
.v5{vertical-align:35.999998pt;}
.v3{vertical-align:47.438718pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-110.819076pt;}
.ws3{word-spacing:-24.871839pt;}
.ws6{word-spacing:-15.823679pt;}
.ws5{word-spacing:-14.751999pt;}
.ws4{word-spacing:-14.622919pt;}
.ws7{word-spacing:-13.567999pt;}
.ws1{word-spacing:-12.290259pt;}
.ws2{word-spacing:-11.064000pt;}
.ws8{word-spacing:-11.063993pt;}
.ws9{word-spacing:-10.110704pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-12.660379pt;}
._6{margin-left:-5.563371pt;}
._5{margin-left:-4.223564pt;}
._3{margin-left:-3.240984pt;}
._2{margin-left:-2.180796pt;}
._1{margin-left:-1.102793pt;}
._4{width:1.082683pt;}
._8{width:11.418458pt;}
._b{width:364.581101pt;}
._9{width:461.840883pt;}
._7{width:599.227931pt;}
._d{width:604.406597pt;}
._c{width:694.281091pt;}
._a{width:827.307645pt;}
.fs19{font-size:31.924798pt;}
.fs16{font-size:32.702397pt;}
.fs11{font-size:43.864227pt;}
.fs17{font-size:47.999966pt;}
.fsf{font-size:47.999969pt;}
.fs4{font-size:47.999998pt;}
.fs2{font-size:53.319997pt;}
.fs5{font-size:61.599996pt;}
.fs18{font-size:63.280292pt;}
.fs7{font-size:63.439996pt;}
.fs9{font-size:63.599996pt;}
.fsb{font-size:63.999997pt;}
.fsa{font-size:69.319997pt;}
.fs15{font-size:71.073210pt;}
.fsd{font-size:74.639997pt;}
.fsc{font-size:90.639996pt;}
.fs3{font-size:106.639996pt;}
.fs6{font-size:117.319995pt;}
.fs14{font-size:124.957167pt;}
.fs8{font-size:138.239998pt;}
.fs1{font-size:138.639994pt;}
.fs10{font-size:143.739344pt;}
.fs12{font-size:150.911687pt;}
.fse{font-size:152.706372pt;}
.fs13{font-size:161.952465pt;}
.fs0{font-size:175.624526pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.000007pt;}
.y63{bottom:2.351508pt;}
.y6c{bottom:2.419219pt;}
.y54{bottom:2.817829pt;}
.y59{bottom:3.060954pt;}
.y4f{bottom:3.151736pt;}
.y5e{bottom:3.174861pt;}
.y69{bottom:3.177551pt;}
.y60{bottom:7.073040pt;}
.y51{bottom:8.312735pt;}
.y4c{bottom:8.673770pt;}
.y56{bottom:8.780149pt;}
.y5b{bottom:9.357314pt;}
.y2{bottom:10.306483pt;}
.y25{bottom:13.999999pt;}
.y4a{bottom:14.999999pt;}
.y10{bottom:15.219231pt;}
.y6b{bottom:15.556996pt;}
.y62{bottom:16.658806pt;}
.y53{bottom:17.727142pt;}
.y58{bottom:19.060944pt;}
.y4e{bottom:19.151725pt;}
.y5d{bottom:19.174850pt;}
.y68{bottom:19.177540pt;}
.y40{bottom:22.999999pt;}
.y3c{bottom:23.999999pt;}
.yf{bottom:33.219231pt;}
.y3e{bottom:33.999999pt;}
.y42{bottom:34.999999pt;}
.y67{bottom:35.177528pt;}
.y24{bottom:35.999998pt;}
.y3f{bottom:44.999998pt;}
.y43{bottom:45.999998pt;}
.y66{bottom:51.177517pt;}
.ye{bottom:51.219230pt;}
.y23{bottom:57.999998pt;}
.y65{bottom:67.177505pt;}
.y9{bottom:75.552797pt;}
.y22{bottom:79.999997pt;}
.y8{bottom:93.552796pt;}
.y21{bottom:101.999996pt;}
.y7{bottom:111.552795pt;}
.y20{bottom:123.999995pt;}
.y6{bottom:134.001242pt;}
.y1f{bottom:145.999994pt;}
.y1e{bottom:167.999993pt;}
.yd{bottom:171.778585pt;}
.yc{bottom:189.778584pt;}
.y1d{bottom:189.999992pt;}
.yb{bottom:207.778583pt;}
.y27{bottom:211.999991pt;}
.ya{bottom:229.778742pt;}
.y19{bottom:264.099669pt;}
.y18{bottom:283.099668pt;}
.y17{bottom:302.099667pt;}
.y16{bottom:321.099667pt;}
.y15{bottom:340.099666pt;}
.y14{bottom:359.099665pt;}
.y13{bottom:378.099664pt;}
.y12{bottom:397.099663pt;}
.y11{bottom:416.099663pt;}
.y1b{bottom:435.406542pt;}
.y4d{bottom:486.879987pt;}
.y5c{bottom:487.839987pt;}
.y57{bottom:488.479986pt;}
.y52{bottom:490.399986pt;}
.y64{bottom:491.039986pt;}
.y5a{bottom:527.199985pt;}
.y4b{bottom:530.079985pt;}
.y55{bottom:530.399985pt;}
.y50{bottom:532.959985pt;}
.y5f{bottom:536.479984pt;}
.y61{bottom:587.999982pt;}
.y6a{bottom:590.879982pt;}
.y48{bottom:639.444812pt;}
.y47{bottom:719.444809pt;}
.y46{bottom:799.444806pt;}
.y45{bottom:879.444802pt;}
.y44{bottom:959.884799pt;}
.y41{bottom:1040.604795pt;}
.y3d{bottom:1121.604792pt;}
.y3b{bottom:1201.604789pt;}
.y49{bottom:1271.251442pt;}
.y38{bottom:1359.932039pt;}
.y37{bottom:1372.932039pt;}
.y36{bottom:1416.732133pt;}
.y35{bottom:1432.012900pt;}
.y34{bottom:1489.093538pt;}
.y33{bottom:1534.174240pt;}
.y32{bottom:1556.174239pt;}
.y31{bottom:1606.114621pt;}
.y30{bottom:1653.055003pt;}
.y2e{bottom:1654.055003pt;}
.y2f{bottom:1675.055002pt;}
.y2d{bottom:1676.055002pt;}
.y2c{bottom:1724.419160pt;}
.y3a{bottom:1784.460310pt;}
.y39{bottom:1808.460309pt;}
.y26{bottom:1866.601843pt;}
.y1c{bottom:1891.350242pt;}
.y2b{bottom:2119.759988pt;}
.y29{bottom:2120.011630pt;}
.y2a{bottom:2147.759987pt;}
.y28{bottom:2148.011629pt;}
.y1a{bottom:2215.503207pt;}
.y70{bottom:2246.372486pt;}
.y6f{bottom:2268.372485pt;}
.y6e{bottom:2290.372484pt;}
.y6d{bottom:2312.372483pt;}
.y1{bottom:2367.199908pt;}
.y5{bottom:2370.266561pt;}
.y4{bottom:2418.266559pt;}
.h33{height:26.369883pt;}
.h2e{height:27.012180pt;}
.h23{height:28.159999pt;}
.h27{height:30.079999pt;}
.h1f{height:30.399999pt;}
.h2c{height:33.919999pt;}
.h24{height:36.231852pt;}
.h2a{height:36.479998pt;}
.h20{height:39.647974pt;}
.h21{height:42.239998pt;}
.h25{height:44.159998pt;}
.h1d{height:44.479998pt;}
.h31{height:44.591968pt;}
.h8{height:44.591998pt;}
.h30{height:45.599967pt;}
.h28{height:47.359998pt;}
.h6{height:49.534278pt;}
.h2{height:52.159998pt;}
.h32{height:52.269521pt;}
.h17{height:52.863998pt;}
.h9{height:57.226396pt;}
.ha{height:58.519996pt;}
.h2d{height:58.706471pt;}
.hd{height:58.935756pt;}
.h10{height:59.084396pt;}
.h12{height:59.455998pt;}
.h18{height:59.999997pt;}
.h11{height:64.398277pt;}
.h19{height:69.340557pt;}
.h16{height:74.868637pt;}
.h1c{height:74.999997pt;}
.h1a{height:77.999997pt;}
.h2f{height:78.399997pt;}
.h1b{height:78.999997pt;}
.h14{height:86.332924pt;}
.h15{height:95.455996pt;}
.h7{height:99.068556pt;}
.h13{height:106.894716pt;}
.hb{height:108.990275pt;}
.hf{height:114.186239pt;}
.h2b{height:118.709309pt;}
.h5{height:128.796555pt;}
.h22{height:136.552376pt;}
.h26{height:143.366103pt;}
.h3{height:145.065859pt;}
.h1e{height:145.071053pt;}
.h29{height:153.854842pt;}
.hc{height:213.999991pt;}
.he{height:235.999990pt;}
.h4{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w11{width:33.279999pt;}
.wb{width:38.079998pt;}
.wd{width:39.999998pt;}
.w9{width:40.319998pt;}
.wf{width:42.879998pt;}
.wc{width:58.559998pt;}
.we{width:82.239997pt;}
.w12{width:87.359996pt;}
.wa{width:94.399996pt;}
.w10{width:111.359995pt;}
.w1{width:142.079994pt;}
.w15{width:152.959994pt;}
.w14{width:210.239991pt;}
.w5{width:211.999991pt;}
.w13{width:252.159989pt;}
.w8{width:287.999988pt;}
.w6{width:298.999968pt;}
.w7{width:319.999987pt;}
.w3{width:352.999985pt;}
.w4{width:412.999983pt;}
.w2{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x23{left:0.941055pt;}
.xb{left:6.609375pt;}
.x1f{left:8.390625pt;}
.x22{left:10.128550pt;}
.x30{left:12.052218pt;}
.x1c{left:14.999999pt;}
.x2a{left:16.806825pt;}
.x27{left:18.012469pt;}
.x4{left:21.439049pt;}
.x5{left:22.688590pt;}
.x1d{left:25.815556pt;}
.x16{left:27.416190pt;}
.x14{left:30.802138pt;}
.xa{left:33.578124pt;}
.x12{left:35.391314pt;}
.x9{left:37.057928pt;}
.x13{left:39.266314pt;}
.x21{left:42.239998pt;}
.x1e{left:53.296873pt;}
.x1{left:57.919998pt;}
.x15{left:69.114636pt;}
.x17{left:71.843747pt;}
.x20{left:76.159997pt;}
.x19{left:82.218766pt;}
.x2e{left:91.502395pt;}
.x1b{left:122.624995pt;}
.xf{left:129.316167pt;}
.x2d{left:144.959994pt;}
.x25{left:162.239993pt;}
.x10{left:163.613040pt;}
.x24{left:170.239993pt;}
.x18{left:241.246259pt;}
.x26{left:261.119989pt;}
.x2{left:298.198543pt;}
.x32{left:299.932644pt;}
.x29{left:335.999986pt;}
.x3{left:349.354791pt;}
.x11{left:352.040689pt;}
.x28{left:375.999984pt;}
.xd{left:405.892912pt;}
.xc{left:425.293262pt;}
.x2c{left:465.919981pt;}
.x2b{left:492.479979pt;}
.x1a{left:542.584585pt;}
.xe{left:573.096030pt;}
.x2f{left:610.559975pt;}
.x6{left:625.615758pt;}
.x31{left:629.439974pt;}
.x7{left:741.287628pt;}
.x8{left:756.678252pt;}
}




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