
    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_e959c0a71df205835c79ebcf.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_164de7a3e80ebe55fb06ea85.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_87392097381fb9af9a63b3f7.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_d839bacb71ba9d73518e60a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.831000;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_7fa34bd73c1d6b8f72bf2d3a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.014000;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_f8932db13e56ec7b7cdcf2a0.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c2f7eebe507b2bf9efa0f26d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922852;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_f3fd5ca6cfeaba87c229a07c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.826000;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_6a411053e8573d19d524aa3e.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_29bc41d7cb0855dba1074b9d.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_52f6c26240466eb03eddb480.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_abc03743d5c6ef79a7d1aaf9.woff')format("woff");}.ffc{font-family:ffc;line-height:1.063477;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:37.500000px;}
.ls23{letter-spacing:-7.200000px;}
.ls2c{letter-spacing:-2.976000px;}
.ls2a{letter-spacing:-1.872000px;}
.ls22{letter-spacing:-1.800000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls1f{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.648000px;}
.ls12{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.504000px;}
.ls29{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.360000px;}
.lse{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.792000px;}
.ls1e{letter-spacing:0.864000px;}
.lsd{letter-spacing:0.936000px;}
.ls20{letter-spacing:1.008000px;}
.ls19{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.296000px;}
.ls6{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.850000px;}
.ls27{letter-spacing:2.928000px;}
.ls2d{letter-spacing:3.369600px;}
.ls2b{letter-spacing:3.408000px;}
.ls4{letter-spacing:4.560000px;}
.ls5{letter-spacing:4.704000px;}
.ls25{letter-spacing:4.752000px;}
.ls2e{letter-spacing:7.344000px;}
.ls1d{letter-spacing:7.614000px;}
.ls2f{letter-spacing:8.100000px;}
.ls3{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.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;}
}
.ws2{word-spacing:-25.320000px;}
.ws42{word-spacing:-20.520000px;}
.ws7c{word-spacing:-20.304000px;}
.ws36{word-spacing:-20.232000px;}
.ws37{word-spacing:-19.800000px;}
.ws43{word-spacing:-19.728000px;}
.ws41{word-spacing:-19.440000px;}
.ws1{word-spacing:-18.867000px;}
.ws20{word-spacing:-18.504000px;}
.ws1f{word-spacing:-18.432000px;}
.ws7b{word-spacing:-17.712000px;}
.ws22{word-spacing:-16.860000px;}
.ws98{word-spacing:-13.488000px;}
.ws8c{word-spacing:-11.856000px;}
.ws97{word-spacing:-11.616000px;}
.wsd{word-spacing:-8.460000px;}
.wsa2{word-spacing:-8.100000px;}
.ws9f{word-spacing:-7.614000px;}
.ws94{word-spacing:-4.752000px;}
.wsb{word-spacing:-4.560000px;}
.ws6f{word-spacing:-2.088000px;}
.ws6e{word-spacing:-2.016000px;}
.ws4f{word-spacing:-1.080000px;}
.ws28{word-spacing:-0.936000px;}
.ws80{word-spacing:-0.792000px;}
.ws25{word-spacing:-0.720000px;}
.ws55{word-spacing:-0.648000px;}
.ws77{word-spacing:-0.576000px;}
.wsa0{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.360000px;}
.ws49{word-spacing:-0.288000px;}
.ws9b{word-spacing:-0.240000px;}
.ws3b{word-spacing:-0.216000px;}
.ws32{word-spacing:-0.144000px;}
.ws62{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws2d{word-spacing:0.072000px;}
.ws52{word-spacing:0.144000px;}
.ws3c{word-spacing:0.216000px;}
.ws99{word-spacing:0.240000px;}
.ws3e{word-spacing:0.288000px;}
.ws46{word-spacing:0.360000px;}
.wsa1{word-spacing:0.384000px;}
.ws3f{word-spacing:0.432000px;}
.ws9a{word-spacing:0.480000px;}
.ws29{word-spacing:0.504000px;}
.ws31{word-spacing:0.576000px;}
.ws58{word-spacing:0.648000px;}
.ws30{word-spacing:0.720000px;}
.ws54{word-spacing:0.792000px;}
.ws5d{word-spacing:1.080000px;}
.ws7{word-spacing:1.140000px;}
.ws66{word-spacing:1.152000px;}
.ws9e{word-spacing:1.440000px;}
.ws7f{word-spacing:1.512000px;}
.ws7d{word-spacing:1.584000px;}
.ws81{word-spacing:1.656000px;}
.ws9{word-spacing:1.800000px;}
.ws8e{word-spacing:1.872000px;}
.ws86{word-spacing:1.944000px;}
.ws44{word-spacing:2.016000px;}
.ws6b{word-spacing:2.088000px;}
.ws8d{word-spacing:2.160000px;}
.ws70{word-spacing:2.232000px;}
.ws5b{word-spacing:2.304000px;}
.ws2c{word-spacing:2.340000px;}
.ws4b{word-spacing:2.376000px;}
.ws2b{word-spacing:2.400000px;}
.ws14{word-spacing:2.448000px;}
.ws8b{word-spacing:2.520000px;}
.ws63{word-spacing:2.592000px;}
.ws9d{word-spacing:2.736000px;}
.ws6a{word-spacing:2.808000px;}
.ws83{word-spacing:2.880000px;}
.ws9c{word-spacing:2.928000px;}
.ws79{word-spacing:2.952000px;}
.ws95{word-spacing:2.976000px;}
.ws8f{word-spacing:3.024000px;}
.ws56{word-spacing:3.096000px;}
.wsc{word-spacing:3.120000px;}
.ws50{word-spacing:3.168000px;}
.ws68{word-spacing:3.240000px;}
.wse{word-spacing:3.312000px;}
.ws96{word-spacing:3.360000px;}
.ws1a{word-spacing:3.456000px;}
.ws4d{word-spacing:3.528000px;}
.ws16{word-spacing:3.600000px;}
.ws75{word-spacing:3.672000px;}
.ws5{word-spacing:3.720000px;}
.ws4a{word-spacing:3.744000px;}
.ws1c{word-spacing:3.888000px;}
.ws61{word-spacing:3.960000px;}
.ws5c{word-spacing:4.176000px;}
.ws3{word-spacing:4.200000px;}
.ws40{word-spacing:4.248000px;}
.ws8{word-spacing:4.464000px;}
.ws67{word-spacing:4.536000px;}
.ws18{word-spacing:4.608000px;}
.ws47{word-spacing:4.680000px;}
.ws15{word-spacing:4.752000px;}
.ws53{word-spacing:4.824000px;}
.ws4c{word-spacing:4.968000px;}
.ws19{word-spacing:5.040000px;}
.ws85{word-spacing:5.112000px;}
.ws45{word-spacing:5.256000px;}
.ws6c{word-spacing:5.328000px;}
.ws8a{word-spacing:5.400000px;}
.ws73{word-spacing:5.616000px;}
.ws64{word-spacing:5.688000px;}
.ws72{word-spacing:5.760000px;}
.ws2e{word-spacing:5.832000px;}
.ws39{word-spacing:5.904000px;}
.ws13{word-spacing:5.976000px;}
.ws92{word-spacing:6.192000px;}
.ws88{word-spacing:6.336000px;}
.ws17{word-spacing:6.408000px;}
.ws24{word-spacing:6.480000px;}
.ws76{word-spacing:6.552000px;}
.ws5f{word-spacing:6.624000px;}
.ws5e{word-spacing:6.696000px;}
.ws78{word-spacing:6.768000px;}
.ws5a{word-spacing:6.840000px;}
.ws89{word-spacing:6.912000px;}
.ws74{word-spacing:6.984000px;}
.ws3a{word-spacing:7.056000px;}
.ws57{word-spacing:7.200000px;}
.ws91{word-spacing:7.344000px;}
.ws87{word-spacing:7.416000px;}
.ws51{word-spacing:7.560000px;}
.ws48{word-spacing:7.704000px;}
.ws60{word-spacing:7.776000px;}
.ws27{word-spacing:7.848000px;}
.ws90{word-spacing:7.920000px;}
.ws65{word-spacing:7.992000px;}
.ws38{word-spacing:8.064000px;}
.ws71{word-spacing:8.280000px;}
.ws2f{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws6{word-spacing:8.400000px;}
.ws23{word-spacing:8.496000px;}
.ws2a{word-spacing:8.568000px;}
.ws4{word-spacing:8.640000px;}
.ws4e{word-spacing:8.712000px;}
.ws84{word-spacing:8.784000px;}
.ws26{word-spacing:8.856000px;}
.ws59{word-spacing:8.928000px;}
.ws93{word-spacing:9.000000px;}
.ws1b{word-spacing:9.072000px;}
.ws1e{word-spacing:9.144000px;}
.ws1d{word-spacing:9.432000px;}
.ws69{word-spacing:9.576000px;}
.ws82{word-spacing:9.648000px;}
.ws7a{word-spacing:9.792000px;}
.ws3d{word-spacing:9.936000px;}
.ws7e{word-spacing:10.008000px;}
.ws11{word-spacing:10.080000px;}
.ws12{word-spacing:10.152000px;}
.ws10{word-spacing:12.168000px;}
.ws6d{word-spacing:12.240000px;}
.ws34{word-spacing:83.700000px;}
.ws35{word-spacing:250.428000px;}
.ws33{word-spacing:279.180000px;}
.ws21{word-spacing:715.284000px;}
._c{margin-left:-940.386000px;}
._19{margin-left:-19.402800px;}
._d{margin-left:-16.866000px;}
._6{margin-left:-11.928000px;}
._7{margin-left:-9.330000px;}
._9{margin-left:-7.315200px;}
._4{margin-left:-6.090000px;}
._13{margin-left:-4.602000px;}
._2{margin-left:-3.408000px;}
._a{margin-left:-2.316000px;}
._8{margin-left:-1.051200px;}
._1{width:1.590000px;}
._b{width:2.658000px;}
._3{width:4.518000px;}
._10{width:6.366000px;}
._18{width:7.383600px;}
._e{width:8.400000px;}
._f{width:9.444000px;}
._11{width:10.471200px;}
._14{width:11.482800px;}
._12{width:12.630000px;}
._1b{width:22.134000px;}
._1c{width:42.300000px;}
._1a{width:46.032000px;}
._5{width:54.450000px;}
._1d{width:67.483800px;}
._0{width:201.564000px;}
._15{width:420.211200px;}
._17{width:524.820000px;}
._16{width:682.920000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.yd3{bottom:117.000000px;}
.y1d9{bottom:117.294000px;}
.y12e{bottom:118.116000px;}
.y195{bottom:119.520000px;}
.y1b4{bottom:119.550000px;}
.y11e{bottom:119.634000px;}
.y1fe{bottom:119.636250px;}
.yf7{bottom:119.784000px;}
.y10a{bottom:119.802000px;}
.yaf{bottom:120.034350px;}
.y16e{bottom:120.372000px;}
.y8a{bottom:120.830850px;}
.y15b{bottom:120.900000px;}
.y21{bottom:121.243050px;}
.y67{bottom:121.544850px;}
.y45{bottom:123.640050px;}
.y12d{bottom:133.116000px;}
.y16d{bottom:135.372000px;}
.y15a{bottom:136.044000px;}
.y1fd{bottom:138.836250px;}
.y1d8{bottom:139.200000px;}
.yd2{bottom:139.500000px;}
.y20{bottom:141.343050px;}
.y11d{bottom:141.828000px;}
.yf6{bottom:141.978000px;}
.y109{bottom:141.996000px;}
.y1b3{bottom:142.050000px;}
.yae{bottom:142.084350px;}
.y194{bottom:142.164000px;}
.y89{bottom:143.474850px;}
.y66{bottom:144.800850px;}
.y44{bottom:146.734050px;}
.y12c{bottom:148.116000px;}
.y16c{bottom:150.372000px;}
.y159{bottom:151.188000px;}
.y1fc{bottom:158.036250px;}
.y1d7{bottom:161.100000px;}
.y1f{bottom:161.443050px;}
.yd1{bottom:162.000000px;}
.y12b{bottom:163.116000px;}
.y11c{bottom:164.022000px;}
.yad{bottom:164.134350px;}
.yf5{bottom:164.172000px;}
.y108{bottom:164.190000px;}
.y1b2{bottom:164.550000px;}
.y193{bottom:164.808000px;}
.y88{bottom:166.118850px;}
.y158{bottom:166.332000px;}
.y43{bottom:169.828050px;}
.y16b{bottom:171.744000px;}
.y1fb{bottom:177.236250px;}
.y12a{bottom:178.116000px;}
.y157{bottom:181.476000px;}
.y1e{bottom:181.543050px;}
.y1d6{bottom:182.994000px;}
.yd0{bottom:184.500000px;}
.yac{bottom:186.184350px;}
.y11b{bottom:186.216000px;}
.yf4{bottom:186.366000px;}
.y107{bottom:186.384000px;}
.y65{bottom:186.673650px;}
.y1b1{bottom:187.050000px;}
.y192{bottom:187.452000px;}
.y87{bottom:188.762850px;}
.y42{bottom:192.922050px;}
.y129{bottom:193.116000px;}
.y1fa{bottom:196.436250px;}
.y156{bottom:196.620000px;}
.y1d5{bottom:204.900000px;}
.y64{bottom:205.423650px;}
.ycf{bottom:207.000000px;}
.y128{bottom:208.116000px;}
.yab{bottom:208.234350px;}
.yf3{bottom:208.560000px;}
.y106{bottom:208.578000px;}
.y1b0{bottom:209.550000px;}
.y191{bottom:210.096000px;}
.y1d{bottom:210.148050px;}
.y86{bottom:211.406850px;}
.y155{bottom:211.764000px;}
.y1f9{bottom:215.636250px;}
.y41{bottom:216.016050px;}
.y16a{bottom:216.744000px;}
.y11a{bottom:216.924000px;}
.y127{bottom:223.116000px;}
.y63{bottom:224.173650px;}
.y1d4{bottom:226.800000px;}
.y154{bottom:226.908000px;}
.yce{bottom:229.500000px;}
.yaa{bottom:230.284350px;}
.yf2{bottom:230.754000px;}
.y105{bottom:230.772000px;}
.y169{bottom:231.744000px;}
.y1af{bottom:232.050000px;}
.y190{bottom:232.740000px;}
.y85{bottom:234.050850px;}
.y1f8{bottom:234.836250px;}
.y126{bottom:238.116000px;}
.y40{bottom:239.110050px;}
.y119{bottom:239.118000px;}
.y153{bottom:242.052000px;}
.y62{bottom:242.923650px;}
.y168{bottom:246.744000px;}
.y1d3{bottom:248.682000px;}
.ycd{bottom:252.000000px;}
.ya9{bottom:252.334350px;}
.yf1{bottom:252.948000px;}
.y104{bottom:252.966000px;}
.y125{bottom:253.116000px;}
.y1f7{bottom:254.036250px;}
.y1ae{bottom:254.550000px;}
.y18f{bottom:255.384000px;}
.y152{bottom:257.196000px;}
.y1c{bottom:257.848050px;}
.y118{bottom:261.312000px;}
.y61{bottom:261.673650px;}
.y167{bottom:261.744000px;}
.y3f{bottom:262.204050px;}
.y124{bottom:268.116000px;}
.y1d2{bottom:270.588000px;}
.y151{bottom:272.340000px;}
.y1f6{bottom:273.236250px;}
.ya8{bottom:274.384350px;}
.ycc{bottom:274.500000px;}
.y84{bottom:274.723650px;}
.yf0{bottom:275.142000px;}
.y103{bottom:275.160000px;}
.y166{bottom:276.744000px;}
.y1ad{bottom:277.050000px;}
.y1b{bottom:277.948050px;}
.y18e{bottom:278.028000px;}
.y60{bottom:280.423650px;}
.y123{bottom:283.116000px;}
.y117{bottom:283.506000px;}
.y3e{bottom:285.298050px;}
.y150{bottom:287.484000px;}
.y165{bottom:291.744000px;}
.y1f5{bottom:292.436250px;}
.y1d1{bottom:292.494000px;}
.y83{bottom:293.473650px;}
.ya7{bottom:296.434350px;}
.ycb{bottom:297.000000px;}
.yef{bottom:297.336000px;}
.y102{bottom:297.354000px;}
.y122{bottom:298.116000px;}
.y1ac{bottom:299.550000px;}
.y18d{bottom:300.672000px;}
.y14f{bottom:302.628000px;}
.y116{bottom:305.700000px;}
.y1a{bottom:306.550800px;}
.y164{bottom:306.744000px;}
.y5f{bottom:307.408650px;}
.y3d{bottom:308.392050px;}
.y1f4{bottom:311.636250px;}
.y82{bottom:312.223650px;}
.y121{bottom:313.116000px;}
.y1d0{bottom:314.400000px;}
.y14e{bottom:317.772000px;}
.ya6{bottom:318.484350px;}
.yca{bottom:319.500000px;}
.yee{bottom:319.530000px;}
.y101{bottom:319.548000px;}
.y163{bottom:321.744000px;}
.y1ab{bottom:322.050000px;}
.y18c{bottom:323.322000px;}
.y19{bottom:326.650800px;}
.y115{bottom:327.900000px;}
.y120{bottom:328.116000px;}
.y1f3{bottom:330.836250px;}
.y81{bottom:330.973650px;}
.y3c{bottom:331.486050px;}
.y14d{bottom:332.916000px;}
.y5e{bottom:334.393650px;}
.y1cf{bottom:336.300000px;}
.ya5{bottom:340.534350px;}
.yed{bottom:341.724000px;}
.y100{bottom:341.742000px;}
.yc9{bottom:342.000000px;}
.y11f{bottom:343.116000px;}
.y1aa{bottom:344.550000px;}
.y18b{bottom:346.026000px;}
.y18{bottom:346.750800px;}
.y14c{bottom:348.060000px;}
.y1f2{bottom:350.036250px;}
.y5d{bottom:353.143650px;}
.y3b{bottom:354.580050px;}
.y80{bottom:357.958650px;}
.y1ce{bottom:358.062000px;}
.ya4{bottom:362.584350px;}
.y14b{bottom:363.204000px;}
.yec{bottom:363.918000px;}
.yff{bottom:363.936000px;}
.yc8{bottom:364.500000px;}
.y17{bottom:366.850800px;}
.y1a9{bottom:367.050000px;}
.y18a{bottom:368.670000px;}
.y1f1{bottom:369.236250px;}
.y5c{bottom:371.893650px;}
.y114{bottom:372.450000px;}
.y7f{bottom:376.708650px;}
.y3a{bottom:377.674050px;}
.y14a{bottom:378.348000px;}
.ya3{bottom:384.634350px;}
.yeb{bottom:386.112000px;}
.yfe{bottom:386.130000px;}
.y16{bottom:386.950800px;}
.yc7{bottom:387.000000px;}
.y162{bottom:388.116000px;}
.y1f0{bottom:388.436250px;}
.y1a8{bottom:389.550000px;}
.y189{bottom:391.314000px;}
.y149{bottom:393.492000px;}
.y113{bottom:394.644000px;}
.y7e{bottom:395.458650px;}
.y5b{bottom:398.878650px;}
.y39{bottom:400.768050px;}
.y1cd{bottom:401.856000px;}
.y161{bottom:403.116000px;}
.ya2{bottom:406.684350px;}
.y15{bottom:407.050800px;}
.y1ef{bottom:407.636250px;}
.yea{bottom:408.306000px;}
.yfd{bottom:408.324000px;}
.y148{bottom:408.636000px;}
.yc6{bottom:409.500000px;}
.y1a7{bottom:412.050000px;}
.y188{bottom:413.958000px;}
.y112{bottom:416.838000px;}
.y160{bottom:418.116000px;}
.y7d{bottom:422.443650px;}
.y1cc{bottom:423.762000px;}
.y147{bottom:423.780000px;}
.y38{bottom:423.862050px;}
.y5a{bottom:425.863650px;}
.y1ee{bottom:426.836250px;}
.y14{bottom:427.150800px;}
.ya1{bottom:428.734350px;}
.yfc{bottom:430.518000px;}
.yc5{bottom:432.000000px;}
.y15f{bottom:433.116000px;}
.y1a6{bottom:434.550000px;}
.y187{bottom:436.602000px;}
.y146{bottom:438.924000px;}
.y111{bottom:439.032000px;}
.y7c{bottom:441.193650px;}
.y59{bottom:444.613650px;}
.y1cb{bottom:445.668000px;}
.y1ed{bottom:446.036250px;}
.y37{bottom:446.956050px;}
.y13{bottom:447.250800px;}
.y15e{bottom:448.116000px;}
.ya0{bottom:450.784350px;}
.ye9{bottom:452.712000px;}
.y145{bottom:454.068000px;}
.yc4{bottom:454.500000px;}
.y1a5{bottom:457.020000px;}
.y186{bottom:459.246000px;}
.y7b{bottom:459.943650px;}
.y110{bottom:461.226000px;}
.y15d{bottom:463.116000px;}
.y12{bottom:467.350800px;}
.y210{bottom:467.490000px;}
.y1ca{bottom:467.574000px;}
.y144{bottom:469.212000px;}
.y36{bottom:470.050050px;}
.y9f{bottom:472.834350px;}
.ye8{bottom:474.906000px;}
.yc3{bottom:477.000000px;}
.y1ec{bottom:477.992100px;}
.y7a{bottom:478.693650px;}
.y1a4{bottom:479.376000px;}
.y185{bottom:481.890000px;}
.y10f{bottom:483.420000px;}
.y58{bottom:484.350000px;}
.y143{bottom:484.356000px;}
.y15c{bottom:484.500000px;}
.y20f{bottom:486.240000px;}
.y11{bottom:487.450800px;}
.y1c9{bottom:489.480000px;}
.y35{bottom:493.144050px;}
.y9e{bottom:494.884350px;}
.ye7{bottom:497.100000px;}
.y79{bottom:497.443650px;}
.yc2{bottom:499.500000px;}
.y1a3{bottom:501.732000px;}
.y184{bottom:504.534000px;}
.y20e{bottom:504.990000px;}
.y10e{bottom:505.614000px;}
.y10{bottom:507.550800px;}
.y57{bottom:507.600000px;}
.y1eb{bottom:509.198100px;}
.y1c8{bottom:511.386000px;}
.y142{bottom:514.500000px;}
.y34{bottom:516.238050px;}
.y9d{bottom:516.934350px;}
.ye6{bottom:519.294000px;}
.yc1{bottom:522.000000px;}
.y20d{bottom:523.740000px;}
.y1a2{bottom:524.088000px;}
.y78{bottom:524.428650px;}
.y183{bottom:527.178000px;}
.yf{bottom:527.650800px;}
.y10d{bottom:527.808000px;}
.y141{bottom:529.500000px;}
.y1c7{bottom:533.292000px;}
.y9c{bottom:538.984350px;}
.y33{bottom:539.332050px;}
.ye5{bottom:541.488000px;}
.yc0{bottom:544.500000px;}
.y1a1{bottom:546.444000px;}
.ye{bottom:547.750800px;}
.y182{bottom:549.822000px;}
.y10c{bottom:550.002000px;}
.y20c{bottom:550.995000px;}
.y77{bottom:551.413650px;}
.y56{bottom:554.010000px;}
.y1c6{bottom:555.198000px;}
.y1ea{bottom:559.350000px;}
.y140{bottom:559.500000px;}
.y9b{bottom:561.034350px;}
.y32{bottom:562.426050px;}
.ye4{bottom:563.682000px;}
.ybf{bottom:567.000000px;}
.y1a0{bottom:568.800000px;}
.y20b{bottom:569.745000px;}
.y76{bottom:570.163650px;}
.y10b{bottom:572.196000px;}
.y181{bottom:572.472000px;}
.y13f{bottom:574.500000px;}
.yd{bottom:576.355800px;}
.y1c5{bottom:577.104000px;}
.y55{bottom:577.266000px;}
.y1e9{bottom:582.300000px;}
.y31{bottom:585.520050px;}
.yfb{bottom:585.876000px;}
.y20a{bottom:588.495000px;}
.ybe{bottom:589.500000px;}
.y19f{bottom:591.150000px;}
.ye3{bottom:594.390000px;}
.y180{bottom:595.122000px;}
.y1c4{bottom:599.010000px;}
.y9a{bottom:600.508500px;}
.y54{bottom:600.522000px;}
.y13e{bottom:604.500000px;}
.y1e8{bottom:605.250000px;}
.y209{bottom:607.245000px;}
.yfa{bottom:608.070000px;}
.y30{bottom:608.614050px;}
.y75{bottom:609.900000px;}
.ybd{bottom:612.000000px;}
.y19e{bottom:613.494000px;}
.ye2{bottom:616.584000px;}
.y99{bottom:619.258500px;}
.y13d{bottom:619.500000px;}
.y1c3{bottom:620.916000px;}
.yc{bottom:623.591700px;}
.y53{bottom:623.778000px;}
.y208{bottom:625.995000px;}
.y1e7{bottom:628.200000px;}
.yf9{bottom:630.264000px;}
.y2f{bottom:631.708050px;}
.y74{bottom:632.550000px;}
.ybc{bottom:634.500000px;}
.y98{bottom:638.008500px;}
.ye1{bottom:638.778000px;}
.y17f{bottom:640.422000px;}
.y1c2{bottom:642.822000px;}
.y52{bottom:647.034000px;}
.yb{bottom:647.441700px;}
.y13c{bottom:649.500000px;}
.y1e6{bottom:651.150000px;}
.yf8{bottom:652.458000px;}
.y2e{bottom:654.802050px;}
.y97{bottom:656.758500px;}
.ybb{bottom:657.000000px;}
.y19d{bottom:658.188000px;}
.ye0{bottom:660.972000px;}
.y17e{bottom:663.072000px;}
.y207{bottom:663.495000px;}
.y13b{bottom:664.500000px;}
.y1c1{bottom:664.728000px;}
.y51{bottom:670.290000px;}
.ya{bottom:671.291700px;}
.y1e5{bottom:674.100000px;}
.y96{bottom:675.508500px;}
.y2d{bottom:677.896050px;}
.y73{bottom:677.916000px;}
.yba{bottom:679.500000px;}
.y19c{bottom:680.544000px;}
.y206{bottom:682.245000px;}
.ydf{bottom:683.166000px;}
.y1c0{bottom:686.634000px;}
.y17d{bottom:692.154000px;}
.y50{bottom:693.546000px;}
.y13a{bottom:694.500000px;}
.y1e4{bottom:697.050000px;}
.y72{bottom:700.560000px;}
.y205{bottom:700.995000px;}
.y2c{bottom:700.996050px;}
.yb9{bottom:702.000000px;}
.y95{bottom:702.493500px;}
.y19b{bottom:702.900000px;}
.yde{bottom:705.360000px;}
.y1bf{bottom:708.540000px;}
.y139{bottom:709.500000px;}
.y4f{bottom:716.802000px;}
.y9{bottom:718.527600px;}
.y204{bottom:719.745000px;}
.y1e3{bottom:720.000000px;}
.y94{bottom:721.243500px;}
.y71{bottom:723.204000px;}
.yb8{bottom:724.500000px;}
.y19a{bottom:725.250000px;}
.ydd{bottom:727.554000px;}
.y1be{bottom:730.446000px;}
.y17c{bottom:737.454000px;}
.y138{bottom:739.500000px;}
.y93{bottom:739.993500px;}
.y4e{bottom:740.058000px;}
.y8{bottom:742.377600px;}
.y1e2{bottom:742.950000px;}
.y70{bottom:745.848000px;}
.yb7{bottom:747.000000px;}
.y2b{bottom:747.196050px;}
.y199{bottom:747.588000px;}
.ydc{bottom:749.748000px;}
.y1bd{bottom:752.352000px;}
.y17b{bottom:752.598000px;}
.y137{bottom:754.500000px;}
.y92{bottom:758.743500px;}
.y4d{bottom:763.314000px;}
.y203{bottom:765.750000px;}
.y1e1{bottom:765.900000px;}
.y7{bottom:766.227600px;}
.y2a{bottom:766.546050px;}
.y17a{bottom:767.742000px;}
.y6f{bottom:768.492000px;}
.yb6{bottom:769.500000px;}
.y198{bottom:769.944000px;}
.ydb{bottom:771.942000px;}
.y1bc{bottom:774.258000px;}
.y179{bottom:782.886000px;}
.y136{bottom:784.500000px;}
.y91{bottom:785.728500px;}
.y4c{bottom:786.570000px;}
.y1e0{bottom:788.850000px;}
.y6{bottom:790.077450px;}
.y6e{bottom:791.136000px;}
.yb5{bottom:792.000000px;}
.y197{bottom:792.300000px;}
.yda{bottom:794.136000px;}
.y29{bottom:794.400000px;}
.y1bb{bottom:796.164000px;}
.y178{bottom:798.030000px;}
.y135{bottom:799.500000px;}
.y90{bottom:804.478500px;}
.y4b{bottom:809.826000px;}
.y1df{bottom:811.800000px;}
.y177{bottom:813.174000px;}
.y28{bottom:813.750000px;}
.y6d{bottom:813.780000px;}
.yb4{bottom:814.500000px;}
.y196{bottom:814.650000px;}
.yd9{bottom:816.330000px;}
.y1ba{bottom:818.070000px;}
.y8f{bottom:823.228500px;}
.y176{bottom:828.330000px;}
.y134{bottom:829.500000px;}
.y4a{bottom:833.082000px;}
.y27{bottom:833.100000px;}
.y1de{bottom:834.750000px;}
.y6c{bottom:836.424000px;}
.yb3{bottom:837.000000px;}
.yd8{bottom:838.524000px;}
.y1b9{bottom:839.976000px;}
.y8e{bottom:841.978500px;}
.y175{bottom:843.474000px;}
.y133{bottom:844.500000px;}
.y26{bottom:852.450000px;}
.y202{bottom:855.750000px;}
.y49{bottom:856.338000px;}
.y1dd{bottom:857.700000px;}
.y5{bottom:858.573150px;}
.y174{bottom:858.618000px;}
.y6b{bottom:859.068000px;}
.yb2{bottom:859.500000px;}
.yd7{bottom:860.718000px;}
.y1b8{bottom:861.882000px;}
.y8d{bottom:868.963500px;}
.y25{bottom:871.800000px;}
.y173{bottom:873.762000px;}
.y132{bottom:874.500000px;}
.y48{bottom:879.594000px;}
.y1dc{bottom:880.650000px;}
.y6a{bottom:881.712000px;}
.yb1{bottom:882.000000px;}
.yd6{bottom:882.912000px;}
.y1b7{bottom:883.788000px;}
.y8c{bottom:887.713500px;}
.y172{bottom:888.906000px;}
.y131{bottom:889.500000px;}
.y4{bottom:889.923150px;}
.y24{bottom:891.150000px;}
.y201{bottom:893.250000px;}
.y47{bottom:902.850000px;}
.y1db{bottom:903.600000px;}
.y171{bottom:904.062000px;}
.y69{bottom:904.356000px;}
.yb0{bottom:904.500000px;}
.yd5{bottom:905.106000px;}
.y1b6{bottom:905.694000px;}
.y23{bottom:910.500000px;}
.y200{bottom:912.000000px;}
.y170{bottom:919.206000px;}
.y130{bottom:919.500000px;}
.y46{bottom:926.100000px;}
.y1da{bottom:926.550000px;}
.y68{bottom:927.000000px;}
.yd4{bottom:927.300000px;}
.y8b{bottom:927.450000px;}
.y1b5{bottom:927.600000px;}
.y22{bottom:930.000000px;}
.y1ff{bottom:930.750000px;}
.y16f{bottom:934.350000px;}
.y12f{bottom:934.500000px;}
.y3{bottom:940.023150px;}
.hf{height:33.117188px;}
.h11{height:37.256836px;}
.hd{height:39.072000px;}
.h2{height:39.326660px;}
.h10{height:39.726562px;}
.he{height:40.757812px;}
.h1{height:41.396484px;}
.h9{height:42.000000px;}
.hc{height:45.852539px;}
.hb{height:47.988281px;}
.h8{height:48.840000px;}
.h4{height:49.380000px;}
.h5{height:49.675781px;}
.h6{height:50.947266px;}
.h7{height:61.136719px;}
.ha{height:78.896484px;}
.h3{height:82.792969px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.xb{left:73.825500px;}
.x8{left:82.381950px;}
.x1d{left:88.759800px;}
.x13{left:91.527900px;}
.x3{left:97.263750px;}
.x12{left:99.837900px;}
.x24{left:105.753900px;}
.x1e{left:110.017800px;}
.x6{left:112.620000px;}
.x9{left:118.420500px;}
.x1f{left:124.885800px;}
.x7{left:127.381950px;}
.xe{left:132.227100px;}
.x20{left:133.759800px;}
.x2{left:135.000000px;}
.x23{left:139.735800px;}
.x5{left:142.263750px;}
.xa{left:150.040500px;}
.x21{left:155.017800px;}
.xd{left:165.782100px;}
.x22{left:169.885800px;}
.x1a{left:201.252900px;}
.x15{left:220.287900px;}
.x14{left:223.377900px;}
.x1b{left:328.692900px;}
.xc{left:331.225500px;}
.x17{left:342.507900px;}
.x16{left:365.142900px;}
.x11{left:402.137100px;}
.xf{left:420.932100px;}
.x1c{left:456.132900px;}
.x19{left:468.957900px;}
.x10{left:481.487100px;}
.x18{left:496.272900px;}
.x4{left:635.390550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:33.333333pt;}
.ls23{letter-spacing:-6.400000pt;}
.ls2c{letter-spacing:-2.645333pt;}
.ls2a{letter-spacing:-1.664000pt;}
.ls22{letter-spacing:-1.600000pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls1f{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.576000pt;}
.ls12{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls29{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.704000pt;}
.ls1e{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.832000pt;}
.ls20{letter-spacing:0.896000pt;}
.ls19{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.152000pt;}
.ls6{letter-spacing:1.280000pt;}
.ls0{letter-spacing:2.533333pt;}
.ls27{letter-spacing:2.602667pt;}
.ls2d{letter-spacing:2.995200pt;}
.ls2b{letter-spacing:3.029333pt;}
.ls4{letter-spacing:4.053333pt;}
.ls5{letter-spacing:4.181333pt;}
.ls25{letter-spacing:4.224000pt;}
.ls2e{letter-spacing:6.528000pt;}
.ls1d{letter-spacing:6.768000pt;}
.ls2f{letter-spacing:7.200000pt;}
.ls3{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ws2{word-spacing:-22.506667pt;}
.ws42{word-spacing:-18.240000pt;}
.ws7c{word-spacing:-18.048000pt;}
.ws36{word-spacing:-17.984000pt;}
.ws37{word-spacing:-17.600000pt;}
.ws43{word-spacing:-17.536000pt;}
.ws41{word-spacing:-17.280000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws20{word-spacing:-16.448000pt;}
.ws1f{word-spacing:-16.384000pt;}
.ws7b{word-spacing:-15.744000pt;}
.ws22{word-spacing:-14.986667pt;}
.ws98{word-spacing:-11.989333pt;}
.ws8c{word-spacing:-10.538667pt;}
.ws97{word-spacing:-10.325333pt;}
.wsd{word-spacing:-7.520000pt;}
.wsa2{word-spacing:-7.200000pt;}
.ws9f{word-spacing:-6.768000pt;}
.ws94{word-spacing:-4.224000pt;}
.wsb{word-spacing:-4.053333pt;}
.ws6f{word-spacing:-1.856000pt;}
.ws6e{word-spacing:-1.792000pt;}
.ws4f{word-spacing:-0.960000pt;}
.ws28{word-spacing:-0.832000pt;}
.ws80{word-spacing:-0.704000pt;}
.ws25{word-spacing:-0.640000pt;}
.ws55{word-spacing:-0.576000pt;}
.ws77{word-spacing:-0.512000pt;}
.wsa0{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.320000pt;}
.ws49{word-spacing:-0.256000pt;}
.ws9b{word-spacing:-0.213333pt;}
.ws3b{word-spacing:-0.192000pt;}
.ws32{word-spacing:-0.128000pt;}
.ws62{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.064000pt;}
.ws52{word-spacing:0.128000pt;}
.ws3c{word-spacing:0.192000pt;}
.ws99{word-spacing:0.213333pt;}
.ws3e{word-spacing:0.256000pt;}
.ws46{word-spacing:0.320000pt;}
.wsa1{word-spacing:0.341333pt;}
.ws3f{word-spacing:0.384000pt;}
.ws9a{word-spacing:0.426667pt;}
.ws29{word-spacing:0.448000pt;}
.ws31{word-spacing:0.512000pt;}
.ws58{word-spacing:0.576000pt;}
.ws30{word-spacing:0.640000pt;}
.ws54{word-spacing:0.704000pt;}
.ws5d{word-spacing:0.960000pt;}
.ws7{word-spacing:1.013333pt;}
.ws66{word-spacing:1.024000pt;}
.ws9e{word-spacing:1.280000pt;}
.ws7f{word-spacing:1.344000pt;}
.ws7d{word-spacing:1.408000pt;}
.ws81{word-spacing:1.472000pt;}
.ws9{word-spacing:1.600000pt;}
.ws8e{word-spacing:1.664000pt;}
.ws86{word-spacing:1.728000pt;}
.ws44{word-spacing:1.792000pt;}
.ws6b{word-spacing:1.856000pt;}
.ws8d{word-spacing:1.920000pt;}
.ws70{word-spacing:1.984000pt;}
.ws5b{word-spacing:2.048000pt;}
.ws2c{word-spacing:2.080000pt;}
.ws4b{word-spacing:2.112000pt;}
.ws2b{word-spacing:2.133333pt;}
.ws14{word-spacing:2.176000pt;}
.ws8b{word-spacing:2.240000pt;}
.ws63{word-spacing:2.304000pt;}
.ws9d{word-spacing:2.432000pt;}
.ws6a{word-spacing:2.496000pt;}
.ws83{word-spacing:2.560000pt;}
.ws9c{word-spacing:2.602667pt;}
.ws79{word-spacing:2.624000pt;}
.ws95{word-spacing:2.645333pt;}
.ws8f{word-spacing:2.688000pt;}
.ws56{word-spacing:2.752000pt;}
.wsc{word-spacing:2.773333pt;}
.ws50{word-spacing:2.816000pt;}
.ws68{word-spacing:2.880000pt;}
.wse{word-spacing:2.944000pt;}
.ws96{word-spacing:2.986667pt;}
.ws1a{word-spacing:3.072000pt;}
.ws4d{word-spacing:3.136000pt;}
.ws16{word-spacing:3.200000pt;}
.ws75{word-spacing:3.264000pt;}
.ws5{word-spacing:3.306667pt;}
.ws4a{word-spacing:3.328000pt;}
.ws1c{word-spacing:3.456000pt;}
.ws61{word-spacing:3.520000pt;}
.ws5c{word-spacing:3.712000pt;}
.ws3{word-spacing:3.733333pt;}
.ws40{word-spacing:3.776000pt;}
.ws8{word-spacing:3.968000pt;}
.ws67{word-spacing:4.032000pt;}
.ws18{word-spacing:4.096000pt;}
.ws47{word-spacing:4.160000pt;}
.ws15{word-spacing:4.224000pt;}
.ws53{word-spacing:4.288000pt;}
.ws4c{word-spacing:4.416000pt;}
.ws19{word-spacing:4.480000pt;}
.ws85{word-spacing:4.544000pt;}
.ws45{word-spacing:4.672000pt;}
.ws6c{word-spacing:4.736000pt;}
.ws8a{word-spacing:4.800000pt;}
.ws73{word-spacing:4.992000pt;}
.ws64{word-spacing:5.056000pt;}
.ws72{word-spacing:5.120000pt;}
.ws2e{word-spacing:5.184000pt;}
.ws39{word-spacing:5.248000pt;}
.ws13{word-spacing:5.312000pt;}
.ws92{word-spacing:5.504000pt;}
.ws88{word-spacing:5.632000pt;}
.ws17{word-spacing:5.696000pt;}
.ws24{word-spacing:5.760000pt;}
.ws76{word-spacing:5.824000pt;}
.ws5f{word-spacing:5.888000pt;}
.ws5e{word-spacing:5.952000pt;}
.ws78{word-spacing:6.016000pt;}
.ws5a{word-spacing:6.080000pt;}
.ws89{word-spacing:6.144000pt;}
.ws74{word-spacing:6.208000pt;}
.ws3a{word-spacing:6.272000pt;}
.ws57{word-spacing:6.400000pt;}
.ws91{word-spacing:6.528000pt;}
.ws87{word-spacing:6.592000pt;}
.ws51{word-spacing:6.720000pt;}
.ws48{word-spacing:6.848000pt;}
.ws60{word-spacing:6.912000pt;}
.ws27{word-spacing:6.976000pt;}
.ws90{word-spacing:7.040000pt;}
.ws65{word-spacing:7.104000pt;}
.ws38{word-spacing:7.168000pt;}
.ws71{word-spacing:7.360000pt;}
.ws2f{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws6{word-spacing:7.466667pt;}
.ws23{word-spacing:7.552000pt;}
.ws2a{word-spacing:7.616000pt;}
.ws4{word-spacing:7.680000pt;}
.ws4e{word-spacing:7.744000pt;}
.ws84{word-spacing:7.808000pt;}
.ws26{word-spacing:7.872000pt;}
.ws59{word-spacing:7.936000pt;}
.ws93{word-spacing:8.000000pt;}
.ws1b{word-spacing:8.064000pt;}
.ws1e{word-spacing:8.128000pt;}
.ws1d{word-spacing:8.384000pt;}
.ws69{word-spacing:8.512000pt;}
.ws82{word-spacing:8.576000pt;}
.ws7a{word-spacing:8.704000pt;}
.ws3d{word-spacing:8.832000pt;}
.ws7e{word-spacing:8.896000pt;}
.ws11{word-spacing:8.960000pt;}
.ws12{word-spacing:9.024000pt;}
.ws10{word-spacing:10.816000pt;}
.ws6d{word-spacing:10.880000pt;}
.ws34{word-spacing:74.400000pt;}
.ws35{word-spacing:222.602667pt;}
.ws33{word-spacing:248.160000pt;}
.ws21{word-spacing:635.808000pt;}
._c{margin-left:-835.898667pt;}
._19{margin-left:-17.246933pt;}
._d{margin-left:-14.992000pt;}
._6{margin-left:-10.602667pt;}
._7{margin-left:-8.293333pt;}
._9{margin-left:-6.502400pt;}
._4{margin-left:-5.413333pt;}
._13{margin-left:-4.090667pt;}
._2{margin-left:-3.029333pt;}
._a{margin-left:-2.058667pt;}
._8{margin-left:-0.934400pt;}
._1{width:1.413333pt;}
._b{width:2.362667pt;}
._3{width:4.016000pt;}
._10{width:5.658667pt;}
._18{width:6.563200pt;}
._e{width:7.466667pt;}
._f{width:8.394667pt;}
._11{width:9.307733pt;}
._14{width:10.206933pt;}
._12{width:11.226667pt;}
._1b{width:19.674667pt;}
._1c{width:37.600000pt;}
._1a{width:40.917333pt;}
._5{width:48.400000pt;}
._1d{width:59.985600pt;}
._0{width:179.168000pt;}
._15{width:373.521067pt;}
._17{width:466.506667pt;}
._16{width:607.040000pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.yd3{bottom:104.000000pt;}
.y1d9{bottom:104.261333pt;}
.y12e{bottom:104.992000pt;}
.y195{bottom:106.240000pt;}
.y1b4{bottom:106.266667pt;}
.y11e{bottom:106.341333pt;}
.y1fe{bottom:106.343333pt;}
.yf7{bottom:106.474667pt;}
.y10a{bottom:106.490667pt;}
.yaf{bottom:106.697200pt;}
.y16e{bottom:106.997333pt;}
.y8a{bottom:107.405200pt;}
.y15b{bottom:107.466667pt;}
.y21{bottom:107.771600pt;}
.y67{bottom:108.039867pt;}
.y45{bottom:109.902267pt;}
.y12d{bottom:118.325333pt;}
.y16d{bottom:120.330667pt;}
.y15a{bottom:120.928000pt;}
.y1fd{bottom:123.410000pt;}
.y1d8{bottom:123.733333pt;}
.yd2{bottom:124.000000pt;}
.y20{bottom:125.638267pt;}
.y11d{bottom:126.069333pt;}
.yf6{bottom:126.202667pt;}
.y109{bottom:126.218667pt;}
.y1b3{bottom:126.266667pt;}
.yae{bottom:126.297200pt;}
.y194{bottom:126.368000pt;}
.y89{bottom:127.533200pt;}
.y66{bottom:128.711867pt;}
.y44{bottom:130.430267pt;}
.y12c{bottom:131.658667pt;}
.y16c{bottom:133.664000pt;}
.y159{bottom:134.389333pt;}
.y1fc{bottom:140.476667pt;}
.y1d7{bottom:143.200000pt;}
.y1f{bottom:143.504933pt;}
.yd1{bottom:144.000000pt;}
.y12b{bottom:144.992000pt;}
.y11c{bottom:145.797333pt;}
.yad{bottom:145.897200pt;}
.yf5{bottom:145.930667pt;}
.y108{bottom:145.946667pt;}
.y1b2{bottom:146.266667pt;}
.y193{bottom:146.496000pt;}
.y88{bottom:147.661200pt;}
.y158{bottom:147.850667pt;}
.y43{bottom:150.958267pt;}
.y16b{bottom:152.661333pt;}
.y1fb{bottom:157.543333pt;}
.y12a{bottom:158.325333pt;}
.y157{bottom:161.312000pt;}
.y1e{bottom:161.371600pt;}
.y1d6{bottom:162.661333pt;}
.yd0{bottom:164.000000pt;}
.yac{bottom:165.497200pt;}
.y11b{bottom:165.525333pt;}
.yf4{bottom:165.658667pt;}
.y107{bottom:165.674667pt;}
.y65{bottom:165.932133pt;}
.y1b1{bottom:166.266667pt;}
.y192{bottom:166.624000pt;}
.y87{bottom:167.789200pt;}
.y42{bottom:171.486267pt;}
.y129{bottom:171.658667pt;}
.y1fa{bottom:174.610000pt;}
.y156{bottom:174.773333pt;}
.y1d5{bottom:182.133333pt;}
.y64{bottom:182.598800pt;}
.ycf{bottom:184.000000pt;}
.y128{bottom:184.992000pt;}
.yab{bottom:185.097200pt;}
.yf3{bottom:185.386667pt;}
.y106{bottom:185.402667pt;}
.y1b0{bottom:186.266667pt;}
.y191{bottom:186.752000pt;}
.y1d{bottom:186.798267pt;}
.y86{bottom:187.917200pt;}
.y155{bottom:188.234667pt;}
.y1f9{bottom:191.676667pt;}
.y41{bottom:192.014267pt;}
.y16a{bottom:192.661333pt;}
.y11a{bottom:192.821333pt;}
.y127{bottom:198.325333pt;}
.y63{bottom:199.265467pt;}
.y1d4{bottom:201.600000pt;}
.y154{bottom:201.696000pt;}
.yce{bottom:204.000000pt;}
.yaa{bottom:204.697200pt;}
.yf2{bottom:205.114667pt;}
.y105{bottom:205.130667pt;}
.y169{bottom:205.994667pt;}
.y1af{bottom:206.266667pt;}
.y190{bottom:206.880000pt;}
.y85{bottom:208.045200pt;}
.y1f8{bottom:208.743333pt;}
.y126{bottom:211.658667pt;}
.y40{bottom:212.542267pt;}
.y119{bottom:212.549333pt;}
.y153{bottom:215.157333pt;}
.y62{bottom:215.932133pt;}
.y168{bottom:219.328000pt;}
.y1d3{bottom:221.050667pt;}
.ycd{bottom:224.000000pt;}
.ya9{bottom:224.297200pt;}
.yf1{bottom:224.842667pt;}
.y104{bottom:224.858667pt;}
.y125{bottom:224.992000pt;}
.y1f7{bottom:225.810000pt;}
.y1ae{bottom:226.266667pt;}
.y18f{bottom:227.008000pt;}
.y152{bottom:228.618667pt;}
.y1c{bottom:229.198267pt;}
.y118{bottom:232.277333pt;}
.y61{bottom:232.598800pt;}
.y167{bottom:232.661333pt;}
.y3f{bottom:233.070267pt;}
.y124{bottom:238.325333pt;}
.y1d2{bottom:240.522667pt;}
.y151{bottom:242.080000pt;}
.y1f6{bottom:242.876667pt;}
.ya8{bottom:243.897200pt;}
.ycc{bottom:244.000000pt;}
.y84{bottom:244.198800pt;}
.yf0{bottom:244.570667pt;}
.y103{bottom:244.586667pt;}
.y166{bottom:245.994667pt;}
.y1ad{bottom:246.266667pt;}
.y1b{bottom:247.064933pt;}
.y18e{bottom:247.136000pt;}
.y60{bottom:249.265467pt;}
.y123{bottom:251.658667pt;}
.y117{bottom:252.005333pt;}
.y3e{bottom:253.598267pt;}
.y150{bottom:255.541333pt;}
.y165{bottom:259.328000pt;}
.y1f5{bottom:259.943333pt;}
.y1d1{bottom:259.994667pt;}
.y83{bottom:260.865467pt;}
.ya7{bottom:263.497200pt;}
.ycb{bottom:264.000000pt;}
.yef{bottom:264.298667pt;}
.y102{bottom:264.314667pt;}
.y122{bottom:264.992000pt;}
.y1ac{bottom:266.266667pt;}
.y18d{bottom:267.264000pt;}
.y14f{bottom:269.002667pt;}
.y116{bottom:271.733333pt;}
.y1a{bottom:272.489600pt;}
.y164{bottom:272.661333pt;}
.y5f{bottom:273.252133pt;}
.y3d{bottom:274.126267pt;}
.y1f4{bottom:277.010000pt;}
.y82{bottom:277.532133pt;}
.y121{bottom:278.325333pt;}
.y1d0{bottom:279.466667pt;}
.y14e{bottom:282.464000pt;}
.ya6{bottom:283.097200pt;}
.yca{bottom:284.000000pt;}
.yee{bottom:284.026667pt;}
.y101{bottom:284.042667pt;}
.y163{bottom:285.994667pt;}
.y1ab{bottom:286.266667pt;}
.y18c{bottom:287.397333pt;}
.y19{bottom:290.356267pt;}
.y115{bottom:291.466667pt;}
.y120{bottom:291.658667pt;}
.y1f3{bottom:294.076667pt;}
.y81{bottom:294.198800pt;}
.y3c{bottom:294.654267pt;}
.y14d{bottom:295.925333pt;}
.y5e{bottom:297.238800pt;}
.y1cf{bottom:298.933333pt;}
.ya5{bottom:302.697200pt;}
.yed{bottom:303.754667pt;}
.y100{bottom:303.770667pt;}
.yc9{bottom:304.000000pt;}
.y11f{bottom:304.992000pt;}
.y1aa{bottom:306.266667pt;}
.y18b{bottom:307.578667pt;}
.y18{bottom:308.222933pt;}
.y14c{bottom:309.386667pt;}
.y1f2{bottom:311.143333pt;}
.y5d{bottom:313.905467pt;}
.y3b{bottom:315.182267pt;}
.y80{bottom:318.185467pt;}
.y1ce{bottom:318.277333pt;}
.ya4{bottom:322.297200pt;}
.y14b{bottom:322.848000pt;}
.yec{bottom:323.482667pt;}
.yff{bottom:323.498667pt;}
.yc8{bottom:324.000000pt;}
.y17{bottom:326.089600pt;}
.y1a9{bottom:326.266667pt;}
.y18a{bottom:327.706667pt;}
.y1f1{bottom:328.210000pt;}
.y5c{bottom:330.572133pt;}
.y114{bottom:331.066667pt;}
.y7f{bottom:334.852133pt;}
.y3a{bottom:335.710267pt;}
.y14a{bottom:336.309333pt;}
.ya3{bottom:341.897200pt;}
.yeb{bottom:343.210667pt;}
.yfe{bottom:343.226667pt;}
.y16{bottom:343.956267pt;}
.yc7{bottom:344.000000pt;}
.y162{bottom:344.992000pt;}
.y1f0{bottom:345.276667pt;}
.y1a8{bottom:346.266667pt;}
.y189{bottom:347.834667pt;}
.y149{bottom:349.770667pt;}
.y113{bottom:350.794667pt;}
.y7e{bottom:351.518800pt;}
.y5b{bottom:354.558800pt;}
.y39{bottom:356.238267pt;}
.y1cd{bottom:357.205333pt;}
.y161{bottom:358.325333pt;}
.ya2{bottom:361.497200pt;}
.y15{bottom:361.822933pt;}
.y1ef{bottom:362.343333pt;}
.yea{bottom:362.938667pt;}
.yfd{bottom:362.954667pt;}
.y148{bottom:363.232000pt;}
.yc6{bottom:364.000000pt;}
.y1a7{bottom:366.266667pt;}
.y188{bottom:367.962667pt;}
.y112{bottom:370.522667pt;}
.y160{bottom:371.658667pt;}
.y7d{bottom:375.505467pt;}
.y1cc{bottom:376.677333pt;}
.y147{bottom:376.693333pt;}
.y38{bottom:376.766267pt;}
.y5a{bottom:378.545467pt;}
.y1ee{bottom:379.410000pt;}
.y14{bottom:379.689600pt;}
.ya1{bottom:381.097200pt;}
.yfc{bottom:382.682667pt;}
.yc5{bottom:384.000000pt;}
.y15f{bottom:384.992000pt;}
.y1a6{bottom:386.266667pt;}
.y187{bottom:388.090667pt;}
.y146{bottom:390.154667pt;}
.y111{bottom:390.250667pt;}
.y7c{bottom:392.172133pt;}
.y59{bottom:395.212133pt;}
.y1cb{bottom:396.149333pt;}
.y1ed{bottom:396.476667pt;}
.y37{bottom:397.294267pt;}
.y13{bottom:397.556267pt;}
.y15e{bottom:398.325333pt;}
.ya0{bottom:400.697200pt;}
.ye9{bottom:402.410667pt;}
.y145{bottom:403.616000pt;}
.yc4{bottom:404.000000pt;}
.y1a5{bottom:406.240000pt;}
.y186{bottom:408.218667pt;}
.y7b{bottom:408.838800pt;}
.y110{bottom:409.978667pt;}
.y15d{bottom:411.658667pt;}
.y12{bottom:415.422933pt;}
.y210{bottom:415.546667pt;}
.y1ca{bottom:415.621333pt;}
.y144{bottom:417.077333pt;}
.y36{bottom:417.822267pt;}
.y9f{bottom:420.297200pt;}
.ye8{bottom:422.138667pt;}
.yc3{bottom:424.000000pt;}
.y1ec{bottom:424.881867pt;}
.y7a{bottom:425.505467pt;}
.y1a4{bottom:426.112000pt;}
.y185{bottom:428.346667pt;}
.y10f{bottom:429.706667pt;}
.y58{bottom:430.533333pt;}
.y143{bottom:430.538667pt;}
.y15c{bottom:430.666667pt;}
.y20f{bottom:432.213333pt;}
.y11{bottom:433.289600pt;}
.y1c9{bottom:435.093333pt;}
.y35{bottom:438.350267pt;}
.y9e{bottom:439.897200pt;}
.ye7{bottom:441.866667pt;}
.y79{bottom:442.172133pt;}
.yc2{bottom:444.000000pt;}
.y1a3{bottom:445.984000pt;}
.y184{bottom:448.474667pt;}
.y20e{bottom:448.880000pt;}
.y10e{bottom:449.434667pt;}
.y10{bottom:451.156267pt;}
.y57{bottom:451.200000pt;}
.y1eb{bottom:452.620533pt;}
.y1c8{bottom:454.565333pt;}
.y142{bottom:457.333333pt;}
.y34{bottom:458.878267pt;}
.y9d{bottom:459.497200pt;}
.ye6{bottom:461.594667pt;}
.yc1{bottom:464.000000pt;}
.y20d{bottom:465.546667pt;}
.y1a2{bottom:465.856000pt;}
.y78{bottom:466.158800pt;}
.y183{bottom:468.602667pt;}
.yf{bottom:469.022933pt;}
.y10d{bottom:469.162667pt;}
.y141{bottom:470.666667pt;}
.y1c7{bottom:474.037333pt;}
.y9c{bottom:479.097200pt;}
.y33{bottom:479.406267pt;}
.ye5{bottom:481.322667pt;}
.yc0{bottom:484.000000pt;}
.y1a1{bottom:485.728000pt;}
.ye{bottom:486.889600pt;}
.y182{bottom:488.730667pt;}
.y10c{bottom:488.890667pt;}
.y20c{bottom:489.773333pt;}
.y77{bottom:490.145467pt;}
.y56{bottom:492.453333pt;}
.y1c6{bottom:493.509333pt;}
.y1ea{bottom:497.200000pt;}
.y140{bottom:497.333333pt;}
.y9b{bottom:498.697200pt;}
.y32{bottom:499.934267pt;}
.ye4{bottom:501.050667pt;}
.ybf{bottom:504.000000pt;}
.y1a0{bottom:505.600000pt;}
.y20b{bottom:506.440000pt;}
.y76{bottom:506.812133pt;}
.y10b{bottom:508.618667pt;}
.y181{bottom:508.864000pt;}
.y13f{bottom:510.666667pt;}
.yd{bottom:512.316267pt;}
.y1c5{bottom:512.981333pt;}
.y55{bottom:513.125333pt;}
.y1e9{bottom:517.600000pt;}
.y31{bottom:520.462267pt;}
.yfb{bottom:520.778667pt;}
.y20a{bottom:523.106667pt;}
.ybe{bottom:524.000000pt;}
.y19f{bottom:525.466667pt;}
.ye3{bottom:528.346667pt;}
.y180{bottom:528.997333pt;}
.y1c4{bottom:532.453333pt;}
.y9a{bottom:533.785333pt;}
.y54{bottom:533.797333pt;}
.y13e{bottom:537.333333pt;}
.y1e8{bottom:538.000000pt;}
.y209{bottom:539.773333pt;}
.yfa{bottom:540.506667pt;}
.y30{bottom:540.990267pt;}
.y75{bottom:542.133333pt;}
.ybd{bottom:544.000000pt;}
.y19e{bottom:545.328000pt;}
.ye2{bottom:548.074667pt;}
.y99{bottom:550.452000pt;}
.y13d{bottom:550.666667pt;}
.y1c3{bottom:551.925333pt;}
.yc{bottom:554.303733pt;}
.y53{bottom:554.469333pt;}
.y208{bottom:556.440000pt;}
.y1e7{bottom:558.400000pt;}
.yf9{bottom:560.234667pt;}
.y2f{bottom:561.518267pt;}
.y74{bottom:562.266667pt;}
.ybc{bottom:564.000000pt;}
.y98{bottom:567.118667pt;}
.ye1{bottom:567.802667pt;}
.y17f{bottom:569.264000pt;}
.y1c2{bottom:571.397333pt;}
.y52{bottom:575.141333pt;}
.yb{bottom:575.503733pt;}
.y13c{bottom:577.333333pt;}
.y1e6{bottom:578.800000pt;}
.yf8{bottom:579.962667pt;}
.y2e{bottom:582.046267pt;}
.y97{bottom:583.785333pt;}
.ybb{bottom:584.000000pt;}
.y19d{bottom:585.056000pt;}
.ye0{bottom:587.530667pt;}
.y17e{bottom:589.397333pt;}
.y207{bottom:589.773333pt;}
.y13b{bottom:590.666667pt;}
.y1c1{bottom:590.869333pt;}
.y51{bottom:595.813333pt;}
.ya{bottom:596.703733pt;}
.y1e5{bottom:599.200000pt;}
.y96{bottom:600.452000pt;}
.y2d{bottom:602.574267pt;}
.y73{bottom:602.592000pt;}
.yba{bottom:604.000000pt;}
.y19c{bottom:604.928000pt;}
.y206{bottom:606.440000pt;}
.ydf{bottom:607.258667pt;}
.y1c0{bottom:610.341333pt;}
.y17d{bottom:615.248000pt;}
.y50{bottom:616.485333pt;}
.y13a{bottom:617.333333pt;}
.y1e4{bottom:619.600000pt;}
.y72{bottom:622.720000pt;}
.y205{bottom:623.106667pt;}
.y2c{bottom:623.107600pt;}
.yb9{bottom:624.000000pt;}
.y95{bottom:624.438667pt;}
.y19b{bottom:624.800000pt;}
.yde{bottom:626.986667pt;}
.y1bf{bottom:629.813333pt;}
.y139{bottom:630.666667pt;}
.y4f{bottom:637.157333pt;}
.y9{bottom:638.691200pt;}
.y204{bottom:639.773333pt;}
.y1e3{bottom:640.000000pt;}
.y94{bottom:641.105333pt;}
.y71{bottom:642.848000pt;}
.yb8{bottom:644.000000pt;}
.y19a{bottom:644.666667pt;}
.ydd{bottom:646.714667pt;}
.y1be{bottom:649.285333pt;}
.y17c{bottom:655.514667pt;}
.y138{bottom:657.333333pt;}
.y93{bottom:657.772000pt;}
.y4e{bottom:657.829333pt;}
.y8{bottom:659.891200pt;}
.y1e2{bottom:660.400000pt;}
.y70{bottom:662.976000pt;}
.yb7{bottom:664.000000pt;}
.y2b{bottom:664.174267pt;}
.y199{bottom:664.522667pt;}
.ydc{bottom:666.442667pt;}
.y1bd{bottom:668.757333pt;}
.y17b{bottom:668.976000pt;}
.y137{bottom:670.666667pt;}
.y92{bottom:674.438667pt;}
.y4d{bottom:678.501333pt;}
.y203{bottom:680.666667pt;}
.y1e1{bottom:680.800000pt;}
.y7{bottom:681.091200pt;}
.y2a{bottom:681.374267pt;}
.y17a{bottom:682.437333pt;}
.y6f{bottom:683.104000pt;}
.yb6{bottom:684.000000pt;}
.y198{bottom:684.394667pt;}
.ydb{bottom:686.170667pt;}
.y1bc{bottom:688.229333pt;}
.y179{bottom:695.898667pt;}
.y136{bottom:697.333333pt;}
.y91{bottom:698.425333pt;}
.y4c{bottom:699.173333pt;}
.y1e0{bottom:701.200000pt;}
.y6{bottom:702.291067pt;}
.y6e{bottom:703.232000pt;}
.yb5{bottom:704.000000pt;}
.y197{bottom:704.266667pt;}
.yda{bottom:705.898667pt;}
.y29{bottom:706.133333pt;}
.y1bb{bottom:707.701333pt;}
.y178{bottom:709.360000pt;}
.y135{bottom:710.666667pt;}
.y90{bottom:715.092000pt;}
.y4b{bottom:719.845333pt;}
.y1df{bottom:721.600000pt;}
.y177{bottom:722.821333pt;}
.y28{bottom:723.333333pt;}
.y6d{bottom:723.360000pt;}
.yb4{bottom:724.000000pt;}
.y196{bottom:724.133333pt;}
.yd9{bottom:725.626667pt;}
.y1ba{bottom:727.173333pt;}
.y8f{bottom:731.758667pt;}
.y176{bottom:736.293333pt;}
.y134{bottom:737.333333pt;}
.y4a{bottom:740.517333pt;}
.y27{bottom:740.533333pt;}
.y1de{bottom:742.000000pt;}
.y6c{bottom:743.488000pt;}
.yb3{bottom:744.000000pt;}
.yd8{bottom:745.354667pt;}
.y1b9{bottom:746.645333pt;}
.y8e{bottom:748.425333pt;}
.y175{bottom:749.754667pt;}
.y133{bottom:750.666667pt;}
.y26{bottom:757.733333pt;}
.y202{bottom:760.666667pt;}
.y49{bottom:761.189333pt;}
.y1dd{bottom:762.400000pt;}
.y5{bottom:763.176133pt;}
.y174{bottom:763.216000pt;}
.y6b{bottom:763.616000pt;}
.yb2{bottom:764.000000pt;}
.yd7{bottom:765.082667pt;}
.y1b8{bottom:766.117333pt;}
.y8d{bottom:772.412000pt;}
.y25{bottom:774.933333pt;}
.y173{bottom:776.677333pt;}
.y132{bottom:777.333333pt;}
.y48{bottom:781.861333pt;}
.y1dc{bottom:782.800000pt;}
.y6a{bottom:783.744000pt;}
.yb1{bottom:784.000000pt;}
.yd6{bottom:784.810667pt;}
.y1b7{bottom:785.589333pt;}
.y8c{bottom:789.078667pt;}
.y172{bottom:790.138667pt;}
.y131{bottom:790.666667pt;}
.y4{bottom:791.042800pt;}
.y24{bottom:792.133333pt;}
.y201{bottom:794.000000pt;}
.y47{bottom:802.533333pt;}
.y1db{bottom:803.200000pt;}
.y171{bottom:803.610667pt;}
.y69{bottom:803.872000pt;}
.yb0{bottom:804.000000pt;}
.yd5{bottom:804.538667pt;}
.y1b6{bottom:805.061333pt;}
.y23{bottom:809.333333pt;}
.y200{bottom:810.666667pt;}
.y170{bottom:817.072000pt;}
.y130{bottom:817.333333pt;}
.y46{bottom:823.200000pt;}
.y1da{bottom:823.600000pt;}
.y68{bottom:824.000000pt;}
.yd4{bottom:824.266667pt;}
.y8b{bottom:824.400000pt;}
.y1b5{bottom:824.533333pt;}
.y22{bottom:826.666667pt;}
.y1ff{bottom:827.333333pt;}
.y16f{bottom:830.533333pt;}
.y12f{bottom:830.666667pt;}
.y3{bottom:835.576133pt;}
.hf{height:29.437500pt;}
.h11{height:33.117188pt;}
.hd{height:34.730667pt;}
.h2{height:34.957031pt;}
.h10{height:35.312500pt;}
.he{height:36.229167pt;}
.h1{height:36.796875pt;}
.h9{height:37.333333pt;}
.hc{height:40.757812pt;}
.hb{height:42.656250pt;}
.h8{height:43.413333pt;}
.h4{height:43.893333pt;}
.h5{height:44.156250pt;}
.h6{height:45.286458pt;}
.h7{height:54.343750pt;}
.ha{height:70.130208pt;}
.h3{height:73.593750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.xb{left:65.622667pt;}
.x8{left:73.228400pt;}
.x1d{left:78.897600pt;}
.x13{left:81.358133pt;}
.x3{left:86.456667pt;}
.x12{left:88.744800pt;}
.x24{left:94.003467pt;}
.x1e{left:97.793600pt;}
.x6{left:100.106667pt;}
.x9{left:105.262667pt;}
.x1f{left:111.009600pt;}
.x7{left:113.228400pt;}
.xe{left:117.535200pt;}
.x20{left:118.897600pt;}
.x2{left:120.000000pt;}
.x23{left:124.209600pt;}
.x5{left:126.456667pt;}
.xa{left:133.369333pt;}
.x21{left:137.793600pt;}
.xd{left:147.361867pt;}
.x22{left:151.009600pt;}
.x1a{left:178.891467pt;}
.x15{left:195.811467pt;}
.x14{left:198.558133pt;}
.x1b{left:292.171467pt;}
.xc{left:294.422667pt;}
.x17{left:304.451467pt;}
.x16{left:324.571467pt;}
.x11{left:357.455200pt;}
.xf{left:374.161867pt;}
.x1c{left:405.451467pt;}
.x19{left:416.851467pt;}
.x10{left:427.988533pt;}
.x18{left:441.131467pt;}
.x4{left:564.791600pt;}
}




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