
    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_33d6b47c717dd78272ee3141.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_fc8c4aea2575495576750759.woff')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_e79912fb01fb841ff8495858.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_f917811b25344a22e77ada16.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_eec82c6e9880aa96435a63fa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_a105ae2d334ed51cffd2de8a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_a36b86b44155c6c7f379ec88.woff')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_1a7af6f0349116d380922a5d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_d65ecb949695b6bd83612438.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_b20c725cc6cd84c741bb7436.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_94c19f75d73082f402111594.woff')format("woff");}.ffb{font-family:ffb;line-height:1.146973;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_1c4d8bf467d6d8747cd36979.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284668;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_d5c187b90f2df01664244e8b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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);}
.v1c{vertical-align:-22.320000px;}
.v10{vertical-align:-20.880000px;}
.ve{vertical-align:-18.000000px;}
.v12{vertical-align:-15.840000px;}
.v4{vertical-align:-14.400000px;}
.v6{vertical-align:-12.240000px;}
.vc{vertical-align:-10.080000px;}
.v1{vertical-align:-8.640000px;}
.v5{vertical-align:-7.200000px;}
.v14{vertical-align:-5.760000px;}
.v16{vertical-align:-4.320000px;}
.v8{vertical-align:-2.880000px;}
.v17{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.440000px;}
.v9{vertical-align:2.880000px;}
.v15{vertical-align:4.320000px;}
.va{vertical-align:5.760000px;}
.v11{vertical-align:7.200000px;}
.v2{vertical-align:8.640000px;}
.vd{vertical-align:10.080000px;}
.v7{vertical-align:12.240000px;}
.v3{vertical-align:14.400000px;}
.v13{vertical-align:15.840000px;}
.v18{vertical-align:17.280000px;}
.v19{vertical-align:18.720000px;}
.vf{vertical-align:20.880000px;}
.v1a{vertical-align:27.360000px;}
.v1b{vertical-align:31.680000px;}
.ls1{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012000px;}
.ls44{letter-spacing:0.072000px;}
.ls37{letter-spacing:0.156000px;}
.ls3{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.372000px;}
.ls12{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.720000px;}
.ls17{letter-spacing:1.152000px;}
.ls49{letter-spacing:1.224000px;}
.ls16{letter-spacing:1.296000px;}
.ls1a{letter-spacing:1.368000px;}
.ls5{letter-spacing:1.440000px;}
.ls4a{letter-spacing:1.512000px;}
.ls1e{letter-spacing:1.584000px;}
.ls28{letter-spacing:1.656000px;}
.ls45{letter-spacing:1.730880px;}
.ls4f{letter-spacing:1.872000px;}
.ls19{letter-spacing:2.088000px;}
.ls7{letter-spacing:2.160000px;}
.ls1d{letter-spacing:2.376000px;}
.ls1b{letter-spacing:2.880000px;}
.ls18{letter-spacing:3.024000px;}
.ls26{letter-spacing:3.312000px;}
.ls27{letter-spacing:3.600000px;}
.ls51{letter-spacing:3.720000px;}
.ls25{letter-spacing:3.816000px;}
.ls24{letter-spacing:4.104000px;}
.ls46{letter-spacing:4.717440px;}
.ls29{letter-spacing:5.328000px;}
.ls13{letter-spacing:5.472000px;}
.ls48{letter-spacing:5.616000px;}
.lsf{letter-spacing:5.688000px;}
.ls9{letter-spacing:5.760000px;}
.ls31{letter-spacing:5.832000px;}
.ls22{letter-spacing:5.976000px;}
.ls20{letter-spacing:6.192000px;}
.ls1c{letter-spacing:6.264000px;}
.ls2f{letter-spacing:6.552000px;}
.ls6{letter-spacing:6.696000px;}
.ls30{letter-spacing:7.200000px;}
.lsb{letter-spacing:7.488000px;}
.ls14{letter-spacing:7.632000px;}
.ls3a{letter-spacing:8.064000px;}
.ls3b{letter-spacing:8.136000px;}
.ls3f{letter-spacing:8.208000px;}
.ls10{letter-spacing:8.352000px;}
.ls3e{letter-spacing:8.424000px;}
.ls33{letter-spacing:8.640000px;}
.ls3d{letter-spacing:8.784000px;}
.ls39{letter-spacing:9.072000px;}
.ls2e{letter-spacing:9.216000px;}
.ls32{letter-spacing:9.792000px;}
.ls4e{letter-spacing:10.008000px;}
.lse{letter-spacing:10.080000px;}
.ls50{letter-spacing:10.224000px;}
.ls34{letter-spacing:10.512000px;}
.ls23{letter-spacing:10.728000px;}
.ls15{letter-spacing:10.800000px;}
.ls2a{letter-spacing:11.016000px;}
.ls1f{letter-spacing:11.952000px;}
.ls36{letter-spacing:12.168000px;}
.ls4b{letter-spacing:12.312000px;}
.ls2c{letter-spacing:12.384000px;}
.lsd{letter-spacing:12.456000px;}
.ls43{letter-spacing:12.528000px;}
.ls21{letter-spacing:12.672000px;}
.ls4d{letter-spacing:13.824000px;}
.ls47{letter-spacing:14.184000px;}
.ls38{letter-spacing:14.616000px;}
.ls3c{letter-spacing:15.192000px;}
.ls8{letter-spacing:16.560000px;}
.lsc{letter-spacing:17.280000px;}
.ls40{letter-spacing:19.584000px;}
.ls2d{letter-spacing:19.872000px;}
.ls42{letter-spacing:20.952000px;}
.ls35{letter-spacing:21.096000px;}
.ls4c{letter-spacing:23.760000px;}
.ls41{letter-spacing:35.280000px;}
.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;}
}
.ws1{word-spacing:-23.940000px;}
.ws6{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.488000px;}
.ws9{word-spacing:-14.940000px;}
.ws5{word-spacing:-5.544000px;}
.ws7{word-spacing:-3.384000px;}
.ws3{word-spacing:0.000000px;}
._30{margin-left:-1201.248000px;}
._2f{margin-left:-14.384160px;}
._2e{margin-left:-12.619680px;}
._24{margin-left:-11.504160px;}
._28{margin-left:-9.964320px;}
._26{margin-left:-8.640000px;}
._22{margin-left:-7.364160px;}
._25{margin-left:-6.228000px;}
._23{margin-left:-4.824000px;}
._27{margin-left:-3.588480px;}
._18{margin-left:-2.247840px;}
._1{margin-left:-1.059840px;}
._0{width:1.347840px;}
._d{width:2.688000px;}
._16{width:3.736320px;}
._10{width:4.968000px;}
._11{width:6.335520px;}
._1c{width:7.348320px;}
._f{width:8.712000px;}
._9{width:10.383840px;}
._8{width:11.952000px;}
._7{width:13.032000px;}
._c{width:14.184000px;}
._19{width:15.644160px;}
._1e{width:16.755840px;}
._6{width:19.224000px;}
._e{width:20.376000px;}
._1a{width:21.744000px;}
._1b{width:22.800000px;}
._1d{width:23.856000px;}
._13{width:25.416000px;}
._12{width:26.424000px;}
._5{width:27.648000px;}
._2d{width:28.707840px;}
._2a{width:30.096000px;}
._29{width:31.464000px;}
._17{width:32.544000px;}
._1f{width:34.560000px;}
._20{width:35.568000px;}
._21{width:36.828000px;}
._3{width:38.016000px;}
._4{width:39.051840px;}
._2{width:40.068000px;}
._32{width:41.616000px;}
._33{width:42.620160px;}
._b{width:45.936000px;}
._a{width:47.160000px;}
._2c{width:49.351680px;}
._2b{width:50.472000px;}
._15{width:68.976000px;}
._14{width:70.884000px;}
._31{width:1165.860000px;}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc6{color:rgb(51,51,51);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y7{bottom:20.700000px;}
.y4{bottom:27.900000px;}
.y6{bottom:45.360000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.ya{bottom:91.116000px;}
.y51{bottom:128.736000px;}
.y43{bottom:129.996000px;}
.y50{bottom:133.956000px;}
.y42{bottom:135.216000px;}
.y45{bottom:139.896000px;}
.y4f{bottom:145.836000px;}
.y41{bottom:149.616000px;}
.y4e{bottom:151.050000px;}
.y40{bottom:154.830000px;}
.y4d{bottom:163.110000px;}
.y44{bottom:163.650000px;}
.y55{bottom:163.830000px;}
.y4c{bottom:168.330000px;}
.y3f{bottom:169.590000px;}
.y3e{bottom:174.810000px;}
.y4b{bottom:181.110000px;}
.y36{bottom:187.410000px;}
.y3d{bottom:187.770000px;}
.y35{bottom:211.350000px;}
.y34{bottom:235.110000px;}
.y33{bottom:258.870000px;}
.y32{bottom:282.675000px;}
.y31{bottom:306.435000px;}
.y30{bottom:330.375000px;}
.y2f{bottom:354.135000px;}
.y2e{bottom:377.895000px;}
.y4a{bottom:400.215000px;}
.y2d{bottom:401.655000px;}
.y49{bottom:425.235000px;}
.y2c{bottom:425.595000px;}
.y54{bottom:425.775000px;}
.y53{bottom:448.995000px;}
.y2b{bottom:449.355000px;}
.y2a{bottom:473.115000px;}
.y29{bottom:496.875000px;}
.y28{bottom:520.815000px;}
.y27{bottom:544.575000px;}
.y26{bottom:568.365000px;}
.y48{bottom:574.305000px;}
.y25{bottom:592.125000px;}
.y24{bottom:616.065000px;}
.y47{bottom:622.905000px;}
.y23{bottom:639.825000px;}
.y22{bottom:663.585000px;}
.y21{bottom:687.345000px;}
.y3c{bottom:694.185000px;}
.y20{bottom:711.285000px;}
.y1f{bottom:735.045000px;}
.y52{bottom:758.445000px;}
.y1e{bottom:758.805000px;}
.y1d{bottom:782.565000px;}
.y1c{bottom:806.325000px;}
.y1b{bottom:830.265000px;}
.y1a{bottom:854.070000px;}
.y19{bottom:877.830000px;}
.y18{bottom:901.590000px;}
.y17{bottom:925.530000px;}
.y16{bottom:949.290000px;}
.y15{bottom:973.050000px;}
.y14{bottom:996.450000px;}
.y3b{bottom:996.810000px;}
.y13{bottom:1020.750000px;}
.y46{bottom:1027.590000px;}
.y12{bottom:1044.510000px;}
.y11{bottom:1068.270000px;}
.y10{bottom:1091.670000px;}
.y39{bottom:1092.030000px;}
.y3a{bottom:1098.870000px;}
.yf{bottom:1115.610000px;}
.y37{bottom:1115.970000px;}
.y38{bottom:1122.810000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h8{height:33.120000px;}
.he{height:38.158594px;}
.h16{height:40.985156px;}
.hd{height:47.344922px;}
.hc{height:50.273438px;}
.hf{height:58.651172px;}
.hb{height:59.343750px;}
.h9{height:65.884219px;}
.h1e{height:67.183594px;}
.h1f{height:67.903594px;}
.h1a{height:68.623594px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h12{height:72.223594px;}
.h3{height:72.562500px;}
.h20{height:74.004654px;}
.h15{height:74.383594px;}
.h1c{height:75.823594px;}
.h17{height:76.543594px;}
.h11{height:78.703594px;}
.h10{height:81.583594px;}
.h14{height:82.303594px;}
.h4{height:82.635820px;}
.h1b{height:84.463594px;}
.h18{height:85.903594px;}
.h1d{height:87.343594px;}
.h13{height:88.063594px;}
.h19{height:95.983594px;}
.h2{height:109.800000px;}
.h5{height:129.250898px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:16.920000px;}
.w8{width:17.100000px;}
.w7{width:17.136000px;}
.w6{width:49.680000px;}
.w4{width:63.570000px;}
.wa{width:90.900000px;}
.w2{width:134.136000px;}
.w3{width:695.265000px;}
.wb{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.800000px;}
.x9{left:8.100000px;}
.x7{left:9.360000px;}
.x6{left:16.914000px;}
.x2{left:18.719973px;}
.x1{left:34.559970px;}
.x3{left:39.599973px;}
.x5{left:61.554000px;}
.xd{left:71.685000px;}
.x3d{left:116.315987px;}
.x4{left:134.136000px;}
.xa{left:138.275987px;}
.x21{left:143.135987px;}
.x13{left:144.935987px;}
.x3c{left:170.309987px;}
.x19{left:191.369987px;}
.x16{left:207.209987px;}
.x2d{left:214.949987px;}
.x2a{left:226.115987px;}
.x1e{left:237.269973px;}
.x1f{left:243.389987px;}
.x22{left:265.175987px;}
.x35{left:305.174987px;}
.x2b{left:333.569987px;}
.x18{left:338.294987px;}
.x23{left:340.235987px;}
.x17{left:349.814987px;}
.x20{left:354.314987px;}
.x15{left:356.114987px;}
.x25{left:358.274973px;}
.x24{left:360.395987px;}
.x26{left:364.394987px;}
.x28{left:383.654973px;}
.x29{left:389.774987px;}
.x14{left:414.794987px;}
.x2e{left:434.054987px;}
.x2f{left:442.874987px;}
.x36{left:472.754987px;}
.x30{left:482.474987px;}
.x1c{left:484.274973px;}
.x2c{left:485.309987px;}
.x1d{left:490.394987px;}
.x1a{left:505.904973px;}
.x37{left:508.394987px;}
.x1b{left:512.024987px;}
.x32{left:518.144973px;}
.x33{left:524.264987px;}
.x34{left:530.744987px;}
.x38{left:535.574987px;}
.x27{left:568.334987px;}
.x39{left:574.994987px;}
.x3a{left:593.354987px;}
.x31{left:607.574987px;}
.x3b{left:617.474987px;}
.xb{left:629.925000px;}
.xc{left:679.605000px;}
.xe{left:696.750000px;}
.xf{left:713.850000px;}
.x10{left:730.770000px;}
.x11{left:747.870000px;}
.x8{left:829.410000px;}
@media print{
.v1c{vertical-align:-19.840000pt;}
.v10{vertical-align:-18.560000pt;}
.ve{vertical-align:-16.000000pt;}
.v12{vertical-align:-14.080000pt;}
.v4{vertical-align:-12.800000pt;}
.v6{vertical-align:-10.880000pt;}
.vc{vertical-align:-8.960000pt;}
.v1{vertical-align:-7.680000pt;}
.v5{vertical-align:-6.400000pt;}
.v14{vertical-align:-5.120000pt;}
.v16{vertical-align:-3.840000pt;}
.v8{vertical-align:-2.560000pt;}
.v17{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.280000pt;}
.v9{vertical-align:2.560000pt;}
.v15{vertical-align:3.840000pt;}
.va{vertical-align:5.120000pt;}
.v11{vertical-align:6.400000pt;}
.v2{vertical-align:7.680000pt;}
.vd{vertical-align:8.960000pt;}
.v7{vertical-align:10.880000pt;}
.v3{vertical-align:12.800000pt;}
.v13{vertical-align:14.080000pt;}
.v18{vertical-align:15.360000pt;}
.v19{vertical-align:16.640000pt;}
.vf{vertical-align:18.560000pt;}
.v1a{vertical-align:24.320000pt;}
.v1b{vertical-align:28.160000pt;}
.ls1{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.010667pt;}
.ls44{letter-spacing:0.064000pt;}
.ls37{letter-spacing:0.138667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.330667pt;}
.ls12{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls17{letter-spacing:1.024000pt;}
.ls49{letter-spacing:1.088000pt;}
.ls16{letter-spacing:1.152000pt;}
.ls1a{letter-spacing:1.216000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls4a{letter-spacing:1.344000pt;}
.ls1e{letter-spacing:1.408000pt;}
.ls28{letter-spacing:1.472000pt;}
.ls45{letter-spacing:1.538560pt;}
.ls4f{letter-spacing:1.664000pt;}
.ls19{letter-spacing:1.856000pt;}
.ls7{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:2.112000pt;}
.ls1b{letter-spacing:2.560000pt;}
.ls18{letter-spacing:2.688000pt;}
.ls26{letter-spacing:2.944000pt;}
.ls27{letter-spacing:3.200000pt;}
.ls51{letter-spacing:3.306667pt;}
.ls25{letter-spacing:3.392000pt;}
.ls24{letter-spacing:3.648000pt;}
.ls46{letter-spacing:4.193280pt;}
.ls29{letter-spacing:4.736000pt;}
.ls13{letter-spacing:4.864000pt;}
.ls48{letter-spacing:4.992000pt;}
.lsf{letter-spacing:5.056000pt;}
.ls9{letter-spacing:5.120000pt;}
.ls31{letter-spacing:5.184000pt;}
.ls22{letter-spacing:5.312000pt;}
.ls20{letter-spacing:5.504000pt;}
.ls1c{letter-spacing:5.568000pt;}
.ls2f{letter-spacing:5.824000pt;}
.ls6{letter-spacing:5.952000pt;}
.ls30{letter-spacing:6.400000pt;}
.lsb{letter-spacing:6.656000pt;}
.ls14{letter-spacing:6.784000pt;}
.ls3a{letter-spacing:7.168000pt;}
.ls3b{letter-spacing:7.232000pt;}
.ls3f{letter-spacing:7.296000pt;}
.ls10{letter-spacing:7.424000pt;}
.ls3e{letter-spacing:7.488000pt;}
.ls33{letter-spacing:7.680000pt;}
.ls3d{letter-spacing:7.808000pt;}
.ls39{letter-spacing:8.064000pt;}
.ls2e{letter-spacing:8.192000pt;}
.ls32{letter-spacing:8.704000pt;}
.ls4e{letter-spacing:8.896000pt;}
.lse{letter-spacing:8.960000pt;}
.ls50{letter-spacing:9.088000pt;}
.ls34{letter-spacing:9.344000pt;}
.ls23{letter-spacing:9.536000pt;}
.ls15{letter-spacing:9.600000pt;}
.ls2a{letter-spacing:9.792000pt;}
.ls1f{letter-spacing:10.624000pt;}
.ls36{letter-spacing:10.816000pt;}
.ls4b{letter-spacing:10.944000pt;}
.ls2c{letter-spacing:11.008000pt;}
.lsd{letter-spacing:11.072000pt;}
.ls43{letter-spacing:11.136000pt;}
.ls21{letter-spacing:11.264000pt;}
.ls4d{letter-spacing:12.288000pt;}
.ls47{letter-spacing:12.608000pt;}
.ls38{letter-spacing:12.992000pt;}
.ls3c{letter-spacing:13.504000pt;}
.ls8{letter-spacing:14.720000pt;}
.lsc{letter-spacing:15.360000pt;}
.ls40{letter-spacing:17.408000pt;}
.ls2d{letter-spacing:17.664000pt;}
.ls42{letter-spacing:18.624000pt;}
.ls35{letter-spacing:18.752000pt;}
.ls4c{letter-spacing:21.120000pt;}
.ls41{letter-spacing:31.360000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws9{word-spacing:-13.280000pt;}
.ws5{word-spacing:-4.928000pt;}
.ws7{word-spacing:-3.008000pt;}
.ws3{word-spacing:0.000000pt;}
._30{margin-left:-1067.776000pt;}
._2f{margin-left:-12.785920pt;}
._2e{margin-left:-11.217493pt;}
._24{margin-left:-10.225920pt;}
._28{margin-left:-8.857173pt;}
._26{margin-left:-7.680000pt;}
._22{margin-left:-6.545920pt;}
._25{margin-left:-5.536000pt;}
._23{margin-left:-4.288000pt;}
._27{margin-left:-3.189760pt;}
._18{margin-left:-1.998080pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.198080pt;}
._d{width:2.389333pt;}
._16{width:3.321173pt;}
._10{width:4.416000pt;}
._11{width:5.631573pt;}
._1c{width:6.531840pt;}
._f{width:7.744000pt;}
._9{width:9.230080pt;}
._8{width:10.624000pt;}
._7{width:11.584000pt;}
._c{width:12.608000pt;}
._19{width:13.905920pt;}
._1e{width:14.894080pt;}
._6{width:17.088000pt;}
._e{width:18.112000pt;}
._1a{width:19.328000pt;}
._1b{width:20.266667pt;}
._1d{width:21.205333pt;}
._13{width:22.592000pt;}
._12{width:23.488000pt;}
._5{width:24.576000pt;}
._2d{width:25.518080pt;}
._2a{width:26.752000pt;}
._29{width:27.968000pt;}
._17{width:28.928000pt;}
._1f{width:30.720000pt;}
._20{width:31.616000pt;}
._21{width:32.736000pt;}
._3{width:33.792000pt;}
._4{width:34.712747pt;}
._2{width:35.616000pt;}
._32{width:36.992000pt;}
._33{width:37.884587pt;}
._b{width:40.832000pt;}
._a{width:41.920000pt;}
._2c{width:43.868160pt;}
._2b{width:44.864000pt;}
._15{width:61.312000pt;}
._14{width:63.008000pt;}
._31{width:1036.320000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y7{bottom:18.400000pt;}
.y4{bottom:24.800000pt;}
.y6{bottom:40.320000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.ya{bottom:80.992000pt;}
.y51{bottom:114.432000pt;}
.y43{bottom:115.552000pt;}
.y50{bottom:119.072000pt;}
.y42{bottom:120.192000pt;}
.y45{bottom:124.352000pt;}
.y4f{bottom:129.632000pt;}
.y41{bottom:132.992000pt;}
.y4e{bottom:134.266667pt;}
.y40{bottom:137.626667pt;}
.y4d{bottom:144.986667pt;}
.y44{bottom:145.466667pt;}
.y55{bottom:145.626667pt;}
.y4c{bottom:149.626667pt;}
.y3f{bottom:150.746667pt;}
.y3e{bottom:155.386667pt;}
.y4b{bottom:160.986667pt;}
.y36{bottom:166.586667pt;}
.y3d{bottom:166.906667pt;}
.y35{bottom:187.866667pt;}
.y34{bottom:208.986667pt;}
.y33{bottom:230.106667pt;}
.y32{bottom:251.266667pt;}
.y31{bottom:272.386667pt;}
.y30{bottom:293.666667pt;}
.y2f{bottom:314.786667pt;}
.y2e{bottom:335.906667pt;}
.y4a{bottom:355.746667pt;}
.y2d{bottom:357.026667pt;}
.y49{bottom:377.986667pt;}
.y2c{bottom:378.306667pt;}
.y54{bottom:378.466667pt;}
.y53{bottom:399.106667pt;}
.y2b{bottom:399.426667pt;}
.y2a{bottom:420.546667pt;}
.y29{bottom:441.666667pt;}
.y28{bottom:462.946667pt;}
.y27{bottom:484.066667pt;}
.y26{bottom:505.213333pt;}
.y48{bottom:510.493333pt;}
.y25{bottom:526.333333pt;}
.y24{bottom:547.613333pt;}
.y47{bottom:553.693333pt;}
.y23{bottom:568.733333pt;}
.y22{bottom:589.853333pt;}
.y21{bottom:610.973333pt;}
.y3c{bottom:617.053333pt;}
.y20{bottom:632.253333pt;}
.y1f{bottom:653.373333pt;}
.y52{bottom:674.173333pt;}
.y1e{bottom:674.493333pt;}
.y1d{bottom:695.613333pt;}
.y1c{bottom:716.733333pt;}
.y1b{bottom:738.013333pt;}
.y1a{bottom:759.173333pt;}
.y19{bottom:780.293333pt;}
.y18{bottom:801.413333pt;}
.y17{bottom:822.693333pt;}
.y16{bottom:843.813333pt;}
.y15{bottom:864.933333pt;}
.y14{bottom:885.733333pt;}
.y3b{bottom:886.053333pt;}
.y13{bottom:907.333333pt;}
.y46{bottom:913.413333pt;}
.y12{bottom:928.453333pt;}
.y11{bottom:949.573333pt;}
.y10{bottom:970.373333pt;}
.y39{bottom:970.693333pt;}
.y3a{bottom:976.773333pt;}
.yf{bottom:991.653333pt;}
.y37{bottom:991.973333pt;}
.y38{bottom:998.053333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h8{height:29.440000pt;}
.he{height:33.918750pt;}
.h16{height:36.431250pt;}
.hd{height:42.084375pt;}
.hc{height:44.687500pt;}
.hf{height:52.134375pt;}
.hb{height:52.750000pt;}
.h9{height:58.563750pt;}
.h1e{height:59.718750pt;}
.h1f{height:60.358750pt;}
.h1a{height:60.998750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h12{height:64.198750pt;}
.h3{height:64.500000pt;}
.h20{height:65.781915pt;}
.h15{height:66.118750pt;}
.h1c{height:67.398750pt;}
.h17{height:68.038750pt;}
.h11{height:69.958750pt;}
.h10{height:72.518750pt;}
.h14{height:73.158750pt;}
.h4{height:73.454062pt;}
.h1b{height:75.078750pt;}
.h18{height:76.358750pt;}
.h1d{height:77.638750pt;}
.h13{height:78.278750pt;}
.h19{height:85.318750pt;}
.h2{height:97.600000pt;}
.h5{height:114.889687pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:15.040000pt;}
.w8{width:15.200000pt;}
.w7{width:15.232000pt;}
.w6{width:44.160000pt;}
.w4{width:56.506667pt;}
.wa{width:80.800000pt;}
.w2{width:119.232000pt;}
.w3{width:618.013333pt;}
.wb{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.600000pt;}
.x9{left:7.200000pt;}
.x7{left:8.320000pt;}
.x6{left:15.034667pt;}
.x2{left:16.639976pt;}
.x1{left:30.719974pt;}
.x3{left:35.199976pt;}
.x5{left:54.714667pt;}
.xd{left:63.720000pt;}
.x3d{left:103.391988pt;}
.x4{left:119.232000pt;}
.xa{left:122.911988pt;}
.x21{left:127.231988pt;}
.x13{left:128.831988pt;}
.x3c{left:151.386655pt;}
.x19{left:170.106655pt;}
.x16{left:184.186655pt;}
.x2d{left:191.066655pt;}
.x2a{left:200.991988pt;}
.x1e{left:210.906643pt;}
.x1f{left:216.346655pt;}
.x22{left:235.711988pt;}
.x35{left:271.266655pt;}
.x2b{left:296.506655pt;}
.x18{left:300.706655pt;}
.x23{left:302.431988pt;}
.x17{left:310.946655pt;}
.x20{left:314.946655pt;}
.x15{left:316.546655pt;}
.x25{left:318.466643pt;}
.x24{left:320.351988pt;}
.x26{left:323.906655pt;}
.x28{left:341.026643pt;}
.x29{left:346.466655pt;}
.x14{left:368.706655pt;}
.x2e{left:385.826655pt;}
.x2f{left:393.666655pt;}
.x36{left:420.226655pt;}
.x30{left:428.866655pt;}
.x1c{left:430.466643pt;}
.x2c{left:431.386655pt;}
.x1d{left:435.906655pt;}
.x1a{left:449.693310pt;}
.x37{left:451.906655pt;}
.x1b{left:455.133322pt;}
.x32{left:460.573310pt;}
.x33{left:466.013322pt;}
.x34{left:471.773322pt;}
.x38{left:476.066655pt;}
.x27{left:505.186655pt;}
.x39{left:511.106655pt;}
.x3a{left:527.426655pt;}
.x31{left:540.066655pt;}
.x3b{left:548.866655pt;}
.xb{left:559.933333pt;}
.xc{left:604.093333pt;}
.xe{left:619.333333pt;}
.xf{left:634.533333pt;}
.x10{left:649.573333pt;}
.x11{left:664.773333pt;}
.x8{left:737.253333pt;}
}




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