
    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_2e03b4ea8edb29900393a447.woff')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_7d7e1edfeb7e47c4f3348ca2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_45738e06b319e403421304ce.woff')format("woff");}.ff3{font-family:ff3;line-height:0.746094;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_4a7c7e8c2f251a5b9cdfab5a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.947754;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_81d69d3e35e79cbfe6abefda.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_4c910702bac1aa1f9e9c5688.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_398634aa6944020cb530402d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_6be678247227a417bfc57cb9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_0e874c007d159c504a616697.woff')format("woff");}.ff9{font-family:ff9;line-height:1.010254;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_d18861fe735072766e52e0f0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_77f4e83f1e7b287a5697173b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.065430;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_3ef236f3f06a20dc9a6f9a55.woff')format("woff");}.ffd{font-family:ffd;line-height:1.975586;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_7d54c5ffb8de47d240219060.woff')format("woff");}.ffe{font-family:ffe;line-height:0.829102;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_5d123772bb4c8abe91c34807.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;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_ecc0214d0aa47fab044aa31c.woff')format("woff");}.ff10{font-family:ff10;line-height:1.201172;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_0e46e8118cff0068d439f2da.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9fec0cc49295b94defede996.woff')format("woff");}.ff12{font-family:ff12;line-height:1.064941;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_4b0eb9478324d51a4bf95237.woff')format("woff");}.ff13{font-family:ff13;line-height:0.960449;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_207f12a7881e506b59fd7257.woff')format("woff");}.ff14{font-family:ff14;line-height:1.100586;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_50363ee4747f4f0f03a4b69c.woff')format("woff");}.ff15{font-family:ff15;line-height:1.094238;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_e99baf4268a1f56bae97d185.woff')format("woff");}.ff16{font-family:ff16;line-height:1.065430;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_f46fd8c63bc5af8e5faa35ed.woff')format("woff");}.ff17{font-family:ff17;line-height:1.090820;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);}
.v5{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:16.200000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:36.000000px;}
.v2{vertical-align:42.000000px;}
.v6{vertical-align:47.400000px;}
.v4{vertical-align:54.600000px;}
.v7{vertical-align:102.600000px;}
.ls1{letter-spacing:-3.144000px;}
.ls4c{letter-spacing:-3.000000px;}
.ls2{letter-spacing:-2.832000px;}
.ls2a{letter-spacing:-1.800000px;}
.lsb{letter-spacing:-0.768000px;}
.ls32{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.576000px;}
.ls39{letter-spacing:-0.552000px;}
.lsf{letter-spacing:-0.504000px;}
.ls4d{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.264000px;}
.ls3{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.192000px;}
.ls19{letter-spacing:-0.168000px;}
.ls4a{letter-spacing:-0.126000px;}
.ls6{letter-spacing:-0.102000px;}
.lse{letter-spacing:-0.072000px;}
.ls31{letter-spacing:-0.048000px;}
.ls18{letter-spacing:-0.024000px;}
.ls10{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.012000px;}
.ls11{letter-spacing:0.024000px;}
.ls45{letter-spacing:0.030000px;}
.ls9{letter-spacing:0.048000px;}
.ls2d{letter-spacing:0.060000px;}
.ls20{letter-spacing:0.072000px;}
.ls49{letter-spacing:0.084000px;}
.ls1e{letter-spacing:0.096000px;}
.ls13{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.156000px;}
.ls1d{letter-spacing:0.168000px;}
.ls30{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.192000px;}
.ls34{letter-spacing:0.216000px;}
.ls3c{letter-spacing:0.222000px;}
.ls3e{letter-spacing:0.228000px;}
.ls3b{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.264000px;}
.ls23{letter-spacing:0.276000px;}
.ls48{letter-spacing:0.285000px;}
.ls2c{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls38{letter-spacing:0.312000px;}
.ls4b{letter-spacing:0.360000px;}
.ls43{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.600000px;}
.ls26{letter-spacing:0.768000px;}
.ls25{letter-spacing:1.140000px;}
.ls46{letter-spacing:1.200000px;}
.ls29{letter-spacing:1.800000px;}
.ls28{letter-spacing:2.400000px;}
.ls2e{letter-spacing:3.000000px;}
.ls42{letter-spacing:3.600000px;}
.ls44{letter-spacing:5.400000px;}
.ls27{letter-spacing:8.340000px;}
.ls41{letter-spacing:8.400000px;}
.ls33{letter-spacing:11.832000px;}
.ls35{letter-spacing:12.432000px;}
.ls2b{letter-spacing:18.540000px;}
.ls24{letter-spacing:27.000000px;}
.ls36{letter-spacing:28.044000px;}
.ls22{letter-spacing:34.044000px;}
.ls2f{letter-spacing:41.244000px;}
.ls3a{letter-spacing:55.044000px;}
.ls3d{letter-spacing:88.044000px;}
.ls40{letter-spacing:254.322000px;}
.ls12{letter-spacing:522.030000px;}
.ls1c{letter-spacing:840.120000px;}
.ls8{letter-spacing:843.120000px;}
.ls47{letter-spacing:846.000000px;}
.ls1a{letter-spacing:846.030000px;}
.ls37{letter-spacing:846.120000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e{word-spacing:-72.000000px;}
.ws38{word-spacing:-36.600000px;}
.ws37{word-spacing:-36.300000px;}
.ws39{word-spacing:-36.000000px;}
.wsc{word-spacing:-24.144000px;}
.ws0{word-spacing:-24.000000px;}
.wsa{word-spacing:-23.712000px;}
.wsb{word-spacing:-23.232000px;}
.ws2{word-spacing:-21.168000px;}
.ws6{word-spacing:-21.156000px;}
.ws5{word-spacing:-21.000000px;}
.ws1{word-spacing:-20.856000px;}
.ws4{word-spacing:-20.748000px;}
.ws8{word-spacing:-19.500000px;}
.ws7{word-spacing:-19.398000px;}
.ws28{word-spacing:-18.312000px;}
.ws1f{word-spacing:-18.288000px;}
.ws19{word-spacing:-18.264000px;}
.ws27{word-spacing:-18.216000px;}
.ws15{word-spacing:-18.192000px;}
.ws18{word-spacing:-18.168000px;}
.ws10{word-spacing:-18.120000px;}
.ws1a{word-spacing:-18.096000px;}
.ws1c{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.048000px;}
.wsf{word-spacing:-18.024000px;}
.ws12{word-spacing:-18.000000px;}
.wse{word-spacing:-17.999997px;}
.ws16{word-spacing:-17.976000px;}
.ws22{word-spacing:-17.952000px;}
.wsd{word-spacing:-17.928000px;}
.ws17{word-spacing:-17.832000px;}
.ws14{word-spacing:-17.808000px;}
.ws11{word-spacing:-17.784000px;}
.ws35{word-spacing:-17.760000px;}
.ws1b{word-spacing:-17.736000px;}
.ws2b{word-spacing:-17.448000px;}
.ws13{word-spacing:-17.424000px;}
.ws29{word-spacing:-17.400000px;}
.ws23{word-spacing:-17.352000px;}
.ws36{word-spacing:-16.374000px;}
.ws25{word-spacing:-15.840000px;}
.ws2e{word-spacing:-13.800000px;}
.ws20{word-spacing:-12.750000px;}
.ws2a{word-spacing:-12.288000px;}
.ws30{word-spacing:-12.204000px;}
.ws2c{word-spacing:-12.072000px;}
.ws1d{word-spacing:-12.000000px;}
.ws2f{word-spacing:-8.136000px;}
.ws24{word-spacing:-6.168000px;}
.ws26{word-spacing:-5.184000px;}
.ws3{word-spacing:0.000000px;}
.ws21{word-spacing:17.535000px;}
.ws2d{word-spacing:90.570000px;}
.ws32{word-spacing:201.378000px;}
.ws31{word-spacing:227.694000px;}
.ws34{word-spacing:249.594000px;}
.ws33{word-spacing:264.018000px;}
._6b{margin-left:-11.280000px;}
._5e{margin-left:-5.454000px;}
._1{margin-left:-4.032000px;}
._0{margin-left:-2.688000px;}
._3{margin-left:-1.020000px;}
._2{width:1.056000px;}
._b{width:2.286000px;}
._4{width:3.456000px;}
._5{width:4.758000px;}
._9{width:5.862000px;}
._6{width:7.242000px;}
._7{width:8.250000px;}
._a{width:9.648000px;}
._c{width:10.872000px;}
._8{width:11.880000px;}
._16{width:13.248000px;}
._d{width:14.328000px;}
._4d{width:15.648000px;}
._e{width:17.136000px;}
._f{width:18.354000px;}
._14{width:19.614000px;}
._17{width:20.634000px;}
._11{width:21.816000px;}
._10{width:22.968000px;}
._15{width:24.048000px;}
._13{width:25.518000px;}
._12{width:26.712000px;}
._62{width:27.876000px;}
._61{width:29.088000px;}
._65{width:30.672000px;}
._67{width:31.824000px;}
._66{width:33.342000px;}
._5f{width:34.776000px;}
._5d{width:36.000000px;}
._59{width:37.296000px;}
._78{width:38.316000px;}
._60{width:39.384000px;}
._6c{width:41.184000px;}
._69{width:43.128000px;}
._79{width:44.208000px;}
._64{width:45.732000px;}
._63{width:46.800000px;}
._73{width:47.808000px;}
._74{width:49.062000px;}
._77{width:51.336000px;}
._68{width:53.208000px;}
._53{width:80.670000px;}
._5b{width:89.694000px;}
._1f{width:94.200000px;}
._4e{width:98.670000px;}
._58{width:105.006000px;}
._70{width:107.550000px;}
._71{width:111.612000px;}
._6d{width:114.378000px;}
._6f{width:118.584000px;}
._6e{width:123.912000px;}
._45{width:134.670000px;}
._4c{width:153.840000px;}
._3b{width:155.988000px;}
._3f{width:166.638000px;}
._55{width:180.708000px;}
._6a{width:198.060000px;}
._75{width:226.740000px;}
._72{width:258.120000px;}
._76{width:289.902000px;}
._4a{width:331.608000px;}
._3c{width:395.676000px;}
._4b{width:434.640000px;}
._51{width:440.832000px;}
._52{width:466.464000px;}
._28{width:473.796000px;}
._41{width:493.836000px;}
._54{width:497.940000px;}
._29{width:502.200000px;}
._49{width:526.656000px;}
._2a{width:547.236000px;}
._40{width:574.272000px;}
._26{width:598.500000px;}
._23{width:633.636000px;}
._57{width:665.904000px;}
._35{width:684.252000px;}
._34{width:733.860000px;}
._22{width:837.876000px;}
._3e{width:863.820000px;}
._39{width:937.836000px;}
._24{width:947.772000px;}
._2d{width:976.068000px;}
._5c{width:977.160000px;}
._2c{width:1008.540000px;}
._2b{width:1031.652000px;}
._32{width:1035.684000px;}
._36{width:1037.268000px;}
._4f{width:1042.320000px;}
._56{width:1075.944000px;}
._44{width:1099.572000px;}
._18{width:1103.076000px;}
._21{width:1123.668000px;}
._33{width:1141.812000px;}
._47{width:1185.744000px;}
._37{width:1231.452000px;}
._1d{width:1239.756000px;}
._2e{width:1299.060000px;}
._27{width:1301.652000px;}
._1b{width:1339.776000px;}
._5a{width:1347.456000px;}
._1e{width:1359.444000px;}
._1c{width:1363.476000px;}
._20{width:1415.772000px;}
._25{width:1429.812000px;}
._2f{width:1441.836000px;}
._3d{width:1515.780000px;}
._3a{width:1555.740000px;}
._1a{width:1563.756000px;}
._38{width:1588.080000px;}
._31{width:1597.788000px;}
._42{width:1598.964000px;}
._19{width:1603.836000px;}
._46{width:1657.992000px;}
._30{width:1659.708000px;}
._48{width:1764.264000px;}
._50{width:1816.680000px;}
._43{width:1928.724000px;}
.fc6{color:rgb(0,0,207);}
.fc4{color:rgb(78,154,6);}
.fc3{color:rgb(143,89,2);}
.fc2{color:rgb(15,17,17);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(196,160,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:6.000000px;}
.fs9{font-size:18.000000px;}
.fs5{font-size:36.000000px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:60.000000px;}
.fsd{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.fs1{font-size:96.000000px;}
.fse{font-size:108.000000px;}
.y299{bottom:-12.300000px;}
.y0{bottom:0.000000px;}
.y44e{bottom:4.635000px;}
.y445{bottom:4.650000px;}
.y20e{bottom:5.025000px;}
.y456{bottom:6.300000px;}
.y44a{bottom:6.450000px;}
.y263{bottom:6.900000px;}
.y260{bottom:7.050000px;}
.y26c{bottom:7.065000px;}
.y249{bottom:7.950000px;}
.y2a4{bottom:8.100000px;}
.y24f{bottom:8.400000px;}
.y254{bottom:8.415000px;}
.y2aa{bottom:8.445000px;}
.y2ac{bottom:8.535000px;}
.y24b{bottom:8.550000px;}
.y2af{bottom:8.565000px;}
.y2c7{bottom:9.000000px;}
.y2f3{bottom:9.450000px;}
.y2d4{bottom:9.585000px;}
.y2c9{bottom:9.600000px;}
.y2cd{bottom:9.615000px;}
.y2fa{bottom:9.630000px;}
.y298{bottom:10.200000px;}
.yc8{bottom:13.650000px;}
.yc0{bottom:13.800000px;}
.y9d{bottom:13.815000px;}
.y101{bottom:16.200000px;}
.y109{bottom:16.215000px;}
.yfe{bottom:16.350000px;}
.y100{bottom:16.365000px;}
.y10c{bottom:16.395000px;}
.y365{bottom:17.100000px;}
.y367{bottom:17.400000px;}
.y36d{bottom:17.445000px;}
.y36b{bottom:17.550000px;}
.y2ed{bottom:18.015000px;}
.y264{bottom:18.900000px;}
.y2a2{bottom:20.550000px;}
.y257{bottom:21.300000px;}
.y362{bottom:21.600000px;}
.y2c5{bottom:22.050000px;}
.y105{bottom:22.500000px;}
.y316{bottom:22.770000px;}
.y4c{bottom:23.550000px;}
.y364{bottom:26.100000px;}
.y2fc{bottom:27.600000px;}
.y262{bottom:30.750000px;}
.y273{bottom:30.900000px;}
.y297{bottom:31.200000px;}
.y2a3{bottom:33.000000px;}
.y360{bottom:34.050000px;}
.y25a{bottom:34.207500px;}
.y2c6{bottom:35.130000px;}
.y271{bottom:42.600000px;}
.y268{bottom:42.750000px;}
.y314{bottom:45.075000px;}
.y361{bottom:46.500000px;}
.y2{bottom:49.387500px;}
.y363{bottom:51.000000px;}
.y296{bottom:52.500000px;}
.y267{bottom:54.600000px;}
.y270{bottom:54.645000px;}
.y44c{bottom:55.635000px;}
.y447{bottom:55.650000px;}
.y10e{bottom:57.637500px;}
.y30e{bottom:62.625000px;}
.y386{bottom:62.670000px;}
.y4b{bottom:65.850000px;}
.y59{bottom:66.637500px;}
.y295{bottom:74.850000px;}
.y26f{bottom:78.345000px;}
.y266{bottom:78.450000px;}
.y24d{bottom:85.650000px;}
.y39b{bottom:87.870000px;}
.y294{bottom:95.895000px;}
.y1{bottom:100.837500px;}
.y20b{bottom:102.337500px;}
.y387{bottom:103.725000px;}
.y17d{bottom:103.987500px;}
.y2b5{bottom:105.937500px;}
.y403{bottom:108.037500px;}
.y25c{bottom:112.387500px;}
.y30f{bottom:112.620000px;}
.y4d7{bottom:112.687500px;}
.y158{bottom:112.987500px;}
.y39c{bottom:113.100000px;}
.y42e{bottom:117.037500px;}
.y293{bottom:117.195000px;}
.y487{bottom:118.537500px;}
.y30c{bottom:118.687500px;}
.y1b0{bottom:119.437500px;}
.y4c3{bottom:120.037500px;}
.y49a{bottom:120.187500px;}
.y1f9{bottom:120.487500px;}
.y33b{bottom:121.237500px;}
.y3d6{bottom:123.037500px;}
.y1cf{bottom:123.787500px;}
.y35e{bottom:124.237500px;}
.y3b8{bottom:124.387500px;}
.y410{bottom:126.037500px;}
.y2de{bottom:126.787500px;}
.ybe{bottom:128.137500px;}
.y3ce{bottom:128.437500px;}
.y4d6{bottom:132.037500px;}
.y2eb{bottom:133.537500px;}
.y344{bottom:133.837500px;}
.y3cd{bottom:134.887500px;}
.y2b4{bottom:135.037500px;}
.y20a{bottom:135.937500px;}
.y17c{bottom:137.437500px;}
.y48f{bottom:137.887500px;}
.y39d{bottom:138.300000px;}
.y292{bottom:138.345000px;}
.y227{bottom:138.487500px;}
.y259{bottom:138.787500px;}
.y4c2{bottom:139.387500px;}
.y402{bottom:141.637500px;}
.y9b{bottom:142.987500px;}
.y388{bottom:144.795000px;}
.y157{bottom:146.437500px;}
.y242{bottom:146.587500px;}
.y58{bottom:147.787500px;}
.y369{bottom:148.650000px;}
.y2a6{bottom:150.000000px;}
.y42d{bottom:150.645000px;}
.y128{bottom:151.380000px;}
.y23c{bottom:152.130000px;}
.y30b{bottom:152.295000px;}
.y486{bottom:152.895000px;}
.y1af{bottom:153.045000px;}
.y1a6{bottom:153.195000px;}
.y1f8{bottom:154.095000px;}
.ybd{bottom:154.395000px;}
.y397{bottom:154.545000px;}
.y33a{bottom:154.845000px;}
.y143{bottom:155.430000px;}
.y2fe{bottom:156.795000px;}
.y2cb{bottom:157.200000px;}
.y1ce{bottom:157.245000px;}
.y38d{bottom:157.725000px;}
.y3b7{bottom:157.845000px;}
.y4c1{bottom:158.745000px;}
.y291{bottom:159.645000px;}
.y3a5{bottom:160.545000px;}
.y181{bottom:161.145000px;}
.y38{bottom:161.430000px;}
.y170{bottom:162.045000px;}
.y310{bottom:162.570000px;}
.y39e{bottom:163.500000px;}
.y2b3{bottom:163.995000px;}
.y25b{bottom:164.595000px;}
.y3f0{bottom:165.330000px;}
.y4d5{bottom:166.245000px;}
.y1b{bottom:166.545000px;}
.y2ea{bottom:167.145000px;}
.y343{bottom:167.295000px;}
.y3cc{bottom:168.345000px;}
.y209{bottom:169.545000px;}
.y2dd{bottom:169.695000px;}
.y315{bottom:169.845000px;}
.y1e0{bottom:169.995000px;}
.y17b{bottom:171.045000px;}
.y1eb{bottom:172.080000px;}
.y485{bottom:172.245000px;}
.y280{bottom:172.380000px;}
.y433{bottom:175.095000px;}
.y4c0{bottom:178.095000px;}
.y57{bottom:179.130000px;}
.y156{bottom:180.045000px;}
.ybc{bottom:180.495000px;}
.y290{bottom:181.995000px;}
.y401{bottom:184.095000px;}
.y127{bottom:184.845000px;}
.y1c5{bottom:184.995000px;}
.y23b{bottom:185.745000px;}
.y389{bottom:185.895000px;}
.y1a5{bottom:186.645000px;}
.y1f7{bottom:187.680000px;}
.y427{bottom:188.145000px;}
.y241{bottom:188.430000px;}
.y39f{bottom:188.745000px;}
.y142{bottom:189.045000px;}
.y35d{bottom:189.495000px;}
.y258{bottom:190.245000px;}
.y1cd{bottom:190.845000px;}
.y3b6{bottom:191.430000px;}
.y484{bottom:191.595000px;}
.y1a{bottom:192.630000px;}
.y37{bottom:192.795000px;}
.y42c{bottom:193.080000px;}
.y48e{bottom:193.245000px;}
.y9a{bottom:194.595000px;}
.y16f{bottom:195.630000px;}
.y4bf{bottom:197.445000px;}
.y3ef{bottom:198.795000px;}
.y3d5{bottom:200.445000px;}
.y2e9{bottom:200.595000px;}
.y342{bottom:200.895000px;}
.y3cb{bottom:201.945000px;}
.y40f{bottom:202.095000px;}
.ybb{bottom:202.245000px;}
.y208{bottom:202.995000px;}
.y17a{bottom:204.645000px;}
.y56{bottom:204.795000px;}
.y226{bottom:205.545000px;}
.y75{bottom:205.695000px;}
.yf1{bottom:205.830000px;}
.y27f{bottom:205.995000px;}
.y440{bottom:208.695000px;}
.y2dc{bottom:210.195000px;}
.y378{bottom:210.495000px;}
.y2b2{bottom:210.795000px;}
.y396{bottom:211.545000px;}
.y35c{bottom:211.845000px;}
.y311{bottom:212.520000px;}
.y1df{bottom:212.580000px;}
.y155{bottom:213.645000px;}
.y3a0{bottom:213.945000px;}
.y2c3{bottom:215.295000px;}
.y4be{bottom:216.645000px;}
.y256{bottom:216.795000px;}
.y400{bottom:217.695000px;}
.y36{bottom:218.445000px;}
.y23a{bottom:219.195000px;}
.y4d4{bottom:219.945000px;}
.y1a4{bottom:220.245000px;}
.y1f6{bottom:221.145000px;}
.y339{bottom:221.895000px;}
.y19{bottom:222.630000px;}
.y1ea{bottom:223.695000px;}
.y2fd{bottom:223.845000px;}
.y28f{bottom:224.295000px;}
.y1cc{bottom:224.445000px;}
.y32a{bottom:225.495000px;}
.y42b{bottom:226.695000px;}
.y38a{bottom:226.950000px;}
.y483{bottom:227.595000px;}
.yba{bottom:228.795000px;}
.y55{bottom:229.095000px;}
.y426{bottom:230.595000px;}
.y240{bottom:230.745000px;}
.y3ee{bottom:232.380000px;}
.y3b5{bottom:234.045000px;}
.y2e8{bottom:234.195000px;}
.y341{bottom:234.495000px;}
.y48d{bottom:234.795000px;}
.y3ca{bottom:235.545000px;}
.y40e{bottom:235.695000px;}
.y2b1{bottom:236.445000px;}
.y207{bottom:236.580000px;}
.y179{bottom:238.095000px;}
.y225{bottom:239.130000px;}
.y3a1{bottom:239.175000px;}
.y4d3{bottom:239.295000px;}
.y74{bottom:239.445000px;}
.y35b{bottom:240.330000px;}
.y43f{bottom:242.295000px;}
.y255{bottom:242.445000px;}
.y35{bottom:242.595000px;}
.y377{bottom:244.095000px;}
.y99{bottom:244.695000px;}
.y28e{bottom:245.295000px;}
.y1de{bottom:246.195000px;}
.y154{bottom:247.080000px;}
.yf0{bottom:249.195000px;}
.y4bd{bottom:250.995000px;}
.yb9{bottom:251.145000px;}
.y432{bottom:251.295000px;}
.y395{bottom:251.895000px;}
.y126{bottom:252.045000px;}
.y385{bottom:252.345000px;}
.y18{bottom:252.630000px;}
.y239{bottom:252.795000px;}
.y54{bottom:253.245000px;}
.y30a{bottom:253.695000px;}
.y1a3{bottom:253.830000px;}
.y1f5{bottom:254.745000px;}
.y338{bottom:255.495000px;}
.y141{bottom:256.095000px;}
.y2c2{bottom:257.895000px;}
.y4d2{bottom:258.645000px;}
.y329{bottom:258.945000px;}
.y2ef{bottom:259.845000px;}
.y3ff{bottom:260.295000px;}
.y482{bottom:261.795000px;}
.y2b0{bottom:262.245000px;}
.y312{bottom:262.500000px;}
.y16e{bottom:262.695000px;}
.y1e9{bottom:264.045000px;}
.y425{bottom:264.195000px;}
.y3a2{bottom:264.375000px;}
.y2f0{bottom:265.230000px;}
.y3ed{bottom:265.995000px;}
.y28d{bottom:266.595000px;}
.y34{bottom:267.330000px;}
.y3b4{bottom:267.495000px;}
.y2e7{bottom:267.795000px;}
.y340{bottom:267.945000px;}
.y38b{bottom:268.050000px;}
.y460{bottom:268.095000px;}
.y24c{bottom:268.845000px;}
.y384{bottom:268.875000px;}
.y48c{bottom:268.995000px;}
.y3c9{bottom:269.145000px;}
.y40d{bottom:269.295000px;}
.y206{bottom:270.195000px;}
.y178{bottom:271.695000px;}
.y224{bottom:272.745000px;}
.y27e{bottom:273.045000px;}
.y73{bottom:273.195000px;}
.yb8{bottom:273.495000px;}
.y1cb{bottom:274.245000px;}
.y53{bottom:277.545000px;}
.y376{bottom:277.695000px;}
.y4d1{bottom:277.845000px;}
.y17{bottom:278.745000px;}
.y1dd{bottom:279.630000px;}
.y153{bottom:280.695000px;}
.y39a{bottom:283.950000px;}
.y431{bottom:284.745000px;}
.y4bc{bottom:285.345000px;}
.y125{bottom:285.495000px;}
.yef{bottom:285.945000px;}
.y238{bottom:286.380000px;}
.y98{bottom:286.545000px;}
.y309{bottom:287.295000px;}
.y28c{bottom:287.745000px;}
.y2ae{bottom:287.880000px;}
.y337{bottom:289.095000px;}
.y3a3{bottom:289.620000px;}
.y140{bottom:289.695000px;}
.y2c1{bottom:291.495000px;}
.y394{bottom:292.245000px;}
.y328{bottom:292.545000px;}
.y33{bottom:293.445000px;}
.y3fe{bottom:293.745000px;}
.y253{bottom:294.630000px;}
.y1c4{bottom:294.645000px;}
.y1a2{bottom:296.295000px;}
.y1f4{bottom:296.595000px;}
.y4d0{bottom:297.195000px;}
.y424{bottom:297.795000px;}
.yb7{bottom:300.045000px;}
.y399{bottom:300.450000px;}
.y3b3{bottom:301.080000px;}
.y1e8{bottom:301.545000px;}
.y52{bottom:301.695000px;}
.y3c8{bottom:302.595000px;}
.y40c{bottom:302.745000px;}
.y4bb{bottom:304.695000px;}
.y16{bottom:304.845000px;}
.y16d{bottom:305.295000px;}
.y223{bottom:306.195000px;}
.y2e6{bottom:308.145000px;}
.yee{bottom:308.295000px;}
.y3ec{bottom:308.445000px;}
.y18e{bottom:308.745000px;}
.y97{bottom:308.895000px;}
.y28b{bottom:309.045000px;}
.y38c{bottom:309.120000px;}
.y375{bottom:311.145000px;}
.y205{bottom:312.045000px;}
.y313{bottom:312.450000px;}
.y1ca{bottom:313.245000px;}
.y2ad{bottom:313.695000px;}
.y152{bottom:314.295000px;}
.y393{bottom:314.580000px;}
.y3a4{bottom:314.820000px;}
.y72{bottom:315.345000px;}
.y27d{bottom:315.645000px;}
.y23f{bottom:315.795000px;}
.y4cf{bottom:316.545000px;}
.y43e{bottom:318.345000px;}
.y32{bottom:319.545000px;}
.y237{bottom:319.845000px;}
.y252{bottom:320.295000px;}
.y308{bottom:320.745000px;}
.y336{bottom:322.545000px;}
.y2fb{bottom:322.695000px;}
.y13f{bottom:323.295000px;}
.y4ba{bottom:324.045000px;}
.y2c0{bottom:324.945000px;}
.y51{bottom:325.995000px;}
.yb6{bottom:326.595000px;}
.y3fd{bottom:327.330000px;}
.y352{bottom:327.795000px;}
.y124{bottom:328.080000px;}
.y1ae{bottom:329.745000px;}
.y1a1{bottom:329.895000px;}
.y28a{bottom:330.045000px;}
.y15{bottom:330.945000px;}
.y96{bottom:331.245000px;}
.y3b2{bottom:334.695000px;}
.y327{bottom:335.145000px;}
.y4ce{bottom:335.895000px;}
.y3c7{bottom:336.195000px;}
.y42a{bottom:336.345000px;}
.y16c{bottom:338.745000px;}
.y1f3{bottom:338.895000px;}
.y2ab{bottom:339.345000px;}
.yed{bottom:339.645000px;}
.y222{bottom:339.795000px;}
.y423{bottom:340.245000px;}
.y317{bottom:341.625000px;}
.y33f{bottom:341.895000px;}
.y3eb{bottom:342.045000px;}
.y4b9{bottom:343.245000px;}
.y3d4{bottom:343.695000px;}
.y374{bottom:344.745000px;}
.y40b{bottom:345.345000px;}
.y31{bottom:345.645000px;}
.y251{bottom:346.095000px;}
.y1dc{bottom:346.845000px;}
.y151{bottom:347.745000px;}
.yb5{bottom:348.945000px;}
.y27c{bottom:349.095000px;}
.y50{bottom:350.145000px;}
.y289{bottom:351.345000px;}
.y204{bottom:352.095000px;}
.y236{bottom:353.445000px;}
.y95{bottom:353.595000px;}
.y1c9{bottom:354.195000px;}
.y18d{bottom:354.330000px;}
.y2e5{bottom:354.495000px;}
.y307{bottom:355.245000px;}
.y335{bottom:356.145000px;}
.y13e{bottom:356.745000px;}
.y23e{bottom:357.630000px;}
.y2bf{bottom:358.545000px;}
.y47d{bottom:359.445000px;}
.y45f{bottom:360.045000px;}
.y3fc{bottom:360.945000px;}
.y392{bottom:361.080000px;}
.y351{bottom:361.380000px;}
.y123{bottom:361.695000px;}
.yec{bottom:361.995000px;}
.y4b8{bottom:362.595000px;}
.y1ad{bottom:363.345000px;}
.y1a0{bottom:363.495000px;}
.y2a9{bottom:365.130000px;}
.y2f9{bottom:367.545000px;}
.y3b1{bottom:368.130000px;}
.y326{bottom:368.625000px;}
.y23d{bottom:369.675000px;}
.y3c6{bottom:369.825000px;}
.y429{bottom:369.975000px;}
.y250{bottom:371.775000px;}
.y288{bottom:372.345000px;}
.y16b{bottom:372.375000px;}
.y221{bottom:373.425000px;}
.y422{bottom:373.875000px;}
.y14{bottom:374.475000px;}
.yb4{bottom:375.525000px;}
.y3ea{bottom:375.675000px;}
.y94{bottom:375.975000px;}
.y3d3{bottom:377.175000px;}
.y373{bottom:378.375000px;}
.y47c{bottom:378.825000px;}
.y40a{bottom:378.975000px;}
.y1db{bottom:380.475000px;}
.y150{bottom:381.375000px;}
.y4b7{bottom:381.975000px;}
.y27b{bottom:382.725000px;}
.y33e{bottom:383.775000px;}
.y18c{bottom:385.725000px;}
.y71{bottom:387.975000px;}
.y306{bottom:388.725000px;}
.y334{bottom:389.775000px;}
.y13d{bottom:390.375000px;}
.y2a8{bottom:390.825000px;}
.y2be{bottom:392.175000px;}
.y1c8{bottom:393.225000px;}
.yeb{bottom:393.375000px;}
.y287{bottom:393.645000px;}
.y4cd{bottom:393.825000px;}
.y43d{bottom:394.425000px;}
.y350{bottom:395.025000px;}
.y122{bottom:395.175000px;}
.y1c3{bottom:395.325000px;}
.y235{bottom:396.075000px;}
.y19f{bottom:396.975000px;}
.y24e{bottom:397.575000px;}
.y47b{bottom:398.175000px;}
.y93{bottom:398.325000px;}
.y203{bottom:400.725000px;}
.y30{bottom:401.325000px;}
.y325{bottom:402.225000px;}
.y3c5{bottom:403.275000px;}
.y3fb{bottom:403.425000px;}
.y16a{bottom:405.975000px;}
.y220{bottom:406.875000px;}
.y421{bottom:407.475000px;}
.y45e{bottom:410.175000px;}
.y3b0{bottom:410.775000px;}
.y2f8{bottom:412.425000px;}
.y4cc{bottom:413.175000px;}
.y1da{bottom:413.925000px;}
.y14f{bottom:414.975000px;}
.yb3{bottom:415.125000px;}
.yea{bottom:415.725000px;}
.y286{bottom:415.995000px;}
.y27a{bottom:416.325000px;}
.y4f{bottom:416.625000px;}
.y13{bottom:416.775000px;}
.y1f2{bottom:416.925000px;}
.y18b{bottom:417.075000px;}
.y3e9{bottom:418.125000px;}
.y70{bottom:418.275000px;}
.y372{bottom:420.225000px;}
.y4b6{bottom:420.675000px;}
.y92{bottom:420.825000px;}
.y20d{bottom:422.550000px;}
.y24a{bottom:423.225000px;}
.y13c{bottom:423.975000px;}
.y2bd{bottom:425.625000px;}
.y2f{bottom:426.075000px;}
.y1c7{bottom:426.675000px;}
.y43c{bottom:428.025000px;}
.y34f{bottom:428.475000px;}
.y121{bottom:428.775000px;}
.y234{bottom:429.525000px;}
.y45d{bottom:429.675000px;}
.y1ac{bottom:430.425000px;}
.y47a{bottom:430.725000px;}
.y305{bottom:432.225000px;}
.y4cb{bottom:432.525000px;}
.y33d{bottom:435.075000px;}
.y324{bottom:435.825000px;}
.y3c4{bottom:436.875000px;}
.y3fa{bottom:437.025000px;}
.y285{bottom:437.145000px;}
.y382{bottom:438.375000px;}
.y169{bottom:439.425000px;}
.y19e{bottom:439.575000px;}
.y4b5{bottom:439.875000px;}
.y21f{bottom:440.475000px;}
.y2a7{bottom:442.275000px;}
.y91{bottom:443.175000px;}
.y3af{bottom:444.375000px;}
.y428{bottom:446.025000px;}
.ye9{bottom:447.075000px;}
.y180{bottom:448.425000px;}
.y6f{bottom:448.575000px;}
.y248{bottom:449.775000px;}
.y420{bottom:449.925000px;}
.y4ca{bottom:451.875000px;}
.yb2{bottom:454.875000px;}
.y409{bottom:455.025000px;}
.y1d9{bottom:456.525000px;}
.y333{bottom:456.825000px;}
.y2f7{bottom:457.275000px;}
.y13b{bottom:457.425000px;}
.y45c{bottom:457.575000px;}
.y284{bottom:458.475000px;}
.y12{bottom:458.925000px;}
.y2bc{bottom:459.225000px;}
.y18a{bottom:459.675000px;}
.y4e{bottom:459.975000px;}
.y3e8{bottom:460.725000px;}
.y1f1{bottom:461.925000px;}
.y34e{bottom:462.075000px;}
.y120{bottom:462.375000px;}
.y1ab{bottom:464.025000px;}
.y90{bottom:465.525000px;}
.y304{bottom:465.675000px;}
.y233{bottom:466.875000px;}
.y479{bottom:467.025000px;}
.y1c6{bottom:467.625000px;}
.y2a5{bottom:468.075000px;}
.y371{bottom:468.675000px;}
.ye8{bottom:469.575000px;}
.y2e{bottom:470.175000px;}
.y33c{bottom:470.325000px;}
.y3c3{bottom:470.475000px;}
.y43b{bottom:470.625000px;}
.y4c9{bottom:471.075000px;}
.y1c2{bottom:471.375000px;}
.y381{bottom:471.975000px;}
.y168{bottom:473.025000px;}
.y19d{bottom:473.175000px;}
.y20c{bottom:473.625000px;}
.y21e{bottom:474.075000px;}
.y3ae{bottom:477.825000px;}
.y323{bottom:478.275000px;}
.y4b4{bottom:478.575000px;}
.y6e{bottom:478.875000px;}
.y283{bottom:479.475000px;}
.y3f9{bottom:479.625000px;}
.yb1{bottom:481.425000px;}
.y17f{bottom:482.025000px;}
.y45b{bottom:483.075000px;}
.y279{bottom:483.375000px;}
.y41f{bottom:483.525000px;}
.y478{bottom:486.375000px;}
.y8f{bottom:487.875000px;}
.y408{bottom:488.625000px;}
.y1d8{bottom:490.125000px;}
.y4c8{bottom:490.425000px;}
.y14e{bottom:491.025000px;}
.ye7{bottom:491.925000px;}
.y2bb{bottom:492.825000px;}
.y189{bottom:493.125000px;}
.y3e7{bottom:494.325000px;}
.y1f0{bottom:495.525000px;}
.y34d{bottom:495.675000px;}
.y2d{bottom:495.825000px;}
.y370{bottom:496.575000px;}
.y4b3{bottom:497.925000px;}
.y247{bottom:498.525000px;}
.y332{bottom:499.425000px;}
.y13a{bottom:500.025000px;}
.y282{bottom:500.775000px;}
.y11{bottom:501.225000px;}
.y4d{bottom:502.125000px;}
.y2a1{bottom:503.475000px;}
.yb0{bottom:503.775000px;}
.y3c2{bottom:503.925000px;}
.y43a{bottom:504.075000px;}
.y477{bottom:505.725000px;}
.y167{bottom:506.625000px;}
.y21d{bottom:507.525000px;}
.y45a{bottom:508.575000px;}
.y6d{bottom:509.175000px;}
.y4c7{bottom:509.775000px;}
.y8e{bottom:510.225000px;}
.y3ad{bottom:511.425000px;}
.y322{bottom:511.875000px;}
.y1c1{bottom:512.325000px;}
.y3f8{bottom:513.075000px;}
.y17e{bottom:515.625000px;}
.y278{bottom:516.975000px;}
.y41e{bottom:517.125000px;}
.y4b2{bottom:517.275000px;}
.y3d2{bottom:520.425000px;}
.y2c{bottom:520.575000px;}
.y4a{bottom:520.875000px;}
.y499{bottom:521.775000px;}
.y407{bottom:522.075000px;}
.ye6{bottom:523.275000px;}
.y1d7{bottom:523.575000px;}
.y14d{bottom:524.625000px;}
.y476{bottom:525.075000px;}
.yaf{bottom:526.275000px;}
.y3e6{bottom:527.775000px;}
.y1ef{bottom:529.125000px;}
.y11f{bottom:529.425000px;}
.y8d{bottom:532.575000px;}
.y331{bottom:533.025000px;}
.y232{bottom:533.175000px;}
.y188{bottom:533.475000px;}
.y139{bottom:533.625000px;}
.y459{bottom:534.075000px;}
.y35a{bottom:535.575000px;}
.y4b1{bottom:536.475000px;}
.y439{bottom:537.675000px;}
.y368{bottom:539.775000px;}
.y177{bottom:540.075000px;}
.y19c{bottom:540.225000px;}
.y21c{bottom:541.125000px;}
.y10{bottom:543.375000px;}
.y475{bottom:544.275000px;}
.y3ac{bottom:545.025000px;}
.y321{bottom:545.475000px;}
.y3c1{bottom:546.525000px;}
.y430{bottom:546.675000px;}
.y2f6{bottom:546.975000px;}
.yae{bottom:548.625000px;}
.y166{bottom:549.075000px;}
.y303{bottom:549.825000px;}
.y1c0{bottom:551.325000px;}
.y6c{bottom:551.475000px;}
.y3d1{bottom:554.025000px;}
.ye5{bottom:554.625000px;}
.y8c{bottom:554.925000px;}
.y3f7{bottom:555.675000px;}
.y498{bottom:556.125000px;}
.y380{bottom:557.025000px;}
.y1d6{bottom:557.175000px;}
.y14c{bottom:558.075000px;}
.y41d{bottom:559.575000px;}
.y2ba{bottom:559.875000px;}
.y277{bottom:561.375000px;}
.y1ee{bottom:562.575000px;}
.y34c{bottom:562.725000px;}
.y11e{bottom:563.025000px;}
.y4c6{bottom:563.325000px;}
.y474{bottom:563.625000px;}
.y2b{bottom:564.675000px;}
.y187{bottom:564.825000px;}
.y231{bottom:566.625000px;}
.y138{bottom:567.075000px;}
.y4de{bottom:568.425000px;}
.y359{bottom:569.175000px;}
.y3e5{bottom:570.375000px;}
.y4b0{bottom:570.825000px;}
.yad{bottom:570.975000px;}
.y176{bottom:573.675000px;}
.y21b{bottom:574.725000px;}
.y330{bottom:574.875000px;}
.y497{bottom:575.475000px;}
.y8b{bottom:577.275000px;}
.y3ab{bottom:578.475000px;}
.y320{bottom:578.925000px;}
.y3c0{bottom:580.125000px;}
.y438{bottom:580.275000px;}
.y6b{bottom:581.775000px;}
.y165{bottom:582.675000px;}
.y19b{bottom:582.825000px;}
.y473{bottom:582.975000px;}
.y302{bottom:583.425000px;}
.y1bf{bottom:584.775000px;}
.yf{bottom:585.675000px;}
.ye4{bottom:585.975000px;}
.y458{bottom:586.725000px;}
.y3d0{bottom:587.475000px;}
.y3f6{bottom:589.275000px;}
.y4af{bottom:590.175000px;}
.y37f{bottom:590.625000px;}
.y2a{bottom:590.775000px;}
.y14b{bottom:591.675000px;}
.y2f5{bottom:591.825000px;}
.y41c{bottom:593.175000px;}
.yac{bottom:593.325000px;}
.y2b9{bottom:593.475000px;}
.y496{bottom:594.825000px;}
.y186{bottom:596.175000px;}
.y34b{bottom:596.325000px;}
.y11d{bottom:596.475000px;}
.y406{bottom:598.275000px;}
.y2a0{bottom:599.625000px;}
.y8a{bottom:599.775000px;}
.y230{bottom:600.225000px;}
.y137{bottom:600.675000px;}
.y2db{bottom:602.025000px;}
.y358{bottom:602.775000px;}
.y3e4{bottom:603.975000px;}
.y276{bottom:604.275000px;}
.y1ed{bottom:604.425000px;}
.y175{bottom:607.275000px;}
.y21a{bottom:608.175000px;}
.y274{bottom:610.275000px;}
.y6a{bottom:612.075000px;}
.y31f{bottom:612.525000px;}
.y3bf{bottom:613.575000px;}
.y437{bottom:613.725000px;}
.y495{bottom:614.175000px;}
.yab{bottom:615.675000px;}
.y164{bottom:616.275000px;}
.y29{bottom:616.875000px;}
.y32f{bottom:617.025000px;}
.ye3{bottom:617.325000px;}
.y1be{bottom:618.375000px;}
.y3cf{bottom:621.075000px;}
.y275{bottom:621.525000px;}
.y89{bottom:622.125000px;}
.y3f5{bottom:622.725000px;}
.y1d5{bottom:624.225000px;}
.y4ae{bottom:624.525000px;}
.y14a{bottom:625.275000px;}
.y36f{bottom:627.225000px;}
.y185{bottom:627.375000px;}
.ye{bottom:627.975000px;}
.y272{bottom:628.275000px;}
.y34a{bottom:629.775000px;}
.y49{bottom:629.925000px;}
.y11c{bottom:630.075000px;}
.y281{bottom:630.675000px;}
.y405{bottom:631.725000px;}
.y22f{bottom:633.825000px;}
.y457{bottom:634.125000px;}
.y136{bottom:634.275000px;}
.y2b8{bottom:635.325000px;}
.y2da{bottom:635.625000px;}
.y41b{bottom:635.775000px;}
.y357{bottom:636.375000px;}
.y2f4{bottom:636.675000px;}
.y3e3{bottom:637.425000px;}
.ye2{bottom:639.675000px;}
.y1aa{bottom:640.725000px;}
.y219{bottom:641.775000px;}
.yaa{bottom:642.225000px;}
.y69{bottom:642.375000px;}
.y28{bottom:642.975000px;}
.y88{bottom:644.475000px;}
.y31e{bottom:646.125000px;}
.y3be{bottom:647.175000px;}
.y163{bottom:649.725000px;}
.y19a{bottom:649.875000px;}
.y494{bottom:650.175000px;}
.y32e{bottom:650.625000px;}
.y472{bottom:651.525000px;}
.y48{bottom:653.775000px;}
.y3aa{bottom:654.675000px;}
.y436{bottom:656.325000px;}
.y37e{bottom:657.825000px;}
.y149{bottom:658.725000px;}
.y455{bottom:659.625000px;}
.y1bd{bottom:660.975000px;}
.y349{bottom:663.375000px;}
.y11b{bottom:663.675000px;}
.y3f4{bottom:665.325000px;}
.y87{bottom:666.825000px;}
.y22e{bottom:667.275000px;}
.y135{bottom:667.725000px;}
.ya9{bottom:668.775000px;}
.y27{bottom:669.075000px;}
.y2d9{bottom:669.225000px;}
.y356{bottom:669.825000px;}
.yd{bottom:670.125000px;}
.y48b{bottom:670.725000px;}
.y36e{bottom:670.875000px;}
.ye1{bottom:671.025000px;}
.y1a9{bottom:674.325000px;}
.y218{bottom:675.375000px;}
.y29f{bottom:675.825000px;}
.y47{bottom:676.125000px;}
.y26e{bottom:676.725000px;}
.y4ad{bottom:678.075000px;}
.y31d{bottom:679.575000px;}
.y3e2{bottom:680.025000px;}
.y3bd{bottom:680.775000px;}
.y2f2{bottom:681.525000px;}
.y1e7{bottom:682.275000px;}
.y481{bottom:682.725000px;}
.y162{bottom:683.325000px;}
.y493{bottom:684.375000px;}
.y68{bottom:684.675000px;}
.y454{bottom:685.125000px;}
.y3a9{bottom:688.275000px;}
.y86{bottom:689.175000px;}
.y435{bottom:689.925000px;}
.y184{bottom:690.075000px;}
.y471{bottom:690.225000px;}
.y1ec{bottom:690.975000px;}
.y37d{bottom:691.275000px;}
.y301{bottom:692.025000px;}
.y148{bottom:692.325000px;}
.y32d{bottom:692.475000px;}
.y1bc{bottom:694.425000px;}
.y199{bottom:694.725000px;}
.y26{bottom:695.175000px;}
.y10d{bottom:695.325000px;}
.y348{bottom:696.975000px;}
.y11a{bottom:697.275000px;}
.y4ac{bottom:697.425000px;}
.y46{bottom:698.625000px;}
.y3f3{bottom:698.925000px;}
.y1d4{bottom:700.425000px;}
.y22d{bottom:700.875000px;}
.y134{bottom:701.325000px;}
.y480{bottom:702.075000px;}
.ye0{bottom:702.375000px;}
.y2d8{bottom:702.675000px;}
.yfc{bottom:703.725000px;}
.y48a{bottom:704.925000px;}
.y1a8{bottom:707.925000px;}
.y217{bottom:708.825000px;}
.y29e{bottom:709.275000px;}
.y470{bottom:709.575000px;}
.y391{bottom:710.325000px;}
.y453{bottom:710.625000px;}
.y85{bottom:711.525000px;}
.y41a{bottom:711.825000px;}
.yc{bottom:712.425000px;}
.y3e1{bottom:713.625000px;}
.y355{bottom:714.225000px;}
.y36c{bottom:714.675000px;}
.y67{bottom:714.975000px;}
.y2b7{bottom:715.725000px;}
.y4ab{bottom:716.775000px;}
.y161{bottom:716.925000px;}
.y10b{bottom:717.975000px;}
.y25{bottom:720.825000px;}
.y45{bottom:720.975000px;}
.y183{bottom:721.425000px;}
.y3a8{bottom:721.725000px;}
.y489{bottom:724.275000px;}
.ydf{bottom:724.875000px;}
.y300{bottom:725.625000px;}
.yd5{bottom:725.925000px;}
.y2f1{bottom:726.420000px;}
.y1bb{bottom:728.070000px;}
.y46f{bottom:728.970000px;}
.y2ca{bottom:729.720000px;}
.y119{bottom:730.770000px;}
.y32c{bottom:732.570000px;}
.y37c{bottom:733.170000px;}
.y84{bottom:733.920000px;}
.y22c{bottom:734.520000px;}
.y452{bottom:734.670000px;}
.ya8{bottom:734.970000px;}
.y4aa{bottom:736.170000px;}
.yb{bottom:737.220000px;}
.y47f{bottom:738.120000px;}
.y198{bottom:739.770000px;}
.y347{bottom:741.420000px;}
.y404{bottom:741.570000px;}
.y216{bottom:742.470000px;}
.y29d{bottom:742.920000px;}
.y44{bottom:743.370000px;}
.y488{bottom:743.670000px;}
.y2b6{bottom:744.120000px;}
.y66{bottom:745.320000px;}
.y419{bottom:745.470000px;}
.y3e0{bottom:747.270000px;}
.y3bc{bottom:747.870000px;}
.y46e{bottom:748.320000px;}
.y32b{bottom:749.820000px;}
.y160{bottom:750.570000px;}
.y390{bottom:750.720000px;}
.y246{bottom:751.470000px;}
.y10a{bottom:751.605000px;}
.y182{bottom:752.670000px;}
.y354{bottom:752.970000px;}
.yfb{bottom:755.370000px;}
.y4a9{bottom:755.520000px;}
.y83{bottom:756.270000px;}
.y2d7{bottom:756.570000px;}
.yd4{bottom:757.320000px;}
.y36a{bottom:758.370000px;}
.y2ff{bottom:759.120000px;}
.y147{bottom:759.570000px;}
.y31c{bottom:761.670000px;}
.y24{bottom:763.020000px;}
.y451{bottom:763.320000px;}
.y118{bottom:764.370000px;}
.y43{bottom:765.720000px;}
.y434{bottom:766.020000px;}
.y1d3{bottom:767.520000px;}
.y133{bottom:768.570000px;}
.y1ba{bottom:770.670000px;}
.y2ee{bottom:771.270000px;}
.y47e{bottom:772.320000px;}
.y26d{bottom:772.605000px;}
.y38f{bottom:773.070000px;}
.y37b{bottom:773.220000px;}
.y197{bottom:773.370000px;}
.ya7{bottom:774.720000px;}
.y3f2{bottom:775.020000px;}
.y65{bottom:775.620000px;}
.y215{bottom:776.070000px;}
.y22b{bottom:776.370000px;}
.y29c{bottom:776.520000px;}
.y82{bottom:778.770000px;}
.y31b{bottom:778.920000px;}
.y3bb{bottom:781.470000px;}
.y2d6{bottom:783.420000px;}
.y450{bottom:783.720000px;}
.y15f{bottom:784.020000px;}
.y346{bottom:784.320000px;}
.y245{bottom:785.070000px;}
.y108{bottom:785.205000px;}
.y46d{bottom:786.870000px;}
.yde{bottom:787.620000px;}
.y30d{bottom:787.650000px;}
.y23{bottom:787.770000px;}
.yd3{bottom:788.670000px;}
.y3a7{bottom:788.955000px;}
.y3df{bottom:789.720000px;}
.yfa{bottom:791.520000px;}
.y146{bottom:793.020000px;}
.y353{bottom:793.320000px;}
.y4a8{bottom:794.070000px;}
.y37a{bottom:795.570000px;}
.y26b{bottom:797.205000px;}
.y117{bottom:797.970000px;}
.y1e6{bottom:800.955000px;}
.y81{bottom:801.120000px;}
.y345{bottom:801.570000px;}
.y132{bottom:802.020000px;}
.y366{bottom:802.170000px;}
.y1b9{bottom:804.120000px;}
.y42{bottom:804.570000px;}
.y2e4{bottom:805.170000px;}
.y64{bottom:805.920000px;}
.y46c{bottom:806.205000px;}
.y196{bottom:806.970000px;}
.ya{bottom:807.420000px;}
.y3f1{bottom:808.620000px;}
.y214{bottom:809.670000px;}
.y29b{bottom:809.970000px;}
.y2d5{bottom:810.270000px;}
.y44b{bottom:810.570000px;}
.y4a7{bottom:813.420000px;}
.y22{bottom:813.870000px;}
.y3ba{bottom:814.920000px;}
.y2ec{bottom:816.855000px;}
.y15e{bottom:817.620000px;}
.y107{bottom:818.670000px;}
.y41{bottom:818.970000px;}
.y38e{bottom:819.570000px;}
.y398{bottom:819.600000px;}
.yd2{bottom:820.020000px;}
.y418{bottom:821.520000px;}
.y26a{bottom:821.820000px;}
.y3a6{bottom:822.420000px;}
.y3de{bottom:823.320000px;}
.y80{bottom:823.470000px;}
.y379{bottom:824.070000px;}
.y383{bottom:825.300000px;}
.y46b{bottom:825.570000px;}
.y145{bottom:826.620000px;}
.yf9{bottom:827.670000px;}
.y116{bottom:831.420000px;}
.y4a6{bottom:832.770000px;}
.y1e5{bottom:834.570000px;}
.y131{bottom:835.620000px;}
.y44f{bottom:836.070000px;}
.y63{bottom:836.220000px;}
.y2d3{bottom:837.120000px;}
.y1b8{bottom:837.720000px;}
.y2e3{bottom:838.770000px;}
.y21{bottom:839.955000px;}
.y195{bottom:840.420000px;}
.ya6{bottom:840.870000px;}
.y1d2{bottom:841.920000px;}
.y42f{bottom:842.220000px;}
.yd1{bottom:842.370000px;}
.y213{bottom:843.120000px;}
.yc9{bottom:843.270000px;}
.y29a{bottom:843.570000px;}
.y46a{bottom:844.920000px;}
.y40{bottom:845.070000px;}
.y7f{bottom:845.820000px;}
.y269{bottom:846.270000px;}
.y35f{bottom:846.570000px;}
.ydd{bottom:850.320000px;}
.y174{bottom:851.220000px;}
.y22a{bottom:852.120000px;}
.y106{bottom:852.270000px;}
.y417{bottom:855.120000px;}
.y3b9{bottom:856.020000px;}
.y3dd{bottom:856.920000px;}
.y144{bottom:860.205000px;}
.yc7{bottom:860.520000px;}
.y44d{bottom:861.570000px;}
.ya5{bottom:862.620000px;}
.yf8{bottom:863.820000px;}
.y2d2{bottom:863.955000px;}
.y469{bottom:864.120000px;}
.y115{bottom:865.020000px;}
.y62{bottom:866.520000px;}
.y7e{bottom:868.170000px;}
.y130{bottom:869.220000px;}
.y265{bottom:870.870000px;}
.y3f{bottom:871.170000px;}
.y1b7{bottom:871.320000px;}
.y202{bottom:871.470000px;}
.y2e2{bottom:872.220000px;}
.yd0{bottom:873.705000px;}
.y194{bottom:874.020000px;}
.y9{bottom:876.270000px;}
.y212{bottom:876.720000px;}
.y1e4{bottom:877.170000px;}
.y201{bottom:880.470000px;}
.y1d1{bottom:880.920000px;}
.ydc{bottom:881.670000px;}
.y20{bottom:883.470000px;}
.ya4{bottom:884.370000px;}
.y173{bottom:884.670000px;}
.y229{bottom:885.720000px;}
.y104{bottom:885.870000px;}
.y446{bottom:887.070000px;}
.y7d{bottom:890.520000px;}
.y4a5{bottom:890.670000px;}
.y2d1{bottom:890.820000px;}
.y15d{bottom:893.670000px;}
.ycf{bottom:896.070000px;}
.y61{bottom:896.820000px;}
.y3e{bottom:897.270000px;}
.y416{bottom:897.570000px;}
.y114{bottom:898.620000px;}
.y3dc{bottom:899.370000px;}
.yf7{bottom:899.820000px;}
.y12f{bottom:902.670000px;}
.y468{bottom:902.820000px;}
.ydb{bottom:904.020000px;}
.y2e1{bottom:905.820000px;}
.ya3{bottom:905.970000px;}
.y193{bottom:907.620000px;}
.y4a4{bottom:910.020000px;}
.y1e3{bottom:910.620000px;}
.y449{bottom:912.570000px;}
.y7c{bottom:912.870000px;}
.y1b6{bottom:913.770000px;}
.y2d0{bottom:917.670000px;}
.y172{bottom:918.270000px;}
.y211{bottom:919.320000px;}
.yc6{bottom:919.770000px;}
.y1d0{bottom:921.870000px;}
.y467{bottom:922.170000px;}
.y3d{bottom:923.370000px;}
.y103{bottom:925.620000px;}
.y1f{bottom:925.770000px;}
.yda{bottom:926.370000px;}
.y60{bottom:927.120000px;}
.y15c{bottom:927.270000px;}
.yce{bottom:927.570000px;}
.ya2{bottom:927.720000px;}
.y200{bottom:928.320000px;}
.y4a3{bottom:929.370000px;}
.yf6{bottom:931.320000px;}
.y113{bottom:932.070000px;}
.y3db{bottom:932.970000px;}
.y7b{bottom:935.220000px;}
.y12e{bottom:936.270000px;}
.y448{bottom:938.070000px;}
.y415{bottom:940.170000px;}
.y192{bottom:941.070000px;}
.y466{bottom:941.520000px;}
.y1e2{bottom:944.220000px;}
.y2cf{bottom:944.505000px;}
.y8{bottom:944.970000px;}
.y1b5{bottom:947.370000px;}
.y2e0{bottom:947.670000px;}
.y4a2{bottom:948.720000px;}
.y3c{bottom:949.470000px;}
.ycd{bottom:949.920000px;}
.y1a7{bottom:951.870000px;}
.y210{bottom:952.770000px;}
.y5f{bottom:957.420000px;}
.y7a{bottom:957.720000px;}
.yd9{bottom:957.870000px;}
.y102{bottom:959.205000px;}
.yc5{bottom:959.820000px;}
.y15b{bottom:960.870000px;}
.y1ff{bottom:961.770000px;}
.yf5{bottom:962.670000px;}
.y444{bottom:963.570000px;}
.y112{bottom:965.670000px;}
.y3da{bottom:966.570000px;}
.y261{bottom:966.870000px;}
.y4a1{bottom:967.920000px;}
.y12d{bottom:969.870000px;}
.y4dd{bottom:970.170000px;}
.ya1{bottom:971.070000px;}
.y2ce{bottom:971.370000px;}
.y465{bottom:974.070000px;}
.y191{bottom:974.670000px;}
.y3b{bottom:975.570000px;}
.y1b4{bottom:980.970000px;}
.ycc{bottom:981.270000px;}
.y1e{bottom:981.570000px;}
.y414{bottom:982.770000px;}
.yf4{bottom:985.020000px;}
.y1e1{bottom:986.070000px;}
.y20f{bottom:986.370000px;}
.y4a0{bottom:987.270000px;}
.y5e{bottom:987.720000px;}
.yd8{bottom:989.220000px;}
.y2df{bottom:989.970000px;}
.y443{bottom:992.670000px;}
.ya0{bottom:992.820000px;}
.y7{bottom:994.170000px;}
.y15a{bottom:994.320000px;}
.y1fe{bottom:995.370000px;}
.y2cc{bottom:998.205000px;}
.y111{bottom:999.270000px;}
.yc4{bottom:1003.320000px;}
.y4dc{bottom:1004.370000px;}
.yf3{bottom:1007.370000px;}
.y190{bottom:1008.270000px;}
.y3d9{bottom:1009.020000px;}
.y464{bottom:1010.220000px;}
.ycb{bottom:1012.620000px;}
.y79{bottom:1013.670000px;}
.y442{bottom:1013.820000px;}
.y9f{bottom:1014.570000px;}
.y25f{bottom:1015.170000px;}
.y413{bottom:1016.370000px;}
.y5d{bottom:1018.020000px;}
.y3a{bottom:1019.670000px;}
.y244{bottom:1019.970000px;}
.yd7{bottom:1020.570000px;}
.y49f{bottom:1021.620000px;}
.y1b3{bottom:1023.420000px;}
.y4db{bottom:1023.720000px;}
.yc3{bottom:1024.920000px;}
.y2c8{bottom:1025.070000px;}
.yff{bottom:1026.255000px;}
.y159{bottom:1027.920000px;}
.y228{bottom:1028.220000px;}
.y1fd{bottom:1028.970000px;}
.y1d{bottom:1030.170000px;}
.y4c5{bottom:1032.420000px;}
.y110{bottom:1032.720000px;}
.y463{bottom:1033.620000px;}
.yca{bottom:1034.970000px;}
.y12c{bottom:1036.920000px;}
.yf2{bottom:1040.970000px;}
.y18f{bottom:1041.720000px;}
.y3d8{bottom:1042.620000px;}
.y4da{bottom:1043.070000px;}
.y6{bottom:1044.720000px;}
.y39{bottom:1045.770000px;}
.yd6{bottom:1048.020000px;}
.y5c{bottom:1048.320000px;}
.y9e{bottom:1050.720000px;}
.y4c4{bottom:1051.770000px;}
.y9c{bottom:1052.955000px;}
.y441{bottom:1053.870000px;}
.y1b2{bottom:1057.020000px;}
.y412{bottom:1058.820000px;}
.yfd{bottom:1059.870000px;}
.y49e{bottom:1060.320000px;}
.y171{bottom:1061.520000px;}
.y2c4{bottom:1061.670000px;}
.y243{bottom:1061.820000px;}
.y1fc{bottom:1062.420000px;}
.y25e{bottom:1062.870000px;}
.y462{bottom:1063.020000px;}
.yc2{bottom:1064.970000px;}
.y31a{bottom:1069.620000px;}
.y12b{bottom:1070.520000px;}
.y78{bottom:1070.670000px;}
.y3d7{bottom:1076.220000px;}
.y5{bottom:1076.370000px;}
.y1c{bottom:1077.720000px;}
.y5b{bottom:1078.620000px;}
.y49d{bottom:1079.520000px;}
.y4d9{bottom:1081.770000px;}
.y492{bottom:1086.000000px;}
.yc1{bottom:1087.350000px;}
.y10f{bottom:1088.850000px;}
.y1b1{bottom:1090.650000px;}
.y461{bottom:1091.850000px;}
.y1fb{bottom:1096.050000px;}
.y25d{bottom:1097.700000px;}
.y49c{bottom:1098.900000px;}
.y411{bottom:1099.800000px;}
.y4d8{bottom:1101.150000px;}
.y4{bottom:1103.100000px;}
.y319{bottom:1103.250000px;}
.y12a{bottom:1104.000000px;}
.y77{bottom:1107.450000px;}
.ybf{bottom:1114.350000px;}
.y491{bottom:1120.350000px;}
.y5a{bottom:1132.200000px;}
.y3{bottom:1132.350000px;}
.y76{bottom:1135.050000px;}
.y318{bottom:1136.700000px;}
.y129{bottom:1137.600000px;}
.y1fa{bottom:1137.900000px;}
.y490{bottom:1139.700000px;}
.y49b{bottom:1140.600000px;}
.h10{height:4.368164px;}
.h14{height:13.122070px;}
.h2f{height:23.700000px;}
.h2b{height:23.850000px;}
.h52{height:24.000000px;}
.h55{height:24.037500px;}
.h23{height:24.900000px;}
.h26{height:25.650000px;}
.h27{height:25.687500px;}
.h24{height:25.800000px;}
.h9{height:26.244141px;}
.h3b{height:26.835000px;}
.h3a{height:26.850000px;}
.h18{height:33.450000px;}
.h19{height:33.585000px;}
.h17{height:33.600000px;}
.h16{height:33.637500px;}
.h34{height:34.650000px;}
.hd{height:34.945312px;}
.h15{height:34.992188px;}
.h38{height:35.850000px;}
.h13{height:39.585000px;}
.h12{height:39.750000px;}
.he{height:39.787500px;}
.h47{height:43.650000px;}
.h4c{height:43.681641px;}
.h4a{height:43.687500px;}
.h49{height:43.785000px;}
.h4b{height:43.800000px;}
.h3d{height:43.950000px;}
.h3e{height:44.835000px;}
.h41{height:44.850000px;}
.h40{height:44.887500px;}
.h56{height:46.083984px;}
.h2c{height:47.550000px;}
.h31{height:47.700000px;}
.h53{height:48.049805px;}
.hb{height:49.605469px;}
.h33{height:49.950000px;}
.h2d{height:50.273438px;}
.h2a{height:50.800781px;}
.h28{height:51.300000px;}
.h37{height:52.087500px;}
.h2{height:52.417969px;}
.hf{height:52.488281px;}
.hc{height:52.945312px;}
.h36{height:52.992188px;}
.h3c{height:53.005312px;}
.h1a{height:53.125312px;}
.h51{height:53.340820px;}
.h5a{height:53.528320px;}
.h44{height:53.709961px;}
.h4e{height:55.291992px;}
.h7{height:56.786133px;}
.h8{height:56.862305px;}
.h5b{height:57.041016px;}
.h59{height:57.459961px;}
.h1b{height:58.394531px;}
.h45{height:59.677734px;}
.h58{height:60.960938px;}
.h6{height:61.154297px;}
.h4{height:61.236328px;}
.h42{height:62.850000px;}
.h50{height:63.351562px;}
.h5{height:65.610352px;}
.h11{height:65.645508px;}
.h3{height:69.984375px;}
.h54{height:75.000000px;}
.h46{height:76.950000px;}
.h29{height:77.250000px;}
.h1c{height:79.129395px;}
.ha{height:85.650000px;}
.h30{height:95.137500px;}
.h2e{height:95.235000px;}
.h22{height:100.597969px;}
.h57{height:102.832031px;}
.h1f{height:107.017969px;}
.h1d{height:127.687500px;}
.h21{height:139.087500px;}
.h20{height:155.017969px;}
.h25{height:180.180000px;}
.h48{height:306.045000px;}
.h35{height:317.745000px;}
.h4d{height:329.550000px;}
.h39{height:331.200000px;}
.h4f{height:335.250000px;}
.h43{height:367.200000px;}
.h1e{height:388.650000px;}
.h32{height:518.025000px;}
.h3f{height:556.275000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w10{width:20.700000px;}
.w40{width:40.200000px;}
.w2c{width:47.700000px;}
.w34{width:52.350000px;}
.w24{width:52.500000px;}
.w43{width:57.450000px;}
.w2f{width:61.350000px;}
.w31{width:61.950000px;}
.w32{width:62.100000px;}
.w42{width:64.950000px;}
.w33{width:67.687500px;}
.w44{width:72.750000px;}
.w2e{width:74.250000px;}
.w3a{width:75.600000px;}
.w21{width:75.900000px;}
.w22{width:76.050000px;}
.w3b{width:76.650000px;}
.w28{width:80.250000px;}
.w23{width:81.787500px;}
.w17{width:81.900000px;}
.w20{width:82.050000px;}
.w13{width:82.350000px;}
.w30{width:84.750000px;}
.w4e{width:85.650000px;}
.w50{width:85.687500px;}
.w48{width:86.250000px;}
.w4a{width:86.437500px;}
.w1b{width:86.550000px;}
.w4b{width:87.000000px;}
.w27{width:88.050000px;}
.w26{width:88.237500px;}
.w29{width:90.300000px;}
.w2a{width:91.237500px;}
.wf{width:94.485000px;}
.w36{width:95.737500px;}
.w2b{width:97.800000px;}
.wb{width:102.600000px;}
.w5{width:108.000000px;}
.w39{width:108.037500px;}
.w35{width:108.900000px;}
.we{width:109.350000px;}
.w25{width:110.850000px;}
.w2d{width:112.537500px;}
.w8{width:116.100000px;}
.wc{width:116.137500px;}
.w49{width:119.250000px;}
.w4f{width:123.300000px;}
.w4d{width:124.087500px;}
.w47{width:125.137500px;}
.w41{width:125.437500px;}
.w7{width:129.600000px;}
.w37{width:134.850000px;}
.w4c{width:144.450000px;}
.w46{width:145.350000px;}
.w3f{width:145.837500px;}
.w1a{width:150.900000px;}
.w16{width:151.200000px;}
.w45{width:155.550000px;}
.w19{width:155.595000px;}
.w15{width:156.480000px;}
.w1e{width:164.280000px;}
.w1d{width:180.900000px;}
.w1c{width:223.695000px;}
.w3e{width:228.300000px;}
.w18{width:264.780000px;}
.w14{width:265.380000px;}
.w4{width:282.030000px;}
.w3{width:357.780000px;}
.w6{width:445.575000px;}
.w11{width:450.525000px;}
.w9{width:450.975000px;}
.wd{width:457.725000px;}
.wa{width:464.475000px;}
.w3d{width:501.300000px;}
.w3c{width:551.250000px;}
.w12{width:600.600000px;}
.w38{width:654.450000px;}
.w1f{width:655.425000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xbb{left:4.500000px;}
.xbd{left:5.850000px;}
.x2b{left:8.100000px;}
.x85{left:9.150000px;}
.x53{left:10.830000px;}
.x42{left:11.850000px;}
.x58{left:13.342500px;}
.x8f{left:14.550000px;}
.x87{left:16.830000px;}
.x69{left:17.992500px;}
.x80{left:19.342500px;}
.xac{left:21.000000px;}
.x3a{left:22.500000px;}
.x1b{left:23.850000px;}
.x5f{left:24.915000px;}
.x91{left:26.407500px;}
.x3f{left:27.480000px;}
.x5b{left:28.800000px;}
.x18{left:30.442500px;}
.x64{left:32.092500px;}
.x73{left:34.207500px;}
.x2e{left:36.000000px;}
.x6e{left:38.707500px;}
.x60{left:40.200000px;}
.x63{left:41.415000px;}
.x71{left:42.600000px;}
.x5d{left:45.165000px;}
.x88{left:46.350000px;}
.x6b{left:49.035000px;}
.x9a{left:51.600000px;}
.xc5{left:57.150000px;}
.x6c{left:58.350000px;}
.x81{left:61.207500px;}
.x70{left:64.350000px;}
.xc4{left:65.400000px;}
.x59{left:66.600000px;}
.x67{left:68.700000px;}
.x74{left:69.900000px;}
.x5e{left:73.650000px;}
.x68{left:75.300000px;}
.x61{left:77.985000px;}
.x1c{left:79.500000px;}
.x6f{left:80.850000px;}
.x9c{left:82.620000px;}
.xc0{left:83.700000px;}
.x65{left:85.200000px;}
.xbc{left:87.780000px;}
.x72{left:90.450000px;}
.xbf{left:91.980000px;}
.xbe{left:96.030000px;}
.x9e{left:97.800000px;}
.x62{left:105.150000px;}
.x66{left:111.900000px;}
.x7f{left:112.957500px;}
.x34{left:121.485000px;}
.x3e{left:126.600000px;}
.x19{left:131.857500px;}
.x95{left:133.987500px;}
.x2{left:140.437487px;}
.xa2{left:144.787487px;}
.x17{left:148.237500px;}
.x26{left:149.737487px;}
.x7b{left:151.192500px;}
.x79{left:153.457500px;}
.xaf{left:155.145000px;}
.xa1{left:156.929987px;}
.x49{left:167.429987px;}
.xc8{left:169.079987px;}
.x7a{left:172.657500px;}
.x38{left:174.630000px;}
.x4b{left:176.429987px;}
.xc9{left:179.594987px;}
.x7e{left:183.007500px;}
.x44{left:185.295000px;}
.xb5{left:187.679987px;}
.x77{left:188.842500px;}
.x7c{left:190.207500px;}
.xae{left:192.450000px;}
.x54{left:194.444987px;}
.xf{left:196.694987px;}
.x3{left:199.394987px;}
.x4{left:201.194987px;}
.x40{left:202.230000px;}
.x8a{left:212.579987px;}
.x9b{left:214.694987px;}
.x51{left:216.029987px;}
.xb2{left:217.200000px;}
.x96{left:218.745000px;}
.x78{left:219.757500px;}
.xa3{left:221.744987px;}
.x33{left:222.780000px;}
.x93{left:225.494987px;}
.x6a{left:226.995000px;}
.xe{left:235.244987px;}
.x76{left:237.029987px;}
.xa7{left:241.695000px;}
.x2f{left:242.894987px;}
.x2c{left:248.445000px;}
.x37{left:256.545000px;}
.xb3{left:259.245000px;}
.x43{left:275.444987px;}
.x20{left:276.494987px;}
.xb0{left:278.145000px;}
.x14{left:280.379987px;}
.x7d{left:283.687500px;}
.xc1{left:285.795000px;}
.xb{left:291.029987px;}
.x7{left:292.379987px;}
.x27{left:293.444987px;}
.xa0{left:296.894987px;}
.x30{left:297.944987px;}
.x45{left:300.495000px;}
.x8{left:302.144987px;}
.x1d{left:305.879987px;}
.x31{left:311.444987px;}
.x21{left:314.129987px;}
.x4a{left:317.444987px;}
.x16{left:319.994987px;}
.x24{left:322.094987px;}
.x82{left:327.637500px;}
.x9d{left:329.055000px;}
.x1e{left:334.694987px;}
.x3d{left:338.744987px;}
.x97{left:342.795000px;}
.xa8{left:349.695000px;}
.x6{left:361.094987px;}
.x12{left:363.029987px;}
.x3b{left:364.094987px;}
.x47{left:366.044987px;}
.xb6{left:368.745000px;}
.x36{left:370.694987px;}
.x48{left:373.844987px;}
.x4e{left:376.844987px;}
.x10{left:387.374987px;}
.xb4{left:388.874987px;}
.x15{left:390.374987px;}
.xa{left:396.074987px;}
.x2a{left:398.774987px;}
.x29{left:400.724987px;}
.x8b{left:402.225000px;}
.x9{left:406.424987px;}
.xd{left:408.074987px;}
.x22{left:410.774987px;}
.x83{left:412.724987px;}
.x28{left:415.124987px;}
.x5{left:420.524987px;}
.x56{left:422.474987px;}
.x52{left:423.524987px;}
.xc{left:427.724987px;}
.x4f{left:434.024987px;}
.x1f{left:451.574987px;}
.x35{left:455.174987px;}
.x13{left:456.524987px;}
.x32{left:457.724987px;}
.x11{left:458.924987px;}
.x23{left:460.424987px;}
.x25{left:462.974987px;}
.x1{left:468.074987px;}
.x57{left:485.474987px;}
.x5a{left:488.175000px;}
.xc6{left:497.625000px;}
.x8c{left:500.025000px;}
.x1a{left:506.025000px;}
.x55{left:507.224987px;}
.x84{left:508.725000px;}
.xb7{left:516.075000px;}
.x46{left:527.924987px;}
.x8d{left:547.725000px;}
.xb8{left:557.775000px;}
.xa9{left:565.725000px;}
.x98{left:571.725000px;}
.x9f{left:585.074987px;}
.x86{left:619.575000px;}
.xc2{left:620.925000px;}
.xc7{left:622.425000px;}
.x6d{left:631.575000px;}
.x5c{left:644.655000px;}
.x8e{left:660.270000px;}
.x99{left:667.470000px;}
.xaa{left:673.770000px;}
.xa6{left:676.319987px;}
.xb9{left:684.870000px;}
.xca{left:687.254987px;}
.x2d{left:694.020000px;}
.x41{left:700.470000px;}
.x39{left:707.520000px;}
.xc3{left:708.870000px;}
.xb1{left:719.069987px;}
.x3c{left:721.020000px;}
.xa4{left:727.469987px;}
.x90{left:734.520000px;}
.xa5{left:737.069987px;}
.xad{left:743.819987px;}
.xab{left:749.370000px;}
.xba{left:751.320000px;}
.x94{left:767.369987px;}
.x50{left:777.569987px;}
.x92{left:787.754987px;}
.x89{left:788.819987px;}
.x4d{left:795.869987px;}
.x75{left:799.754987px;}
.x4c{left:817.754987px;}
@media print{
.v5{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:14.400000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:32.000000pt;}
.v2{vertical-align:37.333333pt;}
.v6{vertical-align:42.133333pt;}
.v4{vertical-align:48.533333pt;}
.v7{vertical-align:91.200000pt;}
.ls1{letter-spacing:-2.794667pt;}
.ls4c{letter-spacing:-2.666667pt;}
.ls2{letter-spacing:-2.517333pt;}
.ls2a{letter-spacing:-1.600000pt;}
.lsb{letter-spacing:-0.682667pt;}
.ls32{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls39{letter-spacing:-0.490667pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls4d{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.234667pt;}
.ls3{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.170667pt;}
.ls19{letter-spacing:-0.149333pt;}
.ls4a{letter-spacing:-0.112000pt;}
.ls6{letter-spacing:-0.090667pt;}
.lse{letter-spacing:-0.064000pt;}
.ls31{letter-spacing:-0.042667pt;}
.ls18{letter-spacing:-0.021333pt;}
.ls10{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.010667pt;}
.ls11{letter-spacing:0.021333pt;}
.ls45{letter-spacing:0.026667pt;}
.ls9{letter-spacing:0.042667pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls20{letter-spacing:0.064000pt;}
.ls49{letter-spacing:0.074667pt;}
.ls1e{letter-spacing:0.085333pt;}
.ls13{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.138667pt;}
.ls1d{letter-spacing:0.149333pt;}
.ls30{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.170667pt;}
.ls34{letter-spacing:0.192000pt;}
.ls3c{letter-spacing:0.197333pt;}
.ls3e{letter-spacing:0.202667pt;}
.ls3b{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.234667pt;}
.ls23{letter-spacing:0.245333pt;}
.ls48{letter-spacing:0.253333pt;}
.ls2c{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls38{letter-spacing:0.277333pt;}
.ls4b{letter-spacing:0.320000pt;}
.ls43{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls26{letter-spacing:0.682667pt;}
.ls25{letter-spacing:1.013333pt;}
.ls46{letter-spacing:1.066667pt;}
.ls29{letter-spacing:1.600000pt;}
.ls28{letter-spacing:2.133333pt;}
.ls2e{letter-spacing:2.666667pt;}
.ls42{letter-spacing:3.200000pt;}
.ls44{letter-spacing:4.800000pt;}
.ls27{letter-spacing:7.413333pt;}
.ls41{letter-spacing:7.466667pt;}
.ls33{letter-spacing:10.517333pt;}
.ls35{letter-spacing:11.050667pt;}
.ls2b{letter-spacing:16.480000pt;}
.ls24{letter-spacing:24.000000pt;}
.ls36{letter-spacing:24.928000pt;}
.ls22{letter-spacing:30.261333pt;}
.ls2f{letter-spacing:36.661333pt;}
.ls3a{letter-spacing:48.928000pt;}
.ls3d{letter-spacing:78.261333pt;}
.ls40{letter-spacing:226.064000pt;}
.ls12{letter-spacing:464.026667pt;}
.ls1c{letter-spacing:746.773333pt;}
.ls8{letter-spacing:749.440000pt;}
.ls47{letter-spacing:752.000000pt;}
.ls1a{letter-spacing:752.026667pt;}
.ls37{letter-spacing:752.106667pt;}
.ws1e{word-spacing:-64.000000pt;}
.ws38{word-spacing:-32.533333pt;}
.ws37{word-spacing:-32.266667pt;}
.ws39{word-spacing:-32.000000pt;}
.wsc{word-spacing:-21.461333pt;}
.ws0{word-spacing:-21.333333pt;}
.wsa{word-spacing:-21.077333pt;}
.wsb{word-spacing:-20.650667pt;}
.ws2{word-spacing:-18.816000pt;}
.ws6{word-spacing:-18.805333pt;}
.ws5{word-spacing:-18.666667pt;}
.ws1{word-spacing:-18.538667pt;}
.ws4{word-spacing:-18.442667pt;}
.ws8{word-spacing:-17.333333pt;}
.ws7{word-spacing:-17.242667pt;}
.ws28{word-spacing:-16.277333pt;}
.ws1f{word-spacing:-16.256000pt;}
.ws19{word-spacing:-16.234667pt;}
.ws27{word-spacing:-16.192000pt;}
.ws15{word-spacing:-16.170667pt;}
.ws18{word-spacing:-16.149333pt;}
.ws10{word-spacing:-16.106667pt;}
.ws1a{word-spacing:-16.085333pt;}
.ws1c{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.042667pt;}
.wsf{word-spacing:-16.021333pt;}
.ws12{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.999997pt;}
.ws16{word-spacing:-15.978667pt;}
.ws22{word-spacing:-15.957333pt;}
.wsd{word-spacing:-15.936000pt;}
.ws17{word-spacing:-15.850667pt;}
.ws14{word-spacing:-15.829333pt;}
.ws11{word-spacing:-15.808000pt;}
.ws35{word-spacing:-15.786667pt;}
.ws1b{word-spacing:-15.765333pt;}
.ws2b{word-spacing:-15.509333pt;}
.ws13{word-spacing:-15.488000pt;}
.ws29{word-spacing:-15.466667pt;}
.ws23{word-spacing:-15.424000pt;}
.ws36{word-spacing:-14.554667pt;}
.ws25{word-spacing:-14.080000pt;}
.ws2e{word-spacing:-12.266667pt;}
.ws20{word-spacing:-11.333333pt;}
.ws2a{word-spacing:-10.922667pt;}
.ws30{word-spacing:-10.848000pt;}
.ws2c{word-spacing:-10.730667pt;}
.ws1d{word-spacing:-10.666667pt;}
.ws2f{word-spacing:-7.232000pt;}
.ws24{word-spacing:-5.482667pt;}
.ws26{word-spacing:-4.608000pt;}
.ws3{word-spacing:0.000000pt;}
.ws21{word-spacing:15.586667pt;}
.ws2d{word-spacing:80.506667pt;}
.ws32{word-spacing:179.002667pt;}
.ws31{word-spacing:202.394667pt;}
.ws34{word-spacing:221.861333pt;}
.ws33{word-spacing:234.682667pt;}
._6b{margin-left:-10.026667pt;}
._5e{margin-left:-4.848000pt;}
._1{margin-left:-3.584000pt;}
._0{margin-left:-2.389333pt;}
._3{margin-left:-0.906667pt;}
._2{width:0.938667pt;}
._b{width:2.032000pt;}
._4{width:3.072000pt;}
._5{width:4.229333pt;}
._9{width:5.210667pt;}
._6{width:6.437333pt;}
._7{width:7.333333pt;}
._a{width:8.576000pt;}
._c{width:9.664000pt;}
._8{width:10.560000pt;}
._16{width:11.776000pt;}
._d{width:12.736000pt;}
._4d{width:13.909333pt;}
._e{width:15.232000pt;}
._f{width:16.314667pt;}
._14{width:17.434667pt;}
._17{width:18.341333pt;}
._11{width:19.392000pt;}
._10{width:20.416000pt;}
._15{width:21.376000pt;}
._13{width:22.682667pt;}
._12{width:23.744000pt;}
._62{width:24.778667pt;}
._61{width:25.856000pt;}
._65{width:27.264000pt;}
._67{width:28.288000pt;}
._66{width:29.637333pt;}
._5f{width:30.912000pt;}
._5d{width:32.000000pt;}
._59{width:33.152000pt;}
._78{width:34.058667pt;}
._60{width:35.008000pt;}
._6c{width:36.608000pt;}
._69{width:38.336000pt;}
._79{width:39.296000pt;}
._64{width:40.650667pt;}
._63{width:41.600000pt;}
._73{width:42.496000pt;}
._74{width:43.610667pt;}
._77{width:45.632000pt;}
._68{width:47.296000pt;}
._53{width:71.706667pt;}
._5b{width:79.728000pt;}
._1f{width:83.733333pt;}
._4e{width:87.706667pt;}
._58{width:93.338667pt;}
._70{width:95.600000pt;}
._71{width:99.210667pt;}
._6d{width:101.669333pt;}
._6f{width:105.408000pt;}
._6e{width:110.144000pt;}
._45{width:119.706667pt;}
._4c{width:136.746667pt;}
._3b{width:138.656000pt;}
._3f{width:148.122667pt;}
._55{width:160.629333pt;}
._6a{width:176.053333pt;}
._75{width:201.546667pt;}
._72{width:229.440000pt;}
._76{width:257.690667pt;}
._4a{width:294.762667pt;}
._3c{width:351.712000pt;}
._4b{width:386.346667pt;}
._51{width:391.850667pt;}
._52{width:414.634667pt;}
._28{width:421.152000pt;}
._41{width:438.965333pt;}
._54{width:442.613333pt;}
._29{width:446.400000pt;}
._49{width:468.138667pt;}
._2a{width:486.432000pt;}
._40{width:510.464000pt;}
._26{width:532.000000pt;}
._23{width:563.232000pt;}
._57{width:591.914667pt;}
._35{width:608.224000pt;}
._34{width:652.320000pt;}
._22{width:744.778667pt;}
._3e{width:767.840000pt;}
._39{width:833.632000pt;}
._24{width:842.464000pt;}
._2d{width:867.616000pt;}
._5c{width:868.586667pt;}
._2c{width:896.480000pt;}
._2b{width:917.024000pt;}
._32{width:920.608000pt;}
._36{width:922.016000pt;}
._4f{width:926.506667pt;}
._56{width:956.394667pt;}
._44{width:977.397333pt;}
._18{width:980.512000pt;}
._21{width:998.816000pt;}
._33{width:1014.944000pt;}
._47{width:1053.994667pt;}
._37{width:1094.624000pt;}
._1d{width:1102.005333pt;}
._2e{width:1154.720000pt;}
._27{width:1157.024000pt;}
._1b{width:1190.912000pt;}
._5a{width:1197.738667pt;}
._1e{width:1208.394667pt;}
._1c{width:1211.978667pt;}
._20{width:1258.464000pt;}
._25{width:1270.944000pt;}
._2f{width:1281.632000pt;}
._3d{width:1347.360000pt;}
._3a{width:1382.880000pt;}
._1a{width:1390.005333pt;}
._38{width:1411.626667pt;}
._31{width:1420.256000pt;}
._42{width:1421.301333pt;}
._19{width:1425.632000pt;}
._46{width:1473.770667pt;}
._30{width:1475.296000pt;}
._48{width:1568.234667pt;}
._50{width:1614.826667pt;}
._43{width:1714.421333pt;}
.fs7{font-size:5.333333pt;}
.fs9{font-size:16.000000pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:53.333333pt;}
.fsd{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.fs1{font-size:85.333333pt;}
.fse{font-size:96.000000pt;}
.y299{bottom:-10.933333pt;}
.y0{bottom:0.000000pt;}
.y44e{bottom:4.120000pt;}
.y445{bottom:4.133333pt;}
.y20e{bottom:4.466667pt;}
.y456{bottom:5.600000pt;}
.y44a{bottom:5.733333pt;}
.y263{bottom:6.133333pt;}
.y260{bottom:6.266667pt;}
.y26c{bottom:6.280000pt;}
.y249{bottom:7.066667pt;}
.y2a4{bottom:7.200000pt;}
.y24f{bottom:7.466667pt;}
.y254{bottom:7.480000pt;}
.y2aa{bottom:7.506667pt;}
.y2ac{bottom:7.586667pt;}
.y24b{bottom:7.600000pt;}
.y2af{bottom:7.613333pt;}
.y2c7{bottom:8.000000pt;}
.y2f3{bottom:8.400000pt;}
.y2d4{bottom:8.520000pt;}
.y2c9{bottom:8.533333pt;}
.y2cd{bottom:8.546667pt;}
.y2fa{bottom:8.560000pt;}
.y298{bottom:9.066667pt;}
.yc8{bottom:12.133333pt;}
.yc0{bottom:12.266667pt;}
.y9d{bottom:12.280000pt;}
.y101{bottom:14.400000pt;}
.y109{bottom:14.413333pt;}
.yfe{bottom:14.533333pt;}
.y100{bottom:14.546667pt;}
.y10c{bottom:14.573333pt;}
.y365{bottom:15.200000pt;}
.y367{bottom:15.466667pt;}
.y36d{bottom:15.506667pt;}
.y36b{bottom:15.600000pt;}
.y2ed{bottom:16.013333pt;}
.y264{bottom:16.800000pt;}
.y2a2{bottom:18.266667pt;}
.y257{bottom:18.933333pt;}
.y362{bottom:19.200000pt;}
.y2c5{bottom:19.600000pt;}
.y105{bottom:20.000000pt;}
.y316{bottom:20.240000pt;}
.y4c{bottom:20.933333pt;}
.y364{bottom:23.200000pt;}
.y2fc{bottom:24.533333pt;}
.y262{bottom:27.333333pt;}
.y273{bottom:27.466667pt;}
.y297{bottom:27.733333pt;}
.y2a3{bottom:29.333333pt;}
.y360{bottom:30.266667pt;}
.y25a{bottom:30.406667pt;}
.y2c6{bottom:31.226667pt;}
.y271{bottom:37.866667pt;}
.y268{bottom:38.000000pt;}
.y314{bottom:40.066667pt;}
.y361{bottom:41.333333pt;}
.y2{bottom:43.900000pt;}
.y363{bottom:45.333333pt;}
.y296{bottom:46.666667pt;}
.y267{bottom:48.533333pt;}
.y270{bottom:48.573333pt;}
.y44c{bottom:49.453333pt;}
.y447{bottom:49.466667pt;}
.y10e{bottom:51.233333pt;}
.y30e{bottom:55.666667pt;}
.y386{bottom:55.706667pt;}
.y4b{bottom:58.533333pt;}
.y59{bottom:59.233333pt;}
.y295{bottom:66.533333pt;}
.y26f{bottom:69.640000pt;}
.y266{bottom:69.733333pt;}
.y24d{bottom:76.133333pt;}
.y39b{bottom:78.106667pt;}
.y294{bottom:85.240000pt;}
.y1{bottom:89.633333pt;}
.y20b{bottom:90.966667pt;}
.y387{bottom:92.200000pt;}
.y17d{bottom:92.433333pt;}
.y2b5{bottom:94.166667pt;}
.y403{bottom:96.033333pt;}
.y25c{bottom:99.900000pt;}
.y30f{bottom:100.106667pt;}
.y4d7{bottom:100.166667pt;}
.y158{bottom:100.433333pt;}
.y39c{bottom:100.533333pt;}
.y42e{bottom:104.033333pt;}
.y293{bottom:104.173333pt;}
.y487{bottom:105.366667pt;}
.y30c{bottom:105.500000pt;}
.y1b0{bottom:106.166667pt;}
.y4c3{bottom:106.700000pt;}
.y49a{bottom:106.833333pt;}
.y1f9{bottom:107.100000pt;}
.y33b{bottom:107.766667pt;}
.y3d6{bottom:109.366667pt;}
.y1cf{bottom:110.033333pt;}
.y35e{bottom:110.433333pt;}
.y3b8{bottom:110.566667pt;}
.y410{bottom:112.033333pt;}
.y2de{bottom:112.700000pt;}
.ybe{bottom:113.900000pt;}
.y3ce{bottom:114.166667pt;}
.y4d6{bottom:117.366667pt;}
.y2eb{bottom:118.700000pt;}
.y344{bottom:118.966667pt;}
.y3cd{bottom:119.900000pt;}
.y2b4{bottom:120.033333pt;}
.y20a{bottom:120.833333pt;}
.y17c{bottom:122.166667pt;}
.y48f{bottom:122.566667pt;}
.y39d{bottom:122.933333pt;}
.y292{bottom:122.973333pt;}
.y227{bottom:123.100000pt;}
.y259{bottom:123.366667pt;}
.y4c2{bottom:123.900000pt;}
.y402{bottom:125.900000pt;}
.y9b{bottom:127.100000pt;}
.y388{bottom:128.706667pt;}
.y157{bottom:130.166667pt;}
.y242{bottom:130.300000pt;}
.y58{bottom:131.366667pt;}
.y369{bottom:132.133333pt;}
.y2a6{bottom:133.333333pt;}
.y42d{bottom:133.906667pt;}
.y128{bottom:134.560000pt;}
.y23c{bottom:135.226667pt;}
.y30b{bottom:135.373333pt;}
.y486{bottom:135.906667pt;}
.y1af{bottom:136.040000pt;}
.y1a6{bottom:136.173333pt;}
.y1f8{bottom:136.973333pt;}
.ybd{bottom:137.240000pt;}
.y397{bottom:137.373333pt;}
.y33a{bottom:137.640000pt;}
.y143{bottom:138.160000pt;}
.y2fe{bottom:139.373333pt;}
.y2cb{bottom:139.733333pt;}
.y1ce{bottom:139.773333pt;}
.y38d{bottom:140.200000pt;}
.y3b7{bottom:140.306667pt;}
.y4c1{bottom:141.106667pt;}
.y291{bottom:141.906667pt;}
.y3a5{bottom:142.706667pt;}
.y181{bottom:143.240000pt;}
.y38{bottom:143.493333pt;}
.y170{bottom:144.040000pt;}
.y310{bottom:144.506667pt;}
.y39e{bottom:145.333333pt;}
.y2b3{bottom:145.773333pt;}
.y25b{bottom:146.306667pt;}
.y3f0{bottom:146.960000pt;}
.y4d5{bottom:147.773333pt;}
.y1b{bottom:148.040000pt;}
.y2ea{bottom:148.573333pt;}
.y343{bottom:148.706667pt;}
.y3cc{bottom:149.640000pt;}
.y209{bottom:150.706667pt;}
.y2dd{bottom:150.840000pt;}
.y315{bottom:150.973333pt;}
.y1e0{bottom:151.106667pt;}
.y17b{bottom:152.040000pt;}
.y1eb{bottom:152.960000pt;}
.y485{bottom:153.106667pt;}
.y280{bottom:153.226667pt;}
.y433{bottom:155.640000pt;}
.y4c0{bottom:158.306667pt;}
.y57{bottom:159.226667pt;}
.y156{bottom:160.040000pt;}
.ybc{bottom:160.440000pt;}
.y290{bottom:161.773333pt;}
.y401{bottom:163.640000pt;}
.y127{bottom:164.306667pt;}
.y1c5{bottom:164.440000pt;}
.y23b{bottom:165.106667pt;}
.y389{bottom:165.240000pt;}
.y1a5{bottom:165.906667pt;}
.y1f7{bottom:166.826667pt;}
.y427{bottom:167.240000pt;}
.y241{bottom:167.493333pt;}
.y39f{bottom:167.773333pt;}
.y142{bottom:168.040000pt;}
.y35d{bottom:168.440000pt;}
.y258{bottom:169.106667pt;}
.y1cd{bottom:169.640000pt;}
.y3b6{bottom:170.160000pt;}
.y484{bottom:170.306667pt;}
.y1a{bottom:171.226667pt;}
.y37{bottom:171.373333pt;}
.y42c{bottom:171.626667pt;}
.y48e{bottom:171.773333pt;}
.y9a{bottom:172.973333pt;}
.y16f{bottom:173.893333pt;}
.y4bf{bottom:175.506667pt;}
.y3ef{bottom:176.706667pt;}
.y3d5{bottom:178.173333pt;}
.y2e9{bottom:178.306667pt;}
.y342{bottom:178.573333pt;}
.y3cb{bottom:179.506667pt;}
.y40f{bottom:179.640000pt;}
.ybb{bottom:179.773333pt;}
.y208{bottom:180.440000pt;}
.y17a{bottom:181.906667pt;}
.y56{bottom:182.040000pt;}
.y226{bottom:182.706667pt;}
.y75{bottom:182.840000pt;}
.yf1{bottom:182.960000pt;}
.y27f{bottom:183.106667pt;}
.y440{bottom:185.506667pt;}
.y2dc{bottom:186.840000pt;}
.y378{bottom:187.106667pt;}
.y2b2{bottom:187.373333pt;}
.y396{bottom:188.040000pt;}
.y35c{bottom:188.306667pt;}
.y311{bottom:188.906667pt;}
.y1df{bottom:188.960000pt;}
.y155{bottom:189.906667pt;}
.y3a0{bottom:190.173333pt;}
.y2c3{bottom:191.373333pt;}
.y4be{bottom:192.573333pt;}
.y256{bottom:192.706667pt;}
.y400{bottom:193.506667pt;}
.y36{bottom:194.173333pt;}
.y23a{bottom:194.840000pt;}
.y4d4{bottom:195.506667pt;}
.y1a4{bottom:195.773333pt;}
.y1f6{bottom:196.573333pt;}
.y339{bottom:197.240000pt;}
.y19{bottom:197.893333pt;}
.y1ea{bottom:198.840000pt;}
.y2fd{bottom:198.973333pt;}
.y28f{bottom:199.373333pt;}
.y1cc{bottom:199.506667pt;}
.y32a{bottom:200.440000pt;}
.y42b{bottom:201.506667pt;}
.y38a{bottom:201.733333pt;}
.y483{bottom:202.306667pt;}
.yba{bottom:203.373333pt;}
.y55{bottom:203.640000pt;}
.y426{bottom:204.973333pt;}
.y240{bottom:205.106667pt;}
.y3ee{bottom:206.560000pt;}
.y3b5{bottom:208.040000pt;}
.y2e8{bottom:208.173333pt;}
.y341{bottom:208.440000pt;}
.y48d{bottom:208.706667pt;}
.y3ca{bottom:209.373333pt;}
.y40e{bottom:209.506667pt;}
.y2b1{bottom:210.173333pt;}
.y207{bottom:210.293333pt;}
.y179{bottom:211.640000pt;}
.y225{bottom:212.560000pt;}
.y3a1{bottom:212.600000pt;}
.y4d3{bottom:212.706667pt;}
.y74{bottom:212.840000pt;}
.y35b{bottom:213.626667pt;}
.y43f{bottom:215.373333pt;}
.y255{bottom:215.506667pt;}
.y35{bottom:215.640000pt;}
.y377{bottom:216.973333pt;}
.y99{bottom:217.506667pt;}
.y28e{bottom:218.040000pt;}
.y1de{bottom:218.840000pt;}
.y154{bottom:219.626667pt;}
.yf0{bottom:221.506667pt;}
.y4bd{bottom:223.106667pt;}
.yb9{bottom:223.240000pt;}
.y432{bottom:223.373333pt;}
.y395{bottom:223.906667pt;}
.y126{bottom:224.040000pt;}
.y385{bottom:224.306667pt;}
.y18{bottom:224.560000pt;}
.y239{bottom:224.706667pt;}
.y54{bottom:225.106667pt;}
.y30a{bottom:225.506667pt;}
.y1a3{bottom:225.626667pt;}
.y1f5{bottom:226.440000pt;}
.y338{bottom:227.106667pt;}
.y141{bottom:227.640000pt;}
.y2c2{bottom:229.240000pt;}
.y4d2{bottom:229.906667pt;}
.y329{bottom:230.173333pt;}
.y2ef{bottom:230.973333pt;}
.y3ff{bottom:231.373333pt;}
.y482{bottom:232.706667pt;}
.y2b0{bottom:233.106667pt;}
.y312{bottom:233.333333pt;}
.y16e{bottom:233.506667pt;}
.y1e9{bottom:234.706667pt;}
.y425{bottom:234.840000pt;}
.y3a2{bottom:235.000000pt;}
.y2f0{bottom:235.760000pt;}
.y3ed{bottom:236.440000pt;}
.y28d{bottom:236.973333pt;}
.y34{bottom:237.626667pt;}
.y3b4{bottom:237.773333pt;}
.y2e7{bottom:238.040000pt;}
.y340{bottom:238.173333pt;}
.y38b{bottom:238.266667pt;}
.y460{bottom:238.306667pt;}
.y24c{bottom:238.973333pt;}
.y384{bottom:239.000000pt;}
.y48c{bottom:239.106667pt;}
.y3c9{bottom:239.240000pt;}
.y40d{bottom:239.373333pt;}
.y206{bottom:240.173333pt;}
.y178{bottom:241.506667pt;}
.y224{bottom:242.440000pt;}
.y27e{bottom:242.706667pt;}
.y73{bottom:242.840000pt;}
.yb8{bottom:243.106667pt;}
.y1cb{bottom:243.773333pt;}
.y53{bottom:246.706667pt;}
.y376{bottom:246.840000pt;}
.y4d1{bottom:246.973333pt;}
.y17{bottom:247.773333pt;}
.y1dd{bottom:248.560000pt;}
.y153{bottom:249.506667pt;}
.y39a{bottom:252.400000pt;}
.y431{bottom:253.106667pt;}
.y4bc{bottom:253.640000pt;}
.y125{bottom:253.773333pt;}
.yef{bottom:254.173333pt;}
.y238{bottom:254.560000pt;}
.y98{bottom:254.706667pt;}
.y309{bottom:255.373333pt;}
.y28c{bottom:255.773333pt;}
.y2ae{bottom:255.893333pt;}
.y337{bottom:256.973333pt;}
.y3a3{bottom:257.440000pt;}
.y140{bottom:257.506667pt;}
.y2c1{bottom:259.106667pt;}
.y394{bottom:259.773333pt;}
.y328{bottom:260.040000pt;}
.y33{bottom:260.840000pt;}
.y3fe{bottom:261.106667pt;}
.y253{bottom:261.893333pt;}
.y1c4{bottom:261.906667pt;}
.y1a2{bottom:263.373333pt;}
.y1f4{bottom:263.640000pt;}
.y4d0{bottom:264.173333pt;}
.y424{bottom:264.706667pt;}
.yb7{bottom:266.706667pt;}
.y399{bottom:267.066667pt;}
.y3b3{bottom:267.626667pt;}
.y1e8{bottom:268.040000pt;}
.y52{bottom:268.173333pt;}
.y3c8{bottom:268.973333pt;}
.y40c{bottom:269.106667pt;}
.y4bb{bottom:270.840000pt;}
.y16{bottom:270.973333pt;}
.y16d{bottom:271.373333pt;}
.y223{bottom:272.173333pt;}
.y2e6{bottom:273.906667pt;}
.yee{bottom:274.040000pt;}
.y3ec{bottom:274.173333pt;}
.y18e{bottom:274.440000pt;}
.y97{bottom:274.573333pt;}
.y28b{bottom:274.706667pt;}
.y38c{bottom:274.773333pt;}
.y375{bottom:276.573333pt;}
.y205{bottom:277.373333pt;}
.y313{bottom:277.733333pt;}
.y1ca{bottom:278.440000pt;}
.y2ad{bottom:278.840000pt;}
.y152{bottom:279.373333pt;}
.y393{bottom:279.626667pt;}
.y3a4{bottom:279.840000pt;}
.y72{bottom:280.306667pt;}
.y27d{bottom:280.573333pt;}
.y23f{bottom:280.706667pt;}
.y4cf{bottom:281.373333pt;}
.y43e{bottom:282.973333pt;}
.y32{bottom:284.040000pt;}
.y237{bottom:284.306667pt;}
.y252{bottom:284.706667pt;}
.y308{bottom:285.106667pt;}
.y336{bottom:286.706667pt;}
.y2fb{bottom:286.840000pt;}
.y13f{bottom:287.373333pt;}
.y4ba{bottom:288.040000pt;}
.y2c0{bottom:288.840000pt;}
.y51{bottom:289.773333pt;}
.yb6{bottom:290.306667pt;}
.y3fd{bottom:290.960000pt;}
.y352{bottom:291.373333pt;}
.y124{bottom:291.626667pt;}
.y1ae{bottom:293.106667pt;}
.y1a1{bottom:293.240000pt;}
.y28a{bottom:293.373333pt;}
.y15{bottom:294.173333pt;}
.y96{bottom:294.440000pt;}
.y3b2{bottom:297.506667pt;}
.y327{bottom:297.906667pt;}
.y4ce{bottom:298.573333pt;}
.y3c7{bottom:298.840000pt;}
.y42a{bottom:298.973333pt;}
.y16c{bottom:301.106667pt;}
.y1f3{bottom:301.240000pt;}
.y2ab{bottom:301.640000pt;}
.yed{bottom:301.906667pt;}
.y222{bottom:302.040000pt;}
.y423{bottom:302.440000pt;}
.y317{bottom:303.666667pt;}
.y33f{bottom:303.906667pt;}
.y3eb{bottom:304.040000pt;}
.y4b9{bottom:305.106667pt;}
.y3d4{bottom:305.506667pt;}
.y374{bottom:306.440000pt;}
.y40b{bottom:306.973333pt;}
.y31{bottom:307.240000pt;}
.y251{bottom:307.640000pt;}
.y1dc{bottom:308.306667pt;}
.y151{bottom:309.106667pt;}
.yb5{bottom:310.173333pt;}
.y27c{bottom:310.306667pt;}
.y50{bottom:311.240000pt;}
.y289{bottom:312.306667pt;}
.y204{bottom:312.973333pt;}
.y236{bottom:314.173333pt;}
.y95{bottom:314.306667pt;}
.y1c9{bottom:314.840000pt;}
.y18d{bottom:314.960000pt;}
.y2e5{bottom:315.106667pt;}
.y307{bottom:315.773333pt;}
.y335{bottom:316.573333pt;}
.y13e{bottom:317.106667pt;}
.y23e{bottom:317.893333pt;}
.y2bf{bottom:318.706667pt;}
.y47d{bottom:319.506667pt;}
.y45f{bottom:320.040000pt;}
.y3fc{bottom:320.840000pt;}
.y392{bottom:320.960000pt;}
.y351{bottom:321.226667pt;}
.y123{bottom:321.506667pt;}
.yec{bottom:321.773333pt;}
.y4b8{bottom:322.306667pt;}
.y1ad{bottom:322.973333pt;}
.y1a0{bottom:323.106667pt;}
.y2a9{bottom:324.560000pt;}
.y2f9{bottom:326.706667pt;}
.y3b1{bottom:327.226667pt;}
.y326{bottom:327.666667pt;}
.y23d{bottom:328.600000pt;}
.y3c6{bottom:328.733333pt;}
.y429{bottom:328.866667pt;}
.y250{bottom:330.466667pt;}
.y288{bottom:330.973333pt;}
.y16b{bottom:331.000000pt;}
.y221{bottom:331.933333pt;}
.y422{bottom:332.333333pt;}
.y14{bottom:332.866667pt;}
.yb4{bottom:333.800000pt;}
.y3ea{bottom:333.933333pt;}
.y94{bottom:334.200000pt;}
.y3d3{bottom:335.266667pt;}
.y373{bottom:336.333333pt;}
.y47c{bottom:336.733333pt;}
.y40a{bottom:336.866667pt;}
.y1db{bottom:338.200000pt;}
.y150{bottom:339.000000pt;}
.y4b7{bottom:339.533333pt;}
.y27b{bottom:340.200000pt;}
.y33e{bottom:341.133333pt;}
.y18c{bottom:342.866667pt;}
.y71{bottom:344.866667pt;}
.y306{bottom:345.533333pt;}
.y334{bottom:346.466667pt;}
.y13d{bottom:347.000000pt;}
.y2a8{bottom:347.400000pt;}
.y2be{bottom:348.600000pt;}
.y1c8{bottom:349.533333pt;}
.yeb{bottom:349.666667pt;}
.y287{bottom:349.906667pt;}
.y4cd{bottom:350.066667pt;}
.y43d{bottom:350.600000pt;}
.y350{bottom:351.133333pt;}
.y122{bottom:351.266667pt;}
.y1c3{bottom:351.400000pt;}
.y235{bottom:352.066667pt;}
.y19f{bottom:352.866667pt;}
.y24e{bottom:353.400000pt;}
.y47b{bottom:353.933333pt;}
.y93{bottom:354.066667pt;}
.y203{bottom:356.200000pt;}
.y30{bottom:356.733333pt;}
.y325{bottom:357.533333pt;}
.y3c5{bottom:358.466667pt;}
.y3fb{bottom:358.600000pt;}
.y16a{bottom:360.866667pt;}
.y220{bottom:361.666667pt;}
.y421{bottom:362.200000pt;}
.y45e{bottom:364.600000pt;}
.y3b0{bottom:365.133333pt;}
.y2f8{bottom:366.600000pt;}
.y4cc{bottom:367.266667pt;}
.y1da{bottom:367.933333pt;}
.y14f{bottom:368.866667pt;}
.yb3{bottom:369.000000pt;}
.yea{bottom:369.533333pt;}
.y286{bottom:369.773333pt;}
.y27a{bottom:370.066667pt;}
.y4f{bottom:370.333333pt;}
.y13{bottom:370.466667pt;}
.y1f2{bottom:370.600000pt;}
.y18b{bottom:370.733333pt;}
.y3e9{bottom:371.666667pt;}
.y70{bottom:371.800000pt;}
.y372{bottom:373.533333pt;}
.y4b6{bottom:373.933333pt;}
.y92{bottom:374.066667pt;}
.y20d{bottom:375.600000pt;}
.y24a{bottom:376.200000pt;}
.y13c{bottom:376.866667pt;}
.y2bd{bottom:378.333333pt;}
.y2f{bottom:378.733333pt;}
.y1c7{bottom:379.266667pt;}
.y43c{bottom:380.466667pt;}
.y34f{bottom:380.866667pt;}
.y121{bottom:381.133333pt;}
.y234{bottom:381.800000pt;}
.y45d{bottom:381.933333pt;}
.y1ac{bottom:382.600000pt;}
.y47a{bottom:382.866667pt;}
.y305{bottom:384.200000pt;}
.y4cb{bottom:384.466667pt;}
.y33d{bottom:386.733333pt;}
.y324{bottom:387.400000pt;}
.y3c4{bottom:388.333333pt;}
.y3fa{bottom:388.466667pt;}
.y285{bottom:388.573333pt;}
.y382{bottom:389.666667pt;}
.y169{bottom:390.600000pt;}
.y19e{bottom:390.733333pt;}
.y4b5{bottom:391.000000pt;}
.y21f{bottom:391.533333pt;}
.y2a7{bottom:393.133333pt;}
.y91{bottom:393.933333pt;}
.y3af{bottom:395.000000pt;}
.y428{bottom:396.466667pt;}
.ye9{bottom:397.400000pt;}
.y180{bottom:398.600000pt;}
.y6f{bottom:398.733333pt;}
.y248{bottom:399.800000pt;}
.y420{bottom:399.933333pt;}
.y4ca{bottom:401.666667pt;}
.yb2{bottom:404.333333pt;}
.y409{bottom:404.466667pt;}
.y1d9{bottom:405.800000pt;}
.y333{bottom:406.066667pt;}
.y2f7{bottom:406.466667pt;}
.y13b{bottom:406.600000pt;}
.y45c{bottom:406.733333pt;}
.y284{bottom:407.533333pt;}
.y12{bottom:407.933333pt;}
.y2bc{bottom:408.200000pt;}
.y18a{bottom:408.600000pt;}
.y4e{bottom:408.866667pt;}
.y3e8{bottom:409.533333pt;}
.y1f1{bottom:410.600000pt;}
.y34e{bottom:410.733333pt;}
.y120{bottom:411.000000pt;}
.y1ab{bottom:412.466667pt;}
.y90{bottom:413.800000pt;}
.y304{bottom:413.933333pt;}
.y233{bottom:415.000000pt;}
.y479{bottom:415.133333pt;}
.y1c6{bottom:415.666667pt;}
.y2a5{bottom:416.066667pt;}
.y371{bottom:416.600000pt;}
.ye8{bottom:417.400000pt;}
.y2e{bottom:417.933333pt;}
.y33c{bottom:418.066667pt;}
.y3c3{bottom:418.200000pt;}
.y43b{bottom:418.333333pt;}
.y4c9{bottom:418.733333pt;}
.y1c2{bottom:419.000000pt;}
.y381{bottom:419.533333pt;}
.y168{bottom:420.466667pt;}
.y19d{bottom:420.600000pt;}
.y20c{bottom:421.000000pt;}
.y21e{bottom:421.400000pt;}
.y3ae{bottom:424.733333pt;}
.y323{bottom:425.133333pt;}
.y4b4{bottom:425.400000pt;}
.y6e{bottom:425.666667pt;}
.y283{bottom:426.200000pt;}
.y3f9{bottom:426.333333pt;}
.yb1{bottom:427.933333pt;}
.y17f{bottom:428.466667pt;}
.y45b{bottom:429.400000pt;}
.y279{bottom:429.666667pt;}
.y41f{bottom:429.800000pt;}
.y478{bottom:432.333333pt;}
.y8f{bottom:433.666667pt;}
.y408{bottom:434.333333pt;}
.y1d8{bottom:435.666667pt;}
.y4c8{bottom:435.933333pt;}
.y14e{bottom:436.466667pt;}
.ye7{bottom:437.266667pt;}
.y2bb{bottom:438.066667pt;}
.y189{bottom:438.333333pt;}
.y3e7{bottom:439.400000pt;}
.y1f0{bottom:440.466667pt;}
.y34d{bottom:440.600000pt;}
.y2d{bottom:440.733333pt;}
.y370{bottom:441.400000pt;}
.y4b3{bottom:442.600000pt;}
.y247{bottom:443.133333pt;}
.y332{bottom:443.933333pt;}
.y13a{bottom:444.466667pt;}
.y282{bottom:445.133333pt;}
.y11{bottom:445.533333pt;}
.y4d{bottom:446.333333pt;}
.y2a1{bottom:447.533333pt;}
.yb0{bottom:447.800000pt;}
.y3c2{bottom:447.933333pt;}
.y43a{bottom:448.066667pt;}
.y477{bottom:449.533333pt;}
.y167{bottom:450.333333pt;}
.y21d{bottom:451.133333pt;}
.y45a{bottom:452.066667pt;}
.y6d{bottom:452.600000pt;}
.y4c7{bottom:453.133333pt;}
.y8e{bottom:453.533333pt;}
.y3ad{bottom:454.600000pt;}
.y322{bottom:455.000000pt;}
.y1c1{bottom:455.400000pt;}
.y3f8{bottom:456.066667pt;}
.y17e{bottom:458.333333pt;}
.y278{bottom:459.533333pt;}
.y41e{bottom:459.666667pt;}
.y4b2{bottom:459.800000pt;}
.y3d2{bottom:462.600000pt;}
.y2c{bottom:462.733333pt;}
.y4a{bottom:463.000000pt;}
.y499{bottom:463.800000pt;}
.y407{bottom:464.066667pt;}
.ye6{bottom:465.133333pt;}
.y1d7{bottom:465.400000pt;}
.y14d{bottom:466.333333pt;}
.y476{bottom:466.733333pt;}
.yaf{bottom:467.800000pt;}
.y3e6{bottom:469.133333pt;}
.y1ef{bottom:470.333333pt;}
.y11f{bottom:470.600000pt;}
.y8d{bottom:473.400000pt;}
.y331{bottom:473.800000pt;}
.y232{bottom:473.933333pt;}
.y188{bottom:474.200000pt;}
.y139{bottom:474.333333pt;}
.y459{bottom:474.733333pt;}
.y35a{bottom:476.066667pt;}
.y4b1{bottom:476.866667pt;}
.y439{bottom:477.933333pt;}
.y368{bottom:479.800000pt;}
.y177{bottom:480.066667pt;}
.y19c{bottom:480.200000pt;}
.y21c{bottom:481.000000pt;}
.y10{bottom:483.000000pt;}
.y475{bottom:483.800000pt;}
.y3ac{bottom:484.466667pt;}
.y321{bottom:484.866667pt;}
.y3c1{bottom:485.800000pt;}
.y430{bottom:485.933333pt;}
.y2f6{bottom:486.200000pt;}
.yae{bottom:487.666667pt;}
.y166{bottom:488.066667pt;}
.y303{bottom:488.733333pt;}
.y1c0{bottom:490.066667pt;}
.y6c{bottom:490.200000pt;}
.y3d1{bottom:492.466667pt;}
.ye5{bottom:493.000000pt;}
.y8c{bottom:493.266667pt;}
.y3f7{bottom:493.933333pt;}
.y498{bottom:494.333333pt;}
.y380{bottom:495.133333pt;}
.y1d6{bottom:495.266667pt;}
.y14c{bottom:496.066667pt;}
.y41d{bottom:497.400000pt;}
.y2ba{bottom:497.666667pt;}
.y277{bottom:499.000000pt;}
.y1ee{bottom:500.066667pt;}
.y34c{bottom:500.200000pt;}
.y11e{bottom:500.466667pt;}
.y4c6{bottom:500.733333pt;}
.y474{bottom:501.000000pt;}
.y2b{bottom:501.933333pt;}
.y187{bottom:502.066667pt;}
.y231{bottom:503.666667pt;}
.y138{bottom:504.066667pt;}
.y4de{bottom:505.266667pt;}
.y359{bottom:505.933333pt;}
.y3e5{bottom:507.000000pt;}
.y4b0{bottom:507.400000pt;}
.yad{bottom:507.533333pt;}
.y176{bottom:509.933333pt;}
.y21b{bottom:510.866667pt;}
.y330{bottom:511.000000pt;}
.y497{bottom:511.533333pt;}
.y8b{bottom:513.133333pt;}
.y3ab{bottom:514.200000pt;}
.y320{bottom:514.600000pt;}
.y3c0{bottom:515.666667pt;}
.y438{bottom:515.800000pt;}
.y6b{bottom:517.133333pt;}
.y165{bottom:517.933333pt;}
.y19b{bottom:518.066667pt;}
.y473{bottom:518.200000pt;}
.y302{bottom:518.600000pt;}
.y1bf{bottom:519.800000pt;}
.yf{bottom:520.600000pt;}
.ye4{bottom:520.866667pt;}
.y458{bottom:521.533333pt;}
.y3d0{bottom:522.200000pt;}
.y3f6{bottom:523.800000pt;}
.y4af{bottom:524.600000pt;}
.y37f{bottom:525.000000pt;}
.y2a{bottom:525.133333pt;}
.y14b{bottom:525.933333pt;}
.y2f5{bottom:526.066667pt;}
.y41c{bottom:527.266667pt;}
.yac{bottom:527.400000pt;}
.y2b9{bottom:527.533333pt;}
.y496{bottom:528.733333pt;}
.y186{bottom:529.933333pt;}
.y34b{bottom:530.066667pt;}
.y11d{bottom:530.200000pt;}
.y406{bottom:531.800000pt;}
.y2a0{bottom:533.000000pt;}
.y8a{bottom:533.133333pt;}
.y230{bottom:533.533333pt;}
.y137{bottom:533.933333pt;}
.y2db{bottom:535.133333pt;}
.y358{bottom:535.800000pt;}
.y3e4{bottom:536.866667pt;}
.y276{bottom:537.133333pt;}
.y1ed{bottom:537.266667pt;}
.y175{bottom:539.800000pt;}
.y21a{bottom:540.600000pt;}
.y274{bottom:542.466667pt;}
.y6a{bottom:544.066667pt;}
.y31f{bottom:544.466667pt;}
.y3bf{bottom:545.400000pt;}
.y437{bottom:545.533333pt;}
.y495{bottom:545.933333pt;}
.yab{bottom:547.266667pt;}
.y164{bottom:547.800000pt;}
.y29{bottom:548.333333pt;}
.y32f{bottom:548.466667pt;}
.ye3{bottom:548.733333pt;}
.y1be{bottom:549.666667pt;}
.y3cf{bottom:552.066667pt;}
.y275{bottom:552.466667pt;}
.y89{bottom:553.000000pt;}
.y3f5{bottom:553.533333pt;}
.y1d5{bottom:554.866667pt;}
.y4ae{bottom:555.133333pt;}
.y14a{bottom:555.800000pt;}
.y36f{bottom:557.533333pt;}
.y185{bottom:557.666667pt;}
.ye{bottom:558.200000pt;}
.y272{bottom:558.466667pt;}
.y34a{bottom:559.800000pt;}
.y49{bottom:559.933333pt;}
.y11c{bottom:560.066667pt;}
.y281{bottom:560.600000pt;}
.y405{bottom:561.533333pt;}
.y22f{bottom:563.400000pt;}
.y457{bottom:563.666667pt;}
.y136{bottom:563.800000pt;}
.y2b8{bottom:564.733333pt;}
.y2da{bottom:565.000000pt;}
.y41b{bottom:565.133333pt;}
.y357{bottom:565.666667pt;}
.y2f4{bottom:565.933333pt;}
.y3e3{bottom:566.600000pt;}
.ye2{bottom:568.600000pt;}
.y1aa{bottom:569.533333pt;}
.y219{bottom:570.466667pt;}
.yaa{bottom:570.866667pt;}
.y69{bottom:571.000000pt;}
.y28{bottom:571.533333pt;}
.y88{bottom:572.866667pt;}
.y31e{bottom:574.333333pt;}
.y3be{bottom:575.266667pt;}
.y163{bottom:577.533333pt;}
.y19a{bottom:577.666667pt;}
.y494{bottom:577.933333pt;}
.y32e{bottom:578.333333pt;}
.y472{bottom:579.133333pt;}
.y48{bottom:581.133333pt;}
.y3aa{bottom:581.933333pt;}
.y436{bottom:583.400000pt;}
.y37e{bottom:584.733333pt;}
.y149{bottom:585.533333pt;}
.y455{bottom:586.333333pt;}
.y1bd{bottom:587.533333pt;}
.y349{bottom:589.666667pt;}
.y11b{bottom:589.933333pt;}
.y3f4{bottom:591.400000pt;}
.y87{bottom:592.733333pt;}
.y22e{bottom:593.133333pt;}
.y135{bottom:593.533333pt;}
.ya9{bottom:594.466667pt;}
.y27{bottom:594.733333pt;}
.y2d9{bottom:594.866667pt;}
.y356{bottom:595.400000pt;}
.yd{bottom:595.666667pt;}
.y48b{bottom:596.200000pt;}
.y36e{bottom:596.333333pt;}
.ye1{bottom:596.466667pt;}
.y1a9{bottom:599.400000pt;}
.y218{bottom:600.333333pt;}
.y29f{bottom:600.733333pt;}
.y47{bottom:601.000000pt;}
.y26e{bottom:601.533333pt;}
.y4ad{bottom:602.733333pt;}
.y31d{bottom:604.066667pt;}
.y3e2{bottom:604.466667pt;}
.y3bd{bottom:605.133333pt;}
.y2f2{bottom:605.800000pt;}
.y1e7{bottom:606.466667pt;}
.y481{bottom:606.866667pt;}
.y162{bottom:607.400000pt;}
.y493{bottom:608.333333pt;}
.y68{bottom:608.600000pt;}
.y454{bottom:609.000000pt;}
.y3a9{bottom:611.800000pt;}
.y86{bottom:612.600000pt;}
.y435{bottom:613.266667pt;}
.y184{bottom:613.400000pt;}
.y471{bottom:613.533333pt;}
.y1ec{bottom:614.200000pt;}
.y37d{bottom:614.466667pt;}
.y301{bottom:615.133333pt;}
.y148{bottom:615.400000pt;}
.y32d{bottom:615.533333pt;}
.y1bc{bottom:617.266667pt;}
.y199{bottom:617.533333pt;}
.y26{bottom:617.933333pt;}
.y10d{bottom:618.066667pt;}
.y348{bottom:619.533333pt;}
.y11a{bottom:619.800000pt;}
.y4ac{bottom:619.933333pt;}
.y46{bottom:621.000000pt;}
.y3f3{bottom:621.266667pt;}
.y1d4{bottom:622.600000pt;}
.y22d{bottom:623.000000pt;}
.y134{bottom:623.400000pt;}
.y480{bottom:624.066667pt;}
.ye0{bottom:624.333333pt;}
.y2d8{bottom:624.600000pt;}
.yfc{bottom:625.533333pt;}
.y48a{bottom:626.600000pt;}
.y1a8{bottom:629.266667pt;}
.y217{bottom:630.066667pt;}
.y29e{bottom:630.466667pt;}
.y470{bottom:630.733333pt;}
.y391{bottom:631.400000pt;}
.y453{bottom:631.666667pt;}
.y85{bottom:632.466667pt;}
.y41a{bottom:632.733333pt;}
.yc{bottom:633.266667pt;}
.y3e1{bottom:634.333333pt;}
.y355{bottom:634.866667pt;}
.y36c{bottom:635.266667pt;}
.y67{bottom:635.533333pt;}
.y2b7{bottom:636.200000pt;}
.y4ab{bottom:637.133333pt;}
.y161{bottom:637.266667pt;}
.y10b{bottom:638.200000pt;}
.y25{bottom:640.733333pt;}
.y45{bottom:640.866667pt;}
.y183{bottom:641.266667pt;}
.y3a8{bottom:641.533333pt;}
.y489{bottom:643.800000pt;}
.ydf{bottom:644.333333pt;}
.y300{bottom:645.000000pt;}
.yd5{bottom:645.266667pt;}
.y2f1{bottom:645.706667pt;}
.y1bb{bottom:647.173333pt;}
.y46f{bottom:647.973333pt;}
.y2ca{bottom:648.640000pt;}
.y119{bottom:649.573333pt;}
.y32c{bottom:651.173333pt;}
.y37c{bottom:651.706667pt;}
.y84{bottom:652.373333pt;}
.y22c{bottom:652.906667pt;}
.y452{bottom:653.040000pt;}
.ya8{bottom:653.306667pt;}
.y4aa{bottom:654.373333pt;}
.yb{bottom:655.306667pt;}
.y47f{bottom:656.106667pt;}
.y198{bottom:657.573333pt;}
.y347{bottom:659.040000pt;}
.y404{bottom:659.173333pt;}
.y216{bottom:659.973333pt;}
.y29d{bottom:660.373333pt;}
.y44{bottom:660.773333pt;}
.y488{bottom:661.040000pt;}
.y2b6{bottom:661.440000pt;}
.y66{bottom:662.506667pt;}
.y419{bottom:662.640000pt;}
.y3e0{bottom:664.240000pt;}
.y3bc{bottom:664.773333pt;}
.y46e{bottom:665.173333pt;}
.y32b{bottom:666.506667pt;}
.y160{bottom:667.173333pt;}
.y390{bottom:667.306667pt;}
.y246{bottom:667.973333pt;}
.y10a{bottom:668.093333pt;}
.y182{bottom:669.040000pt;}
.y354{bottom:669.306667pt;}
.yfb{bottom:671.440000pt;}
.y4a9{bottom:671.573333pt;}
.y83{bottom:672.240000pt;}
.y2d7{bottom:672.506667pt;}
.yd4{bottom:673.173333pt;}
.y36a{bottom:674.106667pt;}
.y2ff{bottom:674.773333pt;}
.y147{bottom:675.173333pt;}
.y31c{bottom:677.040000pt;}
.y24{bottom:678.240000pt;}
.y451{bottom:678.506667pt;}
.y118{bottom:679.440000pt;}
.y43{bottom:680.640000pt;}
.y434{bottom:680.906667pt;}
.y1d3{bottom:682.240000pt;}
.y133{bottom:683.173333pt;}
.y1ba{bottom:685.040000pt;}
.y2ee{bottom:685.573333pt;}
.y47e{bottom:686.506667pt;}
.y26d{bottom:686.760000pt;}
.y38f{bottom:687.173333pt;}
.y37b{bottom:687.306667pt;}
.y197{bottom:687.440000pt;}
.ya7{bottom:688.640000pt;}
.y3f2{bottom:688.906667pt;}
.y65{bottom:689.440000pt;}
.y215{bottom:689.840000pt;}
.y22b{bottom:690.106667pt;}
.y29c{bottom:690.240000pt;}
.y82{bottom:692.240000pt;}
.y31b{bottom:692.373333pt;}
.y3bb{bottom:694.640000pt;}
.y2d6{bottom:696.373333pt;}
.y450{bottom:696.640000pt;}
.y15f{bottom:696.906667pt;}
.y346{bottom:697.173333pt;}
.y245{bottom:697.840000pt;}
.y108{bottom:697.960000pt;}
.y46d{bottom:699.440000pt;}
.yde{bottom:700.106667pt;}
.y30d{bottom:700.133333pt;}
.y23{bottom:700.240000pt;}
.yd3{bottom:701.040000pt;}
.y3a7{bottom:701.293333pt;}
.y3df{bottom:701.973333pt;}
.yfa{bottom:703.573333pt;}
.y146{bottom:704.906667pt;}
.y353{bottom:705.173333pt;}
.y4a8{bottom:705.840000pt;}
.y37a{bottom:707.173333pt;}
.y26b{bottom:708.626667pt;}
.y117{bottom:709.306667pt;}
.y1e6{bottom:711.960000pt;}
.y81{bottom:712.106667pt;}
.y345{bottom:712.506667pt;}
.y132{bottom:712.906667pt;}
.y366{bottom:713.040000pt;}
.y1b9{bottom:714.773333pt;}
.y42{bottom:715.173333pt;}
.y2e4{bottom:715.706667pt;}
.y64{bottom:716.373333pt;}
.y46c{bottom:716.626667pt;}
.y196{bottom:717.306667pt;}
.ya{bottom:717.706667pt;}
.y3f1{bottom:718.773333pt;}
.y214{bottom:719.706667pt;}
.y29b{bottom:719.973333pt;}
.y2d5{bottom:720.240000pt;}
.y44b{bottom:720.506667pt;}
.y4a7{bottom:723.040000pt;}
.y22{bottom:723.440000pt;}
.y3ba{bottom:724.373333pt;}
.y2ec{bottom:726.093333pt;}
.y15e{bottom:726.773333pt;}
.y107{bottom:727.706667pt;}
.y41{bottom:727.973333pt;}
.y38e{bottom:728.506667pt;}
.y398{bottom:728.533333pt;}
.yd2{bottom:728.906667pt;}
.y418{bottom:730.240000pt;}
.y26a{bottom:730.506667pt;}
.y3a6{bottom:731.040000pt;}
.y3de{bottom:731.840000pt;}
.y80{bottom:731.973333pt;}
.y379{bottom:732.506667pt;}
.y383{bottom:733.600000pt;}
.y46b{bottom:733.840000pt;}
.y145{bottom:734.773333pt;}
.yf9{bottom:735.706667pt;}
.y116{bottom:739.040000pt;}
.y4a6{bottom:740.240000pt;}
.y1e5{bottom:741.840000pt;}
.y131{bottom:742.773333pt;}
.y44f{bottom:743.173333pt;}
.y63{bottom:743.306667pt;}
.y2d3{bottom:744.106667pt;}
.y1b8{bottom:744.640000pt;}
.y2e3{bottom:745.573333pt;}
.y21{bottom:746.626667pt;}
.y195{bottom:747.040000pt;}
.ya6{bottom:747.440000pt;}
.y1d2{bottom:748.373333pt;}
.y42f{bottom:748.640000pt;}
.yd1{bottom:748.773333pt;}
.y213{bottom:749.440000pt;}
.yc9{bottom:749.573333pt;}
.y29a{bottom:749.840000pt;}
.y46a{bottom:751.040000pt;}
.y40{bottom:751.173333pt;}
.y7f{bottom:751.840000pt;}
.y269{bottom:752.240000pt;}
.y35f{bottom:752.506667pt;}
.ydd{bottom:755.840000pt;}
.y174{bottom:756.640000pt;}
.y22a{bottom:757.440000pt;}
.y106{bottom:757.573333pt;}
.y417{bottom:760.106667pt;}
.y3b9{bottom:760.906667pt;}
.y3dd{bottom:761.706667pt;}
.y144{bottom:764.626667pt;}
.yc7{bottom:764.906667pt;}
.y44d{bottom:765.840000pt;}
.ya5{bottom:766.773333pt;}
.yf8{bottom:767.840000pt;}
.y2d2{bottom:767.960000pt;}
.y469{bottom:768.106667pt;}
.y115{bottom:768.906667pt;}
.y62{bottom:770.240000pt;}
.y7e{bottom:771.706667pt;}
.y130{bottom:772.640000pt;}
.y265{bottom:774.106667pt;}
.y3f{bottom:774.373333pt;}
.y1b7{bottom:774.506667pt;}
.y202{bottom:774.640000pt;}
.y2e2{bottom:775.306667pt;}
.yd0{bottom:776.626667pt;}
.y194{bottom:776.906667pt;}
.y9{bottom:778.906667pt;}
.y212{bottom:779.306667pt;}
.y1e4{bottom:779.706667pt;}
.y201{bottom:782.640000pt;}
.y1d1{bottom:783.040000pt;}
.ydc{bottom:783.706667pt;}
.y20{bottom:785.306667pt;}
.ya4{bottom:786.106667pt;}
.y173{bottom:786.373333pt;}
.y229{bottom:787.306667pt;}
.y104{bottom:787.440000pt;}
.y446{bottom:788.506667pt;}
.y7d{bottom:791.573333pt;}
.y4a5{bottom:791.706667pt;}
.y2d1{bottom:791.840000pt;}
.y15d{bottom:794.373333pt;}
.ycf{bottom:796.506667pt;}
.y61{bottom:797.173333pt;}
.y3e{bottom:797.573333pt;}
.y416{bottom:797.840000pt;}
.y114{bottom:798.773333pt;}
.y3dc{bottom:799.440000pt;}
.yf7{bottom:799.840000pt;}
.y12f{bottom:802.373333pt;}
.y468{bottom:802.506667pt;}
.ydb{bottom:803.573333pt;}
.y2e1{bottom:805.173333pt;}
.ya3{bottom:805.306667pt;}
.y193{bottom:806.773333pt;}
.y4a4{bottom:808.906667pt;}
.y1e3{bottom:809.440000pt;}
.y449{bottom:811.173333pt;}
.y7c{bottom:811.440000pt;}
.y1b6{bottom:812.240000pt;}
.y2d0{bottom:815.706667pt;}
.y172{bottom:816.240000pt;}
.y211{bottom:817.173333pt;}
.yc6{bottom:817.573333pt;}
.y1d0{bottom:819.440000pt;}
.y467{bottom:819.706667pt;}
.y3d{bottom:820.773333pt;}
.y103{bottom:822.773333pt;}
.y1f{bottom:822.906667pt;}
.yda{bottom:823.440000pt;}
.y60{bottom:824.106667pt;}
.y15c{bottom:824.240000pt;}
.yce{bottom:824.506667pt;}
.ya2{bottom:824.640000pt;}
.y200{bottom:825.173333pt;}
.y4a3{bottom:826.106667pt;}
.yf6{bottom:827.840000pt;}
.y113{bottom:828.506667pt;}
.y3db{bottom:829.306667pt;}
.y7b{bottom:831.306667pt;}
.y12e{bottom:832.240000pt;}
.y448{bottom:833.840000pt;}
.y415{bottom:835.706667pt;}
.y192{bottom:836.506667pt;}
.y466{bottom:836.906667pt;}
.y1e2{bottom:839.306667pt;}
.y2cf{bottom:839.560000pt;}
.y8{bottom:839.973333pt;}
.y1b5{bottom:842.106667pt;}
.y2e0{bottom:842.373333pt;}
.y4a2{bottom:843.306667pt;}
.y3c{bottom:843.973333pt;}
.ycd{bottom:844.373333pt;}
.y1a7{bottom:846.106667pt;}
.y210{bottom:846.906667pt;}
.y5f{bottom:851.040000pt;}
.y7a{bottom:851.306667pt;}
.yd9{bottom:851.440000pt;}
.y102{bottom:852.626667pt;}
.yc5{bottom:853.173333pt;}
.y15b{bottom:854.106667pt;}
.y1ff{bottom:854.906667pt;}
.yf5{bottom:855.706667pt;}
.y444{bottom:856.506667pt;}
.y112{bottom:858.373333pt;}
.y3da{bottom:859.173333pt;}
.y261{bottom:859.440000pt;}
.y4a1{bottom:860.373333pt;}
.y12d{bottom:862.106667pt;}
.y4dd{bottom:862.373333pt;}
.ya1{bottom:863.173333pt;}
.y2ce{bottom:863.440000pt;}
.y465{bottom:865.840000pt;}
.y191{bottom:866.373333pt;}
.y3b{bottom:867.173333pt;}
.y1b4{bottom:871.973333pt;}
.ycc{bottom:872.240000pt;}
.y1e{bottom:872.506667pt;}
.y414{bottom:873.573333pt;}
.yf4{bottom:875.573333pt;}
.y1e1{bottom:876.506667pt;}
.y20f{bottom:876.773333pt;}
.y4a0{bottom:877.573333pt;}
.y5e{bottom:877.973333pt;}
.yd8{bottom:879.306667pt;}
.y2df{bottom:879.973333pt;}
.y443{bottom:882.373333pt;}
.ya0{bottom:882.506667pt;}
.y7{bottom:883.706667pt;}
.y15a{bottom:883.840000pt;}
.y1fe{bottom:884.773333pt;}
.y2cc{bottom:887.293333pt;}
.y111{bottom:888.240000pt;}
.yc4{bottom:891.840000pt;}
.y4dc{bottom:892.773333pt;}
.yf3{bottom:895.440000pt;}
.y190{bottom:896.240000pt;}
.y3d9{bottom:896.906667pt;}
.y464{bottom:897.973333pt;}
.ycb{bottom:900.106667pt;}
.y79{bottom:901.040000pt;}
.y442{bottom:901.173333pt;}
.y9f{bottom:901.840000pt;}
.y25f{bottom:902.373333pt;}
.y413{bottom:903.440000pt;}
.y5d{bottom:904.906667pt;}
.y3a{bottom:906.373333pt;}
.y244{bottom:906.640000pt;}
.yd7{bottom:907.173333pt;}
.y49f{bottom:908.106667pt;}
.y1b3{bottom:909.706667pt;}
.y4db{bottom:909.973333pt;}
.yc3{bottom:911.040000pt;}
.y2c8{bottom:911.173333pt;}
.yff{bottom:912.226667pt;}
.y159{bottom:913.706667pt;}
.y228{bottom:913.973333pt;}
.y1fd{bottom:914.640000pt;}
.y1d{bottom:915.706667pt;}
.y4c5{bottom:917.706667pt;}
.y110{bottom:917.973333pt;}
.y463{bottom:918.773333pt;}
.yca{bottom:919.973333pt;}
.y12c{bottom:921.706667pt;}
.yf2{bottom:925.306667pt;}
.y18f{bottom:925.973333pt;}
.y3d8{bottom:926.773333pt;}
.y4da{bottom:927.173333pt;}
.y6{bottom:928.640000pt;}
.y39{bottom:929.573333pt;}
.yd6{bottom:931.573333pt;}
.y5c{bottom:931.840000pt;}
.y9e{bottom:933.973333pt;}
.y4c4{bottom:934.906667pt;}
.y9c{bottom:935.960000pt;}
.y441{bottom:936.773333pt;}
.y1b2{bottom:939.573333pt;}
.y412{bottom:941.173333pt;}
.yfd{bottom:942.106667pt;}
.y49e{bottom:942.506667pt;}
.y171{bottom:943.573333pt;}
.y2c4{bottom:943.706667pt;}
.y243{bottom:943.840000pt;}
.y1fc{bottom:944.373333pt;}
.y25e{bottom:944.773333pt;}
.y462{bottom:944.906667pt;}
.yc2{bottom:946.640000pt;}
.y31a{bottom:950.773333pt;}
.y12b{bottom:951.573333pt;}
.y78{bottom:951.706667pt;}
.y3d7{bottom:956.640000pt;}
.y5{bottom:956.773333pt;}
.y1c{bottom:957.973333pt;}
.y5b{bottom:958.773333pt;}
.y49d{bottom:959.573333pt;}
.y4d9{bottom:961.573333pt;}
.y492{bottom:965.333333pt;}
.yc1{bottom:966.533333pt;}
.y10f{bottom:967.866667pt;}
.y1b1{bottom:969.466667pt;}
.y461{bottom:970.533333pt;}
.y1fb{bottom:974.266667pt;}
.y25d{bottom:975.733333pt;}
.y49c{bottom:976.800000pt;}
.y411{bottom:977.600000pt;}
.y4d8{bottom:978.800000pt;}
.y4{bottom:980.533333pt;}
.y319{bottom:980.666667pt;}
.y12a{bottom:981.333333pt;}
.y77{bottom:984.400000pt;}
.ybf{bottom:990.533333pt;}
.y491{bottom:995.866667pt;}
.y5a{bottom:1006.400000pt;}
.y3{bottom:1006.533333pt;}
.y76{bottom:1008.933333pt;}
.y318{bottom:1010.400000pt;}
.y129{bottom:1011.200000pt;}
.y1fa{bottom:1011.466667pt;}
.y490{bottom:1013.066667pt;}
.y49b{bottom:1013.866667pt;}
.h10{height:3.882812pt;}
.h14{height:11.664062pt;}
.h2f{height:21.066667pt;}
.h2b{height:21.200000pt;}
.h52{height:21.333333pt;}
.h55{height:21.366667pt;}
.h23{height:22.133333pt;}
.h26{height:22.800000pt;}
.h27{height:22.833333pt;}
.h24{height:22.933333pt;}
.h9{height:23.328125pt;}
.h3b{height:23.853333pt;}
.h3a{height:23.866667pt;}
.h18{height:29.733333pt;}
.h19{height:29.853333pt;}
.h17{height:29.866667pt;}
.h16{height:29.900000pt;}
.h34{height:30.800000pt;}
.hd{height:31.062500pt;}
.h15{height:31.104167pt;}
.h38{height:31.866667pt;}
.h13{height:35.186667pt;}
.h12{height:35.333333pt;}
.he{height:35.366667pt;}
.h47{height:38.800000pt;}
.h4c{height:38.828125pt;}
.h4a{height:38.833333pt;}
.h49{height:38.920000pt;}
.h4b{height:38.933333pt;}
.h3d{height:39.066667pt;}
.h3e{height:39.853333pt;}
.h41{height:39.866667pt;}
.h40{height:39.900000pt;}
.h56{height:40.963542pt;}
.h2c{height:42.266667pt;}
.h31{height:42.400000pt;}
.h53{height:42.710938pt;}
.hb{height:44.093750pt;}
.h33{height:44.400000pt;}
.h2d{height:44.687500pt;}
.h2a{height:45.156250pt;}
.h28{height:45.600000pt;}
.h37{height:46.300000pt;}
.h2{height:46.593750pt;}
.hf{height:46.656250pt;}
.hc{height:47.062500pt;}
.h36{height:47.104167pt;}
.h3c{height:47.115833pt;}
.h1a{height:47.222500pt;}
.h51{height:47.414062pt;}
.h5a{height:47.580729pt;}
.h44{height:47.742188pt;}
.h4e{height:49.148438pt;}
.h7{height:50.476562pt;}
.h8{height:50.544271pt;}
.h5b{height:50.703125pt;}
.h59{height:51.075521pt;}
.h1b{height:51.906250pt;}
.h45{height:53.046875pt;}
.h58{height:54.187500pt;}
.h6{height:54.359375pt;}
.h4{height:54.432292pt;}
.h42{height:55.866667pt;}
.h50{height:56.312500pt;}
.h5{height:58.320312pt;}
.h11{height:58.351562pt;}
.h3{height:62.208333pt;}
.h54{height:66.666667pt;}
.h46{height:68.400000pt;}
.h29{height:68.666667pt;}
.h1c{height:70.337240pt;}
.ha{height:76.133333pt;}
.h30{height:84.566667pt;}
.h2e{height:84.653333pt;}
.h22{height:89.420417pt;}
.h57{height:91.406250pt;}
.h1f{height:95.127083pt;}
.h1d{height:113.500000pt;}
.h21{height:123.633333pt;}
.h20{height:137.793750pt;}
.h25{height:160.160000pt;}
.h48{height:272.040000pt;}
.h35{height:282.440000pt;}
.h4d{height:292.933333pt;}
.h39{height:294.400000pt;}
.h4f{height:298.000000pt;}
.h43{height:326.400000pt;}
.h1e{height:345.466667pt;}
.h32{height:460.466667pt;}
.h3f{height:494.466667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w10{width:18.400000pt;}
.w40{width:35.733333pt;}
.w2c{width:42.400000pt;}
.w34{width:46.533333pt;}
.w24{width:46.666667pt;}
.w43{width:51.066667pt;}
.w2f{width:54.533333pt;}
.w31{width:55.066667pt;}
.w32{width:55.200000pt;}
.w42{width:57.733333pt;}
.w33{width:60.166667pt;}
.w44{width:64.666667pt;}
.w2e{width:66.000000pt;}
.w3a{width:67.200000pt;}
.w21{width:67.466667pt;}
.w22{width:67.600000pt;}
.w3b{width:68.133333pt;}
.w28{width:71.333333pt;}
.w23{width:72.700000pt;}
.w17{width:72.800000pt;}
.w20{width:72.933333pt;}
.w13{width:73.200000pt;}
.w30{width:75.333333pt;}
.w4e{width:76.133333pt;}
.w50{width:76.166667pt;}
.w48{width:76.666667pt;}
.w4a{width:76.833333pt;}
.w1b{width:76.933333pt;}
.w4b{width:77.333333pt;}
.w27{width:78.266667pt;}
.w26{width:78.433333pt;}
.w29{width:80.266667pt;}
.w2a{width:81.100000pt;}
.wf{width:83.986667pt;}
.w36{width:85.100000pt;}
.w2b{width:86.933333pt;}
.wb{width:91.200000pt;}
.w5{width:96.000000pt;}
.w39{width:96.033333pt;}
.w35{width:96.800000pt;}
.we{width:97.200000pt;}
.w25{width:98.533333pt;}
.w2d{width:100.033333pt;}
.w8{width:103.200000pt;}
.wc{width:103.233333pt;}
.w49{width:106.000000pt;}
.w4f{width:109.600000pt;}
.w4d{width:110.300000pt;}
.w47{width:111.233333pt;}
.w41{width:111.500000pt;}
.w7{width:115.200000pt;}
.w37{width:119.866667pt;}
.w4c{width:128.400000pt;}
.w46{width:129.200000pt;}
.w3f{width:129.633333pt;}
.w1a{width:134.133333pt;}
.w16{width:134.400000pt;}
.w45{width:138.266667pt;}
.w19{width:138.306667pt;}
.w15{width:139.093333pt;}
.w1e{width:146.026667pt;}
.w1d{width:160.800000pt;}
.w1c{width:198.840000pt;}
.w3e{width:202.933333pt;}
.w18{width:235.360000pt;}
.w14{width:235.893333pt;}
.w4{width:250.693333pt;}
.w3{width:318.026667pt;}
.w6{width:396.066667pt;}
.w11{width:400.466667pt;}
.w9{width:400.866667pt;}
.wd{width:406.866667pt;}
.wa{width:412.866667pt;}
.w3d{width:445.600000pt;}
.w3c{width:490.000000pt;}
.w12{width:533.866667pt;}
.w38{width:581.733333pt;}
.w1f{width:582.600000pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xbb{left:4.000000pt;}
.xbd{left:5.200000pt;}
.x2b{left:7.200000pt;}
.x85{left:8.133333pt;}
.x53{left:9.626667pt;}
.x42{left:10.533333pt;}
.x58{left:11.860000pt;}
.x8f{left:12.933333pt;}
.x87{left:14.960000pt;}
.x69{left:15.993333pt;}
.x80{left:17.193333pt;}
.xac{left:18.666667pt;}
.x3a{left:20.000000pt;}
.x1b{left:21.200000pt;}
.x5f{left:22.146667pt;}
.x91{left:23.473333pt;}
.x3f{left:24.426667pt;}
.x5b{left:25.600000pt;}
.x18{left:27.060000pt;}
.x64{left:28.526667pt;}
.x73{left:30.406667pt;}
.x2e{left:32.000000pt;}
.x6e{left:34.406667pt;}
.x60{left:35.733333pt;}
.x63{left:36.813333pt;}
.x71{left:37.866667pt;}
.x5d{left:40.146667pt;}
.x88{left:41.200000pt;}
.x6b{left:43.586667pt;}
.x9a{left:45.866667pt;}
.xc5{left:50.800000pt;}
.x6c{left:51.866667pt;}
.x81{left:54.406667pt;}
.x70{left:57.200000pt;}
.xc4{left:58.133333pt;}
.x59{left:59.200000pt;}
.x67{left:61.066667pt;}
.x74{left:62.133333pt;}
.x5e{left:65.466667pt;}
.x68{left:66.933333pt;}
.x61{left:69.320000pt;}
.x1c{left:70.666667pt;}
.x6f{left:71.866667pt;}
.x9c{left:73.440000pt;}
.xc0{left:74.400000pt;}
.x65{left:75.733333pt;}
.xbc{left:78.026667pt;}
.x72{left:80.400000pt;}
.xbf{left:81.760000pt;}
.xbe{left:85.360000pt;}
.x9e{left:86.933333pt;}
.x62{left:93.466667pt;}
.x66{left:99.466667pt;}
.x7f{left:100.406667pt;}
.x34{left:107.986667pt;}
.x3e{left:112.533333pt;}
.x19{left:117.206667pt;}
.x95{left:119.100000pt;}
.x2{left:124.833322pt;}
.xa2{left:128.699988pt;}
.x17{left:131.766667pt;}
.x26{left:133.099988pt;}
.x7b{left:134.393333pt;}
.x79{left:136.406667pt;}
.xaf{left:137.906667pt;}
.xa1{left:139.493322pt;}
.x49{left:148.826655pt;}
.xc8{left:150.293322pt;}
.x7a{left:153.473333pt;}
.x38{left:155.226667pt;}
.x4b{left:156.826655pt;}
.xc9{left:159.639988pt;}
.x7e{left:162.673333pt;}
.x44{left:164.706667pt;}
.xb5{left:166.826655pt;}
.x77{left:167.860000pt;}
.x7c{left:169.073333pt;}
.xae{left:171.066667pt;}
.x54{left:172.839988pt;}
.xf{left:174.839988pt;}
.x3{left:177.239988pt;}
.x4{left:178.839988pt;}
.x40{left:179.760000pt;}
.x8a{left:188.959988pt;}
.x9b{left:190.839988pt;}
.x51{left:192.026655pt;}
.xb2{left:193.066667pt;}
.x96{left:194.440000pt;}
.x78{left:195.340000pt;}
.xa3{left:197.106655pt;}
.x33{left:198.026667pt;}
.x93{left:200.439988pt;}
.x6a{left:201.773333pt;}
.xe{left:209.106655pt;}
.x76{left:210.693322pt;}
.xa7{left:214.840000pt;}
.x2f{left:215.906655pt;}
.x2c{left:220.840000pt;}
.x37{left:228.040000pt;}
.xb3{left:230.440000pt;}
.x43{left:244.839988pt;}
.x20{left:245.773322pt;}
.xb0{left:247.240000pt;}
.x14{left:249.226655pt;}
.x7d{left:252.166667pt;}
.xc1{left:254.040000pt;}
.xb{left:258.693322pt;}
.x7{left:259.893322pt;}
.x27{left:260.839988pt;}
.xa0{left:263.906655pt;}
.x30{left:264.839988pt;}
.x45{left:267.106667pt;}
.x8{left:268.573322pt;}
.x1d{left:271.893322pt;}
.x31{left:276.839988pt;}
.x21{left:279.226655pt;}
.x4a{left:282.173322pt;}
.x16{left:284.439988pt;}
.x24{left:286.306655pt;}
.x82{left:291.233333pt;}
.x9d{left:292.493333pt;}
.x1e{left:297.506655pt;}
.x3d{left:301.106655pt;}
.x97{left:304.706667pt;}
.xa8{left:310.840000pt;}
.x6{left:320.973322pt;}
.x12{left:322.693322pt;}
.x3b{left:323.639988pt;}
.x47{left:325.373322pt;}
.xb6{left:327.773333pt;}
.x36{left:329.506655pt;}
.x48{left:332.306655pt;}
.x4e{left:334.973322pt;}
.x10{left:344.333322pt;}
.xb4{left:345.666655pt;}
.x15{left:346.999988pt;}
.xa{left:352.066655pt;}
.x2a{left:354.466655pt;}
.x29{left:356.199988pt;}
.x8b{left:357.533333pt;}
.x9{left:361.266655pt;}
.xd{left:362.733322pt;}
.x22{left:365.133322pt;}
.x83{left:366.866655pt;}
.x28{left:368.999988pt;}
.x5{left:373.799988pt;}
.x56{left:375.533322pt;}
.x52{left:376.466655pt;}
.xc{left:380.199988pt;}
.x4f{left:385.799988pt;}
.x1f{left:401.399988pt;}
.x35{left:404.599988pt;}
.x13{left:405.799988pt;}
.x32{left:406.866655pt;}
.x11{left:407.933322pt;}
.x23{left:409.266655pt;}
.x25{left:411.533322pt;}
.x1{left:416.066655pt;}
.x57{left:431.533322pt;}
.x5a{left:433.933333pt;}
.xc6{left:442.333333pt;}
.x8c{left:444.466667pt;}
.x1a{left:449.800000pt;}
.x55{left:450.866655pt;}
.x84{left:452.200000pt;}
.xb7{left:458.733333pt;}
.x46{left:469.266655pt;}
.x8d{left:486.866667pt;}
.xb8{left:495.800000pt;}
.xa9{left:502.866667pt;}
.x98{left:508.200000pt;}
.x9f{left:520.066655pt;}
.x86{left:550.733333pt;}
.xc2{left:551.933333pt;}
.xc7{left:553.266667pt;}
.x6d{left:561.400000pt;}
.x5c{left:573.026667pt;}
.x8e{left:586.906667pt;}
.x99{left:593.306667pt;}
.xaa{left:598.906667pt;}
.xa6{left:601.173322pt;}
.xb9{left:608.773333pt;}
.xca{left:610.893322pt;}
.x2d{left:616.906667pt;}
.x41{left:622.640000pt;}
.x39{left:628.906667pt;}
.xc3{left:630.106667pt;}
.xb1{left:639.173322pt;}
.x3c{left:640.906667pt;}
.xa4{left:646.639988pt;}
.x90{left:652.906667pt;}
.xa5{left:655.173322pt;}
.xad{left:661.173322pt;}
.xab{left:666.106667pt;}
.xba{left:667.840000pt;}
.x94{left:682.106655pt;}
.x50{left:691.173322pt;}
.x92{left:700.226655pt;}
.x89{left:701.173322pt;}
.x4d{left:707.439988pt;}
.x75{left:710.893322pt;}
.x4c{left:726.893322pt;}
}




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