
    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_718e61a25af4c3dbb6b6cf7e.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_25b9b2dd449b25d20500d373.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_106195a8e7010191f53d3f71.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_f9798d6b4afab58de601a24b.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_ba56264ac8be3e76935107e9.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d6896bd045dcb8bccfc79621.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_14a5c3f9e0d14541f793bfe9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.683000;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_7736a98826cc771a49e5cc3f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f38a64b26dfede221ceed6d7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_03a22825b5afd97ea0cb57d9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.877000;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_dbad5335e11c3259a66b8734.woff')format("woff");}.ffb{font-family:ffb;line-height:0.046000;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_b4bb658dca7ccca706243764.woff')format("woff");}.ffc{font-family:ffc;line-height:0.724000;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;}
.m8{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);}
.m9{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,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);}
.m6{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);}
.v8{vertical-align:-10.662000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:18.912000px;}
.v3{vertical-align:22.566000px;}
.v9{vertical-align:23.754000px;}
.v4{vertical-align:27.024000px;}
.v2{vertical-align:29.592000px;}
.v5{vertical-align:44.280000px;}
.v6{vertical-align:68.028000px;}
.va{vertical-align:89.178000px;}
.lsa{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.002158px;}
.ls14{letter-spacing:0.003239px;}
.ls22{letter-spacing:0.023333px;}
.ls12{letter-spacing:2.347578px;}
.lsb{letter-spacing:2.487275px;}
.ls24{letter-spacing:2.982960px;}
.ls10{letter-spacing:2.984915px;}
.ls7{letter-spacing:3.796367px;}
.lse{letter-spacing:4.542957px;}
.ls11{letter-spacing:5.311591px;}
.ls1a{letter-spacing:6.545460px;}
.ls4{letter-spacing:9.922750px;}
.ls3{letter-spacing:9.982525px;}
.ls19{letter-spacing:10.865464px;}
.ls20{letter-spacing:12.496782px;}
.ls2a{letter-spacing:13.025465px;}
.ls1d{letter-spacing:14.530921px;}
.ls1{letter-spacing:16.557841px;}
.ls0{letter-spacing:16.617617px;}
.ls5{letter-spacing:16.737168px;}
.ls8{letter-spacing:18.196379px;}
.lsc{letter-spacing:20.683654px;}
.ls25{letter-spacing:21.168960px;}
.ls1c{letter-spacing:21.171782px;}
.ls2{letter-spacing:21.625295px;}
.ls29{letter-spacing:21.861836px;}
.ls9{letter-spacing:23.498201px;}
.lsd{letter-spacing:25.348285px;}
.ls28{letter-spacing:25.592749px;}
.ls1f{letter-spacing:28.670915px;}
.ls21{letter-spacing:29.319768px;}
.ls6{letter-spacing:32.727300px;}
.ls26{letter-spacing:35.487768px;}
.ls18{letter-spacing:37.167768px;}
.lsf{letter-spacing:39.925422px;}
.ls15{letter-spacing:42.905412px;}
.ls17{letter-spacing:54.523682px;}
.ls27{letter-spacing:54.589136px;}
.ls16{letter-spacing:61.713748px;}
.ls13{letter-spacing:75.614915px;}
.ls1b{letter-spacing:820.669775px;}
.ls1e{letter-spacing:1077.317261px;}
.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;}
}
.ws26{word-spacing:-79.985521px;}
.ws18{word-spacing:-47.258221px;}
.ws17{word-spacing:-42.637126px;}
.ws8{word-spacing:-38.937826px;}
.ws33{word-spacing:-33.211407px;}
.ws20{word-spacing:-31.771663px;}
.ws21{word-spacing:-24.440748px;}
.ws3d{word-spacing:-20.906199px;}
.ws2c{word-spacing:-18.183288px;}
.ws16{word-spacing:-14.111859px;}
.ws32{word-spacing:-9.286630px;}
.ws31{word-spacing:-5.644630px;}
.ws2d{word-spacing:-3.652367px;}
.ws1d{word-spacing:-1.361456px;}
.ws3c{word-spacing:-0.445091px;}
.ws11{word-spacing:-0.086077px;}
.ws15{word-spacing:0.000000px;}
.ws2e{word-spacing:0.013091px;}
.ws4{word-spacing:0.890183px;}
.ws22{word-spacing:2.434911px;}
.ws3e{word-spacing:2.696730px;}
.wsc{word-spacing:3.060511px;}
.wsd{word-spacing:3.180062px;}
.ws9{word-spacing:3.299613px;}
.wsb{word-spacing:3.419164px;}
.ws41{word-spacing:3.478940px;}
.ws27{word-spacing:3.482185px;}
.ws6{word-spacing:3.613094px;}
.wse{word-spacing:3.622401px;}
.ws1c{word-spacing:3.678549px;}
.ws25{word-spacing:3.744003px;}
.ws10{word-spacing:3.801728px;}
.ws3b{word-spacing:3.809458px;}
.wsf{word-spacing:3.861504px;}
.ws24{word-spacing:4.005822px;}
.ws3{word-spacing:4.162913px;}
.ws12{word-spacing:4.228367px;}
.ws19{word-spacing:4.398549px;}
.ws40{word-spacing:4.725822px;}
.ws1e{word-spacing:5.642187px;}
.ws29{word-spacing:6.689460px;}
.ws1b{word-spacing:7.053714px;}
.ws14{word-spacing:8.194916px;}
.ws5{word-spacing:8.221098px;}
.ws28{word-spacing:8.260371px;}
.wsa{word-spacing:8.380539px;}
.ws3f{word-spacing:9.569463px;}
.ws7{word-spacing:9.934705px;}
.ws37{word-spacing:10.485827px;}
.ws36{word-spacing:11.140373px;}
.ws1f{word-spacing:15.394922px;}
.ws2b{word-spacing:15.787650px;}
.ws38{word-spacing:16.769469px;}
.ws2{word-spacing:23.312640px;}
.ws39{word-spacing:24.558566px;}
.ws3a{word-spacing:24.951294px;}
.ws2a{word-spacing:26.849477px;}
.ws1a{word-spacing:28.485842px;}
.ws23{word-spacing:31.431299px;}
.ws13{word-spacing:32.192873px;}
.ws34{word-spacing:33.748392px;}
.ws0{word-spacing:38.528065px;}
.ws1{word-spacing:38.631358px;}
.ws35{word-spacing:39.220396px;}
.ws2f{word-spacing:64.813145px;}
.ws30{word-spacing:97.409536px;}
._1f{margin-left:-29.518751px;}
._1e{margin-left:-26.378204px;}
._0{margin-left:-9.709486px;}
._20{margin-left:-7.373782px;}
._e{margin-left:-6.218187px;}
._a{margin-left:-4.779951px;}
._1{margin-left:-3.098772px;}
._3{margin-left:-2.008474px;}
._6{margin-left:-1.004203px;}
._4{width:1.767274px;}
._1b{width:3.098772px;}
._29{width:5.729271px;}
._5{width:16.611267px;}
._2a{width:21.772180px;}
._17{width:22.909110px;}
._7{width:23.981998px;}
._9{width:26.958796px;}
._1c{width:29.061842px;}
._2d{width:30.370934px;}
._21{width:32.387296px;}
._d{width:33.447301px;}
._26{width:36.654576px;}
._8{width:42.321125px;}
._2{width:51.646200px;}
._b{width:60.545505px;}
._27{width:76.320064px;}
._1d{width:94.647352px;}
._1a{width:96.836850px;}
._25{width:196.997727px;}
._2c{width:457.985836px;}
._24{width:526.254984px;}
._2b{width:619.462334px;}
._23{width:786.109746px;}
._14{width:810.534598px;}
._22{width:838.015244px;}
._13{width:866.040099px;}
._f{width:934.605614px;}
._28{width:943.593514px;}
._15{width:1041.343235px;}
._12{width:1067.040889px;}
._16{width:1118.882698px;}
._18{width:1172.074903px;}
._10{width:1189.713096px;}
._11{width:1246.104056px;}
._19{width:1407.079323px;}
._c{width:1893.646414px;}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y23{bottom:63.168000px;}
.y61{bottom:125.296500px;}
.y22{bottom:126.205500px;}
.y60{bottom:153.093000px;}
.y21{bottom:154.002000px;}
.y41{bottom:175.008000px;}
.y5f{bottom:180.888000px;}
.y20{bottom:181.797000px;}
.y40{bottom:195.331500px;}
.y5e{bottom:208.684500px;}
.y1f{bottom:209.593500px;}
.y3f{bottom:215.655000px;}
.y1e{bottom:237.388500px;}
.y5d{bottom:241.596000px;}
.y3e{bottom:244.195500px;}
.y1d{bottom:268.029000px;}
.y5c{bottom:279.991500px;}
.y3d{bottom:304.062000px;}
.y1c{bottom:306.424500px;}
.y5b{bottom:330.885000px;}
.y3c{bottom:340.590000px;}
.y1b{bottom:356.934000px;}
.y5a{bottom:358.680000px;}
.y59{bottom:386.476500px;}
.y3b{bottom:391.911000px;}
.y1a{bottom:393.621000px;}
.y3a{bottom:412.234500px;}
.y58{bottom:414.271500px;}
.y19{bottom:430.308000px;}
.y39{bottom:432.559500px;}
.y57{bottom:450.801000px;}
.y38{bottom:461.098500px;}
.y18{bottom:466.996500px;}
.y56{bottom:502.653000px;}
.y17{bottom:503.683500px;}
.y37{bottom:509.740500px;}
.y55{bottom:522.976500px;}
.y36{bottom:532.035000px;}
.y16{bottom:540.370500px;}
.y54{bottom:543.300000px;}
.y35{bottom:565.422000px;}
.y53{bottom:571.839000px;}
.y15{bottom:577.059000px;}
.y34{bottom:601.950000px;}
.y14{bottom:613.746000px;}
.y52{bottom:616.248000px;}
.y51{bottom:638.542500px;}
.y13{bottom:650.433000px;}
.y33{bottom:653.272500px;}
.y50{bottom:671.790000px;}
.y32{bottom:673.596000px;}
.y12{bottom:687.120000px;}
.y31{bottom:693.919500px;}
.y4f{bottom:722.446500px;}
.y30{bottom:722.460000px;}
.y11{bottom:723.808500px;}
.y4e{bottom:742.770000px;}
.y6f{bottom:748.908000px;}
.y10{bottom:760.495500px;}
.y4d{bottom:763.093500px;}
.y6e{bottom:766.840500px;}
.y2f{bottom:771.100500px;}
.y2e{bottom:782.325000px;}
.y4c{bottom:791.634000px;}
.y6d{bottom:800.977500px;}
.yf{bottom:811.005000px;}
.y2d{bottom:826.461000px;}
.ye{bottom:828.937500px;}
.yd{bottom:846.870000px;}
.y4b{bottom:847.266000px;}
.y6c{bottom:852.535500px;}
.yc{bottom:864.804000px;}
.y6b{bottom:872.859000px;}
.y2c{bottom:877.782000px;}
.y4a{bottom:879.795000px;}
.yb{bottom:882.736500px;}
.y6a{bottom:893.184000px;}
.y2b{bottom:898.105500px;}
.ya{bottom:900.669000px;}
.y49{bottom:916.323000px;}
.y9{bottom:918.601500px;}
.y69{bottom:920.979000px;}
.y2a{bottom:926.646000px;}
.y8{bottom:939.201000px;}
.y68{bottom:941.302500px;}
.y67{bottom:961.626000px;}
.y48{bottom:966.979500px;}
.y7{bottom:968.394000px;}
.y29{bottom:975.286500px;}
.y28{bottom:986.512500px;}
.y47{bottom:987.304500px;}
.y66{bottom:989.422500px;}
.y6{bottom:995.293500px;}
.y46{bottom:1007.628000px;}
.y65{bottom:1009.746000px;}
.y5{bottom:1018.605000px;}
.y64{bottom:1030.069500px;}
.y27{bottom:1033.108500px;}
.y45{bottom:1036.167000px;}
.y4{bottom:1047.895500px;}
.y63{bottom:1066.599000px;}
.y44{bottom:1080.576000px;}
.y3{bottom:1086.153000px;}
.y26{bottom:1095.009000px;}
.y25{bottom:1100.650500px;}
.y43{bottom:1102.870500px;}
.y2{bottom:1112.454000px;}
.y24{bottom:1128.447000px;}
.y62{bottom:1129.356000px;}
.y1{bottom:1136.902500px;}
.y42{bottom:1138.396500px;}
.h5{height:44.831700px;}
.h4{height:49.090950px;}
.h3{height:51.216077px;}
.hd{height:57.897908px;}
.h7{height:63.735908px;}
.h6{height:64.557900px;}
.h8{height:71.656950px;}
.h2{height:77.469300px;}
.hb{height:93.370950px;}
.hc{height:93.988950px;}
.ha{height:93.994950px;}
.h9{height:102.171908px;}
.he{height:138.268950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.xd{left:122.115000px;}
.x1d{left:132.592500px;}
.x1e{left:142.114500px;}
.xe{left:146.707500px;}
.x8{left:148.909500px;}
.x13{left:176.164500px;}
.x1b{left:243.270000px;}
.x1c{left:245.803500px;}
.x14{left:251.499000px;}
.x2{left:255.918000px;}
.x6{left:275.773500px;}
.x1a{left:281.863500px;}
.x3{left:296.185500px;}
.x16{left:321.144000px;}
.x15{left:333.958500px;}
.x4{left:336.241500px;}
.x10{left:349.702500px;}
.x5{left:363.582000px;}
.x18{left:364.827000px;}
.x17{left:396.312000px;}
.x11{left:397.570500px;}
.x7{left:413.811000px;}
.x19{left:436.599000px;}
.xf{left:442.366500px;}
.x12{left:590.631000px;}
.x9{left:682.185000px;}
.xa{left:711.519000px;}
.xb{left:718.977000px;}
.xc{left:723.127500px;}
@media print{
.v8{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:16.810667pt;}
.v3{vertical-align:20.058667pt;}
.v9{vertical-align:21.114667pt;}
.v4{vertical-align:24.021333pt;}
.v2{vertical-align:26.304000pt;}
.v5{vertical-align:39.360000pt;}
.v6{vertical-align:60.469333pt;}
.va{vertical-align:79.269333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.001918pt;}
.ls14{letter-spacing:0.002879pt;}
.ls22{letter-spacing:0.020740pt;}
.ls12{letter-spacing:2.086736pt;}
.lsb{letter-spacing:2.210911pt;}
.ls24{letter-spacing:2.651520pt;}
.ls10{letter-spacing:2.653258pt;}
.ls7{letter-spacing:3.374548pt;}
.lse{letter-spacing:4.038184pt;}
.ls11{letter-spacing:4.721414pt;}
.ls1a{letter-spacing:5.818187pt;}
.ls4{letter-spacing:8.820222pt;}
.ls3{letter-spacing:8.873356pt;}
.ls19{letter-spacing:9.658190pt;}
.ls20{letter-spacing:11.108251pt;}
.ls2a{letter-spacing:11.578191pt;}
.ls1d{letter-spacing:12.916374pt;}
.ls1{letter-spacing:14.718081pt;}
.ls0{letter-spacing:14.771215pt;}
.ls5{letter-spacing:14.877483pt;}
.ls8{letter-spacing:16.174559pt;}
.lsc{letter-spacing:18.385470pt;}
.ls25{letter-spacing:18.816853pt;}
.ls1c{letter-spacing:18.819362pt;}
.ls2{letter-spacing:19.222484pt;}
.ls29{letter-spacing:19.432743pt;}
.ls9{letter-spacing:20.887290pt;}
.lsd{letter-spacing:22.531809pt;}
.ls28{letter-spacing:22.749110pt;}
.ls1f{letter-spacing:25.485258pt;}
.ls21{letter-spacing:26.062016pt;}
.ls6{letter-spacing:29.090933pt;}
.ls26{letter-spacing:31.544683pt;}
.ls18{letter-spacing:33.038016pt;}
.lsf{letter-spacing:35.489264pt;}
.ls15{letter-spacing:38.138144pt;}
.ls17{letter-spacing:48.465495pt;}
.ls27{letter-spacing:48.523677pt;}
.ls16{letter-spacing:54.856665pt;}
.ls13{letter-spacing:67.213258pt;}
.ls1b{letter-spacing:729.484244pt;}
.ls1e{letter-spacing:957.615343pt;}
.ws26{word-spacing:-71.098241pt;}
.ws18{word-spacing:-42.007308pt;}
.ws17{word-spacing:-37.899668pt;}
.ws8{word-spacing:-34.611401pt;}
.ws33{word-spacing:-29.521250pt;}
.ws20{word-spacing:-28.241478pt;}
.ws21{word-spacing:-21.725109pt;}
.ws3d{word-spacing:-18.583288pt;}
.ws2c{word-spacing:-16.162923pt;}
.ws16{word-spacing:-12.543875pt;}
.ws32{word-spacing:-8.254782pt;}
.ws31{word-spacing:-5.017448pt;}
.ws2d{word-spacing:-3.246548pt;}
.ws1d{word-spacing:-1.210183pt;}
.ws3c{word-spacing:-0.395637pt;}
.ws11{word-spacing:-0.076513pt;}
.ws15{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.011636pt;}
.ws4{word-spacing:0.791273pt;}
.ws22{word-spacing:2.164365pt;}
.ws3e{word-spacing:2.397093pt;}
.wsc{word-spacing:2.720454pt;}
.wsd{word-spacing:2.826722pt;}
.ws9{word-spacing:2.932989pt;}
.wsb{word-spacing:3.039257pt;}
.ws41{word-spacing:3.092391pt;}
.ws27{word-spacing:3.095275pt;}
.ws6{word-spacing:3.211639pt;}
.wse{word-spacing:3.219912pt;}
.ws1c{word-spacing:3.269821pt;}
.ws25{word-spacing:3.328003pt;}
.ws10{word-spacing:3.379314pt;}
.ws3b{word-spacing:3.386185pt;}
.wsf{word-spacing:3.432448pt;}
.ws24{word-spacing:3.560730pt;}
.ws3{word-spacing:3.700367pt;}
.ws12{word-spacing:3.758549pt;}
.ws19{word-spacing:3.909821pt;}
.ws40{word-spacing:4.200731pt;}
.ws1e{word-spacing:5.015277pt;}
.ws29{word-spacing:5.946187pt;}
.ws1b{word-spacing:6.269968pt;}
.ws14{word-spacing:7.284370pt;}
.ws5{word-spacing:7.307642pt;}
.ws28{word-spacing:7.342552pt;}
.wsa{word-spacing:7.449368pt;}
.ws3f{word-spacing:8.506189pt;}
.ws7{word-spacing:8.830849pt;}
.ws37{word-spacing:9.320735pt;}
.ws36{word-spacing:9.902554pt;}
.ws1f{word-spacing:13.684375pt;}
.ws2b{word-spacing:14.033466pt;}
.ws38{word-spacing:14.906194pt;}
.ws2{word-spacing:20.722347pt;}
.ws39{word-spacing:21.829836pt;}
.ws3a{word-spacing:22.178928pt;}
.ws2a{word-spacing:23.866202pt;}
.ws1a{word-spacing:25.320748pt;}
.ws23{word-spacing:27.938932pt;}
.ws13{word-spacing:28.615887pt;}
.ws34{word-spacing:29.998570pt;}
.ws0{word-spacing:34.247169pt;}
.ws1{word-spacing:34.338985pt;}
.ws35{word-spacing:34.862575pt;}
.ws2f{word-spacing:57.611684pt;}
.ws30{word-spacing:86.586254pt;}
._1f{margin-left:-26.238890pt;}
._1e{margin-left:-23.447292pt;}
._0{margin-left:-8.630654pt;}
._20{margin-left:-6.554473pt;}
._e{margin-left:-5.527277pt;}
._a{margin-left:-4.248845pt;}
._1{margin-left:-2.754464pt;}
._3{margin-left:-1.785310pt;}
._6{margin-left:-0.892625pt;}
._4{width:1.570910pt;}
._1b{width:2.754464pt;}
._29{width:5.092686pt;}
._5{width:14.765571pt;}
._2a{width:19.353049pt;}
._17{width:20.363653pt;}
._7{width:21.317331pt;}
._9{width:23.963374pt;}
._1c{width:25.832749pt;}
._2d{width:26.996386pt;}
._21{width:28.788708pt;}
._d{width:29.730934pt;}
._26{width:32.581845pt;}
._8{width:37.618778pt;}
._2{width:45.907733pt;}
._b{width:53.818227pt;}
._27{width:67.840057pt;}
._1d{width:84.130979pt;}
._1a{width:86.077200pt;}
._25{width:175.109091pt;}
._2c{width:407.098521pt;}
._24{width:467.782208pt;}
._2b{width:550.633186pt;}
._23{width:698.764219pt;}
._14{width:720.475198pt;}
._22{width:744.902439pt;}
._13{width:769.813421pt;}
._f{width:830.760546pt;}
._28{width:838.749790pt;}
._15{width:925.638431pt;}
._12{width:948.480790pt;}
._16{width:994.562398pt;}
._18{width:1041.844358pt;}
._10{width:1057.522752pt;}
._11{width:1107.648050pt;}
._19{width:1250.737176pt;}
._c{width:1683.241257pt;}
.fs4{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:56.149333pt;}
.y61{bottom:111.374667pt;}
.y22{bottom:112.182667pt;}
.y60{bottom:136.082667pt;}
.y21{bottom:136.890667pt;}
.y41{bottom:155.562667pt;}
.y5f{bottom:160.789333pt;}
.y20{bottom:161.597333pt;}
.y40{bottom:173.628000pt;}
.y5e{bottom:185.497333pt;}
.y1f{bottom:186.305333pt;}
.y3f{bottom:191.693333pt;}
.y1e{bottom:211.012000pt;}
.y5d{bottom:214.752000pt;}
.y3e{bottom:217.062667pt;}
.y1d{bottom:238.248000pt;}
.y5c{bottom:248.881333pt;}
.y3d{bottom:270.277333pt;}
.y1c{bottom:272.377333pt;}
.y5b{bottom:294.120000pt;}
.y3c{bottom:302.746667pt;}
.y1b{bottom:317.274667pt;}
.y5a{bottom:318.826667pt;}
.y59{bottom:343.534667pt;}
.y3b{bottom:348.365333pt;}
.y1a{bottom:349.885333pt;}
.y3a{bottom:366.430667pt;}
.y58{bottom:368.241333pt;}
.y19{bottom:382.496000pt;}
.y39{bottom:384.497333pt;}
.y57{bottom:400.712000pt;}
.y38{bottom:409.865333pt;}
.y18{bottom:415.108000pt;}
.y56{bottom:446.802667pt;}
.y17{bottom:447.718667pt;}
.y37{bottom:453.102667pt;}
.y55{bottom:464.868000pt;}
.y36{bottom:472.920000pt;}
.y16{bottom:480.329333pt;}
.y54{bottom:482.933333pt;}
.y35{bottom:502.597333pt;}
.y53{bottom:508.301333pt;}
.y15{bottom:512.941333pt;}
.y34{bottom:535.066667pt;}
.y14{bottom:545.552000pt;}
.y52{bottom:547.776000pt;}
.y51{bottom:567.593333pt;}
.y13{bottom:578.162667pt;}
.y33{bottom:580.686667pt;}
.y50{bottom:597.146667pt;}
.y32{bottom:598.752000pt;}
.y12{bottom:610.773333pt;}
.y31{bottom:616.817333pt;}
.y4f{bottom:642.174667pt;}
.y30{bottom:642.186667pt;}
.y11{bottom:643.385333pt;}
.y4e{bottom:660.240000pt;}
.y6f{bottom:665.696000pt;}
.y10{bottom:675.996000pt;}
.y4d{bottom:678.305333pt;}
.y6e{bottom:681.636000pt;}
.y2f{bottom:685.422667pt;}
.y2e{bottom:695.400000pt;}
.y4c{bottom:703.674667pt;}
.y6d{bottom:711.980000pt;}
.yf{bottom:720.893333pt;}
.y2d{bottom:734.632000pt;}
.ye{bottom:736.833333pt;}
.yd{bottom:752.773333pt;}
.y4b{bottom:753.125333pt;}
.y6c{bottom:757.809333pt;}
.yc{bottom:768.714667pt;}
.y6b{bottom:775.874667pt;}
.y2c{bottom:780.250667pt;}
.y4a{bottom:782.040000pt;}
.yb{bottom:784.654667pt;}
.y6a{bottom:793.941333pt;}
.y2b{bottom:798.316000pt;}
.ya{bottom:800.594667pt;}
.y49{bottom:814.509333pt;}
.y9{bottom:816.534667pt;}
.y69{bottom:818.648000pt;}
.y2a{bottom:823.685333pt;}
.y8{bottom:834.845333pt;}
.y68{bottom:836.713333pt;}
.y67{bottom:854.778667pt;}
.y48{bottom:859.537333pt;}
.y7{bottom:860.794667pt;}
.y29{bottom:866.921333pt;}
.y28{bottom:876.900000pt;}
.y47{bottom:877.604000pt;}
.y66{bottom:879.486667pt;}
.y6{bottom:884.705333pt;}
.y46{bottom:895.669333pt;}
.y65{bottom:897.552000pt;}
.y5{bottom:905.426667pt;}
.y64{bottom:915.617333pt;}
.y27{bottom:918.318667pt;}
.y45{bottom:921.037333pt;}
.y4{bottom:931.462667pt;}
.y63{bottom:948.088000pt;}
.y44{bottom:960.512000pt;}
.y3{bottom:965.469333pt;}
.y26{bottom:973.341333pt;}
.y25{bottom:978.356000pt;}
.y43{bottom:980.329333pt;}
.y2{bottom:988.848000pt;}
.y24{bottom:1003.064000pt;}
.y62{bottom:1003.872000pt;}
.y1{bottom:1010.580000pt;}
.y42{bottom:1011.908000pt;}
.h5{height:39.850400pt;}
.h4{height:43.636400pt;}
.h3{height:45.525402pt;}
.hd{height:51.464807pt;}
.h7{height:56.654141pt;}
.h6{height:57.384800pt;}
.h8{height:63.695067pt;}
.h2{height:68.861600pt;}
.hb{height:82.996400pt;}
.hc{height:83.545733pt;}
.ha{height:83.551067pt;}
.h9{height:90.819474pt;}
.he{height:122.905733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.xd{left:108.546667pt;}
.x1d{left:117.860000pt;}
.x1e{left:126.324000pt;}
.xe{left:130.406667pt;}
.x8{left:132.364000pt;}
.x13{left:156.590667pt;}
.x1b{left:216.240000pt;}
.x1c{left:218.492000pt;}
.x14{left:223.554667pt;}
.x2{left:227.482667pt;}
.x6{left:245.132000pt;}
.x1a{left:250.545333pt;}
.x3{left:263.276000pt;}
.x16{left:285.461333pt;}
.x15{left:296.852000pt;}
.x4{left:298.881333pt;}
.x10{left:310.846667pt;}
.x5{left:323.184000pt;}
.x18{left:324.290667pt;}
.x17{left:352.277333pt;}
.x11{left:353.396000pt;}
.x7{left:367.832000pt;}
.x19{left:388.088000pt;}
.xf{left:393.214667pt;}
.x12{left:525.005333pt;}
.x9{left:606.386667pt;}
.xa{left:632.461333pt;}
.xb{left:639.090667pt;}
.xc{left:642.780000pt;}
}




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