
    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_8b8927ef0b5eb0f9c3939b9d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_5c997239aca00429bf4f0c13.woff')format("woff");}.ff2{font-family:ff2;line-height:1.050781;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_6273b2eedc2932a7f7a0b8c6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.931152;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_9815eb5d4033357ff29c5f63.woff')format("woff");}.ff4{font-family:ff4;line-height:1.050781;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_007dc7573d2c920926d3b809.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708000;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_2dd48bb3517b03c32db21015.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931152;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_4b8f28ddd3807530265f2320.woff')format("woff");}.ff7{font-family:ff7;line-height:1.020000;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_0bd541460b9efbe900f380bb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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_7e68b155c137eccdaf28f225.woff')format("woff");}.ff9{font-family:ff9;line-height:1.050781;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_242abad41debc048ac643845.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eef71dffb3740b93453d9935.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_161f7d6d90acf6fa5a606dba.woff')format("woff");}.ffc{font-family:ffc;line-height:1.082031;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:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.800600px;}
.v1{vertical-align:23.760000px;}
.ls35{letter-spacing:-7.200000px;}
.ls41{letter-spacing:-2.016000px;}
.ls2f{letter-spacing:-1.800000px;}
.ls33{letter-spacing:-1.368000px;}
.ls42{letter-spacing:-1.296000px;}
.ls3e{letter-spacing:-1.224000px;}
.ls14{letter-spacing:-1.152000px;}
.ls3b{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-1.020000px;}
.ls26{letter-spacing:-1.008000px;}
.ls28{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.864000px;}
.ls2c{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.600000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls25{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.300000px;}
.ls24{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.216000px;}
.ls40{letter-spacing:-0.210000px;}
.ls18{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.024000px;}
.lsf{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.144000px;}
.ls3a{letter-spacing:0.151200px;}
.ls39{letter-spacing:0.216000px;}
.ls3c{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.648000px;}
.ls31{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.864000px;}
.ls30{letter-spacing:0.936000px;}
.ls27{letter-spacing:1.008000px;}
.ls23{letter-spacing:1.080000px;}
.ls1f{letter-spacing:1.152000px;}
.ls13{letter-spacing:1.224000px;}
.ls1e{letter-spacing:1.296000px;}
.ls38{letter-spacing:1.360800px;}
.ls2d{letter-spacing:1.368000px;}
.ls22{letter-spacing:1.440000px;}
.ls29{letter-spacing:1.512000px;}
.ls12{letter-spacing:1.584000px;}
.ls37{letter-spacing:1.656000px;}
.ls3f{letter-spacing:1.728000px;}
.ls3d{letter-spacing:1.872000px;}
.ls36{letter-spacing:1.944000px;}
.ls2e{letter-spacing:2.232000px;}
.ls21{letter-spacing:2.808000px;}
.ls0{letter-spacing:4.260000px;}
.lsb{letter-spacing:4.368000px;}
.ls43{letter-spacing:4.752000px;}
.ls5{letter-spacing:8.394000px;}
.ls6{letter-spacing:8.430000px;}
.ls4{letter-spacing:8.460000px;}
.ls3{letter-spacing:10.740000px;}
.ls1{letter-spacing:265.560000px;}
.ls2{letter-spacing:712.680000px;}
.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;}
}
.ws14{word-spacing:-63.576000px;}
.ws70{word-spacing:-61.632000px;}
.ws1{word-spacing:-25.290000px;}
.ws16{word-spacing:-20.232000px;}
.ws35{word-spacing:-18.288000px;}
.ws55{word-spacing:-17.784000px;}
.ws56{word-spacing:-17.712000px;}
.ws7d{word-spacing:-16.860000px;}
.ws66{word-spacing:-15.523200px;}
.ws6f{word-spacing:-14.313600px;}
.ws15{word-spacing:-14.162400px;}
.ws67{word-spacing:-13.488000px;}
.ws7c{word-spacing:-11.592000px;}
.ws90{word-spacing:-11.376000px;}
.ws9{word-spacing:-8.460000px;}
.ws8e{word-spacing:-4.752000px;}
.ws8{word-spacing:-4.368000px;}
.ws5e{word-spacing:-2.160000px;}
.ws4b{word-spacing:-1.944000px;}
.ws78{word-spacing:-1.224000px;}
.ws3e{word-spacing:-1.080000px;}
.ws26{word-spacing:-0.864000px;}
.ws71{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.360000px;}
.ws88{word-spacing:-0.288000px;}
.ws3{word-spacing:0.000000px;}
.ws5c{word-spacing:0.072000px;}
.ws17{word-spacing:0.288000px;}
.ws91{word-spacing:0.300000px;}
.ws12{word-spacing:0.360000px;}
.ws64{word-spacing:0.432000px;}
.ws54{word-spacing:0.504000px;}
.ws92{word-spacing:0.600000px;}
.ws59{word-spacing:0.720000px;}
.ws4d{word-spacing:0.864000px;}
.ws45{word-spacing:0.936000px;}
.ws3a{word-spacing:1.224000px;}
.ws21{word-spacing:1.296000px;}
.ws3d{word-spacing:1.368000px;}
.ws52{word-spacing:1.440000px;}
.ws83{word-spacing:1.584000px;}
.ws81{word-spacing:1.656000px;}
.ws6{word-spacing:1.800000px;}
.ws84{word-spacing:1.872000px;}
.ws82{word-spacing:1.944000px;}
.ws3b{word-spacing:2.016000px;}
.ws74{word-spacing:2.088000px;}
.ws53{word-spacing:2.160000px;}
.ws36{word-spacing:2.304000px;}
.ws38{word-spacing:2.448000px;}
.ws20{word-spacing:2.808000px;}
.ws5a{word-spacing:2.880000px;}
.ws8f{word-spacing:2.976000px;}
.ws18{word-spacing:3.024000px;}
.ws1f{word-spacing:3.168000px;}
.ws57{word-spacing:3.312000px;}
.ws23{word-spacing:3.360000px;}
.ws37{word-spacing:3.456000px;}
.ws62{word-spacing:3.528000px;}
.ws4e{word-spacing:3.600000px;}
.ws4{word-spacing:3.720000px;}
.ws73{word-spacing:3.744000px;}
.ws87{word-spacing:3.816000px;}
.ws61{word-spacing:3.840000px;}
.ws60{word-spacing:3.960000px;}
.ws8b{word-spacing:4.020000px;}
.ws77{word-spacing:4.032000px;}
.ws31{word-spacing:4.104000px;}
.ws7e{word-spacing:4.140000px;}
.ws5b{word-spacing:4.176000px;}
.ws2{word-spacing:4.200000px;}
.wse{word-spacing:4.248000px;}
.ws85{word-spacing:4.320000px;}
.ws7{word-spacing:4.464000px;}
.ws40{word-spacing:4.608000px;}
.ws1b{word-spacing:4.680000px;}
.ws76{word-spacing:4.752000px;}
.ws1c{word-spacing:4.824000px;}
.ws58{word-spacing:4.896000px;}
.wsf{word-spacing:5.040000px;}
.ws30{word-spacing:5.112000px;}
.ws19{word-spacing:5.184000px;}
.ws39{word-spacing:5.256000px;}
.ws34{word-spacing:5.328000px;}
.ws3c{word-spacing:5.400000px;}
.ws68{word-spacing:5.472000px;}
.ws72{word-spacing:5.616000px;}
.ws25{word-spacing:5.760000px;}
.ws6c{word-spacing:5.904000px;}
.ws50{word-spacing:6.120000px;}
.ws44{word-spacing:6.192000px;}
.ws27{word-spacing:6.264000px;}
.ws33{word-spacing:6.480000px;}
.ws79{word-spacing:6.552000px;}
.ws2e{word-spacing:6.624000px;}
.ws6a{word-spacing:6.912000px;}
.ws63{word-spacing:6.984000px;}
.ws65{word-spacing:7.200000px;}
.ws3f{word-spacing:7.272000px;}
.ws2f{word-spacing:7.344000px;}
.ws86{word-spacing:7.416000px;}
.ws11{word-spacing:7.560000px;}
.ws49{word-spacing:7.704000px;}
.ws4c{word-spacing:7.920000px;}
.ws43{word-spacing:7.992000px;}
.ws28{word-spacing:8.208000px;}
.ws0{word-spacing:8.376000px;}
.ws5{word-spacing:8.400000px;}
.ws51{word-spacing:8.424000px;}
.wsa{word-spacing:8.496000px;}
.wsc{word-spacing:8.784000px;}
.ws2b{word-spacing:9.072000px;}
.ws6e{word-spacing:9.144000px;}
.ws7b{word-spacing:9.216000px;}
.ws5f{word-spacing:9.288000px;}
.ws6b{word-spacing:9.360000px;}
.ws8a{word-spacing:9.432000px;}
.ws1e{word-spacing:9.504000px;}
.ws80{word-spacing:9.576000px;}
.ws8c{word-spacing:9.648000px;}
.ws29{word-spacing:9.720000px;}
.ws10{word-spacing:9.864000px;}
.ws13{word-spacing:9.936000px;}
.wsb{word-spacing:10.008000px;}
.wsd{word-spacing:10.080000px;}
.ws1a{word-spacing:10.152000px;}
.ws89{word-spacing:10.296000px;}
.ws32{word-spacing:10.512000px;}
.ws41{word-spacing:10.584000px;}
.ws2d{word-spacing:10.800000px;}
.ws2a{word-spacing:11.016000px;}
.ws22{word-spacing:11.160000px;}
.ws8d{word-spacing:11.304000px;}
.ws2c{word-spacing:11.592000px;}
.ws75{word-spacing:11.664000px;}
.ws42{word-spacing:11.736000px;}
.ws4f{word-spacing:12.168000px;}
.ws48{word-spacing:12.312000px;}
.ws46{word-spacing:12.384000px;}
.ws4a{word-spacing:12.456000px;}
.ws1d{word-spacing:13.032000px;}
.ws69{word-spacing:13.176000px;}
.ws6d{word-spacing:13.464000px;}
.ws7f{word-spacing:13.752000px;}
.ws7a{word-spacing:14.616000px;}
.ws47{word-spacing:17.784000px;}
.ws5d{word-spacing:685.530000px;}
._14{margin-left:-23.700000px;}
._f{margin-left:-22.248000px;}
._19{margin-left:-16.320000px;}
._10{margin-left:-14.880000px;}
._1b{margin-left:-13.278000px;}
._6{margin-left:-11.988000px;}
._e{margin-left:-9.417600px;}
._12{margin-left:-8.388000px;}
._7{margin-left:-7.272000px;}
._3{margin-left:-6.036000px;}
._b{margin-left:-5.028000px;}
._a{margin-left:-3.648000px;}
._5{margin-left:-1.860000px;}
._2{width:1.512000px;}
._4{width:3.012000px;}
._8{width:4.170600px;}
._1a{width:5.211000px;}
._11{width:7.243200px;}
._18{width:9.000600px;}
._9{width:12.660000px;}
._16{width:13.796100px;}
._1{width:28.500000px;}
._d{width:31.646100px;}
._17{width:60.340800px;}
._13{width:93.936000px;}
._0{width:201.564000px;}
._c{width:203.322000px;}
._15{width:408.768000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:39.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.yd2{bottom:116.999700px;}
.y47{bottom:117.000000px;}
.y8f{bottom:117.113850px;}
.y23{bottom:117.324750px;}
.y6c{bottom:118.224000px;}
.y1b8{bottom:118.246050px;}
.y250{bottom:119.052000px;}
.y153{bottom:119.509800px;}
.y1f6{bottom:120.345900px;}
.y27a{bottom:120.372000px;}
.y21b{bottom:120.504000px;}
.y16e{bottom:121.207350px;}
.yf1{bottom:121.207500px;}
.y125{bottom:121.207650px;}
.y24f{bottom:134.052000px;}
.yd1{bottom:136.207200px;}
.y46{bottom:136.207500px;}
.y1b7{bottom:137.746050px;}
.y279{bottom:138.672000px;}
.y1f5{bottom:139.245900px;}
.yb0{bottom:139.500000px;}
.y22{bottom:139.824750px;}
.y8e{bottom:139.919850px;}
.y6b{bottom:140.418000px;}
.y21a{bottom:142.554000px;}
.y152{bottom:142.765800px;}
.y16d{bottom:143.707350px;}
.yf0{bottom:143.707500px;}
.y124{bottom:143.707650px;}
.y24e{bottom:149.052000px;}
.y45{bottom:154.500000px;}
.y278{bottom:156.972000px;}
.y1b6{bottom:157.246050px;}
.y1f4{bottom:158.145900px;}
.y21{bottom:162.324750px;}
.y6a{bottom:162.612000px;}
.y8d{bottom:162.725850px;}
.y24d{bottom:164.052000px;}
.y219{bottom:164.604000px;}
.y1da{bottom:165.126450px;}
.y151{bottom:166.015800px;}
.y194{bottom:167.310150px;}
.yaf{bottom:173.250000px;}
.y44{bottom:173.707500px;}
.y277{bottom:175.272000px;}
.y1b5{bottom:176.746050px;}
.y24c{bottom:179.052000px;}
.y123{bottom:184.272750px;}
.y69{bottom:184.806000px;}
.y20{bottom:184.824750px;}
.y8c{bottom:185.531850px;}
.y1f3{bottom:185.688000px;}
.yd0{bottom:186.605700px;}
.y1d9{bottom:187.176450px;}
.yef{bottom:189.726450px;}
.y193{bottom:190.566150px;}
.y16c{bottom:190.724100px;}
.y24b{bottom:194.052000px;}
.yae{bottom:195.750000px;}
.y1b4{bottom:196.246050px;}
.y218{bottom:197.454000px;}
.y173{bottom:200.160450px;}
.y122{bottom:202.572750px;}
.y276{bottom:204.372000px;}
.y68{bottom:207.000000px;}
.y1f{bottom:207.324750px;}
.y1f2{bottom:207.882000px;}
.y8b{bottom:208.337850px;}
.y24a{bottom:209.052000px;}
.y1d8{bottom:209.226450px;}
.ycf{bottom:209.699700px;}
.y43{bottom:210.750000px;}
.yee{bottom:212.226450px;}
.y150{bottom:212.443800px;}
.y192{bottom:213.066150px;}
.y16b{bottom:213.530100px;}
.y1b3{bottom:215.746050px;}
.yad{bottom:218.250000px;}
.y172{bottom:218.910450px;}
.y217{bottom:220.260000px;}
.y121{bottom:220.872750px;}
.y11e{bottom:220.879200px;}
.y275{bottom:222.672000px;}
.y249{bottom:224.052000px;}
.y67{bottom:229.194000px;}
.y1f1{bottom:230.076000px;}
.y8a{bottom:231.143850px;}
.y42{bottom:232.800000px;}
.yce{bottom:232.950000px;}
.yed{bottom:234.726450px;}
.y1b2{bottom:235.246050px;}
.y191{bottom:235.566150px;}
.y14f{bottom:235.699800px;}
.y16a{bottom:236.336100px;}
.y171{bottom:237.660450px;}
.y1e{bottom:238.328700px;}
.y248{bottom:239.052000px;}
.y120{bottom:239.172750px;}
.y11d{bottom:239.179200px;}
.yac{bottom:240.750000px;}
.y274{bottom:240.972000px;}
.y216{bottom:243.066000px;}
.y66{bottom:251.388000px;}
.y1f0{bottom:252.270000px;}
.y1d7{bottom:253.326450px;}
.y89{bottom:253.949850px;}
.y247{bottom:254.196000px;}
.y1b1{bottom:254.746050px;}
.y41{bottom:254.850000px;}
.ycd{bottom:256.044000px;}
.y170{bottom:256.410450px;}
.y1d{bottom:257.078700px;}
.y11f{bottom:257.472750px;}
.y11c{bottom:257.479200px;}
.y190{bottom:258.066150px;}
.y14e{bottom:258.955800px;}
.y169{bottom:259.142100px;}
.y273{bottom:259.272000px;}
.yab{bottom:263.250000px;}
.yec{bottom:265.730250px;}
.y215{bottom:265.872000px;}
.y246{bottom:269.340000px;}
.y65{bottom:273.582000px;}
.y1b0{bottom:274.246050px;}
.y1ef{bottom:274.464000px;}
.y1d6{bottom:275.376450px;}
.y1c{bottom:275.828700px;}
.y88{bottom:276.749850px;}
.y40{bottom:276.900000px;}
.ycc{bottom:279.138000px;}
.y11b{bottom:280.204200px;}
.y18f{bottom:280.566150px;}
.y14d{bottom:282.211800px;}
.y16f{bottom:283.395450px;}
.yeb{bottom:284.480250px;}
.y245{bottom:284.484000px;}
.yaa{bottom:285.750000px;}
.y272{bottom:288.372000px;}
.y214{bottom:288.678000px;}
.y168{bottom:290.445900px;}
.y1af{bottom:293.746050px;}
.y1b{bottom:294.578700px;}
.y64{bottom:295.776000px;}
.y1ee{bottom:296.658000px;}
.y1d5{bottom:297.426450px;}
.y11a{bottom:298.510650px;}
.y3f{bottom:298.950000px;}
.y244{bottom:299.628000px;}
.ycb{bottom:302.232000px;}
.y18e{bottom:303.066150px;}
.yea{bottom:303.230250px;}
.y14c{bottom:305.467800px;}
.ya9{bottom:308.250000px;}
.y167{bottom:309.495900px;}
.y213{bottom:311.484000px;}
.y1a{bottom:313.328700px;}
.y243{bottom:314.772000px;}
.y63{bottom:317.970000px;}
.y1ed{bottom:318.852000px;}
.y1d4{bottom:319.476450px;}
.y3e{bottom:321.000000px;}
.y118{bottom:321.242250px;}
.y1ae{bottom:321.750000px;}
.ye9{bottom:321.980250px;}
.y87{bottom:322.206000px;}
.yca{bottom:325.326000px;}
.y18d{bottom:325.566150px;}
.y166{bottom:328.545900px;}
.y271{bottom:328.722000px;}
.y14b{bottom:328.723800px;}
.y242{bottom:329.916000px;}
.ya8{bottom:330.750000px;}
.y19{bottom:332.078700px;}
.y212{bottom:334.290000px;}
.y117{bottom:339.542250px;}
.y62{bottom:340.164000px;}
.ye8{bottom:340.730250px;}
.y1ec{bottom:341.046000px;}
.y1d3{bottom:341.526450px;}
.y3d{bottom:343.050000px;}
.y1ad{bottom:345.000000px;}
.y86{bottom:345.012000px;}
.y241{bottom:345.060000px;}
.y270{bottom:347.022000px;}
.y165{bottom:347.595900px;}
.y18c{bottom:348.066150px;}
.yc9{bottom:348.420000px;}
.y18{bottom:350.828700px;}
.y14a{bottom:351.979800px;}
.ya7{bottom:353.250000px;}
.y211{bottom:357.096000px;}
.y119{bottom:357.835650px;}
.y116{bottom:357.842250px;}
.y240{bottom:360.204000px;}
.y61{bottom:362.358000px;}
.y1eb{bottom:363.240000px;}
.y1d2{bottom:363.576450px;}
.y3c{bottom:365.100000px;}
.y26f{bottom:365.322000px;}
.y164{bottom:366.645900px;}
.y85{bottom:367.818000px;}
.ye7{bottom:367.984200px;}
.y17{bottom:369.578700px;}
.y18b{bottom:370.566150px;}
.y149{bottom:375.235800px;}
.y23f{bottom:375.360000px;}
.ya6{bottom:375.750000px;}
.y210{bottom:379.902000px;}
.y113{bottom:380.573700px;}
.yc8{bottom:383.376000px;}
.y26e{bottom:383.622000px;}
.y60{bottom:384.552000px;}
.y1ea{bottom:385.434000px;}
.y1d1{bottom:385.626450px;}
.y163{bottom:385.695900px;}
.y3b{bottom:387.150000px;}
.y16{bottom:388.328700px;}
.ye6{bottom:390.484200px;}
.y23e{bottom:390.504000px;}
.y84{bottom:390.624000px;}
.y1ac{bottom:391.362000px;}
.y18a{bottom:393.066150px;}
.ya5{bottom:398.250000px;}
.y148{bottom:398.491800px;}
.y112{bottom:398.873700px;}
.y26d{bottom:401.922000px;}
.y20f{bottom:402.708000px;}
.y23d{bottom:405.648000px;}
.yc7{bottom:406.470000px;}
.y5f{bottom:406.746000px;}
.y15{bottom:407.078700px;}
.y1e9{bottom:407.628000px;}
.y3a{bottom:409.200000px;}
.ye5{bottom:412.984200px;}
.y162{bottom:413.213850px;}
.y1ab{bottom:414.618000px;}
.y1d0{bottom:416.180250px;}
.y111{bottom:417.173700px;}
.y26c{bottom:420.222000px;}
.ya4{bottom:420.750000px;}
.y23c{bottom:420.792000px;}
.y147{bottom:421.747800px;}
.y83{bottom:424.968000px;}
.y20e{bottom:425.514000px;}
.y189{bottom:426.816150px;}
.y5e{bottom:428.940000px;}
.yc6{bottom:429.564000px;}
.y1e8{bottom:429.822000px;}
.y39{bottom:431.250000px;}
.y14{bottom:434.332650px;}
.y1cf{bottom:434.480250px;}
.y115{bottom:435.467250px;}
.y110{bottom:435.473700px;}
.ye4{bottom:435.484200px;}
.y23b{bottom:435.936000px;}
.y161{bottom:436.019850px;}
.y1aa{bottom:437.874000px;}
.y26b{bottom:438.522000px;}
.ya3{bottom:443.250000px;}
.y146{bottom:445.003800px;}
.y82{bottom:447.774000px;}
.y20d{bottom:448.320000px;}
.y188{bottom:449.316150px;}
.y23a{bottom:451.092000px;}
.y5d{bottom:451.134000px;}
.y1e7{bottom:452.016000px;}
.yc5{bottom:452.658000px;}
.y1ce{bottom:452.780250px;}
.y38{bottom:453.300000px;}
.y114{bottom:453.767250px;}
.y10f{bottom:453.773700px;}
.y26a{bottom:456.822000px;}
.y13{bottom:456.832650px;}
.ye3{bottom:457.984200px;}
.y160{bottom:458.825850px;}
.y1a9{bottom:461.130000px;}
.ya2{bottom:465.750000px;}
.y239{bottom:466.236000px;}
.y145{bottom:468.259800px;}
.y81{bottom:470.580000px;}
.y1cd{bottom:471.080250px;}
.y20c{bottom:471.126000px;}
.y187{bottom:471.816150px;}
.y5c{bottom:473.328000px;}
.y1e6{bottom:474.210000px;}
.y269{bottom:475.122000px;}
.y37{bottom:475.350000px;}
.yc4{bottom:475.752000px;}
.y10a{bottom:476.505150px;}
.y12{bottom:479.332650px;}
.y238{bottom:481.380000px;}
.y1a8{bottom:484.386000px;}
.ya1{bottom:488.250000px;}
.ye2{bottom:488.988150px;}
.y1cc{bottom:489.380250px;}
.y144{bottom:491.515800px;}
.y15f{bottom:493.169850px;}
.y80{bottom:493.386000px;}
.y268{bottom:493.422000px;}
.y20b{bottom:493.932000px;}
.y186{bottom:494.316150px;}
.y109{bottom:494.805150px;}
.y5b{bottom:495.522000px;}
.y1e5{bottom:496.404000px;}
.y237{bottom:496.524000px;}
.yc3{bottom:498.846000px;}
.y11{bottom:501.832650px;}
.y1a7{bottom:507.642000px;}
.ye1{bottom:507.738150px;}
.ya0{bottom:510.750000px;}
.y236{bottom:511.668000px;}
.y267{bottom:511.722000px;}
.y10e{bottom:513.098700px;}
.y108{bottom:513.105150px;}
.y15e{bottom:515.975850px;}
.y1cb{bottom:516.184200px;}
.y7f{bottom:516.192000px;}
.y20a{bottom:516.738000px;}
.y185{bottom:516.816150px;}
.y5a{bottom:517.716000px;}
.y1e4{bottom:518.598000px;}
.y36{bottom:519.444000px;}
.yc2{bottom:521.940000px;}
.y10{bottom:524.332650px;}
.ye0{bottom:526.488150px;}
.y235{bottom:526.824000px;}
.y266{bottom:530.022000px;}
.y1a6{bottom:530.898000px;}
.y10d{bottom:531.398700px;}
.y107{bottom:531.405150px;}
.y9f{bottom:533.250000px;}
.y15d{bottom:538.781850px;}
.y7e{bottom:538.998000px;}
.y184{bottom:539.316150px;}
.y59{bottom:539.910000px;}
.y142{bottom:540.143100px;}
.y1e3{bottom:540.792000px;}
.y35{bottom:541.494000px;}
.y234{bottom:541.968000px;}
.yc1{bottom:545.034000px;}
.ydf{bottom:545.238150px;}
.y1ca{bottom:546.738150px;}
.yf{bottom:546.832650px;}
.y209{bottom:548.041950px;}
.y265{bottom:548.322000px;}
.y10c{bottom:549.698700px;}
.y106{bottom:549.705150px;}
.y1a5{bottom:554.154000px;}
.y9e{bottom:555.750000px;}
.y233{bottom:557.112000px;}
.y141{bottom:559.193100px;}
.y15c{bottom:561.587850px;}
.y7d{bottom:561.804000px;}
.y58{bottom:562.104000px;}
.y1e2{bottom:562.986000px;}
.y34{bottom:563.544000px;}
.yde{bottom:563.988150px;}
.y1c9{bottom:565.038150px;}
.y264{bottom:566.622000px;}
.y208{bottom:567.091950px;}
.y10b{bottom:567.998700px;}
.y105{bottom:568.005150px;}
.y232{bottom:572.256000px;}
.y1a4{bottom:577.410000px;}
.y140{bottom:578.243100px;}
.y143{bottom:578.244750px;}
.y9d{bottom:578.250000px;}
.yc0{bottom:579.990000px;}
.y1c8{bottom:583.338150px;}
.y57{bottom:584.298000px;}
.y15b{bottom:584.393850px;}
.y7c{bottom:584.610000px;}
.y263{bottom:584.922000px;}
.y1e1{bottom:585.180000px;}
.y33{bottom:585.594000px;}
.y207{bottom:586.141950px;}
.y183{bottom:587.190450px;}
.y231{bottom:587.400000px;}
.y101{bottom:590.732700px;}
.ydd{bottom:591.242100px;}
.ye{bottom:591.832650px;}
.y1a3{bottom:600.666000px;}
.y9c{bottom:600.750000px;}
.y1c7{bottom:601.638150px;}
.y230{bottom:602.556000px;}
.ybf{bottom:603.084000px;}
.y262{bottom:603.222000px;}
.y206{bottom:605.191950px;}
.y13f{bottom:605.228100px;}
.y182{bottom:605.940450px;}
.y56{bottom:606.492000px;}
.y15a{bottom:607.176000px;}
.y1e0{bottom:607.374000px;}
.y7b{bottom:607.416000px;}
.y32{bottom:607.644000px;}
.y104{bottom:609.030150px;}
.y100{bottom:609.032700px;}
.yd{bottom:610.582650px;}
.ydc{bottom:613.742100px;}
.y22f{bottom:617.700000px;}
.y1c6{bottom:619.938150px;}
.y261{bottom:621.522000px;}
.y9b{bottom:623.250000px;}
.y1a2{bottom:623.922000px;}
.y205{bottom:624.241950px;}
.y13c{bottom:624.276600px;}
.y13e{bottom:624.278100px;}
.y181{bottom:624.690450px;}
.ybe{bottom:626.178000px;}
.y103{bottom:627.330150px;}
.yff{bottom:627.332700px;}
.y55{bottom:628.686000px;}
.yc{bottom:629.332650px;}
.y1df{bottom:629.568000px;}
.y31{bottom:629.694000px;}
.y7a{bottom:630.222000px;}
.y22e{bottom:632.844000px;}
.ydb{bottom:636.242100px;}
.y1c5{bottom:638.238150px;}
.y260{bottom:639.822000px;}
.y159{bottom:641.520000px;}
.y204{bottom:643.291950px;}
.y13b{bottom:643.326600px;}
.y13d{bottom:643.328100px;}
.y180{bottom:643.440450px;}
.y102{bottom:645.630150px;}
.yfe{bottom:645.632700px;}
.y9a{bottom:645.750000px;}
.y1a1{bottom:647.178000px;}
.y22d{bottom:647.988000px;}
.ybd{bottom:649.272000px;}
.y54{bottom:650.880000px;}
.y1de{bottom:651.762000px;}
.y79{bottom:653.028000px;}
.y1c4{bottom:656.538150px;}
.y25f{bottom:658.122000px;}
.yda{bottom:658.742100px;}
.y17f{bottom:662.190450px;}
.y203{bottom:662.341950px;}
.y30{bottom:662.850000px;}
.y22c{bottom:663.132000px;}
.y158{bottom:664.326000px;}
.y99{bottom:668.250000px;}
.y137{bottom:670.310100px;}
.y13a{bottom:670.311600px;}
.y1a0{bottom:670.434000px;}
.yfd{bottom:670.487700px;}
.yb{bottom:671.468550px;}
.ybc{bottom:672.366000px;}
.y1dd{bottom:673.956000px;}
.y1c3{bottom:674.838150px;}
.y78{bottom:675.834000px;}
.y25e{bottom:676.422000px;}
.y22b{bottom:678.288000px;}
.y17e{bottom:680.940450px;}
.yd9{bottom:681.242100px;}
.y202{bottom:681.391950px;}
.y53{bottom:683.874000px;}
.y2f{bottom:684.900000px;}
.y157{bottom:687.132000px;}
.y136{bottom:689.360100px;}
.y139{bottom:689.361600px;}
.y98{bottom:690.750000px;}
.y1c2{bottom:693.138150px;}
.y22a{bottom:693.432000px;}
.y19f{bottom:693.690000px;}
.ya{bottom:693.968550px;}
.y25d{bottom:694.722000px;}
.ybb{bottom:695.460000px;}
.y1dc{bottom:696.150000px;}
.y77{bottom:698.640000px;}
.y17d{bottom:699.690450px;}
.y201{bottom:700.441950px;}
.yd8{bottom:703.742100px;}
.y52{bottom:706.068000px;}
.y2e{bottom:706.950000px;}
.y135{bottom:708.410100px;}
.y138{bottom:708.411600px;}
.y229{bottom:708.576000px;}
.y156{bottom:709.938000px;}
.y1c1{bottom:711.438150px;}
.y25c{bottom:713.022000px;}
.y97{bottom:713.250000px;}
.y19e{bottom:716.946000px;}
.yfc{bottom:717.836250px;}
.y1db{bottom:718.200000px;}
.yba{bottom:718.554000px;}
.y76{bottom:721.446000px;}
.y228{bottom:723.720000px;}
.y17c{bottom:726.675450px;}
.y200{bottom:727.965900px;}
.y51{bottom:728.262000px;}
.y2d{bottom:729.000000px;}
.y25b{bottom:731.322000px;}
.y155{bottom:732.744000px;}
.yd7{bottom:734.746050px;}
.y133{bottom:735.393600px;}
.y96{bottom:735.750000px;}
.y1c0{bottom:738.242100px;}
.y227{bottom:738.864000px;}
.yfb{bottom:739.742250px;}
.y9{bottom:739.854300px;}
.y19d{bottom:740.202000px;}
.yb9{bottom:741.648000px;}
.y75{bottom:744.252000px;}
.y17b{bottom:745.425450px;}
.y25a{bottom:749.622000px;}
.y50{bottom:750.456000px;}
.y1ff{bottom:750.771900px;}
.y2c{bottom:751.050000px;}
.yd6{bottom:753.496050px;}
.y226{bottom:754.008000px;}
.y132{bottom:754.443600px;}
.y154{bottom:755.520000px;}
.y95{bottom:758.250000px;}
.y8{bottom:762.354300px;}
.y19c{bottom:763.458000px;}
.y17a{bottom:764.175450px;}
.yb8{bottom:764.742000px;}
.y74{bottom:767.058000px;}
.y259{bottom:767.922000px;}
.y1bf{bottom:768.796050px;}
.y225{bottom:769.164000px;}
.yfa{bottom:770.146200px;}
.yd5{bottom:772.246050px;}
.y4f{bottom:772.650000px;}
.y2b{bottom:773.100000px;}
.y131{bottom:773.493600px;}
.y134{bottom:773.495100px;}
.y1fe{bottom:773.577900px;}
.y179{bottom:782.925450px;}
.y224{bottom:784.308000px;}
.y258{bottom:786.222000px;}
.y19b{bottom:786.714000px;}
.y1be{bottom:787.096050px;}
.yb7{bottom:787.836000px;}
.yf9{bottom:788.296200px;}
.y73{bottom:789.864000px;}
.yd4{bottom:790.996050px;}
.y94{bottom:792.000000px;}
.y4e{bottom:794.700000px;}
.y2a{bottom:795.150000px;}
.y1fd{bottom:796.383900px;}
.y223{bottom:799.452000px;}
.y12e{bottom:800.476950px;}
.y178{bottom:801.675450px;}
.y257{bottom:804.522000px;}
.y1bd{bottom:805.396050px;}
.yf8{bottom:806.446200px;}
.yd3{bottom:809.746050px;}
.y19a{bottom:809.970000px;}
.yb6{bottom:810.930000px;}
.y72{bottom:812.670000px;}
.y93{bottom:814.500000px;}
.y222{bottom:814.596000px;}
.y4d{bottom:816.750000px;}
.y29{bottom:817.200000px;}
.y1fc{bottom:819.189900px;}
.y12d{bottom:819.526950px;}
.y130{bottom:819.528600px;}
.y1bc{bottom:823.696050px;}
.yf7{bottom:824.596200px;}
.y177{bottom:828.660450px;}
.y256{bottom:829.218000px;}
.y7{bottom:829.500000px;}
.y221{bottom:829.740000px;}
.y199{bottom:833.226000px;}
.yb5{bottom:834.024000px;}
.y71{bottom:835.476000px;}
.y92{bottom:837.000000px;}
.y12c{bottom:838.576950px;}
.y12f{bottom:838.578600px;}
.y4c{bottom:838.800000px;}
.y28{bottom:839.250000px;}
.y1fb{bottom:841.995900px;}
.y1bb{bottom:841.996050px;}
.yf6{bottom:842.746200px;}
.y220{bottom:844.896000px;}
.y255{bottom:847.218000px;}
.y176{bottom:847.410450px;}
.y198{bottom:856.482000px;}
.yb4{bottom:857.118000px;}
.y70{bottom:858.282000px;}
.y6{bottom:859.500000px;}
.y21f{bottom:860.040000px;}
.y1ba{bottom:860.296050px;}
.y4b{bottom:860.850000px;}
.yf5{bottom:860.896200px;}
.y27{bottom:861.300000px;}
.y12b{bottom:865.561950px;}
.y175{bottom:866.160450px;}
.y1fa{bottom:873.300000px;}
.y21e{bottom:875.184000px;}
.y1b9{bottom:878.596050px;}
.yf4{bottom:879.046200px;}
.y197{bottom:879.738000px;}
.yb3{bottom:880.212000px;}
.y6f{bottom:881.088000px;}
.y91{bottom:882.000000px;}
.y4a{bottom:882.900000px;}
.y26{bottom:883.350000px;}
.y128{bottom:884.610450px;}
.y12a{bottom:884.611950px;}
.y174{bottom:884.910450px;}
.y5{bottom:889.500000px;}
.y21d{bottom:890.328000px;}
.y254{bottom:891.318000px;}
.y1f9{bottom:892.350000px;}
.y196{bottom:902.994000px;}
.yb2{bottom:903.306000px;}
.y127{bottom:903.660450px;}
.y129{bottom:903.661950px;}
.y6e{bottom:903.894000px;}
.y90{bottom:904.500000px;}
.y49{bottom:904.950000px;}
.y25{bottom:905.400000px;}
.y21c{bottom:905.472000px;}
.yf3{bottom:905.694000px;}
.y253{bottom:905.862000px;}
.y1f8{bottom:911.400000px;}
.y4{bottom:919.500000px;}
.y252{bottom:920.406000px;}
.y195{bottom:926.250000px;}
.yb1{bottom:926.400000px;}
.y6d{bottom:926.700000px;}
.y48{bottom:927.000000px;}
.y24{bottom:927.450000px;}
.yf2{bottom:927.600000px;}
.y1f7{bottom:930.450000px;}
.y126{bottom:930.645450px;}
.y251{bottom:934.950000px;}
.h7{height:29.197998px;}
.h11{height:33.117188px;}
.h10{height:39.072000px;}
.h8{height:39.257812px;}
.hc{height:41.396484px;}
.h3{height:42.000000px;}
.h1{height:49.072266px;}
.h4{height:49.675781px;}
.h12{height:50.947266px;}
.hf{height:54.150586px;}
.ha{height:54.151186px;}
.h5{height:58.886719px;}
.h9{height:64.379503px;}
.h6{height:64.980703px;}
.hb{height:65.005303px;}
.he{height:65.076103px;}
.hd{height:65.100103px;}
.h2{height:98.144531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.xc{left:72.126900px;}
.x3{left:82.381950px;}
.x4{left:97.263750px;}
.x6{left:112.500000px;}
.xa{left:117.126900px;}
.x7{left:127.386000px;}
.x2{left:135.000000px;}
.x8{left:142.272000px;}
.x9{left:146.550000px;}
.xf{left:180.526950px;}
.xe{left:294.862050px;}
.xd{left:340.475550px;}
.xb{left:385.475550px;}
.x5{left:417.403050px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.600533pt;}
.v1{vertical-align:21.120000pt;}
.ls35{letter-spacing:-6.400000pt;}
.ls41{letter-spacing:-1.792000pt;}
.ls2f{letter-spacing:-1.600000pt;}
.ls33{letter-spacing:-1.216000pt;}
.ls42{letter-spacing:-1.152000pt;}
.ls3e{letter-spacing:-1.088000pt;}
.ls14{letter-spacing:-1.024000pt;}
.ls3b{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.906667pt;}
.ls26{letter-spacing:-0.896000pt;}
.ls28{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls2c{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.266667pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.192000pt;}
.ls40{letter-spacing:-0.186667pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.021333pt;}
.lsf{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.128000pt;}
.ls3a{letter-spacing:0.134400pt;}
.ls39{letter-spacing:0.192000pt;}
.ls3c{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.576000pt;}
.ls31{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.768000pt;}
.ls30{letter-spacing:0.832000pt;}
.ls27{letter-spacing:0.896000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:1.024000pt;}
.ls13{letter-spacing:1.088000pt;}
.ls1e{letter-spacing:1.152000pt;}
.ls38{letter-spacing:1.209600pt;}
.ls2d{letter-spacing:1.216000pt;}
.ls22{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.344000pt;}
.ls12{letter-spacing:1.408000pt;}
.ls37{letter-spacing:1.472000pt;}
.ls3f{letter-spacing:1.536000pt;}
.ls3d{letter-spacing:1.664000pt;}
.ls36{letter-spacing:1.728000pt;}
.ls2e{letter-spacing:1.984000pt;}
.ls21{letter-spacing:2.496000pt;}
.ls0{letter-spacing:3.786667pt;}
.lsb{letter-spacing:3.882667pt;}
.ls43{letter-spacing:4.224000pt;}
.ls5{letter-spacing:7.461333pt;}
.ls6{letter-spacing:7.493333pt;}
.ls4{letter-spacing:7.520000pt;}
.ls3{letter-spacing:9.546667pt;}
.ls1{letter-spacing:236.053333pt;}
.ls2{letter-spacing:633.493333pt;}
.ws14{word-spacing:-56.512000pt;}
.ws70{word-spacing:-54.784000pt;}
.ws1{word-spacing:-22.480000pt;}
.ws16{word-spacing:-17.984000pt;}
.ws35{word-spacing:-16.256000pt;}
.ws55{word-spacing:-15.808000pt;}
.ws56{word-spacing:-15.744000pt;}
.ws7d{word-spacing:-14.986667pt;}
.ws66{word-spacing:-13.798400pt;}
.ws6f{word-spacing:-12.723200pt;}
.ws15{word-spacing:-12.588800pt;}
.ws67{word-spacing:-11.989333pt;}
.ws7c{word-spacing:-10.304000pt;}
.ws90{word-spacing:-10.112000pt;}
.ws9{word-spacing:-7.520000pt;}
.ws8e{word-spacing:-4.224000pt;}
.ws8{word-spacing:-3.882667pt;}
.ws5e{word-spacing:-1.920000pt;}
.ws4b{word-spacing:-1.728000pt;}
.ws78{word-spacing:-1.088000pt;}
.ws3e{word-spacing:-0.960000pt;}
.ws26{word-spacing:-0.768000pt;}
.ws71{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.320000pt;}
.ws88{word-spacing:-0.256000pt;}
.ws3{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.064000pt;}
.ws17{word-spacing:0.256000pt;}
.ws91{word-spacing:0.266667pt;}
.ws12{word-spacing:0.320000pt;}
.ws64{word-spacing:0.384000pt;}
.ws54{word-spacing:0.448000pt;}
.ws92{word-spacing:0.533333pt;}
.ws59{word-spacing:0.640000pt;}
.ws4d{word-spacing:0.768000pt;}
.ws45{word-spacing:0.832000pt;}
.ws3a{word-spacing:1.088000pt;}
.ws21{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.216000pt;}
.ws52{word-spacing:1.280000pt;}
.ws83{word-spacing:1.408000pt;}
.ws81{word-spacing:1.472000pt;}
.ws6{word-spacing:1.600000pt;}
.ws84{word-spacing:1.664000pt;}
.ws82{word-spacing:1.728000pt;}
.ws3b{word-spacing:1.792000pt;}
.ws74{word-spacing:1.856000pt;}
.ws53{word-spacing:1.920000pt;}
.ws36{word-spacing:2.048000pt;}
.ws38{word-spacing:2.176000pt;}
.ws20{word-spacing:2.496000pt;}
.ws5a{word-spacing:2.560000pt;}
.ws8f{word-spacing:2.645333pt;}
.ws18{word-spacing:2.688000pt;}
.ws1f{word-spacing:2.816000pt;}
.ws57{word-spacing:2.944000pt;}
.ws23{word-spacing:2.986667pt;}
.ws37{word-spacing:3.072000pt;}
.ws62{word-spacing:3.136000pt;}
.ws4e{word-spacing:3.200000pt;}
.ws4{word-spacing:3.306667pt;}
.ws73{word-spacing:3.328000pt;}
.ws87{word-spacing:3.392000pt;}
.ws61{word-spacing:3.413333pt;}
.ws60{word-spacing:3.520000pt;}
.ws8b{word-spacing:3.573333pt;}
.ws77{word-spacing:3.584000pt;}
.ws31{word-spacing:3.648000pt;}
.ws7e{word-spacing:3.680000pt;}
.ws5b{word-spacing:3.712000pt;}
.ws2{word-spacing:3.733333pt;}
.wse{word-spacing:3.776000pt;}
.ws85{word-spacing:3.840000pt;}
.ws7{word-spacing:3.968000pt;}
.ws40{word-spacing:4.096000pt;}
.ws1b{word-spacing:4.160000pt;}
.ws76{word-spacing:4.224000pt;}
.ws1c{word-spacing:4.288000pt;}
.ws58{word-spacing:4.352000pt;}
.wsf{word-spacing:4.480000pt;}
.ws30{word-spacing:4.544000pt;}
.ws19{word-spacing:4.608000pt;}
.ws39{word-spacing:4.672000pt;}
.ws34{word-spacing:4.736000pt;}
.ws3c{word-spacing:4.800000pt;}
.ws68{word-spacing:4.864000pt;}
.ws72{word-spacing:4.992000pt;}
.ws25{word-spacing:5.120000pt;}
.ws6c{word-spacing:5.248000pt;}
.ws50{word-spacing:5.440000pt;}
.ws44{word-spacing:5.504000pt;}
.ws27{word-spacing:5.568000pt;}
.ws33{word-spacing:5.760000pt;}
.ws79{word-spacing:5.824000pt;}
.ws2e{word-spacing:5.888000pt;}
.ws6a{word-spacing:6.144000pt;}
.ws63{word-spacing:6.208000pt;}
.ws65{word-spacing:6.400000pt;}
.ws3f{word-spacing:6.464000pt;}
.ws2f{word-spacing:6.528000pt;}
.ws86{word-spacing:6.592000pt;}
.ws11{word-spacing:6.720000pt;}
.ws49{word-spacing:6.848000pt;}
.ws4c{word-spacing:7.040000pt;}
.ws43{word-spacing:7.104000pt;}
.ws28{word-spacing:7.296000pt;}
.ws0{word-spacing:7.445333pt;}
.ws5{word-spacing:7.466667pt;}
.ws51{word-spacing:7.488000pt;}
.wsa{word-spacing:7.552000pt;}
.wsc{word-spacing:7.808000pt;}
.ws2b{word-spacing:8.064000pt;}
.ws6e{word-spacing:8.128000pt;}
.ws7b{word-spacing:8.192000pt;}
.ws5f{word-spacing:8.256000pt;}
.ws6b{word-spacing:8.320000pt;}
.ws8a{word-spacing:8.384000pt;}
.ws1e{word-spacing:8.448000pt;}
.ws80{word-spacing:8.512000pt;}
.ws8c{word-spacing:8.576000pt;}
.ws29{word-spacing:8.640000pt;}
.ws10{word-spacing:8.768000pt;}
.ws13{word-spacing:8.832000pt;}
.wsb{word-spacing:8.896000pt;}
.wsd{word-spacing:8.960000pt;}
.ws1a{word-spacing:9.024000pt;}
.ws89{word-spacing:9.152000pt;}
.ws32{word-spacing:9.344000pt;}
.ws41{word-spacing:9.408000pt;}
.ws2d{word-spacing:9.600000pt;}
.ws2a{word-spacing:9.792000pt;}
.ws22{word-spacing:9.920000pt;}
.ws8d{word-spacing:10.048000pt;}
.ws2c{word-spacing:10.304000pt;}
.ws75{word-spacing:10.368000pt;}
.ws42{word-spacing:10.432000pt;}
.ws4f{word-spacing:10.816000pt;}
.ws48{word-spacing:10.944000pt;}
.ws46{word-spacing:11.008000pt;}
.ws4a{word-spacing:11.072000pt;}
.ws1d{word-spacing:11.584000pt;}
.ws69{word-spacing:11.712000pt;}
.ws6d{word-spacing:11.968000pt;}
.ws7f{word-spacing:12.224000pt;}
.ws7a{word-spacing:12.992000pt;}
.ws47{word-spacing:15.808000pt;}
.ws5d{word-spacing:609.360000pt;}
._14{margin-left:-21.066667pt;}
._f{margin-left:-19.776000pt;}
._19{margin-left:-14.506667pt;}
._10{margin-left:-13.226667pt;}
._1b{margin-left:-11.802667pt;}
._6{margin-left:-10.656000pt;}
._e{margin-left:-8.371200pt;}
._12{margin-left:-7.456000pt;}
._7{margin-left:-6.464000pt;}
._3{margin-left:-5.365333pt;}
._b{margin-left:-4.469333pt;}
._a{margin-left:-3.242667pt;}
._5{margin-left:-1.653333pt;}
._2{width:1.344000pt;}
._4{width:2.677333pt;}
._8{width:3.707200pt;}
._1a{width:4.632000pt;}
._11{width:6.438400pt;}
._18{width:8.000533pt;}
._9{width:11.253333pt;}
._16{width:12.263200pt;}
._1{width:25.333333pt;}
._d{width:28.129867pt;}
._17{width:53.636267pt;}
._13{width:83.498667pt;}
._0{width:179.168000pt;}
._c{width:180.730667pt;}
._15{width:363.349333pt;}
.fs5{font-size:31.733333pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.666667pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.yd2{bottom:103.999733pt;}
.y47{bottom:104.000000pt;}
.y8f{bottom:104.101200pt;}
.y23{bottom:104.288667pt;}
.y6c{bottom:105.088000pt;}
.y1b8{bottom:105.107600pt;}
.y250{bottom:105.824000pt;}
.y153{bottom:106.230933pt;}
.y1f6{bottom:106.974133pt;}
.y27a{bottom:106.997333pt;}
.y21b{bottom:107.114667pt;}
.y16e{bottom:107.739867pt;}
.yf1{bottom:107.740000pt;}
.y125{bottom:107.740133pt;}
.y24f{bottom:119.157333pt;}
.yd1{bottom:121.073067pt;}
.y46{bottom:121.073333pt;}
.y1b7{bottom:122.440933pt;}
.y279{bottom:123.264000pt;}
.y1f5{bottom:123.774133pt;}
.yb0{bottom:124.000000pt;}
.y22{bottom:124.288667pt;}
.y8e{bottom:124.373200pt;}
.y6b{bottom:124.816000pt;}
.y21a{bottom:126.714667pt;}
.y152{bottom:126.902933pt;}
.y16d{bottom:127.739867pt;}
.yf0{bottom:127.740000pt;}
.y124{bottom:127.740133pt;}
.y24e{bottom:132.490667pt;}
.y45{bottom:137.333333pt;}
.y278{bottom:139.530667pt;}
.y1b6{bottom:139.774267pt;}
.y1f4{bottom:140.574133pt;}
.y21{bottom:144.288667pt;}
.y6a{bottom:144.544000pt;}
.y8d{bottom:144.645200pt;}
.y24d{bottom:145.824000pt;}
.y219{bottom:146.314667pt;}
.y1da{bottom:146.779067pt;}
.y151{bottom:147.569600pt;}
.y194{bottom:148.720133pt;}
.yaf{bottom:154.000000pt;}
.y44{bottom:154.406667pt;}
.y277{bottom:155.797333pt;}
.y1b5{bottom:157.107600pt;}
.y24c{bottom:159.157333pt;}
.y123{bottom:163.798000pt;}
.y69{bottom:164.272000pt;}
.y20{bottom:164.288667pt;}
.y8c{bottom:164.917200pt;}
.y1f3{bottom:165.056000pt;}
.yd0{bottom:165.871733pt;}
.y1d9{bottom:166.379067pt;}
.yef{bottom:168.645733pt;}
.y193{bottom:169.392133pt;}
.y16c{bottom:169.532533pt;}
.y24b{bottom:172.490667pt;}
.yae{bottom:174.000000pt;}
.y1b4{bottom:174.440933pt;}
.y218{bottom:175.514667pt;}
.y173{bottom:177.920400pt;}
.y122{bottom:180.064667pt;}
.y276{bottom:181.664000pt;}
.y68{bottom:184.000000pt;}
.y1f{bottom:184.288667pt;}
.y1f2{bottom:184.784000pt;}
.y8b{bottom:185.189200pt;}
.y24a{bottom:185.824000pt;}
.y1d8{bottom:185.979067pt;}
.ycf{bottom:186.399733pt;}
.y43{bottom:187.333333pt;}
.yee{bottom:188.645733pt;}
.y150{bottom:188.838933pt;}
.y192{bottom:189.392133pt;}
.y16b{bottom:189.804533pt;}
.y1b3{bottom:191.774267pt;}
.yad{bottom:194.000000pt;}
.y172{bottom:194.587067pt;}
.y217{bottom:195.786667pt;}
.y121{bottom:196.331333pt;}
.y11e{bottom:196.337067pt;}
.y275{bottom:197.930667pt;}
.y249{bottom:199.157333pt;}
.y67{bottom:203.728000pt;}
.y1f1{bottom:204.512000pt;}
.y8a{bottom:205.461200pt;}
.y42{bottom:206.933333pt;}
.yce{bottom:207.066667pt;}
.yed{bottom:208.645733pt;}
.y1b2{bottom:209.107600pt;}
.y191{bottom:209.392133pt;}
.y14f{bottom:209.510933pt;}
.y16a{bottom:210.076533pt;}
.y171{bottom:211.253733pt;}
.y1e{bottom:211.847733pt;}
.y248{bottom:212.490667pt;}
.y120{bottom:212.598000pt;}
.y11d{bottom:212.603733pt;}
.yac{bottom:214.000000pt;}
.y274{bottom:214.197333pt;}
.y216{bottom:216.058667pt;}
.y66{bottom:223.456000pt;}
.y1f0{bottom:224.240000pt;}
.y1d7{bottom:225.179067pt;}
.y89{bottom:225.733200pt;}
.y247{bottom:225.952000pt;}
.y1b1{bottom:226.440933pt;}
.y41{bottom:226.533333pt;}
.ycd{bottom:227.594667pt;}
.y170{bottom:227.920400pt;}
.y1d{bottom:228.514400pt;}
.y11f{bottom:228.864667pt;}
.y11c{bottom:228.870400pt;}
.y190{bottom:229.392133pt;}
.y14e{bottom:230.182933pt;}
.y169{bottom:230.348533pt;}
.y273{bottom:230.464000pt;}
.yab{bottom:234.000000pt;}
.yec{bottom:236.204667pt;}
.y215{bottom:236.330667pt;}
.y246{bottom:239.413333pt;}
.y65{bottom:243.184000pt;}
.y1b0{bottom:243.774267pt;}
.y1ef{bottom:243.968000pt;}
.y1d6{bottom:244.779067pt;}
.y1c{bottom:245.181067pt;}
.y88{bottom:245.999867pt;}
.y40{bottom:246.133333pt;}
.ycc{bottom:248.122667pt;}
.y11b{bottom:249.070400pt;}
.y18f{bottom:249.392133pt;}
.y14d{bottom:250.854933pt;}
.y16f{bottom:251.907067pt;}
.yeb{bottom:252.871333pt;}
.y245{bottom:252.874667pt;}
.yaa{bottom:254.000000pt;}
.y272{bottom:256.330667pt;}
.y214{bottom:256.602667pt;}
.y168{bottom:258.174133pt;}
.y1af{bottom:261.107600pt;}
.y1b{bottom:261.847733pt;}
.y64{bottom:262.912000pt;}
.y1ee{bottom:263.696000pt;}
.y1d5{bottom:264.379067pt;}
.y11a{bottom:265.342800pt;}
.y3f{bottom:265.733333pt;}
.y244{bottom:266.336000pt;}
.ycb{bottom:268.650667pt;}
.y18e{bottom:269.392133pt;}
.yea{bottom:269.538000pt;}
.y14c{bottom:271.526933pt;}
.ya9{bottom:274.000000pt;}
.y167{bottom:275.107467pt;}
.y213{bottom:276.874667pt;}
.y1a{bottom:278.514400pt;}
.y243{bottom:279.797333pt;}
.y63{bottom:282.640000pt;}
.y1ed{bottom:283.424000pt;}
.y1d4{bottom:283.979067pt;}
.y3e{bottom:285.333333pt;}
.y118{bottom:285.548667pt;}
.y1ae{bottom:286.000000pt;}
.ye9{bottom:286.204667pt;}
.y87{bottom:286.405333pt;}
.yca{bottom:289.178667pt;}
.y18d{bottom:289.392133pt;}
.y166{bottom:292.040800pt;}
.y271{bottom:292.197333pt;}
.y14b{bottom:292.198933pt;}
.y242{bottom:293.258667pt;}
.ya8{bottom:294.000000pt;}
.y19{bottom:295.181067pt;}
.y212{bottom:297.146667pt;}
.y117{bottom:301.815333pt;}
.y62{bottom:302.368000pt;}
.ye8{bottom:302.871333pt;}
.y1ec{bottom:303.152000pt;}
.y1d3{bottom:303.579067pt;}
.y3d{bottom:304.933333pt;}
.y1ad{bottom:306.666667pt;}
.y86{bottom:306.677333pt;}
.y241{bottom:306.720000pt;}
.y270{bottom:308.464000pt;}
.y165{bottom:308.974133pt;}
.y18c{bottom:309.392133pt;}
.yc9{bottom:309.706667pt;}
.y18{bottom:311.847733pt;}
.y14a{bottom:312.870933pt;}
.ya7{bottom:314.000000pt;}
.y211{bottom:317.418667pt;}
.y119{bottom:318.076133pt;}
.y116{bottom:318.082000pt;}
.y240{bottom:320.181333pt;}
.y61{bottom:322.096000pt;}
.y1eb{bottom:322.880000pt;}
.y1d2{bottom:323.179067pt;}
.y3c{bottom:324.533333pt;}
.y26f{bottom:324.730667pt;}
.y164{bottom:325.907467pt;}
.y85{bottom:326.949333pt;}
.ye7{bottom:327.097067pt;}
.y17{bottom:328.514400pt;}
.y18b{bottom:329.392133pt;}
.y149{bottom:333.542933pt;}
.y23f{bottom:333.653333pt;}
.ya6{bottom:334.000000pt;}
.y210{bottom:337.690667pt;}
.y113{bottom:338.287733pt;}
.yc8{bottom:340.778667pt;}
.y26e{bottom:340.997333pt;}
.y60{bottom:341.824000pt;}
.y1ea{bottom:342.608000pt;}
.y1d1{bottom:342.779067pt;}
.y163{bottom:342.840800pt;}
.y3b{bottom:344.133333pt;}
.y16{bottom:345.181067pt;}
.ye6{bottom:347.097067pt;}
.y23e{bottom:347.114667pt;}
.y84{bottom:347.221333pt;}
.y1ac{bottom:347.877333pt;}
.y18a{bottom:349.392133pt;}
.ya5{bottom:354.000000pt;}
.y148{bottom:354.214933pt;}
.y112{bottom:354.554400pt;}
.y26d{bottom:357.264000pt;}
.y20f{bottom:357.962667pt;}
.y23d{bottom:360.576000pt;}
.yc7{bottom:361.306667pt;}
.y5f{bottom:361.552000pt;}
.y15{bottom:361.847733pt;}
.y1e9{bottom:362.336000pt;}
.y3a{bottom:363.733333pt;}
.ye5{bottom:367.097067pt;}
.y162{bottom:367.301200pt;}
.y1ab{bottom:368.549333pt;}
.y1d0{bottom:369.938000pt;}
.y111{bottom:370.821067pt;}
.y26c{bottom:373.530667pt;}
.ya4{bottom:374.000000pt;}
.y23c{bottom:374.037333pt;}
.y147{bottom:374.886933pt;}
.y83{bottom:377.749333pt;}
.y20e{bottom:378.234667pt;}
.y189{bottom:379.392133pt;}
.y5e{bottom:381.280000pt;}
.yc6{bottom:381.834667pt;}
.y1e8{bottom:382.064000pt;}
.y39{bottom:383.333333pt;}
.y14{bottom:386.073467pt;}
.y1cf{bottom:386.204667pt;}
.y115{bottom:387.082000pt;}
.y110{bottom:387.087733pt;}
.ye4{bottom:387.097067pt;}
.y23b{bottom:387.498667pt;}
.y161{bottom:387.573200pt;}
.y1aa{bottom:389.221333pt;}
.y26b{bottom:389.797333pt;}
.ya3{bottom:394.000000pt;}
.y146{bottom:395.558933pt;}
.y82{bottom:398.021333pt;}
.y20d{bottom:398.506667pt;}
.y188{bottom:399.392133pt;}
.y23a{bottom:400.970667pt;}
.y5d{bottom:401.008000pt;}
.y1e7{bottom:401.792000pt;}
.yc5{bottom:402.362667pt;}
.y1ce{bottom:402.471333pt;}
.y38{bottom:402.933333pt;}
.y114{bottom:403.348667pt;}
.y10f{bottom:403.354400pt;}
.y26a{bottom:406.064000pt;}
.y13{bottom:406.073467pt;}
.ye3{bottom:407.097067pt;}
.y160{bottom:407.845200pt;}
.y1a9{bottom:409.893333pt;}
.ya2{bottom:414.000000pt;}
.y239{bottom:414.432000pt;}
.y145{bottom:416.230933pt;}
.y81{bottom:418.293333pt;}
.y1cd{bottom:418.738000pt;}
.y20c{bottom:418.778667pt;}
.y187{bottom:419.392133pt;}
.y5c{bottom:420.736000pt;}
.y1e6{bottom:421.520000pt;}
.y269{bottom:422.330667pt;}
.y37{bottom:422.533333pt;}
.yc4{bottom:422.890667pt;}
.y10a{bottom:423.560133pt;}
.y12{bottom:426.073467pt;}
.y238{bottom:427.893333pt;}
.y1a8{bottom:430.565333pt;}
.ya1{bottom:434.000000pt;}
.ye2{bottom:434.656133pt;}
.y1cc{bottom:435.004667pt;}
.y144{bottom:436.902933pt;}
.y15f{bottom:438.373200pt;}
.y80{bottom:438.565333pt;}
.y268{bottom:438.597333pt;}
.y20b{bottom:439.050667pt;}
.y186{bottom:439.392133pt;}
.y109{bottom:439.826800pt;}
.y5b{bottom:440.464000pt;}
.y1e5{bottom:441.248000pt;}
.y237{bottom:441.354667pt;}
.yc3{bottom:443.418667pt;}
.y11{bottom:446.073467pt;}
.y1a7{bottom:451.237333pt;}
.ye1{bottom:451.322800pt;}
.ya0{bottom:454.000000pt;}
.y236{bottom:454.816000pt;}
.y267{bottom:454.864000pt;}
.y10e{bottom:456.087733pt;}
.y108{bottom:456.093467pt;}
.y15e{bottom:458.645200pt;}
.y1cb{bottom:458.830400pt;}
.y7f{bottom:458.837333pt;}
.y20a{bottom:459.322667pt;}
.y185{bottom:459.392133pt;}
.y5a{bottom:460.192000pt;}
.y1e4{bottom:460.976000pt;}
.y36{bottom:461.728000pt;}
.yc2{bottom:463.946667pt;}
.y10{bottom:466.073467pt;}
.ye0{bottom:467.989467pt;}
.y235{bottom:468.288000pt;}
.y266{bottom:471.130667pt;}
.y1a6{bottom:471.909333pt;}
.y10d{bottom:472.354400pt;}
.y107{bottom:472.360133pt;}
.y9f{bottom:474.000000pt;}
.y15d{bottom:478.917200pt;}
.y7e{bottom:479.109333pt;}
.y184{bottom:479.392133pt;}
.y59{bottom:479.920000pt;}
.y142{bottom:480.127200pt;}
.y1e3{bottom:480.704000pt;}
.y35{bottom:481.328000pt;}
.y234{bottom:481.749333pt;}
.yc1{bottom:484.474667pt;}
.ydf{bottom:484.656133pt;}
.y1ca{bottom:485.989467pt;}
.yf{bottom:486.073467pt;}
.y209{bottom:487.148400pt;}
.y265{bottom:487.397333pt;}
.y10c{bottom:488.621067pt;}
.y106{bottom:488.626800pt;}
.y1a5{bottom:492.581333pt;}
.y9e{bottom:494.000000pt;}
.y233{bottom:495.210667pt;}
.y141{bottom:497.060533pt;}
.y15c{bottom:499.189200pt;}
.y7d{bottom:499.381333pt;}
.y58{bottom:499.648000pt;}
.y1e2{bottom:500.432000pt;}
.y34{bottom:500.928000pt;}
.yde{bottom:501.322800pt;}
.y1c9{bottom:502.256133pt;}
.y264{bottom:503.664000pt;}
.y208{bottom:504.081733pt;}
.y10b{bottom:504.887733pt;}
.y105{bottom:504.893467pt;}
.y232{bottom:508.672000pt;}
.y1a4{bottom:513.253333pt;}
.y140{bottom:513.993867pt;}
.y143{bottom:513.995333pt;}
.y9d{bottom:514.000000pt;}
.yc0{bottom:515.546667pt;}
.y1c8{bottom:518.522800pt;}
.y57{bottom:519.376000pt;}
.y15b{bottom:519.461200pt;}
.y7c{bottom:519.653333pt;}
.y263{bottom:519.930667pt;}
.y1e1{bottom:520.160000pt;}
.y33{bottom:520.528000pt;}
.y207{bottom:521.015067pt;}
.y183{bottom:521.947067pt;}
.y231{bottom:522.133333pt;}
.y101{bottom:525.095733pt;}
.ydd{bottom:525.548533pt;}
.ye{bottom:526.073467pt;}
.y1a3{bottom:533.925333pt;}
.y9c{bottom:534.000000pt;}
.y1c7{bottom:534.789467pt;}
.y230{bottom:535.605333pt;}
.ybf{bottom:536.074667pt;}
.y262{bottom:536.197333pt;}
.y206{bottom:537.948400pt;}
.y13f{bottom:537.980533pt;}
.y182{bottom:538.613733pt;}
.y56{bottom:539.104000pt;}
.y15a{bottom:539.712000pt;}
.y1e0{bottom:539.888000pt;}
.y7b{bottom:539.925333pt;}
.y32{bottom:540.128000pt;}
.y104{bottom:541.360133pt;}
.y100{bottom:541.362400pt;}
.yd{bottom:542.740133pt;}
.ydc{bottom:545.548533pt;}
.y22f{bottom:549.066667pt;}
.y1c6{bottom:551.056133pt;}
.y261{bottom:552.464000pt;}
.y9b{bottom:554.000000pt;}
.y1a2{bottom:554.597333pt;}
.y205{bottom:554.881733pt;}
.y13c{bottom:554.912533pt;}
.y13e{bottom:554.913867pt;}
.y181{bottom:555.280400pt;}
.ybe{bottom:556.602667pt;}
.y103{bottom:557.626800pt;}
.yff{bottom:557.629067pt;}
.y55{bottom:558.832000pt;}
.yc{bottom:559.406800pt;}
.y1df{bottom:559.616000pt;}
.y31{bottom:559.728000pt;}
.y7a{bottom:560.197333pt;}
.y22e{bottom:562.528000pt;}
.ydb{bottom:565.548533pt;}
.y1c5{bottom:567.322800pt;}
.y260{bottom:568.730667pt;}
.y159{bottom:570.240000pt;}
.y204{bottom:571.815067pt;}
.y13b{bottom:571.845867pt;}
.y13d{bottom:571.847200pt;}
.y180{bottom:571.947067pt;}
.y102{bottom:573.893467pt;}
.yfe{bottom:573.895733pt;}
.y9a{bottom:574.000000pt;}
.y1a1{bottom:575.269333pt;}
.y22d{bottom:575.989333pt;}
.ybd{bottom:577.130667pt;}
.y54{bottom:578.560000pt;}
.y1de{bottom:579.344000pt;}
.y79{bottom:580.469333pt;}
.y1c4{bottom:583.589467pt;}
.y25f{bottom:584.997333pt;}
.yda{bottom:585.548533pt;}
.y17f{bottom:588.613733pt;}
.y203{bottom:588.748400pt;}
.y30{bottom:589.200000pt;}
.y22c{bottom:589.450667pt;}
.y158{bottom:590.512000pt;}
.y99{bottom:594.000000pt;}
.y137{bottom:595.831200pt;}
.y13a{bottom:595.832533pt;}
.y1a0{bottom:595.941333pt;}
.yfd{bottom:595.989067pt;}
.yb{bottom:596.860933pt;}
.ybc{bottom:597.658667pt;}
.y1dd{bottom:599.072000pt;}
.y1c3{bottom:599.856133pt;}
.y78{bottom:600.741333pt;}
.y25e{bottom:601.264000pt;}
.y22b{bottom:602.922667pt;}
.y17e{bottom:605.280400pt;}
.yd9{bottom:605.548533pt;}
.y202{bottom:605.681733pt;}
.y53{bottom:607.888000pt;}
.y2f{bottom:608.800000pt;}
.y157{bottom:610.784000pt;}
.y136{bottom:612.764533pt;}
.y139{bottom:612.765867pt;}
.y98{bottom:614.000000pt;}
.y1c2{bottom:616.122800pt;}
.y22a{bottom:616.384000pt;}
.y19f{bottom:616.613333pt;}
.ya{bottom:616.860933pt;}
.y25d{bottom:617.530667pt;}
.ybb{bottom:618.186667pt;}
.y1dc{bottom:618.800000pt;}
.y77{bottom:621.013333pt;}
.y17d{bottom:621.947067pt;}
.y201{bottom:622.615067pt;}
.yd8{bottom:625.548533pt;}
.y52{bottom:627.616000pt;}
.y2e{bottom:628.400000pt;}
.y135{bottom:629.697867pt;}
.y138{bottom:629.699200pt;}
.y229{bottom:629.845333pt;}
.y156{bottom:631.056000pt;}
.y1c1{bottom:632.389467pt;}
.y25c{bottom:633.797333pt;}
.y97{bottom:634.000000pt;}
.y19e{bottom:637.285333pt;}
.yfc{bottom:638.076667pt;}
.y1db{bottom:638.400000pt;}
.yba{bottom:638.714667pt;}
.y76{bottom:641.285333pt;}
.y228{bottom:643.306667pt;}
.y17c{bottom:645.933733pt;}
.y200{bottom:647.080800pt;}
.y51{bottom:647.344000pt;}
.y2d{bottom:648.000000pt;}
.y25b{bottom:650.064000pt;}
.y155{bottom:651.328000pt;}
.yd7{bottom:653.107600pt;}
.y133{bottom:653.683200pt;}
.y96{bottom:654.000000pt;}
.y1c0{bottom:656.215200pt;}
.y227{bottom:656.768000pt;}
.yfb{bottom:657.548667pt;}
.y9{bottom:657.648267pt;}
.y19d{bottom:657.957333pt;}
.yb9{bottom:659.242667pt;}
.y75{bottom:661.557333pt;}
.y17b{bottom:662.600400pt;}
.y25a{bottom:666.330667pt;}
.y50{bottom:667.072000pt;}
.y1ff{bottom:667.352800pt;}
.y2c{bottom:667.600000pt;}
.yd6{bottom:669.774267pt;}
.y226{bottom:670.229333pt;}
.y132{bottom:670.616533pt;}
.y154{bottom:671.573333pt;}
.y95{bottom:674.000000pt;}
.y8{bottom:677.648267pt;}
.y19c{bottom:678.629333pt;}
.y17a{bottom:679.267067pt;}
.yb8{bottom:679.770667pt;}
.y74{bottom:681.829333pt;}
.y259{bottom:682.597333pt;}
.y1bf{bottom:683.374267pt;}
.y225{bottom:683.701333pt;}
.yfa{bottom:684.574400pt;}
.yd5{bottom:686.440933pt;}
.y4f{bottom:686.800000pt;}
.y2b{bottom:687.200000pt;}
.y131{bottom:687.549867pt;}
.y134{bottom:687.551200pt;}
.y1fe{bottom:687.624800pt;}
.y179{bottom:695.933733pt;}
.y224{bottom:697.162667pt;}
.y258{bottom:698.864000pt;}
.y19b{bottom:699.301333pt;}
.y1be{bottom:699.640933pt;}
.yb7{bottom:700.298667pt;}
.yf9{bottom:700.707733pt;}
.y73{bottom:702.101333pt;}
.yd4{bottom:703.107600pt;}
.y94{bottom:704.000000pt;}
.y4e{bottom:706.400000pt;}
.y2a{bottom:706.800000pt;}
.y1fd{bottom:707.896800pt;}
.y223{bottom:710.624000pt;}
.y12e{bottom:711.535067pt;}
.y178{bottom:712.600400pt;}
.y257{bottom:715.130667pt;}
.y1bd{bottom:715.907600pt;}
.yf8{bottom:716.841067pt;}
.yd3{bottom:719.774267pt;}
.y19a{bottom:719.973333pt;}
.yb6{bottom:720.826667pt;}
.y72{bottom:722.373333pt;}
.y93{bottom:724.000000pt;}
.y222{bottom:724.085333pt;}
.y4d{bottom:726.000000pt;}
.y29{bottom:726.400000pt;}
.y1fc{bottom:728.168800pt;}
.y12d{bottom:728.468400pt;}
.y130{bottom:728.469867pt;}
.y1bc{bottom:732.174267pt;}
.yf7{bottom:732.974400pt;}
.y177{bottom:736.587067pt;}
.y256{bottom:737.082667pt;}
.y7{bottom:737.333333pt;}
.y221{bottom:737.546667pt;}
.y199{bottom:740.645333pt;}
.yb5{bottom:741.354667pt;}
.y71{bottom:742.645333pt;}
.y92{bottom:744.000000pt;}
.y12c{bottom:745.401733pt;}
.y12f{bottom:745.403200pt;}
.y4c{bottom:745.600000pt;}
.y28{bottom:746.000000pt;}
.y1fb{bottom:748.440800pt;}
.y1bb{bottom:748.440933pt;}
.yf6{bottom:749.107733pt;}
.y220{bottom:751.018667pt;}
.y255{bottom:753.082667pt;}
.y176{bottom:753.253733pt;}
.y198{bottom:761.317333pt;}
.yb4{bottom:761.882667pt;}
.y70{bottom:762.917333pt;}
.y6{bottom:764.000000pt;}
.y21f{bottom:764.480000pt;}
.y1ba{bottom:764.707600pt;}
.y4b{bottom:765.200000pt;}
.yf5{bottom:765.241067pt;}
.y27{bottom:765.600000pt;}
.y12b{bottom:769.388400pt;}
.y175{bottom:769.920400pt;}
.y1fa{bottom:776.266667pt;}
.y21e{bottom:777.941333pt;}
.y1b9{bottom:780.974267pt;}
.yf4{bottom:781.374400pt;}
.y197{bottom:781.989333pt;}
.yb3{bottom:782.410667pt;}
.y6f{bottom:783.189333pt;}
.y91{bottom:784.000000pt;}
.y4a{bottom:784.800000pt;}
.y26{bottom:785.200000pt;}
.y128{bottom:786.320400pt;}
.y12a{bottom:786.321733pt;}
.y174{bottom:786.587067pt;}
.y5{bottom:790.666667pt;}
.y21d{bottom:791.402667pt;}
.y254{bottom:792.282667pt;}
.y1f9{bottom:793.200000pt;}
.y196{bottom:802.661333pt;}
.yb2{bottom:802.938667pt;}
.y127{bottom:803.253733pt;}
.y129{bottom:803.255067pt;}
.y6e{bottom:803.461333pt;}
.y90{bottom:804.000000pt;}
.y49{bottom:804.400000pt;}
.y25{bottom:804.800000pt;}
.y21c{bottom:804.864000pt;}
.yf3{bottom:805.061333pt;}
.y253{bottom:805.210667pt;}
.y1f8{bottom:810.133333pt;}
.y4{bottom:817.333333pt;}
.y252{bottom:818.138667pt;}
.y195{bottom:823.333333pt;}
.yb1{bottom:823.466667pt;}
.y6d{bottom:823.733333pt;}
.y48{bottom:824.000000pt;}
.y24{bottom:824.400000pt;}
.yf2{bottom:824.533333pt;}
.y1f7{bottom:827.066667pt;}
.y126{bottom:827.240400pt;}
.y251{bottom:831.066667pt;}
.h7{height:25.953776pt;}
.h11{height:29.437500pt;}
.h10{height:34.730667pt;}
.h8{height:34.895833pt;}
.hc{height:36.796875pt;}
.h3{height:37.333333pt;}
.h1{height:43.619792pt;}
.h4{height:44.156250pt;}
.h12{height:45.286458pt;}
.hf{height:48.133854pt;}
.ha{height:48.134388pt;}
.h5{height:52.343750pt;}
.h9{height:57.226225pt;}
.h6{height:57.760625pt;}
.hb{height:57.782492pt;}
.he{height:57.845425pt;}
.hd{height:57.866758pt;}
.h2{height:87.239583pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.xc{left:64.112800pt;}
.x3{left:73.228400pt;}
.x4{left:86.456667pt;}
.x6{left:100.000000pt;}
.xa{left:104.112800pt;}
.x7{left:113.232000pt;}
.x2{left:120.000000pt;}
.x8{left:126.464000pt;}
.x9{left:130.266667pt;}
.xf{left:160.468400pt;}
.xe{left:262.099600pt;}
.xd{left:302.644933pt;}
.xb{left:342.644933pt;}
.x5{left:371.024933pt;}
}




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