
    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_365df1a8d1e6056bf6aa3ad3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_6bb83d6a31f5d46afb2c2a2b.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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_930b02402950a2ac39657b2d.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_60697ee4448def9e371e42a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_c959a2728e0a42198758f446.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4589afed7bce2b7b46bc0129.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.678711;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_298325a804796e77c464b2c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3da427a88004714f61b2f12c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9af18399f4b0fad645f7c0f9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_dae5473b6f3b4022dfb33674.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3c10f019a1e424d979b416ef.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0c5c9ddd3dbd6fc609b47335.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bfeca069a7e2dccf8e6d0b13.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.668000;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_da08cc53fdbb7a192bb89710.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v2{vertical-align:-20.399963px;}
.v4{vertical-align:-18.359985px;}
.v5{vertical-align:-17.339996px;}
.v6{vertical-align:-10.800110px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:14.316031px;}
.v3{vertical-align:18.077976px;}
.v1{vertical-align:20.399963px;}
.v9{vertical-align:22.512000px;}
.v7{vertical-align:44.981999px;}
.ls83{letter-spacing:-4.620000px;}
.ls75{letter-spacing:-4.428000px;}
.lsbf{letter-spacing:-4.185000px;}
.lsb7{letter-spacing:-4.095000px;}
.ls9c{letter-spacing:-2.052000px;}
.ls8b{letter-spacing:-1.974000px;}
.lsce{letter-spacing:-1.755000px;}
.ls87{letter-spacing:-1.596000px;}
.lscf{letter-spacing:-1.575000px;}
.lsc1{letter-spacing:-1.485000px;}
.lsb8{letter-spacing:-1.350000px;}
.lsc2{letter-spacing:-1.260000px;}
.ls9a{letter-spacing:-1.242000px;}
.ls31{letter-spacing:-1.080000px;}
.lsb9{letter-spacing:-1.035000px;}
.ls72{letter-spacing:-0.972000px;}
.ls60{letter-spacing:-0.918000px;}
.ls2d{letter-spacing:-0.864000px;}
.lsc0{letter-spacing:-0.855000px;}
.ls88{letter-spacing:-0.840000px;}
.ls70{letter-spacing:-0.810000px;}
.ls8f{letter-spacing:-0.798000px;}
.lsab{letter-spacing:-0.765000px;}
.ls2f{letter-spacing:-0.756000px;}
.lsba{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.702000px;}
.lsa9{letter-spacing:-0.675000px;}
.ls45{letter-spacing:-0.648000px;}
.lsad{letter-spacing:-0.630000px;}
.ls4b{letter-spacing:-0.594000px;}
.lsa7{letter-spacing:-0.585000px;}
.ls90{letter-spacing:-0.546000px;}
.ls2c{letter-spacing:-0.540000px;}
.ls85{letter-spacing:-0.504000px;}
.lsbb{letter-spacing:-0.495000px;}
.ls61{letter-spacing:-0.486000px;}
.lsbc{letter-spacing:-0.450000px;}
.ls32{letter-spacing:-0.432000px;}
.ls84{letter-spacing:-0.420000px;}
.lsac{letter-spacing:-0.405000px;}
.ls62{letter-spacing:-0.378000px;}
.lsbe{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.324000px;}
.lsaa{letter-spacing:-0.315000px;}
.ls89{letter-spacing:-0.294000px;}
.ls71{letter-spacing:-0.270000px;}
.lsa5{letter-spacing:-0.225000px;}
.ls2e{letter-spacing:-0.216000px;}
.ls82{letter-spacing:-0.210000px;}
.lsa6{letter-spacing:-0.180000px;}
.ls95{letter-spacing:-0.168000px;}
.ls4a{letter-spacing:-0.162000px;}
.ls99{letter-spacing:-0.140400px;}
.lsae{letter-spacing:-0.135000px;}
.ls8a{letter-spacing:-0.126000px;}
.ls74{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.108000px;}
.ls64{letter-spacing:-0.105300px;}
.lsa8{letter-spacing:-0.090000px;}
.ls76{letter-spacing:-0.070200px;}
.ls49{letter-spacing:-0.060000px;}
.ls47{letter-spacing:-0.054000px;}
.lsaf{letter-spacing:-0.045000px;}
.ls63{letter-spacing:-0.035100px;}
.lse{letter-spacing:0.000000px;}
.ls6e{letter-spacing:0.000084px;}
.lsa{letter-spacing:0.003998px;}
.ls3{letter-spacing:0.013040px;}
.ls4{letter-spacing:0.013223px;}
.ls2{letter-spacing:0.013772px;}
.ls55{letter-spacing:0.024098px;}
.ls29{letter-spacing:0.026425px;}
.ls33{letter-spacing:0.035100px;}
.ls28{letter-spacing:0.039152px;}
.lsa2{letter-spacing:0.045000px;}
.lscb{letter-spacing:0.045058px;}
.ls3a{letter-spacing:0.048604px;}
.ls1d{letter-spacing:0.054000px;}
.ls3e{letter-spacing:0.060000px;}
.ls38{letter-spacing:0.064802px;}
.ls41{letter-spacing:0.064833px;}
.lsa0{letter-spacing:0.070175px;}
.ls1e{letter-spacing:0.070199px;}
.ls77{letter-spacing:0.070200px;}
.lsa4{letter-spacing:0.090000px;}
.ls65{letter-spacing:0.093651px;}
.ls78{letter-spacing:0.102611px;}
.ls5f{letter-spacing:0.105300px;}
.ls39{letter-spacing:0.107998px;}
.ls8{letter-spacing:0.108000px;}
.ls40{letter-spacing:0.120000px;}
.ls86{letter-spacing:0.126000px;}
.ls27{letter-spacing:0.131404px;}
.ls54{letter-spacing:0.135000px;}
.ls48{letter-spacing:0.140400px;}
.ls53{letter-spacing:0.140401px;}
.ls2a{letter-spacing:0.140476px;}
.ls4e{letter-spacing:0.153808px;}
.ls8e{letter-spacing:0.157950px;}
.ls7{letter-spacing:0.162000px;}
.ls7a{letter-spacing:0.165611px;}
.lsd{letter-spacing:0.170808px;}
.ls4d{letter-spacing:0.175500px;}
.ls7e{letter-spacing:0.180000px;}
.ls9d{letter-spacing:0.210598px;}
.ls24{letter-spacing:0.210600px;}
.lsca{letter-spacing:0.211494px;}
.lsb{letter-spacing:0.212189px;}
.ls14{letter-spacing:0.216000px;}
.lsb3{letter-spacing:0.225000px;}
.ls96{letter-spacing:0.237604px;}
.ls93{letter-spacing:0.240112px;}
.ls9f{letter-spacing:0.243000px;}
.ls5a{letter-spacing:0.243065px;}
.ls36{letter-spacing:0.245700px;}
.ls57{letter-spacing:0.249306px;}
.ls9e{letter-spacing:0.255718px;}
.ls16{letter-spacing:0.270000px;}
.ls6c{letter-spacing:0.280798px;}
.ls6b{letter-spacing:0.280800px;}
.ls92{letter-spacing:0.297000px;}
.ls1a{letter-spacing:0.298179px;}
.ls18{letter-spacing:0.306000px;}
.lsc9{letter-spacing:0.310494px;}
.lsa1{letter-spacing:0.315000px;}
.ls94{letter-spacing:0.315900px;}
.ls8c{letter-spacing:0.323998px;}
.ls11{letter-spacing:0.324000px;}
.ls8d{letter-spacing:0.324003px;}
.ls22{letter-spacing:0.350999px;}
.ls9b{letter-spacing:0.351000px;}
.ls6{letter-spacing:0.353477px;}
.ls5b{letter-spacing:0.356416px;}
.lsc{letter-spacing:0.357000px;}
.lsb0{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.368550px;}
.ls25{letter-spacing:0.377999px;}
.ls10{letter-spacing:0.378000px;}
.ls7c{letter-spacing:0.378001px;}
.ls35{letter-spacing:0.386100px;}
.ls1c{letter-spacing:0.386101px;}
.lsb1{letter-spacing:0.405000px;}
.ls20{letter-spacing:0.421200px;}
.lsc5{letter-spacing:0.427500px;}
.ls23{letter-spacing:0.432000px;}
.lsc3{letter-spacing:0.450000px;}
.ls34{letter-spacing:0.456300px;}
.ls52{letter-spacing:0.459000px;}
.ls3f{letter-spacing:0.475241px;}
.ls2b{letter-spacing:0.486000px;}
.ls5e{letter-spacing:0.491400px;}
.lsbd{letter-spacing:0.495000px;}
.ls59{letter-spacing:0.498000px;}
.ls9{letter-spacing:0.506806px;}
.ls66{letter-spacing:0.513000px;}
.ls69{letter-spacing:0.523846px;}
.ls6f{letter-spacing:0.526500px;}
.ls3b{letter-spacing:0.539999px;}
.ls15{letter-spacing:0.540000px;}
.ls73{letter-spacing:0.561600px;}
.lsb4{letter-spacing:0.585000px;}
.ls6d{letter-spacing:0.593990px;}
.ls5{letter-spacing:0.594000px;}
.ls68{letter-spacing:0.600000px;}
.ls79{letter-spacing:0.604794px;}
.ls4f{letter-spacing:0.618000px;}
.lsb5{letter-spacing:0.630000px;}
.ls5d{letter-spacing:0.631800px;}
.ls1b{letter-spacing:0.648000px;}
.ls6a{letter-spacing:0.648001px;}
.ls5c{letter-spacing:0.660000px;}
.ls1f{letter-spacing:0.702000px;}
.lsa3{letter-spacing:0.720000px;}
.ls51{letter-spacing:0.756000px;}
.lsc8{letter-spacing:0.765000px;}
.ls91{letter-spacing:0.768489px;}
.ls67{letter-spacing:0.809999px;}
.ls3c{letter-spacing:0.810000px;}
.ls17{letter-spacing:0.816000px;}
.lsc4{letter-spacing:0.855000px;}
.ls56{letter-spacing:0.863999px;}
.ls30{letter-spacing:0.864000px;}
.ls3d{letter-spacing:0.864001px;}
.ls7b{letter-spacing:0.900000px;}
.ls58{letter-spacing:0.918000px;}
.lsb6{letter-spacing:0.945000px;}
.lsc7{letter-spacing:0.967500px;}
.ls50{letter-spacing:0.972000px;}
.lsc6{letter-spacing:0.990000px;}
.ls42{letter-spacing:1.020000px;}
.ls43{letter-spacing:1.026000px;}
.lsb2{letter-spacing:1.035000px;}
.ls97{letter-spacing:1.080000px;}
.lscc{letter-spacing:1.125000px;}
.lsd0{letter-spacing:1.134000px;}
.ls4c{letter-spacing:1.242000px;}
.ls37{letter-spacing:1.296000px;}
.ls46{letter-spacing:1.320000px;}
.ls44{letter-spacing:1.538919px;}
.ls7d{letter-spacing:1.673998px;}
.ls81{letter-spacing:1.674000px;}
.ls0{letter-spacing:2.592000px;}
.ls19{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.lscd{letter-spacing:4.620000px;}
.ls98{letter-spacing:6.120000px;}
.ls26{letter-spacing:14.741992px;}
.ls80{letter-spacing:183.792008px;}
.ls7f{letter-spacing:198.996008px;}
.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;}
}
.ws3{word-spacing:-156.000000px;}
.ws67{word-spacing:-60.618000px;}
.ws74{word-spacing:-60.498000px;}
.ws7{word-spacing:-54.000000px;}
.ws2{word-spacing:-32.136000px;}
.ws1{word-spacing:-15.067500px;}
.ws23{word-spacing:-14.700000px;}
.ws96{word-spacing:-13.596000px;}
.ws4e{word-spacing:-13.500000px;}
.wsd6{word-spacing:-13.446000px;}
.ws70{word-spacing:-13.230000px;}
.wsd7{word-spacing:-13.176000px;}
.ws69{word-spacing:-13.122000px;}
.ws71{word-spacing:-13.014000px;}
.ws94{word-spacing:-12.960000px;}
.ws48{word-spacing:-12.906000px;}
.ws84{word-spacing:-12.879000px;}
.ws65{word-spacing:-12.852000px;}
.wsc1{word-spacing:-12.825000px;}
.ws92{word-spacing:-12.798000px;}
.ws8{word-spacing:-12.744000px;}
.ws83{word-spacing:-12.690000px;}
.ws49{word-spacing:-12.636000px;}
.wsdd{word-spacing:-12.609000px;}
.ws2a{word-spacing:-12.582000px;}
.ws97{word-spacing:-12.528000px;}
.ws6e{word-spacing:-12.501000px;}
.ws0{word-spacing:-12.480000px;}
.ws6b{word-spacing:-12.474000px;}
.ws66{word-spacing:-12.420000px;}
.ws2c{word-spacing:-12.366000px;}
.ws4{word-spacing:-12.360000px;}
.ws4a{word-spacing:-12.312000px;}
.ws4d{word-spacing:-12.300000px;}
.ws9{word-spacing:-12.258000px;}
.ws4f{word-spacing:-12.204000px;}
.ws25{word-spacing:-12.150000px;}
.ws6c{word-spacing:-12.096000px;}
.wsa{word-spacing:-12.042000px;}
.wsdc{word-spacing:-11.988000px;}
.ws6f{word-spacing:-11.934000px;}
.ws72{word-spacing:-11.880000px;}
.ws9a{word-spacing:-11.826000px;}
.ws50{word-spacing:-11.772000px;}
.ws47{word-spacing:-11.718000px;}
.wsb{word-spacing:-11.664000px;}
.ws93{word-spacing:-11.610000px;}
.ws81{word-spacing:-11.556000px;}
.ws4c{word-spacing:-11.394000px;}
.wsfe{word-spacing:-11.160000px;}
.ws6{word-spacing:-11.124000px;}
.wsd4{word-spacing:-11.016000px;}
.ws12b{word-spacing:-10.732500px;}
.ws10f{word-spacing:-10.710000px;}
.ws12d{word-spacing:-10.575000px;}
.wsf2{word-spacing:-10.530000px;}
.wsf6{word-spacing:-10.485000px;}
.ws12c{word-spacing:-10.440000px;}
.wsf5{word-spacing:-10.395000px;}
.wsf7{word-spacing:-10.350000px;}
.wse1{word-spacing:-10.305000px;}
.wsfc{word-spacing:-10.260000px;}
.wsf1{word-spacing:-10.215000px;}
.wsd{word-spacing:-10.200000px;}
.wsf8{word-spacing:-10.170000px;}
.wsdf{word-spacing:-10.125000px;}
.wsfa{word-spacing:-10.080000px;}
.wsde{word-spacing:-10.035000px;}
.ws105{word-spacing:-9.990000px;}
.ws10b{word-spacing:-9.945000px;}
.ws11f{word-spacing:-9.810000px;}
.wse2{word-spacing:-9.765000px;}
.wsf4{word-spacing:-9.720000px;}
.ws107{word-spacing:-9.675000px;}
.wse0{word-spacing:-9.630000px;}
.wsfd{word-spacing:-9.540000px;}
.ws11e{word-spacing:-9.495000px;}
.wsf9{word-spacing:-9.450000px;}
.wsa5{word-spacing:-9.324000px;}
.wsfb{word-spacing:-9.270000px;}
.ws9f{word-spacing:-9.114000px;}
.wsf3{word-spacing:-8.955000px;}
.ws68{word-spacing:-8.599500px;}
.ws82{word-spacing:-8.529300px;}
.ws80{word-spacing:-8.494200px;}
.ws6a{word-spacing:-8.459100px;}
.ws28{word-spacing:-8.424000px;}
.ws24{word-spacing:-8.388900px;}
.ws29{word-spacing:-8.353800px;}
.wsd5{word-spacing:-8.318700px;}
.wsc2{word-spacing:-8.283600px;}
.ws7f{word-spacing:-8.248500px;}
.ws2b{word-spacing:-8.213400px;}
.ws26{word-spacing:-8.178300px;}
.ws95{word-spacing:-8.143200px;}
.ws4b{word-spacing:-8.108100px;}
.ws6d{word-spacing:-8.073000px;}
.ws86{word-spacing:-8.037900px;}
.ws5{word-spacing:-8.034000px;}
.ws27{word-spacing:-8.002800px;}
.wsc{word-spacing:-7.967700px;}
.ws73{word-spacing:-7.932600px;}
.ws85{word-spacing:-7.897500px;}
.ws75{word-spacing:-7.862400px;}
.wsd3{word-spacing:-7.827300px;}
.wsd8{word-spacing:-6.120000px;}
.ws5a{word-spacing:-5.508000px;}
.ws11{word-spacing:-5.340000px;}
.wsae{word-spacing:-4.698000px;}
.ws12e{word-spacing:-4.620000px;}
.wsb3{word-spacing:-4.284000px;}
.wsc0{word-spacing:-3.864000px;}
.ws12{word-spacing:-3.840000px;}
.wsbe{word-spacing:-3.738000px;}
.ws10{word-spacing:-3.276000px;}
.ws5e{word-spacing:-2.106000px;}
.ws7d{word-spacing:-1.890000px;}
.ws5d{word-spacing:-1.860000px;}
.ws2e{word-spacing:-1.836000px;}
.ws98{word-spacing:-1.782000px;}
.wsd9{word-spacing:-1.728000px;}
.ws30{word-spacing:-1.674000px;}
.ws5c{word-spacing:-1.620000px;}
.ws11b{word-spacing:-1.575000px;}
.ws36{word-spacing:-1.566000px;}
.wsea{word-spacing:-1.530000px;}
.ws3d{word-spacing:-1.512000px;}
.ws116{word-spacing:-1.485000px;}
.ws32{word-spacing:-1.458000px;}
.ws114{word-spacing:-1.440000px;}
.ws91{word-spacing:-1.404000px;}
.ws104{word-spacing:-1.395000px;}
.ws137{word-spacing:-1.386000px;}
.ws38{word-spacing:-1.350000px;}
.wsec{word-spacing:-1.305000px;}
.ws3a{word-spacing:-1.296000px;}
.wse4{word-spacing:-1.275000px;}
.ws119{word-spacing:-1.260000px;}
.ws1c{word-spacing:-1.242000px;}
.ws10c{word-spacing:-1.215000px;}
.ws46{word-spacing:-1.188000px;}
.ws121{word-spacing:-1.170000px;}
.ws13{word-spacing:-1.134000px;}
.wsb4{word-spacing:-1.092000px;}
.ws76{word-spacing:-1.080000px;}
.wse8{word-spacing:-1.035000px;}
.ws37{word-spacing:-1.026000px;}
.ws63{word-spacing:-1.020000px;}
.ws115{word-spacing:-0.990000px;}
.ws39{word-spacing:-0.972000px;}
.wsb1{word-spacing:-0.966000px;}
.wsf{word-spacing:-0.960000px;}
.wseb{word-spacing:-0.945000px;}
.wsb0{word-spacing:-0.924000px;}
.wsac{word-spacing:-0.918000px;}
.wsaa{word-spacing:-0.900000px;}
.ws44{word-spacing:-0.864000px;}
.ws106{word-spacing:-0.855000px;}
.ws20{word-spacing:-0.816000px;}
.ws31{word-spacing:-0.810000px;}
.ws132{word-spacing:-0.765000px;}
.ws8c{word-spacing:-0.756000px;}
.ws8d{word-spacing:-0.720000px;}
.ws3c{word-spacing:-0.702000px;}
.ws1b{word-spacing:-0.648000px;}
.ws5f{word-spacing:-0.600000px;}
.ws17{word-spacing:-0.594000px;}
.ws10d{word-spacing:-0.585000px;}
.wsb2{word-spacing:-0.546000px;}
.ws1f{word-spacing:-0.540000px;}
.wsee{word-spacing:-0.495000px;}
.ws33{word-spacing:-0.486000px;}
.ws42{word-spacing:-0.456300px;}
.wse9{word-spacing:-0.450000px;}
.ws2f{word-spacing:-0.432000px;}
.ws35{word-spacing:-0.421200px;}
.ws109{word-spacing:-0.405000px;}
.ws43{word-spacing:-0.386100px;}
.ws3b{word-spacing:-0.378000px;}
.ws12f{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.357000px;}
.ws3e{word-spacing:-0.324000px;}
.ws101{word-spacing:-0.315000px;}
.ws22{word-spacing:-0.306000px;}
.ws90{word-spacing:-0.280800px;}
.ws40{word-spacing:-0.270000px;}
.ws45{word-spacing:-0.245700px;}
.ws100{word-spacing:-0.225000px;}
.ws1d{word-spacing:-0.216000px;}
.wsaf{word-spacing:-0.180000px;}
.wsbd{word-spacing:-0.175500px;}
.ws1e{word-spacing:-0.162000px;}
.ws79{word-spacing:-0.140400px;}
.ws120{word-spacing:-0.135000px;}
.ws2d{word-spacing:-0.108000px;}
.wsf0{word-spacing:-0.090000px;}
.ws5b{word-spacing:-0.060000px;}
.ws53{word-spacing:-0.054000px;}
.wse6{word-spacing:-0.045000px;}
.ws3f{word-spacing:-0.035100px;}
.wse{word-spacing:0.000000px;}
.wsef{word-spacing:0.045000px;}
.ws51{word-spacing:0.054000px;}
.ws7c{word-spacing:0.060000px;}
.ws118{word-spacing:0.090000px;}
.ws34{word-spacing:0.108000px;}
.ws89{word-spacing:0.120000px;}
.ws11c{word-spacing:0.135000px;}
.ws18{word-spacing:0.162000px;}
.wsd2{word-spacing:0.168000px;}
.wsed{word-spacing:0.180000px;}
.ws57{word-spacing:0.216000px;}
.wse7{word-spacing:0.225000px;}
.ws8f{word-spacing:0.240000px;}
.ws60{word-spacing:0.270000px;}
.wse5{word-spacing:0.315000px;}
.ws15{word-spacing:0.324000px;}
.ws77{word-spacing:0.360000px;}
.ws62{word-spacing:0.378000px;}
.ws11d{word-spacing:0.405000px;}
.wsb5{word-spacing:0.420000px;}
.ws1a{word-spacing:0.432000px;}
.ws41{word-spacing:0.486000px;}
.ws10e{word-spacing:0.495000px;}
.wsd1{word-spacing:0.504000px;}
.ws88{word-spacing:0.540000px;}
.wsbf{word-spacing:0.546000px;}
.ws122{word-spacing:0.585000px;}
.ws54{word-spacing:0.594000px;}
.ws108{word-spacing:0.630000px;}
.ws7e{word-spacing:0.648000px;}
.ws131{word-spacing:0.675000px;}
.ws99{word-spacing:0.702000px;}
.ws10a{word-spacing:0.720000px;}
.ws87{word-spacing:0.756000px;}
.ws130{word-spacing:0.765000px;}
.ws58{word-spacing:0.810000px;}
.ws126{word-spacing:0.855000px;}
.ws19{word-spacing:0.864000px;}
.ws16{word-spacing:0.918000px;}
.ws7a{word-spacing:0.972000px;}
.ws117{word-spacing:0.990000px;}
.wsab{word-spacing:1.020000px;}
.ws14{word-spacing:1.026000px;}
.ws103{word-spacing:1.035000px;}
.ws52{word-spacing:1.080000px;}
.wsd0{word-spacing:1.134000px;}
.ws78{word-spacing:1.188000px;}
.ws8e{word-spacing:1.242000px;}
.ws124{word-spacing:1.260000px;}
.ws64{word-spacing:1.296000px;}
.ws125{word-spacing:1.305000px;}
.ws8b{word-spacing:1.350000px;}
.ws12a{word-spacing:1.395000px;}
.ws7b{word-spacing:1.404000px;}
.ws123{word-spacing:1.440000px;}
.wsda{word-spacing:1.458000px;}
.wsdb{word-spacing:1.512000px;}
.ws127{word-spacing:1.530000px;}
.ws136{word-spacing:1.566000px;}
.ws134{word-spacing:1.575000px;}
.ws111{word-spacing:1.620000px;}
.ws59{word-spacing:1.674000px;}
.ws128{word-spacing:1.755000px;}
.ws133{word-spacing:1.800000px;}
.ws61{word-spacing:1.836000px;}
.ws113{word-spacing:1.845000px;}
.ws129{word-spacing:1.935000px;}
.ws135{word-spacing:1.944000px;}
.ws55{word-spacing:1.980000px;}
.ws56{word-spacing:1.998000px;}
.wse3{word-spacing:2.052000px;}
.ws110{word-spacing:2.115000px;}
.ws112{word-spacing:2.160000px;}
.wsad{word-spacing:2.916000px;}
.ws11a{word-spacing:3.150000px;}
.ws102{word-spacing:3.690000px;}
.ws8a{word-spacing:4.428000px;}
.wsff{word-spacing:7.695000px;}
.wsc5{word-spacing:32.554208px;}
.wsb9{word-spacing:47.464210px;}
.wsb7{word-spacing:49.643998px;}
.wsbc{word-spacing:55.062003px;}
.wsb8{word-spacing:58.506003px;}
.wsba{word-spacing:59.094003px;}
.wsa1{word-spacing:62.789998px;}
.ws9d{word-spacing:75.179998px;}
.ws9c{word-spacing:81.102008px;}
.wsa3{word-spacing:87.989998px;}
.wsc8{word-spacing:91.223992px;}
.wsc3{word-spacing:95.003992px;}
.wsc4{word-spacing:100.552202px;}
.wsc7{word-spacing:105.798002px;}
.wscc{word-spacing:118.104018px;}
.wsca{word-spacing:119.867992px;}
.ws9e{word-spacing:122.472003px;}
.wsce{word-spacing:123.899992px;}
.wsa0{word-spacing:130.031992px;}
.wscf{word-spacing:135.828008px;}
.wscd{word-spacing:139.612214px;}
.wsa6{word-spacing:147.252003px;}
.wsa4{word-spacing:162.792003px;}
.wsa8{word-spacing:167.538003px;}
.wsa7{word-spacing:183.960003px;}
.wscb{word-spacing:219.244214px;}
.wsa9{word-spacing:236.124005px;}
.wsa2{word-spacing:258.300005px;}
.wsc6{word-spacing:327.138000px;}
.wsc9{word-spacing:366.786016px;}
.ws9b{word-spacing:570.952215px;}
.wsb6{word-spacing:818.286029px;}
.wsbb{word-spacing:879.900029px;}
._3e{margin-left:-12.240000px;}
._3c{margin-left:-9.990000px;}
._3b{margin-left:-8.640000px;}
._b{margin-left:-7.569678px;}
._5{margin-left:-6.067822px;}
._2{margin-left:-4.181997px;}
._1{margin-left:-2.901661px;}
._0{margin-left:-1.776017px;}
._3{width:1.782000px;}
._6{width:3.088854px;}
._8{width:4.631621px;}
._d{width:5.635381px;}
._e{width:6.793374px;}
._3a{width:8.346017px;}
._37{width:10.395000px;}
._39{width:12.240000px;}
._38{width:13.545000px;}
._1b{width:16.866013px;}
._3d{width:17.907036px;}
._4{width:42.754176px;}
._10{width:43.950763px;}
._7{width:45.655815px;}
._c{width:46.999828px;}
._9{width:48.227974px;}
._a{width:49.954806px;}
._17{width:56.832024px;}
._28{width:74.633998px;}
._f{width:76.165791px;}
._12{width:96.144037px;}
._2c{width:97.417791px;}
._19{width:99.258009px;}
._31{width:110.880002px;}
._29{width:114.366010px;}
._11{width:116.535663px;}
._2b{width:118.818010px;}
._33{width:119.910008px;}
._30{width:126.191990px;}
._2e{width:128.070023px;}
._2f{width:133.433992px;}
._34{width:140.755811px;}
._1a{width:145.092053px;}
._14{width:156.159664px;}
._36{width:178.124325px;}
._24{width:185.280013px;}
._16{width:194.316003px;}
._18{width:198.996008px;}
._32{width:202.314018px;}
._15{width:245.658005px;}
._13{width:267.834005px;}
._2d{width:286.524001px;}
._35{width:299.976013px;}
._21{width:355.021808px;}
._25{width:400.962031px;}
._1c{width:491.826021px;}
._23{width:503.669976px;}
._27{width:550.265997px;}
._22{width:570.605974px;}
._1e{width:639.252047px;}
._2a{width:655.506047px;}
._20{width:673.411851px;}
._1f{width:704.634029px;}
._26{width:719.357976px;}
._1d{width:848.064029px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(245,130,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(206,221,228);}
.fsd{font-size:27.300001px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsc{font-size:42.000000px;}
.fse{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;}
.fsb{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y30{bottom:68.307899px;}
.y9f{bottom:68.551502px;}
.y279{bottom:68.576245px;}
.y1b6{bottom:68.611800px;}
.y23f{bottom:68.821812px;}
.y2ca{bottom:71.343265px;}
.y17f{bottom:72.171298px;}
.y2cf{bottom:73.297799px;}
.y119{bottom:74.799300px;}
.ydc{bottom:77.799300px;}
.y209{bottom:78.546298px;}
.y278{bottom:81.322495px;}
.y2f{bottom:83.307899px;}
.y9e{bottom:83.550001px;}
.y1b5{bottom:83.610299px;}
.y23e{bottom:83.820311px;}
.y2c9{bottom:84.089515px;}
.y17e{bottom:87.169798px;}
.y2ce{bottom:88.296298px;}
.y118{bottom:89.797799px;}
.y56{bottom:91.119307px;}
.ydb{bottom:92.797799px;}
.y208{bottom:93.544798px;}
.y277{bottom:94.068745px;}
.y153{bottom:95.806804px;}
.y2c8{bottom:96.835765px;}
.y2e{bottom:98.307899px;}
.y1b4{bottom:98.608798px;}
.y23d{bottom:98.818811px;}
.y17d{bottom:102.168297px;}
.y2cd{bottom:103.294798px;}
.y117{bottom:104.796298px;}
.y55{bottom:106.117807px;}
.y276{bottom:106.814995px;}
.yda{bottom:107.796298px;}
.y207{bottom:108.549300px;}
.y2c7{bottom:109.582015px;}
.y9d{bottom:110.621122px;}
.y152{bottom:110.805303px;}
.y2d{bottom:113.307899px;}
.y1b3{bottom:113.607298px;}
.y23c{bottom:113.817310px;}
.y2cc{bottom:118.293297px;}
.y275{bottom:119.561245px;}
.y116{bottom:119.794798px;}
.y54{bottom:121.116306px;}
.y2c6{bottom:122.328265px;}
.yd9{bottom:122.794798px;}
.y206{bottom:123.547799px;}
.y9c{bottom:125.619621px;}
.y151{bottom:125.803802px;}
.y1b2{bottom:128.607298px;}
.y23b{bottom:128.815809px;}
.y17c{bottom:129.228352px;}
.y274{bottom:132.307495px;}
.y2c{bottom:132.636898px;}
.y2cb{bottom:133.293297px;}
.y115{bottom:134.794798px;}
.y2c5{bottom:135.074515px;}
.y53{bottom:136.114805px;}
.yd8{bottom:137.799300px;}
.y205{bottom:138.546298px;}
.y9b{bottom:140.618120px;}
.y150{bottom:140.802302px;}
.y1b1{bottom:143.605797px;}
.y23a{bottom:143.814308px;}
.y17b{bottom:144.226851px;}
.y273{bottom:145.053745px;}
.y2c4{bottom:147.820766px;}
.y114{bottom:149.794798px;}
.y52{bottom:151.114805px;}
.yd7{bottom:152.797799px;}
.y204{bottom:153.544798px;}
.y9a{bottom:155.616620px;}
.y14f{bottom:155.800801px;}
.y272{bottom:157.799995px;}
.y1b0{bottom:158.605797px;}
.y239{bottom:158.812807px;}
.y17a{bottom:159.225350px;}
.y2c3{bottom:160.567016px;}
.y113{bottom:164.796298px;}
.y51{bottom:166.119307px;}
.yd6{bottom:167.796298px;}
.y203{bottom:168.546298px;}
.y2b{bottom:170.188813px;}
.y271{bottom:170.549995px;}
.y99{bottom:170.615119px;}
.y14e{bottom:170.799300px;}
.y2c2{bottom:173.313266px;}
.y238{bottom:173.811307px;}
.y179{bottom:174.223850px;}
.y112{bottom:179.794798px;}
.y50{bottom:181.117807px;}
.yd5{bottom:182.794798px;}
.y202{bottom:183.544798px;}
.y2a{bottom:185.187313px;}
.y98{bottom:185.613618px;}
.y14d{bottom:185.797799px;}
.y2c1{bottom:186.059516px;}
.y237{bottom:188.809806px;}
.y178{bottom:189.222349px;}
.y1af{bottom:191.644841px;}
.y111{bottom:194.794798px;}
.y4f{bottom:196.116306px;}
.yd4{bottom:197.794798px;}
.y201{bottom:198.550801px;}
.y2c0{bottom:198.805766px;}
.y29{bottom:200.185812px;}
.y97{bottom:200.612117px;}
.y14c{bottom:200.796298px;}
.y270{bottom:203.555995px;}
.y236{bottom:203.808305px;}
.y177{bottom:204.220848px;}
.y1ae{bottom:206.643340px;}
.y110{bottom:209.794798px;}
.y4e{bottom:211.114805px;}
.y2bf{bottom:211.552016px;}
.yd3{bottom:212.793297px;}
.y200{bottom:213.549300px;}
.y28{bottom:215.187313px;}
.y96{bottom:215.610616px;}
.y14b{bottom:215.794798px;}
.y26f{bottom:218.549995px;}
.y235{bottom:218.806804px;}
.y176{bottom:219.219347px;}
.y1ad{bottom:221.641839px;}
.y2be{bottom:224.298266px;}
.y10f{bottom:224.796298px;}
.y4d{bottom:226.114805px;}
.y1ff{bottom:228.547799px;}
.y27{bottom:230.185812px;}
.y95{bottom:230.609116px;}
.y14a{bottom:230.799300px;}
.y234{bottom:233.805303px;}
.y175{bottom:234.217846px;}
.y1ac{bottom:236.640338px;}
.y2bd{bottom:237.044516px;}
.y10e{bottom:239.794798px;}
.y4c{bottom:241.114805px;}
.y1fe{bottom:243.546298px;}
.y26{bottom:245.254813px;}
.y94{bottom:245.607615px;}
.y149{bottom:245.797799px;}
.yd2{bottom:245.817333px;}
.y26e{bottom:246.299995px;}
.y233{bottom:248.803802px;}
.y174{bottom:249.216346px;}
.y2bc{bottom:249.790766px;}
.y1ab{bottom:251.638838px;}
.y10d{bottom:254.805303px;}
.y4b{bottom:256.116306px;}
.y1fd{bottom:258.544798px;}
.y25{bottom:260.253313px;}
.y93{bottom:260.606114px;}
.y148{bottom:260.796298px;}
.yd1{bottom:260.815832px;}
.y26d{bottom:261.299995px;}
.y2bb{bottom:262.537017px;}
.y232{bottom:263.802302px;}
.y173{bottom:264.214845px;}
.y1aa{bottom:266.637337px;}
.y10c{bottom:269.803802px;}
.y4a{bottom:271.114805px;}
.y1fc{bottom:273.562830px;}
.y24{bottom:275.251812px;}
.y2ba{bottom:275.283267px;}
.y92{bottom:275.604613px;}
.y147{bottom:275.794798px;}
.yd0{bottom:275.814331px;}
.y231{bottom:278.800801px;}
.y172{bottom:279.213344px;}
.y1a9{bottom:281.635836px;}
.y10b{bottom:284.802302px;}
.y49{bottom:286.116306px;}
.y2b9{bottom:288.029517px;}
.y1fb{bottom:288.561329px;}
.y23{bottom:290.250311px;}
.y91{bottom:290.603112px;}
.y146{bottom:290.809829px;}
.ycf{bottom:290.812830px;}
.y26c{bottom:292.581165px;}
.y230{bottom:293.799300px;}
.y171{bottom:294.211843px;}
.y1a8{bottom:296.634335px;}
.y10a{bottom:299.800801px;}
.y2b8{bottom:300.775767px;}
.y48{bottom:301.114805px;}
.y1fa{bottom:303.559829px;}
.y90{bottom:305.601612px;}
.y145{bottom:305.808328px;}
.yce{bottom:305.811329px;}
.y26b{bottom:307.579664px;}
.y22f{bottom:308.797799px;}
.y170{bottom:309.210342px;}
.y1a7{bottom:311.632834px;}
.y2b7{bottom:313.522017px;}
.y109{bottom:314.799300px;}
.y47{bottom:316.116306px;}
.y1f9{bottom:318.558328px;}
.y8f{bottom:320.600111px;}
.y144{bottom:320.806827px;}
.ycd{bottom:320.809829px;}
.y26a{bottom:322.578163px;}
.y22e{bottom:323.796298px;}
.y16f{bottom:324.208842px;}
.y2b6{bottom:326.268267px;}
.y1a6{bottom:326.631333px;}
.y108{bottom:329.797799px;}
.y46{bottom:331.114805px;}
.y1f8{bottom:333.556827px;}
.y8e{bottom:335.598610px;}
.y143{bottom:335.805326px;}
.ycc{bottom:335.808328px;}
.y22{bottom:337.500311px;}
.y269{bottom:337.576662px;}
.y22d{bottom:338.794798px;}
.y2b5{bottom:339.014517px;}
.y16e{bottom:339.207341px;}
.y1a5{bottom:341.629833px;}
.y107{bottom:344.796298px;}
.y45{bottom:346.119284px;}
.y1f7{bottom:348.555326px;}
.y142{bottom:350.803825px;}
.ycb{bottom:350.806827px;}
.y2b4{bottom:351.760767px;}
.y268{bottom:352.575162px;}
.y22c{bottom:353.796298px;}
.y21{bottom:353.997311px;}
.y16d{bottom:354.205840px;}
.y1a4{bottom:356.628332px;}
.y106{bottom:359.794798px;}
.y44{bottom:361.117784px;}
.y8d{bottom:362.653342px;}
.y1f6{bottom:363.553825px;}
.y2b3{bottom:364.507018px;}
.y141{bottom:365.802325px;}
.yca{bottom:365.805326px;}
.y267{bottom:367.573661px;}
.y22b{bottom:368.794798px;}
.y16c{bottom:369.204339px;}
.y20{bottom:370.494311px;}
.y1a3{bottom:371.626831px;}
.y105{bottom:374.794821px;}
.y43{bottom:376.116283px;}
.y2b2{bottom:377.253268px;}
.y8c{bottom:377.651841px;}
.y1f5{bottom:378.552325px;}
.y140{bottom:380.800824px;}
.yc9{bottom:380.803825px;}
.y266{bottom:382.572160px;}
.y22a{bottom:383.800824px;}
.y16b{bottom:384.202838px;}
.y1a2{bottom:386.625330px;}
.y1f{bottom:386.991311px;}
.y104{bottom:389.797822px;}
.y2b1{bottom:389.999518px;}
.y42{bottom:391.114782px;}
.y8b{bottom:392.650340px;}
.y1f4{bottom:393.550824px;}
.y13f{bottom:395.799323px;}
.yc8{bottom:395.802325px;}
.y265{bottom:397.570659px;}
.y229{bottom:398.799323px;}
.y16a{bottom:399.201338px;}
.y1a1{bottom:401.623829px;}
.y2b0{bottom:402.745768px;}
.y1e{bottom:403.488311px;}
.y2ed{bottom:404.056827px;}
.y103{bottom:404.796321px;}
.y41{bottom:406.120785px;}
.y8a{bottom:407.648840px;}
.y1f3{bottom:408.549323px;}
.y13e{bottom:410.797822px;}
.yc7{bottom:410.800824px;}
.y264{bottom:412.569158px;}
.y228{bottom:413.797822px;}
.y169{bottom:414.199837px;}
.y2af{bottom:415.492018px;}
.y1a0{bottom:416.622329px;}
.y2ec{bottom:419.055326px;}
.y102{bottom:419.794821px;}
.y1d{bottom:419.985311px;}
.y40{bottom:421.119284px;}
.y89{bottom:422.660846px;}
.y1f2{bottom:423.547822px;}
.y13d{bottom:425.796321px;}
.yc6{bottom:425.799323px;}
.y263{bottom:427.567657px;}
.y2ae{bottom:428.238268px;}
.y227{bottom:428.796321px;}
.y168{bottom:429.198336px;}
.y19f{bottom:431.620828px;}
.y2eb{bottom:434.053825px;}
.y101{bottom:434.793320px;}
.y3f{bottom:436.117784px;}
.y1c{bottom:436.482311px;}
.y88{bottom:437.659345px;}
.y1f1{bottom:438.546321px;}
.y13c{bottom:440.794821px;}
.yc5{bottom:440.797822px;}
.y2ad{bottom:440.984518px;}
.y262{bottom:442.566157px;}
.y226{bottom:443.794821px;}
.y167{bottom:444.196835px;}
.y19e{bottom:446.619327px;}
.y2ea{bottom:449.052325px;}
.y3e{bottom:451.116283px;}
.y87{bottom:452.657845px;}
.y1b{bottom:452.979311px;}
.y1f0{bottom:453.544821px;}
.y2ac{bottom:453.730768px;}
.y13b{bottom:455.793320px;}
.yc4{bottom:455.796321px;}
.y261{bottom:457.564656px;}
.y225{bottom:458.799323px;}
.y166{bottom:459.195334px;}
.y19d{bottom:461.617826px;}
.y2e9{bottom:464.050824px;}
.y3d{bottom:466.114782px;}
.y2ab{bottom:466.477018px;}
.y86{bottom:467.656344px;}
.y100{bottom:467.794821px;}
.y1ef{bottom:468.549323px;}
.y1a{bottom:469.476311px;}
.y13a{bottom:470.793320px;}
.yc3{bottom:470.794821px;}
.y260{bottom:472.563155px;}
.y224{bottom:473.797822px;}
.y165{bottom:474.193833px;}
.y19c{bottom:476.616325px;}
.y2e8{bottom:479.049323px;}
.y2aa{bottom:479.223269px;}
.y3c{bottom:481.114782px;}
.y85{bottom:482.654843px;}
.yff{bottom:482.806827px;}
.y1ee{bottom:483.547822px;}
.yc2{bottom:485.802325px;}
.y19{bottom:485.973311px;}
.y25f{bottom:487.561654px;}
.y223{bottom:488.796321px;}
.y164{bottom:489.192333px;}
.y19b{bottom:491.614825px;}
.y2a9{bottom:491.969519px;}
.y2e7{bottom:494.047822px;}
.y3b{bottom:496.119284px;}
.y84{bottom:497.653342px;}
.yfe{bottom:497.805326px;}
.y1ed{bottom:498.546321px;}
.yc1{bottom:500.800824px;}
.y18{bottom:502.470311px;}
.y25e{bottom:502.560153px;}
.y222{bottom:503.794821px;}
.y139{bottom:503.796321px;}
.y163{bottom:504.190832px;}
.y2a8{bottom:504.715769px;}
.y19a{bottom:506.613324px;}
.y2e6{bottom:509.046321px;}
.y3a{bottom:511.117784px;}
.y83{bottom:512.651841px;}
.yfd{bottom:512.803825px;}
.y1ec{bottom:513.544821px;}
.yc0{bottom:515.799323px;}
.y2a7{bottom:517.462019px;}
.y25d{bottom:517.558653px;}
.y138{bottom:518.794821px;}
.y221{bottom:518.802325px;}
.y17{bottom:518.967311px;}
.y162{bottom:519.189331px;}
.y199{bottom:521.611823px;}
.y2e5{bottom:524.044821px;}
.y39{bottom:526.116283px;}
.y82{bottom:527.650340px;}
.yfc{bottom:527.802325px;}
.y1eb{bottom:528.546321px;}
.y2a6{bottom:530.208269px;}
.ybf{bottom:530.797822px;}
.y25c{bottom:532.557152px;}
.y220{bottom:533.800824px;}
.y137{bottom:533.803825px;}
.y161{bottom:534.187830px;}
.y16{bottom:535.464311px;}
.y198{bottom:536.610322px;}
.y2e4{bottom:539.043320px;}
.y38{bottom:541.114782px;}
.y81{bottom:542.648840px;}
.yfb{bottom:542.800824px;}
.y2a5{bottom:542.954519px;}
.y1ea{bottom:543.544821px;}
.ybe{bottom:545.796321px;}
.y25b{bottom:547.555651px;}
.y21f{bottom:548.799323px;}
.y136{bottom:548.802325px;}
.y160{bottom:549.186329px;}
.y197{bottom:551.608821px;}
.y15{bottom:551.961311px;}
.y2a4{bottom:555.700769px;}
.y37{bottom:556.116283px;}
.y80{bottom:557.647339px;}
.yfa{bottom:557.799323px;}
.y1e9{bottom:558.546321px;}
.ybd{bottom:560.794821px;}
.y2e3{bottom:560.799323px;}
.y25a{bottom:562.554150px;}
.y21e{bottom:563.797822px;}
.y135{bottom:563.800824px;}
.y15f{bottom:564.184829px;}
.y196{bottom:566.607321px;}
.y2a3{bottom:568.447019px;}
.y14{bottom:568.458311px;}
.y36{bottom:571.114782px;}
.yf9{bottom:572.797822px;}
.y1e8{bottom:573.544821px;}
.y2e2{bottom:575.797822px;}
.ybc{bottom:575.808328px;}
.y259{bottom:577.552649px;}
.y21d{bottom:578.796321px;}
.y134{bottom:578.799323px;}
.y15e{bottom:579.183328px;}
.y2a2{bottom:581.193269px;}
.y195{bottom:581.605820px;}
.y7f{bottom:584.697454px;}
.y13{bottom:584.955311px;}
.y35{bottom:586.114782px;}
.yf8{bottom:587.796321px;}
.y1e7{bottom:588.544821px;}
.ybb{bottom:590.806827px;}
.y258{bottom:592.551149px;}
.y21c{bottom:593.794821px;}
.y133{bottom:593.797822px;}
.y2a1{bottom:593.939520px;}
.y15d{bottom:594.181827px;}
.y2e1{bottom:597.546321px;}
.y7e{bottom:599.698955px;}
.y34{bottom:601.114782px;}
.y12{bottom:601.452311px;}
.yf7{bottom:602.794821px;}
.y1e6{bottom:603.550824px;}
.yba{bottom:605.805326px;}
.y2a0{bottom:606.685770px;}
.y257{bottom:607.549648px;}
.y132{bottom:608.796321px;}
.y21b{bottom:608.815786px;}
.y15c{bottom:609.180326px;}
.y7d{bottom:614.697454px;}
.y33{bottom:616.113281px;}
.yf6{bottom:617.796321px;}
.y11{bottom:617.949311px;}
.y1e5{bottom:618.549323px;}
.y2e0{bottom:619.294821px;}
.y29f{bottom:619.432020px;}
.yb9{bottom:620.803825px;}
.y256{bottom:622.548147px;}
.y131{bottom:623.794821px;}
.y21a{bottom:623.814285px;}
.y15b{bottom:624.178825px;}
.y1d3{bottom:626.614825px;}
.y7c{bottom:629.700456px;}
.y29e{bottom:632.178270px;}
.yf5{bottom:632.794821px;}
.y1e4{bottom:633.547822px;}
.y10{bottom:634.446311px;}
.yb8{bottom:635.802325px;}
.y255{bottom:637.546646px;}
.y130{bottom:638.796321px;}
.y219{bottom:638.812784px;}
.y15a{bottom:639.177325px;}
.y2df{bottom:641.043320px;}
.y1d2{bottom:641.613324px;}
.y7b{bottom:644.698955px;}
.y29d{bottom:644.924520px;}
.yf4{bottom:647.793320px;}
.y1e3{bottom:648.546321px;}
.yb7{bottom:650.800824px;}
.yf{bottom:650.943311px;}
.y254{bottom:652.546646px;}
.y12f{bottom:653.794821px;}
.y218{bottom:653.811284px;}
.y159{bottom:654.175824px;}
.y2de{bottom:656.043320px;}
.y1d1{bottom:656.611823px;}
.y29c{bottom:657.670770px;}
.y7a{bottom:659.697454px;}
.y1e2{bottom:663.544821px;}
.yb6{bottom:665.799323px;}
.ye{bottom:667.440311px;}
.y12e{bottom:668.799323px;}
.y217{bottom:668.809783px;}
.y158{bottom:669.174323px;}
.y29b{bottom:670.417020px;}
.y1d0{bottom:671.610322px;}
.y5e{bottom:673.980459px;}
.y79{bottom:674.695953px;}
.y1e1{bottom:678.555280px;}
.yb5{bottom:680.797822px;}
.yf3{bottom:680.806781px;}
.y29a{bottom:683.163270px;}
.y12d{bottom:683.797822px;}
.y216{bottom:683.808282px;}
.y253{bottom:683.817287px;}
.yd{bottom:683.937311px;}
.y157{bottom:684.172822px;}
.y1cf{bottom:686.608821px;}
.y5d{bottom:688.980459px;}
.y2dd{bottom:689.793320px;}
.y1e0{bottom:693.553780px;}
.yb4{bottom:695.796321px;}
.yf2{bottom:695.805280px;}
.y299{bottom:695.909520px;}
.y12c{bottom:698.796321px;}
.y215{bottom:698.806781px;}
.y252{bottom:698.815786px;}
.y156{bottom:699.171321px;}
.yc{bottom:700.434311px;}
.y1ce{bottom:701.607321px;}
.y78{bottom:701.762578px;}
.y5c{bottom:703.980459px;}
.y2dc{bottom:704.793320px;}
.y1df{bottom:708.552279px;}
.y298{bottom:708.655771px;}
.yb3{bottom:710.794821px;}
.yf1{bottom:710.803780px;}
.y12b{bottom:713.794821px;}
.y214{bottom:713.805280px;}
.y251{bottom:713.814285px;}
.y155{bottom:714.169821px;}
.y1cd{bottom:716.605820px;}
.y77{bottom:716.761077px;}
.y5b{bottom:718.980459px;}
.y297{bottom:721.402021px;}
.y1de{bottom:723.550778px;}
.yb2{bottom:725.796321px;}
.yf0{bottom:725.802279px;}
.y12a{bottom:728.796321px;}
.y213{bottom:728.803780px;}
.y250{bottom:728.812784px;}
.y154{bottom:729.168320px;}
.ya{bottom:730.434310px;}
.y76{bottom:731.759576px;}
.y2db{bottom:731.799277px;}
.y5a{bottom:733.983415px;}
.y296{bottom:734.148271px;}
.yb{bottom:735.534302px;}
.y1dd{bottom:738.549277px;}
.yb1{bottom:740.794821px;}
.yef{bottom:740.800778px;}
.y129{bottom:743.794821px;}
.y212{bottom:743.802279px;}
.y24f{bottom:743.811284px;}
.y1cc{bottom:746.098778px;}
.y75{bottom:746.758075px;}
.y2da{bottom:746.797776px;}
.y295{bottom:746.894521px;}
.y8{bottom:748.434311px;}
.y59{bottom:748.981914px;}
.y9{bottom:753.534302px;}
.y1dc{bottom:753.547776px;}
.yb0{bottom:755.797776px;}
.yee{bottom:755.799277px;}
.y128{bottom:758.800778px;}
.y24e{bottom:758.809783px;}
.y294{bottom:759.640771px;}
.y74{bottom:761.756574px;}
.y2d9{bottom:761.796276px;}
.y1cb{bottom:762.783278px;}
.y58{bottom:763.980413px;}
.y1db{bottom:768.546276px;}
.yaf{bottom:770.796276px;}
.yed{bottom:770.797776px;}
.y293{bottom:772.387021px;}
.y127{bottom:773.799277px;}
.y24d{bottom:773.808282px;}
.y194{bottom:774.169775px;}
.y73{bottom:776.755074px;}
.y2d8{bottom:776.794775px;}
.y57{bottom:778.978912px;}
.y1ca{bottom:779.467777px;}
.y7{bottom:781.416260px;}
.y1da{bottom:783.544775px;}
.y292{bottom:785.133271px;}
.yae{bottom:785.794775px;}
.yec{bottom:785.796276px;}
.y126{bottom:788.797776px;}
.y24c{bottom:788.806781px;}
.y193{bottom:789.168274px;}
.y72{bottom:791.753573px;}
.y2d7{bottom:791.793274px;}
.y1c9{bottom:796.152277px;}
.y291{bottom:797.879521px;}
.y1d9{bottom:798.550778px;}
.yeb{bottom:800.794775px;}
.yad{bottom:800.796276px;}
.y125{bottom:803.796276px;}
.y24b{bottom:803.805280px;}
.y71{bottom:806.752072px;}
.y2d6{bottom:806.793274px;}
.y1c8{bottom:807.397777px;}
.y290{bottom:810.625771px;}
.y1d8{bottom:813.549277px;}
.yea{bottom:815.793274px;}
.yac{bottom:815.794775px;}
.y124{bottom:818.794775px;}
.y24a{bottom:818.803780px;}
.y192{bottom:819.333271px;}
.y70{bottom:821.750571px;}
.y28f{bottom:823.372022px;}
.y1c7{bottom:824.082277px;}
.y6{bottom:826.422262px;}
.y1d7{bottom:828.547776px;}
.yab{bottom:830.794775px;}
.y123{bottom:833.800778px;}
.y249{bottom:833.802279px;}
.y2d5{bottom:833.818788px;}
.y28e{bottom:836.118272px;}
.y6f{bottom:836.749070px;}
.y191{bottom:836.773771px;}
.y1c6{bottom:840.766777px;}
.y1d6{bottom:843.546276px;}
.yaa{bottom:845.796276px;}
.ye9{bottom:848.796276px;}
.y122{bottom:848.799277px;}
.y248{bottom:848.800778px;}
.y2d4{bottom:848.817287px;}
.y28d{bottom:848.864522px;}
.y6e{bottom:851.747569px;}
.y190{bottom:854.214271px;}
.y1c5{bottom:857.451276px;}
.y1d5{bottom:858.544775px;}
.ya9{bottom:860.794775px;}
.y28c{bottom:861.610772px;}
.ye8{bottom:863.794775px;}
.y121{bottom:863.797776px;}
.y247{bottom:863.799277px;}
.y2d3{bottom:863.815786px;}
.y6d{bottom:866.746069px;}
.y5{bottom:871.428264px;}
.y18f{bottom:871.654771px;}
.y1d4{bottom:873.543274px;}
.y1c4{bottom:874.135776px;}
.y28b{bottom:874.357022px;}
.ya8{bottom:875.793274px;}
.y120{bottom:878.796276px;}
.y246{bottom:878.797776px;}
.ye7{bottom:878.799277px;}
.y2d2{bottom:878.814285px;}
.y6c{bottom:881.744568px;}
.y28a{bottom:887.103272px;}
.y18e{bottom:889.095271px;}
.y1c3{bottom:891.387276px;}
.y11f{bottom:893.794775px;}
.y245{bottom:893.796276px;}
.ye6{bottom:893.797776px;}
.y2d1{bottom:893.812784px;}
.y6b{bottom:896.744568px;}
.y289{bottom:899.849522px;}
.y18d{bottom:906.535771px;}
.y1c2{bottom:908.638776px;}
.y11e{bottom:908.794775px;}
.ye5{bottom:908.796276px;}
.ya7{bottom:908.805280px;}
.y2d0{bottom:908.811284px;}
.y288{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y187{bottom:918.358773px;}
.y20f{bottom:918.547776px;}
.ye4{bottom:923.794775px;}
.y211{bottom:923.796276px;}
.y244{bottom:923.797776px;}
.y11d{bottom:923.799277px;}
.ya6{bottom:923.803780px;}
.y6a{bottom:923.809783px;}
.y18c{bottom:923.976272px;}
.y1c1{bottom:925.323276px;}
.y287{bottom:925.342022px;}
.y31{bottom:926.409576px;}
.y186{bottom:929.604273px;}
.y20e{bottom:933.546276px;}
.y286{bottom:938.088273px;}
.y210{bottom:938.794775px;}
.y243{bottom:938.796276px;}
.y11c{bottom:938.797776px;}
.ye3{bottom:938.800778px;}
.ya5{bottom:938.802279px;}
.y69{bottom:938.808282px;}
.y18b{bottom:941.416772px;}
.y1c0{bottom:942.007776px;}
.y20d{bottom:948.544775px;}
.y285{bottom:950.834523px;}
.y242{bottom:953.794775px;}
.y11b{bottom:953.796276px;}
.ye2{bottom:953.799277px;}
.ya4{bottom:953.800778px;}
.y68{bottom:953.806781px;}
.y1bf{bottom:958.692276px;}
.y18a{bottom:958.857272px;}
.y20c{bottom:963.543274px;}
.y284{bottom:963.580773px;}
.y11a{bottom:968.794775px;}
.y241{bottom:968.796276px;}
.ye1{bottom:968.797776px;}
.ya3{bottom:968.799277px;}
.y67{bottom:968.805280px;}
.y1be{bottom:975.376775px;}
.y189{bottom:976.297772px;}
.y283{bottom:976.327023px;}
.y240{bottom:983.794775px;}
.ye0{bottom:983.796276px;}
.ya2{bottom:983.797776px;}
.y66{bottom:983.803780px;}
.y282{bottom:989.073273px;}
.y1bd{bottom:992.061275px;}
.y20b{bottom:993.715773px;}
.y188{bottom:993.738272px;}
.ydf{bottom:998.794775px;}
.ya1{bottom:998.796276px;}
.y65{bottom:998.802279px;}
.y281{bottom:1001.819523px;}
.y1bc{bottom:1008.745775px;}
.y20a{bottom:1011.156273px;}
.y185{bottom:1011.168274px;}
.ya0{bottom:1013.794775px;}
.y64{bottom:1013.800778px;}
.y280{bottom:1014.565773px;}
.y1bb{bottom:1025.430275px;}
.y27f{bottom:1027.312023px;}
.y184{bottom:1028.596773px;}
.yde{bottom:1028.794775px;}
.y63{bottom:1028.799277px;}
.y181{bottom:1037.322274px;}
.y27e{bottom:1040.058273px;}
.y1ba{bottom:1042.114775px;}
.ydd{bottom:1043.794775px;}
.y62{bottom:1043.797776px;}
.y183{bottom:1046.037274px;}
.y27d{bottom:1052.804524px;}
.y61{bottom:1058.796276px;}
.y1b9{bottom:1058.799274px;}
.y182{bottom:1063.477774px;}
.y27c{bottom:1065.550774px;}
.y60{bottom:1073.794775px;}
.y1b8{bottom:1075.483774px;}
.y27b{bottom:1078.297024px;}
.y180{bottom:1080.918274px;}
.y5f{bottom:1088.793274px;}
.y27a{bottom:1091.043274px;}
.y1b7{bottom:1092.168274px;}
.y32{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.he{height:23.842749px;}
.h7{height:28.050293px;}
.h22{height:35.394000px;}
.h10{height:36.681152px;}
.h9{height:38.826000px;}
.ha{height:38.838867px;}
.hf{height:41.158746px;}
.h1f{height:41.538000px;}
.h1e{height:42.084000px;}
.h1d{height:43.008000px;}
.h2{height:43.140000px;}
.h4{height:44.218500px;}
.h23{height:44.505000px;}
.h24{height:45.090000px;}
.h3{height:45.744000px;}
.h25{height:46.080000px;}
.h17{height:47.454000px;}
.h20{height:47.469727px;}
.h6{height:48.450256px;}
.h8{height:48.450259px;}
.hb{height:51.840000px;}
.hd{height:53.406000px;}
.h18{height:54.053971px;}
.h1a{height:54.077984px;}
.h12{height:54.084079px;}
.h15{height:54.090173px;}
.h1b{height:54.101905px;}
.h13{height:54.101997px;}
.hc{height:54.108000px;}
.h16{height:55.289997px;}
.h14{height:55.296000px;}
.h21{height:65.520000px;}
.h19{height:76.937997px;}
.h11{height:77.652000px;}
.h1c{height:87.989999px;}
.h5{height:112.164000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x8{left:140.952747px;}
.x4{left:233.456406px;}
.xa{left:238.143906px;}
.x7{left:251.453694px;}
.x12{left:300.594749px;}
.xd{left:365.962349px;}
.xc{left:415.142399px;}
.x6{left:419.515503px;}
.xe{left:430.369347px;}
.x5{left:519.134720px;}
.x3{left:584.586594px;}
.xb{left:709.016411px;}
.xf{left:753.821850px;}
.x10{left:816.003571px;}
.x11{left:817.278168px;}
.x9{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v4{vertical-align:-16.319987pt;}
.v5{vertical-align:-15.413330pt;}
.v6{vertical-align:-9.600098pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:12.725361pt;}
.v3{vertical-align:16.069312pt;}
.v1{vertical-align:18.133301pt;}
.v9{vertical-align:20.010667pt;}
.v7{vertical-align:39.983999pt;}
.ls83{letter-spacing:-4.106667pt;}
.ls75{letter-spacing:-3.936000pt;}
.lsbf{letter-spacing:-3.720000pt;}
.lsb7{letter-spacing:-3.640000pt;}
.ls9c{letter-spacing:-1.824000pt;}
.ls8b{letter-spacing:-1.754667pt;}
.lsce{letter-spacing:-1.560000pt;}
.ls87{letter-spacing:-1.418667pt;}
.lscf{letter-spacing:-1.400000pt;}
.lsc1{letter-spacing:-1.320000pt;}
.lsb8{letter-spacing:-1.200000pt;}
.lsc2{letter-spacing:-1.120000pt;}
.ls9a{letter-spacing:-1.104000pt;}
.ls31{letter-spacing:-0.960000pt;}
.lsb9{letter-spacing:-0.920000pt;}
.ls72{letter-spacing:-0.864000pt;}
.ls60{letter-spacing:-0.816000pt;}
.ls2d{letter-spacing:-0.768000pt;}
.lsc0{letter-spacing:-0.760000pt;}
.ls88{letter-spacing:-0.746667pt;}
.ls70{letter-spacing:-0.720000pt;}
.ls8f{letter-spacing:-0.709333pt;}
.lsab{letter-spacing:-0.680000pt;}
.ls2f{letter-spacing:-0.672000pt;}
.lsba{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.624000pt;}
.lsa9{letter-spacing:-0.600000pt;}
.ls45{letter-spacing:-0.576000pt;}
.lsad{letter-spacing:-0.560000pt;}
.ls4b{letter-spacing:-0.528000pt;}
.lsa7{letter-spacing:-0.520000pt;}
.ls90{letter-spacing:-0.485333pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls85{letter-spacing:-0.448000pt;}
.lsbb{letter-spacing:-0.440000pt;}
.ls61{letter-spacing:-0.432000pt;}
.lsbc{letter-spacing:-0.400000pt;}
.ls32{letter-spacing:-0.384000pt;}
.ls84{letter-spacing:-0.373333pt;}
.lsac{letter-spacing:-0.360000pt;}
.ls62{letter-spacing:-0.336000pt;}
.lsbe{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.288000pt;}
.lsaa{letter-spacing:-0.280000pt;}
.ls89{letter-spacing:-0.261333pt;}
.ls71{letter-spacing:-0.240000pt;}
.lsa5{letter-spacing:-0.200000pt;}
.ls2e{letter-spacing:-0.192000pt;}
.ls82{letter-spacing:-0.186667pt;}
.lsa6{letter-spacing:-0.160000pt;}
.ls95{letter-spacing:-0.149333pt;}
.ls4a{letter-spacing:-0.144000pt;}
.ls99{letter-spacing:-0.124800pt;}
.lsae{letter-spacing:-0.120000pt;}
.ls8a{letter-spacing:-0.112000pt;}
.ls74{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls64{letter-spacing:-0.093600pt;}
.lsa8{letter-spacing:-0.080000pt;}
.ls76{letter-spacing:-0.062400pt;}
.ls49{letter-spacing:-0.053333pt;}
.ls47{letter-spacing:-0.048000pt;}
.lsaf{letter-spacing:-0.040000pt;}
.ls63{letter-spacing:-0.031200pt;}
.lse{letter-spacing:0.000000pt;}
.ls6e{letter-spacing:0.000074pt;}
.lsa{letter-spacing:0.003554pt;}
.ls3{letter-spacing:0.011591pt;}
.ls4{letter-spacing:0.011754pt;}
.ls2{letter-spacing:0.012242pt;}
.ls55{letter-spacing:0.021421pt;}
.ls29{letter-spacing:0.023488pt;}
.ls33{letter-spacing:0.031200pt;}
.ls28{letter-spacing:0.034802pt;}
.lsa2{letter-spacing:0.040000pt;}
.lscb{letter-spacing:0.040051pt;}
.ls3a{letter-spacing:0.043204pt;}
.ls1d{letter-spacing:0.048000pt;}
.ls3e{letter-spacing:0.053333pt;}
.ls38{letter-spacing:0.057601pt;}
.ls41{letter-spacing:0.057629pt;}
.lsa0{letter-spacing:0.062378pt;}
.ls1e{letter-spacing:0.062399pt;}
.ls77{letter-spacing:0.062400pt;}
.lsa4{letter-spacing:0.080000pt;}
.ls65{letter-spacing:0.083245pt;}
.ls78{letter-spacing:0.091210pt;}
.ls5f{letter-spacing:0.093600pt;}
.ls39{letter-spacing:0.095999pt;}
.ls8{letter-spacing:0.096000pt;}
.ls40{letter-spacing:0.106667pt;}
.ls86{letter-spacing:0.112000pt;}
.ls27{letter-spacing:0.116804pt;}
.ls54{letter-spacing:0.120000pt;}
.ls48{letter-spacing:0.124800pt;}
.ls53{letter-spacing:0.124801pt;}
.ls2a{letter-spacing:0.124868pt;}
.ls4e{letter-spacing:0.136718pt;}
.ls8e{letter-spacing:0.140400pt;}
.ls7{letter-spacing:0.144000pt;}
.ls7a{letter-spacing:0.147210pt;}
.lsd{letter-spacing:0.151829pt;}
.ls4d{letter-spacing:0.156000pt;}
.ls7e{letter-spacing:0.160000pt;}
.ls9d{letter-spacing:0.187198pt;}
.ls24{letter-spacing:0.187200pt;}
.lsca{letter-spacing:0.187995pt;}
.lsb{letter-spacing:0.188613pt;}
.ls14{letter-spacing:0.192000pt;}
.lsb3{letter-spacing:0.200000pt;}
.ls96{letter-spacing:0.211204pt;}
.ls93{letter-spacing:0.213433pt;}
.ls9f{letter-spacing:0.216000pt;}
.ls5a{letter-spacing:0.216058pt;}
.ls36{letter-spacing:0.218400pt;}
.ls57{letter-spacing:0.221606pt;}
.ls9e{letter-spacing:0.227305pt;}
.ls16{letter-spacing:0.240000pt;}
.ls6c{letter-spacing:0.249598pt;}
.ls6b{letter-spacing:0.249600pt;}
.ls92{letter-spacing:0.264000pt;}
.ls1a{letter-spacing:0.265048pt;}
.ls18{letter-spacing:0.272000pt;}
.lsc9{letter-spacing:0.275994pt;}
.lsa1{letter-spacing:0.280000pt;}
.ls94{letter-spacing:0.280800pt;}
.ls8c{letter-spacing:0.287999pt;}
.ls11{letter-spacing:0.288000pt;}
.ls8d{letter-spacing:0.288003pt;}
.ls22{letter-spacing:0.311999pt;}
.ls9b{letter-spacing:0.312000pt;}
.ls6{letter-spacing:0.314202pt;}
.ls5b{letter-spacing:0.316814pt;}
.lsc{letter-spacing:0.317333pt;}
.lsb0{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.327600pt;}
.ls25{letter-spacing:0.335999pt;}
.ls10{letter-spacing:0.336000pt;}
.ls7c{letter-spacing:0.336001pt;}
.ls35{letter-spacing:0.343200pt;}
.ls1c{letter-spacing:0.343201pt;}
.lsb1{letter-spacing:0.360000pt;}
.ls20{letter-spacing:0.374400pt;}
.lsc5{letter-spacing:0.380000pt;}
.ls23{letter-spacing:0.384000pt;}
.lsc3{letter-spacing:0.400000pt;}
.ls34{letter-spacing:0.405600pt;}
.ls52{letter-spacing:0.408000pt;}
.ls3f{letter-spacing:0.422436pt;}
.ls2b{letter-spacing:0.432000pt;}
.ls5e{letter-spacing:0.436800pt;}
.lsbd{letter-spacing:0.440000pt;}
.ls59{letter-spacing:0.442667pt;}
.ls9{letter-spacing:0.450494pt;}
.ls66{letter-spacing:0.456000pt;}
.ls69{letter-spacing:0.465641pt;}
.ls6f{letter-spacing:0.468000pt;}
.ls3b{letter-spacing:0.479999pt;}
.ls15{letter-spacing:0.480000pt;}
.ls73{letter-spacing:0.499200pt;}
.lsb4{letter-spacing:0.520000pt;}
.ls6d{letter-spacing:0.527991pt;}
.ls5{letter-spacing:0.528000pt;}
.ls68{letter-spacing:0.533333pt;}
.ls79{letter-spacing:0.537595pt;}
.ls4f{letter-spacing:0.549333pt;}
.lsb5{letter-spacing:0.560000pt;}
.ls5d{letter-spacing:0.561600pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls6a{letter-spacing:0.576001pt;}
.ls5c{letter-spacing:0.586667pt;}
.ls1f{letter-spacing:0.624000pt;}
.lsa3{letter-spacing:0.640000pt;}
.ls51{letter-spacing:0.672000pt;}
.lsc8{letter-spacing:0.680000pt;}
.ls91{letter-spacing:0.683101pt;}
.ls67{letter-spacing:0.719999pt;}
.ls3c{letter-spacing:0.720000pt;}
.ls17{letter-spacing:0.725333pt;}
.lsc4{letter-spacing:0.760000pt;}
.ls56{letter-spacing:0.767999pt;}
.ls30{letter-spacing:0.768000pt;}
.ls3d{letter-spacing:0.768001pt;}
.ls7b{letter-spacing:0.800000pt;}
.ls58{letter-spacing:0.816000pt;}
.lsb6{letter-spacing:0.840000pt;}
.lsc7{letter-spacing:0.860000pt;}
.ls50{letter-spacing:0.864000pt;}
.lsc6{letter-spacing:0.880000pt;}
.ls42{letter-spacing:0.906667pt;}
.ls43{letter-spacing:0.912000pt;}
.lsb2{letter-spacing:0.920000pt;}
.ls97{letter-spacing:0.960000pt;}
.lscc{letter-spacing:1.000000pt;}
.lsd0{letter-spacing:1.008000pt;}
.ls4c{letter-spacing:1.104000pt;}
.ls37{letter-spacing:1.152000pt;}
.ls46{letter-spacing:1.173333pt;}
.ls44{letter-spacing:1.367928pt;}
.ls7d{letter-spacing:1.487999pt;}
.ls81{letter-spacing:1.488000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls19{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.lscd{letter-spacing:4.106667pt;}
.ls98{letter-spacing:5.440000pt;}
.ls26{letter-spacing:13.103993pt;}
.ls80{letter-spacing:163.370674pt;}
.ls7f{letter-spacing:176.885341pt;}
.ws3{word-spacing:-138.666667pt;}
.ws67{word-spacing:-53.882667pt;}
.ws74{word-spacing:-53.776000pt;}
.ws7{word-spacing:-48.000000pt;}
.ws2{word-spacing:-28.565333pt;}
.ws1{word-spacing:-13.393333pt;}
.ws23{word-spacing:-13.066667pt;}
.ws96{word-spacing:-12.085333pt;}
.ws4e{word-spacing:-12.000000pt;}
.wsd6{word-spacing:-11.952000pt;}
.ws70{word-spacing:-11.760000pt;}
.wsd7{word-spacing:-11.712000pt;}
.ws69{word-spacing:-11.664000pt;}
.ws71{word-spacing:-11.568000pt;}
.ws94{word-spacing:-11.520000pt;}
.ws48{word-spacing:-11.472000pt;}
.ws84{word-spacing:-11.448000pt;}
.ws65{word-spacing:-11.424000pt;}
.wsc1{word-spacing:-11.400000pt;}
.ws92{word-spacing:-11.376000pt;}
.ws8{word-spacing:-11.328000pt;}
.ws83{word-spacing:-11.280000pt;}
.ws49{word-spacing:-11.232000pt;}
.wsdd{word-spacing:-11.208000pt;}
.ws2a{word-spacing:-11.184000pt;}
.ws97{word-spacing:-11.136000pt;}
.ws6e{word-spacing:-11.112000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws6b{word-spacing:-11.088000pt;}
.ws66{word-spacing:-11.040000pt;}
.ws2c{word-spacing:-10.992000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws4a{word-spacing:-10.944000pt;}
.ws4d{word-spacing:-10.933333pt;}
.ws9{word-spacing:-10.896000pt;}
.ws4f{word-spacing:-10.848000pt;}
.ws25{word-spacing:-10.800000pt;}
.ws6c{word-spacing:-10.752000pt;}
.wsa{word-spacing:-10.704000pt;}
.wsdc{word-spacing:-10.656000pt;}
.ws6f{word-spacing:-10.608000pt;}
.ws72{word-spacing:-10.560000pt;}
.ws9a{word-spacing:-10.512000pt;}
.ws50{word-spacing:-10.464000pt;}
.ws47{word-spacing:-10.416000pt;}
.wsb{word-spacing:-10.368000pt;}
.ws93{word-spacing:-10.320000pt;}
.ws81{word-spacing:-10.272000pt;}
.ws4c{word-spacing:-10.128000pt;}
.wsfe{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.888000pt;}
.wsd4{word-spacing:-9.792000pt;}
.ws12b{word-spacing:-9.540000pt;}
.ws10f{word-spacing:-9.520000pt;}
.ws12d{word-spacing:-9.400000pt;}
.wsf2{word-spacing:-9.360000pt;}
.wsf6{word-spacing:-9.320000pt;}
.ws12c{word-spacing:-9.280000pt;}
.wsf5{word-spacing:-9.240000pt;}
.wsf7{word-spacing:-9.200000pt;}
.wse1{word-spacing:-9.160000pt;}
.wsfc{word-spacing:-9.120000pt;}
.wsf1{word-spacing:-9.080000pt;}
.wsd{word-spacing:-9.066667pt;}
.wsf8{word-spacing:-9.040000pt;}
.wsdf{word-spacing:-9.000000pt;}
.wsfa{word-spacing:-8.960000pt;}
.wsde{word-spacing:-8.920000pt;}
.ws105{word-spacing:-8.880000pt;}
.ws10b{word-spacing:-8.840000pt;}
.ws11f{word-spacing:-8.720000pt;}
.wse2{word-spacing:-8.680000pt;}
.wsf4{word-spacing:-8.640000pt;}
.ws107{word-spacing:-8.600000pt;}
.wse0{word-spacing:-8.560000pt;}
.wsfd{word-spacing:-8.480000pt;}
.ws11e{word-spacing:-8.440000pt;}
.wsf9{word-spacing:-8.400000pt;}
.wsa5{word-spacing:-8.288000pt;}
.wsfb{word-spacing:-8.240000pt;}
.ws9f{word-spacing:-8.101333pt;}
.wsf3{word-spacing:-7.960000pt;}
.ws68{word-spacing:-7.644000pt;}
.ws82{word-spacing:-7.581600pt;}
.ws80{word-spacing:-7.550400pt;}
.ws6a{word-spacing:-7.519200pt;}
.ws28{word-spacing:-7.488000pt;}
.ws24{word-spacing:-7.456800pt;}
.ws29{word-spacing:-7.425600pt;}
.wsd5{word-spacing:-7.394400pt;}
.wsc2{word-spacing:-7.363200pt;}
.ws7f{word-spacing:-7.332000pt;}
.ws2b{word-spacing:-7.300800pt;}
.ws26{word-spacing:-7.269600pt;}
.ws95{word-spacing:-7.238400pt;}
.ws4b{word-spacing:-7.207200pt;}
.ws6d{word-spacing:-7.176000pt;}
.ws86{word-spacing:-7.144800pt;}
.ws5{word-spacing:-7.141333pt;}
.ws27{word-spacing:-7.113600pt;}
.wsc{word-spacing:-7.082400pt;}
.ws73{word-spacing:-7.051200pt;}
.ws85{word-spacing:-7.020000pt;}
.ws75{word-spacing:-6.988800pt;}
.wsd3{word-spacing:-6.957600pt;}
.wsd8{word-spacing:-5.440000pt;}
.ws5a{word-spacing:-4.896000pt;}
.ws11{word-spacing:-4.746667pt;}
.wsae{word-spacing:-4.176000pt;}
.ws12e{word-spacing:-4.106667pt;}
.wsb3{word-spacing:-3.808000pt;}
.wsc0{word-spacing:-3.434667pt;}
.ws12{word-spacing:-3.413333pt;}
.wsbe{word-spacing:-3.322667pt;}
.ws10{word-spacing:-2.912000pt;}
.ws5e{word-spacing:-1.872000pt;}
.ws7d{word-spacing:-1.680000pt;}
.ws5d{word-spacing:-1.653333pt;}
.ws2e{word-spacing:-1.632000pt;}
.ws98{word-spacing:-1.584000pt;}
.wsd9{word-spacing:-1.536000pt;}
.ws30{word-spacing:-1.488000pt;}
.ws5c{word-spacing:-1.440000pt;}
.ws11b{word-spacing:-1.400000pt;}
.ws36{word-spacing:-1.392000pt;}
.wsea{word-spacing:-1.360000pt;}
.ws3d{word-spacing:-1.344000pt;}
.ws116{word-spacing:-1.320000pt;}
.ws32{word-spacing:-1.296000pt;}
.ws114{word-spacing:-1.280000pt;}
.ws91{word-spacing:-1.248000pt;}
.ws104{word-spacing:-1.240000pt;}
.ws137{word-spacing:-1.232000pt;}
.ws38{word-spacing:-1.200000pt;}
.wsec{word-spacing:-1.160000pt;}
.ws3a{word-spacing:-1.152000pt;}
.wse4{word-spacing:-1.133333pt;}
.ws119{word-spacing:-1.120000pt;}
.ws1c{word-spacing:-1.104000pt;}
.ws10c{word-spacing:-1.080000pt;}
.ws46{word-spacing:-1.056000pt;}
.ws121{word-spacing:-1.040000pt;}
.ws13{word-spacing:-1.008000pt;}
.wsb4{word-spacing:-0.970667pt;}
.ws76{word-spacing:-0.960000pt;}
.wse8{word-spacing:-0.920000pt;}
.ws37{word-spacing:-0.912000pt;}
.ws63{word-spacing:-0.906667pt;}
.ws115{word-spacing:-0.880000pt;}
.ws39{word-spacing:-0.864000pt;}
.wsb1{word-spacing:-0.858667pt;}
.wsf{word-spacing:-0.853333pt;}
.wseb{word-spacing:-0.840000pt;}
.wsb0{word-spacing:-0.821333pt;}
.wsac{word-spacing:-0.816000pt;}
.wsaa{word-spacing:-0.800000pt;}
.ws44{word-spacing:-0.768000pt;}
.ws106{word-spacing:-0.760000pt;}
.ws20{word-spacing:-0.725333pt;}
.ws31{word-spacing:-0.720000pt;}
.ws132{word-spacing:-0.680000pt;}
.ws8c{word-spacing:-0.672000pt;}
.ws8d{word-spacing:-0.640000pt;}
.ws3c{word-spacing:-0.624000pt;}
.ws1b{word-spacing:-0.576000pt;}
.ws5f{word-spacing:-0.533333pt;}
.ws17{word-spacing:-0.528000pt;}
.ws10d{word-spacing:-0.520000pt;}
.wsb2{word-spacing:-0.485333pt;}
.ws1f{word-spacing:-0.480000pt;}
.wsee{word-spacing:-0.440000pt;}
.ws33{word-spacing:-0.432000pt;}
.ws42{word-spacing:-0.405600pt;}
.wse9{word-spacing:-0.400000pt;}
.ws2f{word-spacing:-0.384000pt;}
.ws35{word-spacing:-0.374400pt;}
.ws109{word-spacing:-0.360000pt;}
.ws43{word-spacing:-0.343200pt;}
.ws3b{word-spacing:-0.336000pt;}
.ws12f{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.317333pt;}
.ws3e{word-spacing:-0.288000pt;}
.ws101{word-spacing:-0.280000pt;}
.ws22{word-spacing:-0.272000pt;}
.ws90{word-spacing:-0.249600pt;}
.ws40{word-spacing:-0.240000pt;}
.ws45{word-spacing:-0.218400pt;}
.ws100{word-spacing:-0.200000pt;}
.ws1d{word-spacing:-0.192000pt;}
.wsaf{word-spacing:-0.160000pt;}
.wsbd{word-spacing:-0.156000pt;}
.ws1e{word-spacing:-0.144000pt;}
.ws79{word-spacing:-0.124800pt;}
.ws120{word-spacing:-0.120000pt;}
.ws2d{word-spacing:-0.096000pt;}
.wsf0{word-spacing:-0.080000pt;}
.ws5b{word-spacing:-0.053333pt;}
.ws53{word-spacing:-0.048000pt;}
.wse6{word-spacing:-0.040000pt;}
.ws3f{word-spacing:-0.031200pt;}
.wse{word-spacing:0.000000pt;}
.wsef{word-spacing:0.040000pt;}
.ws51{word-spacing:0.048000pt;}
.ws7c{word-spacing:0.053333pt;}
.ws118{word-spacing:0.080000pt;}
.ws34{word-spacing:0.096000pt;}
.ws89{word-spacing:0.106667pt;}
.ws11c{word-spacing:0.120000pt;}
.ws18{word-spacing:0.144000pt;}
.wsd2{word-spacing:0.149333pt;}
.wsed{word-spacing:0.160000pt;}
.ws57{word-spacing:0.192000pt;}
.wse7{word-spacing:0.200000pt;}
.ws8f{word-spacing:0.213333pt;}
.ws60{word-spacing:0.240000pt;}
.wse5{word-spacing:0.280000pt;}
.ws15{word-spacing:0.288000pt;}
.ws77{word-spacing:0.320000pt;}
.ws62{word-spacing:0.336000pt;}
.ws11d{word-spacing:0.360000pt;}
.wsb5{word-spacing:0.373333pt;}
.ws1a{word-spacing:0.384000pt;}
.ws41{word-spacing:0.432000pt;}
.ws10e{word-spacing:0.440000pt;}
.wsd1{word-spacing:0.448000pt;}
.ws88{word-spacing:0.480000pt;}
.wsbf{word-spacing:0.485333pt;}
.ws122{word-spacing:0.520000pt;}
.ws54{word-spacing:0.528000pt;}
.ws108{word-spacing:0.560000pt;}
.ws7e{word-spacing:0.576000pt;}
.ws131{word-spacing:0.600000pt;}
.ws99{word-spacing:0.624000pt;}
.ws10a{word-spacing:0.640000pt;}
.ws87{word-spacing:0.672000pt;}
.ws130{word-spacing:0.680000pt;}
.ws58{word-spacing:0.720000pt;}
.ws126{word-spacing:0.760000pt;}
.ws19{word-spacing:0.768000pt;}
.ws16{word-spacing:0.816000pt;}
.ws7a{word-spacing:0.864000pt;}
.ws117{word-spacing:0.880000pt;}
.wsab{word-spacing:0.906667pt;}
.ws14{word-spacing:0.912000pt;}
.ws103{word-spacing:0.920000pt;}
.ws52{word-spacing:0.960000pt;}
.wsd0{word-spacing:1.008000pt;}
.ws78{word-spacing:1.056000pt;}
.ws8e{word-spacing:1.104000pt;}
.ws124{word-spacing:1.120000pt;}
.ws64{word-spacing:1.152000pt;}
.ws125{word-spacing:1.160000pt;}
.ws8b{word-spacing:1.200000pt;}
.ws12a{word-spacing:1.240000pt;}
.ws7b{word-spacing:1.248000pt;}
.ws123{word-spacing:1.280000pt;}
.wsda{word-spacing:1.296000pt;}
.wsdb{word-spacing:1.344000pt;}
.ws127{word-spacing:1.360000pt;}
.ws136{word-spacing:1.392000pt;}
.ws134{word-spacing:1.400000pt;}
.ws111{word-spacing:1.440000pt;}
.ws59{word-spacing:1.488000pt;}
.ws128{word-spacing:1.560000pt;}
.ws133{word-spacing:1.600000pt;}
.ws61{word-spacing:1.632000pt;}
.ws113{word-spacing:1.640000pt;}
.ws129{word-spacing:1.720000pt;}
.ws135{word-spacing:1.728000pt;}
.ws55{word-spacing:1.760000pt;}
.ws56{word-spacing:1.776000pt;}
.wse3{word-spacing:1.824000pt;}
.ws110{word-spacing:1.880000pt;}
.ws112{word-spacing:1.920000pt;}
.wsad{word-spacing:2.592000pt;}
.ws11a{word-spacing:2.800000pt;}
.ws102{word-spacing:3.280000pt;}
.ws8a{word-spacing:3.936000pt;}
.wsff{word-spacing:6.840000pt;}
.wsc5{word-spacing:28.937074pt;}
.wsb9{word-spacing:42.190409pt;}
.wsb7{word-spacing:44.127998pt;}
.wsbc{word-spacing:48.944002pt;}
.wsb8{word-spacing:52.005336pt;}
.wsba{word-spacing:52.528002pt;}
.wsa1{word-spacing:55.813331pt;}
.ws9d{word-spacing:66.826665pt;}
.ws9c{word-spacing:72.090674pt;}
.wsa3{word-spacing:78.213331pt;}
.wsc8{word-spacing:81.087993pt;}
.wsc3{word-spacing:84.447993pt;}
.wsc4{word-spacing:89.379735pt;}
.wsc7{word-spacing:94.042669pt;}
.wscc{word-spacing:104.981349pt;}
.wsca{word-spacing:106.549326pt;}
.ws9e{word-spacing:108.864003pt;}
.wsce{word-spacing:110.133326pt;}
.wsa0{word-spacing:115.583993pt;}
.wscf{word-spacing:120.736007pt;}
.wscd{word-spacing:124.099746pt;}
.wsa6{word-spacing:130.890669pt;}
.wsa4{word-spacing:144.704003pt;}
.wsa8{word-spacing:148.922669pt;}
.wsa7{word-spacing:163.520003pt;}
.wscb{word-spacing:194.883746pt;}
.wsa9{word-spacing:209.888004pt;}
.wsa2{word-spacing:229.600004pt;}
.wsc6{word-spacing:290.789334pt;}
.wsc9{word-spacing:326.032014pt;}
.ws9b{word-spacing:507.513080pt;}
.wsb6{word-spacing:727.365359pt;}
.wsbb{word-spacing:782.133359pt;}
._3e{margin-left:-10.880000pt;}
._3c{margin-left:-8.880000pt;}
._3b{margin-left:-7.680000pt;}
._b{margin-left:-6.728603pt;}
._5{margin-left:-5.393620pt;}
._2{margin-left:-3.717331pt;}
._1{margin-left:-2.579254pt;}
._0{margin-left:-1.578682pt;}
._3{width:1.584000pt;}
._6{width:2.745648pt;}
._8{width:4.116996pt;}
._d{width:5.009228pt;}
._e{width:6.038555pt;}
._3a{width:7.418682pt;}
._37{width:9.240000pt;}
._39{width:10.880000pt;}
._38{width:12.040000pt;}
._1b{width:14.992011pt;}
._3d{width:15.917366pt;}
._4{width:38.003712pt;}
._10{width:39.067345pt;}
._7{width:40.582946pt;}
._c{width:41.777625pt;}
._9{width:42.869311pt;}
._a{width:44.404272pt;}
._17{width:50.517354pt;}
._28{width:66.341331pt;}
._f{width:67.702926pt;}
._12{width:85.461366pt;}
._2c{width:86.593592pt;}
._19{width:88.229341pt;}
._31{width:98.560002pt;}
._29{width:101.658675pt;}
._11{width:103.587256pt;}
._2b{width:105.616009pt;}
._33{width:106.586674pt;}
._30{width:112.170658pt;}
._2e{width:113.840021pt;}
._2f{width:118.607993pt;}
._34{width:125.116276pt;}
._1a{width:128.970713pt;}
._14{width:138.808590pt;}
._36{width:158.332733pt;}
._24{width:164.693345pt;}
._16{width:172.725336pt;}
._18{width:176.885341pt;}
._32{width:179.834682pt;}
._15{width:218.362671pt;}
._13{width:238.074671pt;}
._2d{width:254.688001pt;}
._35{width:266.645345pt;}
._21{width:315.574941pt;}
._25{width:356.410694pt;}
._1c{width:437.178685pt;}
._23{width:447.706645pt;}
._27{width:489.125331pt;}
._22{width:507.205310pt;}
._1e{width:568.224041pt;}
._2a{width:582.672041pt;}
._20{width:598.588312pt;}
._1f{width:626.341359pt;}
._26{width:639.429312pt;}
._1d{width:753.834693pt;}
.fsd{font-size:24.266668pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsc{font-size:37.333333pt;}
.fse{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;}
.fsb{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y30{bottom:60.718132pt;}
.y9f{bottom:60.934668pt;}
.y279{bottom:60.956662pt;}
.y1b6{bottom:60.988267pt;}
.y23f{bottom:61.174944pt;}
.y2ca{bottom:63.416235pt;}
.y17f{bottom:64.152265pt;}
.y2cf{bottom:65.153599pt;}
.y119{bottom:66.488267pt;}
.ydc{bottom:69.154933pt;}
.y209{bottom:69.818932pt;}
.y278{bottom:72.286662pt;}
.y2f{bottom:74.051466pt;}
.y9e{bottom:74.266668pt;}
.y1b5{bottom:74.320266pt;}
.y23e{bottom:74.506943pt;}
.y2c9{bottom:74.746236pt;}
.y17e{bottom:77.484265pt;}
.y2ce{bottom:78.485599pt;}
.y118{bottom:79.820266pt;}
.y56{bottom:80.994940pt;}
.ydb{bottom:82.486933pt;}
.y208{bottom:83.150931pt;}
.y277{bottom:83.616662pt;}
.y153{bottom:85.161604pt;}
.y2c8{bottom:86.076236pt;}
.y2e{bottom:87.384799pt;}
.y1b4{bottom:87.652265pt;}
.y23d{bottom:87.838943pt;}
.y17d{bottom:90.816264pt;}
.y2cd{bottom:91.817598pt;}
.y117{bottom:93.152265pt;}
.y55{bottom:94.326939pt;}
.y276{bottom:94.946662pt;}
.yda{bottom:95.818932pt;}
.y207{bottom:96.488267pt;}
.y2c7{bottom:97.406236pt;}
.y9d{bottom:98.329886pt;}
.y152{bottom:98.493603pt;}
.y2d{bottom:100.718132pt;}
.y1b3{bottom:100.984265pt;}
.y23c{bottom:101.170942pt;}
.y2cc{bottom:105.149597pt;}
.y275{bottom:106.276662pt;}
.y116{bottom:106.484265pt;}
.y54{bottom:107.658938pt;}
.y2c6{bottom:108.736236pt;}
.yd9{bottom:109.150931pt;}
.y206{bottom:109.820266pt;}
.y9c{bottom:111.661886pt;}
.y151{bottom:111.825602pt;}
.y1b2{bottom:114.317598pt;}
.y23b{bottom:114.502941pt;}
.y17c{bottom:114.869646pt;}
.y274{bottom:117.606662pt;}
.y2c{bottom:117.899465pt;}
.y2cb{bottom:118.482930pt;}
.y115{bottom:119.817598pt;}
.y2c5{bottom:120.066236pt;}
.y53{bottom:120.990938pt;}
.yd8{bottom:122.488267pt;}
.y205{bottom:123.152265pt;}
.y9b{bottom:124.993885pt;}
.y150{bottom:125.157601pt;}
.y1b1{bottom:127.649597pt;}
.y23a{bottom:127.834941pt;}
.y17b{bottom:128.201646pt;}
.y273{bottom:128.936662pt;}
.y2c4{bottom:131.396236pt;}
.y114{bottom:133.150931pt;}
.y52{bottom:134.324271pt;}
.yd7{bottom:135.820266pt;}
.y204{bottom:136.484265pt;}
.y9a{bottom:138.325884pt;}
.y14f{bottom:138.489601pt;}
.y272{bottom:140.266663pt;}
.y1b0{bottom:140.982930pt;}
.y239{bottom:141.166940pt;}
.y17a{bottom:141.533645pt;}
.y2c3{bottom:142.726236pt;}
.y113{bottom:146.485599pt;}
.y51{bottom:147.661607pt;}
.yd6{bottom:149.152265pt;}
.y203{bottom:149.818932pt;}
.y2b{bottom:151.278945pt;}
.y271{bottom:151.599996pt;}
.y99{bottom:151.657883pt;}
.y14e{bottom:151.821600pt;}
.y2c2{bottom:154.056236pt;}
.y238{bottom:154.498939pt;}
.y179{bottom:154.865644pt;}
.y112{bottom:159.817598pt;}
.y50{bottom:160.993606pt;}
.yd5{bottom:162.484265pt;}
.y202{bottom:163.150931pt;}
.y2a{bottom:164.610944pt;}
.y98{bottom:164.989883pt;}
.y14d{bottom:165.153599pt;}
.y2c1{bottom:165.386236pt;}
.y237{bottom:167.830938pt;}
.y178{bottom:168.197643pt;}
.y1af{bottom:170.350970pt;}
.y111{bottom:173.150931pt;}
.y4f{bottom:174.325605pt;}
.yd4{bottom:175.817598pt;}
.y201{bottom:176.489601pt;}
.y2c0{bottom:176.716236pt;}
.y29{bottom:177.942944pt;}
.y97{bottom:178.321882pt;}
.y14c{bottom:178.485599pt;}
.y270{bottom:180.938663pt;}
.y236{bottom:181.162938pt;}
.y177{bottom:181.529643pt;}
.y1ae{bottom:183.682969pt;}
.y110{bottom:186.484265pt;}
.y4e{bottom:187.657604pt;}
.y2bf{bottom:188.046237pt;}
.yd3{bottom:189.149597pt;}
.y200{bottom:189.821600pt;}
.y28{bottom:191.277611pt;}
.y96{bottom:191.653881pt;}
.y14b{bottom:191.817598pt;}
.y26f{bottom:194.266663pt;}
.y235{bottom:194.494937pt;}
.y176{bottom:194.861642pt;}
.y1ad{bottom:197.014968pt;}
.y2be{bottom:199.376237pt;}
.y10f{bottom:199.818932pt;}
.y4d{bottom:200.990938pt;}
.y1ff{bottom:203.153599pt;}
.y27{bottom:204.609610pt;}
.y95{bottom:204.985881pt;}
.y14a{bottom:205.154933pt;}
.y234{bottom:207.826936pt;}
.y175{bottom:208.193641pt;}
.y1ac{bottom:210.346967pt;}
.y2bd{bottom:210.706237pt;}
.y10e{bottom:213.150931pt;}
.y4c{bottom:214.324271pt;}
.y1fe{bottom:216.485599pt;}
.y26{bottom:218.004279pt;}
.y94{bottom:218.317880pt;}
.y149{bottom:218.486933pt;}
.yd2{bottom:218.504296pt;}
.y26e{bottom:218.933329pt;}
.y233{bottom:221.158936pt;}
.y174{bottom:221.525641pt;}
.y2bc{bottom:222.036237pt;}
.y1ab{bottom:223.678967pt;}
.y10d{bottom:226.493603pt;}
.y4b{bottom:227.658938pt;}
.y1fd{bottom:229.817598pt;}
.y25{bottom:231.336278pt;}
.y93{bottom:231.649879pt;}
.y148{bottom:231.818932pt;}
.yd1{bottom:231.836295pt;}
.y26d{bottom:232.266663pt;}
.y2bb{bottom:233.366237pt;}
.y232{bottom:234.490935pt;}
.y173{bottom:234.857640pt;}
.y1aa{bottom:237.010966pt;}
.y10c{bottom:239.825602pt;}
.y4a{bottom:240.990938pt;}
.y1fc{bottom:243.166960pt;}
.y24{bottom:244.668277pt;}
.y2ba{bottom:244.696237pt;}
.y92{bottom:244.981878pt;}
.y147{bottom:245.150931pt;}
.yd0{bottom:245.168294pt;}
.y231{bottom:247.822934pt;}
.y172{bottom:248.189639pt;}
.y1a9{bottom:250.342965pt;}
.y10b{bottom:253.157601pt;}
.y49{bottom:254.325605pt;}
.y2b9{bottom:256.026237pt;}
.y1fb{bottom:256.498959pt;}
.y23{bottom:258.000276pt;}
.y91{bottom:258.313878pt;}
.y146{bottom:258.497625pt;}
.ycf{bottom:258.500294pt;}
.y26c{bottom:260.072146pt;}
.y230{bottom:261.154933pt;}
.y171{bottom:261.521638pt;}
.y1a8{bottom:263.674965pt;}
.y10a{bottom:266.489601pt;}
.y2b8{bottom:267.356237pt;}
.y48{bottom:267.657604pt;}
.y1fa{bottom:269.830959pt;}
.y90{bottom:271.645877pt;}
.y145{bottom:271.829625pt;}
.yce{bottom:271.832293pt;}
.y26b{bottom:273.404146pt;}
.y22f{bottom:274.486933pt;}
.y170{bottom:274.853638pt;}
.y1a7{bottom:277.006964pt;}
.y2b7{bottom:278.686237pt;}
.y109{bottom:279.821600pt;}
.y47{bottom:280.992272pt;}
.y1f9{bottom:283.162958pt;}
.y8f{bottom:284.977876pt;}
.y144{bottom:285.161624pt;}
.ycd{bottom:285.164292pt;}
.y26a{bottom:286.736145pt;}
.y22e{bottom:287.818932pt;}
.y16f{bottom:288.185637pt;}
.y2b6{bottom:290.016237pt;}
.y1a6{bottom:290.338963pt;}
.y108{bottom:293.153599pt;}
.y46{bottom:294.324271pt;}
.y1f8{bottom:296.494957pt;}
.y8e{bottom:298.309875pt;}
.y143{bottom:298.493623pt;}
.ycc{bottom:298.496291pt;}
.y22{bottom:300.000276pt;}
.y269{bottom:300.068144pt;}
.y22d{bottom:301.150931pt;}
.y2b5{bottom:301.346238pt;}
.y16e{bottom:301.517636pt;}
.y1a5{bottom:303.670962pt;}
.y107{bottom:306.485599pt;}
.y45{bottom:307.661586pt;}
.y1f7{bottom:309.826957pt;}
.y142{bottom:311.825623pt;}
.ycb{bottom:311.828291pt;}
.y2b4{bottom:312.676238pt;}
.y268{bottom:313.400144pt;}
.y22c{bottom:314.485599pt;}
.y21{bottom:314.664276pt;}
.y16d{bottom:314.849636pt;}
.y1a4{bottom:317.002962pt;}
.y106{bottom:319.817598pt;}
.y44{bottom:320.993585pt;}
.y8d{bottom:322.358526pt;}
.y1f6{bottom:323.158956pt;}
.y2b3{bottom:324.006238pt;}
.y141{bottom:325.157622pt;}
.yca{bottom:325.160290pt;}
.y267{bottom:326.732143pt;}
.y22b{bottom:327.817598pt;}
.y16c{bottom:328.181635pt;}
.y20{bottom:329.328276pt;}
.y1a3{bottom:330.334961pt;}
.y105{bottom:333.150952pt;}
.y43{bottom:334.325585pt;}
.y2b2{bottom:335.336238pt;}
.y8c{bottom:335.690526pt;}
.y1f5{bottom:336.490955pt;}
.y140{bottom:338.489621pt;}
.yc9{bottom:338.492289pt;}
.y266{bottom:340.064142pt;}
.y22a{bottom:341.156288pt;}
.y16b{bottom:341.513634pt;}
.y1a2{bottom:343.666960pt;}
.y1f{bottom:343.992276pt;}
.y104{bottom:346.486953pt;}
.y2b1{bottom:346.666238pt;}
.y42{bottom:347.657584pt;}
.y8b{bottom:349.022525pt;}
.y1f4{bottom:349.822954pt;}
.y13f{bottom:351.821620pt;}
.yc8{bottom:351.824288pt;}
.y265{bottom:353.396141pt;}
.y229{bottom:354.488287pt;}
.y16a{bottom:354.845633pt;}
.y1a1{bottom:356.998959pt;}
.y2b0{bottom:357.996238pt;}
.y1e{bottom:358.656276pt;}
.y2ed{bottom:359.161624pt;}
.y103{bottom:359.818952pt;}
.y41{bottom:360.996254pt;}
.y8a{bottom:362.354524pt;}
.y1f3{bottom:363.154954pt;}
.y13e{bottom:365.153620pt;}
.yc7{bottom:365.156288pt;}
.y264{bottom:366.728141pt;}
.y228{bottom:367.820286pt;}
.y169{bottom:368.177633pt;}
.y2af{bottom:369.326238pt;}
.y1a0{bottom:370.330959pt;}
.y2ec{bottom:372.493623pt;}
.y102{bottom:373.150952pt;}
.y1d{bottom:373.320276pt;}
.y40{bottom:374.328253pt;}
.y89{bottom:375.698530pt;}
.y1f2{bottom:376.486953pt;}
.y13d{bottom:378.485619pt;}
.yc6{bottom:378.488287pt;}
.y263{bottom:380.060140pt;}
.y2ae{bottom:380.656238pt;}
.y227{bottom:381.152286pt;}
.y168{bottom:381.509632pt;}
.y19f{bottom:383.662958pt;}
.y2eb{bottom:385.825623pt;}
.y101{bottom:386.482951pt;}
.y3f{bottom:387.660252pt;}
.y1c{bottom:387.984276pt;}
.y88{bottom:389.030529pt;}
.y1f1{bottom:389.818952pt;}
.y13c{bottom:391.817618pt;}
.yc5{bottom:391.820286pt;}
.y2ad{bottom:391.986238pt;}
.y262{bottom:393.392139pt;}
.y226{bottom:394.484285pt;}
.y167{bottom:394.841631pt;}
.y19e{bottom:396.994957pt;}
.y2ea{bottom:399.157622pt;}
.y3e{bottom:400.992251pt;}
.y87{bottom:402.362528pt;}
.y1b{bottom:402.648276pt;}
.y1f0{bottom:403.150952pt;}
.y2ac{bottom:403.316238pt;}
.y13b{bottom:405.149618pt;}
.yc4{bottom:405.152286pt;}
.y261{bottom:406.724139pt;}
.y225{bottom:407.821620pt;}
.y166{bottom:408.173630pt;}
.y19d{bottom:410.326957pt;}
.y2e9{bottom:412.489621pt;}
.y3d{bottom:414.324251pt;}
.y2ab{bottom:414.646239pt;}
.y86{bottom:415.694528pt;}
.y100{bottom:415.817618pt;}
.y1ef{bottom:416.488287pt;}
.y1a{bottom:417.312276pt;}
.y13a{bottom:418.482951pt;}
.yc3{bottom:418.484285pt;}
.y260{bottom:420.056138pt;}
.y224{bottom:421.153620pt;}
.y165{bottom:421.505630pt;}
.y19c{bottom:423.658956pt;}
.y2e8{bottom:425.821620pt;}
.y2aa{bottom:425.976239pt;}
.y3c{bottom:427.657584pt;}
.y85{bottom:429.026527pt;}
.yff{bottom:429.161624pt;}
.y1ee{bottom:429.820286pt;}
.yc2{bottom:431.824288pt;}
.y19{bottom:431.976276pt;}
.y25f{bottom:433.388137pt;}
.y223{bottom:434.485619pt;}
.y164{bottom:434.837629pt;}
.y19b{bottom:436.990955pt;}
.y2a9{bottom:437.306239pt;}
.y2e7{bottom:439.153620pt;}
.y3b{bottom:440.994920pt;}
.y84{bottom:442.358526pt;}
.yfe{bottom:442.493623pt;}
.y1ed{bottom:443.152286pt;}
.yc1{bottom:445.156288pt;}
.y18{bottom:446.640276pt;}
.y25e{bottom:446.720136pt;}
.y222{bottom:447.817618pt;}
.y139{bottom:447.818952pt;}
.y163{bottom:448.169628pt;}
.y2a8{bottom:448.636239pt;}
.y19a{bottom:450.322954pt;}
.y2e6{bottom:452.485619pt;}
.y3a{bottom:454.326919pt;}
.y83{bottom:455.690526pt;}
.yfd{bottom:455.825623pt;}
.y1ec{bottom:456.484285pt;}
.yc0{bottom:458.488287pt;}
.y2a7{bottom:459.966239pt;}
.y25d{bottom:460.052136pt;}
.y138{bottom:461.150952pt;}
.y221{bottom:461.157622pt;}
.y17{bottom:461.304276pt;}
.y162{bottom:461.501628pt;}
.y199{bottom:463.654954pt;}
.y2e5{bottom:465.817618pt;}
.y39{bottom:467.658918pt;}
.y82{bottom:469.022525pt;}
.yfc{bottom:469.157622pt;}
.y1eb{bottom:469.818952pt;}
.y2a6{bottom:471.296239pt;}
.ybf{bottom:471.820286pt;}
.y25c{bottom:473.384135pt;}
.y220{bottom:474.489621pt;}
.y137{bottom:474.492289pt;}
.y161{bottom:474.833627pt;}
.y16{bottom:475.968276pt;}
.y198{bottom:476.986953pt;}
.y2e4{bottom:479.149618pt;}
.y38{bottom:480.990917pt;}
.y81{bottom:482.354524pt;}
.yfb{bottom:482.489621pt;}
.y2a5{bottom:482.626239pt;}
.y1ea{bottom:483.150952pt;}
.ybe{bottom:485.152286pt;}
.y25b{bottom:486.716134pt;}
.y21f{bottom:487.821620pt;}
.y136{bottom:487.824288pt;}
.y160{bottom:488.165626pt;}
.y197{bottom:490.318952pt;}
.y15{bottom:490.632276pt;}
.y2a4{bottom:493.956239pt;}
.y37{bottom:494.325585pt;}
.y80{bottom:495.686523pt;}
.yfa{bottom:495.821620pt;}
.y1e9{bottom:496.485619pt;}
.ybd{bottom:498.484285pt;}
.y2e3{bottom:498.488287pt;}
.y25a{bottom:500.048133pt;}
.y21e{bottom:501.153620pt;}
.y135{bottom:501.156288pt;}
.y15f{bottom:501.497625pt;}
.y196{bottom:503.650952pt;}
.y2a3{bottom:505.286239pt;}
.y14{bottom:505.296276pt;}
.y36{bottom:507.657584pt;}
.yf9{bottom:509.153620pt;}
.y1e8{bottom:509.817618pt;}
.y2e2{bottom:511.820286pt;}
.ybc{bottom:511.829625pt;}
.y259{bottom:513.380133pt;}
.y21d{bottom:514.485619pt;}
.y134{bottom:514.488287pt;}
.y15e{bottom:514.829625pt;}
.y2a2{bottom:516.616239pt;}
.y195{bottom:516.982951pt;}
.y7f{bottom:519.731070pt;}
.y13{bottom:519.960276pt;}
.y35{bottom:520.990917pt;}
.yf8{bottom:522.485619pt;}
.y1e7{bottom:523.150952pt;}
.ybb{bottom:525.161624pt;}
.y258{bottom:526.712132pt;}
.y21c{bottom:527.817618pt;}
.y133{bottom:527.820286pt;}
.y2a1{bottom:527.946240pt;}
.y15d{bottom:528.161624pt;}
.y2e1{bottom:531.152286pt;}
.y7e{bottom:533.065738pt;}
.y34{bottom:534.324251pt;}
.y12{bottom:534.624276pt;}
.yf7{bottom:535.817618pt;}
.y1e6{bottom:536.489621pt;}
.yba{bottom:538.493623pt;}
.y2a0{bottom:539.276240pt;}
.y257{bottom:540.044131pt;}
.y132{bottom:541.152286pt;}
.y21b{bottom:541.169588pt;}
.y15c{bottom:541.493623pt;}
.y7d{bottom:546.397737pt;}
.y33{bottom:547.656250pt;}
.yf6{bottom:549.152286pt;}
.y11{bottom:549.288276pt;}
.y1e5{bottom:549.821620pt;}
.y2e0{bottom:550.484285pt;}
.y29f{bottom:550.606240pt;}
.yb9{bottom:551.825623pt;}
.y256{bottom:553.376131pt;}
.y131{bottom:554.484285pt;}
.y21a{bottom:554.501587pt;}
.y15b{bottom:554.825623pt;}
.y1d3{bottom:556.990955pt;}
.y7c{bottom:559.733738pt;}
.y29e{bottom:561.936240pt;}
.yf5{bottom:562.484285pt;}
.y1e4{bottom:563.153620pt;}
.y10{bottom:563.952276pt;}
.yb8{bottom:565.157622pt;}
.y255{bottom:566.708130pt;}
.y130{bottom:567.818952pt;}
.y219{bottom:567.833586pt;}
.y15a{bottom:568.157622pt;}
.y2df{bottom:569.816284pt;}
.y1d2{bottom:570.322954pt;}
.y7b{bottom:573.065738pt;}
.y29d{bottom:573.266240pt;}
.yf4{bottom:575.816284pt;}
.y1e3{bottom:576.485619pt;}
.yb7{bottom:578.489621pt;}
.yf{bottom:578.616276pt;}
.y254{bottom:580.041463pt;}
.y12f{bottom:581.150952pt;}
.y218{bottom:581.165585pt;}
.y159{bottom:581.489621pt;}
.y2de{bottom:583.149618pt;}
.y1d1{bottom:583.654954pt;}
.y29c{bottom:584.596240pt;}
.y7a{bottom:586.397737pt;}
.y1e2{bottom:589.817618pt;}
.yb6{bottom:591.821620pt;}
.ye{bottom:593.280276pt;}
.y12e{bottom:594.488287pt;}
.y217{bottom:594.497585pt;}
.y158{bottom:594.821620pt;}
.y29b{bottom:595.926240pt;}
.y1d0{bottom:596.986953pt;}
.y5e{bottom:599.093741pt;}
.y79{bottom:599.729736pt;}
.y1e1{bottom:603.160249pt;}
.yb5{bottom:605.153620pt;}
.yf3{bottom:605.161583pt;}
.y29a{bottom:607.256240pt;}
.y12d{bottom:607.820286pt;}
.y216{bottom:607.829584pt;}
.y253{bottom:607.837588pt;}
.yd{bottom:607.944276pt;}
.y157{bottom:608.153620pt;}
.y1cf{bottom:610.318952pt;}
.y5d{bottom:612.427075pt;}
.y2dd{bottom:613.149618pt;}
.y1e0{bottom:616.492249pt;}
.yb4{bottom:618.485619pt;}
.yf2{bottom:618.493583pt;}
.y299{bottom:618.586240pt;}
.y12c{bottom:621.152286pt;}
.y215{bottom:621.161583pt;}
.y252{bottom:621.169588pt;}
.y156{bottom:621.485619pt;}
.yc{bottom:622.608276pt;}
.y1ce{bottom:623.650952pt;}
.y78{bottom:623.788958pt;}
.y5c{bottom:625.760408pt;}
.y2dc{bottom:626.482951pt;}
.y1df{bottom:629.824248pt;}
.y298{bottom:629.916240pt;}
.yb3{bottom:631.817618pt;}
.yf1{bottom:631.825582pt;}
.y12b{bottom:634.484285pt;}
.y214{bottom:634.493583pt;}
.y251{bottom:634.501587pt;}
.y155{bottom:634.817618pt;}
.y1cd{bottom:636.982951pt;}
.y77{bottom:637.120957pt;}
.y5b{bottom:639.093741pt;}
.y297{bottom:641.246241pt;}
.y1de{bottom:643.156247pt;}
.yb2{bottom:645.152286pt;}
.yf0{bottom:645.157581pt;}
.y12a{bottom:647.818952pt;}
.y213{bottom:647.825582pt;}
.y250{bottom:647.833586pt;}
.y154{bottom:648.149618pt;}
.ya{bottom:649.274942pt;}
.y76{bottom:650.452956pt;}
.y2db{bottom:650.488246pt;}
.y5a{bottom:652.429702pt;}
.y296{bottom:652.576241pt;}
.yb{bottom:653.808268pt;}
.y1dd{bottom:656.488246pt;}
.yb1{bottom:658.484285pt;}
.yef{bottom:658.489580pt;}
.y129{bottom:661.150952pt;}
.y212{bottom:661.157581pt;}
.y24f{bottom:661.165585pt;}
.y1cc{bottom:663.198914pt;}
.y75{bottom:663.784956pt;}
.y2da{bottom:663.820246pt;}
.y295{bottom:663.906241pt;}
.y8{bottom:665.274943pt;}
.y59{bottom:665.761701pt;}
.y9{bottom:669.808268pt;}
.y1dc{bottom:669.820246pt;}
.yb0{bottom:671.820246pt;}
.yee{bottom:671.821580pt;}
.y128{bottom:674.489580pt;}
.y24e{bottom:674.497585pt;}
.y294{bottom:675.236241pt;}
.y74{bottom:677.116955pt;}
.y2d9{bottom:677.152245pt;}
.y1cb{bottom:678.029580pt;}
.y58{bottom:679.093701pt;}
.y1db{bottom:683.152245pt;}
.yaf{bottom:685.152245pt;}
.yed{bottom:685.153579pt;}
.y293{bottom:686.566241pt;}
.y127{bottom:687.821580pt;}
.y24d{bottom:687.829584pt;}
.y194{bottom:688.150911pt;}
.y73{bottom:690.448954pt;}
.y2d8{bottom:690.484244pt;}
.y57{bottom:692.425700pt;}
.y1ca{bottom:692.860247pt;}
.y7{bottom:694.592232pt;}
.y1da{bottom:696.484244pt;}
.y292{bottom:697.896241pt;}
.yae{bottom:698.484244pt;}
.yec{bottom:698.485578pt;}
.y126{bottom:701.153579pt;}
.y24c{bottom:701.161583pt;}
.y193{bottom:701.482910pt;}
.y72{bottom:703.780954pt;}
.y2d7{bottom:703.816243pt;}
.y1c9{bottom:707.690913pt;}
.y291{bottom:709.226241pt;}
.y1d9{bottom:709.822914pt;}
.yeb{bottom:711.817578pt;}
.yad{bottom:711.818912pt;}
.y125{bottom:714.485578pt;}
.y24b{bottom:714.493583pt;}
.y71{bottom:717.112953pt;}
.y2d6{bottom:717.149577pt;}
.y1c8{bottom:717.686913pt;}
.y290{bottom:720.556241pt;}
.y1d8{bottom:723.154913pt;}
.yea{bottom:725.149577pt;}
.yac{bottom:725.150911pt;}
.y124{bottom:727.817578pt;}
.y24a{bottom:727.825582pt;}
.y192{bottom:728.296241pt;}
.y70{bottom:730.444952pt;}
.y28f{bottom:731.886241pt;}
.y1c7{bottom:732.517579pt;}
.y6{bottom:734.597566pt;}
.y1d7{bottom:736.486912pt;}
.yab{bottom:738.484244pt;}
.y123{bottom:741.156247pt;}
.y249{bottom:741.157581pt;}
.y2d5{bottom:741.172256pt;}
.y28e{bottom:743.216241pt;}
.y6f{bottom:743.776951pt;}
.y191{bottom:743.798908pt;}
.y1c6{bottom:747.348246pt;}
.y1d6{bottom:749.818912pt;}
.yaa{bottom:751.818912pt;}
.ye9{bottom:754.485578pt;}
.y122{bottom:754.488246pt;}
.y248{bottom:754.489580pt;}
.y2d4{bottom:754.504255pt;}
.y28d{bottom:754.546242pt;}
.y6e{bottom:757.108951pt;}
.y190{bottom:759.301574pt;}
.y1c5{bottom:762.178912pt;}
.y1d5{bottom:763.150911pt;}
.ya9{bottom:765.150911pt;}
.y28c{bottom:765.876242pt;}
.ye8{bottom:767.817578pt;}
.y121{bottom:767.820246pt;}
.y247{bottom:767.821580pt;}
.y2d3{bottom:767.836254pt;}
.y6d{bottom:770.440950pt;}
.y5{bottom:774.602901pt;}
.y18f{bottom:774.804241pt;}
.y1d4{bottom:776.482910pt;}
.y1c4{bottom:777.009579pt;}
.y28b{bottom:777.206242pt;}
.ya8{bottom:778.482910pt;}
.y120{bottom:781.152245pt;}
.y246{bottom:781.153579pt;}
.ye7{bottom:781.154913pt;}
.y2d2{bottom:781.168254pt;}
.y6c{bottom:783.772949pt;}
.y28a{bottom:788.536242pt;}
.y18e{bottom:790.306908pt;}
.y1c3{bottom:792.344246pt;}
.y11f{bottom:794.484244pt;}
.y245{bottom:794.485578pt;}
.ye6{bottom:794.486912pt;}
.y2d1{bottom:794.500253pt;}
.y6b{bottom:797.106283pt;}
.y289{bottom:799.866242pt;}
.y18d{bottom:805.809575pt;}
.y1c2{bottom:807.678912pt;}
.y11e{bottom:807.817578pt;}
.ye5{bottom:807.818912pt;}
.ya7{bottom:807.826916pt;}
.y2d0{bottom:807.832252pt;}
.y288{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y187{bottom:816.318909pt;}
.y20f{bottom:816.486912pt;}
.ye4{bottom:821.150911pt;}
.y211{bottom:821.152245pt;}
.y244{bottom:821.153579pt;}
.y11d{bottom:821.154913pt;}
.ya6{bottom:821.158915pt;}
.y6a{bottom:821.164251pt;}
.y18c{bottom:821.312241pt;}
.y1c1{bottom:822.509579pt;}
.y287{bottom:822.526242pt;}
.y31{bottom:823.475179pt;}
.y186{bottom:826.314909pt;}
.y20e{bottom:829.818912pt;}
.y286{bottom:833.856242pt;}
.y210{bottom:834.484244pt;}
.y243{bottom:834.485578pt;}
.y11c{bottom:834.486912pt;}
.ye3{bottom:834.489580pt;}
.ya5{bottom:834.490914pt;}
.y69{bottom:834.496251pt;}
.y18b{bottom:836.814908pt;}
.y1c0{bottom:837.340245pt;}
.y20d{bottom:843.150911pt;}
.y285{bottom:845.186242pt;}
.y242{bottom:847.817578pt;}
.y11b{bottom:847.818912pt;}
.ye2{bottom:847.821580pt;}
.ya4{bottom:847.822914pt;}
.y68{bottom:847.828250pt;}
.y1bf{bottom:852.170912pt;}
.y18a{bottom:852.317575pt;}
.y20c{bottom:856.482910pt;}
.y284{bottom:856.516242pt;}
.y11a{bottom:861.150911pt;}
.y241{bottom:861.152245pt;}
.ye1{bottom:861.153579pt;}
.ya3{bottom:861.154913pt;}
.y67{bottom:861.160249pt;}
.y1be{bottom:867.001578pt;}
.y189{bottom:867.820242pt;}
.y283{bottom:867.846243pt;}
.y240{bottom:874.484244pt;}
.ye0{bottom:874.485578pt;}
.ya2{bottom:874.486912pt;}
.y66{bottom:874.492249pt;}
.y282{bottom:879.176243pt;}
.y1bd{bottom:881.832245pt;}
.y20b{bottom:883.302910pt;}
.y188{bottom:883.322908pt;}
.ydf{bottom:887.817578pt;}
.ya1{bottom:887.818912pt;}
.y65{bottom:887.824248pt;}
.y281{bottom:890.506243pt;}
.y1bc{bottom:896.662911pt;}
.y20a{bottom:898.805576pt;}
.y185{bottom:898.816243pt;}
.ya0{bottom:901.150911pt;}
.y64{bottom:901.156247pt;}
.y280{bottom:901.836243pt;}
.y1bb{bottom:911.493578pt;}
.y27f{bottom:913.166243pt;}
.y184{bottom:914.308243pt;}
.yde{bottom:914.484244pt;}
.y63{bottom:914.488246pt;}
.y181{bottom:922.064244pt;}
.y27e{bottom:924.496243pt;}
.y1ba{bottom:926.324244pt;}
.ydd{bottom:927.817578pt;}
.y62{bottom:927.820246pt;}
.y183{bottom:929.810910pt;}
.y27d{bottom:935.826243pt;}
.y61{bottom:941.152245pt;}
.y1b9{bottom:941.154911pt;}
.y182{bottom:945.313577pt;}
.y27c{bottom:947.156243pt;}
.y60{bottom:954.484244pt;}
.y1b8{bottom:955.985577pt;}
.y27b{bottom:958.486243pt;}
.y180{bottom:960.816243pt;}
.y5f{bottom:967.816243pt;}
.y27a{bottom:969.816243pt;}
.y1b7{bottom:970.816243pt;}
.y32{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.he{height:21.193555pt;}
.h7{height:24.933594pt;}
.h22{height:31.461333pt;}
.h10{height:32.605469pt;}
.h9{height:34.512000pt;}
.ha{height:34.523438pt;}
.hf{height:36.585552pt;}
.h1f{height:36.922667pt;}
.h1e{height:37.408000pt;}
.h1d{height:38.229333pt;}
.h2{height:38.346667pt;}
.h4{height:39.305333pt;}
.h23{height:39.560000pt;}
.h24{height:40.080000pt;}
.h3{height:40.661333pt;}
.h25{height:40.960000pt;}
.h17{height:42.181333pt;}
.h20{height:42.195312pt;}
.h6{height:43.066895pt;}
.h8{height:43.066897pt;}
.hb{height:46.080000pt;}
.hd{height:47.472000pt;}
.h18{height:48.047974pt;}
.h1a{height:48.069319pt;}
.h12{height:48.074736pt;}
.h15{height:48.080154pt;}
.h1b{height:48.090582pt;}
.h13{height:48.090664pt;}
.hc{height:48.096000pt;}
.h16{height:49.146664pt;}
.h14{height:49.152000pt;}
.h21{height:58.240000pt;}
.h19{height:68.389330pt;}
.h11{height:69.024000pt;}
.h1c{height:78.213332pt;}
.h5{height:99.701333pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x8{left:125.291331pt;}
.x4{left:207.516805pt;}
.xa{left:211.683472pt;}
.x7{left:223.514394pt;}
.x12{left:267.195333pt;}
.xd{left:325.299866pt;}
.xc{left:369.015466pt;}
.x6{left:372.902669pt;}
.xe{left:382.550531pt;}
.x5{left:461.453084pt;}
.x3{left:519.632528pt;}
.xb{left:630.236810pt;}
.xf{left:670.063867pt;}
.x10{left:725.336507pt;}
.x11{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; }
  