
    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_023b054bfbcebdb48e9d8124.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8742c81eeef57f75fe2e5992.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_01c6b53dad7bf624a96edaa9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e49fbda8225d67f356fe4bd7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_920dfd21e0b22d6956431eb6.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_62e5c0807f45b045c5d7d754.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_482b8dfc37f827c99bf26eb4.woff')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_f1c56828a9d420a5d48dc581.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_475a69141559bd4c8ca94ada.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_72dd164873adcafd51b0f491.woff')format("woff");}.ffe{font-family:ffe;line-height:0.886719;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.fff{font-family:fff;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_18f6763dce34cf5bdc0aad11.woff')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_710b0a706ae3e0359a0faec1.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_800ee1d18d46a7ee73462d3f.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;}
@font-face{font-family:ff14;src:url('chunks/assets/font_0a223e00e84ec3056aa66a5b.woff')format("woff");}.ff14{font-family:ff14;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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.114000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.lsb{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.414600px;}
.ls4{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.576000px;}
.lsf{letter-spacing:1.026000px;}
.lse{letter-spacing:13.265280px;}
.lsd{letter-spacing:32.705280px;}
.ls10{letter-spacing:39.905280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-66.240000px;}
.ws8{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws6{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.586000px;}
.wsb{word-spacing:-16.974600px;}
.wsa{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws7{word-spacing:0.000000px;}
._32{margin-left:-2.125200px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.900640px;}
._9{width:4.570560px;}
._a{width:5.961600px;}
._24{width:7.352640px;}
._8{width:9.207360px;}
._11{width:10.650000px;}
._20{width:11.666880px;}
._7{width:13.579200px;}
._15{width:14.970240px;}
._23{width:17.869680px;}
._25{width:19.357200px;}
._1e{width:21.064320px;}
._17{width:22.455360px;}
._16{width:23.616720px;}
._14{width:25.701120px;}
._39{width:26.859360px;}
._6{width:27.953280px;}
._10{width:30.139200px;}
._5{width:31.656000px;}
._1a{width:33.583680px;}
._18{width:34.842240px;}
._1f{width:36.006480px;}
._31{width:37.056240px;}
._3e{width:38.505360px;}
._38{width:39.552960px;}
._30{width:41.068800px;}
._3b{width:42.372000px;}
._2a{width:44.513280px;}
._f{width:46.067760px;}
._e{width:47.330640px;}
._3d{width:48.426960px;}
._2d{width:49.613760px;}
._1d{width:50.973840px;}
._1c{width:51.998400px;}
._19{width:54.780480px;}
._3f{width:55.977840px;}
._33{width:57.032880px;}
._3a{width:58.263120px;}
._c{width:61.603200px;}
._b{width:63.162000px;}
._2e{width:65.378880px;}
._4{width:67.997520px;}
._2c{width:69.719760px;}
._2f{width:71.208000px;}
._1b{width:74.321280px;}
._2b{width:75.880080px;}
._d{width:79.355520px;}
._41{width:81.408960px;}
._40{width:82.739280px;}
._13{width:84.985920px;}
._12{width:86.081040px;}
._3c{width:89.357760px;}
._37{width:91.403760px;}
._3{width:99.095040px;}
._21{width:100.883520px;}
._22{width:102.044880px;}
._28{width:152.893440px;}
._29{width:182.856000px;}
._26{width:189.617520px;}
._27{width:197.647200px;}
._36{width:199.416000px;}
._35{width:209.252160px;}
._34{width:210.678480px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y17{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.y4f{bottom:9.360000px;}
.y51{bottom:9.720000px;}
.ye{bottom:22.860000px;}
.y14{bottom:26.640000px;}
.y5{bottom:33.120000px;}
.y13{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y12{bottom:70.560000px;}
.y3c{bottom:75.240000px;}
.y9a{bottom:118.260000px;}
.yb7{bottom:125.640000px;}
.y6c{bottom:129.240000px;}
.y72{bottom:129.600000px;}
.y38{bottom:133.380000px;}
.y8b{bottom:135.000000px;}
.y99{bottom:142.920000px;}
.yb6{bottom:145.440000px;}
.y6b{bottom:154.260000px;}
.y37{bottom:158.040000px;}
.y8a{bottom:160.740000px;}
.yb5{bottom:165.240000px;}
.y98{bottom:167.580000px;}
.y6a{bottom:178.920000px;}
.y36{bottom:182.700000px;}
.yb4{bottom:185.040000px;}
.y89{bottom:185.580000px;}
.y97{bottom:192.240000px;}
.y69{bottom:203.580000px;}
.yb3{bottom:205.020000px;}
.y35{bottom:207.390000px;}
.y88{bottom:211.530000px;}
.y96{bottom:217.290000px;}
.yb2{bottom:224.850000px;}
.y68{bottom:228.270000px;}
.y34{bottom:232.050000px;}
.y87{bottom:237.270000px;}
.y95{bottom:241.950000px;}
.yb1{bottom:244.650000px;}
.y67{bottom:252.570000px;}
.y33{bottom:256.710000px;}
.y86{bottom:261.930000px;}
.yb0{bottom:264.450000px;}
.y94{bottom:266.610000px;}
.y66{bottom:277.230000px;}
.y71{bottom:277.590000px;}
.y32{bottom:281.370000px;}
.yaf{bottom:284.250000px;}
.y85{bottom:287.670000px;}
.y93{bottom:291.270000px;}
.y65{bottom:301.890000px;}
.y70{bottom:302.250000px;}
.yae{bottom:304.230000px;}
.y31{bottom:306.030000px;}
.y84{bottom:312.510000px;}
.y92{bottom:315.930000px;}
.yad{bottom:324.030000px;}
.y64{bottom:326.910000px;}
.y30{bottom:330.690000px;}
.y83{bottom:338.430000px;}
.y91{bottom:340.590000px;}
.yac{bottom:343.830000px;}
.y63{bottom:351.570000px;}
.y2f{bottom:355.350000px;}
.yab{bottom:363.630000px;}
.y82{bottom:364.170000px;}
.y90{bottom:365.250000px;}
.y62{bottom:376.230000px;}
.y2e{bottom:380.190000px;}
.yaa{bottom:383.430000px;}
.y81{bottom:388.830000px;}
.y8f{bottom:389.910000px;}
.y6f{bottom:400.530000px;}
.y61{bottom:400.890000px;}
.ya9{bottom:403.410000px;}
.y2d{bottom:404.850000px;}
.y8e{bottom:414.210000px;}
.y80{bottom:414.750000px;}
.ya8{bottom:423.210000px;}
.y60{bottom:425.550000px;}
.y2c{bottom:429.510000px;}
.y8d{bottom:439.230000px;}
.y7f{bottom:440.490000px;}
.ya7{bottom:443.055000px;}
.y5f{bottom:450.255000px;}
.y2b{bottom:454.215000px;}
.ya6{bottom:462.855000px;}
.y8c{bottom:464.115000px;}
.y7e{bottom:465.195000px;}
.y5e{bottom:475.095000px;}
.y2a{bottom:478.875000px;}
.ya5{bottom:482.655000px;}
.y7d{bottom:486.075000px;}
.y5d{bottom:499.755000px;}
.ya4{bottom:502.635000px;}
.y29{bottom:503.535000px;}
.ya3{bottom:522.435000px;}
.y6e{bottom:524.055000px;}
.y5c{bottom:524.415000px;}
.y28{bottom:528.195000px;}
.ya2{bottom:542.235000px;}
.y5b{bottom:549.075000px;}
.y27{bottom:552.855000px;}
.ya1{bottom:562.035000px;}
.y5a{bottom:573.735000px;}
.y26{bottom:577.515000px;}
.ya0{bottom:581.835000px;}
.y59{bottom:598.395000px;}
.y25{bottom:602.175000px;}
.y58{bottom:623.055000px;}
.y24{bottom:626.835000px;}
.y9f{bottom:627.555000px;}
.y57{bottom:647.715000px;}
.y23{bottom:651.495000px;}
.y9e{bottom:652.215000px;}
.y6d{bottom:672.015000px;}
.y56{bottom:672.375000px;}
.y22{bottom:676.185000px;}
.y9d{bottom:676.905000px;}
.y55{bottom:697.065000px;}
.y21{bottom:700.845000px;}
.y9c{bottom:701.565000px;}
.y54{bottom:712.725000px;}
.y20{bottom:725.505000px;}
.y79{bottom:726.225000px;}
.y53{bottom:738.105000px;}
.y1f{bottom:750.165000px;}
.y78{bottom:750.885000px;}
.y52{bottom:763.485000px;}
.y1e{bottom:774.825000px;}
.y77{bottom:775.545000px;}
.y50{bottom:789.045000px;}
.y1d{bottom:799.485000px;}
.y76{bottom:799.845000px;}
.y7c{bottom:800.205000px;}
.y4e{bottom:814.425000px;}
.y1c{bottom:824.145000px;}
.y75{bottom:824.865000px;}
.y1b{bottom:848.805000px;}
.y7b{bottom:849.165000px;}
.y4d{bottom:849.525000px;}
.y1a{bottom:873.465000px;}
.y49{bottom:874.185000px;}
.y19{bottom:897.765000px;}
.y39{bottom:898.125000px;}
.y48{bottom:898.845000px;}
.y18{bottom:917.070000px;}
.y74{bottom:923.190000px;}
.y47{bottom:923.550000px;}
.y16{bottom:925.710000px;}
.y11{bottom:932.910000px;}
.y15{bottom:937.050043px;}
.y46{bottom:948.210000px;}
.y7a{bottom:972.510000px;}
.y45{bottom:972.870000px;}
.y44{bottom:997.530000px;}
.y43{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.y42{bottom:1046.490000px;}
.y4c{bottom:1046.850000px;}
.y41{bottom:1071.150000px;}
.y4b{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y40{bottom:1095.810000px;}
.y4a{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y3f{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y9b{bottom:1145.130000px;}
.y3e{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y73{bottom:1169.820000px;}
.y3d{bottom:1170.180000px;}
.y3b{bottom:1187.280000px;}
.y3a{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h16{height:7.185000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h1e{height:24.660000px;}
.h7{height:28.290000px;}
.h1c{height:30.480469px;}
.h18{height:36.861328px;}
.he{height:41.025000px;}
.h1b{height:46.251562px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1d{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h1a{height:65.010937px;}
.h19{height:66.757500px;}
.h14{height:67.803750px;}
.h21{height:67.837500px;}
.h1f{height:68.084282px;}
.h20{height:68.956875px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:96.285000px;}
.h3{height:103.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w8{width:191.899500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w9{width:499.965000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x1c{left:100.306500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x13{left:112.843500px;}
.x15{left:160.588500px;}
.x19{left:162.030000px;}
.x4{left:168.885000px;}
.x16{left:178.408500px;}
.x6{left:209.010000px;}
.x14{left:239.608500px;}
.x1d{left:292.935000px;}
.x17{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1a{left:473.505000px;}
.x1f{left:493.845000px;}
.x20{left:500.505000px;}
.x1b{left:527.505000px;}
.x1e{left:646.530000px;}
.x7{left:722.490000px;}
.x1{left:761.010000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.lsb{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.368533pt;}
.ls4{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.912000pt;}
.lse{letter-spacing:11.791360pt;}
.lsd{letter-spacing:29.071360pt;}
.ls10{letter-spacing:35.471360pt;}
.wsd{word-spacing:-58.880000pt;}
.ws8{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws6{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.632000pt;}
.wsb{word-spacing:-15.088533pt;}
.wsa{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws7{word-spacing:0.000000pt;}
._32{margin-left:-1.889067pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:2.578347pt;}
._9{width:4.062720pt;}
._a{width:5.299200pt;}
._24{width:6.535680pt;}
._8{width:8.184320pt;}
._11{width:9.466667pt;}
._20{width:10.370560pt;}
._7{width:12.070400pt;}
._15{width:13.306880pt;}
._23{width:15.884160pt;}
._25{width:17.206400pt;}
._1e{width:18.723840pt;}
._17{width:19.960320pt;}
._16{width:20.992640pt;}
._14{width:22.845440pt;}
._39{width:23.874987pt;}
._6{width:24.847360pt;}
._10{width:26.790400pt;}
._5{width:28.138667pt;}
._1a{width:29.852160pt;}
._18{width:30.970880pt;}
._1f{width:32.005760pt;}
._31{width:32.938880pt;}
._3e{width:34.226987pt;}
._38{width:35.158187pt;}
._30{width:36.505600pt;}
._3b{width:37.664000pt;}
._2a{width:39.567360pt;}
._f{width:40.949120pt;}
._e{width:42.071680pt;}
._3d{width:43.046187pt;}
._2d{width:44.101120pt;}
._1d{width:45.310080pt;}
._1c{width:46.220800pt;}
._19{width:48.693760pt;}
._3f{width:49.758080pt;}
._33{width:50.695893pt;}
._3a{width:51.789440pt;}
._c{width:54.758400pt;}
._b{width:56.144000pt;}
._2e{width:58.114560pt;}
._4{width:60.442240pt;}
._2c{width:61.973120pt;}
._2f{width:63.296000pt;}
._1b{width:66.063360pt;}
._2b{width:67.448960pt;}
._d{width:70.538240pt;}
._41{width:72.363520pt;}
._40{width:73.546027pt;}
._13{width:75.543040pt;}
._12{width:76.516480pt;}
._3c{width:79.429120pt;}
._37{width:81.247787pt;}
._3{width:88.084480pt;}
._21{width:89.674240pt;}
._22{width:90.706560pt;}
._28{width:135.905280pt;}
._29{width:162.538667pt;}
._26{width:168.548907pt;}
._27{width:175.686400pt;}
._36{width:177.258667pt;}
._35{width:186.001920pt;}
._34{width:187.269760pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y17{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.y4f{bottom:8.320000pt;}
.y51{bottom:8.640000pt;}
.ye{bottom:20.320000pt;}
.y14{bottom:23.680000pt;}
.y5{bottom:29.440000pt;}
.y13{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y12{bottom:62.720000pt;}
.y3c{bottom:66.880000pt;}
.y9a{bottom:105.120000pt;}
.yb7{bottom:111.680000pt;}
.y6c{bottom:114.880000pt;}
.y72{bottom:115.200000pt;}
.y38{bottom:118.560000pt;}
.y8b{bottom:120.000000pt;}
.y99{bottom:127.040000pt;}
.yb6{bottom:129.280000pt;}
.y6b{bottom:137.120000pt;}
.y37{bottom:140.480000pt;}
.y8a{bottom:142.880000pt;}
.yb5{bottom:146.880000pt;}
.y98{bottom:148.960000pt;}
.y6a{bottom:159.040000pt;}
.y36{bottom:162.400000pt;}
.yb4{bottom:164.480000pt;}
.y89{bottom:164.960000pt;}
.y97{bottom:170.880000pt;}
.y69{bottom:180.960000pt;}
.yb3{bottom:182.240000pt;}
.y35{bottom:184.346667pt;}
.y88{bottom:188.026667pt;}
.y96{bottom:193.146667pt;}
.yb2{bottom:199.866667pt;}
.y68{bottom:202.906667pt;}
.y34{bottom:206.266667pt;}
.y87{bottom:210.906667pt;}
.y95{bottom:215.066667pt;}
.yb1{bottom:217.466667pt;}
.y67{bottom:224.506667pt;}
.y33{bottom:228.186667pt;}
.y86{bottom:232.826667pt;}
.yb0{bottom:235.066667pt;}
.y94{bottom:236.986667pt;}
.y66{bottom:246.426667pt;}
.y71{bottom:246.746667pt;}
.y32{bottom:250.106667pt;}
.yaf{bottom:252.666667pt;}
.y85{bottom:255.706667pt;}
.y93{bottom:258.906667pt;}
.y65{bottom:268.346667pt;}
.y70{bottom:268.666667pt;}
.yae{bottom:270.426667pt;}
.y31{bottom:272.026667pt;}
.y84{bottom:277.786667pt;}
.y92{bottom:280.826667pt;}
.yad{bottom:288.026667pt;}
.y64{bottom:290.586667pt;}
.y30{bottom:293.946667pt;}
.y83{bottom:300.826667pt;}
.y91{bottom:302.746667pt;}
.yac{bottom:305.626667pt;}
.y63{bottom:312.506667pt;}
.y2f{bottom:315.866667pt;}
.yab{bottom:323.226667pt;}
.y82{bottom:323.706667pt;}
.y90{bottom:324.666667pt;}
.y62{bottom:334.426667pt;}
.y2e{bottom:337.946667pt;}
.yaa{bottom:340.826667pt;}
.y81{bottom:345.626667pt;}
.y8f{bottom:346.586667pt;}
.y6f{bottom:356.026667pt;}
.y61{bottom:356.346667pt;}
.ya9{bottom:358.586667pt;}
.y2d{bottom:359.866667pt;}
.y8e{bottom:368.186667pt;}
.y80{bottom:368.666667pt;}
.ya8{bottom:376.186667pt;}
.y60{bottom:378.266667pt;}
.y2c{bottom:381.786667pt;}
.y8d{bottom:390.426667pt;}
.y7f{bottom:391.546667pt;}
.ya7{bottom:393.826667pt;}
.y5f{bottom:400.226667pt;}
.y2b{bottom:403.746667pt;}
.ya6{bottom:411.426667pt;}
.y8c{bottom:412.546667pt;}
.y7e{bottom:413.506667pt;}
.y5e{bottom:422.306667pt;}
.y2a{bottom:425.666667pt;}
.ya5{bottom:429.026667pt;}
.y7d{bottom:432.066667pt;}
.y5d{bottom:444.226667pt;}
.ya4{bottom:446.786667pt;}
.y29{bottom:447.586667pt;}
.ya3{bottom:464.386667pt;}
.y6e{bottom:465.826667pt;}
.y5c{bottom:466.146667pt;}
.y28{bottom:469.506667pt;}
.ya2{bottom:481.986667pt;}
.y5b{bottom:488.066667pt;}
.y27{bottom:491.426667pt;}
.ya1{bottom:499.586667pt;}
.y5a{bottom:509.986667pt;}
.y26{bottom:513.346667pt;}
.ya0{bottom:517.186667pt;}
.y59{bottom:531.906667pt;}
.y25{bottom:535.266667pt;}
.y58{bottom:553.826667pt;}
.y24{bottom:557.186667pt;}
.y9f{bottom:557.826667pt;}
.y57{bottom:575.746667pt;}
.y23{bottom:579.106667pt;}
.y9e{bottom:579.746667pt;}
.y6d{bottom:597.346667pt;}
.y56{bottom:597.666667pt;}
.y22{bottom:601.053333pt;}
.y9d{bottom:601.693333pt;}
.y55{bottom:619.613333pt;}
.y21{bottom:622.973333pt;}
.y9c{bottom:623.613333pt;}
.y54{bottom:633.533333pt;}
.y20{bottom:644.893333pt;}
.y79{bottom:645.533333pt;}
.y53{bottom:656.093333pt;}
.y1f{bottom:666.813333pt;}
.y78{bottom:667.453333pt;}
.y52{bottom:678.653333pt;}
.y1e{bottom:688.733333pt;}
.y77{bottom:689.373333pt;}
.y50{bottom:701.373333pt;}
.y1d{bottom:710.653333pt;}
.y76{bottom:710.973333pt;}
.y7c{bottom:711.293333pt;}
.y4e{bottom:723.933333pt;}
.y1c{bottom:732.573333pt;}
.y75{bottom:733.213333pt;}
.y1b{bottom:754.493333pt;}
.y7b{bottom:754.813333pt;}
.y4d{bottom:755.133333pt;}
.y1a{bottom:776.413333pt;}
.y49{bottom:777.053333pt;}
.y19{bottom:798.013333pt;}
.y39{bottom:798.333333pt;}
.y48{bottom:798.973333pt;}
.y18{bottom:815.173333pt;}
.y74{bottom:820.613333pt;}
.y47{bottom:820.933333pt;}
.y16{bottom:822.853333pt;}
.y11{bottom:829.253333pt;}
.y15{bottom:832.933372pt;}
.y46{bottom:842.853333pt;}
.y7a{bottom:864.453333pt;}
.y45{bottom:864.773333pt;}
.y44{bottom:886.693333pt;}
.y43{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.y42{bottom:930.213333pt;}
.y4c{bottom:930.533333pt;}
.y41{bottom:952.133333pt;}
.y4b{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y40{bottom:974.053333pt;}
.y4a{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y3f{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y9b{bottom:1017.893333pt;}
.y3e{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y73{bottom:1039.840000pt;}
.y3d{bottom:1040.160000pt;}
.y3b{bottom:1055.360000pt;}
.y3a{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h16{height:6.386667pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h1e{height:21.920000pt;}
.h7{height:25.146667pt;}
.h1c{height:27.093750pt;}
.h18{height:32.765625pt;}
.he{height:36.466667pt;}
.h1b{height:41.112500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1d{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h1a{height:57.787500pt;}
.h19{height:59.340000pt;}
.h14{height:60.270000pt;}
.h21{height:60.300000pt;}
.h1f{height:60.519362pt;}
.h20{height:61.295000pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:85.586667pt;}
.h3{height:92.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w8{width:170.577333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w9{width:444.413333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x1c{left:89.161333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x13{left:100.305333pt;}
.x15{left:142.745333pt;}
.x19{left:144.026667pt;}
.x4{left:150.120000pt;}
.x16{left:158.585333pt;}
.x6{left:185.786667pt;}
.x14{left:212.985333pt;}
.x1d{left:260.386667pt;}
.x17{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1a{left:420.893333pt;}
.x1f{left:438.973333pt;}
.x20{left:444.893333pt;}
.x1b{left:468.893333pt;}
.x1e{left:574.693333pt;}
.x7{left:642.213333pt;}
.x1{left:676.453333pt;}
}




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