
    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_9195c298d7f5008a8f260a1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1497a02752757339c1efc14f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_addc4989965627d97e0a290f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e574fc758c5bc8eeeae9bd45.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.133000;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_6e2dea5a45460982d96ef513.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239000;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_7449d57cce6cd740278958e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_931a346d5c27a241eff98468.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.222000;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_f0e01e589ba02c696b173b37.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.483000;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_edd9a77dd1d0854e84993308.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202000;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_6acefff5d42ae0c6b495deae.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.444000;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_9b70466aa70deaab3c5bd989.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;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_d9913ffb7cae369fe2a359cc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.113000;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_4ffd8ab1ce342f3ee5364b9a.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;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_c527a8237061699a02959a56.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.444000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c5af20af73000cd9e8601e4a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9b70466aa70deaab3c5bd989.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5e177b2a65c40e388279c444.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.949000;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:ff14;src:url('chunks/assets/font_96fe5387c08a86dac971a36a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666000;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:ff15;src:url('chunks/assets/font_cbb0dc43bccc07183ac88b26.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.940000;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:ff16;src:url('chunks/assets/font_cf8467f6e0f823080d483f46.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.450000;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:ff17;src:url('chunks/assets/font_180dbda138c2c3952bfe70c3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.718000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v6{vertical-align:-10.853943px;}
.v5{vertical-align:-8.800781px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.488000px;}
.v8{vertical-align:18.000000px;}
.v4{vertical-align:23.541058px;}
.v1{vertical-align:26.399780px;}
.v7{vertical-align:54.000000px;}
.ls3b{letter-spacing:-4.080000px;}
.ls2{letter-spacing:-1.050000px;}
.lsf{letter-spacing:-0.607858px;}
.lsd{letter-spacing:-0.434184px;}
.ls31{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.390766px;}
.ls2b{letter-spacing:-0.388109px;}
.ls14{letter-spacing:-0.352800px;}
.ls2c{letter-spacing:-0.323424px;}
.ls11{letter-spacing:-0.303929px;}
.ls1f{letter-spacing:-0.291816px;}
.ls26{letter-spacing:-0.218862px;}
.ls10{letter-spacing:-0.173674px;}
.ls3a{letter-spacing:-0.133472px;}
.lsa{letter-spacing:-0.130255px;}
.ls1e{letter-spacing:-0.109431px;}
.ls2a{letter-spacing:-0.097270px;}
.lsb{letter-spacing:-0.086837px;}
.ls20{letter-spacing:-0.072954px;}
.ls38{letter-spacing:-0.048754px;}
.ls24{letter-spacing:-0.048635px;}
.ls22{letter-spacing:-0.044501px;}
.lsc{letter-spacing:-0.043418px;}
.ls1d{letter-spacing:-0.036477px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000583px;}
.ls1a{letter-spacing:0.032342px;}
.ls16{letter-spacing:0.036477px;}
.ls25{letter-spacing:0.040610px;}
.ls4{letter-spacing:0.043418px;}
.ls36{letter-spacing:0.044491px;}
.ls1c{letter-spacing:0.048635px;}
.ls34{letter-spacing:0.048754px;}
.ls17{letter-spacing:0.050786px;}
.ls19{letter-spacing:0.064685px;}
.ls27{letter-spacing:0.072954px;}
.ls5{letter-spacing:0.086837px;}
.ls1b{letter-spacing:0.097027px;}
.ls15{letter-spacing:0.097270px;}
.ls18{letter-spacing:0.109431px;}
.ls6{letter-spacing:0.130255px;}
.ls37{letter-spacing:0.146263px;}
.ls13{letter-spacing:0.173674px;}
.ls2e{letter-spacing:0.194054px;}
.ls39{letter-spacing:0.195017px;}
.ls7{letter-spacing:0.217092px;}
.ls35{letter-spacing:0.243771px;}
.ls2d{letter-spacing:0.323424px;}
.ls21{letter-spacing:0.328293px;}
.ls8{letter-spacing:0.347347px;}
.ls29{letter-spacing:0.355766px;}
.ls28{letter-spacing:0.364770px;}
.lse{letter-spacing:0.390766px;}
.ls3c{letter-spacing:0.630000px;}
.ls2f{letter-spacing:0.823200px;}
.ls3d{letter-spacing:0.990000px;}
.ls1{letter-spacing:5.460000px;}
.ls23{letter-spacing:12.547778px;}
.ls9{letter-spacing:259.631992px;}
.ls33{letter-spacing:1166.352000px;}
.ls32{letter-spacing:1208.975955px;}
.ls30{letter-spacing:1911.936000px;}
.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;}
}
.wsb7{word-spacing:-24.706477px;}
.ws5{word-spacing:-21.216000px;}
.wsd1{word-spacing:-14.641200px;}
.ws70{word-spacing:-13.818000px;}
.ws92{word-spacing:-13.465200px;}
.ws104{word-spacing:-13.320600px;}
.ws4{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.483600px;}
.ws3{word-spacing:-12.420000px;}
.wsb0{word-spacing:-12.255969px;}
.ws105{word-spacing:-12.237304px;}
.ws103{word-spacing:-12.188550px;}
.wsc0{word-spacing:-12.158700px;}
.ws9d{word-spacing:-11.426400px;}
.wsda{word-spacing:-11.348400px;}
.ws72{word-spacing:-11.245366px;}
.ws75{word-spacing:-11.201947px;}
.ws106{word-spacing:-11.167141px;}
.ws79{word-spacing:-11.071692px;}
.ws7e{word-spacing:-11.028274px;}
.ws7b{word-spacing:-10.941437px;}
.ws7f{word-spacing:-10.898018px;}
.ws71{word-spacing:-10.854600px;}
.ws12b{word-spacing:-10.845000px;}
.ws7c{word-spacing:-10.811182px;}
.ws7d{word-spacing:-10.767763px;}
.ws74{word-spacing:-10.724345px;}
.ws78{word-spacing:-10.680926px;}
.ws76{word-spacing:-10.550671px;}
.ws83{word-spacing:-10.512000px;}
.ws12a{word-spacing:-10.485000px;}
.ws7a{word-spacing:-10.463834px;}
.ws77{word-spacing:-10.420416px;}
.ws73{word-spacing:-10.246742px;}
.ws6{word-spacing:-10.176000px;}
.ws1{word-spacing:-10.117800px;}
.wse5{word-spacing:-9.936000px;}
.ws8{word-spacing:-9.855000px;}
.ws3e{word-spacing:-9.672600px;}
.wsd4{word-spacing:-9.504000px;}
.wsb4{word-spacing:-9.447543px;}
.ws121{word-spacing:-9.315000px;}
.wsb9{word-spacing:-9.228681px;}
.wsb2{word-spacing:-9.155727px;}
.wsb5{word-spacing:-9.119250px;}
.wsb6{word-spacing:-9.082773px;}
.wsb8{word-spacing:-9.046296px;}
.wsb1{word-spacing:-9.009819px;}
.wsb3{word-spacing:-8.827434px;}
.ws81{word-spacing:-8.640000px;}
.wsbc{word-spacing:-8.441366px;}
.wsbf{word-spacing:-8.409024px;}
.wsbb{word-spacing:-8.182627px;}
.wsba{word-spacing:-8.150285px;}
.ws18{word-spacing:-8.148000px;}
.wsbe{word-spacing:-7.762176px;}
.wsbd{word-spacing:-7.697491px;}
.ws7{word-spacing:-6.898500px;}
.wsc3{word-spacing:-6.468000px;}
.ws12{word-spacing:-4.602000px;}
.ws120{word-spacing:-4.512000px;}
.ws11{word-spacing:-2.100000px;}
.ws126{word-spacing:-2.016000px;}
.ws12d{word-spacing:-1.575000px;}
.ws55{word-spacing:-0.940800px;}
.wsdf{word-spacing:-0.823200px;}
.wsc1{word-spacing:-0.764400px;}
.ws12c{word-spacing:-0.630000px;}
.ws1f{word-spacing:-0.529200px;}
.ws4c{word-spacing:-0.470400px;}
.ws52{word-spacing:-0.411600px;}
.wscd{word-spacing:-0.364770px;}
.ws64{word-spacing:-0.352800px;}
.ws90{word-spacing:-0.347347px;}
.wsc9{word-spacing:-0.328293px;}
.wsde{word-spacing:-0.294000px;}
.ws10a{word-spacing:-0.243771px;}
.ws91{word-spacing:-0.217092px;}
.ws10b{word-spacing:-0.195017px;}
.wscf{word-spacing:-0.194054px;}
.ws32{word-spacing:-0.176400px;}
.ws108{word-spacing:-0.146263px;}
.ws8c{word-spacing:-0.130255px;}
.wsc6{word-spacing:-0.109431px;}
.ws89{word-spacing:-0.086837px;}
.wscb{word-spacing:-0.072954px;}
.wsd0{word-spacing:-0.058820px;}
.ws29{word-spacing:-0.058800px;}
.wsc4{word-spacing:-0.048635px;}
.ws129{word-spacing:-0.045000px;}
.ws88{word-spacing:-0.043418px;}
.wsc7{word-spacing:-0.036477px;}
.ws0{word-spacing:0.000000px;}
.wscc{word-spacing:0.036477px;}
.ws8b{word-spacing:0.043418px;}
.ws109{word-spacing:0.048754px;}
.wsc8{word-spacing:0.072954px;}
.ws8a{word-spacing:0.086837px;}
.wsce{word-spacing:0.097270px;}
.wsc5{word-spacing:0.109431px;}
.ws99{word-spacing:0.117600px;}
.ws8d{word-spacing:0.130255px;}
.ws10c{word-spacing:0.133472px;}
.ws8f{word-spacing:0.173674px;}
.ws34{word-spacing:0.176400px;}
.wsca{word-spacing:0.218862px;}
.ws5e{word-spacing:0.235200px;}
.ws50{word-spacing:0.294000px;}
.ws21{word-spacing:0.352800px;}
.wsb{word-spacing:0.411600px;}
.ws8e{word-spacing:0.434184px;}
.wsa8{word-spacing:0.470400px;}
.ws44{word-spacing:0.529200px;}
.ws25{word-spacing:0.646800px;}
.ws31{word-spacing:0.705600px;}
.wsc2{word-spacing:0.764400px;}
.ws84{word-spacing:0.823200px;}
.ws1a{word-spacing:0.882000px;}
.ws23{word-spacing:0.940800px;}
.wsa1{word-spacing:1.058400px;}
.ws6a{word-spacing:1.117200px;}
.wse3{word-spacing:1.176000px;}
.ws19{word-spacing:1.234800px;}
.ws17{word-spacing:1.344000px;}
.ws53{word-spacing:1.352400px;}
.wse4{word-spacing:1.404000px;}
.wsc{word-spacing:1.470000px;}
.ws13{word-spacing:1.638000px;}
.wse0{word-spacing:1.646400px;}
.ws68{word-spacing:1.705200px;}
.ws35{word-spacing:1.881600px;}
.ws27{word-spacing:1.999200px;}
.ws15{word-spacing:2.016000px;}
.ws2d{word-spacing:2.058000px;}
.wsd{word-spacing:2.116800px;}
.wsf{word-spacing:2.175600px;}
.ws4b{word-spacing:2.234400px;}
.ws16{word-spacing:2.268000px;}
.wsa2{word-spacing:2.293200px;}
.ws26{word-spacing:2.352000px;}
.ws2a{word-spacing:2.410800px;}
.wse1{word-spacing:2.469600px;}
.ws65{word-spacing:2.528400px;}
.ws67{word-spacing:2.587200px;}
.ws2b{word-spacing:2.704800px;}
.ws20{word-spacing:2.763600px;}
.ws5f{word-spacing:2.822400px;}
.ws63{word-spacing:2.881200px;}
.ws14{word-spacing:2.898000px;}
.ws2f{word-spacing:2.940000px;}
.ws6f{word-spacing:2.998800px;}
.ws30{word-spacing:3.057600px;}
.wsa3{word-spacing:3.116400px;}
.ws51{word-spacing:3.351600px;}
.ws87{word-spacing:3.410400px;}
.ws45{word-spacing:3.469200px;}
.ws41{word-spacing:3.528000px;}
.ws1b{word-spacing:3.586800px;}
.ws38{word-spacing:3.704400px;}
.ws37{word-spacing:3.822000px;}
.ws28{word-spacing:3.880800px;}
.ws5d{word-spacing:3.998400px;}
.ws33{word-spacing:4.057200px;}
.ws127{word-spacing:4.080000px;}
.ws62{word-spacing:4.174800px;}
.ws6c{word-spacing:4.292400px;}
.ws54{word-spacing:4.410000px;}
.ws58{word-spacing:4.599000px;}
.wse2{word-spacing:4.645200px;}
.wsaa{word-spacing:4.704000px;}
.ws46{word-spacing:4.762800px;}
.ws4a{word-spacing:4.821600px;}
.ws66{word-spacing:4.880400px;}
.ws3f{word-spacing:4.939200px;}
.ws9e{word-spacing:4.998000px;}
.ws61{word-spacing:5.056800px;}
.ws47{word-spacing:5.174400px;}
.ws9f{word-spacing:5.233200px;}
.wsa{word-spacing:5.292000px;}
.ws36{word-spacing:5.409600px;}
.ws69{word-spacing:5.527200px;}
.ws94{word-spacing:5.586000px;}
.ws9b{word-spacing:5.644800px;}
.ws48{word-spacing:5.703600px;}
.wsa6{word-spacing:5.821200px;}
.ws9c{word-spacing:5.880000px;}
.wsdc{word-spacing:5.938800px;}
.ws97{word-spacing:6.056400px;}
.ws49{word-spacing:6.291600px;}
.ws4d{word-spacing:6.350400px;}
.wsa0{word-spacing:6.409200px;}
.ws22{word-spacing:6.468000px;}
.ws1e{word-spacing:6.526800px;}
.ws24{word-spacing:6.585600px;}
.ws3a{word-spacing:6.644400px;}
.ws60{word-spacing:6.762000px;}
.wse{word-spacing:6.938400px;}
.ws96{word-spacing:7.056000px;}
.ws5b{word-spacing:7.232400px;}
.ws6b{word-spacing:7.408800px;}
.wsab{word-spacing:7.467600px;}
.ws93{word-spacing:7.526400px;}
.wsa4{word-spacing:7.585200px;}
.ws3b{word-spacing:7.702800px;}
.ws98{word-spacing:7.761600px;}
.wsac{word-spacing:7.820400px;}
.ws85{word-spacing:7.879200px;}
.wsa7{word-spacing:7.938000px;}
.wsa9{word-spacing:8.055600px;}
.ws42{word-spacing:8.173200px;}
.ws1d{word-spacing:8.232000px;}
.ws4f{word-spacing:8.467200px;}
.wsad{word-spacing:8.584800px;}
.ws9a{word-spacing:8.643600px;}
.ws39{word-spacing:8.702400px;}
.ws43{word-spacing:8.820000px;}
.ws6d{word-spacing:9.055200px;}
.ws4e{word-spacing:9.290400px;}
.ws5c{word-spacing:9.584400px;}
.ws6e{word-spacing:9.702000px;}
.ws56{word-spacing:9.760800px;}
.ws2e{word-spacing:9.819600px;}
.wsed{word-spacing:9.828000px;}
.ws125{word-spacing:9.990000px;}
.ws1c{word-spacing:10.054800px;}
.ws3c{word-spacing:10.172400px;}
.ws10{word-spacing:10.231200px;}
.ws57{word-spacing:10.525200px;}
.wsae{word-spacing:11.407200px;}
.wsd8{word-spacing:11.701200px;}
.wsdb{word-spacing:11.818800px;}
.wsdd{word-spacing:12.465600px;}
.ws95{word-spacing:12.524400px;}
.ws40{word-spacing:12.583200px;}
.ws5a{word-spacing:12.994800px;}
.wsa5{word-spacing:13.112400px;}
.wsaf{word-spacing:13.347600px;}
.ws59{word-spacing:13.406400px;}
.ws3d{word-spacing:14.582400px;}
.wseb{word-spacing:15.699600px;}
.ws2c{word-spacing:16.699200px;}
.ws86{word-spacing:17.110800px;}
.ws9{word-spacing:18.416400px;}
.ws107{word-spacing:18.630000px;}
.ws11f{word-spacing:23.166000px;}
.wsf9{word-spacing:24.246000px;}
.wsec{word-spacing:27.918000px;}
.ws11e{word-spacing:33.648000px;}
.wsff{word-spacing:57.120000px;}
.wsf3{word-spacing:68.064000px;}
.ws118{word-spacing:71.712000px;}
.ws122{word-spacing:72.095993px;}
.wsd9{word-spacing:83.672400px;}
.ws10f{word-spacing:101.092800px;}
.ws117{word-spacing:106.704000px;}
.ws10e{word-spacing:113.328000px;}
.ws10d{word-spacing:117.408000px;}
.wsfd{word-spacing:119.904000px;}
.ws112{word-spacing:123.696000px;}
.ws113{word-spacing:130.128000px;}
.ws110{word-spacing:134.998240px;}
.wsf8{word-spacing:138.528000px;}
.wsfa{word-spacing:162.048000px;}
.ws80{word-spacing:164.879992px;}
.ws11a{word-spacing:165.216000px;}
.wsf1{word-spacing:171.408000px;}
.ws114{word-spacing:171.744000px;}
.wsf4{word-spacing:178.564800px;}
.ws102{word-spacing:190.368000px;}
.wsf0{word-spacing:202.848000px;}
.wsf2{word-spacing:203.952000px;}
.ws115{word-spacing:211.008000px;}
.wsee{word-spacing:216.288000px;}
.ws11b{word-spacing:217.536000px;}
.ws116{word-spacing:218.784000px;}
.ws101{word-spacing:224.304000px;}
.ws82{word-spacing:225.753600px;}
.wsf7{word-spacing:226.272000px;}
.wsfe{word-spacing:230.404800px;}
.wsf6{word-spacing:233.616000px;}
.wsfc{word-spacing:255.792000px;}
.ws11c{word-spacing:262.176000px;}
.wsf5{word-spacing:265.776000px;}
.ws11d{word-spacing:269.952000px;}
.ws100{word-spacing:285.456000px;}
.wsfb{word-spacing:303.360000px;}
.ws111{word-spacing:306.528000px;}
.wsef{word-spacing:333.408000px;}
.ws119{word-spacing:340.511987px;}
.wse7{word-spacing:405.983988px;}
.ws124{word-spacing:609.892800px;}
.ws128{word-spacing:673.584000px;}
.ws123{word-spacing:751.440000px;}
.wse9{word-spacing:866.639989px;}
.wse6{word-spacing:909.264000px;}
.wsea{word-spacing:999.887989px;}
.wse8{word-spacing:1042.512000px;}
.wsd2{word-spacing:1597.775993px;}
.wsd7{word-spacing:1751.328000px;}
.wsd5{word-spacing:1783.968000px;}
.wsd3{word-spacing:1823.136000px;}
.wsd6{word-spacing:1863.648000px;}
._2f{margin-left:-27.762000px;}
._26{margin-left:-25.636800px;}
._4d{margin-left:-24.090000px;}
._62{margin-left:-23.010000px;}
._27{margin-left:-20.182800px;}
._29{margin-left:-18.169200px;}
._25{margin-left:-15.097231px;}
._2b{margin-left:-14.094001px;}
._e{margin-left:-12.483600px;}
._10{margin-left:-11.259000px;}
._3{margin-left:-9.216000px;}
._4e{margin-left:-8.154000px;}
._28{margin-left:-6.366007px;}
._2{margin-left:-5.140800px;}
._7{margin-left:-3.720000px;}
._4{margin-left:-2.606400px;}
._0{margin-left:-1.454400px;}
._1{width:1.425600px;}
._5{width:2.563680px;}
._b{width:3.987840px;}
._a{width:6.092880px;}
._c{width:7.527600px;}
._9{width:9.148680px;}
._6{width:10.172400px;}
._20{width:12.302394px;}
._17{width:14.318400px;}
._d{width:16.006200px;}
._8{width:17.234388px;}
._5b{width:18.742200px;}
._63{width:22.387807px;}
._4f{width:23.722200px;}
._14{width:26.311544px;}
._13{width:27.527266px;}
._15{width:29.003493px;}
._f{width:30.900000px;}
._24{width:34.808400px;}
._22{width:36.736806px;}
._51{width:37.975838px;}
._6b{width:39.086400px;}
._23{width:40.600800px;}
._21{width:43.212012px;}
._2a{width:48.954001px;}
._2d{width:50.334001px;}
._2c{width:55.374001px;}
._67{width:66.100795px;}
._5d{width:71.054400px;}
._11{width:92.611447px;}
._60{width:94.776000px;}
._16{width:103.466047px;}
._12{width:110.412991px;}
._53{width:125.294400px;}
._5e{width:126.672000px;}
._50{width:130.718400px;}
._1d{width:132.767992px;}
._69{width:141.120000px;}
._58{width:149.016000px;}
._74{width:156.840000px;}
._68{width:162.144000px;}
._56{width:180.912000px;}
._5c{width:182.558400px;}
._6e{width:188.736000px;}
._6d{width:199.584000px;}
._5f{width:206.784000px;}
._59{width:213.840000px;}
._6a{width:227.260800px;}
._19{width:231.196800px;}
._54{width:248.400000px;}
._3e{width:256.670400px;}
._61{width:259.780789px;}
._57{width:261.024000px;}
._55{width:269.567978px;}
._65{width:272.688000px;}
._66{width:278.592000px;}
._5a{width:295.108791px;}
._30{width:299.294388px;}
._41{width:317.548789px;}
._4b{width:349.007989px;}
._40{width:350.702400px;}
._71{width:355.646400px;}
._33{width:360.172800px;}
._75{width:365.760000px;}
._52{width:367.391978px;}
._64{width:370.512000px;}
._4a{width:374.424000px;}
._3c{width:392.212800px;}
._32{width:393.326388px;}
._1f{width:395.665401px;}
._43{width:406.320000px;}
._72{width:423.662422px;}
._70{width:437.198400px;}
._35{width:448.943988px;}
._6f{width:476.496000px;}
._47{width:486.432000px;}
._39{width:529.055988px;}
._73{width:533.376000px;}
._42{width:543.167989px;}
._1c{width:576.576000px;}
._34{width:585.792000px;}
._1e{width:596.544000px;}
._1b{width:613.872000px;}
._1a{width:634.142400px;}
._6c{width:648.782400px;}
._76{width:667.296000px;}
._46{width:699.230389px;}
._4c{width:709.343989px;}
._38{width:741.854400px;}
._18{width:746.832000px;}
._3d{width:751.968000px;}
._48{width:766.511989px;}
._45{width:780.782389px;}
._3a{width:809.136000px;}
._44{width:820.079989px;}
._37{width:823.406400px;}
._49{width:829.967989px;}
._36{width:862.704000px;}
._3b{width:872.592000px;}
._3f{width:992.366367px;}
._31{width:1034.990390px;}
._2e{width:1595.615993px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:30.660000px;}
.fsd{font-size:31.500000px;}
.fs18{font-size:32.342400px;}
.fs15{font-size:36.477000px;}
.fs17{font-size:40.610400px;}
.fse{font-size:41.160000px;}
.fs4{font-size:42.000000px;}
.fs12{font-size:43.418400px;}
.fs10{font-size:43.800000px;}
.fs1d{font-size:44.490600px;}
.fs16{font-size:44.501400px;}
.fs1a{font-size:44.702399px;}
.fsc{font-size:45.000000px;}
.fs7{font-size:46.199999px;}
.fsb{font-size:48.000000px;}
.fs14{font-size:48.634798px;}
.fs1b{font-size:48.754200px;}
.fs1c{font-size:53.282398px;}
.fs13{font-size:54.000000px;}
.fs11{font-size:55.199999px;}
.fs9{font-size:58.800000px;}
.fs19{font-size:58.819800px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:144.000000px;}
.y17b{bottom:-0.000458px;}
.y0{bottom:0.000000px;}
.yf6{bottom:3.326843px;}
.y159{bottom:3.985199px;}
.y19e{bottom:4.845886px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y4d{bottom:75.796800px;}
.y4c{bottom:87.798300px;}
.y4{bottom:97.125005px;}
.yb9{bottom:99.461998px;}
.y4b{bottom:99.799800px;}
.y33a{bottom:99.987579px;}
.y2e9{bottom:105.785385px;}
.y8d{bottom:108.720898px;}
.yea{bottom:108.846300px;}
.y230{bottom:108.923698px;}
.ye3{bottom:108.945900px;}
.y4a{bottom:111.801300px;}
.y339{bottom:113.487579px;}
.y267{bottom:113.587500px;}
.y14a{bottom:113.665498px;}
.yb8{bottom:115.841995px;}
.y2e8{bottom:119.285385px;}
.y156{bottom:120.719850px;}
.y49{bottom:123.802800px;}
.y22f{bottom:123.923698px;}
.y338{bottom:126.987579px;}
.y1b8{bottom:127.035149px;}
.y8c{bottom:129.931495px;}
.ye9{bottom:130.073100px;}
.y121{bottom:130.163685px;}
.ye2{bottom:130.169105px;}
.y266{bottom:131.731500px;}
.y2e7{bottom:132.785385px;}
.y149{bottom:134.892298px;}
.y48{bottom:135.804300px;}
.y23{bottom:139.264499px;}
.y337{bottom:140.487579px;}
.y155{bottom:141.946650px;}
.y2e6{bottom:146.285385px;}
.y47{bottom:147.805800px;}
.y1b7{bottom:148.261949px;}
.y264{bottom:149.887500px;}
.y8b{bottom:151.158295px;}
.ye8{bottom:151.299900px;}
.y120{bottom:151.390485px;}
.ye1{bottom:151.395905px;}
.y336{bottom:153.987579px;}
.y22a{bottom:154.429501px;}
.y148{bottom:156.119098px;}
.y228{bottom:156.419428px;}
.y2e5{bottom:159.785385px;}
.y154{bottom:163.173450px;}
.y263{bottom:163.387500px;}
.y335{bottom:167.487579px;}
.y1b6{bottom:169.488749px;}
.y229{bottom:170.506199px;}
.y265{bottom:172.231500px;}
.y8a{bottom:172.385095px;}
.ye7{bottom:172.519498px;}
.ye0{bottom:172.601086px;}
.yb7{bottom:172.610109px;}
.y11f{bottom:172.617285px;}
.y227{bottom:172.630199px;}
.y2e4{bottom:173.285385px;}
.y262{bottom:176.887500px;}
.y147{bottom:177.345898px;}
.y334{bottom:180.987579px;}
.y153{bottom:184.400250px;}
.y2e3{bottom:186.785385px;}
.y261{bottom:190.387500px;}
.y1b5{bottom:190.715549px;}
.y89{bottom:193.611895px;}
.ye6{bottom:193.746298px;}
.ydf{bottom:193.827886px;}
.yb6{bottom:193.836909px;}
.y11e{bottom:193.844085px;}
.y333{bottom:194.487579px;}
.y30{bottom:196.025846px;}
.y1a{bottom:196.933500px;}
.y146{bottom:198.563709px;}
.y2e2{bottom:200.285385px;}
.y152{bottom:205.627050px;}
.y332{bottom:207.987579px;}
.y25f{bottom:208.543500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y1b4{bottom:211.938743px;}
.y2e1{bottom:213.785385px;}
.y88{bottom:214.838695px;}
.ye5{bottom:214.973098px;}
.yde{bottom:215.054686px;}
.yb5{bottom:215.063709px;}
.y11d{bottom:215.070885px;}
.y2f{bottom:217.252646px;}
.y145{bottom:219.790509px;}
.y331{bottom:221.487579px;}
.y25e{bottom:222.043500px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y151{bottom:226.853850px;}
.y2e0{bottom:227.285385px;}
.y1b3{bottom:233.165543px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y330{bottom:234.987579px;}
.y25d{bottom:235.543500px;}
.y87{bottom:236.065495px;}
.ye4{bottom:236.199898px;}
.ydd{bottom:236.281486px;}
.yb4{bottom:236.290509px;}
.y11c{bottom:236.297685px;}
.y2bb{bottom:236.419518px;}
.y2e{bottom:238.479446px;}
.y2df{bottom:240.785385px;}
.y144{bottom:241.017309px;}
.y22c{bottom:241.650286px;}
.y22e{bottom:242.574338px;}
.y150{bottom:248.077056px;}
.y32f{bottom:248.487579px;}
.y25c{bottom:249.043500px;}
.y2ba{bottom:249.919518px;}
.y1c5{bottom:251.496298px;}
.y2de{bottom:254.285385px;}
.y1b2{bottom:254.377961px;}
.y22d{bottom:255.598961px;}
.y22b{bottom:255.740250px;}
.y86{bottom:257.292295px;}
.ydc{bottom:257.508286px;}
.yb3{bottom:257.517309px;}
.y11b{bottom:257.524485px;}
.y260{bottom:257.887500px;}
.y2d{bottom:259.702650px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y32e{bottom:261.987579px;}
.y143{bottom:262.244109px;}
.y25b{bottom:262.543500px;}
.y2b9{bottom:263.419518px;}
.y2dd{bottom:267.785385px;}
.y14f{bottom:269.303856px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1c4{bottom:272.723098px;}
.y32d{bottom:275.487579px;}
.y1b1{bottom:275.604761px;}
.y25a{bottom:276.043500px;}
.y2b8{bottom:276.919518px;}
.y85{bottom:278.519095px;}
.ydb{bottom:278.735086px;}
.yb2{bottom:278.744109px;}
.y11a{bottom:278.751285px;}
.y2c{bottom:280.929450px;}
.y2dc{bottom:281.285385px;}
.y142{bottom:283.470909px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y32c{bottom:288.987579px;}
.y2b7{bottom:290.419518px;}
.y14e{bottom:290.525250px;}
.y1c3{bottom:293.949898px;}
.y259{bottom:294.187500px;}
.y2db{bottom:294.785385px;}
.y1b0{bottom:296.831561px;}
.y84{bottom:299.745895px;}
.yda{bottom:299.961886px;}
.yb1{bottom:299.970909px;}
.y119{bottom:299.978085px;}
.y2b{bottom:302.152656px;}
.y32b{bottom:302.487579px;}
.y10c{bottom:303.681017px;}
.y141{bottom:304.692305px;}
.y2da{bottom:308.285385px;}
.y2b6{bottom:308.563518px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y14d{bottom:311.752050px;}
.y257{bottom:312.331500px;}
.y32a{bottom:315.987579px;}
.y10b{bottom:317.181017px;}
.y1af{bottom:318.058361px;}
.y83{bottom:320.965505px;}
.y258{bottom:321.187500px;}
.yd9{bottom:321.188686px;}
.yb0{bottom:321.190495px;}
.y118{bottom:321.204885px;}
.y2d9{bottom:321.785385px;}
.y2b5{bottom:322.063518px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y2a{bottom:323.379456px;}
.y256{bottom:325.831500px;}
.y140{bottom:325.919105px;}
.y226{bottom:327.944037px;}
.y329{bottom:329.487579px;}
.y14c{bottom:332.978850px;}
.y2d8{bottom:335.285385px;}
.y10a{bottom:335.409017px;}
.y2b4{bottom:335.563518px;}
.y1ae{bottom:339.285161px;}
.y255{bottom:339.331500px;}
.y82{bottom:342.192305px;}
.yd8{bottom:342.415486px;}
.yaf{bottom:342.417295px;}
.y117{bottom:342.431685px;}
.y328{bottom:342.987579px;}
.y29{bottom:344.604446px;}
.y1e8{bottom:344.949017px;}
.y225{bottom:345.081139px;}
.y13f{bottom:347.145905px;}
.y11{bottom:348.133500px;}
.y2d7{bottom:348.785385px;}
.y109{bottom:348.909017px;}
.y2b3{bottom:349.063518px;}
.y14b{bottom:354.203842px;}
.y327{bottom:356.487579px;}
.y254{bottom:357.475500px;}
.y1ad{bottom:360.511961px;}
.y253{bottom:362.119500px;}
.y2d6{bottom:362.285385px;}
.y108{bottom:362.409017px;}
.y2b2{bottom:362.563518px;}
.y1e7{bottom:363.177017px;}
.y81{bottom:363.419105px;}
.yd7{bottom:363.642286px;}
.yae{bottom:363.644095px;}
.y116{bottom:363.658485px;}
.y13e{bottom:368.365514px;}
.y326{bottom:369.987579px;}
.y252{bottom:375.619500px;}
.y2d5{bottom:375.785385px;}
.y107{bottom:375.909017px;}
.y2b1{bottom:376.063518px;}
.y1e6{bottom:381.321017px;}
.y1ac{bottom:381.738761px;}
.y325{bottom:383.487579px;}
.y45{bottom:383.941956px;}
.y80{bottom:384.645905px;}
.yd6{bottom:384.869086px;}
.yad{bottom:384.870895px;}
.y115{bottom:384.885285px;}
.y10{bottom:386.785499px;}
.y20e{bottom:388.567500px;}
.y2d4{bottom:389.285385px;}
.y2b0{bottom:389.563518px;}
.y13d{bottom:389.592314px;}
.y250{bottom:393.775500px;}
.y106{bottom:394.053017px;}
.y324{bottom:396.987579px;}
.y1e5{bottom:399.465017px;}
.y44{bottom:401.941956px;}
.y251{bottom:402.619500px;}
.y2d3{bottom:402.785385px;}
.y1ab{bottom:402.965561px;}
.y2af{bottom:403.063518px;}
.y7f{bottom:405.870895px;}
.yac{bottom:406.094123px;}
.yd5{bottom:406.095886px;}
.y114{bottom:406.112085px;}
.y20d{bottom:406.795500px;}
.y24f{bottom:407.275500px;}
.yf{bottom:408.044999px;}
.y323{bottom:410.487579px;}
.y13c{bottom:410.819114px;}
.y105{bottom:412.197017px;}
.y2d2{bottom:416.285385px;}
.y1e4{bottom:417.609017px;}
.y24e{bottom:420.775500px;}
.y2ae{bottom:421.207518px;}
.y27c{bottom:422.351990px;}
.y322{bottom:423.987579px;}
.y1aa{bottom:424.188743px;}
.y20c{bottom:424.939500px;}
.y104{bottom:425.697017px;}
.y43{bottom:425.941956px;}
.y7e{bottom:427.092314px;}
.yd4{bottom:427.301114px;}
.yab{bottom:427.320923px;}
.y113{bottom:427.338885px;}
.y2d1{bottom:429.785385px;}
.y13b{bottom:432.045914px;}
.y2ad{bottom:434.707518px;}
.y1e3{bottom:435.765017px;}
.y321{bottom:437.487579px;}
.y20b{bottom:438.439500px;}
.y24d{bottom:438.919500px;}
.y224{bottom:442.543500px;}
.y2d0{bottom:443.285385px;}
.y27b{bottom:443.576981px;}
.y103{bottom:443.841017px;}
.y42{bottom:443.941956px;}
.y1a9{bottom:445.415543px;}
.y2ac{bottom:448.207518px;}
.y7d{bottom:448.319114px;}
.yd3{bottom:448.527914px;}
.yaa{bottom:448.542295px;}
.y112{bottom:448.565685px;}
.y320{bottom:450.987579px;}
.y13a{bottom:453.270905px;}
.y1e2{bottom:453.909017px;}
.y20a{bottom:456.583500px;}
.y2cf{bottom:456.785385px;}
.y24b{bottom:457.063500px;}
.y102{bottom:457.341017px;}
.y223{bottom:460.771500px;}
.y2ab{bottom:461.707518px;}
.y41{bottom:461.941956px;}
.y31f{bottom:464.487579px;}
.y1a8{bottom:466.640533px;}
.y7c{bottom:469.545914px;}
.yd2{bottom:469.754714px;}
.ya9{bottom:469.769095px;}
.y111{bottom:469.792485px;}
.y209{bottom:470.083500px;}
.y2ce{bottom:470.285385px;}
.y24a{bottom:470.563500px;}
.y101{bottom:470.841017px;}
.y1e1{bottom:472.053017px;}
.y199{bottom:472.688690px;}
.y139{bottom:474.477895px;}
.y2aa{bottom:475.207518px;}
.y31e{bottom:477.987579px;}
.y222{bottom:478.915500px;}
.y24c{bottom:479.419500px;}
.y40{bottom:479.941956px;}
.y208{bottom:483.583500px;}
.y2cd{bottom:483.785385px;}
.y249{bottom:484.063500px;}
.y100{bottom:484.341017px;}
.ye{bottom:484.864502px;}
.y198{bottom:487.688690px;}
.y2a9{bottom:488.707518px;}
.y1e0{bottom:490.197017px;}
.y7b{bottom:490.765523px;}
.yd1{bottom:490.981514px;}
.ya8{bottom:490.995895px;}
.y110{bottom:491.019285px;}
.y31d{bottom:491.487579px;}
.y221{bottom:492.415500px;}
.y138{bottom:495.704695px;}
.y207{bottom:497.083500px;}
.y2cc{bottom:497.285385px;}
.y248{bottom:497.563500px;}
.y3f{bottom:497.941956px;}
.y2a8{bottom:502.207518px;}
.yff{bottom:502.497017px;}
.y158{bottom:502.839020px;}
.yd{bottom:502.864502px;}
.y27a{bottom:504.552017px;}
.y31c{bottom:504.987579px;}
.y1df{bottom:508.341017px;}
.y220{bottom:510.571500px;}
.y2cb{bottom:510.785385px;}
.y7a{bottom:511.992323px;}
.yd0{bottom:512.208314px;}
.ya7{bottom:512.211886px;}
.y10f{bottom:512.246085px;}
.y206{bottom:515.239500px;}
.y246{bottom:515.707500px;}
.y2a7{bottom:515.707518px;}
.y3e{bottom:515.941956px;}
.yfe{bottom:515.997017px;}
.y137{bottom:516.931495px;}
.y279{bottom:518.052017px;}
.y31b{bottom:518.487579px;}
.yc{bottom:520.864502px;}
.y21f{bottom:524.071500px;}
.y2ca{bottom:524.285385px;}
.y247{bottom:524.563500px;}
.y1de{bottom:526.497017px;}
.y205{bottom:528.739500px;}
.y245{bottom:529.207500px;}
.y2a6{bottom:529.207518px;}
.y181{bottom:531.178536px;}
.y278{bottom:531.552017px;}
.y31a{bottom:531.987579px;}
.y79{bottom:533.219123px;}
.ycf{bottom:533.435114px;}
.ya6{bottom:533.438686px;}
.y10e{bottom:533.472885px;}
.y3d{bottom:533.941956px;}
.yfd{bottom:534.141017px;}
.y21e{bottom:537.571500px;}
.y2c9{bottom:537.785385px;}
.y136{bottom:538.158295px;}
.yb{bottom:538.864499px;}
.y189{bottom:539.068222px;}
.y180{bottom:540.937855px;}
.y185{bottom:542.361758px;}
.y244{bottom:542.707500px;}
.y1a7{bottom:544.470291px;}
.y1dd{bottom:544.641017px;}
.y319{bottom:545.487579px;}
.y204{bottom:546.895500px;}
.y2a5{bottom:547.351518px;}
.yfc{bottom:547.641017px;}
.y277{bottom:549.552017px;}
.y17f{bottom:550.244381px;}
.y2c8{bottom:551.285385px;}
.y3c{bottom:551.941956px;}
.y78{bottom:554.445923px;}
.yce{bottom:554.661914px;}
.ya5{bottom:554.665486px;}
.y10d{bottom:554.697922px;}
.y21d{bottom:555.727500px;}
.ya{bottom:556.864499px;}
.y276{bottom:558.551971px;}
.y318{bottom:558.987579px;}
.y135{bottom:559.385095px;}
.y17e{bottom:559.486221px;}
.y203{bottom:560.395500px;}
.y242{bottom:560.851500px;}
.y2a4{bottom:560.851518px;}
.y1dc{bottom:562.785017px;}
.y1a6{bottom:563.220291px;}
.y184{bottom:563.554115px;}
.y188{bottom:564.593729px;}
.y2c7{bottom:564.785385px;}
.yfb{bottom:565.785017px;}
.y21c{bottom:569.227500px;}
.y243{bottom:569.707500px;}
.y3b{bottom:569.941956px;}
.y317{bottom:572.487579px;}
.y183{bottom:574.283707px;}
.y241{bottom:574.351500px;}
.y2a3{bottom:574.351518px;}
.y77{bottom:575.667295px;}
.ycd{bottom:575.888714px;}
.ya4{bottom:575.892286px;}
.y187{bottom:576.740570px;}
.y2c6{bottom:578.285385px;}
.y202{bottom:578.551500px;}
.yfa{bottom:579.285017px;}
.y134{bottom:580.611895px;}
.y275{bottom:581.051971px;}
.y17d{bottom:581.714722px;}
.y1a5{bottom:581.970291px;}
.y316{bottom:585.987579px;}
.y21b{bottom:587.383500px;}
.y240{bottom:587.851500px;}
.y2a2{bottom:587.851518px;}
.y3a{bottom:587.941956px;}
.y5e{bottom:588.841965px;}
.y1db{bottom:589.677017px;}
.y2c5{bottom:591.785385px;}
.y201{bottom:592.051500px;}
.y274{bottom:594.551971px;}
.y182{bottom:596.449219px;}
.y76{bottom:596.894095px;}
.ycc{bottom:597.115514px;}
.ya3{bottom:597.119086px;}
.y315{bottom:599.487579px;}
.y186{bottom:599.809204px;}
.y2a1{bottom:601.351518px;}
.y133{bottom:601.838695px;}
.y5d{bottom:602.341965px;}
.y2c4{bottom:605.285385px;}
.y21a{bottom:605.539500px;}
.y39{bottom:605.941956px;}
.y23f{bottom:606.007500px;}
.yf9{bottom:606.177017px;}
.y200{bottom:610.195500px;}
.y314{bottom:612.987579px;}
.y1da{bottom:613.992761px;}
.y2a0{bottom:614.851518px;}
.y5c{bottom:615.841965px;}
.y273{bottom:617.051971px;}
.y75{bottom:618.120895px;}
.ya2{bottom:618.336886px;}
.ycb{bottom:618.342314px;}
.y2c3{bottom:618.785385px;}
.y219{bottom:619.039500px;}
.y122{bottom:619.212753px;}
.y1a4{bottom:619.470291px;}
.y132{bottom:623.065495px;}
.y1ff{bottom:623.695500px;}
.y38{bottom:623.941956px;}
.y23d{bottom:624.163500px;}
.y313{bottom:626.487579px;}
.y29f{bottom:628.351518px;}
.y5b{bottom:629.341965px;}
.yf8{bottom:630.377243px;}
.y1d9{bottom:630.489761px;}
.y272{bottom:630.551971px;}
.y2c2{bottom:632.285385px;}
.y195{bottom:635.021780px;}
.y218{bottom:637.183500px;}
.y23c{bottom:637.663500px;}
.y74{bottom:639.340505px;}
.ya1{bottom:639.563686px;}
.yca{bottom:639.569114px;}
.y312{bottom:639.987579px;}
.y1fe{bottom:641.851500px;}
.y37{bottom:641.941956px;}
.y5a{bottom:642.841965px;}
.y271{bottom:644.051971px;}
.y131{bottom:644.292295px;}
.y9{bottom:645.510000px;}
.y2c1{bottom:645.785385px;}
.y29e{bottom:646.495518px;}
.y23e{bottom:646.507500px;}
.y217{bottom:650.683500px;}
.y23b{bottom:651.163500px;}
.y311{bottom:653.487579px;}
.y1fd{bottom:655.351500px;}
.y59{bottom:656.341965px;}
.y194{bottom:657.190677px;}
.y2c0{bottom:659.285385px;}
.y36{bottom:659.941956px;}
.y29d{bottom:659.995518px;}
.y73{bottom:660.567305px;}
.ya0{bottom:660.790486px;}
.yc9{bottom:660.795914px;}
.y23a{bottom:664.663500px;}
.y130{bottom:665.519095px;}
.y270{bottom:666.551971px;}
.y8{bottom:666.771000px;}
.y310{bottom:666.987579px;}
.y216{bottom:668.839500px;}
.y193{bottom:669.273683px;}
.y58{bottom:669.841965px;}
.y2bf{bottom:672.785385px;}
.y29c{bottom:673.495518px;}
.y1fc{bottom:673.507500px;}
.y1a1{bottom:673.968018px;}
.y35{bottom:677.941956px;}
.y1a3{bottom:678.774902px;}
.y1a2{bottom:678.813904px;}
.y26f{bottom:680.051971px;}
.y30f{bottom:680.487579px;}
.yf7{bottom:681.337509px;}
.y192{bottom:681.356689px;}
.y72{bottom:681.794105px;}
.y9f{bottom:682.017286px;}
.yc8{bottom:682.019095px;}
.y215{bottom:682.339500px;}
.y238{bottom:682.807500px;}
.y57{bottom:683.341965px;}
.y2be{bottom:686.285385px;}
.y12f{bottom:686.745895px;}
.y29b{bottom:686.995518px;}
.y1fb{bottom:687.007500px;}
.y1d8{bottom:689.779518px;}
.y30e{bottom:693.987579px;}
.y19d{bottom:695.193008px;}
.y34{bottom:695.941956px;}
.y237{bottom:696.307500px;}
.yf5{bottom:696.487518px;}
.y56{bottom:696.841965px;}
.y2bd{bottom:699.785385px;}
.y19c{bottom:699.996321px;}
.y1a0{bottom:699.999893px;}
.y19f{bottom:700.038895px;}
.y214{bottom:700.495500px;}
.y26e{bottom:702.551971px;}
.y71{bottom:703.020905px;}
.y9e{bottom:703.244086px;}
.yc7{bottom:703.245895px;}
.y29a{bottom:705.139518px;}
.y1fa{bottom:705.163500px;}
.y30d{bottom:707.487579px;}
.y12e{bottom:707.969123px;}
.y1d7{bottom:708.007518px;}
.y236{bottom:709.807500px;}
.y55{bottom:710.341965px;}
.yf4{bottom:712.235639px;}
.y33{bottom:713.941956px;}
.y213{bottom:713.995500px;}
.y15f{bottom:714.759946px;}
.y26d{bottom:716.051971px;}
.y299{bottom:718.639518px;}
.y1f9{bottom:718.663500px;}
.y191{bottom:718.701795px;}
.y17c{bottom:720.191528px;}
.y17a{bottom:720.191986px;}
.y30c{bottom:720.987579px;}
.y19b{bottom:721.223121px;}
.y235{bottom:723.307500px;}
.y70{bottom:724.240468px;}
.yc6{bottom:724.467314px;}
.y9d{bottom:724.470886px;}
.yf3{bottom:724.675011px;}
.y1d6{bottom:726.151518px;}
.y18b{bottom:726.197781px;}
.y7{bottom:726.298500px;}
.y54{bottom:728.341965px;}
.y12d{bottom:729.195923px;}
.y26c{bottom:729.551971px;}
.y32{bottom:731.941956px;}
.y298{bottom:732.139518px;}
.y212{bottom:732.151500px;}
.y1f8{bottom:732.163500px;}
.y30b{bottom:734.487579px;}
.y234{bottom:736.807500px;}
.y15e{bottom:736.992677px;}
.yf2{bottom:737.179510px;}
.y53{bottom:737.341965px;}
.y190{bottom:740.934526px;}
.y179{bottom:742.356473px;}
.y19a{bottom:742.449921px;}
.y1d5{bottom:744.235518px;}
.y6f{bottom:745.467268px;}
.y211{bottom:745.651500px;}
.y239{bottom:745.663500px;}
.y9c{bottom:745.679686px;}
.yc5{bottom:745.694114px;}
.y30a{bottom:747.987579px;}
.y18a{bottom:748.558182px;}
.y15d{bottom:749.075684px;}
.yf1{bottom:749.618882px;}
.y297{bottom:750.295518px;}
.y1f7{bottom:750.307500px;}
.y12c{bottom:750.415841px;}
.y52{bottom:750.841965px;}
.y26b{bottom:752.051971px;}
.y3{bottom:752.599495px;}
.y18f{bottom:753.017532px;}
.y178{bottom:754.439479px;}
.y31{bottom:754.441956px;}
.y197{bottom:755.797028px;}
.y210{bottom:759.151500px;}
.y309{bottom:761.487579px;}
.yf0{bottom:762.058253px;}
.y1d4{bottom:762.463518px;}
.y296{bottom:763.795518px;}
.y1f6{bottom:763.807500px;}
.y51{bottom:764.341965px;}
.y26a{bottom:765.551971px;}
.y177{bottom:766.458650px;}
.y6e{bottom:766.694068px;}
.y9b{bottom:766.906486px;}
.yc4{bottom:766.920914px;}
.y12b{bottom:771.642641px;}
.y2bc{bottom:772.010376px;}
.y18e{bottom:772.140278px;}
.yef{bottom:774.562752px;}
.y308{bottom:774.987579px;}
.y295{bottom:777.295518px;}
.y1f5{bottom:777.307500px;}
.y176{bottom:778.541657px;}
.y269{bottom:779.051971px;}
.y1d3{bottom:780.619518px;}
.y232{bottom:781.951500px;}
.y15c{bottom:784.942885px;}
.yee{bottom:787.002124px;}
.y6d{bottom:787.920868px;}
.y9a{bottom:788.133286px;}
.yc3{bottom:788.140523px;}
.y307{bottom:788.487579px;}
.y294{bottom:790.795518px;}
.y1f4{bottom:790.807500px;}
.y268{bottom:792.551971px;}
.y12a{bottom:792.869441px;}
.y18d{bottom:794.373010px;}
.y231{bottom:795.451500px;}
.y173{bottom:796.952937px;}
.y1d2{bottom:798.763518px;}
.yed{bottom:799.441496px;}
.y164{bottom:800.646280px;}
.y306{bottom:801.987579px;}
.y293{bottom:804.295518px;}
.y20f{bottom:804.307500px;}
.y18c{bottom:806.392181px;}
.y15b{bottom:807.102663px;}
.y1c2{bottom:808.256971px;}
.y1f3{bottom:808.951500px;}
.y6c{bottom:809.144141px;}
.y99{bottom:809.360086px;}
.yc2{bottom:809.367323px;}
.yec{bottom:811.945995px;}
.y129{bottom:814.096241px;}
.y305{bottom:815.487579px;}
.y28{bottom:815.679474px;}
.y1d1{bottom:816.907518px;}
.y292{bottom:817.795518px;}
.y15a{bottom:819.185669px;}
.y1f2{bottom:822.451500px;}
.y163{bottom:822.806057px;}
.yeb{bottom:824.374512px;}
.y1c1{bottom:826.484971px;}
.y304{bottom:828.987579px;}
.y6b{bottom:830.370941px;}
.y98{bottom:830.586886px;}
.yc1{bottom:830.594123px;}
.y291{bottom:831.295518px;}
.y233{bottom:831.307500px;}
.y162{bottom:834.825229px;}
.y1d0{bottom:835.051518px;}
.y128{bottom:835.323041px;}
.y1f1{bottom:835.951500px;}
.y303{bottom:842.487579px;}
.y16a{bottom:843.292631px;}
.y1c0{bottom:844.628971px;}
.y290{bottom:844.795518px;}
.y161{bottom:846.972070px;}
.y172{bottom:847.096608px;}
.y287{bottom:848.955579px;}
.y1f0{bottom:849.451500px;}
.y6a{bottom:851.590505px;}
.y97{bottom:851.813686px;}
.yc0{bottom:851.820923px;}
.y2f3{bottom:852.339781px;}
.y1cf{bottom:853.195518px;}
.y169{bottom:855.630977px;}
.y302{bottom:855.987579px;}
.y171{bottom:857.246333px;}
.y28f{bottom:858.295518px;}
.y160{bottom:858.991241px;}
.y27{bottom:861.908406px;}
.y1bf{bottom:862.784971px;}
.y2f2{bottom:865.839781px;}
.y286{bottom:867.183579px;}
.y168{bottom:867.713983px;}
.y170{bottom:869.265504px;}
.y301{bottom:869.487579px;}
.y1ce{bottom:871.351518px;}
.y69{bottom:872.817305px;}
.y96{bottom:873.040486px;}
.ybf{bottom:873.045868px;}
.y127{bottom:875.292341px;}
.y1ef{bottom:876.343500px;}
.y28e{bottom:876.439518px;}
.y2f1{bottom:879.339781px;}
.y2{bottom:879.369000px;}
.y167{bottom:879.733154px;}
.y16f{bottom:881.348511px;}
.y300{bottom:882.987579px;}
.y1cd{bottom:889.495518px;}
.y1be{bottom:889.676971px;}
.y1ee{bottom:889.843500px;}
.y28d{bottom:889.939518px;}
.y2f0{bottom:892.839781px;}
.y285{bottom:893.643579px;}
.y68{bottom:894.044105px;}
.y95{bottom:894.267286px;}
.ybe{bottom:894.270905px;}
.y2ff{bottom:896.487579px;}
.y126{bottom:896.519141px;}
.y26{bottom:900.896406px;}
.y1ed{bottom:903.343500px;}
.y28c{bottom:903.439518px;}
.y284{bottom:907.143579px;}
.y1cc{bottom:907.639518px;}
.y2fe{bottom:909.987579px;}
.y1bd{bottom:913.992716px;}
.y67{bottom:915.270905px;}
.y94{bottom:915.494086px;}
.ybd{bottom:915.495941px;}
.y2ef{bottom:916.083781px;}
.y1ec{bottom:916.843500px;}
.y28b{bottom:916.939518px;}
.y125{bottom:917.745941px;}
.y283{bottom:920.643579px;}
.y2fd{bottom:923.487579px;}
.y16e{bottom:925.545208px;}
.y1cb{bottom:925.795518px;}
.y175{bottom:929.290973px;}
.y16c{bottom:929.552264px;}
.y2ee{bottom:929.583781px;}
.y1eb{bottom:930.343500px;}
.y1bc{bottom:930.489716px;}
.y282{bottom:934.143579px;}
.y28a{bottom:935.095518px;}
.y66{bottom:936.490468px;}
.y93{bottom:936.720886px;}
.y2fc{bottom:936.987579px;}
.y124{bottom:938.971523px;}
.y25{bottom:939.884406px;}
.y2ed{bottom:943.083781px;}
.y1ca{bottom:943.939518px;}
.y281{bottom:947.643579px;}
.y16d{bottom:947.905609px;}
.y289{bottom:948.595518px;}
.y2fb{bottom:950.487579px;}
.y174{bottom:951.459869px;}
.y16b{bottom:951.976500px;}
.y1ea{bottom:954.187500px;}
.y65{bottom:957.717268px;}
.ybc{bottom:957.720886px;}
.y92{bottom:957.945923px;}
.y123{bottom:960.195923px;}
.y1c9{bottom:962.095518px;}
.y2fa{bottom:963.987579px;}
.y2ec{bottom:966.327781px;}
.y1{bottom:966.726000px;}
.y280{bottom:971.487579px;}
.y288{bottom:975.595518px;}
.y2f9{bottom:977.487579px;}
.y1e9{bottom:978.331518px;}
.y24{bottom:978.872406px;}
.ybb{bottom:978.940541px;}
.y64{bottom:978.944068px;}
.y91{bottom:979.170868px;}
.y196{bottom:979.697205px;}
.y2eb{bottom:979.827781px;}
.y33c{bottom:981.987579px;}
.y1c8{bottom:988.987518px;}
.y2f8{bottom:990.987579px;}
.y1bb{bottom:992.095518px;}
.y2ea{bottom:993.327781px;}
.y33b{bottom:995.487579px;}
.y27f{bottom:995.631781px;}
.yba{bottom:1000.167341px;}
.y63{bottom:1000.170868px;}
.y1c7{bottom:1002.487518px;}
.y166{bottom:1003.670654px;}
.y2f7{bottom:1004.487579px;}
.y27e{bottom:1006.287781px;}
.y2f6{bottom:1017.987579px;}
.y1ba{bottom:1018.987518px;}
.y27d{bottom:1019.787781px;}
.y62{bottom:1021.394141px;}
.y157{bottom:1022.022491px;}
.y1c6{bottom:1026.803079px;}
.y165{bottom:1027.903015px;}
.y2f5{bottom:1031.487579px;}
.y4e{bottom:1035.298370px;}
.y46{bottom:1035.750183px;}
.y61{bottom:1042.620941px;}
.y1b9{bottom:1043.300079px;}
.y2f4{bottom:1044.987579px;}
.y50{bottom:1112.297079px;}
.y8e{bottom:1126.524628px;}
.y5f{bottom:1126.524719px;}
.y90{bottom:1126.756989px;}
.y4f{bottom:1126.925079px;}
.y8f{bottom:1127.300079px;}
.y60{bottom:1127.304719px;}
.h3d{height:8.142000px;}
.h42{height:14.700000px;}
.h3f{height:21.928147px;}
.h3e{height:22.477968px;}
.h3b{height:25.351515px;}
.h46{height:27.115928px;}
.h18{height:27.814500px;}
.h3c{height:28.224228px;}
.h25{height:28.483140px;}
.h2b{height:30.175788px;}
.h4e{height:30.920967px;}
.h40{height:30.928473px;}
.h7{height:32.130000px;}
.h39{height:32.974393px;}
.h41{height:33.801185px;}
.h4c{height:33.884169px;}
.h44{height:34.291943px;}
.h4d{height:37.048330px;}
.h14{height:37.086000px;}
.h17{height:39.735000px;}
.h26{height:40.690200px;}
.h45{height:41.173860px;}
.h4f{height:41.424000px;}
.h43{height:41.703238px;}
.h30{height:42.384000px;}
.h49{height:42.672000px;}
.h52{height:42.840000px;}
.h50{height:43.740000px;}
.h16{height:45.696000px;}
.h19{height:45.744000px;}
.h51{height:45.814500px;}
.h6{height:45.900000px;}
.h2f{height:46.656000px;}
.h15{height:47.232000px;}
.h2d{height:47.472000px;}
.h3{height:48.195000px;}
.h11{height:52.980000px;}
.h2e{height:53.406000px;}
.h27{height:53.654399px;}
.h31{height:54.625200px;}
.h33{height:54.632254px;}
.h36{height:54.639582px;}
.h32{height:54.645490px;}
.h35{height:54.646727px;}
.h37{height:54.653964px;}
.h34{height:54.697200px;}
.h2{height:55.080000px;}
.he{height:55.860000px;}
.h1a{height:55.867054px;}
.hf{height:55.867145px;}
.h2a{height:55.867191px;}
.h28{height:55.867237px;}
.h10{height:55.867790px;}
.h1f{height:55.874290px;}
.h38{height:55.874387px;}
.h1e{height:55.874473px;}
.h1c{height:55.881527px;}
.h20{height:55.881618px;}
.h1d{height:55.881710px;}
.h24{height:55.896000px;}
.h48{height:55.910382px;}
.h21{height:55.917618px;}
.h22{height:55.924946px;}
.h29{height:55.939237px;}
.h47{height:57.000000px;}
.h12{height:58.320000px;}
.hd{height:61.120200px;}
.h1b{height:62.643058px;}
.h23{height:62.658081px;}
.hc{height:67.194379px;}
.h13{height:77.142000px;}
.h5{height:78.030000px;}
.h4b{height:96.384000px;}
.h4a{height:100.656000px;}
.h4{height:119.055004px;}
.ha{height:137.088000px;}
.hb{height:137.232000px;}
.h2c{height:347.375999px;}
.h3a{height:541.024521px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:25.071000px;}
.w6{width:78.238500px;}
.w7{width:199.888504px;}
.w4{width:540.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:11.373756px;}
.x3a{left:20.485199px;}
.x4b{left:34.635315px;}
.xf{left:51.886494px;}
.x4d{left:66.576599px;}
.x5{left:84.933002px;}
.x9{left:93.732302px;}
.x50{left:100.352853px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x52{left:160.252053px;}
.xb{left:176.456703px;}
.x10{left:186.019203px;}
.xc{left:188.451903px;}
.xd{left:189.870895px;}
.x4f{left:195.539841px;}
.x66{left:198.956703px;}
.x15{left:201.407103px;}
.x4{left:203.484001px;}
.x16{left:208.767303px;}
.x17{left:218.596207px;}
.x48{left:226.284439px;}
.xe{left:228.925743px;}
.x18{left:238.469868px;}
.x46{left:239.984390px;}
.x35{left:241.020658px;}
.x20{left:243.552950px;}
.x1f{left:244.774930px;}
.x12{left:247.220744px;}
.x1e{left:250.064095px;}
.x29{left:253.425767px;}
.x13{left:256.220744px;}
.x36{left:257.236496px;}
.x22{left:258.544997px;}
.x3b{left:260.144989px;}
.x21{left:261.709377px;}
.x37{left:264.086861px;}
.x6{left:267.874054px;}
.x5a{left:269.518681px;}
.x65{left:271.472703px;}
.x39{left:273.198143px;}
.x7{left:277.624489px;}
.x64{left:280.472703px;}
.x61{left:312.116703px;}
.x5f{left:313.402359px;}
.x23{left:318.688957px;}
.x51{left:321.157059px;}
.x60{left:323.457237px;}
.x56{left:325.868672px;}
.x55{left:336.524706px;}
.x19{left:352.290000px;}
.x2f{left:359.527359px;}
.x1b{left:362.693848px;}
.x1c{left:365.146926px;}
.x2a{left:368.314339px;}
.x30{left:370.516057px;}
.x1a{left:372.124368px;}
.x1d{left:376.199457px;}
.x62{left:378.644703px;}
.x47{left:404.564850px;}
.x5b{left:416.829895px;}
.x3d{left:420.529149px;}
.x24{left:433.967834px;}
.x3e{left:443.670138px;}
.x57{left:447.766663px;}
.x3c{left:450.767853px;}
.x63{left:453.649063px;}
.x3{left:454.959000px;}
.x31{left:482.560364px;}
.x14{left:485.804744px;}
.x2b{left:489.475342px;}
.x11{left:494.804707px;}
.x45{left:499.744835px;}
.x2e{left:502.393519px;}
.x2c{left:504.266767px;}
.x2d{left:506.209167px;}
.x32{left:507.246174px;}
.x5c{left:517.709702px;}
.x5d{left:522.938588px;}
.x5e{left:526.771179px;}
.x58{left:541.234663px;}
.x3f{left:578.582840px;}
.x40{left:588.340347px;}
.x41{left:590.018289px;}
.x42{left:595.835861px;}
.x26{left:622.850387px;}
.x25{left:624.719833px;}
.x33{left:632.215347px;}
.x49{left:634.252487px;}
.x34{left:638.024310px;}
.x59{left:639.994657px;}
.x27{left:641.325988px;}
.x28{left:644.946331px;}
.x43{left:646.948831px;}
.x44{left:649.016365px;}
.x4a{left:653.335785px;}
.x54{left:656.060698px;}
.x4c{left:686.086807px;}
.x8{left:694.929886px;}
.x4e{left:712.492630px;}
.x53{left:741.068390px;}
.xa{left:747.224258px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v6{vertical-align:-9.647949pt;}
.v5{vertical-align:-7.822917pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.322667pt;}
.v8{vertical-align:16.000000pt;}
.v4{vertical-align:20.925385pt;}
.v1{vertical-align:23.466471pt;}
.v7{vertical-align:48.000000pt;}
.ls3b{letter-spacing:-3.626667pt;}
.ls2{letter-spacing:-0.933333pt;}
.lsf{letter-spacing:-0.540318pt;}
.lsd{letter-spacing:-0.385941pt;}
.ls31{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.347347pt;}
.ls2b{letter-spacing:-0.344986pt;}
.ls14{letter-spacing:-0.313600pt;}
.ls2c{letter-spacing:-0.287488pt;}
.ls11{letter-spacing:-0.270159pt;}
.ls1f{letter-spacing:-0.259392pt;}
.ls26{letter-spacing:-0.194544pt;}
.ls10{letter-spacing:-0.154377pt;}
.ls3a{letter-spacing:-0.118642pt;}
.lsa{letter-spacing:-0.115782pt;}
.ls1e{letter-spacing:-0.097272pt;}
.ls2a{letter-spacing:-0.086462pt;}
.lsb{letter-spacing:-0.077188pt;}
.ls20{letter-spacing:-0.064848pt;}
.ls38{letter-spacing:-0.043337pt;}
.ls24{letter-spacing:-0.043231pt;}
.ls22{letter-spacing:-0.039557pt;}
.lsc{letter-spacing:-0.038594pt;}
.ls1d{letter-spacing:-0.032424pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000518pt;}
.ls1a{letter-spacing:0.028749pt;}
.ls16{letter-spacing:0.032424pt;}
.ls25{letter-spacing:0.036098pt;}
.ls4{letter-spacing:0.038594pt;}
.ls36{letter-spacing:0.039547pt;}
.ls1c{letter-spacing:0.043231pt;}
.ls34{letter-spacing:0.043337pt;}
.ls17{letter-spacing:0.045143pt;}
.ls19{letter-spacing:0.057498pt;}
.ls27{letter-spacing:0.064848pt;}
.ls5{letter-spacing:0.077188pt;}
.ls1b{letter-spacing:0.086246pt;}
.ls15{letter-spacing:0.086462pt;}
.ls18{letter-spacing:0.097272pt;}
.ls6{letter-spacing:0.115782pt;}
.ls37{letter-spacing:0.130011pt;}
.ls13{letter-spacing:0.154377pt;}
.ls2e{letter-spacing:0.172493pt;}
.ls39{letter-spacing:0.173348pt;}
.ls7{letter-spacing:0.192971pt;}
.ls35{letter-spacing:0.216685pt;}
.ls2d{letter-spacing:0.287488pt;}
.ls21{letter-spacing:0.291816pt;}
.ls8{letter-spacing:0.308753pt;}
.ls29{letter-spacing:0.316237pt;}
.ls28{letter-spacing:0.324240pt;}
.lse{letter-spacing:0.347347pt;}
.ls3c{letter-spacing:0.560000pt;}
.ls2f{letter-spacing:0.731733pt;}
.ls3d{letter-spacing:0.880000pt;}
.ls1{letter-spacing:4.853333pt;}
.ls23{letter-spacing:11.153580pt;}
.ls9{letter-spacing:230.783993pt;}
.ls33{letter-spacing:1036.757333pt;}
.ls32{letter-spacing:1074.645293pt;}
.ls30{letter-spacing:1699.498667pt;}
.wsb7{word-spacing:-21.961313pt;}
.ws5{word-spacing:-18.858667pt;}
.wsd1{word-spacing:-13.014400pt;}
.ws70{word-spacing:-12.282667pt;}
.ws92{word-spacing:-11.969067pt;}
.ws104{word-spacing:-11.840533pt;}
.ws4{word-spacing:-11.680000pt;}
.ws2{word-spacing:-11.096533pt;}
.ws3{word-spacing:-11.040000pt;}
.wsb0{word-spacing:-10.894195pt;}
.ws105{word-spacing:-10.877604pt;}
.ws103{word-spacing:-10.834267pt;}
.wsc0{word-spacing:-10.807733pt;}
.ws9d{word-spacing:-10.156800pt;}
.wsda{word-spacing:-10.087467pt;}
.ws72{word-spacing:-9.995881pt;}
.ws75{word-spacing:-9.957286pt;}
.ws106{word-spacing:-9.926347pt;}
.ws79{word-spacing:-9.841504pt;}
.ws7e{word-spacing:-9.802910pt;}
.ws7b{word-spacing:-9.725722pt;}
.ws7f{word-spacing:-9.687127pt;}
.ws71{word-spacing:-9.648533pt;}
.ws12b{word-spacing:-9.640000pt;}
.ws7c{word-spacing:-9.609939pt;}
.ws7d{word-spacing:-9.571345pt;}
.ws74{word-spacing:-9.532751pt;}
.ws78{word-spacing:-9.494157pt;}
.ws76{word-spacing:-9.378374pt;}
.ws83{word-spacing:-9.344000pt;}
.ws12a{word-spacing:-9.320000pt;}
.ws7a{word-spacing:-9.301186pt;}
.ws77{word-spacing:-9.262592pt;}
.ws73{word-spacing:-9.108215pt;}
.ws6{word-spacing:-9.045333pt;}
.ws1{word-spacing:-8.993600pt;}
.wse5{word-spacing:-8.832000pt;}
.ws8{word-spacing:-8.760000pt;}
.ws3e{word-spacing:-8.597867pt;}
.wsd4{word-spacing:-8.448000pt;}
.wsb4{word-spacing:-8.397816pt;}
.ws121{word-spacing:-8.280000pt;}
.wsb9{word-spacing:-8.203272pt;}
.wsb2{word-spacing:-8.138424pt;}
.wsb5{word-spacing:-8.106000pt;}
.wsb6{word-spacing:-8.073576pt;}
.wsb8{word-spacing:-8.041152pt;}
.wsb1{word-spacing:-8.008728pt;}
.wsb3{word-spacing:-7.846608pt;}
.ws81{word-spacing:-7.680000pt;}
.wsbc{word-spacing:-7.503437pt;}
.wsbf{word-spacing:-7.474688pt;}
.wsbb{word-spacing:-7.273446pt;}
.wsba{word-spacing:-7.244698pt;}
.ws18{word-spacing:-7.242667pt;}
.wsbe{word-spacing:-6.899712pt;}
.wsbd{word-spacing:-6.842214pt;}
.ws7{word-spacing:-6.132000pt;}
.wsc3{word-spacing:-5.749333pt;}
.ws12{word-spacing:-4.090667pt;}
.ws120{word-spacing:-4.010667pt;}
.ws11{word-spacing:-1.866667pt;}
.ws126{word-spacing:-1.792000pt;}
.ws12d{word-spacing:-1.400000pt;}
.ws55{word-spacing:-0.836267pt;}
.wsdf{word-spacing:-0.731733pt;}
.wsc1{word-spacing:-0.679467pt;}
.ws12c{word-spacing:-0.560000pt;}
.ws1f{word-spacing:-0.470400pt;}
.ws4c{word-spacing:-0.418133pt;}
.ws52{word-spacing:-0.365867pt;}
.wscd{word-spacing:-0.324240pt;}
.ws64{word-spacing:-0.313600pt;}
.ws90{word-spacing:-0.308753pt;}
.wsc9{word-spacing:-0.291816pt;}
.wsde{word-spacing:-0.261333pt;}
.ws10a{word-spacing:-0.216685pt;}
.ws91{word-spacing:-0.192971pt;}
.ws10b{word-spacing:-0.173348pt;}
.wscf{word-spacing:-0.172493pt;}
.ws32{word-spacing:-0.156800pt;}
.ws108{word-spacing:-0.130011pt;}
.ws8c{word-spacing:-0.115782pt;}
.wsc6{word-spacing:-0.097272pt;}
.ws89{word-spacing:-0.077188pt;}
.wscb{word-spacing:-0.064848pt;}
.wsd0{word-spacing:-0.052284pt;}
.ws29{word-spacing:-0.052267pt;}
.wsc4{word-spacing:-0.043231pt;}
.ws129{word-spacing:-0.040000pt;}
.ws88{word-spacing:-0.038594pt;}
.wsc7{word-spacing:-0.032424pt;}
.ws0{word-spacing:0.000000pt;}
.wscc{word-spacing:0.032424pt;}
.ws8b{word-spacing:0.038594pt;}
.ws109{word-spacing:0.043337pt;}
.wsc8{word-spacing:0.064848pt;}
.ws8a{word-spacing:0.077188pt;}
.wsce{word-spacing:0.086462pt;}
.wsc5{word-spacing:0.097272pt;}
.ws99{word-spacing:0.104533pt;}
.ws8d{word-spacing:0.115782pt;}
.ws10c{word-spacing:0.118642pt;}
.ws8f{word-spacing:0.154377pt;}
.ws34{word-spacing:0.156800pt;}
.wsca{word-spacing:0.194544pt;}
.ws5e{word-spacing:0.209067pt;}
.ws50{word-spacing:0.261333pt;}
.ws21{word-spacing:0.313600pt;}
.wsb{word-spacing:0.365867pt;}
.ws8e{word-spacing:0.385941pt;}
.wsa8{word-spacing:0.418133pt;}
.ws44{word-spacing:0.470400pt;}
.ws25{word-spacing:0.574933pt;}
.ws31{word-spacing:0.627200pt;}
.wsc2{word-spacing:0.679467pt;}
.ws84{word-spacing:0.731733pt;}
.ws1a{word-spacing:0.784000pt;}
.ws23{word-spacing:0.836267pt;}
.wsa1{word-spacing:0.940800pt;}
.ws6a{word-spacing:0.993067pt;}
.wse3{word-spacing:1.045333pt;}
.ws19{word-spacing:1.097600pt;}
.ws17{word-spacing:1.194667pt;}
.ws53{word-spacing:1.202133pt;}
.wse4{word-spacing:1.248000pt;}
.wsc{word-spacing:1.306667pt;}
.ws13{word-spacing:1.456000pt;}
.wse0{word-spacing:1.463467pt;}
.ws68{word-spacing:1.515733pt;}
.ws35{word-spacing:1.672533pt;}
.ws27{word-spacing:1.777067pt;}
.ws15{word-spacing:1.792000pt;}
.ws2d{word-spacing:1.829333pt;}
.wsd{word-spacing:1.881600pt;}
.wsf{word-spacing:1.933867pt;}
.ws4b{word-spacing:1.986133pt;}
.ws16{word-spacing:2.016000pt;}
.wsa2{word-spacing:2.038400pt;}
.ws26{word-spacing:2.090667pt;}
.ws2a{word-spacing:2.142933pt;}
.wse1{word-spacing:2.195200pt;}
.ws65{word-spacing:2.247467pt;}
.ws67{word-spacing:2.299733pt;}
.ws2b{word-spacing:2.404267pt;}
.ws20{word-spacing:2.456533pt;}
.ws5f{word-spacing:2.508800pt;}
.ws63{word-spacing:2.561067pt;}
.ws14{word-spacing:2.576000pt;}
.ws2f{word-spacing:2.613333pt;}
.ws6f{word-spacing:2.665600pt;}
.ws30{word-spacing:2.717867pt;}
.wsa3{word-spacing:2.770133pt;}
.ws51{word-spacing:2.979200pt;}
.ws87{word-spacing:3.031467pt;}
.ws45{word-spacing:3.083733pt;}
.ws41{word-spacing:3.136000pt;}
.ws1b{word-spacing:3.188267pt;}
.ws38{word-spacing:3.292800pt;}
.ws37{word-spacing:3.397333pt;}
.ws28{word-spacing:3.449600pt;}
.ws5d{word-spacing:3.554133pt;}
.ws33{word-spacing:3.606400pt;}
.ws127{word-spacing:3.626667pt;}
.ws62{word-spacing:3.710933pt;}
.ws6c{word-spacing:3.815467pt;}
.ws54{word-spacing:3.920000pt;}
.ws58{word-spacing:4.088000pt;}
.wse2{word-spacing:4.129067pt;}
.wsaa{word-spacing:4.181333pt;}
.ws46{word-spacing:4.233600pt;}
.ws4a{word-spacing:4.285867pt;}
.ws66{word-spacing:4.338133pt;}
.ws3f{word-spacing:4.390400pt;}
.ws9e{word-spacing:4.442667pt;}
.ws61{word-spacing:4.494933pt;}
.ws47{word-spacing:4.599467pt;}
.ws9f{word-spacing:4.651733pt;}
.wsa{word-spacing:4.704000pt;}
.ws36{word-spacing:4.808533pt;}
.ws69{word-spacing:4.913067pt;}
.ws94{word-spacing:4.965333pt;}
.ws9b{word-spacing:5.017600pt;}
.ws48{word-spacing:5.069867pt;}
.wsa6{word-spacing:5.174400pt;}
.ws9c{word-spacing:5.226667pt;}
.wsdc{word-spacing:5.278933pt;}
.ws97{word-spacing:5.383467pt;}
.ws49{word-spacing:5.592533pt;}
.ws4d{word-spacing:5.644800pt;}
.wsa0{word-spacing:5.697067pt;}
.ws22{word-spacing:5.749333pt;}
.ws1e{word-spacing:5.801600pt;}
.ws24{word-spacing:5.853867pt;}
.ws3a{word-spacing:5.906133pt;}
.ws60{word-spacing:6.010667pt;}
.wse{word-spacing:6.167467pt;}
.ws96{word-spacing:6.272000pt;}
.ws5b{word-spacing:6.428800pt;}
.ws6b{word-spacing:6.585600pt;}
.wsab{word-spacing:6.637867pt;}
.ws93{word-spacing:6.690133pt;}
.wsa4{word-spacing:6.742400pt;}
.ws3b{word-spacing:6.846933pt;}
.ws98{word-spacing:6.899200pt;}
.wsac{word-spacing:6.951467pt;}
.ws85{word-spacing:7.003733pt;}
.wsa7{word-spacing:7.056000pt;}
.wsa9{word-spacing:7.160533pt;}
.ws42{word-spacing:7.265067pt;}
.ws1d{word-spacing:7.317333pt;}
.ws4f{word-spacing:7.526400pt;}
.wsad{word-spacing:7.630933pt;}
.ws9a{word-spacing:7.683200pt;}
.ws39{word-spacing:7.735467pt;}
.ws43{word-spacing:7.840000pt;}
.ws6d{word-spacing:8.049067pt;}
.ws4e{word-spacing:8.258133pt;}
.ws5c{word-spacing:8.519467pt;}
.ws6e{word-spacing:8.624000pt;}
.ws56{word-spacing:8.676267pt;}
.ws2e{word-spacing:8.728533pt;}
.wsed{word-spacing:8.736000pt;}
.ws125{word-spacing:8.880000pt;}
.ws1c{word-spacing:8.937600pt;}
.ws3c{word-spacing:9.042133pt;}
.ws10{word-spacing:9.094400pt;}
.ws57{word-spacing:9.355733pt;}
.wsae{word-spacing:10.139733pt;}
.wsd8{word-spacing:10.401067pt;}
.wsdb{word-spacing:10.505600pt;}
.wsdd{word-spacing:11.080533pt;}
.ws95{word-spacing:11.132800pt;}
.ws40{word-spacing:11.185067pt;}
.ws5a{word-spacing:11.550933pt;}
.wsa5{word-spacing:11.655467pt;}
.wsaf{word-spacing:11.864533pt;}
.ws59{word-spacing:11.916800pt;}
.ws3d{word-spacing:12.962133pt;}
.wseb{word-spacing:13.955200pt;}
.ws2c{word-spacing:14.843733pt;}
.ws86{word-spacing:15.209600pt;}
.ws9{word-spacing:16.370133pt;}
.ws107{word-spacing:16.560000pt;}
.ws11f{word-spacing:20.592000pt;}
.wsf9{word-spacing:21.552000pt;}
.wsec{word-spacing:24.816000pt;}
.ws11e{word-spacing:29.909333pt;}
.wsff{word-spacing:50.773333pt;}
.wsf3{word-spacing:60.501333pt;}
.ws118{word-spacing:63.744000pt;}
.ws122{word-spacing:64.085327pt;}
.wsd9{word-spacing:74.375467pt;}
.ws10f{word-spacing:89.860267pt;}
.ws117{word-spacing:94.848000pt;}
.ws10e{word-spacing:100.736000pt;}
.ws10d{word-spacing:104.362667pt;}
.wsfd{word-spacing:106.581333pt;}
.ws112{word-spacing:109.952000pt;}
.ws113{word-spacing:115.669333pt;}
.ws110{word-spacing:119.998435pt;}
.wsf8{word-spacing:123.136000pt;}
.wsfa{word-spacing:144.042667pt;}
.ws80{word-spacing:146.559993pt;}
.ws11a{word-spacing:146.858667pt;}
.wsf1{word-spacing:152.362667pt;}
.ws114{word-spacing:152.661333pt;}
.wsf4{word-spacing:158.724267pt;}
.ws102{word-spacing:169.216000pt;}
.wsf0{word-spacing:180.309333pt;}
.wsf2{word-spacing:181.290667pt;}
.ws115{word-spacing:187.562667pt;}
.wsee{word-spacing:192.256000pt;}
.ws11b{word-spacing:193.365333pt;}
.ws116{word-spacing:194.474667pt;}
.ws101{word-spacing:199.381333pt;}
.ws82{word-spacing:200.669867pt;}
.wsf7{word-spacing:201.130667pt;}
.wsfe{word-spacing:204.804267pt;}
.wsf6{word-spacing:207.658667pt;}
.wsfc{word-spacing:227.370667pt;}
.ws11c{word-spacing:233.045333pt;}
.wsf5{word-spacing:236.245333pt;}
.ws11d{word-spacing:239.957333pt;}
.ws100{word-spacing:253.738667pt;}
.wsfb{word-spacing:269.653333pt;}
.ws111{word-spacing:272.469333pt;}
.wsef{word-spacing:296.362667pt;}
.ws119{word-spacing:302.677322pt;}
.wse7{word-spacing:360.874656pt;}
.ws124{word-spacing:542.126933pt;}
.ws128{word-spacing:598.741333pt;}
.ws123{word-spacing:667.946667pt;}
.wse9{word-spacing:770.346657pt;}
.wse6{word-spacing:808.234667pt;}
.wsea{word-spacing:888.789324pt;}
.wse8{word-spacing:926.677333pt;}
.wsd2{word-spacing:1420.245327pt;}
.wsd7{word-spacing:1556.736000pt;}
.wsd5{word-spacing:1585.749333pt;}
.wsd3{word-spacing:1620.565333pt;}
.wsd6{word-spacing:1656.576000pt;}
._2f{margin-left:-24.677333pt;}
._26{margin-left:-22.788267pt;}
._4d{margin-left:-21.413333pt;}
._62{margin-left:-20.453333pt;}
._27{margin-left:-17.940267pt;}
._29{margin-left:-16.150400pt;}
._25{margin-left:-13.419761pt;}
._2b{margin-left:-12.528001pt;}
._e{margin-left:-11.096533pt;}
._10{margin-left:-10.008000pt;}
._3{margin-left:-8.192000pt;}
._4e{margin-left:-7.248000pt;}
._28{margin-left:-5.658673pt;}
._2{margin-left:-4.569600pt;}
._7{margin-left:-3.306667pt;}
._4{margin-left:-2.316800pt;}
._0{margin-left:-1.292800pt;}
._1{width:1.267200pt;}
._5{width:2.278827pt;}
._b{width:3.544747pt;}
._a{width:5.415894pt;}
._c{width:6.691200pt;}
._9{width:8.132160pt;}
._6{width:9.042133pt;}
._20{width:10.935462pt;}
._17{width:12.727467pt;}
._d{width:14.227733pt;}
._8{width:15.319456pt;}
._5b{width:16.659733pt;}
._63{width:19.900272pt;}
._4f{width:21.086400pt;}
._14{width:23.388039pt;}
._13{width:24.468681pt;}
._15{width:25.780882pt;}
._f{width:27.466667pt;}
._24{width:30.940800pt;}
._22{width:32.654938pt;}
._51{width:33.756300pt;}
._6b{width:34.743467pt;}
._23{width:36.089600pt;}
._21{width:38.410677pt;}
._2a{width:43.514668pt;}
._2d{width:44.741335pt;}
._2c{width:49.221335pt;}
._67{width:58.756262pt;}
._5d{width:63.159467pt;}
._11{width:82.321286pt;}
._60{width:84.245333pt;}
._16{width:91.969820pt;}
._12{width:98.144881pt;}
._53{width:111.372800pt;}
._5e{width:112.597333pt;}
._50{width:116.194133pt;}
._1d{width:118.015993pt;}
._69{width:125.440000pt;}
._58{width:132.458667pt;}
._74{width:139.413333pt;}
._68{width:144.128000pt;}
._56{width:160.810667pt;}
._5c{width:162.274133pt;}
._6e{width:167.765333pt;}
._6d{width:177.408000pt;}
._5f{width:183.808000pt;}
._59{width:190.080000pt;}
._6a{width:202.009600pt;}
._19{width:205.508267pt;}
._54{width:220.800000pt;}
._3e{width:228.151467pt;}
._61{width:230.916257pt;}
._57{width:232.021333pt;}
._55{width:239.615980pt;}
._65{width:242.389333pt;}
._66{width:247.637333pt;}
._5a{width:262.318926pt;}
._30{width:266.039456pt;}
._41{width:282.265590pt;}
._4b{width:310.229324pt;}
._40{width:311.735467pt;}
._71{width:316.130133pt;}
._33{width:320.153600pt;}
._75{width:325.120000pt;}
._52{width:326.570647pt;}
._64{width:329.344000pt;}
._4a{width:332.821333pt;}
._3c{width:348.633600pt;}
._32{width:349.623456pt;}
._1f{width:351.702579pt;}
._43{width:361.173333pt;}
._72{width:376.588820pt;}
._70{width:388.620800pt;}
._35{width:399.061323pt;}
._6f{width:423.552000pt;}
._47{width:432.384000pt;}
._39{width:470.271989pt;}
._73{width:474.112000pt;}
._42{width:482.815990pt;}
._1c{width:512.512000pt;}
._34{width:520.704000pt;}
._1e{width:530.261333pt;}
._1b{width:545.664000pt;}
._1a{width:563.682133pt;}
._6c{width:576.695467pt;}
._76{width:593.152000pt;}
._46{width:621.538124pt;}
._4c{width:630.527990pt;}
._38{width:659.426133pt;}
._18{width:663.850667pt;}
._3d{width:668.416000pt;}
._48{width:681.343990pt;}
._45{width:694.028790pt;}
._3a{width:719.232000pt;}
._44{width:728.959990pt;}
._37{width:731.916800pt;}
._49{width:737.749324pt;}
._36{width:766.848000pt;}
._3b{width:775.637333pt;}
._3f{width:882.103437pt;}
._31{width:919.991458pt;}
._2e{width:1418.325327pt;}
.fsf{font-size:27.253333pt;}
.fsd{font-size:28.000000pt;}
.fs18{font-size:28.748800pt;}
.fs15{font-size:32.424000pt;}
.fs17{font-size:36.098133pt;}
.fse{font-size:36.586667pt;}
.fs4{font-size:37.333333pt;}
.fs12{font-size:38.594133pt;}
.fs10{font-size:38.933333pt;}
.fs1d{font-size:39.547200pt;}
.fs16{font-size:39.556800pt;}
.fs1a{font-size:39.735466pt;}
.fsc{font-size:40.000000pt;}
.fs7{font-size:41.066666pt;}
.fsb{font-size:42.666667pt;}
.fs14{font-size:43.230932pt;}
.fs1b{font-size:43.337067pt;}
.fs1c{font-size:47.362132pt;}
.fs13{font-size:48.000000pt;}
.fs11{font-size:49.066666pt;}
.fs9{font-size:52.266667pt;}
.fs19{font-size:52.284267pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:128.000000pt;}
.y17b{bottom:-0.000407pt;}
.y0{bottom:0.000000pt;}
.yf6{bottom:2.957194pt;}
.y159{bottom:3.542399pt;}
.y19e{bottom:4.307454pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y4d{bottom:67.374933pt;}
.y4c{bottom:78.042933pt;}
.y4{bottom:86.333337pt;}
.yb9{bottom:88.410665pt;}
.y4b{bottom:88.710933pt;}
.y33a{bottom:88.877848pt;}
.y2e9{bottom:94.031453pt;}
.y8d{bottom:96.640798pt;}
.yea{bottom:96.752267pt;}
.y230{bottom:96.821065pt;}
.ye3{bottom:96.840800pt;}
.y4a{bottom:99.378933pt;}
.y339{bottom:100.877848pt;}
.y267{bottom:100.966667pt;}
.y14a{bottom:101.035998pt;}
.yb8{bottom:102.970662pt;}
.y2e8{bottom:106.031453pt;}
.y156{bottom:107.306533pt;}
.y49{bottom:110.046933pt;}
.y22f{bottom:110.154399pt;}
.y338{bottom:112.877848pt;}
.y1b8{bottom:112.920133pt;}
.y8c{bottom:115.494663pt;}
.ye9{bottom:115.620533pt;}
.y121{bottom:115.701053pt;}
.ye2{bottom:115.705871pt;}
.y266{bottom:117.094667pt;}
.y2e7{bottom:118.031453pt;}
.y149{bottom:119.904265pt;}
.y48{bottom:120.714933pt;}
.y23{bottom:123.790666pt;}
.y337{bottom:124.877848pt;}
.y155{bottom:126.174800pt;}
.y2e6{bottom:130.031453pt;}
.y47{bottom:131.382933pt;}
.y1b7{bottom:131.788400pt;}
.y264{bottom:133.233333pt;}
.y8b{bottom:134.362929pt;}
.ye8{bottom:134.488800pt;}
.y120{bottom:134.569320pt;}
.ye1{bottom:134.574137pt;}
.y336{bottom:136.877848pt;}
.y22a{bottom:137.270668pt;}
.y148{bottom:138.772531pt;}
.y228{bottom:139.039491pt;}
.y2e5{bottom:142.031453pt;}
.y154{bottom:145.043067pt;}
.y263{bottom:145.233333pt;}
.y335{bottom:148.877848pt;}
.y1b6{bottom:150.656666pt;}
.y229{bottom:151.561066pt;}
.y265{bottom:153.094667pt;}
.y8a{bottom:153.231196pt;}
.ye7{bottom:153.350665pt;}
.ye0{bottom:153.423188pt;}
.yb7{bottom:153.431208pt;}
.y11f{bottom:153.437587pt;}
.y227{bottom:153.449066pt;}
.y2e4{bottom:154.031453pt;}
.y262{bottom:157.233333pt;}
.y147{bottom:157.640798pt;}
.y334{bottom:160.877848pt;}
.y153{bottom:163.911333pt;}
.y2e3{bottom:166.031453pt;}
.y261{bottom:169.233333pt;}
.y1b5{bottom:169.524933pt;}
.y89{bottom:172.099463pt;}
.ye6{bottom:172.218931pt;}
.ydf{bottom:172.291454pt;}
.yb6{bottom:172.299475pt;}
.y11e{bottom:172.305853pt;}
.y333{bottom:172.877848pt;}
.y30{bottom:174.245197pt;}
.y1a{bottom:175.052000pt;}
.y146{bottom:176.501075pt;}
.y2e2{bottom:178.031453pt;}
.y152{bottom:182.779600pt;}
.y332{bottom:184.877848pt;}
.y25f{bottom:185.372000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y1b4{bottom:188.389993pt;}
.y2e1{bottom:190.031453pt;}
.y88{bottom:190.967729pt;}
.ye5{bottom:191.087198pt;}
.yde{bottom:191.159721pt;}
.yb5{bottom:191.167741pt;}
.y11d{bottom:191.174120pt;}
.y2f{bottom:193.113463pt;}
.y145{bottom:195.369341pt;}
.y331{bottom:196.877848pt;}
.y25e{bottom:197.372000pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y151{bottom:201.647867pt;}
.y2e0{bottom:202.031453pt;}
.y1b3{bottom:207.258260pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y330{bottom:208.877848pt;}
.y25d{bottom:209.372000pt;}
.y87{bottom:209.835996pt;}
.ye4{bottom:209.955465pt;}
.ydd{bottom:210.027988pt;}
.yb4{bottom:210.036008pt;}
.y11c{bottom:210.042387pt;}
.y2bb{bottom:210.150683pt;}
.y2e{bottom:211.981730pt;}
.y2df{bottom:214.031453pt;}
.y144{bottom:214.237608pt;}
.y22c{bottom:214.800254pt;}
.y22e{bottom:215.621634pt;}
.y150{bottom:220.512939pt;}
.y32f{bottom:220.877848pt;}
.y25c{bottom:221.372000pt;}
.y2ba{bottom:222.150683pt;}
.y1c5{bottom:223.552265pt;}
.y2de{bottom:226.031453pt;}
.y1b2{bottom:226.113743pt;}
.y22d{bottom:227.199076pt;}
.y22b{bottom:227.324666pt;}
.y86{bottom:228.704263pt;}
.ydc{bottom:228.896254pt;}
.yb3{bottom:228.904275pt;}
.y11b{bottom:228.910653pt;}
.y260{bottom:229.233333pt;}
.y2d{bottom:230.846800pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y32e{bottom:232.877848pt;}
.y143{bottom:233.105875pt;}
.y25b{bottom:233.372000pt;}
.y2b9{bottom:234.150683pt;}
.y2dd{bottom:238.031453pt;}
.y14f{bottom:239.381205pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1c4{bottom:242.420531pt;}
.y32d{bottom:244.877848pt;}
.y1b1{bottom:244.982010pt;}
.y25a{bottom:245.372000pt;}
.y2b8{bottom:246.150683pt;}
.y85{bottom:247.572529pt;}
.ydb{bottom:247.764521pt;}
.yb2{bottom:247.772541pt;}
.y11a{bottom:247.778920pt;}
.y2c{bottom:249.715067pt;}
.y2dc{bottom:250.031453pt;}
.y142{bottom:251.974141pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y32c{bottom:256.877848pt;}
.y2b7{bottom:258.150683pt;}
.y14e{bottom:258.244667pt;}
.y1c3{bottom:261.288798pt;}
.y259{bottom:261.500000pt;}
.y2db{bottom:262.031453pt;}
.y1b0{bottom:263.850276pt;}
.y84{bottom:266.440796pt;}
.yda{bottom:266.632788pt;}
.yb1{bottom:266.640808pt;}
.y119{bottom:266.647187pt;}
.y2b{bottom:268.580138pt;}
.y32b{bottom:268.877848pt;}
.y10c{bottom:269.938682pt;}
.y141{bottom:270.837604pt;}
.y2da{bottom:274.031453pt;}
.y2b6{bottom:274.278683pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y14d{bottom:277.112933pt;}
.y257{bottom:277.628000pt;}
.y32a{bottom:280.877848pt;}
.y10b{bottom:281.938682pt;}
.y1af{bottom:282.718543pt;}
.y83{bottom:285.302671pt;}
.y258{bottom:285.500000pt;}
.yd9{bottom:285.501054pt;}
.yb0{bottom:285.502663pt;}
.y118{bottom:285.515453pt;}
.y2d9{bottom:286.031453pt;}
.y2b5{bottom:286.278683pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y2a{bottom:287.448405pt;}
.y256{bottom:289.628000pt;}
.y140{bottom:289.705871pt;}
.y226{bottom:291.505811pt;}
.y329{bottom:292.877848pt;}
.y14c{bottom:295.981200pt;}
.y2d8{bottom:298.031453pt;}
.y10a{bottom:298.141349pt;}
.y2b4{bottom:298.278683pt;}
.y1ae{bottom:301.586810pt;}
.y255{bottom:301.628000pt;}
.y82{bottom:304.170937pt;}
.yd8{bottom:304.369321pt;}
.yaf{bottom:304.370929pt;}
.y117{bottom:304.383720pt;}
.y328{bottom:304.877848pt;}
.y29{bottom:306.315063pt;}
.y1e8{bottom:306.621349pt;}
.y225{bottom:306.738790pt;}
.y13f{bottom:308.574137pt;}
.y11{bottom:309.452000pt;}
.y2d7{bottom:310.031453pt;}
.y109{bottom:310.141349pt;}
.y2b3{bottom:310.278683pt;}
.y14b{bottom:314.847860pt;}
.y327{bottom:316.877848pt;}
.y254{bottom:317.756000pt;}
.y1ad{bottom:320.455076pt;}
.y253{bottom:321.884000pt;}
.y2d6{bottom:322.031453pt;}
.y108{bottom:322.141349pt;}
.y2b2{bottom:322.278683pt;}
.y1e7{bottom:322.824015pt;}
.y81{bottom:323.039204pt;}
.yd7{bottom:323.237588pt;}
.yae{bottom:323.239196pt;}
.y116{bottom:323.251987pt;}
.y13e{bottom:327.436012pt;}
.y326{bottom:328.877848pt;}
.y252{bottom:333.884000pt;}
.y2d5{bottom:334.031453pt;}
.y107{bottom:334.141349pt;}
.y2b1{bottom:334.278683pt;}
.y1e6{bottom:338.952015pt;}
.y1ac{bottom:339.323343pt;}
.y325{bottom:340.877848pt;}
.y45{bottom:341.281738pt;}
.y80{bottom:341.907471pt;}
.yd6{bottom:342.105854pt;}
.yad{bottom:342.107463pt;}
.y115{bottom:342.120253pt;}
.y10{bottom:343.809333pt;}
.y20e{bottom:345.393333pt;}
.y2d4{bottom:346.031453pt;}
.y2b0{bottom:346.278683pt;}
.y13d{bottom:346.304279pt;}
.y250{bottom:350.022667pt;}
.y106{bottom:350.269349pt;}
.y324{bottom:352.877848pt;}
.y1e5{bottom:355.080015pt;}
.y44{bottom:357.281738pt;}
.y251{bottom:357.884000pt;}
.y2d3{bottom:358.031453pt;}
.y1ab{bottom:358.191610pt;}
.y2af{bottom:358.278683pt;}
.y7f{bottom:360.774129pt;}
.yac{bottom:360.972554pt;}
.yd5{bottom:360.974121pt;}
.y114{bottom:360.988520pt;}
.y20d{bottom:361.596000pt;}
.y24f{bottom:362.022667pt;}
.yf{bottom:362.706666pt;}
.y323{bottom:364.877848pt;}
.y13c{bottom:365.172546pt;}
.y105{bottom:366.397349pt;}
.y2d2{bottom:370.031453pt;}
.y1e4{bottom:371.208015pt;}
.y24e{bottom:374.022667pt;}
.y2ae{bottom:374.406683pt;}
.y27c{bottom:375.423991pt;}
.y322{bottom:376.877848pt;}
.y1aa{bottom:377.056660pt;}
.y20c{bottom:377.724000pt;}
.y104{bottom:378.397349pt;}
.y43{bottom:378.615072pt;}
.y7e{bottom:379.637612pt;}
.yd4{bottom:379.823212pt;}
.yab{bottom:379.840820pt;}
.y113{bottom:379.856787pt;}
.y2d1{bottom:382.031453pt;}
.y13b{bottom:384.040812pt;}
.y2ad{bottom:386.406683pt;}
.y1e3{bottom:387.346682pt;}
.y321{bottom:388.877848pt;}
.y20b{bottom:389.724000pt;}
.y24d{bottom:390.150667pt;}
.y224{bottom:393.372000pt;}
.y2d0{bottom:394.031453pt;}
.y27b{bottom:394.290649pt;}
.y103{bottom:394.525349pt;}
.y42{bottom:394.615072pt;}
.y1a9{bottom:395.924927pt;}
.y2ac{bottom:398.406683pt;}
.y7d{bottom:398.505879pt;}
.yd3{bottom:398.691479pt;}
.yaa{bottom:398.704263pt;}
.y112{bottom:398.725053pt;}
.y320{bottom:400.877848pt;}
.y13a{bottom:402.907471pt;}
.y1e2{bottom:403.474682pt;}
.y20a{bottom:405.852000pt;}
.y2cf{bottom:406.031453pt;}
.y24b{bottom:406.278667pt;}
.y102{bottom:406.525349pt;}
.y223{bottom:409.574667pt;}
.y2ab{bottom:410.406683pt;}
.y41{bottom:410.615072pt;}
.y31f{bottom:412.877848pt;}
.y1a8{bottom:414.791585pt;}
.y7c{bottom:417.374146pt;}
.yd2{bottom:417.559746pt;}
.ya9{bottom:417.572529pt;}
.y111{bottom:417.593320pt;}
.y209{bottom:417.852000pt;}
.y2ce{bottom:418.031453pt;}
.y24a{bottom:418.278667pt;}
.y101{bottom:418.525349pt;}
.y1e1{bottom:419.602682pt;}
.y199{bottom:420.167725pt;}
.y139{bottom:421.758129pt;}
.y2aa{bottom:422.406683pt;}
.y31e{bottom:424.877848pt;}
.y222{bottom:425.702667pt;}
.y24c{bottom:426.150667pt;}
.y40{bottom:426.615072pt;}
.y208{bottom:429.852000pt;}
.y2cd{bottom:430.031453pt;}
.y249{bottom:430.278667pt;}
.y100{bottom:430.525349pt;}
.ye{bottom:430.990669pt;}
.y198{bottom:433.501058pt;}
.y2a9{bottom:434.406683pt;}
.y1e0{bottom:435.730682pt;}
.y7b{bottom:436.236020pt;}
.yd1{bottom:436.428012pt;}
.ya8{bottom:436.440796pt;}
.y110{bottom:436.461587pt;}
.y31d{bottom:436.877848pt;}
.y221{bottom:437.702667pt;}
.y138{bottom:440.626396pt;}
.y207{bottom:441.852000pt;}
.y2cc{bottom:442.031453pt;}
.y248{bottom:442.278667pt;}
.y3f{bottom:442.615072pt;}
.y2a8{bottom:446.406683pt;}
.yff{bottom:446.664015pt;}
.y158{bottom:446.968018pt;}
.yd{bottom:446.990669pt;}
.y27a{bottom:448.490682pt;}
.y31c{bottom:448.877848pt;}
.y1df{bottom:451.858682pt;}
.y220{bottom:453.841333pt;}
.y2cb{bottom:454.031453pt;}
.y7a{bottom:455.104287pt;}
.yd0{bottom:455.296279pt;}
.ya7{bottom:455.299454pt;}
.y10f{bottom:455.329853pt;}
.y206{bottom:457.990667pt;}
.y246{bottom:458.406667pt;}
.y2a7{bottom:458.406683pt;}
.y3e{bottom:458.615072pt;}
.yfe{bottom:458.664015pt;}
.y137{bottom:459.494663pt;}
.y279{bottom:460.490682pt;}
.y31b{bottom:460.877848pt;}
.yc{bottom:462.990669pt;}
.y21f{bottom:465.841333pt;}
.y2ca{bottom:466.031453pt;}
.y247{bottom:466.278667pt;}
.y1de{bottom:467.997349pt;}
.y205{bottom:469.990667pt;}
.y245{bottom:470.406667pt;}
.y2a6{bottom:470.406683pt;}
.y181{bottom:472.158698pt;}
.y278{bottom:472.490682pt;}
.y31a{bottom:472.877848pt;}
.y79{bottom:473.972554pt;}
.ycf{bottom:474.164546pt;}
.ya6{bottom:474.167721pt;}
.y10e{bottom:474.198120pt;}
.y3d{bottom:474.615072pt;}
.yfd{bottom:474.792015pt;}
.y21e{bottom:477.841333pt;}
.y2c9{bottom:478.031453pt;}
.y136{bottom:478.362929pt;}
.yb{bottom:478.990666pt;}
.y189{bottom:479.171753pt;}
.y180{bottom:480.833649pt;}
.y185{bottom:482.099340pt;}
.y244{bottom:482.406667pt;}
.y1a7{bottom:483.973592pt;}
.y1dd{bottom:484.125349pt;}
.y319{bottom:484.877848pt;}
.y204{bottom:486.129333pt;}
.y2a5{bottom:486.534683pt;}
.yfc{bottom:486.792015pt;}
.y277{bottom:488.490682pt;}
.y17f{bottom:489.106116pt;}
.y2c8{bottom:490.031453pt;}
.y3c{bottom:490.615072pt;}
.y78{bottom:492.840820pt;}
.yce{bottom:493.032812pt;}
.ya5{bottom:493.035988pt;}
.y10d{bottom:493.064819pt;}
.y21d{bottom:493.980000pt;}
.ya{bottom:494.990666pt;}
.y276{bottom:496.490641pt;}
.y318{bottom:496.877848pt;}
.y135{bottom:497.231196pt;}
.y17e{bottom:497.321086pt;}
.y203{bottom:498.129333pt;}
.y242{bottom:498.534667pt;}
.y2a4{bottom:498.534683pt;}
.y1dc{bottom:500.253349pt;}
.y1a6{bottom:500.640259pt;}
.y184{bottom:500.936992pt;}
.y188{bottom:501.861093pt;}
.y2c7{bottom:502.031453pt;}
.yfb{bottom:502.920015pt;}
.y21c{bottom:505.980000pt;}
.y243{bottom:506.406667pt;}
.y3b{bottom:506.615072pt;}
.y317{bottom:508.877848pt;}
.y183{bottom:510.474406pt;}
.y241{bottom:510.534667pt;}
.y2a3{bottom:510.534683pt;}
.y77{bottom:511.704263pt;}
.ycd{bottom:511.901079pt;}
.ya4{bottom:511.904254pt;}
.y187{bottom:512.658285pt;}
.y2c6{bottom:514.031453pt;}
.y202{bottom:514.268000pt;}
.yfa{bottom:514.920015pt;}
.y134{bottom:516.099463pt;}
.y275{bottom:516.490641pt;}
.y17d{bottom:517.079753pt;}
.y1a5{bottom:517.306925pt;}
.y316{bottom:520.877848pt;}
.y21b{bottom:522.118667pt;}
.y240{bottom:522.534667pt;}
.y2a2{bottom:522.534683pt;}
.y3a{bottom:522.615072pt;}
.y5e{bottom:523.415080pt;}
.y1db{bottom:524.157349pt;}
.y2c5{bottom:526.031453pt;}
.y201{bottom:526.268000pt;}
.y274{bottom:528.490641pt;}
.y182{bottom:530.177083pt;}
.y76{bottom:530.572529pt;}
.ycc{bottom:530.769346pt;}
.ya3{bottom:530.772521pt;}
.y315{bottom:532.877848pt;}
.y186{bottom:533.163737pt;}
.y2a1{bottom:534.534683pt;}
.y133{bottom:534.967729pt;}
.y5d{bottom:535.415080pt;}
.y2c4{bottom:538.031453pt;}
.y21a{bottom:538.257333pt;}
.y39{bottom:538.615072pt;}
.y23f{bottom:538.673333pt;}
.yf9{bottom:538.824015pt;}
.y200{bottom:542.396000pt;}
.y314{bottom:544.877848pt;}
.y1da{bottom:545.771343pt;}
.y2a0{bottom:546.534683pt;}
.y5c{bottom:547.415080pt;}
.y273{bottom:548.490641pt;}
.y75{bottom:549.440796pt;}
.ya2{bottom:549.632788pt;}
.ycb{bottom:549.637612pt;}
.y2c3{bottom:550.031453pt;}
.y219{bottom:550.257333pt;}
.y122{bottom:550.411336pt;}
.y1a4{bottom:550.640259pt;}
.y132{bottom:553.835996pt;}
.y1ff{bottom:554.396000pt;}
.y38{bottom:554.615072pt;}
.y23d{bottom:554.812000pt;}
.y313{bottom:556.877848pt;}
.y29f{bottom:558.534683pt;}
.y5b{bottom:559.415080pt;}
.yf8{bottom:560.335327pt;}
.y1d9{bottom:560.435343pt;}
.y272{bottom:560.490641pt;}
.y2c2{bottom:562.031453pt;}
.y195{bottom:564.463805pt;}
.y218{bottom:566.385333pt;}
.y23c{bottom:566.812000pt;}
.y74{bottom:568.302671pt;}
.ya1{bottom:568.501054pt;}
.yca{bottom:568.505879pt;}
.y312{bottom:568.877848pt;}
.y1fe{bottom:570.534667pt;}
.y37{bottom:570.615072pt;}
.y5a{bottom:571.415080pt;}
.y271{bottom:572.490641pt;}
.y131{bottom:572.704263pt;}
.y9{bottom:573.786667pt;}
.y2c1{bottom:574.031453pt;}
.y29e{bottom:574.662683pt;}
.y23e{bottom:574.673333pt;}
.y217{bottom:578.385333pt;}
.y23b{bottom:578.812000pt;}
.y311{bottom:580.877848pt;}
.y1fd{bottom:582.534667pt;}
.y59{bottom:583.415080pt;}
.y194{bottom:584.169491pt;}
.y2c0{bottom:586.031453pt;}
.y36{bottom:586.615072pt;}
.y29d{bottom:586.662683pt;}
.y73{bottom:587.170937pt;}
.ya0{bottom:587.369321pt;}
.yc9{bottom:587.374146pt;}
.y23a{bottom:590.812000pt;}
.y130{bottom:591.572529pt;}
.y270{bottom:592.490641pt;}
.y8{bottom:592.685334pt;}
.y310{bottom:592.877848pt;}
.y216{bottom:594.524000pt;}
.y193{bottom:594.909941pt;}
.y58{bottom:595.415080pt;}
.y2bf{bottom:598.031453pt;}
.y29c{bottom:598.662683pt;}
.y1fc{bottom:598.673333pt;}
.y1a1{bottom:599.082682pt;}
.y35{bottom:602.615072pt;}
.y1a3{bottom:603.355469pt;}
.y1a2{bottom:603.390137pt;}
.y26f{bottom:604.490641pt;}
.y30f{bottom:604.877848pt;}
.yf7{bottom:605.633341pt;}
.y192{bottom:605.650391pt;}
.y72{bottom:606.039204pt;}
.y9f{bottom:606.237588pt;}
.yc8{bottom:606.239196pt;}
.y215{bottom:606.524000pt;}
.y238{bottom:606.940000pt;}
.y57{bottom:607.415080pt;}
.y2be{bottom:610.031453pt;}
.y12f{bottom:610.440796pt;}
.y29b{bottom:610.662683pt;}
.y1fb{bottom:610.673333pt;}
.y1d8{bottom:613.137350pt;}
.y30e{bottom:616.877848pt;}
.y19d{bottom:617.949341pt;}
.y34{bottom:618.615072pt;}
.y237{bottom:618.940000pt;}
.yf5{bottom:619.100016pt;}
.y56{bottom:619.415080pt;}
.y2bd{bottom:622.031453pt;}
.y19c{bottom:622.218952pt;}
.y1a0{bottom:622.222127pt;}
.y19f{bottom:622.256795pt;}
.y214{bottom:622.662667pt;}
.y26e{bottom:624.490641pt;}
.y71{bottom:624.907471pt;}
.y9e{bottom:625.105854pt;}
.yc7{bottom:625.107463pt;}
.y29a{bottom:626.790683pt;}
.y1fa{bottom:626.812000pt;}
.y30d{bottom:628.877848pt;}
.y12e{bottom:629.305887pt;}
.y1d7{bottom:629.340016pt;}
.y236{bottom:630.940000pt;}
.y55{bottom:631.415080pt;}
.yf4{bottom:633.098346pt;}
.y33{bottom:634.615072pt;}
.y213{bottom:634.662667pt;}
.y15f{bottom:635.342174pt;}
.y26d{bottom:636.490641pt;}
.y299{bottom:638.790683pt;}
.y1f9{bottom:638.812000pt;}
.y191{bottom:638.846040pt;}
.y17c{bottom:640.170247pt;}
.y17a{bottom:640.170654pt;}
.y30c{bottom:640.877848pt;}
.y19b{bottom:641.087218pt;}
.y235{bottom:642.940000pt;}
.y70{bottom:643.769305pt;}
.yc6{bottom:643.970946pt;}
.y9d{bottom:643.974121pt;}
.yf3{bottom:644.155565pt;}
.y1d6{bottom:645.468016pt;}
.y18b{bottom:645.509138pt;}
.y7{bottom:645.598667pt;}
.y54{bottom:647.415080pt;}
.y12d{bottom:648.174154pt;}
.y26c{bottom:648.490641pt;}
.y32{bottom:650.615072pt;}
.y298{bottom:650.790683pt;}
.y212{bottom:650.801333pt;}
.y1f8{bottom:650.812000pt;}
.y30b{bottom:652.877848pt;}
.y234{bottom:654.940000pt;}
.y15e{bottom:655.104602pt;}
.yf2{bottom:655.270675pt;}
.y53{bottom:655.415080pt;}
.y190{bottom:658.608468pt;}
.y179{bottom:659.872420pt;}
.y19a{bottom:659.955485pt;}
.y1d5{bottom:661.542683pt;}
.y6f{bottom:662.637571pt;}
.y211{bottom:662.801333pt;}
.y239{bottom:662.812000pt;}
.y9c{bottom:662.826388pt;}
.yc5{bottom:662.839212pt;}
.y30a{bottom:664.877848pt;}
.y18a{bottom:665.385050pt;}
.y15d{bottom:665.845052pt;}
.yf1{bottom:666.327895pt;}
.y297{bottom:666.929350pt;}
.y1f7{bottom:666.940000pt;}
.y12c{bottom:667.036303pt;}
.y52{bottom:667.415080pt;}
.y26b{bottom:668.490641pt;}
.y3{bottom:668.977329pt;}
.y18f{bottom:669.348918pt;}
.y178{bottom:670.612870pt;}
.y31{bottom:670.615072pt;}
.y197{bottom:671.819580pt;}
.y210{bottom:674.801333pt;}
.y309{bottom:676.877848pt;}
.yf0{bottom:677.385114pt;}
.y1d4{bottom:677.745350pt;}
.y296{bottom:678.929350pt;}
.y1f6{bottom:678.940000pt;}
.y51{bottom:679.415080pt;}
.y26a{bottom:680.490641pt;}
.y177{bottom:681.296578pt;}
.y6e{bottom:681.505838pt;}
.y9b{bottom:681.694654pt;}
.yc4{bottom:681.707479pt;}
.y12b{bottom:685.904570pt;}
.y2bc{bottom:686.231445pt;}
.y18e{bottom:686.346914pt;}
.yef{bottom:688.500224pt;}
.y308{bottom:688.877848pt;}
.y295{bottom:690.929350pt;}
.y1f5{bottom:690.940000pt;}
.y176{bottom:692.037028pt;}
.y269{bottom:692.490641pt;}
.y1d3{bottom:693.884016pt;}
.y232{bottom:695.068000pt;}
.y15c{bottom:697.727009pt;}
.yee{bottom:699.557443pt;}
.y6d{bottom:700.374105pt;}
.y9a{bottom:700.562921pt;}
.yc3{bottom:700.569354pt;}
.y307{bottom:700.877848pt;}
.y294{bottom:702.929350pt;}
.y1f4{bottom:702.940000pt;}
.y268{bottom:704.490641pt;}
.y12a{bottom:704.772837pt;}
.y18d{bottom:706.109342pt;}
.y231{bottom:707.068000pt;}
.y173{bottom:708.402611pt;}
.y1d2{bottom:710.012016pt;}
.yed{bottom:710.614663pt;}
.y164{bottom:711.685582pt;}
.y306{bottom:712.877848pt;}
.y293{bottom:714.929350pt;}
.y20f{bottom:714.940000pt;}
.y18c{bottom:716.793050pt;}
.y15b{bottom:717.424589pt;}
.y1c2{bottom:718.450641pt;}
.y1f3{bottom:719.068000pt;}
.y6c{bottom:719.239237pt;}
.y99{bottom:719.431188pt;}
.yc2{bottom:719.437620pt;}
.yec{bottom:721.729773pt;}
.y129{bottom:723.641103pt;}
.y305{bottom:724.877848pt;}
.y28{bottom:725.048421pt;}
.y1d1{bottom:726.140016pt;}
.y292{bottom:726.929350pt;}
.y15a{bottom:728.165039pt;}
.y1f2{bottom:731.068000pt;}
.y163{bottom:731.383162pt;}
.yeb{bottom:732.777344pt;}
.y1c1{bottom:734.653308pt;}
.y304{bottom:736.877848pt;}
.y6b{bottom:738.107503pt;}
.y98{bottom:738.299454pt;}
.yc1{bottom:738.305887pt;}
.y291{bottom:738.929350pt;}
.y233{bottom:738.940000pt;}
.y162{bottom:742.066870pt;}
.y1d0{bottom:742.268016pt;}
.y128{bottom:742.509370pt;}
.y1f1{bottom:743.068000pt;}
.y303{bottom:748.877848pt;}
.y16a{bottom:749.593450pt;}
.y1c0{bottom:750.781308pt;}
.y290{bottom:750.929350pt;}
.y161{bottom:752.864062pt;}
.y172{bottom:752.974762pt;}
.y287{bottom:754.627182pt;}
.y1f0{bottom:755.068000pt;}
.y6a{bottom:756.969337pt;}
.y97{bottom:757.167721pt;}
.yc0{bottom:757.174154pt;}
.y2f3{bottom:757.635361pt;}
.y1cf{bottom:758.396016pt;}
.y169{bottom:760.560868pt;}
.y302{bottom:760.877848pt;}
.y171{bottom:761.996740pt;}
.y28f{bottom:762.929350pt;}
.y160{bottom:763.547770pt;}
.y27{bottom:766.140805pt;}
.y1bf{bottom:766.919975pt;}
.y2f2{bottom:769.635361pt;}
.y286{bottom:770.829848pt;}
.y168{bottom:771.301318pt;}
.y170{bottom:772.680448pt;}
.y301{bottom:772.877848pt;}
.y1ce{bottom:774.534683pt;}
.y69{bottom:775.837604pt;}
.y96{bottom:776.035988pt;}
.ybf{bottom:776.040771pt;}
.y127{bottom:778.037637pt;}
.y1ef{bottom:778.972000pt;}
.y28e{bottom:779.057350pt;}
.y2f1{bottom:781.635361pt;}
.y2{bottom:781.661334pt;}
.y167{bottom:781.985026pt;}
.y16f{bottom:783.420898pt;}
.y300{bottom:784.877848pt;}
.y1cd{bottom:790.662683pt;}
.y1be{bottom:790.823975pt;}
.y1ee{bottom:790.972000pt;}
.y28d{bottom:791.057350pt;}
.y2f0{bottom:793.635361pt;}
.y285{bottom:794.349848pt;}
.y68{bottom:794.705871pt;}
.y95{bottom:794.904254pt;}
.ybe{bottom:794.907471pt;}
.y2ff{bottom:796.877848pt;}
.y126{bottom:796.905903pt;}
.y26{bottom:800.796805pt;}
.y1ed{bottom:802.972000pt;}
.y28c{bottom:803.057350pt;}
.y284{bottom:806.349848pt;}
.y1cc{bottom:806.790683pt;}
.y2fe{bottom:808.877848pt;}
.y1bd{bottom:812.437969pt;}
.y67{bottom:813.574137pt;}
.y94{bottom:813.772521pt;}
.ybd{bottom:813.774170pt;}
.y2ef{bottom:814.296694pt;}
.y1ec{bottom:814.972000pt;}
.y28b{bottom:815.057350pt;}
.y125{bottom:815.774170pt;}
.y283{bottom:818.349848pt;}
.y2fd{bottom:820.877848pt;}
.y16e{bottom:822.706852pt;}
.y1cb{bottom:822.929350pt;}
.y175{bottom:826.036420pt;}
.y16c{bottom:826.268679pt;}
.y2ee{bottom:826.296694pt;}
.y1eb{bottom:826.972000pt;}
.y1bc{bottom:827.101969pt;}
.y282{bottom:830.349848pt;}
.y28a{bottom:831.196016pt;}
.y66{bottom:832.435971pt;}
.y93{bottom:832.640788pt;}
.y2fc{bottom:832.877848pt;}
.y124{bottom:834.641354pt;}
.y25{bottom:835.452805pt;}
.y2ed{bottom:838.296694pt;}
.y1ca{bottom:839.057350pt;}
.y281{bottom:842.349848pt;}
.y16d{bottom:842.582764pt;}
.y289{bottom:843.196016pt;}
.y2fb{bottom:844.877848pt;}
.y174{bottom:845.742106pt;}
.y16b{bottom:846.201333pt;}
.y1ea{bottom:848.166667pt;}
.y65{bottom:851.304238pt;}
.ybc{bottom:851.307454pt;}
.y92{bottom:851.507487pt;}
.y123{bottom:853.507487pt;}
.y1c9{bottom:855.196016pt;}
.y2fa{bottom:856.877848pt;}
.y2ec{bottom:858.958027pt;}
.y1{bottom:859.312000pt;}
.y280{bottom:863.544515pt;}
.y288{bottom:867.196016pt;}
.y2f9{bottom:868.877848pt;}
.y1e9{bottom:869.628016pt;}
.y24{bottom:870.108805pt;}
.ybb{bottom:870.169370pt;}
.y64{bottom:870.172505pt;}
.y91{bottom:870.374105pt;}
.y196{bottom:870.841960pt;}
.y2eb{bottom:870.958027pt;}
.y33c{bottom:872.877848pt;}
.y1c8{bottom:879.100016pt;}
.y2f8{bottom:880.877848pt;}
.y1bb{bottom:881.862683pt;}
.y2ea{bottom:882.958027pt;}
.y33b{bottom:884.877848pt;}
.y27f{bottom:885.006027pt;}
.yba{bottom:889.037637pt;}
.y63{bottom:889.040771pt;}
.y1c7{bottom:891.100016pt;}
.y166{bottom:892.151693pt;}
.y2f7{bottom:892.877848pt;}
.y27e{bottom:894.478027pt;}
.y2f6{bottom:904.877848pt;}
.y1ba{bottom:905.766683pt;}
.y27d{bottom:906.478027pt;}
.y62{bottom:907.905903pt;}
.y157{bottom:908.464437pt;}
.y1c6{bottom:912.713848pt;}
.y165{bottom:913.691569pt;}
.y2f5{bottom:916.877848pt;}
.y4e{bottom:920.265218pt;}
.y46{bottom:920.666829pt;}
.y61{bottom:926.774170pt;}
.y1b9{bottom:927.377848pt;}
.y2f4{bottom:928.877848pt;}
.y50{bottom:988.708515pt;}
.y8e{bottom:1001.355225pt;}
.y5f{bottom:1001.355306pt;}
.y90{bottom:1001.561768pt;}
.y4f{bottom:1001.711182pt;}
.y8f{bottom:1002.044515pt;}
.y60{bottom:1002.048639pt;}
.h3d{height:7.237333pt;}
.h42{height:13.066667pt;}
.h3f{height:19.491686pt;}
.h3e{height:19.980416pt;}
.h3b{height:22.534680pt;}
.h46{height:24.103047pt;}
.h18{height:24.724000pt;}
.h3c{height:25.088203pt;}
.h25{height:25.318347pt;}
.h2b{height:26.822923pt;}
.h4e{height:27.485304pt;}
.h40{height:27.491976pt;}
.h7{height:28.560000pt;}
.h39{height:29.310572pt;}
.h41{height:30.045497pt;}
.h4c{height:30.119261pt;}
.h44{height:30.481727pt;}
.h4d{height:32.931849pt;}
.h14{height:32.965333pt;}
.h17{height:35.320000pt;}
.h26{height:36.169067pt;}
.h45{height:36.598987pt;}
.h4f{height:36.821333pt;}
.h43{height:37.069545pt;}
.h30{height:37.674667pt;}
.h49{height:37.930667pt;}
.h52{height:38.080000pt;}
.h50{height:38.880000pt;}
.h16{height:40.618667pt;}
.h19{height:40.661333pt;}
.h51{height:40.724000pt;}
.h6{height:40.800000pt;}
.h2f{height:41.472000pt;}
.h15{height:41.984000pt;}
.h2d{height:42.197333pt;}
.h3{height:42.840000pt;}
.h11{height:47.093333pt;}
.h2e{height:47.472000pt;}
.h27{height:47.692799pt;}
.h31{height:48.555733pt;}
.h33{height:48.562003pt;}
.h36{height:48.568517pt;}
.h32{height:48.573769pt;}
.h35{height:48.574868pt;}
.h37{height:48.581301pt;}
.h34{height:48.619733pt;}
.h2{height:48.960000pt;}
.he{height:49.653333pt;}
.h1a{height:49.659603pt;}
.hf{height:49.659685pt;}
.h2a{height:49.659725pt;}
.h28{height:49.659766pt;}
.h10{height:49.660258pt;}
.h1f{height:49.666036pt;}
.h38{height:49.666122pt;}
.h1e{height:49.666198pt;}
.h1c{height:49.672468pt;}
.h20{height:49.672550pt;}
.h1d{height:49.672631pt;}
.h24{height:49.685333pt;}
.h48{height:49.698117pt;}
.h21{height:49.704550pt;}
.h22{height:49.711064pt;}
.h29{height:49.723766pt;}
.h47{height:50.666667pt;}
.h12{height:51.840000pt;}
.hd{height:54.329067pt;}
.h1b{height:55.682718pt;}
.h23{height:55.696072pt;}
.hc{height:59.728337pt;}
.h13{height:68.570667pt;}
.h5{height:69.360000pt;}
.h4b{height:85.674667pt;}
.h4a{height:89.472000pt;}
.h4{height:105.826671pt;}
.ha{height:121.856000pt;}
.hb{height:121.984000pt;}
.h2c{height:308.778666pt;}
.h3a{height:480.910685pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:22.285333pt;}
.w6{width:69.545333pt;}
.w7{width:177.678670pt;}
.w4{width:480.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:10.110006pt;}
.x3a{left:18.209066pt;}
.x4b{left:30.786947pt;}
.xf{left:46.121328pt;}
.x4d{left:59.179199pt;}
.x5{left:75.496002pt;}
.x9{left:83.317602pt;}
.x50{left:89.202536pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x52{left:142.446269pt;}
.xb{left:156.850403pt;}
.x10{left:165.350403pt;}
.xc{left:167.512803pt;}
.xd{left:168.774129pt;}
.x4f{left:173.813192pt;}
.x66{left:176.850403pt;}
.x15{left:179.028536pt;}
.x4{left:180.874667pt;}
.x16{left:185.570936pt;}
.x17{left:194.307739pt;}
.x48{left:201.141724pt;}
.xe{left:203.489549pt;}
.x18{left:211.973216pt;}
.x46{left:213.319458pt;}
.x35{left:214.240585pt;}
.x20{left:216.491511pt;}
.x1f{left:217.577715pt;}
.x12{left:219.751772pt;}
.x1e{left:222.279195pt;}
.x29{left:225.267349pt;}
.x13{left:227.751772pt;}
.x36{left:228.654663pt;}
.x22{left:229.817775pt;}
.x3b{left:231.239990pt;}
.x21{left:232.630557pt;}
.x37{left:234.743876pt;}
.x6{left:238.110270pt;}
.x5a{left:239.572161pt;}
.x65{left:241.309069pt;}
.x39{left:242.842794pt;}
.x7{left:246.777323pt;}
.x64{left:249.309069pt;}
.x61{left:277.437069pt;}
.x5f{left:278.579875pt;}
.x23{left:283.279073pt;}
.x51{left:285.472941pt;}
.x60{left:287.517544pt;}
.x56{left:289.661042pt;}
.x55{left:299.133072pt;}
.x19{left:313.146667pt;}
.x2f{left:319.579875pt;}
.x1b{left:322.394531pt;}
.x1c{left:324.575045pt;}
.x2a{left:327.390523pt;}
.x30{left:329.347606pt;}
.x1a{left:330.777216pt;}
.x1d{left:334.399517pt;}
.x62{left:336.573069pt;}
.x47{left:359.613200pt;}
.x5b{left:370.515462pt;}
.x3d{left:373.803688pt;}
.x24{left:385.749186pt;}
.x3e{left:394.373456pt;}
.x57{left:398.014811pt;}
.x3c{left:400.682536pt;}
.x63{left:403.243612pt;}
.x3{left:404.408000pt;}
.x31{left:428.942546pt;}
.x14{left:431.826439pt;}
.x2b{left:435.089193pt;}
.x11{left:439.826406pt;}
.x45{left:444.217631pt;}
.x2e{left:446.572017pt;}
.x2c{left:448.237126pt;}
.x2d{left:449.963704pt;}
.x32{left:450.885488pt;}
.x5c{left:460.186401pt;}
.x5d{left:464.834300pt;}
.x5e{left:468.241048pt;}
.x58{left:481.097478pt;}
.x3f{left:514.295858pt;}
.x40{left:522.969198pt;}
.x41{left:524.460702pt;}
.x42{left:529.631877pt;}
.x26{left:553.644789pt;}
.x25{left:555.306519pt;}
.x33{left:561.969198pt;}
.x49{left:563.779989pt;}
.x34{left:567.132720pt;}
.x59{left:568.884140pt;}
.x27{left:570.067545pt;}
.x28{left:573.285627pt;}
.x43{left:575.065627pt;}
.x44{left:576.903435pt;}
.x4a{left:580.742920pt;}
.x54{left:583.165065pt;}
.x4c{left:609.854940pt;}
.x8{left:617.715454pt;}
.x4e{left:633.326782pt;}
.x53{left:658.727458pt;}
.xa{left:664.199341pt;}
}




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