
    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_dc60dbe8b1cf601c411b569a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_20d624d703dd64fcbf2e2eae.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d1fbfce3c2b2a189e74aa986.woff')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_ce25275f7ebb865ee265edd4.woff')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_5aaf4ec1f8eff0bdd32c7d4f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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_aad60a208c6094ab662dc4c5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.705000;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_f54d6168ec31761a9ba38c56.woff')format("woff");}.ff7{font-family:ff7;line-height:1.710000;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_60f426788528f037a3ab60b6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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_a1894a9555db5a4f01a5ab79.woff')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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_bad0a898e8e2049675ebda72.woff')format("woff");}.ffa{font-family:ffa;line-height:0.898000;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_6c07821f277ddd23d645a9a6.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2f71ba27072c2bfa654055f0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.518000;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);}
.ma{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);}
.m5{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m8{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,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);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,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);}
.m4{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);}
.v1{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:16.542000px;}
.va{vertical-align:18.912000px;}
.v8{vertical-align:22.542000px;}
.v5{vertical-align:27.030000px;}
.v7{vertical-align:34.152000px;}
.v9{vertical-align:43.206000px;}
.v3{vertical-align:44.280000px;}
.v4{vertical-align:63.192000px;}
.vc{vertical-align:71.928000px;}
.vd{vertical-align:101.148000px;}
.v2{vertical-align:106.626000px;}
.vb{vertical-align:133.992000px;}
.ls5{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.002682px;}
.ls8{letter-spacing:0.013550px;}
.ls19{letter-spacing:2.479909px;}
.ls1b{letter-spacing:2.483976px;}
.ls21{letter-spacing:2.984915px;}
.ls16{letter-spacing:2.986053px;}
.ls25{letter-spacing:2.991072px;}
.ls26{letter-spacing:2.991537px;}
.ls24{letter-spacing:5.134864px;}
.ls14{letter-spacing:5.350571px;}
.ls1a{letter-spacing:5.743488px;}
.lsc{letter-spacing:7.175400px;}
.ls17{letter-spacing:7.951488px;}
.ls3{letter-spacing:9.922750px;}
.ls2{letter-spacing:9.982525px;}
.ls18{letter-spacing:10.930918px;}
.lsf{letter-spacing:12.734000px;}
.ls22{letter-spacing:13.257242px;}
.ls7{letter-spacing:14.530921px;}
.ls29{letter-spacing:16.232741px;}
.ls1{letter-spacing:16.557841px;}
.ls0{letter-spacing:16.617617px;}
.lsb{letter-spacing:18.179412px;}
.ls6{letter-spacing:18.196379px;}
.ls1f{letter-spacing:21.072103px;}
.lsa{letter-spacing:21.172834px;}
.ls11{letter-spacing:21.176367px;}
.ls1d{letter-spacing:21.927291px;}
.ls13{letter-spacing:25.355412px;}
.ls4{letter-spacing:32.727300px;}
.ls20{letter-spacing:39.995424px;}
.lsd{letter-spacing:45.661048px;}
.ls1e{letter-spacing:56.454394px;}
.ls12{letter-spacing:78.041412px;}
.ls9{letter-spacing:141.840118px;}
.ls28{letter-spacing:540.196814px;}
.ls27{letter-spacing:729.360608px;}
.lse{letter-spacing:819.098864px;}
.ls15{letter-spacing:836.247970px;}
.ls1c{letter-spacing:960.873528px;}
.ls10{letter-spacing:1031.237223px;}
.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;}
}
.ws8{word-spacing:-59.775600px;}
.ws17{word-spacing:-42.637126px;}
.ws1a{word-spacing:-33.211407px;}
.ws30{word-spacing:-31.706208px;}
.ws10{word-spacing:-26.899125px;}
.ws14{word-spacing:-20.906199px;}
.ws21{word-spacing:-18.183288px;}
.ws19{word-spacing:-12.555034px;}
.ws18{word-spacing:-8.913034px;}
.ws1b{word-spacing:-5.277034px;}
.ws20{word-spacing:-3.652367px;}
.ws23{word-spacing:-3.063275px;}
.ws40{word-spacing:-0.903273px;}
.ws37{word-spacing:-0.510546px;}
.ws33{word-spacing:-0.379637px;}
.ws31{word-spacing:-0.052364px;}
.ws3b{word-spacing:-0.047821px;}
.ws13{word-spacing:0.000000px;}
.ws7{word-spacing:0.011955px;}
.ws27{word-spacing:0.013091px;}
.ws3c{word-spacing:0.340364px;}
.wsa{word-spacing:0.609711px;}
.ws3{word-spacing:0.890183px;}
.ws36{word-spacing:2.107638px;}
.ws24{word-spacing:2.565820px;}
.wsd{word-spacing:2.642082px;}
.ws25{word-spacing:3.220366px;}
.wsb{word-spacing:3.299613px;}
.ws26{word-spacing:3.351276px;}
.ws5{word-spacing:3.613094px;}
.ws16{word-spacing:3.678549px;}
.wsc{word-spacing:3.777818px;}
.wsf{word-spacing:3.801728px;}
.ws1d{word-spacing:4.005822px;}
.ws35{word-spacing:4.071276px;}
.ws28{word-spacing:4.136731px;}
.ws2{word-spacing:4.162913px;}
.ws1f{word-spacing:4.398549px;}
.ws15{word-spacing:4.725822px;}
.ws3e{word-spacing:5.249459px;}
.ws11{word-spacing:5.379825px;}
.ws41{word-spacing:5.391759px;}
.ws32{word-spacing:5.511277px;}
.ws12{word-spacing:5.773096px;}
.ws0{word-spacing:6.455775px;}
.wse{word-spacing:6.611181px;}
.ws2e{word-spacing:7.409461px;}
.ws2b{word-spacing:7.998552px;}
.ws4{word-spacing:8.221098px;}
.ws2f{word-spacing:8.784007px;}
.ws3d{word-spacing:8.849462px;}
.ws6{word-spacing:9.934705px;}
.ws3f{word-spacing:11.991283px;}
.ws9{word-spacing:12.086626px;}
.ws2a{word-spacing:12.711283px;}
.ws38{word-spacing:14.609467px;}
.ws2d{word-spacing:21.120673px;}
.ws3a{word-spacing:21.125527px;}
.ws29{word-spacing:21.744018px;}
.ws1{word-spacing:23.384371px;}
.ws1e{word-spacing:23.904020px;}
.ws22{word-spacing:24.756010px;}
.ws1c{word-spacing:33.002209px;}
.ws39{word-spacing:56.434956px;}
.ws34{word-spacing:62.391325px;}
.ws2c{word-spacing:99.202992px;}
._1e{margin-left:-7.023914px;}
._6{margin-left:-5.879809px;}
._24{margin-left:-4.717942px;}
._0{margin-left:-3.202064px;}
._3{margin-left:-2.008474px;}
._4{width:1.767274px;}
._2{width:3.202064px;}
._19{width:6.095353px;}
._5{width:19.905275px;}
._22{width:21.861836px;}
._15{width:22.909110px;}
._8{width:26.425009px;}
._25{width:29.617596px;}
._7{width:30.963761px;}
._c{width:33.447301px;}
._20{width:35.672757px;}
._18{width:43.038600px;}
._1f{width:44.815782px;}
._1d{width:48.142861px;}
._1{width:51.542908px;}
._9{width:57.927321px;}
._b{width:60.545505px;}
._21{width:65.454600px;}
._17{width:96.836850px;}
._1c{width:445.025825px;}
._1a{width:597.268018px;}
._23{width:692.836941px;}
._11{width:736.150865px;}
._1b{width:759.076996px;}
._10{width:769.246676px;}
._12{width:909.295303px;}
._d{width:955.968031px;}
._f{width:1010.757833px;}
._13{width:1075.770568px;}
._16{width:1086.991823px;}
._14{width:1192.300375px;}
._e{width:1739.369921px;}
._a{width:2161.429213px;}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y21{bottom:63.168000px;}
.y45{bottom:110.005500px;}
.y44{bottom:130.329000px;}
.y43{bottom:158.868000px;}
.y20{bottom:186.316500px;}
.y42{bottom:192.171000px;}
.y41{bottom:196.215000px;}
.y1f{bottom:206.640000px;}
.y63{bottom:211.614000px;}
.y62{bottom:229.546500px;}
.y40{bottom:234.352500px;}
.y1e{bottom:234.436500px;}
.y1d{bottom:262.231500px;}
.y61{bottom:263.683500px;}
.y3f{bottom:285.525000px;}
.y1c{bottom:291.963000px;}
.y3e{bottom:305.848500px;}
.y60{bottom:326.442000px;}
.y1b{bottom:327.667500px;}
.y3d{bottom:334.387500px;}
.y5f{bottom:346.765500px;}
.y3c{bottom:365.365500px;}
.y3b{bottom:370.516500px;}
.y3a{bottom:370.831500px;}
.y5e{bottom:377.550000px;}
.y1a{bottom:379.227000px;}
.y39{bottom:382.056000px;}
.y5d{bottom:405.346500px;}
.y19{bottom:415.914000px;}
.y38{bottom:427.569000px;}
.y5c{bottom:433.141500px;}
.y18{bottom:452.601000px;}
.y5b{bottom:460.938000px;}
.y37{bottom:478.740000px;}
.y17{bottom:489.288000px;}
.y5a{bottom:493.849500px;}
.y36{bottom:499.063500px;}
.y35{bottom:519.388500px;}
.y16{bottom:525.976500px;}
.y59{bottom:533.739000px;}
.y34{bottom:547.927500px;}
.y15{bottom:562.663500px;}
.y33{bottom:583.684500px;}
.y58{bottom:585.061500px;}
.y14{bottom:599.350500px;}
.y57{bottom:605.385000px;}
.y32{bottom:622.263000px;}
.y56{bottom:625.708500px;}
.y13{bottom:636.039000px;}
.y55{bottom:654.249000px;}
.y12{bottom:672.726000px;}
.y31{bottom:673.434000px;}
.y30{bottom:693.757500px;}
.y54{bottom:697.882500px;}
.y53{bottom:702.018000px;}
.y11{bottom:709.413000px;}
.y2f{bottom:714.081000px;}
.y52{bottom:736.461000px;}
.y2e{bottom:742.621500px;}
.y10{bottom:746.101500px;}
.y2d{bottom:774.336000px;}
.y2c{bottom:785.560500px;}
.y51{bottom:788.977500px;}
.yf{bottom:797.659500px;}
.y50{bottom:809.301000px;}
.ye{bottom:815.592000px;}
.yd{bottom:833.524500px;}
.y2b{bottom:835.408500px;}
.y4f{bottom:837.841500px;}
.yc{bottom:851.457000px;}
.yb{bottom:869.389500px;}
.y4e{bottom:882.373500px;}
.y2a{bottom:885.384000px;}
.ya{bottom:887.323500px;}
.y9{bottom:905.256000px;}
.y29{bottom:905.709000px;}
.y4d{bottom:918.903000px;}
.y28{bottom:926.032500px;}
.y8{bottom:932.529000px;}
.y27{bottom:954.571500px;}
.y7{bottom:968.394000px;}
.y4c{bottom:970.224000px;}
.y26{bottom:990.328500px;}
.y4b{bottom:990.547500px;}
.y6{bottom:995.293500px;}
.y4a{bottom:1010.871000px;}
.y5{bottom:1018.605000px;}
.y25{bottom:1026.856500px;}
.y49{bottom:1039.411500px;}
.y4{bottom:1047.895500px;}
.y48{bottom:1081.819500px;}
.y24{bottom:1085.086500px;}
.y3{bottom:1086.153000px;}
.y47{bottom:1093.044000px;}
.y23{bottom:1105.410000px;}
.y2{bottom:1112.454000px;}
.y1{bottom:1136.902500px;}
.y22{bottom:1138.323000px;}
.y46{bottom:1138.396500px;}
.h7{height:29.127297px;}
.hd{height:33.187496px;}
.h5{height:44.831700px;}
.h4{height:49.090950px;}
.h3{height:49.781453px;}
.hc{height:55.729496px;}
.he{height:60.217496px;}
.h6{height:64.557900px;}
.h10{height:65.272950px;}
.ha{height:65.632950px;}
.hf{height:76.393496px;}
.h2{height:77.469300px;}
.hb{height:91.151494px;}
.h11{height:93.376950px;}
.h9{height:105.115496px;}
.h8{height:109.244184px;}
.h12{height:150.238950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x10{left:110.368500px;}
.xb{left:122.115000px;}
.x1{left:137.439000px;}
.x26{left:142.114500px;}
.xc{left:146.707500px;}
.x9{left:148.909500px;}
.xd{left:163.024500px;}
.x3{left:193.903500px;}
.x2{left:230.733000px;}
.x23{left:262.056000px;}
.xf{left:276.303000px;}
.x7{left:294.768000px;}
.x4{left:296.185500px;}
.x25{left:300.217500px;}
.x24{left:304.501500px;}
.x21{left:309.334500px;}
.x14{left:331.774500px;}
.x5{left:336.241500px;}
.x11{left:344.919000px;}
.x22{left:356.650500px;}
.x6{left:363.582000px;}
.x1d{left:367.218000px;}
.x18{left:379.497000px;}
.x16{left:384.801000px;}
.x15{left:398.293500px;}
.x1e{left:410.881500px;}
.x8{left:413.811000px;}
.x19{left:425.905500px;}
.xe{left:442.366500px;}
.x17{left:472.225500px;}
.x1f{left:499.810500px;}
.x20{left:513.657000px;}
.x1a{left:522.465000px;}
.x1b{left:537.465000px;}
.x1c{left:552.306000px;}
.x13{left:564.013500px;}
.x12{left:565.927500px;}
@media print{
.v1{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.704000pt;}
.va{vertical-align:16.810667pt;}
.v8{vertical-align:20.037333pt;}
.v5{vertical-align:24.026667pt;}
.v7{vertical-align:30.357333pt;}
.v9{vertical-align:38.405333pt;}
.v3{vertical-align:39.360000pt;}
.v4{vertical-align:56.170667pt;}
.vc{vertical-align:63.936000pt;}
.vd{vertical-align:89.909333pt;}
.v2{vertical-align:94.778667pt;}
.vb{vertical-align:119.104000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.002384pt;}
.ls8{letter-spacing:0.012045pt;}
.ls19{letter-spacing:2.204364pt;}
.ls1b{letter-spacing:2.207978pt;}
.ls21{letter-spacing:2.653258pt;}
.ls16{letter-spacing:2.654270pt;}
.ls25{letter-spacing:2.658731pt;}
.ls26{letter-spacing:2.659144pt;}
.ls24{letter-spacing:4.564323pt;}
.ls14{letter-spacing:4.756063pt;}
.ls1a{letter-spacing:5.105323pt;}
.lsc{letter-spacing:6.378133pt;}
.ls17{letter-spacing:7.067989pt;}
.ls3{letter-spacing:8.820222pt;}
.ls2{letter-spacing:8.873356pt;}
.ls18{letter-spacing:9.716372pt;}
.lsf{letter-spacing:11.319111pt;}
.ls22{letter-spacing:11.784215pt;}
.ls7{letter-spacing:12.916374pt;}
.ls29{letter-spacing:14.429103pt;}
.ls1{letter-spacing:14.718081pt;}
.ls0{letter-spacing:14.771215pt;}
.lsb{letter-spacing:16.159477pt;}
.ls6{letter-spacing:16.174559pt;}
.ls1f{letter-spacing:18.730758pt;}
.lsa{letter-spacing:18.820297pt;}
.ls11{letter-spacing:18.823437pt;}
.ls1d{letter-spacing:19.490925pt;}
.ls13{letter-spacing:22.538144pt;}
.ls4{letter-spacing:29.090933pt;}
.ls20{letter-spacing:35.551488pt;}
.lsd{letter-spacing:40.587598pt;}
.ls1e{letter-spacing:50.181683pt;}
.ls12{letter-spacing:69.370144pt;}
.ls9{letter-spacing:126.080105pt;}
.ls28{letter-spacing:480.174946pt;}
.ls27{letter-spacing:648.320540pt;}
.lse{letter-spacing:728.087879pt;}
.ls15{letter-spacing:743.331529pt;}
.ls1c{letter-spacing:854.109803pt;}
.ls10{letter-spacing:916.655309pt;}
.ws8{word-spacing:-53.133867pt;}
.ws17{word-spacing:-37.899668pt;}
.ws1a{word-spacing:-29.521250pt;}
.ws30{word-spacing:-28.183296pt;}
.ws10{word-spacing:-23.910333pt;}
.ws14{word-spacing:-18.583288pt;}
.ws21{word-spacing:-16.162923pt;}
.ws19{word-spacing:-11.160030pt;}
.ws18{word-spacing:-7.922697pt;}
.ws1b{word-spacing:-4.690697pt;}
.ws20{word-spacing:-3.246548pt;}
.ws23{word-spacing:-2.722911pt;}
.ws40{word-spacing:-0.802910pt;}
.ws37{word-spacing:-0.453819pt;}
.ws33{word-spacing:-0.337455pt;}
.ws31{word-spacing:-0.046545pt;}
.ws3b{word-spacing:-0.042507pt;}
.ws13{word-spacing:0.000000pt;}
.ws7{word-spacing:0.010627pt;}
.ws27{word-spacing:0.011636pt;}
.ws3c{word-spacing:0.302546pt;}
.wsa{word-spacing:0.541965pt;}
.ws3{word-spacing:0.791273pt;}
.ws36{word-spacing:1.873456pt;}
.ws24{word-spacing:2.280729pt;}
.wsd{word-spacing:2.348517pt;}
.ws25{word-spacing:2.862548pt;}
.wsb{word-spacing:2.932989pt;}
.ws26{word-spacing:2.978912pt;}
.ws5{word-spacing:3.211639pt;}
.ws16{word-spacing:3.269821pt;}
.wsc{word-spacing:3.358060pt;}
.wsf{word-spacing:3.379314pt;}
.ws1d{word-spacing:3.560730pt;}
.ws35{word-spacing:3.618912pt;}
.ws28{word-spacing:3.677094pt;}
.ws2{word-spacing:3.700367pt;}
.ws1f{word-spacing:3.909821pt;}
.ws15{word-spacing:4.200731pt;}
.ws3e{word-spacing:4.666186pt;}
.ws11{word-spacing:4.782067pt;}
.ws41{word-spacing:4.792675pt;}
.ws32{word-spacing:4.898913pt;}
.ws12{word-spacing:5.131641pt;}
.ws0{word-spacing:5.738467pt;}
.wse{word-spacing:5.876606pt;}
.ws2e{word-spacing:6.586187pt;}
.ws2b{word-spacing:7.109824pt;}
.ws4{word-spacing:7.307642pt;}
.ws2f{word-spacing:7.808007pt;}
.ws3d{word-spacing:7.866188pt;}
.ws6{word-spacing:8.830849pt;}
.ws3f{word-spacing:10.658918pt;}
.ws9{word-spacing:10.743668pt;}
.ws2a{word-spacing:11.298919pt;}
.ws38{word-spacing:12.986193pt;}
.ws2d{word-spacing:18.773931pt;}
.ws3a{word-spacing:18.778247pt;}
.ws29{word-spacing:19.328016pt;}
.ws1{word-spacing:20.786108pt;}
.ws1e{word-spacing:21.248018pt;}
.ws22{word-spacing:22.005342pt;}
.ws1c{word-spacing:29.335297pt;}
.ws39{word-spacing:50.164405pt;}
.ws34{word-spacing:55.458955pt;}
.ws2c{word-spacing:88.180437pt;}
._1e{margin-left:-6.243479pt;}
._6{margin-left:-5.226497pt;}
._24{margin-left:-4.193726pt;}
._0{margin-left:-2.846279pt;}
._3{margin-left:-1.785310pt;}
._4{width:1.570910pt;}
._2{width:2.846279pt;}
._19{width:5.418092pt;}
._5{width:17.693578pt;}
._22{width:19.432743pt;}
._15{width:20.363653pt;}
._8{width:23.488897pt;}
._25{width:26.326752pt;}
._7{width:27.523343pt;}
._c{width:29.730934pt;}
._20{width:31.709117pt;}
._18{width:38.256533pt;}
._1f{width:39.836251pt;}
._1d{width:42.793654pt;}
._1{width:45.815918pt;}
._9{width:51.490952pt;}
._b{width:53.818227pt;}
._21{width:58.181867pt;}
._17{width:86.077200pt;}
._1c{width:395.578511pt;}
._1a{width:530.904905pt;}
._23{width:615.855059pt;}
._11{width:654.356324pt;}
._1b{width:674.735108pt;}
._10{width:683.774823pt;}
._12{width:808.262492pt;}
._d{width:849.749361pt;}
._f{width:898.451407pt;}
._13{width:956.240505pt;}
._16{width:966.214954pt;}
._14{width:1059.822555pt;}
._e{width:1546.106597pt;}
._a{width:1921.270411pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:56.149333pt;}
.y45{bottom:97.782667pt;}
.y44{bottom:115.848000pt;}
.y43{bottom:141.216000pt;}
.y20{bottom:165.614667pt;}
.y42{bottom:170.818667pt;}
.y41{bottom:174.413333pt;}
.y1f{bottom:183.680000pt;}
.y63{bottom:188.101333pt;}
.y62{bottom:204.041333pt;}
.y40{bottom:208.313333pt;}
.y1e{bottom:208.388000pt;}
.y1d{bottom:233.094667pt;}
.y61{bottom:234.385333pt;}
.y3f{bottom:253.800000pt;}
.y1c{bottom:259.522667pt;}
.y3e{bottom:271.865333pt;}
.y60{bottom:290.170667pt;}
.y1b{bottom:291.260000pt;}
.y3d{bottom:297.233333pt;}
.y5f{bottom:308.236000pt;}
.y3c{bottom:324.769333pt;}
.y3b{bottom:329.348000pt;}
.y3a{bottom:329.628000pt;}
.y5e{bottom:335.600000pt;}
.y1a{bottom:337.090667pt;}
.y39{bottom:339.605333pt;}
.y5d{bottom:360.308000pt;}
.y19{bottom:369.701333pt;}
.y38{bottom:380.061333pt;}
.y5c{bottom:385.014667pt;}
.y18{bottom:402.312000pt;}
.y5b{bottom:409.722667pt;}
.y37{bottom:425.546667pt;}
.y17{bottom:434.922667pt;}
.y5a{bottom:438.977333pt;}
.y36{bottom:443.612000pt;}
.y35{bottom:461.678667pt;}
.y16{bottom:467.534667pt;}
.y59{bottom:474.434667pt;}
.y34{bottom:487.046667pt;}
.y15{bottom:500.145333pt;}
.y33{bottom:518.830667pt;}
.y58{bottom:520.054667pt;}
.y14{bottom:532.756000pt;}
.y57{bottom:538.120000pt;}
.y32{bottom:553.122667pt;}
.y56{bottom:556.185333pt;}
.y13{bottom:565.368000pt;}
.y55{bottom:581.554667pt;}
.y12{bottom:597.978667pt;}
.y31{bottom:598.608000pt;}
.y30{bottom:616.673333pt;}
.y54{bottom:620.340000pt;}
.y53{bottom:624.016000pt;}
.y11{bottom:630.589333pt;}
.y2f{bottom:634.738667pt;}
.y52{bottom:654.632000pt;}
.y2e{bottom:660.108000pt;}
.y10{bottom:663.201333pt;}
.y2d{bottom:688.298667pt;}
.y2c{bottom:698.276000pt;}
.y51{bottom:701.313333pt;}
.yf{bottom:709.030667pt;}
.y50{bottom:719.378667pt;}
.ye{bottom:724.970667pt;}
.yd{bottom:740.910667pt;}
.y2b{bottom:742.585333pt;}
.y4f{bottom:744.748000pt;}
.yc{bottom:756.850667pt;}
.yb{bottom:772.790667pt;}
.y4e{bottom:784.332000pt;}
.y2a{bottom:787.008000pt;}
.ya{bottom:788.732000pt;}
.y9{bottom:804.672000pt;}
.y29{bottom:805.074667pt;}
.y4d{bottom:816.802667pt;}
.y28{bottom:823.140000pt;}
.y8{bottom:828.914667pt;}
.y27{bottom:848.508000pt;}
.y7{bottom:860.794667pt;}
.y4c{bottom:862.421333pt;}
.y26{bottom:880.292000pt;}
.y4b{bottom:880.486667pt;}
.y6{bottom:884.705333pt;}
.y4a{bottom:898.552000pt;}
.y5{bottom:905.426667pt;}
.y25{bottom:912.761333pt;}
.y49{bottom:923.921333pt;}
.y4{bottom:931.462667pt;}
.y48{bottom:961.617333pt;}
.y24{bottom:964.521333pt;}
.y3{bottom:965.469333pt;}
.y47{bottom:971.594667pt;}
.y23{bottom:982.586667pt;}
.y2{bottom:988.848000pt;}
.y1{bottom:1010.580000pt;}
.y22{bottom:1011.842667pt;}
.y46{bottom:1011.908000pt;}
.h7{height:25.890931pt;}
.hd{height:29.499997pt;}
.h5{height:39.850400pt;}
.h4{height:43.636400pt;}
.h3{height:44.250180pt;}
.hc{height:49.537330pt;}
.he{height:53.526663pt;}
.h6{height:57.384800pt;}
.h10{height:58.020400pt;}
.ha{height:58.340400pt;}
.hf{height:67.905330pt;}
.h2{height:68.861600pt;}
.hb{height:81.023550pt;}
.h11{height:83.001733pt;}
.h9{height:93.435997pt;}
.h8{height:97.105941pt;}
.h12{height:133.545733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x10{left:98.105333pt;}
.xb{left:108.546667pt;}
.x1{left:122.168000pt;}
.x26{left:126.324000pt;}
.xc{left:130.406667pt;}
.x9{left:132.364000pt;}
.xd{left:144.910667pt;}
.x3{left:172.358667pt;}
.x2{left:205.096000pt;}
.x23{left:232.938667pt;}
.xf{left:245.602667pt;}
.x7{left:262.016000pt;}
.x4{left:263.276000pt;}
.x25{left:266.860000pt;}
.x24{left:270.668000pt;}
.x21{left:274.964000pt;}
.x14{left:294.910667pt;}
.x5{left:298.881333pt;}
.x11{left:306.594667pt;}
.x22{left:317.022667pt;}
.x6{left:323.184000pt;}
.x1d{left:326.416000pt;}
.x18{left:337.330667pt;}
.x16{left:342.045333pt;}
.x15{left:354.038667pt;}
.x1e{left:365.228000pt;}
.x8{left:367.832000pt;}
.x19{left:378.582667pt;}
.xe{left:393.214667pt;}
.x17{left:419.756000pt;}
.x1f{left:444.276000pt;}
.x20{left:456.584000pt;}
.x1a{left:464.413333pt;}
.x1b{left:477.746667pt;}
.x1c{left:490.938667pt;}
.x13{left:501.345333pt;}
.x12{left:503.046667pt;}
}




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