
    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_93b54bb968033808df998033.woff')format("woff");}.ff1{font-family:ff1;line-height:0.723000;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_a22161f4af531b458f10c2ad.woff')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_706ed892b77972f3b2ba96a0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3386a55c640145baeae76374.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_5032526fbaa806adaa35f934.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_d575f8549882b1a0c4d5a093.woff')format("woff");}.ff6{font-family:ff6;line-height:0.706000;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_e9fe89783553887e2440c037.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2a02dbe53981ad42d8a90524.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e3ae55ed9c7be91c0fb86b1f.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0c1c884a15dd6eead619fade.woff')format("woff");}.ffa{font-family:ffa;line-height:0.738000;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_43c0a7b07204136c60ed31cd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.707000;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_bec11f5f247e97f8da9c1666.woff')format("woff");}.ffc{font-family:ffc;line-height:0.727000;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_b7943ae3dbd4fc363ec13af2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.049000;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_e3b1ff9315d0773fed4c4858.woff')format("woff");}.ffe{font-family:ffe;line-height:0.693000;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_1f3a120a4f8cef6737f8da5c.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0918c23944aa67db93899ed7.woff')format("woff");}.ff10{font-family:ff10;line-height:0.756000;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_22b1c8c68434a4a284f69d6b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.923000;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_c731dd3dfca58509c96b9b79.woff')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v3{vertical-align:-24.684000px;}
.v4{vertical-align:-8.964000px;}
.v1{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.568000px;}
.v7{vertical-align:21.690000px;}
.v2{vertical-align:24.684000px;}
.v5{vertical-align:31.050000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.976488px;}
.ls12{letter-spacing:4.244068px;}
.lsc{letter-spacing:4.303843px;}
.ls11{letter-spacing:6.515540px;}
.ls9{letter-spacing:8.308808px;}
.lsd{letter-spacing:9.425732px;}
.ls1{letter-spacing:13.270183px;}
.ls14{letter-spacing:13.329959px;}
.lsb{letter-spacing:15.661207px;}
.ls10{letter-spacing:16.557841px;}
.lsf{letter-spacing:16.617617px;}
.lsa{letter-spacing:17.334924px;}
.ls5{letter-spacing:18.291334px;}
.ls4{letter-spacing:19.905275px;}
.ls8{letter-spacing:22.535401px;}
.ls15{letter-spacing:22.911916px;}
.ls13{letter-spacing:23.351732px;}
.ls0{letter-spacing:27.560832px;}
.lse{letter-spacing:27.971732px;}
.ls6{letter-spacing:31.681068px;}
.ls7{letter-spacing:31.973732px;}
.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;}
}
.ws29{word-spacing:-59.775600px;}
.ws17{word-spacing:-38.937826px;}
.ws26{word-spacing:-32.407291px;}
.ws1b{word-spacing:-26.899125px;}
.ws18{word-spacing:-21.967470px;}
.ws2a{word-spacing:-16.605662px;}
.ws16{word-spacing:-3.335478px;}
.ws22{word-spacing:-2.737722px;}
.ws21{word-spacing:-2.677947px;}
.ws20{word-spacing:-2.618171px;}
.ws2b{word-spacing:-1.661762px;}
.ws28{word-spacing:-1.601986px;}
.ws7{word-spacing:-0.564883px;}
.ws19{word-spacing:-0.041843px;}
.ws12{word-spacing:-0.026899px;}
.ws1a{word-spacing:0.000000px;}
.ws15{word-spacing:0.011955px;}
.ws10{word-spacing:0.080698px;}
.ws27{word-spacing:2.163877px;}
.ws23{word-spacing:2.343204px;}
.ws14{word-spacing:2.582306px;}
.ws6{word-spacing:3.299613px;}
.ws1e{word-spacing:3.359389px;}
.ws11{word-spacing:3.416198px;}
.ws1{word-spacing:3.873485px;}
.ws1f{word-spacing:4.483200px;}
.ws13{word-spacing:5.379825px;}
.ws1d{word-spacing:6.886149px;}
.ws24{word-spacing:7.782783px;}
.wsd{word-spacing:8.688442px;}
.wsa{word-spacing:9.334022px;}
.wsf{word-spacing:9.495418px;}
.ws8{word-spacing:10.302394px;}
.ws1c{word-spacing:10.771563px;}
.wsc{word-spacing:13.637894px;}
.ws5{word-spacing:19.845499px;}
.ws25{word-spacing:21.339889px;}
.ws3{word-spacing:22.834279px;}
.wse{word-spacing:24.854861px;}
.ws9{word-spacing:25.446643px;}
.ws4{word-spacing:25.643732px;}
.wsb{word-spacing:29.427725px;}
.ws0{word-spacing:31.091012px;}
.ws2{word-spacing:69.937725px;}
._14{margin-left:-28.975092px;}
._0{margin-left:-10.845702px;}
._e{margin-left:-7.342397px;}
._6{margin-left:-5.630836px;}
._5{margin-left:-3.825638px;}
._1{margin-left:-2.685602px;}
._2{margin-left:-1.187882px;}
._3{width:1.936742px;}
._15{width:3.997192px;}
._13{width:15.031898px;}
._10{width:16.131782px;}
._11{width:17.163227px;}
._f{width:20.319404px;}
._7{width:22.894055px;}
._c{width:23.935970px;}
._b{width:25.392845px;}
._4{width:27.205528px;}
._9{width:29.644553px;}
._a{width:32.876774px;}
._8{width:46.374221px;}
._12{width:80.697600px;}
._d{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1b{bottom:134.047500px;}
.y1a{bottom:180.228000px;}
.y35{bottom:192.516000px;}
.y19{bottom:213.105000px;}
.y34{bottom:220.387500px;}
.y33{bottom:253.119000px;}
.y18{bottom:260.781000px;}
.y27{bottom:273.111000px;}
.y26{bottom:291.043500px;}
.y32{bottom:301.669500px;}
.y17{bottom:310.200000px;}
.y31{bottom:319.602000px;}
.y16{bottom:328.132500px;}
.y3b{bottom:337.743000px;}
.y30{bottom:352.333500px;}
.y3a{bottom:355.675500px;}
.y15{bottom:360.864000px;}
.y37{bottom:368.983500px;}
.y39{bottom:373.608000px;}
.y2f{bottom:400.884000px;}
.y14{bottom:410.281500px;}
.y2e{bottom:418.816500px;}
.y2d{bottom:436.749000px;}
.y13{bottom:443.013000px;}
.y2c{bottom:469.480500px;}
.y12{bottom:492.432000px;}
.y2b{bottom:506.031000px;}
.y11{bottom:508.870500px;}
.y10{bottom:525.309000px;}
.y2a{bottom:536.604000px;}
.y25{bottom:539.569500px;}
.yf{bottom:541.747500px;}
.ye{bottom:558.186000px;}
.yd{bottom:574.624500px;}
.y29{bottom:581.139000px;}
.yc{bottom:591.063000px;}
.y36{bottom:604.615500px;}
.yb{bottom:607.501500px;}
.y38{bottom:622.134000px;}
.ya{bottom:623.938500px;}
.y9{bottom:647.364000px;}
.y8{bottom:678.747000px;}
.y7{bottom:696.679500px;}
.y6{bottom:714.612000px;}
.y5{bottom:747.343500px;}
.y24{bottom:793.345500px;}
.y28{bottom:803.877000px;}
.y4{bottom:811.705500px;}
.y23{bottom:829.066500px;}
.y3{bottom:846.874500px;}
.y22{bottom:878.485500px;}
.y2{bottom:890.211000px;}
.y21{bottom:892.026000px;}
.y20{bottom:896.418000px;}
.y1f{bottom:917.256000px;}
.y1{bottom:923.088000px;}
.y1e{bottom:935.188500px;}
.y1d{bottom:953.121000px;}
.y1c{bottom:985.852500px;}
.h6{height:37.658880px;}
.h7{height:40.348800px;}
.hd{height:41.484266px;}
.h4{height:41.842920px;}
.h5{height:44.831700px;}
.hc{height:50.211840px;}
.he{height:50.268632px;}
.h2{height:50.498765px;}
.h8{height:56.066100px;}
.h3{height:60.254040px;}
.h9{height:60.598349px;}
.hb{height:62.399700px;}
.ha{height:62.432100px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:200.652000px;}
.xb{left:223.068000px;}
.x1{left:230.445000px;}
.x10{left:233.197500px;}
.x8{left:238.012500px;}
.xd{left:244.300500px;}
.xf{left:257.190000px;}
.x7{left:258.747000px;}
.xe{left:270.079500px;}
.x3{left:317.313000px;}
.x2{left:330.846000px;}
.x9{left:353.920500px;}
.x4{left:399.661500px;}
.x6{left:427.995000px;}
.xa{left:454.699500px;}
.xc{left:555.070500px;}
@media print{
.v3{vertical-align:-21.941333pt;}
.v4{vertical-align:-7.968000pt;}
.v1{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.616000pt;}
.v7{vertical-align:19.280000pt;}
.v2{vertical-align:21.941333pt;}
.v5{vertical-align:27.600000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.645767pt;}
.ls12{letter-spacing:3.772505pt;}
.lsc{letter-spacing:3.825638pt;}
.ls11{letter-spacing:5.791591pt;}
.ls9{letter-spacing:7.385607pt;}
.lsd{letter-spacing:8.378428pt;}
.ls1{letter-spacing:11.795718pt;}
.ls14{letter-spacing:11.848852pt;}
.lsb{letter-spacing:13.921073pt;}
.ls10{letter-spacing:14.718081pt;}
.lsf{letter-spacing:14.771215pt;}
.lsa{letter-spacing:15.408821pt;}
.ls5{letter-spacing:16.258963pt;}
.ls4{letter-spacing:17.693578pt;}
.ls8{letter-spacing:20.031468pt;}
.ls15{letter-spacing:20.366148pt;}
.ls13{letter-spacing:20.757095pt;}
.ls0{letter-spacing:24.498517pt;}
.lse{letter-spacing:24.863761pt;}
.ls6{letter-spacing:28.160949pt;}
.ls7{letter-spacing:28.421095pt;}
.ws29{word-spacing:-53.133867pt;}
.ws17{word-spacing:-34.611401pt;}
.ws26{word-spacing:-28.806481pt;}
.ws1b{word-spacing:-23.910333pt;}
.ws18{word-spacing:-19.526640pt;}
.ws2a{word-spacing:-14.760588pt;}
.ws16{word-spacing:-2.964870pt;}
.ws22{word-spacing:-2.433531pt;}
.ws21{word-spacing:-2.380397pt;}
.ws20{word-spacing:-2.327263pt;}
.ws2b{word-spacing:-1.477121pt;}
.ws28{word-spacing:-1.423988pt;}
.ws7{word-spacing:-0.502118pt;}
.ws19{word-spacing:-0.037194pt;}
.ws12{word-spacing:-0.023910pt;}
.ws1a{word-spacing:0.000000pt;}
.ws15{word-spacing:0.010627pt;}
.ws10{word-spacing:0.071731pt;}
.ws27{word-spacing:1.923446pt;}
.ws23{word-spacing:2.082848pt;}
.ws14{word-spacing:2.295383pt;}
.ws6{word-spacing:2.932989pt;}
.ws1e{word-spacing:2.986123pt;}
.ws11{word-spacing:3.036621pt;}
.ws1{word-spacing:3.443098pt;}
.ws1f{word-spacing:3.985067pt;}
.ws13{word-spacing:4.782067pt;}
.ws1d{word-spacing:6.121021pt;}
.ws24{word-spacing:6.918029pt;}
.wsd{word-spacing:7.723059pt;}
.wsa{word-spacing:8.296909pt;}
.wsf{word-spacing:8.440371pt;}
.ws8{word-spacing:9.157683pt;}
.ws1c{word-spacing:9.574723pt;}
.wsc{word-spacing:12.122573pt;}
.ws5{word-spacing:17.640444pt;}
.ws25{word-spacing:18.968790pt;}
.ws3{word-spacing:20.297137pt;}
.wse{word-spacing:22.093210pt;}
.ws9{word-spacing:22.619238pt;}
.ws4{word-spacing:22.794429pt;}
.wsb{word-spacing:26.157978pt;}
.ws0{word-spacing:27.636455pt;}
.ws2{word-spacing:62.166867pt;}
._14{margin-left:-25.755637pt;}
._0{margin-left:-9.640624pt;}
._e{margin-left:-6.526575pt;}
._6{margin-left:-5.005187pt;}
._5{margin-left:-3.400567pt;}
._1{margin-left:-2.387202pt;}
._2{margin-left:-1.055895pt;}
._3{width:1.721549pt;}
._15{width:3.553059pt;}
._13{width:13.361687pt;}
._10{width:14.339362pt;}
._11{width:15.256202pt;}
._f{width:18.061693pt;}
._7{width:20.350271pt;}
._c{width:21.276418pt;}
._b{width:22.571418pt;}
._4{width:24.182691pt;}
._9{width:26.350714pt;}
._a{width:29.223799pt;}
._8{width:41.221530pt;}
._12{width:71.731200pt;}
._d{width:86.077200pt;}
.fs5{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:119.153333pt;}
.y1a{bottom:160.202667pt;}
.y35{bottom:171.125333pt;}
.y19{bottom:189.426667pt;}
.y34{bottom:195.900000pt;}
.y33{bottom:224.994667pt;}
.y18{bottom:231.805333pt;}
.y27{bottom:242.765333pt;}
.y26{bottom:258.705333pt;}
.y32{bottom:268.150667pt;}
.y17{bottom:275.733333pt;}
.y31{bottom:284.090667pt;}
.y16{bottom:291.673333pt;}
.y3b{bottom:300.216000pt;}
.y30{bottom:313.185333pt;}
.y3a{bottom:316.156000pt;}
.y15{bottom:320.768000pt;}
.y37{bottom:327.985333pt;}
.y39{bottom:332.096000pt;}
.y2f{bottom:356.341333pt;}
.y14{bottom:364.694667pt;}
.y2e{bottom:372.281333pt;}
.y2d{bottom:388.221333pt;}
.y13{bottom:393.789333pt;}
.y2c{bottom:417.316000pt;}
.y12{bottom:437.717333pt;}
.y2b{bottom:449.805333pt;}
.y11{bottom:452.329333pt;}
.y10{bottom:466.941333pt;}
.y2a{bottom:476.981333pt;}
.y25{bottom:479.617333pt;}
.yf{bottom:481.553333pt;}
.ye{bottom:496.165333pt;}
.yd{bottom:510.777333pt;}
.y29{bottom:516.568000pt;}
.yc{bottom:525.389333pt;}
.y36{bottom:537.436000pt;}
.yb{bottom:540.001333pt;}
.y38{bottom:553.008000pt;}
.ya{bottom:554.612000pt;}
.y9{bottom:575.434667pt;}
.y8{bottom:603.330667pt;}
.y7{bottom:619.270667pt;}
.y6{bottom:635.210667pt;}
.y5{bottom:664.305333pt;}
.y24{bottom:705.196000pt;}
.y28{bottom:714.557333pt;}
.y4{bottom:721.516000pt;}
.y23{bottom:736.948000pt;}
.y3{bottom:752.777333pt;}
.y22{bottom:780.876000pt;}
.y2{bottom:791.298667pt;}
.y21{bottom:792.912000pt;}
.y20{bottom:796.816000pt;}
.y1f{bottom:815.338667pt;}
.y1{bottom:820.522667pt;}
.y1e{bottom:831.278667pt;}
.y1d{bottom:847.218667pt;}
.y1c{bottom:876.313333pt;}
.h6{height:33.474560pt;}
.h7{height:35.865600pt;}
.hd{height:36.874903pt;}
.h4{height:37.193707pt;}
.h5{height:39.850400pt;}
.hc{height:44.632747pt;}
.he{height:44.683229pt;}
.h2{height:44.887791pt;}
.h8{height:49.836533pt;}
.h3{height:53.559147pt;}
.h9{height:53.865199pt;}
.hb{height:55.466400pt;}
.ha{height:55.495200pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:178.357333pt;}
.xb{left:198.282667pt;}
.x1{left:204.840000pt;}
.x10{left:207.286667pt;}
.x8{left:211.566667pt;}
.xd{left:217.156000pt;}
.xf{left:228.613333pt;}
.x7{left:229.997333pt;}
.xe{left:240.070667pt;}
.x3{left:282.056000pt;}
.x2{left:294.085333pt;}
.x9{left:314.596000pt;}
.x4{left:355.254667pt;}
.x6{left:380.440000pt;}
.xa{left:404.177333pt;}
.xc{left:493.396000pt;}
}




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