
    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_66094037c979a8c27c42f7e4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fddb5cb9b2ec358154eab733.woff2')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_8a4623eadb6275a4947eb73a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_35c0c1bf4d8fb0f03b3bd6ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005859;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_e3b30723637d23f77a01beba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_2e605b1a39f2983c3630dca3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_61a50a8c93d82565e18f0650.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_471c86321f30b680c8ebe499.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_9bb42af574e1b9388c87bbcf.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_777d3029f53de8ed6f3e33ee.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c423af6ba7bc5631247d820c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.887695;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_b5c47b7b2c4f7894b3d6a808.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ba89b40d0e5b1943687426b4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c5e6f2fb071e6a730b0a736a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9bfd48c2fc62df9661f11e41.woff2')format("woff");}.fff{font-family:fff;line-height:0.970703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.228301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228301,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);}
.v4{vertical-align:-24.040498px;}
.v7{vertical-align:-16.026999px;}
.v8{vertical-align:-3.171117px;}
.v6{vertical-align:-1.585559px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.671265px;}
.v2{vertical-align:4.958085px;}
.v1{vertical-align:27.360000px;}
.v3{vertical-align:28.882880px;}
.v9{vertical-align:57.470075px;}
.ls15{letter-spacing:-2.939712px;}
.ls9{letter-spacing:-0.478200px;}
.ls8{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.229800px;}
.lsc{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.085200px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000003px;}
.ls14{letter-spacing:0.052709px;}
.ls6{letter-spacing:0.059040px;}
.ls29{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.187200px;}
.ls24{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.504000px;}
.ls18{letter-spacing:1.632697px;}
.ls16{letter-spacing:1.688406px;}
.ls17{letter-spacing:1.739829px;}
.ls30{letter-spacing:2.880000px;}
.ls5{letter-spacing:5.760000px;}
.ls2d{letter-spacing:7.200000px;}
.ls1a{letter-spacing:8.640000px;}
.ls1c{letter-spacing:10.800000px;}
.ls3{letter-spacing:12.960000px;}
.ls28{letter-spacing:13.680000px;}
.ls22{letter-spacing:23.040000px;}
.ls2c{letter-spacing:38.160000px;}
.ls4{letter-spacing:38.880000px;}
.ls20{letter-spacing:40.296000px;}
.ls19{letter-spacing:41.040000px;}
.ls21{letter-spacing:44.616000px;}
.ls1f{letter-spacing:46.080000px;}
.ls2f{letter-spacing:46.800000px;}
.ls2e{letter-spacing:47.496000px;}
.ls25{letter-spacing:48.240000px;}
.ls26{letter-spacing:71.280000px;}
.ls1b{letter-spacing:79.200000px;}
.ls2a{letter-spacing:112.320000px;}
.ls1e{letter-spacing:179.280000px;}
.ls23{letter-spacing:191.496000px;}
.lsf{letter-spacing:269.215010px;}
.lse{letter-spacing:275.141572px;}
.ls11{letter-spacing:285.169159px;}
.ls10{letter-spacing:295.753835px;}
.ls12{letter-spacing:297.296540px;}
.ls13{letter-spacing:348.342960px;}
.ls27{letter-spacing:748.236000px;}
.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;}
}
.ws4{word-spacing:-18.808440px;}
.ws17{word-spacing:-18.288000px;}
.ws18{word-spacing:-18.072000px;}
.ws16{word-spacing:-18.000003px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws15{word-spacing:-14.100365px;}
.ws11{word-spacing:-12.916947px;}
.wsb{word-spacing:-12.890164px;}
.ws8{word-spacing:-12.420000px;}
.ws2{word-spacing:-10.612800px;}
.ws1{word-spacing:-10.527600px;}
.ws3{word-spacing:-10.134600px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:264.299641px;}
.wsa{word-spacing:265.830211px;}
.wsc{word-spacing:275.215004px;}
.wse{word-spacing:295.870120px;}
.wsd{word-spacing:307.082986px;}
.ws14{word-spacing:308.549722px;}
.ws13{word-spacing:322.798324px;}
.ws12{word-spacing:322.957951px;}
.ws10{word-spacing:621.912617px;}
.wsf{word-spacing:636.366639px;}
._2a{margin-left:-49.941636px;}
._2b{margin-left:-4.308306px;}
._28{margin-left:-3.299882px;}
._5{margin-left:-2.160000px;}
._0{margin-left:-1.109520px;}
._1{width:1.047360px;}
._4{width:2.256000px;}
._b{width:3.680640px;}
._e{width:5.319360px;}
._c{width:6.480000px;}
._d{width:7.704000px;}
._f{width:9.072000px;}
._7{width:10.080000px;}
._8{width:11.150160px;}
._3{width:12.278160px;}
._6{width:13.437600px;}
._a{width:14.592000px;}
._1d{width:15.761280px;}
._3a{width:16.998720px;}
._6a{width:18.000000px;}
._3d{width:19.460522px;}
._11{width:20.520000px;}
._1b{width:22.248000px;}
._29{width:23.478816px;}
._47{width:24.944640px;}
._4f{width:26.165520px;}
._1f{width:27.504000px;}
._3f{width:28.613520px;}
._45{width:30.066480px;}
._38{width:32.040000px;}
._18{width:33.384000px;}
._24{width:34.837680px;}
._23{width:36.324240px;}
._1c{width:37.361280px;}
._9{width:39.240000px;}
._1a{width:40.896000px;}
._4b{width:42.296640px;}
._10{width:43.344000px;}
._2e{width:44.630160px;}
._21{width:45.824640px;}
._17{width:47.016000px;}
._19{width:48.240000px;}
._39{width:49.784640px;}
._16{width:51.768000px;}
._31{width:53.712000px;}
._30{width:54.720000px;}
._32{width:55.812000px;}
._57{width:56.971680px;}
._37{width:58.032000px;}
._14{width:59.904000px;}
._15{width:60.917280px;}
._22{width:62.208000px;}
._52{width:63.864000px;}
._60{width:65.942160px;}
._2c{width:67.088014px;}
._69{width:68.517506px;}
._42{width:70.416000px;}
._1e{width:72.216000px;}
._4c{width:73.656000px;}
._3e{width:74.952000px;}
._53{width:77.040000px;}
._48{width:79.488000px;}
._62{width:80.702160px;}
._36{width:82.080000px;}
._35{width:83.448000px;}
._43{width:85.136640px;}
._13{width:86.976000px;}
._67{width:88.016640px;}
._56{width:89.064000px;}
._63{width:92.592000px;}
._34{width:94.176000px;}
._3b{width:97.344000px;}
._2f{width:99.648000px;}
._5a{width:100.800000px;}
._20{width:103.536000px;}
._55{width:104.736000px;}
._49{width:107.928000px;}
._3c{width:109.224000px;}
._5b{width:111.312000px;}
._5c{width:112.349520px;}
._50{width:116.928000px;}
._59{width:118.688640px;}
._58{width:119.736000px;}
._5d{width:122.256000px;}
._5e{width:132.696000px;}
._46{width:152.856000px;}
._65{width:154.973520px;}
._64{width:156.024000px;}
._61{width:164.480640px;}
._4d{width:179.424000px;}
._68{width:185.429520px;}
._44{width:186.984000px;}
._41{width:191.376000px;}
._40{width:192.456000px;}
._51{width:197.136000px;}
._4a{width:224.424000px;}
._4e{width:237.096000px;}
._12{width:271.440000px;}
._66{width:292.637520px;}
._2d{width:300.293656px;}
._26{width:337.464000px;}
._25{width:339.152640px;}
._33{width:358.661520px;}
._2{width:540.696000px;}
._27{width:604.557726px;}
._5f{width:836.760000px;}
._54{width:1592.940000px;}
.fc4{color:transparent;}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:18.000000px;}
.fs5{font-size:47.241078px;}
.fs4{font-size:47.343926px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:50.613605px;}
.fs6{font-size:50.720737px;}
.fs7{font-size:51.560655px;}
.fs8{font-size:51.667787px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y47{bottom:-90.800018px;}
.y46{bottom:-76.432500px;}
.y0{bottom:0.000000px;}
.y4a{bottom:4.417281px;}
.y5f{bottom:7.020000px;}
.yb6{bottom:7.200000px;}
.yb7{bottom:8.280000px;}
.yb5{bottom:9.540000px;}
.y5e{bottom:13.680000px;}
.y49{bottom:18.784585px;}
.y48{bottom:33.151033px;}
.y4{bottom:62.460000px;}
.y34{bottom:69.609241px;}
.y37{bottom:71.955439px;}
.y36{bottom:72.350757px;}
.y35{bottom:73.509929px;}
.y38{bottom:76.700331px;}
.y32{bottom:90.180000px;}
.y92{bottom:92.880000px;}
.yac{bottom:102.780000px;}
.ycd{bottom:104.040000px;}
.y31{bottom:113.940000px;}
.y91{bottom:116.640000px;}
.y43{bottom:120.802431px;}
.yab{bottom:126.720000px;}
.ye8{bottom:127.800000px;}
.y30{bottom:137.700000px;}
.y90{bottom:140.400000px;}
.yaa{bottom:150.480000px;}
.ye7{bottom:151.740000px;}
.y2f{bottom:161.460000px;}
.y8f{bottom:164.340000px;}
.ya9{bottom:174.240000px;}
.ye6{bottom:175.530000px;}
.y42{bottom:182.960617px;}
.y2e{bottom:185.430000px;}
.y8e{bottom:188.130000px;}
.y44{bottom:196.437866px;}
.ya8{bottom:198.030000px;}
.ye5{bottom:199.290000px;}
.y2d{bottom:209.190000px;}
.y8d{bottom:211.890000px;}
.ya7{bottom:221.970000px;}
.ybf{bottom:222.870000px;}
.ye4{bottom:223.050000px;}
.y3d{bottom:229.648893px;}
.y3f{bottom:232.391481px;}
.y2c{bottom:232.950000px;}
.y41{bottom:233.291393px;}
.y8c{bottom:235.650000px;}
.y7a{bottom:243.030000px;}
.ya6{bottom:245.730000px;}
.ybe{bottom:246.630000px;}
.ye3{bottom:246.990000px;}
.y2b{bottom:256.710000px;}
.y8b{bottom:259.590000px;}
.y79{bottom:266.790000px;}
.ya5{bottom:269.490000px;}
.ybd{bottom:270.390000px;}
.ye2{bottom:270.750000px;}
.y2a{bottom:280.650000px;}
.y8a{bottom:283.350000px;}
.y78{bottom:290.730000px;}
.ya4{bottom:293.250000px;}
.ybc{bottom:294.150000px;}
.ye1{bottom:294.510000px;}
.y29{bottom:304.410000px;}
.y89{bottom:307.110000px;}
.y77{bottom:314.490000px;}
.ya3{bottom:317.190000px;}
.ybb{bottom:318.090000px;}
.ye0{bottom:318.270000px;}
.y39{bottom:320.486408px;}
.y3a{bottom:321.943408px;}
.y3b{bottom:322.414790px;}
.y3c{bottom:325.360929px;}
.y28{bottom:328.170000px;}
.y88{bottom:330.870000px;}
.y76{bottom:338.250000px;}
.ya2{bottom:340.950000px;}
.yba{bottom:341.850000px;}
.ydf{bottom:342.210000px;}
.y27{bottom:351.930000px;}
.y87{bottom:354.810000px;}
.y45{bottom:361.796640px;}
.y75{bottom:362.010000px;}
.ya1{bottom:364.710000px;}
.yb9{bottom:365.610000px;}
.yde{bottom:365.970000px;}
.y5c{bottom:366.330000px;}
.y3e{bottom:372.820558px;}
.y26{bottom:375.870000px;}
.y40{bottom:377.480815px;}
.y86{bottom:378.570000px;}
.y74{bottom:385.770000px;}
.ya0{bottom:388.470000px;}
.yb8{bottom:389.010000px;}
.ydd{bottom:389.730000px;}
.y5b{bottom:390.090000px;}
.y25{bottom:399.630000px;}
.y85{bottom:402.330000px;}
.yb4{bottom:406.470000px;}
.y73{bottom:409.710000px;}
.y9f{bottom:412.230000px;}
.ydc{bottom:413.490000px;}
.y5a{bottom:413.850000px;}
.y24{bottom:423.435000px;}
.y84{bottom:426.135000px;}
.y72{bottom:433.515000px;}
.y9e{bottom:436.215000px;}
.yeb{bottom:437.115000px;}
.ydb{bottom:437.475000px;}
.y59{bottom:437.655000px;}
.y23{bottom:447.195000px;}
.y83{bottom:450.075000px;}
.y71{bottom:457.275000px;}
.y9d{bottom:459.975000px;}
.yea{bottom:460.875000px;}
.yda{bottom:461.235000px;}
.y58{bottom:461.595000px;}
.y22{bottom:471.135000px;}
.y82{bottom:473.835000px;}
.y70{bottom:481.035000px;}
.y9c{bottom:483.735000px;}
.ye9{bottom:484.635000px;}
.yd9{bottom:484.995000px;}
.y57{bottom:485.355000px;}
.y21{bottom:494.895000px;}
.y81{bottom:497.595000px;}
.y6f{bottom:504.975000px;}
.y9b{bottom:507.495000px;}
.yd8{bottom:508.755000px;}
.y56{bottom:509.115000px;}
.y20{bottom:518.655000px;}
.y80{bottom:521.355000px;}
.y6e{bottom:528.735000px;}
.y9a{bottom:531.435000px;}
.yd7{bottom:532.515000px;}
.y55{bottom:532.875000px;}
.y1f{bottom:542.415000px;}
.y7f{bottom:545.115000px;}
.y6d{bottom:552.495000px;}
.y99{bottom:555.195000px;}
.yd6{bottom:556.455000px;}
.y54{bottom:556.815000px;}
.y1e{bottom:566.355000px;}
.y7e{bottom:569.055000px;}
.y6c{bottom:576.255000px;}
.y98{bottom:578.595000px;}
.yd5{bottom:580.215000px;}
.y53{bottom:580.575000px;}
.y1d{bottom:590.115000px;}
.y7d{bottom:592.815000px;}
.y97{bottom:598.575000px;}
.y6b{bottom:600.195000px;}
.yd4{bottom:603.975000px;}
.y52{bottom:604.335000px;}
.y1c{bottom:613.875000px;}
.y7c{bottom:616.575000px;}
.y6a{bottom:623.955000px;}
.yd3{bottom:627.735000px;}
.y51{bottom:628.095000px;}
.y1b{bottom:637.635000px;}
.y7b{bottom:639.975000px;}
.ycc{bottom:640.335000px;}
.y69{bottom:647.715000px;}
.yd2{bottom:651.675000px;}
.y50{bottom:652.035000px;}
.y1a{bottom:661.425000px;}
.ycb{bottom:664.125000px;}
.y68{bottom:671.505000px;}
.yd1{bottom:675.105000px;}
.y4f{bottom:675.825000px;}
.y19{bottom:685.365000px;}
.yca{bottom:687.885000px;}
.yb3{bottom:690.765000px;}
.y67{bottom:695.445000px;}
.yd0{bottom:699.225000px;}
.y4e{bottom:699.585000px;}
.y18{bottom:709.125000px;}
.yc9{bottom:711.645000px;}
.yb2{bottom:714.525000px;}
.y66{bottom:719.205000px;}
.y4d{bottom:723.345000px;}
.y17{bottom:732.885000px;}
.yc8{bottom:735.405000px;}
.yb1{bottom:738.285000px;}
.y65{bottom:742.965000px;}
.y4c{bottom:747.285000px;}
.y16{bottom:756.645000px;}
.yc7{bottom:759.345000px;}
.yb0{bottom:762.225000px;}
.y64{bottom:766.725000px;}
.y4b{bottom:770.685000px;}
.y15{bottom:780.585000px;}
.yc6{bottom:783.105000px;}
.yaf{bottom:785.625000px;}
.y33{bottom:790.665000px;}
.y14{bottom:804.345000px;}
.yc5{bottom:806.865000px;}
.yae{bottom:809.385000px;}
.y63{bottom:814.425000px;}
.y13{bottom:828.105000px;}
.yc4{bottom:830.625000px;}
.yad{bottom:833.685000px;}
.y62{bottom:838.185000px;}
.y12{bottom:851.865000px;}
.yc3{bottom:854.565000px;}
.y61{bottom:861.945000px;}
.y11{bottom:875.805000px;}
.yc2{bottom:878.325000px;}
.y60{bottom:885.525000px;}
.y10{bottom:899.565000px;}
.yc1{bottom:901.770000px;}
.y5d{bottom:903.030000px;}
.yf{bottom:923.370000px;}
.yc0{bottom:926.070000px;}
.ye{bottom:947.130000px;}
.yd{bottom:971.070000px;}
.yec{bottom:994.470000px;}
.yc{bottom:994.830000px;}
.yb{bottom:1018.590000px;}
.ya{bottom:1041.990000px;}
.y96{bottom:1042.350000px;}
.y9{bottom:1065.930000px;}
.y95{bottom:1066.290000px;}
.y8{bottom:1089.690000px;}
.y94{bottom:1090.050000px;}
.y7{bottom:1113.450000px;}
.y93{bottom:1113.810000px;}
.ycf{bottom:1137.210000px;}
.y6{bottom:1137.570000px;}
.yce{bottom:1161.180000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1167.120000px;}
.y3{bottom:1184.580000px;}
.y2{bottom:1198.980000px;}
.h10{height:35.217231px;}
.hd{height:35.415476px;}
.h1c{height:37.861349px;}
.h19{height:37.941489px;}
.hc{height:46.465474px;}
.h4{height:48.616875px;}
.h15{height:48.865238px;}
.he{height:49.270969px;}
.h18{height:49.779630px;}
.h12{height:50.603963px;}
.h16{height:51.260044px;}
.hf{height:51.526406px;}
.h17{height:52.132925px;}
.h1b{height:52.788408px;}
.h13{height:53.776151px;}
.h11{height:58.618533px;}
.h9{height:63.457031px;}
.h1d{height:70.628906px;}
.h7{height:70.664062px;}
.h5{height:71.324297px;}
.h8{height:72.562500px;}
.ha{height:74.704922px;}
.h14{height:79.486843px;}
.h2{height:84.898125px;}
.h6{height:86.255508px;}
.h1a{height:110.370218px;}
.h1e{height:273.990000px;}
.h1f{height:276.195000px;}
.hb{height:387.154865px;}
.h3{height:1262.879970px;}
.h1{height:1263.000000px;}
.h0{height:1263.059970px;}
.wb{width:178.590000px;}
.w8{width:197.850000px;}
.w9{width:247.350000px;}
.wa{width:265.215000px;}
.wc{width:272.010000px;}
.w7{width:281.595000px;}
.w6{width:417.231014px;}
.w5{width:892.980000px;}
.w3{width:892.980015px;}
.w4{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.059957px;}
.w0{width:894.059970px;}
.x0{left:0.000000px;}
.x1c{left:1.059245px;}
.x1e{left:23.856727px;}
.x1a{left:35.917655px;}
.x18{left:42.128133px;}
.x19{left:44.318627px;}
.x1f{left:56.957752px;}
.x22{left:77.400000px;}
.x1b{left:83.413918px;}
.xa{left:84.959987px;}
.x2f{left:92.340000px;}
.x24{left:102.060000px;}
.x9{left:106.235987px;}
.x13{left:114.347928px;}
.x2d{left:124.950000px;}
.x26{left:126.405000px;}
.x3a{left:127.475987px;}
.x17{left:129.903473px;}
.x31{left:138.780000px;}
.x21{left:144.575987px;}
.x32{left:149.435987px;}
.x34{left:150.869987px;}
.x2a{left:154.649987px;}
.x5{left:170.129987px;}
.xd{left:181.109987px;}
.x2{left:191.729987px;}
.x7{left:196.769987px;}
.x16{left:219.137512px;}
.x12{left:223.451975px;}
.x2c{left:244.109987px;}
.xe{left:246.629987px;}
.x3{left:257.429987px;}
.x35{left:273.629987px;}
.x11{left:295.212931px;}
.x15{left:305.778961px;}
.x2b{left:340.274987px;}
.x2e{left:343.335000px;}
.x8{left:352.154987px;}
.x23{left:359.715000px;}
.x14{left:362.473541px;}
.x36{left:367.274987px;}
.x1d{left:389.211467px;}
.xf{left:397.334987px;}
.x10{left:433.365000px;}
.x1{left:456.224987px;}
.x4{left:467.894987px;}
.xb{left:494.384987px;}
.x27{left:500.864987px;}
.xc{left:515.624987px;}
.x30{left:522.645000px;}
.x39{left:530.384987px;}
.x6{left:547.484987px;}
.x25{left:558.285000px;}
.x28{left:570.344987px;}
.x38{left:683.069987px;}
.x33{left:712.769987px;}
.x29{left:737.249987px;}
.x37{left:813.749987px;}
.x20{left:850.649987px;}
@media print{
.v4{vertical-align:-21.369332pt;}
.v7{vertical-align:-14.246221pt;}
.v8{vertical-align:-2.818771pt;}
.v6{vertical-align:-1.409386pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.485569pt;}
.v2{vertical-align:4.407187pt;}
.v1{vertical-align:24.320000pt;}
.v3{vertical-align:25.673671pt;}
.v9{vertical-align:51.084511pt;}
.ls15{letter-spacing:-2.613077pt;}
.ls9{letter-spacing:-0.425067pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.204267pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.075733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000003pt;}
.ls14{letter-spacing:0.046853pt;}
.ls6{letter-spacing:0.052480pt;}
.ls29{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.166400pt;}
.ls24{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls18{letter-spacing:1.451286pt;}
.ls16{letter-spacing:1.500805pt;}
.ls17{letter-spacing:1.546515pt;}
.ls30{letter-spacing:2.560000pt;}
.ls5{letter-spacing:5.120000pt;}
.ls2d{letter-spacing:6.400000pt;}
.ls1a{letter-spacing:7.680000pt;}
.ls1c{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.520000pt;}
.ls28{letter-spacing:12.160000pt;}
.ls22{letter-spacing:20.480000pt;}
.ls2c{letter-spacing:33.920000pt;}
.ls4{letter-spacing:34.560000pt;}
.ls20{letter-spacing:35.818667pt;}
.ls19{letter-spacing:36.480000pt;}
.ls21{letter-spacing:39.658667pt;}
.ls1f{letter-spacing:40.960000pt;}
.ls2f{letter-spacing:41.600000pt;}
.ls2e{letter-spacing:42.218667pt;}
.ls25{letter-spacing:42.880000pt;}
.ls26{letter-spacing:63.360000pt;}
.ls1b{letter-spacing:70.400000pt;}
.ls2a{letter-spacing:99.840000pt;}
.ls1e{letter-spacing:159.360000pt;}
.ls23{letter-spacing:170.218667pt;}
.lsf{letter-spacing:239.302231pt;}
.lse{letter-spacing:244.570286pt;}
.ls11{letter-spacing:253.483697pt;}
.ls10{letter-spacing:262.892298pt;}
.ls12{letter-spacing:264.263592pt;}
.ls13{letter-spacing:309.638187pt;}
.ls27{letter-spacing:665.098667pt;}
.ws4{word-spacing:-16.718613pt;}
.ws17{word-spacing:-16.256000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws16{word-spacing:-16.000003pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws15{word-spacing:-12.533658pt;}
.ws11{word-spacing:-11.481730pt;}
.wsb{word-spacing:-11.457923pt;}
.ws8{word-spacing:-11.040000pt;}
.ws2{word-spacing:-9.433600pt;}
.ws1{word-spacing:-9.357867pt;}
.ws3{word-spacing:-9.008533pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:234.933014pt;}
.wsa{word-spacing:236.293521pt;}
.wsc{word-spacing:244.635560pt;}
.wse{word-spacing:262.995663pt;}
.wsd{word-spacing:272.962654pt;}
.ws14{word-spacing:274.266419pt;}
.ws13{word-spacing:286.931843pt;}
.ws12{word-spacing:287.073734pt;}
.ws10{word-spacing:552.811215pt;}
.wsf{word-spacing:565.659234pt;}
._2a{margin-left:-44.392566pt;}
._2b{margin-left:-3.829605pt;}
._28{margin-left:-2.933228pt;}
._5{margin-left:-1.920000pt;}
._0{margin-left:-0.986240pt;}
._1{width:0.930987pt;}
._4{width:2.005333pt;}
._b{width:3.271680pt;}
._e{width:4.728320pt;}
._c{width:5.760000pt;}
._d{width:6.848000pt;}
._f{width:8.064000pt;}
._7{width:8.960000pt;}
._8{width:9.911253pt;}
._3{width:10.913920pt;}
._6{width:11.944533pt;}
._a{width:12.970667pt;}
._1d{width:14.010027pt;}
._3a{width:15.109973pt;}
._6a{width:16.000000pt;}
._3d{width:17.298242pt;}
._11{width:18.240000pt;}
._1b{width:19.776000pt;}
._29{width:20.870059pt;}
._47{width:22.173013pt;}
._4f{width:23.258240pt;}
._1f{width:24.448000pt;}
._3f{width:25.434240pt;}
._45{width:26.725760pt;}
._38{width:28.480000pt;}
._18{width:29.674667pt;}
._24{width:30.966827pt;}
._23{width:32.288213pt;}
._1c{width:33.210027pt;}
._9{width:34.880000pt;}
._1a{width:36.352000pt;}
._4b{width:37.597013pt;}
._10{width:38.528000pt;}
._2e{width:39.671253pt;}
._21{width:40.733013pt;}
._17{width:41.792000pt;}
._19{width:42.880000pt;}
._39{width:44.253013pt;}
._16{width:46.016000pt;}
._31{width:47.744000pt;}
._30{width:48.640000pt;}
._32{width:49.610667pt;}
._57{width:50.641493pt;}
._37{width:51.584000pt;}
._14{width:53.248000pt;}
._15{width:54.148693pt;}
._22{width:55.296000pt;}
._52{width:56.768000pt;}
._60{width:58.615253pt;}
._2c{width:59.633790pt;}
._69{width:60.904450pt;}
._42{width:62.592000pt;}
._1e{width:64.192000pt;}
._4c{width:65.472000pt;}
._3e{width:66.624000pt;}
._53{width:68.480000pt;}
._48{width:70.656000pt;}
._62{width:71.735253pt;}
._36{width:72.960000pt;}
._35{width:74.176000pt;}
._43{width:75.677013pt;}
._13{width:77.312000pt;}
._67{width:78.237013pt;}
._56{width:79.168000pt;}
._63{width:82.304000pt;}
._34{width:83.712000pt;}
._3b{width:86.528000pt;}
._2f{width:88.576000pt;}
._5a{width:89.600000pt;}
._20{width:92.032000pt;}
._55{width:93.098667pt;}
._49{width:95.936000pt;}
._3c{width:97.088000pt;}
._5b{width:98.944000pt;}
._5c{width:99.866240pt;}
._50{width:103.936000pt;}
._59{width:105.501013pt;}
._58{width:106.432000pt;}
._5d{width:108.672000pt;}
._5e{width:117.952000pt;}
._46{width:135.872000pt;}
._65{width:137.754240pt;}
._64{width:138.688000pt;}
._61{width:146.205013pt;}
._4d{width:159.488000pt;}
._68{width:164.826240pt;}
._44{width:166.208000pt;}
._41{width:170.112000pt;}
._40{width:171.072000pt;}
._51{width:175.232000pt;}
._4a{width:199.488000pt;}
._4e{width:210.752000pt;}
._12{width:241.280000pt;}
._66{width:260.122240pt;}
._2d{width:266.927695pt;}
._26{width:299.968000pt;}
._25{width:301.469013pt;}
._33{width:318.810240pt;}
._2{width:480.618667pt;}
._27{width:537.384645pt;}
._5f{width:743.786667pt;}
._54{width:1415.946667pt;}
.fs3{font-size:16.000000pt;}
.fs5{font-size:41.992070pt;}
.fs4{font-size:42.083489pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:44.989871pt;}
.fs6{font-size:45.085100pt;}
.fs7{font-size:45.831693pt;}
.fs8{font-size:45.926922pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y47{bottom:-80.711127pt;}
.y46{bottom:-67.940000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:3.926472pt;}
.y5f{bottom:6.240000pt;}
.yb6{bottom:6.400000pt;}
.yb7{bottom:7.360000pt;}
.yb5{bottom:8.480000pt;}
.y5e{bottom:12.160000pt;}
.y49{bottom:16.697409pt;}
.y48{bottom:29.467585pt;}
.y4{bottom:55.520000pt;}
.y34{bottom:61.874881pt;}
.y37{bottom:63.960390pt;}
.y36{bottom:64.311784pt;}
.y35{bottom:65.342159pt;}
.y38{bottom:68.178072pt;}
.y32{bottom:80.160000pt;}
.y92{bottom:82.560000pt;}
.yac{bottom:91.360000pt;}
.ycd{bottom:92.480000pt;}
.y31{bottom:101.280000pt;}
.y91{bottom:103.680000pt;}
.y43{bottom:107.379939pt;}
.yab{bottom:112.640000pt;}
.ye8{bottom:113.600000pt;}
.y30{bottom:122.400000pt;}
.y90{bottom:124.800000pt;}
.yaa{bottom:133.760000pt;}
.ye7{bottom:134.880000pt;}
.y2f{bottom:143.520000pt;}
.y8f{bottom:146.080000pt;}
.ya9{bottom:154.880000pt;}
.ye6{bottom:156.026667pt;}
.y42{bottom:162.631660pt;}
.y2e{bottom:164.826667pt;}
.y8e{bottom:167.226667pt;}
.y44{bottom:174.611437pt;}
.ya8{bottom:176.026667pt;}
.ye5{bottom:177.146667pt;}
.y2d{bottom:185.946667pt;}
.y8d{bottom:188.346667pt;}
.ya7{bottom:197.306667pt;}
.ybf{bottom:198.106667pt;}
.ye4{bottom:198.266667pt;}
.y3d{bottom:204.132349pt;}
.y3f{bottom:206.570205pt;}
.y2c{bottom:207.066667pt;}
.y41{bottom:207.370127pt;}
.y8c{bottom:209.466667pt;}
.y7a{bottom:216.026667pt;}
.ya6{bottom:218.426667pt;}
.ybe{bottom:219.226667pt;}
.ye3{bottom:219.546667pt;}
.y2b{bottom:228.186667pt;}
.y8b{bottom:230.746667pt;}
.y79{bottom:237.146667pt;}
.ya5{bottom:239.546667pt;}
.ybd{bottom:240.346667pt;}
.ye2{bottom:240.666667pt;}
.y2a{bottom:249.466667pt;}
.y8a{bottom:251.866667pt;}
.y78{bottom:258.426667pt;}
.ya4{bottom:260.666667pt;}
.ybc{bottom:261.466667pt;}
.ye1{bottom:261.786667pt;}
.y29{bottom:270.586667pt;}
.y89{bottom:272.986667pt;}
.y77{bottom:279.546667pt;}
.ya3{bottom:281.946667pt;}
.ybb{bottom:282.746667pt;}
.ye0{bottom:282.906667pt;}
.y39{bottom:284.876807pt;}
.y3a{bottom:286.171918pt;}
.y3b{bottom:286.590924pt;}
.y3c{bottom:289.209715pt;}
.y28{bottom:291.706667pt;}
.y88{bottom:294.106667pt;}
.y76{bottom:300.666667pt;}
.ya2{bottom:303.066667pt;}
.yba{bottom:303.866667pt;}
.ydf{bottom:304.186667pt;}
.y27{bottom:312.826667pt;}
.y87{bottom:315.386667pt;}
.y45{bottom:321.597013pt;}
.y75{bottom:321.786667pt;}
.ya1{bottom:324.186667pt;}
.yb9{bottom:324.986667pt;}
.yde{bottom:325.306667pt;}
.y5c{bottom:325.626667pt;}
.y3e{bottom:331.396051pt;}
.y26{bottom:334.106667pt;}
.y40{bottom:335.538502pt;}
.y86{bottom:336.506667pt;}
.y74{bottom:342.906667pt;}
.ya0{bottom:345.306667pt;}
.yb8{bottom:345.786667pt;}
.ydd{bottom:346.426667pt;}
.y5b{bottom:346.746667pt;}
.y25{bottom:355.226667pt;}
.y85{bottom:357.626667pt;}
.yb4{bottom:361.306667pt;}
.y73{bottom:364.186667pt;}
.y9f{bottom:366.426667pt;}
.ydc{bottom:367.546667pt;}
.y5a{bottom:367.866667pt;}
.y24{bottom:376.386667pt;}
.y84{bottom:378.786667pt;}
.y72{bottom:385.346667pt;}
.y9e{bottom:387.746667pt;}
.yeb{bottom:388.546667pt;}
.ydb{bottom:388.866667pt;}
.y59{bottom:389.026667pt;}
.y23{bottom:397.506667pt;}
.y83{bottom:400.066667pt;}
.y71{bottom:406.466667pt;}
.y9d{bottom:408.866667pt;}
.yea{bottom:409.666667pt;}
.yda{bottom:409.986667pt;}
.y58{bottom:410.306667pt;}
.y22{bottom:418.786667pt;}
.y82{bottom:421.186667pt;}
.y70{bottom:427.586667pt;}
.y9c{bottom:429.986667pt;}
.ye9{bottom:430.786667pt;}
.yd9{bottom:431.106667pt;}
.y57{bottom:431.426667pt;}
.y21{bottom:439.906667pt;}
.y81{bottom:442.306667pt;}
.y6f{bottom:448.866667pt;}
.y9b{bottom:451.106667pt;}
.yd8{bottom:452.226667pt;}
.y56{bottom:452.546667pt;}
.y20{bottom:461.026667pt;}
.y80{bottom:463.426667pt;}
.y6e{bottom:469.986667pt;}
.y9a{bottom:472.386667pt;}
.yd7{bottom:473.346667pt;}
.y55{bottom:473.666667pt;}
.y1f{bottom:482.146667pt;}
.y7f{bottom:484.546667pt;}
.y6d{bottom:491.106667pt;}
.y99{bottom:493.506667pt;}
.yd6{bottom:494.626667pt;}
.y54{bottom:494.946667pt;}
.y1e{bottom:503.426667pt;}
.y7e{bottom:505.826667pt;}
.y6c{bottom:512.226667pt;}
.y98{bottom:514.306667pt;}
.yd5{bottom:515.746667pt;}
.y53{bottom:516.066667pt;}
.y1d{bottom:524.546667pt;}
.y7d{bottom:526.946667pt;}
.y97{bottom:532.066667pt;}
.y6b{bottom:533.506667pt;}
.yd4{bottom:536.866667pt;}
.y52{bottom:537.186667pt;}
.y1c{bottom:545.666667pt;}
.y7c{bottom:548.066667pt;}
.y6a{bottom:554.626667pt;}
.yd3{bottom:557.986667pt;}
.y51{bottom:558.306667pt;}
.y1b{bottom:566.786667pt;}
.y7b{bottom:568.866667pt;}
.ycc{bottom:569.186667pt;}
.y69{bottom:575.746667pt;}
.yd2{bottom:579.266667pt;}
.y50{bottom:579.586667pt;}
.y1a{bottom:587.933333pt;}
.ycb{bottom:590.333333pt;}
.y68{bottom:596.893333pt;}
.yd1{bottom:600.093333pt;}
.y4f{bottom:600.733333pt;}
.y19{bottom:609.213333pt;}
.yca{bottom:611.453333pt;}
.yb3{bottom:614.013333pt;}
.y67{bottom:618.173333pt;}
.yd0{bottom:621.533333pt;}
.y4e{bottom:621.853333pt;}
.y18{bottom:630.333333pt;}
.yc9{bottom:632.573333pt;}
.yb2{bottom:635.133333pt;}
.y66{bottom:639.293333pt;}
.y4d{bottom:642.973333pt;}
.y17{bottom:651.453333pt;}
.yc8{bottom:653.693333pt;}
.yb1{bottom:656.253333pt;}
.y65{bottom:660.413333pt;}
.y4c{bottom:664.253333pt;}
.y16{bottom:672.573333pt;}
.yc7{bottom:674.973333pt;}
.yb0{bottom:677.533333pt;}
.y64{bottom:681.533333pt;}
.y4b{bottom:685.053333pt;}
.y15{bottom:693.853333pt;}
.yc6{bottom:696.093333pt;}
.yaf{bottom:698.333333pt;}
.y33{bottom:702.813333pt;}
.y14{bottom:714.973333pt;}
.yc5{bottom:717.213333pt;}
.yae{bottom:719.453333pt;}
.y63{bottom:723.933333pt;}
.y13{bottom:736.093333pt;}
.yc4{bottom:738.333333pt;}
.yad{bottom:741.053333pt;}
.y62{bottom:745.053333pt;}
.y12{bottom:757.213333pt;}
.yc3{bottom:759.613333pt;}
.y61{bottom:766.173333pt;}
.y11{bottom:778.493333pt;}
.yc2{bottom:780.733333pt;}
.y60{bottom:787.133333pt;}
.y10{bottom:799.613333pt;}
.yc1{bottom:801.573333pt;}
.y5d{bottom:802.693333pt;}
.yf{bottom:820.773333pt;}
.yc0{bottom:823.173333pt;}
.ye{bottom:841.893333pt;}
.yd{bottom:863.173333pt;}
.yec{bottom:883.973333pt;}
.yc{bottom:884.293333pt;}
.yb{bottom:905.413333pt;}
.ya{bottom:926.213333pt;}
.y96{bottom:926.533333pt;}
.y9{bottom:947.493333pt;}
.y95{bottom:947.813333pt;}
.y8{bottom:968.613333pt;}
.y94{bottom:968.933333pt;}
.y7{bottom:989.733333pt;}
.y93{bottom:990.053333pt;}
.ycf{bottom:1010.853333pt;}
.y6{bottom:1011.173333pt;}
.yce{bottom:1032.160000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1037.440000pt;}
.y3{bottom:1052.960000pt;}
.y2{bottom:1065.760000pt;}
.h10{height:31.304205pt;}
.hd{height:31.480423pt;}
.h1c{height:33.654532pt;}
.h19{height:33.725768pt;}
.hc{height:41.302643pt;}
.h4{height:43.215000pt;}
.h15{height:43.435767pt;}
.he{height:43.796417pt;}
.h18{height:44.248560pt;}
.h12{height:44.981300pt;}
.h16{height:45.564483pt;}
.hf{height:45.801250pt;}
.h17{height:46.340378pt;}
.h1b{height:46.923029pt;}
.h13{height:47.801024pt;}
.h11{height:52.105363pt;}
.h9{height:56.406250pt;}
.h1d{height:62.781250pt;}
.h7{height:62.812500pt;}
.h5{height:63.399375pt;}
.h8{height:64.500000pt;}
.ha{height:66.404375pt;}
.h14{height:70.654971pt;}
.h2{height:75.465000pt;}
.h6{height:76.671562pt;}
.h1a{height:98.106861pt;}
.h1e{height:243.546667pt;}
.h1f{height:245.506667pt;}
.hb{height:344.137658pt;}
.h3{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719973pt;}
.wb{width:158.746667pt;}
.w8{width:175.866667pt;}
.w9{width:219.866667pt;}
.wa{width:235.746667pt;}
.wc{width:241.786667pt;}
.w7{width:250.306667pt;}
.w6{width:370.872013pt;}
.w5{width:793.760000pt;}
.w3{width:793.760013pt;}
.w4{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719961pt;}
.w0{width:794.719973pt;}
.x0{left:0.000000pt;}
.x1c{left:0.941551pt;}
.x1e{left:21.205979pt;}
.x1a{left:31.926804pt;}
.x18{left:37.447229pt;}
.x19{left:39.394335pt;}
.x1f{left:50.629113pt;}
.x22{left:68.800000pt;}
.x1b{left:74.145705pt;}
.xa{left:75.519988pt;}
.x2f{left:82.080000pt;}
.x24{left:90.720000pt;}
.x9{left:94.431988pt;}
.x13{left:101.642603pt;}
.x2d{left:111.066667pt;}
.x26{left:112.360000pt;}
.x3a{left:113.311988pt;}
.x17{left:115.469754pt;}
.x31{left:123.360000pt;}
.x21{left:128.511988pt;}
.x32{left:132.831988pt;}
.x34{left:134.106655pt;}
.x2a{left:137.466655pt;}
.x5{left:151.226655pt;}
.xd{left:160.986655pt;}
.x2{left:170.426655pt;}
.x7{left:174.906655pt;}
.x16{left:194.788900pt;}
.x12{left:198.623978pt;}
.x2c{left:216.986655pt;}
.xe{left:219.226655pt;}
.x3{left:228.826655pt;}
.x35{left:243.226655pt;}
.x11{left:262.411494pt;}
.x15{left:271.803521pt;}
.x2b{left:302.466655pt;}
.x2e{left:305.186667pt;}
.x8{left:313.026655pt;}
.x23{left:319.746667pt;}
.x14{left:322.198703pt;}
.x36{left:326.466655pt;}
.x1d{left:345.965749pt;}
.xf{left:353.186655pt;}
.x10{left:385.213333pt;}
.x1{left:405.533321pt;}
.x4{left:415.906655pt;}
.xb{left:439.453322pt;}
.x27{left:445.213322pt;}
.xc{left:458.333322pt;}
.x30{left:464.573333pt;}
.x39{left:471.453322pt;}
.x6{left:486.653322pt;}
.x25{left:496.253333pt;}
.x28{left:506.973322pt;}
.x38{left:607.173322pt;}
.x33{left:633.573322pt;}
.x29{left:655.333322pt;}
.x37{left:723.333322pt;}
.x20{left:756.133322pt;}
}




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