
    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_c60bbc4ba372dfb38f894958.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dfee6f510ff049ef3f6f6a59.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_efd4d2185462fc05123d2031.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b269a77b942aefb211ca9589.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_292ddd8ac34d9296a6092490.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8101204e23b63d244dcc80c7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b238afdbeefa1143f06458ef.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_43ab2a473c3ad94873ec179d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0c14cfbe89645b66013f8c2d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_083bdf5386ef7857f450a87b.woff2')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_08275554a79ff88a077315f8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_59b5c823e849e94eb7babac9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.738770;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_3981432b1e467b90e7409ab7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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_415081a2e971b888822b6a1d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_867031d48bbb177676489779.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_f1f73188d33b86d4d3f8e1ba.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.435059;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{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:33.120000px;}
.lsc{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.078000px;}
.lsa{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:33.264000px;}
.ls7{letter-spacing:33.276000px;}
.ls9{letter-spacing:53.424000px;}
.ls1{letter-spacing:55.330560px;}
.ls4{letter-spacing:63.826560px;}
.ls6{letter-spacing:63.838560px;}
.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 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(148,54,52),0 0.015em rgb(148,54,52),0.015em 0 rgb(148,54,52),0 -0.015em  rgb(148,54,52);}
@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 transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(148,54,52);text-shadow:none;}
}
.ws1{word-spacing:-83.520000px;}
.ws3{word-spacing:-72.000000px;}
.ws7{word-spacing:-60.480000px;}
.ws0{word-spacing:-19.010880px;}
.ws9{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.352000px;}
.ws2{word-spacing:-14.650800px;}
.ws4{word-spacing:-0.060480px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-3.362880px;}
._2{margin-left:-1.722240px;}
._0{width:1.378080px;}
._3{width:2.605440px;}
._1{width:3.991680px;}
._5{width:5.630400px;}
._11{width:7.179360px;}
._7{width:8.198880px;}
._6{width:9.576000px;}
._2a{width:10.578240px;}
._28{width:11.730240px;}
._c{width:12.816000px;}
._d{width:14.389920px;}
._e{width:15.412320px;}
._17{width:16.760160px;}
._9{width:20.135520px;}
._8{width:21.162240px;}
._b{width:22.945920px;}
._a{width:23.970240px;}
._10{width:24.985920px;}
._f{width:25.986240px;}
._2d{width:27.128160px;}
._2e{width:28.784160px;}
._32{width:30.296640px;}
._29{width:31.476960px;}
._15{width:32.670720px;}
._12{width:33.680160px;}
._36{width:34.723200px;}
._21{width:35.808480px;}
._20{width:37.233120px;}
._2c{width:38.726400px;}
._2f{width:40.502880px;}
._2b{width:41.707200px;}
._3e{width:43.832160px;}
._1f{width:45.704160px;}
._1d{width:47.082240px;}
._1e{width:48.352320px;}
._35{width:50.162400px;}
._41{width:51.936000px;}
._53{width:54.312960px;}
._4c{width:55.496160px;}
._3a{width:57.176640px;}
._3f{width:59.159040px;}
._19{width:60.484320px;}
._18{width:62.562240px;}
._49{width:63.957600px;}
._30{width:65.263200px;}
._31{width:66.963360px;}
._4e{width:68.816160px;}
._4f{width:70.075200px;}
._1a{width:74.550720px;}
._1c{width:75.578880px;}
._1b{width:77.224320px;}
._40{width:79.056000px;}
._4a{width:80.258400px;}
._48{width:81.544800px;}
._43{width:82.645920px;}
._4d{width:84.640800px;}
._16{width:86.610240px;}
._42{width:88.488000px;}
._34{width:89.552160px;}
._33{width:90.883200px;}
._4b{width:92.339520px;}
._47{width:93.712800px;}
._39{width:95.234400px;}
._37{width:96.258240px;}
._38{width:97.472160px;}
._14{width:99.906720px;}
._13{width:102.058560px;}
._57{width:104.306400px;}
._58{width:105.768000px;}
._52{width:108.210240px;}
._50{width:112.608000px;}
._27{width:114.586560px;}
._44{width:122.672160px;}
._54{width:123.710880px;}
._56{width:129.600000px;}
._3b{width:135.309600px;}
._51{width:145.805760px;}
._46{width:157.237920px;}
._45{width:158.322240px;}
._55{width:167.832000px;}
._3c{width:182.341440px;}
._3d{width:184.571040px;}
._22{width:190.490880px;}
._23{width:197.745600px;}
._24{width:588.305760px;}
._25{width:768.329760px;}
._59{width:846.456000px;}
._26{width:1088.129760px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(148,54,52);}
.fs5{font-size:18.720000px;}
.fs7{font-size:24.480000px;}
.fs9{font-size:47.520000px;}
.fsa{font-size:54.720000px;}
.fs8{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:83.520000px;}
.fs0{font-size:88.036930px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:1.080000px;}
.y1b{bottom:1.425000px;}
.y12{bottom:2.160000px;}
.y4{bottom:3.600000px;}
.y19{bottom:4.305000px;}
.y9{bottom:6.840000px;}
.yb{bottom:7.560000px;}
.y7{bottom:8.280000px;}
.y10{bottom:11.880000px;}
.y18{bottom:29.145000px;}
.y6{bottom:33.150000px;}
.yf{bottom:43.245000px;}
.y17{bottom:53.985000px;}
.y2{bottom:58.320000px;}
.y16{bottom:81.015000px;}
.y1{bottom:85.716000px;}
.y3e{bottom:87.156000px;}
.y15{bottom:107.655000px;}
.y74{bottom:110.196000px;}
.y3a{bottom:111.996000px;}
.y67{bottom:115.236000px;}
.y99{bottom:127.836000px;}
.y14{bottom:134.295000px;}
.y73{bottom:137.196000px;}
.y39{bottom:137.916000px;}
.y66{bottom:141.156000px;}
.y98{bottom:154.470000px;}
.y38{bottom:163.830000px;}
.y72{bottom:164.190000px;}
.y6b{bottom:166.710000px;}
.y65{bottom:167.070000px;}
.y97{bottom:181.110000px;}
.y9e{bottom:181.470000px;}
.y37{bottom:189.390000px;}
.y71{bottom:190.830000px;}
.y64{bottom:192.990000px;}
.y96{bottom:208.155000px;}
.y9d{bottom:208.515000px;}
.y70{bottom:213.915000px;}
.y36{bottom:215.355000px;}
.y63{bottom:218.595000px;}
.y95{bottom:235.155000px;}
.y35{bottom:241.275000px;}
.y62{bottom:244.515000px;}
.y94{bottom:262.155000px;}
.y34{bottom:267.195000px;}
.y61{bottom:270.435000px;}
.y93{bottom:289.155000px;}
.y33{bottom:292.755000px;}
.y3b{bottom:293.115000px;}
.y60{bottom:296.355000px;}
.y92{bottom:316.155000px;}
.y32{bottom:320.115000px;}
.y5f{bottom:322.275000px;}
.y91{bottom:342.825000px;}
.y31{bottom:346.065000px;}
.y5e{bottom:348.225000px;}
.y9c{bottom:369.465000px;}
.y30{bottom:369.825000px;}
.y5d{bottom:374.145000px;}
.y2f{bottom:393.585000px;}
.y9b{bottom:396.465000px;}
.y90{bottom:396.825000px;}
.y5c{bottom:400.065000px;}
.y2e{bottom:417.345000px;}
.y8f{bottom:423.825000px;}
.y5b{bottom:425.625000px;}
.y2d{bottom:441.465000px;}
.y8e{bottom:450.465000px;}
.y5a{bottom:451.230000px;}
.y6a{bottom:451.590000px;}
.y2c{bottom:467.070000px;}
.y59{bottom:477.510000px;}
.y2b{bottom:495.870000px;}
.y58{bottom:503.430000px;}
.y8d{bottom:504.510000px;}
.y2a{bottom:519.630000px;}
.y57{bottom:529.350000px;}
.y8c{bottom:531.510000px;}
.y29{bottom:543.390000px;}
.y6f{bottom:553.830000px;}
.y56{bottom:555.270000px;}
.y8b{bottom:558.150000px;}
.y28{bottom:567.150000px;}
.y69{bottom:580.860000px;}
.y55{bottom:581.220000px;}
.y8a{bottom:585.180000px;}
.y27{bottom:590.940000px;}
.y54{bottom:607.140000px;}
.y89{bottom:612.180000px;}
.y26{bottom:614.700000px;}
.y53{bottom:632.700000px;}
.y25{bottom:638.460000px;}
.y88{bottom:639.180000px;}
.y52{bottom:658.620000px;}
.y24{bottom:662.220000px;}
.y87{bottom:665.820000px;}
.y51{bottom:684.540000px;}
.y23{bottom:686.340000px;}
.y86{bottom:692.820000px;}
.y22{bottom:710.130000px;}
.y50{bottom:710.490000px;}
.y85{bottom:719.850000px;}
.y21{bottom:733.890000px;}
.y4f{bottom:736.410000px;}
.y84{bottom:746.850000px;}
.y20{bottom:757.650000px;}
.y4e{bottom:762.330000px;}
.y83{bottom:773.490000px;}
.y1f{bottom:781.410000px;}
.y4d{bottom:788.250000px;}
.y82{bottom:800.490000px;}
.y1e{bottom:805.170000px;}
.y4c{bottom:813.810000px;}
.y81{bottom:827.535000px;}
.y1d{bottom:828.975000px;}
.ya1{bottom:830.415000px;}
.y6d{bottom:839.415000px;}
.y4b{bottom:839.775000px;}
.y1c{bottom:852.375000px;}
.ya0{bottom:854.175000px;}
.y80{bottom:854.535000px;}
.y6c{bottom:865.335000px;}
.y4a{bottom:865.695000px;}
.y1a{bottom:868.950000px;}
.y13{bottom:876.150000px;}
.y7f{bottom:881.175000px;}
.y49{bottom:891.615000px;}
.y7e{bottom:908.175000px;}
.y48{bottom:917.535000px;}
.y7d{bottom:935.175000px;}
.y47{bottom:943.455000px;}
.y7c{bottom:962.205000px;}
.y46{bottom:969.405000px;}
.y7b{bottom:988.845000px;}
.y45{bottom:995.325000px;}
.y7a{bottom:1015.845000px;}
.y68{bottom:1020.525000px;}
.y44{bottom:1020.885000px;}
.y11{bottom:1027.005000px;}
.ye{bottom:1033.485000px;}
.y9f{bottom:1042.485000px;}
.y79{bottom:1042.845000px;}
.y6e{bottom:1046.445000px;}
.y43{bottom:1046.805000px;}
.y78{bottom:1069.845000px;}
.y42{bottom:1072.725000px;}
.yc{bottom:1096.170000px;}
.y77{bottom:1096.530000px;}
.y41{bottom:1098.690000px;}
.ya{bottom:1101.570000px;}
.y76{bottom:1123.170000px;}
.y9a{bottom:1123.530000px;}
.y40{bottom:1124.610000px;}
.y3{bottom:1126.050000px;}
.y8{bottom:1148.370000px;}
.y75{bottom:1150.170000px;}
.y3f{bottom:1150.530000px;}
.y3d{bottom:1170.330000px;}
.y5{bottom:1176.450000px;}
.y3c{bottom:1189.050000px;}
.hd{height:5.385000px;}
.h12{height:6.465000px;}
.h18{height:7.185000px;}
.he{height:13.857187px;}
.h19{height:18.120938px;}
.h13{height:19.584000px;}
.h9{height:22.305000px;}
.hb{height:24.465000px;}
.h8{height:28.065000px;}
.h20{height:50.273438px;}
.h1c{height:51.207188px;}
.h6{height:52.950000px;}
.ha{height:56.084062px;}
.h1d{height:59.328281px;}
.h1a{height:59.343750px;}
.h2{height:60.181495px;}
.hc{height:60.960938px;}
.h3{height:61.742812px;}
.hf{height:62.670000px;}
.h16{height:70.628906px;}
.h1b{height:70.664062px;}
.h7{height:70.714687px;}
.h15{height:72.562500px;}
.h1e{height:74.004654px;}
.h1f{height:74.953125px;}
.h5{height:76.317188px;}
.h17{height:81.011250px;}
.h10{height:84.172500px;}
.h4{height:103.350000px;}
.h11{height:108.843750px;}
.h14{height:150.840000px;}
.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;}
.x6{left:11.145000px;}
.x15{left:18.346500px;}
.x12{left:32.062500px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x10{left:59.430000px;}
.x3{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:91.095000px;}
.xd{left:96.150000px;}
.x1{left:108.036000px;}
.x4{left:110.185500px;}
.x1b{left:113.076000px;}
.x1f{left:135.072000px;}
.x17{left:144.415500px;}
.x1a{left:162.075000px;}
.x5{left:168.930000px;}
.x14{left:192.295500px;}
.x7{left:208.860000px;}
.x18{left:214.300500px;}
.x13{left:235.180500px;}
.x16{left:236.980500px;}
.x11{left:335.650500px;}
.xa{left:445.860000px;}
.x1c{left:473.580000px;}
.x20{left:494.850000px;}
.x1d{left:500.610000px;}
.x1e{left:527.610000px;}
.x8{left:722.445000px;}
.x2{left:737.205000px;}
.x21{left:815.730000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.069333pt;}
.lsa{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:29.568000pt;}
.ls7{letter-spacing:29.578667pt;}
.ls9{letter-spacing:47.488000pt;}
.ls1{letter-spacing:49.182720pt;}
.ls4{letter-spacing:56.734720pt;}
.ls6{letter-spacing:56.745387pt;}
.ws1{word-spacing:-74.240000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws7{word-spacing:-53.760000pt;}
.ws0{word-spacing:-16.898560pt;}
.ws9{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.424000pt;}
.ws2{word-spacing:-13.022933pt;}
.ws4{word-spacing:-0.053760pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-2.989227pt;}
._2{margin-left:-1.530880pt;}
._0{width:1.224960pt;}
._3{width:2.315947pt;}
._1{width:3.548160pt;}
._5{width:5.004800pt;}
._11{width:6.381653pt;}
._7{width:7.287893pt;}
._6{width:8.512000pt;}
._2a{width:9.402880pt;}
._28{width:10.426880pt;}
._c{width:11.392000pt;}
._d{width:12.791040pt;}
._e{width:13.699840pt;}
._17{width:14.897920pt;}
._9{width:17.898240pt;}
._8{width:18.810880pt;}
._b{width:20.396373pt;}
._a{width:21.306880pt;}
._10{width:22.209707pt;}
._f{width:23.098880pt;}
._2d{width:24.113920pt;}
._2e{width:25.585920pt;}
._32{width:26.930347pt;}
._29{width:27.979520pt;}
._15{width:29.040640pt;}
._12{width:29.937920pt;}
._36{width:30.865067pt;}
._21{width:31.829760pt;}
._20{width:33.096107pt;}
._2c{width:34.423467pt;}
._2f{width:36.002560pt;}
._2b{width:37.073067pt;}
._3e{width:38.961920pt;}
._1f{width:40.625920pt;}
._1d{width:41.850880pt;}
._1e{width:42.979840pt;}
._35{width:44.588800pt;}
._41{width:46.165333pt;}
._53{width:48.278187pt;}
._4c{width:49.329920pt;}
._3a{width:50.823680pt;}
._3f{width:52.585813pt;}
._19{width:53.763840pt;}
._18{width:55.610880pt;}
._49{width:56.851200pt;}
._30{width:58.011733pt;}
._31{width:59.522987pt;}
._4e{width:61.169920pt;}
._4f{width:62.289067pt;}
._1a{width:66.267307pt;}
._1c{width:67.181227pt;}
._1b{width:68.643840pt;}
._40{width:70.272000pt;}
._4a{width:71.340800pt;}
._48{width:72.484267pt;}
._43{width:73.463040pt;}
._4d{width:75.236267pt;}
._16{width:76.986880pt;}
._42{width:78.656000pt;}
._34{width:79.601920pt;}
._33{width:80.785067pt;}
._4b{width:82.079573pt;}
._47{width:83.300267pt;}
._39{width:84.652800pt;}
._37{width:85.562880pt;}
._38{width:86.641920pt;}
._14{width:88.805973pt;}
._13{width:90.718720pt;}
._57{width:92.716800pt;}
._58{width:94.016000pt;}
._52{width:96.186880pt;}
._50{width:100.096000pt;}
._27{width:101.854720pt;}
._44{width:109.041920pt;}
._54{width:109.965227pt;}
._56{width:115.200000pt;}
._3b{width:120.275200pt;}
._51{width:129.605120pt;}
._46{width:139.767040pt;}
._45{width:140.730880pt;}
._55{width:149.184000pt;}
._3c{width:162.081280pt;}
._3d{width:164.063147pt;}
._22{width:169.325227pt;}
._23{width:175.773867pt;}
._24{width:522.938453pt;}
._25{width:682.959787pt;}
._59{width:752.405333pt;}
._26{width:967.226453pt;}
.fs5{font-size:16.640000pt;}
.fs7{font-size:21.760000pt;}
.fs9{font-size:42.240000pt;}
.fsa{font-size:48.640000pt;}
.fs8{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.240000pt;}
.fs0{font-size:78.255049pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:0.960000pt;}
.y1b{bottom:1.266667pt;}
.y12{bottom:1.920000pt;}
.y4{bottom:3.200000pt;}
.y19{bottom:3.826667pt;}
.y9{bottom:6.080000pt;}
.yb{bottom:6.720000pt;}
.y7{bottom:7.360000pt;}
.y10{bottom:10.560000pt;}
.y18{bottom:25.906667pt;}
.y6{bottom:29.466667pt;}
.yf{bottom:38.440000pt;}
.y17{bottom:47.986667pt;}
.y2{bottom:51.840000pt;}
.y16{bottom:72.013333pt;}
.y1{bottom:76.192000pt;}
.y3e{bottom:77.472000pt;}
.y15{bottom:95.693333pt;}
.y74{bottom:97.952000pt;}
.y3a{bottom:99.552000pt;}
.y67{bottom:102.432000pt;}
.y99{bottom:113.632000pt;}
.y14{bottom:119.373333pt;}
.y73{bottom:121.952000pt;}
.y39{bottom:122.592000pt;}
.y66{bottom:125.472000pt;}
.y98{bottom:137.306667pt;}
.y38{bottom:145.626667pt;}
.y72{bottom:145.946667pt;}
.y6b{bottom:148.186667pt;}
.y65{bottom:148.506667pt;}
.y97{bottom:160.986667pt;}
.y9e{bottom:161.306667pt;}
.y37{bottom:168.346667pt;}
.y71{bottom:169.626667pt;}
.y64{bottom:171.546667pt;}
.y96{bottom:185.026667pt;}
.y9d{bottom:185.346667pt;}
.y70{bottom:190.146667pt;}
.y36{bottom:191.426667pt;}
.y63{bottom:194.306667pt;}
.y95{bottom:209.026667pt;}
.y35{bottom:214.466667pt;}
.y62{bottom:217.346667pt;}
.y94{bottom:233.026667pt;}
.y34{bottom:237.506667pt;}
.y61{bottom:240.386667pt;}
.y93{bottom:257.026667pt;}
.y33{bottom:260.226667pt;}
.y3b{bottom:260.546667pt;}
.y60{bottom:263.426667pt;}
.y92{bottom:281.026667pt;}
.y32{bottom:284.546667pt;}
.y5f{bottom:286.466667pt;}
.y91{bottom:304.733333pt;}
.y31{bottom:307.613333pt;}
.y5e{bottom:309.533333pt;}
.y9c{bottom:328.413333pt;}
.y30{bottom:328.733333pt;}
.y5d{bottom:332.573333pt;}
.y2f{bottom:349.853333pt;}
.y9b{bottom:352.413333pt;}
.y90{bottom:352.733333pt;}
.y5c{bottom:355.613333pt;}
.y2e{bottom:370.973333pt;}
.y8f{bottom:376.733333pt;}
.y5b{bottom:378.333333pt;}
.y2d{bottom:392.413333pt;}
.y8e{bottom:400.413333pt;}
.y5a{bottom:401.093333pt;}
.y6a{bottom:401.413333pt;}
.y2c{bottom:415.173333pt;}
.y59{bottom:424.453333pt;}
.y2b{bottom:440.773333pt;}
.y58{bottom:447.493333pt;}
.y8d{bottom:448.453333pt;}
.y2a{bottom:461.893333pt;}
.y57{bottom:470.533333pt;}
.y8c{bottom:472.453333pt;}
.y29{bottom:483.013333pt;}
.y6f{bottom:492.293333pt;}
.y56{bottom:493.573333pt;}
.y8b{bottom:496.133333pt;}
.y28{bottom:504.133333pt;}
.y69{bottom:516.320000pt;}
.y55{bottom:516.640000pt;}
.y8a{bottom:520.160000pt;}
.y27{bottom:525.280000pt;}
.y54{bottom:539.680000pt;}
.y89{bottom:544.160000pt;}
.y26{bottom:546.400000pt;}
.y53{bottom:562.400000pt;}
.y25{bottom:567.520000pt;}
.y88{bottom:568.160000pt;}
.y52{bottom:585.440000pt;}
.y24{bottom:588.640000pt;}
.y87{bottom:591.840000pt;}
.y51{bottom:608.480000pt;}
.y23{bottom:610.080000pt;}
.y86{bottom:615.840000pt;}
.y22{bottom:631.226667pt;}
.y50{bottom:631.546667pt;}
.y85{bottom:639.866667pt;}
.y21{bottom:652.346667pt;}
.y4f{bottom:654.586667pt;}
.y84{bottom:663.866667pt;}
.y20{bottom:673.466667pt;}
.y4e{bottom:677.626667pt;}
.y83{bottom:687.546667pt;}
.y1f{bottom:694.586667pt;}
.y4d{bottom:700.666667pt;}
.y82{bottom:711.546667pt;}
.y1e{bottom:715.706667pt;}
.y4c{bottom:723.386667pt;}
.y81{bottom:735.586667pt;}
.y1d{bottom:736.866667pt;}
.ya1{bottom:738.146667pt;}
.y6d{bottom:746.146667pt;}
.y4b{bottom:746.466667pt;}
.y1c{bottom:757.666667pt;}
.ya0{bottom:759.266667pt;}
.y80{bottom:759.586667pt;}
.y6c{bottom:769.186667pt;}
.y4a{bottom:769.506667pt;}
.y1a{bottom:772.400000pt;}
.y13{bottom:778.800000pt;}
.y7f{bottom:783.266667pt;}
.y49{bottom:792.546667pt;}
.y7e{bottom:807.266667pt;}
.y48{bottom:815.586667pt;}
.y7d{bottom:831.266667pt;}
.y47{bottom:838.626667pt;}
.y7c{bottom:855.293333pt;}
.y46{bottom:861.693333pt;}
.y7b{bottom:878.973333pt;}
.y45{bottom:884.733333pt;}
.y7a{bottom:902.973333pt;}
.y68{bottom:907.133333pt;}
.y44{bottom:907.453333pt;}
.y11{bottom:912.893333pt;}
.ye{bottom:918.653333pt;}
.y9f{bottom:926.653333pt;}
.y79{bottom:926.973333pt;}
.y6e{bottom:930.173333pt;}
.y43{bottom:930.493333pt;}
.y78{bottom:950.973333pt;}
.y42{bottom:953.533333pt;}
.yc{bottom:974.373333pt;}
.y77{bottom:974.693333pt;}
.y41{bottom:976.613333pt;}
.ya{bottom:979.173333pt;}
.y76{bottom:998.373333pt;}
.y9a{bottom:998.693333pt;}
.y40{bottom:999.653333pt;}
.y3{bottom:1000.933333pt;}
.y8{bottom:1020.773333pt;}
.y75{bottom:1022.373333pt;}
.y3f{bottom:1022.693333pt;}
.y3d{bottom:1040.293333pt;}
.y5{bottom:1045.733333pt;}
.y3c{bottom:1056.933333pt;}
.hd{height:4.786667pt;}
.h12{height:5.746667pt;}
.h18{height:6.386667pt;}
.he{height:12.317500pt;}
.h19{height:16.107500pt;}
.h13{height:17.408000pt;}
.h9{height:19.826667pt;}
.hb{height:21.746667pt;}
.h8{height:24.946667pt;}
.h20{height:44.687500pt;}
.h1c{height:45.517500pt;}
.h6{height:47.066667pt;}
.ha{height:49.852500pt;}
.h1d{height:52.736250pt;}
.h1a{height:52.750000pt;}
.h2{height:53.494662pt;}
.hc{height:54.187500pt;}
.h3{height:54.882500pt;}
.hf{height:55.706667pt;}
.h16{height:62.781250pt;}
.h1b{height:62.812500pt;}
.h7{height:62.857500pt;}
.h15{height:64.500000pt;}
.h1e{height:65.781915pt;}
.h1f{height:66.625000pt;}
.h5{height:67.837500pt;}
.h17{height:72.010000pt;}
.h10{height:74.820000pt;}
.h4{height:91.866667pt;}
.h11{height:96.750000pt;}
.h14{height:134.080000pt;}
.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;}
.x6{left:9.906667pt;}
.x15{left:16.308000pt;}
.x12{left:28.500000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x10{left:52.826667pt;}
.x3{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:80.973333pt;}
.xd{left:85.466667pt;}
.x1{left:96.032000pt;}
.x4{left:97.942667pt;}
.x1b{left:100.512000pt;}
.x1f{left:120.064000pt;}
.x17{left:128.369333pt;}
.x1a{left:144.066667pt;}
.x5{left:150.160000pt;}
.x14{left:170.929333pt;}
.x7{left:185.653333pt;}
.x18{left:190.489333pt;}
.x13{left:209.049333pt;}
.x16{left:210.649333pt;}
.x11{left:298.356000pt;}
.xa{left:396.320000pt;}
.x1c{left:420.960000pt;}
.x20{left:439.866667pt;}
.x1d{left:444.986667pt;}
.x1e{left:468.986667pt;}
.x8{left:642.173333pt;}
.x2{left:655.293333pt;}
.x21{left:725.093333pt;}
}




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