
    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_327ee47f6b1aee53b3432ca6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_d9b7570e4ad4f8d2ad68aca9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a4d5ab7300af8d22a54a539e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_fe22310f163f4f745c5b02a6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_499a4df63149b866aa423d95.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b5d210f0394f9d9072f08876.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bd2852b2e61401a6287d11fa.woff')format("woff");}.ffb{font-family:ffb;line-height:0.970703;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_b76382661b7531428bba230e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_8ff0ff339fba362ed5a7610a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.892578;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffe{font-family:ffe;line-height:1.035156;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_99ac258efdcf9506ed569ad2.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff10{font-family:ff10;line-height:1.003906;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_23e7fd0cf469ce895b742abc.woff')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls5{letter-spacing:-1.290000px;}
.lsf{letter-spacing:-1.134000px;}
.ls4{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.483600px;}
.lsd{letter-spacing:-0.420600px;}
.lsb{letter-spacing:-0.305400px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.078000px;}
.ls10{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.828000px;}
.ls11{letter-spacing:1.746000px;}
.lsc{letter-spacing:7.505280px;}
.ls6{letter-spacing:16.560000px;}
.lse{letter-spacing:19.440000px;}
.ls7{letter-spacing:40.625280px;}
.ls12{letter-spacing:40.637280px;}
.lsa{letter-spacing:40.769280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-83.520000px;}
.ws5{word-spacing:-60.480000px;}
.wsa{word-spacing:-23.549640px;}
.ws0{word-spacing:-19.010880px;}
.wsb{word-spacing:-18.306000px;}
.ws7{word-spacing:-17.890800px;}
.ws8{word-spacing:-17.388000px;}
.wsc{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.416000px;}
.ws2{word-spacing:-14.650800px;}
.ws4{word-spacing:-11.880000px;}
.ws6{word-spacing:0.000000px;}
._f{margin-left:-2.839680px;}
._2{margin-left:-1.722240px;}
._0{width:1.085760px;}
._1{width:2.589120px;}
._14{width:4.371840px;}
._3{width:5.961600px;}
._4{width:7.418880px;}
._12{width:8.478720px;}
._18{width:10.258560px;}
._5{width:11.658240px;}
._6{width:13.115520px;}
._17{width:14.299200px;}
._1f{width:15.468480px;}
._15{width:17.732160px;}
._16{width:18.745920px;}
._d{width:19.938240px;}
._e{width:21.170880px;}
._c{width:22.190400px;}
._13{width:23.250240px;}
._7{width:25.104960px;}
._8{width:26.959680px;}
._b{width:28.039680px;}
._a{width:29.264160px;}
._9{width:30.337920px;}
._2d{width:31.530240px;}
._19{width:32.846400px;}
._11{width:34.577280px;}
._1b{width:35.640000px;}
._10{width:36.869760px;}
._2b{width:38.468160px;}
._2c{width:40.354560px;}
._2e{width:41.921280px;}
._20{width:43.652160px;}
._3f{width:44.982720px;}
._25{width:46.126080px;}
._3a{width:47.525760px;}
._41{width:48.951360px;}
._58{width:49.968000px;}
._1e{width:51.269760px;}
._39{width:52.833600px;}
._38{width:54.449280px;}
._54{width:55.621440px;}
._2a{width:56.759040px;}
._28{width:58.694400px;}
._29{width:59.961600px;}
._4a{width:61.367040px;}
._4e{width:62.700480px;}
._24{width:64.160640px;}
._52{width:65.459520px;}
._5c{width:66.576960px;}
._51{width:67.821120px;}
._33{width:69.552000px;}
._32{width:70.842240px;}
._4b{width:72.178560px;}
._48{width:73.327680px;}
._5b{width:74.361600px;}
._31{width:75.806880px;}
._2f{width:76.904640px;}
._5d{width:77.912640px;}
._30{width:79.128000px;}
._42{width:80.455680px;}
._43{width:81.996480px;}
._47{width:83.174400px;}
._46{width:84.875520px;}
._36{width:86.376960px;}
._35{width:87.451200px;}
._4f{width:89.164800px;}
._5f{width:90.336960px;}
._4c{width:91.814400px;}
._4d{width:93.035520px;}
._55{width:94.089120px;}
._59{width:99.241920px;}
._5a{width:100.313280px;}
._1d{width:102.075840px;}
._1c{width:103.109760px;}
._3e{width:104.466240px;}
._37{width:106.447680px;}
._5e{width:107.812800px;}
._63{width:110.090880px;}
._34{width:112.541760px;}
._53{width:113.898240px;}
._3d{width:118.031040px;}
._50{width:119.940960px;}
._57{width:122.212800px;}
._1a{width:125.225280px;}
._56{width:126.529920px;}
._49{width:128.148480px;}
._26{width:130.602240px;}
._27{width:132.215040px;}
._3c{width:133.796160px;}
._3b{width:134.971200px;}
._61{width:136.307520px;}
._40{width:143.527680px;}
._45{width:145.653120px;}
._44{width:146.978400px;}
._23{width:154.875840px;}
._60{width:164.266560px;}
._21{width:190.783200px;}
._22{width:197.745600px;}
._64{width:200.645280px;}
._65{width:202.495680px;}
._62{width:236.436480px;}
._66{width:652.993920px;}
._67{width:847.896000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs5{font-size:24.480000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:47.520000px;}
.fs8{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fs9{font-size:93.600000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y1b{bottom:1.785000px;}
.y13{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.yb{bottom:6.480000px;}
.y9{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y11{bottom:7.920000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.y18{bottom:26.265000px;}
.y5{bottom:33.120000px;}
.y10{bottom:33.840000px;}
.y1{bottom:51.120000px;}
.y17{bottom:56.175000px;}
.y45{bottom:75.240000px;}
.y16{bottom:79.935000px;}
.y15{bottom:95.055000px;}
.y3d{bottom:112.356000px;}
.y6f{bottom:134.316000px;}
.y3c{bottom:136.836000px;}
.y77{bottom:158.430000px;}
.y6e{bottom:158.790000px;}
.y3b{bottom:161.670000px;}
.y7c{bottom:183.270000px;}
.y6d{bottom:183.630000px;}
.y3a{bottom:186.150000px;}
.y6c{bottom:208.155000px;}
.y39{bottom:211.035000px;}
.y6b{bottom:232.995000px;}
.y38{bottom:235.515000px;}
.y6a{bottom:257.475000px;}
.y37{bottom:260.355000px;}
.y69{bottom:282.315000px;}
.y36{bottom:284.835000px;}
.y68{bottom:306.795000px;}
.y42{bottom:309.315000px;}
.y35{bottom:309.675000px;}
.y67{bottom:331.665000px;}
.y41{bottom:333.825000px;}
.y34{bottom:334.185000px;}
.y66{bottom:356.145000px;}
.y40{bottom:358.665000px;}
.y33{bottom:359.025000px;}
.y65{bottom:380.985000px;}
.y32{bottom:383.505000px;}
.y78{bottom:405.105000px;}
.y64{bottom:405.465000px;}
.y31{bottom:408.345000px;}
.y63{bottom:430.305000px;}
.y30{bottom:432.825000px;}
.y62{bottom:454.830000px;}
.y2f{bottom:457.350000px;}
.y3f{bottom:457.710000px;}
.y61{bottom:479.670000px;}
.y2e{bottom:481.830000px;}
.y3e{bottom:482.190000px;}
.y60{bottom:503.790000px;}
.y74{bottom:504.150000px;}
.y2d{bottom:506.670000px;}
.y5f{bottom:528.630000px;}
.y73{bottom:528.990000px;}
.y2c{bottom:530.790000px;}
.y2b{bottom:552.390000px;}
.y5e{bottom:553.470000px;}
.y2a{bottom:574.350000px;}
.y5d{bottom:578.340000px;}
.y29{bottom:601.020000px;}
.y7b{bottom:602.460000px;}
.y5c{bottom:602.820000px;}
.y28{bottom:622.980000px;}
.y7a{bottom:627.300000px;}
.y5b{bottom:627.660000px;}
.y27{bottom:644.580000px;}
.y5a{bottom:652.140000px;}
.y26{bottom:666.540000px;}
.y7f{bottom:676.620000px;}
.y59{bottom:676.980000px;}
.y25{bottom:688.500000px;}
.y7e{bottom:701.130000px;}
.y58{bottom:701.490000px;}
.y24{bottom:710.130000px;}
.y7d{bottom:725.970000px;}
.y57{bottom:726.330000px;}
.y23{bottom:732.090000px;}
.y76{bottom:750.450000px;}
.y56{bottom:750.810000px;}
.y22{bottom:753.690000px;}
.y21{bottom:775.650000px;}
.y20{bottom:797.610000px;}
.y55{bottom:800.130000px;}
.y1f{bottom:819.210000px;}
.y79{bottom:824.610000px;}
.y54{bottom:824.970000px;}
.y1e{bottom:841.215000px;}
.y53{bottom:849.495000px;}
.y1d{bottom:862.455000px;}
.y52{bottom:874.335000px;}
.y1c{bottom:881.895000px;}
.y1a{bottom:890.190000px;}
.y14{bottom:897.750000px;}
.y51{bottom:899.175000px;}
.y19{bottom:902.092868px;}
.y50{bottom:923.655000px;}
.y81{bottom:948.135000px;}
.y4f{bottom:948.495000px;}
.y4e{bottom:973.005000px;}
.y4d{bottom:997.845000px;}
.y12{bottom:1018.365000px;}
.y75{bottom:1021.965000px;}
.y4c{bottom:1022.325000px;}
.yf{bottom:1024.845000px;}
.y4b{bottom:1047.165000px;}
.y72{bottom:1071.285000px;}
.y4a{bottom:1071.645000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y71{bottom:1096.170000px;}
.y49{bottom:1096.530000px;}
.y2{bottom:1106.250000px;}
.y70{bottom:1120.650000px;}
.y48{bottom:1121.010000px;}
.y7{bottom:1128.570000px;}
.y47{bottom:1145.850000px;}
.y4{bottom:1156.650000px;}
.y80{bottom:1169.970000px;}
.y46{bottom:1170.330000px;}
.y44{bottom:1187.250000px;}
.y43{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h17{height:7.545000px;}
.hd{height:13.857187px;}
.h18{height:18.120938px;}
.h11{height:19.584000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h1e{height:30.480469px;}
.h19{height:36.861328px;}
.h1d{height:46.251562px;}
.h14{height:47.891250px;}
.he{height:51.870000px;}
.h5{height:52.950000px;}
.h9{height:56.084062px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h15{height:63.984375px;}
.h1a{height:64.978594px;}
.h1c{height:65.010937px;}
.h1f{height:65.884219px;}
.h1b{height:66.757500px;}
.h20{height:68.084282px;}
.h6{height:70.714687px;}
.h16{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.011250px;}
.h3{height:103.350000px;}
.h12{height:120.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.266500px;}
.x5{left:11.145000px;}
.x10{left:20.520000px;}
.x12{left:26.662500px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.x15{left:89.665500px;}
.xd{left:96.150000px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x20{left:113.076000px;}
.x24{left:123.516000px;}
.x16{left:135.415500px;}
.x1f{left:140.112000px;}
.x25{left:150.555000px;}
.x1a{left:162.075000px;}
.x4{left:168.930000px;}
.x14{left:174.295500px;}
.x17{left:191.575500px;}
.x6{left:208.860000px;}
.x13{left:301.810500px;}
.x18{left:325.030998px;}
.x11{left:335.650500px;}
.xa{left:445.860000px;}
.x1b{left:473.580000px;}
.x1d{left:478.620000px;}
.x22{left:489.090000px;}
.x1e{left:505.650000px;}
.x23{left:516.090000px;}
.x1c{left:527.610000px;}
.x7{left:722.445000px;}
.x21{left:761.370000px;}
.x1{left:773.610000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls5{letter-spacing:-1.146667pt;}
.lsf{letter-spacing:-1.008000pt;}
.ls4{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.429867pt;}
.lsd{letter-spacing:-0.373867pt;}
.lsb{letter-spacing:-0.271467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.069333pt;}
.ls10{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.736000pt;}
.ls11{letter-spacing:1.552000pt;}
.lsc{letter-spacing:6.671360pt;}
.ls6{letter-spacing:14.720000pt;}
.lse{letter-spacing:17.280000pt;}
.ls7{letter-spacing:36.111360pt;}
.ls12{letter-spacing:36.122027pt;}
.lsa{letter-spacing:36.239360pt;}
.ws1{word-spacing:-74.240000pt;}
.ws5{word-spacing:-53.760000pt;}
.wsa{word-spacing:-20.933013pt;}
.ws0{word-spacing:-16.898560pt;}
.wsb{word-spacing:-16.272000pt;}
.ws7{word-spacing:-15.902933pt;}
.ws8{word-spacing:-15.456000pt;}
.wsc{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.592000pt;}
.ws2{word-spacing:-13.022933pt;}
.ws4{word-spacing:-10.560000pt;}
.ws6{word-spacing:0.000000pt;}
._f{margin-left:-2.524160pt;}
._2{margin-left:-1.530880pt;}
._0{width:0.965120pt;}
._1{width:2.301440pt;}
._14{width:3.886080pt;}
._3{width:5.299200pt;}
._4{width:6.594560pt;}
._12{width:7.536640pt;}
._18{width:9.118720pt;}
._5{width:10.362880pt;}
._6{width:11.658240pt;}
._17{width:12.710400pt;}
._1f{width:13.749760pt;}
._15{width:15.761920pt;}
._16{width:16.663040pt;}
._d{width:17.722880pt;}
._e{width:18.818560pt;}
._c{width:19.724800pt;}
._13{width:20.666880pt;}
._7{width:22.315520pt;}
._8{width:23.964160pt;}
._b{width:24.924160pt;}
._a{width:26.012587pt;}
._9{width:26.967040pt;}
._2d{width:28.026880pt;}
._19{width:29.196800pt;}
._11{width:30.735360pt;}
._1b{width:31.680000pt;}
._10{width:32.773120pt;}
._2b{width:34.193920pt;}
._2c{width:35.870720pt;}
._2e{width:37.263360pt;}
._20{width:38.801920pt;}
._3f{width:39.984640pt;}
._25{width:41.000960pt;}
._3a{width:42.245120pt;}
._41{width:43.512320pt;}
._58{width:44.416000pt;}
._1e{width:45.573120pt;}
._39{width:46.963200pt;}
._38{width:48.399360pt;}
._54{width:49.441280pt;}
._2a{width:50.452480pt;}
._28{width:52.172800pt;}
._29{width:53.299200pt;}
._4a{width:54.548480pt;}
._4e{width:55.733760pt;}
._24{width:57.031680pt;}
._52{width:58.186240pt;}
._5c{width:59.179520pt;}
._51{width:60.285440pt;}
._33{width:61.824000pt;}
._32{width:62.970880pt;}
._4b{width:64.158720pt;}
._48{width:65.180160pt;}
._5b{width:66.099200pt;}
._31{width:67.383893pt;}
._2f{width:68.359680pt;}
._5d{width:69.255680pt;}
._30{width:70.336000pt;}
._42{width:71.516160pt;}
._43{width:72.885760pt;}
._47{width:73.932800pt;}
._46{width:75.444907pt;}
._36{width:76.779520pt;}
._35{width:77.734400pt;}
._4f{width:79.257600pt;}
._5f{width:80.299520pt;}
._4c{width:81.612800pt;}
._4d{width:82.698240pt;}
._55{width:83.634773pt;}
._59{width:88.215040pt;}
._5a{width:89.167360pt;}
._1d{width:90.734080pt;}
._1c{width:91.653120pt;}
._3e{width:92.858880pt;}
._37{width:94.620160pt;}
._5e{width:95.833600pt;}
._63{width:97.858560pt;}
._34{width:100.037120pt;}
._53{width:101.242880pt;}
._3d{width:104.916480pt;}
._50{width:106.614187pt;}
._57{width:108.633600pt;}
._1a{width:111.311360pt;}
._56{width:112.471040pt;}
._49{width:113.909760pt;}
._26{width:116.090880pt;}
._27{width:117.524480pt;}
._3c{width:118.929920pt;}
._3b{width:119.974400pt;}
._61{width:121.162240pt;}
._40{width:127.580160pt;}
._45{width:129.469440pt;}
._44{width:130.647467pt;}
._23{width:137.667413pt;}
._60{width:146.014720pt;}
._21{width:169.585067pt;}
._22{width:175.773867pt;}
._64{width:178.351360pt;}
._65{width:179.996160pt;}
._62{width:210.165760pt;}
._66{width:580.439040pt;}
._67{width:753.685333pt;}
.fs4{font-size:16.640000pt;}
.fs5{font-size:21.760000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:42.240000pt;}
.fs8{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fs9{font-size:83.200000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y1b{bottom:1.586667pt;}
.y13{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.yb{bottom:5.760000pt;}
.y9{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y11{bottom:7.040000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.y18{bottom:23.346667pt;}
.y5{bottom:29.440000pt;}
.y10{bottom:30.080000pt;}
.y1{bottom:45.440000pt;}
.y17{bottom:49.933333pt;}
.y45{bottom:66.880000pt;}
.y16{bottom:71.053333pt;}
.y15{bottom:84.493333pt;}
.y3d{bottom:99.872000pt;}
.y6f{bottom:119.392000pt;}
.y3c{bottom:121.632000pt;}
.y77{bottom:140.826667pt;}
.y6e{bottom:141.146667pt;}
.y3b{bottom:143.706667pt;}
.y7c{bottom:162.906667pt;}
.y6d{bottom:163.226667pt;}
.y3a{bottom:165.466667pt;}
.y6c{bottom:185.026667pt;}
.y39{bottom:187.586667pt;}
.y6b{bottom:207.106667pt;}
.y38{bottom:209.346667pt;}
.y6a{bottom:228.866667pt;}
.y37{bottom:231.426667pt;}
.y69{bottom:250.946667pt;}
.y36{bottom:253.186667pt;}
.y68{bottom:272.706667pt;}
.y42{bottom:274.946667pt;}
.y35{bottom:275.266667pt;}
.y67{bottom:294.813333pt;}
.y41{bottom:296.733333pt;}
.y34{bottom:297.053333pt;}
.y66{bottom:316.573333pt;}
.y40{bottom:318.813333pt;}
.y33{bottom:319.133333pt;}
.y65{bottom:338.653333pt;}
.y32{bottom:340.893333pt;}
.y78{bottom:360.093333pt;}
.y64{bottom:360.413333pt;}
.y31{bottom:362.973333pt;}
.y63{bottom:382.493333pt;}
.y30{bottom:384.733333pt;}
.y62{bottom:404.293333pt;}
.y2f{bottom:406.533333pt;}
.y3f{bottom:406.853333pt;}
.y61{bottom:426.373333pt;}
.y2e{bottom:428.293333pt;}
.y3e{bottom:428.613333pt;}
.y60{bottom:447.813333pt;}
.y74{bottom:448.133333pt;}
.y2d{bottom:450.373333pt;}
.y5f{bottom:469.893333pt;}
.y73{bottom:470.213333pt;}
.y2c{bottom:471.813333pt;}
.y2b{bottom:491.013333pt;}
.y5e{bottom:491.973333pt;}
.y2a{bottom:510.533333pt;}
.y5d{bottom:514.080000pt;}
.y29{bottom:534.240000pt;}
.y7b{bottom:535.520000pt;}
.y5c{bottom:535.840000pt;}
.y28{bottom:553.760000pt;}
.y7a{bottom:557.600000pt;}
.y5b{bottom:557.920000pt;}
.y27{bottom:572.960000pt;}
.y5a{bottom:579.680000pt;}
.y26{bottom:592.480000pt;}
.y7f{bottom:601.440000pt;}
.y59{bottom:601.760000pt;}
.y25{bottom:612.000000pt;}
.y7e{bottom:623.226667pt;}
.y58{bottom:623.546667pt;}
.y24{bottom:631.226667pt;}
.y7d{bottom:645.306667pt;}
.y57{bottom:645.626667pt;}
.y23{bottom:650.746667pt;}
.y76{bottom:667.066667pt;}
.y56{bottom:667.386667pt;}
.y22{bottom:669.946667pt;}
.y21{bottom:689.466667pt;}
.y20{bottom:708.986667pt;}
.y55{bottom:711.226667pt;}
.y1f{bottom:728.186667pt;}
.y79{bottom:732.986667pt;}
.y54{bottom:733.306667pt;}
.y1e{bottom:747.746667pt;}
.y53{bottom:755.106667pt;}
.y1d{bottom:766.626667pt;}
.y52{bottom:777.186667pt;}
.y1c{bottom:783.906667pt;}
.y1a{bottom:791.280000pt;}
.y14{bottom:798.000000pt;}
.y51{bottom:799.266667pt;}
.y19{bottom:801.860327pt;}
.y50{bottom:821.026667pt;}
.y81{bottom:842.786667pt;}
.y4f{bottom:843.106667pt;}
.y4e{bottom:864.893333pt;}
.y4d{bottom:886.973333pt;}
.y12{bottom:905.213333pt;}
.y75{bottom:908.413333pt;}
.y4c{bottom:908.733333pt;}
.yf{bottom:910.973333pt;}
.y4b{bottom:930.813333pt;}
.y72{bottom:952.253333pt;}
.y4a{bottom:952.573333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y71{bottom:974.373333pt;}
.y49{bottom:974.693333pt;}
.y2{bottom:983.333333pt;}
.y70{bottom:996.133333pt;}
.y48{bottom:996.453333pt;}
.y7{bottom:1003.173333pt;}
.y47{bottom:1018.533333pt;}
.y4{bottom:1028.133333pt;}
.y80{bottom:1039.973333pt;}
.y46{bottom:1040.293333pt;}
.y44{bottom:1055.333333pt;}
.y43{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h17{height:6.706667pt;}
.hd{height:12.317500pt;}
.h18{height:16.107500pt;}
.h11{height:17.408000pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h1e{height:27.093750pt;}
.h19{height:32.765625pt;}
.h1d{height:41.112500pt;}
.h14{height:42.570000pt;}
.he{height:46.106667pt;}
.h5{height:47.066667pt;}
.h9{height:49.852500pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h15{height:56.875000pt;}
.h1a{height:57.758750pt;}
.h1c{height:57.787500pt;}
.h1f{height:58.563750pt;}
.h1b{height:59.340000pt;}
.h20{height:60.519362pt;}
.h6{height:62.857500pt;}
.h16{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.010000pt;}
.h3{height:91.866667pt;}
.h12{height:107.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.348000pt;}
.x5{left:9.906667pt;}
.x10{left:18.240000pt;}
.x12{left:23.700000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.x15{left:79.702667pt;}
.xd{left:85.466667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x20{left:100.512000pt;}
.x24{left:109.792000pt;}
.x16{left:120.369333pt;}
.x1f{left:124.544000pt;}
.x25{left:133.826667pt;}
.x1a{left:144.066667pt;}
.x4{left:150.160000pt;}
.x14{left:154.929333pt;}
.x17{left:170.289333pt;}
.x6{left:185.653333pt;}
.x13{left:268.276000pt;}
.x18{left:288.916443pt;}
.x11{left:298.356000pt;}
.xa{left:396.320000pt;}
.x1b{left:420.960000pt;}
.x1d{left:425.440000pt;}
.x22{left:434.746667pt;}
.x1e{left:449.466667pt;}
.x23{left:458.746667pt;}
.x1c{left:468.986667pt;}
.x7{left:642.173333pt;}
.x21{left:676.773333pt;}
.x1{left:687.653333pt;}
}




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