
    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_d82ac824090b90c8e66d12b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925000;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_d83faffe69c3f80d82bbb89c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966000;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_0a142572c561770fad726776.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.027832;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_c3e7ef372b976bab8b396cce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_4de2dda26d95b85b58f12099.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.988281;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_cf69d80784d0e31660ca3bca.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_da477c6fa3813142918b26dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944000;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_3cb7f818fae5c36b182da5b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973000;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_10172aec9125ea7fbc7674c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.712000;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_ddb177b199c38bf89b4ebf08.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936035;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);}
.v2{vertical-align:-17.982600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.110419px;}
.v5{vertical-align:15.966600px;}
.v6{vertical-align:17.983800px;}
.v1{vertical-align:21.975600px;}
.v4{vertical-align:45.960979px;}
.v7{vertical-align:125.719200px;}
.v8{vertical-align:185.033400px;}
.ls5{letter-spacing:-1.140000px;}
.ls6{letter-spacing:-0.912000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005388px;}
.ls3{letter-spacing:0.008172px;}
.ls2{letter-spacing:0.008772px;}
.ls4{letter-spacing:68.376000px;}
.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;}
}
.ws0{word-spacing:-64.216202px;}
.ws12{word-spacing:-49.680000px;}
.ws94{word-spacing:-46.368000px;}
.ws71{word-spacing:-28.870244px;}
.ws2d{word-spacing:-18.282000px;}
.ws16{word-spacing:-14.958000px;}
.ws2e{word-spacing:-10.658406px;}
.ws2c{word-spacing:-8.720514px;}
.ws22{word-spacing:-3.498000px;}
.ws25{word-spacing:-3.366000px;}
.ws47{word-spacing:-3.300000px;}
.wse{word-spacing:-3.234000px;}
.ws54{word-spacing:-3.168000px;}
.ws9{word-spacing:-3.036000px;}
.ws62{word-spacing:-2.970000px;}
.ws5{word-spacing:-2.838000px;}
.ws86{word-spacing:-2.772000px;}
.ws28{word-spacing:-2.574000px;}
.ws64{word-spacing:-2.508000px;}
.ws82{word-spacing:-2.442000px;}
.ws5b{word-spacing:-2.376000px;}
.ws6e{word-spacing:-2.046000px;}
.ws5d{word-spacing:-1.980000px;}
.ws46{word-spacing:-1.848000px;}
.ws59{word-spacing:-1.584000px;}
.ws52{word-spacing:-1.518000px;}
.ws50{word-spacing:-1.452000px;}
.wsb{word-spacing:-1.386000px;}
.ws49{word-spacing:-1.320000px;}
.ws4f{word-spacing:-1.254000px;}
.ws10{word-spacing:-1.188000px;}
.ws4e{word-spacing:-1.056000px;}
.ws5e{word-spacing:-0.990000px;}
.ws24{word-spacing:-0.858000px;}
.ws21{word-spacing:-0.792000px;}
.ws6a{word-spacing:-0.726000px;}
.ws1e{word-spacing:-0.660000px;}
.ws70{word-spacing:-0.594000px;}
.ws5f{word-spacing:-0.528000px;}
.ws19{word-spacing:-0.264000px;}
.ws45{word-spacing:-0.198000px;}
.ws63{word-spacing:-0.132000px;}
.ws1{word-spacing:0.000000px;}
.ws51{word-spacing:0.528000px;}
.ws6b{word-spacing:0.594000px;}
.ws76{word-spacing:0.726000px;}
.ws8f{word-spacing:0.858000px;}
.ws7b{word-spacing:0.912000px;}
.ws27{word-spacing:0.924000px;}
.wsf{word-spacing:0.990000px;}
.ws30{word-spacing:1.056000px;}
.ws20{word-spacing:1.122000px;}
.ws43{word-spacing:1.140000px;}
.ws7f{word-spacing:1.254000px;}
.ws74{word-spacing:1.320000px;}
.ws61{word-spacing:1.386000px;}
.wsa{word-spacing:1.452000px;}
.ws1c{word-spacing:1.518000px;}
.ws29{word-spacing:1.728000px;}
.ws92{word-spacing:1.782000px;}
.ws23{word-spacing:1.914000px;}
.ws75{word-spacing:2.112000px;}
.ws3d{word-spacing:2.244000px;}
.ws3b{word-spacing:2.310000px;}
.ws6c{word-spacing:2.376000px;}
.ws1d{word-spacing:2.442000px;}
.ws7a{word-spacing:2.508000px;}
.ws44{word-spacing:2.592000px;}
.ws38{word-spacing:2.838000px;}
.ws8e{word-spacing:3.432000px;}
.ws18{word-spacing:3.498000px;}
.ws58{word-spacing:3.630000px;}
.ws77{word-spacing:3.696000px;}
.ws36{word-spacing:3.762000px;}
.ws11{word-spacing:3.828000px;}
.ws79{word-spacing:3.894000px;}
.ws6d{word-spacing:3.960000px;}
.ws3c{word-spacing:4.026000px;}
.ws7e{word-spacing:4.092000px;}
.ws55{word-spacing:4.290000px;}
.ws90{word-spacing:4.554000px;}
.ws41{word-spacing:4.620000px;}
.ws66{word-spacing:4.752000px;}
.ws3f{word-spacing:4.818000px;}
.ws3a{word-spacing:4.884000px;}
.ws39{word-spacing:4.950000px;}
.ws8a{word-spacing:5.016000px;}
.ws4d{word-spacing:5.214000px;}
.ws4c{word-spacing:5.280000px;}
.ws5c{word-spacing:5.400000px;}
.ws91{word-spacing:5.610000px;}
.ws2a{word-spacing:5.670000px;}
.ws8c{word-spacing:5.676000px;}
.ws34{word-spacing:5.808000px;}
.ws33{word-spacing:5.874000px;}
.ws17{word-spacing:6.138000px;}
.wsc{word-spacing:6.270000px;}
.wsd{word-spacing:6.402000px;}
.ws15{word-spacing:6.575342px;}
.ws1f{word-spacing:6.930000px;}
.ws4b{word-spacing:7.128000px;}
.ws5a{word-spacing:7.392000px;}
.ws7c{word-spacing:7.458000px;}
.ws8d{word-spacing:7.524000px;}
.ws2f{word-spacing:7.590000px;}
.ws2{word-spacing:7.656000px;}
.ws53{word-spacing:7.788000px;}
.ws93{word-spacing:8.052000px;}
.ws1a{word-spacing:8.250000px;}
.ws8{word-spacing:8.514000px;}
.ws65{word-spacing:8.646000px;}
.ws81{word-spacing:8.712000px;}
.ws6{word-spacing:8.910000px;}
.ws6f{word-spacing:8.976000px;}
.ws2b{word-spacing:9.072000px;}
.ws7d{word-spacing:9.108000px;}
.ws48{word-spacing:9.240000px;}
.ws32{word-spacing:9.306000px;}
.ws40{word-spacing:9.438000px;}
.ws1b{word-spacing:9.966000px;}
.ws68{word-spacing:10.032000px;}
.ws85{word-spacing:10.164000px;}
.ws84{word-spacing:10.296000px;}
.ws69{word-spacing:10.560000px;}
.ws8b{word-spacing:10.626000px;}
.ws60{word-spacing:10.956000px;}
.ws78{word-spacing:11.154000px;}
.ws67{word-spacing:11.484000px;}
.ws83{word-spacing:11.814000px;}
.ws4{word-spacing:11.946000px;}
.ws31{word-spacing:12.408000px;}
.ws72{word-spacing:12.420000px;}
.ws3{word-spacing:12.804000px;}
.ws80{word-spacing:13.068000px;}
.ws89{word-spacing:13.398000px;}
.ws88{word-spacing:14.520000px;}
.ws87{word-spacing:14.718000px;}
.ws73{word-spacing:15.114000px;}
.ws3e{word-spacing:15.444000px;}
.ws26{word-spacing:15.576000px;}
.ws4a{word-spacing:17.820000px;}
.ws57{word-spacing:19.272000px;}
.ws56{word-spacing:19.470000px;}
.ws7{word-spacing:22.572000px;}
.ws35{word-spacing:38.544000px;}
.ws37{word-spacing:40.062000px;}
.ws42{word-spacing:49.896000px;}
.ws13{word-spacing:2452.337045px;}
.ws14{word-spacing:2501.486069px;}
._15{margin-left:-2337.171613px;}
._13{margin-left:-2315.979313px;}
._11{margin-left:-2269.017176px;}
._0{margin-left:-12.098705px;}
._b{margin-left:-8.640000px;}
._19{margin-left:-7.224000px;}
._1{margin-left:-4.188013px;}
._2{margin-left:-2.326674px;}
._4{margin-left:-1.098030px;}
._3{width:1.628672px;}
._5{width:10.520400px;}
._1b{width:16.566000px;}
._1a{width:53.130000px;}
._17{width:68.376000px;}
._d{width:142.000950px;}
._10{width:271.597234px;}
._f{width:293.859528px;}
._16{width:525.653809px;}
._14{width:551.423646px;}
._12{width:574.904714px;}
._8{width:855.657941px;}
._7{width:1778.862581px;}
._c{width:1901.240904px;}
._18{width:1902.559104px;}
._e{width:1904.205504px;}
._a{width:1906.537704px;}
._9{width:1918.332504px;}
._6{width:2565.246965px;}
.fc2{color:rgb(65,64,66);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:31.482000px;}
.fs2{font-size:38.478000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs7{font-size:66.417600px;}
.fsd{font-size:84.769200px;}
.fsb{font-size:103.849800px;}
.fs8{font-size:114.000000px;}
.fsc{font-size:121.855200px;}
.fse{font-size:168.000000px;}
.fsa{font-size:178.129800px;}
.fs6{font-size:180.000000px;}
.fs0{font-size:232.667400px;}
.fs9{font-size:239.370000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:78.556350px;}
.yc5{bottom:80.567550px;}
.y114{bottom:82.993650px;}
.y4d{bottom:87.815700px;}
.y23{bottom:91.763700px;}
.y113{bottom:99.193350px;}
.y5e{bottom:99.252000px;}
.yc4{bottom:101.263200px;}
.y9e{bottom:102.856650px;}
.y22{bottom:107.963400px;}
.y4c{bottom:108.511200px;}
.y5d{bottom:115.451700px;}
.y77{bottom:115.453200px;}
.y4b{bottom:120.215100px;}
.y9d{bottom:123.552300px;}
.y76{bottom:127.156950px;}
.y5c{bottom:131.652900px;}
.y9c{bottom:135.257550px;}
.y4a{bottom:140.910600px;}
.y5b{bottom:147.852600px;}
.y49{bottom:152.615700px;}
.y9b{bottom:155.953200px;}
.y5a{bottom:159.556350px;}
.y75{bottom:164.052300px;}
.y9a{bottom:167.656950px;}
.y48{bottom:168.815700px;}
.y13a{bottom:177.393150px;}
.y59{bottom:180.252000px;}
.y99{bottom:188.352600px;}
.y47{bottom:189.511200px;}
.y74{bottom:191.957250px;}
.y58{bottom:196.451700px;}
.y139{bottom:197.193150px;}
.y46{bottom:201.215100px;}
.y57{bottom:212.652900px;}
.y138{bottom:216.993150px;}
.y45{bottom:221.910600px;}
.y137{bottom:236.793150px;}
.y136{bottom:256.593150px;}
.y135{bottom:276.393150px;}
.y1f{bottom:282.574650px;}
.y134{bottom:296.193150px;}
.y73{bottom:300.271050px;}
.yd7{bottom:300.660600px;}
.y1e{bottom:302.374650px;}
.y133{bottom:315.993150px;}
.y72{bottom:320.071050px;}
.y1d{bottom:322.174650px;}
.yd2{bottom:328.104450px;}
.y132{bottom:335.793150px;}
.y71{bottom:339.871050px;}
.yc0{bottom:341.554050px;}
.y1c{bottom:341.974650px;}
.y98{bottom:351.454650px;}
.y131{bottom:355.593150px;}
.y70{bottom:359.671050px;}
.ybf{bottom:361.354050px;}
.ye1{bottom:370.037100px;}
.y97{bottom:371.254650px;}
.y130{bottom:375.393150px;}
.y6f{bottom:379.471050px;}
.ybe{bottom:381.154050px;}
.y1b{bottom:381.574650px;}
.yd1{bottom:385.029750px;}
.y96{bottom:391.054350px;}
.y12f{bottom:395.193150px;}
.y6e{bottom:399.271350px;}
.ybd{bottom:400.954050px;}
.y1a{bottom:401.374650px;}
.y95{bottom:410.854350px;}
.y112{bottom:414.233250px;}
.y12e{bottom:414.993150px;}
.y6d{bottom:419.070900px;}
.ybc{bottom:420.754050px;}
.yd0{bottom:422.791950px;}
.y44{bottom:424.132950px;}
.ye0{bottom:424.235588px;}
.y94{bottom:430.654350px;}
.y111{bottom:434.032950px;}
.y12d{bottom:434.793150px;}
.y6c{bottom:438.870900px;}
.ybb{bottom:440.554050px;}
.y19{bottom:440.974650px;}
.y43{bottom:443.932950px;}
.y93{bottom:450.454350px;}
.y110{bottom:453.832950px;}
.y12c{bottom:454.593150px;}
.y6b{bottom:458.670900px;}
.yba{bottom:460.354050px;}
.y18{bottom:460.774650px;}
.y42{bottom:463.732950px;}
.y92{bottom:470.254350px;}
.yfa{bottom:473.185800px;}
.y10f{bottom:473.632950px;}
.y12b{bottom:474.393150px;}
.ydf{bottom:477.046800px;}
.y6a{bottom:478.470900px;}
.yb9{bottom:480.154050px;}
.y17{bottom:480.574650px;}
.y41{bottom:483.532950px;}
.y91{bottom:490.054350px;}
.yf9{bottom:492.985800px;}
.y10e{bottom:493.432950px;}
.y12a{bottom:494.193150px;}
.y69{bottom:498.270900px;}
.yb8{bottom:499.954050px;}
.y16{bottom:500.374650px;}
.y40{bottom:503.332950px;}
.y90{bottom:509.854350px;}
.yf8{bottom:512.785800px;}
.y10d{bottom:513.232950px;}
.y129{bottom:513.993150px;}
.y68{bottom:518.070900px;}
.yb7{bottom:519.754050px;}
.y15{bottom:520.174650px;}
.y3f{bottom:523.132950px;}
.y8f{bottom:529.654350px;}
.yde{bottom:531.249173px;}
.yf7{bottom:532.585800px;}
.y128{bottom:533.793150px;}
.y67{bottom:537.870900px;}
.yb6{bottom:539.554050px;}
.y14{bottom:539.974650px;}
.y3e{bottom:542.932950px;}
.y8e{bottom:549.454350px;}
.yf6{bottom:552.385800px;}
.y10c{bottom:552.832950px;}
.y127{bottom:553.593150px;}
.y66{bottom:557.670600px;}
.yb5{bottom:559.354050px;}
.y3d{bottom:562.732950px;}
.y8d{bottom:569.254200px;}
.yf5{bottom:572.185800px;}
.y10b{bottom:572.632950px;}
.y126{bottom:573.393150px;}
.y65{bottom:577.470600px;}
.yb4{bottom:579.154050px;}
.y13{bottom:579.574650px;}
.ydd{bottom:583.467000px;}
.y8c{bottom:589.054200px;}
.ycf{bottom:590.355450px;}
.yf4{bottom:591.985800px;}
.y10a{bottom:592.432950px;}
.y125{bottom:593.193150px;}
.y64{bottom:597.270600px;}
.yb3{bottom:598.954050px;}
.y12{bottom:599.374650px;}
.y3c{bottom:602.332950px;}
.y8b{bottom:608.854650px;}
.yce{bottom:610.155450px;}
.yf3{bottom:611.785800px;}
.y109{bottom:612.232950px;}
.y124{bottom:612.993150px;}
.y63{bottom:617.070900px;}
.yb2{bottom:618.754050px;}
.y11{bottom:619.174650px;}
.y3b{bottom:622.132950px;}
.y8a{bottom:628.654650px;}
.ycd{bottom:629.955450px;}
.yf2{bottom:631.585800px;}
.y108{bottom:632.032950px;}
.y123{bottom:632.793150px;}
.y62{bottom:636.870750px;}
.ydc{bottom:637.673089px;}
.yb1{bottom:638.554050px;}
.y10{bottom:638.974650px;}
.y3a{bottom:641.932950px;}
.y89{bottom:648.454650px;}
.ycc{bottom:649.755450px;}
.yf1{bottom:651.385800px;}
.y122{bottom:652.593150px;}
.y61{bottom:656.670750px;}
.yb0{bottom:658.354050px;}
.yf{bottom:658.774650px;}
.y39{bottom:661.732500px;}
.y88{bottom:668.254650px;}
.yf0{bottom:671.185800px;}
.y107{bottom:671.632950px;}
.y121{bottom:672.393150px;}
.y60{bottom:676.470750px;}
.yaf{bottom:678.154050px;}
.ye{bottom:678.574650px;}
.y38{bottom:681.532500px;}
.y87{bottom:688.054200px;}
.ycb{bottom:689.355450px;}
.yef{bottom:690.985800px;}
.y106{bottom:691.432950px;}
.ydb{bottom:691.861800px;}
.y120{bottom:692.193150px;}
.yae{bottom:697.954050px;}
.y2b{bottom:706.847254px;}
.y86{bottom:707.854200px;}
.yca{bottom:709.155450px;}
.yee{bottom:710.785800px;}
.y105{bottom:711.232950px;}
.y11f{bottom:711.993150px;}
.yad{bottom:717.754050px;}
.yd{bottom:718.174650px;}
.y37{bottom:721.132650px;}
.y56{bottom:724.933650px;}
.y85{bottom:727.654200px;}
.yc9{bottom:728.955450px;}
.yed{bottom:730.585800px;}
.y104{bottom:731.032950px;}
.y11e{bottom:731.793150px;}
.yac{bottom:737.554050px;}
.yc{bottom:737.974650px;}
.y36{bottom:740.932950px;}
.y55{bottom:744.733650px;}
.yda{bottom:746.057499px;}
.y84{bottom:747.454200px;}
.yc8{bottom:748.755450px;}
.yec{bottom:750.385800px;}
.y103{bottom:750.832950px;}
.y11d{bottom:751.593150px;}
.yab{bottom:757.354050px;}
.yb{bottom:757.774650px;}
.y5{bottom:760.102770px;}
.y35{bottom:760.732950px;}
.y2a{bottom:760.927784px;}
.y54{bottom:764.533650px;}
.y83{bottom:767.254200px;}
.yc7{bottom:768.555450px;}
.yeb{bottom:770.185800px;}
.y102{bottom:770.632950px;}
.y11c{bottom:771.393150px;}
.yaa{bottom:777.154050px;}
.ya{bottom:777.574650px;}
.y34{bottom:780.532950px;}
.y53{bottom:784.333650px;}
.y82{bottom:787.054200px;}
.yc6{bottom:788.355450px;}
.yea{bottom:789.985800px;}
.y101{bottom:790.432950px;}
.y11b{bottom:791.193150px;}
.yd9{bottom:796.283250px;}
.ya9{bottom:796.954050px;}
.y33{bottom:800.332950px;}
.y52{bottom:804.133650px;}
.y81{bottom:806.854200px;}
.ye9{bottom:809.785800px;}
.y100{bottom:810.232950px;}
.y11a{bottom:810.993150px;}
.y29{bottom:811.205908px;}
.ya8{bottom:816.754050px;}
.y9{bottom:817.174650px;}
.y32{bottom:820.132950px;}
.y51{bottom:823.933650px;}
.y80{bottom:826.654200px;}
.ye8{bottom:829.585800px;}
.y4{bottom:829.902990px;}
.y119{bottom:830.793150px;}
.y28{bottom:831.131188px;}
.ya7{bottom:836.554050px;}
.y8{bottom:836.974650px;}
.y31{bottom:839.932950px;}
.y7f{bottom:846.454200px;}
.yff{bottom:849.832950px;}
.y118{bottom:850.593150px;}
.yd8{bottom:852.947700px;}
.ya6{bottom:856.354050px;}
.y7{bottom:856.774650px;}
.y30{bottom:859.732800px;}
.y7e{bottom:866.254200px;}
.yc3{bottom:866.339400px;}
.yfe{bottom:869.632950px;}
.y117{bottom:870.393150px;}
.y2c{bottom:876.079298px;}
.ya5{bottom:876.154050px;}
.y6{bottom:876.574950px;}
.y2f{bottom:879.532800px;}
.y7d{bottom:886.054200px;}
.ye7{bottom:888.903300px;}
.yfd{bottom:889.432950px;}
.y116{bottom:890.193150px;}
.y50{bottom:890.895300px;}
.ya4{bottom:895.954050px;}
.y2e{bottom:899.332800px;}
.y3{bottom:899.703210px;}
.y7c{bottom:905.854650px;}
.ye6{bottom:908.703300px;}
.yfc{bottom:909.232950px;}
.y115{bottom:909.993150px;}
.ya3{bottom:915.754050px;}
.y27{bottom:919.483200px;}
.yc2{bottom:920.339400px;}
.y7b{bottom:925.654650px;}
.ye5{bottom:928.503300px;}
.ya2{bottom:935.554050px;}
.y4f{bottom:944.895300px;}
.y7a{bottom:945.454650px;}
.yd6{bottom:947.576850px;}
.ya1{bottom:955.354050px;}
.y79{bottom:965.254650px;}
.yd5{bottom:967.376850px;}
.ye4{bottom:968.103300px;}
.y2{bottom:969.503430px;}
.yc1{bottom:974.339400px;}
.ya0{bottom:975.154050px;}
.y2d{bottom:976.199700px;}
.yfb{bottom:977.313000px;}
.y26{bottom:978.555150px;}
.y78{bottom:985.054650px;}
.yd4{bottom:987.176850px;}
.ye3{bottom:987.903300px;}
.y9f{bottom:994.954050px;}
.y4e{bottom:998.895300px;}
.yd3{bottom:1006.976850px;}
.ye2{bottom:1007.703300px;}
.y1{bottom:1039.303650px;}
.y21{bottom:1117.174800px;}
.y25{bottom:1117.567350px;}
.y20{bottom:1135.174800px;}
.y24{bottom:1135.567350px;}
.h6{height:31.983220px;}
.he{height:31.983820px;}
.h10{height:31.989220px;}
.h5{height:44.760000px;}
.h4{height:49.500000px;}
.hf{height:49.965820px;}
.h3{height:51.498047px;}
.h9{height:54.450757px;}
.h8{height:60.561176px;}
.h2{height:61.069336px;}
.hc{height:61.069936px;}
.h11{height:61.070536px;}
.hd{height:61.071136px;}
.h15{height:78.436345px;}
.h14{height:95.080376px;}
.hb{height:96.450600px;}
.ha{height:100.411736px;}
.h16{height:129.696000px;}
.h13{height:131.944779px;}
.h7{height:138.960000px;}
.h1{height:179.619233px;}
.h12{height:261.957300px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:53.436000px;}
.x7{left:67.514700px;}
.x2{left:72.142050px;}
.xd{left:74.031750px;}
.x6{left:78.988800px;}
.x1{left:83.326950px;}
.x4{left:89.947200px;}
.x5{left:91.845750px;}
.x11{left:105.982800px;}
.x8{left:126.265200px;}
.xc{left:136.002000px;}
.x9{left:153.259200px;}
.xe{left:161.293950px;}
.xa{left:179.228100px;}
.x10{left:498.602216px;}
.xf{left:510.344250px;}
.xb{left:619.980450px;}
@media print{
.v2{vertical-align:-15.984533pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.431484pt;}
.v5{vertical-align:14.192533pt;}
.v6{vertical-align:15.985600pt;}
.v1{vertical-align:19.533867pt;}
.v4{vertical-align:40.854204pt;}
.v7{vertical-align:111.750400pt;}
.v8{vertical-align:164.474133pt;}
.ls5{letter-spacing:-1.013333pt;}
.ls6{letter-spacing:-0.810667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004789pt;}
.ls3{letter-spacing:0.007264pt;}
.ls2{letter-spacing:0.007797pt;}
.ls4{letter-spacing:60.778667pt;}
.ws0{word-spacing:-57.081069pt;}
.ws12{word-spacing:-44.160000pt;}
.ws94{word-spacing:-41.216000pt;}
.ws71{word-spacing:-25.662439pt;}
.ws2d{word-spacing:-16.250667pt;}
.ws16{word-spacing:-13.296000pt;}
.ws2e{word-spacing:-9.474139pt;}
.ws2c{word-spacing:-7.751568pt;}
.ws22{word-spacing:-3.109333pt;}
.ws25{word-spacing:-2.992000pt;}
.ws47{word-spacing:-2.933333pt;}
.wse{word-spacing:-2.874667pt;}
.ws54{word-spacing:-2.816000pt;}
.ws9{word-spacing:-2.698667pt;}
.ws62{word-spacing:-2.640000pt;}
.ws5{word-spacing:-2.522667pt;}
.ws86{word-spacing:-2.464000pt;}
.ws28{word-spacing:-2.288000pt;}
.ws64{word-spacing:-2.229333pt;}
.ws82{word-spacing:-2.170667pt;}
.ws5b{word-spacing:-2.112000pt;}
.ws6e{word-spacing:-1.818667pt;}
.ws5d{word-spacing:-1.760000pt;}
.ws46{word-spacing:-1.642667pt;}
.ws59{word-spacing:-1.408000pt;}
.ws52{word-spacing:-1.349333pt;}
.ws50{word-spacing:-1.290667pt;}
.wsb{word-spacing:-1.232000pt;}
.ws49{word-spacing:-1.173333pt;}
.ws4f{word-spacing:-1.114667pt;}
.ws10{word-spacing:-1.056000pt;}
.ws4e{word-spacing:-0.938667pt;}
.ws5e{word-spacing:-0.880000pt;}
.ws24{word-spacing:-0.762667pt;}
.ws21{word-spacing:-0.704000pt;}
.ws6a{word-spacing:-0.645333pt;}
.ws1e{word-spacing:-0.586667pt;}
.ws70{word-spacing:-0.528000pt;}
.ws5f{word-spacing:-0.469333pt;}
.ws19{word-spacing:-0.234667pt;}
.ws45{word-spacing:-0.176000pt;}
.ws63{word-spacing:-0.117333pt;}
.ws1{word-spacing:0.000000pt;}
.ws51{word-spacing:0.469333pt;}
.ws6b{word-spacing:0.528000pt;}
.ws76{word-spacing:0.645333pt;}
.ws8f{word-spacing:0.762667pt;}
.ws7b{word-spacing:0.810667pt;}
.ws27{word-spacing:0.821333pt;}
.wsf{word-spacing:0.880000pt;}
.ws30{word-spacing:0.938667pt;}
.ws20{word-spacing:0.997333pt;}
.ws43{word-spacing:1.013333pt;}
.ws7f{word-spacing:1.114667pt;}
.ws74{word-spacing:1.173333pt;}
.ws61{word-spacing:1.232000pt;}
.wsa{word-spacing:1.290667pt;}
.ws1c{word-spacing:1.349333pt;}
.ws29{word-spacing:1.536000pt;}
.ws92{word-spacing:1.584000pt;}
.ws23{word-spacing:1.701333pt;}
.ws75{word-spacing:1.877333pt;}
.ws3d{word-spacing:1.994667pt;}
.ws3b{word-spacing:2.053333pt;}
.ws6c{word-spacing:2.112000pt;}
.ws1d{word-spacing:2.170667pt;}
.ws7a{word-spacing:2.229333pt;}
.ws44{word-spacing:2.304000pt;}
.ws38{word-spacing:2.522667pt;}
.ws8e{word-spacing:3.050667pt;}
.ws18{word-spacing:3.109333pt;}
.ws58{word-spacing:3.226667pt;}
.ws77{word-spacing:3.285333pt;}
.ws36{word-spacing:3.344000pt;}
.ws11{word-spacing:3.402667pt;}
.ws79{word-spacing:3.461333pt;}
.ws6d{word-spacing:3.520000pt;}
.ws3c{word-spacing:3.578667pt;}
.ws7e{word-spacing:3.637333pt;}
.ws55{word-spacing:3.813333pt;}
.ws90{word-spacing:4.048000pt;}
.ws41{word-spacing:4.106667pt;}
.ws66{word-spacing:4.224000pt;}
.ws3f{word-spacing:4.282667pt;}
.ws3a{word-spacing:4.341333pt;}
.ws39{word-spacing:4.400000pt;}
.ws8a{word-spacing:4.458667pt;}
.ws4d{word-spacing:4.634667pt;}
.ws4c{word-spacing:4.693333pt;}
.ws5c{word-spacing:4.800000pt;}
.ws91{word-spacing:4.986667pt;}
.ws2a{word-spacing:5.040000pt;}
.ws8c{word-spacing:5.045333pt;}
.ws34{word-spacing:5.162667pt;}
.ws33{word-spacing:5.221333pt;}
.ws17{word-spacing:5.456000pt;}
.wsc{word-spacing:5.573333pt;}
.wsd{word-spacing:5.690667pt;}
.ws15{word-spacing:5.844749pt;}
.ws1f{word-spacing:6.160000pt;}
.ws4b{word-spacing:6.336000pt;}
.ws5a{word-spacing:6.570667pt;}
.ws7c{word-spacing:6.629333pt;}
.ws8d{word-spacing:6.688000pt;}
.ws2f{word-spacing:6.746667pt;}
.ws2{word-spacing:6.805333pt;}
.ws53{word-spacing:6.922667pt;}
.ws93{word-spacing:7.157333pt;}
.ws1a{word-spacing:7.333333pt;}
.ws8{word-spacing:7.568000pt;}
.ws65{word-spacing:7.685333pt;}
.ws81{word-spacing:7.744000pt;}
.ws6{word-spacing:7.920000pt;}
.ws6f{word-spacing:7.978667pt;}
.ws2b{word-spacing:8.064000pt;}
.ws7d{word-spacing:8.096000pt;}
.ws48{word-spacing:8.213333pt;}
.ws32{word-spacing:8.272000pt;}
.ws40{word-spacing:8.389333pt;}
.ws1b{word-spacing:8.858667pt;}
.ws68{word-spacing:8.917333pt;}
.ws85{word-spacing:9.034667pt;}
.ws84{word-spacing:9.152000pt;}
.ws69{word-spacing:9.386667pt;}
.ws8b{word-spacing:9.445333pt;}
.ws60{word-spacing:9.738667pt;}
.ws78{word-spacing:9.914667pt;}
.ws67{word-spacing:10.208000pt;}
.ws83{word-spacing:10.501333pt;}
.ws4{word-spacing:10.618667pt;}
.ws31{word-spacing:11.029333pt;}
.ws72{word-spacing:11.040000pt;}
.ws3{word-spacing:11.381333pt;}
.ws80{word-spacing:11.616000pt;}
.ws89{word-spacing:11.909333pt;}
.ws88{word-spacing:12.906667pt;}
.ws87{word-spacing:13.082667pt;}
.ws73{word-spacing:13.434667pt;}
.ws3e{word-spacing:13.728000pt;}
.ws26{word-spacing:13.845333pt;}
.ws4a{word-spacing:15.840000pt;}
.ws57{word-spacing:17.130667pt;}
.ws56{word-spacing:17.306667pt;}
.ws7{word-spacing:20.064000pt;}
.ws35{word-spacing:34.261333pt;}
.ws37{word-spacing:35.610667pt;}
.ws42{word-spacing:44.352000pt;}
.ws13{word-spacing:2179.855151pt;}
.ws14{word-spacing:2223.543172pt;}
._15{margin-left:-2077.485878pt;}
._13{margin-left:-2058.648278pt;}
._11{margin-left:-2016.904157pt;}
._0{margin-left:-10.754404pt;}
._b{margin-left:-7.680000pt;}
._19{margin-left:-6.421333pt;}
._1{margin-left:-3.722678pt;}
._2{margin-left:-2.068155pt;}
._4{margin-left:-0.976027pt;}
._3{width:1.447708pt;}
._5{width:9.351467pt;}
._1b{width:14.725333pt;}
._1a{width:47.226667pt;}
._17{width:60.778667pt;}
._d{width:126.223067pt;}
._10{width:241.419763pt;}
._f{width:261.208469pt;}
._16{width:467.247830pt;}
._14{width:490.154352pt;}
._12{width:511.026413pt;}
._8{width:760.584836pt;}
._7{width:1581.211183pt;}
._c{width:1689.991915pt;}
._18{width:1691.163648pt;}
._e{width:1692.627115pt;}
._a{width:1694.700181pt;}
._9{width:1705.184448pt;}
._6{width:2280.219524pt;}
.fs4{font-size:27.984000pt;}
.fs2{font-size:34.202667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs7{font-size:59.037867pt;}
.fsd{font-size:75.350400pt;}
.fsb{font-size:92.310933pt;}
.fs8{font-size:101.333333pt;}
.fsc{font-size:108.315733pt;}
.fse{font-size:149.333333pt;}
.fsa{font-size:158.337600pt;}
.fs6{font-size:160.000000pt;}
.fs0{font-size:206.815467pt;}
.fs9{font-size:212.773333pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:69.827867pt;}
.yc5{bottom:71.615600pt;}
.y114{bottom:73.772133pt;}
.y4d{bottom:78.058400pt;}
.y23{bottom:81.567733pt;}
.y113{bottom:88.171867pt;}
.y5e{bottom:88.224000pt;}
.yc4{bottom:90.011733pt;}
.y9e{bottom:91.428133pt;}
.y22{bottom:95.967467pt;}
.y4c{bottom:96.454400pt;}
.y5d{bottom:102.623733pt;}
.y77{bottom:102.625067pt;}
.y4b{bottom:106.857867pt;}
.y9d{bottom:109.824267pt;}
.y76{bottom:113.028400pt;}
.y5c{bottom:117.024800pt;}
.y9c{bottom:120.228933pt;}
.y4a{bottom:125.253867pt;}
.y5b{bottom:131.424533pt;}
.y49{bottom:135.658400pt;}
.y9b{bottom:138.625067pt;}
.y5a{bottom:141.827867pt;}
.y75{bottom:145.824267pt;}
.y9a{bottom:149.028400pt;}
.y48{bottom:150.058400pt;}
.y13a{bottom:157.682800pt;}
.y59{bottom:160.224000pt;}
.y99{bottom:167.424533pt;}
.y47{bottom:168.454400pt;}
.y74{bottom:170.628667pt;}
.y58{bottom:174.623733pt;}
.y139{bottom:175.282800pt;}
.y46{bottom:178.857867pt;}
.y57{bottom:189.024800pt;}
.y138{bottom:192.882800pt;}
.y45{bottom:197.253867pt;}
.y137{bottom:210.482800pt;}
.y136{bottom:228.082800pt;}
.y135{bottom:245.682800pt;}
.y1f{bottom:251.177467pt;}
.y134{bottom:263.282800pt;}
.y73{bottom:266.907600pt;}
.yd7{bottom:267.253867pt;}
.y1e{bottom:268.777467pt;}
.y133{bottom:280.882800pt;}
.y72{bottom:284.507600pt;}
.y1d{bottom:286.377467pt;}
.yd2{bottom:291.648400pt;}
.y132{bottom:298.482800pt;}
.y71{bottom:302.107600pt;}
.yc0{bottom:303.603600pt;}
.y1c{bottom:303.977467pt;}
.y98{bottom:312.404133pt;}
.y131{bottom:316.082800pt;}
.y70{bottom:319.707600pt;}
.ybf{bottom:321.203600pt;}
.ye1{bottom:328.921867pt;}
.y97{bottom:330.004133pt;}
.y130{bottom:333.682800pt;}
.y6f{bottom:337.307600pt;}
.ybe{bottom:338.803600pt;}
.y1b{bottom:339.177467pt;}
.yd1{bottom:342.248667pt;}
.y96{bottom:347.603867pt;}
.y12f{bottom:351.282800pt;}
.y6e{bottom:354.907867pt;}
.ybd{bottom:356.403600pt;}
.y1a{bottom:356.777467pt;}
.y95{bottom:365.203867pt;}
.y112{bottom:368.207333pt;}
.y12e{bottom:368.882800pt;}
.y6d{bottom:372.507467pt;}
.ybc{bottom:374.003600pt;}
.yd0{bottom:375.815067pt;}
.y44{bottom:377.007067pt;}
.ye0{bottom:377.098301pt;}
.y94{bottom:382.803867pt;}
.y111{bottom:385.807067pt;}
.y12d{bottom:386.482800pt;}
.y6c{bottom:390.107467pt;}
.ybb{bottom:391.603600pt;}
.y19{bottom:391.977467pt;}
.y43{bottom:394.607067pt;}
.y93{bottom:400.403867pt;}
.y110{bottom:403.407067pt;}
.y12c{bottom:404.082800pt;}
.y6b{bottom:407.707467pt;}
.yba{bottom:409.203600pt;}
.y18{bottom:409.577467pt;}
.y42{bottom:412.207067pt;}
.y92{bottom:418.003867pt;}
.yfa{bottom:420.609600pt;}
.y10f{bottom:421.007067pt;}
.y12b{bottom:421.682800pt;}
.ydf{bottom:424.041600pt;}
.y6a{bottom:425.307467pt;}
.yb9{bottom:426.803600pt;}
.y17{bottom:427.177467pt;}
.y41{bottom:429.807067pt;}
.y91{bottom:435.603867pt;}
.yf9{bottom:438.209600pt;}
.y10e{bottom:438.607067pt;}
.y12a{bottom:439.282800pt;}
.y69{bottom:442.907467pt;}
.yb8{bottom:444.403600pt;}
.y16{bottom:444.777467pt;}
.y40{bottom:447.407067pt;}
.y90{bottom:453.203867pt;}
.yf8{bottom:455.809600pt;}
.y10d{bottom:456.207067pt;}
.y129{bottom:456.882800pt;}
.y68{bottom:460.507467pt;}
.yb7{bottom:462.003600pt;}
.y15{bottom:462.377467pt;}
.y3f{bottom:465.007067pt;}
.y8f{bottom:470.803867pt;}
.yde{bottom:472.221487pt;}
.yf7{bottom:473.409600pt;}
.y128{bottom:474.482800pt;}
.y67{bottom:478.107467pt;}
.yb6{bottom:479.603600pt;}
.y14{bottom:479.977467pt;}
.y3e{bottom:482.607067pt;}
.y8e{bottom:488.403867pt;}
.yf6{bottom:491.009600pt;}
.y10c{bottom:491.407067pt;}
.y127{bottom:492.082800pt;}
.y66{bottom:495.707200pt;}
.yb5{bottom:497.203600pt;}
.y3d{bottom:500.207067pt;}
.y8d{bottom:506.003733pt;}
.yf5{bottom:508.609600pt;}
.y10b{bottom:509.007067pt;}
.y126{bottom:509.682800pt;}
.y65{bottom:513.307200pt;}
.yb4{bottom:514.803600pt;}
.y13{bottom:515.177467pt;}
.ydd{bottom:518.637333pt;}
.y8c{bottom:523.603733pt;}
.ycf{bottom:524.760400pt;}
.yf4{bottom:526.209600pt;}
.y10a{bottom:526.607067pt;}
.y125{bottom:527.282800pt;}
.y64{bottom:530.907200pt;}
.yb3{bottom:532.403600pt;}
.y12{bottom:532.777467pt;}
.y3c{bottom:535.407067pt;}
.y8b{bottom:541.204133pt;}
.yce{bottom:542.360400pt;}
.yf3{bottom:543.809600pt;}
.y109{bottom:544.207067pt;}
.y124{bottom:544.882800pt;}
.y63{bottom:548.507467pt;}
.yb2{bottom:550.003600pt;}
.y11{bottom:550.377467pt;}
.y3b{bottom:553.007067pt;}
.y8a{bottom:558.804133pt;}
.ycd{bottom:559.960400pt;}
.yf2{bottom:561.409600pt;}
.y108{bottom:561.807067pt;}
.y123{bottom:562.482800pt;}
.y62{bottom:566.107333pt;}
.ydc{bottom:566.820523pt;}
.yb1{bottom:567.603600pt;}
.y10{bottom:567.977467pt;}
.y3a{bottom:570.607067pt;}
.y89{bottom:576.404133pt;}
.ycc{bottom:577.560400pt;}
.yf1{bottom:579.009600pt;}
.y122{bottom:580.082800pt;}
.y61{bottom:583.707333pt;}
.yb0{bottom:585.203600pt;}
.yf{bottom:585.577467pt;}
.y39{bottom:588.206667pt;}
.y88{bottom:594.004133pt;}
.yf0{bottom:596.609600pt;}
.y107{bottom:597.007067pt;}
.y121{bottom:597.682800pt;}
.y60{bottom:601.307333pt;}
.yaf{bottom:602.803600pt;}
.ye{bottom:603.177467pt;}
.y38{bottom:605.806667pt;}
.y87{bottom:611.603733pt;}
.ycb{bottom:612.760400pt;}
.yef{bottom:614.209600pt;}
.y106{bottom:614.607067pt;}
.ydb{bottom:614.988267pt;}
.y120{bottom:615.282800pt;}
.yae{bottom:620.403600pt;}
.y2b{bottom:628.308670pt;}
.y86{bottom:629.203733pt;}
.yca{bottom:630.360400pt;}
.yee{bottom:631.809600pt;}
.y105{bottom:632.207067pt;}
.y11f{bottom:632.882800pt;}
.yad{bottom:638.003600pt;}
.yd{bottom:638.377467pt;}
.y37{bottom:641.006800pt;}
.y56{bottom:644.385467pt;}
.y85{bottom:646.803733pt;}
.yc9{bottom:647.960400pt;}
.yed{bottom:649.409600pt;}
.y104{bottom:649.807067pt;}
.y11e{bottom:650.482800pt;}
.yac{bottom:655.603600pt;}
.yc{bottom:655.977467pt;}
.y36{bottom:658.607067pt;}
.y55{bottom:661.985467pt;}
.yda{bottom:663.162221pt;}
.y84{bottom:664.403733pt;}
.yc8{bottom:665.560400pt;}
.yec{bottom:667.009600pt;}
.y103{bottom:667.407067pt;}
.y11d{bottom:668.082800pt;}
.yab{bottom:673.203600pt;}
.yb{bottom:673.577467pt;}
.y5{bottom:675.646907pt;}
.y35{bottom:676.207067pt;}
.y2a{bottom:676.380253pt;}
.y54{bottom:679.585467pt;}
.y83{bottom:682.003733pt;}
.yc7{bottom:683.160400pt;}
.yeb{bottom:684.609600pt;}
.y102{bottom:685.007067pt;}
.y11c{bottom:685.682800pt;}
.yaa{bottom:690.803600pt;}
.ya{bottom:691.177467pt;}
.y34{bottom:693.807067pt;}
.y53{bottom:697.185467pt;}
.y82{bottom:699.603733pt;}
.yc6{bottom:700.760400pt;}
.yea{bottom:702.209600pt;}
.y101{bottom:702.607067pt;}
.y11b{bottom:703.282800pt;}
.yd9{bottom:707.807333pt;}
.ya9{bottom:708.403600pt;}
.y33{bottom:711.407067pt;}
.y52{bottom:714.785467pt;}
.y81{bottom:717.203733pt;}
.ye9{bottom:719.809600pt;}
.y100{bottom:720.207067pt;}
.y11a{bottom:720.882800pt;}
.y29{bottom:721.071918pt;}
.ya8{bottom:726.003600pt;}
.y9{bottom:726.377467pt;}
.y32{bottom:729.007067pt;}
.y51{bottom:732.385467pt;}
.y80{bottom:734.803733pt;}
.ye8{bottom:737.409600pt;}
.y4{bottom:737.691547pt;}
.y119{bottom:738.482800pt;}
.y28{bottom:738.783278pt;}
.ya7{bottom:743.603600pt;}
.y8{bottom:743.977467pt;}
.y31{bottom:746.607067pt;}
.y7f{bottom:752.403733pt;}
.yff{bottom:755.407067pt;}
.y118{bottom:756.082800pt;}
.yd8{bottom:758.175733pt;}
.ya6{bottom:761.203600pt;}
.y7{bottom:761.577467pt;}
.y30{bottom:764.206933pt;}
.y7e{bottom:770.003733pt;}
.yc3{bottom:770.079467pt;}
.yfe{bottom:773.007067pt;}
.y117{bottom:773.682800pt;}
.y2c{bottom:778.737154pt;}
.ya5{bottom:778.803600pt;}
.y6{bottom:779.177733pt;}
.y2f{bottom:781.806933pt;}
.y7d{bottom:787.603733pt;}
.ye7{bottom:790.136267pt;}
.yfd{bottom:790.607067pt;}
.y116{bottom:791.282800pt;}
.y50{bottom:791.906933pt;}
.ya4{bottom:796.403600pt;}
.y2e{bottom:799.406933pt;}
.y3{bottom:799.736187pt;}
.y7c{bottom:805.204133pt;}
.ye6{bottom:807.736267pt;}
.yfc{bottom:808.207067pt;}
.y115{bottom:808.882800pt;}
.ya3{bottom:814.003600pt;}
.y27{bottom:817.318400pt;}
.yc2{bottom:818.079467pt;}
.y7b{bottom:822.804133pt;}
.ye5{bottom:825.336267pt;}
.ya2{bottom:831.603600pt;}
.y4f{bottom:839.906933pt;}
.y7a{bottom:840.404133pt;}
.yd6{bottom:842.290533pt;}
.ya1{bottom:849.203600pt;}
.y79{bottom:858.004133pt;}
.yd5{bottom:859.890533pt;}
.ye4{bottom:860.536267pt;}
.y2{bottom:861.780827pt;}
.yc1{bottom:866.079467pt;}
.ya0{bottom:866.803600pt;}
.y2d{bottom:867.733067pt;}
.yfb{bottom:868.722667pt;}
.y26{bottom:869.826800pt;}
.y78{bottom:875.604133pt;}
.yd4{bottom:877.490533pt;}
.ye3{bottom:878.136267pt;}
.y9f{bottom:884.403600pt;}
.y4e{bottom:887.906933pt;}
.yd3{bottom:895.090533pt;}
.ye2{bottom:895.736267pt;}
.y1{bottom:923.825467pt;}
.y21{bottom:993.044267pt;}
.y25{bottom:993.393200pt;}
.y20{bottom:1009.044267pt;}
.y24{bottom:1009.393200pt;}
.h6{height:28.429529pt;}
.he{height:28.430062pt;}
.h10{height:28.434862pt;}
.h5{height:39.786667pt;}
.h4{height:44.000000pt;}
.hf{height:44.414062pt;}
.h3{height:45.776042pt;}
.h9{height:48.400673pt;}
.h8{height:53.832157pt;}
.h2{height:54.283854pt;}
.hc{height:54.284388pt;}
.h11{height:54.284921pt;}
.hd{height:54.285454pt;}
.h15{height:69.721195pt;}
.h14{height:84.515890pt;}
.hb{height:85.733867pt;}
.ha{height:89.254877pt;}
.h16{height:115.285333pt;}
.h13{height:117.284248pt;}
.h7{height:123.520000pt;}
.h1{height:159.661540pt;}
.h12{height:232.850933pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:47.498667pt;}
.x7{left:60.013067pt;}
.x2{left:64.126267pt;}
.xd{left:65.806000pt;}
.x6{left:70.212267pt;}
.x1{left:74.068400pt;}
.x4{left:79.953067pt;}
.x5{left:81.640667pt;}
.x11{left:94.206933pt;}
.x8{left:112.235733pt;}
.xc{left:120.890667pt;}
.x9{left:136.230400pt;}
.xe{left:143.372400pt;}
.xa{left:159.313867pt;}
.x10{left:443.201970pt;}
.xf{left:453.639333pt;}
.xb{left:551.093733pt;}
}




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