
    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_6c0f043c129735ab951d3c39.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_23743f0bdba41dde4ab8f2f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.913086;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a23675f0b5f60fe93d74b978.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052246;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_a55cbd60ad459be0949988c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_cdc9408b2f1b2ee875c6e1e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8f39e06bbe9b716b8bf0a520.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8245f737899aaab347350e3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.073242;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_1ed93e460c3dc0bd32bf1291.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.927246;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_4079a1b7b6e23f47cf0a2719.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_fa71493523338d05e6bffa96.woff2')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;}
.m6{transform:matrix(0.000000,-0.163726,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.163726,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.163726,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.214365,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.214365,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.214365,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.215894,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.215894,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.215894,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.241754,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.241754,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.241754,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249296,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.258526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258526,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.258528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258528,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.258530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258530,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.289494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289494,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289495,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.289496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289496,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.291556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291556,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.291559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291559,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.291561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291561,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.381734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381734,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.381736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381736,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.381739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381739,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-73.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.429800px;}
.v3{vertical-align:40.867800px;}
.ls19{letter-spacing:-0.197640px;}
.ls82{letter-spacing:-0.188947px;}
.ls5c{letter-spacing:-0.183254px;}
.ls33{letter-spacing:-0.162000px;}
.ls51{letter-spacing:-0.149263px;}
.ls3e{letter-spacing:-0.136728px;}
.ls1d{letter-spacing:-0.131760px;}
.ls1e{letter-spacing:-0.119880px;}
.ls67{letter-spacing:-0.116278px;}
.ls31{letter-spacing:-0.108000px;}
.ls81{letter-spacing:-0.094474px;}
.ls5b{letter-spacing:-0.091627px;}
.ls68{letter-spacing:-0.086239px;}
.ls66{letter-spacing:-0.077519px;}
.ls3f{letter-spacing:-0.076055px;}
.ls80{letter-spacing:-0.075366px;}
.ls4f{letter-spacing:-0.074632px;}
.ls5a{letter-spacing:-0.073096px;}
.ls35{letter-spacing:-0.072000px;}
.ls65{letter-spacing:-0.068797px;}
.ls1a{letter-spacing:-0.065880px;}
.ls50{letter-spacing:-0.059538px;}
.ls18{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.009720px;}
.ls6{letter-spacing:0.025560px;}
.ls8{letter-spacing:0.054720px;}
.ls1f{letter-spacing:0.065880px;}
.lsa{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.085644px;}
.ls0{letter-spacing:0.090000px;}
.ls6a{letter-spacing:0.092232px;}
.ls3{letter-spacing:0.093240px;}
.ls74{letter-spacing:0.125172px;}
.ls2{letter-spacing:0.128520px;}
.ls1b{letter-spacing:0.131760px;}
.ls1{letter-spacing:0.135000px;}
.ls9{letter-spacing:0.141480px;}
.ls20{letter-spacing:0.162000px;}
.ls85{letter-spacing:0.164700px;}
.ls56{letter-spacing:0.197640px;}
.ls6b{letter-spacing:0.204228px;}
.ls32{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.243756px;}
.ls11{letter-spacing:0.263520px;}
.ls7{letter-spacing:0.295560px;}
.ls22{letter-spacing:0.309636px;}
.ls1c{letter-spacing:0.329400px;}
.ls84{letter-spacing:0.349164px;}
.ls26{letter-spacing:0.362340px;}
.ls5{letter-spacing:0.369720px;}
.ls8a{letter-spacing:0.375516px;}
.ls34{letter-spacing:0.395280px;}
.lse{letter-spacing:0.421632px;}
.ls40{letter-spacing:0.441396px;}
.lsc{letter-spacing:0.454572px;}
.ls48{letter-spacing:0.461160px;}
.ls3b{letter-spacing:0.467748px;}
.ls63{letter-spacing:0.671976px;}
.ls7f{letter-spacing:0.757620px;}
.ls7d{letter-spacing:0.869616px;}
.ls58{letter-spacing:0.895968px;}
.ls3d{letter-spacing:1.040904px;}
.ls2e{letter-spacing:1.159488px;}
.ls71{letter-spacing:1.838052px;}
.ls69{letter-spacing:1.877580px;}
.ls60{letter-spacing:1.910520px;}
.ls72{letter-spacing:2.239920px;}
.ls4b{letter-spacing:2.635200px;}
.ls10{letter-spacing:2.964600px;}
.ls4c{letter-spacing:3.070008px;}
.ls4a{letter-spacing:3.307176px;}
.lsf{letter-spacing:3.359880px;}
.lsb{letter-spacing:3.689280px;}
.ls2f{letter-spacing:4.229496px;}
.ls23{letter-spacing:4.413960px;}
.ls5e{letter-spacing:4.743360px;}
.ls5f{letter-spacing:4.782888px;}
.ls2a{letter-spacing:4.815828px;}
.ls5d{letter-spacing:4.848768px;}
.ls25{letter-spacing:5.468040px;}
.ls46{letter-spacing:6.192720px;}
.ls45{letter-spacing:6.588000px;}
.ls77{letter-spacing:6.647292px;}
.ls15{letter-spacing:6.917400px;}
.ls24{letter-spacing:6.943752px;}
.ls73{letter-spacing:7.312680px;}
.ls30{letter-spacing:7.609140px;}
.ls64{letter-spacing:7.642080px;}
.ls27{letter-spacing:8.037360px;}
.ls49{letter-spacing:8.762040px;}
.ls55{letter-spacing:9.091440px;}
.ls29{letter-spacing:9.816120px;}
.ls41{letter-spacing:10.540800px;}
.ls3a{letter-spacing:11.594880px;}
.ls53{letter-spacing:11.766168px;}
.ls3c{letter-spacing:11.990160px;}
.ls8b{letter-spacing:12.372264px;}
.ls79{letter-spacing:13.768920px;}
.ls7a{letter-spacing:13.834800px;}
.ls78{letter-spacing:14.058792px;}
.ls52{letter-spacing:14.098320px;}
.ls4d{letter-spacing:14.493600px;}
.ls12{letter-spacing:15.218280px;}
.ls37{letter-spacing:15.942960px;}
.ls83{letter-spacing:16.667640px;}
.lsd{letter-spacing:16.997040px;}
.ls16{letter-spacing:18.446400px;}
.ls17{letter-spacing:18.841680px;}
.ls47{letter-spacing:19.171080px;}
.ls7c{letter-spacing:19.329192px;}
.ls75{letter-spacing:19.500480px;}
.ls6c{letter-spacing:19.895760px;}
.ls6d{letter-spacing:20.317392px;}
.ls59{letter-spacing:20.620440px;}
.ls6f{letter-spacing:20.949840px;}
.ls6e{letter-spacing:21.345120px;}
.ls86{letter-spacing:22.069800px;}
.ls4e{letter-spacing:23.123880px;}
.ls2d{letter-spacing:23.519160px;}
.ls13{letter-spacing:23.545512px;}
.ls38{letter-spacing:23.841972px;}
.ls39{letter-spacing:23.848560px;}
.ls89{letter-spacing:24.573240px;}
.ls44{letter-spacing:26.352000px;}
.ls54{letter-spacing:26.984448px;}
.ls2b{letter-spacing:28.157112px;}
.ls2c{letter-spacing:28.196640px;}
.ls61{letter-spacing:29.204604px;}
.ls21{letter-spacing:29.322000px;}
.ls76{letter-spacing:29.580120px;}
.ls70{letter-spacing:29.975400px;}
.ls87{letter-spacing:32.874120px;}
.ls7e{letter-spacing:33.203520px;}
.ls43{letter-spacing:36.826920px;}
.ls42{letter-spacing:37.156320px;}
.ls88{letter-spacing:39.330360px;}
.ls36{letter-spacing:40.713840px;}
.ls8c{letter-spacing:73.192680px;}
.ls7b{letter-spacing:194.760000px;}
.ls62{letter-spacing:290.520000px;}
.ls57{letter-spacing:345.600000px;}
.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;}
}
.ws97{word-spacing:-43.033361px;}
.ws0{word-spacing:-20.970000px;}
.ws5{word-spacing:-18.072000px;}
.wsaf{word-spacing:-17.928000px;}
.ws8c{word-spacing:-16.931160px;}
.ws1f{word-spacing:-16.865280px;}
.ws3{word-spacing:-16.799400px;}
.ws8b{word-spacing:-16.733520px;}
.wsc1{word-spacing:-16.667640px;}
.ws70{word-spacing:-16.601760px;}
.ws7{word-spacing:-16.535880px;}
.ws2{word-spacing:-16.470000px;}
.ws6{word-spacing:-16.404120px;}
.ws4{word-spacing:-16.338240px;}
.ws1{word-spacing:-16.272360px;}
.ws7f{word-spacing:-13.976506px;}
.ws1e{word-spacing:-13.392000px;}
.wsb8{word-spacing:-12.942883px;}
.ws80{word-spacing:-12.552926px;}
.ws98{word-spacing:-11.901010px;}
.ws96{word-spacing:-10.658835px;}
.ws3e{word-spacing:-10.495562px;}
.wsb5{word-spacing:-10.400508px;}
.ws59{word-spacing:-10.299161px;}
.ws5b{word-spacing:-10.224529px;}
.ws7e{word-spacing:-10.087193px;}
.ws95{word-spacing:-9.494014px;}
.ws5a{word-spacing:-8.216244px;}
.wsa2{word-spacing:-0.395280px;}
.ws92{word-spacing:-0.329400px;}
.ws17{word-spacing:-0.263520px;}
.ws21{word-spacing:-0.216000px;}
.wsb{word-spacing:-0.131760px;}
.wsd{word-spacing:-0.119880px;}
.ws31{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.065880px;}
.wsbb{word-spacing:-0.051836px;}
.ws83{word-spacing:-0.050275px;}
.ws9a{word-spacing:-0.047318px;}
.ws5d{word-spacing:-0.040950px;}
.ws8{word-spacing:0.000000px;}
.ws99{word-spacing:0.034399px;}
.ws81{word-spacing:0.036548px;}
.ws5c{word-spacing:0.037316px;}
.wsba{word-spacing:0.037683px;}
.ws43{word-spacing:0.038027px;}
.wsa{word-spacing:0.065880px;}
.ws30{word-spacing:0.072000px;}
.ws82{word-spacing:0.073096px;}
.ws5e{word-spacing:0.074632px;}
.wsb9{word-spacing:0.075366px;}
.ws9b{word-spacing:0.077519px;}
.ws84{word-spacing:0.091627px;}
.wsbc{word-spacing:0.094474px;}
.ws3f{word-spacing:0.108000px;}
.ws10{word-spacing:0.131760px;}
.ws42{word-spacing:0.136728px;}
.ws22{word-spacing:0.162000px;}
.ws9{word-spacing:0.197640px;}
.wsc{word-spacing:0.359640px;}
.ws6c{word-spacing:0.527040px;}
.ws38{word-spacing:0.592920px;}
.ws2f{word-spacing:1.119960px;}
.ws4b{word-spacing:1.317600px;}
.ws14{word-spacing:1.449360px;}
.ws65{word-spacing:1.581120px;}
.ws12{word-spacing:1.647000px;}
.wsac{word-spacing:1.844640px;}
.ws8e{word-spacing:1.976400px;}
.wsa0{word-spacing:2.042280px;}
.ws45{word-spacing:2.371680px;}
.ws57{word-spacing:2.766960px;}
.ws16{word-spacing:3.030480px;}
.ws58{word-spacing:3.096360px;}
.wsa9{word-spacing:3.294000px;}
.wsaa{word-spacing:3.425760px;}
.ws37{word-spacing:3.491640px;}
.wsa8{word-spacing:3.623400px;}
.wsa3{word-spacing:3.755160px;}
.ws11{word-spacing:3.821040px;}
.ws34{word-spacing:4.084560px;}
.ws94{word-spacing:4.150440px;}
.ws66{word-spacing:4.216320px;}
.ws35{word-spacing:4.479840px;}
.ws20{word-spacing:4.482000px;}
.ws2e{word-spacing:4.545720px;}
.ws2c{word-spacing:4.677480px;}
.ws8d{word-spacing:4.875120px;}
.ws55{word-spacing:5.204520px;}
.ws72{word-spacing:5.402160px;}
.ws36{word-spacing:5.468040px;}
.ws28{word-spacing:5.533920px;}
.ws27{word-spacing:5.599800px;}
.ws52{word-spacing:5.797440px;}
.wsc4{word-spacing:5.929200px;}
.ws3c{word-spacing:5.995080px;}
.wsad{word-spacing:6.324480px;}
.ws54{word-spacing:6.522120px;}
.wsb3{word-spacing:6.588000px;}
.ws9e{word-spacing:6.653880px;}
.ws1c{word-spacing:6.719760px;}
.ws25{word-spacing:6.917400px;}
.ws26{word-spacing:6.983280px;}
.ws24{word-spacing:7.049160px;}
.ws39{word-spacing:7.444440px;}
.ws4d{word-spacing:7.707960px;}
.wsf{word-spacing:7.773840px;}
.ws29{word-spacing:7.971480px;}
.ws2a{word-spacing:8.103240px;}
.wse{word-spacing:8.169120px;}
.ws4e{word-spacing:8.366760px;}
.wsa7{word-spacing:8.498520px;}
.ws6d{word-spacing:8.827920px;}
.wsa5{word-spacing:8.893800px;}
.ws78{word-spacing:9.025560px;}
.ws79{word-spacing:9.157320px;}
.ws1d{word-spacing:9.354960px;}
.ws1a{word-spacing:9.552600px;}
.wsb4{word-spacing:9.750240px;}
.ws2b{word-spacing:9.947880px;}
.ws46{word-spacing:10.079640px;}
.ws63{word-spacing:10.277280px;}
.ws75{word-spacing:10.804320px;}
.wsb2{word-spacing:10.936080px;}
.ws74{word-spacing:11.001960px;}
.wsbf{word-spacing:11.331360px;}
.ws93{word-spacing:11.397240px;}
.ws48{word-spacing:11.529000px;}
.ws47{word-spacing:11.726640px;}
.ws4a{word-spacing:12.056040px;}
.ws3a{word-spacing:12.121920px;}
.ws71{word-spacing:12.846600px;}
.ws6e{word-spacing:13.176000px;}
.wsa4{word-spacing:13.571280px;}
.wsbe{word-spacing:13.834800px;}
.ws49{word-spacing:13.900680px;}
.ws7a{word-spacing:13.966560px;}
.ws5f{word-spacing:14.295960px;}
.wsc2{word-spacing:14.427720px;}
.ws53{word-spacing:14.757120px;}
.ws85{word-spacing:14.823000px;}
.ws86{word-spacing:14.954760px;}
.ws19{word-spacing:15.152400px;}
.ws18{word-spacing:15.350040px;}
.ws3d{word-spacing:15.613560px;}
.ws89{word-spacing:16.008840px;}
.ws23{word-spacing:16.074720px;}
.ws4c{word-spacing:16.667640px;}
.wsc3{word-spacing:17.062920px;}
.wsae{word-spacing:17.128800px;}
.ws68{word-spacing:17.787600px;}
.ws67{word-spacing:17.853480px;}
.ws9f{word-spacing:18.973440px;}
.ws56{word-spacing:19.302840px;}
.wsb0{word-spacing:19.500480px;}
.wsab{word-spacing:19.698120px;}
.ws90{word-spacing:20.027520px;}
.wsc5{word-spacing:20.291040px;}
.ws8a{word-spacing:20.686320px;}
.ws41{word-spacing:20.752200px;}
.ws64{word-spacing:20.883960px;}
.ws33{word-spacing:21.015720px;}
.ws87{word-spacing:21.081600px;}
.wsa1{word-spacing:21.147480px;}
.ws62{word-spacing:22.530960px;}
.ws7b{word-spacing:22.728600px;}
.ws61{word-spacing:22.926240px;}
.wsb6{word-spacing:23.047096px;}
.ws9d{word-spacing:23.189760px;}
.wsb7{word-spacing:23.224058px;}
.ws60{word-spacing:23.255640px;}
.ws9c{word-spacing:23.650920px;}
.ws44{word-spacing:23.782680px;}
.ws1b{word-spacing:23.914440px;}
.ws7d{word-spacing:23.980320px;}
.ws7c{word-spacing:24.375600px;}
.ws88{word-spacing:25.429680px;}
.ws73{word-spacing:26.154360px;}
.ws6f{word-spacing:26.352000px;}
.ws51{word-spacing:26.483760px;}
.ws77{word-spacing:26.681400px;}
.ws32{word-spacing:26.813160px;}
.ws76{word-spacing:27.208440px;}
.wsc6{word-spacing:27.537840px;}
.ws6b{word-spacing:28.328400px;}
.wsbd{word-spacing:29.053080px;}
.ws91{word-spacing:29.316600px;}
.wsa6{word-spacing:29.909520px;}
.ws2d{word-spacing:30.238920px;}
.wsc0{word-spacing:33.730560px;}
.ws8f{word-spacing:35.114040px;}
.ws3b{word-spacing:35.838720px;}
.ws40{word-spacing:36.234000px;}
.ws50{word-spacing:36.761040px;}
.ws4f{word-spacing:36.958680px;}
.ws15{word-spacing:48.619440px;}
.wsb1{word-spacing:50.991120px;}
.ws69{word-spacing:54.878040px;}
.ws6a{word-spacing:54.943920px;}
.wsc7{word-spacing:73.126800px;}
._21{margin-left:-569.140582px;}
._26{margin-left:-485.742631px;}
._27{margin-left:-479.757274px;}
._20{margin-left:-478.164661px;}
._23{margin-left:-362.883106px;}
._22{margin-left:-357.072006px;}
._2b{margin-left:-335.749440px;}
._1{margin-left:-1.065276px;}
._0{width:1.015236px;}
._4{width:2.176272px;}
._3{width:3.976416px;}
._a{width:5.973948px;}
._11{width:7.885836px;}
._13{width:9.150048px;}
._f{width:10.290456px;}
._1b{width:11.539440px;}
._1c{width:12.546288px;}
._14{width:14.153688px;}
._e{width:15.228792px;}
._7{width:17.503632px;}
._8{width:19.381896px;}
._16{width:20.443680px;}
._17{width:21.943944px;}
._15{width:23.179752px;}
._10{width:24.296544px;}
._b{width:25.857900px;}
._c{width:26.991036px;}
._2{width:28.419948px;}
._5{width:29.422008px;}
._6{width:30.539916px;}
._1e{width:31.825260px;}
._25{width:33.559272px;}
._1f{width:34.651512px;}
._19{width:36.133812px;}
._1d{width:37.600452px;}
._2a{width:40.330368px;}
._29{width:41.339700px;}
._18{width:42.570972px;}
._28{width:44.777952px;}
._2c{width:46.067832px;}
._9{width:47.913840px;}
._d{width:49.131936px;}
._24{width:50.225796px;}
._12{width:60.167520px;}
._30{width:109.472112px;}
._2f{width:110.810160px;}
._32{width:172.605600px;}
._2e{width:220.091904px;}
._2d{width:230.369184px;}
._33{width:685.717884px;}
._1a{width:1491.048000px;}
._31{width:1639.265004px;}
.fc1{color:rgb(54,95,145);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.769000px;}
.fsf{font-size:34.398600px;}
.fsb{font-size:36.547800px;}
.fs7{font-size:37.315800px;}
.fs14{font-size:37.683000px;}
.fs6{font-size:38.027400px;}
.fs12{font-size:38.759400px;}
.fs8{font-size:40.950000px;}
.fs18{font-size:42.120000px;}
.fs13{font-size:43.119600px;}
.fs5{font-size:45.576000px;}
.fse{font-size:45.813600px;}
.fs17{font-size:47.236800px;}
.fs10{font-size:47.318400px;}
.fsc{font-size:50.275200px;}
.fs15{font-size:51.836400px;}
.fs16{font-size:53.604600px;}
.fs4{font-size:54.000000px;}
.fs11{font-size:55.184400px;}
.fsd{font-size:58.217400px;}
.fsa{font-size:62.528400px;}
.fs1{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.fs2{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y90{bottom:4.053150px;}
.y13b{bottom:4.683000px;}
.yfc{bottom:4.976400px;}
.y1cc{bottom:5.174400px;}
.y1d6{bottom:6.589950px;}
.y1de{bottom:8.137350px;}
.y1d7{bottom:9.995550px;}
.y1df{bottom:13.400400px;}
.y156{bottom:13.485300px;}
.yfb{bottom:17.545200px;}
.y1cb{bottom:18.133500px;}
.y155{bottom:23.175150px;}
.y8e{bottom:31.341300px;}
.y14a{bottom:31.734450px;}
.y139{bottom:36.213202px;}
.y150{bottom:38.234700px;}
.y149{bottom:41.424300px;}
.y138{bottom:44.855850px;}
.y96{bottom:47.543374px;}
.y14f{bottom:47.924550px;}
.yf9{bottom:51.089100px;}
.y1c9{bottom:53.516850px;}
.y1c5{bottom:53.517000px;}
.y1d9{bottom:56.789700px;}
.y141{bottom:59.484954px;}
.yf8{bottom:60.226050px;}
.y1c8{bottom:62.937600px;}
.y1c7{bottom:62.937750px;}
.y1c3{bottom:62.937900px;}
.y9b{bottom:64.429800px;}
.yf7{bottom:69.363000px;}
.y1c6{bottom:72.358500px;}
.y1c4{bottom:72.358650px;}
.y1c2{bottom:72.358800px;}
.y154{bottom:80.627700px;}
.y103{bottom:84.872779px;}
.y1d2{bottom:88.369500px;}
.y153{bottom:90.317550px;}
.y14e{bottom:102.147150px;}
.y95{bottom:102.541601px;}
.y152{bottom:102.995100px;}
.y5c{bottom:103.508850px;}
.y1dd{bottom:107.387400px;}
.y14d{bottom:111.837000px;}
.y9f{bottom:112.402650px;}
.y151{bottom:112.684950px;}
.y148{bottom:113.088600px;}
.y9d{bottom:114.254400px;}
.y140{bottom:122.142004px;}
.y147{bottom:122.778450px;}
.y102{bottom:136.953395px;}
.y1d8{bottom:137.728950px;}
.y146{bottom:141.794700px;}
.y1db{bottom:143.257200px;}
.y98{bottom:144.687150px;}
.y14c{bottom:146.276250px;}
.y9a{bottom:149.124750px;}
.y145{bottom:151.484550px;}
.y1d1{bottom:152.457300px;}
.y14b{bottom:155.966100px;}
.y94{bottom:157.539829px;}
.y105{bottom:164.379450px;}
.y143{bottom:164.968500px;}
.y1d4{bottom:168.646200px;}
.y1dc{bottom:175.632900px;}
.y5d{bottom:182.982000px;}
.y13f{bottom:184.842052px;}
.y101{bottom:189.034009px;}
.y9c{bottom:190.598700px;}
.y93{bottom:212.500845px;}
.y1d0{bottom:216.545250px;}
.y5b{bottom:217.733700px;}
.y9e{bottom:226.237500px;}
.y1f2{bottom:238.902480px;}
.y8c{bottom:240.133410px;}
.y51{bottom:240.157080px;}
.y100{bottom:241.068940px;}
.y182{bottom:246.240180px;}
.y1f1{bottom:246.299670px;}
.y13e{bottom:247.499102px;}
.y74{bottom:250.969230px;}
.y25{bottom:255.692610px;}
.ydf{bottom:257.447700px;}
.y8b{bottom:258.678630px;}
.y50{bottom:258.702300px;}
.y181{bottom:264.785400px;}
.y1f0{bottom:264.927240px;}
.y92{bottom:267.499072px;}
.y73{bottom:269.514450px;}
.y24{bottom:274.237830px;}
.y5f{bottom:276.055500px;}
.yde{bottom:276.075270px;}
.yb5{bottom:276.166440px;}
.y8a{bottom:277.223850px;}
.y4f{bottom:277.247520px;}
.y5a{bottom:280.329600px;}
.y1cf{bottom:280.677450px;}
.y180{bottom:283.330620px;}
.y1ef{bottom:283.472460px;}
.y72{bottom:288.142020px;}
.y60{bottom:290.829145px;}
.y23{bottom:292.783050px;}
.yff{bottom:293.149555px;}
.ydd{bottom:294.620490px;}
.yb4{bottom:294.794010px;}
.y89{bottom:295.769070px;}
.y4e{bottom:295.792740px;}
.ya0{bottom:299.436900px;}
.y1da{bottom:300.314700px;}
.y17f{bottom:301.958190px;}
.y1ee{bottom:302.017680px;}
.y116{bottom:302.821020px;}
.y61{bottom:305.602790px;}
.y71{bottom:306.687240px;}
.y13d{bottom:310.199150px;}
.y22{bottom:311.410620px;}
.ydc{bottom:313.165710px;}
.yb3{bottom:313.339230px;}
.ya1{bottom:313.934088px;}
.y1a7{bottom:314.338500px;}
.y88{bottom:314.396640px;}
.y4d{bottom:314.420310px;}
.y62{bottom:320.376435px;}
.y17e{bottom:320.503410px;}
.y1ed{bottom:320.562900px;}
.y115{bottom:321.366240px;}
.y91{bottom:322.497300px;}
.y70{bottom:325.232460px;}
.y157{bottom:329.252100px;}
.y21{bottom:329.955840px;}
.ydb{bottom:331.710930px;}
.yb2{bottom:331.884450px;}
.y1a6{bottom:332.883720px;}
.y87{bottom:332.941860px;}
.y4c{bottom:332.965530px;}
.y166{bottom:336.217680px;}
.y17d{bottom:339.048630px;}
.y1ec{bottom:339.190470px;}
.y114{bottom:339.911460px;}
.y6f{bottom:343.777680px;}
.y1ce{bottom:344.765400px;}
.yfe{bottom:345.184485px;}
.y158{bottom:346.004065px;}
.y20{bottom:348.501060px;}
.yda{bottom:350.338500px;}
.yb1{bottom:350.429670px;}
.y1a5{bottom:351.428940px;}
.y86{bottom:351.487080px;}
.y4b{bottom:351.510750px;}
.y165{bottom:354.845250px;}
.y17c{bottom:357.593850px;}
.y1eb{bottom:357.735690px;}
.y113{bottom:358.456680px;}
.y6e{bottom:362.405250px;}
.y159{bottom:362.756029px;}
.y1f{bottom:367.046280px;}
.y106{bottom:367.624500px;}
.yd9{bottom:368.883720px;}
.yb0{bottom:369.057240px;}
.y1a4{bottom:369.974160px;}
.y85{bottom:370.032300px;}
.y4a{bottom:370.055970px;}
.y13c{bottom:372.856200px;}
.y164{bottom:373.390470px;}
.y17b{bottom:376.221420px;}
.y1ea{bottom:376.280910px;}
.y112{bottom:377.084250px;}
.y1e0{bottom:378.202650px;}
.y6d{bottom:380.950470px;}
.y107{bottom:385.426500px;}
.y1e{bottom:385.673850px;}
.yd8{bottom:387.428940px;}
.yaf{bottom:387.602460px;}
.y1a3{bottom:388.601730px;}
.y84{bottom:388.659870px;}
.y49{bottom:388.683540px;}
.y163{bottom:391.935690px;}
.y17a{bottom:394.766640px;}
.y1e9{bottom:394.826130px;}
.y111{bottom:395.629470px;}
.y1e1{bottom:396.557700px;}
.yfd{bottom:397.265100px;}
.y6c{bottom:399.495690px;}
.y1d{bottom:404.219070px;}
.yd7{bottom:405.974160px;}
.yae{bottom:406.147680px;}
.y1a2{bottom:407.146950px;}
.y83{bottom:407.205090px;}
.y48{bottom:407.228760px;}
.y1cd{bottom:408.853350px;}
.y162{bottom:410.480910px;}
.y1c0{bottom:413.295840px;}
.y179{bottom:413.311860px;}
.y1e8{bottom:413.453700px;}
.y110{bottom:414.174690px;}
.y6b{bottom:418.040910px;}
.y1c{bottom:422.764290px;}
.yd6{bottom:424.601730px;}
.yad{bottom:424.692900px;}
.y1a1{bottom:425.692170px;}
.y82{bottom:425.750310px;}
.y47{bottom:425.773980px;}
.y161{bottom:429.108480px;}
.y135{bottom:431.819820px;}
.y1bf{bottom:431.841060px;}
.y178{bottom:431.857080px;}
.y1e7{bottom:431.998920px;}
.y10f{bottom:432.719910px;}
.y6a{bottom:436.668480px;}
.y1b{bottom:441.309510px;}
.yd5{bottom:443.146950px;}
.yac{bottom:443.320470px;}
.y1a0{bottom:444.237390px;}
.y81{bottom:444.295530px;}
.y46{bottom:444.319200px;}
.y160{bottom:447.653700px;}
.y134{bottom:450.447390px;}
.y1be{bottom:450.468630px;}
.y177{bottom:450.484650px;}
.y1e6{bottom:450.544140px;}
.y10e{bottom:451.347480px;}
.y69{bottom:455.213700px;}
.y1a{bottom:459.937080px;}
.yd4{bottom:461.692170px;}
.yab{bottom:461.865690px;}
.y19f{bottom:462.864960px;}
.y80{bottom:462.923100px;}
.y45{bottom:462.946770px;}
.y15f{bottom:466.198920px;}
.y133{bottom:468.992610px;}
.y1bd{bottom:469.013850px;}
.y176{bottom:469.029870px;}
.y1e5{bottom:469.089360px;}
.y10d{bottom:469.892700px;}
.y68{bottom:473.758920px;}
.y19{bottom:478.482300px;}
.yd3{bottom:480.237390px;}
.yaa{bottom:480.410910px;}
.y19e{bottom:481.410180px;}
.y7f{bottom:481.468320px;}
.y44{bottom:481.491990px;}
.y15e{bottom:484.744140px;}
.y132{bottom:487.537830px;}
.y1bc{bottom:487.559070px;}
.y175{bottom:487.575090px;}
.y1e4{bottom:487.716930px;}
.y10c{bottom:488.437920px;}
.y67{bottom:492.304140px;}
.y18{bottom:497.027520px;}
.yd2{bottom:498.864960px;}
.ya9{bottom:498.956130px;}
.y19d{bottom:499.955400px;}
.y7e{bottom:500.013540px;}
.y43{bottom:500.037210px;}
.y15d{bottom:503.371710px;}
.y131{bottom:506.083050px;}
.y1bb{bottom:506.104290px;}
.y174{bottom:506.120310px;}
.y10b{bottom:506.983140px;}
.y66{bottom:510.931710px;}
.y17{bottom:515.572740px;}
.yd1{bottom:517.410180px;}
.ya8{bottom:517.583700px;}
.y19c{bottom:518.500620px;}
.y7d{bottom:518.558760px;}
.y42{bottom:518.582430px;}
.y15c{bottom:521.916930px;}
.y130{bottom:524.710620px;}
.y1ba{bottom:524.731860px;}
.y173{bottom:524.747880px;}
.y10a{bottom:525.610710px;}
.y65{bottom:529.476930px;}
.y1e3{bottom:533.520000px;}
.y16{bottom:534.200310px;}
.yd0{bottom:535.955400px;}
.ya7{bottom:536.128920px;}
.y19b{bottom:537.128190px;}
.y7c{bottom:537.186330px;}
.y41{bottom:537.210000px;}
.y12f{bottom:543.255840px;}
.y1b9{bottom:543.277080px;}
.y172{bottom:543.293100px;}
.y15{bottom:552.745530px;}
.y1c1{bottom:553.785000px;}
.y1e2{bottom:553.860000px;}
.ycf{bottom:554.500620px;}
.ya6{bottom:554.674140px;}
.y19a{bottom:555.673410px;}
.y7b{bottom:555.731550px;}
.yf5{bottom:561.787830px;}
.y12e{bottom:561.801060px;}
.y1b8{bottom:561.822300px;}
.y171{bottom:561.838320px;}
.y1ca{bottom:567.408000px;}
.y15b{bottom:567.720000px;}
.y14{bottom:571.290750px;}
.y109{bottom:571.413780px;}
.yce{bottom:573.128190px;}
.ya5{bottom:573.219360px;}
.y40{bottom:574.200000px;}
.y199{bottom:574.218630px;}
.y7a{bottom:574.276770px;}
.y64{bottom:575.280000px;}
.yf4{bottom:580.333050px;}
.y12d{bottom:580.346280px;}
.y1b7{bottom:580.367520px;}
.y170{bottom:580.383540px;}
.y13{bottom:589.835970px;}
.ycd{bottom:591.673410px;}
.ya4{bottom:591.846930px;}
.y137{bottom:592.335000px;}
.y15a{bottom:592.380000px;}
.y198{bottom:592.763850px;}
.y79{bottom:592.821990px;}
.yf6{bottom:594.885000px;}
.y108{bottom:594.900000px;}
.yf3{bottom:598.960620px;}
.y12c{bottom:598.973850px;}
.y1b6{bottom:598.995090px;}
.y16f{bottom:599.011110px;}
.y5e{bottom:599.910000px;}
.y63{bottom:599.940000px;}
.y13a{bottom:604.044000px;}
.yfa{bottom:607.324500px;}
.y12{bottom:608.463540px;}
.ycc{bottom:610.218630px;}
.y59{bottom:610.234500px;}
.y197{bottom:611.391420px;}
.y78{bottom:611.449560px;}
.yf2{bottom:617.505840px;}
.y12b{bottom:617.519070px;}
.y1b5{bottom:617.540310px;}
.y16e{bottom:617.556330px;}
.y11{bottom:627.008760px;}
.ycb{bottom:628.763850px;}
.y3f{bottom:629.923410px;}
.y196{bottom:629.936640px;}
.y77{bottom:629.994780px;}
.yf1{bottom:636.051060px;}
.y12a{bottom:636.064290px;}
.y1b4{bottom:636.085530px;}
.y16d{bottom:636.101550px;}
.ya3{bottom:637.650000px;}
.y10{bottom:645.553980px;}
.y1d5{bottom:646.047000px;}
.y1d3{bottom:646.930500px;}
.yca{bottom:647.391420px;}
.y3e{bottom:648.468630px;}
.y195{bottom:648.481860px;}
.y76{bottom:648.540000px;}
.yf0{bottom:654.596280px;}
.y129{bottom:654.609510px;}
.y1b3{bottom:654.630750px;}
.y16c{bottom:654.646770px;}
.y144{bottom:655.318500px;}
.y142{bottom:656.127000px;}
.y8d{bottom:662.160000px;}
.ya2{bottom:662.220000px;}
.yf{bottom:664.099200px;}
.yc9{bottom:665.936640px;}
.y3d{bottom:667.013850px;}
.y194{bottom:667.027080px;}
.y8f{bottom:672.292500px;}
.yef{bottom:673.223850px;}
.y128{bottom:673.237080px;}
.y1b2{bottom:673.258320px;}
.y16b{bottom:673.274340px;}
.ye{bottom:682.726770px;}
.y104{bottom:684.411000px;}
.yc8{bottom:684.481860px;}
.y75{bottom:685.530000px;}
.y3c{bottom:685.641420px;}
.y193{bottom:685.654650px;}
.yee{bottom:691.769070px;}
.y127{bottom:691.782300px;}
.y1b1{bottom:691.803540px;}
.y16a{bottom:691.819560px;}
.yd{bottom:701.271990px;}
.yc7{bottom:703.027080px;}
.y3b{bottom:704.186640px;}
.y192{bottom:704.199870px;}
.yed{bottom:710.314290px;}
.y126{bottom:710.327520px;}
.y1b0{bottom:710.348760px;}
.y169{bottom:710.364780px;}
.y99{bottom:712.788000px;}
.y97{bottom:713.487000px;}
.yc{bottom:719.817210px;}
.yc6{bottom:721.654650px;}
.y3a{bottom:722.731860px;}
.y191{bottom:722.745090px;}
.yec{bottom:728.859510px;}
.y125{bottom:728.872740px;}
.y1af{bottom:728.893980px;}
.y168{bottom:728.910000px;}
.yb{bottom:738.362430px;}
.yc5{bottom:740.199870px;}
.y39{bottom:741.277080px;}
.y190{bottom:741.290310px;}
.yeb{bottom:747.487080px;}
.y124{bottom:747.500310px;}
.y1ae{bottom:747.521550px;}
.ya{bottom:756.990000px;}
.yc4{bottom:758.745090px;}
.y38{bottom:759.904650px;}
.y18f{bottom:759.917880px;}
.y167{bottom:765.900000px;}
.yea{bottom:766.032300px;}
.y123{bottom:766.045530px;}
.y1ad{bottom:766.066770px;}
.yc3{bottom:777.290310px;}
.y37{bottom:778.449870px;}
.y18e{bottom:778.463100px;}
.ye9{bottom:784.577520px;}
.y122{bottom:784.590750px;}
.y1ac{bottom:784.611990px;}
.y9{bottom:793.980000px;}
.yc2{bottom:795.917880px;}
.y36{bottom:796.995090px;}
.y18d{bottom:797.008320px;}
.ye8{bottom:803.122740px;}
.y121{bottom:803.135970px;}
.y1ab{bottom:803.157210px;}
.yc1{bottom:814.463100px;}
.y35{bottom:815.540310px;}
.y18c{bottom:815.553540px;}
.ye7{bottom:821.750310px;}
.y120{bottom:821.763540px;}
.y1aa{bottom:821.784780px;}
.y8{bottom:832.230000px;}
.yc0{bottom:833.008320px;}
.y34{bottom:834.167880px;}
.y18b{bottom:834.181110px;}
.ye6{bottom:840.295530px;}
.y11f{bottom:840.308760px;}
.y1a9{bottom:840.330000px;}
.ybf{bottom:851.553540px;}
.y33{bottom:852.713100px;}
.y18a{bottom:852.726330px;}
.ye5{bottom:858.840750px;}
.y11e{bottom:858.853980px;}
.y7{bottom:862.200000px;}
.ybe{bottom:870.181110px;}
.y32{bottom:871.258320px;}
.y189{bottom:871.271550px;}
.y1a8{bottom:877.320000px;}
.ye4{bottom:877.385970px;}
.y11d{bottom:877.399200px;}
.y6{bottom:886.683780px;}
.ybd{bottom:888.726330px;}
.y31{bottom:889.803540px;}
.y188{bottom:889.816770px;}
.ye3{bottom:896.013540px;}
.y11c{bottom:896.026770px;}
.ybc{bottom:907.271550px;}
.y30{bottom:908.431110px;}
.y187{bottom:908.444340px;}
.ye2{bottom:914.558760px;}
.y11b{bottom:914.571990px;}
.y5{bottom:920.430000px;}
.ybb{bottom:925.816770px;}
.y2f{bottom:926.976330px;}
.y186{bottom:926.989560px;}
.ye1{bottom:933.103980px;}
.y11a{bottom:933.117210px;}
.yba{bottom:944.444340px;}
.y2e{bottom:945.521550px;}
.y185{bottom:945.534780px;}
.ye0{bottom:951.649200px;}
.y119{bottom:951.662430px;}
.y4{bottom:951.748740px;}
.yb9{bottom:962.989560px;}
.y2d{bottom:964.066770px;}
.y184{bottom:964.080000px;}
.y58{bottom:970.276770px;}
.y118{bottom:970.290000px;}
.yb8{bottom:981.534780px;}
.y2c{bottom:982.694340px;}
.y3{bottom:984.420000px;}
.y57{bottom:988.821990px;}
.yb7{bottom:1000.080000px;}
.y183{bottom:1001.070000px;}
.y2b{bottom:1001.239560px;}
.y117{bottom:1007.280000px;}
.y56{bottom:1007.367210px;}
.y2{bottom:1008.000000px;}
.y136{bottom:1010.512170px;}
.y2a{bottom:1019.784780px;}
.y55{bottom:1025.912430px;}
.y1{bottom:1031.670000px;}
.yb6{bottom:1037.070000px;}
.y29{bottom:1038.330000px;}
.y54{bottom:1044.540000px;}
.y28{bottom:1056.690000px;}
.y53{bottom:1071.540000px;}
.y27{bottom:1078.654500px;}
.y52{bottom:1093.860000px;}
.y26{bottom:1093.950000px;}
.h10{height:18.447000px;}
.h20{height:21.318000px;}
.h12{height:31.048137px;}
.h26{height:31.392248px;}
.h18{height:35.262000px;}
.h1f{height:35.876665px;}
.h2a{height:36.355500px;}
.h1a{height:36.699914px;}
.h2b{height:37.839560px;}
.h17{height:38.118213px;}
.hf{height:38.919213px;}
.h29{height:39.302191px;}
.hc{height:39.661390px;}
.h25{height:40.424843px;}
.h11{height:42.709570px;}
.h33{height:43.929844px;}
.h27{height:44.972395px;}
.h7{height:45.193359px;}
.h30{height:46.731991px;}
.ha{height:47.534344px;}
.h1d{height:47.782153px;}
.h32{height:49.266506px;}
.h21{height:49.351612px;}
.h19{height:52.435463px;}
.h2c{height:54.063745px;}
.h6{height:55.135898px;}
.h2e{height:55.907923px;}
.h23{height:57.555605px;}
.h5{height:59.238281px;}
.h1c{height:60.718929px;}
.h14{height:65.215167px;}
.h8{height:68.710781px;}
.h2{height:70.200352px;}
.h4{height:70.664062px;}
.hd{height:75.093750px;}
.h3{height:79.900488px;}
.h31{height:80.169991px;}
.h13{height:289.408500px;}
.h15{height:290.109000px;}
.h1b{height:328.803000px;}
.h22{height:329.937000px;}
.h24{height:330.745500px;}
.h9{height:336.907500px;}
.h2d{height:337.335000px;}
.h2f{height:338.220000px;}
.he{height:350.100000px;}
.hb{height:356.775000px;}
.h1e{height:404.548500px;}
.h16{height:429.823500px;}
.h28{height:443.175000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:24.196500px;}
.wd{width:24.861000px;}
.wa{width:26.227500px;}
.w6{width:28.168500px;}
.w2{width:322.960500px;}
.w10{width:343.857000px;}
.w12{width:344.770500px;}
.wc{width:361.006500px;}
.we{width:361.947000px;}
.w9{width:380.847000px;}
.w5{width:402.645000px;}
.w7{width:403.711500px;}
.w3{width:444.523500px;}
.wf{width:572.625000px;}
.wb{width:589.500000px;}
.w8{width:621.900000px;}
.w4{width:667.950000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:17.535300px;}
.x37{left:19.399200px;}
.x2f{left:20.465550px;}
.x18{left:21.980550px;}
.x3f{left:25.332037px;}
.x48{left:39.289350px;}
.x36{left:41.293950px;}
.x2d{left:43.563450px;}
.x14{left:46.789350px;}
.x2e{left:49.520215px;}
.xa{left:51.802200px;}
.x15{left:53.187198px;}
.x16{left:59.585045px;}
.x4d{left:68.651550px;}
.x1d{left:70.637400px;}
.xb{left:87.201600px;}
.x13{left:99.394500px;}
.x34{left:101.005528px;}
.x27{left:103.308701px;}
.x47{left:104.602200px;}
.x3e{left:107.778900px;}
.x28{left:109.762745px;}
.x29{left:114.238254px;}
.x9{left:124.589250px;}
.x3c{left:130.803750px;}
.x4c{left:142.060650px;}
.x3a{left:153.781650px;}
.x2c{left:160.594950px;}
.x45{left:161.682750px;}
.x46{left:166.256550px;}
.x25{left:168.134812px;}
.x26{left:173.097019px;}
.x1{left:179.370000px;}
.x2{left:184.140000px;}
.x1b{left:191.372250px;}
.x17{left:192.972000px;}
.x1c{left:195.106950px;}
.x33{left:203.224154px;}
.x44{left:213.686700px;}
.xc{left:215.448900px;}
.x24{left:218.508096px;}
.xd{left:232.695000px;}
.x39{left:239.100750px;}
.x8{left:242.247000px;}
.x4b{left:245.199300px;}
.x35{left:258.571500px;}
.x49{left:261.726000px;}
.x2a{left:262.965000px;}
.x7{left:265.851000px;}
.x19{left:274.546500px;}
.x12{left:275.613000px;}
.x3d{left:278.322900px;}
.x23{left:284.328764px;}
.x5{left:286.740000px;}
.x3b{left:301.347750px;}
.x4a{left:305.756100px;}
.x1a{left:312.160500px;}
.x43{left:314.995650px;}
.x38{left:324.372750px;}
.x3{left:326.880000px;}
.x10{left:332.735670px;}
.x22{left:343.145208px;}
.x6{left:349.826850px;}
.xf{left:369.000000px;}
.x20{left:377.910000px;}
.x11{left:395.602800px;}
.x21{left:398.480700px;}
.x32{left:428.493240px;}
.x42{left:431.827560px;}
.x4{left:454.950090px;}
.x40{left:489.595950px;}
.x30{left:532.897200px;}
.x1e{left:572.356800px;}
.xe{left:677.160000px;}
.x4e{left:751.230000px;}
.x41{left:768.060000px;}
.x31{left:800.460000px;}
.x1f{left:846.540000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.604267pt;}
.v3{vertical-align:36.326933pt;}
.ls19{letter-spacing:-0.175680pt;}
.ls82{letter-spacing:-0.167953pt;}
.ls5c{letter-spacing:-0.162893pt;}
.ls33{letter-spacing:-0.144000pt;}
.ls51{letter-spacing:-0.132678pt;}
.ls3e{letter-spacing:-0.121536pt;}
.ls1d{letter-spacing:-0.117120pt;}
.ls1e{letter-spacing:-0.106560pt;}
.ls67{letter-spacing:-0.103358pt;}
.ls31{letter-spacing:-0.096000pt;}
.ls81{letter-spacing:-0.083977pt;}
.ls5b{letter-spacing:-0.081446pt;}
.ls68{letter-spacing:-0.076657pt;}
.ls66{letter-spacing:-0.068906pt;}
.ls3f{letter-spacing:-0.067604pt;}
.ls80{letter-spacing:-0.066992pt;}
.ls4f{letter-spacing:-0.066339pt;}
.ls5a{letter-spacing:-0.064974pt;}
.ls35{letter-spacing:-0.064000pt;}
.ls65{letter-spacing:-0.061153pt;}
.ls1a{letter-spacing:-0.058560pt;}
.ls50{letter-spacing:-0.052923pt;}
.ls18{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.008640pt;}
.ls6{letter-spacing:0.022720pt;}
.ls8{letter-spacing:0.048640pt;}
.ls1f{letter-spacing:0.058560pt;}
.lsa{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.076128pt;}
.ls0{letter-spacing:0.080000pt;}
.ls6a{letter-spacing:0.081984pt;}
.ls3{letter-spacing:0.082880pt;}
.ls74{letter-spacing:0.111264pt;}
.ls2{letter-spacing:0.114240pt;}
.ls1b{letter-spacing:0.117120pt;}
.ls1{letter-spacing:0.120000pt;}
.ls9{letter-spacing:0.125760pt;}
.ls20{letter-spacing:0.144000pt;}
.ls85{letter-spacing:0.146400pt;}
.ls56{letter-spacing:0.175680pt;}
.ls6b{letter-spacing:0.181536pt;}
.ls32{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.216672pt;}
.ls11{letter-spacing:0.234240pt;}
.ls7{letter-spacing:0.262720pt;}
.ls22{letter-spacing:0.275232pt;}
.ls1c{letter-spacing:0.292800pt;}
.ls84{letter-spacing:0.310368pt;}
.ls26{letter-spacing:0.322080pt;}
.ls5{letter-spacing:0.328640pt;}
.ls8a{letter-spacing:0.333792pt;}
.ls34{letter-spacing:0.351360pt;}
.lse{letter-spacing:0.374784pt;}
.ls40{letter-spacing:0.392352pt;}
.lsc{letter-spacing:0.404064pt;}
.ls48{letter-spacing:0.409920pt;}
.ls3b{letter-spacing:0.415776pt;}
.ls63{letter-spacing:0.597312pt;}
.ls7f{letter-spacing:0.673440pt;}
.ls7d{letter-spacing:0.772992pt;}
.ls58{letter-spacing:0.796416pt;}
.ls3d{letter-spacing:0.925248pt;}
.ls2e{letter-spacing:1.030656pt;}
.ls71{letter-spacing:1.633824pt;}
.ls69{letter-spacing:1.668960pt;}
.ls60{letter-spacing:1.698240pt;}
.ls72{letter-spacing:1.991040pt;}
.ls4b{letter-spacing:2.342400pt;}
.ls10{letter-spacing:2.635200pt;}
.ls4c{letter-spacing:2.728896pt;}
.ls4a{letter-spacing:2.939712pt;}
.lsf{letter-spacing:2.986560pt;}
.lsb{letter-spacing:3.279360pt;}
.ls2f{letter-spacing:3.759552pt;}
.ls23{letter-spacing:3.923520pt;}
.ls5e{letter-spacing:4.216320pt;}
.ls5f{letter-spacing:4.251456pt;}
.ls2a{letter-spacing:4.280736pt;}
.ls5d{letter-spacing:4.310016pt;}
.ls25{letter-spacing:4.860480pt;}
.ls46{letter-spacing:5.504640pt;}
.ls45{letter-spacing:5.856000pt;}
.ls77{letter-spacing:5.908704pt;}
.ls15{letter-spacing:6.148800pt;}
.ls24{letter-spacing:6.172224pt;}
.ls73{letter-spacing:6.500160pt;}
.ls30{letter-spacing:6.763680pt;}
.ls64{letter-spacing:6.792960pt;}
.ls27{letter-spacing:7.144320pt;}
.ls49{letter-spacing:7.788480pt;}
.ls55{letter-spacing:8.081280pt;}
.ls29{letter-spacing:8.725440pt;}
.ls41{letter-spacing:9.369600pt;}
.ls3a{letter-spacing:10.306560pt;}
.ls53{letter-spacing:10.458816pt;}
.ls3c{letter-spacing:10.657920pt;}
.ls8b{letter-spacing:10.997568pt;}
.ls79{letter-spacing:12.239040pt;}
.ls7a{letter-spacing:12.297600pt;}
.ls78{letter-spacing:12.496704pt;}
.ls52{letter-spacing:12.531840pt;}
.ls4d{letter-spacing:12.883200pt;}
.ls12{letter-spacing:13.527360pt;}
.ls37{letter-spacing:14.171520pt;}
.ls83{letter-spacing:14.815680pt;}
.lsd{letter-spacing:15.108480pt;}
.ls16{letter-spacing:16.396800pt;}
.ls17{letter-spacing:16.748160pt;}
.ls47{letter-spacing:17.040960pt;}
.ls7c{letter-spacing:17.181504pt;}
.ls75{letter-spacing:17.333760pt;}
.ls6c{letter-spacing:17.685120pt;}
.ls6d{letter-spacing:18.059904pt;}
.ls59{letter-spacing:18.329280pt;}
.ls6f{letter-spacing:18.622080pt;}
.ls6e{letter-spacing:18.973440pt;}
.ls86{letter-spacing:19.617600pt;}
.ls4e{letter-spacing:20.554560pt;}
.ls2d{letter-spacing:20.905920pt;}
.ls13{letter-spacing:20.929344pt;}
.ls38{letter-spacing:21.192864pt;}
.ls39{letter-spacing:21.198720pt;}
.ls89{letter-spacing:21.842880pt;}
.ls44{letter-spacing:23.424000pt;}
.ls54{letter-spacing:23.986176pt;}
.ls2b{letter-spacing:25.028544pt;}
.ls2c{letter-spacing:25.063680pt;}
.ls61{letter-spacing:25.959648pt;}
.ls21{letter-spacing:26.064000pt;}
.ls76{letter-spacing:26.293440pt;}
.ls70{letter-spacing:26.644800pt;}
.ls87{letter-spacing:29.221440pt;}
.ls7e{letter-spacing:29.514240pt;}
.ls43{letter-spacing:32.735040pt;}
.ls42{letter-spacing:33.027840pt;}
.ls88{letter-spacing:34.960320pt;}
.ls36{letter-spacing:36.190080pt;}
.ls8c{letter-spacing:65.060160pt;}
.ls7b{letter-spacing:173.120000pt;}
.ls62{letter-spacing:258.240000pt;}
.ls57{letter-spacing:307.200000pt;}
.ws97{word-spacing:-38.251876pt;}
.ws0{word-spacing:-18.640000pt;}
.ws5{word-spacing:-16.064000pt;}
.wsaf{word-spacing:-15.936000pt;}
.ws8c{word-spacing:-15.049920pt;}
.ws1f{word-spacing:-14.991360pt;}
.ws3{word-spacing:-14.932800pt;}
.ws8b{word-spacing:-14.874240pt;}
.wsc1{word-spacing:-14.815680pt;}
.ws70{word-spacing:-14.757120pt;}
.ws7{word-spacing:-14.698560pt;}
.ws2{word-spacing:-14.640000pt;}
.ws6{word-spacing:-14.581440pt;}
.ws4{word-spacing:-14.522880pt;}
.ws1{word-spacing:-14.464320pt;}
.ws7f{word-spacing:-12.423561pt;}
.ws1e{word-spacing:-11.904000pt;}
.wsb8{word-spacing:-11.504785pt;}
.ws80{word-spacing:-11.158157pt;}
.ws98{word-spacing:-10.578675pt;}
.ws96{word-spacing:-9.474520pt;}
.ws3e{word-spacing:-9.329389pt;}
.wsb5{word-spacing:-9.244896pt;}
.ws59{word-spacing:-9.154810pt;}
.ws5b{word-spacing:-9.088470pt;}
.ws7e{word-spacing:-8.966394pt;}
.ws95{word-spacing:-8.439123pt;}
.ws5a{word-spacing:-7.303328pt;}
.wsa2{word-spacing:-0.351360pt;}
.ws92{word-spacing:-0.292800pt;}
.ws17{word-spacing:-0.234240pt;}
.ws21{word-spacing:-0.192000pt;}
.wsb{word-spacing:-0.117120pt;}
.wsd{word-spacing:-0.106560pt;}
.ws31{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.058560pt;}
.wsbb{word-spacing:-0.046077pt;}
.ws83{word-spacing:-0.044689pt;}
.ws9a{word-spacing:-0.042061pt;}
.ws5d{word-spacing:-0.036400pt;}
.ws8{word-spacing:0.000000pt;}
.ws99{word-spacing:0.030577pt;}
.ws81{word-spacing:0.032487pt;}
.ws5c{word-spacing:0.033170pt;}
.wsba{word-spacing:0.033496pt;}
.ws43{word-spacing:0.033802pt;}
.wsa{word-spacing:0.058560pt;}
.ws30{word-spacing:0.064000pt;}
.ws82{word-spacing:0.064974pt;}
.ws5e{word-spacing:0.066339pt;}
.wsb9{word-spacing:0.066992pt;}
.ws9b{word-spacing:0.068906pt;}
.ws84{word-spacing:0.081446pt;}
.wsbc{word-spacing:0.083977pt;}
.ws3f{word-spacing:0.096000pt;}
.ws10{word-spacing:0.117120pt;}
.ws42{word-spacing:0.121536pt;}
.ws22{word-spacing:0.144000pt;}
.ws9{word-spacing:0.175680pt;}
.wsc{word-spacing:0.319680pt;}
.ws6c{word-spacing:0.468480pt;}
.ws38{word-spacing:0.527040pt;}
.ws2f{word-spacing:0.995520pt;}
.ws4b{word-spacing:1.171200pt;}
.ws14{word-spacing:1.288320pt;}
.ws65{word-spacing:1.405440pt;}
.ws12{word-spacing:1.464000pt;}
.wsac{word-spacing:1.639680pt;}
.ws8e{word-spacing:1.756800pt;}
.wsa0{word-spacing:1.815360pt;}
.ws45{word-spacing:2.108160pt;}
.ws57{word-spacing:2.459520pt;}
.ws16{word-spacing:2.693760pt;}
.ws58{word-spacing:2.752320pt;}
.wsa9{word-spacing:2.928000pt;}
.wsaa{word-spacing:3.045120pt;}
.ws37{word-spacing:3.103680pt;}
.wsa8{word-spacing:3.220800pt;}
.wsa3{word-spacing:3.337920pt;}
.ws11{word-spacing:3.396480pt;}
.ws34{word-spacing:3.630720pt;}
.ws94{word-spacing:3.689280pt;}
.ws66{word-spacing:3.747840pt;}
.ws35{word-spacing:3.982080pt;}
.ws20{word-spacing:3.984000pt;}
.ws2e{word-spacing:4.040640pt;}
.ws2c{word-spacing:4.157760pt;}
.ws8d{word-spacing:4.333440pt;}
.ws55{word-spacing:4.626240pt;}
.ws72{word-spacing:4.801920pt;}
.ws36{word-spacing:4.860480pt;}
.ws28{word-spacing:4.919040pt;}
.ws27{word-spacing:4.977600pt;}
.ws52{word-spacing:5.153280pt;}
.wsc4{word-spacing:5.270400pt;}
.ws3c{word-spacing:5.328960pt;}
.wsad{word-spacing:5.621760pt;}
.ws54{word-spacing:5.797440pt;}
.wsb3{word-spacing:5.856000pt;}
.ws9e{word-spacing:5.914560pt;}
.ws1c{word-spacing:5.973120pt;}
.ws25{word-spacing:6.148800pt;}
.ws26{word-spacing:6.207360pt;}
.ws24{word-spacing:6.265920pt;}
.ws39{word-spacing:6.617280pt;}
.ws4d{word-spacing:6.851520pt;}
.wsf{word-spacing:6.910080pt;}
.ws29{word-spacing:7.085760pt;}
.ws2a{word-spacing:7.202880pt;}
.wse{word-spacing:7.261440pt;}
.ws4e{word-spacing:7.437120pt;}
.wsa7{word-spacing:7.554240pt;}
.ws6d{word-spacing:7.847040pt;}
.wsa5{word-spacing:7.905600pt;}
.ws78{word-spacing:8.022720pt;}
.ws79{word-spacing:8.139840pt;}
.ws1d{word-spacing:8.315520pt;}
.ws1a{word-spacing:8.491200pt;}
.wsb4{word-spacing:8.666880pt;}
.ws2b{word-spacing:8.842560pt;}
.ws46{word-spacing:8.959680pt;}
.ws63{word-spacing:9.135360pt;}
.ws75{word-spacing:9.603840pt;}
.wsb2{word-spacing:9.720960pt;}
.ws74{word-spacing:9.779520pt;}
.wsbf{word-spacing:10.072320pt;}
.ws93{word-spacing:10.130880pt;}
.ws48{word-spacing:10.248000pt;}
.ws47{word-spacing:10.423680pt;}
.ws4a{word-spacing:10.716480pt;}
.ws3a{word-spacing:10.775040pt;}
.ws71{word-spacing:11.419200pt;}
.ws6e{word-spacing:11.712000pt;}
.wsa4{word-spacing:12.063360pt;}
.wsbe{word-spacing:12.297600pt;}
.ws49{word-spacing:12.356160pt;}
.ws7a{word-spacing:12.414720pt;}
.ws5f{word-spacing:12.707520pt;}
.wsc2{word-spacing:12.824640pt;}
.ws53{word-spacing:13.117440pt;}
.ws85{word-spacing:13.176000pt;}
.ws86{word-spacing:13.293120pt;}
.ws19{word-spacing:13.468800pt;}
.ws18{word-spacing:13.644480pt;}
.ws3d{word-spacing:13.878720pt;}
.ws89{word-spacing:14.230080pt;}
.ws23{word-spacing:14.288640pt;}
.ws4c{word-spacing:14.815680pt;}
.wsc3{word-spacing:15.167040pt;}
.wsae{word-spacing:15.225600pt;}
.ws68{word-spacing:15.811200pt;}
.ws67{word-spacing:15.869760pt;}
.ws9f{word-spacing:16.865280pt;}
.ws56{word-spacing:17.158080pt;}
.wsb0{word-spacing:17.333760pt;}
.wsab{word-spacing:17.509440pt;}
.ws90{word-spacing:17.802240pt;}
.wsc5{word-spacing:18.036480pt;}
.ws8a{word-spacing:18.387840pt;}
.ws41{word-spacing:18.446400pt;}
.ws64{word-spacing:18.563520pt;}
.ws33{word-spacing:18.680640pt;}
.ws87{word-spacing:18.739200pt;}
.wsa1{word-spacing:18.797760pt;}
.ws62{word-spacing:20.027520pt;}
.ws7b{word-spacing:20.203200pt;}
.ws61{word-spacing:20.378880pt;}
.wsb6{word-spacing:20.486308pt;}
.ws9d{word-spacing:20.613120pt;}
.wsb7{word-spacing:20.643607pt;}
.ws60{word-spacing:20.671680pt;}
.ws9c{word-spacing:21.023040pt;}
.ws44{word-spacing:21.140160pt;}
.ws1b{word-spacing:21.257280pt;}
.ws7d{word-spacing:21.315840pt;}
.ws7c{word-spacing:21.667200pt;}
.ws88{word-spacing:22.604160pt;}
.ws73{word-spacing:23.248320pt;}
.ws6f{word-spacing:23.424000pt;}
.ws51{word-spacing:23.541120pt;}
.ws77{word-spacing:23.716800pt;}
.ws32{word-spacing:23.833920pt;}
.ws76{word-spacing:24.185280pt;}
.wsc6{word-spacing:24.478080pt;}
.ws6b{word-spacing:25.180800pt;}
.wsbd{word-spacing:25.824960pt;}
.ws91{word-spacing:26.059200pt;}
.wsa6{word-spacing:26.586240pt;}
.ws2d{word-spacing:26.879040pt;}
.wsc0{word-spacing:29.982720pt;}
.ws8f{word-spacing:31.212480pt;}
.ws3b{word-spacing:31.856640pt;}
.ws40{word-spacing:32.208000pt;}
.ws50{word-spacing:32.676480pt;}
.ws4f{word-spacing:32.852160pt;}
.ws15{word-spacing:43.217280pt;}
.wsb1{word-spacing:45.325440pt;}
.ws69{word-spacing:48.780480pt;}
.ws6a{word-spacing:48.839040pt;}
.wsc7{word-spacing:65.001600pt;}
._21{margin-left:-505.902739pt;}
._26{margin-left:-431.771227pt;}
._27{margin-left:-426.450910pt;}
._20{margin-left:-425.035254pt;}
._23{margin-left:-322.562761pt;}
._22{margin-left:-317.397339pt;}
._2b{margin-left:-298.443947pt;}
._1{margin-left:-0.946912pt;}
._0{width:0.902432pt;}
._4{width:1.934464pt;}
._3{width:3.534592pt;}
._a{width:5.310176pt;}
._11{width:7.009632pt;}
._13{width:8.133376pt;}
._f{width:9.147072pt;}
._1b{width:10.257280pt;}
._1c{width:11.152256pt;}
._14{width:12.581056pt;}
._e{width:13.536704pt;}
._7{width:15.558784pt;}
._8{width:17.228352pt;}
._16{width:18.172160pt;}
._17{width:19.505728pt;}
._15{width:20.604224pt;}
._10{width:21.596928pt;}
._b{width:22.984800pt;}
._c{width:23.992032pt;}
._2{width:25.262176pt;}
._5{width:26.152896pt;}
._6{width:27.146592pt;}
._1e{width:28.289120pt;}
._25{width:29.830464pt;}
._1f{width:30.801344pt;}
._19{width:32.118944pt;}
._1d{width:33.422624pt;}
._2a{width:35.849216pt;}
._29{width:36.746400pt;}
._18{width:37.840864pt;}
._28{width:39.802624pt;}
._2c{width:40.949184pt;}
._9{width:42.590080pt;}
._d{width:43.672832pt;}
._24{width:44.645152pt;}
._12{width:53.482240pt;}
._30{width:97.308544pt;}
._2f{width:98.497920pt;}
._32{width:153.427200pt;}
._2e{width:195.637248pt;}
._2d{width:204.772608pt;}
._33{width:609.527008pt;}
._1a{width:1325.376000pt;}
._31{width:1457.124448pt;}
.fs9{font-size:26.461333pt;}
.fsf{font-size:30.576533pt;}
.fsb{font-size:32.486933pt;}
.fs7{font-size:33.169600pt;}
.fs14{font-size:33.496000pt;}
.fs6{font-size:33.802133pt;}
.fs12{font-size:34.452800pt;}
.fs8{font-size:36.400000pt;}
.fs18{font-size:37.440000pt;}
.fs13{font-size:38.328533pt;}
.fs5{font-size:40.512000pt;}
.fse{font-size:40.723200pt;}
.fs17{font-size:41.988267pt;}
.fs10{font-size:42.060800pt;}
.fsc{font-size:44.689067pt;}
.fs15{font-size:46.076800pt;}
.fs16{font-size:47.648533pt;}
.fs4{font-size:48.000000pt;}
.fs11{font-size:49.052800pt;}
.fsd{font-size:51.748800pt;}
.fsa{font-size:55.580800pt;}
.fs1{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.fs2{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:3.602800pt;}
.y13b{bottom:4.162667pt;}
.yfc{bottom:4.423467pt;}
.y1cc{bottom:4.599467pt;}
.y1d6{bottom:5.857733pt;}
.y1de{bottom:7.233200pt;}
.y1d7{bottom:8.884933pt;}
.y1df{bottom:11.911467pt;}
.y156{bottom:11.986933pt;}
.yfb{bottom:15.595733pt;}
.y1cb{bottom:16.118667pt;}
.y155{bottom:20.600133pt;}
.y8e{bottom:27.858933pt;}
.y14a{bottom:28.208400pt;}
.y139{bottom:32.189513pt;}
.y150{bottom:33.986400pt;}
.y149{bottom:36.821600pt;}
.y138{bottom:39.871867pt;}
.y96{bottom:42.260777pt;}
.y14f{bottom:42.599600pt;}
.yf9{bottom:45.412533pt;}
.y1c9{bottom:47.570533pt;}
.y1c5{bottom:47.570667pt;}
.y1d9{bottom:50.479733pt;}
.y141{bottom:52.875515pt;}
.yf8{bottom:53.534267pt;}
.y1c8{bottom:55.944533pt;}
.y1c7{bottom:55.944667pt;}
.y1c3{bottom:55.944800pt;}
.y9b{bottom:57.270933pt;}
.yf7{bottom:61.656000pt;}
.y1c6{bottom:64.318667pt;}
.y1c4{bottom:64.318800pt;}
.y1c2{bottom:64.318933pt;}
.y154{bottom:71.669067pt;}
.y103{bottom:75.442471pt;}
.y1d2{bottom:78.550667pt;}
.y153{bottom:80.282267pt;}
.y14e{bottom:90.797467pt;}
.y95{bottom:91.148090pt;}
.y152{bottom:91.551200pt;}
.y5c{bottom:92.007867pt;}
.y1dd{bottom:95.455467pt;}
.y14d{bottom:99.410667pt;}
.y9f{bottom:99.913467pt;}
.y151{bottom:100.164400pt;}
.y148{bottom:100.523200pt;}
.y9d{bottom:101.559467pt;}
.y140{bottom:108.570670pt;}
.y147{bottom:109.136400pt;}
.y102{bottom:121.736351pt;}
.y1d8{bottom:122.425733pt;}
.y146{bottom:126.039733pt;}
.y1db{bottom:127.339733pt;}
.y98{bottom:128.610800pt;}
.y14c{bottom:130.023333pt;}
.y9a{bottom:132.555333pt;}
.y145{bottom:134.652933pt;}
.y1d1{bottom:135.517600pt;}
.y14b{bottom:138.636533pt;}
.y94{bottom:140.035403pt;}
.y105{bottom:146.115067pt;}
.y143{bottom:146.638667pt;}
.y1d4{bottom:149.907733pt;}
.y1dc{bottom:156.118133pt;}
.y5d{bottom:162.650667pt;}
.y13f{bottom:164.304046pt;}
.y101{bottom:168.030231pt;}
.y9c{bottom:169.421067pt;}
.y93{bottom:188.889640pt;}
.y1d0{bottom:192.484667pt;}
.y5b{bottom:193.541067pt;}
.y9e{bottom:201.100000pt;}
.y1f2{bottom:212.357760pt;}
.y8c{bottom:213.451920pt;}
.y51{bottom:213.472960pt;}
.y100{bottom:214.283502pt;}
.y182{bottom:218.880160pt;}
.y1f1{bottom:218.933040pt;}
.y13e{bottom:219.999202pt;}
.y74{bottom:223.083760pt;}
.y25{bottom:227.282320pt;}
.ydf{bottom:228.842400pt;}
.y8b{bottom:229.936560pt;}
.y50{bottom:229.957600pt;}
.y181{bottom:235.364800pt;}
.y1f0{bottom:235.490880pt;}
.y92{bottom:237.776953pt;}
.y73{bottom:239.568400pt;}
.y24{bottom:243.766960pt;}
.y5f{bottom:245.382667pt;}
.yde{bottom:245.400240pt;}
.yb5{bottom:245.481280pt;}
.y8a{bottom:246.421200pt;}
.y4f{bottom:246.442240pt;}
.y5a{bottom:249.181867pt;}
.y1cf{bottom:249.491067pt;}
.y180{bottom:251.849440pt;}
.y1ef{bottom:251.975520pt;}
.y72{bottom:256.126240pt;}
.y60{bottom:258.514795pt;}
.y23{bottom:260.251600pt;}
.yff{bottom:260.577382pt;}
.ydd{bottom:261.884880pt;}
.yb4{bottom:262.039120pt;}
.y89{bottom:262.905840pt;}
.y4e{bottom:262.926880pt;}
.ya0{bottom:266.166133pt;}
.y1da{bottom:266.946400pt;}
.y17f{bottom:268.407280pt;}
.y1ee{bottom:268.460160pt;}
.y116{bottom:269.174240pt;}
.y61{bottom:271.646924pt;}
.y71{bottom:272.610880pt;}
.y13d{bottom:275.732578pt;}
.y22{bottom:276.809440pt;}
.ydc{bottom:278.369520pt;}
.yb3{bottom:278.523760pt;}
.ya1{bottom:279.052523pt;}
.y1a7{bottom:279.412000pt;}
.y88{bottom:279.463680pt;}
.y4d{bottom:279.484720pt;}
.y62{bottom:284.779053pt;}
.y17e{bottom:284.891920pt;}
.y1ed{bottom:284.944800pt;}
.y115{bottom:285.658880pt;}
.y91{bottom:286.664267pt;}
.y70{bottom:289.095520pt;}
.y157{bottom:292.668533pt;}
.y21{bottom:293.294080pt;}
.ydb{bottom:294.854160pt;}
.yb2{bottom:295.008400pt;}
.y1a6{bottom:295.896640pt;}
.y87{bottom:295.948320pt;}
.y4c{bottom:295.969360pt;}
.y166{bottom:298.860160pt;}
.y17d{bottom:301.376560pt;}
.y1ec{bottom:301.502640pt;}
.y114{bottom:302.143520pt;}
.y6f{bottom:305.580160pt;}
.y1ce{bottom:306.458133pt;}
.yfe{bottom:306.830653pt;}
.y158{bottom:307.559169pt;}
.y20{bottom:309.778720pt;}
.yda{bottom:311.412000pt;}
.yb1{bottom:311.493040pt;}
.y1a5{bottom:312.381280pt;}
.y86{bottom:312.432960pt;}
.y4b{bottom:312.454000pt;}
.y165{bottom:315.418000pt;}
.y17c{bottom:317.861200pt;}
.y1eb{bottom:317.987280pt;}
.y113{bottom:318.628160pt;}
.y6e{bottom:322.138000pt;}
.y159{bottom:322.449804pt;}
.y1f{bottom:326.263360pt;}
.y106{bottom:326.777333pt;}
.yd9{bottom:327.896640pt;}
.yb0{bottom:328.050880pt;}
.y1a4{bottom:328.865920pt;}
.y85{bottom:328.917600pt;}
.y4a{bottom:328.938640pt;}
.y13c{bottom:331.427733pt;}
.y164{bottom:331.902640pt;}
.y17b{bottom:334.419040pt;}
.y1ea{bottom:334.471920pt;}
.y112{bottom:335.186000pt;}
.y1e0{bottom:336.180133pt;}
.y6d{bottom:338.622640pt;}
.y107{bottom:342.601333pt;}
.y1e{bottom:342.821200pt;}
.yd8{bottom:344.381280pt;}
.yaf{bottom:344.535520pt;}
.y1a3{bottom:345.423760pt;}
.y84{bottom:345.475440pt;}
.y49{bottom:345.496480pt;}
.y163{bottom:348.387280pt;}
.y17a{bottom:350.903680pt;}
.y1e9{bottom:350.956560pt;}
.y111{bottom:351.670640pt;}
.y1e1{bottom:352.495733pt;}
.yfd{bottom:353.124533pt;}
.y6c{bottom:355.107280pt;}
.y1d{bottom:359.305840pt;}
.yd7{bottom:360.865920pt;}
.yae{bottom:361.020160pt;}
.y1a2{bottom:361.908400pt;}
.y83{bottom:361.960080pt;}
.y48{bottom:361.981120pt;}
.y1cd{bottom:363.425200pt;}
.y162{bottom:364.871920pt;}
.y1c0{bottom:367.374080pt;}
.y179{bottom:367.388320pt;}
.y1e8{bottom:367.514400pt;}
.y110{bottom:368.155280pt;}
.y6b{bottom:371.591920pt;}
.y1c{bottom:375.790480pt;}
.yd6{bottom:377.423760pt;}
.yad{bottom:377.504800pt;}
.y1a1{bottom:378.393040pt;}
.y82{bottom:378.444720pt;}
.y47{bottom:378.465760pt;}
.y161{bottom:381.429760pt;}
.y135{bottom:383.839840pt;}
.y1bf{bottom:383.858720pt;}
.y178{bottom:383.872960pt;}
.y1e7{bottom:383.999040pt;}
.y10f{bottom:384.639920pt;}
.y6a{bottom:388.149760pt;}
.y1b{bottom:392.275120pt;}
.yd5{bottom:393.908400pt;}
.yac{bottom:394.062640pt;}
.y1a0{bottom:394.877680pt;}
.y81{bottom:394.929360pt;}
.y46{bottom:394.950400pt;}
.y160{bottom:397.914400pt;}
.y134{bottom:400.397680pt;}
.y1be{bottom:400.416560pt;}
.y177{bottom:400.430800pt;}
.y1e6{bottom:400.483680pt;}
.y10e{bottom:401.197760pt;}
.y69{bottom:404.634400pt;}
.y1a{bottom:408.832960pt;}
.yd4{bottom:410.393040pt;}
.yab{bottom:410.547280pt;}
.y19f{bottom:411.435520pt;}
.y80{bottom:411.487200pt;}
.y45{bottom:411.508240pt;}
.y15f{bottom:414.399040pt;}
.y133{bottom:416.882320pt;}
.y1bd{bottom:416.901200pt;}
.y176{bottom:416.915440pt;}
.y1e5{bottom:416.968320pt;}
.y10d{bottom:417.682400pt;}
.y68{bottom:421.119040pt;}
.y19{bottom:425.317600pt;}
.yd3{bottom:426.877680pt;}
.yaa{bottom:427.031920pt;}
.y19e{bottom:427.920160pt;}
.y7f{bottom:427.971840pt;}
.y44{bottom:427.992880pt;}
.y15e{bottom:430.883680pt;}
.y132{bottom:433.366960pt;}
.y1bc{bottom:433.385840pt;}
.y175{bottom:433.400080pt;}
.y1e4{bottom:433.526160pt;}
.y10c{bottom:434.167040pt;}
.y67{bottom:437.603680pt;}
.y18{bottom:441.802240pt;}
.yd2{bottom:443.435520pt;}
.ya9{bottom:443.516560pt;}
.y19d{bottom:444.404800pt;}
.y7e{bottom:444.456480pt;}
.y43{bottom:444.477520pt;}
.y15d{bottom:447.441520pt;}
.y131{bottom:449.851600pt;}
.y1bb{bottom:449.870480pt;}
.y174{bottom:449.884720pt;}
.y10b{bottom:450.651680pt;}
.y66{bottom:454.161520pt;}
.y17{bottom:458.286880pt;}
.yd1{bottom:459.920160pt;}
.ya8{bottom:460.074400pt;}
.y19c{bottom:460.889440pt;}
.y7d{bottom:460.941120pt;}
.y42{bottom:460.962160pt;}
.y15c{bottom:463.926160pt;}
.y130{bottom:466.409440pt;}
.y1ba{bottom:466.428320pt;}
.y173{bottom:466.442560pt;}
.y10a{bottom:467.209520pt;}
.y65{bottom:470.646160pt;}
.y1e3{bottom:474.240000pt;}
.y16{bottom:474.844720pt;}
.yd0{bottom:476.404800pt;}
.ya7{bottom:476.559040pt;}
.y19b{bottom:477.447280pt;}
.y7c{bottom:477.498960pt;}
.y41{bottom:477.520000pt;}
.y12f{bottom:482.894080pt;}
.y1b9{bottom:482.912960pt;}
.y172{bottom:482.927200pt;}
.y15{bottom:491.329360pt;}
.y1c1{bottom:492.253333pt;}
.y1e2{bottom:492.320000pt;}
.ycf{bottom:492.889440pt;}
.ya6{bottom:493.043680pt;}
.y19a{bottom:493.931920pt;}
.y7b{bottom:493.983600pt;}
.yf5{bottom:499.366960pt;}
.y12e{bottom:499.378720pt;}
.y1b8{bottom:499.397600pt;}
.y171{bottom:499.411840pt;}
.y1ca{bottom:504.362667pt;}
.y15b{bottom:504.640000pt;}
.y14{bottom:507.814000pt;}
.y109{bottom:507.923360pt;}
.yce{bottom:509.447280pt;}
.ya5{bottom:509.528320pt;}
.y40{bottom:510.400000pt;}
.y199{bottom:510.416560pt;}
.y7a{bottom:510.468240pt;}
.y64{bottom:511.360000pt;}
.yf4{bottom:515.851600pt;}
.y12d{bottom:515.863360pt;}
.y1b7{bottom:515.882240pt;}
.y170{bottom:515.896480pt;}
.y13{bottom:524.298640pt;}
.ycd{bottom:525.931920pt;}
.ya4{bottom:526.086160pt;}
.y137{bottom:526.520000pt;}
.y15a{bottom:526.560000pt;}
.y198{bottom:526.901200pt;}
.y79{bottom:526.952880pt;}
.yf6{bottom:528.786667pt;}
.y108{bottom:528.800000pt;}
.yf3{bottom:532.409440pt;}
.y12c{bottom:532.421200pt;}
.y1b6{bottom:532.440080pt;}
.y16f{bottom:532.454320pt;}
.y5e{bottom:533.253333pt;}
.y63{bottom:533.280000pt;}
.y13a{bottom:536.928000pt;}
.yfa{bottom:539.844000pt;}
.y12{bottom:540.856480pt;}
.ycc{bottom:542.416560pt;}
.y59{bottom:542.430667pt;}
.y197{bottom:543.459040pt;}
.y78{bottom:543.510720pt;}
.yf2{bottom:548.894080pt;}
.y12b{bottom:548.905840pt;}
.y1b5{bottom:548.924720pt;}
.y16e{bottom:548.938960pt;}
.y11{bottom:557.341120pt;}
.ycb{bottom:558.901200pt;}
.y3f{bottom:559.931920pt;}
.y196{bottom:559.943680pt;}
.y77{bottom:559.995360pt;}
.yf1{bottom:565.378720pt;}
.y12a{bottom:565.390480pt;}
.y1b4{bottom:565.409360pt;}
.y16d{bottom:565.423600pt;}
.ya3{bottom:566.800000pt;}
.y10{bottom:573.825760pt;}
.y1d5{bottom:574.264000pt;}
.y1d3{bottom:575.049333pt;}
.yca{bottom:575.459040pt;}
.y3e{bottom:576.416560pt;}
.y195{bottom:576.428320pt;}
.y76{bottom:576.480000pt;}
.yf0{bottom:581.863360pt;}
.y129{bottom:581.875120pt;}
.y1b3{bottom:581.894000pt;}
.y16c{bottom:581.908240pt;}
.y144{bottom:582.505333pt;}
.y142{bottom:583.224000pt;}
.y8d{bottom:588.586667pt;}
.ya2{bottom:588.640000pt;}
.yf{bottom:590.310400pt;}
.yc9{bottom:591.943680pt;}
.y3d{bottom:592.901200pt;}
.y194{bottom:592.912960pt;}
.y8f{bottom:597.593333pt;}
.yef{bottom:598.421200pt;}
.y128{bottom:598.432960pt;}
.y1b2{bottom:598.451840pt;}
.y16b{bottom:598.466080pt;}
.ye{bottom:606.868240pt;}
.y104{bottom:608.365333pt;}
.yc8{bottom:608.428320pt;}
.y75{bottom:609.360000pt;}
.y3c{bottom:609.459040pt;}
.y193{bottom:609.470800pt;}
.yee{bottom:614.905840pt;}
.y127{bottom:614.917600pt;}
.y1b1{bottom:614.936480pt;}
.y16a{bottom:614.950720pt;}
.yd{bottom:623.352880pt;}
.yc7{bottom:624.912960pt;}
.y3b{bottom:625.943680pt;}
.y192{bottom:625.955440pt;}
.yed{bottom:631.390480pt;}
.y126{bottom:631.402240pt;}
.y1b0{bottom:631.421120pt;}
.y169{bottom:631.435360pt;}
.y99{bottom:633.589333pt;}
.y97{bottom:634.210667pt;}
.yc{bottom:639.837520pt;}
.yc6{bottom:641.470800pt;}
.y3a{bottom:642.428320pt;}
.y191{bottom:642.440080pt;}
.yec{bottom:647.875120pt;}
.y125{bottom:647.886880pt;}
.y1af{bottom:647.905760pt;}
.y168{bottom:647.920000pt;}
.yb{bottom:656.322160pt;}
.yc5{bottom:657.955440pt;}
.y39{bottom:658.912960pt;}
.y190{bottom:658.924720pt;}
.yeb{bottom:664.432960pt;}
.y124{bottom:664.444720pt;}
.y1ae{bottom:664.463600pt;}
.ya{bottom:672.880000pt;}
.yc4{bottom:674.440080pt;}
.y38{bottom:675.470800pt;}
.y18f{bottom:675.482560pt;}
.y167{bottom:680.800000pt;}
.yea{bottom:680.917600pt;}
.y123{bottom:680.929360pt;}
.y1ad{bottom:680.948240pt;}
.yc3{bottom:690.924720pt;}
.y37{bottom:691.955440pt;}
.y18e{bottom:691.967200pt;}
.ye9{bottom:697.402240pt;}
.y122{bottom:697.414000pt;}
.y1ac{bottom:697.432880pt;}
.y9{bottom:705.760000pt;}
.yc2{bottom:707.482560pt;}
.y36{bottom:708.440080pt;}
.y18d{bottom:708.451840pt;}
.ye8{bottom:713.886880pt;}
.y121{bottom:713.898640pt;}
.y1ab{bottom:713.917520pt;}
.yc1{bottom:723.967200pt;}
.y35{bottom:724.924720pt;}
.y18c{bottom:724.936480pt;}
.ye7{bottom:730.444720pt;}
.y120{bottom:730.456480pt;}
.y1aa{bottom:730.475360pt;}
.y8{bottom:739.760000pt;}
.yc0{bottom:740.451840pt;}
.y34{bottom:741.482560pt;}
.y18b{bottom:741.494320pt;}
.ye6{bottom:746.929360pt;}
.y11f{bottom:746.941120pt;}
.y1a9{bottom:746.960000pt;}
.ybf{bottom:756.936480pt;}
.y33{bottom:757.967200pt;}
.y18a{bottom:757.978960pt;}
.ye5{bottom:763.414000pt;}
.y11e{bottom:763.425760pt;}
.y7{bottom:766.400000pt;}
.ybe{bottom:773.494320pt;}
.y32{bottom:774.451840pt;}
.y189{bottom:774.463600pt;}
.y1a8{bottom:779.840000pt;}
.ye4{bottom:779.898640pt;}
.y11d{bottom:779.910400pt;}
.y6{bottom:788.163360pt;}
.ybd{bottom:789.978960pt;}
.y31{bottom:790.936480pt;}
.y188{bottom:790.948240pt;}
.ye3{bottom:796.456480pt;}
.y11c{bottom:796.468240pt;}
.ybc{bottom:806.463600pt;}
.y30{bottom:807.494320pt;}
.y187{bottom:807.506080pt;}
.ye2{bottom:812.941120pt;}
.y11b{bottom:812.952880pt;}
.y5{bottom:818.160000pt;}
.ybb{bottom:822.948240pt;}
.y2f{bottom:823.978960pt;}
.y186{bottom:823.990720pt;}
.ye1{bottom:829.425760pt;}
.y11a{bottom:829.437520pt;}
.yba{bottom:839.506080pt;}
.y2e{bottom:840.463600pt;}
.y185{bottom:840.475360pt;}
.ye0{bottom:845.910400pt;}
.y119{bottom:845.922160pt;}
.y4{bottom:845.998880pt;}
.yb9{bottom:855.990720pt;}
.y2d{bottom:856.948240pt;}
.y184{bottom:856.960000pt;}
.y58{bottom:862.468240pt;}
.y118{bottom:862.480000pt;}
.yb8{bottom:872.475360pt;}
.y2c{bottom:873.506080pt;}
.y3{bottom:875.040000pt;}
.y57{bottom:878.952880pt;}
.yb7{bottom:888.960000pt;}
.y183{bottom:889.840000pt;}
.y2b{bottom:889.990720pt;}
.y117{bottom:895.360000pt;}
.y56{bottom:895.437520pt;}
.y2{bottom:896.000000pt;}
.y136{bottom:898.233040pt;}
.y2a{bottom:906.475360pt;}
.y55{bottom:911.922160pt;}
.y1{bottom:917.040000pt;}
.yb6{bottom:921.840000pt;}
.y29{bottom:922.960000pt;}
.y54{bottom:928.480000pt;}
.y28{bottom:939.280000pt;}
.y53{bottom:952.480000pt;}
.y27{bottom:958.804000pt;}
.y52{bottom:972.320000pt;}
.y26{bottom:972.400000pt;}
.h10{height:16.397333pt;}
.h20{height:18.949333pt;}
.h12{height:27.598344pt;}
.h26{height:27.904220pt;}
.h18{height:31.344000pt;}
.h1f{height:31.890369pt;}
.h2a{height:32.316000pt;}
.h1a{height:32.622146pt;}
.h2b{height:33.635164pt;}
.h17{height:33.882856pt;}
.hf{height:34.594856pt;}
.h29{height:34.935281pt;}
.hc{height:35.254569pt;}
.h25{height:35.933194pt;}
.h11{height:37.964062pt;}
.h33{height:39.048750pt;}
.h27{height:39.975462pt;}
.h7{height:40.171875pt;}
.h30{height:41.539548pt;}
.ha{height:42.252750pt;}
.h1d{height:42.473025pt;}
.h32{height:43.792450pt;}
.h21{height:43.868100pt;}
.h19{height:46.609300pt;}
.h2c{height:48.056662pt;}
.h6{height:49.009687pt;}
.h2e{height:49.695931pt;}
.h23{height:51.160537pt;}
.h5{height:52.656250pt;}
.h1c{height:53.972381pt;}
.h14{height:57.969037pt;}
.h8{height:61.076250pt;}
.h2{height:62.400312pt;}
.h4{height:62.812500pt;}
.hd{height:66.750000pt;}
.h3{height:71.022656pt;}
.h31{height:71.262215pt;}
.h13{height:257.252000pt;}
.h15{height:257.874667pt;}
.h1b{height:292.269333pt;}
.h22{height:293.277333pt;}
.h24{height:293.996000pt;}
.h9{height:299.473333pt;}
.h2d{height:299.853333pt;}
.h2f{height:300.640000pt;}
.he{height:311.200000pt;}
.hb{height:317.133333pt;}
.h1e{height:359.598667pt;}
.h16{height:382.065333pt;}
.h28{height:393.933333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:21.508000pt;}
.wd{width:22.098667pt;}
.wa{width:23.313333pt;}
.w6{width:25.038667pt;}
.w2{width:287.076000pt;}
.w10{width:305.650667pt;}
.w12{width:306.462667pt;}
.wc{width:320.894667pt;}
.we{width:321.730667pt;}
.w9{width:338.530667pt;}
.w5{width:357.906667pt;}
.w7{width:358.854667pt;}
.w3{width:395.132000pt;}
.wf{width:509.000000pt;}
.wb{width:524.000000pt;}
.w8{width:552.800000pt;}
.w4{width:593.733333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:15.586933pt;}
.x37{left:17.243733pt;}
.x2f{left:18.191600pt;}
.x18{left:19.538267pt;}
.x3f{left:22.517367pt;}
.x48{left:34.923867pt;}
.x36{left:36.705733pt;}
.x2d{left:38.723067pt;}
.x14{left:41.590533pt;}
.x2e{left:44.017969pt;}
.xa{left:46.046400pt;}
.x15{left:47.277509pt;}
.x16{left:52.964485pt;}
.x4d{left:61.023600pt;}
.x1d{left:62.788800pt;}
.xb{left:77.512533pt;}
.x13{left:88.350667pt;}
.x34{left:89.782692pt;}
.x27{left:91.829956pt;}
.x47{left:92.979733pt;}
.x3e{left:95.803467pt;}
.x28{left:97.566884pt;}
.x29{left:101.545115pt;}
.x9{left:110.746000pt;}
.x3c{left:116.270000pt;}
.x4c{left:126.276133pt;}
.x3a{left:136.694800pt;}
.x2c{left:142.751067pt;}
.x45{left:143.718000pt;}
.x46{left:147.783600pt;}
.x25{left:149.453166pt;}
.x26{left:153.864017pt;}
.x1{left:159.440000pt;}
.x2{left:163.680000pt;}
.x1b{left:170.108667pt;}
.x17{left:171.530667pt;}
.x1c{left:173.428400pt;}
.x33{left:180.643693pt;}
.x44{left:189.943733pt;}
.xc{left:191.510133pt;}
.x24{left:194.229419pt;}
.xd{left:206.840000pt;}
.x39{left:212.534000pt;}
.x8{left:215.330667pt;}
.x4b{left:217.954933pt;}
.x35{left:229.841333pt;}
.x49{left:232.645333pt;}
.x2a{left:233.746667pt;}
.x7{left:236.312000pt;}
.x19{left:244.041333pt;}
.x12{left:244.989333pt;}
.x3d{left:247.398133pt;}
.x23{left:252.736679pt;}
.x5{left:254.880000pt;}
.x3b{left:267.864667pt;}
.x4a{left:271.783200pt;}
.x1a{left:277.476000pt;}
.x43{left:279.996133pt;}
.x38{left:288.331333pt;}
.x3{left:290.560000pt;}
.x10{left:295.765040pt;}
.x22{left:305.017963pt;}
.x6{left:310.957200pt;}
.xf{left:328.000000pt;}
.x20{left:335.920000pt;}
.x11{left:351.646933pt;}
.x21{left:354.205067pt;}
.x32{left:380.882880pt;}
.x42{left:383.846720pt;}
.x4{left:404.400080pt;}
.x40{left:435.196400pt;}
.x30{left:473.686400pt;}
.x1e{left:508.761600pt;}
.xe{left:601.920000pt;}
.x4e{left:667.760000pt;}
.x41{left:682.720000pt;}
.x31{left:711.520000pt;}
.x1f{left:752.480000pt;}
}




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