
    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_628a0e9774d97fb714b76834.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_e39cf844740a966bfc707fc9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949219;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_a1a398e81314e3a63c918c7e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899902;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_ef9ffdf4127228d9e9c18426.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7eed6962021ddc2ea90a9ad6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d8b0129a2149ba070ed5fe19.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3f34c7496a465a0e91b41daa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_197d68eb108c624e4bdab07c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d6a7b45ef4d213e5d5519885.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.888000;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_515e00c3b6f46951cd636ee2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.628000;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_5e998fd49d3b08d8c8a34d8b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_27c711b49a89979d7e22c320.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4ee3d44449ee116cb6da4609.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.635000;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:ffe;src:url('chunks/assets/font_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-162.396000px;}
.ve{vertical-align:-64.758000px;}
.vc{vertical-align:-43.038000px;}
.v1{vertical-align:-10.758000px;}
.v10{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:6.372000px;}
.v3{vertical-align:26.028000px;}
.v7{vertical-align:38.448000px;}
.v8{vertical-align:44.694000px;}
.v2{vertical-align:48.198000px;}
.v5{vertical-align:49.206000px;}
.v9{vertical-align:78.822000px;}
.v6{vertical-align:97.398000px;}
.v12{vertical-align:104.010000px;}
.vf{vertical-align:125.532000px;}
.v4{vertical-align:150.348000px;}
.vd{vertical-align:153.210000px;}
.v11{vertical-align:174.732000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.002400px;}
.ls1c{letter-spacing:0.005837px;}
.lse{letter-spacing:0.008092px;}
.ls18{letter-spacing:0.008323px;}
.lsd{letter-spacing:0.013015px;}
.ls10{letter-spacing:0.016184px;}
.ls15{letter-spacing:0.017021px;}
.ls14{letter-spacing:0.019910px;}
.lsf{letter-spacing:0.022184px;}
.ls27{letter-spacing:0.025910px;}
.ls11{letter-spacing:0.027906px;}
.lsa{letter-spacing:0.029981px;}
.ls1e{letter-spacing:0.035981px;}
.lsc{letter-spacing:0.038710px;}
.ls22{letter-spacing:0.041184px;}
.ls28{letter-spacing:0.052550px;}
.ls17{letter-spacing:0.054144px;}
.ls1d{letter-spacing:0.058550px;}
.ls29{letter-spacing:0.060144px;}
.ls4{letter-spacing:0.069021px;}
.ls2{letter-spacing:0.897273px;}
.ls16{letter-spacing:2.999261px;}
.lsb{letter-spacing:3.020710px;}
.ls1a{letter-spacing:5.192160px;}
.ls24{letter-spacing:12.016550px;}
.ls3{letter-spacing:13.984042px;}
.ls21{letter-spacing:14.379000px;}
.ls19{letter-spacing:14.436144px;}
.ls7{letter-spacing:14.595000px;}
.ls6{letter-spacing:14.606323px;}
.ls8{letter-spacing:14.608042px;}
.ls5{letter-spacing:14.639443px;}
.ls23{letter-spacing:14.963600px;}
.ls1{letter-spacing:16.654042px;}
.ls1b{letter-spacing:17.381261px;}
.ls12{letter-spacing:17.600092px;}
.ls25{letter-spacing:19.962557px;}
.ls26{letter-spacing:24.980710px;}
.ls1f{letter-spacing:90.167837px;}
.ls13{letter-spacing:90.202886px;}
.ls20{letter-spacing:90.209021px;}
.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;}
}
.ws5{word-spacing:-119.290800px;}
.ws7{word-spacing:-69.918273px;}
.ws19{word-spacing:-69.090021px;}
.wsd{word-spacing:-69.021000px;}
.ws8{word-spacing:-55.421328px;}
.wsb{word-spacing:-55.391433px;}
.ws16{word-spacing:-55.229937px;}
.ws14{word-spacing:-55.226412px;}
.ws10{word-spacing:-55.118958px;}
.wse{word-spacing:-55.088454px;}
.ws1c{word-spacing:-54.645000px;}
.ws12{word-spacing:-54.525714px;}
.ws3{word-spacing:-8.017001px;}
.ws2{word-spacing:-7.320124px;}
.ws0{word-spacing:-7.215301px;}
.ws1{word-spacing:-6.413601px;}
.ws9{word-spacing:-0.071731px;}
.ws1a{word-spacing:-0.047821px;}
.ws4{word-spacing:0.000000px;}
.ws25{word-spacing:12.020726px;}
.ws21{word-spacing:13.008000px;}
.wsa{word-spacing:13.684598px;}
.ws29{word-spacing:13.877664px;}
.ws17{word-spacing:13.900598px;}
.wsc{word-spacing:13.909690px;}
.wsf{word-spacing:14.026598px;}
.ws15{word-spacing:14.131690px;}
.ws11{word-spacing:14.251690px;}
.ws20{word-spacing:14.531664px;}
.ws13{word-spacing:14.765664px;}
.ws1e{word-spacing:19.797811px;}
.ws24{word-spacing:19.915142px;}
.ws23{word-spacing:19.921142px;}
.ws18{word-spacing:20.515123px;}
.ws2b{word-spacing:23.312640px;}
.ws6{word-spacing:27.975090px;}
.ws2a{word-spacing:31.633459px;}
.ws26{word-spacing:52.695706px;}
.ws1f{word-spacing:52.701706px;}
.ws27{word-spacing:64.653706px;}
.ws22{word-spacing:80.127706px;}
.ws28{word-spacing:89.505706px;}
.ws1b{word-spacing:90.089069px;}
.ws1d{word-spacing:105.003706px;}
._2{margin-left:-26.601848px;}
._9{margin-left:-23.886490px;}
._4{margin-left:-7.058330px;}
._5{margin-left:-4.590575px;}
._1{margin-left:-3.047627px;}
._0{margin-left:-1.345231px;}
._8{width:1.418406px;}
._3{width:3.219781px;}
._6{width:4.229474px;}
._b{width:5.420508px;}
._7{width:7.607798px;}
._a{width:19.869542px;}
.fc1{color:rgb(56,116,161);}
.fc5{color:rgb(180,180,180);}
.fc4{color:rgb(85,85,85);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:24.000000px;}
.fs3{font-size:27.828506px;}
.fs4{font-size:31.804007px;}
.fs0{font-size:35.779508px;}
.fsb{font-size:35.865600px;}
.fs2{font-size:39.755009px;}
.fs5{font-size:47.706010px;}
.fsa{font-size:47.820600px;}
.fs9{font-size:69.021000px;}
.fs8{font-size:71.731200px;}
.fs1{font-size:79.510017px;}
.fs7{font-size:86.077200px;}
.fs6{font-size:119.290800px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.212321px;}
.ya{bottom:3.975500px;}
.yc{bottom:3.975502px;}
.y3d{bottom:7.500000px;}
.y10{bottom:22.859102px;}
.yf{bottom:42.736606px;}
.y3c{bottom:144.624000px;}
.y3b{bottom:189.454500px;}
.y3a{bottom:214.113000px;}
.y39{bottom:238.770000px;}
.y38{bottom:288.085500px;}
.y36{bottom:314.062500px;}
.y34{bottom:319.545000px;}
.y32{bottom:325.570500px;}
.y2f{bottom:331.846500px;}
.y31{bottom:336.330000px;}
.y37{bottom:343.978500px;}
.y33{bottom:344.883000px;}
.y30{bottom:347.089500px;}
.y35{bottom:353.116500px;}
.y28{bottom:385.317000px;}
.y2a{bottom:397.617000px;}
.y2c{bottom:404.611500px;}
.y27{bottom:409.749000px;}
.y2e{bottom:410.653500px;}
.y2b{bottom:418.678500px;}
.y29{bottom:418.887000px;}
.y26{bottom:422.026500px;}
.y2d{bottom:424.267500px;}
.y25{bottom:448.842000px;}
.y23{bottom:481.900500px;}
.y22{bottom:506.334000px;}
.y24{bottom:507.237000px;}
.y21{bottom:542.653500px;}
.y20{bottom:580.195500px;}
.y1f{bottom:617.739000px;}
.y1e{bottom:642.396000px;}
.y1d{bottom:667.054500px;}
.y1c{bottom:691.711500px;}
.y1b{bottom:716.368500px;}
.y1a{bottom:741.027000px;}
.y19{bottom:765.684000px;}
.y18{bottom:790.341000px;}
.y17{bottom:823.428000px;}
.y16{bottom:859.023000px;}
.y15{bottom:890.406000px;}
.ye{bottom:890.512164px;}
.yd{bottom:914.365170px;}
.y14{bottom:921.789000px;}
.yb{bottom:928.491742px;}
.y9{bottom:944.393748px;}
.y13{bottom:957.384000px;}
.y8{bottom:974.991558px;}
.y12{bottom:999.228000px;}
.y7{bottom:1002.820064px;}
.y6{bottom:1018.722067px;}
.y11{bottom:1041.070500px;}
.y5{bottom:1047.544448px;}
.y4{bottom:1062.452577px;}
.y3{bottom:1104.195336px;}
.y2{bottom:1144.944219px;}
.h1d{height:2.869248px;}
.h15{height:9.241248px;}
.ha{height:12.920383px;}
.h6{height:20.151208px;}
.h7{height:23.029952px;}
.h1f{height:25.031250px;}
.h3{height:25.908696px;}
.h9{height:28.069210px;}
.h5{height:28.787440px;}
.h1a{height:33.187496px;}
.h8{height:34.544928px;}
.h18{height:35.865450px;}
.h12{height:50.498765px;}
.h16{height:53.798400px;}
.hf{height:60.738480px;}
.h11{height:61.893450px;}
.he{height:64.557900px;}
.h4{height:66.465405px;}
.h14{height:98.492400px;}
.h10{height:101.996400px;}
.hd{height:104.975904px;}
.h1c{height:106.879248px;}
.h19{height:128.401248px;}
.h13{height:153.217248px;}
.h17{height:156.079248px;}
.h1e{height:156.085248px;}
.h1b{height:177.601248px;}
.h2{height:1261.227619px;}
.h0{height:1261.439940px;}
.h1{height:1261.500000px;}
.hb{height:1262.835000px;}
.hc{height:1263.000000px;}
.w2{width:733.479917px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.w3{width:892.920000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:59.632513px;}
.x4{left:64.601889px;}
.x28{left:75.000000px;}
.x2{left:99.387518px;}
.x3{left:110.320149px;}
.x5{left:167.776500px;}
.x7{left:185.031000px;}
.xd{left:243.955500px;}
.x1b{left:259.282500px;}
.xe{left:274.599000px;}
.x1c{left:289.689000px;}
.xf{left:292.831500px;}
.x1d{left:301.446000px;}
.x9{left:308.878500px;}
.xa{left:312.781500px;}
.x6{left:331.923000px;}
.x10{left:334.299000px;}
.x11{left:344.386500px;}
.x1e{left:352.213500px;}
.x1f{left:363.588000px;}
.x8{left:396.511500px;}
.x20{left:401.187000px;}
.x21{left:420.876000px;}
.xb{left:430.870500px;}
.x12{left:434.278500px;}
.x14{left:436.182000px;}
.x13{left:437.694000px;}
.xc{left:442.245000px;}
.x15{left:461.796000px;}
.x16{left:471.882000px;}
.x22{left:478.734000px;}
.x23{left:509.140500px;}
.x24{left:520.897500px;}
.x25{left:541.473000px;}
.x17{left:571.749000px;}
.x26{left:579.307500px;}
.x18{left:583.125000px;}
.x27{left:589.269000px;}
.x19{left:617.734500px;}
.x1a{left:627.822000px;}
@media print{
.va{vertical-align:-144.352000pt;}
.ve{vertical-align:-57.562667pt;}
.vc{vertical-align:-38.256000pt;}
.v1{vertical-align:-9.562667pt;}
.v10{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:5.664000pt;}
.v3{vertical-align:23.136000pt;}
.v7{vertical-align:34.176000pt;}
.v8{vertical-align:39.728000pt;}
.v2{vertical-align:42.842667pt;}
.v5{vertical-align:43.738667pt;}
.v9{vertical-align:70.064000pt;}
.v6{vertical-align:86.576000pt;}
.v12{vertical-align:92.453333pt;}
.vf{vertical-align:111.584000pt;}
.v4{vertical-align:133.642667pt;}
.vd{vertical-align:136.186667pt;}
.v11{vertical-align:155.317333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.002133pt;}
.ls1c{letter-spacing:0.005188pt;}
.lse{letter-spacing:0.007193pt;}
.ls18{letter-spacing:0.007398pt;}
.lsd{letter-spacing:0.011569pt;}
.ls10{letter-spacing:0.014386pt;}
.ls15{letter-spacing:0.015130pt;}
.ls14{letter-spacing:0.017698pt;}
.lsf{letter-spacing:0.019719pt;}
.ls27{letter-spacing:0.023031pt;}
.ls11{letter-spacing:0.024805pt;}
.lsa{letter-spacing:0.026650pt;}
.ls1e{letter-spacing:0.031983pt;}
.lsc{letter-spacing:0.034409pt;}
.ls22{letter-spacing:0.036608pt;}
.ls28{letter-spacing:0.046711pt;}
.ls17{letter-spacing:0.048128pt;}
.ls1d{letter-spacing:0.052045pt;}
.ls29{letter-spacing:0.053461pt;}
.ls4{letter-spacing:0.061352pt;}
.ls2{letter-spacing:0.797576pt;}
.ls16{letter-spacing:2.666010pt;}
.lsb{letter-spacing:2.685076pt;}
.ls1a{letter-spacing:4.615253pt;}
.ls24{letter-spacing:10.681378pt;}
.ls3{letter-spacing:12.430259pt;}
.ls21{letter-spacing:12.781333pt;}
.ls19{letter-spacing:12.832128pt;}
.ls7{letter-spacing:12.973333pt;}
.ls6{letter-spacing:12.983398pt;}
.ls8{letter-spacing:12.984926pt;}
.ls5{letter-spacing:13.012838pt;}
.ls23{letter-spacing:13.300978pt;}
.ls1{letter-spacing:14.803593pt;}
.ls1b{letter-spacing:15.450010pt;}
.ls12{letter-spacing:15.644526pt;}
.ls25{letter-spacing:17.744495pt;}
.ls26{letter-spacing:22.205076pt;}
.ls1f{letter-spacing:80.149188pt;}
.ls13{letter-spacing:80.180343pt;}
.ls20{letter-spacing:80.185796pt;}
.ws5{word-spacing:-106.036267pt;}
.ws7{word-spacing:-62.149576pt;}
.ws19{word-spacing:-61.413352pt;}
.wsd{word-spacing:-61.352000pt;}
.ws8{word-spacing:-49.263403pt;}
.wsb{word-spacing:-49.236829pt;}
.ws16{word-spacing:-49.093277pt;}
.ws14{word-spacing:-49.090144pt;}
.ws10{word-spacing:-48.994629pt;}
.wse{word-spacing:-48.967515pt;}
.ws1c{word-spacing:-48.573333pt;}
.ws12{word-spacing:-48.467301pt;}
.ws3{word-spacing:-7.126223pt;}
.ws2{word-spacing:-6.506777pt;}
.ws0{word-spacing:-6.413601pt;}
.ws1{word-spacing:-5.700979pt;}
.ws9{word-spacing:-0.063761pt;}
.ws1a{word-spacing:-0.042507pt;}
.ws4{word-spacing:0.000000pt;}
.ws25{word-spacing:10.685090pt;}
.ws21{word-spacing:11.562667pt;}
.wsa{word-spacing:12.164087pt;}
.ws29{word-spacing:12.335701pt;}
.ws17{word-spacing:12.356087pt;}
.wsc{word-spacing:12.364169pt;}
.wsf{word-spacing:12.468087pt;}
.ws15{word-spacing:12.561502pt;}
.ws11{word-spacing:12.668169pt;}
.ws20{word-spacing:12.917035pt;}
.ws13{word-spacing:13.125035pt;}
.ws1e{word-spacing:17.598054pt;}
.ws24{word-spacing:17.702349pt;}
.ws23{word-spacing:17.707682pt;}
.ws18{word-spacing:18.235665pt;}
.ws2b{word-spacing:20.722347pt;}
.ws6{word-spacing:24.866747pt;}
.ws2a{word-spacing:28.118630pt;}
.ws26{word-spacing:46.840627pt;}
.ws1f{word-spacing:46.845961pt;}
.ws27{word-spacing:57.469961pt;}
.ws22{word-spacing:71.224627pt;}
.ws28{word-spacing:79.560627pt;}
.ws1b{word-spacing:80.079172pt;}
.ws1d{word-spacing:93.336627pt;}
._2{margin-left:-23.646087pt;}
._9{margin-left:-21.232435pt;}
._4{margin-left:-6.274071pt;}
._5{margin-left:-4.080511pt;}
._1{margin-left:-2.709002pt;}
._0{margin-left:-1.195761pt;}
._8{width:1.260805pt;}
._3{width:2.862028pt;}
._6{width:3.759532pt;}
._b{width:4.818229pt;}
._7{width:6.762487pt;}
._a{width:17.661815pt;}
.fsc{font-size:21.333333pt;}
.fs3{font-size:24.736450pt;}
.fs4{font-size:28.270228pt;}
.fs0{font-size:31.804007pt;}
.fsb{font-size:31.880533pt;}
.fs2{font-size:35.337785pt;}
.fs5{font-size:42.405342pt;}
.fsa{font-size:42.507200pt;}
.fs9{font-size:61.352000pt;}
.fs8{font-size:63.761067pt;}
.fs1{font-size:70.675571pt;}
.fs7{font-size:76.513067pt;}
.fs6{font-size:106.036267pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.188729pt;}
.ya{bottom:3.533777pt;}
.yc{bottom:3.533780pt;}
.y3d{bottom:6.666667pt;}
.y10{bottom:20.319202pt;}
.yf{bottom:37.988095pt;}
.y3c{bottom:128.554667pt;}
.y3b{bottom:168.404000pt;}
.y3a{bottom:190.322667pt;}
.y39{bottom:212.240000pt;}
.y38{bottom:256.076000pt;}
.y36{bottom:279.166667pt;}
.y34{bottom:284.040000pt;}
.y32{bottom:289.396000pt;}
.y2f{bottom:294.974667pt;}
.y31{bottom:298.960000pt;}
.y37{bottom:305.758667pt;}
.y33{bottom:306.562667pt;}
.y30{bottom:308.524000pt;}
.y35{bottom:313.881333pt;}
.y28{bottom:342.504000pt;}
.y2a{bottom:353.437333pt;}
.y2c{bottom:359.654667pt;}
.y27{bottom:364.221333pt;}
.y2e{bottom:365.025333pt;}
.y2b{bottom:372.158667pt;}
.y29{bottom:372.344000pt;}
.y26{bottom:375.134667pt;}
.y2d{bottom:377.126667pt;}
.y25{bottom:398.970667pt;}
.y23{bottom:428.356000pt;}
.y22{bottom:450.074667pt;}
.y24{bottom:450.877333pt;}
.y21{bottom:482.358667pt;}
.y20{bottom:515.729333pt;}
.y1f{bottom:549.101333pt;}
.y1e{bottom:571.018667pt;}
.y1d{bottom:592.937333pt;}
.y1c{bottom:614.854667pt;}
.y1b{bottom:636.772000pt;}
.y1a{bottom:658.690667pt;}
.y19{bottom:680.608000pt;}
.y18{bottom:702.525333pt;}
.y17{bottom:731.936000pt;}
.y16{bottom:763.576000pt;}
.y15{bottom:791.472000pt;}
.ye{bottom:791.566368pt;}
.yd{bottom:812.769040pt;}
.y14{bottom:819.368000pt;}
.yb{bottom:825.325993pt;}
.y9{bottom:839.461109pt;}
.y13{bottom:851.008000pt;}
.y8{bottom:866.659162pt;}
.y12{bottom:888.202667pt;}
.y7{bottom:891.395612pt;}
.y6{bottom:905.530726pt;}
.y11{bottom:925.396000pt;}
.y5{bottom:931.150621pt;}
.y4{bottom:944.402290pt;}
.y3{bottom:981.506965pt;}
.y2{bottom:1017.728195pt;}
.h1d{height:2.550443pt;}
.h15{height:8.214443pt;}
.ha{height:11.484785pt;}
.h6{height:17.912185pt;}
.h7{height:20.471069pt;}
.h1f{height:22.250000pt;}
.h3{height:23.029952pt;}
.h9{height:24.950409pt;}
.h5{height:25.588836pt;}
.h1a{height:29.499997pt;}
.h8{height:30.706603pt;}
.h18{height:31.880400pt;}
.h12{height:44.887791pt;}
.h16{height:47.820800pt;}
.hf{height:53.989760pt;}
.h11{height:55.016400pt;}
.he{height:57.384800pt;}
.h4{height:59.080360pt;}
.h14{height:87.548800pt;}
.h10{height:90.663467pt;}
.hd{height:93.311915pt;}
.h1c{height:95.003776pt;}
.h19{height:114.134443pt;}
.h13{height:136.193109pt;}
.h17{height:138.737109pt;}
.h1e{height:138.742443pt;}
.h1b{height:157.867776pt;}
.h2{height:1121.091217pt;}
.h0{height:1121.279947pt;}
.h1{height:1121.333333pt;}
.hb{height:1122.520000pt;}
.hc{height:1122.666667pt;}
.w2{width:651.982149pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.w3{width:793.706667pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:53.006678pt;}
.x4{left:57.423901pt;}
.x28{left:66.666667pt;}
.x2{left:88.344460pt;}
.x3{left:98.062355pt;}
.x5{left:149.134667pt;}
.x7{left:164.472000pt;}
.xd{left:216.849333pt;}
.x1b{left:230.473333pt;}
.xe{left:244.088000pt;}
.x1c{left:257.501333pt;}
.xf{left:260.294667pt;}
.x1d{left:267.952000pt;}
.x9{left:274.558667pt;}
.xa{left:278.028000pt;}
.x6{left:295.042667pt;}
.x10{left:297.154667pt;}
.x11{left:306.121333pt;}
.x1e{left:313.078667pt;}
.x1f{left:323.189333pt;}
.x8{left:352.454667pt;}
.x20{left:356.610667pt;}
.x21{left:374.112000pt;}
.xb{left:382.996000pt;}
.x12{left:386.025333pt;}
.x14{left:387.717333pt;}
.x13{left:389.061333pt;}
.xc{left:393.106667pt;}
.x15{left:410.485333pt;}
.x16{left:419.450667pt;}
.x22{left:425.541333pt;}
.x23{left:452.569333pt;}
.x24{left:463.020000pt;}
.x25{left:481.309333pt;}
.x17{left:508.221333pt;}
.x26{left:514.940000pt;}
.x18{left:518.333333pt;}
.x27{left:523.794667pt;}
.x19{left:549.097333pt;}
.x1a{left:558.064000pt;}
}




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