
    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_f17d2e6b725c712125aecb62.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_cf440968454531f16c4758d2.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_97fc1843608a48855a5c35cc.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_29cf9b2f8b078f8ff5f0dd6d.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_70a75e0c187450fb149dd522.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_14dc0fbf9910b59c3c729c15.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_f64b3a264597a64f92ee83a6.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_548817d25f60a07bd6a414e1.woff2')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_65c0380e8f769d6bb976664d.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_7d8cda1294cd35b4f5193b63.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.968262;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_0c95f1899a238233947f0fd1.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b238afdbeefa1143f06458ef.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0ac05cf5dcb22e206462efe1.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a4c312c153be923f2ad300b5.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_40f1cf0527302df94d5e74d0.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0f678bc1bbf846427f7475e7.woff2')format("woff");}.ff11{font-family:ff11;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;}
.ls10{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.190200px;}
.ls8{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.114000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.078000px;}
.ls19{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.lse{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.792000px;}
.lsa{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.440000px;}
.ls17{letter-spacing:6.480000px;}
.ls12{letter-spacing:16.560000px;}
.ls14{letter-spacing:17.280000px;}
.ls11{letter-spacing:23.040000px;}
.ls15{letter-spacing:24.480000px;}
.lsb{letter-spacing:33.960000px;}
.lsc{letter-spacing:33.984000px;}
.ls16{letter-spacing:54.900000px;}
.ls13{letter-spacing:56.880000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.wsa{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsc{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.712000px;}
.ws4{word-spacing:-15.912000px;}
.ws6{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws9{word-spacing:0.000000px;}
._60{margin-left:-2.205360px;}
._0{margin-left:-1.197360px;}
._1{width:1.125360px;}
._34{width:2.205360px;}
._2{width:3.312000px;}
._3{width:4.373280px;}
._8{width:5.544000px;}
._9{width:6.552000px;}
._e{width:8.112000px;}
._4{width:9.504000px;}
._a{width:10.872000px;}
._b{width:12.122640px;}
._1e{width:13.850640px;}
._33{width:15.021360px;}
._7{width:16.710720px;}
._1f{width:19.512000px;}
._4e{width:20.584080px;}
._32{width:21.672000px;}
._20{width:23.544000px;}
._21{width:24.696000px;}
._2c{width:26.181360px;}
._65{width:27.295920px;}
._c{width:28.296000px;}
._d{width:29.645280px;}
._14{width:30.888000px;}
._15{width:32.256000px;}
._1a{width:33.624000px;}
._12{width:34.920000px;}
._13{width:36.144000px;}
._1b{width:37.368000px;}
._16{width:38.448000px;}
._17{width:39.744000px;}
._25{width:41.040000px;}
._5{width:42.480000px;}
._6{width:43.848000px;}
._4b{width:45.000000px;}
._23{width:46.944000px;}
._24{width:48.158640px;}
._f{width:49.440000px;}
._10{width:50.654640px;}
._35{width:51.873360px;}
._4c{width:53.174640px;}
._1c{width:54.720000px;}
._1d{width:56.330640px;}
._22{width:58.032000px;}
._45{width:59.040000px;}
._18{width:60.480000px;}
._19{width:61.965360px;}
._55{width:63.792000px;}
._38{width:65.205360px;}
._2d{width:67.320000px;}
._3c{width:69.021360px;}
._3d{width:70.056000px;}
._11{width:71.568000px;}
._3e{width:74.160000px;}
._31{width:75.530640px;}
._30{width:77.085360px;}
._4f{width:78.192000px;}
._5c{width:80.064000px;}
._6e{width:81.216000px;}
._56{width:82.440000px;}
._6d{width:83.664000px;}
._3a{width:84.996000px;}
._3b{width:86.400000px;}
._57{width:87.768000px;}
._46{width:88.776000px;}
._2f{width:90.864000px;}
._3f{width:92.232000px;}
._52{width:93.456000px;}
._29{width:94.584000px;}
._51{width:95.810640px;}
._37{width:97.560000px;}
._36{width:98.685360px;}
._50{width:100.269360px;}
._41{width:101.448000px;}
._4d{width:103.320000px;}
._64{width:104.426640px;}
._59{width:106.560000px;}
._54{width:108.504000px;}
._42{width:109.512000px;}
._43{width:110.664000px;}
._39{width:112.104000px;}
._40{width:113.256000px;}
._61{width:114.722640px;}
._63{width:118.440000px;}
._5d{width:119.448000px;}
._5a{width:121.536000px;}
._5e{width:125.397360px;}
._53{width:131.688000px;}
._47{width:132.984000px;}
._48{width:133.992000px;}
._2a{width:137.520000px;}
._2b{width:138.744000px;}
._6c{width:144.477360px;}
._6a{width:146.160000px;}
._2e{width:148.320000px;}
._70{width:151.497360px;}
._5f{width:152.688000px;}
._67{width:154.773360px;}
._5b{width:157.368000px;}
._4a{width:161.424000px;}
._6b{width:164.205360px;}
._6f{width:169.632000px;}
._26{width:189.617520px;}
._28{width:190.776000px;}
._62{width:191.784000px;}
._27{width:197.647200px;}
._68{width:198.909360px;}
._66{width:210.429360px;}
._49{width:233.424000px;}
._69{width:291.936000px;}
._44{width:294.525360px;}
._58{width:308.016000px;}
._71{width:846.156000px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(148,54,52);}
.fs5{font-size:18.000000px;}
.fs6{font-size:23.760000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.260000px;}
.y4{bottom:3.420000px;}
.ya{bottom:6.480000px;}
.yc{bottom:6.660000px;}
.yd{bottom:7.380000px;}
.y9{bottom:8.460000px;}
.y7{bottom:8.640000px;}
.y11{bottom:21.600000px;}
.y17{bottom:26.460000px;}
.y6{bottom:33.120000px;}
.y16{bottom:47.880000px;}
.y2{bottom:58.680000px;}
.y15{bottom:68.760000px;}
.y1{bottom:85.860000px;}
.y3e{bottom:89.100000px;}
.y14{bottom:92.160000px;}
.y3a{bottom:124.200000px;}
.y70{bottom:127.260000px;}
.y68{bottom:127.620000px;}
.y39{bottom:151.200000px;}
.y62{bottom:154.440000px;}
.y38{bottom:178.020000px;}
.y61{bottom:181.440000px;}
.y37{bottom:205.020000px;}
.y60{bottom:208.290000px;}
.y36{bottom:231.870000px;}
.y5f{bottom:234.930000px;}
.y67{bottom:235.290000px;}
.y35{bottom:258.870000px;}
.y5e{bottom:261.750000px;}
.y66{bottom:262.110000px;}
.y34{bottom:285.690000px;}
.y7a{bottom:288.750000px;}
.y5d{bottom:289.110000px;}
.y33{bottom:312.690000px;}
.y5c{bottom:315.930000px;}
.y32{bottom:339.510000px;}
.y65{bottom:342.570000px;}
.y5b{bottom:342.930000px;}
.y31{bottom:366.510000px;}
.y64{bottom:369.390000px;}
.y5a{bottom:369.750000px;}
.y30{bottom:393.330000px;}
.y63{bottom:396.390000px;}
.y59{bottom:396.750000px;}
.y2f{bottom:419.970000px;}
.y3b{bottom:420.330000px;}
.y58{bottom:423.570000px;}
.y2e{bottom:446.835000px;}
.y57{bottom:450.615000px;}
.y2d{bottom:472.935000px;}
.y56{bottom:477.435000px;}
.y2c{bottom:496.695000px;}
.y55{bottom:504.435000px;}
.y2b{bottom:520.635000px;}
.y6b{bottom:530.895000px;}
.y54{bottom:531.255000px;}
.y2a{bottom:546.915000px;}
.y53{bottom:558.255000px;}
.y29{bottom:570.675000px;}
.y6f{bottom:584.715000px;}
.y52{bottom:585.075000px;}
.y28{bottom:594.615000px;}
.y75{bottom:611.715000px;}
.y51{bottom:612.075000px;}
.y27{bottom:618.375000px;}
.y50{bottom:638.895000px;}
.y26{bottom:642.135000px;}
.y25{bottom:665.895000px;}
.y24{bottom:689.865000px;}
.y78{bottom:692.385000px;}
.y4f{bottom:692.745000px;}
.y23{bottom:713.625000px;}
.y77{bottom:719.385000px;}
.y4e{bottom:719.745000px;}
.y22{bottom:737.385000px;}
.y4d{bottom:746.565000px;}
.y21{bottom:761.145000px;}
.y7b{bottom:773.205000px;}
.y4c{bottom:773.565000px;}
.y20{bottom:785.085000px;}
.y6a{bottom:800.025000px;}
.y4b{bottom:800.385000px;}
.y1f{bottom:808.845000px;}
.y6e{bottom:827.025000px;}
.y4a{bottom:827.385000px;}
.y1e{bottom:832.605000px;}
.y6d{bottom:853.845000px;}
.y49{bottom:854.205000px;}
.y1d{bottom:856.365000px;}
.y1c{bottom:880.305000px;}
.y76{bottom:880.845000px;}
.y48{bottom:881.205000px;}
.y1b{bottom:903.705000px;}
.y47{bottom:908.025000px;}
.y1a{bottom:923.910000px;}
.y19{bottom:932.550000px;}
.y46{bottom:935.070000px;}
.y13{bottom:939.750000px;}
.y18{bottom:943.948764px;}
.y45{bottom:961.890000px;}
.y79{bottom:988.530000px;}
.y44{bottom:988.890000px;}
.y74{bottom:1015.350000px;}
.y43{bottom:1015.710000px;}
.y73{bottom:1042.350000px;}
.y42{bottom:1042.710000px;}
.y12{bottom:1048.650000px;}
.y10{bottom:1055.490000px;}
.y6c{bottom:1069.170000px;}
.y41{bottom:1069.530000px;}
.y69{bottom:1096.170000px;}
.ye{bottom:1096.530000px;}
.yb{bottom:1101.750000px;}
.y72{bottom:1122.990000px;}
.y40{bottom:1123.350000px;}
.y3{bottom:1126.050000px;}
.y8{bottom:1148.220000px;}
.y71{bottom:1150.020000px;}
.y3f{bottom:1150.380000px;}
.y3d{bottom:1170.000000px;}
.y5{bottom:1176.480000px;}
.y3c{bottom:1189.080000px;}
.hd{height:5.205000px;}
.h11{height:6.825000px;}
.h17{height:7.185000px;}
.h18{height:17.587969px;}
.he{height:17.666016px;}
.h9{height:22.170000px;}
.h12{height:23.945625px;}
.hb{height:24.285000px;}
.h8{height:28.260000px;}
.h19{height:28.546875px;}
.hf{height:41.025000px;}
.h1c{height:50.273438px;}
.h1d{height:50.597578px;}
.h1f{height:50.800781px;}
.h6{height:52.920000px;}
.ha{height:56.084062px;}
.h16{height:58.621992px;}
.h1a{height:59.343750px;}
.h2{height:60.700301px;}
.hc{height:60.960938px;}
.h3{height:62.275078px;}
.h15{height:70.628906px;}
.h1b{height:70.664062px;}
.h7{height:71.324297px;}
.h14{height:72.562500px;}
.h1e{height:74.953125px;}
.h5{height:76.317188px;}
.h10{height:84.898125px;}
.h4{height:103.350000px;}
.h13{height:108.885000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.089500px;}
.x6{left:10.965000px;}
.x10{left:19.065000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x3{left:60.841500px;}
.x13{left:72.343500px;}
.xc{left:81.525000px;}
.xf{left:91.065000px;}
.xd{left:95.925000px;}
.x1{left:108.036000px;}
.x4{left:110.008500px;}
.x11{left:111.106500px;}
.x1d{left:123.516000px;}
.x1e{left:150.510000px;}
.x15{left:153.928500px;}
.x1a{left:162.030000px;}
.x5{left:168.885000px;}
.x16{left:174.988500px;}
.x17{left:187.228500px;}
.x7{left:209.010000px;}
.x14{left:246.268500px;}
.x18{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1b{left:473.505000px;}
.x20{left:488.985000px;}
.x1f{left:515.985000px;}
.x1c{left:527.505000px;}
.x8{left:722.490000px;}
.x2{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.169067pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.101333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.069333pt;}
.ls19{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.704000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls18{letter-spacing:1.280000pt;}
.ls17{letter-spacing:5.760000pt;}
.ls12{letter-spacing:14.720000pt;}
.ls14{letter-spacing:15.360000pt;}
.ls11{letter-spacing:20.480000pt;}
.ls15{letter-spacing:21.760000pt;}
.lsb{letter-spacing:30.186667pt;}
.lsc{letter-spacing:30.208000pt;}
.ls16{letter-spacing:48.800000pt;}
.ls13{letter-spacing:50.560000pt;}
.ws5{word-spacing:-64.000000pt;}
.wsa{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsc{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.144000pt;}
.ws6{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws9{word-spacing:0.000000pt;}
._60{margin-left:-1.960320pt;}
._0{margin-left:-1.064320pt;}
._1{width:1.000320pt;}
._34{width:1.960320pt;}
._2{width:2.944000pt;}
._3{width:3.887360pt;}
._8{width:4.928000pt;}
._9{width:5.824000pt;}
._e{width:7.210667pt;}
._4{width:8.448000pt;}
._a{width:9.664000pt;}
._b{width:10.775680pt;}
._1e{width:12.311680pt;}
._33{width:13.352320pt;}
._7{width:14.853973pt;}
._1f{width:17.344000pt;}
._4e{width:18.296960pt;}
._32{width:19.264000pt;}
._20{width:20.928000pt;}
._21{width:21.952000pt;}
._2c{width:23.272320pt;}
._65{width:24.263040pt;}
._c{width:25.152000pt;}
._d{width:26.351360pt;}
._14{width:27.456000pt;}
._15{width:28.672000pt;}
._1a{width:29.888000pt;}
._12{width:31.040000pt;}
._13{width:32.128000pt;}
._1b{width:33.216000pt;}
._16{width:34.176000pt;}
._17{width:35.328000pt;}
._25{width:36.480000pt;}
._5{width:37.760000pt;}
._6{width:38.976000pt;}
._4b{width:40.000000pt;}
._23{width:41.728000pt;}
._24{width:42.807680pt;}
._f{width:43.946667pt;}
._10{width:45.026347pt;}
._35{width:46.109653pt;}
._4c{width:47.266347pt;}
._1c{width:48.640000pt;}
._1d{width:50.071680pt;}
._22{width:51.584000pt;}
._45{width:52.480000pt;}
._18{width:53.760000pt;}
._19{width:55.080320pt;}
._55{width:56.704000pt;}
._38{width:57.960320pt;}
._2d{width:59.840000pt;}
._3c{width:61.352320pt;}
._3d{width:62.272000pt;}
._11{width:63.616000pt;}
._3e{width:65.920000pt;}
._31{width:67.138347pt;}
._30{width:68.520320pt;}
._4f{width:69.504000pt;}
._5c{width:71.168000pt;}
._6e{width:72.192000pt;}
._56{width:73.280000pt;}
._6d{width:74.368000pt;}
._3a{width:75.552000pt;}
._3b{width:76.800000pt;}
._57{width:78.016000pt;}
._46{width:78.912000pt;}
._2f{width:80.768000pt;}
._3f{width:81.984000pt;}
._52{width:83.072000pt;}
._29{width:84.074667pt;}
._51{width:85.165013pt;}
._37{width:86.720000pt;}
._36{width:87.720320pt;}
._50{width:89.128320pt;}
._41{width:90.176000pt;}
._4d{width:91.840000pt;}
._64{width:92.823680pt;}
._59{width:94.720000pt;}
._54{width:96.448000pt;}
._42{width:97.344000pt;}
._43{width:98.368000pt;}
._39{width:99.648000pt;}
._40{width:100.672000pt;}
._61{width:101.975680pt;}
._63{width:105.280000pt;}
._5d{width:106.176000pt;}
._5a{width:108.032000pt;}
._5e{width:111.464320pt;}
._53{width:117.056000pt;}
._47{width:118.208000pt;}
._48{width:119.104000pt;}
._2a{width:122.240000pt;}
._2b{width:123.328000pt;}
._6c{width:128.424320pt;}
._6a{width:129.920000pt;}
._2e{width:131.840000pt;}
._70{width:134.664320pt;}
._5f{width:135.722667pt;}
._67{width:137.576320pt;}
._5b{width:139.882667pt;}
._4a{width:143.488000pt;}
._6b{width:145.960320pt;}
._6f{width:150.784000pt;}
._26{width:168.548907pt;}
._28{width:169.578667pt;}
._62{width:170.474667pt;}
._27{width:175.686400pt;}
._68{width:176.808320pt;}
._66{width:187.048320pt;}
._49{width:207.488000pt;}
._69{width:259.498667pt;}
._44{width:261.800320pt;}
._58{width:273.792000pt;}
._71{width:752.138667pt;}
.fs5{font-size:16.000000pt;}
.fs6{font-size:21.120000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.120000pt;}
.y4{bottom:3.040000pt;}
.ya{bottom:5.760000pt;}
.yc{bottom:5.920000pt;}
.yd{bottom:6.560000pt;}
.y9{bottom:7.520000pt;}
.y7{bottom:7.680000pt;}
.y11{bottom:19.200000pt;}
.y17{bottom:23.520000pt;}
.y6{bottom:29.440000pt;}
.y16{bottom:42.560000pt;}
.y2{bottom:52.160000pt;}
.y15{bottom:61.120000pt;}
.y1{bottom:76.320000pt;}
.y3e{bottom:79.200000pt;}
.y14{bottom:81.920000pt;}
.y3a{bottom:110.400000pt;}
.y70{bottom:113.120000pt;}
.y68{bottom:113.440000pt;}
.y39{bottom:134.400000pt;}
.y62{bottom:137.280000pt;}
.y38{bottom:158.240000pt;}
.y61{bottom:161.280000pt;}
.y37{bottom:182.240000pt;}
.y60{bottom:185.146667pt;}
.y36{bottom:206.106667pt;}
.y5f{bottom:208.826667pt;}
.y67{bottom:209.146667pt;}
.y35{bottom:230.106667pt;}
.y5e{bottom:232.666667pt;}
.y66{bottom:232.986667pt;}
.y34{bottom:253.946667pt;}
.y7a{bottom:256.666667pt;}
.y5d{bottom:256.986667pt;}
.y33{bottom:277.946667pt;}
.y5c{bottom:280.826667pt;}
.y32{bottom:301.786667pt;}
.y65{bottom:304.506667pt;}
.y5b{bottom:304.826667pt;}
.y31{bottom:325.786667pt;}
.y64{bottom:328.346667pt;}
.y5a{bottom:328.666667pt;}
.y30{bottom:349.626667pt;}
.y63{bottom:352.346667pt;}
.y59{bottom:352.666667pt;}
.y2f{bottom:373.306667pt;}
.y3b{bottom:373.626667pt;}
.y58{bottom:376.506667pt;}
.y2e{bottom:397.186667pt;}
.y57{bottom:400.546667pt;}
.y2d{bottom:420.386667pt;}
.y56{bottom:424.386667pt;}
.y2c{bottom:441.506667pt;}
.y55{bottom:448.386667pt;}
.y2b{bottom:462.786667pt;}
.y6b{bottom:471.906667pt;}
.y54{bottom:472.226667pt;}
.y2a{bottom:486.146667pt;}
.y53{bottom:496.226667pt;}
.y29{bottom:507.266667pt;}
.y6f{bottom:519.746667pt;}
.y52{bottom:520.066667pt;}
.y28{bottom:528.546667pt;}
.y75{bottom:543.746667pt;}
.y51{bottom:544.066667pt;}
.y27{bottom:549.666667pt;}
.y50{bottom:567.906667pt;}
.y26{bottom:570.786667pt;}
.y25{bottom:591.906667pt;}
.y24{bottom:613.213333pt;}
.y78{bottom:615.453333pt;}
.y4f{bottom:615.773333pt;}
.y23{bottom:634.333333pt;}
.y77{bottom:639.453333pt;}
.y4e{bottom:639.773333pt;}
.y22{bottom:655.453333pt;}
.y4d{bottom:663.613333pt;}
.y21{bottom:676.573333pt;}
.y7b{bottom:687.293333pt;}
.y4c{bottom:687.613333pt;}
.y20{bottom:697.853333pt;}
.y6a{bottom:711.133333pt;}
.y4b{bottom:711.453333pt;}
.y1f{bottom:718.973333pt;}
.y6e{bottom:735.133333pt;}
.y4a{bottom:735.453333pt;}
.y1e{bottom:740.093333pt;}
.y6d{bottom:758.973333pt;}
.y49{bottom:759.293333pt;}
.y1d{bottom:761.213333pt;}
.y1c{bottom:782.493333pt;}
.y76{bottom:782.973333pt;}
.y48{bottom:783.293333pt;}
.y1b{bottom:803.293333pt;}
.y47{bottom:807.133333pt;}
.y1a{bottom:821.253333pt;}
.y19{bottom:828.933333pt;}
.y46{bottom:831.173333pt;}
.y13{bottom:835.333333pt;}
.y18{bottom:839.065568pt;}
.y45{bottom:855.013333pt;}
.y79{bottom:878.693333pt;}
.y44{bottom:879.013333pt;}
.y74{bottom:902.533333pt;}
.y43{bottom:902.853333pt;}
.y73{bottom:926.533333pt;}
.y42{bottom:926.853333pt;}
.y12{bottom:932.133333pt;}
.y10{bottom:938.213333pt;}
.y6c{bottom:950.373333pt;}
.y41{bottom:950.693333pt;}
.y69{bottom:974.373333pt;}
.ye{bottom:974.693333pt;}
.yb{bottom:979.333333pt;}
.y72{bottom:998.213333pt;}
.y40{bottom:998.533333pt;}
.y3{bottom:1000.933333pt;}
.y8{bottom:1020.640000pt;}
.y71{bottom:1022.240000pt;}
.y3f{bottom:1022.560000pt;}
.y3d{bottom:1040.000000pt;}
.y5{bottom:1045.760000pt;}
.y3c{bottom:1056.960000pt;}
.hd{height:4.626667pt;}
.h11{height:6.066667pt;}
.h17{height:6.386667pt;}
.h18{height:15.633750pt;}
.he{height:15.703125pt;}
.h9{height:19.706667pt;}
.h12{height:21.285000pt;}
.hb{height:21.586667pt;}
.h8{height:25.120000pt;}
.h19{height:25.375000pt;}
.hf{height:36.466667pt;}
.h1c{height:44.687500pt;}
.h1d{height:44.975625pt;}
.h1f{height:45.156250pt;}
.h6{height:47.040000pt;}
.ha{height:49.852500pt;}
.h16{height:52.108438pt;}
.h1a{height:52.750000pt;}
.h2{height:53.955823pt;}
.hc{height:54.187500pt;}
.h3{height:55.355625pt;}
.h15{height:62.781250pt;}
.h1b{height:62.812500pt;}
.h7{height:63.399375pt;}
.h14{height:64.500000pt;}
.h1e{height:66.625000pt;}
.h5{height:67.837500pt;}
.h10{height:75.465000pt;}
.h4{height:91.866667pt;}
.h13{height:96.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.190667pt;}
.x6{left:9.746667pt;}
.x10{left:16.946667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x3{left:54.081333pt;}
.x13{left:64.305333pt;}
.xc{left:72.466667pt;}
.xf{left:80.946667pt;}
.xd{left:85.266667pt;}
.x1{left:96.032000pt;}
.x4{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1d{left:109.792000pt;}
.x1e{left:133.786667pt;}
.x15{left:136.825333pt;}
.x1a{left:144.026667pt;}
.x5{left:150.120000pt;}
.x16{left:155.545333pt;}
.x17{left:166.425333pt;}
.x7{left:185.786667pt;}
.x14{left:218.905333pt;}
.x18{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1b{left:420.893333pt;}
.x20{left:434.653333pt;}
.x1f{left:458.653333pt;}
.x1c{left:468.893333pt;}
.x8{left:642.213333pt;}
.x2{left:665.733333pt;}
}




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