
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e8f88e4c2f0d09f087ab072b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_87fccd0a9b9989397fa71ee9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899902;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_5a715ce5b5baebf2d5a64041.woff')format("woff");}.ff4{font-family:ff4;line-height:1.036000;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_19a4aa7b8bb0e50af0e7ec77.woff')format("woff");}.ff5{font-family:ff5;line-height:0.865000;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_a02593f3b4e5372e284b4863.woff')format("woff");}.ff6{font-family:ff6;line-height:0.865000;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_5bad34abf35b59aca84a1a86.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112000;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_a0b822e6c51e00b70732db72.woff')format("woff");}.ff8{font-family:ff8;line-height:1.178000;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_c6a7393c8dff447ef8b8cc6c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.178000;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_33c9ba8bb3768673866c5942.woff')format("woff");}.ffa{font-family:ffa;line-height:0.747000;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_fb7fed07ab9d63190f8c874c.woff')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_21b9e6b02928f8998e6dc11c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.064000;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_589a835a04863a473d239925.woff')format("woff");}.ffd{font-family:ffd;line-height:1.064000;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_4757c1ce925bc982a84a991c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.036000;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_184ad4e53688a7bf264a8f08.woff')format("woff");}.fff{font-family:fff;line-height:1.124000;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_6770ff54c57ebe0bbf69ac02.woff')format("woff");}.ff10{font-family:ff10;line-height:0.945312;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_b76bed0a0a819316475da5c0.woff')format("woff");}.ff11{font-family:ff11;line-height:1.124000;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_e68a0252a463784dc731b359.woff')format("woff");}.ff12{font-family:ff12;line-height:1.209473;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_fb7fed07ab9d63190f8c874c.woff')format("woff");}.ff13{font-family:ff13;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;}
.m1{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);}
.m4{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-0.864000px;}
.ls6{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.385800px;}
.ls5{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.136800px;}
.ls12{letter-spacing:-0.086400px;}
.ls19{letter-spacing:-0.067200px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.206640px;}
.ls9{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls2{letter-spacing:2.376000px;}
.ls8{letter-spacing:3.096000px;}
.ls17{letter-spacing:7.416000px;}
.ls14{letter-spacing:11.760000px;}
.ls1{letter-spacing:18.936000px;}
.lsd{letter-spacing:21.096000px;}
.lsa{letter-spacing:86.616000px;}
.lse{letter-spacing:112.536000px;}
.lsf{letter-spacing:118.296000px;}
.ls10{letter-spacing:170.256000px;}
.ls11{letter-spacing:189.696000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-72.000000px;}
.ws2{word-spacing:-22.628160px;}
.wsa{word-spacing:-20.917440px;}
.ws3{word-spacing:-19.872000px;}
.wsf{word-spacing:-18.864000px;}
.ws13{word-spacing:-18.792000px;}
.ws9{word-spacing:-18.576000px;}
.ws7{word-spacing:-18.504000px;}
.ws12{word-spacing:-18.360000px;}
.ws10{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.282240px;}
.ws8{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.023680px;}
.ws1{word-spacing:-12.976560px;}
.ws5{word-spacing:-10.732320px;}
.ws0{word-spacing:-0.156384px;}
.wsc{word-spacing:-0.069984px;}
.wsb{word-spacing:0.000000px;}
.ws11{word-spacing:80.112000px;}
.wse{word-spacing:100.920000px;}
._33{margin-left:-2.952000px;}
._1{margin-left:-1.013040px;}
._2{width:1.169280px;}
._3{width:2.569920px;}
._7{width:3.795120px;}
._f{width:5.544000px;}
._10{width:6.840000px;}
._13{width:7.988160px;}
._6{width:9.339840px;}
._16{width:10.800000px;}
._17{width:11.880000px;}
._30{width:13.458720px;}
._c{width:14.472000px;}
._d{width:15.564000px;}
._1e{width:17.429040px;}
._e{width:19.711440px;}
._b{width:20.736000px;}
._8{width:21.964320px;}
._4{width:23.250240px;}
._5{width:24.286080px;}
._9{width:25.848000px;}
._a{width:27.012000px;}
._12{width:29.232000px;}
._11{width:31.032000px;}
._32{width:32.040000px;}
._18{width:33.048000px;}
._31{width:50.328000px;}
._26{width:63.589440px;}
._2d{width:67.284000px;}
._19{width:71.472000px;}
._2c{width:74.208000px;}
._1f{width:84.432000px;}
._22{width:87.816000px;}
._25{width:89.028000px;}
._2e{width:90.120000px;}
._1a{width:93.762720px;}
._2a{width:98.400000px;}
._2f{width:99.557040px;}
._1d{width:100.704000px;}
._20{width:108.396000px;}
._21{width:109.476000px;}
._2b{width:116.796000px;}
._1b{width:120.036000px;}
._24{width:126.120000px;}
._23{width:131.562720px;}
._14{width:134.964000px;}
._27{width:161.760000px;}
._1c{width:164.196000px;}
._29{width:180.624000px;}
._15{width:188.364000px;}
._28{width:224.820000px;}
._0{width:1481.609760px;}
.fc5{color:rgb(21,27,28);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.fs1{font-size:156.384000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y42{bottom:6.660000px;}
.yb{bottom:16.740000px;}
.y6{bottom:19.620000px;}
.ya{bottom:24.120000px;}
.y7{bottom:26.820000px;}
.y41{bottom:30.420000px;}
.y43{bottom:39.450000px;}
.y9{bottom:47.520000px;}
.y40{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.y3{bottom:78.120000px;}
.y2{bottom:98.640000px;}
.y6d{bottom:119.880000px;}
.y3e{bottom:124.200000px;}
.y5{bottom:131.220000px;}
.y3d{bottom:146.160000px;}
.y6c{bottom:149.220000px;}
.y3c{bottom:167.970000px;}
.y6b{bottom:171.210000px;}
.y3b{bottom:189.930000px;}
.y6a{bottom:200.370000px;}
.y3a{bottom:211.890000px;}
.y69{bottom:222.330000px;}
.y39{bottom:233.850000px;}
.y68{bottom:244.290000px;}
.y38{bottom:255.810000px;}
.y67{bottom:266.250000px;}
.y37{bottom:277.770000px;}
.y66{bottom:295.950000px;}
.y36{bottom:299.730000px;}
.y65{bottom:317.910000px;}
.y35{bottom:321.690000px;}
.y64{bottom:342.750000px;}
.y34{bottom:343.650000px;}
.y63{bottom:364.710000px;}
.y33{bottom:365.610000px;}
.y62{bottom:386.490000px;}
.y32{bottom:387.390000px;}
.y31{bottom:409.395000px;}
.y61{bottom:412.095000px;}
.y30{bottom:431.355000px;}
.y60{bottom:434.055000px;}
.y2f{bottom:453.315000px;}
.y5f{bottom:456.015000px;}
.y2e{bottom:475.275000px;}
.y5e{bottom:497.055000px;}
.y2d{bottom:497.235000px;}
.y5d{bottom:519.015000px;}
.y2c{bottom:519.195000px;}
.y5c{bottom:540.975000px;}
.y2b{bottom:541.155000px;}
.y5b{bottom:562.935000px;}
.y2a{bottom:563.115000px;}
.y5a{bottom:584.895000px;}
.y29{bottom:585.075000px;}
.y86{bottom:592.995000px;}
.y28{bottom:606.855000px;}
.y85{bottom:614.955000px;}
.y27{bottom:628.815000px;}
.y84{bottom:636.915000px;}
.y26{bottom:650.805000px;}
.y83{bottom:661.785000px;}
.y59{bottom:662.505000px;}
.y25{bottom:672.405000px;}
.y82{bottom:683.745000px;}
.y58{bottom:684.465000px;}
.y24{bottom:694.005000px;}
.y23{bottom:705.525000px;}
.y81{bottom:708.585000px;}
.y57{bottom:715.965000px;}
.y22{bottom:725.505000px;}
.y80{bottom:730.545000px;}
.y56{bottom:737.925000px;}
.y21{bottom:745.665000px;}
.y7f{bottom:755.385000px;}
.y55{bottom:759.885000px;}
.y20{bottom:765.825000px;}
.y7e{bottom:777.345000px;}
.y54{bottom:781.845000px;}
.y1f{bottom:785.805000px;}
.y7d{bottom:799.305000px;}
.y53{bottom:803.805000px;}
.y1e{bottom:805.965000px;}
.y7c{bottom:821.085000px;}
.y52{bottom:825.765000px;}
.y1d{bottom:826.125000px;}
.y7b{bottom:843.045000px;}
.y1c{bottom:846.285000px;}
.y51{bottom:852.765000px;}
.y7a{bottom:865.005000px;}
.y1b{bottom:866.265000px;}
.y50{bottom:882.465000px;}
.y1a{bottom:886.425000px;}
.y79{bottom:886.965000px;}
.y19{bottom:903.570000px;}
.y4f{bottom:904.290000px;}
.y78{bottom:908.970000px;}
.y18{bottom:912.390000px;}
.y77{bottom:930.930000px;}
.y4e{bottom:931.290000px;}
.y17{bottom:931.650000px;}
.y16{bottom:944.610000px;}
.y76{bottom:952.890000px;}
.y4d{bottom:953.250000px;}
.y15{bottom:956.490000px;}
.y75{bottom:974.850000px;}
.y4c{bottom:975.210000px;}
.y14{bottom:978.450000px;}
.y74{bottom:996.810000px;}
.y4b{bottom:997.170000px;}
.y13{bottom:1000.410000px;}
.y73{bottom:1018.770000px;}
.y4a{bottom:1028.670000px;}
.y72{bottom:1040.550000px;}
.y12{bottom:1043.610000px;}
.y49{bottom:1050.630000px;}
.y71{bottom:1062.510000px;}
.y11{bottom:1067.370000px;}
.y48{bottom:1072.590000px;}
.y70{bottom:1084.470000px;}
.y47{bottom:1094.550000px;}
.y6f{bottom:1106.430000px;}
.y3f{bottom:1114.710000px;}
.y46{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y6e{bottom:1128.390000px;}
.y45{bottom:1138.470000px;}
.yf{bottom:1142.070000px;}
.y44{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h12{height:16.398000px;}
.h6{height:17.280000px;}
.h11{height:27.548640px;}
.h13{height:29.604960px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.640000px;}
.h9{height:36.228240px;}
.h7{height:40.618080px;}
.h3{height:56.436480px;}
.hd{height:58.397760px;}
.h10{height:64.848960px;}
.h15{height:65.473920px;}
.hf{height:65.592000px;}
.h2{height:65.884219px;}
.he{height:70.488000px;}
.h14{height:73.116000px;}
.h16{height:73.722656px;}
.h17{height:82.470960px;}
.h18{height:86.585445px;}
.h5{height:121.182328px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.w4{width:317.415000px;}
.w6{width:438.195000px;}
.w5{width:797.400000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.940000px;}
.xf{left:14.580000px;}
.x10{left:23.580000px;}
.x6{left:70.740000px;}
.x1{left:80.999987px;}
.xa{left:88.595987px;}
.x5{left:102.465000px;}
.x12{left:123.515987px;}
.xc{left:127.475987px;}
.xd{left:134.135987px;}
.x14{left:138.995987px;}
.x11{left:144.540000px;}
.x13{left:153.389987px;}
.x9{left:227.595000px;}
.xe{left:285.735000px;}
.xb{left:371.954987px;}
.x4{left:554.145000px;}
.x7{left:721.770000px;}
.x8{left:786.600000px;}
.x2{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-0.768000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.342933pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.121600pt;}
.ls12{letter-spacing:-0.076800pt;}
.ls19{letter-spacing:-0.059733pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.183680pt;}
.ls9{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls2{letter-spacing:2.112000pt;}
.ls8{letter-spacing:2.752000pt;}
.ls17{letter-spacing:6.592000pt;}
.ls14{letter-spacing:10.453333pt;}
.ls1{letter-spacing:16.832000pt;}
.lsd{letter-spacing:18.752000pt;}
.lsa{letter-spacing:76.992000pt;}
.lse{letter-spacing:100.032000pt;}
.lsf{letter-spacing:105.152000pt;}
.ls10{letter-spacing:151.338667pt;}
.ls11{letter-spacing:168.618667pt;}
.wsd{word-spacing:-64.000000pt;}
.ws2{word-spacing:-20.113920pt;}
.wsa{word-spacing:-18.593280pt;}
.ws3{word-spacing:-17.664000pt;}
.wsf{word-spacing:-16.768000pt;}
.ws13{word-spacing:-16.704000pt;}
.ws9{word-spacing:-16.512000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws12{word-spacing:-16.320000pt;}
.ws10{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.250880pt;}
.ws8{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.132160pt;}
.ws1{word-spacing:-11.534720pt;}
.ws5{word-spacing:-9.539840pt;}
.ws0{word-spacing:-0.139008pt;}
.wsc{word-spacing:-0.062208pt;}
.wsb{word-spacing:0.000000pt;}
.ws11{word-spacing:71.210667pt;}
.wse{word-spacing:89.706667pt;}
._33{margin-left:-2.624000pt;}
._1{margin-left:-0.900480pt;}
._2{width:1.039360pt;}
._3{width:2.284373pt;}
._7{width:3.373440pt;}
._f{width:4.928000pt;}
._10{width:6.080000pt;}
._13{width:7.100587pt;}
._6{width:8.302080pt;}
._16{width:9.600000pt;}
._17{width:10.560000pt;}
._30{width:11.963307pt;}
._c{width:12.864000pt;}
._d{width:13.834667pt;}
._1e{width:15.492480pt;}
._e{width:17.521280pt;}
._b{width:18.432000pt;}
._8{width:19.523840pt;}
._4{width:20.666880pt;}
._5{width:21.587627pt;}
._9{width:22.976000pt;}
._a{width:24.010667pt;}
._12{width:25.984000pt;}
._11{width:27.584000pt;}
._32{width:28.480000pt;}
._18{width:29.376000pt;}
._31{width:44.736000pt;}
._26{width:56.523947pt;}
._2d{width:59.808000pt;}
._19{width:63.530667pt;}
._2c{width:65.962667pt;}
._1f{width:75.050667pt;}
._22{width:78.058667pt;}
._25{width:79.136000pt;}
._2e{width:80.106667pt;}
._1a{width:83.344640pt;}
._2a{width:87.466667pt;}
._2f{width:88.495147pt;}
._1d{width:89.514667pt;}
._20{width:96.352000pt;}
._21{width:97.312000pt;}
._2b{width:103.818667pt;}
._1b{width:106.698667pt;}
._24{width:112.106667pt;}
._23{width:116.944640pt;}
._14{width:119.968000pt;}
._27{width:143.786667pt;}
._1c{width:145.952000pt;}
._29{width:160.554667pt;}
._15{width:167.434667pt;}
._28{width:199.840000pt;}
._0{width:1316.986453pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.fs1{font-size:139.008000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y42{bottom:5.920000pt;}
.yb{bottom:14.880000pt;}
.y6{bottom:17.440000pt;}
.ya{bottom:21.440000pt;}
.y7{bottom:23.840000pt;}
.y41{bottom:27.040000pt;}
.y43{bottom:35.066667pt;}
.y9{bottom:42.240000pt;}
.y40{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:69.440000pt;}
.y2{bottom:87.680000pt;}
.y6d{bottom:106.560000pt;}
.y3e{bottom:110.400000pt;}
.y5{bottom:116.640000pt;}
.y3d{bottom:129.920000pt;}
.y6c{bottom:132.640000pt;}
.y3c{bottom:149.306667pt;}
.y6b{bottom:152.186667pt;}
.y3b{bottom:168.826667pt;}
.y6a{bottom:178.106667pt;}
.y3a{bottom:188.346667pt;}
.y69{bottom:197.626667pt;}
.y39{bottom:207.866667pt;}
.y68{bottom:217.146667pt;}
.y38{bottom:227.386667pt;}
.y67{bottom:236.666667pt;}
.y37{bottom:246.906667pt;}
.y66{bottom:263.066667pt;}
.y36{bottom:266.426667pt;}
.y65{bottom:282.586667pt;}
.y35{bottom:285.946667pt;}
.y64{bottom:304.666667pt;}
.y34{bottom:305.466667pt;}
.y63{bottom:324.186667pt;}
.y33{bottom:324.986667pt;}
.y62{bottom:343.546667pt;}
.y32{bottom:344.346667pt;}
.y31{bottom:363.906667pt;}
.y61{bottom:366.306667pt;}
.y30{bottom:383.426667pt;}
.y60{bottom:385.826667pt;}
.y2f{bottom:402.946667pt;}
.y5f{bottom:405.346667pt;}
.y2e{bottom:422.466667pt;}
.y5e{bottom:441.826667pt;}
.y2d{bottom:441.986667pt;}
.y5d{bottom:461.346667pt;}
.y2c{bottom:461.506667pt;}
.y5c{bottom:480.866667pt;}
.y2b{bottom:481.026667pt;}
.y5b{bottom:500.386667pt;}
.y2a{bottom:500.546667pt;}
.y5a{bottom:519.906667pt;}
.y29{bottom:520.066667pt;}
.y86{bottom:527.106667pt;}
.y28{bottom:539.426667pt;}
.y85{bottom:546.626667pt;}
.y27{bottom:558.946667pt;}
.y84{bottom:566.146667pt;}
.y26{bottom:578.493333pt;}
.y83{bottom:588.253333pt;}
.y59{bottom:588.893333pt;}
.y25{bottom:597.693333pt;}
.y82{bottom:607.773333pt;}
.y58{bottom:608.413333pt;}
.y24{bottom:616.893333pt;}
.y23{bottom:627.133333pt;}
.y81{bottom:629.853333pt;}
.y57{bottom:636.413333pt;}
.y22{bottom:644.893333pt;}
.y80{bottom:649.373333pt;}
.y56{bottom:655.933333pt;}
.y21{bottom:662.813333pt;}
.y7f{bottom:671.453333pt;}
.y55{bottom:675.453333pt;}
.y20{bottom:680.733333pt;}
.y7e{bottom:690.973333pt;}
.y54{bottom:694.973333pt;}
.y1f{bottom:698.493333pt;}
.y7d{bottom:710.493333pt;}
.y53{bottom:714.493333pt;}
.y1e{bottom:716.413333pt;}
.y7c{bottom:729.853333pt;}
.y52{bottom:734.013333pt;}
.y1d{bottom:734.333333pt;}
.y7b{bottom:749.373333pt;}
.y1c{bottom:752.253333pt;}
.y51{bottom:758.013333pt;}
.y7a{bottom:768.893333pt;}
.y1b{bottom:770.013333pt;}
.y50{bottom:784.413333pt;}
.y1a{bottom:787.933333pt;}
.y79{bottom:788.413333pt;}
.y19{bottom:803.173333pt;}
.y4f{bottom:803.813333pt;}
.y78{bottom:807.973333pt;}
.y18{bottom:811.013333pt;}
.y77{bottom:827.493333pt;}
.y4e{bottom:827.813333pt;}
.y17{bottom:828.133333pt;}
.y16{bottom:839.653333pt;}
.y76{bottom:847.013333pt;}
.y4d{bottom:847.333333pt;}
.y15{bottom:850.213333pt;}
.y75{bottom:866.533333pt;}
.y4c{bottom:866.853333pt;}
.y14{bottom:869.733333pt;}
.y74{bottom:886.053333pt;}
.y4b{bottom:886.373333pt;}
.y13{bottom:889.253333pt;}
.y73{bottom:905.573333pt;}
.y4a{bottom:914.373333pt;}
.y72{bottom:924.933333pt;}
.y12{bottom:927.653333pt;}
.y49{bottom:933.893333pt;}
.y71{bottom:944.453333pt;}
.y11{bottom:948.773333pt;}
.y48{bottom:953.413333pt;}
.y70{bottom:963.973333pt;}
.y47{bottom:972.933333pt;}
.y6f{bottom:983.493333pt;}
.y3f{bottom:990.853333pt;}
.y46{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y6e{bottom:1003.013333pt;}
.y45{bottom:1011.973333pt;}
.yf{bottom:1015.173333pt;}
.y44{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h12{height:14.576000pt;}
.h6{height:15.360000pt;}
.h11{height:24.487680pt;}
.h13{height:26.315520pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.680000pt;}
.h9{height:32.202880pt;}
.h7{height:36.104960pt;}
.h3{height:50.165760pt;}
.hd{height:51.909120pt;}
.h10{height:57.643520pt;}
.h15{height:58.199040pt;}
.hf{height:58.304000pt;}
.h2{height:58.563750pt;}
.he{height:62.656000pt;}
.h14{height:64.992000pt;}
.h16{height:65.531250pt;}
.h17{height:73.307520pt;}
.h18{height:76.964840pt;}
.h5{height:107.717625pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.w4{width:282.146667pt;}
.w6{width:389.506667pt;}
.w5{width:708.800000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:5.280000pt;}
.xf{left:12.960000pt;}
.x10{left:20.960000pt;}
.x6{left:62.880000pt;}
.x1{left:71.999988pt;}
.xa{left:78.751988pt;}
.x5{left:91.080000pt;}
.x12{left:109.791988pt;}
.xc{left:113.311988pt;}
.xd{left:119.231988pt;}
.x14{left:123.551988pt;}
.x11{left:128.480000pt;}
.x13{left:136.346655pt;}
.x9{left:202.306667pt;}
.xe{left:253.986667pt;}
.xb{left:330.626655pt;}
.x4{left:492.573333pt;}
.x7{left:641.573333pt;}
.x8{left:699.200000pt;}
.x2{left:737.120000pt;}
}




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