
    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_45e23f69db0bd601b2e31fb1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_9227c3437ad6e90cc99a8a93.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_a6c35c530cb3b70e6709dca3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_a2c7d52e66bb25045008a691.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_deb31f62cc7f12f926af8d98.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_376d86fb3ad220a96c1dafdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919434;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_f3e55b20ea6dd69ef927176c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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_2ba7d67609dd17996c62a632.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v9{vertical-align:-22.267440px;}
.v4{vertical-align:-13.756320px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.944000px;}
.v3{vertical-align:3.522960px;}
.v1{vertical-align:36.000000px;}
.v6{vertical-align:56.199600px;}
.v8{vertical-align:63.360000px;}
.v5{vertical-align:99.792000px;}
.v7{vertical-align:119.529000px;}
.ls29{letter-spacing:-2.880000px;}
.ls7{letter-spacing:-2.517480px;}
.ls31{letter-spacing:-1.929240px;}
.ls42{letter-spacing:-1.826280px;}
.ls6{letter-spacing:-1.726920px;}
.ls25{letter-spacing:-1.296000px;}
.ls1f{letter-spacing:-0.838800px;}
.ls2a{letter-spacing:-0.754920px;}
.ls1e{letter-spacing:-0.587160px;}
.ls11{letter-spacing:-0.420840px;}
.ls10{letter-spacing:-0.360720px;}
.ls39{letter-spacing:-0.335520px;}
.ls1c{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.300600px;}
.lsf{letter-spacing:-0.240480px;}
.ls30{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.191880px;}
.ls13{letter-spacing:-0.180360px;}
.ls22{letter-spacing:-0.168120px;}
.ls20{letter-spacing:-0.167760px;}
.ls2d{letter-spacing:-0.162000px;}
.ls3c{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.143640px;}
.ls3a{letter-spacing:-0.131760px;}
.lsd{letter-spacing:-0.120240px;}
.ls8{letter-spacing:-0.119880px;}
.ls24{letter-spacing:-0.108000px;}
.ls19{letter-spacing:-0.096120px;}
.ls1d{letter-spacing:-0.083880px;}
.ls3d{letter-spacing:-0.065880px;}
.ls2c{letter-spacing:-0.054000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036360px;}
.ls2f{letter-spacing:0.043200px;}
.ls3e{letter-spacing:0.047880px;}
.ls28{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.060120px;}
.lsa{letter-spacing:0.076608px;}
.ls37{letter-spacing:0.083880px;}
.ls1b{letter-spacing:0.096120px;}
.ls2e{letter-spacing:0.097200px;}
.ls23{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.119880px;}
.lsb{letter-spacing:0.120240px;}
.ls3b{letter-spacing:0.131760px;}
.ls1{letter-spacing:0.160560px;}
.ls2b{letter-spacing:0.162000px;}
.lse{letter-spacing:0.167760px;}
.ls1a{letter-spacing:0.192240px;}
.ls27{letter-spacing:0.251640px;}
.ls17{letter-spacing:0.576720px;}
.ls0{letter-spacing:0.652392px;}
.ls38{letter-spacing:3.690720px;}
.ls9{letter-spacing:10.916640px;}
.ls34{letter-spacing:23.738040px;}
.ls15{letter-spacing:30.089880px;}
.ls32{letter-spacing:32.256000px;}
.ls21{letter-spacing:32.688000px;}
.ls35{letter-spacing:37.410480px;}
.ls16{letter-spacing:40.937040px;}
.ls18{letter-spacing:40.947120px;}
.ls33{letter-spacing:46.375200px;}
.ls26{letter-spacing:46.553400px;}
.ls3f{letter-spacing:97.200000px;}
.ls40{letter-spacing:101.310480px;}
.ls41{letter-spacing:101.406600px;}
.ls36{letter-spacing:147.941640px;}
.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;}
}
.ws63{word-spacing:-83.880000px;}
.ws68{word-spacing:-64.839240px;}
.ws66{word-spacing:-58.757940px;}
.ws0{word-spacing:-41.637960px;}
.ws64{word-spacing:-34.592112px;}
.wsc{word-spacing:-32.544000px;}
.ws65{word-spacing:-29.934072px;}
.ws3a{word-spacing:-29.664000px;}
.ws1{word-spacing:-27.212760px;}
.ws61{word-spacing:-27.092880px;}
.ws49{word-spacing:-24.516000px;}
.ws5a{word-spacing:-24.408000px;}
.ws48{word-spacing:-24.300000px;}
.ws46{word-spacing:-24.084000px;}
.ws37{word-spacing:-23.112000px;}
.ws1f{word-spacing:-21.627000px;}
.ws77{word-spacing:-19.896840px;}
.wsf{word-spacing:-19.124640px;}
.ws23{word-spacing:-18.956880px;}
.ws26{word-spacing:-18.873000px;}
.ws25{word-spacing:-18.789120px;}
.ws69{word-spacing:-18.621360px;}
.ws24{word-spacing:-18.369720px;}
.ws3b{word-spacing:-18.201960px;}
.ws51{word-spacing:-17.027640px;}
.ws5f{word-spacing:-14.888880px;}
.ws6f{word-spacing:-14.823000px;}
.ws6a{word-spacing:-14.757120px;}
.ws10{word-spacing:-13.707360px;}
.ws11{word-spacing:-13.587120px;}
.ws15{word-spacing:-13.406760px;}
.ws14{word-spacing:-13.286520px;}
.ws12{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.166280px;}
.ws3c{word-spacing:-12.150000px;}
.ws34{word-spacing:-1.584000px;}
.ws40{word-spacing:-1.458000px;}
.ws1c{word-spacing:-1.382760px;}
.ws74{word-spacing:-1.296000px;}
.ws1b{word-spacing:-1.202400px;}
.ws3f{word-spacing:-1.188000px;}
.ws22{word-spacing:-1.163052px;}
.ws42{word-spacing:-1.080000px;}
.ws4b{word-spacing:-0.972000px;}
.ws18{word-spacing:-0.961920px;}
.ws71{word-spacing:-0.957600px;}
.ws2a{word-spacing:-0.864000px;}
.ws53{word-spacing:-0.839160px;}
.ws27{word-spacing:-0.768960px;}
.ws31{word-spacing:-0.587160px;}
.ws36{word-spacing:-0.576000px;}
.ws17{word-spacing:-0.574560px;}
.ws55{word-spacing:-0.479520px;}
.ws43{word-spacing:-0.432000px;}
.ws70{word-spacing:-0.430920px;}
.ws79{word-spacing:-0.384480px;}
.ws44{word-spacing:-0.378000px;}
.wsa{word-spacing:-0.359640px;}
.ws2e{word-spacing:-0.324000px;}
.ws6c{word-spacing:-0.288000px;}
.ws19{word-spacing:-0.251640px;}
.ws21{word-spacing:-0.240300px;}
.ws1e{word-spacing:-0.239760px;}
.ws16{word-spacing:-0.239400px;}
.ws4f{word-spacing:-0.216000px;}
.ws30{word-spacing:-0.167760px;}
.ws45{word-spacing:-0.162000px;}
.ws2b{word-spacing:-0.144000px;}
.ws6b{word-spacing:-0.131760px;}
.ws3d{word-spacing:-0.120240px;}
.ws4a{word-spacing:-0.108000px;}
.ws33{word-spacing:-0.083880px;}
.ws6d{word-spacing:-0.072000px;}
.wse{word-spacing:-0.066132px;}
.ws76{word-spacing:-0.060120px;}
.ws3{word-spacing:0.000000px;}
.ws20{word-spacing:0.028836px;}
.ws6e{word-spacing:0.072000px;}
.ws28{word-spacing:0.096120px;}
.ws1d{word-spacing:0.119880px;}
.ws29{word-spacing:0.144000px;}
.ws4e{word-spacing:0.216000px;}
.ws1a{word-spacing:0.240480px;}
.ws78{word-spacing:0.288360px;}
.ws39{word-spacing:0.324000px;}
.ws9{word-spacing:0.359640px;}
.ws2d{word-spacing:0.432000px;}
.ws54{word-spacing:0.479520px;}
.ws50{word-spacing:0.540000px;}
.ws4{word-spacing:0.575640px;}
.ws2c{word-spacing:0.576720px;}
.ws32{word-spacing:0.587160px;}
.ws7{word-spacing:0.599400px;}
.ws35{word-spacing:0.648000px;}
.ws41{word-spacing:0.702000px;}
.ws4d{word-spacing:0.756000px;}
.ws38{word-spacing:0.864000px;}
.ws2f{word-spacing:0.922680px;}
.wsb{word-spacing:0.959040px;}
.ws3e{word-spacing:1.006560px;}
.ws4c{word-spacing:1.080000px;}
.ws75{word-spacing:1.404000px;}
.ws56{word-spacing:1.425960px;}
.ws6{word-spacing:1.678320px;}
.ws5{word-spacing:1.726920px;}
.ws60{word-spacing:1.761480px;}
.ws2{word-spacing:1.918800px;}
.ws57{word-spacing:1.929240px;}
.ws8{word-spacing:2.757240px;}
.ws67{word-spacing:10.731492px;}
.ws47{word-spacing:65.340000px;}
.ws58{word-spacing:98.334000px;}
.ws5b{word-spacing:124.254000px;}
.wsd{word-spacing:141.101640px;}
.ws5d{word-spacing:269.622000px;}
.ws59{word-spacing:271.944000px;}
.ws5c{word-spacing:297.864000px;}
.ws5e{word-spacing:443.232000px;}
.ws52{word-spacing:861.095400px;}
.ws72{word-spacing:909.499752px;}
.ws73{word-spacing:1079.536032px;}
.ws62{word-spacing:1562.040000px;}
._8{margin-left:-1299.620484px;}
._1f{margin-left:-1050.324840px;}
._f{margin-left:-829.497360px;}
._10{margin-left:-819.110160px;}
._19{margin-left:-44.608356px;}
._0{margin-left:-11.531988px;}
._7{margin-left:-9.440676px;}
._b{margin-left:-8.320896px;}
._5{margin-left:-6.773220px;}
._c{margin-left:-5.140908px;}
._1{margin-left:-3.780036px;}
._3{margin-left:-1.822860px;}
._2{width:1.208844px;}
._4{width:2.244996px;}
._6{width:3.445524px;}
._1a{width:20.382840px;}
._1b{width:54.941400px;}
._1c{width:67.107960px;}
._12{width:93.704580px;}
._14{width:119.624580px;}
._11{width:239.288580px;}
._13{width:265.208580px;}
._e{width:381.127176px;}
._15{width:410.576580px;}
._20{width:415.660596px;}
._1d{width:452.254596px;}
._21{width:515.710152px;}
._1e{width:608.282952px;}
._a{width:756.432000px;}
._9{width:919.491156px;}
._d{width:1014.620580px;}
._16{width:1257.400260px;}
._18{width:1286.060580px;}
._17{width:1417.778820px;}
.fc6{color:rgb(136,161,36);}
.fc4{color:rgb(23,156,125);}
.fc3{color:transparent;}
.fc2{color:rgb(0,91,127);}
.fc5{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:47.880000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fsb{font-size:65.880000px;}
.fsc{font-size:72.000000px;}
.fs2{font-size:79.920000px;}
.fs6{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs8{font-size:108.000000px;}
.fs1{font-size:119.880000px;}
.fs4{font-size:144.000000px;}
.fs9{font-size:168.120000px;}
.fs0{font-size:191.880000px;}
.y0{bottom:0.000000px;}
.y7{bottom:35.189400px;}
.y5{bottom:36.249750px;}
.y43{bottom:66.196650px;}
.y81{bottom:87.646230px;}
.ya{bottom:88.279560px;}
.yd{bottom:89.555250px;}
.y65{bottom:99.052950px;}
.y8a{bottom:100.452450px;}
.yc{bottom:105.356670px;}
.y54{bottom:106.097100px;}
.y9{bottom:106.285500px;}
.y1f{bottom:109.092540px;}
.y88{bottom:109.199250px;}
.y6b{bottom:110.047650px;}
.y58{bottom:113.056500px;}
.y6c{bottom:113.353350px;}
.y51{bottom:113.437800px;}
.y5b{bottom:113.755200px;}
.y4{bottom:116.987550px;}
.y76{bottom:117.442500px;}
.y77{bottom:119.175300px;}
.y7f{bottom:122.414400px;}
.y8{bottom:127.795500px;}
.y3f{bottom:136.270500px;}
.y16{bottom:136.420110px;}
.y6d{bottom:144.562350px;}
.y1e{bottom:152.298480px;}
.y3{bottom:152.987550px;}
.y37{bottom:163.372050px;}
.y61{bottom:166.983060px;}
.y15{bottom:179.626050px;}
.y3e{bottom:188.487300px;}
.y1d{bottom:195.504420px;}
.y36{bottom:195.772050px;}
.y92{bottom:203.508360px;}
.y85{bottom:207.061500px;}
.y89{bottom:220.503750px;}
.y14{bottom:222.826050px;}
.y35{bottom:228.172050px;}
.y23{bottom:232.873650px;}
.y91{bottom:235.179900px;}
.y7e{bottom:236.411160px;}
.y84{bottom:236.412390px;}
.y79{bottom:238.635480px;}
.y1c{bottom:238.710360px;}
.y4f{bottom:245.564250px;}
.y60{bottom:247.654650px;}
.y2{bottom:251.345430px;}
.y73{bottom:257.189100px;}
.y6e{bottom:260.407650px;}
.y13{bottom:266.026050px;}
.y17{bottom:270.256050px;}
.y1b{bottom:281.916300px;}
.y64{bottom:284.842650px;}
.y34{bottom:286.951050px;}
.y90{bottom:295.365420px;}
.y12{bottom:296.349240px;}
.y1{bottom:308.957400px;}
.y41{bottom:310.765650px;}
.y33{bottom:319.351050px;}
.y87{bottom:332.447400px;}
.y7c{bottom:336.281550px;}
.y1a{bottom:338.020500px;}
.y55{bottom:349.563750px;}
.y11{bottom:350.355180px;}
.y32{bottom:351.751050px;}
.y8f{bottom:355.488480px;}
.y80{bottom:362.761110px;}
.y75{bottom:363.163500px;}
.y67{bottom:364.488750px;}
.y68{bottom:367.461450px;}
.y5a{bottom:367.466220px;}
.y56{bottom:369.587400px;}
.y3d{bottom:370.852950px;}
.y59{bottom:371.744100px;}
.y63{bottom:373.260150px;}
.y82{bottom:376.332390px;}
.y72{bottom:383.122650px;}
.y50{bottom:393.058950px;}
.y31{bottom:394.951050px;}
.y4e{bottom:395.839650px;}
.y70{bottom:396.059250px;}
.y6f{bottom:399.550890px;}
.y10{bottom:404.361120px;}
.yb{bottom:410.781300px;}
.y8e{bottom:415.707660px;}
.y93{bottom:418.018500px;}
.y30{bottom:427.351050px;}
.y48{bottom:443.903400px;}
.y3c{bottom:444.514200px;}
.y4d{bottom:446.757300px;}
.y40{bottom:449.715450px;}
.yf{bottom:458.367060px;}
.y7d{bottom:461.836050px;}
.y8d{bottom:475.926840px;}
.y2f{bottom:476.356050px;}
.y83{bottom:482.194200px;}
.y47{bottom:488.291400px;}
.y4c{bottom:491.145300px;}
.y5f{bottom:494.533800px;}
.y62{bottom:502.319400px;}
.y71{bottom:507.264900px;}
.y19{bottom:508.302600px;}
.y5e{bottom:508.576050px;}
.y2e{bottom:508.756050px;}
.ye{bottom:512.373000px;}
.y66{bottom:516.613950px;}
.y46{bottom:532.679400px;}
.y42{bottom:534.441750px;}
.y4b{bottom:535.533300px;}
.y8c{bottom:536.049900px;}
.y6a{bottom:537.528150px;}
.y2d{bottom:541.156050px;}
.y2a{bottom:553.454550px;}
.y69{bottom:559.164150px;}
.y18{bottom:566.407800px;}
.y86{bottom:569.945850px;}
.y45{bottom:577.067400px;}
.y29{bottom:577.754550px;}
.y4a{bottom:579.921300px;}
.y5d{bottom:584.353800px;}
.y2c{bottom:588.433050px;}
.y53{bottom:594.817950px;}
.y8b{bottom:596.259900px;}
.y39{bottom:599.513100px;}
.y52{bottom:599.857950px;}
.y28{bottom:602.054550px;}
.y5c{bottom:614.236050px;}
.y74{bottom:615.689100px;}
.y57{bottom:618.205500px;}
.y2b{bottom:620.833050px;}
.y44{bottom:621.455400px;}
.y24{bottom:623.957250px;}
.y49{bottom:624.309300px;}
.y20{bottom:624.588600px;}
.y7a{bottom:624.857550px;}
.y27{bottom:627.894150px;}
.y38{bottom:629.483100px;}
.y3a{bottom:633.529050px;}
.y3b{bottom:635.725950px;}
.y7b{bottom:649.400550px;}
.y25{bottom:666.258750px;}
.y22{bottom:721.177770px;}
.y78{bottom:722.914050px;}
.y6{bottom:727.636950px;}
.y26{bottom:736.546950px;}
.y21{bottom:751.143900px;}
.h3{height:33.291563px;}
.h1d{height:34.366992px;}
.h1e{height:35.814792px;}
.h1f{height:37.554192px;}
.h11{height:38.759766px;}
.h5{height:43.152539px;}
.h14{height:47.286914px;}
.h1c{height:51.679688px;}
.hc{height:58.322812px;}
.h17{height:58.814297px;}
.h1b{height:59.182910px;}
.h6{height:60.206836px;}
.h10{height:60.616406px;}
.h12{height:62.473036px;}
.h13{height:63.729796px;}
.h9{height:68.992383px;}
.h8{height:69.461719px;}
.hb{height:75.093750px;}
.hf{height:77.519531px;}
.he{height:79.463531px;}
.ha{height:86.046680px;}
.h7{height:86.632031px;}
.h2{height:93.364453px;}
.h4{height:103.359375px;}
.h16{height:106.239375px;}
.h19{height:115.351910px;}
.hd{height:120.672070px;}
.h1a{height:122.174297px;}
.h1{height:137.726367px;}
.h18{height:178.343297px;}
.h15{height:203.151375px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5d{left:24.253350px;}
.x68{left:40.108500px;}
.x1{left:45.161550px;}
.x58{left:52.005150px;}
.x3{left:56.625000px;}
.x3a{left:64.566600px;}
.x18{left:67.425000px;}
.x17{left:70.064100px;}
.x2c{left:71.934000px;}
.x62{left:74.147400px;}
.x9{left:80.498850px;}
.x63{left:84.250800px;}
.xd{left:86.220300px;}
.x1b{left:88.053000px;}
.x23{left:93.345000px;}
.x70{left:99.351300px;}
.x42{left:108.021450px;}
.x22{left:109.464000px;}
.x60{left:125.750160px;}
.x25{left:126.825000px;}
.x5c{left:131.309250px;}
.xa{left:134.504790px;}
.x4a{left:135.847950px;}
.x3d{left:143.577600px;}
.x69{left:147.991350px;}
.x3b{left:149.062200px;}
.x4{left:163.942650px;}
.x15{left:170.173650px;}
.x1c{left:179.394000px;}
.x12{left:192.325350px;}
.x34{left:197.884950px;}
.x59{left:236.161650px;}
.x47{left:238.500600px;}
.x45{left:240.765000px;}
.x54{left:246.575640px;}
.x41{left:260.810250px;}
.x5{left:298.545150px;}
.x16{left:304.040550px;}
.x3c{left:311.598600px;}
.x4d{left:345.976350px;}
.x49{left:382.221750px;}
.xf{left:385.573050px;}
.x5f{left:390.406590px;}
.x6a{left:394.827240px;}
.x5e{left:398.361600px;}
.x65{left:412.178130px;}
.x55{left:427.585500px;}
.x14{left:434.990850px;}
.x19{left:484.953000px;}
.x26{left:496.158000px;}
.x2d{left:500.586000px;}
.x27{left:506.688000px;}
.x1d{left:514.545000px;}
.xb{left:516.824550px;}
.x1e{left:522.726000px;}
.x6e{left:528.651480px;}
.xc{left:538.064550px;}
.x13{left:542.093100px;}
.x5b{left:543.740700px;}
.x24{left:550.617000px;}
.x43{left:554.341980px;}
.x35{left:577.941450px;}
.xe{left:600.684750px;}
.x10{left:609.969600px;}
.x2e{left:622.707000px;}
.x71{left:651.280050px;}
.x2{left:655.571250px;}
.x46{left:659.808150px;}
.x64{left:664.479000px;}
.x28{left:677.328000px;}
.x37{left:689.357100px;}
.x4e{left:728.341740px;}
.x33{left:760.918110px;}
.x3e{left:774.960000px;}
.x4c{left:779.321250px;}
.x36{left:814.404300px;}
.x61{left:816.046800px;}
.x8{left:827.807400px;}
.x7{left:832.248900px;}
.x6{left:833.676750px;}
.x6f{left:835.337550px;}
.x48{left:841.320600px;}
.x6c{left:843.903750px;}
.x56{left:893.298450px;}
.x11{left:944.717400px;}
.x52{left:957.838350px;}
.x67{left:969.549000px;}
.x1a{left:974.625000px;}
.x29{left:977.136000px;}
.x2a{left:981.105000px;}
.x1f{left:991.284000px;}
.x20{left:993.174000px;}
.x2f{left:998.655000px;}
.x44{left:1002.540090px;}
.x4b{left:1019.384400px;}
.x30{left:1023.846000px;}
.x2b{left:1025.196000px;}
.x40{left:1046.155800px;}
.x4f{left:1049.530800px;}
.x66{left:1053.330000px;}
.x21{left:1057.245000px;}
.x50{left:1076.998350px;}
.x38{left:1084.246050px;}
.x32{left:1086.182520px;}
.x6d{left:1129.427670px;}
.x51{left:1140.178350px;}
.x57{left:1141.729350px;}
.x31{left:1170.518100px;}
.x39{left:1229.025450px;}
.x53{left:1235.854740px;}
.x5a{left:1238.830050px;}
.x3f{left:1256.998800px;}
.x6b{left:1274.424060px;}
@media print{
.v9{vertical-align:-19.793280pt;}
.v4{vertical-align:-12.227840pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.728000pt;}
.v3{vertical-align:3.131520pt;}
.v1{vertical-align:32.000000pt;}
.v6{vertical-align:49.955200pt;}
.v8{vertical-align:56.320000pt;}
.v5{vertical-align:88.704000pt;}
.v7{vertical-align:106.248000pt;}
.ls29{letter-spacing:-2.560000pt;}
.ls7{letter-spacing:-2.237760pt;}
.ls31{letter-spacing:-1.714880pt;}
.ls42{letter-spacing:-1.623360pt;}
.ls6{letter-spacing:-1.535040pt;}
.ls25{letter-spacing:-1.152000pt;}
.ls1f{letter-spacing:-0.745600pt;}
.ls2a{letter-spacing:-0.671040pt;}
.ls1e{letter-spacing:-0.521920pt;}
.ls11{letter-spacing:-0.374080pt;}
.ls10{letter-spacing:-0.320640pt;}
.ls39{letter-spacing:-0.298240pt;}
.ls1c{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.267200pt;}
.lsf{letter-spacing:-0.213760pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.170560pt;}
.ls13{letter-spacing:-0.160320pt;}
.ls22{letter-spacing:-0.149440pt;}
.ls20{letter-spacing:-0.149120pt;}
.ls2d{letter-spacing:-0.144000pt;}
.ls3c{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.127680pt;}
.ls3a{letter-spacing:-0.117120pt;}
.lsd{letter-spacing:-0.106880pt;}
.ls8{letter-spacing:-0.106560pt;}
.ls24{letter-spacing:-0.096000pt;}
.ls19{letter-spacing:-0.085440pt;}
.ls1d{letter-spacing:-0.074560pt;}
.ls3d{letter-spacing:-0.058560pt;}
.ls2c{letter-spacing:-0.048000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032320pt;}
.ls2f{letter-spacing:0.038400pt;}
.ls3e{letter-spacing:0.042560pt;}
.ls28{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.053440pt;}
.lsa{letter-spacing:0.068096pt;}
.ls37{letter-spacing:0.074560pt;}
.ls1b{letter-spacing:0.085440pt;}
.ls2e{letter-spacing:0.086400pt;}
.ls23{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106560pt;}
.lsb{letter-spacing:0.106880pt;}
.ls3b{letter-spacing:0.117120pt;}
.ls1{letter-spacing:0.142720pt;}
.ls2b{letter-spacing:0.144000pt;}
.lse{letter-spacing:0.149120pt;}
.ls1a{letter-spacing:0.170880pt;}
.ls27{letter-spacing:0.223680pt;}
.ls17{letter-spacing:0.512640pt;}
.ls0{letter-spacing:0.579904pt;}
.ls38{letter-spacing:3.280640pt;}
.ls9{letter-spacing:9.703680pt;}
.ls34{letter-spacing:21.100480pt;}
.ls15{letter-spacing:26.746560pt;}
.ls32{letter-spacing:28.672000pt;}
.ls21{letter-spacing:29.056000pt;}
.ls35{letter-spacing:33.253760pt;}
.ls16{letter-spacing:36.388480pt;}
.ls18{letter-spacing:36.397440pt;}
.ls33{letter-spacing:41.222400pt;}
.ls26{letter-spacing:41.380800pt;}
.ls3f{letter-spacing:86.400000pt;}
.ls40{letter-spacing:90.053760pt;}
.ls41{letter-spacing:90.139200pt;}
.ls36{letter-spacing:131.503680pt;}
.ws63{word-spacing:-74.560000pt;}
.ws68{word-spacing:-57.634880pt;}
.ws66{word-spacing:-52.229280pt;}
.ws0{word-spacing:-37.011520pt;}
.ws64{word-spacing:-30.748544pt;}
.wsc{word-spacing:-28.928000pt;}
.ws65{word-spacing:-26.608064pt;}
.ws3a{word-spacing:-26.368000pt;}
.ws1{word-spacing:-24.189120pt;}
.ws61{word-spacing:-24.082560pt;}
.ws49{word-spacing:-21.792000pt;}
.ws5a{word-spacing:-21.696000pt;}
.ws48{word-spacing:-21.600000pt;}
.ws46{word-spacing:-21.408000pt;}
.ws37{word-spacing:-20.544000pt;}
.ws1f{word-spacing:-19.224000pt;}
.ws77{word-spacing:-17.686080pt;}
.wsf{word-spacing:-16.999680pt;}
.ws23{word-spacing:-16.850560pt;}
.ws26{word-spacing:-16.776000pt;}
.ws25{word-spacing:-16.701440pt;}
.ws69{word-spacing:-16.552320pt;}
.ws24{word-spacing:-16.328640pt;}
.ws3b{word-spacing:-16.179520pt;}
.ws51{word-spacing:-15.135680pt;}
.ws5f{word-spacing:-13.234560pt;}
.ws6f{word-spacing:-13.176000pt;}
.ws6a{word-spacing:-13.117440pt;}
.ws10{word-spacing:-12.184320pt;}
.ws11{word-spacing:-12.077440pt;}
.ws15{word-spacing:-11.917120pt;}
.ws14{word-spacing:-11.810240pt;}
.ws12{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.703360pt;}
.ws3c{word-spacing:-10.800000pt;}
.ws34{word-spacing:-1.408000pt;}
.ws40{word-spacing:-1.296000pt;}
.ws1c{word-spacing:-1.229120pt;}
.ws74{word-spacing:-1.152000pt;}
.ws1b{word-spacing:-1.068800pt;}
.ws3f{word-spacing:-1.056000pt;}
.ws22{word-spacing:-1.033824pt;}
.ws42{word-spacing:-0.960000pt;}
.ws4b{word-spacing:-0.864000pt;}
.ws18{word-spacing:-0.855040pt;}
.ws71{word-spacing:-0.851200pt;}
.ws2a{word-spacing:-0.768000pt;}
.ws53{word-spacing:-0.745920pt;}
.ws27{word-spacing:-0.683520pt;}
.ws31{word-spacing:-0.521920pt;}
.ws36{word-spacing:-0.512000pt;}
.ws17{word-spacing:-0.510720pt;}
.ws55{word-spacing:-0.426240pt;}
.ws43{word-spacing:-0.384000pt;}
.ws70{word-spacing:-0.383040pt;}
.ws79{word-spacing:-0.341760pt;}
.ws44{word-spacing:-0.336000pt;}
.wsa{word-spacing:-0.319680pt;}
.ws2e{word-spacing:-0.288000pt;}
.ws6c{word-spacing:-0.256000pt;}
.ws19{word-spacing:-0.223680pt;}
.ws21{word-spacing:-0.213600pt;}
.ws1e{word-spacing:-0.213120pt;}
.ws16{word-spacing:-0.212800pt;}
.ws4f{word-spacing:-0.192000pt;}
.ws30{word-spacing:-0.149120pt;}
.ws45{word-spacing:-0.144000pt;}
.ws2b{word-spacing:-0.128000pt;}
.ws6b{word-spacing:-0.117120pt;}
.ws3d{word-spacing:-0.106880pt;}
.ws4a{word-spacing:-0.096000pt;}
.ws33{word-spacing:-0.074560pt;}
.ws6d{word-spacing:-0.064000pt;}
.wse{word-spacing:-0.058784pt;}
.ws76{word-spacing:-0.053440pt;}
.ws3{word-spacing:0.000000pt;}
.ws20{word-spacing:0.025632pt;}
.ws6e{word-spacing:0.064000pt;}
.ws28{word-spacing:0.085440pt;}
.ws1d{word-spacing:0.106560pt;}
.ws29{word-spacing:0.128000pt;}
.ws4e{word-spacing:0.192000pt;}
.ws1a{word-spacing:0.213760pt;}
.ws78{word-spacing:0.256320pt;}
.ws39{word-spacing:0.288000pt;}
.ws9{word-spacing:0.319680pt;}
.ws2d{word-spacing:0.384000pt;}
.ws54{word-spacing:0.426240pt;}
.ws50{word-spacing:0.480000pt;}
.ws4{word-spacing:0.511680pt;}
.ws2c{word-spacing:0.512640pt;}
.ws32{word-spacing:0.521920pt;}
.ws7{word-spacing:0.532800pt;}
.ws35{word-spacing:0.576000pt;}
.ws41{word-spacing:0.624000pt;}
.ws4d{word-spacing:0.672000pt;}
.ws38{word-spacing:0.768000pt;}
.ws2f{word-spacing:0.820160pt;}
.wsb{word-spacing:0.852480pt;}
.ws3e{word-spacing:0.894720pt;}
.ws4c{word-spacing:0.960000pt;}
.ws75{word-spacing:1.248000pt;}
.ws56{word-spacing:1.267520pt;}
.ws6{word-spacing:1.491840pt;}
.ws5{word-spacing:1.535040pt;}
.ws60{word-spacing:1.565760pt;}
.ws2{word-spacing:1.705600pt;}
.ws57{word-spacing:1.714880pt;}
.ws8{word-spacing:2.450880pt;}
.ws67{word-spacing:9.539104pt;}
.ws47{word-spacing:58.080000pt;}
.ws58{word-spacing:87.408000pt;}
.ws5b{word-spacing:110.448000pt;}
.wsd{word-spacing:125.423680pt;}
.ws5d{word-spacing:239.664000pt;}
.ws59{word-spacing:241.728000pt;}
.ws5c{word-spacing:264.768000pt;}
.ws5e{word-spacing:393.984000pt;}
.ws52{word-spacing:765.418133pt;}
.ws72{word-spacing:808.444224pt;}
.ws73{word-spacing:959.587584pt;}
.ws62{word-spacing:1388.480000pt;}
._8{margin-left:-1155.218208pt;}
._1f{margin-left:-933.622080pt;}
._f{margin-left:-737.330987pt;}
._10{margin-left:-728.097920pt;}
._19{margin-left:-39.651872pt;}
._0{margin-left:-10.250656pt;}
._7{margin-left:-8.391712pt;}
._b{margin-left:-7.396352pt;}
._5{margin-left:-6.020640pt;}
._c{margin-left:-4.569696pt;}
._1{margin-left:-3.360032pt;}
._3{margin-left:-1.620320pt;}
._2{width:1.074528pt;}
._4{width:1.995552pt;}
._6{width:3.062688pt;}
._1a{width:18.118080pt;}
._1b{width:48.836800pt;}
._1c{width:59.651520pt;}
._12{width:83.292960pt;}
._14{width:106.332960pt;}
._11{width:212.700960pt;}
._13{width:235.740960pt;}
._e{width:338.779712pt;}
._15{width:364.956960pt;}
._20{width:369.476085pt;}
._1d{width:402.004085pt;}
._21{width:458.409024pt;}
._1e{width:540.695957pt;}
._a{width:672.384000pt;}
._9{width:817.325472pt;}
._d{width:901.884960pt;}
._16{width:1117.689120pt;}
._18{width:1143.164960pt;}
._17{width:1260.247840pt;}
.fs3{font-size:42.560000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fsb{font-size:58.560000pt;}
.fsc{font-size:64.000000pt;}
.fs2{font-size:71.040000pt;}
.fs6{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs8{font-size:96.000000pt;}
.fs1{font-size:106.560000pt;}
.fs4{font-size:128.000000pt;}
.fs9{font-size:149.440000pt;}
.fs0{font-size:170.560000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:31.279467pt;}
.y5{bottom:32.222000pt;}
.y43{bottom:58.841467pt;}
.y81{bottom:77.907760pt;}
.ya{bottom:78.470720pt;}
.yd{bottom:79.604667pt;}
.y65{bottom:88.047067pt;}
.y8a{bottom:89.291067pt;}
.yc{bottom:93.650373pt;}
.y54{bottom:94.308533pt;}
.y9{bottom:94.476000pt;}
.y1f{bottom:96.971147pt;}
.y88{bottom:97.066000pt;}
.y6b{bottom:97.820133pt;}
.y58{bottom:100.494667pt;}
.y6c{bottom:100.758533pt;}
.y51{bottom:100.833600pt;}
.y5b{bottom:101.115733pt;}
.y4{bottom:103.988933pt;}
.y76{bottom:104.393333pt;}
.y77{bottom:105.933600pt;}
.y7f{bottom:108.812800pt;}
.y8{bottom:113.596000pt;}
.y3f{bottom:121.129333pt;}
.y16{bottom:121.262320pt;}
.y6d{bottom:128.499867pt;}
.y1e{bottom:135.376427pt;}
.y3{bottom:135.988933pt;}
.y37{bottom:145.219600pt;}
.y61{bottom:148.429387pt;}
.y15{bottom:159.667600pt;}
.y3e{bottom:167.544267pt;}
.y1d{bottom:173.781707pt;}
.y36{bottom:174.019600pt;}
.y92{bottom:180.896320pt;}
.y85{bottom:184.054667pt;}
.y89{bottom:196.003333pt;}
.y14{bottom:198.067600pt;}
.y35{bottom:202.819600pt;}
.y23{bottom:206.998800pt;}
.y91{bottom:209.048800pt;}
.y7e{bottom:210.143253pt;}
.y84{bottom:210.144347pt;}
.y79{bottom:212.120427pt;}
.y1c{bottom:212.186987pt;}
.y4f{bottom:218.279333pt;}
.y60{bottom:220.137467pt;}
.y2{bottom:223.418160pt;}
.y73{bottom:228.612533pt;}
.y6e{bottom:231.473467pt;}
.y13{bottom:236.467600pt;}
.y17{bottom:240.227600pt;}
.y1b{bottom:250.592267pt;}
.y64{bottom:253.193467pt;}
.y34{bottom:255.067600pt;}
.y90{bottom:262.547040pt;}
.y12{bottom:263.421547pt;}
.y1{bottom:274.628800pt;}
.y41{bottom:276.236133pt;}
.y33{bottom:283.867600pt;}
.y87{bottom:295.508800pt;}
.y7c{bottom:298.916933pt;}
.y1a{bottom:300.462667pt;}
.y55{bottom:310.723333pt;}
.y11{bottom:311.426827pt;}
.y32{bottom:312.667600pt;}
.y8f{bottom:315.989760pt;}
.y80{bottom:322.454320pt;}
.y75{bottom:322.812000pt;}
.y67{bottom:323.990000pt;}
.y68{bottom:326.632400pt;}
.y5a{bottom:326.636640pt;}
.y56{bottom:328.522133pt;}
.y3d{bottom:329.647067pt;}
.y59{bottom:330.439200pt;}
.y63{bottom:331.786800pt;}
.y82{bottom:334.517680pt;}
.y72{bottom:340.553467pt;}
.y50{bottom:349.385733pt;}
.y31{bottom:351.067600pt;}
.y4e{bottom:351.857467pt;}
.y70{bottom:352.052667pt;}
.y6f{bottom:355.156347pt;}
.y10{bottom:359.432107pt;}
.yb{bottom:365.138933pt;}
.y8e{bottom:369.517920pt;}
.y93{bottom:371.572000pt;}
.y30{bottom:379.867600pt;}
.y48{bottom:394.580800pt;}
.y3c{bottom:395.123733pt;}
.y4d{bottom:397.117600pt;}
.y40{bottom:399.747067pt;}
.yf{bottom:407.437387pt;}
.y7d{bottom:410.520933pt;}
.y8d{bottom:423.046080pt;}
.y2f{bottom:423.427600pt;}
.y83{bottom:428.617067pt;}
.y47{bottom:434.036800pt;}
.y4c{bottom:436.573600pt;}
.y5f{bottom:439.585600pt;}
.y62{bottom:446.506133pt;}
.y71{bottom:450.902133pt;}
.y19{bottom:451.824533pt;}
.y5e{bottom:452.067600pt;}
.y2e{bottom:452.227600pt;}
.ye{bottom:455.442667pt;}
.y66{bottom:459.212400pt;}
.y46{bottom:473.492800pt;}
.y42{bottom:475.059333pt;}
.y4b{bottom:476.029600pt;}
.y8c{bottom:476.488800pt;}
.y6a{bottom:477.802800pt;}
.y2d{bottom:481.027600pt;}
.y2a{bottom:491.959600pt;}
.y69{bottom:497.034800pt;}
.y18{bottom:503.473600pt;}
.y86{bottom:506.618533pt;}
.y45{bottom:512.948800pt;}
.y29{bottom:513.559600pt;}
.y4a{bottom:515.485600pt;}
.y5d{bottom:519.425600pt;}
.y2c{bottom:523.051600pt;}
.y53{bottom:528.727067pt;}
.y8b{bottom:530.008800pt;}
.y39{bottom:532.900533pt;}
.y52{bottom:533.207067pt;}
.y28{bottom:535.159600pt;}
.y5c{bottom:545.987600pt;}
.y74{bottom:547.279200pt;}
.y57{bottom:549.516000pt;}
.y2b{bottom:551.851600pt;}
.y44{bottom:552.404800pt;}
.y24{bottom:554.628667pt;}
.y49{bottom:554.941600pt;}
.y20{bottom:555.189867pt;}
.y7a{bottom:555.428933pt;}
.y27{bottom:558.128133pt;}
.y38{bottom:559.540533pt;}
.y3a{bottom:563.136933pt;}
.y3b{bottom:565.089733pt;}
.y7b{bottom:577.244933pt;}
.y25{bottom:592.230000pt;}
.y22{bottom:641.046907pt;}
.y78{bottom:642.590267pt;}
.y6{bottom:646.788400pt;}
.y26{bottom:654.708400pt;}
.y21{bottom:667.683467pt;}
.h3{height:29.592500pt;}
.h1d{height:30.548438pt;}
.h1e{height:31.835371pt;}
.h1f{height:33.381504pt;}
.h11{height:34.453125pt;}
.h5{height:38.357812pt;}
.h14{height:42.032812pt;}
.h1c{height:45.937500pt;}
.hc{height:51.842500pt;}
.h17{height:52.279375pt;}
.h1b{height:52.607031pt;}
.h6{height:53.517187pt;}
.h10{height:53.881250pt;}
.h12{height:55.531587pt;}
.h13{height:56.648708pt;}
.h9{height:61.326562pt;}
.h8{height:61.743750pt;}
.hb{height:66.750000pt;}
.hf{height:68.906250pt;}
.he{height:70.634250pt;}
.ha{height:76.485937pt;}
.h7{height:77.006250pt;}
.h2{height:82.990625pt;}
.h4{height:91.875000pt;}
.h16{height:94.435000pt;}
.h19{height:102.535031pt;}
.hd{height:107.264062pt;}
.h1a{height:108.599375pt;}
.h1{height:122.423437pt;}
.h18{height:158.527375pt;}
.h15{height:180.579000pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5d{left:21.558533pt;}
.x68{left:35.652000pt;}
.x1{left:40.143600pt;}
.x58{left:46.226800pt;}
.x3{left:50.333333pt;}
.x3a{left:57.392533pt;}
.x18{left:59.933333pt;}
.x17{left:62.279200pt;}
.x2c{left:63.941333pt;}
.x62{left:65.908800pt;}
.x9{left:71.554533pt;}
.x63{left:74.889600pt;}
.xd{left:76.640267pt;}
.x1b{left:78.269333pt;}
.x23{left:82.973333pt;}
.x70{left:88.312267pt;}
.x42{left:96.019067pt;}
.x22{left:97.301333pt;}
.x60{left:111.777920pt;}
.x25{left:112.733333pt;}
.x5c{left:116.719333pt;}
.xa{left:119.559813pt;}
.x4a{left:120.753733pt;}
.x3d{left:127.624533pt;}
.x69{left:131.547867pt;}
.x3b{left:132.499733pt;}
.x4{left:145.726800pt;}
.x15{left:151.265467pt;}
.x1c{left:159.461333pt;}
.x12{left:170.955867pt;}
.x34{left:175.897733pt;}
.x59{left:209.921467pt;}
.x47{left:212.000533pt;}
.x45{left:214.013333pt;}
.x54{left:219.178347pt;}
.x41{left:231.831333pt;}
.x5{left:265.373467pt;}
.x16{left:270.258267pt;}
.x3c{left:276.976533pt;}
.x4d{left:307.534533pt;}
.x49{left:339.752667pt;}
.xf{left:342.731600pt;}
.x5f{left:347.028080pt;}
.x6a{left:350.957547pt;}
.x5e{left:354.099200pt;}
.x65{left:366.380560pt;}
.x55{left:380.076000pt;}
.x14{left:386.658533pt;}
.x19{left:431.069333pt;}
.x26{left:441.029333pt;}
.x2d{left:444.965333pt;}
.x27{left:450.389333pt;}
.x1d{left:457.373333pt;}
.xb{left:459.399600pt;}
.x1e{left:464.645333pt;}
.x6e{left:469.912427pt;}
.xc{left:478.279600pt;}
.x13{left:481.860533pt;}
.x5b{left:483.325067pt;}
.x24{left:489.437333pt;}
.x43{left:492.748427pt;}
.x35{left:513.725733pt;}
.xe{left:533.942000pt;}
.x10{left:542.195200pt;}
.x2e{left:553.517333pt;}
.x71{left:578.915600pt;}
.x2{left:582.730000pt;}
.x46{left:586.496133pt;}
.x64{left:590.648000pt;}
.x28{left:602.069333pt;}
.x37{left:612.761867pt;}
.x4e{left:647.414880pt;}
.x33{left:676.371653pt;}
.x3e{left:688.853333pt;}
.x4c{left:692.730000pt;}
.x36{left:723.914933pt;}
.x61{left:725.374933pt;}
.x8{left:735.828800pt;}
.x7{left:739.776800pt;}
.x6{left:741.046000pt;}
.x6f{left:742.522267pt;}
.x48{left:747.840533pt;}
.x6c{left:750.136667pt;}
.x56{left:794.043067pt;}
.x11{left:839.748800pt;}
.x52{left:851.411867pt;}
.x67{left:861.821333pt;}
.x1a{left:866.333333pt;}
.x29{left:868.565333pt;}
.x2a{left:872.093333pt;}
.x1f{left:881.141333pt;}
.x20{left:882.821333pt;}
.x2f{left:887.693333pt;}
.x44{left:891.146747pt;}
.x4b{left:906.119467pt;}
.x30{left:910.085333pt;}
.x2b{left:911.285333pt;}
.x40{left:929.916267pt;}
.x4f{left:932.916267pt;}
.x66{left:936.293333pt;}
.x21{left:939.773333pt;}
.x50{left:957.331867pt;}
.x38{left:963.774267pt;}
.x32{left:965.495573pt;}
.x6d{left:1003.935707pt;}
.x51{left:1013.491867pt;}
.x57{left:1014.870533pt;}
.x31{left:1040.460533pt;}
.x39{left:1092.467067pt;}
.x53{left:1098.537547pt;}
.x5a{left:1101.182267pt;}
.x3f{left:1117.332267pt;}
.x6b{left:1132.821387pt;}
}




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