
    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_e5c51f78508c04c778d07052.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_2b34a30cda1b970b0fb75076.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.891602;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_2952ee307cf275aff077333b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_b3f9d5ec81f672c417ff2602.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_cfc095d46ae2906d3f04d09c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_de85993046b524efe5aab48f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_aefad6b84cb569c8e8e90205.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f82e07eb6b7d0ebcd653e47a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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_bc2f4143afaa5942246d9454.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.103027;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;}
.m3{transform:matrix(0.193183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193183,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289775,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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls1b{letter-spacing:-3.024000px;}
.ls16{letter-spacing:-2.304000px;}
.ls25{letter-spacing:-2.232000px;}
.ls2b{letter-spacing:-2.160000px;}
.ls15{letter-spacing:-1.872000px;}
.ls2c{letter-spacing:-1.656000px;}
.ls10{letter-spacing:-1.584000px;}
.ls2e{letter-spacing:-1.512000px;}
.ls19{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.152000px;}
.ls2d{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.864000px;}
.ls2f{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls4d{letter-spacing:-0.456600px;}
.ls7{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls4a{letter-spacing:-0.117600px;}
.ls24{letter-spacing:-0.072000px;}
.ls33{letter-spacing:-0.036000px;}
.ls6{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.036000px;}
.ls3f{letter-spacing:0.073717px;}
.ls37{letter-spacing:0.073800px;}
.ls3d{letter-spacing:0.121678px;}
.lsd{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.147434px;}
.ls39{letter-spacing:0.147600px;}
.ls47{letter-spacing:0.156402px;}
.ls2a{letter-spacing:0.216000px;}
.ls45{letter-spacing:0.242310px;}
.ls38{letter-spacing:0.242400px;}
.ls40{letter-spacing:0.267395px;}
.ls1{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.316200px;}
.ls4c{letter-spacing:0.390000px;}
.ls4e{letter-spacing:0.444000px;}
.ls14{letter-spacing:0.504000px;}
.ls26{letter-spacing:0.576000px;}
.ls43{letter-spacing:0.654000px;}
.ls17{letter-spacing:0.720000px;}
.ls4b{letter-spacing:0.750000px;}
.ls44{letter-spacing:0.846398px;}
.ls27{letter-spacing:0.864000px;}
.ls35{letter-spacing:0.918000px;}
.ls1e{letter-spacing:0.936000px;}
.lsf{letter-spacing:1.008000px;}
.ls41{letter-spacing:1.014991px;}
.lsa{letter-spacing:1.584000px;}
.ls11{letter-spacing:1.728000px;}
.ls49{letter-spacing:2.304000px;}
.ls1d{letter-spacing:3.024000px;}
.ls3e{letter-spacing:3.164443px;}
.ls42{letter-spacing:3.937124px;}
.ls13{letter-spacing:4.464000px;}
.ls20{letter-spacing:6.624000px;}
.ls3{letter-spacing:7.344000px;}
.ls30{letter-spacing:8.040000px;}
.ls46{letter-spacing:8.064000px;}
.ls31{letter-spacing:8.244000px;}
.ls0{letter-spacing:8.784000px;}
.ls18{letter-spacing:8.940000px;}
.ls3c{letter-spacing:10.891257px;}
.ls2{letter-spacing:12.384000px;}
.ls3a{letter-spacing:13.824000px;}
.ls23{letter-spacing:16.704000px;}
.ls21{letter-spacing:18.144000px;}
.ls28{letter-spacing:20.304000px;}
.ls22{letter-spacing:20.424000px;}
.ls5{letter-spacing:21.024000px;}
.ls29{letter-spacing:23.904000px;}
.ls32{letter-spacing:25.344000px;}
.ls12{letter-spacing:26.784000px;}
.ls34{letter-spacing:28.224000px;}
.ls4{letter-spacing:30.384000px;}
.ls1f{letter-spacing:31.824000px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-72.000000px;}
.ws25{word-spacing:-70.416000px;}
.wsa{word-spacing:-21.744000px;}
.ws4{word-spacing:-21.600000px;}
.ws8{word-spacing:-21.024000px;}
.ws21{word-spacing:-20.934000px;}
.ws16{word-spacing:-20.880000px;}
.ws28{word-spacing:-20.766000px;}
.wsf{word-spacing:-20.736000px;}
.ws27{word-spacing:-20.670000px;}
.wsc{word-spacing:-20.520000px;}
.ws2c{word-spacing:-20.460000px;}
.ws29{word-spacing:-20.406000px;}
.ws20{word-spacing:-20.332200px;}
.ws7{word-spacing:-20.304000px;}
.ws23{word-spacing:-20.258400px;}
.ws2b{word-spacing:-20.232000px;}
.ws24{word-spacing:-20.163600px;}
.ws1c{word-spacing:-20.160000px;}
.ws22{word-spacing:-20.089800px;}
.ws2{word-spacing:-20.016000px;}
.ws14{word-spacing:-19.944000px;}
.ws26{word-spacing:-19.898400px;}
.ws13{word-spacing:-19.872000px;}
.ws1f{word-spacing:-19.800000px;}
.ws0{word-spacing:-19.584000px;}
.ws2a{word-spacing:-19.559400px;}
.ws11{word-spacing:-19.512000px;}
.ws5{word-spacing:-19.440000px;}
.ws3{word-spacing:-19.296000px;}
.ws1b{word-spacing:-19.224000px;}
.ws6{word-spacing:-19.152000px;}
.ws19{word-spacing:-19.080000px;}
.ws1{word-spacing:-18.864000px;}
.ws10{word-spacing:-18.576000px;}
.ws1a{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.432000px;}
.ws18{word-spacing:-18.360000px;}
.wsd{word-spacing:-18.144000px;}
.ws17{word-spacing:-17.856000px;}
.ws15{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws12{word-spacing:-16.992000px;}
.ws1e{word-spacing:-12.931920px;}
.wsb{word-spacing:0.000000px;}
._2e{margin-left:-8.652000px;}
._2c{margin-left:-7.536000px;}
._20{margin-left:-5.988000px;}
._2{margin-left:-4.548000px;}
._0{margin-left:-3.384000px;}
._1{margin-left:-2.232000px;}
._3{margin-left:-1.140000px;}
._5{width:1.296000px;}
._12{width:2.628000px;}
._9{width:4.416000px;}
._e{width:5.748000px;}
._8{width:6.924000px;}
._b{width:8.148000px;}
._c{width:9.648000px;}
._a{width:10.800000px;}
._d{width:12.000000px;}
._15{width:13.104000px;}
._7{width:14.148000px;}
._4{width:15.264000px;}
._13{width:16.512000px;}
._6{width:17.688000px;}
._1f{width:18.900000px;}
._1d{width:21.120000px;}
._11{width:22.308000px;}
._10{width:23.340000px;}
._2b{width:24.348000px;}
._18{width:25.392000px;}
._19{width:26.412000px;}
._f{width:28.332000px;}
._1a{width:29.604000px;}
._1b{width:30.660000px;}
._14{width:31.932000px;}
._1e{width:32.988000px;}
._17{width:34.272000px;}
._23{width:35.532000px;}
._16{width:36.684000px;}
._1c{width:38.136000px;}
._21{width:40.068000px;}
._22{width:41.184000px;}
._27{width:42.780000px;}
._29{width:46.056000px;}
._24{width:47.136000px;}
._26{width:48.768000px;}
._25{width:49.776000px;}
._28{width:54.156000px;}
._2a{width:59.424000px;}
._2d{width:65.664000px;}
._30{width:126.336000px;}
._2f{width:127.440000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.636000px;}
.y2{bottom:77.256000px;}
.ya5{bottom:110.196000px;}
.y9c{bottom:111.636000px;}
.y5e{bottom:111.816000px;}
.y24{bottom:113.256000px;}
.y48{bottom:115.416000px;}
.y76{bottom:115.596000px;}
.y45{bottom:120.636000px;}
.ydb{bottom:125.676000px;}
.ye7{bottom:130.896000px;}
.y89{bottom:133.596000px;}
.yba{bottom:136.116000px;}
.ya4{bottom:141.336000px;}
.y9b{bottom:142.596000px;}
.y5d{bottom:142.776000px;}
.y23{bottom:144.216000px;}
.y47{bottom:146.556000px;}
.y75{bottom:146.736000px;}
.y44{bottom:151.590000px;}
.yda{bottom:162.030000px;}
.y9a{bottom:164.730000px;}
.yb9{bottom:167.250000px;}
.ya3{bottom:172.290000px;}
.yf4{bottom:172.470000px;}
.y88{bottom:173.730000px;}
.y5c{bottom:173.910000px;}
.y22{bottom:175.350000px;}
.y46{bottom:177.510000px;}
.y74{bottom:177.690000px;}
.y43{bottom:182.730000px;}
.yd9{bottom:192.990000px;}
.y99{bottom:195.690000px;}
.yb8{bottom:198.210000px;}
.ya2{bottom:203.430000px;}
.yf3{bottom:203.610000px;}
.y87{bottom:204.690000px;}
.y5b{bottom:204.870000px;}
.y21{bottom:206.310000px;}
.y73{bottom:208.650000px;}
.y42{bottom:213.690000px;}
.y105{bottom:213.870000px;}
.yd8{bottom:224.130000px;}
.y98{bottom:226.830000px;}
.yb7{bottom:229.350000px;}
.ya1{bottom:234.390000px;}
.yf2{bottom:234.570000px;}
.y86{bottom:235.830000px;}
.y20{bottom:237.450000px;}
.y72{bottom:239.610000px;}
.y5a{bottom:241.230000px;}
.y41{bottom:244.830000px;}
.y104{bottom:245.010000px;}
.yd7{bottom:255.090000px;}
.y97{bottom:257.790000px;}
.yb6{bottom:260.310000px;}
.ya0{bottom:265.530000px;}
.yf1{bottom:265.710000px;}
.y85{bottom:266.790000px;}
.y1f{bottom:268.410000px;}
.y71{bottom:270.750000px;}
.y59{bottom:272.190000px;}
.y40{bottom:275.835000px;}
.ycf{bottom:281.055000px;}
.yd6{bottom:286.275000px;}
.y96{bottom:288.975000px;}
.y9f{bottom:296.535000px;}
.yf0{bottom:296.715000px;}
.y84{bottom:297.975000px;}
.y1e{bottom:299.595000px;}
.y70{bottom:301.755000px;}
.y58{bottom:303.375000px;}
.y3f{bottom:306.975000px;}
.yce{bottom:312.195000px;}
.yd5{bottom:317.235000px;}
.y95{bottom:319.935000px;}
.y9e{bottom:327.675000px;}
.yef{bottom:327.855000px;}
.y83{bottom:328.935000px;}
.y1d{bottom:330.555000px;}
.y6f{bottom:332.895000px;}
.y57{bottom:334.335000px;}
.y3e{bottom:337.935000px;}
.yfd{bottom:338.115000px;}
.ycd{bottom:343.155000px;}
.ye6{bottom:348.375000px;}
.y94{bottom:351.075000px;}
.yd4{bottom:353.595000px;}
.y9d{bottom:358.635000px;}
.yee{bottom:358.815000px;}
.y82{bottom:360.075000px;}
.y1c{bottom:361.695000px;}
.y6e{bottom:363.855000px;}
.y56{bottom:365.475000px;}
.y3d{bottom:369.075000px;}
.ycc{bottom:374.295000px;}
.ye5{bottom:379.335000px;}
.y93{bottom:382.035000px;}
.yd3{bottom:384.555000px;}
.yb5{bottom:389.775000px;}
.yed{bottom:389.955000px;}
.y81{bottom:391.035000px;}
.y1b{bottom:392.835000px;}
.y6d{bottom:394.995000px;}
.y55{bottom:396.435000px;}
.y3c{bottom:400.035000px;}
.y103{bottom:400.215000px;}
.ycb{bottom:405.255000px;}
.yd2{bottom:415.695000px;}
.yb4{bottom:420.735000px;}
.yec{bottom:420.915000px;}
.y80{bottom:422.175000px;}
.y1a{bottom:423.975000px;}
.y6c{bottom:425.955000px;}
.y54{bottom:427.575000px;}
.y3b{bottom:431.175000px;}
.yfc{bottom:431.355000px;}
.yca{bottom:436.395000px;}
.yd1{bottom:446.655000px;}
.yb3{bottom:451.875000px;}
.y7f{bottom:453.135000px;}
.y19{bottom:454.935000px;}
.y6b{bottom:457.095000px;}
.y53{bottom:458.535000px;}
.y3a{bottom:462.135000px;}
.yfb{bottom:462.315000px;}
.yc9{bottom:467.355000px;}
.yd0{bottom:477.615000px;}
.ye4{bottom:477.795000px;}
.yb2{bottom:482.835000px;}
.y7e{bottom:484.275000px;}
.y92{bottom:484.455000px;}
.y18{bottom:486.075000px;}
.y6a{bottom:488.055000px;}
.y52{bottom:489.675000px;}
.y39{bottom:493.275000px;}
.y102{bottom:493.455000px;}
.yc8{bottom:503.535000px;}
.ye3{bottom:508.755000px;}
.yb1{bottom:513.975000px;}
.y7d{bottom:515.235000px;}
.y91{bottom:515.415000px;}
.y17{bottom:517.035000px;}
.y69{bottom:519.195000px;}
.y51{bottom:520.635000px;}
.y38{bottom:524.235000px;}
.yfa{bottom:524.415000px;}
.yc7{bottom:534.675000px;}
.ye2{bottom:539.895000px;}
.yb0{bottom:544.935000px;}
.y7c{bottom:546.375000px;}
.y90{bottom:546.555000px;}
.y16{bottom:548.175000px;}
.y68{bottom:550.155000px;}
.y50{bottom:551.775000px;}
.y37{bottom:555.375000px;}
.y101{bottom:555.555000px;}
.yc6{bottom:565.665000px;}
.ye1{bottom:570.885000px;}
.yaf{bottom:576.105000px;}
.y7b{bottom:577.365000px;}
.y8f{bottom:577.545000px;}
.y15{bottom:579.165000px;}
.y67{bottom:581.325000px;}
.y4f{bottom:582.765000px;}
.y36{bottom:586.365000px;}
.yc5{bottom:596.625000px;}
.ye0{bottom:601.845000px;}
.yae{bottom:607.065000px;}
.y7a{bottom:608.505000px;}
.y8e{bottom:608.685000px;}
.y14{bottom:610.125000px;}
.y66{bottom:612.285000px;}
.y4e{bottom:613.905000px;}
.y35{bottom:617.505000px;}
.yc4{bottom:632.985000px;}
.yad{bottom:638.025000px;}
.ydf{bottom:638.205000px;}
.y79{bottom:639.465000px;}
.y13{bottom:641.085000px;}
.y65{bottom:643.245000px;}
.y4d{bottom:644.865000px;}
.y34{bottom:648.465000px;}
.yf9{bottom:648.645000px;}
.yc3{bottom:663.945000px;}
.yde{bottom:669.165000px;}
.yeb{bottom:669.345000px;}
.y8d{bottom:670.605000px;}
.y12{bottom:672.225000px;}
.y64{bottom:674.385000px;}
.y4c{bottom:675.825000px;}
.y33{bottom:679.605000px;}
.y100{bottom:679.785000px;}
.yc2{bottom:695.085000px;}
.ydd{bottom:700.305000px;}
.y8c{bottom:701.565000px;}
.y11{bottom:703.185000px;}
.y63{bottom:705.345000px;}
.y4b{bottom:708.225000px;}
.y32{bottom:710.565000px;}
.yf8{bottom:710.745000px;}
.yc1{bottom:726.045000px;}
.ydc{bottom:731.265000px;}
.yea{bottom:731.445000px;}
.y8b{bottom:732.705000px;}
.y10{bottom:734.325000px;}
.y62{bottom:736.485000px;}
.y4a{bottom:739.185000px;}
.y31{bottom:741.705000px;}
.ye9{bottom:762.225000px;}
.yc0{bottom:762.405000px;}
.y8a{bottom:763.665000px;}
.yf{bottom:765.285000px;}
.y61{bottom:767.445000px;}
.y49{bottom:771.405000px;}
.y30{bottom:772.665000px;}
.yf7{bottom:772.845000px;}
.ybf{bottom:793.365000px;}
.ye{bottom:796.425000px;}
.y60{bottom:798.585000px;}
.y2f{bottom:803.805000px;}
.yf6{bottom:803.985000px;}
.ybe{bottom:824.505000px;}
.yd{bottom:827.385000px;}
.y5f{bottom:829.545000px;}
.y2e{bottom:834.765000px;}
.ybd{bottom:855.510000px;}
.yc{bottom:858.390000px;}
.yac{bottom:860.730000px;}
.y2d{bottom:865.950000px;}
.yf5{bottom:866.130000px;}
.ybc{bottom:886.650000px;}
.yb{bottom:889.530000px;}
.yab{bottom:891.690000px;}
.y2c{bottom:896.910000px;}
.yff{bottom:897.090000px;}
.ybb{bottom:917.610000px;}
.ya{bottom:920.490000px;}
.yaa{bottom:922.830000px;}
.y2b{bottom:928.050000px;}
.yfe{bottom:928.230000px;}
.y9{bottom:951.630000px;}
.ya9{bottom:953.790000px;}
.y2a{bottom:959.010000px;}
.y8{bottom:982.590000px;}
.ya8{bottom:984.930000px;}
.y29{bottom:990.150000px;}
.y7{bottom:1013.730000px;}
.ya7{bottom:1015.890000px;}
.y28{bottom:1021.110000px;}
.y6{bottom:1044.690000px;}
.ya6{bottom:1047.030000px;}
.y27{bottom:1052.250000px;}
.y5{bottom:1075.830000px;}
.y26{bottom:1083.210000px;}
.y78{bottom:1083.390000px;}
.y4{bottom:1111.110000px;}
.ye8{bottom:1114.170000px;}
.y25{bottom:1114.350000px;}
.y77{bottom:1114.530000px;}
.y1{bottom:1131.120000px;}
.h3{height:41.464336px;}
.h2{height:45.184219px;}
.h4{height:58.449727px;}
.h7{height:64.546875px;}
.h5{height:75.093750px;}
.h6{height:102.453750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:74.520000px;}
.x24{left:104.256000px;}
.x3{left:127.656000px;}
.xb{left:136.116000px;}
.x6{left:137.196000px;}
.x5{left:148.536000px;}
.x8{left:151.050000px;}
.x15{left:157.350000px;}
.xc{left:162.030000px;}
.x11{left:180.750000px;}
.xf{left:189.030000px;}
.x1d{left:199.830000px;}
.x10{left:216.030000px;}
.x17{left:238.710000px;}
.x1a{left:251.310000px;}
.x1b{left:258.330000px;}
.x21{left:277.770000px;}
.x22{left:282.450000px;}
.x18{left:309.675000px;}
.x19{left:313.455000px;}
.xa{left:336.495000px;}
.x7{left:350.535000px;}
.x9{left:377.535000px;}
.x23{left:443.955000px;}
.x4{left:450.795000px;}
.x1c{left:501.225000px;}
.x1e{left:541.725000px;}
.x1{left:548.925000px;}
.x1f{left:576.825000px;}
.x20{left:750.210000px;}
.x12{left:752.010000px;}
.x14{left:753.270000px;}
.x13{left:755.070000px;}
.xe{left:757.590000px;}
.xd{left:758.670000px;}
.x2{left:760.290000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1b{letter-spacing:-2.688000pt;}
.ls16{letter-spacing:-2.048000pt;}
.ls25{letter-spacing:-1.984000pt;}
.ls2b{letter-spacing:-1.920000pt;}
.ls15{letter-spacing:-1.664000pt;}
.ls2c{letter-spacing:-1.472000pt;}
.ls10{letter-spacing:-1.408000pt;}
.ls2e{letter-spacing:-1.344000pt;}
.ls19{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-1.024000pt;}
.ls2d{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.768000pt;}
.ls2f{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls4d{letter-spacing:-0.405867pt;}
.ls7{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls4a{letter-spacing:-0.104533pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls33{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.032000pt;}
.ls3f{letter-spacing:0.065526pt;}
.ls37{letter-spacing:0.065600pt;}
.ls3d{letter-spacing:0.108158pt;}
.lsd{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.131052pt;}
.ls39{letter-spacing:0.131200pt;}
.ls47{letter-spacing:0.139024pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls45{letter-spacing:0.215386pt;}
.ls38{letter-spacing:0.215467pt;}
.ls40{letter-spacing:0.237684pt;}
.ls1{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.281067pt;}
.ls4c{letter-spacing:0.346667pt;}
.ls4e{letter-spacing:0.394667pt;}
.ls14{letter-spacing:0.448000pt;}
.ls26{letter-spacing:0.512000pt;}
.ls43{letter-spacing:0.581333pt;}
.ls17{letter-spacing:0.640000pt;}
.ls4b{letter-spacing:0.666667pt;}
.ls44{letter-spacing:0.752354pt;}
.ls27{letter-spacing:0.768000pt;}
.ls35{letter-spacing:0.816000pt;}
.ls1e{letter-spacing:0.832000pt;}
.lsf{letter-spacing:0.896000pt;}
.ls41{letter-spacing:0.902214pt;}
.lsa{letter-spacing:1.408000pt;}
.ls11{letter-spacing:1.536000pt;}
.ls49{letter-spacing:2.048000pt;}
.ls1d{letter-spacing:2.688000pt;}
.ls3e{letter-spacing:2.812838pt;}
.ls42{letter-spacing:3.499666pt;}
.ls13{letter-spacing:3.968000pt;}
.ls20{letter-spacing:5.888000pt;}
.ls3{letter-spacing:6.528000pt;}
.ls30{letter-spacing:7.146667pt;}
.ls46{letter-spacing:7.168000pt;}
.ls31{letter-spacing:7.328000pt;}
.ls0{letter-spacing:7.808000pt;}
.ls18{letter-spacing:7.946667pt;}
.ls3c{letter-spacing:9.681117pt;}
.ls2{letter-spacing:11.008000pt;}
.ls3a{letter-spacing:12.288000pt;}
.ls23{letter-spacing:14.848000pt;}
.ls21{letter-spacing:16.128000pt;}
.ls28{letter-spacing:18.048000pt;}
.ls22{letter-spacing:18.154667pt;}
.ls5{letter-spacing:18.688000pt;}
.ls29{letter-spacing:21.248000pt;}
.ls32{letter-spacing:22.528000pt;}
.ls12{letter-spacing:23.808000pt;}
.ls34{letter-spacing:25.088000pt;}
.ls4{letter-spacing:27.008000pt;}
.ls1f{letter-spacing:28.288000pt;}
.ws1d{word-spacing:-64.000000pt;}
.ws25{word-spacing:-62.592000pt;}
.wsa{word-spacing:-19.328000pt;}
.ws4{word-spacing:-19.200000pt;}
.ws8{word-spacing:-18.688000pt;}
.ws21{word-spacing:-18.608000pt;}
.ws16{word-spacing:-18.560000pt;}
.ws28{word-spacing:-18.458667pt;}
.wsf{word-spacing:-18.432000pt;}
.ws27{word-spacing:-18.373333pt;}
.wsc{word-spacing:-18.240000pt;}
.ws2c{word-spacing:-18.186667pt;}
.ws29{word-spacing:-18.138667pt;}
.ws20{word-spacing:-18.073067pt;}
.ws7{word-spacing:-18.048000pt;}
.ws23{word-spacing:-18.007467pt;}
.ws2b{word-spacing:-17.984000pt;}
.ws24{word-spacing:-17.923200pt;}
.ws1c{word-spacing:-17.920000pt;}
.ws22{word-spacing:-17.857600pt;}
.ws2{word-spacing:-17.792000pt;}
.ws14{word-spacing:-17.728000pt;}
.ws26{word-spacing:-17.687467pt;}
.ws13{word-spacing:-17.664000pt;}
.ws1f{word-spacing:-17.600000pt;}
.ws0{word-spacing:-17.408000pt;}
.ws2a{word-spacing:-17.386133pt;}
.ws11{word-spacing:-17.344000pt;}
.ws5{word-spacing:-17.280000pt;}
.ws3{word-spacing:-17.152000pt;}
.ws1b{word-spacing:-17.088000pt;}
.ws6{word-spacing:-17.024000pt;}
.ws19{word-spacing:-16.960000pt;}
.ws1{word-spacing:-16.768000pt;}
.ws10{word-spacing:-16.512000pt;}
.ws1a{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.384000pt;}
.ws18{word-spacing:-16.320000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws17{word-spacing:-15.872000pt;}
.ws15{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws12{word-spacing:-15.104000pt;}
.ws1e{word-spacing:-11.495040pt;}
.wsb{word-spacing:0.000000pt;}
._2e{margin-left:-7.690667pt;}
._2c{margin-left:-6.698667pt;}
._20{margin-left:-5.322667pt;}
._2{margin-left:-4.042667pt;}
._0{margin-left:-3.008000pt;}
._1{margin-left:-1.984000pt;}
._3{margin-left:-1.013333pt;}
._5{width:1.152000pt;}
._12{width:2.336000pt;}
._9{width:3.925333pt;}
._e{width:5.109333pt;}
._8{width:6.154667pt;}
._b{width:7.242667pt;}
._c{width:8.576000pt;}
._a{width:9.600000pt;}
._d{width:10.666667pt;}
._15{width:11.648000pt;}
._7{width:12.576000pt;}
._4{width:13.568000pt;}
._13{width:14.677333pt;}
._6{width:15.722667pt;}
._1f{width:16.800000pt;}
._1d{width:18.773333pt;}
._11{width:19.829333pt;}
._10{width:20.746667pt;}
._2b{width:21.642667pt;}
._18{width:22.570667pt;}
._19{width:23.477333pt;}
._f{width:25.184000pt;}
._1a{width:26.314667pt;}
._1b{width:27.253333pt;}
._14{width:28.384000pt;}
._1e{width:29.322667pt;}
._17{width:30.464000pt;}
._23{width:31.584000pt;}
._16{width:32.608000pt;}
._1c{width:33.898667pt;}
._21{width:35.616000pt;}
._22{width:36.608000pt;}
._27{width:38.026667pt;}
._29{width:40.938667pt;}
._24{width:41.898667pt;}
._26{width:43.349333pt;}
._25{width:44.245333pt;}
._28{width:48.138667pt;}
._2a{width:52.821333pt;}
._2d{width:58.368000pt;}
._30{width:112.298667pt;}
._2f{width:113.280000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.232000pt;}
.y2{bottom:68.672000pt;}
.ya5{bottom:97.952000pt;}
.y9c{bottom:99.232000pt;}
.y5e{bottom:99.392000pt;}
.y24{bottom:100.672000pt;}
.y48{bottom:102.592000pt;}
.y76{bottom:102.752000pt;}
.y45{bottom:107.232000pt;}
.ydb{bottom:111.712000pt;}
.ye7{bottom:116.352000pt;}
.y89{bottom:118.752000pt;}
.yba{bottom:120.992000pt;}
.ya4{bottom:125.632000pt;}
.y9b{bottom:126.752000pt;}
.y5d{bottom:126.912000pt;}
.y23{bottom:128.192000pt;}
.y47{bottom:130.272000pt;}
.y75{bottom:130.432000pt;}
.y44{bottom:134.746667pt;}
.yda{bottom:144.026667pt;}
.y9a{bottom:146.426667pt;}
.yb9{bottom:148.666667pt;}
.ya3{bottom:153.146667pt;}
.yf4{bottom:153.306667pt;}
.y88{bottom:154.426667pt;}
.y5c{bottom:154.586667pt;}
.y22{bottom:155.866667pt;}
.y46{bottom:157.786667pt;}
.y74{bottom:157.946667pt;}
.y43{bottom:162.426667pt;}
.yd9{bottom:171.546667pt;}
.y99{bottom:173.946667pt;}
.yb8{bottom:176.186667pt;}
.ya2{bottom:180.826667pt;}
.yf3{bottom:180.986667pt;}
.y87{bottom:181.946667pt;}
.y5b{bottom:182.106667pt;}
.y21{bottom:183.386667pt;}
.y73{bottom:185.466667pt;}
.y42{bottom:189.946667pt;}
.y105{bottom:190.106667pt;}
.yd8{bottom:199.226667pt;}
.y98{bottom:201.626667pt;}
.yb7{bottom:203.866667pt;}
.ya1{bottom:208.346667pt;}
.yf2{bottom:208.506667pt;}
.y86{bottom:209.626667pt;}
.y20{bottom:211.066667pt;}
.y72{bottom:212.986667pt;}
.y5a{bottom:214.426667pt;}
.y41{bottom:217.626667pt;}
.y104{bottom:217.786667pt;}
.yd7{bottom:226.746667pt;}
.y97{bottom:229.146667pt;}
.yb6{bottom:231.386667pt;}
.ya0{bottom:236.026667pt;}
.yf1{bottom:236.186667pt;}
.y85{bottom:237.146667pt;}
.y1f{bottom:238.586667pt;}
.y71{bottom:240.666667pt;}
.y59{bottom:241.946667pt;}
.y40{bottom:245.186667pt;}
.ycf{bottom:249.826667pt;}
.yd6{bottom:254.466667pt;}
.y96{bottom:256.866667pt;}
.y9f{bottom:263.586667pt;}
.yf0{bottom:263.746667pt;}
.y84{bottom:264.866667pt;}
.y1e{bottom:266.306667pt;}
.y70{bottom:268.226667pt;}
.y58{bottom:269.666667pt;}
.y3f{bottom:272.866667pt;}
.yce{bottom:277.506667pt;}
.yd5{bottom:281.986667pt;}
.y95{bottom:284.386667pt;}
.y9e{bottom:291.266667pt;}
.yef{bottom:291.426667pt;}
.y83{bottom:292.386667pt;}
.y1d{bottom:293.826667pt;}
.y6f{bottom:295.906667pt;}
.y57{bottom:297.186667pt;}
.y3e{bottom:300.386667pt;}
.yfd{bottom:300.546667pt;}
.ycd{bottom:305.026667pt;}
.ye6{bottom:309.666667pt;}
.y94{bottom:312.066667pt;}
.yd4{bottom:314.306667pt;}
.y9d{bottom:318.786667pt;}
.yee{bottom:318.946667pt;}
.y82{bottom:320.066667pt;}
.y1c{bottom:321.506667pt;}
.y6e{bottom:323.426667pt;}
.y56{bottom:324.866667pt;}
.y3d{bottom:328.066667pt;}
.ycc{bottom:332.706667pt;}
.ye5{bottom:337.186667pt;}
.y93{bottom:339.586667pt;}
.yd3{bottom:341.826667pt;}
.yb5{bottom:346.466667pt;}
.yed{bottom:346.626667pt;}
.y81{bottom:347.586667pt;}
.y1b{bottom:349.186667pt;}
.y6d{bottom:351.106667pt;}
.y55{bottom:352.386667pt;}
.y3c{bottom:355.586667pt;}
.y103{bottom:355.746667pt;}
.ycb{bottom:360.226667pt;}
.yd2{bottom:369.506667pt;}
.yb4{bottom:373.986667pt;}
.yec{bottom:374.146667pt;}
.y80{bottom:375.266667pt;}
.y1a{bottom:376.866667pt;}
.y6c{bottom:378.626667pt;}
.y54{bottom:380.066667pt;}
.y3b{bottom:383.266667pt;}
.yfc{bottom:383.426667pt;}
.yca{bottom:387.906667pt;}
.yd1{bottom:397.026667pt;}
.yb3{bottom:401.666667pt;}
.y7f{bottom:402.786667pt;}
.y19{bottom:404.386667pt;}
.y6b{bottom:406.306667pt;}
.y53{bottom:407.586667pt;}
.y3a{bottom:410.786667pt;}
.yfb{bottom:410.946667pt;}
.yc9{bottom:415.426667pt;}
.yd0{bottom:424.546667pt;}
.ye4{bottom:424.706667pt;}
.yb2{bottom:429.186667pt;}
.y7e{bottom:430.466667pt;}
.y92{bottom:430.626667pt;}
.y18{bottom:432.066667pt;}
.y6a{bottom:433.826667pt;}
.y52{bottom:435.266667pt;}
.y39{bottom:438.466667pt;}
.y102{bottom:438.626667pt;}
.yc8{bottom:447.586667pt;}
.ye3{bottom:452.226667pt;}
.yb1{bottom:456.866667pt;}
.y7d{bottom:457.986667pt;}
.y91{bottom:458.146667pt;}
.y17{bottom:459.586667pt;}
.y69{bottom:461.506667pt;}
.y51{bottom:462.786667pt;}
.y38{bottom:465.986667pt;}
.yfa{bottom:466.146667pt;}
.yc7{bottom:475.266667pt;}
.ye2{bottom:479.906667pt;}
.yb0{bottom:484.386667pt;}
.y7c{bottom:485.666667pt;}
.y90{bottom:485.826667pt;}
.y16{bottom:487.266667pt;}
.y68{bottom:489.026667pt;}
.y50{bottom:490.466667pt;}
.y37{bottom:493.666667pt;}
.y101{bottom:493.826667pt;}
.yc6{bottom:502.813333pt;}
.ye1{bottom:507.453333pt;}
.yaf{bottom:512.093333pt;}
.y7b{bottom:513.213333pt;}
.y8f{bottom:513.373333pt;}
.y15{bottom:514.813333pt;}
.y67{bottom:516.733333pt;}
.y4f{bottom:518.013333pt;}
.y36{bottom:521.213333pt;}
.yc5{bottom:530.333333pt;}
.ye0{bottom:534.973333pt;}
.yae{bottom:539.613333pt;}
.y7a{bottom:540.893333pt;}
.y8e{bottom:541.053333pt;}
.y14{bottom:542.333333pt;}
.y66{bottom:544.253333pt;}
.y4e{bottom:545.693333pt;}
.y35{bottom:548.893333pt;}
.yc4{bottom:562.653333pt;}
.yad{bottom:567.133333pt;}
.ydf{bottom:567.293333pt;}
.y79{bottom:568.413333pt;}
.y13{bottom:569.853333pt;}
.y65{bottom:571.773333pt;}
.y4d{bottom:573.213333pt;}
.y34{bottom:576.413333pt;}
.yf9{bottom:576.573333pt;}
.yc3{bottom:590.173333pt;}
.yde{bottom:594.813333pt;}
.yeb{bottom:594.973333pt;}
.y8d{bottom:596.093333pt;}
.y12{bottom:597.533333pt;}
.y64{bottom:599.453333pt;}
.y4c{bottom:600.733333pt;}
.y33{bottom:604.093333pt;}
.y100{bottom:604.253333pt;}
.yc2{bottom:617.853333pt;}
.ydd{bottom:622.493333pt;}
.y8c{bottom:623.613333pt;}
.y11{bottom:625.053333pt;}
.y63{bottom:626.973333pt;}
.y4b{bottom:629.533333pt;}
.y32{bottom:631.613333pt;}
.yf8{bottom:631.773333pt;}
.yc1{bottom:645.373333pt;}
.ydc{bottom:650.013333pt;}
.yea{bottom:650.173333pt;}
.y8b{bottom:651.293333pt;}
.y10{bottom:652.733333pt;}
.y62{bottom:654.653333pt;}
.y4a{bottom:657.053333pt;}
.y31{bottom:659.293333pt;}
.ye9{bottom:677.533333pt;}
.yc0{bottom:677.693333pt;}
.y8a{bottom:678.813333pt;}
.yf{bottom:680.253333pt;}
.y61{bottom:682.173333pt;}
.y49{bottom:685.693333pt;}
.y30{bottom:686.813333pt;}
.yf7{bottom:686.973333pt;}
.ybf{bottom:705.213333pt;}
.ye{bottom:707.933333pt;}
.y60{bottom:709.853333pt;}
.y2f{bottom:714.493333pt;}
.yf6{bottom:714.653333pt;}
.ybe{bottom:732.893333pt;}
.yd{bottom:735.453333pt;}
.y5f{bottom:737.373333pt;}
.y2e{bottom:742.013333pt;}
.ybd{bottom:760.453333pt;}
.yc{bottom:763.013333pt;}
.yac{bottom:765.093333pt;}
.y2d{bottom:769.733333pt;}
.yf5{bottom:769.893333pt;}
.ybc{bottom:788.133333pt;}
.yb{bottom:790.693333pt;}
.yab{bottom:792.613333pt;}
.y2c{bottom:797.253333pt;}
.yff{bottom:797.413333pt;}
.ybb{bottom:815.653333pt;}
.ya{bottom:818.213333pt;}
.yaa{bottom:820.293333pt;}
.y2b{bottom:824.933333pt;}
.yfe{bottom:825.093333pt;}
.y9{bottom:845.893333pt;}
.ya9{bottom:847.813333pt;}
.y2a{bottom:852.453333pt;}
.y8{bottom:873.413333pt;}
.ya8{bottom:875.493333pt;}
.y29{bottom:880.133333pt;}
.y7{bottom:901.093333pt;}
.ya7{bottom:903.013333pt;}
.y28{bottom:907.653333pt;}
.y6{bottom:928.613333pt;}
.ya6{bottom:930.693333pt;}
.y27{bottom:935.333333pt;}
.y5{bottom:956.293333pt;}
.y26{bottom:962.853333pt;}
.y78{bottom:963.013333pt;}
.y4{bottom:987.653333pt;}
.ye8{bottom:990.373333pt;}
.y25{bottom:990.533333pt;}
.y77{bottom:990.693333pt;}
.y1{bottom:1005.440000pt;}
.h3{height:36.857188pt;}
.h2{height:40.163750pt;}
.h4{height:51.955312pt;}
.h7{height:57.375000pt;}
.h5{height:66.750000pt;}
.h6{height:91.070000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:66.240000pt;}
.x24{left:92.672000pt;}
.x3{left:113.472000pt;}
.xb{left:120.992000pt;}
.x6{left:121.952000pt;}
.x5{left:132.032000pt;}
.x8{left:134.266667pt;}
.x15{left:139.866667pt;}
.xc{left:144.026667pt;}
.x11{left:160.666667pt;}
.xf{left:168.026667pt;}
.x1d{left:177.626667pt;}
.x10{left:192.026667pt;}
.x17{left:212.186667pt;}
.x1a{left:223.386667pt;}
.x1b{left:229.626667pt;}
.x21{left:246.906667pt;}
.x22{left:251.066667pt;}
.x18{left:275.266667pt;}
.x19{left:278.626667pt;}
.xa{left:299.106667pt;}
.x7{left:311.586667pt;}
.x9{left:335.586667pt;}
.x23{left:394.626667pt;}
.x4{left:400.706667pt;}
.x1c{left:445.533333pt;}
.x1e{left:481.533333pt;}
.x1{left:487.933333pt;}
.x1f{left:512.733333pt;}
.x20{left:666.853333pt;}
.x12{left:668.453333pt;}
.x14{left:669.573333pt;}
.x13{left:671.173333pt;}
.xe{left:673.413333pt;}
.xd{left:674.373333pt;}
.x2{left:675.813333pt;}
}




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