
    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_4a7e4c12770c34fd1678b9d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d00960830f7dae02934b0b95.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_05564501533fcd9cd7b70ab8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_e3406c8129b8e223f0c82daa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_3611aaccb5cd87b0009b50bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160882;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_fba48492324b986e3963b44d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.027000;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_f3406126745d11fce80f0670.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.009000;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_9d841d87f71d7f1b1260baff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006361;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_c6258198765c867ab67ab505.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003000;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_e239f9242c3ebde1f7e3a6e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.734000;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_d65cdfbc049174067ffe3b36.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.022000;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_10de0ba33af111760c1d445f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.998000;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_a73779f960378abe1fdcdad1.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_268b8a0bbd2b49dda89163cd.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.302000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4ffaa290d9c1f8ac8dc3df06.woff2')format("woff");}.ff11{font-family:ff11;line-height:3.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a3730c18270b988f3d421152.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.883000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_518bb5e763f75947e7f0f0dd.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,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);}
.v11{vertical-align:-52.388400px;}
.v13{vertical-align:-41.498212px;}
.v8{vertical-align:-21.090000px;}
.va{vertical-align:-18.366000px;}
.v5{vertical-align:-14.628000px;}
.v4{vertical-align:-13.266000px;}
.v17{vertical-align:-12.246000px;}
.v3{vertical-align:-9.180000px;}
.v2{vertical-align:-7.482000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:4.760135px;}
.v10{vertical-align:6.130321px;}
.ve{vertical-align:9.518377px;}
.v18{vertical-align:11.903260px;}
.v7{vertical-align:14.284535px;}
.v15{vertical-align:16.669391px;}
.v12{vertical-align:18.372000px;}
.v6{vertical-align:21.082885px;}
.vf{vertical-align:24.488377px;}
.vb{vertical-align:28.912944px;}
.v9{vertical-align:31.974000px;}
.v16{vertical-align:32.996612px;}
.v1{vertical-align:34.687494px;}
.vc{vertical-align:84.022944px;}
.vd{vertical-align:102.388944px;}
.ls3{letter-spacing:-1.019988px;}
.ls65{letter-spacing:-0.917989px;}
.ls66{letter-spacing:-0.839976px;}
.ls69{letter-spacing:-0.629982px;}
.ls1{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.509994px;}
.ls67{letter-spacing:-0.419988px;}
.ls0{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000004px;}
.ls4c{letter-spacing:0.051084px;}
.ls60{letter-spacing:0.052200px;}
.ls5e{letter-spacing:0.052832px;}
.ls3c{letter-spacing:0.069467px;}
.ls26{letter-spacing:0.073087px;}
.ls32{letter-spacing:0.078319px;}
.lsd{letter-spacing:0.084319px;}
.ls2e{letter-spacing:0.093041px;}
.ls30{letter-spacing:0.109190px;}
.ls1a{letter-spacing:0.144288px;}
.lsb{letter-spacing:0.150398px;}
.ls27{letter-spacing:0.150534px;}
.ls64{letter-spacing:0.154163px;}
.ls24{letter-spacing:0.159744px;}
.ls55{letter-spacing:0.165298px;}
.ls2c{letter-spacing:0.165334px;}
.ls10{letter-spacing:0.171334px;}
.ls41{letter-spacing:0.239065px;}
.ls4e{letter-spacing:0.243336px;}
.ls2a{letter-spacing:0.267357px;}
.lse{letter-spacing:0.273357px;}
.ls51{letter-spacing:0.307898px;}
.ls68{letter-spacing:0.419988px;}
.ls2{letter-spacing:0.611993px;}
.ls3f{letter-spacing:0.845058px;}
.ls43{letter-spacing:0.845362px;}
.ls5a{letter-spacing:0.846075px;}
.ls53{letter-spacing:0.847862px;}
.ls57{letter-spacing:1.177653px;}
.ls50{letter-spacing:1.187058px;}
.ls52{letter-spacing:1.440319px;}
.ls42{letter-spacing:2.760517px;}
.ls4d{letter-spacing:2.781342px;}
.ls61{letter-spacing:2.787342px;}
.lsf{letter-spacing:2.830641px;}
.ls2b{letter-spacing:2.836641px;}
.ls4f{letter-spacing:2.881321px;}
.ls46{letter-spacing:2.887321px;}
.ls45{letter-spacing:3.046232px;}
.ls44{letter-spacing:3.096517px;}
.ls47{letter-spacing:3.102517px;}
.ls63{letter-spacing:3.117342px;}
.ls62{letter-spacing:3.123342px;}
.ls14{letter-spacing:3.172641px;}
.ls36{letter-spacing:3.178641px;}
.ls40{letter-spacing:3.223321px;}
.lsc{letter-spacing:3.224609px;}
.ls3e{letter-spacing:3.229321px;}
.ls2f{letter-spacing:3.372209px;}
.ls13{letter-spacing:3.560609px;}
.ls1c{letter-spacing:3.566609px;}
.ls5b{letter-spacing:8.261903px;}
.ls1d{letter-spacing:8.338402px;}
.ls1f{letter-spacing:8.343502px;}
.ls59{letter-spacing:8.481200px;}
.ls18{letter-spacing:8.522000px;}
.ls17{letter-spacing:8.527100px;}
.ls20{letter-spacing:8.567899px;}
.ls56{letter-spacing:8.603599px;}
.ls1b{letter-spacing:8.623999px;}
.ls7{letter-spacing:8.644398px;}
.ls19{letter-spacing:8.680098px;}
.ls5c{letter-spacing:8.827996px;}
.ls54{letter-spacing:11.270867px;}
.ls37{letter-spacing:11.338641px;}
.ls39{letter-spacing:11.408566px;}
.ls49{letter-spacing:11.419090px;}
.ls12{letter-spacing:14.121734px;}
.lsa{letter-spacing:14.131934px;}
.ls5{letter-spacing:14.135447px;}
.ls22{letter-spacing:14.137034px;}
.ls16{letter-spacing:14.157433px;}
.ls21{letter-spacing:14.208433px;}
.ls11{letter-spacing:14.310432px;}
.ls5f{letter-spacing:14.343342px;}
.ls25{letter-spacing:14.473630px;}
.ls1e{letter-spacing:14.907125px;}
.ls6{letter-spacing:16.993000px;}
.ls8{letter-spacing:16.998100px;}
.ls15{letter-spacing:17.028700px;}
.ls3a{letter-spacing:17.067342px;}
.ls2d{letter-spacing:17.210428px;}
.ls29{letter-spacing:17.458641px;}
.ls28{letter-spacing:17.510609px;}
.ls33{letter-spacing:21.266750px;}
.ls31{letter-spacing:21.559641px;}
.ls9{letter-spacing:25.565999px;}
.ls58{letter-spacing:25.683298px;}
.ls3d{letter-spacing:43.870232px;}
.ls4a{letter-spacing:44.212232px;}
.ls34{letter-spacing:45.073270px;}
.ls48{letter-spacing:59.276603px;}
.ls4b{letter-spacing:909.675342px;}
.ls23{letter-spacing:1252.198468px;}
.ls38{letter-spacing:1616.206641px;}
.ls3b{letter-spacing:1624.708641px;}
.ls5d{letter-spacing:2052.256656px;}
.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;}
}
.ws1d{word-spacing:-50.999400px;}
.ws1e{word-spacing:-36.959265px;}
.wse{word-spacing:-35.699400px;}
.ws10{word-spacing:-32.894613px;}
.ws11{word-spacing:-22.449936px;}
.ws1{word-spacing:-13.986000px;}
.ws64{word-spacing:-13.716000px;}
.ws2{word-spacing:-13.500000px;}
.ws43{word-spacing:-13.446000px;}
.ws5{word-spacing:-12.749850px;}
.ws39{word-spacing:-12.698851px;}
.wsf{word-spacing:-12.494853px;}
.ws7{word-spacing:-12.239856px;}
.ws6{word-spacing:-11.729862px;}
.ws37{word-spacing:-11.249850px;}
.ws38{word-spacing:-11.024853px;}
.ws3{word-spacing:-10.667695px;}
.ws5e{word-spacing:-10.499700px;}
.ws5f{word-spacing:-10.289706px;}
.ws62{word-spacing:-10.079712px;}
.ws63{word-spacing:-9.869718px;}
.ws60{word-spacing:-9.659724px;}
.ws61{word-spacing:-9.449730px;}
.wsd{word-spacing:-8.746353px;}
.ws12{word-spacing:-5.431436px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:2.641769px;}
.ws9{word-spacing:2.748868px;}
.wsa{word-spacing:4.105452px;}
.ws1a{word-spacing:4.350249px;}
.ws16{word-spacing:4.355349px;}
.ws4{word-spacing:4.444200px;}
.ws42{word-spacing:4.600800px;}
.ws28{word-spacing:5.352805px;}
.ws17{word-spacing:5.445197px;}
.ws1b{word-spacing:5.562684px;}
.ws27{word-spacing:5.688805px;}
.ws29{word-spacing:5.694805px;}
.ws1c{word-spacing:5.735230px;}
.ws23{word-spacing:8.070805px;}
.ws13{word-spacing:8.117230px;}
.ws14{word-spacing:8.163197px;}
.ws19{word-spacing:8.234716px;}
.ws15{word-spacing:8.240716px;}
.ws26{word-spacing:8.412805px;}
.ws22{word-spacing:8.416952px;}
.ws18{word-spacing:8.453230px;}
.ws24{word-spacing:10.255979px;}
.ws25{word-spacing:10.261079px;}
.ws5b{word-spacing:71.967540px;}
.ws3b{word-spacing:74.913019px;}
.ws21{word-spacing:76.677598px;}
.ws3e{word-spacing:83.784383px;}
.ws41{word-spacing:84.121878px;}
.ws5c{word-spacing:97.797196px;}
.ws5a{word-spacing:97.819696px;}
.ws59{word-spacing:105.249097px;}
.ws66{word-spacing:107.998560px;}
.ws3c{word-spacing:109.974034px;}
.ws32{word-spacing:118.752103px;}
.ws44{word-spacing:119.761891px;}
.ws5d{word-spacing:123.239857px;}
.ws4c{word-spacing:123.626852px;}
.ws45{word-spacing:127.663298px;}
.ws2c{word-spacing:139.707756px;}
.ws2b{word-spacing:144.802596px;}
.ws4d{word-spacing:149.456507px;}
.ws55{word-spacing:152.583966px;}
.ws35{word-spacing:153.515453px;}
.ws3d{word-spacing:156.381915px;}
.ws2a{word-spacing:156.726805px;}
.ws2d{word-spacing:165.867788px;}
.ws36{word-spacing:166.439281px;}
.ws3f{word-spacing:172.113705px;}
.ws40{word-spacing:172.118205px;}
.ws20{word-spacing:172.260673px;}
.ws58{word-spacing:175.198239px;}
.ws57{word-spacing:178.413621px;}
.ws56{word-spacing:191.314949px;}
.ws2f{word-spacing:191.697444px;}
.ws34{word-spacing:197.736363px;}
.ws65{word-spacing:203.497806px;}
.ws2e{word-spacing:210.003200px;}
.ws46{word-spacing:215.997120px;}
.ws67{word-spacing:217.446101px;}
.ws47{word-spacing:219.394319px;}
.ws33{word-spacing:241.849275px;}
.ws51{word-spacing:256.244583px;}
.ws4f{word-spacing:256.924074px;}
.ws4b{word-spacing:263.619985px;}
.ws53{word-spacing:269.172911px;}
.ws54{word-spacing:282.074239px;}
.ws50{word-spacing:298.127193px;}
.ws4e{word-spacing:299.488877px;}
.ws52{word-spacing:300.123498px;}
.ws49{word-spacing:302.503967px;}
.ws30{word-spacing:410.942965px;}
.ws4a{word-spacing:528.963447px;}
.ws48{word-spacing:567.716930px;}
.ws1f{word-spacing:656.474477px;}
.ws3a{word-spacing:703.812120px;}
.ws31{word-spacing:983.079734px;}
.wsb{word-spacing:1239.698515px;}
.ws8{word-spacing:1501.391736px;}
._1{margin-left:-3.839980px;}
._0{margin-left:-1.920020px;}
._6{width:1.116647px;}
._4{width:2.224800px;}
._7{width:3.350304px;}
._5{width:4.363200px;}
._2{width:5.457555px;}
._9{width:6.909800px;}
._3{width:8.068153px;}
._8{width:9.246144px;}
._e{width:10.368178px;}
._f{width:11.413666px;}
._d{width:13.933036px;}
._a{width:14.937724px;}
._11{width:16.044411px;}
._1b{width:17.176598px;}
._c{width:18.206786px;}
._b{width:19.298173px;}
._1c{width:22.062340px;}
._1d{width:23.118028px;}
._35{width:26.118059px;}
._10{width:29.319555px;}
._12{width:31.946024px;}
._34{width:40.990095px;}
._7b{width:72.397043px;}
._c9{width:82.073334px;}
._67{width:89.820143px;}
._77{width:94.381742px;}
._71{width:95.664224px;}
._ba{width:102.207137px;}
._68{width:104.028576px;}
._69{width:106.389848px;}
._72{width:108.538553px;}
._be{width:113.033993px;}
._7f{width:116.359449px;}
._5f{width:120.098899px;}
._70{width:122.033873px;}
._76{width:123.410855px;}
._2d{width:125.576407px;}
._7e{width:128.801783px;}
._7c{width:130.039266px;}
._6c{width:134.201711px;}
._6d{width:135.732174px;}
._6b{width:138.337155px;}
._6a{width:139.592639px;}
._48{width:142.966618px;}
._9a{width:144.964256px;}
._56{width:151.654486px;}
._23{width:153.965251px;}
._b8{width:160.341862px;}
._4a{width:162.514688px;}
._52{width:164.688804px;}
._74{width:165.804789px;}
._79{width:167.379768px;}
._75{width:168.682599px;}
._73{width:171.051523px;}
._49{width:174.101752px;}
._8a{width:175.983654px;}
._21{width:177.391065px;}
._3a{width:182.065224px;}
._6e{width:183.705551px;}
._b6{width:185.919521px;}
._36{width:188.993577px;}
._b2{width:190.032710px;}
._4e{width:191.188951px;}
._58{width:192.349935px;}
._4c{width:193.402921px;}
._39{width:196.084886px;}
._5a{width:199.459841px;}
._3c{width:202.947294px;}
._51{width:204.406345px;}
._50{width:206.088056px;}
._38{width:208.072726px;}
._4d{width:209.323709px;}
._af{width:210.794745px;}
._5b{width:212.353239px;}
._7d{width:213.845952px;}
._b1{width:215.050209px;}
._ab{width:216.595416px;}
._9f{width:218.062592px;}
._55{width:221.892041px;}
._b3{width:223.685169px;}
._b7{width:224.952001px;}
._8b{width:226.847546px;}
._8c{width:228.241313px;}
._c3{width:229.393441px;}
._b0{width:233.562309px;}
._59{width:235.099365px;}
._4b{width:237.448334px;}
._37{width:239.536306px;}
._80{width:240.845592px;}
._5c{width:243.581752px;}
._3d{width:246.826209px;}
._5d{width:248.882485px;}
._3b{width:252.464634px;}
._57{width:254.071112px;}
._53{width:255.247748px;}
._14{width:256.593034px;}
._b4{width:258.894959px;}
._3f{width:260.184183px;}
._6f{width:262.690649px;}
._78{width:264.432126px;}
._a6{width:266.937522px;}
._a8{width:268.170691px;}
._a4{width:269.195411px;}
._3e{width:270.833389px;}
._8e{width:275.065264px;}
._9e{width:276.404315px;}
._a9{width:279.653271px;}
._a7{width:281.190088px;}
._bd{width:283.617718px;}
._20{width:286.315732px;}
._5e{width:288.031963px;}
._bb{width:290.165131px;}
._a3{width:293.724584px;}
._b5{width:295.151065px;}
._4f{width:297.727182px;}
._c8{width:300.404646px;}
._ae{width:302.941536px;}
._82{width:304.231944px;}
._85{width:305.289429px;}
._c0{width:307.363184px;}
._26{width:311.483499px;}
._ac{width:312.920068px;}
._94{width:314.775303px;}
._83{width:316.557279px;}
._87{width:318.213257px;}
._60{width:320.103035px;}
._a5{width:323.791921px;}
._7a{width:324.956319px;}
._b9{width:327.604632px;}
._54{width:328.695769px;}
._bc{width:330.259596px;}
._40{width:334.948534px;}
._16{width:342.357587px;}
._93{width:345.302896px;}
._30{width:347.642668px;}
._1f{width:354.313232px;}
._aa{width:355.720257px;}
._9d{width:363.329656px;}
._28{width:371.737695px;}
._99{width:374.269010px;}
._c2{width:377.518110px;}
._ad{width:379.713937px;}
._2c{width:382.305510px;}
._2b{width:383.482539px;}
._31{width:384.620827px;}
._43{width:386.794494px;}
._92{width:389.163811px;}
._89{width:393.249757px;}
._41{width:396.381518px;}
._33{width:399.702671px;}
._91{width:401.617493px;}
._2f{width:402.899780px;}
._47{width:404.012147px;}
._a2{width:407.209809px;}
._45{width:411.287668px;}
._a1{width:414.412974px;}
._81{width:416.113952px;}
._1a{width:417.461586px;}
._13{width:419.437059px;}
._c6{width:420.618392px;}
._c1{width:432.453234px;}
._15{width:435.146350px;}
._62{width:444.018080px;}
._61{width:445.019415px;}
._29{width:447.484989px;}
._2e{width:449.089512px;}
._17{width:450.486645px;}
._86{width:455.848422px;}
._63{width:457.039824px;}
._c7{width:460.609502px;}
._c4{width:465.899136px;}
._c5{width:468.700251px;}
._84{width:477.673131px;}
._2a{width:484.054046px;}
._9c{width:486.443514px;}
._88{width:488.504487px;}
._64{width:490.884955px;}
._44{width:494.313909px;}
._32{width:503.358788px;}
._18{width:513.265308px;}
._22{width:515.913621px;}
._25{width:518.343589px;}
._46{width:520.143565px;}
._27{width:521.493547px;}
._1e{width:523.962736px;}
._a0{width:530.686924px;}
._65{width:531.943685px;}
._42{width:533.049393px;}
._96{width:540.213297px;}
._9b{width:556.516580px;}
._90{width:578.966780px;}
._19{width:588.029660px;}
._98{width:591.935093px;}
._24{width:657.378235px;}
._66{width:717.775755px;}
._bf{width:760.809356px;}
._95{width:786.126018px;}
._8d{width:1587.550123px;}
._97{width:1673.617685px;}
._8f{width:1686.523513px;}
.fc3{color:rgb(130,122,156);}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(163,92,81);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:25.499400px;}
.fs14{font-size:27.996600px;}
.fs10{font-size:33.994800px;}
.fs12{font-size:35.699400px;}
.fsb{font-size:35.995200px;}
.fse{font-size:39.000600px;}
.fsd{font-size:41.998800px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:44.999400px;}
.fsc{font-size:47.999400px;}
.fs6{font-size:48.000000px;}
.fsf{font-size:50.999400px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:71.999400px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fsa{font-size:101.999400px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:42.179400px;}
.yaa{bottom:42.187021px;}
.y6{bottom:66.525004px;}
.y39{bottom:67.597501px;}
.ya9{bottom:76.535833px;}
.y236{bottom:79.257887px;}
.y2c9{bottom:82.237907px;}
.y20b{bottom:82.573200px;}
.y20a{bottom:82.574192px;}
.y244{bottom:83.680099px;}
.y26b{bottom:83.764248px;}
.y208{bottom:84.018750px;}
.y38{bottom:84.097501px;}
.y213{bottom:84.954300px;}
.y308{bottom:85.294350px;}
.y313{bottom:85.721658px;}
.y20f{bottom:86.400000px;}
.y1dd{bottom:87.590550px;}
.yf9{bottom:87.592275px;}
.y395{bottom:87.601202px;}
.y1ab{bottom:87.846066px;}
.y78{bottom:90.907050px;}
.y358{bottom:90.917007px;}
.y1aa{bottom:91.418755px;}
.ya8{bottom:94.564121px;}
.y3cd{bottom:95.509576px;}
.y5{bottom:97.125005px;}
.y235{bottom:97.284900px;}
.y306{bottom:98.816486px;}
.y312{bottom:99.243172px;}
.y399{bottom:99.421764px;}
.y2c8{bottom:100.266194px;}
.y394{bottom:101.121665px;}
.y14a{bottom:101.536950px;}
.y243{bottom:101.708387px;}
.y307{bottom:103.492800px;}
.y357{bottom:104.438521px;}
.y1dc{bottom:107.320437px;}
.y3cc{bottom:108.946042px;}
.y305{bottom:112.336950px;}
.ya7{bottom:112.592408px;}
.y311{bottom:112.764686px;}
.y207{bottom:113.103696px;}
.y398{bottom:113.367465px;}
.y393{bottom:114.643179px;}
.y234{bottom:115.314750px;}
.y356{bottom:117.874987px;}
.y2c7{bottom:118.294482px;}
.y242{bottom:119.735400px;}
.y149{bottom:121.266918px;}
.y127{bottom:121.691250px;}
.y3cb{bottom:122.466505px;}
.y210{bottom:124.071982px;}
.y303{bottom:125.773886px;}
.yd4{bottom:126.539851px;}
.y1db{bottom:127.220297px;}
.y397{bottom:127.229169px;}
.y2ac{bottom:127.308331px;}
.y392{bottom:128.079645px;}
.y304{bottom:130.450350px;}
.ya6{bottom:130.535272px;}
.y173{bottom:130.620605px;}
.y206{bottom:131.046560px;}
.y355{bottom:131.395450px;}
.y148{bottom:134.788112px;}
.y67{bottom:135.724744px;}
.y433{bottom:135.810070px;}
.y3ca{bottom:135.988019px;}
.y2c6{bottom:136.237346px;}
.y1a9{bottom:136.999469px;}
.y26a{bottom:137.763750px;}
.y23{bottom:139.264499px;}
.y302{bottom:139.294350px;}
.y310{bottom:139.721616px;}
.y396{bottom:141.174871px;}
.y126{bottom:141.421628px;}
.y391{bottom:141.600109px;}
.y171{bottom:142.781100px;}
.yf8{bottom:143.036272px;}
.y354{bottom:144.916964px;}
.y2ab{bottom:145.251194px;}
.y1da{bottom:147.204531px;}
.y147{bottom:148.223808px;}
.ya5{bottom:148.563560px;}
.y205{bottom:149.074848px;}
.y3c9{bottom:151.209434px;}
.y233{bottom:151.285500px;}
.y66{bottom:151.456547px;}
.y300{bottom:152.816570px;}
.y30f{bottom:153.242079px;}
.y2c5{bottom:154.265634px;}
.y125{bottom:154.942823px;}
.y172{bottom:155.026500px;}
.y390{bottom:155.121622px;}
.y432{bottom:156.814173px;}
.y301{bottom:157.492500px;}
.y353{bottom:158.438478px;}
.yf7{bottom:161.064560px;}
.y2aa{bottom:163.279482px;}
.y2ff{bottom:166.338084px;}
.y3c8{bottom:166.346852px;}
.ya4{bottom:166.591848px;}
.y30e{bottom:166.763593px;}
.y204{bottom:167.103136px;}
.y1d9{bottom:167.103265px;}
.y65{bottom:167.189551px;}
.y146{bottom:168.208042px;}
.y124{bottom:168.378519px;}
.y38f{bottom:168.643136px;}
.y352{bottom:171.873894px;}
.y1a8{bottom:172.970621px;}
.y269{bottom:173.736560px;}
.y431{bottom:177.818276px;}
.yf6{bottom:179.092848px;}
.y2fe{bottom:179.773500px;}
.y3c7{bottom:179.867315px;}
.y2a9{bottom:181.307770px;}
.yd3{bottom:182.069272px;}
.y38e{bottom:182.078552px;}
.y64{bottom:182.921354px;}
.ya3{bottom:184.535987px;}
.y203{bottom:185.046000px;}
.y351{bottom:185.395407px;}
.y1d8{bottom:187.002000px;}
.y232{bottom:187.257605px;}
.y145{bottom:188.107901px;}
.y123{bottom:188.362752px;}
.y2c4{bottom:190.236786px;}
.y1a7{bottom:190.998908px;}
.y268{bottom:191.764848px;}
.y2fc{bottom:193.294855px;}
.y3c6{bottom:193.388829px;}
.y30d{bottom:193.720523px;}
.y38d{bottom:195.600066px;}
.y1a{bottom:196.933500px;}
.yf5{bottom:197.036987px;}
.y2fd{bottom:197.971500px;}
.y265{bottom:198.652480px;}
.y63{bottom:198.738356px;}
.y430{bottom:198.823654px;}
.y350{bottom:198.915871px;}
.y53{bottom:199.163250px;}
.y2a8{bottom:199.250634px;}
.yd2{bottom:200.097560px;}
.y144{bottom:201.629096px;}
.y122{bottom:201.799573px;}
.ya2{bottom:202.563000px;}
.y202{bottom:203.074500px;}
.y231{bottom:205.285893px;}
.y3c5{bottom:206.910343px;}
.y1d7{bottom:206.985564px;}
.y2fb{bottom:207.241607px;}
.y30c{bottom:207.242036px;}
.y170{bottom:207.921856px;}
.y2c3{bottom:208.265074px;}
.y1a6{bottom:208.941772px;}
.y38c{bottom:209.120530px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y267{bottom:209.708987px;}
.y264{bottom:212.172943px;}
.y34f{bottom:212.437385px;}
.y52{bottom:212.683500px;}
.y62{bottom:214.470160px;}
.yf4{bottom:215.064000px;}
.y212{bottom:216.083824px;}
.y214{bottom:216.679919px;}
.y2a7{bottom:217.278922px;}
.yd1{bottom:218.041699px;}
.y16e{bottom:219.826500px;}
.y42f{bottom:219.827757px;}
.y3c4{bottom:220.345759px;}
.ya1{bottom:220.591500px;}
.y30b{bottom:220.762500px;}
.y143{bottom:221.527831px;}
.y121{bottom:221.783807px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y38b{bottom:222.642043px;}
.y20d{bottom:223.057952px;}
.y216{bottom:223.142957px;}
.y230{bottom:223.314181px;}
.y30a{bottom:225.439500px;}
.y34e{bottom:225.873851px;}
.y2c2{bottom:226.293362px;}
.y1a5{bottom:226.970060px;}
.y215{bottom:227.735146px;}
.y266{bottom:227.736000px;}
.y1d6{bottom:229.435500px;}
.y61{bottom:230.203163px;}
.y16f{bottom:232.072500px;}
.yf3{bottom:233.092500px;}
.y3c3{bottom:233.867273px;}
.y20c{bottom:234.113179px;}
.y2fa{bottom:234.283584px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y142{bottom:235.049025px;}
.y2a6{bottom:235.307210px;}
.yd0{bottom:236.069987px;}
.y38a{bottom:236.078509px;}
.y201{bottom:239.051449px;}
.y34d{bottom:239.394315px;}
.y42e{bottom:240.747711px;}
.y22f{bottom:241.257045px;}
.y120{bottom:241.682542px;}
.y2c1{bottom:244.236226px;}
.y1a4{bottom:244.998348px;}
.y60{bottom:245.934966px;}
.y3c2{bottom:247.388786px;}
.y37{bottom:247.426501px;}
.y2f9{bottom:247.719000px;}
.y263{bottom:249.165364px;}
.y389{bottom:249.598973px;}
.y309{bottom:252.396000px;}
.y34c{bottom:252.915828px;}
.y2a5{bottom:253.250074px;}
.ycf{bottom:254.097000px;}
.y141{bottom:254.948885px;}
.y11f{bottom:255.203736px;}
.ya0{bottom:256.571069px;}
.y200{bottom:257.079736px;}
.y22e{bottom:259.285333px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y3c1{bottom:260.909250px;}
.y42d{bottom:261.751813px;}
.y5f{bottom:261.751969px;}
.y2c0{bottom:262.264514px;}
.y1a3{bottom:262.942487px;}
.y388{bottom:263.120487px;}
.y34b{bottom:266.437342px;}
.y11e{bottom:268.724931px;}
.yf2{bottom:269.066060px;}
.y2a4{bottom:271.278362px;}
.yce{bottom:272.041500px;}
.y262{bottom:272.466053px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y3c0{bottom:274.345716px;}
.y9f{bottom:274.599357px;}
.y140{bottom:274.933119px;}
.y2f8{bottom:275.107888px;}
.y1ff{bottom:275.108024px;}
.y387{bottom:276.642000px;}
.y5e{bottom:277.484972px;}
.y34a{bottom:279.872758px;}
.y2bf{bottom:280.292801px;}
.y1a2{bottom:280.969500px;}
.y11d{bottom:282.160627px;}
.y42c{bottom:282.755916px;}
.y16c{bottom:284.967856px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y3bf{bottom:287.866180px;}
.y2a3{bottom:289.306650px;}
.y386{bottom:290.077416px;}
.y1d5{bottom:291.855000px;}
.y9e{bottom:292.542221px;}
.y1fe{bottom:293.050888px;}
.y2f7{bottom:293.052027px;}
.y5d{bottom:293.216775px;}
.y349{bottom:293.394272px;}
.y211{bottom:294.403603px;}
.y13f{bottom:294.831853px;}
.y22d{bottom:295.257759px;}
.y261{bottom:295.766743px;}
.y16d{bottom:296.872500px;}
.y16a{bottom:296.874626px;}
.y1a1{bottom:298.998000px;}
.y3be{bottom:301.387693px;}
.y11c{bottom:302.144860px;}
.y385{bottom:303.598930px;}
.y42b{bottom:303.761294px;}
.y348{bottom:306.914735px;}
.y2a2{bottom:307.249514px;}
.ycd{bottom:308.099060px;}
.y13e{bottom:308.353048px;}
.y5c{bottom:308.948579px;}
.y16b{bottom:309.118500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y9d{bottom:310.570509px;}
.y1fd{bottom:311.079176px;}
.y2f6{bottom:311.080315px;}
.y1d4{bottom:311.584830px;}
.y36{bottom:311.776501px;}
.y22c{bottom:313.284772px;}
.y292{bottom:313.624500px;}
.y3bd{bottom:314.909207px;}
.y11b{bottom:315.581681px;}
.y2be{bottom:316.263953px;}
.y384{bottom:317.119394px;}
.y260{bottom:319.067432px;}
.y347{bottom:320.436249px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.yf1{bottom:324.596757px;}
.y5b{bottom:324.681582px;}
.y42a{bottom:324.765397px;}
.y1d3{bottom:325.020525px;}
.y2a1{bottom:325.277801px;}
.y209{bottom:326.888093px;}
.y13d{bottom:328.252908px;}
.y3bc{bottom:328.344623px;}
.y9c{bottom:328.598797px;}
.y11a{bottom:329.102876px;}
.y1fc{bottom:329.107464px;}
.y2f5{bottom:329.108603px;}
.y383{bottom:330.640907px;}
.y22b{bottom:331.313060px;}
.y291{bottom:333.355397px;}
.y346{bottom:333.872715px;}
.y2bd{bottom:334.292241px;}
.y1a0{bottom:334.969848px;}
.y5a{bottom:340.498584px;}
.y3bb{bottom:341.866137px;}
.y25f{bottom:342.368121px;}
.yf0{bottom:342.539621px;}
.y119{bottom:342.624071px;}
.y2a0{bottom:343.306089px;}
.y382{bottom:344.077374px;}
.y1d2{bottom:345.004759px;}
.y169{bottom:345.176158px;}
.y429{bottom:345.769500px;}
.y9b{bottom:346.541661px;}
.y2f4{bottom:347.051467px;}
.y1fb{bottom:347.051603px;}
.y345{bottom:347.393179px;}
.y11{bottom:348.133500px;}
.y13c{bottom:348.237141px;}
.y22a{bottom:349.257199px;}
.y2bc{bottom:352.235105px;}
.y19f{bottom:352.998136px;}
.y3ba{bottom:355.387650px;}
.y59{bottom:356.230388px;}
.y290{bottom:356.656086px;}
.y167{bottom:357.080105px;}
.y381{bottom:357.597837px;}
.yef{bottom:360.567908px;}
.y344{bottom:360.914692px;}
.y29f{bottom:361.248953px;}
.y118{bottom:362.522805px;}
.ycc{bottom:363.544333px;}
.y9a{bottom:364.569949px;}
.y1d1{bottom:364.904619px;}
.y1fa{bottom:365.078616px;}
.y2f3{bottom:365.079755px;}
.y25e{bottom:365.668811px;}
.y229{bottom:367.285487px;}
.y13b{bottom:368.135876px;}
.y19d{bottom:368.815500px;}
.y3b9{bottom:368.908114px;}
.y168{bottom:369.241500px;}
.y165{bottom:369.241971px;}
.y2bb{bottom:370.263393px;}
.y19e{bottom:370.941000px;}
.y19c{bottom:370.942487px;}
.y380{bottom:371.119351px;}
.y58{bottom:371.963391px;}
.y343{bottom:374.436206px;}
.y117{bottom:376.044000px;}
.y35{bottom:376.126501px;}
.yee{bottom:378.596196px;}
.y29e{bottom:379.277241px;}
.y28f{bottom:379.956776px;}
.y166{bottom:381.486000px;}
.ycb{bottom:381.572621px;}
.y13a{bottom:381.657071px;}
.y3b8{bottom:382.344580px;}
.y1f9{bottom:383.106904px;}
.y2f2{bottom:383.108043px;}
.y37f{bottom:384.640865px;}
.y1d0{bottom:384.803353px;}
.y428{bottom:384.974206px;}
.y228{bottom:385.312500px;}
.y10{bottom:386.785499px;}
.y19a{bottom:386.844000px;}
.y57{bottom:387.695194px;}
.y342{bottom:387.871622px;}
.y2ba{bottom:388.291681px;}
.y19b{bottom:388.969500px;}
.y199{bottom:388.970060px;}
.y28e{bottom:393.477971px;}
.y139{bottom:395.092766px;}
.y3b7{bottom:395.865044px;}
.y116{bottom:395.944915px;}
.yed{bottom:396.539060px;}
.y37e{bottom:398.076281px;}
.yca{bottom:399.600908px;}
.y99{bottom:400.541100px;}
.y2f1{bottom:401.050907px;}
.y341{bottom:401.393136px;}
.y427{bottom:402.917143px;}
.y227{bottom:403.257000px;}
.y56{bottom:403.426998px;}
.y1cf{bottom:404.787587px;}
.y164{bottom:405.214398px;}
.y2b9{bottom:406.234545px;}
.yf{bottom:408.044999px;}
.y25d{bottom:408.955426px;}
.y3b6{bottom:409.386558px;}
.y37d{bottom:411.597794px;}
.yec{bottom:414.567348px;}
.y340{bottom:414.913600px;}
.y138{bottom:415.077000px;}
.y29d{bottom:415.248393px;}
.y426{bottom:416.438657px;}
.y28d{bottom:416.778660px;}
.yc9{bottom:417.543772px;}
.y1ce{bottom:418.308782px;}
.y115{bottom:418.479000px;}
.y98{bottom:418.569388px;}
.y2f0{bottom:419.079194px;}
.y1f8{bottom:419.079331px;}
.y55{bottom:419.244000px;}
.y163{bottom:423.242686px;}
.y3b5{bottom:424.183785px;}
.y2b8{bottom:424.262833px;}
.y198{bottom:424.942487px;}
.y37c{bottom:425.118258px;}
.y41e{bottom:427.067432px;}
.y33f{bottom:428.435113px;}
.y425{bottom:429.960171px;}
.y28c{bottom:430.299855px;}
.yeb{bottom:432.595636px;}
.y29c{bottom:433.276681px;}
.y137{bottom:434.976564px;}
.yc8{bottom:435.572060px;}
.y97{bottom:436.597676px;}
.y1f7{bottom:437.106343px;}
.y2ef{bottom:437.107482px;}
.y1cd{bottom:438.208641px;}
.y37b{bottom:438.639772px;}
.y54{bottom:438.718500px;}
.y3b4{bottom:438.894914px;}
.y226{bottom:439.313621px;}
.y25c{bottom:440.929500px;}
.y33e{bottom:441.871579px;}
.y196{bottom:442.971630px;}
.y424{bottom:443.395587px;}
.y34{bottom:443.407500px;}
.y28b{bottom:443.736675px;}
.y41d{bottom:450.368121px;}
.yea{bottom:450.538500px;}
.y29b{bottom:451.304969px;}
.y37a{bottom:452.076238px;}
.y197{bottom:453.345000px;}
.yc7{bottom:453.600348px;}
.y3b3{bottom:453.691092px;}
.y162{bottom:453.940821px;}
.y96{bottom:454.541815px;}
.y1f6{bottom:455.050482px;}
.y33d{bottom:455.392043px;}
.y225{bottom:457.257759px;}
.y136{bottom:457.426500px;}
.y1cc{bottom:458.107376px;}
.y2b7{bottom:460.235259px;}
.y423{bottom:461.423572px;}
.y379{bottom:465.596701px;}
.y28a{bottom:467.121739px;}
.y3b2{bottom:467.212605px;}
.ye9{bottom:468.567750px;}
.y33c{bottom:468.913557px;}
.y29a{bottom:469.247833px;}
.y193{bottom:471.288906px;}
.y191{bottom:471.457764px;}
.yc6{bottom:471.544487px;}
.y1cb{bottom:471.628571px;}
.y95{bottom:472.570103px;}
.y2ee{bottom:473.078634px;}
.y1f5{bottom:473.078770px;}
.y114{bottom:473.079194px;}
.y41c{bottom:473.668811px;}
.y192{bottom:473.670221px;}
.y161{bottom:474.860061px;}
.y422{bottom:474.945085px;}
.y190{bottom:475.030630px;}
.y2b6{bottom:478.262272px;}
.y378{bottom:479.118215px;}
.y18e{bottom:480.217866px;}
.y3b1{bottom:480.734119px;}
.y33b{bottom:482.435070px;}
.y18d{bottom:483.790779px;}
.ye{bottom:484.864502px;}
.y299{bottom:487.276121px;}
.y421{bottom:488.466599px;}
.y18f{bottom:488.891440px;}
.yc5{bottom:489.571500px;}
.y289{bottom:490.422428px;}
.y94{bottom:490.597116px;}
.y2ed{bottom:491.106922px;}
.y1f4{bottom:491.107058px;}
.y113{bottom:491.107482px;}
.y1ca{bottom:491.527305px;}
.y377{bottom:492.639729px;}
.y224{bottom:493.313060px;}
.y3b0{bottom:494.169535px;}
.y33a{bottom:495.870487px;}
.y2b5{bottom:496.290560px;}
.y195{bottom:496.886100px;}
.y41b{bottom:496.969500px;}
.y160{bottom:497.056912px;}
.y194{bottom:501.730920px;}
.y420{bottom:501.902015px;}
.yd{bottom:502.864502px;}
.ye8{bottom:504.538500px;}
.y33{bottom:504.826501px;}
.y1c9{bottom:505.048500px;}
.y298{bottom:505.304408px;}
.y376{bottom:506.075145px;}
.yc4{bottom:507.600000px;}
.y3af{bottom:507.691049px;}
.y2ec{bottom:509.049786px;}
.y1f3{bottom:509.049922px;}
.y112{bottom:509.050346px;}
.y339{bottom:510.667714px;}
.y223{bottom:511.257199px;}
.y288{bottom:513.723117px;}
.y2b4{bottom:514.234699px;}
.y41a{bottom:516.955426px;}
.y25b{bottom:519.079500px;}
.y15f{bottom:519.335533px;}
.y375{bottom:519.596659px;}
.y41f{bottom:519.930000px;}
.y51{bottom:520.697550px;}
.yc{bottom:520.864502px;}
.y3ae{bottom:521.212562px;}
.y297{bottom:523.247272px;}
.y1c7{bottom:525.033533px;}
.y338{bottom:525.463891px;}
.y93{bottom:526.569543px;}
.y135{bottom:527.074487px;}
.y2eb{bottom:527.078074px;}
.y1f2{bottom:527.078210px;}
.y111{bottom:527.078634px;}
.y287{bottom:527.159938px;}
.y222{bottom:529.285487px;}
.y2b3{bottom:532.262987px;}
.y374{bottom:533.117122px;}
.y3ad{bottom:534.733026px;}
.y25a{bottom:538.811399px;}
.yb{bottom:538.864499px;}
.y337{bottom:540.261118px;}
.ye7{bottom:540.598275px;}
.y286{bottom:540.681133px;}
.y296{bottom:541.275560px;}
.yc2{bottom:541.446000px;}
.y1c8{bottom:541.530564px;}
.yc3{bottom:543.571500px;}
.yc1{bottom:543.573199px;}
.y18c{bottom:543.912696px;}
.y92{bottom:544.597831px;}
.y134{bottom:545.101500px;}
.y2ea{bottom:545.106362px;}
.y1f1{bottom:545.106498px;}
.y373{bottom:546.638636px;}
.y221{bottom:547.312500px;}
.y3ac{bottom:548.169492px;}
.y419{bottom:548.929500px;}
.y2b2{bottom:550.290000px;}
.y336{bottom:554.972248px;}
.y50{bottom:555.222450px;}
.ya{bottom:556.864499px;}
.y295{bottom:559.303848px;}
.y372{bottom:560.075102px;}
.y3ab{bottom:561.689956px;}
.y18b{bottom:561.855560px;}
.y259{bottom:562.112088px;}
.y91{bottom:562.540694px;}
.y133{bottom:563.045700px;}
.y1f0{bottom:563.049362px;}
.y110{bottom:563.049786px;}
.y15e{bottom:563.641262px;}
.y1c6{bottom:563.980500px;}
.y285{bottom:563.981822px;}
.y220{bottom:565.257000px;}
.y335{bottom:568.493761px;}
.y32{bottom:572.107500px;}
.y371{bottom:573.595566px;}
.y3aa{bottom:575.211470px;}
.y294{bottom:577.247987px;}
.y284{bottom:577.503017px;}
.y407{bottom:577.507754px;}
.y3eb{bottom:578.188135px;}
.y18a{bottom:579.883848px;}
.y90{bottom:580.568982px;}
.y2e9{bottom:581.077514px;}
.y1ef{bottom:581.077650px;}
.y10f{bottom:581.078074px;}
.y334{bottom:582.014225px;}
.y258{bottom:585.412777px;}
.y4f{bottom:586.006500px;}
.y370{bottom:587.117079px;}
.y3a9{bottom:590.433935px;}
.y283{bottom:591.024212px;}
.y3ea{bottom:591.708598px;}
.y406{bottom:592.729169px;}
.y15d{bottom:594.426483px;}
.y293{bottom:595.275000px;}
.y333{bottom:595.535739px;}
.ye6{bottom:596.042272px;}
.y189{bottom:597.912136px;}
.y8f{bottom:598.597270px;}
.y132{bottom:599.101500px;}
.yc0{bottom:599.102621px;}
.y2e8{bottom:599.105801px;}
.y1ee{bottom:599.105938px;}
.y10e{bottom:599.106362px;}
.y36f{bottom:600.638593px;}
.y21f{bottom:601.315257px;}
.y3e9{bottom:605.145064px;}
.y3a8{bottom:605.570302px;}
.y31{bottom:606.457501px;}
.y405{bottom:607.866587px;}
.y257{bottom:608.713467px;}
.y332{bottom:608.972205px;}
.ye5{bottom:614.070560px;}
.y36e{bottom:614.074009px;}
.y282{bottom:614.324901px;}
.y188{bottom:615.855000px;}
.y8e{bottom:616.540134px;}
.y4e{bottom:616.708500px;}
.ybf{bottom:617.046759px;}
.y2e7{bottom:617.048665px;}
.y1ed{bottom:617.048801px;}
.y10d{bottom:617.049226px;}
.y3e8{bottom:618.666578px;}
.y21e{bottom:619.258121px;}
.y3a7{bottom:620.791717px;}
.y30{bottom:621.457501px;}
.y404{bottom:622.152478px;}
.y331{bottom:622.492669px;}
.y36d{bottom:627.595523px;}
.y281{bottom:627.761722px;}
.y418{bottom:629.632917px;}
.y256{bottom:632.014156px;}
.ye4{bottom:632.098848px;}
.y3e7{bottom:632.187042px;}
.y187{bottom:633.883500px;}
.y8d{bottom:634.568422px;}
.ybe{bottom:635.073772px;}
.y2e6{bottom:635.076953px;}
.y1ec{bottom:635.077089px;}
.y10c{bottom:635.077514px;}
.y131{bottom:635.078634px;}
.y330{bottom:636.014182px;}
.y2f{bottom:636.457500px;}
.y21d{bottom:637.286408px;}
.y403{bottom:637.374943px;}
.y4d{bottom:637.713000px;}
.y2d9{bottom:638.645443px;}
.y36c{bottom:641.115987px;}
.y280{bottom:641.282916px;}
.y1c5{bottom:642.814487px;}
.y9{bottom:645.510000px;}
.y3e6{bottom:645.708555px;}
.y32f{bottom:649.535696px;}
.ye3{bottom:650.042987px;}
.y15c{bottom:651.062105px;}
.y402{bottom:652.511311px;}
.y8c{bottom:652.596710px;}
.y417{bottom:652.933607px;}
.ybd{bottom:653.102060px;}
.y2e5{bottom:653.105241px;}
.y1eb{bottom:653.105377px;}
.y10b{bottom:653.105801px;}
.y130{bottom:653.106922px;}
.y36b{bottom:654.637500px;}
.y21c{bottom:655.314696px;}
.y255{bottom:655.314845px;}
.y2d8{bottom:655.908000px;}
.y4c{bottom:658.717500px;}
.y3e5{bottom:659.145021px;}
.y1c4{bottom:660.841500px;}
.y32e{bottom:662.971112px;}
.y15a{bottom:663.136500px;}
.y27f{bottom:664.583606px;}
.y8{bottom:666.771000px;}
.y401{bottom:667.733776px;}
.ye2{bottom:668.070000px;}
.y36a{bottom:668.073966px;}
.y186{bottom:669.856699px;}
.ybc{bottom:671.046199px;}
.y1ea{bottom:671.048241px;}
.y10a{bottom:671.048665px;}
.y12f{bottom:671.049786px;}
.y2b1{bottom:671.896500px;}
.y3e4{bottom:672.665485px;}
.y15b{bottom:675.468000px;}
.y2d7{bottom:675.638229px;}
.y416{bottom:676.234296px;}
.y32d{bottom:676.492626px;}
.y27e{bottom:678.104800px;}
.y254{bottom:678.615535px;}
.y1c3{bottom:678.868500px;}
.y4b{bottom:679.722000px;}
.y156{bottom:680.145000px;}
.y369{bottom:681.594430px;}
.y400{bottom:682.955191px;}
.ye1{bottom:686.097000px;}
.y3e3{bottom:686.186999px;}
.y159{bottom:686.352856px;}
.y185{bottom:687.884987px;}
.y8b{bottom:688.567862px;}
.ybb{bottom:689.074487px;}
.y2e4{bottom:689.076393px;}
.y1e9{bottom:689.076529px;}
.y109{bottom:689.076953px;}
.y12e{bottom:689.078074px;}
.y32c{bottom:690.013089px;}
.y21b{bottom:691.285848px;}
.y27d{bottom:691.625995px;}
.y368{bottom:695.115944px;}
.y3ff{bottom:697.242133px;}
.y157{bottom:698.257500px;}
.y2d6{bottom:698.938919px;}
.y415{bottom:699.534985px;}
.y3e2{bottom:699.707462px;}
.y4a{bottom:700.726500px;}
.y253{bottom:701.916224px;}
.y32b{bottom:703.534603px;}
.y183{bottom:703.785000px;}
.y184{bottom:705.912000px;}
.y182{bottom:705.912136px;}
.y77{bottom:706.414571px;}
.y8a{bottom:706.596150px;}
.yba{bottom:707.101500px;}
.y2e3{bottom:707.104681px;}
.y1e8{bottom:707.104817px;}
.y108{bottom:707.105241px;}
.y12d{bottom:707.106362px;}
.y367{bottom:708.637457px;}
.y21a{bottom:709.314136px;}
.y158{bottom:710.503500px;}
.y3fe{bottom:712.378500px;}
.y3e1{bottom:713.143929px;}
.y1c2{bottom:714.842060px;}
.y27c{bottom:714.926684px;}
.y32a{bottom:716.971069px;}
.y2e{bottom:717.817498px;}
.y76{bottom:719.170657px;}
.y180{bottom:721.729500px;}
.y49{bottom:721.731000px;}
.ye0{bottom:722.071139px;}
.y366{bottom:722.072873px;}
.y2d5{bottom:722.239608px;}
.y414{bottom:722.835675px;}
.y181{bottom:723.855000px;}
.y17f{bottom:723.856206px;}
.y89{bottom:724.539014px;}
.yb9{bottom:725.045700px;}
.y2e2{bottom:725.047545px;}
.y1e7{bottom:725.047681px;}
.y107{bottom:725.048105px;}
.y12c{bottom:725.049226px;}
.y252{bottom:725.302412px;}
.y7{bottom:726.298500px;}
.y3e0{bottom:726.665442px;}
.y219{bottom:727.257000px;}
.y27b{bottom:728.447879px;}
.y329{bottom:730.491533px;}
.y1c1{bottom:732.870348px;}
.y365{bottom:735.594387px;}
.y3df{bottom:740.185906px;}
.y3fd{bottom:741.886857px;}
.y88{bottom:742.567301px;}
.y48{bottom:742.735500px;}
.y2e1{bottom:743.075833px;}
.y1e6{bottom:743.075969px;}
.y106{bottom:743.076393px;}
.y12b{bottom:743.077514px;}
.y328{bottom:744.013047px;}
.y75{bottom:744.681778px;}
.y218{bottom:745.285500px;}
.y2d4{bottom:745.540297px;}
.y413{bottom:746.136364px;}
.y2d{bottom:747.817498px;}
.y251{bottom:748.603101px;}
.y364{bottom:749.114851px;}
.y1c0{bottom:750.814487px;}
.y27a{bottom:751.748569px;}
.y4{bottom:752.599495px;}
.y3de{bottom:753.707420px;}
.y3fc{bottom:757.024275px;}
.y74{bottom:757.437863px;}
.y327{bottom:757.534560px;}
.y17e{bottom:759.912782px;}
.yb8{bottom:761.101500px;}
.y2e0{bottom:761.104121px;}
.y105{bottom:761.104681px;}
.y12a{bottom:761.105801px;}
.y363{bottom:762.636364px;}
.y155{bottom:763.398605px;}
.y47{bottom:763.740000px;}
.y279{bottom:765.184264px;}
.y2c{bottom:765.817498px;}
.y3dd{bottom:767.143886px;}
.y2d3{bottom:768.840987px;}
.y1bf{bottom:768.841500px;}
.y412{bottom:769.437053px;}
.y73{bottom:770.192899px;}
.y326{bottom:770.969976px;}
.y3fb{bottom:771.310167px;}
.y250{bottom:771.903791px;}
.y153{bottom:775.558500px;}
.y362{bottom:776.072830px;}
.ydf{bottom:777.600560px;}
.y87{bottom:778.538453px;}
.y278{bottom:778.705459px;}
.y1e5{bottom:779.047121px;}
.y104{bottom:779.047545px;}
.y2df{bottom:779.048259px;}
.y129{bottom:779.048665px;}
.y3dc{bottom:780.664349px;}
.y2b{bottom:783.817498px;}
.y325{bottom:784.491490px;}
.y46{bottom:784.744500px;}
.y3fa{bottom:786.532632px;}
.y1be{bottom:786.870750px;}
.y154{bottom:787.804500px;}
.y2b0{bottom:788.484954px;}
.y17d{bottom:788.741105px;}
.y361{bottom:789.593294px;}
.y2d2{bottom:792.141676px;}
.y14f{bottom:792.483883px;}
.y411{bottom:792.737743px;}
.y3db{bottom:794.185863px;}
.y24f{bottom:795.204480px;}
.yde{bottom:795.544699px;}
.y72{bottom:795.705070px;}
.y86{bottom:796.566741px;}
.y2de{bottom:797.075272px;}
.y1e4{bottom:797.075408px;}
.yb7{bottom:797.076953px;}
.y324{bottom:798.011954px;}
.y152{bottom:798.774856px;}
.y17b{bottom:800.901000px;}
.y3f9{bottom:801.668999px;}
.y2a{bottom:801.817498px;}
.y277{bottom:802.007273px;}
.y360{bottom:803.114808px;}
.y45{bottom:805.749000px;}
.y3da{bottom:807.706327px;}
.y71{bottom:808.460106px;}
.y150{bottom:810.595500px;}
.y323{bottom:811.533467px;}
.y17c{bottom:813.147000px;}
.ydd{bottom:813.572987px;}
.y85{bottom:814.595029px;}
.y2dd{bottom:815.103560px;}
.y1e3{bottom:815.103696px;}
.y103{bottom:815.104121px;}
.yb6{bottom:815.105241px;}
.y2d1{bottom:815.442365px;}
.y2af{bottom:815.528468px;}
.y410{bottom:816.038432px;}
.y35f{bottom:816.636322px;}
.y3f8{bottom:816.890414px;}
.y24e{bottom:818.505169px;}
.y241{bottom:818.589000px;}
.y3d9{bottom:821.142793px;}
.y70{bottom:821.216191px;}
.y1bd{bottom:822.841500px;}
.y151{bottom:822.925500px;}
.y322{bottom:824.969933px;}
.y276{bottom:825.307963px;}
.y44{bottom:826.753500px;}
.y35e{bottom:830.071738px;}
.y3f7{bottom:831.177356px;}
.ydc{bottom:831.600000px;}
.y84{bottom:832.537893px;}
.y1e2{bottom:833.046560px;}
.y2dc{bottom:833.047699px;}
.yb5{bottom:833.048105px;}
.y102{bottom:833.048259px;}
.y6f{bottom:833.972277px;}
.y3d8{bottom:834.664306px;}
.y240{bottom:838.318969px;}
.y321{bottom:838.490397px;}
.y2d0{bottom:838.828553px;}
.y2ae{bottom:838.829157px;}
.y40f{bottom:839.339121px;}
.y1bc{bottom:840.105274px;}
.y24d{bottom:841.805859px;}
.y35d{bottom:843.593251px;}
.y3f6{bottom:845.974583px;}
.y6e{bottom:846.643315px;}
.y43{bottom:847.758000px;}
.y3d7{bottom:848.184770px;}
.y275{bottom:848.608652px;}
.ydb{bottom:849.543000px;}
.y83{bottom:850.566181px;}
.y1e1{bottom:851.074848px;}
.y101{bottom:851.075272px;}
.y2db{bottom:851.075987px;}
.yb4{bottom:851.076393px;}
.y3a6{bottom:852.011911px;}
.y320{bottom:853.287624px;}
.y29{bottom:854.289002px;}
.y35c{bottom:857.113715px;}
.y23f{bottom:858.217704px;}
.y6d{bottom:859.398350px;}
.y3f5{bottom:860.685713px;}
.y3d6{bottom:861.706284px;}
.y2cf{bottom:862.129243px;}
.y274{bottom:862.129847px;}
.y40e{bottom:862.639811px;}
.y14e{bottom:864.936180px;}
.y24c{bottom:865.106548px;}
.y3a5{bottom:865.533424px;}
.y17a{bottom:866.040856px;}
.y31f{bottom:868.083802px;}
.y82{bottom:868.594469px;}
.y42{bottom:868.762500px;}
.y2da{bottom:869.103000px;}
.y1e0{bottom:869.103136px;}
.y100{bottom:869.103560px;}
.yb3{bottom:869.104681px;}
.y35b{bottom:870.635229px;}
.y3d5{bottom:875.142750px;}
.y28{bottom:875.289002px;}
.y3f4{bottom:875.482940px;}
.y178{bottom:877.947000px;}
.y23e{bottom:878.117564px;}
.y3a4{bottom:878.968841px;}
.y3{bottom:879.369000px;}
.y31e{bottom:882.795981px;}
.y14d{bottom:882.964468px;}
.y35a{bottom:884.071695px;}
.y6c{bottom:884.740426px;}
.y2ce{bottom:885.429932px;}
.y273{bottom:885.430536px;}
.yda{bottom:885.602775px;}
.y1bb{bottom:885.855560px;}
.y40d{bottom:885.940500px;}
.y81{bottom:886.537333px;}
.y1df{bottom:887.046000px;}
.yb2{bottom:887.047545px;}
.yff{bottom:887.047699px;}
.y24b{bottom:888.407237px;}
.y3d4{bottom:888.663214px;}
.y41{bottom:889.767000px;}
.y179{bottom:890.191500px;}
.y3f3{bottom:890.279117px;}
.y3a3{bottom:892.490354px;}
.y31d{bottom:897.592158px;}
.y23d{bottom:898.101797px;}
.y2ad{bottom:898.951731px;}
.y6b{bottom:899.706699px;}
.y3d3{bottom:902.184727px;}
.y1ba{bottom:903.883848px;}
.y3f2{bottom:904.481012px;}
.y80{bottom:904.565621px;}
.y1de{bottom:905.074500px;}
.yb1{bottom:905.075833px;}
.yfe{bottom:905.075987px;}
.y40c{bottom:905.924533px;}
.y3a2{bottom:906.010818px;}
.y2cd{bottom:908.730621px;}
.y272{bottom:908.731225px;}
.y31c{bottom:911.113672px;}
.y24a{bottom:911.707927px;}
.y14c{bottom:913.833130px;}
.y3d2{bottom:915.705191px;}
.y23c{bottom:918.000532px;}
.y3a1{bottom:919.532332px;}
.y3f1{bottom:919.702427px;}
.y176{bottom:920.381356px;}
.y1b9{bottom:921.912136px;}
.y271{bottom:922.252420px;}
.y7f{bottom:922.593908px;}
.y14b{bottom:922.594127px;}
.yfd{bottom:923.103000px;}
.y128{bottom:923.104121px;}
.y3f{bottom:923.443500px;}
.y31b{bottom:924.635186px;}
.y3d1{bottom:929.141657px;}
.y40{bottom:929.481000px;}
.y2cc{bottom:932.031311px;}
.y177{bottom:932.286000px;}
.y174{bottom:932.289113px;}
.y3a0{bottom:932.968798px;}
.y3f0{bottom:934.923842px;}
.y249{bottom:935.008616px;}
.y270{bottom:935.773615px;}
.y1b7{bottom:937.729500px;}
.y23b{bottom:937.899266px;}
.y31a{bottom:938.070602px;}
.y40a{bottom:938.495300px;}
.y27{bottom:938.953498px;}
.y1b8{bottom:939.855000px;}
.y1b6{bottom:939.855005px;}
.y3d{bottom:939.940500px;}
.y7e{bottom:940.536772px;}
.yfc{bottom:941.046000px;}
.yd9{bottom:941.046772px;}
.yb0{bottom:941.048259px;}
.y3d0{bottom:944.363072px;}
.y175{bottom:944.532000px;}
.y2{bottom:945.126001px;}
.y3e{bottom:945.978000px;}
.y39f{bottom:946.489261px;}
.y3ef{bottom:950.146307px;}
.y319{bottom:951.592116px;}
.y40b{bottom:954.992331px;}
.y2cb{bottom:955.332000px;}
.y23a{bottom:957.883500px;}
.y248{bottom:958.309305px;}
.y7d{bottom:958.565060px;}
.y26f{bottom:959.074304px;}
.yd8{bottom:959.075060px;}
.yaf{bottom:959.075272px;}
.y3cf{bottom:959.585537px;}
.y39e{bottom:960.010775px;}
.y3c{bottom:964.092776px;}
.y3ee{bottom:964.347151px;}
.y318{bottom:965.112579px;}
.y1{bottom:966.726000px;}
.y1b2{bottom:968.003652px;}
.y26{bottom:970.453498px;}
.y247{bottom:971.830500px;}
.y1b1{bottom:972.170805px;}
.y26e{bottom:972.510000px;}
.y39d{bottom:973.532289px;}
.y3ce{bottom:974.806952px;}
.y2ca{bottom:975.232471px;}
.y7c{bottom:976.593348px;}
.yfb{bottom:977.103136px;}
.yd7{bottom:977.103348px;}
.yae{bottom:977.103560px;}
.y239{bottom:977.783889px;}
.y3ed{bottom:977.868665px;}
.y317{bottom:978.634093px;}
.y1b5{bottom:978.801972px;}
.y409{bottom:981.013500px;}
.y20e{bottom:982.884071px;}
.y1b0{bottom:983.311152px;}
.y217{bottom:985.265171px;}
.y1ac{bottom:987.052500px;}
.y1af{bottom:987.478305px;}
.y39c{bottom:988.243418px;}
.y3ec{bottom:991.390178px;}
.y246{bottom:991.729502px;}
.y359{bottom:992.070559px;}
.y26d{bottom:992.495926px;}
.y3b{bottom:994.024500px;}
.y7b{bottom:994.537487px;}
.yfa{bottom:995.046000px;}
.yd6{bottom:995.047487px;}
.yad{bottom:995.047699px;}
.y1ae{bottom:998.617152px;}
.y1b4{bottom:1001.677753px;}
.y1ad{bottom:1002.784540px;}
.y39b{bottom:1003.040646px;}
.y316{bottom:1005.591023px;}
.y238{bottom:1006.272154px;}
.y408{bottom:1009.501500px;}
.y7a{bottom:1012.564500px;}
.y1b3{bottom:1013.072294px;}
.yd5{bottom:1013.074500px;}
.yac{bottom:1013.075987px;}
.y39a{bottom:1017.836823px;}
.y315{bottom:1019.112536px;}
.y245{bottom:1023.789000px;}
.y26c{bottom:1024.470000px;}
.y237{bottom:1025.745000px;}
.y3a{bottom:1028.551500px;}
.y79{bottom:1030.591500px;}
.yab{bottom:1031.103000px;}
.y314{bottom:1032.633000px;}
.y25{bottom:1035.546001px;}
.y69{bottom:1112.825680px;}
.y68{bottom:1127.877000px;}
.y24{bottom:1165.122003px;}
.h4b{height:21.893341px;}
.h3d{height:23.634944px;}
.h21{height:26.175996px;}
.h29{height:27.488538px;}
.h1c{height:30.498469px;}
.h34{height:31.509180px;}
.h7{height:32.130000px;}
.h4c{height:32.339076px;}
.h1a{height:32.843062px;}
.h2a{height:33.089144px;}
.h15{height:33.363316px;}
.h1b{height:34.313020px;}
.h25{height:34.800786px;}
.h23{height:35.189531px;}
.hb{height:36.726562px;}
.h49{height:36.764510px;}
.h19{height:37.535531px;}
.h28{height:38.912542px;}
.h24{height:38.927947px;}
.h20{height:39.269538px;}
.h3c{height:39.371537px;}
.h33{height:39.512085px;}
.h30{height:39.516029px;}
.h2d{height:39.516887px;}
.h2e{height:39.522291px;}
.h2f{height:39.523251px;}
.h31{height:39.524535px;}
.h2c{height:39.526401px;}
.hf{height:41.317383px;}
.h1f{height:41.580000px;}
.h22{height:41.666510px;}
.h1e{height:41.761500px;}
.h38{height:42.110018px;}
.h17{height:44.118000px;}
.h18{height:44.489797px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h42{height:46.032875px;}
.h44{height:46.033815px;}
.h48{height:47.263350px;}
.h1d{height:47.270444px;}
.h3{height:48.195000px;}
.h3f{height:48.750815px;}
.h14{height:50.051647px;}
.h3e{height:51.452623px;}
.h2b{height:51.501460px;}
.h32{height:51.509394px;}
.h3b{height:51.976915px;}
.h3a{height:53.494259px;}
.h4a{height:53.569770px;}
.h41{height:53.809070px;}
.h35{height:54.172029px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h16{height:55.612941px;}
.h46{height:55.932929px;}
.h43{height:55.938929px;}
.h12{height:58.823510px;}
.h45{height:62.702426px;}
.h40{height:63.041570px;}
.h37{height:65.743385px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.h47{height:80.267056px;}
.h26{height:81.957938px;}
.h27{height:82.307032px;}
.hc{height:82.634766px;}
.h13{height:94.541444px;}
.h36{height:94.837073px;}
.h4{height:119.055004px;}
.h39{height:135.478088px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w5{width:914.173500px;}
.w6{width:914.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x14{left:75.004650px;}
.xa6{left:84.018750px;}
.x12{left:89.291250px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:145.650000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x9{left:233.083498px;}
.xa{left:270.255000px;}
.x38{left:272.125776px;}
.x37{left:273.316500px;}
.x1d{left:274.507518px;}
.x1a{left:276.038942px;}
.x18{left:278.334000px;}
.x3f{left:279.949500px;}
.x17{left:282.754950px;}
.x19{left:283.776000px;}
.x2e{left:284.881776px;}
.x2c{left:286.070976px;}
.x2d{left:287.943000px;}
.xa5{left:291.003600px;}
.x8{left:293.590494px;}
.x33{left:295.087054px;}
.x4d{left:299.339922px;}
.x2f{left:301.039500px;}
.x54{left:302.485197px;}
.x6f{left:305.204846px;}
.x4a{left:306.822642px;}
.x34{left:312.435000px;}
.x49{left:315.241500px;}
.x8f{left:318.046574px;}
.x4c{left:319.068642px;}
.x29{left:321.874054px;}
.x27{left:323.659500px;}
.x2b{left:325.020000px;}
.x73{left:326.465057px;}
.x28{left:327.486000px;}
.x4e{left:328.507500px;}
.x48{left:330.123000px;}
.x70{left:333.693111px;}
.x90{left:337.947000px;}
.x2a{left:339.222000px;}
.x21{left:346.958973px;}
.x74{left:349.426500px;}
.x55{left:350.872500px;}
.x36{left:353.083989px;}
.x35{left:356.740500px;}
.x4b{left:360.737142px;}
.x75{left:362.947695px;}
.x56{left:364.393695px;}
.x24{left:368.390554px;}
.x22{left:370.176000px;}
.x26{left:371.536500px;}
.x23{left:374.002500px;}
.x71{left:376.553734px;}
.x76{left:382.846429px;}
.x57{left:384.377928px;}
.x25{left:385.738500px;}
.x8c{left:392.030468px;}
.x16{left:396.198000px;}
.x58{left:397.813624px;}
.xa0{left:398.919197px;}
.xa2{left:400.109431px;}
.x52{left:402.490314px;}
.x44{left:405.300278px;}
.xa1{left:406.742343px;}
.x91{left:407.933442px;}
.x31{left:415.078054px;}
.x72{left:416.182500px;}
.x59{left:417.797858px;}
.x30{left:420.690000px;}
.x40{left:423.837824px;}
.x11{left:427.663500px;}
.x92{left:431.234131px;}
.x32{left:432.424500px;}
.x77{left:436.250592px;}
.x5a{left:437.696592px;}
.xb{left:439.398000px;}
.xc{left:445.266000px;}
.xa4{left:448.579945px;}
.xa3{left:451.641184px;}
.x3{left:454.959000px;}
.x78{left:456.150452px;}
.x5b{left:457.596452px;}
.x9b{left:458.870516px;}
.x3b{left:461.083500px;}
.x1c{left:465.759470px;}
.x3c{left:469.842000px;}
.x79{left:476.049187px;}
.x5c{left:477.580686px;}
.x8d{left:481.491300px;}
.x7a{left:496.033420px;}
.x5d{left:497.479420px;}
.x93{left:501.137324px;}
.x8e{left:506.153182px;}
.x41{left:509.725500px;}
.x42{left:513.553844px;}
.x7b{left:515.933280px;}
.x5e{left:517.463654px;}
.x43{left:521.716500px;}
.x94{left:524.438013px;}
.x7c{left:529.454475px;}
.x5f{left:530.900475px;}
.x95{left:547.738703px;}
.x7d{left:549.353209px;}
.x60{left:550.884708px;}
.x9c{left:555.220528px;}
.x9d{left:556.581759px;}
.x1e{left:560.324564px;}
.x7e{left:562.874404px;}
.x61{left:564.320404px;}
.x13{left:566.277000px;}
.x4f{left:570.613500px;}
.x51{left:573.162721px;}
.x50{left:576.481500px;}
.x7f{left:582.774264px;}
.x62{left:584.304638px;}
.x45{left:592.639500px;}
.x96{left:594.340081px;}
.x80{left:596.295458px;}
.x63{left:597.825832px;}
.x46{left:609.477000px;}
.x81{left:616.194193px;}
.x64{left:617.725692px;}
.x9e{left:619.681043px;}
.x82{left:629.715388px;}
.x65{left:631.246887px;}
.x97{left:640.941460px;}
.xd{left:648.595500px;}
.x83{left:649.699621px;}
.x66{left:651.145621px;}
.xe{left:654.378000px;}
.x1b{left:655.482566px;}
.x84{left:663.136442px;}
.x67{left:664.666816px;}
.x85{left:683.120676px;}
.x68{left:684.566676px;}
.x98{left:687.542839px;}
.x86{left:703.019410px;}
.x69{left:704.465410px;}
.x99{left:710.843528px;}
.x87{left:722.918145px;}
.x6a{left:724.449644px;}
.x9a{left:730.573500px;}
.x88{left:736.439340px;}
.x47{left:737.971500px;}
.x3d{left:742.564500px;}
.x3e{left:751.237500px;}
.x89{left:756.423573px;}
.x6b{left:757.869573px;}
.x20{left:765.438579px;}
.x1f{left:766.458941px;}
.x53{left:770.108939px;}
.x15{left:776.325000px;}
.x6c{left:777.769433px;}
.x9f{left:780.150028px;}
.x39{left:783.127500px;}
.x3a{left:793.246500px;}
.x8a{left:796.222168px;}
.x6d{left:797.753667px;}
.xf{left:806.938500px;}
.x10{left:816.633000px;}
.x8b{left:820.458844px;}
.x6e{left:821.904844px;}
@media print{
.v11{vertical-align:-46.567467pt;}
.v13{vertical-align:-36.887299pt;}
.v8{vertical-align:-18.746667pt;}
.va{vertical-align:-16.325333pt;}
.v5{vertical-align:-13.002667pt;}
.v4{vertical-align:-11.792000pt;}
.v17{vertical-align:-10.885333pt;}
.v3{vertical-align:-8.160000pt;}
.v2{vertical-align:-6.650667pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:4.231232pt;}
.v10{vertical-align:5.449174pt;}
.ve{vertical-align:8.460780pt;}
.v18{vertical-align:10.580676pt;}
.v7{vertical-align:12.697365pt;}
.v15{vertical-align:14.817237pt;}
.v12{vertical-align:16.330667pt;}
.v6{vertical-align:18.740342pt;}
.vf{vertical-align:21.767446pt;}
.vb{vertical-align:25.700395pt;}
.v9{vertical-align:28.421333pt;}
.v16{vertical-align:29.330322pt;}
.v1{vertical-align:30.833328pt;}
.vc{vertical-align:74.687061pt;}
.vd{vertical-align:91.012395pt;}
.ls3{letter-spacing:-0.906656pt;}
.ls65{letter-spacing:-0.815990pt;}
.ls66{letter-spacing:-0.746645pt;}
.ls69{letter-spacing:-0.559984pt;}
.ls1{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.453328pt;}
.ls67{letter-spacing:-0.373323pt;}
.ls0{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000003pt;}
.ls4c{letter-spacing:0.045408pt;}
.ls60{letter-spacing:0.046400pt;}
.ls5e{letter-spacing:0.046962pt;}
.ls3c{letter-spacing:0.061749pt;}
.ls26{letter-spacing:0.064966pt;}
.ls32{letter-spacing:0.069617pt;}
.lsd{letter-spacing:0.074950pt;}
.ls2e{letter-spacing:0.082703pt;}
.ls30{letter-spacing:0.097058pt;}
.ls1a{letter-spacing:0.128256pt;}
.lsb{letter-spacing:0.133687pt;}
.ls27{letter-spacing:0.133808pt;}
.ls64{letter-spacing:0.137033pt;}
.ls24{letter-spacing:0.141995pt;}
.ls55{letter-spacing:0.146932pt;}
.ls2c{letter-spacing:0.146964pt;}
.ls10{letter-spacing:0.152297pt;}
.ls41{letter-spacing:0.212503pt;}
.ls4e{letter-spacing:0.216298pt;}
.ls2a{letter-spacing:0.237651pt;}
.lse{letter-spacing:0.242984pt;}
.ls51{letter-spacing:0.273687pt;}
.ls68{letter-spacing:0.373323pt;}
.ls2{letter-spacing:0.543994pt;}
.ls3f{letter-spacing:0.751163pt;}
.ls43{letter-spacing:0.751433pt;}
.ls5a{letter-spacing:0.752067pt;}
.ls53{letter-spacing:0.753656pt;}
.ls57{letter-spacing:1.046803pt;}
.ls50{letter-spacing:1.055163pt;}
.ls52{letter-spacing:1.280284pt;}
.ls42{letter-spacing:2.453793pt;}
.ls4d{letter-spacing:2.472304pt;}
.ls61{letter-spacing:2.477637pt;}
.lsf{letter-spacing:2.516125pt;}
.ls2b{letter-spacing:2.521459pt;}
.ls4f{letter-spacing:2.561174pt;}
.ls46{letter-spacing:2.566507pt;}
.ls45{letter-spacing:2.707762pt;}
.ls44{letter-spacing:2.752459pt;}
.ls47{letter-spacing:2.757793pt;}
.ls63{letter-spacing:2.770971pt;}
.ls62{letter-spacing:2.776304pt;}
.ls14{letter-spacing:2.820125pt;}
.ls36{letter-spacing:2.825459pt;}
.ls40{letter-spacing:2.865174pt;}
.lsc{letter-spacing:2.866319pt;}
.ls3e{letter-spacing:2.870507pt;}
.ls2f{letter-spacing:2.997519pt;}
.ls13{letter-spacing:3.164986pt;}
.ls1c{letter-spacing:3.170319pt;}
.ls5b{letter-spacing:7.343914pt;}
.ls1d{letter-spacing:7.411913pt;}
.ls1f{letter-spacing:7.416446pt;}
.ls59{letter-spacing:7.538845pt;}
.ls18{letter-spacing:7.575111pt;}
.ls17{letter-spacing:7.579644pt;}
.ls20{letter-spacing:7.615910pt;}
.ls56{letter-spacing:7.647643pt;}
.ls1b{letter-spacing:7.665776pt;}
.ls7{letter-spacing:7.683910pt;}
.ls19{letter-spacing:7.715643pt;}
.ls5c{letter-spacing:7.847108pt;}
.ls54{letter-spacing:10.018549pt;}
.ls37{letter-spacing:10.078792pt;}
.ls39{letter-spacing:10.140947pt;}
.ls49{letter-spacing:10.150303pt;}
.ls12{letter-spacing:12.552652pt;}
.lsa{letter-spacing:12.561719pt;}
.ls5{letter-spacing:12.564842pt;}
.ls22{letter-spacing:12.566252pt;}
.ls16{letter-spacing:12.584385pt;}
.ls21{letter-spacing:12.629718pt;}
.ls11{letter-spacing:12.720384pt;}
.ls5f{letter-spacing:12.749637pt;}
.ls25{letter-spacing:12.865449pt;}
.ls1e{letter-spacing:13.250777pt;}
.ls6{letter-spacing:15.104889pt;}
.ls8{letter-spacing:15.109422pt;}
.ls15{letter-spacing:15.136622pt;}
.ls3a{letter-spacing:15.170971pt;}
.ls2d{letter-spacing:15.298158pt;}
.ls29{letter-spacing:15.518792pt;}
.ls28{letter-spacing:15.564986pt;}
.ls33{letter-spacing:18.903778pt;}
.ls31{letter-spacing:19.164125pt;}
.ls9{letter-spacing:22.725333pt;}
.ls58{letter-spacing:22.829598pt;}
.ls3d{letter-spacing:38.995762pt;}
.ls4a{letter-spacing:39.299762pt;}
.ls34{letter-spacing:40.065129pt;}
.ls48{letter-spacing:52.690313pt;}
.ls4b{letter-spacing:808.600304pt;}
.ls23{letter-spacing:1113.065305pt;}
.ls38{letter-spacing:1436.628125pt;}
.ls3b{letter-spacing:1444.185459pt;}
.ls5d{letter-spacing:1824.228138pt;}
.ws1d{word-spacing:-45.332800pt;}
.ws1e{word-spacing:-32.852680pt;}
.wse{word-spacing:-31.732800pt;}
.ws10{word-spacing:-29.239656pt;}
.ws11{word-spacing:-19.955499pt;}
.ws1{word-spacing:-12.432000pt;}
.ws64{word-spacing:-12.192000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws43{word-spacing:-11.952000pt;}
.ws5{word-spacing:-11.333200pt;}
.ws39{word-spacing:-11.287867pt;}
.wsf{word-spacing:-11.106536pt;}
.ws7{word-spacing:-10.879872pt;}
.ws6{word-spacing:-10.426544pt;}
.ws37{word-spacing:-9.999867pt;}
.ws38{word-spacing:-9.799869pt;}
.ws3{word-spacing:-9.482396pt;}
.ws5e{word-spacing:-9.333067pt;}
.ws5f{word-spacing:-9.146405pt;}
.ws62{word-spacing:-8.959744pt;}
.ws63{word-spacing:-8.773083pt;}
.ws60{word-spacing:-8.586421pt;}
.ws61{word-spacing:-8.399760pt;}
.wsd{word-spacing:-7.774536pt;}
.ws12{word-spacing:-4.827943pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:2.348239pt;}
.ws9{word-spacing:2.443438pt;}
.wsa{word-spacing:3.649290pt;}
.ws1a{word-spacing:3.866888pt;}
.ws16{word-spacing:3.871421pt;}
.ws4{word-spacing:3.950400pt;}
.ws42{word-spacing:4.089600pt;}
.ws28{word-spacing:4.758049pt;}
.ws17{word-spacing:4.840175pt;}
.ws1b{word-spacing:4.944608pt;}
.ws27{word-spacing:5.056715pt;}
.ws29{word-spacing:5.062049pt;}
.ws1c{word-spacing:5.097982pt;}
.ws23{word-spacing:7.174049pt;}
.ws13{word-spacing:7.215315pt;}
.ws14{word-spacing:7.256175pt;}
.ws19{word-spacing:7.319748pt;}
.ws15{word-spacing:7.325081pt;}
.ws26{word-spacing:7.478049pt;}
.ws22{word-spacing:7.481735pt;}
.ws18{word-spacing:7.513982pt;}
.ws24{word-spacing:9.116426pt;}
.ws25{word-spacing:9.120959pt;}
.ws5b{word-spacing:63.971147pt;}
.ws3b{word-spacing:66.589350pt;}
.ws21{word-spacing:68.157865pt;}
.ws3e{word-spacing:74.475007pt;}
.ws41{word-spacing:74.775003pt;}
.ws5c{word-spacing:86.930841pt;}
.ws5a{word-spacing:86.950841pt;}
.ws59{word-spacing:93.554753pt;}
.ws66{word-spacing:95.998720pt;}
.ws3c{word-spacing:97.754697pt;}
.ws32{word-spacing:105.557425pt;}
.ws44{word-spacing:106.455014pt;}
.ws5d{word-spacing:109.546539pt;}
.ws4c{word-spacing:109.890535pt;}
.ws45{word-spacing:113.478487pt;}
.ws2c{word-spacing:124.184672pt;}
.ws2b{word-spacing:128.713419pt;}
.ws4d{word-spacing:132.850229pt;}
.ws55{word-spacing:135.630192pt;}
.ws35{word-spacing:136.458181pt;}
.ws3d{word-spacing:139.006147pt;}
.ws2a{word-spacing:139.312715pt;}
.ws2d{word-spacing:147.438034pt;}
.ws36{word-spacing:147.946027pt;}
.ws3f{word-spacing:152.989960pt;}
.ws40{word-spacing:152.993960pt;}
.ws20{word-spacing:153.120599pt;}
.ws58{word-spacing:155.731768pt;}
.ws57{word-spacing:158.589885pt;}
.ws56{word-spacing:170.057733pt;}
.ws2f{word-spacing:170.397728pt;}
.ws34{word-spacing:175.765656pt;}
.ws65{word-spacing:180.886939pt;}
.ws2e{word-spacing:186.669511pt;}
.ws46{word-spacing:191.997440pt;}
.ws67{word-spacing:193.285423pt;}
.ws47{word-spacing:195.017172pt;}
.ws33{word-spacing:214.977134pt;}
.ws51{word-spacing:227.772963pt;}
.ws4f{word-spacing:228.376955pt;}
.ws4b{word-spacing:234.328876pt;}
.ws53{word-spacing:239.264810pt;}
.ws54{word-spacing:250.732657pt;}
.ws50{word-spacing:265.001949pt;}
.ws4e{word-spacing:266.212335pt;}
.ws52{word-spacing:266.776443pt;}
.ws49{word-spacing:268.892415pt;}
.ws30{word-spacing:365.282636pt;}
.ws4a{word-spacing:470.189731pt;}
.ws48{word-spacing:504.637271pt;}
.ws1f{word-spacing:583.532868pt;}
.ws3a{word-spacing:625.610773pt;}
.ws31{word-spacing:873.848653pt;}
.wsb{word-spacing:1101.954236pt;}
.ws8{word-spacing:1334.570432pt;}
._1{margin-left:-3.413316pt;}
._0{margin-left:-1.706684pt;}
._6{width:0.992576pt;}
._4{width:1.977600pt;}
._7{width:2.978048pt;}
._5{width:3.878400pt;}
._2{width:4.851160pt;}
._9{width:6.142044pt;}
._3{width:7.171691pt;}
._8{width:8.218794pt;}
._e{width:9.216158pt;}
._f{width:10.145481pt;}
._d{width:12.384921pt;}
._a{width:13.277977pt;}
._11{width:14.261699pt;}
._1b{width:15.268087pt;}
._c{width:16.183810pt;}
._b{width:17.153932pt;}
._1c{width:19.610969pt;}
._1d{width:20.549358pt;}
._35{width:23.216052pt;}
._10{width:26.061827pt;}
._12{width:28.396466pt;}
._34{width:36.435640pt;}
._7b{width:64.352927pt;}
._c9{width:72.954075pt;}
._67{width:79.840127pt;}
._77{width:83.894881pt;}
._71{width:85.034866pt;}
._ba{width:90.850789pt;}
._68{width:92.469845pt;}
._69{width:94.568754pt;}
._72{width:96.478714pt;}
._be{width:100.474660pt;}
._7f{width:103.430621pt;}
._5f{width:106.754577pt;}
._70{width:108.474554pt;}
._76{width:109.698537pt;}
._2d{width:111.623473pt;}
._7e{width:114.490473pt;}
._7c{width:115.590459pt;}
._6c{width:119.290409pt;}
._6d{width:120.650822pt;}
._6b{width:122.966360pt;}
._6a{width:124.082346pt;}
._48{width:127.081438pt;}
._9a{width:128.857116pt;}
._56{width:134.803987pt;}
._23{width:136.858001pt;}
._b8{width:142.526100pt;}
._4a{width:144.457500pt;}
._52{width:146.390048pt;}
._74{width:147.382035pt;}
._79{width:148.782016pt;}
._75{width:149.940088pt;}
._73{width:152.045798pt;}
._49{width:154.757113pt;}
._8a{width:156.429914pt;}
._21{width:157.680946pt;}
._3a{width:161.835755pt;}
._6e{width:163.293823pt;}
._b6{width:165.261796pt;}
._36{width:167.994290pt;}
._b2{width:168.917965pt;}
._4e{width:169.945734pt;}
._58{width:170.977720pt;}
._4c{width:171.913708pt;}
._39{width:174.297676pt;}
._5a{width:177.297636pt;}
._3c{width:180.397595pt;}
._51{width:181.694529pt;}
._50{width:183.189383pt;}
._38{width:184.953534pt;}
._4d{width:186.065519pt;}
._af{width:187.373107pt;}
._5b{width:188.758434pt;}
._7d{width:190.085291pt;}
._b1{width:191.155742pt;}
._ab{width:192.529258pt;}
._9f{width:193.833416pt;}
._55{width:197.237370pt;}
._b3{width:198.831262pt;}
._b7{width:199.957334pt;}
._8b{width:201.642263pt;}
._8c{width:202.881168pt;}
._c3{width:203.905281pt;}
._b0{width:207.610941pt;}
._59{width:208.977214pt;}
._4b{width:211.065186pt;}
._37{width:212.921161pt;}
._80{width:214.084971pt;}
._5c{width:216.517113pt;}
._3d{width:219.401075pt;}
._5d{width:221.228876pt;}
._3b{width:224.413008pt;}
._57{width:225.840989pt;}
._53{width:226.886887pt;}
._14{width:228.082697pt;}
._b4{width:230.128853pt;}
._3f{width:231.274829pt;}
._6f{width:233.502799pt;}
._78{width:235.050779pt;}
._a6{width:237.277798pt;}
._a8{width:238.373948pt;}
._a4{width:239.284809pt;}
._3e{width:240.740790pt;}
._8e{width:244.502457pt;}
._9e{width:245.692724pt;}
._a9{width:248.580686pt;}
._a7{width:249.946745pt;}
._bd{width:252.104639pt;}
._20{width:254.502872pt;}
._5e{width:256.028412pt;}
._bb{width:257.924561pt;}
._a3{width:261.088519pt;}
._b5{width:262.356502pt;}
._4f{width:264.646384pt;}
._c8{width:267.026352pt;}
._ae{width:269.281365pt;}
._82{width:270.428394pt;}
._85{width:271.368382pt;}
._c0{width:273.211719pt;}
._26{width:276.874221pt;}
._ac{width:278.151172pt;}
._94{width:279.800269pt;}
._83{width:281.384248pt;}
._87{width:282.856229pt;}
._60{width:284.536031pt;}
._a5{width:287.815041pt;}
._7a{width:288.850061pt;}
._b9{width:291.204117pt;}
._54{width:292.174017pt;}
._bc{width:293.564086pt;}
._40{width:297.732030pt;}
._16{width:304.317855pt;}
._93{width:306.935907pt;}
._30{width:309.015705pt;}
._1f{width:314.945095pt;}
._aa{width:316.195784pt;}
._9d{width:322.959694pt;}
._28{width:330.433507pt;}
._99{width:332.683564pt;}
._c2{width:335.571653pt;}
._ad{width:337.523500pt;}
._2c{width:339.827120pt;}
._2b{width:340.873368pt;}
._31{width:341.885179pt;}
._43{width:343.817328pt;}
._92{width:345.923388pt;}
._89{width:349.555339pt;}
._41{width:352.339127pt;}
._33{width:355.291263pt;}
._91{width:356.993327pt;}
._2f{width:358.133137pt;}
._47{width:359.121908pt;}
._a2{width:361.964275pt;}
._45{width:365.589038pt;}
._a1{width:368.367088pt;}
._81{width:369.879068pt;}
._1a{width:371.076965pt;}
._13{width:372.832941pt;}
._c6{width:373.883015pt;}
._c1{width:384.402875pt;}
._15{width:386.796755pt;}
._62{width:394.682737pt;}
._61{width:395.572813pt;}
._29{width:397.764434pt;}
._2e{width:399.190677pt;}
._17{width:400.432573pt;}
._86{width:405.198597pt;}
._63{width:406.257622pt;}
._c7{width:409.430668pt;}
._c4{width:414.132565pt;}
._c5{width:416.622445pt;}
._84{width:424.598339pt;}
._2a{width:430.270263pt;}
._9c{width:432.394235pt;}
._88{width:434.226210pt;}
._64{width:436.342182pt;}
._44{width:439.390141pt;}
._32{width:447.430034pt;}
._18{width:456.235829pt;}
._22{width:458.589885pt;}
._25{width:460.749857pt;}
._46{width:462.349835pt;}
._27{width:463.549819pt;}
._1e{width:465.744654pt;}
._a0{width:471.721710pt;}
._65{width:472.838831pt;}
._42{width:473.821682pt;}
._96{width:480.189597pt;}
._9b{width:494.681404pt;}
._90{width:514.637138pt;}
._19{width:522.693031pt;}
._98{width:526.164527pt;}
._24{width:584.336209pt;}
._66{width:638.022894pt;}
._bf{width:676.274983pt;}
._95{width:698.778683pt;}
._8d{width:1411.155665pt;}
._97{width:1487.660164pt;}
._8f{width:1499.132011pt;}
.fs13{font-size:22.666133pt;}
.fs14{font-size:24.885867pt;}
.fs10{font-size:30.217600pt;}
.fs12{font-size:31.732800pt;}
.fsb{font-size:31.995733pt;}
.fse{font-size:34.667200pt;}
.fsd{font-size:37.332267pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:39.999467pt;}
.fsc{font-size:42.666133pt;}
.fs6{font-size:42.666667pt;}
.fsf{font-size:45.332800pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:63.999467pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fsa{font-size:90.666133pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:37.492800pt;}
.yaa{bottom:37.499574pt;}
.y6{bottom:59.133337pt;}
.y39{bottom:60.086668pt;}
.ya9{bottom:68.031851pt;}
.y236{bottom:70.451455pt;}
.y2c9{bottom:73.100361pt;}
.y20b{bottom:73.398400pt;}
.y20a{bottom:73.399282pt;}
.y244{bottom:74.382310pt;}
.y26b{bottom:74.457110pt;}
.y208{bottom:74.683333pt;}
.y38{bottom:74.753335pt;}
.y213{bottom:75.514933pt;}
.y308{bottom:75.817200pt;}
.y313{bottom:76.197030pt;}
.y20f{bottom:76.800000pt;}
.y1dd{bottom:77.858267pt;}
.yf9{bottom:77.859800pt;}
.y395{bottom:77.867735pt;}
.y1ab{bottom:78.085392pt;}
.y78{bottom:80.806267pt;}
.y358{bottom:80.815117pt;}
.y1aa{bottom:81.261116pt;}
.ya8{bottom:84.056996pt;}
.y3cd{bottom:84.897401pt;}
.y5{bottom:86.333337pt;}
.y235{bottom:86.475467pt;}
.y306{bottom:87.836877pt;}
.y312{bottom:88.216153pt;}
.y399{bottom:88.374901pt;}
.y2c8{bottom:89.125506pt;}
.y394{bottom:89.885925pt;}
.y14a{bottom:90.255067pt;}
.y243{bottom:90.407455pt;}
.y307{bottom:91.993600pt;}
.y357{bottom:92.834241pt;}
.y1dc{bottom:95.395944pt;}
.y3cc{bottom:96.840926pt;}
.y305{bottom:99.855067pt;}
.ya7{bottom:100.082141pt;}
.y311{bottom:100.235276pt;}
.y207{bottom:100.536619pt;}
.y398{bottom:100.771080pt;}
.y393{bottom:101.905048pt;}
.y234{bottom:102.502000pt;}
.y356{bottom:104.777766pt;}
.y2c7{bottom:105.150651pt;}
.y242{bottom:106.431467pt;}
.y149{bottom:107.792816pt;}
.y127{bottom:108.170000pt;}
.y3cb{bottom:108.859116pt;}
.y210{bottom:110.286206pt;}
.y303{bottom:111.799010pt;}
.yd4{bottom:112.479867pt;}
.y1db{bottom:113.084709pt;}
.y397{bottom:113.092595pt;}
.y2ac{bottom:113.162960pt;}
.y392{bottom:113.848573pt;}
.y304{bottom:115.955867pt;}
.ya6{bottom:116.031353pt;}
.y173{bottom:116.107205pt;}
.y206{bottom:116.485831pt;}
.y355{bottom:116.795956pt;}
.y148{bottom:119.811655pt;}
.y67{bottom:120.644217pt;}
.y433{bottom:120.720062pt;}
.y3ca{bottom:120.878239pt;}
.y2c6{bottom:121.099863pt;}
.y1a9{bottom:121.777306pt;}
.y26a{bottom:122.456667pt;}
.y23{bottom:123.790666pt;}
.y302{bottom:123.817200pt;}
.y310{bottom:124.196992pt;}
.y396{bottom:125.488774pt;}
.y126{bottom:125.708114pt;}
.y391{bottom:125.866763pt;}
.y171{bottom:126.916533pt;}
.yf8{bottom:127.143353pt;}
.y354{bottom:128.815079pt;}
.y2ab{bottom:129.112173pt;}
.y1da{bottom:130.848472pt;}
.y147{bottom:131.754496pt;}
.ya5{bottom:132.056498pt;}
.y205{bottom:132.510976pt;}
.y3c9{bottom:134.408386pt;}
.y233{bottom:134.476000pt;}
.y66{bottom:134.628042pt;}
.y300{bottom:135.836951pt;}
.y30f{bottom:136.215182pt;}
.y2c5{bottom:137.125008pt;}
.y125{bottom:137.726954pt;}
.y172{bottom:137.801333pt;}
.y390{bottom:137.885887pt;}
.y432{bottom:139.390376pt;}
.y301{bottom:139.993333pt;}
.y353{bottom:140.834202pt;}
.yf7{bottom:143.168498pt;}
.y2aa{bottom:145.137318pt;}
.y2ff{bottom:147.856075pt;}
.y3c8{bottom:147.863868pt;}
.ya4{bottom:148.081643pt;}
.y30e{bottom:148.234305pt;}
.y204{bottom:148.536121pt;}
.y1d9{bottom:148.536236pt;}
.y65{bottom:148.612934pt;}
.y146{bottom:149.518259pt;}
.y124{bottom:149.669795pt;}
.y38f{bottom:149.905010pt;}
.y352{bottom:152.776795pt;}
.y1a8{bottom:153.751663pt;}
.y269{bottom:154.432498pt;}
.y431{bottom:158.060690pt;}
.yf6{bottom:159.193643pt;}
.y2fe{bottom:159.798667pt;}
.y3c7{bottom:159.882058pt;}
.y2a9{bottom:161.162462pt;}
.yd3{bottom:161.839353pt;}
.y38e{bottom:161.847602pt;}
.y64{bottom:162.596759pt;}
.ya3{bottom:164.031989pt;}
.y203{bottom:164.485333pt;}
.y351{bottom:164.795918pt;}
.y1d8{bottom:166.224000pt;}
.y232{bottom:166.451205pt;}
.y145{bottom:167.207023pt;}
.y123{bottom:167.433558pt;}
.y2c4{bottom:169.099365pt;}
.y1a7{bottom:169.776808pt;}
.y268{bottom:170.457643pt;}
.y2fc{bottom:171.817649pt;}
.y3c6{bottom:171.901181pt;}
.y30d{bottom:172.196020pt;}
.y38d{bottom:173.866725pt;}
.y1a{bottom:175.052000pt;}
.yf5{bottom:175.143989pt;}
.y2fd{bottom:175.974667pt;}
.y265{bottom:176.579982pt;}
.y63{bottom:176.656317pt;}
.y430{bottom:176.732137pt;}
.y350{bottom:176.814108pt;}
.y53{bottom:177.034000pt;}
.y2a8{bottom:177.111675pt;}
.yd2{bottom:177.864498pt;}
.y144{bottom:179.225863pt;}
.y122{bottom:179.377398pt;}
.ya2{bottom:180.056000pt;}
.y202{bottom:180.510667pt;}
.y231{bottom:182.476349pt;}
.y3c5{bottom:183.920305pt;}
.y1d7{bottom:183.987168pt;}
.y2fb{bottom:184.214761pt;}
.y30c{bottom:184.215143pt;}
.y170{bottom:184.819427pt;}
.y2c3{bottom:185.124510pt;}
.y1a6{bottom:185.726020pt;}
.y38c{bottom:185.884915pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y267{bottom:186.407989pt;}
.y264{bottom:188.598172pt;}
.y34f{bottom:188.833231pt;}
.y52{bottom:189.052000pt;}
.y62{bottom:190.640142pt;}
.yf4{bottom:191.168000pt;}
.y212{bottom:192.074510pt;}
.y214{bottom:192.604372pt;}
.y2a7{bottom:193.136820pt;}
.yd1{bottom:193.814844pt;}
.y16e{bottom:195.401333pt;}
.y42f{bottom:195.402450pt;}
.y3c4{bottom:195.862897pt;}
.ya1{bottom:196.081333pt;}
.y30b{bottom:196.233333pt;}
.y143{bottom:196.913627pt;}
.y121{bottom:197.141162pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y38b{bottom:197.904038pt;}
.y20d{bottom:198.273735pt;}
.y216{bottom:198.349296pt;}
.y230{bottom:198.501494pt;}
.y30a{bottom:200.390667pt;}
.y34e{bottom:200.776756pt;}
.y2c2{bottom:201.149655pt;}
.y1a5{bottom:201.751165pt;}
.y215{bottom:202.431241pt;}
.y266{bottom:202.432000pt;}
.y1d6{bottom:203.942667pt;}
.y61{bottom:204.625034pt;}
.y16f{bottom:206.286667pt;}
.yf3{bottom:207.193333pt;}
.y3c3{bottom:207.882020pt;}
.y20c{bottom:208.100604pt;}
.y2fa{bottom:208.252075pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y142{bottom:208.932467pt;}
.y2a6{bottom:209.161964pt;}
.yd0{bottom:209.839989pt;}
.y38a{bottom:209.847564pt;}
.y201{bottom:212.490176pt;}
.y34d{bottom:212.794946pt;}
.y42e{bottom:213.997965pt;}
.y22f{bottom:214.450706pt;}
.y120{bottom:214.828926pt;}
.y2c1{bottom:217.098867pt;}
.y1a4{bottom:217.776310pt;}
.y60{bottom:218.608859pt;}
.y3c2{bottom:219.901143pt;}
.y37{bottom:219.934667pt;}
.y2f9{bottom:220.194667pt;}
.y263{bottom:221.480324pt;}
.y389{bottom:221.865754pt;}
.y309{bottom:224.352000pt;}
.y34c{bottom:224.814070pt;}
.y2a5{bottom:225.111177pt;}
.ycf{bottom:225.864000pt;}
.y141{bottom:226.621231pt;}
.y11f{bottom:226.847766pt;}
.ya0{bottom:228.063173pt;}
.y200{bottom:228.515321pt;}
.y22e{bottom:230.475851pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y3c1{bottom:231.919333pt;}
.y42d{bottom:232.668279pt;}
.y5f{bottom:232.668417pt;}
.y2c0{bottom:233.124012pt;}
.y1a3{bottom:233.726655pt;}
.y388{bottom:233.884877pt;}
.y34b{bottom:236.833193pt;}
.y11e{bottom:238.866605pt;}
.yf2{bottom:239.169831pt;}
.y2a4{bottom:241.136322pt;}
.yce{bottom:241.814667pt;}
.y262{bottom:242.192047pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y3c0{bottom:243.862859pt;}
.y9f{bottom:244.088317pt;}
.y140{bottom:244.384994pt;}
.y2f8{bottom:244.540345pt;}
.y1ff{bottom:244.540466pt;}
.y387{bottom:245.904000pt;}
.y5e{bottom:246.653308pt;}
.y34a{bottom:248.775785pt;}
.y2bf{bottom:249.149157pt;}
.y1a2{bottom:249.750667pt;}
.y11d{bottom:250.809446pt;}
.y42c{bottom:251.338592pt;}
.y16c{bottom:253.304761pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y3bf{bottom:255.881049pt;}
.y2a3{bottom:257.161466pt;}
.y386{bottom:257.846592pt;}
.y1d5{bottom:259.426667pt;}
.y9e{bottom:260.037530pt;}
.y1fe{bottom:260.489678pt;}
.y2f7{bottom:260.490691pt;}
.y5d{bottom:260.637134pt;}
.y349{bottom:260.794908pt;}
.y211{bottom:261.692091pt;}
.y13f{bottom:262.072758pt;}
.y22d{bottom:262.451342pt;}
.y261{bottom:262.903771pt;}
.y16d{bottom:263.886667pt;}
.y16a{bottom:263.888557pt;}
.y1a1{bottom:265.776000pt;}
.y3be{bottom:267.900172pt;}
.y11c{bottom:268.573209pt;}
.y385{bottom:269.865716pt;}
.y42b{bottom:270.010039pt;}
.y348{bottom:272.813098pt;}
.y2a2{bottom:273.110679pt;}
.ycd{bottom:273.865831pt;}
.y13e{bottom:274.091598pt;}
.y5c{bottom:274.620959pt;}
.y16b{bottom:274.772000pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y9d{bottom:276.062675pt;}
.y1fd{bottom:276.514823pt;}
.y2f6{bottom:276.515836pt;}
.y1d4{bottom:276.964293pt;}
.y36{bottom:277.134667pt;}
.y22c{bottom:278.475353pt;}
.y292{bottom:278.777333pt;}
.y3bd{bottom:279.919295pt;}
.y11b{bottom:280.517050pt;}
.y2be{bottom:281.123514pt;}
.y384{bottom:281.883906pt;}
.y260{bottom:283.615495pt;}
.y347{bottom:284.832221pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.yf1{bottom:288.530450pt;}
.y5b{bottom:288.605851pt;}
.y42a{bottom:288.680353pt;}
.y1d3{bottom:288.907134pt;}
.y2a1{bottom:289.135824pt;}
.y209{bottom:290.567193pt;}
.y13d{bottom:291.780362pt;}
.y3bc{bottom:291.861887pt;}
.y9c{bottom:292.087819pt;}
.y11a{bottom:292.535890pt;}
.y1fc{bottom:292.539968pt;}
.y2f5{bottom:292.540980pt;}
.y383{bottom:293.903029pt;}
.y22b{bottom:294.500498pt;}
.y291{bottom:296.315909pt;}
.y346{bottom:296.775747pt;}
.y2bd{bottom:297.148659pt;}
.y1a0{bottom:297.750976pt;}
.y5a{bottom:302.665408pt;}
.y3bb{bottom:303.881010pt;}
.y25f{bottom:304.327219pt;}
.yf0{bottom:304.479663pt;}
.y119{bottom:304.554729pt;}
.y2a0{bottom:305.160968pt;}
.y382{bottom:305.846554pt;}
.y1d2{bottom:306.670897pt;}
.y169{bottom:306.823252pt;}
.y429{bottom:307.350667pt;}
.y9b{bottom:308.037032pt;}
.y2f4{bottom:308.490193pt;}
.y1fb{bottom:308.490314pt;}
.y345{bottom:308.793937pt;}
.y11{bottom:309.452000pt;}
.y13c{bottom:309.544126pt;}
.y22a{bottom:310.450844pt;}
.y2bc{bottom:313.097871pt;}
.y19f{bottom:313.776121pt;}
.y3ba{bottom:315.900134pt;}
.y59{bottom:316.649233pt;}
.y290{bottom:317.027632pt;}
.y167{bottom:317.404538pt;}
.y381{bottom:317.864744pt;}
.yef{bottom:320.504808pt;}
.y344{bottom:320.813060pt;}
.y29f{bottom:321.110181pt;}
.y118{bottom:322.242494pt;}
.ycc{bottom:323.150518pt;}
.y9a{bottom:324.062176pt;}
.y1d1{bottom:324.359661pt;}
.y1fa{bottom:324.514325pt;}
.y2f3{bottom:324.515338pt;}
.y25e{bottom:325.038943pt;}
.y229{bottom:326.475989pt;}
.y13b{bottom:327.231890pt;}
.y19d{bottom:327.836000pt;}
.y3b9{bottom:327.918324pt;}
.y168{bottom:328.214667pt;}
.y165{bottom:328.215086pt;}
.y2bb{bottom:329.123016pt;}
.y19e{bottom:329.725333pt;}
.y19c{bottom:329.726655pt;}
.y380{bottom:329.883867pt;}
.y58{bottom:330.634125pt;}
.y343{bottom:332.832183pt;}
.y117{bottom:334.261333pt;}
.y35{bottom:334.334667pt;}
.yee{bottom:336.529952pt;}
.y29e{bottom:337.135325pt;}
.y28f{bottom:337.739356pt;}
.y166{bottom:339.098667pt;}
.ycb{bottom:339.175663pt;}
.y13a{bottom:339.250729pt;}
.y3b8{bottom:339.861849pt;}
.y1f9{bottom:340.539470pt;}
.y2f2{bottom:340.540482pt;}
.y37f{bottom:341.902991pt;}
.y1d0{bottom:342.047425pt;}
.y428{bottom:342.199294pt;}
.y228{bottom:342.500000pt;}
.y10{bottom:343.809333pt;}
.y19a{bottom:343.861333pt;}
.y57{bottom:344.617951pt;}
.y342{bottom:344.774775pt;}
.y2ba{bottom:345.148161pt;}
.y19b{bottom:345.750667pt;}
.y199{bottom:345.751165pt;}
.y28e{bottom:349.758196pt;}
.y139{bottom:351.193570pt;}
.y3b7{bottom:351.880039pt;}
.y116{bottom:351.951036pt;}
.yed{bottom:352.479165pt;}
.y37e{bottom:353.845583pt;}
.yca{bottom:355.200808pt;}
.y99{bottom:356.036534pt;}
.y2f1{bottom:356.489695pt;}
.y341{bottom:356.793899pt;}
.y427{bottom:358.148572pt;}
.y227{bottom:358.450667pt;}
.y56{bottom:358.601776pt;}
.y1cf{bottom:359.811188pt;}
.y164{bottom:360.190576pt;}
.y2b9{bottom:361.097373pt;}
.yf{bottom:362.706666pt;}
.y25d{bottom:363.515934pt;}
.y3b6{bottom:363.899162pt;}
.y37d{bottom:365.864706pt;}
.yec{bottom:368.504310pt;}
.y340{bottom:368.812089pt;}
.y138{bottom:368.957333pt;}
.y29d{bottom:369.109683pt;}
.y426{bottom:370.167695pt;}
.y28d{bottom:370.469920pt;}
.yc9{bottom:371.150020pt;}
.y1ce{bottom:371.830028pt;}
.y115{bottom:371.981333pt;}
.y98{bottom:372.061678pt;}
.y2f0{bottom:372.514840pt;}
.y1f8{bottom:372.514960pt;}
.y55{bottom:372.661333pt;}
.y163{bottom:376.215721pt;}
.y3b5{bottom:377.052253pt;}
.y2b8{bottom:377.122518pt;}
.y198{bottom:377.726655pt;}
.y37c{bottom:377.882896pt;}
.y41e{bottom:379.615495pt;}
.y33f{bottom:380.831212pt;}
.y425{bottom:382.186818pt;}
.y28c{bottom:382.488760pt;}
.yeb{bottom:384.529454pt;}
.y29c{bottom:385.134827pt;}
.y137{bottom:386.645835pt;}
.yc8{bottom:387.175165pt;}
.y97{bottom:388.086823pt;}
.y1f7{bottom:388.538972pt;}
.y2ef{bottom:388.539984pt;}
.y1cd{bottom:389.518792pt;}
.y37b{bottom:389.902019pt;}
.y54{bottom:389.972000pt;}
.y3b4{bottom:390.128813pt;}
.y226{bottom:390.500996pt;}
.y25c{bottom:391.937333pt;}
.y33e{bottom:392.774737pt;}
.y196{bottom:393.752560pt;}
.y424{bottom:394.129410pt;}
.y34{bottom:394.140000pt;}
.y28b{bottom:394.432600pt;}
.y41d{bottom:400.327219pt;}
.yea{bottom:400.478667pt;}
.y29b{bottom:401.159972pt;}
.y37a{bottom:401.845545pt;}
.y197{bottom:402.973333pt;}
.yc7{bottom:403.200310pt;}
.y3b3{bottom:403.280970pt;}
.y162{bottom:403.502952pt;}
.y96{bottom:404.037169pt;}
.y1f6{bottom:404.489318pt;}
.y33d{bottom:404.792927pt;}
.y225{bottom:406.451342pt;}
.y136{bottom:406.601333pt;}
.y1cc{bottom:407.206556pt;}
.y2b7{bottom:409.098008pt;}
.y423{bottom:410.154286pt;}
.y379{bottom:413.863735pt;}
.y28a{bottom:415.219323pt;}
.y3b2{bottom:415.300094pt;}
.ye9{bottom:416.504667pt;}
.y33c{bottom:416.812050pt;}
.y29a{bottom:417.109185pt;}
.y193{bottom:418.923472pt;}
.y191{bottom:419.073568pt;}
.yc6{bottom:419.150655pt;}
.y1cb{bottom:419.225396pt;}
.y95{bottom:420.062314pt;}
.y2ee{bottom:420.514341pt;}
.y1f5{bottom:420.514462pt;}
.y114{bottom:420.514840pt;}
.y41c{bottom:421.038943pt;}
.y192{bottom:421.040197pt;}
.y161{bottom:422.097832pt;}
.y422{bottom:422.173409pt;}
.y190{bottom:422.249449pt;}
.y2b6{bottom:425.122020pt;}
.y378{bottom:425.882858pt;}
.y18e{bottom:426.860325pt;}
.y3b1{bottom:427.319217pt;}
.y33b{bottom:428.831174pt;}
.y18d{bottom:430.036248pt;}
.ye{bottom:430.990669pt;}
.y299{bottom:433.134329pt;}
.y421{bottom:434.192532pt;}
.y18f{bottom:434.570169pt;}
.yc5{bottom:435.174667pt;}
.y289{bottom:435.931047pt;}
.y94{bottom:436.086325pt;}
.y2ed{bottom:436.539486pt;}
.y1f4{bottom:436.539607pt;}
.y113{bottom:436.539984pt;}
.y1ca{bottom:436.913160pt;}
.y377{bottom:437.901981pt;}
.y224{bottom:438.500498pt;}
.y3b0{bottom:439.261809pt;}
.y33a{bottom:440.773766pt;}
.y2b5{bottom:441.147165pt;}
.y195{bottom:441.676533pt;}
.y41b{bottom:441.750667pt;}
.y160{bottom:441.828366pt;}
.y194{bottom:445.983040pt;}
.y420{bottom:446.135125pt;}
.yd{bottom:446.990669pt;}
.ye8{bottom:448.478667pt;}
.y33{bottom:448.734667pt;}
.y1c9{bottom:448.932000pt;}
.y298{bottom:449.159474pt;}
.y376{bottom:449.844573pt;}
.yc4{bottom:451.200000pt;}
.y3af{bottom:451.280932pt;}
.y2ec{bottom:452.488699pt;}
.y1f3{bottom:452.488820pt;}
.y112{bottom:452.489197pt;}
.y339{bottom:453.926857pt;}
.y223{bottom:454.450844pt;}
.y288{bottom:456.642771pt;}
.y2b4{bottom:457.097510pt;}
.y41a{bottom:459.515934pt;}
.y25b{bottom:461.404000pt;}
.y15f{bottom:461.631585pt;}
.y375{bottom:461.863697pt;}
.y41f{bottom:462.160000pt;}
.y51{bottom:462.842267pt;}
.yc{bottom:462.990669pt;}
.y3ae{bottom:463.300055pt;}
.y297{bottom:465.108687pt;}
.y1c7{bottom:466.696474pt;}
.y338{bottom:467.079014pt;}
.y93{bottom:468.061816pt;}
.y135{bottom:468.510655pt;}
.y2eb{bottom:468.513843pt;}
.y1f2{bottom:468.513964pt;}
.y111{bottom:468.514341pt;}
.y287{bottom:468.586612pt;}
.y222{bottom:470.475989pt;}
.y2b3{bottom:473.122655pt;}
.y374{bottom:473.881886pt;}
.y3ad{bottom:475.318245pt;}
.y25a{bottom:478.943465pt;}
.yb{bottom:478.990666pt;}
.y337{bottom:480.232105pt;}
.ye7{bottom:480.531800pt;}
.y286{bottom:480.605451pt;}
.y296{bottom:481.133831pt;}
.yc2{bottom:481.285333pt;}
.y1c8{bottom:481.360501pt;}
.yc3{bottom:483.174667pt;}
.yc1{bottom:483.176177pt;}
.y18c{bottom:483.477952pt;}
.y92{bottom:484.086960pt;}
.y134{bottom:484.534667pt;}
.y2ea{bottom:484.538988pt;}
.y1f1{bottom:484.539109pt;}
.y373{bottom:485.901010pt;}
.y221{bottom:486.500000pt;}
.y3ac{bottom:487.261771pt;}
.y419{bottom:487.937333pt;}
.y2b2{bottom:489.146667pt;}
.y336{bottom:493.308665pt;}
.y50{bottom:493.531067pt;}
.ya{bottom:494.990666pt;}
.y295{bottom:497.158976pt;}
.y372{bottom:497.844535pt;}
.y3ab{bottom:499.279961pt;}
.y18b{bottom:499.427165pt;}
.y259{bottom:499.655189pt;}
.y91{bottom:500.036173pt;}
.y133{bottom:500.485067pt;}
.y1f0{bottom:500.488322pt;}
.y110{bottom:500.488699pt;}
.y15e{bottom:501.014455pt;}
.y1c6{bottom:501.316000pt;}
.y285{bottom:501.317175pt;}
.y220{bottom:502.450667pt;}
.y335{bottom:505.327788pt;}
.y32{bottom:508.540000pt;}
.y371{bottom:509.862725pt;}
.y3aa{bottom:511.299084pt;}
.y294{bottom:513.109322pt;}
.y284{bottom:513.336015pt;}
.y407{bottom:513.340226pt;}
.y3eb{bottom:513.945008pt;}
.y18a{bottom:515.452310pt;}
.y90{bottom:516.061318pt;}
.y2e9{bottom:516.513345pt;}
.y1ef{bottom:516.513466pt;}
.y10f{bottom:516.513843pt;}
.y334{bottom:517.345978pt;}
.y258{bottom:520.366913pt;}
.y4f{bottom:520.894667pt;}
.y370{bottom:521.881848pt;}
.y3a9{bottom:524.830164pt;}
.y283{bottom:525.354855pt;}
.y3ea{bottom:525.963198pt;}
.y406{bottom:526.870372pt;}
.y15d{bottom:528.379096pt;}
.y293{bottom:529.133333pt;}
.y333{bottom:529.365101pt;}
.ye6{bottom:529.815353pt;}
.y189{bottom:531.477454pt;}
.y8f{bottom:532.086462pt;}
.y132{bottom:532.534667pt;}
.yc0{bottom:532.535663pt;}
.y2e8{bottom:532.538490pt;}
.y1ee{bottom:532.538611pt;}
.y10e{bottom:532.538988pt;}
.y36f{bottom:533.900972pt;}
.y21f{bottom:534.502450pt;}
.y3e9{bottom:537.906724pt;}
.y3a8{bottom:538.284713pt;}
.y31{bottom:539.073335pt;}
.y405{bottom:540.325855pt;}
.y257{bottom:541.078637pt;}
.y332{bottom:541.308627pt;}
.ye5{bottom:545.840498pt;}
.y36e{bottom:545.843564pt;}
.y282{bottom:546.066579pt;}
.y188{bottom:547.426667pt;}
.y8e{bottom:548.035675pt;}
.y4e{bottom:548.185333pt;}
.ybf{bottom:548.486008pt;}
.y2e7{bottom:548.487703pt;}
.y1ed{bottom:548.487824pt;}
.y10d{bottom:548.488201pt;}
.y3e8{bottom:549.925847pt;}
.y21e{bottom:550.451663pt;}
.y3a7{bottom:551.814860pt;}
.y30{bottom:552.406668pt;}
.y404{bottom:553.024425pt;}
.y331{bottom:553.326817pt;}
.y36d{bottom:557.862687pt;}
.y281{bottom:558.010419pt;}
.y418{bottom:559.673704pt;}
.y256{bottom:561.790361pt;}
.ye4{bottom:561.865643pt;}
.y3e7{bottom:561.944037pt;}
.y187{bottom:563.452000pt;}
.y8d{bottom:564.060820pt;}
.ybe{bottom:564.510020pt;}
.y2e6{bottom:564.512847pt;}
.y1ec{bottom:564.512968pt;}
.y10c{bottom:564.513345pt;}
.y131{bottom:564.514341pt;}
.y330{bottom:565.345940pt;}
.y2f{bottom:565.740000pt;}
.y21d{bottom:566.476808pt;}
.y403{bottom:566.555505pt;}
.y4d{bottom:566.856000pt;}
.y2d9{bottom:567.684838pt;}
.y36c{bottom:569.880877pt;}
.y280{bottom:570.029259pt;}
.y1c5{bottom:571.390655pt;}
.y9{bottom:573.786667pt;}
.y3e6{bottom:573.963160pt;}
.y32f{bottom:577.365063pt;}
.ye3{bottom:577.815989pt;}
.y15c{bottom:578.721871pt;}
.y402{bottom:580.010054pt;}
.y8c{bottom:580.085964pt;}
.y417{bottom:580.385428pt;}
.ybd{bottom:580.535165pt;}
.y2e5{bottom:580.537992pt;}
.y1eb{bottom:580.538113pt;}
.y10b{bottom:580.538490pt;}
.y130{bottom:580.539486pt;}
.y36b{bottom:581.900000pt;}
.y21c{bottom:582.501952pt;}
.y255{bottom:582.502085pt;}
.y2d8{bottom:583.029333pt;}
.y4c{bottom:585.526667pt;}
.y3e5{bottom:585.906686pt;}
.y1c4{bottom:587.414667pt;}
.y32e{bottom:589.307655pt;}
.y15a{bottom:589.454667pt;}
.y27f{bottom:590.740983pt;}
.y8{bottom:592.685334pt;}
.y401{bottom:593.541134pt;}
.ye2{bottom:593.840000pt;}
.y36a{bottom:593.843526pt;}
.y186{bottom:595.428177pt;}
.ybc{bottom:596.485510pt;}
.y1ea{bottom:596.487325pt;}
.y10a{bottom:596.487703pt;}
.y12f{bottom:596.488699pt;}
.y2b1{bottom:597.241333pt;}
.y3e4{bottom:597.924876pt;}
.y15b{bottom:600.416000pt;}
.y2d7{bottom:600.567315pt;}
.y416{bottom:601.097152pt;}
.y32d{bottom:601.326778pt;}
.y27e{bottom:602.759823pt;}
.y254{bottom:603.213809pt;}
.y1c3{bottom:603.438667pt;}
.y4b{bottom:604.197333pt;}
.y156{bottom:604.573333pt;}
.y369{bottom:605.861716pt;}
.y400{bottom:607.071281pt;}
.ye1{bottom:609.864000pt;}
.y3e3{bottom:609.943999pt;}
.y159{bottom:610.091427pt;}
.y185{bottom:611.453322pt;}
.y8b{bottom:612.060322pt;}
.ybb{bottom:612.510655pt;}
.y2e4{bottom:612.512349pt;}
.y1e9{bottom:612.512470pt;}
.y109{bottom:612.512847pt;}
.y12e{bottom:612.513843pt;}
.y32c{bottom:613.344968pt;}
.y21b{bottom:614.476310pt;}
.y27d{bottom:614.778662pt;}
.y368{bottom:617.880839pt;}
.y3ff{bottom:619.770785pt;}
.y157{bottom:620.673333pt;}
.y2d6{bottom:621.279039pt;}
.y415{bottom:621.808876pt;}
.y3e2{bottom:621.962189pt;}
.y4a{bottom:622.868000pt;}
.y253{bottom:623.925532pt;}
.y32b{bottom:625.364092pt;}
.y183{bottom:625.586667pt;}
.y184{bottom:627.477333pt;}
.y182{bottom:627.477454pt;}
.y77{bottom:627.924063pt;}
.y8a{bottom:628.085466pt;}
.yba{bottom:628.534667pt;}
.y2e3{bottom:628.537494pt;}
.y1e8{bottom:628.537615pt;}
.y108{bottom:628.537992pt;}
.y12d{bottom:628.538988pt;}
.y367{bottom:629.899962pt;}
.y21a{bottom:630.501454pt;}
.y158{bottom:631.558667pt;}
.y3fe{bottom:633.225334pt;}
.y3e1{bottom:633.905714pt;}
.y1c2{bottom:635.415165pt;}
.y27c{bottom:635.490386pt;}
.y32a{bottom:637.307617pt;}
.y2e{bottom:638.059998pt;}
.y76{bottom:639.262806pt;}
.y180{bottom:641.537333pt;}
.y49{bottom:641.538667pt;}
.ye0{bottom:641.841012pt;}
.y366{bottom:641.842554pt;}
.y2d5{bottom:641.990763pt;}
.y414{bottom:642.520600pt;}
.y181{bottom:643.426667pt;}
.y17f{bottom:643.427739pt;}
.y89{bottom:644.034679pt;}
.yb9{bottom:644.485067pt;}
.y2e2{bottom:644.486706pt;}
.y1e7{bottom:644.486827pt;}
.y107{bottom:644.487205pt;}
.y12c{bottom:644.488201pt;}
.y252{bottom:644.713255pt;}
.y7{bottom:645.598667pt;}
.y3e0{bottom:645.924837pt;}
.y219{bottom:646.450667pt;}
.y27b{bottom:647.509226pt;}
.y329{bottom:649.325807pt;}
.y1c1{bottom:651.440310pt;}
.y365{bottom:653.861677pt;}
.y3df{bottom:657.943027pt;}
.y3fd{bottom:659.454984pt;}
.y88{bottom:660.059824pt;}
.y48{bottom:660.209333pt;}
.y2e1{bottom:660.511851pt;}
.y1e6{bottom:660.511972pt;}
.y106{bottom:660.512349pt;}
.y12b{bottom:660.513345pt;}
.y328{bottom:661.344930pt;}
.y75{bottom:661.939358pt;}
.y218{bottom:662.476000pt;}
.y2d4{bottom:662.702486pt;}
.y413{bottom:663.232324pt;}
.y2d{bottom:664.726665pt;}
.y251{bottom:665.424979pt;}
.y364{bottom:665.879867pt;}
.y1c0{bottom:667.390655pt;}
.y27a{bottom:668.220950pt;}
.y4{bottom:668.977329pt;}
.y3de{bottom:669.962151pt;}
.y3fc{bottom:672.910466pt;}
.y74{bottom:673.278101pt;}
.y327{bottom:673.364053pt;}
.y17e{bottom:675.478029pt;}
.yb8{bottom:676.534667pt;}
.y2e0{bottom:676.536996pt;}
.y105{bottom:676.537494pt;}
.y12a{bottom:676.538490pt;}
.y363{bottom:677.898991pt;}
.y155{bottom:678.576538pt;}
.y47{bottom:678.880000pt;}
.y279{bottom:680.163791pt;}
.y2c{bottom:680.726665pt;}
.y3dd{bottom:681.905676pt;}
.y2d3{bottom:683.414210pt;}
.y1bf{bottom:683.414667pt;}
.y412{bottom:683.944047pt;}
.y73{bottom:684.615910pt;}
.y326{bottom:685.306646pt;}
.y3fb{bottom:685.609037pt;}
.y250{bottom:686.136703pt;}
.y153{bottom:689.385333pt;}
.y362{bottom:689.842516pt;}
.ydf{bottom:691.200498pt;}
.y87{bottom:692.034181pt;}
.y278{bottom:692.182630pt;}
.y1e5{bottom:692.486329pt;}
.y104{bottom:692.486706pt;}
.y2df{bottom:692.487342pt;}
.y129{bottom:692.487703pt;}
.y3dc{bottom:693.923866pt;}
.y2b{bottom:696.726665pt;}
.y325{bottom:697.325769pt;}
.y46{bottom:697.550667pt;}
.y3fa{bottom:699.140117pt;}
.y1be{bottom:699.440667pt;}
.y154{bottom:700.270667pt;}
.y2b0{bottom:700.875514pt;}
.y17d{bottom:701.103205pt;}
.y361{bottom:701.860706pt;}
.y2d2{bottom:704.125934pt;}
.y14f{bottom:704.430118pt;}
.y411{bottom:704.655771pt;}
.y3db{bottom:705.942989pt;}
.y24f{bottom:706.848427pt;}
.yde{bottom:707.150844pt;}
.y72{bottom:707.293396pt;}
.y86{bottom:708.059325pt;}
.y2de{bottom:708.511353pt;}
.y1e4{bottom:708.511474pt;}
.yb7{bottom:708.512847pt;}
.y324{bottom:709.343959pt;}
.y152{bottom:710.022094pt;}
.y17b{bottom:711.912000pt;}
.y3f9{bottom:712.594666pt;}
.y2a{bottom:712.726665pt;}
.y277{bottom:712.895354pt;}
.y360{bottom:713.879829pt;}
.y45{bottom:716.221333pt;}
.y3da{bottom:717.961179pt;}
.y71{bottom:718.631205pt;}
.y150{bottom:720.529333pt;}
.y323{bottom:721.363082pt;}
.y17c{bottom:722.797333pt;}
.ydd{bottom:723.175989pt;}
.y85{bottom:724.084470pt;}
.y2dd{bottom:724.536498pt;}
.y1e3{bottom:724.536619pt;}
.y103{bottom:724.536996pt;}
.yb6{bottom:724.537992pt;}
.y2d1{bottom:724.837658pt;}
.y2af{bottom:724.914194pt;}
.y410{bottom:725.367495pt;}
.y35f{bottom:725.898952pt;}
.y3f8{bottom:726.124813pt;}
.y24e{bottom:727.560151pt;}
.y241{bottom:727.634667pt;}
.y3d9{bottom:729.904705pt;}
.y70{bottom:729.969948pt;}
.y1bd{bottom:731.414667pt;}
.y151{bottom:731.489333pt;}
.y322{bottom:733.306607pt;}
.y276{bottom:733.607078pt;}
.y44{bottom:734.892000pt;}
.y35e{bottom:737.841545pt;}
.y3f7{bottom:738.824316pt;}
.ydc{bottom:739.200000pt;}
.y84{bottom:740.033683pt;}
.y1e2{bottom:740.485831pt;}
.y2dc{bottom:740.486844pt;}
.yb5{bottom:740.487205pt;}
.y102{bottom:740.487342pt;}
.y6f{bottom:741.308690pt;}
.y3d8{bottom:741.923828pt;}
.y240{bottom:745.172417pt;}
.y321{bottom:745.324797pt;}
.y2d0{bottom:745.625381pt;}
.y2ae{bottom:745.625918pt;}
.y40f{bottom:746.079219pt;}
.y1bc{bottom:746.760243pt;}
.y24d{bottom:748.271874pt;}
.y35d{bottom:749.860668pt;}
.y3f6{bottom:751.977407pt;}
.y6e{bottom:752.571835pt;}
.y43{bottom:753.562667pt;}
.y3d7{bottom:753.942018pt;}
.y275{bottom:754.318802pt;}
.ydb{bottom:755.149333pt;}
.y83{bottom:756.058827pt;}
.y1e1{bottom:756.510976pt;}
.y101{bottom:756.511353pt;}
.y2db{bottom:756.511989pt;}
.yb4{bottom:756.512349pt;}
.y3a6{bottom:757.343921pt;}
.y320{bottom:758.477888pt;}
.y29{bottom:759.368002pt;}
.y35c{bottom:761.878858pt;}
.y23f{bottom:762.860181pt;}
.y6d{bottom:763.909645pt;}
.y3f5{bottom:765.053967pt;}
.y3d6{bottom:765.961141pt;}
.y2cf{bottom:766.337105pt;}
.y274{bottom:766.337642pt;}
.y40e{bottom:766.790943pt;}
.y14e{bottom:768.832160pt;}
.y24c{bottom:768.983598pt;}
.y3a5{bottom:769.363044pt;}
.y17a{bottom:769.814094pt;}
.y31f{bottom:771.630046pt;}
.y82{bottom:772.083972pt;}
.y42{bottom:772.233333pt;}
.y2da{bottom:772.536000pt;}
.y1e0{bottom:772.536121pt;}
.y100{bottom:772.536498pt;}
.yb3{bottom:772.537494pt;}
.y35b{bottom:773.897981pt;}
.y3d5{bottom:777.904667pt;}
.y28{bottom:778.034669pt;}
.y3f4{bottom:778.207058pt;}
.y178{bottom:780.397333pt;}
.y23e{bottom:780.548945pt;}
.y3a4{bottom:781.305636pt;}
.y3{bottom:781.661334pt;}
.y31e{bottom:784.707539pt;}
.y14d{bottom:784.857305pt;}
.y35a{bottom:785.841506pt;}
.y6c{bottom:786.435934pt;}
.y2ce{bottom:787.048828pt;}
.y273{bottom:787.049365pt;}
.yda{bottom:787.202466pt;}
.y1bb{bottom:787.427165pt;}
.y40d{bottom:787.502667pt;}
.y81{bottom:788.033185pt;}
.y1df{bottom:788.485333pt;}
.yb2{bottom:788.486706pt;}
.yff{bottom:788.486844pt;}
.y24b{bottom:789.695322pt;}
.y3d4{bottom:789.922856pt;}
.y41{bottom:790.904000pt;}
.y179{bottom:791.281333pt;}
.y3f3{bottom:791.359215pt;}
.y3a3{bottom:793.324759pt;}
.y31d{bottom:797.859696pt;}
.y23d{bottom:798.312709pt;}
.y2ad{bottom:799.068205pt;}
.y6b{bottom:799.739288pt;}
.y3d3{bottom:801.941980pt;}
.y1ba{bottom:803.452310pt;}
.y3f2{bottom:803.983121pt;}
.y80{bottom:804.058329pt;}
.y1de{bottom:804.510667pt;}
.yb1{bottom:804.511851pt;}
.yfe{bottom:804.511989pt;}
.y40c{bottom:805.266252pt;}
.y3a2{bottom:805.342949pt;}
.y2cd{bottom:807.760552pt;}
.y272{bottom:807.761089pt;}
.y31c{bottom:809.878820pt;}
.y24a{bottom:810.407046pt;}
.y14c{bottom:812.296116pt;}
.y3d2{bottom:813.960170pt;}
.y23c{bottom:816.000473pt;}
.y3a1{bottom:817.362072pt;}
.y3f1{bottom:817.513268pt;}
.y176{bottom:818.116761pt;}
.y1b9{bottom:819.477454pt;}
.y271{bottom:819.779929pt;}
.y7f{bottom:820.083474pt;}
.y14b{bottom:820.083668pt;}
.yfd{bottom:820.536000pt;}
.y128{bottom:820.536996pt;}
.y3f{bottom:820.838667pt;}
.y31b{bottom:821.897943pt;}
.y3d1{bottom:825.903695pt;}
.y40{bottom:826.205333pt;}
.y2cc{bottom:828.472276pt;}
.y177{bottom:828.698667pt;}
.y174{bottom:828.701433pt;}
.y3a0{bottom:829.305598pt;}
.y3f0{bottom:831.043415pt;}
.y249{bottom:831.118770pt;}
.y270{bottom:831.798769pt;}
.y1b7{bottom:833.537333pt;}
.y23b{bottom:833.688237pt;}
.y31a{bottom:833.840535pt;}
.y40a{bottom:834.218045pt;}
.y27{bottom:834.625331pt;}
.y1b8{bottom:835.426667pt;}
.y1b6{bottom:835.426671pt;}
.y3d{bottom:835.502667pt;}
.y7e{bottom:836.032687pt;}
.yfc{bottom:836.485333pt;}
.yd9{bottom:836.486020pt;}
.yb0{bottom:836.487342pt;}
.y3d0{bottom:839.433842pt;}
.y175{bottom:839.584000pt;}
.y2{bottom:840.112001pt;}
.y3e{bottom:840.869333pt;}
.y39f{bottom:841.323788pt;}
.y3ef{bottom:844.574495pt;}
.y319{bottom:845.859658pt;}
.y40b{bottom:848.882072pt;}
.y2cb{bottom:849.184000pt;}
.y23a{bottom:851.452000pt;}
.y248{bottom:851.830494pt;}
.y7d{bottom:852.057831pt;}
.y26f{bottom:852.510493pt;}
.yd8{bottom:852.511165pt;}
.yaf{bottom:852.511353pt;}
.y3cf{bottom:852.964922pt;}
.y39e{bottom:853.342911pt;}
.y3c{bottom:856.971357pt;}
.y3ee{bottom:857.197468pt;}
.y318{bottom:857.877848pt;}
.y1{bottom:859.312000pt;}
.y1b2{bottom:860.447691pt;}
.y26{bottom:862.625331pt;}
.y247{bottom:863.849333pt;}
.y1b1{bottom:864.151827pt;}
.y26e{bottom:864.453333pt;}
.y39d{bottom:865.362034pt;}
.y3ce{bottom:866.495069pt;}
.y2ca{bottom:866.873308pt;}
.y7c{bottom:868.082976pt;}
.yfb{bottom:868.536121pt;}
.yd7{bottom:868.536310pt;}
.yae{bottom:868.536498pt;}
.y239{bottom:869.141235pt;}
.y3ed{bottom:869.216591pt;}
.y317{bottom:869.896971pt;}
.y1b5{bottom:870.046197pt;}
.y409{bottom:872.012000pt;}
.y20e{bottom:873.674730pt;}
.y1b0{bottom:874.054358pt;}
.y217{bottom:875.791263pt;}
.y1ac{bottom:877.380000pt;}
.y1af{bottom:877.758493pt;}
.y39c{bottom:878.438594pt;}
.y3ec{bottom:881.235714pt;}
.y246{bottom:881.537335pt;}
.y359{bottom:881.840497pt;}
.y26d{bottom:882.218601pt;}
.y3b{bottom:883.577333pt;}
.y7b{bottom:884.033322pt;}
.yfa{bottom:884.485333pt;}
.yd6{bottom:884.486655pt;}
.yad{bottom:884.486844pt;}
.y1ae{bottom:887.659691pt;}
.y1b4{bottom:890.380225pt;}
.y1ad{bottom:891.364035pt;}
.y39b{bottom:891.591685pt;}
.y316{bottom:893.858687pt;}
.y238{bottom:894.464137pt;}
.y408{bottom:897.334667pt;}
.y7a{bottom:900.057333pt;}
.y1b3{bottom:900.508706pt;}
.yd5{bottom:900.510667pt;}
.yac{bottom:900.511989pt;}
.y39a{bottom:904.743842pt;}
.y315{bottom:905.877810pt;}
.y245{bottom:910.034667pt;}
.y26c{bottom:910.640000pt;}
.y237{bottom:911.773333pt;}
.y3a{bottom:914.268000pt;}
.y79{bottom:916.081333pt;}
.yab{bottom:916.536000pt;}
.y314{bottom:917.896000pt;}
.y25{bottom:920.485335pt;}
.y69{bottom:989.178382pt;}
.y68{bottom:1002.557333pt;}
.y24{bottom:1035.664002pt;}
.h4b{height:19.460748pt;}
.h3d{height:21.008839pt;}
.h21{height:23.267552pt;}
.h29{height:24.434256pt;}
.h1c{height:27.109750pt;}
.h34{height:28.008160pt;}
.h7{height:28.560000pt;}
.h4c{height:28.745845pt;}
.h1a{height:29.193833pt;}
.h2a{height:29.412572pt;}
.h15{height:29.656281pt;}
.h1b{height:30.500462pt;}
.h25{height:30.934032pt;}
.h23{height:31.279583pt;}
.hb{height:32.645833pt;}
.h49{height:32.679564pt;}
.h19{height:33.364916pt;}
.h28{height:34.588926pt;}
.h24{height:34.602619pt;}
.h20{height:34.906256pt;}
.h3c{height:34.996922pt;}
.h33{height:35.121853pt;}
.h30{height:35.125360pt;}
.h2d{height:35.126121pt;}
.h2e{height:35.130925pt;}
.h2f{height:35.131778pt;}
.h31{height:35.132920pt;}
.h2c{height:35.134579pt;}
.hf{height:36.726562pt;}
.h1f{height:36.960000pt;}
.h22{height:37.036898pt;}
.h1e{height:37.121333pt;}
.h38{height:37.431127pt;}
.h17{height:39.216000pt;}
.h18{height:39.546486pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h42{height:40.918111pt;}
.h44{height:40.918946pt;}
.h48{height:42.011866pt;}
.h1d{height:42.018172pt;}
.h3{height:42.840000pt;}
.h3f{height:43.334058pt;}
.h14{height:44.490353pt;}
.h3e{height:45.735665pt;}
.h2b{height:45.779076pt;}
.h32{height:45.786128pt;}
.h3b{height:46.201702pt;}
.h3a{height:47.550453pt;}
.h4a{height:47.617573pt;}
.h41{height:47.830285pt;}
.h35{height:48.152915pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h16{height:49.433725pt;}
.h46{height:49.718159pt;}
.h43{height:49.723493pt;}
.h12{height:52.287564pt;}
.h45{height:55.735490pt;}
.h40{height:56.036952pt;}
.h37{height:58.438564pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.h47{height:71.348494pt;}
.h26{height:72.851500pt;}
.h27{height:73.161806pt;}
.hc{height:73.453125pt;}
.h13{height:84.036839pt;}
.h36{height:84.299621pt;}
.h4{height:105.826671pt;}
.h39{height:120.424967pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w5{width:812.598667pt;}
.w6{width:812.666667pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x14{left:66.670800pt;}
.xa6{left:74.683333pt;}
.x12{left:79.370000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:129.466667pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x9{left:207.185331pt;}
.xa{left:240.226667pt;}
.x38{left:241.889579pt;}
.x37{left:242.948000pt;}
.x1d{left:244.006683pt;}
.x1a{left:245.367948pt;}
.x18{left:247.408000pt;}
.x3f{left:248.844000pt;}
.x17{left:251.337733pt;}
.x19{left:252.245333pt;}
.x2e{left:253.228246pt;}
.x2c{left:254.285312pt;}
.x2d{left:255.949333pt;}
.xa5{left:258.669867pt;}
.x8{left:260.969328pt;}
.x33{left:262.299604pt;}
.x4d{left:266.079931pt;}
.x2f{left:267.590667pt;}
.x54{left:268.875731pt;}
.x6f{left:271.293196pt;}
.x4a{left:272.731237pt;}
.x34{left:277.720000pt;}
.x49{left:280.214667pt;}
.x8f{left:282.708066pt;}
.x4c{left:283.616570pt;}
.x29{left:286.110271pt;}
.x27{left:287.697333pt;}
.x2b{left:288.906667pt;}
.x73{left:290.191162pt;}
.x28{left:291.098667pt;}
.x4e{left:292.006667pt;}
.x48{left:293.442667pt;}
.x70{left:296.616098pt;}
.x90{left:300.397333pt;}
.x2a{left:301.530667pt;}
.x21{left:308.407976pt;}
.x74{left:310.601333pt;}
.x55{left:311.886667pt;}
.x36{left:313.852435pt;}
.x35{left:317.102667pt;}
.x4b{left:320.655237pt;}
.x75{left:322.620173pt;}
.x56{left:323.905506pt;}
.x24{left:327.458271pt;}
.x22{left:329.045333pt;}
.x26{left:330.254667pt;}
.x23{left:332.446667pt;}
.x71{left:334.714430pt;}
.x76{left:340.307937pt;}
.x57{left:341.669270pt;}
.x25{left:342.878667pt;}
.x8c{left:348.471527pt;}
.x16{left:352.176000pt;}
.x58{left:353.612110pt;}
.xa0{left:354.594842pt;}
.xa2{left:355.652828pt;}
.x52{left:357.769168pt;}
.x44{left:360.266914pt;}
.xa1{left:361.548749pt;}
.x91{left:362.607504pt;}
.x31{left:368.958271pt;}
.x72{left:369.940000pt;}
.x59{left:371.375873pt;}
.x30{left:373.946667pt;}
.x40{left:376.744733pt;}
.x11{left:380.145333pt;}
.x92{left:383.319228pt;}
.x32{left:384.377333pt;}
.x77{left:387.778304pt;}
.x5a{left:389.063638pt;}
.xb{left:390.576000pt;}
.xc{left:395.792000pt;}
.xa4{left:398.737729pt;}
.xa3{left:401.458830pt;}
.x3{left:404.408000pt;}
.x78{left:405.467068pt;}
.x5b{left:406.752402pt;}
.x9b{left:407.884903pt;}
.x3b{left:409.852000pt;}
.x1c{left:414.008418pt;}
.x3c{left:417.637333pt;}
.x79{left:423.154833pt;}
.x5c{left:424.516165pt;}
.x8d{left:427.992267pt;}
.x7a{left:440.918596pt;}
.x5d{left:442.203929pt;}
.x93{left:445.455399pt;}
.x8e{left:449.913939pt;}
.x41{left:453.089333pt;}
.x42{left:456.492306pt;}
.x7b{left:458.607360pt;}
.x5e{left:459.967692pt;}
.x43{left:463.748000pt;}
.x94{left:466.167123pt;}
.x7c{left:470.626200pt;}
.x5f{left:471.911533pt;}
.x95{left:486.878847pt;}
.x7d{left:488.313964pt;}
.x60{left:489.675296pt;}
.x9c{left:493.529358pt;}
.x9d{left:494.739342pt;}
.x1e{left:498.066279pt;}
.x7e{left:500.332804pt;}
.x61{left:501.618137pt;}
.x13{left:503.357333pt;}
.x4f{left:507.212000pt;}
.x51{left:509.477975pt;}
.x50{left:512.428000pt;}
.x7f{left:518.021568pt;}
.x62{left:519.381900pt;}
.x45{left:526.790667pt;}
.x96{left:528.302295pt;}
.x80{left:530.040407pt;}
.x63{left:531.400740pt;}
.x46{left:541.757333pt;}
.x81{left:547.728172pt;}
.x64{left:549.089504pt;}
.x9e{left:550.827594pt;}
.x82{left:559.747011pt;}
.x65{left:561.108344pt;}
.x97{left:569.725742pt;}
.xd{left:576.529333pt;}
.x83{left:577.510774pt;}
.x66{left:578.796108pt;}
.xe{left:581.669333pt;}
.x1b{left:582.651169pt;}
.x84{left:589.454615pt;}
.x67{left:590.814948pt;}
.x85{left:607.218378pt;}
.x68{left:608.503712pt;}
.x98{left:611.149190pt;}
.x86{left:624.906143pt;}
.x69{left:626.191476pt;}
.x99{left:631.860914pt;}
.x87{left:642.593907pt;}
.x6a{left:643.955239pt;}
.x9a{left:649.398667pt;}
.x88{left:654.612746pt;}
.x47{left:655.974667pt;}
.x3d{left:660.057333pt;}
.x3e{left:667.766667pt;}
.x89{left:672.376510pt;}
.x6b{left:673.661843pt;}
.x20{left:680.389848pt;}
.x1f{left:681.296836pt;}
.x53{left:684.541279pt;}
.x15{left:690.066667pt;}
.x6c{left:691.350607pt;}
.x9f{left:693.466692pt;}
.x39{left:696.113333pt;}
.x3a{left:705.108000pt;}
.x8a{left:707.753038pt;}
.x6d{left:709.114370pt;}
.xf{left:717.278667pt;}
.x10{left:725.896000pt;}
.x8b{left:729.296751pt;}
.x6e{left:730.582084pt;}
}




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