
    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_bbf3578ed9f379899263aa4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_4f6ada9693269b8e913d78df.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.136719;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_f618795c48bd568bc6a9718c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107910;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_61c3b966d1b8eb4a2dbd8c58.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_3370781012164829cc736854.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109863;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_b9d16fdeb0df2f0502595797.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_df45aceb3390d522d0ee4b9b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_39d33ff3d63e356a422b23c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107910;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_28f63709327cbeaae5f4f44a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_113f6b6837734783a6c50e5c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e758dac7e59d7a7a51184076.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.578000;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_9bde4470e8e98a4e55f9cd89.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.669000;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_21fb0b6de1491ae359b123ab.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.285000;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_2bdc54d8e110e91c72599aeb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.452000;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_932bfd4db8bfe45488c8c612.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_be0e791df6070d59ec7a9c07.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.188000;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;}
.m8{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);}
.m7{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-17.346000px;}
.v2{vertical-align:-15.648000px;}
.v7{vertical-align:-7.146000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.698540px;}
.v9{vertical-align:3.060518px;}
.va{vertical-align:9.862242px;}
.v8{vertical-align:13.938328px;}
.v1{vertical-align:15.643426px;}
.v3{vertical-align:17.334296px;}
.v6{vertical-align:25.166879px;}
.v5{vertical-align:32.312879px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.148795px;}
.lsa{letter-spacing:0.149022px;}
.ls24{letter-spacing:0.236851px;}
.ls0{letter-spacing:1.778178px;}
.ls7{letter-spacing:2.649600px;}
.ls6{letter-spacing:2.652600px;}
.ls20{letter-spacing:2.655600px;}
.ls25{letter-spacing:2.937900px;}
.ls2{letter-spacing:2.967000px;}
.ls5{letter-spacing:2.991600px;}
.ls23{letter-spacing:2.992800px;}
.ls1f{letter-spacing:2.997600px;}
.ls1b{letter-spacing:9.005321px;}
.ls2a{letter-spacing:9.686267px;}
.ls9{letter-spacing:9.779313px;}
.ls2f{letter-spacing:10.118839px;}
.ls30{letter-spacing:10.123621px;}
.ls2e{letter-spacing:10.463147px;}
.ls1d{letter-spacing:11.021381px;}
.ls17{letter-spacing:11.044334px;}
.ls22{letter-spacing:11.358028px;}
.ls14{letter-spacing:11.361854px;}
.ls29{letter-spacing:11.384807px;}
.ls2d{letter-spacing:11.481726px;}
.ls19{letter-spacing:11.698501px;}
.ls16{letter-spacing:11.702327px;}
.ls1c{letter-spacing:11.725280px;}
.ls4{letter-spacing:12.155997px;}
.ls2c{letter-spacing:12.160779px;}
.ls8{letter-spacing:12.500305px;}
.ls28{letter-spacing:12.782286px;}
.ls21{letter-spacing:13.117982px;}
.ls13{letter-spacing:13.122286px;}
.lsb{letter-spacing:13.454271px;}
.ls27{letter-spacing:16.862288px;}
.ls1e{letter-spacing:18.281815px;}
.ls1{letter-spacing:19.038201px;}
.ls1a{letter-spacing:19.690054px;}
.ls31{letter-spacing:20.030527px;}
.ls32{letter-spacing:21.418847px;}
.lsf{letter-spacing:31.254662px;}
.ls12{letter-spacing:31.591309px;}
.ls10{letter-spacing:31.595135px;}
.lsc{letter-spacing:35.325077px;}
.ls18{letter-spacing:93.542104px;}
.ls15{letter-spacing:147.964236px;}
.ls26{letter-spacing:211.234842px;}
.ls2b{letter-spacing:263.617961px;}
.ls11{letter-spacing:277.221582px;}
.lse{letter-spacing:277.225407px;}
.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;}
}
.ws2f{word-spacing:-240.997543px;}
.wsd{word-spacing:-47.820600px;}
.ws25{word-spacing:-38.255400px;}
.wse{word-spacing:-34.637558px;}
.ws43{word-spacing:-14.748790px;}
.ws3{word-spacing:-14.011436px;}
.ws7{word-spacing:-13.437589px;}
.ws1{word-spacing:-12.375441px;}
.ws4{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.ws1d{word-spacing:-11.208832px;}
.ws2c{word-spacing:-10.759500px;}
.ws9{word-spacing:-10.061328px;}
.ws45{word-spacing:-9.832526px;}
.ws5c{word-spacing:-9.563850px;}
.ws8{word-spacing:0.000000px;}
.wsb{word-spacing:0.875117px;}
.wsa{word-spacing:0.989886px;}
.wsc{word-spacing:1.558952px;}
.ws6{word-spacing:1.807596px;}
.ws5{word-spacing:6.025396px;}
.ws5d{word-spacing:12.674014px;}
.ws5b{word-spacing:12.781129px;}
.ws2{word-spacing:16.182491px;}
.ws2b{word-spacing:56.671550px;}
.ws47{word-spacing:67.865080px;}
.ws4d{word-spacing:67.953067px;}
.ws40{word-spacing:77.222350px;}
.ws14{word-spacing:78.228467px;}
.ws44{word-spacing:79.951172px;}
.ws48{word-spacing:83.255227px;}
.ws41{word-spacing:84.223089px;}
.ws17{word-spacing:95.680581px;}
.ws56{word-spacing:99.884849px;}
.ws4a{word-spacing:103.951398px;}
.ws28{word-spacing:106.548940px;}
.ws1a{word-spacing:110.971264px;}
.ws4e{word-spacing:111.900871px;}
.ws1c{word-spacing:112.769268px;}
.ws1b{word-spacing:113.610887px;}
.ws19{word-spacing:117.218371px;}
.ws15{word-spacing:117.287231px;}
.ws59{word-spacing:121.422640px;}
.ws57{word-spacing:121.426465px;}
.ws5a{word-spacing:121.499150px;}
.ws36{word-spacing:124.701127px;}
.ws3b{word-spacing:124.808243px;}
.ws33{word-spacing:124.812068px;}
.ws4b{word-spacing:125.489189px;}
.ws20{word-spacing:132.011734px;}
.ws49{word-spacing:139.666640px;}
.ws55{word-spacing:142.960430px;}
.ws2e{word-spacing:146.238918px;}
.ws42{word-spacing:148.691089px;}
.ws16{word-spacing:149.467673px;}
.ws58{word-spacing:164.498220px;}
.ws54{word-spacing:164.502046px;}
.ws21{word-spacing:174.746842px;}
.ws22{word-spacing:174.980200px;}
.ws27{word-spacing:176.491288px;}
.ws26{word-spacing:176.495113px;}
.ws2a{word-spacing:186.778165px;}
.ws23{word-spacing:196.514164px;}
.ws29{word-spacing:197.489677px;}
.ws11{word-spacing:209.467443px;}
.wsf{word-spacing:230.928722px;}
.ws12{word-spacing:246.001350px;}
.ws18{word-spacing:247.458880px;}
.ws13{word-spacing:247.462706px;}
.ws10{word-spacing:249.865145px;}
.ws50{word-spacing:280.618661px;}
.ws1f{word-spacing:287.856583px;}
.ws52{word-spacing:334.405754px;}
.ws53{word-spacing:345.232032px;}
.ws51{word-spacing:355.943544px;}
.ws4f{word-spacing:377.481334px;}
.ws4c{word-spacing:379.692496px;}
.ws1e{word-spacing:388.881443px;}
.ws46{word-spacing:404.183603px;}
.ws24{word-spacing:481.689044px;}
.ws38{word-spacing:612.457477px;}
.ws3c{word-spacing:615.976974px;}
.ws37{word-spacing:691.026418px;}
.ws34{word-spacing:717.430295px;}
.ws32{word-spacing:738.776808px;}
.ws3d{word-spacing:742.602348px;}
.ws3a{word-spacing:757.177656px;}
.ws2d{word-spacing:795.509566px;}
.ws35{word-spacing:807.364915px;}
.ws31{word-spacing:809.051978px;}
.ws39{word-spacing:817.498770px;}
.ws30{word-spacing:821.446728px;}
.ws3e{word-spacing:837.781783px;}
.ws3f{word-spacing:886.021843px;}
._6a{margin-left:-211.234842px;}
._6{margin-left:-17.343592px;}
._c{margin-left:-5.332229px;}
._7{margin-left:-3.337645px;}
._5{margin-left:-2.291498px;}
._4{margin-left:-1.227998px;}
._3{width:1.427556px;}
._1{width:2.490466px;}
._2{width:4.013713px;}
._8{width:5.050985px;}
._d{width:6.087562px;}
._e{width:7.254385px;}
._9{width:8.645964px;}
._b{width:10.587481px;}
._a{width:11.730393px;}
._f{width:12.964165px;}
._11{width:15.675593px;}
._0{width:16.784820px;}
._18{width:17.947492px;}
._12{width:19.018253px;}
._10{width:20.318240px;}
._13{width:21.327988px;}
._17{width:22.403951px;}
._95{width:24.732814px;}
._94{width:28.735399px;}
._14{width:29.854401px;}
._16{width:32.398457px;}
._15{width:33.421817px;}
._22{width:68.094612px;}
._4a{width:70.397587px;}
._92{width:72.428949px;}
._64{width:74.077757px;}
._4b{width:78.285851px;}
._87{width:79.540628px;}
._8b{width:86.158812px;}
._8f{width:90.294221px;}
._75{width:96.185452px;}
._93{width:97.945301px;}
._50{width:100.179416px;}
._88{width:103.232197px;}
._31{width:106.889413px;}
._70{width:111.227576px;}
._74{width:112.826651px;}
._6f{width:114.318612px;}
._7d{width:116.005675px;}
._29{width:117.600925px;}
._5f{width:118.863353px;}
._5b{width:120.756996px;}
._36{width:122.023249px;}
._28{width:128.496063px;}
._6e{width:129.869432px;}
._89{width:132.631472px;}
._47{width:135.229013px;}
._7e{width:136.698021px;}
._7c{width:139.632210px;}
._4d{width:141.877802px;}
._49{width:143.342984px;}
._91{width:144.437088px;}
._6d{width:146.770668px;}
._4e{width:148.675787px;}
._2a{width:149.964994px;}
._80{width:151.277154px;}
._86{width:154.716314px;}
._48{width:157.202915px;}
._2c{width:160.676506px;}
._8c{width:162.118734px;}
._37{width:164.127143px;}
._24{width:165.722393px;}
._71{width:166.870055px;}
._32{width:168.362015px;}
._85{width:171.583120px;}
._19{width:172.857025px;}
._73{width:175.316847px;}
._2f{width:179.938099px;}
._27{width:182.214296px;}
._8a{width:183.656524px;}
._4c{width:184.995463px;}
._5a{width:186.437692px;}
._67{width:187.952606px;}
._72{width:189.172953px;}
._43{width:192.642718px;}
._62{width:196.219598px;}
._65{width:198.143844px;}
._84{width:204.061955px;}
._8d{width:205.423847px;}
._57{width:208.113202px;}
._30{width:210.163691px;}
._7f{width:211.667128px;}
._2d{width:216.942548px;}
._60{width:218.113163px;}
._3a{width:219.995329px;}
._61{width:223.801741px;}
._26{width:226.234785px;}
._90{width:227.611979px;}
._33{width:228.874407px;}
._5c{width:230.125359px;}
._25{width:232.282963px;}
._68{width:239.325782px;}
._1f{width:240.377806px;}
._20{width:241.487212px;}
._35{width:249.876622px;}
._46{width:253.067122px;}
._41{width:254.731232px;}
._39{width:262.573589px;}
._3f{width:274.604912px;}
._1a{width:283.744127px;}
._21{width:285.503876px;}
._1d{width:297.516071px;}
._1e{width:298.740244px;}
._1c{width:301.188590px;}
._77{width:302.202358px;}
._34{width:303.663714px;}
._79{width:315.882489px;}
._1b{width:317.489216px;}
._8e{width:320.090583px;}
._40{width:324.356060px;}
._38{width:328.066834px;}
._78{width:332.179289px;}
._63{width:334.883946px;}
._69{width:340.381247px;}
._2b{width:341.880859px;}
._3c{width:345.893850px;}
._44{width:350.353800px;}
._82{width:352.638277px;}
._6b{width:362.603809px;}
._3b{width:364.042212px;}
._66{width:365.679543px;}
._42{width:384.669524px;}
._83{width:388.636609px;}
._7a{width:390.905154px;}
._7b{width:393.540951px;}
._2e{width:394.673311px;}
._3e{width:401.911232px;}
._81{width:405.928049px;}
._76{width:418.035883px;}
._23{width:420.266173px;}
._45{width:423.449023px;}
._3d{width:427.530874px;}
._58{width:483.261340px;}
._5e{width:489.952210px;}
._59{width:493.666809px;}
._54{width:495.005748px;}
._5d{width:496.838182px;}
._56{width:499.519885px;}
._4f{width:501.314064px;}
._55{width:503.957512px;}
._51{width:506.937608px;}
._53{width:514.053112px;}
._52{width:516.310181px;}
._6c{width:692.556634px;}
.fc3{color:rgb(112,109,110);}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs5{font-size:26.761800px;}
.fs11{font-size:26.778600px;}
.fs10{font-size:30.108600px;}
.fs8{font-size:30.126000px;}
.fsf{font-size:31.083000px;}
.fs9{font-size:32.280600px;}
.fse{font-size:33.472800px;}
.fs14{font-size:35.368800px;}
.fsd{font-size:35.867400px;}
.fs6{font-size:38.255400px;}
.fsc{font-size:38.256000px;}
.fs12{font-size:40.933200px;}
.fs7{font-size:41.842200px;}
.fs4{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fsa{font-size:47.820600px;}
.fs13{font-size:53.053200px;}
.fs1{font-size:57.384000px;}
.fs3{font-size:63.362400px;}
.fs2{font-size:80.697000px;}
.fsb{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y321{bottom:4.306138px;}
.y30b{bottom:20.143050px;}
.y312{bottom:20.156250px;}
.y313{bottom:41.908062px;}
.y43{bottom:47.430000px;}
.y314{bottom:63.659874px;}
.y30c{bottom:70.914962px;}
.y46f{bottom:78.407365px;}
.yc4{bottom:78.407758px;}
.y245{bottom:78.409774px;}
.yda{bottom:78.410048px;}
.y381{bottom:78.411784px;}
.y147{bottom:78.412700px;}
.y4b7{bottom:78.412980px;}
.y329{bottom:78.491250px;}
.y87{bottom:79.346894px;}
.y1c8{bottom:79.351073px;}
.yf0{bottom:80.875078px;}
.y323{bottom:81.243150px;}
.y428{bottom:85.294350px;}
.y426{bottom:85.294900px;}
.y355{bottom:85.294907px;}
.y259{bottom:85.294919px;}
.y2c0{bottom:85.295803px;}
.y150{bottom:85.296534px;}
.y2d0{bottom:85.297542px;}
.y315{bottom:85.411686px;}
.y1f0{bottom:88.696040px;}
.y427{bottom:89.546400px;}
.y4b6{bottom:90.403179px;}
.y164{bottom:91.080197px;}
.y4{bottom:91.200000px;}
.yc3{bottom:94.139540px;}
.yd9{bottom:94.141830px;}
.y244{bottom:94.142751px;}
.y380{bottom:94.143566px;}
.y146{bottom:94.144482px;}
.y86{bottom:95.078676px;}
.y1c7{bottom:95.082855px;}
.yef{bottom:96.521978px;}
.y50c{bottom:96.696192px;}
.y354{bottom:98.220450px;}
.y2bf{bottom:98.221346px;}
.y425{bottom:98.221400px;}
.y258{bottom:98.221419px;}
.y14f{bottom:98.222077px;}
.y2cf{bottom:98.223085px;}
.y30a{bottom:101.281950px;}
.y4b5{bottom:102.309216px;}
.y1ef{bottom:104.344136px;}
.y3{bottom:105.630000px;}
.y163{bottom:106.811978px;}
.y316{bottom:107.163498px;}
.y50b{bottom:108.601273px;}
.y44d{bottom:109.020917px;}
.y46e{bottom:109.786047px;}
.yc2{bottom:109.787636px;}
.yd8{bottom:109.788731px;}
.y243{bottom:109.789652px;}
.y37f{bottom:109.790466px;}
.y145{bottom:109.791382px;}
.y85{bottom:110.725577px;}
.y3e0{bottom:110.726557px;}
.y1c6{bottom:110.730951px;}
.y353{bottom:111.061350px;}
.y2be{bottom:111.061771px;}
.y424{bottom:111.061825px;}
.y257{bottom:111.061844px;}
.y351{bottom:111.062919px;}
.y14e{bottom:111.063459px;}
.y2ce{bottom:111.063510px;}
.yee{bottom:112.254956px;}
.y4b4{bottom:114.299415px;}
.y1ad{bottom:114.803100px;}
.y352{bottom:115.313250px;}
.y322{bottom:116.463900px;}
.y1ac{bottom:119.565300px;}
.y41{bottom:119.905636px;}
.y1ee{bottom:120.075917px;}
.y50a{bottom:120.592428px;}
.y30d{bottom:121.686875px;}
.y422{bottom:122.286600px;}
.y162{bottom:122.460074px;}
.y423{bottom:123.902250px;}
.y256{bottom:123.902269px;}
.y2bd{bottom:123.903152px;}
.y350{bottom:123.903344px;}
.y14d{bottom:123.903884px;}
.y2cd{bottom:123.904891px;}
.y421{bottom:123.905031px;}
.y44c{bottom:124.667818px;}
.yc1{bottom:125.519417px;}
.y242{bottom:125.521434px;}
.yd7{bottom:125.521708px;}
.y37e{bottom:125.522248px;}
.y144{bottom:125.524359px;}
.y328{bottom:125.724600px;}
.y4b3{bottom:126.204495px;}
.y84{bottom:126.458554px;}
.y3df{bottom:126.459534px;}
.y1c5{bottom:126.462733px;}
.yed{bottom:127.901856px;}
.y317{bottom:128.915310px;}
.y509{bottom:132.582627px;}
.y40{bottom:134.192100px;}
.y1ed{bottom:135.722818px;}
.y1ab{bottom:135.979150px;}
.y2bc{bottom:136.743577px;}
.y255{bottom:136.743650px;}
.y34f{bottom:136.743769px;}
.y14c{bottom:136.744309px;}
.y2cc{bottom:136.745316px;}
.y420{bottom:136.745456px;}
.y161{bottom:138.191856px;}
.y4b2{bottom:138.194694px;}
.y44b{bottom:140.399600px;}
.y327{bottom:140.910600px;}
.yc0{bottom:141.166318px;}
.y241{bottom:141.168334px;}
.yd6{bottom:141.168608px;}
.y37d{bottom:141.170344px;}
.y143{bottom:141.171260px;}
.y83{bottom:142.105454px;}
.y3de{bottom:142.106434px;}
.y1c4{bottom:142.109633px;}
.yec{bottom:143.633638px;}
.y508{bottom:144.487707px;}
.y1aa{bottom:148.905650px;}
.y254{bottom:149.584075px;}
.y2bb{bottom:149.584959px;}
.y34e{bottom:149.585150px;}
.y14b{bottom:149.585690px;}
.y2cb{bottom:149.586698px;}
.y41f{bottom:149.586838px;}
.y4b1{bottom:150.185849px;}
.y318{bottom:150.667122px;}
.y1ec{bottom:151.454600px;}
.y46d{bottom:153.240626px;}
.y160{bottom:153.838756px;}
.y449{bottom:154.092000px;}
.y44a{bottom:156.046500px;}
.y448{bottom:156.053434px;}
.y507{bottom:156.477906px;}
.ybf{bottom:156.898100px;}
.y240{bottom:156.900116px;}
.yd5{bottom:156.900390px;}
.y37c{bottom:156.902125px;}
.y142{bottom:156.903042px;}
.y82{bottom:157.837236px;}
.y3dd{bottom:157.838216px;}
.y1c3{bottom:157.841415px;}
.yeb{bottom:159.280538px;}
.y3c{bottom:159.703536px;}
.y1a9{bottom:161.746075px;}
.y4b0{bottom:162.090929px;}
.y2ba{bottom:162.425384px;}
.y34d{bottom:162.425575px;}
.y41e{bottom:162.427263px;}
.y252{bottom:162.427418px;}
.y1eb{bottom:167.102818px;}
.y506{bottom:168.383943px;}
.y46c{bottom:168.886331px;}
.y2ca{bottom:169.060609px;}
.y14a{bottom:169.314000px;}
.y15f{bottom:169.570538px;}
.y326{bottom:170.605471px;}
.y447{bottom:171.785216px;}
.y319{bottom:172.418934px;}
.y30e{bottom:172.458787px;}
.ybe{bottom:172.546318px;}
.yd4{bottom:172.547291px;}
.y23f{bottom:172.548212px;}
.y37b{bottom:172.549026px;}
.y81{bottom:173.569018px;}
.y3dc{bottom:173.569998px;}
.y1c2{bottom:173.574392px;}
.y34b{bottom:173.736000px;}
.y3b{bottom:174.075000px;}
.y4af{bottom:174.081128px;}
.y1a8{bottom:174.586500px;}
.y1a6{bottom:174.587083px;}
.yea{bottom:175.013516px;}
.y2b9{bottom:175.265809px;}
.y34c{bottom:175.266000px;}
.y34a{bottom:175.267075px;}
.y251{bottom:175.267843px;}
.y41d{bottom:175.268644px;}
.y1a7{bottom:178.837500px;}
.y505{bottom:180.374141px;}
.y2c9{bottom:181.986152px;}
.y1ea{bottom:182.834600px;}
.y46b{bottom:184.619309px;}
.y15e{bottom:185.303516px;}
.y325{bottom:185.791950px;}
.y4ae{bottom:185.986209px;}
.y348{bottom:186.576000px;}
.y1a5{bottom:187.427508px;}
.y446{bottom:187.432116px;}
.y253{bottom:188.105350px;}
.y2b8{bottom:188.107190px;}
.y347{bottom:188.107457px;}
.y349{bottom:188.107500px;}
.y250{bottom:188.108268px;}
.y41c{bottom:188.109069px;}
.ybd{bottom:188.278100px;}
.y23e{bottom:188.279994px;}
.yd3{bottom:188.280268px;}
.y37a{bottom:188.280808px;}
.y141{bottom:188.282919px;}
.y149{bottom:189.042036px;}
.y80{bottom:189.217114px;}
.y3db{bottom:189.218094px;}
.y1c1{bottom:189.221293px;}
.ye9{bottom:190.745298px;}
.y504{bottom:192.279222px;}
.y31a{bottom:194.170746px;}
.y2c8{bottom:194.826577px;}
.y3b0{bottom:194.995075px;}
.y4ad{bottom:197.977364px;}
.y1e9{bottom:198.483158px;}
.y345{bottom:199.417500px;}
.y46a{bottom:200.266209px;}
.y1a4{bottom:200.268889px;}
.y15d{bottom:200.950416px;}
.y346{bottom:201.033000px;}
.y344{bottom:201.034075px;}
.y41b{bottom:201.034613px;}
.y24f{bottom:201.034768px;}
.y445{bottom:203.165094px;}
.y148{bottom:203.413500px;}
.y23d{bottom:203.926894px;}
.ybc{bottom:203.927926px;}
.y503{bottom:204.270377px;}
.y7f{bottom:204.948896px;}
.y3da{bottom:204.949876px;}
.y1c0{bottom:204.953075px;}
.ye8{bottom:206.392198px;}
.y2c7{bottom:207.667959px;}
.y2b7{bottom:207.835500px;}
.y4ac{bottom:209.967563px;}
.y342{bottom:212.259000px;}
.y341{bottom:213.874075px;}
.y343{bottom:213.874500px;}
.y24e{bottom:213.875193px;}
.y41a{bottom:213.875994px;}
.y1e8{bottom:214.216136px;}
.y31b{bottom:215.922558px;}
.y469{bottom:215.997991px;}
.y502{bottom:216.260576px;}
.y15c{bottom:216.682198px;}
.y444{bottom:218.896876px;}
.y23c{bottom:219.658676px;}
.yd2{bottom:219.658950px;}
.y379{bottom:219.660685px;}
.ybb{bottom:219.660903px;}
.y140{bottom:219.661602px;}
.y1a3{bottom:219.742800px;}
.y2c6{bottom:220.508384px;}
.y39{bottom:220.594016px;}
.y7e{bottom:220.595796px;}
.y3d9{bottom:220.596776px;}
.y1bf{bottom:220.599975px;}
.y4ab{bottom:221.872643px;}
.ye7{bottom:222.123980px;}
.y30f{bottom:223.230700px;}
.y33f{bottom:225.099000px;}
.y340{bottom:226.714500px;}
.y33e{bottom:226.715150px;}
.y24d{bottom:226.715618px;}
.y419{bottom:226.716419px;}
.y2b6{bottom:227.565072px;}
.y501{bottom:228.165656px;}
.y1e7{bottom:229.863036px;}
.y324{bottom:230.674800px;}
.y468{bottom:231.644891px;}
.y15b{bottom:232.329098px;}
.y1a2{bottom:232.668344px;}
.y2c5{bottom:233.348809px;}
.y4aa{bottom:233.862842px;}
.y443{bottom:234.543776px;}
.y378{bottom:235.307586px;}
.yba{bottom:235.307804px;}
.y38{bottom:236.325798px;}
.y7d{bottom:236.327578px;}
.y3d8{bottom:236.328558px;}
.y1be{bottom:236.332952px;}
.y31c{bottom:237.674370px;}
.ye6{bottom:237.772076px;}
.y33d{bottom:239.555575px;}
.y24c{bottom:239.556999px;}
.y418{bottom:239.557800px;}
.y500{bottom:240.155855px;}
.y2b5{bottom:241.936536px;}
.y1a1{bottom:245.508769px;}
.y1e6{bottom:245.594818px;}
.y4a9{bottom:245.768879px;}
.y2c4{bottom:246.190190px;}
.y467{bottom:247.377868px;}
.y15a{bottom:248.062076px;}
.y442{bottom:250.275558px;}
.y33b{bottom:250.780500px;}
.y23b{bottom:251.038554px;}
.y377{bottom:251.039368px;}
.yb9{bottom:251.039586px;}
.y37{bottom:251.972698px;}
.y108{bottom:251.973158px;}
.y7c{bottom:251.974478px;}
.y3d7{bottom:251.975458px;}
.y1bd{bottom:251.979853px;}
.y4ff{bottom:252.061892px;}
.y33c{bottom:252.396000px;}
.y33a{bottom:252.397075px;}
.y24b{bottom:252.397424px;}
.y417{bottom:252.398225px;}
.y13f{bottom:252.656620px;}
.ye5{bottom:253.503858px;}
.yd1{bottom:253.503980px;}
.y2b4{bottom:256.308000px;}
.y4a8{bottom:257.759077px;}
.y1a0{bottom:258.350150px;}
.y31d{bottom:259.426182px;}
.y1e5{bottom:261.241718px;}
.y466{bottom:263.024769px;}
.y338{bottom:263.622000px;}
.y159{bottom:263.708976px;}
.y4fe{bottom:264.052091px;}
.y339{bottom:265.237500px;}
.y337{bottom:265.238614px;}
.y416{bottom:265.238650px;}
.y2c3{bottom:265.918500px;}
.y441{bottom:265.922458px;}
.y376{bottom:266.686268px;}
.yb8{bottom:266.686486px;}
.y36{bottom:267.704480px;}
.y107{bottom:267.706136px;}
.y7b{bottom:267.707456px;}
.y3d6{bottom:267.708436px;}
.y1bc{bottom:267.711635px;}
.y13e{bottom:268.303520px;}
.ye4{bottom:269.150758px;}
.yd0{bottom:269.152076px;}
.y4a7{bottom:269.664158px;}
.y19f{bottom:271.190575px;}
.y24a{bottom:272.126690px;}
.y310{bottom:274.002612px;}
.y4fd{bottom:276.042289px;}
.y1e4{bottom:276.974818px;}
.y415{bottom:278.080032px;}
.y465{bottom:278.756551px;}
.y158{bottom:279.440758px;}
.y31e{bottom:281.177994px;}
.y4a6{bottom:281.655313px;}
.y440{bottom:281.655436px;}
.yb7{bottom:282.418268px;}
.y375{bottom:282.419245px;}
.y35{bottom:283.352576px;}
.y106{bottom:283.353036px;}
.y7a{bottom:283.354356px;}
.y3d5{bottom:283.355336px;}
.y1bb{bottom:283.358535px;}
.y19e{bottom:284.031000px;}
.y13d{bottom:284.036498px;}
.y23a{bottom:284.457980px;}
.ye3{bottom:284.882540px;}
.ycf{bottom:284.883858px;}
.y336{bottom:284.966924px;}
.y2c2{bottom:285.646536px;}
.y4fc{bottom:287.947370px;}
.y414{bottom:290.920457px;}
.y249{bottom:291.855000px;}
.y1e3{bottom:292.621718px;}
.y4a5{bottom:293.645512px;}
.y464{bottom:294.403451px;}
.y157{bottom:295.087658px;}
.y19c{bottom:296.872309px;}
.y43f{bottom:297.302336px;}
.y374{bottom:298.066146px;}
.yb6{bottom:298.066364px;}
.y34{bottom:299.084358px;}
.y105{bottom:299.084818px;}
.y79{bottom:299.086138px;}
.y3af{bottom:299.087115px;}
.y3d4{bottom:299.087118px;}
.y1ba{bottom:299.091512px;}
.y13c{bottom:299.683398px;}
.y4fb{bottom:299.938525px;}
.y2c1{bottom:300.018000px;}
.y239{bottom:300.106076px;}
.ye2{bottom:300.530636px;}
.yce{bottom:300.530758px;}
.y31f{bottom:302.929806px;}
.y413{bottom:303.846000px;}
.y411{bottom:303.847494px;}
.y335{bottom:304.696190px;}
.y278{bottom:305.295994px;}
.y4a4{bottom:305.550592px;}
.y412{bottom:308.097000px;}
.y1e2{bottom:308.360340px;}
.y19b{bottom:309.713690px;}
.y463{bottom:310.135233px;}
.y156{bottom:310.820636px;}
.y248{bottom:311.584036px;}
.y4fa{bottom:311.843605px;}
.y43e{bottom:313.034118px;}
.y373{bottom:313.797927px;}
.yb5{bottom:313.798146px;}
.y19d{bottom:313.965000px;}
.y33{bottom:314.731258px;}
.y104{bottom:314.731718px;}
.y78{bottom:314.733038px;}
.y3ae{bottom:314.734016px;}
.y3d3{bottom:314.734018px;}
.y1b9{bottom:314.738413px;}
.y13b{bottom:315.415180px;}
.y238{bottom:315.837858px;}
.ye1{bottom:316.262417px;}
.ycd{bottom:316.262540px;}
.y410{bottom:316.687919px;}
.y4a3{bottom:317.540791px;}
.y277{bottom:321.027776px;}
.y4f9{bottom:323.833804px;}
.y1e1{bottom:324.007240px;}
.y334{bottom:324.424500px;}
.y320{bottom:324.681150px;}
.y311{bottom:324.773400px;}
.y462{bottom:325.868210px;}
.y247{bottom:325.870500px;}
.y155{bottom:326.467536px;}
.y102{bottom:328.422000px;}
.y43d{bottom:328.681018px;}
.y19a{bottom:329.442000px;}
.y372{bottom:329.444828px;}
.yb4{bottom:329.445046px;}
.y4a2{bottom:329.446828px;}
.y40f{bottom:329.529300px;}
.y32{bottom:330.463040px;}
.y103{bottom:330.463500px;}
.y101{bottom:330.464480px;}
.y3ad{bottom:330.465798px;}
.y77{bottom:330.466016px;}
.y3d2{bottom:330.466996px;}
.y1b8{bottom:330.470195px;}
.y13a{bottom:331.062080px;}
.y237{bottom:331.484758px;}
.ye0{bottom:331.909318px;}
.ycc{bottom:331.910636px;}
.y2a7{bottom:334.038566px;}
.y4f8{bottom:335.739841px;}
.y276{bottom:336.674676px;}
.y1e0{bottom:339.739022px;}
.y4a1{bottom:341.437027px;}
.y154{bottom:342.199318px;}
.y40e{bottom:342.369725px;}
.y333{bottom:344.155036px;}
.y43c{bottom:344.413996px;}
.yb3{bottom:345.176828px;}
.y371{bottom:345.177805px;}
.y31{bottom:346.111136px;}
.y100{bottom:346.112576px;}
.y3ac{bottom:346.112698px;}
.y76{bottom:346.112916px;}
.y3d1{bottom:346.113896px;}
.y1b7{bottom:346.117095px;}
.y139{bottom:346.793862px;}
.y236{bottom:347.216540px;}
.ydf{bottom:347.641100px;}
.ycb{bottom:347.642417px;}
.y4f7{bottom:347.730040px;}
.y199{bottom:349.171536px;}
.y2a6{bottom:349.685466px;}
.y275{bottom:352.406458px;}
.y4a0{bottom:353.427225px;}
.y40d{bottom:355.210150px;}
.y1df{bottom:355.387118px;}
.y461{bottom:357.246892px;}
.y153{bottom:357.846218px;}
.y332{bottom:358.441500px;}
.y4f6{bottom:359.720239px;}
.y43b{bottom:360.060896px;}
.yb2{bottom:360.824924px;}
.y30{bottom:361.842917px;}
.yff{bottom:361.844358px;}
.y3ab{bottom:361.844480px;}
.y75{bottom:361.844698px;}
.y3d0{bottom:361.845678px;}
.y1b6{bottom:361.848877px;}
.y138{bottom:362.441958px;}
.y235{bottom:362.864636px;}
.yde{bottom:363.288218px;}
.yca{bottom:363.289318px;}
.y198{bottom:363.543000px;}
.y49f{bottom:365.332306px;}
.y2a5{bottom:365.418444px;}
.y40c{bottom:368.051532px;}
.y274{bottom:368.054554px;}
.y1de{bottom:371.118900px;}
.y54b{bottom:371.460031px;}
.y4f5{bottom:371.625319px;}
.y152{bottom:373.578000px;}
.y43a{bottom:375.792678px;}
.y370{bottom:376.556487px;}
.yb1{bottom:376.556706px;}
.y49e{bottom:377.323461px;}
.y2f{bottom:377.489818px;}
.yfe{bottom:377.491258px;}
.y74{bottom:377.491598px;}
.y3aa{bottom:377.492576px;}
.y3cf{bottom:377.492578px;}
.y1b5{bottom:377.496973px;}
.y137{bottom:378.173740px;}
.y234{bottom:378.596417px;}
.yc9{bottom:379.021100px;}
.y40b{bottom:380.891957px;}
.y2a4{bottom:381.065344px;}
.y54a{bottom:383.450230px;}
.y4f4{bottom:383.616474px;}
.y273{bottom:383.786336px;}
.y1dd{bottom:386.765800px;}
.y49d{bottom:389.228541px;}
.y460{bottom:391.432644px;}
.y439{bottom:391.439578px;}
.y36f{bottom:392.203388px;}
.y309{bottom:392.459326px;}
.y3a{bottom:393.221600px;}
.yfd{bottom:393.223040px;}
.y3a9{bottom:393.224358px;}
.y73{bottom:393.224576px;}
.y3ce{bottom:393.225555px;}
.y1b4{bottom:393.228754px;}
.y409{bottom:393.817500px;}
.y136{bottom:393.905522px;}
.y233{bottom:394.243318px;}
.ydd{bottom:394.668000px;}
.yc8{bottom:394.668218px;}
.y549{bottom:395.356267px;}
.y4f3{bottom:395.521555px;}
.y2a3{bottom:396.797126px;}
.y272{bottom:399.433236px;}
.y49c{bottom:401.218740px;}
.y1dc{bottom:402.497582px;}
.y408{bottom:405.042000px;}
.y40a{bottom:406.657925px;}
.y407{bottom:406.659228px;}
.y45f{bottom:407.164426px;}
.y438{bottom:407.172555px;}
.y548{bottom:407.346465px;}
.y4f2{bottom:407.511753px;}
.yb0{bottom:407.935388px;}
.y308{bottom:408.191108px;}
.y2e{bottom:408.868500px;}
.y3a8{bottom:408.871258px;}
.y72{bottom:408.871476px;}
.y3cd{bottom:408.872456px;}
.y1b3{bottom:408.875655px;}
.y135{bottom:409.552422px;}
.y222{bottom:409.975100px;}
.yc7{bottom:410.399600px;}
.ydc{bottom:410.399782px;}
.y2a2{bottom:412.528908px;}
.y49b{bottom:413.124777px;}
.y197{bottom:414.058728px;}
.y271{bottom:415.165018px;}
.y1db{bottom:418.144483px;}
.y547{bottom:419.336664px;}
.y406{bottom:419.500609px;}
.y4f1{bottom:419.501952px;}
.y45e{bottom:422.812522px;}
.y437{bottom:422.819456px;}
.y307{bottom:423.838008px;}
.yfc{bottom:424.602917px;}
.y36e{bottom:424.603040px;}
.y71{bottom:424.603258px;}
.y3cc{bottom:424.604238px;}
.y1b2{bottom:424.607437px;}
.y49a{bottom:425.114976px;}
.y134{bottom:425.285400px;}
.y232{bottom:425.622000px;}
.y221{bottom:425.623318px;}
.yc6{bottom:426.046500px;}
.ydb{bottom:426.046682px;}
.y196{bottom:426.900109px;}
.y2a1{bottom:428.175808px;}
.y270{bottom:430.813114px;}
.y546{bottom:431.241745px;}
.y4f0{bottom:431.407989px;}
.y405{bottom:432.341034px;}
.y1da{bottom:433.877460px;}
.y499{bottom:437.105174px;}
.y45d{bottom:438.544303px;}
.y436{bottom:438.551238px;}
.y306{bottom:439.569790px;}
.y195{bottom:439.740534px;}
.yaf{bottom:440.080395px;}
.yfb{bottom:440.249818px;}
.y70{bottom:440.250158px;}
.y36d{bottom:440.251136px;}
.y3cb{bottom:440.251138px;}
.y1b1{bottom:440.255532px;}
.y133{bottom:440.932300px;}
.y231{bottom:441.353782px;}
.y220{bottom:441.355100px;}
.y545{bottom:443.232900px;}
.y4ef{bottom:443.398188px;}
.y2a0{bottom:443.908785px;}
.y404{bottom:445.181459px;}
.y26f{bottom:446.544896px;}
.y498{bottom:449.010255px;}
.y1d9{bottom:449.524360px;}
.y194{bottom:452.666077px;}
.y45c{bottom:454.191204px;}
.y435{bottom:454.198138px;}
.y544{bottom:455.137980px;}
.y305{bottom:455.217886px;}
.y4ee{bottom:455.303268px;}
.yae{bottom:455.812177px;}
.yfa{bottom:455.981600px;}
.y36c{bottom:455.982917px;}
.y6f{bottom:455.983136px;}
.y3ca{bottom:455.984115px;}
.y1b0{bottom:455.987314px;}
.y132{bottom:456.664082px;}
.y230{bottom:457.000682px;}
.y21f{bottom:457.004638px;}
.y403{bottom:458.022841px;}
.y29f{bottom:459.555686px;}
.yf2{bottom:459.723000px;}
.y497{bottom:461.001410px;}
.y26e{bottom:462.276678px;}
.y1d8{bottom:465.256142px;}
.y193{bottom:465.507459px;}
.y543{bottom:467.128179px;}
.y4ed{bottom:467.293467px;}
.y2d{bottom:468.398287px;}
.y45b{bottom:469.922986px;}
.y434{bottom:469.931115px;}
.y402{bottom:470.863266px;}
.y304{bottom:470.949668px;}
.yad{bottom:471.459077px;}
.yf9{bottom:471.628500px;}
.y36b{bottom:471.629818px;}
.y2e9{bottom:471.629916px;}
.y6e{bottom:471.630036px;}
.y3c9{bottom:471.631016px;}
.y1af{bottom:471.634215px;}
.y131{bottom:472.310982px;}
.y22f{bottom:472.732464px;}
.y21e{bottom:472.737615px;}
.y496{bottom:472.906491px;}
.y29e{bottom:475.287468px;}
.y26d{bottom:477.923578px;}
.y192{bottom:478.347884px;}
.y542{bottom:479.119334px;}
.y4ec{bottom:479.284622px;}
.y1d7{bottom:480.903042px;}
.y2c{bottom:482.769751px;}
.y401{bottom:483.704647px;}
.y495{bottom:484.896689px;}
.yf7{bottom:485.319000px;}
.y45a{bottom:485.569886px;}
.y433{bottom:485.578016px;}
.y303{bottom:486.596568px;}
.yac{bottom:487.192055px;}
.yf8{bottom:487.360500px;}
.yf6{bottom:487.361600px;}
.y2e8{bottom:487.361698px;}
.y6d{bottom:487.361818px;}
.y3c8{bottom:487.362798px;}
.y1ae{bottom:487.365997px;}
.y130{bottom:488.043959px;}
.y22e{bottom:488.379364px;}
.y21d{bottom:488.384516px;}
.y29d{bottom:490.934368px;}
.y541{bottom:491.024415px;}
.y191{bottom:491.188309px;}
.y4eb{bottom:491.189703px;}
.y26c{bottom:493.656555px;}
.y400{bottom:496.630190px;}
.y1d6{bottom:496.636020px;}
.y494{bottom:496.886888px;}
.y2b{bottom:497.141215px;}
.yf4{bottom:501.052500px;}
.y459{bottom:501.302863px;}
.y432{bottom:501.309798px;}
.yab{bottom:502.838955px;}
.yf5{bottom:503.008500px;}
.y2e7{bottom:503.008598px;}
.y6c{bottom:503.008718px;}
.y3c7{bottom:503.009698px;}
.y36a{bottom:503.009976px;}
.yf3{bottom:503.014092px;}
.y540{bottom:503.014613px;}
.y4ea{bottom:503.179901px;}
.y12f{bottom:503.690860px;}
.y190{bottom:504.029690px;}
.y22d{bottom:504.112342px;}
.y21c{bottom:504.116298px;}
.y29c{bottom:506.667345px;}
.y493{bottom:508.792925px;}
.y26b{bottom:509.303456px;}
.y2a{bottom:511.427679px;}
.y1d5{bottom:512.282920px;}
.y53f{bottom:514.919694px;}
.y4e9{bottom:515.085938px;}
.y3ff{bottom:516.358500px;}
.y6a{bottom:516.699000px;}
.y458{bottom:516.949764px;}
.y302{bottom:518.061328px;}
.yaa{bottom:518.570738px;}
.y3a7{bottom:518.740282px;}
.y6b{bottom:518.740500px;}
.y3c6{bottom:518.741480px;}
.y2e6{bottom:518.741576px;}
.y369{bottom:518.741758px;}
.y69{bottom:518.745874px;}
.y12e{bottom:519.422642px;}
.y22c{bottom:519.759242px;}
.y21b{bottom:519.763198px;}
.y492{bottom:520.783124px;}
.y29b{bottom:522.314246px;}
.y18f{bottom:523.758000px;}
.y26a{bottom:525.035238px;}
.y29{bottom:525.799143px;}
.y53e{bottom:526.910849px;}
.y4e8{bottom:527.076137px;}
.y1d4{bottom:528.014702px;}
.y457{bottom:532.681546px;}
.y491{bottom:532.688204px;}
.y431{bottom:532.688480px;}
.ya9{bottom:534.216442px;}
.y3a6{bottom:534.387182px;}
.y2e5{bottom:534.388476px;}
.y368{bottom:534.388658px;}
.y3c5{bottom:534.389576px;}
.y68{bottom:534.392775px;}
.y12d{bottom:535.069542px;}
.y22b{bottom:535.491024px;}
.y21a{bottom:535.494980px;}
.y3fe{bottom:536.002536px;}
.y29a{bottom:538.046027px;}
.y53d{bottom:538.815929px;}
.y4e7{bottom:538.981217px;}
.y28{bottom:540.170608px;}
.y269{bottom:540.682138px;}
.y18e{bottom:543.487536px;}
.y1d3{bottom:543.661602px;}
.y490{bottom:544.678403px;}
.y456{bottom:548.328446px;}
.ya8{bottom:549.949419px;}
.y3a5{bottom:550.118964px;}
.y2e4{bottom:550.120258px;}
.y3c4{bottom:550.121358px;}
.y367{bottom:550.121636px;}
.y67{bottom:550.124557px;}
.y3fd{bottom:550.374000px;}
.y12c{bottom:550.802519px;}
.y53c{bottom:550.806128px;}
.y4e6{bottom:550.971416px;}
.y22a{bottom:551.137924px;}
.y219{bottom:551.143076px;}
.y299{bottom:553.692928px;}
.y27{bottom:554.457072px;}
.y268{bottom:556.415115px;}
.y48f{bottom:556.584440px;}
.y18d{bottom:557.859000px;}
.y1d2{bottom:559.394580px;}
.y53b{bottom:562.796327px;}
.y4e5{bottom:562.962571px;}
.y455{bottom:564.061423px;}
.y430{bottom:564.068358px;}
.y301{bottom:565.086910px;}
.ya7{bottom:565.596319px;}
.y3a4{bottom:565.765864px;}
.y2e3{bottom:565.767158px;}
.y3c3{bottom:565.768258px;}
.y366{bottom:565.768536px;}
.y66{bottom:565.771457px;}
.y12b{bottom:566.449420px;}
.y229{bottom:566.870902px;}
.y218{bottom:566.874858px;}
.y48e{bottom:568.574638px;}
.y26{bottom:568.828536px;}
.y298{bottom:569.425905px;}
.y267{bottom:572.062016px;}
.y53a{bottom:574.702364px;}
.y4e4{bottom:574.867652px;}
.y1d1{bottom:575.126362px;}
.y1d{bottom:579.289919px;}
.y454{bottom:579.708324px;}
.y48d{bottom:580.564837px;}
.y300{bottom:580.733810px;}
.ya6{bottom:581.328101px;}
.y24{bottom:581.413500px;}
.y3a3{bottom:581.498842px;}
.y3c2{bottom:581.500040px;}
.y2e2{bottom:581.500136px;}
.y365{bottom:581.500318px;}
.y65{bottom:581.504434px;}
.y12a{bottom:582.181202px;}
.y228{bottom:582.517802px;}
.y217{bottom:582.521758px;}
.y23{bottom:583.199536px;}
.y25{bottom:583.200000px;}
.y297{bottom:585.072805px;}
.y539{bottom:586.692563px;}
.y4e3{bottom:586.857851px;}
.y266{bottom:587.793798px;}
.y1d0{bottom:590.773262px;}
.y1c{bottom:592.131300px;}
.y48c{bottom:592.470874px;}
.y453{bottom:595.440106px;}
.y42f{bottom:595.447040px;}
.y2ff{bottom:596.466788px;}
.ya5{bottom:596.975002px;}
.y3a2{bottom:597.145742px;}
.y2e1{bottom:597.147036px;}
.y364{bottom:597.147218px;}
.y3c1{bottom:597.148136px;}
.y64{bottom:597.151335px;}
.y22{bottom:597.487143px;}
.y129{bottom:597.828102px;}
.y227{bottom:598.249584px;}
.y216{bottom:598.253540px;}
.y538{bottom:598.597643px;}
.y4e2{bottom:598.762931px;}
.y296{bottom:600.804587px;}
.y265{bottom:603.440698px;}
.y48b{bottom:604.461073px;}
.y1b{bottom:604.971725px;}
.y1cf{bottom:606.505044px;}
.y18c{bottom:608.119531px;}
.y537{bottom:610.587842px;}
.y4e1{bottom:610.754086px;}
.y362{bottom:610.923000px;}
.y452{bottom:611.087006px;}
.y42e{bottom:611.095136px;}
.y21{bottom:611.858608px;}
.y2fe{bottom:612.113688px;}
.ya4{bottom:612.707979px;}
.y3a1{bottom:612.877524px;}
.y2e0{bottom:612.878818px;}
.y363{bottom:612.879000px;}
.y3c0{bottom:612.879917px;}
.y361{bottom:612.881796px;}
.y63{bottom:612.883116px;}
.y128{bottom:613.559884px;}
.y226{bottom:613.896484px;}
.y215{bottom:613.901636px;}
.y48a{bottom:616.366153px;}
.y295{bottom:616.451488px;}
.y1a{bottom:617.812150px;}
.y264{bottom:619.172480px;}
.y18b{bottom:620.960912px;}
.y1ce{bottom:622.153140px;}
.y536{bottom:622.578997px;}
.y4e0{bottom:622.744285px;}
.y20{bottom:626.230072px;}
.y451{bottom:626.819983px;}
.y42d{bottom:626.826917px;}
.y2fd{bottom:627.845470px;}
.ya3{bottom:628.354879px;}
.y489{bottom:628.356352px;}
.y3a0{bottom:628.524424px;}
.y2df{bottom:628.525718px;}
.y3bf{bottom:628.526818px;}
.y360{bottom:628.528697px;}
.y62{bottom:628.530017px;}
.y127{bottom:629.207980px;}
.y225{bottom:629.629462px;}
.y214{bottom:629.633417px;}
.y19{bottom:630.738650px;}
.y294{bottom:632.184465px;}
.y18a{bottom:633.801337px;}
.y535{bottom:634.484077px;}
.y4df{bottom:634.649365px;}
.y263{bottom:634.820576px;}
.y1cd{bottom:637.884922px;}
.y488{bottom:640.347507px;}
.y1f{bottom:640.601536px;}
.y450{bottom:642.466884px;}
.y42c{bottom:642.473818px;}
.y2fc{bottom:643.492370px;}
.y18{bottom:643.579075px;}
.ya2{bottom:644.086661px;}
.y39f{bottom:644.257402px;}
.y2de{bottom:644.257500px;}
.y3be{bottom:644.258600px;}
.y2dc{bottom:644.260478px;}
.y61{bottom:644.262994px;}
.y126{bottom:644.939762px;}
.y224{bottom:645.276362px;}
.y213{bottom:645.280318px;}
.y534{bottom:646.474276px;}
.y4de{bottom:646.639564px;}
.y189{bottom:646.642719px;}
.y293{bottom:647.831365px;}
.y2dd{bottom:649.530000px;}
.y262{bottom:650.552358px;}
.y487{bottom:652.252588px;}
.y1cc{bottom:653.531822px;}
.y1e{bottom:654.888000px;}
.y17{bottom:656.419500px;}
.y3bc{bottom:657.949500px;}
.y44f{bottom:658.198665px;}
.y42b{bottom:658.205600px;}
.y533{bottom:658.380313px;}
.y4dd{bottom:658.545601px;}
.y2fb{bottom:659.224152px;}
.y188{bottom:659.483144px;}
.ya1{bottom:659.733562px;}
.y39e{bottom:659.904302px;}
.y3bd{bottom:659.905500px;}
.y3bb{bottom:659.906818px;}
.y2db{bottom:659.908574px;}
.y60{bottom:659.909894px;}
.y212{bottom:661.012100px;}
.y292{bottom:663.563147px;}
.y486{bottom:664.242786px;}
.y261{bottom:666.199258px;}
.y1cb{bottom:669.263604px;}
.y532{bottom:670.370512px;}
.y4dc{bottom:670.535800px;}
.y187{bottom:672.408687px;}
.y44e{bottom:673.845566px;}
.y42a{bottom:673.852500px;}
.y2fa{bottom:674.871053px;}
.y39d{bottom:675.636084px;}
.y3fc{bottom:675.637282px;}
.y3ba{bottom:675.638600px;}
.y2da{bottom:675.640356px;}
.y5f{bottom:675.641676px;}
.y485{bottom:676.147867px;}
.y125{bottom:676.318444px;}
.y223{bottom:676.655044px;}
.y211{bottom:676.659000px;}
.y291{bottom:679.210048px;}
.y260{bottom:681.931040px;}
.y531{bottom:682.275592px;}
.y4db{bottom:682.440880px;}
.y16{bottom:684.226500px;}
.y1ca{bottom:684.910504px;}
.y186{bottom:685.250069px;}
.y484{bottom:688.139022px;}
.y2f9{bottom:690.602834px;}
.ya0{bottom:691.113439px;}
.y39c{bottom:691.282984px;}
.y3fb{bottom:691.284182px;}
.y3b9{bottom:691.285500px;}
.y3b7{bottom:691.285718px;}
.y2d9{bottom:691.287256px;}
.y5e{bottom:691.288577px;}
.y530{bottom:694.265791px;}
.y4da{bottom:694.432035px;}
.y290{bottom:694.941829px;}
.y3b8{bottom:696.642000px;}
.y25f{bottom:697.579136px;}
.y185{bottom:698.090494px;}
.y483{bottom:700.044103px;}
.y1c9{bottom:700.643482px;}
.y2f8{bottom:706.249735px;}
.y52f{bottom:706.256946px;}
.y4d9{bottom:706.422234px;}
.y39b{bottom:707.015962px;}
.y3fa{bottom:707.015964px;}
.y3b6{bottom:707.017500px;}
.y3b4{bottom:707.017658px;}
.y2d8{bottom:707.019038px;}
.y5d{bottom:707.021554px;}
.y470{bottom:707.527500px;}
.y246{bottom:710.334000px;}
.y184{bottom:710.930919px;}
.y482{bottom:712.034301px;}
.y3b5{bottom:712.290000px;}
.y25e{bottom:713.310917px;}
.y123{bottom:714.756000px;}
.y52e{bottom:718.162027px;}
.y4d8{bottom:718.327315px;}
.y2f7{bottom:721.982712px;}
.y9f{bottom:722.492121px;}
.y39a{bottom:722.747744px;}
.y3f9{bottom:722.748941px;}
.y3b3{bottom:722.750636px;}
.y2d7{bottom:722.752016px;}
.y5c{bottom:722.753336px;}
.y124{bottom:723.004500px;}
.y122{bottom:723.005280px;}
.y183{bottom:723.772300px;}
.y481{bottom:724.024500px;}
.y28f{bottom:726.321707px;}
.y25d{bottom:728.957818px;}
.y52d{bottom:730.152225px;}
.y4d7{bottom:730.316557px;}
.y15{bottom:733.634575px;}
.y210{bottom:734.230500px;}
.y182{bottom:736.612725px;}
.y2f6{bottom:737.629613px;}
.y399{bottom:738.394644px;}
.y3f8{bottom:738.395842px;}
.y3b2{bottom:738.397536px;}
.y2d6{bottom:738.398916px;}
.y5b{bottom:738.400236px;}
.y20f{bottom:739.077000px;}
.y52c{bottom:742.057306px;}
.y4d6{bottom:742.222594px;}
.y25c{bottom:744.689600px;}
.y14{bottom:746.475000px;}
.y181{bottom:749.454106px;}
.y13{bottom:750.727500px;}
.y480{bottom:751.495908px;}
.y2f5{bottom:753.361394px;}
.y52b{bottom:754.048461px;}
.y398{bottom:754.126426px;}
.y9e{bottom:754.126644px;}
.y3f7{bottom:754.127624px;}
.y121{bottom:754.129318px;}
.y2d5{bottom:754.130698px;}
.y5a{bottom:754.132018px;}
.y4d5{bottom:754.212793px;}
.y20e{bottom:755.491419px;}
.y12{bottom:759.401575px;}
.y25b{bottom:760.336500px;}
.y180{bottom:762.294531px;}
.y52a{bottom:766.038660px;}
.y4d4{bottom:766.202991px;}
.y20d{bottom:768.331844px;}
.y2f4{bottom:769.008295px;}
.y9d{bottom:769.773544px;}
.y397{bottom:769.774522px;}
.y3f6{bottom:769.774524px;}
.y28e{bottom:769.775091px;}
.y120{bottom:769.776218px;}
.y2d4{bottom:769.777598px;}
.y59{bottom:769.780114px;}
.y11{bottom:772.242000px;}
.y17f{bottom:775.220075px;}
.y10{bottom:776.494500px;}
.y529{bottom:777.943740px;}
.y4d3{bottom:778.108072px;}
.y20c{bottom:781.172269px;}
.y11e{bottom:783.468000px;}
.y47f{bottom:784.236281px;}
.y2f3{bottom:784.740077px;}
.y396{bottom:785.506303px;}
.y3f5{bottom:785.506306px;}
.y9c{bottom:785.506522px;}
.y28d{bottom:785.506873px;}
.y11f{bottom:785.508000px;}
.y11d{bottom:785.510576px;}
.y58{bottom:785.511896px;}
.y17e{bottom:788.061456px;}
.y528{bottom:789.934895px;}
.y4d2{bottom:790.099227px;}
.y20b{bottom:794.013650px;}
.ye{bottom:796.905190px;}
.y2f2{bottom:800.388172px;}
.y17d{bottom:800.901881px;}
.y2b3{bottom:800.903262px;}
.y395{bottom:801.153204px;}
.y9b{bottom:801.153422px;}
.y3f4{bottom:801.154402px;}
.y28c{bottom:801.154969px;}
.y11c{bottom:801.157476px;}
.y57{bottom:801.158796px;}
.y527{bottom:801.839976px;}
.y4d1{bottom:802.004307px;}
.yf{bottom:803.877000px;}
.y20a{bottom:806.854075px;}
.y17c{bottom:813.743262px;}
.y2b2{bottom:813.743687px;}
.y526{bottom:813.830174px;}
.y4d0{bottom:813.994506px;}
.yf1{bottom:814.846500px;}
.y47e{bottom:815.614964px;}
.y2f1{bottom:816.119954px;}
.yd{bottom:816.292500px;}
.yb{bottom:816.294150px;}
.y394{bottom:816.884986px;}
.y9a{bottom:816.885204px;}
.y3f3{bottom:816.886184px;}
.y28b{bottom:816.886751px;}
.y11b{bottom:816.889258px;}
.y56{bottom:816.890578px;}
.y209{bottom:819.694500px;}
.yc{bottom:823.351500px;}
.y525{bottom:825.735255px;}
.y4cf{bottom:825.900543px;}
.y17b{bottom:826.583687px;}
.y2b1{bottom:826.584112px;}
.y2f0{bottom:831.766855px;}
.y393{bottom:832.531886px;}
.y99{bottom:832.532104px;}
.y3f2{bottom:832.533084px;}
.y28a{bottom:832.533651px;}
.y11a{bottom:832.536158px;}
.y55{bottom:832.537478px;}
.y208{bottom:832.620000px;}
.y206{bottom:832.621844px;}
.y9{bottom:835.767000px;}
.y207{bottom:836.872500px;}
.y524{bottom:837.726410px;}
.y4ce{bottom:837.890742px;}
.y17a{bottom:839.424112px;}
.y2b0{bottom:839.425494px;}
.ya{bottom:842.740500px;}
.y205{bottom:845.462269px;}
.y47d{bottom:846.994841px;}
.y2ef{bottom:847.498637px;}
.y98{bottom:848.263886px;}
.y392{bottom:848.264863px;}
.y3f1{bottom:848.264866px;}
.y289{bottom:848.265433px;}
.y119{bottom:848.269136px;}
.y54{bottom:848.270456px;}
.y523{bottom:849.716609px;}
.y4cd{bottom:849.880940px;}
.y179{bottom:852.265494px;}
.y2af{bottom:852.265919px;}
.y204{bottom:858.303650px;}
.y522{bottom:861.621689px;}
.y4cc{bottom:861.786021px;}
.y47c{bottom:862.641742px;}
.y2ee{bottom:863.146732px;}
.y391{bottom:863.911764px;}
.y97{bottom:863.911982px;}
.y288{bottom:863.912333px;}
.y3f0{bottom:863.912962px;}
.y118{bottom:863.916036px;}
.y53{bottom:863.917356px;}
.y178{bottom:865.105919px;}
.y2ae{bottom:865.107300px;}
.y203{bottom:871.144075px;}
.y8{bottom:873.185432px;}
.y521{bottom:873.611888px;}
.y4cb{bottom:873.777176px;}
.y177{bottom:878.032419px;}
.y2ad{bottom:878.032844px;}
.y47b{bottom:878.373524px;}
.y2ed{bottom:878.878514px;}
.y390{bottom:879.643546px;}
.y96{bottom:879.643764px;}
.y3ef{bottom:879.644744px;}
.y287{bottom:879.645310px;}
.y117{bottom:879.647818px;}
.y52{bottom:879.649138px;}
.y202{bottom:883.984500px;}
.y520{bottom:885.517925px;}
.y4ca{bottom:885.682257px;}
.y176{bottom:890.872844px;}
.y2ac{bottom:890.873269px;}
.y47a{bottom:894.020424px;}
.y2ec{bottom:894.525415px;}
.y38f{bottom:895.290446px;}
.y95{bottom:895.290664px;}
.y3ee{bottom:895.291644px;}
.y286{bottom:895.292211px;}
.y116{bottom:895.294718px;}
.y51{bottom:895.296038px;}
.y200{bottom:896.825575px;}
.y51f{bottom:897.508124px;}
.y4c9{bottom:897.672455px;}
.y7{bottom:899.036716px;}
.y201{bottom:901.077000px;}
.y175{bottom:903.713269px;}
.y2ab{bottom:903.714650px;}
.y35f{bottom:908.985000px;}
.y51e{bottom:909.498322px;}
.y4c8{bottom:909.662654px;}
.y1ff{bottom:909.666000px;}
.y1fd{bottom:909.667919px;}
.y479{bottom:909.753401px;}
.y2eb{bottom:910.257196px;}
.y115{bottom:911.021126px;}
.y94{bottom:911.022446px;}
.y38e{bottom:911.023423px;}
.y3ed{bottom:911.023426px;}
.y285{bottom:911.023993px;}
.y2d3{bottom:911.026500px;}
.y50{bottom:911.029016px;}
.y1fe{bottom:913.918500px;}
.y2d2{bottom:916.299000px;}
.y174{bottom:916.554650px;}
.y2aa{bottom:916.555075px;}
.y51d{bottom:921.403403px;}
.y4c7{bottom:921.568691px;}
.y1fc{bottom:922.594419px;}
.y35d{bottom:924.718500px;}
.y6{bottom:924.888000px;}
.y478{bottom:925.400302px;}
.y2ea{bottom:925.905292px;}
.y114{bottom:926.668026px;}
.y38d{bottom:926.670324px;}
.y93{bottom:926.670542px;}
.y284{bottom:926.670893px;}
.y3ec{bottom:926.671522px;}
.y35e{bottom:926.674500px;}
.y35c{bottom:926.674718px;}
.y4f{bottom:926.675916px;}
.y173{bottom:929.395075px;}
.y2a9{bottom:929.395500px;}
.y51c{bottom:933.394558px;}
.y4c6{bottom:933.558890px;}
.y1fb{bottom:935.434844px;}
.y35a{bottom:940.365000px;}
.y477{bottom:941.132083px;}
.y172{bottom:942.235500px;}
.y170{bottom:942.238303px;}
.y113{bottom:942.401003px;}
.y38c{bottom:942.402106px;}
.y92{bottom:942.402324px;}
.y3eb{bottom:942.403303px;}
.y283{bottom:942.403870px;}
.y359{bottom:942.406100px;}
.y35b{bottom:942.406500px;}
.y4e{bottom:942.407698px;}
.y51b{bottom:945.299638px;}
.y4c5{bottom:945.463970px;}
.y171{bottom:946.488000px;}
.y1fa{bottom:948.275269px;}
.y16f{bottom:955.078728px;}
.y357{bottom:956.097000px;}
.y476{bottom:956.778984px;}
.y51a{bottom:957.289837px;}
.y4c4{bottom:957.454169px;}
.y5{bottom:957.798000px;}
.y112{bottom:958.047904px;}
.y38b{bottom:958.049006px;}
.y91{bottom:958.049224px;}
.y3ea{bottom:958.050204px;}
.y282{bottom:958.050771px;}
.y358{bottom:958.053000px;}
.y4d{bottom:958.054598px;}
.y1f9{bottom:961.116650px;}
.y331{bottom:966.473034px;}
.y16e{bottom:967.920109px;}
.y519{bottom:969.195874px;}
.y4c3{bottom:969.360206px;}
.y475{bottom:972.511961px;}
.y111{bottom:973.779686px;}
.y90{bottom:973.781006px;}
.y38a{bottom:973.781983px;}
.y3e9{bottom:973.781986px;}
.y281{bottom:973.782553px;}
.y4c{bottom:973.787576px;}
.y1f8{bottom:973.957075px;}
.y330{bottom:979.313459px;}
.y16d{bottom:980.845652px;}
.y518{bottom:981.186073px;}
.y4c2{bottom:981.350404px;}
.y1f6{bottom:986.797500px;}
.y474{bottom:988.158861px;}
.y110{bottom:989.426586px;}
.y8f{bottom:989.427906px;}
.y389{bottom:989.428884px;}
.y3e8{bottom:989.428886px;}
.y280{bottom:989.429453px;}
.y4b{bottom:989.434476px;}
.y1f7{bottom:991.048500px;}
.y32f{bottom:992.154841px;}
.y517{bottom:993.176272px;}
.y4c1{bottom:993.340603px;}
.y16c{bottom:993.686077px;}
.y1f4{bottom:999.638618px;}
.y3f{bottom:1003.719000px;}
.y1f5{bottom:1003.890000px;}
.y473{bottom:1003.890643px;}
.y32e{bottom:1004.995266px;}
.y516{bottom:1005.081352px;}
.y10f{bottom:1005.159563px;}
.y388{bottom:1005.160665px;}
.y8e{bottom:1005.160884px;}
.y3e7{bottom:1005.161863px;}
.y27f{bottom:1005.162430px;}
.y4a{bottom:1005.166258px;}
.y4c0{bottom:1005.246640px;}
.y16b{bottom:1006.527459px;}
.y1f3{bottom:1012.479999px;}
.y515{bottom:1017.072507px;}
.y4bf{bottom:1017.236839px;}
.y32d{bottom:1017.836647px;}
.y16a{bottom:1019.367884px;}
.y472{bottom:1019.537544px;}
.y10e{bottom:1020.806464px;}
.y387{bottom:1020.807566px;}
.y8d{bottom:1020.807784px;}
.y3e6{bottom:1020.808764px;}
.y27e{bottom:1020.809331px;}
.y49{bottom:1020.813158px;}
.y1f2{bottom:1025.405542px;}
.y514{bottom:1028.977588px;}
.y4be{bottom:1029.141919px;}
.y32c{bottom:1030.762190px;}
.y169{bottom:1032.208309px;}
.y10d{bottom:1036.538246px;}
.y8c{bottom:1036.539566px;}
.y386{bottom:1036.540543px;}
.y3e5{bottom:1036.540546px;}
.y27d{bottom:1036.541113px;}
.y48{bottom:1036.546136px;}
.y513{bottom:1040.967786px;}
.y4bd{bottom:1041.132118px;}
.y2a8{bottom:1045.049690px;}
.y1f1{bottom:1045.134808px;}
.y3e{bottom:1045.474500px;}
.y32b{bottom:1050.490500px;}
.y471{bottom:1050.917421px;}
.y168{bottom:1051.937575px;}
.y10c{bottom:1052.185146px;}
.y8b{bottom:1052.186466px;}
.y385{bottom:1052.187443px;}
.y3e4{bottom:1052.187446px;}
.y27c{bottom:1052.188013px;}
.y47{bottom:1052.193036px;}
.y512{bottom:1052.957985px;}
.y4bc{bottom:1053.123273px;}
.y167{bottom:1064.778000px;}
.y511{bottom:1064.864022px;}
.y4bb{bottom:1065.028354px;}
.y10b{bottom:1067.918123px;}
.y384{bottom:1067.919225px;}
.y8a{bottom:1067.919443px;}
.y3e3{bottom:1067.920423px;}
.y27b{bottom:1067.920990px;}
.y46{bottom:1067.924818px;}
.y32a{bottom:1070.136072px;}
.y510{bottom:1076.854221px;}
.y4ba{bottom:1077.018552px;}
.y10a{bottom:1083.565024px;}
.y383{bottom:1083.566126px;}
.y89{bottom:1083.566344px;}
.y3e2{bottom:1083.567324px;}
.y27a{bottom:1083.567891px;}
.y45{bottom:1083.571718px;}
.y166{bottom:1084.507536px;}
.y3d{bottom:1087.312500px;}
.y50f{bottom:1088.759301px;}
.y4b9{bottom:1088.923633px;}
.y165{bottom:1098.879000px;}
.y109{bottom:1099.296805px;}
.y382{bottom:1099.297908px;}
.y88{bottom:1099.298126px;}
.y3e1{bottom:1099.299106px;}
.y279{bottom:1099.299672px;}
.y44{bottom:1099.303500px;}
.y50e{bottom:1100.749500px;}
.y4b8{bottom:1100.914788px;}
.y2{bottom:1127.505000px;}
.y54c{bottom:1128.471276px;}
.y356{bottom:1128.629649px;}
.y42{bottom:1128.630000px;}
.y3b1{bottom:1128.631501px;}
.y25a{bottom:1128.631574px;}
.y2d1{bottom:1128.633240px;}
.y429{bottom:1128.633874px;}
.y151{bottom:1128.635102px;}
.y50d{bottom:1128.636564px;}
.yc5{bottom:1128.642000px;}
.h1f{height:18.051541px;}
.h8{height:23.521113px;}
.h19{height:26.462637px;}
.hc{height:28.371621px;}
.h20{height:28.691550px;}
.h11{height:31.524082px;}
.h9{height:33.622910px;}
.h10{height:33.623438px;}
.h1e{height:34.022278px;}
.hf{height:34.478653px;}
.h27{height:36.224038px;}
.h25{height:36.564511px;}
.ha{height:36.775371px;}
.h7{height:37.122363px;}
.h3{height:37.826367px;}
.hb{height:38.237926px;}
.h22{height:38.624180px;}
.h24{height:41.605054px;}
.h23{height:41.616454px;}
.hd{height:42.029824px;}
.h1a{height:42.423240px;}
.h12{height:42.438896px;}
.h1d{height:42.440048px;}
.h13{height:42.445329px;}
.h15{height:42.449728px;}
.h1b{height:42.449967px;}
.h16{height:42.450600px;}
.h1c{height:42.451329px;}
.h14{height:42.452201px;}
.h17{height:42.472097px;}
.h4{height:50.435156px;}
.h6{height:55.689609px;}
.h5{height:70.925098px;}
.he{height:73.551270px;}
.h18{height:74.342703px;}
.h21{height:336.075000px;}
.h1{height:1190.250000px;}
.h26{height:1190.380500px;}
.h2{height:1190.550000px;}
.h0{height:1190.551500px;}
.w2{width:365.584500px;}
.w3{width:892.743000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6f{left:11.551800px;}
.x6c{left:23.855187px;}
.x6b{left:31.216318px;}
.x6a{left:38.577450px;}
.x2{left:56.276979px;}
.xa2{left:61.483350px;}
.x11{left:62.758950px;}
.x18{left:63.949500px;}
.x3e{left:65.395200px;}
.x91{left:66.585750px;}
.x6d{left:69.347319px;}
.x59{left:70.667700px;}
.x15{left:74.323389px;}
.x80{left:77.811000px;}
.xa4{left:80.956305px;}
.x81{left:85.379400px;}
.x5a{left:88.866000px;}
.x9b{left:91.245904px;}
.xa3{left:99.835345px;}
.x44{left:102.387300px;}
.x3f{left:113.271833px;}
.xad{left:122.200322px;}
.x5b{left:131.555201px;}
.x70{left:133.001550px;}
.x28{left:139.634550px;}
.x9{left:143.546400px;}
.x7d{left:145.162200px;}
.x29{left:147.118050px;}
.xa{left:150.094500px;}
.x82{left:152.985000px;}
.x83{left:158.002500px;}
.x69{left:167.348100px;}
.x5c{left:168.886733px;}
.x40{left:174.498644px;}
.x8c{left:175.606500px;}
.xae{left:181.472282px;}
.x8f{left:185.386500px;}
.x90{left:190.402500px;}
.x89{left:196.525500px;}
.x7e{left:198.822000px;}
.x2a{left:202.903500px;}
.x8a{left:204.180000px;}
.x5d{left:206.218265px;}
.x2b{left:207.921000px;}
.x67{left:214.894500px;}
.x2c{left:216.765000px;}
.x6e{left:218.484300px;}
.x68{left:219.912000px;}
.x2d{left:224.248500px;}
.x3{left:226.375500px;}
.xa0{left:228.330000px;}
.x7f{left:230.457000px;}
.xaf{left:233.940520px;}
.x4{left:242.617500px;}
.xb0{left:243.974911px;}
.x88{left:245.593500px;}
.x22{left:247.974000px;}
.x84{left:251.121000px;}
.x8b{left:252.312000px;}
.x56{left:254.436128px;}
.x23{left:255.798000px;}
.x86{left:260.220000px;}
.x85{left:265.068000px;}
.x87{left:270.255000px;}
.x21{left:272.806500px;}
.x1a{left:276.463500px;}
.x2e{left:278.334000px;}
.x5e{left:280.882286px;}
.x1e{left:286.158000px;}
.x2f{left:287.178000px;}
.x1b{left:289.899000px;}
.x1f{left:294.321000px;}
.x42{left:300.270923px;}
.x12{left:302.995500px;}
.xa1{left:304.523389px;}
.x37{left:305.716500px;}
.x1{left:310.121979px;}
.x24{left:313.710000px;}
.x20{left:316.857000px;}
.x25{left:318.727500px;}
.x57{left:320.086220px;}
.xb{left:322.384500px;}
.x9c{left:326.721000px;}
.xc{left:328.846500px;}
.x19{left:342.624000px;}
.x30{left:343.644000px;}
.x31{left:348.661500px;}
.x8d{left:351.892500px;}
.x5f{left:355.631424px;}
.x32{left:357.591000px;}
.x43{left:359.292000px;}
.x8e{left:360.907500px;}
.x33{left:364.989000px;}
.x13{left:367.369500px;}
.x9d{left:374.683500px;}
.x14{left:375.789000px;}
.x26{left:378.936000px;}
.x92{left:383.527500px;}
.x27{left:386.758500px;}
.x93{left:388.545000px;}
.x58{left:393.474423px;}
.x60{left:398.320625px;}
.x9e{left:403.936500px;}
.x34{left:414.057000px;}
.x65{left:415.842000px;}
.x35{left:419.074500px;}
.x66{left:420.859500px;}
.x36{left:427.918500px;}
.x7c{left:441.626979px;}
.x1d{left:444.311979px;}
.x41{left:455.891021px;}
.x16{left:459.888932px;}
.x47{left:468.907500px;}
.x75{left:474.859500px;}
.x74{left:475.965000px;}
.x17{left:477.831221px;}
.x76{left:478.941000px;}
.x73{left:481.833000px;}
.xd{left:483.703500px;}
.xa5{left:484.719099px;}
.x77{left:486.000000px;}
.xe{left:490.252500px;}
.x4b{left:492.293026px;}
.x9f{left:494.757097px;}
.x38{left:504.963000px;}
.x5{left:511.426500px;}
.x39{left:514.828500px;}
.x6{left:517.975500px;}
.x72{left:534.811990px;}
.xb1{left:537.442605px;}
.x4c{left:538.553368px;}
.x3a{left:546.888000px;}
.x3b{left:554.457000px;}
.x71{left:572.314500px;}
.x4d{left:579.371880px;}
.x94{left:586.430002px;}
.x61{left:595.273694px;}
.x3c{left:598.081500px;}
.x52{left:603.522514px;}
.x1c{left:606.086979px;}
.x99{left:610.582500px;}
.x97{left:612.453000px;}
.x78{left:615.174000px;}
.x9a{left:616.536000px;}
.x4e{left:620.190392px;}
.xa9{left:621.801586px;}
.x79{left:638.985000px;}
.xb2{left:641.955401px;}
.x62{left:644.001509px;}
.x98{left:648.848511px;}
.x96{left:654.291256px;}
.xab{left:655.816375px;}
.x95{left:659.647968px;}
.xf{left:664.242000px;}
.x4f{left:666.366573px;}
.x10{left:671.386500px;}
.xac{left:679.287020px;}
.x55{left:684.736500px;}
.x7{left:694.941000px;}
.x63{left:698.171156px;}
.x8{left:701.490000px;}
.xb3{left:704.288750px;}
.x50{left:707.185084px;}
.x45{left:717.299818px;}
.x7a{left:719.347500px;}
.xb4{left:722.911479px;}
.x7b{left:743.158500px;}
.x64{left:746.983133px;}
.x48{left:748.088715px;}
.xb5{left:751.315157px;}
.x54{left:765.949500px;}
.x51{left:769.435500px;}
.xaa{left:774.360296px;}
.x53{left:782.107500px;}
.xa7{left:789.072366px;}
.xa8{left:790.347228px;}
.x49{left:795.539756px;}
.x46{left:799.531713px;}
.xa6{left:817.304852px;}
.x3d{left:820.800000px;}
.x4a{left:823.521000px;}
@media print{
.v4{vertical-align:-15.418667pt;}
.v2{vertical-align:-13.909333pt;}
.v7{vertical-align:-6.352000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.509813pt;}
.v9{vertical-align:2.720461pt;}
.va{vertical-align:8.766437pt;}
.v8{vertical-align:12.389625pt;}
.v1{vertical-align:13.905268pt;}
.v3{vertical-align:15.408263pt;}
.v6{vertical-align:22.370559pt;}
.v5{vertical-align:28.722559pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.132262pt;}
.lsa{letter-spacing:0.132464pt;}
.ls24{letter-spacing:0.210534pt;}
.ls0{letter-spacing:1.580602pt;}
.ls7{letter-spacing:2.355200pt;}
.ls6{letter-spacing:2.357867pt;}
.ls20{letter-spacing:2.360533pt;}
.ls25{letter-spacing:2.611467pt;}
.ls2{letter-spacing:2.637333pt;}
.ls5{letter-spacing:2.659200pt;}
.ls23{letter-spacing:2.660267pt;}
.ls1f{letter-spacing:2.664533pt;}
.ls1b{letter-spacing:8.004730pt;}
.ls2a{letter-spacing:8.610015pt;}
.ls9{letter-spacing:8.692722pt;}
.ls2f{letter-spacing:8.994524pt;}
.ls30{letter-spacing:8.998774pt;}
.ls2e{letter-spacing:9.300575pt;}
.ls1d{letter-spacing:9.796783pt;}
.ls17{letter-spacing:9.817186pt;}
.ls22{letter-spacing:10.096025pt;}
.ls14{letter-spacing:10.099426pt;}
.ls29{letter-spacing:10.119828pt;}
.ls2d{letter-spacing:10.205979pt;}
.ls19{letter-spacing:10.398668pt;}
.ls16{letter-spacing:10.402068pt;}
.ls1c{letter-spacing:10.422471pt;}
.ls4{letter-spacing:10.805330pt;}
.ls2c{letter-spacing:10.809581pt;}
.ls8{letter-spacing:11.111382pt;}
.ls28{letter-spacing:11.362032pt;}
.ls21{letter-spacing:11.660429pt;}
.ls13{letter-spacing:11.664254pt;}
.lsb{letter-spacing:11.959352pt;}
.ls27{letter-spacing:14.988701pt;}
.ls1e{letter-spacing:16.250503pt;}
.ls1{letter-spacing:16.922845pt;}
.ls1a{letter-spacing:17.502271pt;}
.ls31{letter-spacing:17.804913pt;}
.ls32{letter-spacing:19.038975pt;}
.lsf{letter-spacing:27.781922pt;}
.ls12{letter-spacing:28.081164pt;}
.ls10{letter-spacing:28.084564pt;}
.lsc{letter-spacing:31.400069pt;}
.ls18{letter-spacing:83.148537pt;}
.ls15{letter-spacing:131.523765pt;}
.ls26{letter-spacing:187.764304pt;}
.ls2b{letter-spacing:234.327077pt;}
.ls11{letter-spacing:246.419184pt;}
.lse{letter-spacing:246.422584pt;}
.ws2f{word-spacing:-214.220039pt;}
.wsd{word-spacing:-42.507200pt;}
.ws25{word-spacing:-34.004800pt;}
.wse{word-spacing:-30.788941pt;}
.ws43{word-spacing:-13.110035pt;}
.ws3{word-spacing:-12.454610pt;}
.ws7{word-spacing:-11.944523pt;}
.ws1{word-spacing:-11.000392pt;}
.ws4{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.ws1d{word-spacing:-9.963406pt;}
.ws2c{word-spacing:-9.564000pt;}
.ws9{word-spacing:-8.943403pt;}
.ws45{word-spacing:-8.740023pt;}
.ws5c{word-spacing:-8.501200pt;}
.ws8{word-spacing:0.000000pt;}
.wsb{word-spacing:0.777882pt;}
.wsa{word-spacing:0.879899pt;}
.wsc{word-spacing:1.385735pt;}
.ws6{word-spacing:1.606752pt;}
.ws5{word-spacing:5.355907pt;}
.ws5d{word-spacing:11.265790pt;}
.ws5b{word-spacing:11.361004pt;}
.ws2{word-spacing:14.384436pt;}
.ws2b{word-spacing:50.374711pt;}
.ws47{word-spacing:60.324515pt;}
.ws4d{word-spacing:60.402726pt;}
.ws40{word-spacing:68.642089pt;}
.ws14{word-spacing:69.536416pt;}
.ws44{word-spacing:71.067709pt;}
.ws48{word-spacing:74.004646pt;}
.ws41{word-spacing:74.864968pt;}
.ws17{word-spacing:85.049405pt;}
.ws56{word-spacing:88.786533pt;}
.ws4a{word-spacing:92.401243pt;}
.ws28{word-spacing:94.710169pt;}
.ws1a{word-spacing:98.641124pt;}
.ws4e{word-spacing:99.467440pt;}
.ws1c{word-spacing:100.239349pt;}
.ws1b{word-spacing:100.987455pt;}
.ws19{word-spacing:104.194108pt;}
.ws15{word-spacing:104.255316pt;}
.ws59{word-spacing:107.931235pt;}
.ws57{word-spacing:107.934636pt;}
.ws5a{word-spacing:107.999245pt;}
.ws36{word-spacing:110.845447pt;}
.ws3b{word-spacing:110.940660pt;}
.ws33{word-spacing:110.944060pt;}
.ws4b{word-spacing:111.545945pt;}
.ws20{word-spacing:117.343764pt;}
.ws49{word-spacing:124.148124pt;}
.ws55{word-spacing:127.075938pt;}
.ws2e{word-spacing:129.990149pt;}
.ws42{word-spacing:132.169857pt;}
.ws16{word-spacing:132.860154pt;}
.ws58{word-spacing:146.220640pt;}
.ws54{word-spacing:146.224040pt;}
.ws21{word-spacing:155.330526pt;}
.ws22{word-spacing:155.537955pt;}
.ws27{word-spacing:156.881145pt;}
.ws26{word-spacing:156.884545pt;}
.ws2a{word-spacing:166.025036pt;}
.ws23{word-spacing:174.679257pt;}
.ws29{word-spacing:175.546380pt;}
.ws11{word-spacing:186.193282pt;}
.wsf{word-spacing:205.269975pt;}
.ws12{word-spacing:218.667866pt;}
.ws18{word-spacing:219.963449pt;}
.ws13{word-spacing:219.966850pt;}
.ws10{word-spacing:222.102351pt;}
.ws50{word-spacing:249.438810pt;}
.ws1f{word-spacing:255.872518pt;}
.ws52{word-spacing:297.249559pt;}
.ws53{word-spacing:306.872917pt;}
.ws51{word-spacing:316.394261pt;}
.ws4f{word-spacing:335.538964pt;}
.ws4c{word-spacing:337.504441pt;}
.ws1e{word-spacing:345.672394pt;}
.ws46{word-spacing:359.274314pt;}
.ws24{word-spacing:428.168039pt;}
.ws38{word-spacing:544.406647pt;}
.ws3c{word-spacing:547.535088pt;}
.ws37{word-spacing:614.245705pt;}
.ws34{word-spacing:637.715818pt;}
.ws32{word-spacing:656.690496pt;}
.ws3d{word-spacing:660.090976pt;}
.ws3a{word-spacing:673.046805pt;}
.ws2d{word-spacing:707.119615pt;}
.ws35{word-spacing:717.657702pt;}
.ws31{word-spacing:719.157314pt;}
.ws39{word-spacing:726.665574pt;}
.ws30{word-spacing:730.174869pt;}
.ws3e{word-spacing:744.694919pt;}
.ws3f{word-spacing:787.574971pt;}
._6a{margin-left:-187.764304pt;}
._6{margin-left:-15.416526pt;}
._c{margin-left:-4.739760pt;}
._7{margin-left:-2.966796pt;}
._5{margin-left:-2.036888pt;}
._4{margin-left:-1.091554pt;}
._3{width:1.268939pt;}
._1{width:2.213747pt;}
._2{width:3.567745pt;}
._8{width:4.489764pt;}
._d{width:5.411167pt;}
._e{width:6.448342pt;}
._9{width:7.685302pt;}
._b{width:9.411094pt;}
._a{width:10.427016pt;}
._f{width:11.523702pt;}
._11{width:13.933860pt;}
._0{width:14.919840pt;}
._18{width:15.953327pt;}
._12{width:16.905113pt;}
._10{width:18.060658pt;}
._13{width:18.958211pt;}
._17{width:19.914623pt;}
._95{width:21.984724pt;}
._94{width:25.542576pt;}
._14{width:26.537245pt;}
._16{width:28.798628pt;}
._15{width:29.708282pt;}
._22{width:60.528544pt;}
._4a{width:62.575633pt;}
._92{width:64.381288pt;}
._64{width:65.846895pt;}
._4b{width:69.587423pt;}
._87{width:70.702780pt;}
._8b{width:76.585611pt;}
._8f{width:80.261529pt;}
._75{width:85.498179pt;}
._93{width:87.062489pt;}
._50{width:89.048370pt;}
._88{width:91.761953pt;}
._31{width:95.012812pt;}
._70{width:98.868956pt;}
._74{width:100.290357pt;}
._6f{width:101.616544pt;}
._7d{width:103.116156pt;}
._29{width:104.534156pt;}
._5f{width:105.656314pt;}
._5b{width:107.339552pt;}
._36{width:108.465111pt;}
._28{width:114.218723pt;}
._6e{width:115.439495pt;}
._89{width:117.894642pt;}
._47{width:120.203568pt;}
._7e{width:121.509352pt;}
._7c{width:124.117520pt;}
._4d{width:126.113602pt;}
._49{width:127.415986pt;}
._91{width:128.388523pt;}
._6d{width:130.462816pt;}
._4e{width:132.156255pt;}
._2a{width:133.302216pt;}
._80{width:134.468581pt;}
._86{width:137.525613pt;}
._48{width:139.735925pt;}
._2c{width:142.823560pt;}
._8c{width:144.105541pt;}
._37{width:145.890793pt;}
._24{width:147.308794pt;}
._71{width:148.328938pt;}
._32{width:149.655125pt;}
._85{width:152.518329pt;}
._19{width:153.650689pt;}
._73{width:155.837197pt;}
._2f{width:159.944977pt;}
._27{width:161.968263pt;}
._8a{width:163.250244pt;}
._4c{width:164.440412pt;}
._5a{width:165.722393pt;}
._67{width:167.068983pt;}
._72{width:168.153736pt;}
._43{width:171.237971pt;}
._62{width:174.417420pt;}
._65{width:176.127862pt;}
._84{width:181.388404pt;}
._8d{width:182.598975pt;}
._57{width:184.989512pt;}
._30{width:186.812170pt;}
._7f{width:188.148558pt;}
._2d{width:192.837820pt;}
._60{width:193.878367pt;}
._3a{width:195.551403pt;}
._61{width:198.934881pt;}
._26{width:201.097586pt;}
._90{width:202.321759pt;}
._33{width:203.443917pt;}
._5c{width:204.555874pt;}
._25{width:206.473745pt;}
._68{width:212.734029pt;}
._1f{width:213.669161pt;}
._20{width:214.655300pt;}
._35{width:222.112553pt;}
._46{width:224.948553pt;}
._41{width:226.427762pt;}
._39{width:233.398746pt;}
._3f{width:244.093255pt;}
._1a{width:252.217002pt;}
._21{width:253.781223pt;}
._1d{width:264.458730pt;}
._1e{width:265.546884pt;}
._1c{width:267.723191pt;}
._77{width:268.624318pt;}
._34{width:269.923301pt;}
._79{width:280.784435pt;}
._1b{width:282.212636pt;}
._8e{width:284.524963pt;}
._40{width:288.316498pt;}
._38{width:291.614963pt;}
._78{width:295.270479pt;}
._63{width:297.674619pt;}
._69{width:302.561108pt;}
._2b{width:303.894097pt;}
._3c{width:307.461200pt;}
._44{width:311.425600pt;}
._82{width:313.456246pt;}
._6b{width:322.314497pt;}
._3b{width:323.593077pt;}
._66{width:325.048483pt;}
._42{width:341.928465pt;}
._83{width:345.454763pt;}
._7a{width:347.471248pt;}
._7b{width:349.814179pt;}
._2e{width:350.820721pt;}
._3e{width:357.254429pt;}
._81{width:360.824933pt;}
._76{width:371.587452pt;}
._23{width:373.569932pt;}
._45{width:376.399131pt;}
._3d{width:380.027443pt;}
._58{width:429.565636pt;}
._5e{width:435.513076pt;}
._59{width:438.814942pt;}
._54{width:440.005110pt;}
._5d{width:441.633940pt;}
._56{width:444.017676pt;}
._4f{width:445.612501pt;}
._55{width:447.962233pt;}
._51{width:450.611207pt;}
._53{width:456.936100pt;}
._52{width:458.942383pt;}
._6c{width:615.605897pt;}
.fs5{font-size:23.788267pt;}
.fs11{font-size:23.803200pt;}
.fs10{font-size:26.763200pt;}
.fs8{font-size:26.778667pt;}
.fsf{font-size:27.629333pt;}
.fs9{font-size:28.693867pt;}
.fse{font-size:29.753600pt;}
.fs14{font-size:31.438933pt;}
.fsd{font-size:31.882133pt;}
.fs6{font-size:34.004800pt;}
.fsc{font-size:34.005333pt;}
.fs12{font-size:36.385067pt;}
.fs7{font-size:37.193067pt;}
.fs4{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fsa{font-size:42.507200pt;}
.fs13{font-size:47.158400pt;}
.fs1{font-size:51.008000pt;}
.fs3{font-size:56.322133pt;}
.fs2{font-size:71.730667pt;}
.fsb{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y321{bottom:3.827679pt;}
.y30b{bottom:17.904933pt;}
.y312{bottom:17.916667pt;}
.y313{bottom:37.251611pt;}
.y43{bottom:42.160000pt;}
.y314{bottom:56.586555pt;}
.y30c{bottom:63.035522pt;}
.y46f{bottom:69.695435pt;}
.yc4{bottom:69.695785pt;}
.y245{bottom:69.697577pt;}
.yda{bottom:69.697821pt;}
.y381{bottom:69.699363pt;}
.y147{bottom:69.700178pt;}
.y4b7{bottom:69.700427pt;}
.y329{bottom:69.770000pt;}
.y87{bottom:70.530573pt;}
.y1c8{bottom:70.534287pt;}
.yf0{bottom:71.888958pt;}
.y323{bottom:72.216133pt;}
.y428{bottom:75.817200pt;}
.y426{bottom:75.817689pt;}
.y355{bottom:75.817695pt;}
.y259{bottom:75.817706pt;}
.y2c0{bottom:75.818491pt;}
.y150{bottom:75.819141pt;}
.y2d0{bottom:75.820037pt;}
.y315{bottom:75.921499pt;}
.y1f0{bottom:78.840924pt;}
.y427{bottom:79.596800pt;}
.y4b6{bottom:80.358381pt;}
.y164{bottom:80.960175pt;}
.y4{bottom:81.066667pt;}
.yc3{bottom:83.679591pt;}
.yd9{bottom:83.681627pt;}
.y244{bottom:83.682446pt;}
.y380{bottom:83.683169pt;}
.y146{bottom:83.683984pt;}
.y86{bottom:84.514379pt;}
.y1c7{bottom:84.518093pt;}
.yef{bottom:85.797314pt;}
.y50c{bottom:85.952171pt;}
.y354{bottom:87.307067pt;}
.y2bf{bottom:87.307863pt;}
.y425{bottom:87.307911pt;}
.y258{bottom:87.307928pt;}
.y14f{bottom:87.308513pt;}
.y2cf{bottom:87.309409pt;}
.y30a{bottom:90.028400pt;}
.y4b5{bottom:90.941525pt;}
.y1ef{bottom:92.750343pt;}
.y3{bottom:93.893333pt;}
.y163{bottom:94.943981pt;}
.y316{bottom:95.256443pt;}
.y50b{bottom:96.534465pt;}
.y44d{bottom:96.907482pt;}
.y46e{bottom:97.587597pt;}
.yc2{bottom:97.589009pt;}
.yd8{bottom:97.589983pt;}
.y243{bottom:97.590802pt;}
.y37f{bottom:97.591525pt;}
.y145{bottom:97.592340pt;}
.y85{bottom:98.422735pt;}
.y3e0{bottom:98.423606pt;}
.y1c6{bottom:98.427512pt;}
.y353{bottom:98.721200pt;}
.y2be{bottom:98.721574pt;}
.y424{bottom:98.721622pt;}
.y257{bottom:98.721639pt;}
.y351{bottom:98.722594pt;}
.y14e{bottom:98.723074pt;}
.y2ce{bottom:98.723120pt;}
.yee{bottom:99.782183pt;}
.y4b4{bottom:101.599480pt;}
.y1ad{bottom:102.047200pt;}
.y352{bottom:102.500667pt;}
.y322{bottom:103.523467pt;}
.y1ac{bottom:106.280267pt;}
.y41{bottom:106.582787pt;}
.y1ee{bottom:106.734149pt;}
.y50a{bottom:107.193269pt;}
.y30d{bottom:108.166111pt;}
.y422{bottom:108.699200pt;}
.y162{bottom:108.853399pt;}
.y423{bottom:110.135333pt;}
.y256{bottom:110.135350pt;}
.y2bd{bottom:110.136135pt;}
.y350{bottom:110.136305pt;}
.y14d{bottom:110.136786pt;}
.y2cd{bottom:110.137681pt;}
.y421{bottom:110.137806pt;}
.y44c{bottom:110.815838pt;}
.yc1{bottom:111.572816pt;}
.y242{bottom:111.574608pt;}
.yd7{bottom:111.574852pt;}
.y37e{bottom:111.575331pt;}
.y144{bottom:111.577208pt;}
.y328{bottom:111.755200pt;}
.y4b3{bottom:112.181773pt;}
.y84{bottom:112.407604pt;}
.y3df{bottom:112.408475pt;}
.y1c5{bottom:112.411318pt;}
.yed{bottom:113.690539pt;}
.y317{bottom:114.591387pt;}
.y509{bottom:117.851224pt;}
.y40{bottom:119.281867pt;}
.y1ed{bottom:120.642505pt;}
.y1ab{bottom:120.870356pt;}
.y2bc{bottom:121.549847pt;}
.y255{bottom:121.549911pt;}
.y34f{bottom:121.550017pt;}
.y14c{bottom:121.550497pt;}
.y2cc{bottom:121.551392pt;}
.y420{bottom:121.551517pt;}
.y161{bottom:122.837205pt;}
.y4b2{bottom:122.839728pt;}
.y44b{bottom:124.799644pt;}
.y327{bottom:125.253867pt;}
.yc0{bottom:125.481171pt;}
.y241{bottom:125.482964pt;}
.yd6{bottom:125.483207pt;}
.y37d{bottom:125.484750pt;}
.y143{bottom:125.485564pt;}
.y83{bottom:126.315959pt;}
.y3de{bottom:126.316830pt;}
.y1c4{bottom:126.319674pt;}
.yec{bottom:127.674345pt;}
.y508{bottom:128.433517pt;}
.y1aa{bottom:132.360578pt;}
.y254{bottom:132.963622pt;}
.y2bb{bottom:132.964408pt;}
.y34e{bottom:132.964578pt;}
.y14b{bottom:132.965058pt;}
.y2cb{bottom:132.965954pt;}
.y41f{bottom:132.966078pt;}
.y4b1{bottom:133.498532pt;}
.y318{bottom:133.926331pt;}
.y1ec{bottom:134.626311pt;}
.y46d{bottom:136.213890pt;}
.y160{bottom:136.745561pt;}
.y449{bottom:136.970667pt;}
.y44a{bottom:138.708000pt;}
.y448{bottom:138.714164pt;}
.y507{bottom:139.091472pt;}
.ybf{bottom:139.464977pt;}
.y240{bottom:139.466770pt;}
.yd5{bottom:139.467014pt;}
.y37c{bottom:139.468556pt;}
.y142{bottom:139.469370pt;}
.y82{bottom:140.299766pt;}
.y3dd{bottom:140.300637pt;}
.y1c3{bottom:140.303480pt;}
.yeb{bottom:141.582701pt;}
.y3c{bottom:141.958699pt;}
.y1a9{bottom:143.774289pt;}
.y4b0{bottom:144.080826pt;}
.y2ba{bottom:144.378119pt;}
.y34d{bottom:144.378289pt;}
.y41e{bottom:144.379789pt;}
.y252{bottom:144.379927pt;}
.y1eb{bottom:148.535838pt;}
.y506{bottom:149.674616pt;}
.y46c{bottom:150.121183pt;}
.y2ca{bottom:150.276097pt;}
.y14a{bottom:150.501333pt;}
.y15f{bottom:150.729367pt;}
.y326{bottom:151.649308pt;}
.y447{bottom:152.697970pt;}
.y319{bottom:153.261275pt;}
.y30e{bottom:153.296700pt;}
.ybe{bottom:153.374505pt;}
.yd4{bottom:153.375369pt;}
.y23f{bottom:153.376188pt;}
.y37b{bottom:153.376912pt;}
.y81{bottom:154.283572pt;}
.y3dc{bottom:154.284443pt;}
.y1c2{bottom:154.288349pt;}
.y34b{bottom:154.432000pt;}
.y3b{bottom:154.733333pt;}
.y4af{bottom:154.738781pt;}
.y1a8{bottom:155.188000pt;}
.y1a6{bottom:155.188518pt;}
.yea{bottom:155.567570pt;}
.y2b9{bottom:155.791830pt;}
.y34c{bottom:155.792000pt;}
.y34a{bottom:155.792956pt;}
.y251{bottom:155.793638pt;}
.y41d{bottom:155.794350pt;}
.y1a7{bottom:158.966667pt;}
.y505{bottom:160.332570pt;}
.y2c9{bottom:161.765469pt;}
.y1ea{bottom:162.519644pt;}
.y46b{bottom:164.106052pt;}
.y15e{bottom:164.714236pt;}
.y325{bottom:165.148400pt;}
.y4ae{bottom:165.321074pt;}
.y348{bottom:165.845333pt;}
.y1a5{bottom:166.602229pt;}
.y446{bottom:166.606326pt;}
.y253{bottom:167.204756pt;}
.y2b8{bottom:167.206391pt;}
.y347{bottom:167.206628pt;}
.y349{bottom:167.206667pt;}
.y250{bottom:167.207349pt;}
.y41c{bottom:167.208062pt;}
.ybd{bottom:167.358311pt;}
.y23e{bottom:167.359994pt;}
.yd3{bottom:167.360238pt;}
.y37a{bottom:167.360718pt;}
.y141{bottom:167.362595pt;}
.y149{bottom:168.037365pt;}
.y80{bottom:168.192990pt;}
.y3db{bottom:168.193861pt;}
.y1c1{bottom:168.196705pt;}
.ye9{bottom:169.551376pt;}
.y504{bottom:170.914864pt;}
.y31a{bottom:172.596219pt;}
.y2c8{bottom:173.179180pt;}
.y3b0{bottom:173.328956pt;}
.y4ad{bottom:175.979879pt;}
.y1e9{bottom:176.429474pt;}
.y345{bottom:177.260000pt;}
.y46a{bottom:178.014408pt;}
.y1a4{bottom:178.016790pt;}
.y15d{bottom:178.622592pt;}
.y346{bottom:178.696000pt;}
.y344{bottom:178.696956pt;}
.y41b{bottom:178.697433pt;}
.y24f{bottom:178.697571pt;}
.y445{bottom:180.591195pt;}
.y148{bottom:180.812000pt;}
.y23d{bottom:181.268350pt;}
.ybc{bottom:181.269268pt;}
.y503{bottom:181.573668pt;}
.y7f{bottom:182.176796pt;}
.y3da{bottom:182.177667pt;}
.y1c0{bottom:182.180511pt;}
.ye8{bottom:183.459732pt;}
.y2c7{bottom:184.593741pt;}
.y2b7{bottom:184.742667pt;}
.y4ac{bottom:186.637833pt;}
.y342{bottom:188.674667pt;}
.y341{bottom:190.110289pt;}
.y343{bottom:190.110667pt;}
.y24e{bottom:190.111282pt;}
.y41a{bottom:190.111995pt;}
.y1e8{bottom:190.414343pt;}
.y31b{bottom:191.931163pt;}
.y469{bottom:191.998214pt;}
.y502{bottom:192.231623pt;}
.y15c{bottom:192.606398pt;}
.y444{bottom:194.575001pt;}
.y23c{bottom:195.252156pt;}
.yd2{bottom:195.252400pt;}
.y379{bottom:195.253943pt;}
.ybb{bottom:195.254136pt;}
.y140{bottom:195.254757pt;}
.y1a3{bottom:195.326934pt;}
.y2c6{bottom:196.007452pt;}
.y39{bottom:196.083570pt;}
.y7e{bottom:196.085152pt;}
.y3d9{bottom:196.086023pt;}
.y1bf{bottom:196.088867pt;}
.y4ab{bottom:197.220127pt;}
.ye7{bottom:197.443538pt;}
.y30f{bottom:198.427289pt;}
.y33f{bottom:200.088000pt;}
.y340{bottom:201.524000pt;}
.y33e{bottom:201.524578pt;}
.y24d{bottom:201.524993pt;}
.y419{bottom:201.525706pt;}
.y2b6{bottom:202.280064pt;}
.y501{bottom:202.813917pt;}
.y1e7{bottom:204.322699pt;}
.y324{bottom:205.044267pt;}
.y468{bottom:205.906570pt;}
.y15b{bottom:206.514754pt;}
.y1a2{bottom:206.816305pt;}
.y2c5{bottom:207.421163pt;}
.y4aa{bottom:207.878082pt;}
.y443{bottom:208.483356pt;}
.y378{bottom:209.162298pt;}
.yba{bottom:209.162492pt;}
.y38{bottom:210.067376pt;}
.y7d{bottom:210.068958pt;}
.y3d8{bottom:210.069829pt;}
.y1be{bottom:210.073735pt;}
.y31c{bottom:211.266107pt;}
.ye6{bottom:211.352956pt;}
.y33d{bottom:212.938289pt;}
.y24c{bottom:212.939555pt;}
.y418{bottom:212.940267pt;}
.y500{bottom:213.471871pt;}
.y2b5{bottom:215.054699pt;}
.y1a1{bottom:218.230017pt;}
.y1e6{bottom:218.306505pt;}
.y4a9{bottom:218.461225pt;}
.y2c4{bottom:218.835725pt;}
.y467{bottom:219.891439pt;}
.y15a{bottom:220.499623pt;}
.y442{bottom:222.467163pt;}
.y33b{bottom:222.916000pt;}
.y23b{bottom:223.145381pt;}
.y377{bottom:223.146105pt;}
.yb9{bottom:223.146298pt;}
.y37{bottom:223.975732pt;}
.y108{bottom:223.976141pt;}
.y7c{bottom:223.977314pt;}
.y3d7{bottom:223.978185pt;}
.y1bd{bottom:223.982091pt;}
.y4ff{bottom:224.055015pt;}
.y33c{bottom:224.352000pt;}
.y33a{bottom:224.352956pt;}
.y24b{bottom:224.353266pt;}
.y417{bottom:224.353978pt;}
.y13f{bottom:224.583662pt;}
.ye5{bottom:225.336762pt;}
.yd1{bottom:225.336871pt;}
.y2b4{bottom:227.829333pt;}
.y4a8{bottom:229.119180pt;}
.y1a0{bottom:229.644578pt;}
.y31d{bottom:230.601051pt;}
.y1e5{bottom:232.214861pt;}
.y466{bottom:233.799794pt;}
.y338{bottom:234.330667pt;}
.y159{bottom:234.407979pt;}
.y4fe{bottom:234.712969pt;}
.y339{bottom:235.766667pt;}
.y337{bottom:235.767657pt;}
.y416{bottom:235.767689pt;}
.y2c3{bottom:236.372000pt;}
.y441{bottom:236.375518pt;}
.y376{bottom:237.054460pt;}
.yb8{bottom:237.054654pt;}
.y36{bottom:237.959538pt;}
.y107{bottom:237.961009pt;}
.y7b{bottom:237.962183pt;}
.y3d6{bottom:237.963054pt;}
.y1bc{bottom:237.965897pt;}
.y13e{bottom:238.492018pt;}
.ye4{bottom:239.245118pt;}
.yd0{bottom:239.246289pt;}
.y4a7{bottom:239.701474pt;}
.y19f{bottom:241.058289pt;}
.y24a{bottom:241.890391pt;}
.y310{bottom:243.557877pt;}
.y4fd{bottom:245.370924pt;}
.y1e4{bottom:246.199838pt;}
.y415{bottom:247.182250pt;}
.y465{bottom:247.783601pt;}
.y158{bottom:248.391785pt;}
.y31e{bottom:249.935995pt;}
.y4a6{bottom:250.360278pt;}
.y440{bottom:250.360387pt;}
.yb7{bottom:251.038460pt;}
.y375{bottom:251.039329pt;}
.y35{bottom:251.868956pt;}
.y106{bottom:251.869365pt;}
.y7a{bottom:251.870539pt;}
.y3d5{bottom:251.871410pt;}
.y1bb{bottom:251.874253pt;}
.y19e{bottom:252.472000pt;}
.y13d{bottom:252.476887pt;}
.y23a{bottom:252.851538pt;}
.ye3{bottom:253.228924pt;}
.ycf{bottom:253.230096pt;}
.y336{bottom:253.303932pt;}
.y2c2{bottom:253.908032pt;}
.y4fc{bottom:255.953218pt;}
.y414{bottom:258.595962pt;}
.y249{bottom:259.426667pt;}
.y1e3{bottom:260.108194pt;}
.y4a5{bottom:261.018233pt;}
.y464{bottom:261.691956pt;}
.y157{bottom:262.300141pt;}
.y19c{bottom:263.886497pt;}
.y43f{bottom:264.268743pt;}
.y374{bottom:264.947685pt;}
.yb6{bottom:264.947879pt;}
.y34{bottom:265.852762pt;}
.y105{bottom:265.853171pt;}
.y79{bottom:265.854345pt;}
.y3af{bottom:265.855214pt;}
.y3d4{bottom:265.855216pt;}
.y1ba{bottom:265.859122pt;}
.y13c{bottom:266.385243pt;}
.y4fb{bottom:266.612022pt;}
.y2c1{bottom:266.682667pt;}
.y239{bottom:266.760956pt;}
.ye2{bottom:267.138343pt;}
.yce{bottom:267.138451pt;}
.y31f{bottom:269.270939pt;}
.y413{bottom:270.085333pt;}
.y411{bottom:270.086661pt;}
.y335{bottom:270.841058pt;}
.y278{bottom:271.374217pt;}
.y4a4{bottom:271.600526pt;}
.y412{bottom:273.864000pt;}
.y1e2{bottom:274.098080pt;}
.y19b{bottom:275.301058pt;}
.y463{bottom:275.675763pt;}
.y156{bottom:276.285009pt;}
.y248{bottom:276.963587pt;}
.y4fa{bottom:277.194316pt;}
.y43e{bottom:278.252549pt;}
.y373{bottom:278.931491pt;}
.yb5{bottom:278.931685pt;}
.y19d{bottom:279.080000pt;}
.y33{bottom:279.761118pt;}
.y104{bottom:279.761527pt;}
.y78{bottom:279.762701pt;}
.y3ae{bottom:279.763570pt;}
.y3d3{bottom:279.763572pt;}
.y1b9{bottom:279.767478pt;}
.y13b{bottom:280.369049pt;}
.y238{bottom:280.744762pt;}
.ye1{bottom:281.122149pt;}
.ycd{bottom:281.122258pt;}
.y410{bottom:281.500372pt;}
.y4a3{bottom:282.258481pt;}
.y277{bottom:285.358023pt;}
.y4f9{bottom:287.852270pt;}
.y1e1{bottom:288.006436pt;}
.y334{bottom:288.377333pt;}
.y320{bottom:288.605467pt;}
.y311{bottom:288.687467pt;}
.y462{bottom:289.660631pt;}
.y247{bottom:289.662667pt;}
.y155{bottom:290.193365pt;}
.y102{bottom:291.930667pt;}
.y43d{bottom:292.160905pt;}
.y19a{bottom:292.837333pt;}
.y372{bottom:292.839847pt;}
.yb4{bottom:292.840041pt;}
.y4a2{bottom:292.841625pt;}
.y40f{bottom:292.914934pt;}
.y32{bottom:293.744924pt;}
.y103{bottom:293.745333pt;}
.y101{bottom:293.746204pt;}
.y3ad{bottom:293.747376pt;}
.y77{bottom:293.747570pt;}
.y3d2{bottom:293.748441pt;}
.y1b8{bottom:293.751284pt;}
.y13a{bottom:294.277405pt;}
.y237{bottom:294.653118pt;}
.ye0{bottom:295.030505pt;}
.ycc{bottom:295.031676pt;}
.y2a7{bottom:296.923170pt;}
.y4f8{bottom:298.435414pt;}
.y276{bottom:299.266379pt;}
.y1e0{bottom:301.990242pt;}
.y4a1{bottom:303.499579pt;}
.y154{bottom:304.177171pt;}
.y40e{bottom:304.328645pt;}
.y333{bottom:305.915587pt;}
.y43c{bottom:306.145774pt;}
.yb3{bottom:306.823847pt;}
.y371{bottom:306.824716pt;}
.y31{bottom:307.654343pt;}
.y100{bottom:307.655623pt;}
.y3ac{bottom:307.655732pt;}
.y76{bottom:307.655925pt;}
.y3d1{bottom:307.656796pt;}
.y1b7{bottom:307.659640pt;}
.y139{bottom:308.261211pt;}
.y236{bottom:308.636924pt;}
.ydf{bottom:309.014311pt;}
.ycb{bottom:309.015482pt;}
.y4f7{bottom:309.093369pt;}
.y199{bottom:310.374699pt;}
.y2a6{bottom:310.831525pt;}
.y275{bottom:313.250185pt;}
.y4a0{bottom:314.157534pt;}
.y40d{bottom:315.742356pt;}
.y1df{bottom:315.899661pt;}
.y461{bottom:317.552793pt;}
.y153{bottom:318.085527pt;}
.y332{bottom:318.614667pt;}
.y4f6{bottom:319.751323pt;}
.y43b{bottom:320.054130pt;}
.yb2{bottom:320.733265pt;}
.y30{bottom:321.638149pt;}
.yff{bottom:321.639429pt;}
.y3ab{bottom:321.639538pt;}
.y75{bottom:321.639732pt;}
.y3d0{bottom:321.640602pt;}
.y1b6{bottom:321.643446pt;}
.y138{bottom:322.170629pt;}
.y235{bottom:322.546343pt;}
.yde{bottom:322.922861pt;}
.yca{bottom:322.923838pt;}
.y198{bottom:323.149333pt;}
.y49f{bottom:324.739827pt;}
.y2a5{bottom:324.816394pt;}
.y40c{bottom:327.156917pt;}
.y274{bottom:327.159604pt;}
.y1de{bottom:329.883467pt;}
.y54b{bottom:330.186694pt;}
.y4f5{bottom:330.333617pt;}
.y152{bottom:332.069333pt;}
.y43a{bottom:334.037936pt;}
.y370{bottom:334.716878pt;}
.yb1{bottom:334.717072pt;}
.y49e{bottom:335.398632pt;}
.y2f{bottom:335.546505pt;}
.yfe{bottom:335.547785pt;}
.y74{bottom:335.548087pt;}
.y3aa{bottom:335.548956pt;}
.y3cf{bottom:335.548958pt;}
.y1b5{bottom:335.552865pt;}
.y137{bottom:336.154436pt;}
.y234{bottom:336.530149pt;}
.yc9{bottom:336.907644pt;}
.y40b{bottom:338.570628pt;}
.y2a4{bottom:338.724750pt;}
.y54a{bottom:340.844649pt;}
.y4f4{bottom:340.992421pt;}
.y273{bottom:341.143410pt;}
.y1dd{bottom:343.791823pt;}
.y49d{bottom:345.980926pt;}
.y460{bottom:347.940128pt;}
.y439{bottom:347.946292pt;}
.y36f{bottom:348.625234pt;}
.y309{bottom:348.852734pt;}
.y3a{bottom:349.530311pt;}
.yfd{bottom:349.531591pt;}
.y3a9{bottom:349.532762pt;}
.y73{bottom:349.532956pt;}
.y3ce{bottom:349.533827pt;}
.y1b4{bottom:349.536671pt;}
.y409{bottom:350.060000pt;}
.y136{bottom:350.138242pt;}
.y233{bottom:350.438505pt;}
.ydd{bottom:350.816000pt;}
.yc8{bottom:350.816194pt;}
.y549{bottom:351.427793pt;}
.y4f3{bottom:351.574715pt;}
.y2a3{bottom:352.708556pt;}
.y272{bottom:355.051766pt;}
.y49c{bottom:356.638880pt;}
.y1dc{bottom:357.775629pt;}
.y408{bottom:360.037333pt;}
.y40a{bottom:361.473711pt;}
.y407{bottom:361.474869pt;}
.y45f{bottom:361.923934pt;}
.y438{bottom:361.931160pt;}
.y548{bottom:362.085747pt;}
.y4f2{bottom:362.232670pt;}
.yb0{bottom:362.609234pt;}
.y308{bottom:362.836541pt;}
.y2e{bottom:363.438667pt;}
.y3a8{bottom:363.441118pt;}
.y72{bottom:363.441312pt;}
.y3cd{bottom:363.442183pt;}
.y1b3{bottom:363.445026pt;}
.y135{bottom:364.046597pt;}
.y222{bottom:364.422311pt;}
.yc7{bottom:364.799644pt;}
.ydc{bottom:364.799806pt;}
.y2a2{bottom:366.692362pt;}
.y49b{bottom:367.222024pt;}
.y197{bottom:368.052202pt;}
.y271{bottom:369.035572pt;}
.y1db{bottom:371.683985pt;}
.y547{bottom:372.743701pt;}
.y406{bottom:372.889430pt;}
.y4f1{bottom:372.890624pt;}
.y45e{bottom:375.833353pt;}
.y437{bottom:375.839516pt;}
.y307{bottom:376.744896pt;}
.yfc{bottom:377.424816pt;}
.y36e{bottom:377.424924pt;}
.y71{bottom:377.425118pt;}
.y3cc{bottom:377.425989pt;}
.y1b2{bottom:377.428833pt;}
.y49a{bottom:377.879978pt;}
.y134{bottom:378.031466pt;}
.y232{bottom:378.330667pt;}
.y221{bottom:378.331838pt;}
.yc6{bottom:378.708000pt;}
.ydb{bottom:378.708162pt;}
.y196{bottom:379.466764pt;}
.y2a1{bottom:380.600718pt;}
.y270{bottom:382.944990pt;}
.y546{bottom:383.325995pt;}
.y4f0{bottom:383.473768pt;}
.y405{bottom:384.303141pt;}
.y1da{bottom:385.668853pt;}
.y499{bottom:388.537933pt;}
.y45d{bottom:389.817159pt;}
.y436{bottom:389.823322pt;}
.y306{bottom:390.728702pt;}
.y195{bottom:390.880475pt;}
.yaf{bottom:391.182573pt;}
.yfb{bottom:391.333171pt;}
.y70{bottom:391.333474pt;}
.y36d{bottom:391.334343pt;}
.y3cb{bottom:391.334345pt;}
.y1b1{bottom:391.338251pt;}
.y133{bottom:391.939822pt;}
.y231{bottom:392.314473pt;}
.y220{bottom:392.315644pt;}
.y545{bottom:393.984800pt;}
.y4ef{bottom:394.131722pt;}
.y2a0{bottom:394.585587pt;}
.y404{bottom:395.716853pt;}
.y26f{bottom:396.928796pt;}
.y498{bottom:399.120227pt;}
.y1d9{bottom:399.577209pt;}
.y194{bottom:402.369847pt;}
.y45c{bottom:403.725514pt;}
.y435{bottom:403.731678pt;}
.y544{bottom:404.567094pt;}
.y305{bottom:404.638121pt;}
.y4ee{bottom:404.714016pt;}
.yae{bottom:405.166380pt;}
.yfa{bottom:405.316977pt;}
.y36c{bottom:405.318149pt;}
.y6f{bottom:405.318343pt;}
.y3ca{bottom:405.319214pt;}
.y1b0{bottom:405.322057pt;}
.y132{bottom:405.923628pt;}
.y230{bottom:406.222829pt;}
.y21f{bottom:406.226345pt;}
.y403{bottom:407.131414pt;}
.y29f{bottom:408.493943pt;}
.yf2{bottom:408.642667pt;}
.y497{bottom:409.779031pt;}
.y26e{bottom:410.912602pt;}
.y1d8{bottom:413.561015pt;}
.y193{bottom:413.784408pt;}
.y543{bottom:415.225048pt;}
.y4ed{bottom:415.371971pt;}
.y2d{bottom:416.354033pt;}
.y45b{bottom:417.709321pt;}
.y434{bottom:417.716547pt;}
.y402{bottom:418.545125pt;}
.y304{bottom:418.621927pt;}
.yad{bottom:419.074735pt;}
.yf9{bottom:419.225333pt;}
.y36b{bottom:419.226505pt;}
.y2e9{bottom:419.226592pt;}
.y6e{bottom:419.226699pt;}
.y3c9{bottom:419.227570pt;}
.y1af{bottom:419.230413pt;}
.y131{bottom:419.831984pt;}
.y22f{bottom:420.206635pt;}
.y21e{bottom:420.211214pt;}
.y496{bottom:420.361325pt;}
.y29e{bottom:422.477749pt;}
.y26d{bottom:424.820958pt;}
.y192{bottom:425.198119pt;}
.y542{bottom:425.883853pt;}
.y4ec{bottom:426.030775pt;}
.y1d7{bottom:427.469371pt;}
.y2c{bottom:429.128668pt;}
.y401{bottom:429.959686pt;}
.y495{bottom:431.019279pt;}
.yf7{bottom:431.394667pt;}
.y45a{bottom:431.617676pt;}
.y433{bottom:431.624903pt;}
.y303{bottom:432.530283pt;}
.yac{bottom:433.059604pt;}
.yf8{bottom:433.209333pt;}
.yf6{bottom:433.210311pt;}
.y2e8{bottom:433.210398pt;}
.y6d{bottom:433.210505pt;}
.y3c8{bottom:433.211376pt;}
.y1ae{bottom:433.214219pt;}
.y130{bottom:433.816853pt;}
.y22e{bottom:434.114991pt;}
.y21d{bottom:434.119570pt;}
.y29d{bottom:436.386105pt;}
.y541{bottom:436.466146pt;}
.y191{bottom:436.611830pt;}
.y4eb{bottom:436.613069pt;}
.y26c{bottom:438.805827pt;}
.y400{bottom:441.449058pt;}
.y1d6{bottom:441.454240pt;}
.y494{bottom:441.677234pt;}
.y2b{bottom:441.903302pt;}
.yf4{bottom:445.380000pt;}
.y459{bottom:445.602545pt;}
.y432{bottom:445.608709pt;}
.yab{bottom:446.967960pt;}
.yf5{bottom:447.118667pt;}
.y2e7{bottom:447.118754pt;}
.y6c{bottom:447.118861pt;}
.y3c7{bottom:447.119732pt;}
.y36a{bottom:447.119979pt;}
.yf3{bottom:447.123638pt;}
.y540{bottom:447.124101pt;}
.y4ea{bottom:447.271023pt;}
.y12f{bottom:447.725209pt;}
.y190{bottom:448.026391pt;}
.y22d{bottom:448.099859pt;}
.y21c{bottom:448.103376pt;}
.y29c{bottom:450.370974pt;}
.y493{bottom:452.260378pt;}
.y26b{bottom:452.714183pt;}
.y2a{bottom:454.602382pt;}
.y1d5{bottom:455.362596pt;}
.y53f{bottom:457.706394pt;}
.y4e9{bottom:457.854167pt;}
.y3ff{bottom:458.985333pt;}
.y6a{bottom:459.288000pt;}
.y458{bottom:459.510901pt;}
.y302{bottom:460.498958pt;}
.yaa{bottom:460.951767pt;}
.y3a7{bottom:461.102473pt;}
.y6b{bottom:461.102667pt;}
.y3c6{bottom:461.103538pt;}
.y2e6{bottom:461.103623pt;}
.y369{bottom:461.103785pt;}
.y69{bottom:461.107444pt;}
.y12e{bottom:461.709015pt;}
.y22c{bottom:462.008215pt;}
.y21b{bottom:462.011732pt;}
.y492{bottom:462.918332pt;}
.y29b{bottom:464.279329pt;}
.y18f{bottom:465.562667pt;}
.y26a{bottom:466.697989pt;}
.y29{bottom:467.377016pt;}
.y53e{bottom:468.365199pt;}
.y4e8{bottom:468.512122pt;}
.y1d4{bottom:469.346402pt;}
.y457{bottom:473.494707pt;}
.y491{bottom:473.500626pt;}
.y431{bottom:473.500871pt;}
.ya9{bottom:474.859059pt;}
.y3a6{bottom:475.010829pt;}
.y2e5{bottom:475.011979pt;}
.y368{bottom:475.012141pt;}
.y3c5{bottom:475.012956pt;}
.y68{bottom:475.015800pt;}
.y12d{bottom:475.617371pt;}
.y22b{bottom:475.992021pt;}
.y21a{bottom:475.995538pt;}
.y3fe{bottom:476.446699pt;}
.y29a{bottom:478.263136pt;}
.y53d{bottom:478.947493pt;}
.y4e7{bottom:479.094415pt;}
.y28{bottom:480.151651pt;}
.y269{bottom:480.606345pt;}
.y18e{bottom:483.100032pt;}
.y1d3{bottom:483.254758pt;}
.y490{bottom:484.158580pt;}
.y456{bottom:487.403063pt;}
.ya8{bottom:488.843928pt;}
.y3a5{bottom:488.994635pt;}
.y2e4{bottom:488.995785pt;}
.y3c4{bottom:488.996762pt;}
.y367{bottom:488.997009pt;}
.y67{bottom:488.999606pt;}
.y3fd{bottom:489.221333pt;}
.y12c{bottom:489.602239pt;}
.y53c{bottom:489.605447pt;}
.y4e6{bottom:489.752370pt;}
.y22a{bottom:489.900377pt;}
.y219{bottom:489.904956pt;}
.y299{bottom:492.171491pt;}
.y27{bottom:492.850730pt;}
.y268{bottom:494.591214pt;}
.y48f{bottom:494.741724pt;}
.y18d{bottom:495.874667pt;}
.y1d2{bottom:497.239627pt;}
.y53b{bottom:500.263402pt;}
.y4e5{bottom:500.411174pt;}
.y455{bottom:501.387932pt;}
.y430{bottom:501.394096pt;}
.y301{bottom:502.299476pt;}
.ya7{bottom:502.752284pt;}
.y3a4{bottom:502.902991pt;}
.y2e3{bottom:502.904141pt;}
.y3c3{bottom:502.905118pt;}
.y366{bottom:502.905365pt;}
.y66{bottom:502.907962pt;}
.y12b{bottom:503.510595pt;}
.y229{bottom:503.885246pt;}
.y218{bottom:503.888762pt;}
.y48e{bottom:505.399679pt;}
.y26{bottom:505.625365pt;}
.y298{bottom:506.156360pt;}
.y267{bottom:508.499570pt;}
.y53a{bottom:510.846546pt;}
.y4e4{bottom:510.993468pt;}
.y1d1{bottom:511.223433pt;}
.y1d{bottom:514.924372pt;}
.y454{bottom:515.296288pt;}
.y48d{bottom:516.057633pt;}
.y300{bottom:516.207832pt;}
.ya6{bottom:516.736090pt;}
.y24{bottom:516.812000pt;}
.y3a3{bottom:516.887859pt;}
.y3c2{bottom:516.888924pt;}
.y2e2{bottom:516.889009pt;}
.y365{bottom:516.889171pt;}
.y65{bottom:516.892830pt;}
.y12a{bottom:517.494401pt;}
.y228{bottom:517.793602pt;}
.y217{bottom:517.797118pt;}
.y23{bottom:518.399587pt;}
.y25{bottom:518.400000pt;}
.y297{bottom:520.064716pt;}
.y539{bottom:521.504500pt;}
.y4e3{bottom:521.651423pt;}
.y266{bottom:522.483376pt;}
.y1d0{bottom:525.131788pt;}
.y1c{bottom:526.338934pt;}
.y48c{bottom:526.640777pt;}
.y453{bottom:529.280094pt;}
.y42f{bottom:529.286258pt;}
.y2ff{bottom:530.192700pt;}
.ya5{bottom:530.644446pt;}
.y3a2{bottom:530.796215pt;}
.y2e1{bottom:530.797365pt;}
.y364{bottom:530.797527pt;}
.y3c1{bottom:530.798343pt;}
.y64{bottom:530.801186pt;}
.y22{bottom:531.099683pt;}
.y129{bottom:531.402757pt;}
.y227{bottom:531.777408pt;}
.y216{bottom:531.780924pt;}
.y538{bottom:532.086794pt;}
.y4e2{bottom:532.233716pt;}
.y296{bottom:534.048522pt;}
.y265{bottom:536.391732pt;}
.y48b{bottom:537.298731pt;}
.y1b{bottom:537.752645pt;}
.y1cf{bottom:539.115595pt;}
.y18c{bottom:540.550694pt;}
.y537{bottom:542.744748pt;}
.y4e1{bottom:542.892521pt;}
.y362{bottom:543.042667pt;}
.y452{bottom:543.188450pt;}
.y42e{bottom:543.195676pt;}
.y21{bottom:543.874318pt;}
.y2fe{bottom:544.101056pt;}
.ya4{bottom:544.629315pt;}
.y3a1{bottom:544.780021pt;}
.y2e0{bottom:544.781171pt;}
.y363{bottom:544.781333pt;}
.y3c0{bottom:544.782149pt;}
.y361{bottom:544.783819pt;}
.y63{bottom:544.784992pt;}
.y128{bottom:545.386563pt;}
.y226{bottom:545.685764pt;}
.y215{bottom:545.690343pt;}
.y48a{bottom:547.881025pt;}
.y295{bottom:547.956878pt;}
.y1a{bottom:549.166356pt;}
.y264{bottom:550.375538pt;}
.y18b{bottom:551.965256pt;}
.y1ce{bottom:553.025013pt;}
.y536{bottom:553.403553pt;}
.y4e0{bottom:553.550475pt;}
.y20{bottom:556.648953pt;}
.y451{bottom:557.173318pt;}
.y42d{bottom:557.179482pt;}
.y2fd{bottom:558.084862pt;}
.ya3{bottom:558.537671pt;}
.y489{bottom:558.538980pt;}
.y3a0{bottom:558.688377pt;}
.y2df{bottom:558.689527pt;}
.y3bf{bottom:558.690505pt;}
.y360{bottom:558.692175pt;}
.y62{bottom:558.693348pt;}
.y127{bottom:559.295982pt;}
.y225{bottom:559.670633pt;}
.y214{bottom:559.674149pt;}
.y19{bottom:560.656578pt;}
.y294{bottom:561.941747pt;}
.y18a{bottom:563.378967pt;}
.y535{bottom:563.985847pt;}
.y4df{bottom:564.132769pt;}
.y263{bottom:564.284956pt;}
.y1cd{bottom:567.008819pt;}
.y488{bottom:569.197784pt;}
.y1f{bottom:569.423587pt;}
.y450{bottom:571.081674pt;}
.y42c{bottom:571.087838pt;}
.y2fc{bottom:571.993218pt;}
.y18{bottom:572.070289pt;}
.ya2{bottom:572.521477pt;}
.y39f{bottom:572.673246pt;}
.y2de{bottom:572.673333pt;}
.y3be{bottom:572.674311pt;}
.y2dc{bottom:572.675981pt;}
.y61{bottom:572.678217pt;}
.y126{bottom:573.279788pt;}
.y224{bottom:573.578988pt;}
.y213{bottom:573.582505pt;}
.y534{bottom:574.643801pt;}
.y4de{bottom:574.790724pt;}
.y189{bottom:574.793528pt;}
.y293{bottom:575.850103pt;}
.y2dd{bottom:577.360000pt;}
.y262{bottom:578.268762pt;}
.y487{bottom:579.780078pt;}
.y1cc{bottom:580.917175pt;}
.y1e{bottom:582.122667pt;}
.y17{bottom:583.484000pt;}
.y3bc{bottom:584.844000pt;}
.y44f{bottom:585.065480pt;}
.y42b{bottom:585.071644pt;}
.y533{bottom:585.226945pt;}
.y4dd{bottom:585.373868pt;}
.y2fb{bottom:585.977024pt;}
.y188{bottom:586.207239pt;}
.ya1{bottom:586.429832pt;}
.y39e{bottom:586.581602pt;}
.y3bd{bottom:586.582667pt;}
.y3bb{bottom:586.583838pt;}
.y2db{bottom:586.585399pt;}
.y60{bottom:586.586573pt;}
.y212{bottom:587.566311pt;}
.y292{bottom:589.833909pt;}
.y486{bottom:590.438032pt;}
.y261{bottom:592.177118pt;}
.y1cb{bottom:594.900981pt;}
.y532{bottom:595.884899pt;}
.y4dc{bottom:596.031822pt;}
.y187{bottom:597.696611pt;}
.y44e{bottom:598.973836pt;}
.y42a{bottom:598.980000pt;}
.y2fa{bottom:599.885380pt;}
.y39d{bottom:600.565408pt;}
.y3fc{bottom:600.566473pt;}
.y3ba{bottom:600.567644pt;}
.y2da{bottom:600.569205pt;}
.y5f{bottom:600.570379pt;}
.y485{bottom:601.020326pt;}
.y125{bottom:601.171950pt;}
.y223{bottom:601.471150pt;}
.y211{bottom:601.474667pt;}
.y291{bottom:603.742265pt;}
.y260{bottom:606.160924pt;}
.y531{bottom:606.467193pt;}
.y4db{bottom:606.614116pt;}
.y16{bottom:608.201333pt;}
.y1ca{bottom:608.809337pt;}
.y186{bottom:609.111172pt;}
.y484{bottom:611.679131pt;}
.y2f9{bottom:613.869186pt;}
.ya0{bottom:614.323057pt;}
.y39c{bottom:614.473764pt;}
.y3fb{bottom:614.474829pt;}
.y3b9{bottom:614.476000pt;}
.y3b7{bottom:614.476194pt;}
.y2d9{bottom:614.477561pt;}
.y5e{bottom:614.478735pt;}
.y530{bottom:617.125147pt;}
.y4da{bottom:617.272920pt;}
.y290{bottom:617.726071pt;}
.y3b8{bottom:619.237333pt;}
.y25f{bottom:620.070343pt;}
.y185{bottom:620.524883pt;}
.y483{bottom:622.261424pt;}
.y1c9{bottom:622.794206pt;}
.y2f8{bottom:627.777542pt;}
.y52f{bottom:627.783952pt;}
.y4d9{bottom:627.930875pt;}
.y39b{bottom:628.458633pt;}
.y3fa{bottom:628.458635pt;}
.y3b6{bottom:628.460000pt;}
.y3b4{bottom:628.460141pt;}
.y2d8{bottom:628.461367pt;}
.y5d{bottom:628.463604pt;}
.y470{bottom:628.913333pt;}
.y246{bottom:631.408000pt;}
.y184{bottom:631.938594pt;}
.y482{bottom:632.919379pt;}
.y3b5{bottom:633.146667pt;}
.y25e{bottom:634.054149pt;}
.y123{bottom:635.338667pt;}
.y52e{bottom:638.366246pt;}
.y4d8{bottom:638.513168pt;}
.y2f7{bottom:641.762411pt;}
.y9f{bottom:642.215219pt;}
.y39a{bottom:642.442439pt;}
.y3f9{bottom:642.443504pt;}
.y3b3{bottom:642.445009pt;}
.y2d7{bottom:642.446236pt;}
.y5c{bottom:642.447410pt;}
.y124{bottom:642.670667pt;}
.y122{bottom:642.671360pt;}
.y183{bottom:643.353156pt;}
.y481{bottom:643.577333pt;}
.y28f{bottom:645.619295pt;}
.y25d{bottom:647.962505pt;}
.y52d{bottom:649.024200pt;}
.y4d7{bottom:649.170273pt;}
.y15{bottom:652.119622pt;}
.y210{bottom:652.649333pt;}
.y182{bottom:654.766867pt;}
.y2f6{bottom:655.670767pt;}
.y399{bottom:656.350795pt;}
.y3f8{bottom:656.351859pt;}
.y3b2{bottom:656.353365pt;}
.y2d6{bottom:656.354592pt;}
.y5b{bottom:656.355766pt;}
.y20f{bottom:656.957333pt;}
.y52c{bottom:659.606494pt;}
.y4d6{bottom:659.753417pt;}
.y25c{bottom:661.946311pt;}
.y14{bottom:663.533333pt;}
.y181{bottom:666.181428pt;}
.y13{bottom:667.313333pt;}
.y480{bottom:667.996362pt;}
.y2f5{bottom:669.654573pt;}
.y52b{bottom:670.265299pt;}
.y398{bottom:670.334601pt;}
.y9e{bottom:670.334795pt;}
.y3f7{bottom:670.335666pt;}
.y121{bottom:670.337171pt;}
.y2d5{bottom:670.338398pt;}
.y5a{bottom:670.339572pt;}
.y4d5{bottom:670.411371pt;}
.y20e{bottom:671.547928pt;}
.y12{bottom:675.023622pt;}
.y25b{bottom:675.854667pt;}
.y180{bottom:677.595139pt;}
.y52a{bottom:680.923253pt;}
.y4d4{bottom:681.069326pt;}
.y20d{bottom:682.961639pt;}
.y2f4{bottom:683.562929pt;}
.y9d{bottom:684.243150pt;}
.y397{bottom:684.244019pt;}
.y3f6{bottom:684.244021pt;}
.y28e{bottom:684.244525pt;}
.y120{bottom:684.245527pt;}
.y2d4{bottom:684.246754pt;}
.y59{bottom:684.248990pt;}
.y11{bottom:686.437333pt;}
.y17f{bottom:689.084511pt;}
.y10{bottom:690.217333pt;}
.y529{bottom:691.505547pt;}
.y4d3{bottom:691.651619pt;}
.y20c{bottom:694.375350pt;}
.y11e{bottom:696.416000pt;}
.y47f{bottom:697.098917pt;}
.y2f3{bottom:697.546735pt;}
.y396{bottom:698.227825pt;}
.y3f5{bottom:698.227827pt;}
.y9c{bottom:698.228019pt;}
.y28d{bottom:698.228331pt;}
.y11f{bottom:698.229333pt;}
.y11d{bottom:698.231623pt;}
.y58{bottom:698.232796pt;}
.y17e{bottom:700.499072pt;}
.y528{bottom:702.164351pt;}
.y4d2{bottom:702.310424pt;}
.y20b{bottom:705.789911pt;}
.ye{bottom:708.360169pt;}
.y2f2{bottom:711.456153pt;}
.y17d{bottom:711.912783pt;}
.y2b3{bottom:711.914011pt;}
.y395{bottom:712.136181pt;}
.y9b{bottom:712.136375pt;}
.y3f4{bottom:712.137246pt;}
.y28c{bottom:712.137750pt;}
.y11c{bottom:712.139979pt;}
.y57{bottom:712.141152pt;}
.y527{bottom:712.746645pt;}
.y4d1{bottom:712.892718pt;}
.yf{bottom:714.557333pt;}
.y20a{bottom:717.203622pt;}
.y17c{bottom:723.327344pt;}
.y2b2{bottom:723.327722pt;}
.y526{bottom:723.404600pt;}
.y4d0{bottom:723.550672pt;}
.yf1{bottom:724.308000pt;}
.y47e{bottom:724.991079pt;}
.y2f1{bottom:725.439959pt;}
.yd{bottom:725.593333pt;}
.yb{bottom:725.594800pt;}
.y394{bottom:726.119987pt;}
.y9a{bottom:726.120181pt;}
.y3f3{bottom:726.121052pt;}
.y28b{bottom:726.121556pt;}
.y11b{bottom:726.123785pt;}
.y56{bottom:726.124958pt;}
.y209{bottom:728.617333pt;}
.yc{bottom:731.868000pt;}
.y525{bottom:733.986893pt;}
.y4cf{bottom:734.133816pt;}
.y17b{bottom:734.741056pt;}
.y2b1{bottom:734.741433pt;}
.y2f0{bottom:739.348315pt;}
.y393{bottom:740.028343pt;}
.y99{bottom:740.028537pt;}
.y3f2{bottom:740.029408pt;}
.y28a{bottom:740.029912pt;}
.y11a{bottom:740.032141pt;}
.y55{bottom:740.033314pt;}
.y208{bottom:740.106667pt;}
.y206{bottom:740.108305pt;}
.y9{bottom:742.904000pt;}
.y207{bottom:743.886667pt;}
.y524{bottom:744.645698pt;}
.y4ce{bottom:744.791770pt;}
.y17a{bottom:746.154767pt;}
.y2b0{bottom:746.155995pt;}
.ya{bottom:749.102667pt;}
.y205{bottom:751.522017pt;}
.y47d{bottom:752.884303pt;}
.y2ef{bottom:753.332121pt;}
.y98{bottom:754.012343pt;}
.y392{bottom:754.013212pt;}
.y3f1{bottom:754.013214pt;}
.y289{bottom:754.013718pt;}
.y119{bottom:754.017009pt;}
.y54{bottom:754.018183pt;}
.y523{bottom:755.303652pt;}
.y4cd{bottom:755.449725pt;}
.y179{bottom:757.569328pt;}
.y2af{bottom:757.569706pt;}
.y204{bottom:762.936578pt;}
.y522{bottom:765.885946pt;}
.y4cc{bottom:766.032019pt;}
.y47c{bottom:766.792659pt;}
.y2ee{bottom:767.241540pt;}
.y391{bottom:767.921568pt;}
.y97{bottom:767.921762pt;}
.y288{bottom:767.922074pt;}
.y3f0{bottom:767.922633pt;}
.y118{bottom:767.925365pt;}
.y53{bottom:767.926539pt;}
.y178{bottom:768.983039pt;}
.y2ae{bottom:768.984267pt;}
.y203{bottom:774.350289pt;}
.y8{bottom:776.164829pt;}
.y521{bottom:776.543900pt;}
.y4cb{bottom:776.690823pt;}
.y177{bottom:780.473261pt;}
.y2ad{bottom:780.473639pt;}
.y47b{bottom:780.776465pt;}
.y2ed{bottom:781.225346pt;}
.y390{bottom:781.905374pt;}
.y96{bottom:781.905568pt;}
.y3ef{bottom:781.906439pt;}
.y287{bottom:781.906943pt;}
.y117{bottom:781.909171pt;}
.y52{bottom:781.910345pt;}
.y202{bottom:785.764000pt;}
.y520{bottom:787.127044pt;}
.y4ca{bottom:787.273117pt;}
.y176{bottom:791.886972pt;}
.y2ac{bottom:791.887350pt;}
.y47a{bottom:794.684821pt;}
.y2ec{bottom:795.133702pt;}
.y38f{bottom:795.813730pt;}
.y95{bottom:795.813924pt;}
.y3ee{bottom:795.814795pt;}
.y286{bottom:795.815298pt;}
.y116{bottom:795.817527pt;}
.y51{bottom:795.818701pt;}
.y200{bottom:797.178289pt;}
.y51f{bottom:797.784999pt;}
.y4c9{bottom:797.931071pt;}
.y7{bottom:799.143748pt;}
.y201{bottom:800.957333pt;}
.y175{bottom:803.300683pt;}
.y2ab{bottom:803.301911pt;}
.y35f{bottom:807.986667pt;}
.y51e{bottom:808.442953pt;}
.y4c8{bottom:808.589026pt;}
.y1ff{bottom:808.592000pt;}
.y1fd{bottom:808.593706pt;}
.y479{bottom:808.669690pt;}
.y2eb{bottom:809.117508pt;}
.y115{bottom:809.796556pt;}
.y94{bottom:809.797730pt;}
.y38e{bottom:809.798599pt;}
.y3ed{bottom:809.798601pt;}
.y285{bottom:809.799105pt;}
.y2d3{bottom:809.801333pt;}
.y50{bottom:809.803570pt;}
.y1fe{bottom:812.372000pt;}
.y2d2{bottom:814.488000pt;}
.y174{bottom:814.715244pt;}
.y2aa{bottom:814.715622pt;}
.y51d{bottom:819.025247pt;}
.y4c7{bottom:819.172170pt;}
.y1fc{bottom:820.083928pt;}
.y35d{bottom:821.972000pt;}
.y6{bottom:822.122667pt;}
.y478{bottom:822.578046pt;}
.y2ea{bottom:823.026926pt;}
.y114{bottom:823.704912pt;}
.y38d{bottom:823.706954pt;}
.y93{bottom:823.707148pt;}
.y284{bottom:823.707460pt;}
.y3ec{bottom:823.708019pt;}
.y35e{bottom:823.710667pt;}
.y35c{bottom:823.710861pt;}
.y4f{bottom:823.711925pt;}
.y173{bottom:826.128956pt;}
.y2a9{bottom:826.129333pt;}
.y51c{bottom:829.684052pt;}
.y4c6{bottom:829.830124pt;}
.y1fb{bottom:831.497639pt;}
.y35a{bottom:835.880000pt;}
.y477{bottom:836.561852pt;}
.y172{bottom:837.542667pt;}
.y170{bottom:837.545158pt;}
.y113{bottom:837.689781pt;}
.y38c{bottom:837.690760pt;}
.y92{bottom:837.690954pt;}
.y3eb{bottom:837.691825pt;}
.y283{bottom:837.692329pt;}
.y359{bottom:837.694311pt;}
.y35b{bottom:837.694667pt;}
.y4e{bottom:837.695732pt;}
.y51b{bottom:840.266345pt;}
.y4c5{bottom:840.412418pt;}
.y171{bottom:841.322667pt;}
.y1fa{bottom:842.911350pt;}
.y16f{bottom:848.958869pt;}
.y357{bottom:849.864000pt;}
.y476{bottom:850.470208pt;}
.y51a{bottom:850.924300pt;}
.y4c4{bottom:851.070372pt;}
.y5{bottom:851.376000pt;}
.y112{bottom:851.598137pt;}
.y38b{bottom:851.599116pt;}
.y91{bottom:851.599310pt;}
.y3ea{bottom:851.600181pt;}
.y282{bottom:851.600685pt;}
.y358{bottom:851.602667pt;}
.y4d{bottom:851.604087pt;}
.y1f9{bottom:854.325911pt;}
.y331{bottom:859.087141pt;}
.y16e{bottom:860.373430pt;}
.y519{bottom:861.507444pt;}
.y4c3{bottom:861.653516pt;}
.y475{bottom:864.455077pt;}
.y111{bottom:865.581943pt;}
.y90{bottom:865.583116pt;}
.y38a{bottom:865.583985pt;}
.y3e9{bottom:865.583987pt;}
.y281{bottom:865.584491pt;}
.y4c{bottom:865.588956pt;}
.y1f8{bottom:865.739622pt;}
.y330{bottom:870.500853pt;}
.y16d{bottom:871.862802pt;}
.y518{bottom:872.165398pt;}
.y4c2{bottom:872.311471pt;}
.y1f6{bottom:877.153333pt;}
.y474{bottom:878.363432pt;}
.y110{bottom:879.490299pt;}
.y8f{bottom:879.491472pt;}
.y389{bottom:879.492341pt;}
.y3e8{bottom:879.492343pt;}
.y280{bottom:879.492847pt;}
.y4b{bottom:879.497312pt;}
.y1f7{bottom:880.932000pt;}
.y32f{bottom:881.915414pt;}
.y517{bottom:882.823353pt;}
.y4c1{bottom:882.969425pt;}
.y16c{bottom:883.276513pt;}
.y1f4{bottom:888.567660pt;}
.y3f{bottom:892.194667pt;}
.y1f5{bottom:892.346667pt;}
.y473{bottom:892.347239pt;}
.y32e{bottom:893.329125pt;}
.y516{bottom:893.405646pt;}
.y10f{bottom:893.475167pt;}
.y388{bottom:893.476147pt;}
.y8e{bottom:893.476341pt;}
.y3e7{bottom:893.477212pt;}
.y27f{bottom:893.477716pt;}
.y4a{bottom:893.481118pt;}
.y4c0{bottom:893.552569pt;}
.y16b{bottom:894.691074pt;}
.y1f3{bottom:899.982221pt;}
.y515{bottom:904.064451pt;}
.y4bf{bottom:904.210523pt;}
.y32d{bottom:904.743686pt;}
.y16a{bottom:906.104786pt;}
.y472{bottom:906.255594pt;}
.y10e{bottom:907.383523pt;}
.y387{bottom:907.384503pt;}
.y8d{bottom:907.384697pt;}
.y3e6{bottom:907.385568pt;}
.y27e{bottom:907.386072pt;}
.y49{bottom:907.389474pt;}
.y1f2{bottom:911.471593pt;}
.y514{bottom:914.646745pt;}
.y4be{bottom:914.792817pt;}
.y32c{bottom:916.233058pt;}
.y169{bottom:917.518497pt;}
.y10d{bottom:921.367329pt;}
.y8c{bottom:921.368503pt;}
.y386{bottom:921.369372pt;}
.y3e5{bottom:921.369374pt;}
.y27d{bottom:921.369878pt;}
.y48{bottom:921.374343pt;}
.y513{bottom:925.304699pt;}
.y4bd{bottom:925.450772pt;}
.y2a8{bottom:928.933058pt;}
.y1f1{bottom:929.008719pt;}
.y3e{bottom:929.310667pt;}
.y32b{bottom:933.769333pt;}
.y471{bottom:934.148819pt;}
.y168{bottom:935.055622pt;}
.y10c{bottom:935.275685pt;}
.y8b{bottom:935.276859pt;}
.y385{bottom:935.277728pt;}
.y3e4{bottom:935.277730pt;}
.y27c{bottom:935.278234pt;}
.y47{bottom:935.282699pt;}
.y512{bottom:935.962653pt;}
.y4bc{bottom:936.109576pt;}
.y167{bottom:946.469333pt;}
.y511{bottom:946.545797pt;}
.y4bb{bottom:946.691870pt;}
.y10b{bottom:949.260554pt;}
.y384{bottom:949.261534pt;}
.y8a{bottom:949.261728pt;}
.y3e3{bottom:949.262599pt;}
.y27b{bottom:949.263102pt;}
.y46{bottom:949.266505pt;}
.y32a{bottom:951.232064pt;}
.y510{bottom:957.203752pt;}
.y4ba{bottom:957.349824pt;}
.y10a{bottom:963.168910pt;}
.y383{bottom:963.169890pt;}
.y89{bottom:963.170083pt;}
.y3e2{bottom:963.170954pt;}
.y27a{bottom:963.171458pt;}
.y45{bottom:963.174861pt;}
.y166{bottom:964.006699pt;}
.y3d{bottom:966.500000pt;}
.y50f{bottom:967.786046pt;}
.y4b9{bottom:967.932118pt;}
.y165{bottom:976.781333pt;}
.y109{bottom:977.152716pt;}
.y382{bottom:977.153696pt;}
.y88{bottom:977.153890pt;}
.y3e1{bottom:977.154760pt;}
.y279{bottom:977.155264pt;}
.y44{bottom:977.158667pt;}
.y50e{bottom:978.444000pt;}
.y4b8{bottom:978.590923pt;}
.y2{bottom:1002.226667pt;}
.y54c{bottom:1003.085578pt;}
.y356{bottom:1003.226355pt;}
.y42{bottom:1003.226667pt;}
.y3b1{bottom:1003.228001pt;}
.y25a{bottom:1003.228066pt;}
.y2d1{bottom:1003.229547pt;}
.y429{bottom:1003.230110pt;}
.y151{bottom:1003.231202pt;}
.y50d{bottom:1003.232501pt;}
.yc5{bottom:1003.237333pt;}
.h1f{height:16.045814pt;}
.h8{height:20.907656pt;}
.h19{height:23.522344pt;}
.hc{height:25.219219pt;}
.h20{height:25.503600pt;}
.h11{height:28.021406pt;}
.h9{height:29.887031pt;}
.h10{height:29.887500pt;}
.h1e{height:30.242025pt;}
.hf{height:30.647691pt;}
.h27{height:32.199145pt;}
.h25{height:32.501788pt;}
.ha{height:32.689219pt;}
.h7{height:32.997656pt;}
.h3{height:33.623437pt;}
.hb{height:33.989268pt;}
.h22{height:34.332605pt;}
.h24{height:36.982270pt;}
.h23{height:36.992403pt;}
.hd{height:37.359844pt;}
.h1a{height:37.709546pt;}
.h12{height:37.723463pt;}
.h1d{height:37.724487pt;}
.h13{height:37.729181pt;}
.h15{height:37.733091pt;}
.h1b{height:37.733304pt;}
.h16{height:37.733867pt;}
.h1c{height:37.734515pt;}
.h14{height:37.735290pt;}
.h17{height:37.752975pt;}
.h4{height:44.831250pt;}
.h6{height:49.501875pt;}
.h5{height:63.044531pt;}
.he{height:65.378906pt;}
.h18{height:66.082403pt;}
.h21{height:298.733333pt;}
.h1{height:1058.000000pt;}
.h26{height:1058.116000pt;}
.h2{height:1058.266667pt;}
.h0{height:1058.268000pt;}
.w2{width:324.964000pt;}
.w3{width:793.549333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6f{left:10.268267pt;}
.x6c{left:21.204611pt;}
.x6b{left:27.747839pt;}
.x6a{left:34.291067pt;}
.x2{left:50.023981pt;}
.xa2{left:54.651867pt;}
.x11{left:55.785733pt;}
.x18{left:56.844000pt;}
.x3e{left:58.129067pt;}
.x91{left:59.187333pt;}
.x6d{left:61.642061pt;}
.x59{left:62.815733pt;}
.x15{left:66.065235pt;}
.x80{left:69.165333pt;}
.xa4{left:71.961160pt;}
.x81{left:75.892800pt;}
.x5a{left:78.992000pt;}
.x9b{left:81.107470pt;}
.xa3{left:88.742529pt;}
.x44{left:91.010933pt;}
.x3f{left:100.686074pt;}
.xad{left:108.622509pt;}
.x5b{left:116.937956pt;}
.x70{left:118.223600pt;}
.x28{left:124.119600pt;}
.x9{left:127.596800pt;}
.x7d{left:129.033067pt;}
.x29{left:130.771600pt;}
.xa{left:133.417333pt;}
.x82{left:135.986667pt;}
.x83{left:140.446667pt;}
.x69{left:148.753867pt;}
.x5c{left:150.121540pt;}
.x40{left:155.109906pt;}
.x8c{left:156.094667pt;}
.xae{left:161.308696pt;}
.x8f{left:164.788000pt;}
.x90{left:169.246667pt;}
.x89{left:174.689333pt;}
.x7e{left:176.730667pt;}
.x2a{left:180.358667pt;}
.x8a{left:181.493333pt;}
.x5d{left:183.305124pt;}
.x2b{left:184.818667pt;}
.x67{left:191.017333pt;}
.x2c{left:192.680000pt;}
.x6e{left:194.208267pt;}
.x68{left:195.477333pt;}
.x2d{left:199.332000pt;}
.x3{left:201.222667pt;}
.xa0{left:202.960000pt;}
.x7f{left:204.850667pt;}
.xaf{left:207.947129pt;}
.x4{left:215.660000pt;}
.xb0{left:216.866588pt;}
.x88{left:218.305333pt;}
.x22{left:220.421333pt;}
.x84{left:223.218667pt;}
.x8b{left:224.277333pt;}
.x56{left:226.165447pt;}
.x23{left:227.376000pt;}
.x86{left:231.306667pt;}
.x85{left:235.616000pt;}
.x87{left:240.226667pt;}
.x21{left:242.494667pt;}
.x1a{left:245.745333pt;}
.x2e{left:247.408000pt;}
.x5e{left:249.673143pt;}
.x1e{left:254.362667pt;}
.x2f{left:255.269333pt;}
.x1b{left:257.688000pt;}
.x1f{left:261.618667pt;}
.x42{left:266.907487pt;}
.x12{left:269.329333pt;}
.xa1{left:270.687457pt;}
.x37{left:271.748000pt;}
.x1{left:275.663981pt;}
.x24{left:278.853333pt;}
.x20{left:281.650667pt;}
.x25{left:283.313333pt;}
.x57{left:284.521085pt;}
.xb{left:286.564000pt;}
.x9c{left:290.418667pt;}
.xc{left:292.308000pt;}
.x19{left:304.554667pt;}
.x30{left:305.461333pt;}
.x31{left:309.921333pt;}
.x8d{left:312.793333pt;}
.x5f{left:316.116822pt;}
.x32{left:317.858667pt;}
.x43{left:319.370667pt;}
.x8e{left:320.806667pt;}
.x33{left:324.434667pt;}
.x13{left:326.550667pt;}
.x9d{left:333.052000pt;}
.x14{left:334.034667pt;}
.x26{left:336.832000pt;}
.x92{left:340.913333pt;}
.x27{left:343.785333pt;}
.x93{left:345.373333pt;}
.x58{left:349.755043pt;}
.x60{left:354.062778pt;}
.x9e{left:359.054667pt;}
.x34{left:368.050667pt;}
.x65{left:369.637333pt;}
.x35{left:372.510667pt;}
.x66{left:374.097333pt;}
.x36{left:380.372000pt;}
.x7c{left:392.557314pt;}
.x1d{left:394.943981pt;}
.x41{left:405.236463pt;}
.x16{left:408.790162pt;}
.x47{left:416.806667pt;}
.x75{left:422.097333pt;}
.x74{left:423.080000pt;}
.x17{left:424.738863pt;}
.x76{left:425.725333pt;}
.x73{left:428.296000pt;}
.xd{left:429.958667pt;}
.xa5{left:430.861421pt;}
.x77{left:432.000000pt;}
.xe{left:435.780000pt;}
.x4b{left:437.593801pt;}
.x9f{left:439.784086pt;}
.x38{left:448.856000pt;}
.x5{left:454.601333pt;}
.x39{left:457.625333pt;}
.x6{left:460.422667pt;}
.x72{left:475.388436pt;}
.xb1{left:477.726760pt;}
.x4c{left:478.714105pt;}
.x3a{left:486.122667pt;}
.x3b{left:492.850667pt;}
.x71{left:508.724000pt;}
.x4d{left:514.997227pt;}
.x94{left:521.271113pt;}
.x61{left:529.132172pt;}
.x3c{left:531.628000pt;}
.x52{left:536.464457pt;}
.x1c{left:538.743981pt;}
.x99{left:542.740000pt;}
.x97{left:544.402667pt;}
.x78{left:546.821333pt;}
.x9a{left:548.032000pt;}
.x4e{left:551.280349pt;}
.xa9{left:552.712521pt;}
.x79{left:567.986667pt;}
.xb2{left:570.627023pt;}
.x62{left:572.445786pt;}
.x98{left:576.754232pt;}
.x96{left:581.592227pt;}
.xab{left:582.947889pt;}
.x95{left:586.353749pt;}
.xf{left:590.437333pt;}
.x4f{left:592.325842pt;}
.x10{left:596.788000pt;}
.xac{left:603.810684pt;}
.x55{left:608.654667pt;}
.x7{left:617.725333pt;}
.x63{left:620.596583pt;}
.x8{left:623.546667pt;}
.xb3{left:626.034445pt;}
.x50{left:628.608964pt;}
.x45{left:637.599838pt;}
.x7a{left:639.420000pt;}
.xb4{left:642.587981pt;}
.x7b{left:660.585333pt;}
.x64{left:663.985008pt;}
.x48{left:664.967746pt;}
.xb5{left:667.835695pt;}
.x54{left:680.844000pt;}
.x51{left:683.942667pt;}
.xaa{left:688.320263pt;}
.x53{left:695.206667pt;}
.xa7{left:701.397659pt;}
.xa8{left:702.530869pt;}
.x49{left:707.146450pt;}
.x46{left:710.694856pt;}
.xa6{left:726.493201pt;}
.x3d{left:729.600000pt;}
.x4a{left:732.018667pt;}
}




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