
    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_703b796babaef1c29e0b8a47.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.085000;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_07dc49fd508f56e4a82875d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.030000;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_95bbc605c28b87b728207bc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_297f425d126d1d898eff32a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106000;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_f058323f9ddc6f48b8b35a80.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.745000;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_625b9f44b520ae1717f3374c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_ab753b2e58b96b827f89d94f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;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_74d6b9f68abb6f38a71b31cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_8375535aea2a48f2bcaf0b16.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008000;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_617320be2c49f11e2d82485d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.050000;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_540b2d53d6b6d65c138eeacf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.050000;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_918672d47b967371e7366c30.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933000;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:ffd;src:url('chunks/assets/font_016c5590f6fce723d5ed739d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.007000;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:ffe;src:url('chunks/assets/font_e4394a4d724a4bdad4182e04.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.007000;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);}
.m1{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);}
.v5{vertical-align:-15.900000px;}
.v2{vertical-align:-14.100000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.900000px;}
.v1{vertical-align:21.150000px;}
.v7{vertical-align:22.198800px;}
.v3{vertical-align:23.759400px;}
.v8{vertical-align:66.898800px;}
.v9{vertical-align:192.000000px;}
.v6{vertical-align:204.048600px;}
.ls17{letter-spacing:-7.992000px;}
.ls1e{letter-spacing:-7.192800px;}
.ls28{letter-spacing:-6.792000px;}
.ls5e{letter-spacing:-6.696000px;}
.ls63{letter-spacing:-6.156000px;}
.ls61{letter-spacing:-5.832000px;}
.ls35{letter-spacing:-5.634000px;}
.ls25{letter-spacing:-5.574000px;}
.ls26{letter-spacing:-5.496000px;}
.ls2e{letter-spacing:-5.490000px;}
.ls13{letter-spacing:-5.328000px;}
.ls2{letter-spacing:-5.184000px;}
.ls65{letter-spacing:-5.124000px;}
.ls6f{letter-spacing:-5.040000px;}
.ls6a{letter-spacing:-5.028000px;}
.ls2b{letter-spacing:-4.986000px;}
.ls30{letter-spacing:-4.914000px;}
.ls31{letter-spacing:-4.842000px;}
.ls6c{letter-spacing:-4.398000px;}
.ls15{letter-spacing:-4.392000px;}
.ls68{letter-spacing:-4.320000px;}
.ls69{letter-spacing:-4.248000px;}
.ls1d{letter-spacing:-4.146600px;}
.ls0{letter-spacing:-3.600000px;}
.ls1c{letter-spacing:-2.376000px;}
.ls8f{letter-spacing:-2.016000px;}
.ls75{letter-spacing:-1.803600px;}
.ls87{letter-spacing:-1.144800px;}
.ls82{letter-spacing:-1.137600px;}
.ls80{letter-spacing:-1.123200px;}
.ls83{letter-spacing:-1.116000px;}
.ls81{letter-spacing:-1.108800px;}
.ls7c{letter-spacing:-1.101600px;}
.ls7d{letter-spacing:-1.094400px;}
.ls85{letter-spacing:-1.087200px;}
.ls84{letter-spacing:-1.080000px;}
.ls8b{letter-spacing:-1.072800px;}
.ls86{letter-spacing:-1.058400px;}
.ls7f{letter-spacing:-1.051200px;}
.ls7e{letter-spacing:-1.044000px;}
.ls8c{letter-spacing:-1.036800px;}
.ls48{letter-spacing:-0.936000px;}
.ls44{letter-spacing:-0.792000px;}
.ls52{letter-spacing:-0.777600px;}
.ls1a{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.690000px;}
.ls34{letter-spacing:-0.678000px;}
.ls55{letter-spacing:-0.676800px;}
.ls33{letter-spacing:-0.654000px;}
.ls50{letter-spacing:-0.648000px;}
.ls2c{letter-spacing:-0.642000px;}
.ls3e{letter-spacing:-0.640800px;}
.ls22{letter-spacing:-0.636000px;}
.ls56{letter-spacing:-0.633600px;}
.ls54{letter-spacing:-0.626400px;}
.ls27{letter-spacing:-0.624000px;}
.ls51{letter-spacing:-0.619200px;}
.ls24{letter-spacing:-0.618000px;}
.ls23{letter-spacing:-0.612000px;}
.ls32{letter-spacing:-0.606000px;}
.ls3d{letter-spacing:-0.604800px;}
.ls2a{letter-spacing:-0.600000px;}
.ls4f{letter-spacing:-0.597600px;}
.ls3f{letter-spacing:-0.590400px;}
.ls53{letter-spacing:-0.583200px;}
.ls2f{letter-spacing:-0.576000px;}
.ls29{letter-spacing:-0.570000px;}
.ls5d{letter-spacing:-0.558000px;}
.ls5c{letter-spacing:-0.546000px;}
.ls42{letter-spacing:-0.432000px;}
.ls47{letter-spacing:-0.417600px;}
.ls62{letter-spacing:-0.378000px;}
.ls89{letter-spacing:-0.331200px;}
.ls4d{letter-spacing:-0.309600px;}
.ls43{letter-spacing:-0.288000px;}
.ls4e{letter-spacing:-0.273600px;}
.ls8a{letter-spacing:-0.266400px;}
.ls4a{letter-spacing:-0.216000px;}
.ls88{letter-spacing:-0.194400px;}
.ls7b{letter-spacing:-0.151200px;}
.ls41{letter-spacing:-0.122400px;}
.ls40{letter-spacing:-0.108000px;}
.ls90{letter-spacing:-0.100800px;}
.ls97{letter-spacing:-0.099000px;}
.ls79{letter-spacing:-0.093600px;}
.ls8d{letter-spacing:-0.086400px;}
.ls3{letter-spacing:-0.084000px;}
.ls77{letter-spacing:-0.079200px;}
.ls10{letter-spacing:-0.072000px;}
.ls6d{letter-spacing:-0.066000px;}
.ls45{letter-spacing:-0.064800px;}
.ls70{letter-spacing:-0.060000px;}
.lse{letter-spacing:-0.057600px;}
.ls95{letter-spacing:-0.052800px;}
.ls76{letter-spacing:-0.050400px;}
.ls6b{letter-spacing:-0.048000px;}
.ls94{letter-spacing:-0.046200px;}
.ls1b{letter-spacing:-0.043200px;}
.ls12{letter-spacing:-0.042000px;}
.lsb{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.030000px;}
.lsc{letter-spacing:-0.028800px;}
.ls64{letter-spacing:-0.024000px;}
.lsa{letter-spacing:-0.021600px;}
.ls74{letter-spacing:-0.019200px;}
.ls60{letter-spacing:-0.018000px;}
.lsd{letter-spacing:-0.014400px;}
.ls5f{letter-spacing:-0.012000px;}
.ls73{letter-spacing:-0.009600px;}
.lsf{letter-spacing:-0.007200px;}
.ls16{letter-spacing:-0.006000px;}
.ls1{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.000600px;}
.ls1f{letter-spacing:0.001200px;}
.ls5b{letter-spacing:0.006000px;}
.ls5{letter-spacing:0.007200px;}
.ls6e{letter-spacing:0.012000px;}
.ls7{letter-spacing:0.014400px;}
.ls5a{letter-spacing:0.018000px;}
.ls96{letter-spacing:0.019800px;}
.ls6{letter-spacing:0.021600px;}
.ls67{letter-spacing:0.024000px;}
.ls93{letter-spacing:0.026400px;}
.ls36{letter-spacing:0.028800px;}
.ls92{letter-spacing:0.033000px;}
.ls3b{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.042000px;}
.ls19{letter-spacing:0.043200px;}
.ls91{letter-spacing:0.046200px;}
.ls8{letter-spacing:0.048000px;}
.ls38{letter-spacing:0.050400px;}
.ls49{letter-spacing:0.057600px;}
.ls59{letter-spacing:0.060000px;}
.ls3a{letter-spacing:0.064800px;}
.ls37{letter-spacing:0.072000px;}
.ls39{letter-spacing:0.079200px;}
.ls9{letter-spacing:0.084000px;}
.ls3c{letter-spacing:0.093600px;}
.ls4{letter-spacing:0.096000px;}
.ls18{letter-spacing:0.122400px;}
.ls4b{letter-spacing:0.144000px;}
.ls8e{letter-spacing:0.165600px;}
.ls4c{letter-spacing:0.288000px;}
.ls78{letter-spacing:0.360000px;}
.ls7a{letter-spacing:0.381600px;}
.ls72{letter-spacing:0.756000px;}
.ls58{letter-spacing:0.828000px;}
.ls66{letter-spacing:0.875880px;}
.ls46{letter-spacing:0.936000px;}
.ls20{letter-spacing:1.206000px;}
.ls21{letter-spacing:70.524000px;}
.ls71{letter-spacing:104.540400px;}
.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;}
}
.ws71{word-spacing:-83.575560px;}
.ws99{word-spacing:-79.630140px;}
.ws28{word-spacing:-43.567200px;}
.ws1{word-spacing:-33.036000px;}
.ws0{word-spacing:-30.960000px;}
.ws97{word-spacing:-24.840000px;}
.ws93{word-spacing:-23.036400px;}
.ws58{word-spacing:-16.992000px;}
.ws6b{word-spacing:-16.884000px;}
.ws9a{word-spacing:-16.560000px;}
.ws60{word-spacing:-16.344000px;}
.wsab{word-spacing:-16.221600px;}
.ws5f{word-spacing:-16.200000px;}
.ws54{word-spacing:-16.149600px;}
.ws57{word-spacing:-16.135200px;}
.ws4f{word-spacing:-16.128000px;}
.ws59{word-spacing:-16.120800px;}
.ws5c{word-spacing:-16.106400px;}
.ws5b{word-spacing:-16.092000px;}
.wsb1{word-spacing:-16.084800px;}
.ws6c{word-spacing:-16.070400px;}
.ws94{word-spacing:-16.063200px;}
.ws7f{word-spacing:-16.062000px;}
.ws98{word-spacing:-16.056000px;}
.ws7e{word-spacing:-16.050000px;}
.ws96{word-spacing:-16.048800px;}
.ws7b{word-spacing:-16.044000px;}
.wsa{word-spacing:-16.041600px;}
.ws6a{word-spacing:-16.034400px;}
.ws80{word-spacing:-16.032000px;}
.wsb0{word-spacing:-16.027200px;}
.ws7c{word-spacing:-16.026000px;}
.ws7d{word-spacing:-16.020000px;}
.ws4d{word-spacing:-16.012800px;}
.ws8b{word-spacing:-16.008000px;}
.wsb2{word-spacing:-16.005600px;}
.ws9c{word-spacing:-15.998400px;}
.ws56{word-spacing:-15.991200px;}
.wsb3{word-spacing:-15.955200px;}
.ws4e{word-spacing:-15.948000px;}
.ws51{word-spacing:-15.933600px;}
.ws5e{word-spacing:-15.840000px;}
.ws62{word-spacing:-15.782400px;}
.ws53{word-spacing:-15.768000px;}
.ws61{word-spacing:-15.746400px;}
.ws5a{word-spacing:-15.638400px;}
.ws52{word-spacing:-15.624000px;}
.ws9b{word-spacing:-15.552000px;}
.ws2b{word-spacing:-15.486000px;}
.ws63{word-spacing:-15.480000px;}
.ws4c{word-spacing:-15.465600px;}
.ws2d{word-spacing:-15.414000px;}
.ws31{word-spacing:-15.402000px;}
.ws2e{word-spacing:-15.366000px;}
.ws50{word-spacing:-15.336000px;}
.ws55{word-spacing:-15.264000px;}
.wsa1{word-spacing:-15.242400px;}
.wsaf{word-spacing:-15.235200px;}
.ws5d{word-spacing:-15.120000px;}
.wsa3{word-spacing:-14.976000px;}
.wsa4{word-spacing:-14.968800px;}
.ws9{word-spacing:-14.928000px;}
.wsa5{word-spacing:-14.918400px;}
.ws8{word-spacing:-14.832000px;}
.wsb4{word-spacing:-14.341800px;}
.wsb6{word-spacing:-14.275800px;}
.wsb5{word-spacing:-14.223000px;}
.wsac{word-spacing:-13.176000px;}
.ws6d{word-spacing:-11.496000px;}
.ws6f{word-spacing:-11.484000px;}
.ws30{word-spacing:-11.142000px;}
.ws2c{word-spacing:-11.070000px;}
.ws33{word-spacing:-10.675200px;}
.ws90{word-spacing:-10.660800px;}
.ws2f{word-spacing:-10.566000px;}
.ws29{word-spacing:-10.560000px;}
.ws32{word-spacing:-10.422000px;}
.ws72{word-spacing:-9.936000px;}
.ws69{word-spacing:-9.633600px;}
.ws2a{word-spacing:-9.264000px;}
.ws17{word-spacing:-8.064000px;}
.ws2{word-spacing:-7.800000px;}
.ws70{word-spacing:-7.225200px;}
.ws7{word-spacing:-7.200000px;}
.ws6{word-spacing:-6.000000px;}
.ws4{word-spacing:-5.616000px;}
.ws5{word-spacing:-5.400000px;}
.ws6e{word-spacing:-5.346000px;}
.ws35{word-spacing:-1.206000px;}
.ws3a{word-spacing:-0.918000px;}
.ws38{word-spacing:-0.660000px;}
.ws46{word-spacing:-0.570000px;}
.ws42{word-spacing:-0.498000px;}
.ws40{word-spacing:-0.450000px;}
.ws47{word-spacing:-0.420000px;}
.wsa0{word-spacing:-0.381600px;}
.ws36{word-spacing:-0.330000px;}
.ws74{word-spacing:-0.222000px;}
.ws3c{word-spacing:-0.210000px;}
.ws8f{word-spacing:-0.192000px;}
.ws82{word-spacing:-0.174000px;}
.ws88{word-spacing:-0.162000px;}
.ws7a{word-spacing:-0.144000px;}
.ws86{word-spacing:-0.138000px;}
.ws25{word-spacing:-0.122400px;}
.ws45{word-spacing:-0.102000px;}
.wsa7{word-spacing:-0.093600px;}
.wsc{word-spacing:-0.084000px;}
.ws76{word-spacing:-0.078000px;}
.ws75{word-spacing:-0.072000px;}
.ws81{word-spacing:-0.066000px;}
.ws1d{word-spacing:-0.060000px;}
.ws65{word-spacing:-0.050400px;}
.wsb{word-spacing:-0.048000px;}
.wsb8{word-spacing:-0.046200px;}
.ws27{word-spacing:-0.043200px;}
.ws1c{word-spacing:-0.042000px;}
.ws85{word-spacing:-0.036000px;}
.wsba{word-spacing:-0.033000px;}
.ws9e{word-spacing:-0.028800px;}
.wsbb{word-spacing:-0.026400px;}
.ws41{word-spacing:-0.024000px;}
.ws13{word-spacing:-0.021600px;}
.ws77{word-spacing:-0.018000px;}
.ws15{word-spacing:-0.014400px;}
.ws87{word-spacing:-0.012000px;}
.wsf{word-spacing:-0.007200px;}
.ws79{word-spacing:-0.006000px;}
.ws3{word-spacing:0.000000px;}
.ws21{word-spacing:0.006000px;}
.ws16{word-spacing:0.007200px;}
.ws91{word-spacing:0.009600px;}
.ws37{word-spacing:0.012000px;}
.ws12{word-spacing:0.014400px;}
.ws73{word-spacing:0.018000px;}
.ws92{word-spacing:0.019200px;}
.wse{word-spacing:0.021600px;}
.ws39{word-spacing:0.024000px;}
.ws11{word-spacing:0.028800px;}
.ws20{word-spacing:0.030000px;}
.ws10{word-spacing:0.036000px;}
.ws1a{word-spacing:0.042000px;}
.ws26{word-spacing:0.043200px;}
.wsb7{word-spacing:0.046200px;}
.ws84{word-spacing:0.048000px;}
.ws66{word-spacing:0.050400px;}
.wsb9{word-spacing:0.052800px;}
.ws34{word-spacing:0.054000px;}
.ws14{word-spacing:0.057600px;}
.ws43{word-spacing:0.060000px;}
.ws95{word-spacing:0.064800px;}
.ws78{word-spacing:0.066000px;}
.wsd{word-spacing:0.072000px;}
.ws48{word-spacing:0.078000px;}
.ws68{word-spacing:0.079200px;}
.ws1b{word-spacing:0.084000px;}
.wsaa{word-spacing:0.086400px;}
.ws9f{word-spacing:0.093600px;}
.ws3e{word-spacing:0.096000px;}
.ws1f{word-spacing:0.102000px;}
.wsad{word-spacing:0.108000px;}
.ws44{word-spacing:0.114000px;}
.ws9d{word-spacing:0.122400px;}
.ws1e{word-spacing:0.126000px;}
.ws8a{word-spacing:0.132000px;}
.ws3b{word-spacing:0.150000px;}
.wsa2{word-spacing:0.151200px;}
.ws49{word-spacing:0.156000px;}
.ws67{word-spacing:0.180000px;}
.ws3f{word-spacing:0.186000px;}
.wsa6{word-spacing:0.194400px;}
.ws8c{word-spacing:0.204000px;}
.ws89{word-spacing:0.222000px;}
.wsa9{word-spacing:0.266400px;}
.ws3d{word-spacing:0.270000px;}
.ws8e{word-spacing:0.324000px;}
.wsa8{word-spacing:0.331200px;}
.ws8d{word-spacing:0.342000px;}
.ws4b{word-spacing:0.348000px;}
.ws19{word-spacing:0.356400px;}
.ws4a{word-spacing:0.432000px;}
.ws83{word-spacing:0.486000px;}
.ws24{word-spacing:0.594000px;}
.ws18{word-spacing:0.702000px;}
.ws64{word-spacing:20.162400px;}
.wsae{word-spacing:23.799600px;}
.ws23{word-spacing:2287.800000px;}
.ws22{word-spacing:2418.336000px;}
._18{margin-left:-3060.461400px;}
._0{margin-left:-11.412000px;}
._17{margin-left:-9.948600px;}
._7{margin-left:-7.916400px;}
._9{margin-left:-6.907200px;}
._1a{margin-left:-5.871600px;}
._2{margin-left:-4.806000px;}
._19{margin-left:-3.758400px;}
._5{margin-left:-2.750400px;}
._3{margin-left:-1.357200px;}
._4{width:1.029600px;}
._6{width:2.126400px;}
._1{width:3.594000px;}
._1b{width:5.742000px;}
._8{width:11.211600px;}
._14{width:704.170200px;}
._10{width:719.373600px;}
._15{width:733.716000px;}
._e{width:800.852400px;}
._b{width:1239.523200px;}
._a{width:1258.214400px;}
._11{width:1447.596000px;}
._12{width:1602.115200px;}
._16{width:1647.061800px;}
._13{width:1670.472600px;}
._f{width:1711.994400px;}
._c{width:1853.220600px;}
._d{width:1888.257600px;}
.fc3{color:transparent;}
.fc1{color:rgb(28,42,78);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:28.800000px;}
.fsa{font-size:32.400000px;}
.fs6{font-size:43.200000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs9{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:96.000000px;}
.fsc{font-size:108.000000px;}
.fsf{font-size:120.000000px;}
.fsb{font-size:129.600000px;}
.fs0{font-size:144.000000px;}
.fs3{font-size:165.864000px;}
.fs4{font-size:216.000000px;}
.fse{font-size:346.218000px;}
.fs5{font-size:363.372000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:49.618500px;}
.y5a{bottom:49.624650px;}
.y211{bottom:74.312400px;}
.y226{bottom:88.320300px;}
.y9d{bottom:93.152700px;}
.ye5{bottom:94.997550px;}
.y144{bottom:95.949300px;}
.y91{bottom:97.117950px;}
.y143{bottom:97.459200px;}
.y59{bottom:99.992550px;}
.y210{bottom:105.316350px;}
.y9c{bottom:111.377700px;}
.ye4{bottom:112.022550px;}
.y225{bottom:112.320300px;}
.y1eb{bottom:113.844300px;}
.y90{bottom:115.342950px;}
.y2c{bottom:127.335000px;}
.y9b{bottom:135.971700px;}
.y20f{bottom:136.320300px;}
.y1ea{bottom:137.838300px;}
.y8f{bottom:139.945800px;}
.y2b{bottom:151.329000px;}
.y224{bottom:160.320300px;}
.y165{bottom:160.342650px;}
.y23e{bottom:160.368300px;}
.y9a{bottom:160.574700px;}
.y1e9{bottom:161.832300px;}
.y20e{bottom:167.324400px;}
.y142{bottom:168.351750px;}
.y99{bottom:178.799700px;}
.y137{bottom:182.325600px;}
.y287{bottom:182.427900px;}
.y223{bottom:184.320300px;}
.y164{bottom:184.336650px;}
.y23d{bottom:184.362300px;}
.y1c9{bottom:184.386150px;}
.y1e8{bottom:185.826300px;}
.y141{bottom:192.345750px;}
.y27b{bottom:195.183900px;}
.y98{bottom:197.024700px;}
.y20d{bottom:198.328200px;}
.y2a{bottom:199.368000px;}
.y136{bottom:206.319600px;}
.y286{bottom:206.427900px;}
.y222{bottom:208.320300px;}
.y163{bottom:208.330650px;}
.y23c{bottom:208.356300px;}
.y1c8{bottom:208.380150px;}
.y1e7{bottom:209.874300px;}
.y97{bottom:215.249700px;}
.y184{bottom:215.394600px;}
.y140{bottom:216.339750px;}
.y27a{bottom:219.183750px;}
.y29{bottom:224.328000px;}
.y135{bottom:230.313600px;}
.y285{bottom:230.428050px;}
.y20c{bottom:230.832150px;}
.y221{bottom:232.320300px;}
.y162{bottom:232.324650px;}
.y23b{bottom:232.350300px;}
.y1c7{bottom:232.374150px;}
.y96{bottom:233.474700px;}
.y1e6{bottom:233.868300px;}
.y8e{bottom:237.449400px;}
.y183{bottom:239.388600px;}
.y13f{bottom:240.333750px;}
.y279{bottom:243.183750px;}
.y28{bottom:247.356000px;}
.y134{bottom:254.307600px;}
.y284{bottom:254.427900px;}
.y20b{bottom:254.832150px;}
.y161{bottom:256.318650px;}
.y220{bottom:256.320300px;}
.y23a{bottom:256.344300px;}
.y1c6{bottom:256.368150px;}
.y1a7{bottom:256.378650px;}
.y1e5{bottom:257.862300px;}
.y8d{bottom:262.052400px;}
.y95{bottom:262.052700px;}
.y182{bottom:263.382600px;}
.y13e{bottom:264.327750px;}
.yc3{bottom:264.642000px;}
.y278{bottom:267.183900px;}
.y133{bottom:278.301600px;}
.y283{bottom:278.427900px;}
.y20a{bottom:278.832150px;}
.y21f{bottom:280.320300px;}
.y239{bottom:280.338300px;}
.y1c5{bottom:280.362150px;}
.y1a6{bottom:280.372650px;}
.y1e4{bottom:281.856300px;}
.y94{bottom:282.680700px;}
.yf4{bottom:283.020300px;}
.y8c{bottom:286.658700px;}
.y181{bottom:287.376600px;}
.y13d{bottom:288.321750px;}
.y160{bottom:288.822600px;}
.yc2{bottom:288.942000px;}
.y132{bottom:302.301600px;}
.y209{bottom:302.832150px;}
.y277{bottom:303.939600px;}
.y21e{bottom:304.320300px;}
.y238{bottom:304.332300px;}
.y1c4{bottom:304.356150px;}
.y1a5{bottom:304.366650px;}
.y118{bottom:305.721750px;}
.y1e3{bottom:305.850300px;}
.yf3{bottom:307.014300px;}
.y93{bottom:307.283700px;}
.y15f{bottom:311.322600px;}
.y180{bottom:311.370600px;}
.y13a{bottom:312.309750px;}
.y13c{bottom:312.315750px;}
.yc1{bottom:313.242000px;}
.y282{bottom:315.183750px;}
.y3c{bottom:324.443550px;}
.y92{bottom:325.509000px;}
.y131{bottom:326.301600px;}
.y208{bottom:326.832150px;}
.ya4{bottom:327.134550px;}
.y276{bottom:327.939600px;}
.y237{bottom:328.326300px;}
.y1c3{bottom:328.350150px;}
.y1a4{bottom:328.360650px;}
.y117{bottom:329.715750px;}
.y1e2{bottom:329.844300px;}
.yf2{bottom:331.014300px;}
.y17f{bottom:335.364600px;}
.y13b{bottom:336.315750px;}
.y21d{bottom:336.824250px;}
.yc0{bottom:337.542000px;}
.y281{bottom:339.183900px;}
.ye1{bottom:340.830000px;}
.y130{bottom:350.301600px;}
.y207{bottom:350.832150px;}
.y275{bottom:351.939600px;}
.y236{bottom:352.320300px;}
.y1c2{bottom:352.344150px;}
.y1a3{bottom:352.354650px;}
.y116{bottom:353.709750px;}
.y1e1{bottom:353.838300px;}
.yf1{bottom:355.020300px;}
.y3b{bottom:358.799250px;}
.y21c{bottom:359.324250px;}
.y17e{bottom:359.358600px;}
.ybf{bottom:361.842000px;}
.y280{bottom:363.183750px;}
.ye0{bottom:365.130000px;}
.y8b{bottom:368.197050px;}
.y75{bottom:371.130750px;}
.y12f{bottom:374.301600px;}
.y206{bottom:374.832150px;}
.y15e{bottom:374.914350px;}
.y274{bottom:375.939600px;}
.y1e{bottom:375.949350px;}
.y1c1{bottom:376.338150px;}
.y1a2{bottom:376.348650px;}
.y24c{bottom:376.362150px;}
.y115{bottom:377.703750px;}
.y1e0{bottom:377.832300px;}
.yf0{bottom:379.014300px;}
.y17d{bottom:383.352600px;}
.y235{bottom:384.824250px;}
.ybe{bottom:386.142000px;}
.ydf{bottom:389.430000px;}
.y21b{bottom:390.328200px;}
.y8a{bottom:392.497050px;}
.y3a{bottom:393.155250px;}
.y74{bottom:395.430750px;}
.y12e{bottom:398.301750px;}
.y205{bottom:398.832150px;}
.y15d{bottom:398.908350px;}
.y273{bottom:399.939450px;}
.y1d{bottom:399.943350px;}
.y1c0{bottom:400.332150px;}
.y1a1{bottom:400.342650px;}
.y24b{bottom:400.356150px;}
.y114{bottom:401.697750px;}
.y1df{bottom:401.826300px;}
.yef{bottom:403.038300px;}
.y17c{bottom:407.346600px;}
.ybd{bottom:410.442000px;}
.yde{bottom:413.730000px;}
.y89{bottom:416.797500px;}
.y27{bottom:418.380000px;}
.y73{bottom:419.739300px;}
.y12d{bottom:422.307600px;}
.y204{bottom:422.832150px;}
.y15c{bottom:422.902350px;}
.y19a{bottom:422.908350px;}
.y1c{bottom:423.937350px;}
.y272{bottom:423.939600px;}
.y1a0{bottom:424.336650px;}
.y24a{bottom:424.350150px;}
.y113{bottom:425.691750px;}
.y1de{bottom:425.820300px;}
.yee{bottom:427.032300px;}
.y39{bottom:427.511100px;}
.y17b{bottom:431.340600px;}
.y1bf{bottom:432.836100px;}
.ybc{bottom:434.742000px;}
.ydd{bottom:438.030000px;}
.y58{bottom:441.015000px;}
.y88{bottom:441.097500px;}
.y2a5{bottom:441.605250px;}
.y72{bottom:444.039300px;}
.y12c{bottom:446.301600px;}
.y203{bottom:446.832150px;}
.y15b{bottom:446.896350px;}
.y199{bottom:446.902350px;}
.y1b{bottom:447.931350px;}
.y27f{bottom:447.939600px;}
.y19f{bottom:448.330650px;}
.y249{bottom:448.344150px;}
.y234{bottom:448.392150px;}
.y112{bottom:449.685750px;}
.yed{bottom:451.026300px;}
.y17a{bottom:455.334600px;}
.y1be{bottom:455.336100px;}
.y1dd{bottom:458.324400px;}
.ybb{bottom:459.042000px;}
.y271{bottom:460.695450px;}
.y2a4{bottom:461.405250px;}
.y38{bottom:461.866950px;}
.ydc{bottom:462.330000px;}
.y57{bottom:465.315000px;}
.y87{bottom:465.397500px;}
.y26{bottom:466.386000px;}
.y12b{bottom:470.301750px;}
.y202{bottom:470.832150px;}
.y15a{bottom:470.890350px;}
.y198{bottom:470.896350px;}
.y1a{bottom:471.925350px;}
.y19e{bottom:472.324650px;}
.y248{bottom:472.338150px;}
.y233{bottom:472.386150px;}
.y111{bottom:473.679750px;}
.yec{bottom:475.020300px;}
.y71{bottom:476.835300px;}
.y179{bottom:479.328600px;}
.y1dc{bottom:480.824400px;}
.y2a3{bottom:481.205250px;}
.yba{bottom:483.342000px;}
.y270{bottom:484.695450px;}
.ydb{bottom:486.630000px;}
.y56{bottom:489.615000px;}
.y86{bottom:489.691650px;}
.y25{bottom:490.380000px;}
.y12a{bottom:494.295750px;}
.y21a{bottom:494.832150px;}
.y159{bottom:494.884350px;}
.y197{bottom:494.890350px;}
.y19{bottom:495.919350px;}
.y37{bottom:496.222800px;}
.y19d{bottom:496.318650px;}
.y247{bottom:496.368150px;}
.y232{bottom:496.380150px;}
.y110{bottom:497.673750px;}
.yeb{bottom:499.014300px;}
.y2a2{bottom:501.005250px;}
.y70{bottom:501.135300px;}
.y178{bottom:503.322600px;}
.y201{bottom:503.336100px;}
.yb9{bottom:507.642000px;}
.y26f{bottom:508.695450px;}
.y55{bottom:513.915000px;}
.y85{bottom:513.991650px;}
.y219{bottom:518.832150px;}
.y158{bottom:518.878350px;}
.y196{bottom:518.884350px;}
.y1bd{bottom:518.964000px;}
.yda{bottom:519.433500px;}
.y18{bottom:519.913350px;}
.y246{bottom:520.362150px;}
.y231{bottom:520.374150px;}
.y2a1{bottom:520.806000px;}
.y10f{bottom:521.673750px;}
.yea{bottom:523.020300px;}
.y6f{bottom:525.435300px;}
.y19c{bottom:528.822600px;}
.y36{bottom:530.578650px;}
.yb8{bottom:531.942000px;}
.y26e{bottom:532.695450px;}
.y200{bottom:534.340050px;}
.y177{bottom:535.826550px;}
.y54{bottom:538.215000px;}
.y24{bottom:538.380000px;}
.y2a0{bottom:540.606000px;}
.y218{bottom:542.832150px;}
.y157{bottom:542.872350px;}
.y195{bottom:542.878350px;}
.y1bc{bottom:542.958000px;}
.yd9{bottom:543.733500px;}
.y17{bottom:543.907350px;}
.y245{bottom:544.356150px;}
.y230{bottom:544.368150px;}
.y1db{bottom:544.380150px;}
.y10e{bottom:545.673600px;}
.ye9{bottom:547.014300px;}
.y6e{bottom:549.735300px;}
.y84{bottom:551.053950px;}
.y19b{bottom:551.322600px;}
.y26d{bottom:556.695450px;}
.y29f{bottom:560.406000px;}
.y53{bottom:562.515000px;}
.yb7{bottom:564.747000px;}
.y35{bottom:564.934500px;}
.y129{bottom:566.307300px;}
.y217{bottom:566.832150px;}
.y1ff{bottom:566.844000px;}
.y156{bottom:566.866350px;}
.y194{bottom:566.872350px;}
.y1bb{bottom:566.952000px;}
.y16{bottom:567.919350px;}
.yd8{bottom:568.033500px;}
.y244{bottom:568.350150px;}
.y22f{bottom:568.362150px;}
.y1da{bottom:568.374150px;}
.y10d{bottom:569.667600px;}
.ye8{bottom:571.008300px;}
.y83{bottom:575.353950px;}
.y6d{bottom:582.539400px;}
.y52{bottom:586.815000px;}
.yb6{bottom:588.081000px;}
.y216{bottom:590.832150px;}
.y1fe{bottom:590.844000px;}
.y155{bottom:590.860350px;}
.y193{bottom:590.866350px;}
.y1ba{bottom:590.946000px;}
.y15{bottom:591.913350px;}
.yd7{bottom:592.333500px;}
.y243{bottom:592.344150px;}
.y22e{bottom:592.356150px;}
.y1d9{bottom:592.368150px;}
.y26c{bottom:593.451450px;}
.y34{bottom:599.290350px;}
.y176{bottom:599.382300px;}
.y82{bottom:599.647950px;}
.y51{bottom:611.115000px;}
.yb5{bottom:612.381000px;}
.y215{bottom:614.832150px;}
.y1fd{bottom:614.844000px;}
.y154{bottom:614.854350px;}
.y192{bottom:614.860350px;}
.y1b9{bottom:614.940000px;}
.y6c{bottom:615.343350px;}
.y14{bottom:615.907350px;}
.y242{bottom:616.338150px;}
.y22d{bottom:616.350150px;}
.y1d8{bottom:616.362150px;}
.yd6{bottom:616.633500px;}
.y26b{bottom:617.451450px;}
.y175{bottom:623.376300px;}
.y81{bottom:623.947950px;}
.y29e{bottom:626.109000px;}
.y33{bottom:633.646200px;}
.y256{bottom:633.694500px;}
.y50{bottom:635.415000px;}
.yb4{bottom:636.681000px;}
.y128{bottom:638.349150px;}
.y214{bottom:638.832150px;}
.y1fc{bottom:638.844000px;}
.y153{bottom:638.848350px;}
.y191{bottom:638.854350px;}
.y1b8{bottom:638.934000px;}
.y13{bottom:639.907350px;}
.y241{bottom:640.332150px;}
.y22c{bottom:640.344150px;}
.y1d7{bottom:640.356150px;}
.ye7{bottom:640.888500px;}
.yd5{bottom:640.933500px;}
.y26a{bottom:641.451450px;}
.y29d{bottom:645.909000px;}
.y174{bottom:647.370300px;}
.y6b{bottom:648.147450px;}
.y10c{bottom:648.432300px;}
.y255{bottom:657.694500px;}
.y4f{bottom:659.715000px;}
.y80{bottom:661.010250px;}
.y127{bottom:662.343150px;}
.y152{bottom:662.842350px;}
.y1fb{bottom:662.844000px;}
.y190{bottom:662.848350px;}
.y1b7{bottom:662.928000px;}
.y12{bottom:663.907350px;}
.y22b{bottom:664.338150px;}
.y1d6{bottom:664.350150px;}
.yd4{bottom:665.233500px;}
.y269{bottom:665.451450px;}
.y29c{bottom:665.709000px;}
.y32{bottom:668.002050px;}
.yb3{bottom:669.484500px;}
.y213{bottom:671.336100px;}
.y173{bottom:671.364300px;}
.ye3{bottom:671.498400px;}
.y6a{bottom:672.447600px;}
.y240{bottom:672.836100px;}
.ye6{bottom:677.473500px;}
.y10b{bottom:680.994300px;}
.y254{bottom:681.688500px;}
.y4e{bottom:684.015000px;}
.y7f{bottom:685.310250px;}
.y29b{bottom:685.509000px;}
.y126{bottom:686.337150px;}
.y151{bottom:686.836350px;}
.y18f{bottom:686.842350px;}
.y1fa{bottom:686.844000px;}
.y1b6{bottom:686.922000px;}
.y11{bottom:687.919350px;}
.y22a{bottom:688.332150px;}
.y1d5{bottom:688.344150px;}
.y268{bottom:689.451450px;}
.yd3{bottom:689.533500px;}
.yb2{bottom:693.784500px;}
.y23f{bottom:695.336100px;}
.y172{bottom:695.358300px;}
.y27e{bottom:702.207300px;}
.y212{bottom:702.340050px;}
.y31{bottom:702.357900px;}
.y69{bottom:705.251700px;}
.y29a{bottom:705.309000px;}
.y7e{bottom:709.610550px;}
.y125{bottom:710.331150px;}
.y150{bottom:710.830350px;}
.y18e{bottom:710.836350px;}
.y1f9{bottom:710.844000px;}
.y1b5{bottom:710.916000px;}
.y10{bottom:711.913350px;}
.y1d4{bottom:712.338150px;}
.y267{bottom:713.451450px;}
.y4d{bottom:717.117000px;}
.yb1{bottom:718.084500px;}
.y40{bottom:719.262000px;}
.y171{bottom:719.352300px;}
.y229{bottom:720.836100px;}
.yd2{bottom:723.303000px;}
.y299{bottom:725.109000px;}
.y253{bottom:725.944350px;}
.ye2{bottom:726.014400px;}
.y27d{bottom:726.207300px;}
.y68{bottom:729.551700px;}
.y7d{bottom:733.910550px;}
.y124{bottom:734.325150px;}
.y18d{bottom:734.830350px;}
.y1f8{bottom:734.844000px;}
.y1b4{bottom:734.910000px;}
.yf{bottom:735.907350px;}
.y1d3{bottom:736.332150px;}
.y30{bottom:736.707600px;}
.y4c{bottom:741.417000px;}
.yb0{bottom:742.384500px;}
.y14f{bottom:743.334300px;}
.y170{bottom:743.346300px;}
.yd1{bottom:747.603000px;}
.y266{bottom:750.207300px;}
.y7c{bottom:758.210550px;}
.y123{bottom:758.343150px;}
.y1f7{bottom:758.844000px;}
.y1b3{bottom:758.904000px;}
.y10a{bottom:759.843150px;}
.ye{bottom:759.919350px;}
.y67{bottom:762.355800px;}
.y252{bottom:762.700200px;}
.y4b{bottom:765.717000px;}
.yaf{bottom:766.684500px;}
.y18c{bottom:767.334300px;}
.y16f{bottom:767.340300px;}
.y1d2{bottom:768.836100px;}
.y2f{bottom:771.069600px;}
.yd0{bottom:771.903000px;}
.y3f{bottom:773.778000px;}
.y265{bottom:774.207300px;}
.y23{bottom:778.379400px;}
.y76{bottom:779.636700px;}
.y122{bottom:782.337150px;}
.y7b{bottom:782.510700px;}
.y1f6{bottom:782.844000px;}
.y1b2{bottom:782.898000px;}
.y109{bottom:783.837150px;}
.yd{bottom:783.913350px;}
.y228{bottom:784.392000px;}
.y3{bottom:789.693000px;}
.y4a{bottom:790.017000px;}
.yae{bottom:790.984500px;}
.y16e{bottom:791.334300px;}
.y66{bottom:795.235050px;}
.ycf{bottom:796.203000px;}
.y264{bottom:798.207300px;}
.yfe{bottom:798.330000px;}
.y251{bottom:799.456050px;}
.y22{bottom:799.979400px;}
.y2e{bottom:805.425450px;}
.y121{bottom:806.331150px;}
.y7a{bottom:806.810850px;}
.y1f5{bottom:806.844000px;}
.y14e{bottom:806.890200px;}
.y1b1{bottom:806.892000px;}
.y108{bottom:807.831150px;}
.yc{bottom:807.907350px;}
.y227{bottom:808.386000px;}
.y49{bottom:814.317000px;}
.y65{bottom:819.535050px;}
.yce{bottom:820.503000px;}
.y263{bottom:822.207300px;}
.yad{bottom:823.788000px;}
.yfd{bottom:823.836000px;}
.y16d{bottom:823.838400px;}
.y120{bottom:830.325150px;}
.y1f4{bottom:830.844000px;}
.y18b{bottom:830.872200px;}
.y14d{bottom:830.884200px;}
.y1b0{bottom:830.886000px;}
.y79{bottom:831.111000px;}
.y107{bottom:831.825150px;}
.yb{bottom:831.907350px;}
.y1d1{bottom:832.380000px;}
.y250{bottom:836.212050px;}
.y2{bottom:836.493000px;}
.y48{bottom:838.617000px;}
.y2d{bottom:839.787450px;}
.y21{bottom:843.179100px;}
.y64{bottom:843.835050px;}
.y262{bottom:846.207300px;}
.yac{bottom:848.088000px;}
.yfc{bottom:849.342000px;}
.y298{bottom:850.860150px;}
.ycd{bottom:853.306500px;}
.y11f{bottom:854.349150px;}
.y1f3{bottom:854.844000px;}
.y18a{bottom:854.866200px;}
.y14c{bottom:854.878200px;}
.y1af{bottom:854.880000px;}
.y78{bottom:855.411000px;}
.y106{bottom:855.843150px;}
.ya{bottom:855.901350px;}
.y1d0{bottom:856.374000px;}
.y20{bottom:864.779100px;}
.y261{bottom:870.207300px;}
.yab{bottom:872.388000px;}
.y24f{bottom:872.967900px;}
.yfb{bottom:874.848000px;}
.y297{bottom:874.854150px;}
.y63{bottom:876.639450px;}
.ycc{bottom:877.606500px;}
.y11e{bottom:878.343150px;}
.y1f2{bottom:878.844000px;}
.y189{bottom:878.860200px;}
.y14b{bottom:878.872200px;}
.y1ae{bottom:878.874000px;}
.y77{bottom:879.711000px;}
.y105{bottom:879.837150px;}
.y1cf{bottom:880.368000px;}
.y1{bottom:881.163000px;}
.y9{bottom:882.036150px;}
.y27c{bottom:882.963300px;}
.y16c{bottom:887.398650px;}
.y47{bottom:889.983000px;}
.yaa{bottom:896.688000px;}
.y296{bottom:898.848150px;}
.yfa{bottom:900.354000px;}
.y62{bottom:900.939450px;}
.ycb{bottom:901.906500px;}
.y11d{bottom:902.337150px;}
.y1f1{bottom:902.844000px;}
.y188{bottom:902.854200px;}
.y14a{bottom:902.866200px;}
.y1ad{bottom:902.868000px;}
.y104{bottom:903.831150px;}
.y1ce{bottom:904.362000px;}
.y260{bottom:906.963300px;}
.y24e{bottom:909.729900px;}
.y16b{bottom:911.392650px;}
.y3d{bottom:912.915000px;}
.y46{bottom:915.489000px;}
.y295{bottom:922.842150px;}
.y61{bottom:925.239450px;}
.ya3{bottom:925.859850px;}
.yf9{bottom:925.860000px;}
.yca{bottom:926.206500px;}
.y11c{bottom:926.331150px;}
.y1f0{bottom:926.844000px;}
.y187{bottom:926.848200px;}
.y149{bottom:926.860200px;}
.y1ac{bottom:926.862000px;}
.y103{bottom:927.825150px;}
.y1cd{bottom:928.356000px;}
.y25f{bottom:930.963300px;}
.y24d{bottom:933.723900px;}
.ya9{bottom:933.744000px;}
.y16a{bottom:935.386650px;}
.y45{bottom:940.995000px;}
.y294{bottom:946.836150px;}
.y60{bottom:949.539450px;}
.y11b{bottom:950.325150px;}
.yc9{bottom:950.506500px;}
.y1ef{bottom:950.844000px;}
.y148{bottom:950.854200px;}
.y1ab{bottom:950.856000px;}
.ya2{bottom:951.365850px;}
.yf8{bottom:951.366000px;}
.y102{bottom:951.831150px;}
.y1cc{bottom:952.350000px;}
.y25e{bottom:954.963300px;}
.y139{bottom:957.855750px;}
.y28e{bottom:957.946050px;}
.ya8{bottom:958.044000px;}
.y169{bottom:959.380650px;}
.y44{bottom:966.501000px;}
.y41{bottom:967.149150px;}
.y8{bottom:969.604650px;}
.y293{bottom:970.830150px;}
.y11a{bottom:974.325150px;}
.y1ee{bottom:974.844000px;}
.y147{bottom:974.848200px;}
.y1aa{bottom:974.850000px;}
.y101{bottom:975.825150px;}
.y1cb{bottom:976.344000px;}
.ya1{bottom:976.871850px;}
.yf7{bottom:976.872000px;}
.y25d{bottom:978.963300px;}
.y28d{bottom:981.940050px;}
.y5f{bottom:982.343700px;}
.ya7{bottom:982.344000px;}
.y25b{bottom:982.920000px;}
.yc8{bottom:983.310000px;}
.y168{bottom:983.374650px;}
.y7{bottom:990.238650px;}
.y43{bottom:992.331000px;}
.y119{bottom:998.319150px;}
.y146{bottom:998.842200px;}
.y1a9{bottom:998.844000px;}
.y100{bottom:999.819150px;}
.ya0{bottom:1002.377850px;}
.yf6{bottom:1002.378000px;}
.y25c{bottom:1002.963300px;}
.y28c{bottom:1005.934050px;}
.y5e{bottom:1006.643700px;}
.ya6{bottom:1006.644000px;}
.y25a{bottom:1006.914000px;}
.y167{bottom:1007.368650px;}
.y292{bottom:1007.586150px;}
.yc7{bottom:1007.610000px;}
.y1ca{bottom:1008.847950px;}
.y6{bottom:1011.838650px;}
.y138{bottom:1012.395750px;}
.y42{bottom:1018.161000px;}
.y9e{bottom:1027.883850px;}
.yf5{bottom:1027.884000px;}
.y28b{bottom:1029.928050px;}
.y257{bottom:1030.896000px;}
.y259{bottom:1030.908000px;}
.y5d{bottom:1030.943850px;}
.ya5{bottom:1030.944000px;}
.y145{bottom:1031.346150px;}
.y1a8{bottom:1031.347950px;}
.y166{bottom:1031.362650px;}
.y291{bottom:1031.580150px;}
.yc6{bottom:1031.910000px;}
.y5{bottom:1033.438650px;}
.y9f{bottom:1053.390000px;}
.y28a{bottom:1053.922050px;}
.y4{bottom:1054.836000px;}
.y258{bottom:1054.902000px;}
.y5c{bottom:1055.244000px;}
.y290{bottom:1055.574150px;}
.yc5{bottom:1056.210000px;}
.y288{bottom:1069.506000px;}
.yff{bottom:1071.831000px;}
.y289{bottom:1079.061450px;}
.y5b{bottom:1079.544000px;}
.y28f{bottom:1079.568150px;}
.yc4{bottom:1080.510000px;}
.y186{bottom:1081.713900px;}
.y1ed{bottom:1081.714650px;}
.y185{bottom:1118.163900px;}
.y1ec{bottom:1118.164650px;}
.y1f{bottom:1189.146150px;}
.h1b{height:24.134400px;}
.h16{height:26.124000px;}
.h19{height:27.151200px;}
.h1a{height:29.352000px;}
.h11{height:39.960000px;}
.h9{height:40.014000px;}
.h1c{height:40.224000px;}
.h7{height:45.252000px;}
.h23{height:48.906000px;}
.h6{height:52.848000px;}
.h8{height:53.280000px;}
.ha{height:53.304600px;}
.hf{height:53.305200px;}
.hb{height:53.352000px;}
.he{height:53.376000px;}
.hd{height:53.376600px;}
.hc{height:53.401200px;}
.h14{height:56.160000px;}
.h20{height:57.432000px;}
.h15{height:57.600000px;}
.h5{height:60.336000px;}
.h4{height:60.336600px;}
.h18{height:60.359400px;}
.h17{height:60.360000px;}
.h1e{height:76.320000px;}
.h21{height:84.240000px;}
.h1d{height:85.860000px;}
.h22{height:95.400000px;}
.h3{height:112.320000px;}
.h2{height:118.800000px;}
.h10{height:129.373920px;}
.h12{height:171.720000px;}
.h1f{height:270.050040px;}
.h13{height:283.430160px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:892.889978px;}
.w3{width:892.890000px;}
.w4{width:892.891478px;}
.w2{width:892.891500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:60.964327px;}
.x1{left:64.461000px;}
.x2{left:66.185700px;}
.x8{left:78.957450px;}
.x13{left:85.016228px;}
.x16{left:86.019300px;}
.x3{left:87.448650px;}
.x9{left:92.482050px;}
.xc{left:93.543000px;}
.xe{left:101.884050px;}
.x6{left:116.691000px;}
.xa{left:119.557050px;}
.x17{left:120.756600px;}
.x10{left:124.785300px;}
.x12{left:132.381900px;}
.x4{left:138.439927px;}
.xb{left:159.701828px;}
.xf{left:191.321550px;}
.x11{left:455.437200px;}
.x5{left:468.160650px;}
.x14{left:476.693227px;}
.xd{left:814.382227px;}
.x7{left:821.793600px;}
@media print{
.v5{vertical-align:-14.133333pt;}
.v2{vertical-align:-12.533333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.133333pt;}
.v1{vertical-align:18.800000pt;}
.v7{vertical-align:19.732267pt;}
.v3{vertical-align:21.119467pt;}
.v8{vertical-align:59.465600pt;}
.v9{vertical-align:170.666667pt;}
.v6{vertical-align:181.376533pt;}
.ls17{letter-spacing:-7.104000pt;}
.ls1e{letter-spacing:-6.393600pt;}
.ls28{letter-spacing:-6.037333pt;}
.ls5e{letter-spacing:-5.952000pt;}
.ls63{letter-spacing:-5.472000pt;}
.ls61{letter-spacing:-5.184000pt;}
.ls35{letter-spacing:-5.008000pt;}
.ls25{letter-spacing:-4.954667pt;}
.ls26{letter-spacing:-4.885333pt;}
.ls2e{letter-spacing:-4.880000pt;}
.ls13{letter-spacing:-4.736000pt;}
.ls2{letter-spacing:-4.608000pt;}
.ls65{letter-spacing:-4.554667pt;}
.ls6f{letter-spacing:-4.480000pt;}
.ls6a{letter-spacing:-4.469333pt;}
.ls2b{letter-spacing:-4.432000pt;}
.ls30{letter-spacing:-4.368000pt;}
.ls31{letter-spacing:-4.304000pt;}
.ls6c{letter-spacing:-3.909333pt;}
.ls15{letter-spacing:-3.904000pt;}
.ls68{letter-spacing:-3.840000pt;}
.ls69{letter-spacing:-3.776000pt;}
.ls1d{letter-spacing:-3.685867pt;}
.ls0{letter-spacing:-3.200000pt;}
.ls1c{letter-spacing:-2.112000pt;}
.ls8f{letter-spacing:-1.792000pt;}
.ls75{letter-spacing:-1.603200pt;}
.ls87{letter-spacing:-1.017600pt;}
.ls82{letter-spacing:-1.011200pt;}
.ls80{letter-spacing:-0.998400pt;}
.ls83{letter-spacing:-0.992000pt;}
.ls81{letter-spacing:-0.985600pt;}
.ls7c{letter-spacing:-0.979200pt;}
.ls7d{letter-spacing:-0.972800pt;}
.ls85{letter-spacing:-0.966400pt;}
.ls84{letter-spacing:-0.960000pt;}
.ls8b{letter-spacing:-0.953600pt;}
.ls86{letter-spacing:-0.940800pt;}
.ls7f{letter-spacing:-0.934400pt;}
.ls7e{letter-spacing:-0.928000pt;}
.ls8c{letter-spacing:-0.921600pt;}
.ls48{letter-spacing:-0.832000pt;}
.ls44{letter-spacing:-0.704000pt;}
.ls52{letter-spacing:-0.691200pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.613333pt;}
.ls34{letter-spacing:-0.602667pt;}
.ls55{letter-spacing:-0.601600pt;}
.ls33{letter-spacing:-0.581333pt;}
.ls50{letter-spacing:-0.576000pt;}
.ls2c{letter-spacing:-0.570667pt;}
.ls3e{letter-spacing:-0.569600pt;}
.ls22{letter-spacing:-0.565333pt;}
.ls56{letter-spacing:-0.563200pt;}
.ls54{letter-spacing:-0.556800pt;}
.ls27{letter-spacing:-0.554667pt;}
.ls51{letter-spacing:-0.550400pt;}
.ls24{letter-spacing:-0.549333pt;}
.ls23{letter-spacing:-0.544000pt;}
.ls32{letter-spacing:-0.538667pt;}
.ls3d{letter-spacing:-0.537600pt;}
.ls2a{letter-spacing:-0.533333pt;}
.ls4f{letter-spacing:-0.531200pt;}
.ls3f{letter-spacing:-0.524800pt;}
.ls53{letter-spacing:-0.518400pt;}
.ls2f{letter-spacing:-0.512000pt;}
.ls29{letter-spacing:-0.506667pt;}
.ls5d{letter-spacing:-0.496000pt;}
.ls5c{letter-spacing:-0.485333pt;}
.ls42{letter-spacing:-0.384000pt;}
.ls47{letter-spacing:-0.371200pt;}
.ls62{letter-spacing:-0.336000pt;}
.ls89{letter-spacing:-0.294400pt;}
.ls4d{letter-spacing:-0.275200pt;}
.ls43{letter-spacing:-0.256000pt;}
.ls4e{letter-spacing:-0.243200pt;}
.ls8a{letter-spacing:-0.236800pt;}
.ls4a{letter-spacing:-0.192000pt;}
.ls88{letter-spacing:-0.172800pt;}
.ls7b{letter-spacing:-0.134400pt;}
.ls41{letter-spacing:-0.108800pt;}
.ls40{letter-spacing:-0.096000pt;}
.ls90{letter-spacing:-0.089600pt;}
.ls97{letter-spacing:-0.088000pt;}
.ls79{letter-spacing:-0.083200pt;}
.ls8d{letter-spacing:-0.076800pt;}
.ls3{letter-spacing:-0.074667pt;}
.ls77{letter-spacing:-0.070400pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls6d{letter-spacing:-0.058667pt;}
.ls45{letter-spacing:-0.057600pt;}
.ls70{letter-spacing:-0.053333pt;}
.lse{letter-spacing:-0.051200pt;}
.ls95{letter-spacing:-0.046933pt;}
.ls76{letter-spacing:-0.044800pt;}
.ls6b{letter-spacing:-0.042667pt;}
.ls94{letter-spacing:-0.041067pt;}
.ls1b{letter-spacing:-0.038400pt;}
.ls12{letter-spacing:-0.037333pt;}
.lsb{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.026667pt;}
.lsc{letter-spacing:-0.025600pt;}
.ls64{letter-spacing:-0.021333pt;}
.lsa{letter-spacing:-0.019200pt;}
.ls74{letter-spacing:-0.017067pt;}
.ls60{letter-spacing:-0.016000pt;}
.lsd{letter-spacing:-0.012800pt;}
.ls5f{letter-spacing:-0.010667pt;}
.ls73{letter-spacing:-0.008533pt;}
.lsf{letter-spacing:-0.006400pt;}
.ls16{letter-spacing:-0.005333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.000533pt;}
.ls1f{letter-spacing:0.001067pt;}
.ls5b{letter-spacing:0.005333pt;}
.ls5{letter-spacing:0.006400pt;}
.ls6e{letter-spacing:0.010667pt;}
.ls7{letter-spacing:0.012800pt;}
.ls5a{letter-spacing:0.016000pt;}
.ls96{letter-spacing:0.017600pt;}
.ls6{letter-spacing:0.019200pt;}
.ls67{letter-spacing:0.021333pt;}
.ls93{letter-spacing:0.023467pt;}
.ls36{letter-spacing:0.025600pt;}
.ls92{letter-spacing:0.029333pt;}
.ls3b{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.037333pt;}
.ls19{letter-spacing:0.038400pt;}
.ls91{letter-spacing:0.041067pt;}
.ls8{letter-spacing:0.042667pt;}
.ls38{letter-spacing:0.044800pt;}
.ls49{letter-spacing:0.051200pt;}
.ls59{letter-spacing:0.053333pt;}
.ls3a{letter-spacing:0.057600pt;}
.ls37{letter-spacing:0.064000pt;}
.ls39{letter-spacing:0.070400pt;}
.ls9{letter-spacing:0.074667pt;}
.ls3c{letter-spacing:0.083200pt;}
.ls4{letter-spacing:0.085333pt;}
.ls18{letter-spacing:0.108800pt;}
.ls4b{letter-spacing:0.128000pt;}
.ls8e{letter-spacing:0.147200pt;}
.ls4c{letter-spacing:0.256000pt;}
.ls78{letter-spacing:0.320000pt;}
.ls7a{letter-spacing:0.339200pt;}
.ls72{letter-spacing:0.672000pt;}
.ls58{letter-spacing:0.736000pt;}
.ls66{letter-spacing:0.778560pt;}
.ls46{letter-spacing:0.832000pt;}
.ls20{letter-spacing:1.072000pt;}
.ls21{letter-spacing:62.688000pt;}
.ls71{letter-spacing:92.924800pt;}
.ws71{word-spacing:-74.289387pt;}
.ws99{word-spacing:-70.782347pt;}
.ws28{word-spacing:-38.726400pt;}
.ws1{word-spacing:-29.365333pt;}
.ws0{word-spacing:-27.520000pt;}
.ws97{word-spacing:-22.080000pt;}
.ws93{word-spacing:-20.476800pt;}
.ws58{word-spacing:-15.104000pt;}
.ws6b{word-spacing:-15.008000pt;}
.ws9a{word-spacing:-14.720000pt;}
.ws60{word-spacing:-14.528000pt;}
.wsab{word-spacing:-14.419200pt;}
.ws5f{word-spacing:-14.400000pt;}
.ws54{word-spacing:-14.355200pt;}
.ws57{word-spacing:-14.342400pt;}
.ws4f{word-spacing:-14.336000pt;}
.ws59{word-spacing:-14.329600pt;}
.ws5c{word-spacing:-14.316800pt;}
.ws5b{word-spacing:-14.304000pt;}
.wsb1{word-spacing:-14.297600pt;}
.ws6c{word-spacing:-14.284800pt;}
.ws94{word-spacing:-14.278400pt;}
.ws7f{word-spacing:-14.277333pt;}
.ws98{word-spacing:-14.272000pt;}
.ws7e{word-spacing:-14.266667pt;}
.ws96{word-spacing:-14.265600pt;}
.ws7b{word-spacing:-14.261333pt;}
.wsa{word-spacing:-14.259200pt;}
.ws6a{word-spacing:-14.252800pt;}
.ws80{word-spacing:-14.250667pt;}
.wsb0{word-spacing:-14.246400pt;}
.ws7c{word-spacing:-14.245333pt;}
.ws7d{word-spacing:-14.240000pt;}
.ws4d{word-spacing:-14.233600pt;}
.ws8b{word-spacing:-14.229333pt;}
.wsb2{word-spacing:-14.227200pt;}
.ws9c{word-spacing:-14.220800pt;}
.ws56{word-spacing:-14.214400pt;}
.wsb3{word-spacing:-14.182400pt;}
.ws4e{word-spacing:-14.176000pt;}
.ws51{word-spacing:-14.163200pt;}
.ws5e{word-spacing:-14.080000pt;}
.ws62{word-spacing:-14.028800pt;}
.ws53{word-spacing:-14.016000pt;}
.ws61{word-spacing:-13.996800pt;}
.ws5a{word-spacing:-13.900800pt;}
.ws52{word-spacing:-13.888000pt;}
.ws9b{word-spacing:-13.824000pt;}
.ws2b{word-spacing:-13.765333pt;}
.ws63{word-spacing:-13.760000pt;}
.ws4c{word-spacing:-13.747200pt;}
.ws2d{word-spacing:-13.701333pt;}
.ws31{word-spacing:-13.690667pt;}
.ws2e{word-spacing:-13.658667pt;}
.ws50{word-spacing:-13.632000pt;}
.ws55{word-spacing:-13.568000pt;}
.wsa1{word-spacing:-13.548800pt;}
.wsaf{word-spacing:-13.542400pt;}
.ws5d{word-spacing:-13.440000pt;}
.wsa3{word-spacing:-13.312000pt;}
.wsa4{word-spacing:-13.305600pt;}
.ws9{word-spacing:-13.269333pt;}
.wsa5{word-spacing:-13.260800pt;}
.ws8{word-spacing:-13.184000pt;}
.wsb4{word-spacing:-12.748267pt;}
.wsb6{word-spacing:-12.689600pt;}
.wsb5{word-spacing:-12.642667pt;}
.wsac{word-spacing:-11.712000pt;}
.ws6d{word-spacing:-10.218667pt;}
.ws6f{word-spacing:-10.208000pt;}
.ws30{word-spacing:-9.904000pt;}
.ws2c{word-spacing:-9.840000pt;}
.ws33{word-spacing:-9.489067pt;}
.ws90{word-spacing:-9.476267pt;}
.ws2f{word-spacing:-9.392000pt;}
.ws29{word-spacing:-9.386667pt;}
.ws32{word-spacing:-9.264000pt;}
.ws72{word-spacing:-8.832000pt;}
.ws69{word-spacing:-8.563200pt;}
.ws2a{word-spacing:-8.234667pt;}
.ws17{word-spacing:-7.168000pt;}
.ws2{word-spacing:-6.933333pt;}
.ws70{word-spacing:-6.422400pt;}
.ws7{word-spacing:-6.400000pt;}
.ws6{word-spacing:-5.333333pt;}
.ws4{word-spacing:-4.992000pt;}
.ws5{word-spacing:-4.800000pt;}
.ws6e{word-spacing:-4.752000pt;}
.ws35{word-spacing:-1.072000pt;}
.ws3a{word-spacing:-0.816000pt;}
.ws38{word-spacing:-0.586667pt;}
.ws46{word-spacing:-0.506667pt;}
.ws42{word-spacing:-0.442667pt;}
.ws40{word-spacing:-0.400000pt;}
.ws47{word-spacing:-0.373333pt;}
.wsa0{word-spacing:-0.339200pt;}
.ws36{word-spacing:-0.293333pt;}
.ws74{word-spacing:-0.197333pt;}
.ws3c{word-spacing:-0.186667pt;}
.ws8f{word-spacing:-0.170667pt;}
.ws82{word-spacing:-0.154667pt;}
.ws88{word-spacing:-0.144000pt;}
.ws7a{word-spacing:-0.128000pt;}
.ws86{word-spacing:-0.122667pt;}
.ws25{word-spacing:-0.108800pt;}
.ws45{word-spacing:-0.090667pt;}
.wsa7{word-spacing:-0.083200pt;}
.wsc{word-spacing:-0.074667pt;}
.ws76{word-spacing:-0.069333pt;}
.ws75{word-spacing:-0.064000pt;}
.ws81{word-spacing:-0.058667pt;}
.ws1d{word-spacing:-0.053333pt;}
.ws65{word-spacing:-0.044800pt;}
.wsb{word-spacing:-0.042667pt;}
.wsb8{word-spacing:-0.041067pt;}
.ws27{word-spacing:-0.038400pt;}
.ws1c{word-spacing:-0.037333pt;}
.ws85{word-spacing:-0.032000pt;}
.wsba{word-spacing:-0.029333pt;}
.ws9e{word-spacing:-0.025600pt;}
.wsbb{word-spacing:-0.023467pt;}
.ws41{word-spacing:-0.021333pt;}
.ws13{word-spacing:-0.019200pt;}
.ws77{word-spacing:-0.016000pt;}
.ws15{word-spacing:-0.012800pt;}
.ws87{word-spacing:-0.010667pt;}
.wsf{word-spacing:-0.006400pt;}
.ws79{word-spacing:-0.005333pt;}
.ws3{word-spacing:0.000000pt;}
.ws21{word-spacing:0.005333pt;}
.ws16{word-spacing:0.006400pt;}
.ws91{word-spacing:0.008533pt;}
.ws37{word-spacing:0.010667pt;}
.ws12{word-spacing:0.012800pt;}
.ws73{word-spacing:0.016000pt;}
.ws92{word-spacing:0.017067pt;}
.wse{word-spacing:0.019200pt;}
.ws39{word-spacing:0.021333pt;}
.ws11{word-spacing:0.025600pt;}
.ws20{word-spacing:0.026667pt;}
.ws10{word-spacing:0.032000pt;}
.ws1a{word-spacing:0.037333pt;}
.ws26{word-spacing:0.038400pt;}
.wsb7{word-spacing:0.041067pt;}
.ws84{word-spacing:0.042667pt;}
.ws66{word-spacing:0.044800pt;}
.wsb9{word-spacing:0.046933pt;}
.ws34{word-spacing:0.048000pt;}
.ws14{word-spacing:0.051200pt;}
.ws43{word-spacing:0.053333pt;}
.ws95{word-spacing:0.057600pt;}
.ws78{word-spacing:0.058667pt;}
.wsd{word-spacing:0.064000pt;}
.ws48{word-spacing:0.069333pt;}
.ws68{word-spacing:0.070400pt;}
.ws1b{word-spacing:0.074667pt;}
.wsaa{word-spacing:0.076800pt;}
.ws9f{word-spacing:0.083200pt;}
.ws3e{word-spacing:0.085333pt;}
.ws1f{word-spacing:0.090667pt;}
.wsad{word-spacing:0.096000pt;}
.ws44{word-spacing:0.101333pt;}
.ws9d{word-spacing:0.108800pt;}
.ws1e{word-spacing:0.112000pt;}
.ws8a{word-spacing:0.117333pt;}
.ws3b{word-spacing:0.133333pt;}
.wsa2{word-spacing:0.134400pt;}
.ws49{word-spacing:0.138667pt;}
.ws67{word-spacing:0.160000pt;}
.ws3f{word-spacing:0.165333pt;}
.wsa6{word-spacing:0.172800pt;}
.ws8c{word-spacing:0.181333pt;}
.ws89{word-spacing:0.197333pt;}
.wsa9{word-spacing:0.236800pt;}
.ws3d{word-spacing:0.240000pt;}
.ws8e{word-spacing:0.288000pt;}
.wsa8{word-spacing:0.294400pt;}
.ws8d{word-spacing:0.304000pt;}
.ws4b{word-spacing:0.309333pt;}
.ws19{word-spacing:0.316800pt;}
.ws4a{word-spacing:0.384000pt;}
.ws83{word-spacing:0.432000pt;}
.ws24{word-spacing:0.528000pt;}
.ws18{word-spacing:0.624000pt;}
.ws64{word-spacing:17.922133pt;}
.wsae{word-spacing:21.155200pt;}
.ws23{word-spacing:2033.600000pt;}
.ws22{word-spacing:2149.632000pt;}
._18{margin-left:-2720.410133pt;}
._0{margin-left:-10.144000pt;}
._17{margin-left:-8.843200pt;}
._7{margin-left:-7.036800pt;}
._9{margin-left:-6.139733pt;}
._1a{margin-left:-5.219200pt;}
._2{margin-left:-4.272000pt;}
._19{margin-left:-3.340800pt;}
._5{margin-left:-2.444800pt;}
._3{margin-left:-1.206400pt;}
._4{width:0.915200pt;}
._6{width:1.890133pt;}
._1{width:3.194667pt;}
._1b{width:5.104000pt;}
._8{width:9.965867pt;}
._14{width:625.929067pt;}
._10{width:639.443200pt;}
._15{width:652.192000pt;}
._e{width:711.868800pt;}
._b{width:1101.798400pt;}
._a{width:1118.412800pt;}
._11{width:1286.752000pt;}
._12{width:1424.102400pt;}
._16{width:1464.054933pt;}
._13{width:1484.864533pt;}
._f{width:1521.772800pt;}
._c{width:1647.307200pt;}
._d{width:1678.451200pt;}
.fs7{font-size:25.600000pt;}
.fsa{font-size:28.800000pt;}
.fs6{font-size:38.400000pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs9{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:85.333333pt;}
.fsc{font-size:96.000000pt;}
.fsf{font-size:106.666667pt;}
.fsb{font-size:115.200000pt;}
.fs0{font-size:128.000000pt;}
.fs3{font-size:147.434667pt;}
.fs4{font-size:192.000000pt;}
.fse{font-size:307.749333pt;}
.fs5{font-size:322.997333pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:44.105333pt;}
.y5a{bottom:44.110800pt;}
.y211{bottom:66.055467pt;}
.y226{bottom:78.506933pt;}
.y9d{bottom:82.802400pt;}
.ye5{bottom:84.442267pt;}
.y144{bottom:85.288267pt;}
.y91{bottom:86.327067pt;}
.y143{bottom:86.630400pt;}
.y59{bottom:88.882267pt;}
.y210{bottom:93.614533pt;}
.y9c{bottom:99.002400pt;}
.ye4{bottom:99.575600pt;}
.y225{bottom:99.840267pt;}
.y1eb{bottom:101.194933pt;}
.y90{bottom:102.527067pt;}
.y2c{bottom:113.186667pt;}
.y9b{bottom:120.863733pt;}
.y20f{bottom:121.173600pt;}
.y1ea{bottom:122.522933pt;}
.y8f{bottom:124.396267pt;}
.y2b{bottom:134.514667pt;}
.y224{bottom:142.506933pt;}
.y165{bottom:142.526800pt;}
.y23e{bottom:142.549600pt;}
.y9a{bottom:142.733067pt;}
.y1e9{bottom:143.850933pt;}
.y20e{bottom:148.732800pt;}
.y142{bottom:149.646000pt;}
.y99{bottom:158.933067pt;}
.y137{bottom:162.067200pt;}
.y287{bottom:162.158133pt;}
.y223{bottom:163.840267pt;}
.y164{bottom:163.854800pt;}
.y23d{bottom:163.877600pt;}
.y1c9{bottom:163.898800pt;}
.y1e8{bottom:165.178933pt;}
.y141{bottom:170.974000pt;}
.y27b{bottom:173.496800pt;}
.y98{bottom:175.133067pt;}
.y20d{bottom:176.291733pt;}
.y2a{bottom:177.216000pt;}
.y136{bottom:183.395200pt;}
.y286{bottom:183.491467pt;}
.y222{bottom:185.173600pt;}
.y163{bottom:185.182800pt;}
.y23c{bottom:185.205600pt;}
.y1c8{bottom:185.226800pt;}
.y1e7{bottom:186.554933pt;}
.y97{bottom:191.333067pt;}
.y184{bottom:191.461867pt;}
.y140{bottom:192.302000pt;}
.y27a{bottom:194.830000pt;}
.y29{bottom:199.402667pt;}
.y135{bottom:204.723200pt;}
.y285{bottom:204.824933pt;}
.y20c{bottom:205.184133pt;}
.y221{bottom:206.506933pt;}
.y162{bottom:206.510800pt;}
.y23b{bottom:206.533600pt;}
.y1c7{bottom:206.554800pt;}
.y96{bottom:207.533067pt;}
.y1e6{bottom:207.882933pt;}
.y8e{bottom:211.066133pt;}
.y183{bottom:212.789867pt;}
.y13f{bottom:213.630000pt;}
.y279{bottom:216.163333pt;}
.y28{bottom:219.872000pt;}
.y134{bottom:226.051200pt;}
.y284{bottom:226.158133pt;}
.y20b{bottom:226.517467pt;}
.y161{bottom:227.838800pt;}
.y220{bottom:227.840267pt;}
.y23a{bottom:227.861600pt;}
.y1c6{bottom:227.882800pt;}
.y1a7{bottom:227.892133pt;}
.y1e5{bottom:229.210933pt;}
.y8d{bottom:232.935467pt;}
.y95{bottom:232.935733pt;}
.y182{bottom:234.117867pt;}
.y13e{bottom:234.958000pt;}
.yc3{bottom:235.237333pt;}
.y278{bottom:237.496800pt;}
.y133{bottom:247.379200pt;}
.y283{bottom:247.491467pt;}
.y20a{bottom:247.850800pt;}
.y21f{bottom:249.173600pt;}
.y239{bottom:249.189600pt;}
.y1c5{bottom:249.210800pt;}
.y1a6{bottom:249.220133pt;}
.y1e4{bottom:250.538933pt;}
.y94{bottom:251.271733pt;}
.yf4{bottom:251.573600pt;}
.y8c{bottom:254.807733pt;}
.y181{bottom:255.445867pt;}
.y13d{bottom:256.286000pt;}
.y160{bottom:256.731200pt;}
.yc2{bottom:256.837333pt;}
.y132{bottom:268.712533pt;}
.y209{bottom:269.184133pt;}
.y277{bottom:270.168533pt;}
.y21e{bottom:270.506933pt;}
.y238{bottom:270.517600pt;}
.y1c4{bottom:270.538800pt;}
.y1a5{bottom:270.548133pt;}
.y118{bottom:271.752667pt;}
.y1e3{bottom:271.866933pt;}
.yf3{bottom:272.901600pt;}
.y93{bottom:273.141067pt;}
.y15f{bottom:276.731200pt;}
.y180{bottom:276.773867pt;}
.y13a{bottom:277.608667pt;}
.y13c{bottom:277.614000pt;}
.yc1{bottom:278.437333pt;}
.y282{bottom:280.163333pt;}
.y3c{bottom:288.394267pt;}
.y92{bottom:289.341333pt;}
.y131{bottom:290.045867pt;}
.y208{bottom:290.517467pt;}
.ya4{bottom:290.786267pt;}
.y276{bottom:291.501867pt;}
.y237{bottom:291.845600pt;}
.y1c3{bottom:291.866800pt;}
.y1a4{bottom:291.876133pt;}
.y117{bottom:293.080667pt;}
.y1e2{bottom:293.194933pt;}
.yf2{bottom:294.234933pt;}
.y17f{bottom:298.101867pt;}
.y13b{bottom:298.947333pt;}
.y21d{bottom:299.399333pt;}
.yc0{bottom:300.037333pt;}
.y281{bottom:301.496800pt;}
.ye1{bottom:302.960000pt;}
.y130{bottom:311.379200pt;}
.y207{bottom:311.850800pt;}
.y275{bottom:312.835200pt;}
.y236{bottom:313.173600pt;}
.y1c2{bottom:313.194800pt;}
.y1a3{bottom:313.204133pt;}
.y116{bottom:314.408667pt;}
.y1e1{bottom:314.522933pt;}
.yf1{bottom:315.573600pt;}
.y3b{bottom:318.932667pt;}
.y21c{bottom:319.399333pt;}
.y17e{bottom:319.429867pt;}
.ybf{bottom:321.637333pt;}
.y280{bottom:322.830000pt;}
.ye0{bottom:324.560000pt;}
.y8b{bottom:327.286267pt;}
.y75{bottom:329.894000pt;}
.y12f{bottom:332.712533pt;}
.y206{bottom:333.184133pt;}
.y15e{bottom:333.257200pt;}
.y274{bottom:334.168533pt;}
.y1e{bottom:334.177200pt;}
.y1c1{bottom:334.522800pt;}
.y1a2{bottom:334.532133pt;}
.y24c{bottom:334.544133pt;}
.y115{bottom:335.736667pt;}
.y1e0{bottom:335.850933pt;}
.yf0{bottom:336.901600pt;}
.y17d{bottom:340.757867pt;}
.y235{bottom:342.066000pt;}
.ybe{bottom:343.237333pt;}
.ydf{bottom:346.160000pt;}
.y21b{bottom:346.958400pt;}
.y8a{bottom:348.886267pt;}
.y3a{bottom:349.471333pt;}
.y74{bottom:351.494000pt;}
.y12e{bottom:354.046000pt;}
.y205{bottom:354.517467pt;}
.y15d{bottom:354.585200pt;}
.y273{bottom:355.501733pt;}
.y1d{bottom:355.505200pt;}
.y1c0{bottom:355.850800pt;}
.y1a1{bottom:355.860133pt;}
.y24b{bottom:355.872133pt;}
.y114{bottom:357.064667pt;}
.y1df{bottom:357.178933pt;}
.yef{bottom:358.256267pt;}
.y17c{bottom:362.085867pt;}
.ybd{bottom:364.837333pt;}
.yde{bottom:367.760000pt;}
.y89{bottom:370.486667pt;}
.y27{bottom:371.893333pt;}
.y73{bottom:373.101600pt;}
.y12d{bottom:375.384533pt;}
.y204{bottom:375.850800pt;}
.y15c{bottom:375.913200pt;}
.y19a{bottom:375.918533pt;}
.y1c{bottom:376.833200pt;}
.y272{bottom:376.835200pt;}
.y1a0{bottom:377.188133pt;}
.y24a{bottom:377.200133pt;}
.y113{bottom:378.392667pt;}
.y1de{bottom:378.506933pt;}
.yee{bottom:379.584267pt;}
.y39{bottom:380.009867pt;}
.y17b{bottom:383.413867pt;}
.y1bf{bottom:384.743200pt;}
.ybc{bottom:386.437333pt;}
.ydd{bottom:389.360000pt;}
.y58{bottom:392.013333pt;}
.y88{bottom:392.086667pt;}
.y2a5{bottom:392.538000pt;}
.y72{bottom:394.701600pt;}
.y12c{bottom:396.712533pt;}
.y203{bottom:397.184133pt;}
.y15b{bottom:397.241200pt;}
.y199{bottom:397.246533pt;}
.y1b{bottom:398.161200pt;}
.y27f{bottom:398.168533pt;}
.y19f{bottom:398.516133pt;}
.y249{bottom:398.528133pt;}
.y234{bottom:398.570800pt;}
.y112{bottom:399.720667pt;}
.yed{bottom:400.912267pt;}
.y17a{bottom:404.741867pt;}
.y1be{bottom:404.743200pt;}
.y1dd{bottom:407.399467pt;}
.ybb{bottom:408.037333pt;}
.y271{bottom:409.507067pt;}
.y2a4{bottom:410.138000pt;}
.y38{bottom:410.548400pt;}
.ydc{bottom:410.960000pt;}
.y57{bottom:413.613333pt;}
.y87{bottom:413.686667pt;}
.y26{bottom:414.565333pt;}
.y12b{bottom:418.046000pt;}
.y202{bottom:418.517467pt;}
.y15a{bottom:418.569200pt;}
.y198{bottom:418.574533pt;}
.y1a{bottom:419.489200pt;}
.y19e{bottom:419.844133pt;}
.y248{bottom:419.856133pt;}
.y233{bottom:419.898800pt;}
.y111{bottom:421.048667pt;}
.yec{bottom:422.240267pt;}
.y71{bottom:423.853600pt;}
.y179{bottom:426.069867pt;}
.y1dc{bottom:427.399467pt;}
.y2a3{bottom:427.738000pt;}
.yba{bottom:429.637333pt;}
.y270{bottom:430.840400pt;}
.ydb{bottom:432.560000pt;}
.y56{bottom:435.213333pt;}
.y86{bottom:435.281467pt;}
.y25{bottom:435.893333pt;}
.y12a{bottom:439.374000pt;}
.y21a{bottom:439.850800pt;}
.y159{bottom:439.897200pt;}
.y197{bottom:439.902533pt;}
.y19{bottom:440.817200pt;}
.y37{bottom:441.086933pt;}
.y19d{bottom:441.172133pt;}
.y247{bottom:441.216133pt;}
.y232{bottom:441.226800pt;}
.y110{bottom:442.376667pt;}
.yeb{bottom:443.568267pt;}
.y2a2{bottom:445.338000pt;}
.y70{bottom:445.453600pt;}
.y178{bottom:447.397867pt;}
.y201{bottom:447.409867pt;}
.yb9{bottom:451.237333pt;}
.y26f{bottom:452.173733pt;}
.y55{bottom:456.813333pt;}
.y85{bottom:456.881467pt;}
.y219{bottom:461.184133pt;}
.y158{bottom:461.225200pt;}
.y196{bottom:461.230533pt;}
.y1bd{bottom:461.301333pt;}
.yda{bottom:461.718667pt;}
.y18{bottom:462.145200pt;}
.y246{bottom:462.544133pt;}
.y231{bottom:462.554800pt;}
.y2a1{bottom:462.938667pt;}
.y10f{bottom:463.710000pt;}
.yea{bottom:464.906933pt;}
.y6f{bottom:467.053600pt;}
.y19c{bottom:470.064533pt;}
.y36{bottom:471.625467pt;}
.yb8{bottom:472.837333pt;}
.y26e{bottom:473.507067pt;}
.y200{bottom:474.968933pt;}
.y177{bottom:476.290267pt;}
.y54{bottom:478.413333pt;}
.y24{bottom:478.560000pt;}
.y2a0{bottom:480.538667pt;}
.y218{bottom:482.517467pt;}
.y157{bottom:482.553200pt;}
.y195{bottom:482.558533pt;}
.y1bc{bottom:482.629333pt;}
.yd9{bottom:483.318667pt;}
.y17{bottom:483.473200pt;}
.y245{bottom:483.872133pt;}
.y230{bottom:483.882800pt;}
.y1db{bottom:483.893467pt;}
.y10e{bottom:485.043200pt;}
.ye9{bottom:486.234933pt;}
.y6e{bottom:488.653600pt;}
.y84{bottom:489.825733pt;}
.y19b{bottom:490.064533pt;}
.y26d{bottom:494.840400pt;}
.y29f{bottom:498.138667pt;}
.y53{bottom:500.013333pt;}
.yb7{bottom:501.997333pt;}
.y35{bottom:502.164000pt;}
.y129{bottom:503.384267pt;}
.y217{bottom:503.850800pt;}
.y1ff{bottom:503.861333pt;}
.y156{bottom:503.881200pt;}
.y194{bottom:503.886533pt;}
.y1bb{bottom:503.957333pt;}
.y16{bottom:504.817200pt;}
.yd8{bottom:504.918667pt;}
.y244{bottom:505.200133pt;}
.y22f{bottom:505.210800pt;}
.y1da{bottom:505.221467pt;}
.y10d{bottom:506.371200pt;}
.ye8{bottom:507.562933pt;}
.y83{bottom:511.425733pt;}
.y6d{bottom:517.812800pt;}
.y52{bottom:521.613333pt;}
.yb6{bottom:522.738667pt;}
.y216{bottom:525.184133pt;}
.y1fe{bottom:525.194667pt;}
.y155{bottom:525.209200pt;}
.y193{bottom:525.214533pt;}
.y1ba{bottom:525.285333pt;}
.y15{bottom:526.145200pt;}
.yd7{bottom:526.518667pt;}
.y243{bottom:526.528133pt;}
.y22e{bottom:526.538800pt;}
.y1d9{bottom:526.549467pt;}
.y26c{bottom:527.512400pt;}
.y34{bottom:532.702533pt;}
.y176{bottom:532.784267pt;}
.y82{bottom:533.020400pt;}
.y51{bottom:543.213333pt;}
.yb5{bottom:544.338667pt;}
.y215{bottom:546.517467pt;}
.y1fd{bottom:546.528000pt;}
.y154{bottom:546.537200pt;}
.y192{bottom:546.542533pt;}
.y1b9{bottom:546.613333pt;}
.y6c{bottom:546.971867pt;}
.y14{bottom:547.473200pt;}
.y242{bottom:547.856133pt;}
.y22d{bottom:547.866800pt;}
.y1d8{bottom:547.877467pt;}
.yd6{bottom:548.118667pt;}
.y26b{bottom:548.845733pt;}
.y175{bottom:554.112267pt;}
.y81{bottom:554.620400pt;}
.y29e{bottom:556.541333pt;}
.y33{bottom:563.241067pt;}
.y256{bottom:563.284000pt;}
.y50{bottom:564.813333pt;}
.yb4{bottom:565.938667pt;}
.y128{bottom:567.421467pt;}
.y214{bottom:567.850800pt;}
.y1fc{bottom:567.861333pt;}
.y153{bottom:567.865200pt;}
.y191{bottom:567.870533pt;}
.y1b8{bottom:567.941333pt;}
.y13{bottom:568.806533pt;}
.y241{bottom:569.184133pt;}
.y22c{bottom:569.194800pt;}
.y1d7{bottom:569.205467pt;}
.ye7{bottom:569.678667pt;}
.yd5{bottom:569.718667pt;}
.y26a{bottom:570.179067pt;}
.y29d{bottom:574.141333pt;}
.y174{bottom:575.440267pt;}
.y6b{bottom:576.131067pt;}
.y10c{bottom:576.384267pt;}
.y255{bottom:584.617333pt;}
.y4f{bottom:586.413333pt;}
.y80{bottom:587.564667pt;}
.y127{bottom:588.749467pt;}
.y152{bottom:589.193200pt;}
.y1fb{bottom:589.194667pt;}
.y190{bottom:589.198533pt;}
.y1b7{bottom:589.269333pt;}
.y12{bottom:590.139867pt;}
.y22b{bottom:590.522800pt;}
.y1d6{bottom:590.533467pt;}
.yd4{bottom:591.318667pt;}
.y269{bottom:591.512400pt;}
.y29c{bottom:591.741333pt;}
.y32{bottom:593.779600pt;}
.yb3{bottom:595.097333pt;}
.y213{bottom:596.743200pt;}
.y173{bottom:596.768267pt;}
.ye3{bottom:596.887467pt;}
.y6a{bottom:597.731200pt;}
.y240{bottom:598.076533pt;}
.ye6{bottom:602.198667pt;}
.y10b{bottom:605.328267pt;}
.y254{bottom:605.945333pt;}
.y4e{bottom:608.013333pt;}
.y7f{bottom:609.164667pt;}
.y29b{bottom:609.341333pt;}
.y126{bottom:610.077467pt;}
.y151{bottom:610.521200pt;}
.y18f{bottom:610.526533pt;}
.y1fa{bottom:610.528000pt;}
.y1b6{bottom:610.597333pt;}
.y11{bottom:611.483867pt;}
.y22a{bottom:611.850800pt;}
.y1d5{bottom:611.861467pt;}
.y268{bottom:612.845733pt;}
.yd3{bottom:612.918667pt;}
.yb2{bottom:616.697333pt;}
.y23f{bottom:618.076533pt;}
.y172{bottom:618.096267pt;}
.y27e{bottom:624.184267pt;}
.y212{bottom:624.302267pt;}
.y31{bottom:624.318133pt;}
.y69{bottom:626.890400pt;}
.y29a{bottom:626.941333pt;}
.y7e{bottom:630.764933pt;}
.y125{bottom:631.405467pt;}
.y150{bottom:631.849200pt;}
.y18e{bottom:631.854533pt;}
.y1f9{bottom:631.861333pt;}
.y1b5{bottom:631.925333pt;}
.y10{bottom:632.811867pt;}
.y1d4{bottom:633.189467pt;}
.y267{bottom:634.179067pt;}
.y4d{bottom:637.437333pt;}
.yb1{bottom:638.297333pt;}
.y40{bottom:639.344000pt;}
.y171{bottom:639.424267pt;}
.y229{bottom:640.743200pt;}
.yd2{bottom:642.936000pt;}
.y299{bottom:644.541333pt;}
.y253{bottom:645.283867pt;}
.ye2{bottom:645.346133pt;}
.y27d{bottom:645.517600pt;}
.y68{bottom:648.490400pt;}
.y7d{bottom:652.364933pt;}
.y124{bottom:652.733467pt;}
.y18d{bottom:653.182533pt;}
.y1f8{bottom:653.194667pt;}
.y1b4{bottom:653.253333pt;}
.yf{bottom:654.139867pt;}
.y1d3{bottom:654.517467pt;}
.y30{bottom:654.851200pt;}
.y4c{bottom:659.037333pt;}
.yb0{bottom:659.897333pt;}
.y14f{bottom:660.741600pt;}
.y170{bottom:660.752267pt;}
.yd1{bottom:664.536000pt;}
.y266{bottom:666.850933pt;}
.y7c{bottom:673.964933pt;}
.y123{bottom:674.082800pt;}
.y1f7{bottom:674.528000pt;}
.y1b3{bottom:674.581333pt;}
.y10a{bottom:675.416133pt;}
.ye{bottom:675.483867pt;}
.y67{bottom:677.649600pt;}
.y252{bottom:677.955733pt;}
.y4b{bottom:680.637333pt;}
.yaf{bottom:681.497333pt;}
.y18c{bottom:682.074933pt;}
.y16f{bottom:682.080267pt;}
.y1d2{bottom:683.409867pt;}
.y2f{bottom:685.395200pt;}
.yd0{bottom:686.136000pt;}
.y3f{bottom:687.802667pt;}
.y265{bottom:688.184267pt;}
.y23{bottom:691.892800pt;}
.y76{bottom:693.010400pt;}
.y122{bottom:695.410800pt;}
.y7b{bottom:695.565067pt;}
.y1f6{bottom:695.861333pt;}
.y1b2{bottom:695.909333pt;}
.y109{bottom:696.744133pt;}
.yd{bottom:696.811867pt;}
.y228{bottom:697.237333pt;}
.y3{bottom:701.949333pt;}
.y4a{bottom:702.237333pt;}
.yae{bottom:703.097333pt;}
.y16e{bottom:703.408267pt;}
.y66{bottom:706.875600pt;}
.ycf{bottom:707.736000pt;}
.y264{bottom:709.517600pt;}
.yfe{bottom:709.626667pt;}
.y251{bottom:710.627600pt;}
.y22{bottom:711.092800pt;}
.y2e{bottom:715.933733pt;}
.y121{bottom:716.738800pt;}
.y7a{bottom:717.165200pt;}
.y1f5{bottom:717.194667pt;}
.y14e{bottom:717.235733pt;}
.y1b1{bottom:717.237333pt;}
.y108{bottom:718.072133pt;}
.yc{bottom:718.139867pt;}
.y227{bottom:718.565333pt;}
.y49{bottom:723.837333pt;}
.y65{bottom:728.475600pt;}
.yce{bottom:729.336000pt;}
.y263{bottom:730.850933pt;}
.yad{bottom:732.256000pt;}
.yfd{bottom:732.298667pt;}
.y16d{bottom:732.300800pt;}
.y120{bottom:738.066800pt;}
.y1f4{bottom:738.528000pt;}
.y18b{bottom:738.553067pt;}
.y14d{bottom:738.563733pt;}
.y1b0{bottom:738.565333pt;}
.y79{bottom:738.765333pt;}
.y107{bottom:739.400133pt;}
.yb{bottom:739.473200pt;}
.y1d1{bottom:739.893333pt;}
.y250{bottom:743.299600pt;}
.y2{bottom:743.549333pt;}
.y48{bottom:745.437333pt;}
.y2d{bottom:746.477733pt;}
.y21{bottom:749.492533pt;}
.y64{bottom:750.075600pt;}
.y262{bottom:752.184267pt;}
.yac{bottom:753.856000pt;}
.yfc{bottom:754.970667pt;}
.y298{bottom:756.320133pt;}
.ycd{bottom:758.494667pt;}
.y11f{bottom:759.421467pt;}
.y1f3{bottom:759.861333pt;}
.y18a{bottom:759.881067pt;}
.y14c{bottom:759.891733pt;}
.y1af{bottom:759.893333pt;}
.y78{bottom:760.365333pt;}
.y106{bottom:760.749467pt;}
.ya{bottom:760.801200pt;}
.y1d0{bottom:761.221333pt;}
.y20{bottom:768.692533pt;}
.y261{bottom:773.517600pt;}
.yab{bottom:775.456000pt;}
.y24f{bottom:775.971467pt;}
.yfb{bottom:777.642667pt;}
.y297{bottom:777.648133pt;}
.y63{bottom:779.235067pt;}
.ycc{bottom:780.094667pt;}
.y11e{bottom:780.749467pt;}
.y1f2{bottom:781.194667pt;}
.y189{bottom:781.209067pt;}
.y14b{bottom:781.219733pt;}
.y1ae{bottom:781.221333pt;}
.y77{bottom:781.965333pt;}
.y105{bottom:782.077467pt;}
.y1cf{bottom:782.549333pt;}
.y1{bottom:783.256000pt;}
.y9{bottom:784.032133pt;}
.y27c{bottom:784.856267pt;}
.y16c{bottom:788.798800pt;}
.y47{bottom:791.096000pt;}
.yaa{bottom:797.056000pt;}
.y296{bottom:798.976133pt;}
.yfa{bottom:800.314667pt;}
.y62{bottom:800.835067pt;}
.ycb{bottom:801.694667pt;}
.y11d{bottom:802.077467pt;}
.y1f1{bottom:802.528000pt;}
.y188{bottom:802.537067pt;}
.y14a{bottom:802.547733pt;}
.y1ad{bottom:802.549333pt;}
.y104{bottom:803.405467pt;}
.y1ce{bottom:803.877333pt;}
.y260{bottom:806.189600pt;}
.y24e{bottom:808.648800pt;}
.y16b{bottom:810.126800pt;}
.y3d{bottom:811.480000pt;}
.y46{bottom:813.768000pt;}
.y295{bottom:820.304133pt;}
.y61{bottom:822.435067pt;}
.ya3{bottom:822.986533pt;}
.yf9{bottom:822.986667pt;}
.yca{bottom:823.294667pt;}
.y11c{bottom:823.405467pt;}
.y1f0{bottom:823.861333pt;}
.y187{bottom:823.865067pt;}
.y149{bottom:823.875733pt;}
.y1ac{bottom:823.877333pt;}
.y103{bottom:824.733467pt;}
.y1cd{bottom:825.205333pt;}
.y25f{bottom:827.522933pt;}
.y24d{bottom:829.976800pt;}
.ya9{bottom:829.994667pt;}
.y16a{bottom:831.454800pt;}
.y45{bottom:836.440000pt;}
.y294{bottom:841.632133pt;}
.y60{bottom:844.035067pt;}
.y11b{bottom:844.733467pt;}
.yc9{bottom:844.894667pt;}
.y1ef{bottom:845.194667pt;}
.y148{bottom:845.203733pt;}
.y1ab{bottom:845.205333pt;}
.ya2{bottom:845.658533pt;}
.yf8{bottom:845.658667pt;}
.y102{bottom:846.072133pt;}
.y1cc{bottom:846.533333pt;}
.y25e{bottom:848.856267pt;}
.y139{bottom:851.427333pt;}
.y28e{bottom:851.507600pt;}
.ya8{bottom:851.594667pt;}
.y169{bottom:852.782800pt;}
.y44{bottom:859.112000pt;}
.y41{bottom:859.688133pt;}
.y8{bottom:861.870800pt;}
.y293{bottom:862.960133pt;}
.y11a{bottom:866.066800pt;}
.y1ee{bottom:866.528000pt;}
.y147{bottom:866.531733pt;}
.y1aa{bottom:866.533333pt;}
.y101{bottom:867.400133pt;}
.y1cb{bottom:867.861333pt;}
.ya1{bottom:868.330533pt;}
.yf7{bottom:868.330667pt;}
.y25d{bottom:870.189600pt;}
.y28d{bottom:872.835600pt;}
.y5f{bottom:873.194400pt;}
.ya7{bottom:873.194667pt;}
.y25b{bottom:873.706667pt;}
.yc8{bottom:874.053333pt;}
.y168{bottom:874.110800pt;}
.y7{bottom:880.212133pt;}
.y43{bottom:882.072000pt;}
.y119{bottom:887.394800pt;}
.y146{bottom:887.859733pt;}
.y1a9{bottom:887.861333pt;}
.y100{bottom:888.728133pt;}
.ya0{bottom:891.002533pt;}
.yf6{bottom:891.002667pt;}
.y25c{bottom:891.522933pt;}
.y28c{bottom:894.163600pt;}
.y5e{bottom:894.794400pt;}
.ya6{bottom:894.794667pt;}
.y25a{bottom:895.034667pt;}
.y167{bottom:895.438800pt;}
.y292{bottom:895.632133pt;}
.yc7{bottom:895.653333pt;}
.y1ca{bottom:896.753733pt;}
.y6{bottom:899.412133pt;}
.y138{bottom:899.907333pt;}
.y42{bottom:905.032000pt;}
.y9e{bottom:913.674533pt;}
.yf5{bottom:913.674667pt;}
.y28b{bottom:915.491600pt;}
.y257{bottom:916.352000pt;}
.y259{bottom:916.362667pt;}
.y5d{bottom:916.394533pt;}
.ya5{bottom:916.394667pt;}
.y145{bottom:916.752133pt;}
.y1a8{bottom:916.753733pt;}
.y166{bottom:916.766800pt;}
.y291{bottom:916.960133pt;}
.yc6{bottom:917.253333pt;}
.y5{bottom:918.612133pt;}
.y9f{bottom:936.346667pt;}
.y28a{bottom:936.819600pt;}
.y4{bottom:937.632000pt;}
.y258{bottom:937.690667pt;}
.y5c{bottom:937.994667pt;}
.y290{bottom:938.288133pt;}
.yc5{bottom:938.853333pt;}
.y288{bottom:950.672000pt;}
.yff{bottom:952.738667pt;}
.y289{bottom:959.165733pt;}
.y5b{bottom:959.594667pt;}
.y28f{bottom:959.616133pt;}
.yc4{bottom:960.453333pt;}
.y186{bottom:961.523467pt;}
.y1ed{bottom:961.524133pt;}
.y185{bottom:993.923467pt;}
.y1ec{bottom:993.924133pt;}
.y1f{bottom:1057.018800pt;}
.h1b{height:21.452800pt;}
.h16{height:23.221333pt;}
.h19{height:24.134400pt;}
.h1a{height:26.090667pt;}
.h11{height:35.520000pt;}
.h9{height:35.568000pt;}
.h1c{height:35.754667pt;}
.h7{height:40.224000pt;}
.h23{height:43.472000pt;}
.h6{height:46.976000pt;}
.h8{height:47.360000pt;}
.ha{height:47.381867pt;}
.hf{height:47.382400pt;}
.hb{height:47.424000pt;}
.he{height:47.445333pt;}
.hd{height:47.445867pt;}
.hc{height:47.467733pt;}
.h14{height:49.920000pt;}
.h20{height:51.050667pt;}
.h15{height:51.200000pt;}
.h5{height:53.632000pt;}
.h4{height:53.632533pt;}
.h18{height:53.652800pt;}
.h17{height:53.653333pt;}
.h1e{height:67.840000pt;}
.h21{height:74.880000pt;}
.h1d{height:76.320000pt;}
.h22{height:84.800000pt;}
.h3{height:99.840000pt;}
.h2{height:105.600000pt;}
.h10{height:114.999040pt;}
.h12{height:152.640000pt;}
.h1f{height:240.044480pt;}
.h13{height:251.937920pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:793.679980pt;}
.w3{width:793.680000pt;}
.w4{width:793.681313pt;}
.w2{width:793.681333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:54.190513pt;}
.x1{left:57.298667pt;}
.x2{left:58.831733pt;}
.x8{left:70.184400pt;}
.x13{left:75.569980pt;}
.x16{left:76.461600pt;}
.x3{left:77.732133pt;}
.x9{left:82.206267pt;}
.xc{left:83.149333pt;}
.xe{left:90.563600pt;}
.x6{left:103.725333pt;}
.xa{left:106.272933pt;}
.x17{left:107.339200pt;}
.x10{left:110.920267pt;}
.x12{left:117.672800pt;}
.x4{left:123.057713pt;}
.xb{left:141.957180pt;}
.xf{left:170.063600pt;}
.x11{left:404.833067pt;}
.x5{left:416.142800pt;}
.x14{left:423.727313pt;}
.xd{left:723.895313pt;}
.x7{left:730.483200pt;}
}




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