
    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_414de38439e59b0b193f9d1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.950195;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_c994864e429c3a879198a9ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.881836;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_c817b7dc480a75c0a72dc22b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.996000;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_3660129843f72fe86e787cee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_5cf3fc456c831e965252ee49.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854980;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_dadc31f76ce738a290c2193a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056000;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_8a2958e954bc1a1a09c6e1e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.848145;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_463003b25ed1e6df317c322e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.873535;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_968b7996ca2afa1f63f385e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_182214c71494b54bd42cf1d2.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v6{vertical-align:-21.299742px;}
.v5{vertical-align:-19.999998px;}
.v3{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.000000px;}
.v2{vertical-align:20.370000px;}
.v1{vertical-align:66.042960px;}
.lsd{letter-spacing:-35.298000px;}
.ls11{letter-spacing:-3.240000px;}
.ls18{letter-spacing:-2.856000px;}
.ls16{letter-spacing:-2.016000px;}
.lsf{letter-spacing:-0.103200px;}
.ls15{letter-spacing:-0.096000px;}
.ls13{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.051600px;}
.ls17{letter-spacing:-0.048000px;}
.ls10{letter-spacing:-0.035400px;}
.ls14{letter-spacing:-0.024000px;}
.lsc{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000032px;}
.ls1{letter-spacing:0.000210px;}
.ls7{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.024000px;}
.ls6{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.051600px;}
.ls0{letter-spacing:0.063600px;}
.ls5{letter-spacing:0.077400px;}
.ls8{letter-spacing:0.080000px;}
.lsa{letter-spacing:0.084000px;}
.ls12{letter-spacing:0.090000px;}
.ls4{letter-spacing:5.125440px;}
.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;}
}
.ws11{word-spacing:-100.080000px;}
.ws8{word-spacing:-93.408000px;}
.ws10{word-spacing:-83.400000px;}
.ws7{word-spacing:-58.204800px;}
.wsa{word-spacing:-40.770000px;}
.wsd{word-spacing:-40.680000px;}
.wsb{word-spacing:-40.608000px;}
.wsf{word-spacing:-36.240005px;}
.wse{word-spacing:-27.096000px;}
.ws9{word-spacing:-6.665880px;}
.ws1{word-spacing:-0.381600px;}
.ws0{word-spacing:-0.318000px;}
.ws3{word-spacing:-0.309600px;}
.ws6{word-spacing:-0.264000px;}
.ws4{word-spacing:-0.258000px;}
.ws5{word-spacing:-0.206400px;}
.wsc{word-spacing:-0.198000px;}
.ws12{word-spacing:0.000000px;}
.ws2{word-spacing:34.980000px;}
._3{margin-left:-29.808000px;}
._b{margin-left:-25.807200px;}
._11{margin-left:-17.282400px;}
._e{margin-left:-15.302700px;}
._14{margin-left:-14.061000px;}
._10{margin-left:-11.613900px;}
._c{margin-left:-9.520200px;}
._d{margin-left:-7.916400px;}
._9{margin-left:-6.891000px;}
._2{margin-left:-5.832000px;}
._6{margin-left:-4.128000px;}
._4{margin-left:-3.000000px;}
._5{margin-left:-1.896000px;}
._7{width:1.056000px;}
._8{width:2.640000px;}
._13{width:4.032000px;}
._a{width:6.048000px;}
._12{width:7.292400px;}
._f{width:8.490300px;}
._0{width:34.543800px;}
._1{width:36.150000px;}
.fc9{color:rgb(96,104,178);}
.fc4{color:rgb(101,111,107);}
.fc6{color:rgb(255,30,17);}
.fc3{color:rgb(99,111,107);}
.fc2{color:rgb(58,60,50);}
.fc1{color:rgb(74,43,49);}
.fc8{color:rgb(94,94,94);}
.fc7{color:rgb(255,30,18);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:72.000000px;}
.fs9{font-size:120.000000px;}
.fsa{font-size:160.000020px;}
.fs7{font-size:177.000000px;}
.fs8{font-size:180.000000px;}
.fsc{font-size:199.999980px;}
.fsd{font-size:210.000000px;}
.fs1{font-size:211.999980px;}
.fs4{font-size:240.000000px;}
.fs2{font-size:258.000000px;}
.fsb{font-size:300.000000px;}
.fs0{font-size:318.000000px;}
.fs3{font-size:324.000000px;}
.fs6{font-size:336.000000px;}
.fse{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:6.443700px;}
.y11{bottom:15.442500px;}
.yf{bottom:15.444000px;}
.yd{bottom:16.944000px;}
.yb{bottom:16.944300px;}
.y41{bottom:39.919500px;}
.y57{bottom:40.800000px;}
.y50{bottom:47.902200px;}
.y1e{bottom:93.159315px;}
.y1d{bottom:147.159315px;}
.y1c{bottom:201.159300px;}
.y1a{bottom:265.306200px;}
.y4f{bottom:364.591200px;}
.y2c{bottom:618.030150px;}
.y4e{bottom:633.664350px;}
.y2b{bottom:675.030150px;}
.y4d{bottom:698.164350px;}
.y2a{bottom:734.293350px;}
.y4c{bottom:762.664350px;}
.y29{bottom:792.961800px;}
.y4b{bottom:827.164350px;}
.y28{bottom:852.224850px;}
.y4a{bottom:891.664350px;}
.y27{bottom:910.893450px;}
.y49{bottom:956.164350px;}
.y26{bottom:967.893450px;}
.y48{bottom:1020.664350px;}
.y25{bottom:1024.893450px;}
.y24{bottom:1081.893450px;}
.y47{bottom:1085.164350px;}
.y23{bottom:1138.893450px;}
.y46{bottom:1149.664350px;}
.y22{bottom:1195.893450px;}
.y45{bottom:1214.164350px;}
.y21{bottom:1252.893450px;}
.y44{bottom:1278.664350px;}
.y20{bottom:1309.893450px;}
.y43{bottom:1343.164350px;}
.y1f{bottom:1366.893450px;}
.y42{bottom:1407.664350px;}
.ya{bottom:1491.035700px;}
.y40{bottom:1624.989000px;}
.y55{bottom:1671.895500px;}
.y54{bottom:1745.395500px;}
.y53{bottom:1818.895500px;}
.y52{bottom:1892.395500px;}
.y51{bottom:1965.895500px;}
.y3f{bottom:2245.260000px;}
.y3e{bottom:2318.760000px;}
.y19{bottom:2387.241000px;}
.y3d{bottom:2392.260000px;}
.y18{bottom:2463.759000px;}
.y3c{bottom:2465.760000px;}
.y3b{bottom:2539.260000px;}
.y17{bottom:2541.483000px;}
.y10{bottom:2633.080500px;}
.y3a{bottom:2824.740000px;}
.y9{bottom:2831.503500px;}
.y39{bottom:2898.240000px;}
.y8{bottom:2912.245500px;}
.y38{bottom:2971.740000px;}
.y7{bottom:2989.969500px;}
.y37{bottom:3045.240000px;}
.y6{bottom:3063.469500px;}
.y36{bottom:3118.740000px;}
.y5{bottom:3139.987500px;}
.y35{bottom:3192.240000px;}
.y34{bottom:3265.740000px;}
.y33{bottom:3339.240000px;}
.y32{bottom:3412.740000px;}
.y31{bottom:3486.240000px;}
.y30{bottom:3559.740000px;}
.y2f{bottom:3633.240000px;}
.y2e{bottom:3696.516000px;}
.y2d{bottom:3774.240000px;}
.ye{bottom:3831.325500px;}
.y16{bottom:4005.498000px;}
.y15{bottom:4078.405500px;}
.y14{bottom:4156.405500px;}
.y13{bottom:4239.498000px;}
.y12{bottom:4312.405500px;}
.yc{bottom:4384.483500px;}
.y56{bottom:4414.330500px;}
.y2{bottom:4560.708000px;}
.y1{bottom:4647.631500px;}
.y4{bottom:4850.221500px;}
.y3{bottom:4961.221500px;}
.hb{height:89.700000px;}
.h8{height:98.700000px;}
.h5{height:100.200000px;}
.hd{height:127.045898px;}
.he{height:129.199219px;}
.hf{height:133.687245px;}
.h14{height:136.200045px;}
.h11{height:150.732422px;}
.h12{height:160.424700px;}
.h4{height:172.265625px;}
.ha{height:185.185547px;}
.h2{height:189.846680px;}
.h9{height:205.555547px;}
.h15{height:214.200000px;}
.h10{height:219.300000px;}
.h1{height:233.997070px;}
.h3{height:244.944000px;}
.hc{height:245.393250px;}
.h7{height:254.016000px;}
.h6{height:258.048000px;}
.h13{height:263.160000px;}
.h0{height:5053.500000px;}
.wa{width:489.450000px;}
.w5{width:511.419900px;}
.w2{width:513.131850px;}
.w7{width:801.287250px;}
.w8{width:829.187250px;}
.w4{width:1946.179500px;}
.w3{width:2381.584500px;}
.w1{width:3016.786500px;}
.w9{width:3425.685000px;}
.w6{width:3437.977500px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x19{left:11.062500px;}
.x4b{left:14.819699px;}
.x38{left:22.593630px;}
.x45{left:26.962350px;}
.xb{left:46.289400px;}
.xd{left:48.162000px;}
.x17{left:50.287950px;}
.x11{left:53.079450px;}
.x18{left:56.108130px;}
.xf{left:59.018100px;}
.x44{left:62.254440px;}
.x14{left:78.816825px;}
.x37{left:87.398010px;}
.x13{left:94.417410px;}
.x15{left:96.424245px;}
.x8{left:104.918475px;}
.x5{left:132.530775px;}
.x6{left:138.771000px;}
.x12{left:157.362150px;}
.x7{left:181.910700px;}
.xa{left:196.673700px;}
.x2{left:201.460500px;}
.x10{left:230.339550px;}
.x16{left:238.013850px;}
.xe{left:266.521050px;}
.x9{left:310.084500px;}
.x3{left:800.909700px;}
.x1{left:826.162650px;}
.x39{left:916.166250px;}
.x4{left:1257.628200px;}
.x1f{left:1269.572850px;}
.x21{left:1273.033500px;}
.x1e{left:1274.604450px;}
.x1d{left:1275.944850px;}
.x1c{left:1280.020800px;}
.x22{left:1282.404750px;}
.x24{left:1286.070600px;}
.x1a{left:1290.205050px;}
.x23{left:1292.325450px;}
.x25{left:1299.257850px;}
.x1b{left:1333.436250px;}
.x20{left:1338.424050px;}
.x26{left:1386.324450px;}
.xc{left:1580.116500px;}
.x33{left:1882.878000px;}
.x35{left:1891.110000px;}
.x32{left:1898.991000px;}
.x36{left:1938.820500px;}
.x34{left:1962.975000px;}
.x48{left:2665.893000px;}
.x47{left:2681.040000px;}
.x49{left:2689.609500px;}
.x46{left:2723.182500px;}
.x4a{left:2792.485500px;}
.x30{left:3019.327500px;}
.x31{left:3029.070000px;}
.x3f{left:3035.454000px;}
.x2c{left:3042.780000px;}
.x40{left:3047.028000px;}
.x3c{left:3049.617000px;}
.x29{left:3053.034000px;}
.x3a{left:3054.423000px;}
.x43{left:3055.666500px;}
.x28{left:3063.699000px;}
.x3e{left:3066.498000px;}
.x41{left:3072.522000px;}
.x2e{left:3077.526000px;}
.x3b{left:3079.699500px;}
.x2b{left:3089.215500px;}
.x2f{left:3101.769000px;}
.x2d{left:3110.002500px;}
.x3d{left:3114.319500px;}
.x42{left:3136.954500px;}
.x2a{left:3156.174000px;}
.x27{left:3193.981500px;}
@media print{
.v6{vertical-align:-18.933104pt;}
.v5{vertical-align:-17.777776pt;}
.v3{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.333333pt;}
.v2{vertical-align:18.106667pt;}
.v1{vertical-align:58.704853pt;}
.lsd{letter-spacing:-31.376000pt;}
.ls11{letter-spacing:-2.880000pt;}
.ls18{letter-spacing:-2.538667pt;}
.ls16{letter-spacing:-1.792000pt;}
.lsf{letter-spacing:-0.091733pt;}
.ls15{letter-spacing:-0.085333pt;}
.ls13{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.045867pt;}
.ls17{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:-0.031467pt;}
.ls14{letter-spacing:-0.021333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000028pt;}
.ls1{letter-spacing:0.000187pt;}
.ls7{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.021333pt;}
.ls6{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.045867pt;}
.ls0{letter-spacing:0.056533pt;}
.ls5{letter-spacing:0.068800pt;}
.ls8{letter-spacing:0.071111pt;}
.lsa{letter-spacing:0.074667pt;}
.ls12{letter-spacing:0.080000pt;}
.ls4{letter-spacing:4.555947pt;}
.ws11{word-spacing:-88.960000pt;}
.ws8{word-spacing:-83.029333pt;}
.ws10{word-spacing:-74.133333pt;}
.ws7{word-spacing:-51.737600pt;}
.wsa{word-spacing:-36.240000pt;}
.wsd{word-spacing:-36.160000pt;}
.wsb{word-spacing:-36.096000pt;}
.wsf{word-spacing:-32.213337pt;}
.wse{word-spacing:-24.085333pt;}
.ws9{word-spacing:-5.925227pt;}
.ws1{word-spacing:-0.339200pt;}
.ws0{word-spacing:-0.282667pt;}
.ws3{word-spacing:-0.275200pt;}
.ws6{word-spacing:-0.234667pt;}
.ws4{word-spacing:-0.229333pt;}
.ws5{word-spacing:-0.183467pt;}
.wsc{word-spacing:-0.176000pt;}
.ws12{word-spacing:0.000000pt;}
.ws2{word-spacing:31.093333pt;}
._3{margin-left:-26.496000pt;}
._b{margin-left:-22.939733pt;}
._11{margin-left:-15.362133pt;}
._e{margin-left:-13.602400pt;}
._14{margin-left:-12.498667pt;}
._10{margin-left:-10.323467pt;}
._c{margin-left:-8.462400pt;}
._d{margin-left:-7.036800pt;}
._9{margin-left:-6.125333pt;}
._2{margin-left:-5.184000pt;}
._6{margin-left:-3.669333pt;}
._4{margin-left:-2.666667pt;}
._5{margin-left:-1.685333pt;}
._7{width:0.938667pt;}
._8{width:2.346667pt;}
._13{width:3.584000pt;}
._a{width:5.376000pt;}
._12{width:6.482133pt;}
._f{width:7.546933pt;}
._0{width:30.705600pt;}
._1{width:32.133333pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:106.666667pt;}
.fsa{font-size:142.222240pt;}
.fs7{font-size:157.333333pt;}
.fs8{font-size:160.000000pt;}
.fsc{font-size:177.777760pt;}
.fsd{font-size:186.666667pt;}
.fs1{font-size:188.444427pt;}
.fs4{font-size:213.333333pt;}
.fs2{font-size:229.333333pt;}
.fsb{font-size:266.666667pt;}
.fs0{font-size:282.666667pt;}
.fs3{font-size:288.000000pt;}
.fs6{font-size:298.666667pt;}
.fse{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:5.727733pt;}
.y11{bottom:13.726667pt;}
.yf{bottom:13.728000pt;}
.yd{bottom:15.061333pt;}
.yb{bottom:15.061600pt;}
.y41{bottom:35.484000pt;}
.y57{bottom:36.266667pt;}
.y50{bottom:42.579733pt;}
.y1e{bottom:82.808280pt;}
.y1d{bottom:130.808280pt;}
.y1c{bottom:178.808267pt;}
.y1a{bottom:235.827733pt;}
.y4f{bottom:324.081067pt;}
.y2c{bottom:549.360133pt;}
.y4e{bottom:563.257200pt;}
.y2b{bottom:600.026800pt;}
.y4d{bottom:620.590533pt;}
.y2a{bottom:652.705200pt;}
.y4c{bottom:677.923867pt;}
.y29{bottom:704.854933pt;}
.y4b{bottom:735.257200pt;}
.y28{bottom:757.533200pt;}
.y4a{bottom:792.590533pt;}
.y27{bottom:809.683067pt;}
.y49{bottom:849.923867pt;}
.y26{bottom:860.349733pt;}
.y48{bottom:907.257200pt;}
.y25{bottom:911.016400pt;}
.y24{bottom:961.683067pt;}
.y47{bottom:964.590533pt;}
.y23{bottom:1012.349733pt;}
.y46{bottom:1021.923867pt;}
.y22{bottom:1063.016400pt;}
.y45{bottom:1079.257200pt;}
.y21{bottom:1113.683067pt;}
.y44{bottom:1136.590533pt;}
.y20{bottom:1164.349733pt;}
.y43{bottom:1193.923867pt;}
.y1f{bottom:1215.016400pt;}
.y42{bottom:1251.257200pt;}
.ya{bottom:1325.365067pt;}
.y40{bottom:1444.434667pt;}
.y55{bottom:1486.129333pt;}
.y54{bottom:1551.462667pt;}
.y53{bottom:1616.796000pt;}
.y52{bottom:1682.129333pt;}
.y51{bottom:1747.462667pt;}
.y3f{bottom:1995.786667pt;}
.y3e{bottom:2061.120000pt;}
.y19{bottom:2121.992000pt;}
.y3d{bottom:2126.453333pt;}
.y18{bottom:2190.008000pt;}
.y3c{bottom:2191.786667pt;}
.y3b{bottom:2257.120000pt;}
.y17{bottom:2259.096000pt;}
.y10{bottom:2340.516000pt;}
.y3a{bottom:2510.880000pt;}
.y9{bottom:2516.892000pt;}
.y39{bottom:2576.213333pt;}
.y8{bottom:2588.662667pt;}
.y38{bottom:2641.546667pt;}
.y7{bottom:2657.750667pt;}
.y37{bottom:2706.880000pt;}
.y6{bottom:2723.084000pt;}
.y36{bottom:2772.213333pt;}
.y5{bottom:2791.100000pt;}
.y35{bottom:2837.546667pt;}
.y34{bottom:2902.880000pt;}
.y33{bottom:2968.213333pt;}
.y32{bottom:3033.546667pt;}
.y31{bottom:3098.880000pt;}
.y30{bottom:3164.213333pt;}
.y2f{bottom:3229.546667pt;}
.y2e{bottom:3285.792000pt;}
.y2d{bottom:3354.880000pt;}
.ye{bottom:3405.622667pt;}
.y16{bottom:3560.442667pt;}
.y15{bottom:3625.249333pt;}
.y14{bottom:3694.582667pt;}
.y13{bottom:3768.442667pt;}
.y12{bottom:3833.249333pt;}
.yc{bottom:3897.318667pt;}
.y56{bottom:3923.849333pt;}
.y2{bottom:4053.962667pt;}
.y1{bottom:4131.228000pt;}
.y4{bottom:4311.308000pt;}
.y3{bottom:4409.974667pt;}
.hb{height:79.733333pt;}
.h8{height:87.733333pt;}
.h5{height:89.066667pt;}
.hd{height:112.929688pt;}
.he{height:114.843750pt;}
.hf{height:118.833107pt;}
.h14{height:121.066707pt;}
.h11{height:133.984375pt;}
.h12{height:142.599733pt;}
.h4{height:153.125000pt;}
.ha{height:164.609375pt;}
.h2{height:168.752604pt;}
.h9{height:182.716042pt;}
.h15{height:190.400000pt;}
.h10{height:194.933333pt;}
.h1{height:207.997396pt;}
.h3{height:217.728000pt;}
.hc{height:218.127333pt;}
.h7{height:225.792000pt;}
.h6{height:229.376000pt;}
.h13{height:233.920000pt;}
.h0{height:4492.000000pt;}
.wa{width:435.066667pt;}
.w5{width:454.595467pt;}
.w2{width:456.117200pt;}
.w7{width:712.255333pt;}
.w8{width:737.055333pt;}
.w4{width:1729.937333pt;}
.w3{width:2116.964000pt;}
.w1{width:2681.588000pt;}
.w9{width:3045.053333pt;}
.w6{width:3055.980000pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x19{left:9.833333pt;}
.x4b{left:13.173065pt;}
.x38{left:20.083227pt;}
.x45{left:23.966533pt;}
.xb{left:41.146133pt;}
.xd{left:42.810667pt;}
.x17{left:44.700400pt;}
.x11{left:47.181733pt;}
.x18{left:49.873893pt;}
.xf{left:52.460533pt;}
.x44{left:55.337280pt;}
.x14{left:70.059400pt;}
.x37{left:77.687120pt;}
.x13{left:83.926587pt;}
.x15{left:85.710440pt;}
.x8{left:93.260867pt;}
.x5{left:117.805133pt;}
.x6{left:123.352000pt;}
.x12{left:139.877467pt;}
.x7{left:161.698400pt;}
.xa{left:174.821067pt;}
.x2{left:179.076000pt;}
.x10{left:204.746267pt;}
.x16{left:211.567867pt;}
.xe{left:236.907600pt;}
.x9{left:275.630667pt;}
.x3{left:711.919733pt;}
.x1{left:734.366800pt;}
.x39{left:814.370000pt;}
.x4{left:1117.891733pt;}
.x1f{left:1128.509200pt;}
.x21{left:1131.585333pt;}
.x1e{left:1132.981733pt;}
.x1d{left:1134.173200pt;}
.x1c{left:1137.796267pt;}
.x22{left:1139.915333pt;}
.x24{left:1143.173867pt;}
.x1a{left:1146.848933pt;}
.x23{left:1148.733733pt;}
.x25{left:1154.895867pt;}
.x1b{left:1185.276667pt;}
.x20{left:1189.710267pt;}
.x26{left:1232.288400pt;}
.xc{left:1404.548000pt;}
.x33{left:1673.669333pt;}
.x35{left:1680.986667pt;}
.x32{left:1687.992000pt;}
.x36{left:1723.396000pt;}
.x34{left:1744.866667pt;}
.x48{left:2369.682667pt;}
.x47{left:2383.146667pt;}
.x49{left:2390.764000pt;}
.x46{left:2420.606667pt;}
.x4a{left:2482.209333pt;}
.x30{left:2683.846667pt;}
.x31{left:2692.506667pt;}
.x3f{left:2698.181333pt;}
.x2c{left:2704.693333pt;}
.x40{left:2708.469333pt;}
.x3c{left:2710.770667pt;}
.x29{left:2713.808000pt;}
.x3a{left:2715.042667pt;}
.x43{left:2716.148000pt;}
.x28{left:2723.288000pt;}
.x3e{left:2725.776000pt;}
.x41{left:2731.130667pt;}
.x2e{left:2735.578667pt;}
.x3b{left:2737.510667pt;}
.x2b{left:2745.969333pt;}
.x2f{left:2757.128000pt;}
.x2d{left:2764.446667pt;}
.x3d{left:2768.284000pt;}
.x42{left:2788.404000pt;}
.x2a{left:2805.488000pt;}
.x27{left:2839.094667pt;}
}




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