
    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_51945ada225e1f59c93b9bd8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.699000;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_e65492161b8a940a5231dbc5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_888cf1590ab9c1a2d3f906cf.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4345f8f94e6e873bc8df2882.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_b9e91f7317134fa42fe6640e.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_325e3f971e41bbbde6c89977.woff')format("woff");}.ff6{font-family:ff6;line-height:0.887474;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_9be88ce268467220528b7fb5.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_edf46140dc202bffe52c94ac.woff')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_0839547a77b97cddc4bc7fc1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_36a9aef246325eae05af9835.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_8aa68ebe97e0b3b669d6f89d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.390000;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_6e00999e280f31659453378f.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a50bbc9c13c4832b987c9dd6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.824000;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_e85fdecf86a3b0bc6916bc8d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.733000;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:fff;src:url('chunks/assets/font_ec21a13c926c17c2f5b71e6a.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d30d5a8b0164efe2f3007617.woff')format("woff");}.ff10{font-family:ff10;line-height:0.626000;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:ff11;src:url('chunks/assets/font_3f0d2bd02565609c4c7a201a.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_05fdd79ec9649b65aff857c7.woff')format("woff");}.ff12{font-family:ff12;line-height:0.856000;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);}
.v5{vertical-align:-14.946000px;}
.v2{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.814000px;}
.v4{vertical-align:8.964000px;}
.v1{vertical-align:13.596000px;}
.v3{vertical-align:15.108000px;}
.v7{vertical-align:24.684000px;}
.v6{vertical-align:56.790000px;}
.lsa{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001690px;}
.ls20{letter-spacing:0.002015px;}
.ls6{letter-spacing:0.003588px;}
.ls10{letter-spacing:0.011772px;}
.ls24{letter-spacing:0.012212px;}
.ls14{letter-spacing:0.016417px;}
.lsc{letter-spacing:0.018477px;}
.ls3{letter-spacing:0.018801px;}
.lse{letter-spacing:0.023948px;}
.ls1e{letter-spacing:0.026560px;}
.ls27{letter-spacing:0.027063px;}
.lsb{letter-spacing:0.027196px;}
.ls21{letter-spacing:0.028664px;}
.ls16{letter-spacing:0.896634px;}
.ls26{letter-spacing:2.630126px;}
.ls12{letter-spacing:2.989140px;}
.ls19{letter-spacing:2.990525px;}
.ls5{letter-spacing:3.466985px;}
.ls23{letter-spacing:3.526760px;}
.ls9{letter-spacing:4.841824px;}
.ls18{letter-spacing:4.854544px;}
.ls1a{letter-spacing:4.881193px;}
.ls1d{letter-spacing:5.917784px;}
.ls0{letter-spacing:6.754643px;}
.ls15{letter-spacing:9.922750px;}
.ls1c{letter-spacing:9.982525px;}
.ls22{letter-spacing:12.134447px;}
.ls1b{letter-spacing:13.270183px;}
.lsf{letter-spacing:14.286368px;}
.ls7{letter-spacing:15.302554px;}
.ls4{letter-spacing:16.617617px;}
.lsd{letter-spacing:19.128192px;}
.ls28{letter-spacing:21.041011px;}
.ls2{letter-spacing:23.432035px;}
.ls1{letter-spacing:29.887800px;}
.ls11{letter-spacing:41.887140px;}
.ls25{letter-spacing:791.907149px;}
.ls1f{letter-spacing:803.264513px;}
.ls13{letter-spacing:1121.808685px;}
.ls17{letter-spacing:1123.900831px;}
.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;}
}
.ws2e{word-spacing:-75.078154px;}
.ws28{word-spacing:-59.775600px;}
.ws40{word-spacing:-38.937826px;}
.ws27{word-spacing:-29.015076px;}
.ws29{word-spacing:-28.955301px;}
.ws4c{word-spacing:-26.899125px;}
.ws19{word-spacing:-16.605662px;}
.ws24{word-spacing:-13.531962px;}
.ws2b{word-spacing:-12.266820px;}
.ws2a{word-spacing:-8.507337px;}
.ws43{word-spacing:-7.198885px;}
.ws26{word-spacing:-3.335478px;}
.ws33{word-spacing:-0.765128px;}
.ws23{word-spacing:-0.645576px;}
.ws1d{word-spacing:-0.059776px;}
.ws42{word-spacing:-0.047820px;}
.ws3e{word-spacing:-0.041843px;}
.ws41{word-spacing:-0.021171px;}
.ws35{word-spacing:0.000000px;}
.ws38{word-spacing:0.549936px;}
.ws31{word-spacing:1.028140px;}
.ws30{word-spacing:1.087916px;}
.ws3{word-spacing:1.318061px;}
.ws49{word-spacing:2.582306px;}
.ws8{word-spacing:2.663021px;}
.ws13{word-spacing:3.093408px;}
.ws2{word-spacing:3.299613px;}
.ws4b{word-spacing:3.359389px;}
.wsa{word-spacing:3.577594px;}
.wsf{word-spacing:3.685190px;}
.ws3d{word-spacing:3.764345px;}
.ws3c{word-spacing:3.767406px;}
.ws15{word-spacing:3.957145px;}
.ws16{word-spacing:4.136472px;}
.wsb{word-spacing:4.276973px;}
.ws4d{word-spacing:4.435350px;}
.ws1e{word-spacing:4.483200px;}
.ws37{word-spacing:4.495125px;}
.ws11{word-spacing:4.653562px;}
.ws3a{word-spacing:4.853779px;}
.ws5{word-spacing:5.245344px;}
.ws14{word-spacing:5.379825px;}
.ws36{word-spacing:5.391759px;}
.ws45{word-spacing:5.989515px;}
.ws7{word-spacing:6.052320px;}
.ws4a{word-spacing:6.168842px;}
.ws2d{word-spacing:6.348169px;}
.ws48{word-spacing:7.364354px;}
.wsc{word-spacing:8.204256px;}
.ws47{word-spacing:8.500090px;}
.ws3b{word-spacing:8.615312px;}
.ws39{word-spacing:8.619642px;}
.ws10{word-spacing:9.065030px;}
.ws1c{word-spacing:9.217398px;}
.ws44{word-spacing:9.403399px;}
.wse{word-spacing:9.495418px;}
.ws6{word-spacing:10.409990px;}
.ws12{word-spacing:10.678982px;}
.ws1a{word-spacing:11.668197px;}
.ws17{word-spacing:11.967075px;}
.ws34{word-spacing:12.385504px;}
.ws25{word-spacing:15.183002px;}
.ws32{word-spacing:18.171782px;}
.ws22{word-spacing:18.291334px;}
.ws4{word-spacing:19.152230px;}
.ws9{word-spacing:19.313626px;}
.ws2f{word-spacing:20.263928px;}
.ws1f{word-spacing:21.280114px;}
.ws21{word-spacing:21.339889px;}
.ws20{word-spacing:22.296299px;}
.ws1{word-spacing:23.312640px;}
.wsd{word-spacing:24.424474px;}
.ws2c{word-spacing:26.361040px;}
.ws3f{word-spacing:27.404404px;}
.ws1b{word-spacing:29.050942px;}
.ws18{word-spacing:29.290044px;}
.ws0{word-spacing:31.091012px;}
.ws46{word-spacing:69.937725px;}
._16{margin-left:-28.752064px;}
._18{margin-left:-15.233218px;}
._1b{margin-left:-8.091257px;}
._10{margin-left:-5.973260px;}
._3{margin-left:-4.626662px;}
._0{margin-left:-2.685602px;}
._2{margin-left:-1.613941px;}
._1{width:1.936742px;}
._f{width:3.763037px;}
._14{width:6.515540px;}
._13{width:7.609406px;}
._12{width:13.473235px;}
._11{width:16.708945px;}
._6{width:21.237394px;}
._1c{width:22.769033px;}
._7{width:24.850532px;}
._19{width:26.181713px;}
._4{width:27.652378px;}
._d{width:29.285744px;}
._15{width:31.776696px;}
._c{width:33.620896px;}
._17{width:35.273340px;}
._1d{width:38.623349px;}
._8{width:40.398270px;}
._9{width:42.823516px;}
._5{width:45.943823px;}
._1a{width:47.532300px;}
._b{width:52.602528px;}
._e{width:80.697600px;}
._a{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs5{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2c{bottom:59.617500px;}
.y2d{bottom:61.467000px;}
.y2b{bottom:77.550000px;}
.y2a{bottom:95.482500px;}
.y29{bottom:122.382000px;}
.y52{bottom:132.613500px;}
.y28{bottom:140.314500px;}
.y51{bottom:150.546000px;}
.y27{bottom:167.214000px;}
.y50{bottom:183.277500px;}
.y26{bottom:185.146500px;}
.y25{bottom:212.046000px;}
.y24{bottom:229.978500px;}
.y4f{bottom:232.696500px;}
.y4e{bottom:250.629000px;}
.y23{bottom:256.878000px;}
.y4d{bottom:268.561500px;}
.y22{bottom:274.810500px;}
.y4c{bottom:286.494000px;}
.y21{bottom:301.710000px;}
.y4b{bottom:304.428000px;}
.y20{bottom:319.642500px;}
.y4a{bottom:337.159500px;}
.y1f{bottom:352.374000px;}
.y49{bottom:386.577000px;}
.y1e{bottom:400.506000px;}
.y48{bottom:404.511000px;}
.y1d{bottom:418.438500px;}
.y1c{bottom:436.371000px;}
.y47{bottom:437.241000px;}
.y1b{bottom:463.956000px;}
.y46{bottom:486.660000px;}
.y1a{bottom:504.501000px;}
.y45{bottom:516.549000px;}
.y19{bottom:522.433500px;}
.y18{bottom:540.367500px;}
.y44{bottom:546.436500px;}
.y17{bottom:558.300000px;}
.y16{bottom:576.232500px;}
.y43{bottom:576.324000px;}
.y15{bottom:594.165000px;}
.y42{bottom:606.211500px;}
.y14{bottom:626.896500px;}
.y41{bottom:638.943000px;}
.y13{bottom:675.028500px;}
.y40{bottom:688.362000px;}
.y12{bottom:691.467000px;}
.y11{bottom:707.905500px;}
.y3f{bottom:710.778000px;}
.y10{bottom:724.344000px;}
.y3e{bottom:729.499500px;}
.y3d{bottom:733.194000px;}
.yf{bottom:740.782500px;}
.ye{bottom:757.219500px;}
.y3c{bottom:757.464000px;}
.yd{bottom:773.658000px;}
.y3b{bottom:779.880000px;}
.yc{bottom:790.096500px;}
.y3a{bottom:802.296000px;}
.yb{bottom:806.535000px;}
.y39{bottom:822.319500px;}
.ya{bottom:822.973500px;}
.y9{bottom:839.412000px;}
.y38{bottom:839.952000px;}
.y8{bottom:855.850500px;}
.y7{bottom:872.289000px;}
.y37{bottom:887.628000px;}
.y6{bottom:888.241500px;}
.y5{bottom:912.151500px;}
.y4{bottom:930.084000px;}
.y36{bottom:937.045500px;}
.y35{bottom:954.979500px;}
.y34{bottom:972.912000px;}
.y3{bottom:976.411500px;}
.y33{bottom:1005.643500px;}
.y2{bottom:1011.579000px;}
.y55{bottom:1019.196000px;}
.y54{bottom:1049.083500px;}
.y1{bottom:1054.917000px;}
.y32{bottom:1055.062500px;}
.y31{bottom:1072.995000px;}
.y53{bottom:1078.972500px;}
.y30{bottom:1090.927500px;}
.y2f{bottom:1108.860000px;}
.y2e{bottom:1141.591500px;}
.hd{height:27.741776px;}
.h7{height:36.744307px;}
.h5{height:40.348800px;}
.h4{height:44.831700px;}
.h9{height:50.211840px;}
.h3{height:50.498765px;}
.h6{height:53.944800px;}
.he{height:54.517916px;}
.hc{height:56.790000px;}
.hf{height:59.609700px;}
.ha{height:59.939700px;}
.hb{height:59.945700px;}
.h8{height:60.254040px;}
.h2{height:70.548709px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:106.299000px;}
.x17{left:124.564500px;}
.x4{left:128.715000px;}
.x8{left:143.659500px;}
.x7{left:164.394000px;}
.xa{left:191.479500px;}
.xb{left:214.248000px;}
.xc{left:232.783500px;}
.x1{left:271.621500px;}
.x2{left:307.153500px;}
.x3{left:312.625500px;}
.x16{left:323.373000px;}
.xf{left:342.172500px;}
.x13{left:343.404000px;}
.x14{left:348.040500px;}
.x10{left:414.004500px;}
.x6{left:416.016000px;}
.x15{left:417.748500px;}
.x11{left:429.402000px;}
.xe{left:442.720500px;}
.xd{left:447.336000px;}
.x9{left:734.448000px;}
.x12{left:767.518500px;}
@media print{
.v5{vertical-align:-13.285333pt;}
.v2{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.168000pt;}
.v4{vertical-align:7.968000pt;}
.v1{vertical-align:12.085333pt;}
.v3{vertical-align:13.429333pt;}
.v7{vertical-align:21.941333pt;}
.v6{vertical-align:50.480000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001503pt;}
.ls20{letter-spacing:0.001791pt;}
.ls6{letter-spacing:0.003189pt;}
.ls10{letter-spacing:0.010464pt;}
.ls24{letter-spacing:0.010855pt;}
.ls14{letter-spacing:0.014593pt;}
.lsc{letter-spacing:0.016424pt;}
.ls3{letter-spacing:0.016712pt;}
.lse{letter-spacing:0.021287pt;}
.ls1e{letter-spacing:0.023609pt;}
.ls27{letter-spacing:0.024056pt;}
.lsb{letter-spacing:0.024174pt;}
.ls21{letter-spacing:0.025479pt;}
.ls16{letter-spacing:0.797008pt;}
.ls26{letter-spacing:2.337890pt;}
.ls12{letter-spacing:2.657014pt;}
.ls19{letter-spacing:2.658245pt;}
.ls5{letter-spacing:3.081764pt;}
.ls23{letter-spacing:3.134898pt;}
.ls9{letter-spacing:4.303843pt;}
.ls18{letter-spacing:4.315150pt;}
.ls1a{letter-spacing:4.338838pt;}
.ls1d{letter-spacing:5.260253pt;}
.ls0{letter-spacing:6.004127pt;}
.ls15{letter-spacing:8.820222pt;}
.ls1c{letter-spacing:8.873356pt;}
.ls22{letter-spacing:10.786175pt;}
.ls1b{letter-spacing:11.795718pt;}
.lsf{letter-spacing:12.698994pt;}
.ls7{letter-spacing:13.602270pt;}
.ls4{letter-spacing:14.771215pt;}
.lsd{letter-spacing:17.002837pt;}
.ls28{letter-spacing:18.703121pt;}
.ls2{letter-spacing:20.828476pt;}
.ls1{letter-spacing:26.566933pt;}
.ls11{letter-spacing:37.233014pt;}
.ls25{letter-spacing:703.917466pt;}
.ls1f{letter-spacing:714.012900pt;}
.ls13{letter-spacing:997.163276pt;}
.ls17{letter-spacing:999.022961pt;}
.ws2e{word-spacing:-66.736137pt;}
.ws28{word-spacing:-53.133867pt;}
.ws40{word-spacing:-34.611401pt;}
.ws27{word-spacing:-25.791179pt;}
.ws29{word-spacing:-25.738045pt;}
.ws4c{word-spacing:-23.910333pt;}
.ws19{word-spacing:-14.760588pt;}
.ws24{word-spacing:-12.028410pt;}
.ws2b{word-spacing:-10.903840pt;}
.ws2a{word-spacing:-7.562078pt;}
.ws43{word-spacing:-6.399009pt;}
.ws26{word-spacing:-2.964870pt;}
.ws33{word-spacing:-0.680113pt;}
.ws23{word-spacing:-0.573846pt;}
.ws1d{word-spacing:-0.053134pt;}
.ws42{word-spacing:-0.042507pt;}
.ws3e{word-spacing:-0.037194pt;}
.ws41{word-spacing:-0.018819pt;}
.ws35{word-spacing:0.000000pt;}
.ws38{word-spacing:0.488832pt;}
.ws31{word-spacing:0.913903pt;}
.ws30{word-spacing:0.967036pt;}
.ws3{word-spacing:1.171610pt;}
.ws49{word-spacing:2.295383pt;}
.ws8{word-spacing:2.367130pt;}
.ws13{word-spacing:2.749696pt;}
.ws2{word-spacing:2.932989pt;}
.ws4b{word-spacing:2.986123pt;}
.wsa{word-spacing:3.180083pt;}
.wsf{word-spacing:3.275725pt;}
.ws3d{word-spacing:3.346085pt;}
.ws3c{word-spacing:3.348805pt;}
.ws15{word-spacing:3.517462pt;}
.ws16{word-spacing:3.676864pt;}
.wsb{word-spacing:3.801754pt;}
.ws4d{word-spacing:3.942533pt;}
.ws1e{word-spacing:3.985067pt;}
.ws37{word-spacing:3.995667pt;}
.ws11{word-spacing:4.136499pt;}
.ws3a{word-spacing:4.314470pt;}
.ws5{word-spacing:4.662528pt;}
.ws14{word-spacing:4.782067pt;}
.ws36{word-spacing:4.792675pt;}
.ws45{word-spacing:5.324013pt;}
.ws7{word-spacing:5.379840pt;}
.ws4a{word-spacing:5.483415pt;}
.ws2d{word-spacing:5.642817pt;}
.ws48{word-spacing:6.546092pt;}
.wsc{word-spacing:7.292672pt;}
.ws47{word-spacing:7.555636pt;}
.ws3b{word-spacing:7.658055pt;}
.ws39{word-spacing:7.661904pt;}
.ws10{word-spacing:8.057805pt;}
.ws1c{word-spacing:8.193242pt;}
.ws44{word-spacing:8.358577pt;}
.wse{word-spacing:8.440371pt;}
.ws6{word-spacing:9.253325pt;}
.ws12{word-spacing:9.492429pt;}
.ws1a{word-spacing:10.371731pt;}
.ws17{word-spacing:10.637400pt;}
.ws34{word-spacing:11.009337pt;}
.ws25{word-spacing:13.496002pt;}
.ws32{word-spacing:16.152695pt;}
.ws22{word-spacing:16.258963pt;}
.ws4{word-spacing:17.024205pt;}
.ws9{word-spacing:17.167667pt;}
.ws2f{word-spacing:18.012381pt;}
.ws1f{word-spacing:18.915657pt;}
.ws21{word-spacing:18.968790pt;}
.ws20{word-spacing:19.818932pt;}
.ws1{word-spacing:20.722347pt;}
.wsd{word-spacing:21.710643pt;}
.ws2c{word-spacing:23.432035pt;}
.ws3f{word-spacing:24.359470pt;}
.ws1b{word-spacing:25.823059pt;}
.ws18{word-spacing:26.035595pt;}
.ws0{word-spacing:27.636455pt;}
.ws46{word-spacing:62.166867pt;}
._16{margin-left:-25.557390pt;}
._18{margin-left:-13.540639pt;}
._1b{margin-left:-7.192228pt;}
._10{margin-left:-5.309565pt;}
._3{margin-left:-4.112589pt;}
._0{margin-left:-2.387202pt;}
._2{margin-left:-1.434614pt;}
._1{width:1.721549pt;}
._f{width:3.344922pt;}
._14{width:5.791591pt;}
._13{width:6.763916pt;}
._12{width:11.976209pt;}
._11{width:14.852396pt;}
._6{width:18.877683pt;}
._1c{width:20.239141pt;}
._7{width:22.089362pt;}
._19{width:23.272634pt;}
._4{width:24.579891pt;}
._d{width:26.031773pt;}
._15{width:28.245952pt;}
._c{width:29.885241pt;}
._17{width:31.354080pt;}
._1d{width:34.331866pt;}
._8{width:35.909573pt;}
._9{width:38.065347pt;}
._5{width:40.838954pt;}
._1a{width:42.250933pt;}
._b{width:46.757803pt;}
._e{width:71.731200pt;}
._a{width:86.077200pt;}
.fs6{font-size:26.566933pt;}
.fs5{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:52.993333pt;}
.y2d{bottom:54.637333pt;}
.y2b{bottom:68.933333pt;}
.y2a{bottom:84.873333pt;}
.y29{bottom:108.784000pt;}
.y52{bottom:117.878667pt;}
.y28{bottom:124.724000pt;}
.y51{bottom:133.818667pt;}
.y27{bottom:148.634667pt;}
.y50{bottom:162.913333pt;}
.y26{bottom:164.574667pt;}
.y25{bottom:188.485333pt;}
.y24{bottom:204.425333pt;}
.y4f{bottom:206.841333pt;}
.y4e{bottom:222.781333pt;}
.y23{bottom:228.336000pt;}
.y4d{bottom:238.721333pt;}
.y22{bottom:244.276000pt;}
.y4c{bottom:254.661333pt;}
.y21{bottom:268.186667pt;}
.y4b{bottom:270.602667pt;}
.y20{bottom:284.126667pt;}
.y4a{bottom:299.697333pt;}
.y1f{bottom:313.221333pt;}
.y49{bottom:343.624000pt;}
.y1e{bottom:356.005333pt;}
.y48{bottom:359.565333pt;}
.y1d{bottom:371.945333pt;}
.y1c{bottom:387.885333pt;}
.y47{bottom:388.658667pt;}
.y1b{bottom:412.405333pt;}
.y46{bottom:432.586667pt;}
.y1a{bottom:448.445333pt;}
.y45{bottom:459.154667pt;}
.y19{bottom:464.385333pt;}
.y18{bottom:480.326667pt;}
.y44{bottom:485.721333pt;}
.y17{bottom:496.266667pt;}
.y16{bottom:512.206667pt;}
.y43{bottom:512.288000pt;}
.y15{bottom:528.146667pt;}
.y42{bottom:538.854667pt;}
.y14{bottom:557.241333pt;}
.y41{bottom:567.949333pt;}
.y13{bottom:600.025333pt;}
.y40{bottom:611.877333pt;}
.y12{bottom:614.637333pt;}
.y11{bottom:629.249333pt;}
.y3f{bottom:631.802667pt;}
.y10{bottom:643.861333pt;}
.y3e{bottom:648.444000pt;}
.y3d{bottom:651.728000pt;}
.yf{bottom:658.473333pt;}
.ye{bottom:673.084000pt;}
.y3c{bottom:673.301333pt;}
.yd{bottom:687.696000pt;}
.y3b{bottom:693.226667pt;}
.yc{bottom:702.308000pt;}
.y3a{bottom:713.152000pt;}
.yb{bottom:716.920000pt;}
.y39{bottom:730.950667pt;}
.ya{bottom:731.532000pt;}
.y9{bottom:746.144000pt;}
.y38{bottom:746.624000pt;}
.y8{bottom:760.756000pt;}
.y7{bottom:775.368000pt;}
.y37{bottom:789.002667pt;}
.y6{bottom:789.548000pt;}
.y5{bottom:810.801333pt;}
.y4{bottom:826.741333pt;}
.y36{bottom:832.929333pt;}
.y35{bottom:848.870667pt;}
.y34{bottom:864.810667pt;}
.y3{bottom:867.921333pt;}
.y33{bottom:893.905333pt;}
.y2{bottom:899.181333pt;}
.y55{bottom:905.952000pt;}
.y54{bottom:932.518667pt;}
.y1{bottom:937.704000pt;}
.y32{bottom:937.833333pt;}
.y31{bottom:953.773333pt;}
.y53{bottom:959.086667pt;}
.y30{bottom:969.713333pt;}
.y2f{bottom:985.653333pt;}
.y2e{bottom:1014.748000pt;}
.hd{height:24.659357pt;}
.h7{height:32.661606pt;}
.h5{height:35.865600pt;}
.h4{height:39.850400pt;}
.h9{height:44.632747pt;}
.h3{height:44.887791pt;}
.h6{height:47.950933pt;}
.he{height:48.460370pt;}
.hc{height:50.480000pt;}
.hf{height:52.986400pt;}
.ha{height:53.279733pt;}
.hb{height:53.285067pt;}
.h8{height:53.559147pt;}
.h2{height:62.709964pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.488000pt;}
.x17{left:110.724000pt;}
.x4{left:114.413333pt;}
.x8{left:127.697333pt;}
.x7{left:146.128000pt;}
.xa{left:170.204000pt;}
.xb{left:190.442667pt;}
.xc{left:206.918667pt;}
.x1{left:241.441333pt;}
.x2{left:273.025333pt;}
.x3{left:277.889333pt;}
.x16{left:287.442667pt;}
.xf{left:304.153333pt;}
.x13{left:305.248000pt;}
.x14{left:309.369333pt;}
.x10{left:368.004000pt;}
.x6{left:369.792000pt;}
.x15{left:371.332000pt;}
.x11{left:381.690667pt;}
.xe{left:393.529333pt;}
.xd{left:397.632000pt;}
.x9{left:652.842667pt;}
.x12{left:682.238667pt;}
}




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