
    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_5382d3a37a08ebc27ee3c4c5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729000;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_c34f8b5efb36ab32945e776d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.964000;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_f93f05d84bffab1e3898d45f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.961000;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_af92a39fba03588780ba7b2a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_4da41c07cce5e5662a738404.woff')format("woff");}.ff5{font-family:ff5;line-height:0.784000;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_763877114cb693c8bd28ee4c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.964000;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_bb7df0937ae291956c80691d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.539000;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_cdbe18c0e0989311d3f3c90a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.781000;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_bb7df0937ae291956c80691d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.539000;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_cf7eba63f571aa212316df8c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.967000;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_041a616533a69eed5b9169c0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.785000;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_0ca1c5fcb1bf8a1d3e4eac82.woff')format("woff");}.ffc{font-family:ffc;line-height:0.964000;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_6babd1e9b1afcdbb1692001d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.539000;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_10300e8a1b23a59da4c02ad0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.904000;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_1d1434a17e4e57fef5930990.woff')format("woff");}.fff{font-family:fff;line-height:0.905762;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_89dc17bb38ac57090a65f1bd.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d0a82c57988c094ccdf08693.woff')format("woff");}.ff11{font-family:ff11;line-height:1.002000;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_713fedf07e1c748f7f079799.woff')format("woff");}.ff12{font-family:ff12;line-height:0.675781;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:ff13;src:url('chunks/assets/font_2e9c43e7f203fcb29183a937.woff')format("woff");}.ff13{font-family:ff13;line-height:0.882324;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:ff14;src:url('chunks/assets/font_e58435824e94631c7e0a5542.woff')format("woff");}.ff14{font-family:ff14;line-height:0.971191;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-45.302400px;}
.v4{vertical-align:-11.440026px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.000000px;}
.v8{vertical-align:34.175400px;}
.v5{vertical-align:37.180002px;}
.v7{vertical-align:42.000000px;}
.v1{vertical-align:59.459400px;}
.v3{vertical-align:297.756000px;}
.ls8{letter-spacing:-17.100000px;}
.ls3{letter-spacing:-8.730000px;}
.ls6{letter-spacing:-8.550000px;}
.lsb{letter-spacing:-7.176000px;}
.lsc{letter-spacing:-6.660000px;}
.ls4{letter-spacing:-5.820000px;}
.ls7{letter-spacing:-1.200000px;}
.lsf{letter-spacing:-1.080000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000012px;}
.ls0{letter-spacing:0.000240px;}
.ls1{letter-spacing:0.000960px;}
.ls5{letter-spacing:0.001200px;}
.lse{letter-spacing:0.037200px;}
.lsd{letter-spacing:36.288000px;}
.lsa{letter-spacing:710.257320px;}
.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;}
}
.ws7{word-spacing:-59.280000px;}
.ws3{word-spacing:-56.908800px;}
.ws15{word-spacing:-48.600000px;}
.ws13{word-spacing:-47.520000px;}
.ws11{word-spacing:-44.460000px;}
.ws9{word-spacing:-39.150000px;}
.ws10{word-spacing:-37.800000px;}
.wse{word-spacing:-31.356000px;}
.wsb{word-spacing:-30.732000px;}
.ws0{word-spacing:-27.878400px;}
.ws14{word-spacing:-12.312000px;}
.ws6{word-spacing:-0.240000px;}
.ws2{word-spacing:-0.230400px;}
.ws12{word-spacing:-0.216000px;}
.ws4{word-spacing:-0.204000px;}
.ws5{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.174000px;}
.wsc{word-spacing:-0.156000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:566.496000px;}
.wsd{word-spacing:2247.465000px;}
.ws8{word-spacing:3531.666000px;}
._12{margin-left:-31.294800px;}
._2{margin-left:-24.000000px;}
._15{margin-left:-20.070000px;}
._f{margin-left:-18.408000px;}
._11{margin-left:-15.571200px;}
._7{margin-left:-14.400000px;}
._6{margin-left:-13.200000px;}
._8{margin-left:-12.000000px;}
._1{margin-left:-10.800000px;}
._10{margin-left:-9.588000px;}
._a{margin-left:-8.385240px;}
._0{margin-left:-7.200000px;}
._b{margin-left:-6.115200px;}
._9{margin-left:-4.800000px;}
._3{margin-left:-3.600000px;}
._5{margin-left:-2.400000px;}
._4{margin-left:-1.200000px;}
._e{width:1.574400px;}
._c{width:2.910000px;}
._d{width:5.820000px;}
._14{width:8.550000px;}
._13{width:11.400000px;}
._16{width:210.588000px;}
.fc5{color:rgb(227,131,0);}
.fc3{color:rgb(85,98,160);}
.fc2{color:rgb(90,107,176);}
.fc1{color:rgb(83,88,95);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:103.999980px;}
.fs3{font-size:126.720000px;}
.fsd{font-size:156.000000px;}
.fs2{font-size:166.320000px;}
.fsc{font-size:174.000000px;}
.fsa{font-size:180.000000px;}
.fs4{font-size:190.080000px;}
.fsb{font-size:192.000000px;}
.fs9{font-size:204.000000px;}
.fs6{font-size:216.000000px;}
.fs8{font-size:230.400000px;}
.fs0{font-size:240.000000px;}
.fs1{font-size:249.480000px;}
.fs7{font-size:570.000000px;}
.fs5{font-size:582.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:2.970000px;}
.y26{bottom:5.494499px;}
.y1d{bottom:7.470150px;}
.y22{bottom:8.970000px;}
.y2b{bottom:14.850000px;}
.y29{bottom:14.850150px;}
.y11{bottom:25.200000px;}
.y33{bottom:25.200045px;}
.y27{bottom:25.200046px;}
.y9{bottom:32.405790px;}
.y13{bottom:34.500000px;}
.y40{bottom:40.705455px;}
.y32{bottom:55.292775px;}
.yf{bottom:121.004040px;}
.y3d{bottom:174.081000px;}
.y14{bottom:190.559700px;}
.y6{bottom:190.716300px;}
.ye{bottom:196.004100px;}
.y28{bottom:238.372800px;}
.y3c{bottom:244.581000px;}
.y5{bottom:259.968750px;}
.y34{bottom:288.171150px;}
.y3b{bottom:316.834950px;}
.yd{bottom:328.860600px;}
.y25{bottom:398.912250px;}
.y4{bottom:412.431000px;}
.y23{bottom:482.321100px;}
.y24{bottom:486.365100px;}
.y3f{bottom:495.314700px;}
.y3e{bottom:565.814700px;}
.y12{bottom:566.734650px;}
.y21{bottom:574.049250px;}
.y31{bottom:609.400200px;}
.y30{bottom:677.800200px;}
.y1f{bottom:694.976700px;}
.y10{bottom:733.457100px;}
.y2f{bottom:746.200200px;}
.y8{bottom:764.947350px;}
.y3a{bottom:796.745400px;}
.y2a{bottom:797.446650px;}
.y1e{bottom:808.865550px;}
.y2e{bottom:816.294750px;}
.y35{bottom:847.244850px;}
.y39{bottom:867.245400px;}
.y2d{bottom:884.694750px;}
.y1c{bottom:919.536300px;}
.y7{bottom:936.542850px;}
.y2c{bottom:953.094750px;}
.y38{bottom:1017.245400px;}
.y1b{bottom:1029.049800px;}
.y17{bottom:1032.685500px;}
.y37{bottom:1087.745400px;}
.y16{bottom:1101.085500px;}
.y1a{bottom:1152.654150px;}
.y15{bottom:1169.485500px;}
.yc{bottom:1202.314950px;}
.y36{bottom:1237.745400px;}
.yb{bottom:1277.314950px;}
.y3{bottom:1314.511350px;}
.y18{bottom:1387.083000px;}
.ya{bottom:1387.125000px;}
.y2{bottom:1392.511350px;}
.y19{bottom:1393.209000px;}
.y1{bottom:1470.511350px;}
.h11{height:46.500000px;}
.h10{height:51.000000px;}
.h12{height:52.500000px;}
.h9{height:89.700060px;}
.h3{height:102.199680px;}
.hf{height:113.256000px;}
.hb{height:117.000075px;}
.h13{height:122.460000px;}
.hd{height:131.906250px;}
.he{height:135.024000px;}
.ha{height:139.140000px;}
.h16{height:139.680000px;}
.h15{height:155.231400px;}
.h8{height:158.304000px;}
.h5{height:167.616000px;}
.h1{height:173.280000px;}
.h14{height:175.056000px;}
.h19{height:178.558594px;}
.h7{height:178.790400px;}
.hc{height:186.240000px;}
.h2{height:193.596480px;}
.h18{height:357.305700px;}
.h17{height:357.305850px;}
.h6{height:441.180000px;}
.h4{height:451.632000px;}
.h0{height:1620.000000px;}
.wa{width:74.346300px;}
.w9{width:83.998875px;}
.w8{width:89.700000px;}
.w7{width:89.700150px;}
.w3{width:123.076800px;}
.w4{width:135.207285px;}
.w5{width:388.366500px;}
.w6{width:496.496550px;}
.w1{width:611.756100px;}
.w2{width:1468.740150px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x15{left:12.870030px;}
.xc{left:14.850150px;}
.xe{left:19.500000px;}
.x21{left:49.146255px;}
.x20{left:58.798830px;}
.x1c{left:64.500000px;}
.x17{left:71.308920px;}
.x16{left:87.918765px;}
.x14{left:93.984000px;}
.x13{left:106.854030px;}
.x7{left:134.280390px;}
.x8{left:147.881325px;}
.x4{left:149.203380px;}
.xf{left:160.110000px;}
.x10{left:168.643650px;}
.xa{left:182.515350px;}
.x1{left:230.250150px;}
.x19{left:272.108400px;}
.x1f{left:401.441250px;}
.x5{left:454.449900px;}
.x18{left:501.850650px;}
.xd{left:797.282700px;}
.x6{left:920.704650px;}
.x1d{left:928.046850px;}
.x1b{left:937.699350px;}
.x2{left:1050.480150px;}
.x11{left:1104.537600px;}
.xb{left:1167.419550px;}
.x3{left:1190.760150px;}
.x22{left:1307.089050px;}
.x26{left:1314.302550px;}
.x25{left:1319.322450px;}
.x1a{left:1344.841950px;}
.x27{left:1426.268850px;}
.x23{left:1472.089050px;}
.x24{left:1499.089050px;}
.x12{left:1519.051500px;}
.x9{left:1526.076000px;}
.x1e{left:2188.240500px;}
@media print{
.v2{vertical-align:-40.268800pt;}
.v4{vertical-align:-10.168912pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.666667pt;}
.v8{vertical-align:30.378133pt;}
.v5{vertical-align:33.048891pt;}
.v7{vertical-align:37.333333pt;}
.v1{vertical-align:52.852800pt;}
.v3{vertical-align:264.672000pt;}
.ls8{letter-spacing:-15.200000pt;}
.ls3{letter-spacing:-7.760000pt;}
.ls6{letter-spacing:-7.600000pt;}
.lsb{letter-spacing:-6.378667pt;}
.lsc{letter-spacing:-5.920000pt;}
.ls4{letter-spacing:-5.173333pt;}
.ls7{letter-spacing:-1.066667pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000011pt;}
.ls0{letter-spacing:0.000213pt;}
.ls1{letter-spacing:0.000853pt;}
.ls5{letter-spacing:0.001067pt;}
.lse{letter-spacing:0.033067pt;}
.lsd{letter-spacing:32.256000pt;}
.lsa{letter-spacing:631.339840pt;}
.ws7{word-spacing:-52.693333pt;}
.ws3{word-spacing:-50.585600pt;}
.ws15{word-spacing:-43.200000pt;}
.ws13{word-spacing:-42.240000pt;}
.ws11{word-spacing:-39.520000pt;}
.ws9{word-spacing:-34.800000pt;}
.ws10{word-spacing:-33.600000pt;}
.wse{word-spacing:-27.872000pt;}
.wsb{word-spacing:-27.317333pt;}
.ws0{word-spacing:-24.780800pt;}
.ws14{word-spacing:-10.944000pt;}
.ws6{word-spacing:-0.213333pt;}
.ws2{word-spacing:-0.204800pt;}
.ws12{word-spacing:-0.192000pt;}
.ws4{word-spacing:-0.181333pt;}
.ws5{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.154667pt;}
.wsc{word-spacing:-0.138667pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:503.552000pt;}
.wsd{word-spacing:1997.746667pt;}
.ws8{word-spacing:3139.258667pt;}
._12{margin-left:-27.817600pt;}
._2{margin-left:-21.333333pt;}
._15{margin-left:-17.840000pt;}
._f{margin-left:-16.362667pt;}
._11{margin-left:-13.841067pt;}
._7{margin-left:-12.800000pt;}
._6{margin-left:-11.733333pt;}
._8{margin-left:-10.666667pt;}
._1{margin-left:-9.600000pt;}
._10{margin-left:-8.522667pt;}
._a{margin-left:-7.453547pt;}
._0{margin-left:-6.400000pt;}
._b{margin-left:-5.435733pt;}
._9{margin-left:-4.266667pt;}
._3{margin-left:-3.200000pt;}
._5{margin-left:-2.133333pt;}
._4{margin-left:-1.066667pt;}
._e{width:1.399467pt;}
._c{width:2.586667pt;}
._d{width:5.173333pt;}
._14{width:7.600000pt;}
._13{width:10.133333pt;}
._16{width:187.189333pt;}
.fse{font-size:92.444427pt;}
.fs3{font-size:112.640000pt;}
.fsd{font-size:138.666667pt;}
.fs2{font-size:147.840000pt;}
.fsc{font-size:154.666667pt;}
.fsa{font-size:160.000000pt;}
.fs4{font-size:168.960000pt;}
.fsb{font-size:170.666667pt;}
.fs9{font-size:181.333333pt;}
.fs6{font-size:192.000000pt;}
.fs8{font-size:204.800000pt;}
.fs0{font-size:213.333333pt;}
.fs1{font-size:221.760000pt;}
.fs7{font-size:506.666667pt;}
.fs5{font-size:517.333333pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:2.640000pt;}
.y26{bottom:4.883999pt;}
.y1d{bottom:6.640133pt;}
.y22{bottom:7.973333pt;}
.y2b{bottom:13.200000pt;}
.y29{bottom:13.200133pt;}
.y11{bottom:22.400000pt;}
.y33{bottom:22.400040pt;}
.y27{bottom:22.400041pt;}
.y9{bottom:28.805147pt;}
.y13{bottom:30.666667pt;}
.y40{bottom:36.182627pt;}
.y32{bottom:49.149133pt;}
.yf{bottom:107.559147pt;}
.y3d{bottom:154.738667pt;}
.y14{bottom:169.386400pt;}
.y6{bottom:169.525600pt;}
.ye{bottom:174.225867pt;}
.y28{bottom:211.886933pt;}
.y3c{bottom:217.405333pt;}
.y5{bottom:231.083333pt;}
.y34{bottom:256.152133pt;}
.y3b{bottom:281.631067pt;}
.yd{bottom:292.320533pt;}
.y25{bottom:354.588667pt;}
.y4{bottom:366.605333pt;}
.y23{bottom:428.729867pt;}
.y24{bottom:432.324533pt;}
.y3f{bottom:440.279733pt;}
.y3e{bottom:502.946400pt;}
.y12{bottom:503.764133pt;}
.y21{bottom:510.266000pt;}
.y31{bottom:541.689067pt;}
.y30{bottom:602.489067pt;}
.y1f{bottom:617.757067pt;}
.y10{bottom:651.961867pt;}
.y2f{bottom:663.289067pt;}
.y8{bottom:679.953200pt;}
.y3a{bottom:708.218133pt;}
.y2a{bottom:708.841467pt;}
.y1e{bottom:718.991600pt;}
.y2e{bottom:725.595333pt;}
.y35{bottom:753.106533pt;}
.y39{bottom:770.884800pt;}
.y2d{bottom:786.395333pt;}
.y1c{bottom:817.365600pt;}
.y7{bottom:832.482533pt;}
.y2c{bottom:847.195333pt;}
.y38{bottom:904.218133pt;}
.y1b{bottom:914.710933pt;}
.y17{bottom:917.942667pt;}
.y37{bottom:966.884800pt;}
.y16{bottom:978.742667pt;}
.y1a{bottom:1024.581467pt;}
.y15{bottom:1039.542667pt;}
.yc{bottom:1068.724400pt;}
.y36{bottom:1100.218133pt;}
.yb{bottom:1135.391067pt;}
.y3{bottom:1168.454533pt;}
.y18{bottom:1232.962667pt;}
.ya{bottom:1233.000000pt;}
.y2{bottom:1237.787867pt;}
.y19{bottom:1238.408000pt;}
.y1{bottom:1307.121200pt;}
.h11{height:41.333333pt;}
.h10{height:45.333333pt;}
.h12{height:46.666667pt;}
.h9{height:79.733387pt;}
.h3{height:90.844160pt;}
.hf{height:100.672000pt;}
.hb{height:104.000067pt;}
.h13{height:108.853333pt;}
.hd{height:117.250000pt;}
.he{height:120.021333pt;}
.ha{height:123.680000pt;}
.h16{height:124.160000pt;}
.h15{height:137.983467pt;}
.h8{height:140.714667pt;}
.h5{height:148.992000pt;}
.h1{height:154.026667pt;}
.h14{height:155.605333pt;}
.h19{height:158.718750pt;}
.h7{height:158.924800pt;}
.hc{height:165.546667pt;}
.h2{height:172.085760pt;}
.h18{height:317.605067pt;}
.h17{height:317.605200pt;}
.h6{height:392.160000pt;}
.h4{height:401.450667pt;}
.h0{height:1440.000000pt;}
.wa{width:66.085600pt;}
.w9{width:74.665667pt;}
.w8{width:79.733333pt;}
.w7{width:79.733467pt;}
.w3{width:109.401600pt;}
.w4{width:120.184253pt;}
.w5{width:345.214667pt;}
.w6{width:441.330267pt;}
.w1{width:543.783200pt;}
.w2{width:1305.546800pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x15{left:11.440027pt;}
.xc{left:13.200133pt;}
.xe{left:17.333333pt;}
.x21{left:43.685560pt;}
.x20{left:52.265627pt;}
.x1c{left:57.333333pt;}
.x17{left:63.385707pt;}
.x16{left:78.150013pt;}
.x14{left:83.541333pt;}
.x13{left:94.981360pt;}
.x7{left:119.360347pt;}
.x8{left:131.450067pt;}
.x4{left:132.625227pt;}
.xf{left:142.320000pt;}
.x10{left:149.905467pt;}
.xa{left:162.235867pt;}
.x1{left:204.666800pt;}
.x19{left:241.874133pt;}
.x1f{left:356.836667pt;}
.x5{left:403.955467pt;}
.x18{left:446.089467pt;}
.xd{left:708.695733pt;}
.x6{left:818.404133pt;}
.x1d{left:824.930533pt;}
.x1b{left:833.510533pt;}
.x2{left:933.760133pt;}
.x11{left:981.811200pt;}
.xb{left:1037.706267pt;}
.x3{left:1058.453467pt;}
.x22{left:1161.856933pt;}
.x26{left:1168.268933pt;}
.x25{left:1172.731067pt;}
.x1a{left:1195.415067pt;}
.x27{left:1267.794533pt;}
.x23{left:1308.523600pt;}
.x24{left:1332.523600pt;}
.x12{left:1350.268000pt;}
.x9{left:1356.512000pt;}
.x1e{left:1945.102667pt;}
}




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