
    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_de16d9930208ea7c0b503926.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_167bf58b77c1ee21916b4d41.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_6636d2a3a0e449f9d8b36124.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_1308de8aff119197e4214864.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_b0e0331812d5e0c2ed11401c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_d16b8533aef0e23d582a5b69.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_d06a086992006701059570c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_042ccaf219f3bf69a905001a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;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_3f6256a847c780bef7c37698.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_dae1469012cdd0e98e3783ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_702beee354b14158b4bfa604.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910000;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_face068ed712cfba378d33cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958000;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_9be3e96c7735b5dc4e1b2717.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_d0106e473293729e82067eca.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.200885;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:fff;src:url('chunks/assets/font_53e72aa090fce2994dd0c163.woff2')format("woff");}.fff{font-family:fff;line-height:1.384000;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:ff10;src:url('chunks/assets/font_29019720b2e29ffb2ff57265.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.268000;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:ff11;src:url('chunks/assets/font_9be3e96c7735b5dc4e1b2717.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;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:ff12;src:url('chunks/assets/font_b0e0331812d5e0c2ed11401c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.203000;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:ff13;src:url('chunks/assets/font_52b4cb5cf84bd6d0e915fc75.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.894000;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);}
.v4{vertical-align:-18.359985px;}
.v3{vertical-align:-17.339996px;}
.v5{vertical-align:-10.817982px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.799973px;}
.v2{vertical-align:18.179979px;}
.v1{vertical-align:20.399963px;}
.ls35{letter-spacing:-3.906000px;}
.ls85{letter-spacing:-3.150000px;}
.ls72{letter-spacing:-2.385000px;}
.ls81{letter-spacing:-1.305000px;}
.ls30{letter-spacing:-1.026000px;}
.lse{letter-spacing:-0.960000px;}
.ls37{letter-spacing:-0.864000px;}
.ls75{letter-spacing:-0.720000px;}
.ls44{letter-spacing:-0.702000px;}
.ls86{letter-spacing:-0.675000px;}
.ls77{letter-spacing:-0.585000px;}
.ls7a{letter-spacing:-0.540000px;}
.ls7f{letter-spacing:-0.495000px;}
.ls34{letter-spacing:-0.486000px;}
.ls78{letter-spacing:-0.450000px;}
.ls88{letter-spacing:-0.432000px;}
.ls3b{letter-spacing:-0.421200px;}
.ls73{letter-spacing:-0.405000px;}
.ls6e{letter-spacing:-0.386100px;}
.ls82{letter-spacing:-0.315000px;}
.ls6f{letter-spacing:-0.280800px;}
.ls43{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.255000px;}
.ls74{letter-spacing:-0.225000px;}
.ls24{letter-spacing:-0.216000px;}
.ls3a{letter-spacing:-0.210600px;}
.ls70{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.162000px;}
.ls17{letter-spacing:-0.153000px;}
.ls25{letter-spacing:-0.140400px;}
.ls59{letter-spacing:-0.120000px;}
.ls10{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.105300px;}
.ls76{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.054000px;}
.ls15{letter-spacing:-0.051000px;}
.ls79{letter-spacing:-0.045000px;}
.lsd{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.019832px;}
.ls7d{letter-spacing:0.045000px;}
.ls64{letter-spacing:0.053999px;}
.ls11{letter-spacing:0.054000px;}
.ls63{letter-spacing:0.054001px;}
.ls5f{letter-spacing:0.070200px;}
.ls68{letter-spacing:0.081027px;}
.ls66{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.105300px;}
.ls50{letter-spacing:0.107998px;}
.ls1e{letter-spacing:0.108000px;}
.ls65{letter-spacing:0.135000px;}
.ls14{letter-spacing:0.140400px;}
.ls2d{letter-spacing:0.159569px;}
.ls2c{letter-spacing:0.160209px;}
.ls12{letter-spacing:0.162000px;}
.ls45{letter-spacing:0.210600px;}
.ls9{letter-spacing:0.216000px;}
.ls7c{letter-spacing:0.225000px;}
.ls57{letter-spacing:0.240000px;}
.ls46{letter-spacing:0.245700px;}
.ls49{letter-spacing:0.264601px;}
.ls1d{letter-spacing:0.270000px;}
.ls2a{letter-spacing:0.280784px;}
.ls22{letter-spacing:0.280800px;}
.ls38{letter-spacing:0.297000px;}
.ls5e{letter-spacing:0.300000px;}
.ls6a{letter-spacing:0.315000px;}
.ls41{letter-spacing:0.315900px;}
.ls51{letter-spacing:0.323999px;}
.ls1c{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.350999px;}
.ls4{letter-spacing:0.351000px;}
.ls4c{letter-spacing:0.356956px;}
.ls1a{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.373134px;}
.ls1f{letter-spacing:0.378000px;}
.ls3c{letter-spacing:0.378001px;}
.ls4e{letter-spacing:0.386100px;}
.ls53{letter-spacing:0.399437px;}
.ls69{letter-spacing:0.405000px;}
.ls58{letter-spacing:0.421181px;}
.ls5c{letter-spacing:0.421200px;}
.ls19{letter-spacing:0.432000px;}
.ls6c{letter-spacing:0.450000px;}
.ls2b{letter-spacing:0.469805px;}
.ls20{letter-spacing:0.486000px;}
.ls5d{letter-spacing:0.491400px;}
.ls80{letter-spacing:0.495000px;}
.ls3f{letter-spacing:0.526500px;}
.ls8{letter-spacing:0.540000px;}
.ls83{letter-spacing:0.585000px;}
.ls4b{letter-spacing:0.593998px;}
.ls21{letter-spacing:0.594000px;}
.ls4f{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.612000px;}
.lsa{letter-spacing:0.622071px;}
.ls71{letter-spacing:0.630000px;}
.ls62{letter-spacing:0.637204px;}
.ls1b{letter-spacing:0.648000px;}
.ls52{letter-spacing:0.701999px;}
.ls2f{letter-spacing:0.702000px;}
.ls7b{letter-spacing:0.720000px;}
.ls4a{letter-spacing:0.723627px;}
.ls28{letter-spacing:0.756000px;}
.ls29{letter-spacing:0.780000px;}
.ls27{letter-spacing:0.810000px;}
.ls7e{letter-spacing:0.855000px;}
.ls47{letter-spacing:0.864000px;}
.ls3d{letter-spacing:0.900000px;}
.ls32{letter-spacing:0.918000px;}
.ls6d{letter-spacing:0.944983px;}
.ls36{letter-spacing:0.960000px;}
.lsb{letter-spacing:0.969000px;}
.ls31{letter-spacing:0.972000px;}
.ls67{letter-spacing:0.990000px;}
.ls6b{letter-spacing:1.035000px;}
.ls26{letter-spacing:1.080000px;}
.ls40{letter-spacing:1.134000px;}
.ls56{letter-spacing:1.188000px;}
.ls61{letter-spacing:1.242000px;}
.ls5b{letter-spacing:1.296000px;}
.ls5a{letter-spacing:1.320000px;}
.ls48{letter-spacing:1.350000px;}
.ls55{letter-spacing:1.380000px;}
.ls3e{letter-spacing:1.404000px;}
.ls87{letter-spacing:1.512000px;}
.lsf{letter-spacing:1.566000px;}
.ls2e{letter-spacing:1.620000px;}
.ls42{letter-spacing:1.836000px;}
.ls54{letter-spacing:2.040000px;}
.ls60{letter-spacing:2.052000px;}
.ls0{letter-spacing:2.592000px;}
.ls18{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls84{letter-spacing:4.620000px;}
.ls4d{letter-spacing:6.120000px;}
.ls33{letter-spacing:212.394003px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.067500px;}
.ws26{word-spacing:-14.700000px;}
.ws29{word-spacing:-13.596000px;}
.ws76{word-spacing:-13.500000px;}
.ws2a{word-spacing:-13.014000px;}
.ws8{word-spacing:-12.906000px;}
.ws2b{word-spacing:-12.798000px;}
.ws80{word-spacing:-12.744000px;}
.ws8a{word-spacing:-12.582000px;}
.ws46{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws4f{word-spacing:-12.474000px;}
.ws6b{word-spacing:-12.366000px;}
.ws4{word-spacing:-12.360000px;}
.ws8b{word-spacing:-12.312000px;}
.ws5{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws66{word-spacing:-12.150000px;}
.ws6c{word-spacing:-12.042000px;}
.ws5a{word-spacing:-11.502000px;}
.wsb{word-spacing:-10.812000px;}
.wsb4{word-spacing:-10.665000px;}
.wsbf{word-spacing:-10.575000px;}
.wsac{word-spacing:-10.395000px;}
.ws99{word-spacing:-10.305000px;}
.wsb0{word-spacing:-10.215000px;}
.wsc{word-spacing:-10.200000px;}
.ws98{word-spacing:-10.125000px;}
.wsc4{word-spacing:-10.080000px;}
.ws9c{word-spacing:-10.035000px;}
.ws9e{word-spacing:-9.990000px;}
.wsc8{word-spacing:-9.945000px;}
.ws9a{word-spacing:-9.855000px;}
.wsc3{word-spacing:-9.765000px;}
.ws9d{word-spacing:-9.720000px;}
.wsa9{word-spacing:-9.675000px;}
.wsa8{word-spacing:-9.630000px;}
.wsa7{word-spacing:-9.585000px;}
.wsc9{word-spacing:-9.495000px;}
.ws9b{word-spacing:-9.000000px;}
.ws6a{word-spacing:-8.494200px;}
.ws88{word-spacing:-8.459100px;}
.ws87{word-spacing:-8.388900px;}
.ws81{word-spacing:-8.353800px;}
.ws74{word-spacing:-8.318700px;}
.ws75{word-spacing:-8.283600px;}
.ws27{word-spacing:-8.248500px;}
.ws78{word-spacing:-8.213400px;}
.ws77{word-spacing:-8.178300px;}
.ws9{word-spacing:-8.108100px;}
.ws7{word-spacing:-8.073000px;}
.ws89{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws6{word-spacing:-7.967700px;}
.ws5f{word-spacing:-7.862400px;}
.ws28{word-spacing:-7.827300px;}
.ws65{word-spacing:-7.757100px;}
.ws97{word-spacing:-7.686900px;}
.ws96{word-spacing:-7.581600px;}
.ws67{word-spacing:-7.546500px;}
.wsbe{word-spacing:-7.155000px;}
.wsa{word-spacing:-6.630000px;}
.ws82{word-spacing:-6.120000px;}
.ws4a{word-spacing:-5.508000px;}
.ws10{word-spacing:-5.340000px;}
.ws50{word-spacing:-5.208000px;}
.wsc0{word-spacing:-4.620000px;}
.ws59{word-spacing:-4.284000px;}
.wscc{word-spacing:-3.960000px;}
.ws1e{word-spacing:-3.570000px;}
.wsf{word-spacing:-3.276000px;}
.ws90{word-spacing:-2.040000px;}
.ws69{word-spacing:-1.890000px;}
.ws12{word-spacing:-1.836000px;}
.ws5b{word-spacing:-1.782000px;}
.ws64{word-spacing:-1.728000px;}
.ws7b{word-spacing:-1.674000px;}
.ws35{word-spacing:-1.620000px;}
.ws21{word-spacing:-1.581000px;}
.wsa6{word-spacing:-1.575000px;}
.ws17{word-spacing:-1.566000px;}
.ws23{word-spacing:-1.530000px;}
.ws7c{word-spacing:-1.512000px;}
.ws4b{word-spacing:-1.458000px;}
.wsb8{word-spacing:-1.440000px;}
.ws16{word-spacing:-1.404000px;}
.wsb7{word-spacing:-1.395000px;}
.ws44{word-spacing:-1.386000px;}
.ws92{word-spacing:-1.380000px;}
.ws63{word-spacing:-1.350000px;}
.ws8d{word-spacing:-1.320000px;}
.ws73{word-spacing:-1.296000px;}
.ws25{word-spacing:-1.275000px;}
.ws19{word-spacing:-1.242000px;}
.ws45{word-spacing:-1.188000px;}
.ws34{word-spacing:-1.134000px;}
.ws7e{word-spacing:-1.080000px;}
.wsa0{word-spacing:-1.035000px;}
.ws86{word-spacing:-1.026000px;}
.ws1d{word-spacing:-0.969000px;}
.ws5d{word-spacing:-0.960000px;}
.ws43{word-spacing:-0.924000px;}
.ws33{word-spacing:-0.918000px;}
.ws6d{word-spacing:-0.900000px;}
.ws15{word-spacing:-0.864000px;}
.wsb3{word-spacing:-0.855000px;}
.ws39{word-spacing:-0.810000px;}
.ws47{word-spacing:-0.780000px;}
.ws4c{word-spacing:-0.756000px;}
.wsa1{word-spacing:-0.720000px;}
.ws4e{word-spacing:-0.702000px;}
.ws1b{word-spacing:-0.648000px;}
.ws85{word-spacing:-0.600000px;}
.ws13{word-spacing:-0.594000px;}
.ws40{word-spacing:-0.540000px;}
.ws70{word-spacing:-0.526500px;}
.ws3a{word-spacing:-0.486000px;}
.ws18{word-spacing:-0.432000px;}
.wsbd{word-spacing:-0.405000px;}
.ws37{word-spacing:-0.378000px;}
.ws36{word-spacing:-0.360000px;}
.ws79{word-spacing:-0.351000px;}
.ws3d{word-spacing:-0.324000px;}
.ws84{word-spacing:-0.315900px;}
.wsc1{word-spacing:-0.315000px;}
.ws8f{word-spacing:-0.300000px;}
.ws71{word-spacing:-0.280800px;}
.ws42{word-spacing:-0.270000px;}
.ws95{word-spacing:-0.240000px;}
.ws3b{word-spacing:-0.216000px;}
.ws7f{word-spacing:-0.210600px;}
.wsba{word-spacing:-0.180000px;}
.ws3f{word-spacing:-0.162000px;}
.ws1c{word-spacing:-0.140400px;}
.ws41{word-spacing:-0.108000px;}
.wsc2{word-spacing:-0.090000px;}
.ws30{word-spacing:-0.054000px;}
.wsa5{word-spacing:-0.045000px;}
.wsd{word-spacing:0.000000px;}
.wsab{word-spacing:0.045000px;}
.ws1f{word-spacing:0.051000px;}
.ws1a{word-spacing:0.054000px;}
.ws62{word-spacing:0.108000px;}
.ws8c{word-spacing:0.120000px;}
.wsb9{word-spacing:0.135000px;}
.ws22{word-spacing:0.153000px;}
.ws14{word-spacing:0.162000px;}
.ws9f{word-spacing:0.180000px;}
.ws48{word-spacing:0.216000px;}
.ws20{word-spacing:0.255000px;}
.ws57{word-spacing:0.270000px;}
.ws38{word-spacing:0.324000px;}
.wsbb{word-spacing:0.360000px;}
.ws68{word-spacing:0.378000px;}
.wsc5{word-spacing:0.405000px;}
.ws60{word-spacing:0.432000px;}
.wsc7{word-spacing:0.450000px;}
.ws4d{word-spacing:0.486000px;}
.wsaa{word-spacing:0.495000px;}
.ws24{word-spacing:0.510000px;}
.ws3e{word-spacing:0.540000px;}
.ws58{word-spacing:0.594000px;}
.ws3c{word-spacing:0.648000px;}
.ws5e{word-spacing:0.702000px;}
.ws32{word-spacing:0.756000px;}
.wsae{word-spacing:0.765000px;}
.ws7d{word-spacing:0.864000px;}
.wsc6{word-spacing:0.945000px;}
.wse{word-spacing:0.960000px;}
.ws6e{word-spacing:0.972000px;}
.ws61{word-spacing:1.026000px;}
.wsb1{word-spacing:1.035000px;}
.ws49{word-spacing:1.134000px;}
.ws5c{word-spacing:1.188000px;}
.wsce{word-spacing:1.242000px;}
.wsad{word-spacing:1.260000px;}
.wsa4{word-spacing:1.350000px;}
.ws31{word-spacing:1.404000px;}
.wsb6{word-spacing:1.440000px;}
.wsbc{word-spacing:1.530000px;}
.ws72{word-spacing:1.566000px;}
.wsb2{word-spacing:1.575000px;}
.wsa2{word-spacing:1.755000px;}
.ws94{word-spacing:1.782000px;}
.wsb5{word-spacing:1.935000px;}
.ws8e{word-spacing:1.944000px;}
.ws83{word-spacing:2.052000px;}
.wsca{word-spacing:2.115000px;}
.ws93{word-spacing:2.160000px;}
.wsa3{word-spacing:2.205000px;}
.wscd{word-spacing:2.214000px;}
.ws6f{word-spacing:2.268000px;}
.wsaf{word-spacing:2.340000px;}
.wscb{word-spacing:2.592000px;}
.ws11{word-spacing:2.700000px;}
.ws7a{word-spacing:3.402000px;}
.ws91{word-spacing:3.834000px;}
.ws2f{word-spacing:71.946005px;}
.ws2e{word-spacing:92.106005px;}
.ws2d{word-spacing:112.266005px;}
.ws2c{word-spacing:124.403995px;}
.ws56{word-spacing:147.924006px;}
.ws54{word-spacing:149.352003px;}
.ws53{word-spacing:170.352003px;}
.ws52{word-spacing:280.854009px;}
.ws55{word-spacing:309.456009px;}
.ws51{word-spacing:636.215971px;}
._2c{margin-left:-13.365000px;}
._2d{margin-left:-11.565000px;}
._1{margin-left:-9.360000px;}
._25{margin-left:-7.847378px;}
._17{margin-left:-6.763904px;}
._5{margin-left:-5.495367px;}
._3{margin-left:-4.472972px;}
._2{margin-left:-3.276000px;}
._0{margin-left:-1.776011px;}
._6{width:1.168855px;}
._7{width:2.237672px;}
._4{width:3.638995px;}
._15{width:5.563197px;}
._28{width:7.290000px;}
._29{width:9.090000px;}
._2b{width:11.087999px;}
._27{width:12.960000px;}
._16{width:15.281992px;}
._14{width:16.403365px;}
._2a{width:17.730002px;}
._a{width:38.395139px;}
._b{width:39.618007px;}
._c{width:42.545995px;}
._8{width:47.828976px;}
._24{width:49.077862px;}
._26{width:50.494719px;}
._9{width:91.098005px;}
._13{width:133.937995px;}
._22{width:156.282008px;}
._e{width:165.353995px;}
._21{width:176.442008px;}
._d{width:183.456005px;}
._11{width:185.513995px;}
._1e{width:196.602008px;}
._f{width:209.537996px;}
._20{width:210.692930px;}
._12{width:229.697996px;}
._1f{width:233.582977px;}
._10{width:246.456005px;}
._23{width:253.742978px;}
._1b{width:273.902978px;}
._1c{width:300.006008px;}
._19{width:312.395985px;}
._1d{width:321.258008px;}
._18{width:333.395985px;}
._1a{width:364.140008px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y2d{bottom:68.313899px;}
.y1a1{bottom:68.552997px;}
.y163{bottom:68.554498px;}
.yc7{bottom:68.557499px;}
.y1d9{bottom:68.568005px;}
.y21e{bottom:68.767512px;}
.y118{bottom:69.570311px;}
.yf1{bottom:71.800801px;}
.y21d{bottom:81.513762px;}
.y9c{bottom:82.282807px;}
.y2c{bottom:83.307899px;}
.y1a0{bottom:83.551496px;}
.y162{bottom:83.552997px;}
.yc6{bottom:83.555999px;}
.y1d8{bottom:83.566504px;}
.y117{bottom:84.568811px;}
.y8f{bottom:86.052302px;}
.yf0{bottom:86.799300px;}
.ydb{bottom:89.811307px;}
.y21c{bottom:94.260012px;}
.y9b{bottom:97.281307px;}
.y2b{bottom:98.307899px;}
.y161{bottom:98.551496px;}
.yc5{bottom:98.554498px;}
.y1d7{bottom:98.565004px;}
.y116{bottom:99.567310px;}
.y8e{bottom:101.050801px;}
.yef{bottom:101.797799px;}
.yda{bottom:104.809806px;}
.y65{bottom:106.333842px;}
.y21b{bottom:107.006262px;}
.y9a{bottom:112.279806px;}
.y2a{bottom:113.307899px;}
.y19f{bottom:113.549995px;}
.yc4{bottom:113.552997px;}
.y1d6{bottom:113.563503px;}
.y115{bottom:114.565809px;}
.y8d{bottom:116.049300px;}
.yee{bottom:116.796298px;}
.y21a{bottom:119.752512px;}
.yd9{bottom:119.808305px;}
.y64{bottom:121.332341px;}
.y99{bottom:127.278305px;}
.yc3{bottom:128.551496px;}
.y1d5{bottom:128.562002px;}
.y114{bottom:129.564308px;}
.y8c{bottom:131.047799px;}
.yed{bottom:131.794798px;}
.y219{bottom:132.498762px;}
.y29{bottom:132.636898px;}
.yd8{bottom:134.806804px;}
.y63{bottom:136.330840px;}
.y28{bottom:143.307899px;}
.yc2{bottom:143.549995px;}
.y160{bottom:143.557499px;}
.y1d4{bottom:143.560501px;}
.y19e{bottom:143.679150px;}
.y113{bottom:144.562807px;}
.y218{bottom:145.245012px;}
.y8b{bottom:146.046298px;}
.yec{bottom:146.794798px;}
.yd7{bottom:149.805303px;}
.y62{bottom:151.329339px;}
.y217{bottom:157.991263px;}
.yc1{bottom:158.549995px;}
.y15f{bottom:158.555999px;}
.y1d3{bottom:158.559000px;}
.y19d{bottom:158.677649px;}
.y112{bottom:159.561307px;}
.y8a{bottom:161.044798px;}
.yeb{bottom:161.797799px;}
.y27{bottom:162.636898px;}
.yd6{bottom:164.803802px;}
.y61{bottom:166.327838px;}
.y216{bottom:170.737513px;}
.y15e{bottom:173.554498px;}
.y1d2{bottom:173.557499px;}
.y19c{bottom:173.676149px;}
.y111{bottom:174.559806px;}
.y89{bottom:176.043297px;}
.yea{bottom:176.796298px;}
.yb1{bottom:178.656307px;}
.yd5{bottom:179.802302px;}
.y60{bottom:181.326338px;}
.y215{bottom:183.483763px;}
.yc0{bottom:185.814331px;}
.y15d{bottom:188.552997px;}
.y1d1{bottom:188.555999px;}
.y19b{bottom:188.674648px;}
.y110{bottom:189.558305px;}
.y88{bottom:191.043297px;}
.ye9{bottom:191.794798px;}
.yb0{bottom:193.654806px;}
.yd4{bottom:194.800801px;}
.y214{bottom:196.230013px;}
.y5f{bottom:196.324837px;}
.y26{bottom:197.190314px;}
.ybf{bottom:200.812830px;}
.y15c{bottom:203.551496px;}
.y1d0{bottom:203.554498px;}
.y19a{bottom:203.673147px;}
.y10f{bottom:204.556804px;}
.ye8{bottom:206.793297px;}
.yaf{bottom:208.653305px;}
.y213{bottom:208.976263px;}
.yd3{bottom:209.799300px;}
.y5e{bottom:211.323336px;}
.y25{bottom:212.188813px;}
.ybe{bottom:215.811329px;}
.y1cf{bottom:218.552997px;}
.y15b{bottom:218.554498px;}
.y199{bottom:218.682152px;}
.y10e{bottom:219.555303px;}
.y212{bottom:221.722513px;}
.y87{bottom:224.044798px;}
.yd2{bottom:224.797799px;}
.y5d{bottom:226.321835px;}
.y24{bottom:227.187313px;}
.ybd{bottom:230.809829px;}
.y1ce{bottom:233.551496px;}
.y15a{bottom:233.552997px;}
.y198{bottom:233.680651px;}
.y211{bottom:234.468763px;}
.y10d{bottom:234.553802px;}
.yae{bottom:238.818303px;}
.y86{bottom:239.044798px;}
.yd1{bottom:239.796298px;}
.y5c{bottom:241.320334px;}
.y23{bottom:242.185812px;}
.ybc{bottom:245.808328px;}
.y210{bottom:247.215013px;}
.y159{bottom:248.551496px;}
.y197{bottom:248.679150px;}
.y10c{bottom:249.552302px;}
.y85{bottom:254.044798px;}
.yd0{bottom:254.794798px;}
.yad{bottom:256.258803px;}
.y5b{bottom:256.318833px;}
.y22{bottom:257.187313px;}
.y20f{bottom:259.961263px;}
.ybb{bottom:260.806827px;}
.yf9{bottom:262.684943px;}
.y1cd{bottom:263.549995px;}
.y158{bottom:263.551496px;}
.y196{bottom:263.677649px;}
.y10b{bottom:264.550801px;}
.y84{bottom:269.068833px;}
.ycf{bottom:269.793297px;}
.y5a{bottom:271.317333px;}
.y21{bottom:272.185812px;}
.y20e{bottom:272.707514px;}
.yac{bottom:273.699303px;}
.yba{bottom:275.805326px;}
.yf8{bottom:277.683442px;}
.y157{bottom:278.555999px;}
.y195{bottom:278.676149px;}
.y10a{bottom:279.549300px;}
.y83{bottom:284.067333px;}
.y20d{bottom:285.453764px;}
.y59{bottom:286.315832px;}
.y20{bottom:287.188813px;}
.yb9{bottom:290.803825px;}
.yab{bottom:291.139803px;}
.yf7{bottom:292.681941px;}
.y156{bottom:293.554498px;}
.y1cc{bottom:293.587650px;}
.y194{bottom:293.674648px;}
.y109{bottom:294.547799px;}
.y20c{bottom:298.200014px;}
.y82{bottom:299.065832px;}
.y58{bottom:301.314331px;}
.y1f{bottom:302.187313px;}
.yb8{bottom:305.802325px;}
.yf6{bottom:307.680441px;}
.y155{bottom:308.552997px;}
.yaa{bottom:308.580303px;}
.y1cb{bottom:308.586149px;}
.y193{bottom:308.673147px;}
.y108{bottom:309.546298px;}
.y20b{bottom:310.946264px;}
.y81{bottom:314.064331px;}
.y57{bottom:316.312830px;}
.y1e{bottom:317.185812px;}
.yb7{bottom:320.800824px;}
.yf5{bottom:322.683442px;}
.y154{bottom:323.551496px;}
.y1ca{bottom:323.589151px;}
.y192{bottom:323.671646px;}
.y20a{bottom:323.692514px;}
.y107{bottom:324.544798px;}
.ya9{bottom:326.020804px;}
.y252{bottom:328.306827px;}
.y80{bottom:329.062830px;}
.y56{bottom:331.311329px;}
.y1d{bottom:332.185812px;}
.ye7{bottom:333.375441px;}
.yb6{bottom:335.799323px;}
.y209{bottom:336.438764px;}
.yf4{bottom:337.681941px;}
.y153{bottom:338.580035px;}
.y1c9{bottom:338.587650px;}
.y191{bottom:338.671646px;}
.y106{bottom:339.546298px;}
.y251{bottom:343.305326px;}
.ya8{bottom:343.461304px;}
.y7f{bottom:344.061329px;}
.y55{bottom:346.309829px;}
.y1c{bottom:347.229313px;}
.ye6{bottom:348.373941px;}
.y208{bottom:349.185014px;}
.yb5{bottom:350.797822px;}
.yf3{bottom:352.680441px;}
.y152{bottom:353.578534px;}
.y1c8{bottom:353.586149px;}
.y105{bottom:354.544798px;}
.y250{bottom:358.303825px;}
.y7e{bottom:359.059829px;}
.ya7{bottom:360.901804px;}
.y54{bottom:361.308328px;}
.y207{bottom:361.931264px;}
.y1b{bottom:362.227812px;}
.ye5{bottom:363.372440px;}
.yb4{bottom:365.796321px;}
.yf2{bottom:367.678940px;}
.y151{bottom:368.577033px;}
.y1c7{bottom:368.584648px;}
.y190{bottom:368.808328px;}
.y104{bottom:369.546321px;}
.y24f{bottom:373.302325px;}
.y7d{bottom:374.058328px;}
.y206{bottom:374.677514px;}
.y53{bottom:376.306827px;}
.y1a{bottom:377.226311px;}
.ya6{bottom:378.342304px;}
.ye4{bottom:378.370939px;}
.yb3{bottom:380.794821px;}
.y150{bottom:383.575532px;}
.y18f{bottom:383.806827px;}
.y103{bottom:384.544821px;}
.y205{bottom:387.423765px;}
.y24e{bottom:388.300824px;}
.y7c{bottom:389.056827px;}
.y52{bottom:391.305326px;}
.ye3{bottom:393.369438px;}
.ya4{bottom:395.782804px;}
.yb2{bottom:395.793320px;}
.y14f{bottom:398.574031px;}
.y1c6{bottom:398.623963px;}
.y18e{bottom:398.805326px;}
.y102{bottom:399.543320px;}
.y204{bottom:400.170015px;}
.y24d{bottom:403.299323px;}
.y7b{bottom:404.055326px;}
.y51{bottom:406.303825px;}
.ye2{bottom:408.367937px;}
.y203{bottom:412.916265px;}
.ya5{bottom:413.223304px;}
.y14e{bottom:413.572530px;}
.y1c5{bottom:413.622463px;}
.y18d{bottom:413.803825px;}
.y24c{bottom:418.297822px;}
.y7a{bottom:419.053825px;}
.y50{bottom:421.302325px;}
.ye1{bottom:423.366437px;}
.y19{bottom:424.476311px;}
.y202{bottom:425.662515px;}
.y14d{bottom:428.571030px;}
.y1c4{bottom:428.620962px;}
.y18c{bottom:428.802325px;}
.ya3{bottom:430.653305px;}
.y101{bottom:432.553825px;}
.y24b{bottom:433.296321px;}
.y79{bottom:434.052325px;}
.y4f{bottom:436.300824px;}
.ye0{bottom:438.364936px;}
.y201{bottom:438.408765px;}
.y18{bottom:440.973311px;}
.y14c{bottom:443.569529px;}
.y1c3{bottom:443.622463px;}
.y18b{bottom:443.800824px;}
.yce{bottom:444.547976px;}
.y100{bottom:447.552325px;}
.y24a{bottom:448.294821px;}
.y78{bottom:449.050824px;}
.y200{bottom:451.155015px;}
.y4e{bottom:451.299323px;}
.ydf{bottom:453.363435px;}
.y17{bottom:457.470311px;}
.y14b{bottom:458.568028px;}
.y1c2{bottom:458.620962px;}
.y18a{bottom:458.799323px;}
.ycd{bottom:459.546475px;}
.yff{bottom:462.550824px;}
.y249{bottom:463.293320px;}
.y1ff{bottom:463.901265px;}
.y77{bottom:464.049323px;}
.y4d{bottom:466.297822px;}
.yde{bottom:468.361934px;}
.y14a{bottom:473.566527px;}
.y1c1{bottom:473.619461px;}
.y189{bottom:473.797822px;}
.y16{bottom:473.967311px;}
.ycc{bottom:474.544974px;}
.y1fe{bottom:476.647515px;}
.ya2{bottom:477.366437px;}
.yfe{bottom:477.549323px;}
.y76{bottom:479.047822px;}
.y4c{bottom:481.296321px;}
.ydd{bottom:483.360433px;}
.y248{bottom:485.047822px;}
.y149{bottom:488.565026px;}
.y188{bottom:488.796321px;}
.y1fd{bottom:489.393765px;}
.ycb{bottom:489.543473px;}
.y15{bottom:490.464311px;}
.ya1{bottom:492.364936px;}
.yfd{bottom:492.547822px;}
.y75{bottom:494.046321px;}
.y4b{bottom:496.294821px;}
.ydc{bottom:498.358932px;}
.y247{bottom:500.046321px;}
.y1fc{bottom:502.140016px;}
.y148{bottom:503.563526px;}
.y1c0{bottom:503.660254px;}
.y187{bottom:503.794821px;}
.yca{bottom:504.541973px;}
.y14{bottom:506.961311px;}
.ya0{bottom:507.363435px;}
.yfc{bottom:507.546321px;}
.y74{bottom:509.044821px;}
.y4a{bottom:511.293320px;}
.y1fb{bottom:514.886266px;}
.y147{bottom:518.562025px;}
.y1bf{bottom:518.658754px;}
.y186{bottom:518.796321px;}
.yc9{bottom:519.540472px;}
.y246{bottom:521.794821px;}
.y9f{bottom:522.361934px;}
.yfb{bottom:522.544821px;}
.y13{bottom:523.458311px;}
.y73{bottom:524.046321px;}
.y49{bottom:526.293320px;}
.y1fa{bottom:527.632516px;}
.y146{bottom:533.560524px;}
.y1be{bottom:533.657253px;}
.y185{bottom:533.794821px;}
.yc8{bottom:534.538971px;}
.y9e{bottom:537.360433px;}
.yfa{bottom:537.543320px;}
.y72{bottom:539.044821px;}
.y12{bottom:539.955311px;}
.y1f9{bottom:540.378766px;}
.y245{bottom:543.543320px;}
.y145{bottom:548.559023px;}
.y1bd{bottom:548.655752px;}
.y184{bottom:548.808328px;}
.y9d{bottom:552.358932px;}
.y1f8{bottom:553.125016px;}
.y71{bottom:554.043320px;}
.y11{bottom:556.452311px;}
.y244{bottom:558.543320px;}
.y48{bottom:559.294821px;}
.y144{bottom:563.557522px;}
.y1bc{bottom:563.655752px;}
.y183{bottom:563.806827px;}
.y1f7{bottom:565.871266px;}
.y70{bottom:569.043320px;}
.y10{bottom:572.949311px;}
.y47{bottom:574.317287px;}
.y143{bottom:578.556022px;}
.y1f6{bottom:578.617516px;}
.y1bb{bottom:578.654251px;}
.y182{bottom:578.805326px;}
.y243{bottom:585.546321px;}
.y121{bottom:586.630979px;}
.y46{bottom:589.315786px;}
.yf{bottom:589.446311px;}
.y1f5{bottom:591.363766px;}
.y142{bottom:593.554521px;}
.y181{bottom:593.803825px;}
.y242{bottom:600.544821px;}
.y120{bottom:601.629478px;}
.y1f4{bottom:604.110017px;}
.y45{bottom:604.314285px;}
.ye{bottom:605.943311px;}
.y141{bottom:608.553020px;}
.y1ba{bottom:608.695044px;}
.y180{bottom:608.802325px;}
.y241{bottom:615.543320px;}
.y11f{bottom:616.627978px;}
.y1f3{bottom:616.856267px;}
.y98{bottom:618.310972px;}
.y44{bottom:619.312784px;}
.yd{bottom:622.440311px;}
.y140{bottom:623.551519px;}
.y1b9{bottom:623.693544px;}
.y17f{bottom:623.800824px;}
.y1f2{bottom:629.602517px;}
.y240{bottom:630.543320px;}
.y11e{bottom:631.626477px;}
.y97{bottom:633.309471px;}
.y43{bottom:634.311284px;}
.y13f{bottom:638.554521px;}
.y1b8{bottom:638.692043px;}
.y17e{bottom:638.799323px;}
.yc{bottom:638.937311px;}
.y1f1{bottom:642.348767px;}
.y11d{bottom:646.624976px;}
.y96{bottom:648.307970px;}
.y42{bottom:649.309783px;}
.y13e{bottom:653.553020px;}
.y1b7{bottom:653.690542px;}
.y17d{bottom:653.797822px;}
.y1f0{bottom:655.095017px;}
.yb{bottom:655.434311px;}
.y23f{bottom:657.549323px;}
.y11c{bottom:661.623475px;}
.y95{bottom:663.306469px;}
.y41{bottom:664.308282px;}
.y1ef{bottom:667.841267px;}
.y13d{bottom:668.551519px;}
.y1b6{bottom:668.693544px;}
.y17c{bottom:668.796321px;}
.y23e{bottom:672.547822px;}
.y11b{bottom:676.621974px;}
.y94{bottom:678.304969px;}
.y40{bottom:679.306781px;}
.y1ee{bottom:680.587517px;}
.y13c{bottom:683.553020px;}
.y1b5{bottom:683.692043px;}
.y17b{bottom:683.794821px;}
.ya{bottom:685.434310px;}
.y23d{bottom:687.546321px;}
.y11a{bottom:691.620474px;}
.y93{bottom:693.303468px;}
.y1ed{bottom:693.333767px;}
.y3f{bottom:694.305280px;}
.y13b{bottom:698.551519px;}
.y1b4{bottom:698.690542px;}
.y17a{bottom:698.796321px;}
.y23c{bottom:702.544821px;}
.y9{bottom:703.434311px;}
.y1ec{bottom:706.080017px;}
.y119{bottom:706.618973px;}
.y92{bottom:708.301967px;}
.y3e{bottom:709.303780px;}
.y13a{bottom:713.563526px;}
.y1b3{bottom:713.690542px;}
.y179{bottom:713.794821px;}
.y23b{bottom:717.543320px;}
.y1eb{bottom:718.826268px;}
.y91{bottom:723.300466px;}
.y3d{bottom:724.302279px;}
.y139{bottom:728.562025px;}
.y1b2{bottom:728.692043px;}
.y178{bottom:728.797776px;}
.y1ea{bottom:731.572518px;}
.y23a{bottom:732.543320px;}
.y8{bottom:736.410259px;}
.y90{bottom:738.298965px;}
.y3c{bottom:739.300778px;}
.y138{bottom:743.560524px;}
.y1b1{bottom:743.690542px;}
.y177{bottom:743.796276px;}
.y1e9{bottom:744.318768px;}
.y3b{bottom:754.299277px;}
.y1e8{bottom:757.065018px;}
.y30{bottom:757.145396px;}
.y137{bottom:758.559023px;}
.y1b0{bottom:758.689041px;}
.y176{bottom:758.794775px;}
.y239{bottom:759.640771px;}
.y3a{bottom:769.297776px;}
.y1e7{bottom:769.811268px;}
.y238{bottom:772.387021px;}
.y136{bottom:773.557522px;}
.y175{bottom:773.794775px;}
.y2f{bottom:778.144646px;}
.y7{bottom:781.416260px;}
.y1e6{bottom:782.557518px;}
.y39{bottom:784.296276px;}
.y237{bottom:785.133271px;}
.y135{bottom:788.556022px;}
.y1af{bottom:788.729880px;}
.y174{bottom:788.796276px;}
.y1e5{bottom:795.303768px;}
.y236{bottom:797.879521px;}
.y2e{bottom:799.143895px;}
.y38{bottom:799.294775px;}
.y134{bottom:803.554521px;}
.y1ae{bottom:803.728379px;}
.y173{bottom:803.794775px;}
.y1e4{bottom:808.050018px;}
.y235{bottom:810.625771px;}
.y37{bottom:814.296276px;}
.y133{bottom:818.553020px;}
.y1ad{bottom:818.726879px;}
.y172{bottom:818.815786px;}
.y1e3{bottom:820.800018px;}
.y234{bottom:823.372022px;}
.y6{bottom:826.422262px;}
.y36{bottom:829.294775px;}
.y132{bottom:833.551519px;}
.y1ac{bottom:833.725378px;}
.y171{bottom:833.814285px;}
.y233{bottom:836.118272px;}
.y35{bottom:844.296276px;}
.y131{bottom:848.553020px;}
.y1ab{bottom:848.723877px;}
.y170{bottom:848.812784px;}
.y232{bottom:848.864522px;}
.y1e2{bottom:849.798193px;}
.y34{bottom:859.294775px;}
.y231{bottom:861.610772px;}
.y130{bottom:863.551519px;}
.y16f{bottom:863.811284px;}
.y1e1{bottom:864.796692px;}
.y5{bottom:871.428264px;}
.y33{bottom:874.293274px;}
.y230{bottom:874.357022px;}
.y12f{bottom:878.557522px;}
.y1aa{bottom:878.762986px;}
.y16e{bottom:878.809783px;}
.y22f{bottom:887.103272px;}
.y12e{bottom:893.556022px;}
.y1a9{bottom:893.761485px;}
.y1e0{bottom:893.796276px;}
.y16d{bottom:893.808282px;}
.y22e{bottom:899.849522px;}
.y12d{bottom:908.554521px;}
.y1a8{bottom:908.759985px;}
.y1df{bottom:908.794775px;}
.y16c{bottom:908.806781px;}
.y22d{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y6f{bottom:922.480774px;}
.y12c{bottom:923.553020px;}
.y1a7{bottom:923.762986px;}
.y1de{bottom:923.794775px;}
.y16b{bottom:923.805280px;}
.y22c{bottom:925.342022px;}
.y31{bottom:926.409576px;}
.y22b{bottom:938.088273px;}
.y12b{bottom:938.551519px;}
.y1a6{bottom:938.761485px;}
.y16a{bottom:938.803780px;}
.y1dd{bottom:938.808282px;}
.y22a{bottom:950.834523px;}
.y6e{bottom:952.644273px;}
.y12a{bottom:953.553020px;}
.y1a5{bottom:953.759985px;}
.y169{bottom:953.802279px;}
.y1dc{bottom:953.806781px;}
.y229{bottom:963.580773px;}
.y129{bottom:968.551519px;}
.y1a4{bottom:968.758484px;}
.y168{bottom:968.800778px;}
.y1db{bottom:968.805280px;}
.y6d{bottom:970.084773px;}
.y228{bottom:976.327023px;}
.y128{bottom:983.550018px;}
.y167{bottom:983.799277px;}
.y1da{bottom:983.803780px;}
.y6c{bottom:987.525273px;}
.y227{bottom:989.073273px;}
.y127{bottom:998.550018px;}
.y166{bottom:998.797776px;}
.y1a3{bottom:998.802279px;}
.y226{bottom:1001.819523px;}
.y6b{bottom:1004.965773px;}
.y165{bottom:1013.796276px;}
.y1a2{bottom:1013.800778px;}
.y225{bottom:1014.565773px;}
.y6a{bottom:1022.406273px;}
.y224{bottom:1027.312023px;}
.y164{bottom:1028.794775px;}
.y126{bottom:1028.799277px;}
.y69{bottom:1039.846774px;}
.y223{bottom:1040.058273px;}
.y125{bottom:1043.797776px;}
.y222{bottom:1052.804524px;}
.y68{bottom:1057.287274px;}
.y124{bottom:1058.796276px;}
.y221{bottom:1065.550774px;}
.y123{bottom:1073.794775px;}
.y67{bottom:1074.727774px;}
.y220{bottom:1078.297024px;}
.y122{bottom:1088.793274px;}
.y21f{bottom:1091.043274px;}
.y66{bottom:1092.168274px;}
.y32{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hc{height:23.842749px;}
.hf{height:35.394000px;}
.he{height:36.669000px;}
.h9{height:38.838867px;}
.hd{height:41.158746px;}
.h13{height:41.538000px;}
.h12{height:43.008000px;}
.h2{height:43.140000px;}
.h15{height:43.154297px;}
.h4{height:44.233154px;}
.h18{height:44.505000px;}
.h19{height:45.090000px;}
.h3{height:45.744000px;}
.h17{height:46.080000px;}
.h1a{height:47.454000px;}
.h11{height:47.469727px;}
.h7{height:48.450256px;}
.h8{height:48.450259px;}
.ha{height:53.406000px;}
.h16{height:54.095994px;}
.hb{height:54.108000px;}
.h14{height:55.296000px;}
.h10{height:77.677734px;}
.h6{height:112.164000px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:14.073595px;}
.x2{left:61.191450px;}
.x7{left:140.952747px;}
.x4{left:233.456406px;}
.x8{left:238.143906px;}
.x5{left:251.449170px;}
.xd{left:300.594452px;}
.xa{left:341.663408px;}
.x3{left:584.586594px;}
.xb{left:816.003571px;}
.xc{left:817.278168px;}
.x9{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v4{vertical-align:-16.319987pt;}
.v3{vertical-align:-15.413330pt;}
.v5{vertical-align:-9.615984pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.599976pt;}
.v2{vertical-align:16.159981pt;}
.v1{vertical-align:18.133301pt;}
.ls35{letter-spacing:-3.472000pt;}
.ls85{letter-spacing:-2.800000pt;}
.ls72{letter-spacing:-2.120000pt;}
.ls81{letter-spacing:-1.160000pt;}
.ls30{letter-spacing:-0.912000pt;}
.lse{letter-spacing:-0.853333pt;}
.ls37{letter-spacing:-0.768000pt;}
.ls75{letter-spacing:-0.640000pt;}
.ls44{letter-spacing:-0.624000pt;}
.ls86{letter-spacing:-0.600000pt;}
.ls77{letter-spacing:-0.520000pt;}
.ls7a{letter-spacing:-0.480000pt;}
.ls7f{letter-spacing:-0.440000pt;}
.ls34{letter-spacing:-0.432000pt;}
.ls78{letter-spacing:-0.400000pt;}
.ls88{letter-spacing:-0.384000pt;}
.ls3b{letter-spacing:-0.374400pt;}
.ls73{letter-spacing:-0.360000pt;}
.ls6e{letter-spacing:-0.343200pt;}
.ls82{letter-spacing:-0.280000pt;}
.ls6f{letter-spacing:-0.249600pt;}
.ls43{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.226667pt;}
.ls74{letter-spacing:-0.200000pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls3a{letter-spacing:-0.187200pt;}
.ls70{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.144000pt;}
.ls17{letter-spacing:-0.136000pt;}
.ls25{letter-spacing:-0.124800pt;}
.ls59{letter-spacing:-0.106667pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.093600pt;}
.ls76{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.048000pt;}
.ls15{letter-spacing:-0.045333pt;}
.ls79{letter-spacing:-0.040000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.017629pt;}
.ls7d{letter-spacing:0.040000pt;}
.ls64{letter-spacing:0.047999pt;}
.ls11{letter-spacing:0.048000pt;}
.ls63{letter-spacing:0.048001pt;}
.ls5f{letter-spacing:0.062400pt;}
.ls68{letter-spacing:0.072024pt;}
.ls66{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.093600pt;}
.ls50{letter-spacing:0.095999pt;}
.ls1e{letter-spacing:0.096000pt;}
.ls65{letter-spacing:0.120000pt;}
.ls14{letter-spacing:0.124800pt;}
.ls2d{letter-spacing:0.141839pt;}
.ls2c{letter-spacing:0.142408pt;}
.ls12{letter-spacing:0.144000pt;}
.ls45{letter-spacing:0.187200pt;}
.ls9{letter-spacing:0.192000pt;}
.ls7c{letter-spacing:0.200000pt;}
.ls57{letter-spacing:0.213333pt;}
.ls46{letter-spacing:0.218400pt;}
.ls49{letter-spacing:0.235201pt;}
.ls1d{letter-spacing:0.240000pt;}
.ls2a{letter-spacing:0.249586pt;}
.ls22{letter-spacing:0.249600pt;}
.ls38{letter-spacing:0.264000pt;}
.ls5e{letter-spacing:0.266667pt;}
.ls6a{letter-spacing:0.280000pt;}
.ls41{letter-spacing:0.280800pt;}
.ls51{letter-spacing:0.287999pt;}
.ls1c{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.311999pt;}
.ls4{letter-spacing:0.312000pt;}
.ls4c{letter-spacing:0.317295pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.331675pt;}
.ls1f{letter-spacing:0.336000pt;}
.ls3c{letter-spacing:0.336001pt;}
.ls4e{letter-spacing:0.343200pt;}
.ls53{letter-spacing:0.355055pt;}
.ls69{letter-spacing:0.360000pt;}
.ls58{letter-spacing:0.374383pt;}
.ls5c{letter-spacing:0.374400pt;}
.ls19{letter-spacing:0.384000pt;}
.ls6c{letter-spacing:0.400000pt;}
.ls2b{letter-spacing:0.417605pt;}
.ls20{letter-spacing:0.432000pt;}
.ls5d{letter-spacing:0.436800pt;}
.ls80{letter-spacing:0.440000pt;}
.ls3f{letter-spacing:0.468000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls83{letter-spacing:0.520000pt;}
.ls4b{letter-spacing:0.527999pt;}
.ls21{letter-spacing:0.528000pt;}
.ls4f{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.544000pt;}
.lsa{letter-spacing:0.552952pt;}
.ls71{letter-spacing:0.560000pt;}
.ls62{letter-spacing:0.566404pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls52{letter-spacing:0.623999pt;}
.ls2f{letter-spacing:0.624000pt;}
.ls7b{letter-spacing:0.640000pt;}
.ls4a{letter-spacing:0.643224pt;}
.ls28{letter-spacing:0.672000pt;}
.ls29{letter-spacing:0.693333pt;}
.ls27{letter-spacing:0.720000pt;}
.ls7e{letter-spacing:0.760000pt;}
.ls47{letter-spacing:0.768000pt;}
.ls3d{letter-spacing:0.800000pt;}
.ls32{letter-spacing:0.816000pt;}
.ls6d{letter-spacing:0.839985pt;}
.ls36{letter-spacing:0.853333pt;}
.lsb{letter-spacing:0.861333pt;}
.ls31{letter-spacing:0.864000pt;}
.ls67{letter-spacing:0.880000pt;}
.ls6b{letter-spacing:0.920000pt;}
.ls26{letter-spacing:0.960000pt;}
.ls40{letter-spacing:1.008000pt;}
.ls56{letter-spacing:1.056000pt;}
.ls61{letter-spacing:1.104000pt;}
.ls5b{letter-spacing:1.152000pt;}
.ls5a{letter-spacing:1.173333pt;}
.ls48{letter-spacing:1.200000pt;}
.ls55{letter-spacing:1.226667pt;}
.ls3e{letter-spacing:1.248000pt;}
.ls87{letter-spacing:1.344000pt;}
.lsf{letter-spacing:1.392000pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls42{letter-spacing:1.632000pt;}
.ls54{letter-spacing:1.813333pt;}
.ls60{letter-spacing:1.824000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls18{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls84{letter-spacing:4.106667pt;}
.ls4d{letter-spacing:5.440000pt;}
.ls33{letter-spacing:188.794669pt;}
.ws2{word-spacing:-13.393333pt;}
.ws26{word-spacing:-13.066667pt;}
.ws29{word-spacing:-12.085333pt;}
.ws76{word-spacing:-12.000000pt;}
.ws2a{word-spacing:-11.568000pt;}
.ws8{word-spacing:-11.472000pt;}
.ws2b{word-spacing:-11.376000pt;}
.ws80{word-spacing:-11.328000pt;}
.ws8a{word-spacing:-11.184000pt;}
.ws46{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws4f{word-spacing:-11.088000pt;}
.ws6b{word-spacing:-10.992000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws8b{word-spacing:-10.944000pt;}
.ws5{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws66{word-spacing:-10.800000pt;}
.ws6c{word-spacing:-10.704000pt;}
.ws5a{word-spacing:-10.224000pt;}
.wsb{word-spacing:-9.610667pt;}
.wsb4{word-spacing:-9.480000pt;}
.wsbf{word-spacing:-9.400000pt;}
.wsac{word-spacing:-9.240000pt;}
.ws99{word-spacing:-9.160000pt;}
.wsb0{word-spacing:-9.080000pt;}
.wsc{word-spacing:-9.066667pt;}
.ws98{word-spacing:-9.000000pt;}
.wsc4{word-spacing:-8.960000pt;}
.ws9c{word-spacing:-8.920000pt;}
.ws9e{word-spacing:-8.880000pt;}
.wsc8{word-spacing:-8.840000pt;}
.ws9a{word-spacing:-8.760000pt;}
.wsc3{word-spacing:-8.680000pt;}
.ws9d{word-spacing:-8.640000pt;}
.wsa9{word-spacing:-8.600000pt;}
.wsa8{word-spacing:-8.560000pt;}
.wsa7{word-spacing:-8.520000pt;}
.wsc9{word-spacing:-8.440000pt;}
.ws9b{word-spacing:-8.000000pt;}
.ws6a{word-spacing:-7.550400pt;}
.ws88{word-spacing:-7.519200pt;}
.ws87{word-spacing:-7.456800pt;}
.ws81{word-spacing:-7.425600pt;}
.ws74{word-spacing:-7.394400pt;}
.ws75{word-spacing:-7.363200pt;}
.ws27{word-spacing:-7.332000pt;}
.ws78{word-spacing:-7.300800pt;}
.ws77{word-spacing:-7.269600pt;}
.ws9{word-spacing:-7.207200pt;}
.ws7{word-spacing:-7.176000pt;}
.ws89{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws6{word-spacing:-7.082400pt;}
.ws5f{word-spacing:-6.988800pt;}
.ws28{word-spacing:-6.957600pt;}
.ws65{word-spacing:-6.895200pt;}
.ws97{word-spacing:-6.832800pt;}
.ws96{word-spacing:-6.739200pt;}
.ws67{word-spacing:-6.708000pt;}
.wsbe{word-spacing:-6.360000pt;}
.wsa{word-spacing:-5.893333pt;}
.ws82{word-spacing:-5.440000pt;}
.ws4a{word-spacing:-4.896000pt;}
.ws10{word-spacing:-4.746667pt;}
.ws50{word-spacing:-4.629333pt;}
.wsc0{word-spacing:-4.106667pt;}
.ws59{word-spacing:-3.808000pt;}
.wscc{word-spacing:-3.520000pt;}
.ws1e{word-spacing:-3.173333pt;}
.wsf{word-spacing:-2.912000pt;}
.ws90{word-spacing:-1.813333pt;}
.ws69{word-spacing:-1.680000pt;}
.ws12{word-spacing:-1.632000pt;}
.ws5b{word-spacing:-1.584000pt;}
.ws64{word-spacing:-1.536000pt;}
.ws7b{word-spacing:-1.488000pt;}
.ws35{word-spacing:-1.440000pt;}
.ws21{word-spacing:-1.405333pt;}
.wsa6{word-spacing:-1.400000pt;}
.ws17{word-spacing:-1.392000pt;}
.ws23{word-spacing:-1.360000pt;}
.ws7c{word-spacing:-1.344000pt;}
.ws4b{word-spacing:-1.296000pt;}
.wsb8{word-spacing:-1.280000pt;}
.ws16{word-spacing:-1.248000pt;}
.wsb7{word-spacing:-1.240000pt;}
.ws44{word-spacing:-1.232000pt;}
.ws92{word-spacing:-1.226667pt;}
.ws63{word-spacing:-1.200000pt;}
.ws8d{word-spacing:-1.173333pt;}
.ws73{word-spacing:-1.152000pt;}
.ws25{word-spacing:-1.133333pt;}
.ws19{word-spacing:-1.104000pt;}
.ws45{word-spacing:-1.056000pt;}
.ws34{word-spacing:-1.008000pt;}
.ws7e{word-spacing:-0.960000pt;}
.wsa0{word-spacing:-0.920000pt;}
.ws86{word-spacing:-0.912000pt;}
.ws1d{word-spacing:-0.861333pt;}
.ws5d{word-spacing:-0.853333pt;}
.ws43{word-spacing:-0.821333pt;}
.ws33{word-spacing:-0.816000pt;}
.ws6d{word-spacing:-0.800000pt;}
.ws15{word-spacing:-0.768000pt;}
.wsb3{word-spacing:-0.760000pt;}
.ws39{word-spacing:-0.720000pt;}
.ws47{word-spacing:-0.693333pt;}
.ws4c{word-spacing:-0.672000pt;}
.wsa1{word-spacing:-0.640000pt;}
.ws4e{word-spacing:-0.624000pt;}
.ws1b{word-spacing:-0.576000pt;}
.ws85{word-spacing:-0.533333pt;}
.ws13{word-spacing:-0.528000pt;}
.ws40{word-spacing:-0.480000pt;}
.ws70{word-spacing:-0.468000pt;}
.ws3a{word-spacing:-0.432000pt;}
.ws18{word-spacing:-0.384000pt;}
.wsbd{word-spacing:-0.360000pt;}
.ws37{word-spacing:-0.336000pt;}
.ws36{word-spacing:-0.320000pt;}
.ws79{word-spacing:-0.312000pt;}
.ws3d{word-spacing:-0.288000pt;}
.ws84{word-spacing:-0.280800pt;}
.wsc1{word-spacing:-0.280000pt;}
.ws8f{word-spacing:-0.266667pt;}
.ws71{word-spacing:-0.249600pt;}
.ws42{word-spacing:-0.240000pt;}
.ws95{word-spacing:-0.213333pt;}
.ws3b{word-spacing:-0.192000pt;}
.ws7f{word-spacing:-0.187200pt;}
.wsba{word-spacing:-0.160000pt;}
.ws3f{word-spacing:-0.144000pt;}
.ws1c{word-spacing:-0.124800pt;}
.ws41{word-spacing:-0.096000pt;}
.wsc2{word-spacing:-0.080000pt;}
.ws30{word-spacing:-0.048000pt;}
.wsa5{word-spacing:-0.040000pt;}
.wsd{word-spacing:0.000000pt;}
.wsab{word-spacing:0.040000pt;}
.ws1f{word-spacing:0.045333pt;}
.ws1a{word-spacing:0.048000pt;}
.ws62{word-spacing:0.096000pt;}
.ws8c{word-spacing:0.106667pt;}
.wsb9{word-spacing:0.120000pt;}
.ws22{word-spacing:0.136000pt;}
.ws14{word-spacing:0.144000pt;}
.ws9f{word-spacing:0.160000pt;}
.ws48{word-spacing:0.192000pt;}
.ws20{word-spacing:0.226667pt;}
.ws57{word-spacing:0.240000pt;}
.ws38{word-spacing:0.288000pt;}
.wsbb{word-spacing:0.320000pt;}
.ws68{word-spacing:0.336000pt;}
.wsc5{word-spacing:0.360000pt;}
.ws60{word-spacing:0.384000pt;}
.wsc7{word-spacing:0.400000pt;}
.ws4d{word-spacing:0.432000pt;}
.wsaa{word-spacing:0.440000pt;}
.ws24{word-spacing:0.453333pt;}
.ws3e{word-spacing:0.480000pt;}
.ws58{word-spacing:0.528000pt;}
.ws3c{word-spacing:0.576000pt;}
.ws5e{word-spacing:0.624000pt;}
.ws32{word-spacing:0.672000pt;}
.wsae{word-spacing:0.680000pt;}
.ws7d{word-spacing:0.768000pt;}
.wsc6{word-spacing:0.840000pt;}
.wse{word-spacing:0.853333pt;}
.ws6e{word-spacing:0.864000pt;}
.ws61{word-spacing:0.912000pt;}
.wsb1{word-spacing:0.920000pt;}
.ws49{word-spacing:1.008000pt;}
.ws5c{word-spacing:1.056000pt;}
.wsce{word-spacing:1.104000pt;}
.wsad{word-spacing:1.120000pt;}
.wsa4{word-spacing:1.200000pt;}
.ws31{word-spacing:1.248000pt;}
.wsb6{word-spacing:1.280000pt;}
.wsbc{word-spacing:1.360000pt;}
.ws72{word-spacing:1.392000pt;}
.wsb2{word-spacing:1.400000pt;}
.wsa2{word-spacing:1.560000pt;}
.ws94{word-spacing:1.584000pt;}
.wsb5{word-spacing:1.720000pt;}
.ws8e{word-spacing:1.728000pt;}
.ws83{word-spacing:1.824000pt;}
.wsca{word-spacing:1.880000pt;}
.ws93{word-spacing:1.920000pt;}
.wsa3{word-spacing:1.960000pt;}
.wscd{word-spacing:1.968000pt;}
.ws6f{word-spacing:2.016000pt;}
.wsaf{word-spacing:2.080000pt;}
.wscb{word-spacing:2.304000pt;}
.ws11{word-spacing:2.400000pt;}
.ws7a{word-spacing:3.024000pt;}
.ws91{word-spacing:3.408000pt;}
.ws2f{word-spacing:63.952004pt;}
.ws2e{word-spacing:81.872004pt;}
.ws2d{word-spacing:99.792004pt;}
.ws2c{word-spacing:110.581328pt;}
.ws56{word-spacing:131.488006pt;}
.ws54{word-spacing:132.757336pt;}
.ws53{word-spacing:151.424003pt;}
.ws52{word-spacing:249.648008pt;}
.ws55{word-spacing:275.072008pt;}
.ws51{word-spacing:565.525308pt;}
._2c{margin-left:-11.880000pt;}
._2d{margin-left:-10.280000pt;}
._1{margin-left:-8.320000pt;}
._25{margin-left:-6.975447pt;}
._17{margin-left:-6.012359pt;}
._5{margin-left:-4.884771pt;}
._3{margin-left:-3.975975pt;}
._2{margin-left:-2.912000pt;}
._0{margin-left:-1.578676pt;}
._6{width:1.038982pt;}
._7{width:1.989042pt;}
._4{width:3.234662pt;}
._15{width:4.945064pt;}
._28{width:6.480000pt;}
._29{width:8.080000pt;}
._2b{width:9.855999pt;}
._27{width:11.520000pt;}
._16{width:13.583993pt;}
._14{width:14.580769pt;}
._2a{width:15.760002pt;}
._a{width:34.129013pt;}
._b{width:35.216006pt;}
._c{width:37.818662pt;}
._8{width:42.514645pt;}
._24{width:43.624766pt;}
._26{width:44.884195pt;}
._9{width:80.976004pt;}
._13{width:119.055995pt;}
._22{width:138.917341pt;}
._e{width:146.981328pt;}
._21{width:156.837341pt;}
._d{width:163.072004pt;}
._11{width:164.901328pt;}
._1e{width:174.757341pt;}
._f{width:186.255996pt;}
._20{width:187.282604pt;}
._12{width:204.175996pt;}
._1f{width:207.629313pt;}
._10{width:219.072004pt;}
._23{width:225.549314pt;}
._1b{width:243.469314pt;}
._1c{width:266.672007pt;}
._19{width:277.685320pt;}
._1d{width:285.562674pt;}
._18{width:296.351987pt;}
._1a{width:323.680007pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y2d{bottom:60.723466pt;}
.y1a1{bottom:60.935997pt;}
.y163{bottom:60.937331pt;}
.yc7{bottom:60.940000pt;}
.y1d9{bottom:60.949338pt;}
.y21e{bottom:61.126677pt;}
.y118{bottom:61.840277pt;}
.yf1{bottom:63.822934pt;}
.y21d{bottom:72.456677pt;}
.y9c{bottom:73.140273pt;}
.y2c{bottom:74.051466pt;}
.y1a0{bottom:74.267997pt;}
.y162{bottom:74.269331pt;}
.yc6{bottom:74.271999pt;}
.y1d8{bottom:74.281337pt;}
.y117{bottom:75.172276pt;}
.y8f{bottom:76.490935pt;}
.yf0{bottom:77.154933pt;}
.ydb{bottom:79.832272pt;}
.y21c{bottom:83.786677pt;}
.y9b{bottom:86.472273pt;}
.y2b{bottom:87.384799pt;}
.y161{bottom:87.601330pt;}
.yc5{bottom:87.603998pt;}
.y1d7{bottom:87.613336pt;}
.y116{bottom:88.504275pt;}
.y8e{bottom:89.822934pt;}
.yef{bottom:90.486933pt;}
.yda{bottom:93.164272pt;}
.y65{bottom:94.518970pt;}
.y21b{bottom:95.116677pt;}
.y9a{bottom:99.804272pt;}
.y2a{bottom:100.718132pt;}
.y19f{bottom:100.933329pt;}
.yc4{bottom:100.935997pt;}
.y1d6{bottom:100.945336pt;}
.y115{bottom:101.836275pt;}
.y8d{bottom:103.154933pt;}
.yee{bottom:103.818932pt;}
.y21a{bottom:106.446678pt;}
.yd9{bottom:106.496271pt;}
.y64{bottom:107.850970pt;}
.y99{bottom:113.136271pt;}
.yc3{bottom:114.267997pt;}
.y1d5{bottom:114.277335pt;}
.y114{bottom:115.168274pt;}
.y8c{bottom:116.486933pt;}
.yed{bottom:117.150931pt;}
.y219{bottom:117.776678pt;}
.y29{bottom:117.899465pt;}
.yd8{bottom:119.828270pt;}
.y63{bottom:121.182969pt;}
.y28{bottom:127.384799pt;}
.yc2{bottom:127.599996pt;}
.y160{bottom:127.606666pt;}
.y1d4{bottom:127.609334pt;}
.y19e{bottom:127.714800pt;}
.y113{bottom:128.500273pt;}
.y218{bottom:129.106678pt;}
.y8b{bottom:129.818932pt;}
.yec{bottom:130.484265pt;}
.yd7{bottom:133.160270pt;}
.y62{bottom:134.514968pt;}
.y217{bottom:140.436678pt;}
.yc1{bottom:140.933329pt;}
.y15f{bottom:140.938665pt;}
.y1d3{bottom:140.941334pt;}
.y19d{bottom:141.046799pt;}
.y112{bottom:141.832272pt;}
.y8a{bottom:143.150931pt;}
.yeb{bottom:143.820266pt;}
.y27{bottom:144.566132pt;}
.yd6{bottom:146.492269pt;}
.y61{bottom:147.846967pt;}
.y216{bottom:151.766678pt;}
.y15e{bottom:154.270665pt;}
.y1d2{bottom:154.273333pt;}
.y19c{bottom:154.378799pt;}
.y111{bottom:155.164272pt;}
.y89{bottom:156.482930pt;}
.yea{bottom:157.152265pt;}
.yb1{bottom:158.805606pt;}
.yd5{bottom:159.824268pt;}
.y60{bottom:161.178967pt;}
.y215{bottom:163.096678pt;}
.yc0{bottom:165.168294pt;}
.y15d{bottom:167.602664pt;}
.y1d1{bottom:167.605332pt;}
.y19b{bottom:167.710798pt;}
.y110{bottom:168.496271pt;}
.y88{bottom:169.816264pt;}
.ye9{bottom:170.484265pt;}
.yb0{bottom:172.137605pt;}
.yd4{bottom:173.156267pt;}
.y214{bottom:174.426678pt;}
.y5f{bottom:174.510966pt;}
.y26{bottom:175.280279pt;}
.ybf{bottom:178.500294pt;}
.y15c{bottom:180.934663pt;}
.y1d0{bottom:180.937331pt;}
.y19a{bottom:181.042797pt;}
.y10f{bottom:181.828270pt;}
.ye8{bottom:183.816264pt;}
.yaf{bottom:185.469604pt;}
.y213{bottom:185.756678pt;}
.yd3{bottom:186.488267pt;}
.y5e{bottom:187.842965pt;}
.y25{bottom:188.612279pt;}
.ybe{bottom:191.832293pt;}
.y1cf{bottom:194.269331pt;}
.y15b{bottom:194.270665pt;}
.y199{bottom:194.384135pt;}
.y10e{bottom:195.160270pt;}
.y212{bottom:197.086678pt;}
.y87{bottom:199.150931pt;}
.yd2{bottom:199.820266pt;}
.y5d{bottom:201.174965pt;}
.y24{bottom:201.944278pt;}
.ybd{bottom:205.164292pt;}
.y1ce{bottom:207.601330pt;}
.y15a{bottom:207.602664pt;}
.y198{bottom:207.716134pt;}
.y211{bottom:208.416678pt;}
.y10d{bottom:208.492269pt;}
.yae{bottom:212.282936pt;}
.y86{bottom:212.484265pt;}
.yd1{bottom:213.152265pt;}
.y5c{bottom:214.506964pt;}
.y23{bottom:215.276277pt;}
.ybc{bottom:218.496291pt;}
.y210{bottom:219.746679pt;}
.y159{bottom:220.934663pt;}
.y197{bottom:221.048133pt;}
.y10c{bottom:221.824268pt;}
.y85{bottom:225.817598pt;}
.yd0{bottom:226.484265pt;}
.yad{bottom:227.785603pt;}
.y5b{bottom:227.838963pt;}
.y22{bottom:228.610944pt;}
.y20f{bottom:231.076679pt;}
.ybb{bottom:231.828291pt;}
.yf9{bottom:233.497727pt;}
.y1cd{bottom:234.266663pt;}
.y158{bottom:234.267997pt;}
.y196{bottom:234.380133pt;}
.y10b{bottom:235.156267pt;}
.y84{bottom:239.172296pt;}
.ycf{bottom:239.816264pt;}
.y5a{bottom:241.170962pt;}
.y21{bottom:241.942944pt;}
.y20e{bottom:242.406679pt;}
.yac{bottom:243.288270pt;}
.yba{bottom:245.160290pt;}
.yf8{bottom:246.829726pt;}
.y157{bottom:247.605332pt;}
.y195{bottom:247.712132pt;}
.y10a{bottom:248.488267pt;}
.y83{bottom:252.504296pt;}
.y20d{bottom:253.736679pt;}
.y59{bottom:254.502962pt;}
.y20{bottom:255.278945pt;}
.yb9{bottom:258.492289pt;}
.yab{bottom:258.790936pt;}
.yf7{bottom:260.161726pt;}
.y156{bottom:260.937331pt;}
.y1cc{bottom:260.966800pt;}
.y194{bottom:261.044131pt;}
.y109{bottom:261.820266pt;}
.y20c{bottom:265.066679pt;}
.y82{bottom:265.836295pt;}
.y58{bottom:267.834961pt;}
.y1f{bottom:268.610944pt;}
.yb8{bottom:271.824288pt;}
.yf6{bottom:273.493725pt;}
.y155{bottom:274.269331pt;}
.yaa{bottom:274.293603pt;}
.y1cb{bottom:274.298799pt;}
.y193{bottom:274.376131pt;}
.y108{bottom:275.152265pt;}
.y20b{bottom:276.396679pt;}
.y81{bottom:279.168294pt;}
.y57{bottom:281.166960pt;}
.y1e{bottom:281.942944pt;}
.yb7{bottom:285.156288pt;}
.yf5{bottom:286.829726pt;}
.y154{bottom:287.601330pt;}
.y1ca{bottom:287.634800pt;}
.y192{bottom:287.708130pt;}
.y20a{bottom:287.726679pt;}
.y107{bottom:288.484265pt;}
.ya9{bottom:289.796270pt;}
.y252{bottom:291.828291pt;}
.y80{bottom:292.500294pt;}
.y56{bottom:294.498959pt;}
.y1d{bottom:295.276277pt;}
.ye7{bottom:296.333726pt;}
.yb6{bottom:298.488287pt;}
.y209{bottom:299.056679pt;}
.yf4{bottom:300.161726pt;}
.y153{bottom:300.960031pt;}
.y1c9{bottom:300.966800pt;}
.y191{bottom:301.041463pt;}
.y106{bottom:301.818932pt;}
.y251{bottom:305.160290pt;}
.ya8{bottom:305.298937pt;}
.y7f{bottom:305.832293pt;}
.y55{bottom:307.830959pt;}
.y1c{bottom:308.648278pt;}
.ye6{bottom:309.665725pt;}
.y208{bottom:310.386679pt;}
.yb5{bottom:311.820286pt;}
.yf3{bottom:313.493725pt;}
.y152{bottom:314.292030pt;}
.y1c8{bottom:314.298799pt;}
.y105{bottom:315.150931pt;}
.y250{bottom:318.492289pt;}
.y7e{bottom:319.164292pt;}
.ya7{bottom:320.801603pt;}
.y54{bottom:321.162958pt;}
.y207{bottom:321.716679pt;}
.y1b{bottom:321.980277pt;}
.ye5{bottom:322.997724pt;}
.yb4{bottom:325.152286pt;}
.yf2{bottom:326.825724pt;}
.y151{bottom:327.624029pt;}
.y1c7{bottom:327.630798pt;}
.y190{bottom:327.829625pt;}
.y104{bottom:328.485619pt;}
.y24f{bottom:331.824288pt;}
.y7d{bottom:332.496291pt;}
.y206{bottom:333.046680pt;}
.y53{bottom:334.494957pt;}
.y1a{bottom:335.312276pt;}
.ya6{bottom:336.304270pt;}
.ye4{bottom:336.329724pt;}
.yb3{bottom:338.484285pt;}
.y150{bottom:340.956029pt;}
.y18f{bottom:341.161624pt;}
.y103{bottom:341.817618pt;}
.y205{bottom:344.376680pt;}
.y24e{bottom:345.156288pt;}
.y7c{bottom:345.828291pt;}
.y52{bottom:347.826957pt;}
.ye3{bottom:349.661723pt;}
.ya4{bottom:351.806937pt;}
.yb2{bottom:351.816284pt;}
.y14f{bottom:354.288028pt;}
.y1c6{bottom:354.332412pt;}
.y18e{bottom:354.493623pt;}
.y102{bottom:355.149618pt;}
.y204{bottom:355.706680pt;}
.y24d{bottom:358.488287pt;}
.y7b{bottom:359.160290pt;}
.y51{bottom:361.158956pt;}
.ye2{bottom:362.993722pt;}
.y203{bottom:367.036680pt;}
.ya5{bottom:367.309604pt;}
.y14e{bottom:367.620027pt;}
.y1c5{bottom:367.664411pt;}
.y18d{bottom:367.825623pt;}
.y24c{bottom:371.820286pt;}
.y7a{bottom:372.492289pt;}
.y50{bottom:374.490955pt;}
.ye1{bottom:376.325721pt;}
.y19{bottom:377.312276pt;}
.y202{bottom:378.366680pt;}
.y14d{bottom:380.952026pt;}
.y1c4{bottom:380.996411pt;}
.y18c{bottom:381.157622pt;}
.ya3{bottom:382.802938pt;}
.y101{bottom:384.492289pt;}
.y24b{bottom:385.152286pt;}
.y79{bottom:385.824288pt;}
.y4f{bottom:387.822954pt;}
.ye0{bottom:389.657721pt;}
.y201{bottom:389.696680pt;}
.y18{bottom:391.976276pt;}
.y14c{bottom:394.284026pt;}
.y1c3{bottom:394.331078pt;}
.y18b{bottom:394.489621pt;}
.yce{bottom:395.153756pt;}
.y100{bottom:397.824288pt;}
.y24a{bottom:398.484285pt;}
.y78{bottom:399.156288pt;}
.y200{bottom:401.026680pt;}
.y4e{bottom:401.154954pt;}
.ydf{bottom:402.989720pt;}
.y17{bottom:406.640276pt;}
.y14b{bottom:407.616025pt;}
.y1c2{bottom:407.663077pt;}
.y18a{bottom:407.821620pt;}
.ycd{bottom:408.485756pt;}
.yff{bottom:411.156288pt;}
.y249{bottom:411.816284pt;}
.y1ff{bottom:412.356680pt;}
.y77{bottom:412.488287pt;}
.y4d{bottom:414.486953pt;}
.yde{bottom:416.321719pt;}
.y14a{bottom:420.948024pt;}
.y1c1{bottom:420.995076pt;}
.y189{bottom:421.153620pt;}
.y16{bottom:421.304276pt;}
.ycc{bottom:421.817755pt;}
.y1fe{bottom:423.686680pt;}
.ya2{bottom:424.325721pt;}
.yfe{bottom:424.488287pt;}
.y76{bottom:425.820286pt;}
.y4c{bottom:427.818952pt;}
.ydd{bottom:429.653718pt;}
.y248{bottom:431.153620pt;}
.y149{bottom:434.280023pt;}
.y188{bottom:434.485619pt;}
.y1fd{bottom:435.016680pt;}
.ycb{bottom:435.149754pt;}
.y15{bottom:435.968276pt;}
.ya1{bottom:437.657721pt;}
.yfd{bottom:437.820286pt;}
.y75{bottom:439.152286pt;}
.y4b{bottom:441.150952pt;}
.ydc{bottom:442.985718pt;}
.y247{bottom:444.485619pt;}
.y1fc{bottom:446.346681pt;}
.y148{bottom:447.612023pt;}
.y1c0{bottom:447.698004pt;}
.y187{bottom:447.817618pt;}
.yca{bottom:448.481753pt;}
.y14{bottom:450.632276pt;}
.ya0{bottom:450.989720pt;}
.yfc{bottom:451.152286pt;}
.y74{bottom:452.484285pt;}
.y4a{bottom:454.482951pt;}
.y1fb{bottom:457.676681pt;}
.y147{bottom:460.944022pt;}
.y1bf{bottom:461.030003pt;}
.y186{bottom:461.152286pt;}
.yc9{bottom:461.813753pt;}
.y246{bottom:463.817618pt;}
.y9f{bottom:464.321719pt;}
.yfb{bottom:464.484285pt;}
.y13{bottom:465.296276pt;}
.y73{bottom:465.818952pt;}
.y49{bottom:467.816284pt;}
.y1fa{bottom:469.006681pt;}
.y146{bottom:474.276021pt;}
.y1be{bottom:474.362002pt;}
.y185{bottom:474.484285pt;}
.yc8{bottom:475.145752pt;}
.y9e{bottom:477.653718pt;}
.yfa{bottom:477.816284pt;}
.y72{bottom:479.150952pt;}
.y12{bottom:479.960276pt;}
.y1f9{bottom:480.336681pt;}
.y245{bottom:483.149618pt;}
.y145{bottom:487.608021pt;}
.y1bd{bottom:487.694002pt;}
.y184{bottom:487.829625pt;}
.y9d{bottom:490.985718pt;}
.y1f8{bottom:491.666681pt;}
.y71{bottom:492.482951pt;}
.y11{bottom:494.624276pt;}
.y244{bottom:496.482951pt;}
.y48{bottom:497.150952pt;}
.y144{bottom:500.940020pt;}
.y1bc{bottom:501.027335pt;}
.y183{bottom:501.161624pt;}
.y1f7{bottom:502.996681pt;}
.y70{bottom:505.816284pt;}
.y10{bottom:509.288276pt;}
.y47{bottom:510.504255pt;}
.y143{bottom:514.272019pt;}
.y1f6{bottom:514.326681pt;}
.y1bb{bottom:514.359334pt;}
.y182{bottom:514.493623pt;}
.y243{bottom:520.485619pt;}
.y121{bottom:521.449759pt;}
.y46{bottom:523.836254pt;}
.yf{bottom:523.952276pt;}
.y1f5{bottom:525.656681pt;}
.y142{bottom:527.604018pt;}
.y181{bottom:527.825623pt;}
.y242{bottom:533.817618pt;}
.y120{bottom:534.781759pt;}
.y1f4{bottom:536.986681pt;}
.y45{bottom:537.168254pt;}
.ye{bottom:538.616276pt;}
.y141{bottom:540.936018pt;}
.y1ba{bottom:541.062262pt;}
.y180{bottom:541.157622pt;}
.y241{bottom:547.149618pt;}
.y11f{bottom:548.113758pt;}
.y1f3{bottom:548.316681pt;}
.y98{bottom:549.609753pt;}
.y44{bottom:550.500253pt;}
.yd{bottom:553.280276pt;}
.y140{bottom:554.268017pt;}
.y1b9{bottom:554.394261pt;}
.y17f{bottom:554.489621pt;}
.y1f2{bottom:559.646682pt;}
.y240{bottom:560.482951pt;}
.y11e{bottom:561.445757pt;}
.y97{bottom:562.941752pt;}
.y43{bottom:563.832252pt;}
.y13f{bottom:567.604018pt;}
.y1b8{bottom:567.726260pt;}
.y17e{bottom:567.821620pt;}
.yc{bottom:567.944276pt;}
.y1f1{bottom:570.976682pt;}
.y11d{bottom:574.777756pt;}
.y96{bottom:576.273751pt;}
.y42{bottom:577.164251pt;}
.y13e{bottom:580.936018pt;}
.y1b7{bottom:581.058260pt;}
.y17d{bottom:581.153620pt;}
.y1f0{bottom:582.306682pt;}
.yb{bottom:582.608276pt;}
.y23f{bottom:584.488287pt;}
.y11c{bottom:588.109756pt;}
.y95{bottom:589.605751pt;}
.y41{bottom:590.496251pt;}
.y1ef{bottom:593.636682pt;}
.y13d{bottom:594.268017pt;}
.y1b6{bottom:594.394261pt;}
.y17c{bottom:594.485619pt;}
.y23e{bottom:597.820286pt;}
.y11b{bottom:601.441755pt;}
.y94{bottom:602.937750pt;}
.y40{bottom:603.828250pt;}
.y1ee{bottom:604.966682pt;}
.y13c{bottom:607.602684pt;}
.y1b5{bottom:607.726260pt;}
.y17b{bottom:607.817618pt;}
.ya{bottom:609.274942pt;}
.y23d{bottom:611.152286pt;}
.y11a{bottom:614.773754pt;}
.y93{bottom:616.269749pt;}
.y1ed{bottom:616.296682pt;}
.y3f{bottom:617.160249pt;}
.y13b{bottom:620.934684pt;}
.y1b4{bottom:621.058260pt;}
.y17a{bottom:621.152286pt;}
.y23c{bottom:624.484285pt;}
.y9{bottom:625.274943pt;}
.y1ec{bottom:627.626682pt;}
.y119{bottom:628.105754pt;}
.y92{bottom:629.601749pt;}
.y3e{bottom:630.492249pt;}
.y13a{bottom:634.278689pt;}
.y1b3{bottom:634.391593pt;}
.y179{bottom:634.484285pt;}
.y23b{bottom:637.816284pt;}
.y1eb{bottom:638.956682pt;}
.y91{bottom:642.933748pt;}
.y3d{bottom:643.824248pt;}
.y139{bottom:647.610689pt;}
.y1b2{bottom:647.726260pt;}
.y178{bottom:647.820246pt;}
.y1ea{bottom:650.286682pt;}
.y23a{bottom:651.149618pt;}
.y8{bottom:654.586897pt;}
.y90{bottom:656.265747pt;}
.y3c{bottom:657.156247pt;}
.y138{bottom:660.942688pt;}
.y1b1{bottom:661.058260pt;}
.y177{bottom:661.152245pt;}
.y1e9{bottom:661.616682pt;}
.y3b{bottom:670.488246pt;}
.y1e8{bottom:672.946683pt;}
.y30{bottom:673.018130pt;}
.y137{bottom:674.274687pt;}
.y1b0{bottom:674.390259pt;}
.y176{bottom:674.484244pt;}
.y239{bottom:675.236241pt;}
.y3a{bottom:683.820246pt;}
.y1e7{bottom:684.276683pt;}
.y238{bottom:686.566241pt;}
.y136{bottom:687.606687pt;}
.y175{bottom:687.817578pt;}
.y2f{bottom:691.684130pt;}
.y7{bottom:694.592232pt;}
.y1e6{bottom:695.606683pt;}
.y39{bottom:697.152245pt;}
.y237{bottom:697.896241pt;}
.y135{bottom:700.938686pt;}
.y1af{bottom:701.093227pt;}
.y174{bottom:701.152245pt;}
.y1e5{bottom:706.936683pt;}
.y236{bottom:709.226241pt;}
.y2e{bottom:710.350129pt;}
.y38{bottom:710.484244pt;}
.y134{bottom:714.270685pt;}
.y1ae{bottom:714.425226pt;}
.y173{bottom:714.484244pt;}
.y1e4{bottom:718.266683pt;}
.y235{bottom:720.556241pt;}
.y37{bottom:723.818912pt;}
.y133{bottom:727.602684pt;}
.y1ad{bottom:727.757225pt;}
.y172{bottom:727.836254pt;}
.y1e3{bottom:729.600016pt;}
.y234{bottom:731.886241pt;}
.y6{bottom:734.597566pt;}
.y36{bottom:737.150911pt;}
.y132{bottom:740.934684pt;}
.y1ac{bottom:741.089225pt;}
.y171{bottom:741.168254pt;}
.y233{bottom:743.216241pt;}
.y35{bottom:750.485578pt;}
.y131{bottom:754.269351pt;}
.y1ab{bottom:754.421224pt;}
.y170{bottom:754.500253pt;}
.y232{bottom:754.546242pt;}
.y1e2{bottom:755.376171pt;}
.y34{bottom:763.817578pt;}
.y231{bottom:765.876242pt;}
.y130{bottom:767.601350pt;}
.y16f{bottom:767.832252pt;}
.y1e1{bottom:768.708171pt;}
.y5{bottom:774.602901pt;}
.y33{bottom:777.149577pt;}
.y230{bottom:777.206242pt;}
.y12f{bottom:780.940020pt;}
.y1aa{bottom:781.122654pt;}
.y16e{bottom:781.164251pt;}
.y22f{bottom:788.536242pt;}
.y12e{bottom:794.272019pt;}
.y1a9{bottom:794.454654pt;}
.y1e0{bottom:794.485578pt;}
.y16d{bottom:794.496251pt;}
.y22e{bottom:799.866242pt;}
.y12d{bottom:807.604018pt;}
.y1a8{bottom:807.786653pt;}
.y1df{bottom:807.817578pt;}
.y16c{bottom:807.828250pt;}
.y22d{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y6f{bottom:819.982910pt;}
.y12c{bottom:820.936018pt;}
.y1a7{bottom:821.122654pt;}
.y1de{bottom:821.150911pt;}
.y16b{bottom:821.160249pt;}
.y22c{bottom:822.526242pt;}
.y31{bottom:823.475179pt;}
.y22b{bottom:833.856242pt;}
.y12b{bottom:834.268017pt;}
.y1a6{bottom:834.454654pt;}
.y16a{bottom:834.492249pt;}
.y1dd{bottom:834.496251pt;}
.y22a{bottom:845.186242pt;}
.y6e{bottom:846.794909pt;}
.y12a{bottom:847.602684pt;}
.y1a5{bottom:847.786653pt;}
.y169{bottom:847.824248pt;}
.y1dc{bottom:847.828250pt;}
.y229{bottom:856.516242pt;}
.y129{bottom:860.934684pt;}
.y1a4{bottom:861.118652pt;}
.y168{bottom:861.156247pt;}
.y1db{bottom:861.160249pt;}
.y6d{bottom:862.297576pt;}
.y228{bottom:867.846243pt;}
.y128{bottom:874.266683pt;}
.y167{bottom:874.488246pt;}
.y1da{bottom:874.492249pt;}
.y6c{bottom:877.800243pt;}
.y227{bottom:879.176243pt;}
.y127{bottom:887.600016pt;}
.y166{bottom:887.820246pt;}
.y1a3{bottom:887.824248pt;}
.y226{bottom:890.506243pt;}
.y6b{bottom:893.302910pt;}
.y165{bottom:901.152245pt;}
.y1a2{bottom:901.156247pt;}
.y225{bottom:901.836243pt;}
.y6a{bottom:908.805576pt;}
.y224{bottom:913.166243pt;}
.y164{bottom:914.484244pt;}
.y126{bottom:914.488246pt;}
.y69{bottom:924.308243pt;}
.y223{bottom:924.496243pt;}
.y125{bottom:927.820246pt;}
.y222{bottom:935.826243pt;}
.y68{bottom:939.810910pt;}
.y124{bottom:941.152245pt;}
.y221{bottom:947.156243pt;}
.y123{bottom:954.484244pt;}
.y67{bottom:955.313577pt;}
.y220{bottom:958.486243pt;}
.y122{bottom:967.816243pt;}
.y21f{bottom:969.816243pt;}
.y66{bottom:970.816243pt;}
.y32{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hc{height:21.193555pt;}
.hf{height:31.461333pt;}
.he{height:32.594667pt;}
.h9{height:34.523438pt;}
.hd{height:36.585552pt;}
.h13{height:36.922667pt;}
.h12{height:38.229333pt;}
.h2{height:38.346667pt;}
.h15{height:38.359375pt;}
.h4{height:39.318359pt;}
.h18{height:39.560000pt;}
.h19{height:40.080000pt;}
.h3{height:40.661333pt;}
.h17{height:40.960000pt;}
.h1a{height:42.181333pt;}
.h11{height:42.195312pt;}
.h7{height:43.066895pt;}
.h8{height:43.066897pt;}
.ha{height:47.472000pt;}
.h16{height:48.085328pt;}
.hb{height:48.096000pt;}
.h14{height:49.152000pt;}
.h10{height:69.046875pt;}
.h6{height:99.701333pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:12.509862pt;}
.x2{left:54.392400pt;}
.x7{left:125.291331pt;}
.x4{left:207.516805pt;}
.x8{left:211.683472pt;}
.x5{left:223.510373pt;}
.xd{left:267.195068pt;}
.xa{left:303.700807pt;}
.x3{left:519.632528pt;}
.xb{left:725.336507pt;}
.xc{left:726.469482pt;}
.x9{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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