
    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_69fedd8970d09c212016778d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_690551d762222801a71d8d2b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.063477;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_49ca507294e1aa53227f5d75.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_10a5332e19e0a0b2e5eb8c8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_ac5f1b95dac7ec29cedebdd4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_664807be115d3d34cf37b03a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.880859;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_3ba86cf0044a37d112132fe4.woff2')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_693ac1a83f7a6578d7ba1a2f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_12b6688a389c388788b9307e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_36142b8d45a8c35a0f65ec9b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_c7ae1d9f98a9a4537d2ae484.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_35df265d2fb4c74f337abc91.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_533fec1274d4066f6c240d39.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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_7be83e9134f188f97bc4c2e0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.758789;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_da2e339e2914e7f454f3b29d.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1bf0bb5ab5e716832794c5e8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_878c171b4125ffec856b7c93.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.106934;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_96e669a27c949377ccd89669.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.983398;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_0a87b36699542d975daeca52.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.402354;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;}
.m6{transform:matrix(0.000000,-0.121233,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.121233,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.121233,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.198011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198011,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245834,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251537,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1{vertical-align:-83.520000px;}
.va{vertical-align:-82.080000px;}
.ve{vertical-align:-61.920000px;}
.vc{vertical-align:-31.437050px;}
.vd{vertical-align:-11.906391px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.320000px;}
.v3{vertical-align:5.760000px;}
.vb{vertical-align:31.437050px;}
.v6{vertical-align:47.520000px;}
.v9{vertical-align:53.280000px;}
.v4{vertical-align:54.720000px;}
.v7{vertical-align:102.240000px;}
.v8{vertical-align:106.560000px;}
.ls52{letter-spacing:-1.728224px;}
.ls2f{letter-spacing:-1.440000px;}
.ls2d{letter-spacing:-0.942000px;}
.ls9{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.624987px;}
.ls42{letter-spacing:-0.596387px;}
.ls24{letter-spacing:-0.576000px;}
.ls21{letter-spacing:-0.570000px;}
.ls40{letter-spacing:-0.569209px;}
.ls5{letter-spacing:-0.504000px;}
.ls4{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.360000px;}
.ls49{letter-spacing:-0.231600px;}
.ls27{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.116400px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.144000px;}
.ls4d{letter-spacing:0.166800px;}
.ls31{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.288000px;}
.ls43{letter-spacing:0.296640px;}
.ls4f{letter-spacing:0.305280px;}
.ls4a{letter-spacing:0.334200px;}
.ls47{letter-spacing:0.354000px;}
.ls1a{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.387360px;}
.ls20{letter-spacing:0.427680px;}
.ls19{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.504000px;}
.ls2c{letter-spacing:0.528480px;}
.ls6{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.648000px;}
.ls22{letter-spacing:0.696000px;}
.ls0{letter-spacing:0.720000px;}
.lse{letter-spacing:0.732000px;}
.ls48{letter-spacing:0.764640px;}
.ls30{letter-spacing:0.792000px;}
.ls4c{letter-spacing:0.864000px;}
.ls2{letter-spacing:0.936000px;}
.ls3{letter-spacing:1.008000px;}
.lsa{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.512000px;}
.ls14{letter-spacing:1.584000px;}
.ls39{letter-spacing:1.590522px;}
.ls1e{letter-spacing:1.632000px;}
.ls29{letter-spacing:1.670048px;}
.ls3a{letter-spacing:1.694964px;}
.ls41{letter-spacing:1.707627px;}
.ls10{letter-spacing:1.827360px;}
.ls50{letter-spacing:1.872000px;}
.ls11{letter-spacing:1.944000px;}
.ls15{letter-spacing:2.016000px;}
.ls46{letter-spacing:2.088000px;}
.ls2a{letter-spacing:2.160000px;}
.ls44{letter-spacing:2.376000px;}
.ls2b{letter-spacing:3.888000px;}
.ls13{letter-spacing:5.328000px;}
.ls25{letter-spacing:7.920000px;}
.ls26{letter-spacing:9.648000px;}
.ls4e{letter-spacing:15.120000px;}
.ls38{letter-spacing:15.696000px;}
.ls34{letter-spacing:17.136000px;}
.ls1b{letter-spacing:18.288000px;}
.ls45{letter-spacing:19.728000px;}
.ls35{letter-spacing:21.276000px;}
.ls37{letter-spacing:25.956000px;}
.ls36{letter-spacing:27.216000px;}
.ls2e{letter-spacing:28.368000px;}
.ls16{letter-spacing:51.408000px;}
.lsd{letter-spacing:54.864000px;}
.ls1d{letter-spacing:63.826560px;}
.ls4b{letter-spacing:102.960000px;}
.ls32{letter-spacing:152.316000px;}
.ls3c{letter-spacing:173.002212px;}
.ls3b{letter-spacing:178.097547px;}
.ls23{letter-spacing:193.836000px;}
.ls12{letter-spacing:195.564000px;}
.ls51{letter-spacing:486.276000px;}
.ls3d{letter-spacing:671.951671px;}
.ls3e{letter-spacing:1426.681482px;}
.ls3f{letter-spacing:1628.797300px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws10{word-spacing:-66.240000px;}
.wsd{word-spacing:-60.480000px;}
.ws1{word-spacing:-27.011520px;}
.ws6{word-spacing:-26.895120px;}
.ws45{word-spacing:-17.948280px;}
.ws44{word-spacing:-17.614080px;}
.ws46{word-spacing:-17.573760px;}
.ws7{word-spacing:-17.352000px;}
.ws5{word-spacing:-17.208000px;}
.wsc{word-spacing:-16.920000px;}
.ws4{word-spacing:-16.848000px;}
.wsf{word-spacing:-16.776000px;}
.wsb{word-spacing:-16.704000px;}
.ws41{word-spacing:-16.632000px;}
.ws23{word-spacing:-16.488000px;}
.wse{word-spacing:-16.416000px;}
.ws13{word-spacing:-16.344000px;}
.ws3{word-spacing:-16.272000px;}
.ws26{word-spacing:-16.128000px;}
.ws21{word-spacing:-16.056000px;}
.ws2e{word-spacing:-15.928976px;}
.ws8{word-spacing:-15.912000px;}
.ws25{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.768000px;}
.ws12{word-spacing:-15.696000px;}
.ws11{word-spacing:-15.666240px;}
.wsa{word-spacing:-15.552000px;}
.ws43{word-spacing:-15.324240px;}
.ws51{word-spacing:-15.247931px;}
.ws3f{word-spacing:-15.176878px;}
.ws42{word-spacing:-14.970240px;}
.ws32{word-spacing:-14.900363px;}
.ws29{word-spacing:-14.221349px;}
.ws20{word-spacing:-13.680000px;}
.ws22{word-spacing:-12.240000px;}
.ws0{word-spacing:0.000000px;}
.ws24{word-spacing:6.096000px;}
.ws31{word-spacing:95.206741px;}
.ws34{word-spacing:216.196156px;}
.ws2a{word-spacing:245.203769px;}
.ws2b{word-spacing:252.025138px;}
.ws2d{word-spacing:275.388037px;}
.ws2f{word-spacing:283.373152px;}
.ws30{word-spacing:290.996114px;}
.ws2c{word-spacing:292.357516px;}
.ws36{word-spacing:322.836370px;}
.ws38{word-spacing:324.491480px;}
.ws4d{word-spacing:335.935922px;}
.ws14{word-spacing:337.116386px;}
.ws16{word-spacing:340.917409px;}
.ws1a{word-spacing:349.775961px;}
.ws3c{word-spacing:355.633213px;}
.ws1c{word-spacing:372.337099px;}
.ws1e{word-spacing:373.072484px;}
.ws39{word-spacing:376.348935px;}
.ws3e{word-spacing:380.669567px;}
.ws18{word-spacing:401.999269px;}
.ws28{word-spacing:409.296000px;}
.ws48{word-spacing:424.201326px;}
.ws57{word-spacing:428.494532px;}
.ws27{word-spacing:441.156000px;}
.ws4a{word-spacing:454.265693px;}
.ws33{word-spacing:457.259718px;}
.ws59{word-spacing:459.169950px;}
.ws55{word-spacing:461.644734px;}
.ws15{word-spacing:485.960653px;}
.ws37{word-spacing:510.239639px;}
.ws5b{word-spacing:518.703626px;}
.ws1d{word-spacing:524.456786px;}
.ws49{word-spacing:527.119040px;}
.ws4f{word-spacing:533.995324px;}
.ws4c{word-spacing:543.984236px;}
.ws1b{word-spacing:547.588866px;}
.ws3a{word-spacing:547.621588px;}
.ws5c{word-spacing:547.823643px;}
.ws4b{word-spacing:549.114481px;}
.ws19{word-spacing:566.698743px;}
.ws56{word-spacing:573.360961px;}
.ws1f{word-spacing:593.594065px;}
.ws53{word-spacing:602.435528px;}
.ws50{word-spacing:609.689721px;}
.ws3d{word-spacing:649.620421px;}
.ws54{word-spacing:672.777899px;}
.ws3b{word-spacing:687.169679px;}
.ws40{word-spacing:795.437991px;}
.ws35{word-spacing:1221.485084px;}
.ws17{word-spacing:1313.272492px;}
.ws52{word-spacing:1673.517201px;}
.ws4e{word-spacing:1806.508120px;}
.ws58{word-spacing:1832.823560px;}
.ws5a{word-spacing:1845.005156px;}
.ws47{word-spacing:1911.589482px;}
.ws5d{word-spacing:2101.736788px;}
._12{margin-left:-14.930880px;}
._4a{margin-left:-11.567520px;}
._14{margin-left:-6.059520px;}
._28{margin-left:-3.833760px;}
._2{margin-left:-2.455200px;}
._0{margin-left:-1.254240px;}
._1{width:1.157760px;}
._3{width:2.505600px;}
._6{width:3.705120px;}
._30{width:4.785120px;}
._7{width:6.189120px;}
._23{width:7.208640px;}
._1a{width:8.424000px;}
._9{width:10.326240px;}
._8{width:11.664000px;}
._a{width:13.028640px;}
._19{width:14.569440px;}
._7a{width:16.361280px;}
._35{width:17.375520px;}
._17{width:18.504000px;}
._18{width:19.987200px;}
._2c{width:21.984480px;}
._39{width:23.002560px;}
._1b{width:24.264000px;}
._2f{width:25.746720px;}
._34{width:27.468000px;}
._32{width:28.896480px;}
._33{width:30.021120px;}
._31{width:31.536480px;}
._37{width:32.580480px;}
._29{width:33.964800px;}
._38{width:34.999200px;}
._40{width:36.246240px;}
._3c{width:37.902240px;}
._1f{width:39.630240px;}
._20{width:41.297760px;}
._41{width:42.645600px;}
._1e{width:43.881120px;}
._1c{width:44.964480px;}
._3b{width:46.961760px;}
._3a{width:47.964480px;}
._48{width:49.278240px;}
._49{width:51.067680px;}
._3f{width:52.940160px;}
._36{width:54.120000px;}
._10{width:55.524480px;}
._78{width:57.744000px;}
._79{width:58.969440px;}
._11{width:60.036000px;}
._4b{width:62.256000px;}
._7b{width:63.318240px;}
._7c{width:64.568640px;}
._c{width:65.796000px;}
._3e{width:68.256000px;}
._3d{width:69.366240px;}
._5{width:72.840000px;}
._15{width:74.880480px;}
._22{width:80.172480px;}
._42{width:82.765551px;}
._75{width:88.759403px;}
._f{width:92.258880px;}
._1d{width:93.505440px;}
._2d{width:98.360160px;}
._7d{width:100.770240px;}
._2b{width:103.047360px;}
._2e{width:105.252000px;}
._16{width:111.988320px;}
._4c{width:120.185043px;}
._24{width:129.192480px;}
._26{width:131.652960px;}
._25{width:133.599840px;}
._4d{width:144.683675px;}
._27{width:149.414880px;}
._21{width:157.578720px;}
._68{width:166.053363px;}
._2a{width:180.759840px;}
._13{width:186.096480px;}
._d{width:195.408000px;}
._e{width:197.028000px;}
._67{width:218.821187px;}
._74{width:228.114433px;}
._51{width:234.152758px;}
._73{width:240.112909px;}
._52{width:250.252279px;}
._53{width:266.168569px;}
._83{width:271.252130px;}
._5b{width:272.990613px;}
._57{width:281.834873px;}
._65{width:297.086803px;}
._60{width:305.397669px;}
._63{width:313.376365px;}
._77{width:331.860922px;}
._81{width:370.300085px;}
._46{width:391.257181px;}
._50{width:418.388493px;}
._5a{width:435.258492px;}
._88{width:440.205342px;}
._56{width:442.524262px;}
._58{width:460.644194px;}
._6a{width:473.450402px;}
._69{width:491.193607px;}
._6c{width:497.619497px;}
._6b{width:512.895541px;}
._71{width:521.363198px;}
._4f{width:536.042436px;}
._72{width:548.179107px;}
._59{width:552.860214px;}
._54{width:554.135191px;}
._55{width:559.541892px;}
._6e{width:562.521951px;}
._5c{width:566.583158px;}
._6d{width:596.112053px;}
._43{width:599.561569px;}
._6f{width:602.881766px;}
._44{width:615.230996px;}
._4e{width:625.127050px;}
._70{width:628.504593px;}
._47{width:638.402646px;}
._76{width:644.317038px;}
._7e{width:675.126939px;}
._45{width:680.683192px;}
._7f{width:739.954657px;}
._5f{width:763.464950px;}
._62{width:803.214802px;}
._4{width:846.456000px;}
._b{width:848.184000px;}
._86{width:997.600831px;}
._84{width:1060.235801px;}
._82{width:1069.343775px;}
._64{width:1112.977332px;}
._87{width:1119.693146px;}
._89{width:1127.657970px;}
._61{width:1131.544331px;}
._5e{width:1195.730268px;}
._80{width:1216.543336px;}
._66{width:1273.482747px;}
._5d{width:1426.681482px;}
._85{width:1628.963059px;}
.fc14{color:rgb(26,115,232);}
.fc12{color:rgb(68,68,68);}
.fc11{color:rgb(17,85,204);}
.fc10{color:rgb(0,102,33);}
.fcf{color:rgb(102,0,153);}
.fce{color:rgb(255,255,255);}
.fcd{color:rgb(255,153,0);}
.fc0{color:rgb(46,116,181);}
.fc15{color:rgb(60,64,67);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(68,114,196);}
.fc7{color:rgb(74,134,232);}
.fc3{color:rgb(0,112,192);}
.fc5{color:rgb(68,84,106);}
.fc8{color:transparent;}
.fc9{color:rgb(0,0,255);}
.fc6{color:rgb(255,0,0);}
.fca{color:rgb(39,78,19);}
.fcb{color:rgb(255,255,0);}
.fc13{color:rgb(51,51,51);}
.fcc{color:rgb(102,0,0);}
.fsc{font-size:27.360000px;}
.fsa{font-size:41.760000px;}
.fse{font-size:43.212889px;}
.fs7{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs12{font-size:54.848674px;}
.fs8{font-size:60.480000px;}
.fsb{font-size:61.858356px;}
.fsd{font-size:62.926321px;}
.fs11{font-size:63.360000px;}
.fsf{font-size:65.930811px;}
.fs9{font-size:66.240000px;}
.fs10{font-size:67.154326px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.fs6{font-size:119.520000px;}
.fs4{font-size:132.480000px;}
.y3ef{bottom:-52.600585px;}
.y0{bottom:0.000000px;}
.y3f8{bottom:0.000004px;}
.y3f1{bottom:1.020427px;}
.y1a3{bottom:2.880000px;}
.y9{bottom:3.960000px;}
.y1bb{bottom:4.830203px;}
.y27f{bottom:4.934886px;}
.y2a4{bottom:5.122085px;}
.y2ba{bottom:5.272419px;}
.y3e9{bottom:5.612110px;}
.y285{bottom:5.907502px;}
.y28b{bottom:5.907547px;}
.y3f2{bottom:7.652902px;}
.ya{bottom:7.920000px;}
.y3e7{bottom:8.163049px;}
.y1f{bottom:9.360000px;}
.y3ed{bottom:10.220848px;}
.y8{bottom:10.800000px;}
.y5{bottom:12.600000px;}
.y20c{bottom:15.480000px;}
.y3fa{bottom:15.832981px;}
.yd6{bottom:15.840000px;}
.y20e{bottom:15.885000px;}
.y3f4{bottom:16.853339px;}
.ye4{bottom:16.920000px;}
.ye2{bottom:17.280000px;}
.ye8{bottom:17.310000px;}
.ye1{bottom:18.000000px;}
.y1a2{bottom:18.360000px;}
.y3e8{bottom:18.383861px;}
.y3eb{bottom:18.383877px;}
.y3f5{bottom:18.894105px;}
.y3fb{bottom:19.914506px;}
.y3f3{bottom:21.445044px;}
.y3f6{bottom:21.445060px;}
.y3ec{bottom:22.465403px;}
.y3e6{bottom:22.975561px;}
.y1ba{bottom:25.096819px;}
.y6{bottom:25.920000px;}
.y2a3{bottom:26.734807px;}
.y2b9{bottom:27.264628px;}
.y3ea{bottom:30.118242px;}
.y1a1{bottom:33.840000px;}
.y1e{bottom:37.440000px;}
.y269{bottom:41.400000px;}
.y1b9{bottom:45.396093px;}
.y2a2{bottom:48.381178px;}
.yd5{bottom:48.960000px;}
.yd8{bottom:48.990000px;}
.y2b8{bottom:49.290970px;}
.y289{bottom:51.111623px;}
.y26a{bottom:56.160000px;}
.y268{bottom:61.920000px;}
.y26d{bottom:62.280000px;}
.y26c{bottom:63.000000px;}
.y26b{bottom:65.160000px;}
.y1b8{bottom:65.695367px;}
.y2a1{bottom:69.993352px;}
.y2b7{bottom:71.317311px;}
.y288{bottom:71.771561px;}
.y27{bottom:77.760000px;}
.y1c{bottom:78.120000px;}
.y1d{bottom:79.920000px;}
.y1b7{bottom:85.994641px;}
.y2a0{bottom:91.605527px;}
.y287{bottom:92.398862px;}
.y2b6{bottom:93.343652px;}
.y26{bottom:98.316000px;}
.y1b6{bottom:106.261898px;}
.y3f9{bottom:109.269173px;}
.y286{bottom:113.026162px;}
.y29f{bottom:113.217701px;}
.y2b5{bottom:116.410608px;}
.y1b5{bottom:126.561172px;}
.y155{bottom:132.516000px;}
.y265{bottom:133.596000px;}
.y29e{bottom:134.829876px;}
.y363{bottom:135.756000px;}
.y38e{bottom:136.476000px;}
.y220{bottom:136.836000px;}
.y1f6{bottom:137.556000px;}
.y1b2{bottom:138.276000px;}
.y2f5{bottom:139.716000px;}
.y171{bottom:140.796000px;}
.y34c{bottom:141.156000px;}
.y3c8{bottom:142.236000px;}
.y101{bottom:142.956000px;}
.y244{bottom:145.476000px;}
.y22d{bottom:146.556000px;}
.y1b4{bottom:147.819699px;}
.y336{bottom:148.356000px;}
.y37f{bottom:149.436000px;}
.y308{bottom:149.796000px;}
.y1ea{bottom:150.150000px;}
.y2ea{bottom:151.230000px;}
.y94{bottom:151.590000px;}
.y3cd{bottom:153.030000px;}
.y29d{bottom:156.442050px;}
.y58{bottom:156.630000px;}
.y231{bottom:157.350000px;}
.y25{bottom:157.710000px;}
.y283{bottom:158.229977px;}
.y1b1{bottom:159.870000px;}
.y79{bottom:160.950000px;}
.y17a{bottom:161.310000px;}
.y129{bottom:161.670000px;}
.y18b{bottom:162.750000px;}
.y147{bottom:164.550000px;}
.y27b{bottom:165.270000px;}
.y154{bottom:165.630000px;}
.y362{bottom:165.990000px;}
.yd3{bottom:166.350000px;}
.y264{bottom:166.710000px;}
.yb7{bottom:168.510000px;}
.y20a{bottom:168.870000px;}
.y38d{bottom:169.590000px;}
.y1f5{bottom:170.310000px;}
.y34b{bottom:171.030000px;}
.y10c{bottom:171.750000px;}
.y2f4{bottom:172.830000px;}
.y170{bottom:173.910000px;}
.y22c{bottom:174.270000px;}
.y295{bottom:174.630000px;}
.y24a{bottom:174.990000px;}
.y1d6{bottom:175.350000px;}
.y100{bottom:175.710000px;}
.y2c3{bottom:176.070000px;}
.y243{bottom:176.430000px;}
.y57{bottom:177.510000px;}
.y19f{bottom:177.870000px;}
.y24{bottom:178.230000px;}
.y335{bottom:178.590000px;}
.y282{bottom:178.883388px;}
.y29c{bottom:179.080119px;}
.y37e{bottom:179.670000px;}
.y307{bottom:182.910000px;}
.y1e9{bottom:183.270000px;}
.y2e9{bottom:183.990000px;}
.y93{bottom:184.710000px;}
.y3cc{bottom:186.150000px;}
.y2d9{bottom:186.510000px;}
.y112{bottom:190.470000px;}
.y2fc{bottom:190.830000px;}
.y322{bottom:191.910000px;}
.y1b0{bottom:192.990000px;}
.y78{bottom:193.710000px;}
.y128{bottom:194.430000px;}
.y187{bottom:195.510000px;}
.y18d{bottom:195.870000px;}
.y2c2{bottom:196.230000px;}
.y146{bottom:197.670000px;}
.y56{bottom:198.030000px;}
.y153{bottom:198.390000px;}
.y3e4{bottom:198.750000px;}
.yd2{bottom:199.110000px;}
.y2da{bottom:199.470000px;}
.y281{bottom:199.510688px;}
.y263{bottom:199.830000px;}
.y29b{bottom:200.719651px;}
.y209{bottom:201.270000px;}
.yb6{bottom:201.630000px;}
.y38c{bottom:202.350000px;}
.y1f4{bottom:203.430000px;}
.y10b{bottom:204.870000px;}
.y2f3{bottom:205.590000px;}
.y249{bottom:205.950000px;}
.y27a{bottom:206.310000px;}
.y27c{bottom:206.532749px;}
.y16f{bottom:206.670000px;}
.y294{bottom:207.390000px;}
.y1d5{bottom:208.110000px;}
.y334{bottom:208.470000px;}
.yff{bottom:208.830000px;}
.y242{bottom:209.190000px;}
.y37d{bottom:209.955000px;}
.y3e1{bottom:210.675000px;}
.y19e{bottom:211.035000px;}
.y23{bottom:213.915000px;}
.y306{bottom:215.715000px;}
.y1e8{bottom:216.075000px;}
.y2e8{bottom:217.155000px;}
.y92{bottom:217.515000px;}
.y55{bottom:218.955000px;}
.y2d8{bottom:219.675000px;}
.y280{bottom:220.137988px;}
.y3cb{bottom:220.395000px;}
.y22b{bottom:220.755000px;}
.y2b3{bottom:221.115000px;}
.y29a{bottom:222.331825px;}
.y111{bottom:223.275000px;}
.y2fb{bottom:223.635000px;}
.y321{bottom:224.715000px;}
.y1af{bottom:226.155000px;}
.y361{bottom:226.515000px;}
.y77{bottom:226.875000px;}
.y1dc{bottom:227.235000px;}
.y127{bottom:227.595000px;}
.yea{bottom:227.955000px;}
.y186{bottom:228.675000px;}
.y28a{bottom:229.151282px;}
.y145{bottom:230.475000px;}
.y152{bottom:231.555000px;}
.yd1{bottom:232.275000px;}
.y262{bottom:232.635000px;}
.y2dd{bottom:234.075000px;}
.yb5{bottom:234.435000px;}
.y38b{bottom:235.515000px;}
.y1f3{bottom:236.235000px;}
.y248{bottom:237.315000px;}
.y10a{bottom:237.675000px;}
.y247{bottom:238.755000px;}
.y54{bottom:239.475000px;}
.y16e{bottom:239.835000px;}
.y37c{bottom:240.195000px;}
.y293{bottom:240.555000px;}
.y3c7{bottom:241.275000px;}
.yfe{bottom:241.635000px;}
.y241{bottom:241.995000px;}
.y27d{bottom:242.762742px;}
.y3e0{bottom:243.435000px;}
.y3a3{bottom:243.795000px;}
.y299{bottom:243.944000px;}
.y19d{bottom:244.155000px;}
.y230{bottom:244.875000px;}
.y305{bottom:248.835000px;}
.y1e7{bottom:249.195000px;}
.y2e7{bottom:250.275000px;}
.y91{bottom:250.635000px;}
.y2d7{bottom:252.795000px;}
.y22{bottom:254.595000px;}
.y110{bottom:256.395000px;}
.y2f2{bottom:256.755000px;}
.y320{bottom:257.835000px;}
.y1ae{bottom:258.915000px;}
.y76{bottom:259.635000px;}
.y53{bottom:260.355000px;}
.y23b{bottom:261.435000px;}
.y185{bottom:261.795000px;}
.y144{bottom:263.595000px;}
.y151{bottom:264.315000px;}
.y3f0{bottom:265.013137px;}
.yd0{bottom:265.395000px;}
.y261{bottom:265.755000px;}
.y298{bottom:266.582069px;}
.y208{bottom:267.195000px;}
.yb4{bottom:267.555000px;}
.y333{bottom:268.995000px;}
.y37b{bottom:270.435000px;}
.y109{bottom:270.795000px;}
.y1d4{bottom:271.875000px;}
.y16d{bottom:272.595000px;}
.y3a0{bottom:273.315000px;}
.y240{bottom:273.675000px;}
.y3c6{bottom:274.395000px;}
.yfd{bottom:274.755000px;}
.y3a2{bottom:276.555000px;}
.y19c{bottom:276.915000px;}
.y3e5{bottom:278.700099px;}
.y3f7{bottom:278.700174px;}
.y38a{bottom:279.075000px;}
.y3e3{bottom:279.435000px;}
.y22f{bottom:279.795000px;}
.ye9{bottom:280.155000px;}
.y52{bottom:280.875000px;}
.y304{bottom:281.595000px;}
.y1e6{bottom:281.955000px;}
.y2e6{bottom:283.035000px;}
.y90{bottom:283.755000px;}
.y2d6{bottom:285.555000px;}
.y360{bottom:286.995000px;}
.y297{bottom:288.194243px;}
.y10f{bottom:289.155000px;}
.y2f1{bottom:289.515000px;}
.y31f{bottom:290.595000px;}
.y1ad{bottom:292.035000px;}
.y22e{bottom:292.395000px;}
.y75{bottom:292.755000px;}
.y3ce{bottom:293.115000px;}
.y126{bottom:293.475000px;}
.y184{bottom:294.555000px;}
.y21{bottom:295.635000px;}
.y143{bottom:296.355000px;}
.y246{bottom:296.715000px;}
.y150{bottom:297.435000px;}
.ycf{bottom:298.155000px;}
.y260{bottom:298.515000px;}
.y332{bottom:299.235000px;}
.y1f2{bottom:300.315000px;}
.yb3{bottom:300.675000px;}
.y23f{bottom:301.035000px;}
.y51{bottom:301.755000px;}
.y3b2{bottom:302.115000px;}
.y108{bottom:303.555000px;}
.y1d3{bottom:304.995000px;}
.y16c{bottom:305.715000px;}
.y39f{bottom:306.435000px;}
.y3c5{bottom:307.155000px;}
.yfc{bottom:307.515000px;}
.y3a1{bottom:307.875000px;}
.y3df{bottom:309.315000px;}
.y19b{bottom:310.035000px;}
.y2b2{bottom:312.195000px;}
.y303{bottom:314.715000px;}
.y8f{bottom:315.075000px;}
.y2e5{bottom:316.155000px;}
.y35f{bottom:317.235000px;}
.y2d5{bottom:318.675000px;}
.y50{bottom:322.275000px;}
.y2f0{bottom:322.635000px;}
.y389{bottom:323.355000px;}
.y31e{bottom:323.715000px;}
.y23e{bottom:324.435000px;}
.y1ac{bottom:324.795000px;}
.y74{bottom:325.515000px;}
.y125{bottom:326.595000px;}
.y23a{bottom:327.315000px;}
.y183{bottom:327.675000px;}
.y142{bottom:329.475000px;}
.y14f{bottom:330.195000px;}
.y37a{bottom:330.915000px;}
.yce{bottom:331.275000px;}
.y25f{bottom:331.635000px;}
.ye7{bottom:332.715000px;}
.yb2{bottom:333.435000px;}
.y3ca{bottom:334.185000px;}
.y3b1{bottom:335.265000px;}
.y2b1{bottom:335.625000px;}
.y284{bottom:336.269636px;}
.y20{bottom:336.345000px;}
.y107{bottom:336.705000px;}
.y1d2{bottom:337.785000px;}
.y16b{bottom:338.505000px;}
.y39e{bottom:339.225000px;}
.y3c4{bottom:340.305000px;}
.yfb{bottom:340.665000px;}
.y3de{bottom:342.465000px;}
.y19a{bottom:342.825000px;}
.y4f{bottom:343.185000px;}
.y23d{bottom:347.145000px;}
.y302{bottom:347.505000px;}
.y1e5{bottom:347.865000px;}
.y2e4{bottom:348.945000px;}
.y2d4{bottom:351.465000px;}
.y292{bottom:352.545000px;}
.y8e{bottom:353.265000px;}
.y3ee{bottom:353.766092px;}
.y1db{bottom:355.425000px;}
.y388{bottom:356.505000px;}
.y31d{bottom:356.865000px;}
.y1ab{bottom:357.945000px;}
.y1b{bottom:358.305000px;}
.y73{bottom:358.665000px;}
.y239{bottom:359.025000px;}
.y124{bottom:359.385000px;}
.y15f{bottom:359.745000px;}
.y182{bottom:360.465000px;}
.y379{bottom:360.825000px;}
.y141{bottom:362.625000px;}
.y14e{bottom:363.345000px;}
.y4e{bottom:363.705000px;}
.ycd{bottom:364.065000px;}
.y25e{bottom:364.425000px;}
.y1f1{bottom:366.225000px;}
.yb1{bottom:366.585000px;}
.y3b0{bottom:368.025000px;}
.y106{bottom:369.465000px;}
.y1d1{bottom:370.905000px;}
.y16a{bottom:371.625000px;}
.y39d{bottom:372.345000px;}
.y3c3{bottom:373.065000px;}
.yfa{bottom:373.425000px;}
.y3dd{bottom:375.225000px;}
.y199{bottom:375.945000px;}
.y2b0{bottom:377.385000px;}
.y2b4{bottom:378.239735px;}
.y301{bottom:380.625000px;}
.y1e4{bottom:380.985000px;}
.y2e3{bottom:382.065000px;}
.y34a{bottom:382.785000px;}
.y10e{bottom:383.865000px;}
.y4d{bottom:384.585000px;}
.ye6{bottom:385.305000px;}
.y3c9{bottom:385.665000px;}
.y1da{bottom:386.745000px;}
.y2ef{bottom:388.545000px;}
.y31c{bottom:389.625000px;}
.y331{bottom:389.985000px;}
.y1aa{bottom:390.705000px;}
.y378{bottom:391.065000px;}
.y72{bottom:391.425000px;}
.y123{bottom:392.505000px;}
.y181{bottom:393.585000px;}
.y296{bottom:393.975000px;}
.y140{bottom:395.385000px;}
.y14d{bottom:396.105000px;}
.ycc{bottom:397.185000px;}
.y25d{bottom:397.545000px;}
.yb0{bottom:399.345000px;}
.y3af{bottom:401.145000px;}
.y105{bottom:402.585000px;}
.y1d0{bottom:404.025000px;}
.y169{bottom:404.745000px;}
.y4c{bottom:405.105000px;}
.y3c2{bottom:406.185000px;}
.yf9{bottom:406.545000px;}
.y3dc{bottom:408.345000px;}
.y198{bottom:408.705000px;}
.y35e{bottom:411.585000px;}
.y349{bottom:412.665000px;}
.y7c{bottom:413.385000px;}
.y1e3{bottom:413.745000px;}
.y1d9{bottom:414.105000px;}
.y2e2{bottom:414.825000px;}
.y2d3{bottom:417.345000px;}
.y10d{bottom:419.145000px;}
.y330{bottom:420.225000px;}
.y377{bottom:421.305000px;}
.y2ee{bottom:421.665000px;}
.y238{bottom:422.745000px;}
.y387{bottom:423.465000px;}
.y1a9{bottom:423.825000px;}
.y71{bottom:424.545000px;}
.y18a{bottom:424.905000px;}
.y122{bottom:425.265000px;}
.y15e{bottom:425.625000px;}
.y4b{bottom:425.985000px;}
.y180{bottom:426.345000px;}
.y14c{bottom:427.785000px;}
.y13f{bottom:428.505000px;}
.ycb{bottom:429.945000px;}
.y25c{bottom:430.305000px;}
.y1f0{bottom:430.665000px;}
.y207{bottom:432.105000px;}
.yaf{bottom:432.465000px;}
.y3ae{bottom:434.265000px;}
.y7b{bottom:435.705000px;}
.y1cf{bottom:436.785000px;}
.y1d8{bottom:437.145000px;}
.y168{bottom:437.505000px;}
.ye5{bottom:437.865000px;}
.y39c{bottom:438.225000px;}
.y3c1{bottom:438.945000px;}
.yf8{bottom:439.665000px;}
.y3db{bottom:441.105000px;}
.y197{bottom:441.825000px;}
.y35d{bottom:443.265000px;}
.y27e{bottom:443.381462px;}
.y4a{bottom:446.505000px;}
.y1e2{bottom:446.865000px;}
.y2e1{bottom:447.945000px;}
.y2d2{bottom:450.465000px;}
.y376{bottom:451.545000px;}
.y2ed{bottom:454.425000px;}
.y31b{bottom:455.505000px;}
.y237{bottom:455.865000px;}
.y1a8{bottom:456.585000px;}
.y386{bottom:457.305000px;}
.y70{bottom:457.710000px;}
.y121{bottom:458.430000px;}
.y14b{bottom:459.510000px;}
.y189{bottom:459.870000px;}
.y13e{bottom:461.310000px;}
.y25b{bottom:462.030000px;}
.yca{bottom:463.110000px;}
.yae{bottom:465.270000px;}
.y3ad{bottom:467.070000px;}
.y49{bottom:467.430000px;}
.y21f{bottom:468.150000px;}
.y104{bottom:468.510000px;}
.y1ce{bottom:469.950000px;}
.y167{bottom:470.670000px;}
.y39b{bottom:471.390000px;}
.y3c0{bottom:472.110000px;}
.yf7{bottom:472.470000px;}
.y35c{bottom:473.550000px;}
.y3da{bottom:474.270000px;}
.y196{bottom:474.630000px;}
.y2e0{bottom:476.070000px;}
.y348{bottom:478.590000px;}
.y1a{bottom:479.310000px;}
.y300{bottom:479.670000px;}
.y1e1{bottom:480.030000px;}
.y32f{bottom:480.750000px;}
.y375{bottom:481.830000px;}
.y22a{bottom:483.270000px;}
.y2ec{bottom:487.590000px;}
.y48{bottom:487.950000px;}
.y31a{bottom:488.670000px;}
.y236{bottom:489.390000px;}
.y1a7{bottom:489.750000px;}
.y6f{bottom:490.470000px;}
.y120{bottom:491.190000px;}
.y15d{bottom:491.550000px;}
.y14a{bottom:492.270000px;}
.y179{bottom:492.630000px;}
.y13d{bottom:494.430000px;}
.yc9{bottom:495.870000px;}
.y1ef{bottom:496.230000px;}
.y206{bottom:498.030000px;}
.yad{bottom:498.390000px;}
.y2df{bottom:499.110000px;}
.y3ac{bottom:500.190000px;}
.y21e{bottom:501.270000px;}
.y103{bottom:501.630000px;}
.y1cd{bottom:502.710000px;}
.y166{bottom:503.430000px;}
.y35b{bottom:503.790000px;}
.y39a{bottom:504.150000px;}
.y3bf{bottom:504.870000px;}
.yf6{bottom:505.590000px;}
.y3d9{bottom:507.390000px;}
.y195{bottom:507.750000px;}
.y47{bottom:508.830000px;}
.y32e{bottom:510.990000px;}
.y374{bottom:512.070000px;}
.y2ff{bottom:512.430000px;}
.y1e0{bottom:512.790000px;}
.y229{bottom:516.030000px;}
.y2d1{bottom:516.390000px;}
.y1a6{bottom:517.830000px;}
.y19{bottom:519.990000px;}
.y2eb{bottom:520.350000px;}
.y319{bottom:521.430000px;}
.y2de{bottom:522.150000px;}
.y235{bottom:522.510000px;}
.y6e{bottom:523.590000px;}
.y11f{bottom:524.310000px;}
.y385{bottom:525.030000px;}
.y149{bottom:525.390000px;}
.y13c{bottom:527.190000px;}
.y25a{bottom:527.550000px;}
.y8d{bottom:528.990000px;}
.y46{bottom:529.350000px;}
.yac{bottom:531.150000px;}
.y3ab{bottom:532.950000px;}
.y21d{bottom:534.030000px;}
.y102{bottom:534.390000px;}
.y1cc{bottom:535.830000px;}
.y165{bottom:536.550000px;}
.y399{bottom:537.270000px;}
.y3be{bottom:537.990000px;}
.yf5{bottom:538.350000px;}
.y347{bottom:539.070000px;}
.y3d8{bottom:540.150000px;}
.y194{bottom:540.870000px;}
.y32d{bottom:541.230000px;}
.y373{bottom:542.310000px;}
.ye3{bottom:543.030000px;}
.y2fe{bottom:545.550000px;}
.y1a5{bottom:545.910000px;}
.y228{bottom:548.790000px;}
.y2d0{bottom:549.510000px;}
.y45{bottom:550.230000px;}
.y279{bottom:552.390000px;}
.y2fa{bottom:553.470000px;}
.y318{bottom:554.550000px;}
.y234{bottom:555.270000px;}
.y6d{bottom:556.350000px;}
.y148{bottom:556.710000px;}
.y11e{bottom:557.070000px;}
.y15c{bottom:557.430000px;}
.y384{bottom:558.150000px;}
.y178{bottom:558.510000px;}
.y245{bottom:558.870000px;}
.y13b{bottom:560.310000px;}
.y18{bottom:560.670000px;}
.yc8{bottom:561.750000px;}
.y1ee{bottom:562.110000px;}
.y205{bottom:563.910000px;}
.yab{bottom:564.270000px;}
.y3aa{bottom:566.070000px;}
.y21c{bottom:567.150000px;}
.y8c{bottom:567.510000px;}
.y1cb{bottom:568.590000px;}
.y164{bottom:569.310000px;}
.y398{bottom:570.030000px;}
.y44{bottom:570.750000px;}
.y3bd{bottom:571.110000px;}
.yf4{bottom:571.470000px;}
.y372{bottom:572.550000px;}
.y3d7{bottom:573.270000px;}
.y193{bottom:573.630000px;}
.y1a4{bottom:574.350000px;}
.y1b3{bottom:574.470000px;}
.y259{bottom:576.870000px;}
.y1df{bottom:578.670000px;}
.y227{bottom:581.940000px;}
.y2cf{bottom:582.300000px;}
.y278{bottom:585.540000px;}
.y2f9{bottom:586.260000px;}
.y317{bottom:587.340000px;}
.y233{bottom:588.420000px;}
.y6c{bottom:589.500000px;}
.y177{bottom:589.860000px;}
.y11d{bottom:590.220000px;}
.y383{bottom:590.940000px;}
.y17f{bottom:591.300000px;}
.y43{bottom:591.660000px;}
.yaa{bottom:592.380000px;}
.y13a{bottom:593.100000px;}
.y1ed{bottom:593.460000px;}
.y35a{bottom:594.180000px;}
.yc7{bottom:594.900000px;}
.ye0{bottom:595.260000px;}
.ya7{bottom:596.700000px;}
.y204{bottom:597.060000px;}
.y3a9{bottom:598.860000px;}
.y21b{bottom:599.940000px;}
.y8b{bottom:600.300000px;}
.y346{bottom:600.660000px;}
.y163{bottom:601.020000px;}
.y32c{bottom:601.380000px;}
.y17{bottom:601.740000px;}
.y371{bottom:602.820000px;}
.y397{bottom:603.180000px;}
.y3bc{bottom:603.900000px;}
.yf3{bottom:604.260000px;}
.y258{bottom:604.620000px;}
.y3d6{bottom:606.060000px;}
.y192{bottom:606.780000px;}
.y1de{bottom:610.020000px;}
.y42{bottom:612.180000px;}
.y226{bottom:613.260000px;}
.ya9{bottom:615.060000px;}
.y2ce{bottom:615.420000px;}
.y2f8{bottom:619.380000px;}
.y316{bottom:620.460000px;}
.y162{bottom:620.820000px;}
.y232{bottom:621.540000px;}
.y6b{bottom:622.260000px;}
.y1d7{bottom:622.620000px;}
.y11c{bottom:622.980000px;}
.y15b{bottom:623.340000px;}
.y17e{bottom:624.420000px;}
.y139{bottom:626.220000px;}
.yc6{bottom:628.020000px;}
.y223{bottom:628.380000px;}
.ya6{bottom:629.460000px;}
.y2af{bottom:629.820000px;}
.y203{bottom:630.180000px;}
.y257{bottom:631.260000px;}
.y21a{bottom:631.620000px;}
.y3a8{bottom:631.980000px;}
.y345{bottom:632.340000px;}
.y41{bottom:633.060000px;}
.y8a{bottom:633.420000px;}
.y1ca{bottom:634.500000px;}
.y396{bottom:635.940000px;}
.y277{bottom:636.300000px;}
.y3bb{bottom:637.020000px;}
.yf2{bottom:637.380000px;}
.y1dd{bottom:637.740000px;}
.y3d5{bottom:639.180000px;}
.y191{bottom:639.540000px;}
.y225{bottom:640.980000px;}
.y161{bottom:643.860000px;}
.y2cd{bottom:648.180000px;}
.y16{bottom:649.620000px;}
.y222{bottom:651.780000px;}
.y2f7{bottom:652.140000px;}
.y40{bottom:653.580000px;}
.y359{bottom:654.660000px;}
.y6a{bottom:655.380000px;}
.ydf{bottom:656.100000px;}
.y15a{bottom:656.460000px;}
.y17d{bottom:657.180000px;}
.y138{bottom:658.980000px;}
.y2c1{bottom:659.340000px;}
.yc5{bottom:660.780000px;}
.y3d4{bottom:661.140000px;}
.y32b{bottom:661.860000px;}
.ya5{bottom:662.580000px;}
.y202{bottom:662.940000px;}
.y370{bottom:663.300000px;}
.y224{bottom:663.660000px;}
.y219{bottom:664.020000px;}
.y3a7{bottom:664.740000px;}
.y67{bottom:666.180000px;}
.y1c9{bottom:667.620000px;}
.y395{bottom:669.060000px;}
.y276{bottom:669.420000px;}
.y3ba{bottom:669.780000px;}
.yf1{bottom:670.140000px;}
.y256{bottom:670.860000px;}
.y190{bottom:672.660000px;}
.y3f{bottom:674.460000px;}
.y221{bottom:674.820000px;}
.y382{bottom:678.780000px;}
.yb8{bottom:681.300000px;}
.y3d3{bottom:683.100000px;}
.y358{bottom:684.900000px;}
.y2f6{bottom:685.260000px;}
.y315{bottom:686.340000px;}
.y66{bottom:688.140000px;}
.yde{bottom:688.860000px;}
.y11b{bottom:689.220000px;}
.y17c{bottom:690.300000px;}
.y137{bottom:690.660000px;}
.y2fd{bottom:691.740000px;}
.y176{bottom:692.100000px;}
.y344{bottom:692.820000px;}
.y36f{bottom:693.540000px;}
.yc4{bottom:693.900000px;}
.y3e{bottom:694.980000px;}
.ya4{bottom:695.700000px;}
.y201{bottom:696.060000px;}
.y3a6{bottom:696.420000px;}
.y89{bottom:699.300000px;}
.y1c8{bottom:700.380000px;}
.y394{bottom:701.820000px;}
.y275{bottom:702.180000px;}
.y3b9{bottom:702.900000px;}
.yf0{bottom:703.260000px;}
.y18f{bottom:703.980000px;}
.y15{bottom:705.450000px;}
.y98{bottom:710.130000px;}
.y218{bottom:711.210000px;}
.y381{bottom:711.930000px;}
.y255{bottom:714.090000px;}
.y3d2{bottom:714.450000px;}
.y357{bottom:715.170000px;}
.y3d{bottom:715.890000px;}
.y314{bottom:719.490000px;}
.y65{bottom:721.290000px;}
.ydd{bottom:722.010000px;}
.y159{bottom:722.370000px;}
.y136{bottom:723.090000px;}
.y36e{bottom:723.810000px;}
.y2dc{bottom:724.530000px;}
.y175{bottom:725.250000px;}
.yc3{bottom:726.690000px;}
.y200{bottom:727.410000px;}
.y2ae{bottom:728.850000px;}
.ya3{bottom:729.570000px;}
.y88{bottom:732.090000px;}
.y291{bottom:733.170000px;}
.y1c7{bottom:733.530000px;}
.y18e{bottom:734.970000px;}
.y274{bottom:735.330000px;}
.y3b8{bottom:735.690000px;}
.y3c{bottom:736.410000px;}
.y217{bottom:741.090000px;}
.y97{bottom:743.250000px;}
.y254{bottom:745.050000px;}
.y2cc{bottom:747.210000px;}
.y356{bottom:749.010000px;}
.y313{bottom:752.250000px;}
.y1a0{bottom:752.610000px;}
.y343{bottom:753.330000px;}
.y36d{bottom:753.690000px;}
.y64{bottom:754.410000px;}
.y23c{bottom:754.770000px;}
.ydc{bottom:755.130000px;}
.y135{bottom:756.210000px;}
.y1ec{bottom:756.570000px;}
.y3b{bottom:757.290000px;}
.y174{bottom:758.010000px;}
.y2c0{bottom:758.370000px;}
.yc2{bottom:759.810000px;}
.y14{bottom:761.610000px;}
.y3a5{bottom:761.970000px;}
.ya2{bottom:762.330000px;}
.y87{bottom:765.210000px;}
.y1c6{bottom:766.650000px;}
.y393{bottom:767.730000px;}
.y3b7{bottom:768.810000px;}
.yef{bottom:769.170000px;}
.y216{bottom:773.850000px;}
.y2db{bottom:775.290000px;}
.y96{bottom:776.370000px;}
.y3a{bottom:777.810000px;}
.y2cb{bottom:779.970000px;}
.y355{bottom:780.690000px;}
.y32a{bottom:782.850000px;}
.y342{bottom:783.570000px;}
.y36c{bottom:783.930000px;}
.y290{bottom:784.290000px;}
.y312{bottom:785.370000px;}
.y63{bottom:787.170000px;}
.ydb{bottom:787.890000px;}
.y158{bottom:788.250000px;}
.y134{bottom:788.970000px;}
.y253{bottom:789.690000px;}
.y173{bottom:791.130000px;}
.yc1{bottom:792.570000px;}
.y1ff{bottom:792.930000px;}
.y2ad{bottom:794.730000px;}
.ya1{bottom:795.450000px;}
.y13{bottom:795.810000px;}
.y86{bottom:798.330000px;}
.y39{bottom:798.690000px;}
.y1c5{bottom:799.410000px;}
.y392{bottom:800.850000px;}
.yee{bottom:802.290000px;}
.y215{bottom:806.970000px;}
.y354{bottom:810.930000px;}
.y2ca{bottom:811.650000px;}
.y329{bottom:813.090000px;}
.y341{bottom:813.450000px;}
.y36b{bottom:814.170000px;}
.y95{bottom:814.890000px;}
.y12{bottom:816.330000px;}
.y28f{bottom:817.050000px;}
.y311{bottom:818.490000px;}
.y38{bottom:819.210000px;}
.y62{bottom:820.290000px;}
.y11a{bottom:821.010000px;}
.y133{bottom:822.090000px;}
.y172{bottom:822.450000px;}
.y2bf{bottom:824.250000px;}
.yc0{bottom:825.690000px;}
.y1fe{bottom:826.050000px;}
.y3a4{bottom:826.410000px;}
.y2ac{bottom:827.850000px;}
.ya0{bottom:828.570000px;}
.y85{bottom:831.135000px;}
.y1c4{bottom:832.575000px;}
.yed{bottom:835.095000px;}
.y252{bottom:836.175000px;}
.y11{bottom:837.975000px;}
.y2c9{bottom:839.055000px;}
.y214{bottom:839.775000px;}
.y37{bottom:840.135000px;}
.y353{bottom:841.215000px;}
.y328{bottom:843.375000px;}
.y36a{bottom:844.455000px;}
.y3d1{bottom:845.895000px;}
.y340{bottom:847.695000px;}
.yda{bottom:852.015000px;}
.y310{bottom:852.375000px;}
.y61{bottom:853.095000px;}
.y119{bottom:853.815000px;}
.y157{bottom:854.535000px;}
.y132{bottom:855.255000px;}
.y2c8{bottom:855.975000px;}
.y2be{bottom:857.055000px;}
.ybf{bottom:858.495000px;}
.y1fd{bottom:858.855000px;}
.y36{bottom:860.655000px;}
.y9f{bottom:862.095000px;}
.y84{bottom:864.255000px;}
.y10{bottom:864.975000px;}
.y1c3{bottom:865.335000px;}
.y251{bottom:867.495000px;}
.yec{bottom:868.215000px;}
.y352{bottom:871.455000px;}
.y2c7{bottom:872.535000px;}
.y213{bottom:872.895000px;}
.y327{bottom:873.615000px;}
.y369{bottom:874.695000px;}
.y2ab{bottom:878.655000px;}
.y3d0{bottom:879.015000px;}
.y33f{bottom:879.375000px;}
.y35{bottom:881.535000px;}
.y391{bottom:884.775000px;}
.yd9{bottom:885.135000px;}
.y118{bottom:885.495000px;}
.y60{bottom:886.215000px;}
.y156{bottom:886.575000px;}
.y131{bottom:888.015000px;}
.y2bd{bottom:890.175000px;}
.ybe{bottom:891.615000px;}
.y1fc{bottom:891.975000px;}
.yf{bottom:892.335000px;}
.y9e{bottom:895.215000px;}
.y83{bottom:897.015000px;}
.y1c2{bottom:898.455000px;}
.yeb{bottom:900.975000px;}
.y273{bottom:901.335000px;}
.y351{bottom:901.695000px;}
.y34{bottom:902.055000px;}
.y326{bottom:903.855000px;}
.y212{bottom:904.215000px;}
.y368{bottom:904.935000px;}
.y33e{bottom:909.615000px;}
.y3cf{bottom:910.335000px;}
.yd7{bottom:910.695000px;}
.y2aa{bottom:911.775000px;}
.y3b6{bottom:912.495000px;}
.y117{bottom:917.895000px;}
.y30f{bottom:918.255000px;}
.y5f{bottom:918.975000px;}
.y1eb{bottom:919.335000px;}
.ye{bottom:919.695000px;}
.y130{bottom:921.135000px;}
.y33{bottom:922.935000px;}
.y1fb{bottom:923.295000px;}
.ybd{bottom:924.735000px;}
.y250{bottom:926.175000px;}
.y9d{bottom:928.335000px;}
.y82{bottom:930.135000px;}
.y3e2{bottom:930.495000px;}
.y1c1{bottom:931.215000px;}
.y211{bottom:931.935000px;}
.y28e{bottom:934.095000px;}
.y367{bottom:935.175000px;}
.y33d{bottom:939.855000px;}
.y32{bottom:943.455000px;}
.y2a9{bottom:944.535000px;}
.y3b5{bottom:945.615000px;}
.yd{bottom:946.695000px;}
.y116{bottom:949.215000px;}
.y30e{bottom:951.015000px;}
.y5e{bottom:952.095000px;}
.y272{bottom:952.815000px;}
.y12f{bottom:953.925000px;}
.y210{bottom:955.005000px;}
.y1fa{bottom:955.725000px;}
.y2bc{bottom:956.085000px;}
.ybc{bottom:957.525000px;}
.y350{bottom:961.845000px;}
.y9c{bottom:962.205000px;}
.y81{bottom:962.925000px;}
.y31{bottom:964.365000px;}
.y366{bottom:965.445000px;}
.y28d{bottom:966.885000px;}
.y390{bottom:969.045000px;}
.y33c{bottom:970.125000px;}
.y24f{bottom:972.645000px;}
.yc{bottom:974.085000px;}
.y20f{bottom:976.605000px;}
.y2a8{bottom:977.685000px;}
.y115{bottom:982.005000px;}
.y267{bottom:983.085000px;}
.y30d{bottom:984.165000px;}
.y24e{bottom:984.525000px;}
.y30{bottom:984.885000px;}
.y188{bottom:985.245000px;}
.y271{bottom:985.965000px;}
.y12e{bottom:987.045000px;}
.y1f9{bottom:988.845000px;}
.ybb{bottom:990.645000px;}
.yd4{bottom:993.165000px;}
.y325{bottom:994.245000px;}
.y9b{bottom:994.965000px;}
.y3b4{bottom:995.325000px;}
.y80{bottom:996.045000px;}
.y1c0{bottom:997.125000px;}
.y38f{bottom:998.565000px;}
.yb{bottom:1000.005000px;}
.y33b{bottom:1000.365000px;}
.y2f{bottom:1005.765000px;}
.y114{bottom:1015.125000px;}
.y7{bottom:1016.565000px;}
.y30c{bottom:1016.925000px;}
.y5d{bottom:1018.005000px;}
.y270{bottom:1019.085000px;}
.y12d{bottom:1019.805000px;}
.y1f8{bottom:1021.965000px;}
.yba{bottom:1023.405000px;}
.y2e{bottom:1026.285000px;}
.y24d{bottom:1027.725000px;}
.y9a{bottom:1028.085000px;}
.y2a7{bottom:1028.445000px;}
.y7f{bottom:1028.805000px;}
.y1bf{bottom:1030.245000px;}
.y28c{bottom:1033.125000px;}
.y4{bottom:1037.085000px;}
.y324{bottom:1043.925000px;}
.y266{bottom:1045.365000px;}
.y2d{bottom:1047.165000px;}
.y365{bottom:1047.885000px;}
.y30b{bottom:1050.045000px;}
.y5c{bottom:1051.125000px;}
.y12c{bottom:1052.925000px;}
.y1f7{bottom:1053.285000px;}
.y2a6{bottom:1056.525000px;}
.y34f{bottom:1057.965000px;}
.yb9{bottom:1059.045000px;}
.y33a{bottom:1060.485000px;}
.y99{bottom:1061.205000px;}
.y3b3{bottom:1061.565000px;}
.y7e{bottom:1061.925000px;}
.y1be{bottom:1063.365000px;}
.y113{bottom:1065.885000px;}
.y2c{bottom:1067.685000px;}
.y380{bottom:1068.765000px;}
.y26f{bottom:1069.845000px;}
.y20d{bottom:1075.605000px;}
.y323{bottom:1077.090000px;}
.y30a{bottom:1082.850000px;}
.y2bb{bottom:1083.570000px;}
.y5b{bottom:1083.930000px;}
.y17b{bottom:1084.290000px;}
.y12b{bottom:1085.730000px;}
.y34e{bottom:1088.250000px;}
.y2b{bottom:1088.610000px;}
.y69{bottom:1089.690000px;}
.y24c{bottom:1090.050000px;}
.y339{bottom:1090.770000px;}
.y3{bottom:1091.490000px;}
.y7d{bottom:1095.090000px;}
.y1bd{bottom:1096.170000px;}
.y2a5{bottom:1097.970000px;}
.y364{bottom:1099.050000px;}
.y24b{bottom:1103.370000px;}
.y5a{bottom:1107.690000px;}
.y2a{bottom:1109.130000px;}
.y26e{bottom:1109.850000px;}
.y2c6{bottom:1112.370000px;}
.y309{bottom:1116.330000px;}
.y7a{bottom:1117.050000px;}
.y12a{bottom:1117.410000px;}
.y1bc{bottom:1117.770000px;}
.y18c{bottom:1118.850000px;}
.y34d{bottom:1119.570000px;}
.y338{bottom:1121.010000px;}
.y2{bottom:1123.890000px;}
.y20b{bottom:1125.330000px;}
.y29{bottom:1130.010000px;}
.y2c5{bottom:1134.330000px;}
.y59{bottom:1138.290000px;}
.ya8{bottom:1144.410000px;}
.y1{bottom:1145.850000px;}
.y68{bottom:1149.810000px;}
.y160{bottom:1150.170000px;}
.y28{bottom:1150.530000px;}
.y337{bottom:1151.250000px;}
.y2c4{bottom:1154.490000px;}
.h7{height:20.520000px;}
.h2c{height:23.597370px;}
.h1f{height:32.760000px;}
.h21{height:33.120000px;}
.h20{height:33.156000px;}
.h18{height:36.000000px;}
.h19{height:36.036000px;}
.h4{height:38.160000px;}
.h1c{height:46.440000px;}
.h5{height:48.013594px;}
.h13{height:53.677969px;}
.h39{height:57.205453px;}
.h17{height:57.937500px;}
.h6{height:58.680000px;}
.h22{height:59.357813px;}
.h2e{height:62.588338px;}
.h3{height:63.175781px;}
.h1e{height:63.338365px;}
.h2b{height:64.431883px;}
.h31{height:65.576690px;}
.h1b{height:65.884219px;}
.h15{height:66.240000px;}
.h16{height:66.276000px;}
.h26{height:66.968437px;}
.h30{height:67.508257px;}
.h36{height:67.824844px;}
.h34{height:68.761045px;}
.h35{height:69.086250px;}
.hc{height:70.664062px;}
.hf{height:71.613281px;}
.hb{height:73.283906px;}
.h11{height:73.722656px;}
.h2{height:74.039062px;}
.h2d{height:74.417838px;}
.h3b{height:74.555771px;}
.h1a{height:74.953125px;}
.h12{height:75.093750px;}
.h37{height:77.342344px;}
.h8{height:84.655547px;}
.h14{height:85.518281px;}
.he{height:95.961797px;}
.h10{height:98.788359px;}
.ha{height:101.916000px;}
.h9{height:116.243437px;}
.h32{height:117.302344px;}
.h23{height:117.368437px;}
.h27{height:118.184062px;}
.hd{height:122.379609px;}
.h25{height:123.944063px;}
.h33{height:133.198662px;}
.h3a{height:159.805119px;}
.h1d{height:163.286197px;}
.h24{height:169.208437px;}
.h2a{height:260.452305px;}
.h2f{height:304.683277px;}
.h38{height:637.220603px;}
.h29{height:892.500000px;}
.h28{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:21.076766px;}
.w19{width:21.111841px;}
.w4{width:106.272000px;}
.w9{width:121.716000px;}
.wb{width:122.436000px;}
.wc{width:122.832000px;}
.wa{width:144.792000px;}
.w8{width:169.275000px;}
.wf{width:202.425000px;}
.w10{width:228.675000px;}
.w11{width:241.665000px;}
.w3{width:255.345000px;}
.w5{width:276.585000px;}
.w6{width:324.150000px;}
.w7{width:340.350000px;}
.w18{width:376.646309px;}
.wd{width:632.055000px;}
.w16{width:636.552913px;}
.w17{width:636.775808px;}
.we{width:636.883228px;}
.w15{width:725.117436px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w14{width:1262.879981px;}
.w12{width:1262.880000px;}
.w13{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:5.430000px;}
.x2c{left:6.480000px;}
.x13{left:11.520000px;}
.x3e{left:12.595920px;}
.x7c{left:15.744840px;}
.x88{left:16.864406px;}
.x31{left:19.440000px;}
.x12{left:23.430000px;}
.x20{left:26.640000px;}
.x41{left:28.058942px;}
.x3f{left:29.991820px;}
.x40{left:33.889790px;}
.x89{left:37.976237px;}
.x2f{left:39.600000px;}
.x25{left:41.070000px;}
.x21{left:42.510000px;}
.x2e{left:44.280000px;}
.x27{left:45.390000px;}
.x30{left:49.725000px;}
.x24{left:52.230000px;}
.x6{left:53.310000px;}
.x75{left:56.593690px;}
.x6f{left:58.991729px;}
.x26{left:60.870000px;}
.x47{left:67.359000px;}
.x74{left:68.699292px;}
.x70{left:70.650480px;}
.x2a{left:72.405000px;}
.x73{left:73.776920px;}
.x49{left:75.270000px;}
.x4b{left:79.605000px;}
.x4c{left:83.199000px;}
.x72{left:84.873722px;}
.x4e{left:88.275000px;}
.x4d{left:93.270000px;}
.x8a{left:104.439922px;}
.x7b{left:114.333376px;}
.x7a{left:117.510273px;}
.x46{left:120.996000px;}
.xf{left:122.436000px;}
.x1{left:127.475987px;}
.x3d{left:128.541439px;}
.x56{left:130.751987px;}
.x7d{left:132.172873px;}
.x38{left:133.272000px;}
.x11{left:134.715000px;}
.x5{left:138.285000px;}
.x8b{left:148.767751px;}
.x19{left:154.514987px;}
.xb{left:157.034987px;}
.x10{left:161.709000px;}
.x8c{left:170.931666px;}
.x32{left:173.954987px;}
.x4f{left:175.034987px;}
.x1e{left:177.195000px;}
.x16{left:180.434987px;}
.x18{left:181.514987px;}
.x59{left:186.914987px;}
.x1d{left:189.074987px;}
.x33{left:193.394987px;}
.x1c{left:198.074987px;}
.x36{left:208.514987px;}
.x28{left:211.034987px;}
.x35{left:212.474987px;}
.x8e{left:215.217411px;}
.x54{left:221.864987px;}
.xc{left:224.024987px;}
.x45{left:227.624987px;}
.x61{left:229.784987px;}
.x17{left:233.744987px;}
.x9{left:235.544987px;}
.x8f{left:237.385533px;}
.x3c{left:243.824987px;}
.x29{left:249.945000px;}
.x87{left:258.630737px;}
.x3a{left:260.388000px;}
.x81{left:265.064987px;}
.x5c{left:266.504987px;}
.x67{left:267.944987px;}
.x7f{left:279.824987px;}
.x5e{left:281.624987px;}
.x78{left:285.224987px;}
.x63{left:288.104987px;}
.x5b{left:289.544987px;}
.x7{left:292.784987px;}
.xa{left:302.189987px;}
.x83{left:303.989987px;}
.x51{left:309.029987px;}
.x79{left:311.587250px;}
.x43{left:314.429987px;}
.x39{left:316.188000px;}
.x48{left:324.870000px;}
.x90{left:326.006114px;}
.xe{left:339.269987px;}
.x6e{left:343.589987px;}
.x1f{left:347.910000px;}
.x77{left:357.629987px;}
.x91{left:370.298739px;}
.x2{left:382.830000px;}
.x2b{left:396.540000px;}
.x5a{left:406.619987px;}
.x5f{left:410.579987px;}
.x64{left:412.379987px;}
.x8d{left:413.710980px;}
.xd{left:416.699987px;}
.x57{left:424.259987px;}
.x1a{left:437.579987px;}
.x15{left:441.899987px;}
.x66{left:445.139987px;}
.x8{left:446.579987px;}
.x62{left:465.299987px;}
.x22{left:471.090000px;}
.x4{left:489.090000px;}
.x37{left:500.609987px;}
.x14{left:502.049987px;}
.x2d{left:520.410000px;}
.x5d{left:533.369987px;}
.x4a{left:554.970000px;}
.x65{left:561.854987px;}
.x86{left:563.654987px;}
.x60{left:568.334987px;}
.x71{left:578.387790px;}
.x76{left:589.574987px;}
.x80{left:592.814987px;}
.x23{left:594.255000px;}
.x69{left:606.779981px;}
.x68{left:615.779981px;}
.x85{left:638.894987px;}
.x44{left:653.684987px;}
.x7e{left:663.044987px;}
.x82{left:664.844987px;}
.x84{left:670.604987px;}
.x55{left:694.364987px;}
.x53{left:718.124987px;}
.x58{left:731.849987px;}
.x42{left:735.449987px;}
.x3b{left:765.329987px;}
.x1b{left:805.649987px;}
.x50{left:812.159987px;}
.x34{left:820.799987px;}
.x52{left:839.159987px;}
.x6d{left:854.279987px;}
.x6b{left:1109.849981px;}
.x6c{left:1114.529981px;}
.x6a{left:1116.689981px;}
@media print{
.v1{vertical-align:-74.240000pt;}
.va{vertical-align:-72.960000pt;}
.ve{vertical-align:-55.040000pt;}
.vc{vertical-align:-27.944045pt;}
.vd{vertical-align:-10.583459pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.840000pt;}
.v3{vertical-align:5.120000pt;}
.vb{vertical-align:27.944045pt;}
.v6{vertical-align:42.240000pt;}
.v9{vertical-align:47.360000pt;}
.v4{vertical-align:48.640000pt;}
.v7{vertical-align:90.880000pt;}
.v8{vertical-align:94.720000pt;}
.ls52{letter-spacing:-1.536199pt;}
.ls2f{letter-spacing:-1.280000pt;}
.ls2d{letter-spacing:-0.837333pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.555544pt;}
.ls42{letter-spacing:-0.530121pt;}
.ls24{letter-spacing:-0.512000pt;}
.ls21{letter-spacing:-0.506667pt;}
.ls40{letter-spacing:-0.505964pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls4{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls49{letter-spacing:-0.205867pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.103467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls4d{letter-spacing:0.148267pt;}
.ls31{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.256000pt;}
.ls43{letter-spacing:0.263680pt;}
.ls4f{letter-spacing:0.271360pt;}
.ls4a{letter-spacing:0.297067pt;}
.ls47{letter-spacing:0.314667pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.344320pt;}
.ls20{letter-spacing:0.380160pt;}
.ls19{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls2c{letter-spacing:0.469760pt;}
.ls6{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.576000pt;}
.ls22{letter-spacing:0.618667pt;}
.ls0{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.650667pt;}
.ls48{letter-spacing:0.679680pt;}
.ls30{letter-spacing:0.704000pt;}
.ls4c{letter-spacing:0.768000pt;}
.ls2{letter-spacing:0.832000pt;}
.ls3{letter-spacing:0.896000pt;}
.lsa{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.344000pt;}
.ls14{letter-spacing:1.408000pt;}
.ls39{letter-spacing:1.413797pt;}
.ls1e{letter-spacing:1.450667pt;}
.ls29{letter-spacing:1.484487pt;}
.ls3a{letter-spacing:1.506634pt;}
.ls41{letter-spacing:1.517891pt;}
.ls10{letter-spacing:1.624320pt;}
.ls50{letter-spacing:1.664000pt;}
.ls11{letter-spacing:1.728000pt;}
.ls15{letter-spacing:1.792000pt;}
.ls46{letter-spacing:1.856000pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls44{letter-spacing:2.112000pt;}
.ls2b{letter-spacing:3.456000pt;}
.ls13{letter-spacing:4.736000pt;}
.ls25{letter-spacing:7.040000pt;}
.ls26{letter-spacing:8.576000pt;}
.ls4e{letter-spacing:13.440000pt;}
.ls38{letter-spacing:13.952000pt;}
.ls34{letter-spacing:15.232000pt;}
.ls1b{letter-spacing:16.256000pt;}
.ls45{letter-spacing:17.536000pt;}
.ls35{letter-spacing:18.912000pt;}
.ls37{letter-spacing:23.072000pt;}
.ls36{letter-spacing:24.192000pt;}
.ls2e{letter-spacing:25.216000pt;}
.ls16{letter-spacing:45.696000pt;}
.lsd{letter-spacing:48.768000pt;}
.ls1d{letter-spacing:56.734720pt;}
.ls4b{letter-spacing:91.520000pt;}
.ls32{letter-spacing:135.392000pt;}
.ls3c{letter-spacing:153.779744pt;}
.ls3b{letter-spacing:158.308931pt;}
.ls23{letter-spacing:172.298667pt;}
.ls12{letter-spacing:173.834667pt;}
.ls51{letter-spacing:432.245333pt;}
.ls3d{letter-spacing:597.290374pt;}
.ls3e{letter-spacing:1268.161317pt;}
.ls3f{letter-spacing:1447.819822pt;}
.ws9{word-spacing:-64.000000pt;}
.ws10{word-spacing:-58.880000pt;}
.wsd{word-spacing:-53.760000pt;}
.ws1{word-spacing:-24.010240pt;}
.ws6{word-spacing:-23.906773pt;}
.ws45{word-spacing:-15.954027pt;}
.ws44{word-spacing:-15.656960pt;}
.ws46{word-spacing:-15.621120pt;}
.ws7{word-spacing:-15.424000pt;}
.ws5{word-spacing:-15.296000pt;}
.wsc{word-spacing:-15.040000pt;}
.ws4{word-spacing:-14.976000pt;}
.wsf{word-spacing:-14.912000pt;}
.wsb{word-spacing:-14.848000pt;}
.ws41{word-spacing:-14.784000pt;}
.ws23{word-spacing:-14.656000pt;}
.wse{word-spacing:-14.592000pt;}
.ws13{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws26{word-spacing:-14.336000pt;}
.ws21{word-spacing:-14.272000pt;}
.ws2e{word-spacing:-14.159090pt;}
.ws8{word-spacing:-14.144000pt;}
.ws25{word-spacing:-14.080000pt;}
.ws2{word-spacing:-14.016000pt;}
.ws12{word-spacing:-13.952000pt;}
.ws11{word-spacing:-13.925547pt;}
.wsa{word-spacing:-13.824000pt;}
.ws43{word-spacing:-13.621547pt;}
.ws51{word-spacing:-13.553717pt;}
.ws3f{word-spacing:-13.490558pt;}
.ws42{word-spacing:-13.306880pt;}
.ws32{word-spacing:-13.244767pt;}
.ws29{word-spacing:-12.641199pt;}
.ws20{word-spacing:-12.160000pt;}
.ws22{word-spacing:-10.880000pt;}
.ws0{word-spacing:0.000000pt;}
.ws24{word-spacing:5.418667pt;}
.ws31{word-spacing:84.628214pt;}
.ws34{word-spacing:192.174361pt;}
.ws2a{word-spacing:217.958905pt;}
.ws2b{word-spacing:224.022345pt;}
.ws2d{word-spacing:244.789366pt;}
.ws2f{word-spacing:251.887246pt;}
.ws30{word-spacing:258.663213pt;}
.ws2c{word-spacing:259.873348pt;}
.ws36{word-spacing:286.965662pt;}
.ws38{word-spacing:288.436871pt;}
.ws4d{word-spacing:298.609709pt;}
.ws14{word-spacing:299.659009pt;}
.ws16{word-spacing:303.037697pt;}
.ws1a{word-spacing:310.911965pt;}
.ws3c{word-spacing:316.118412pt;}
.ws1c{word-spacing:330.966310pt;}
.ws1e{word-spacing:331.619985pt;}
.ws39{word-spacing:334.532387pt;}
.ws3e{word-spacing:338.372948pt;}
.ws18{word-spacing:357.332684pt;}
.ws28{word-spacing:363.818667pt;}
.ws48{word-spacing:377.067845pt;}
.ws57{word-spacing:380.884028pt;}
.ws27{word-spacing:392.138667pt;}
.ws4a{word-spacing:403.791727pt;}
.ws33{word-spacing:406.453083pt;}
.ws59{word-spacing:408.151067pt;}
.ws55{word-spacing:410.350874pt;}
.ws15{word-spacing:431.965025pt;}
.ws37{word-spacing:453.546345pt;}
.ws5b{word-spacing:461.069890pt;}
.ws1d{word-spacing:466.183810pt;}
.ws49{word-spacing:468.550258pt;}
.ws4f{word-spacing:474.662511pt;}
.ws4c{word-spacing:483.541543pt;}
.ws1b{word-spacing:486.745658pt;}
.ws3a{word-spacing:486.774745pt;}
.ws5c{word-spacing:486.954349pt;}
.ws4b{word-spacing:488.101761pt;}
.ws19{word-spacing:503.732216pt;}
.ws56{word-spacing:509.654188pt;}
.ws1f{word-spacing:527.639169pt;}
.ws53{word-spacing:535.498247pt;}
.ws50{word-spacing:541.946418pt;}
.ws3d{word-spacing:577.440374pt;}
.ws54{word-spacing:598.024799pt;}
.ws3b{word-spacing:610.817492pt;}
.ws40{word-spacing:707.055992pt;}
.ws35{word-spacing:1085.764519pt;}
.ws17{word-spacing:1167.353327pt;}
.ws52{word-spacing:1487.570845pt;}
.ws4e{word-spacing:1605.784996pt;}
.ws58{word-spacing:1629.176498pt;}
.ws5a{word-spacing:1640.004583pt;}
.ws47{word-spacing:1699.190651pt;}
.ws5d{word-spacing:1868.210478pt;}
._12{margin-left:-13.271893pt;}
._4a{margin-left:-10.282240pt;}
._14{margin-left:-5.386240pt;}
._28{margin-left:-3.407787pt;}
._2{margin-left:-2.182400pt;}
._0{margin-left:-1.114880pt;}
._1{width:1.029120pt;}
._3{width:2.227200pt;}
._6{width:3.293440pt;}
._30{width:4.253440pt;}
._7{width:5.501440pt;}
._23{width:6.407680pt;}
._1a{width:7.488000pt;}
._9{width:9.178880pt;}
._8{width:10.368000pt;}
._a{width:11.581013pt;}
._19{width:12.950613pt;}
._7a{width:14.543360pt;}
._35{width:15.444907pt;}
._17{width:16.448000pt;}
._18{width:17.766400pt;}
._2c{width:19.541760pt;}
._39{width:20.446720pt;}
._1b{width:21.568000pt;}
._2f{width:22.885973pt;}
._34{width:24.416000pt;}
._32{width:25.685760pt;}
._33{width:26.685440pt;}
._31{width:28.032427pt;}
._37{width:28.960427pt;}
._29{width:30.190933pt;}
._38{width:31.110400pt;}
._40{width:32.218880pt;}
._3c{width:33.690880pt;}
._1f{width:35.226880pt;}
._20{width:36.709120pt;}
._41{width:37.907200pt;}
._1e{width:39.005440pt;}
._1c{width:39.968427pt;}
._3b{width:41.743787pt;}
._3a{width:42.635093pt;}
._48{width:43.802880pt;}
._49{width:45.393493pt;}
._3f{width:47.057920pt;}
._36{width:48.106667pt;}
._10{width:49.355093pt;}
._78{width:51.328000pt;}
._79{width:52.417280pt;}
._11{width:53.365333pt;}
._4b{width:55.338667pt;}
._7b{width:56.282880pt;}
._7c{width:57.394347pt;}
._c{width:58.485333pt;}
._3e{width:60.672000pt;}
._3d{width:61.658880pt;}
._5{width:64.746667pt;}
._15{width:66.560427pt;}
._22{width:71.264427pt;}
._42{width:73.569378pt;}
._75{width:78.897248pt;}
._f{width:82.007893pt;}
._1d{width:83.115947pt;}
._2d{width:87.431253pt;}
._7d{width:89.573547pt;}
._2b{width:91.597653pt;}
._2e{width:93.557333pt;}
._16{width:99.545173pt;}
._4c{width:106.831150pt;}
._24{width:114.837760pt;}
._26{width:117.024853pt;}
._25{width:118.755413pt;}
._4d{width:128.607711pt;}
._27{width:132.813227pt;}
._21{width:140.069973pt;}
._68{width:147.602989pt;}
._2a{width:160.675413pt;}
._13{width:165.419093pt;}
._d{width:173.696000pt;}
._e{width:175.136000pt;}
._67{width:194.507722pt;}
._74{width:202.768385pt;}
._51{width:208.135785pt;}
._73{width:213.433697pt;}
._52{width:222.446470pt;}
._53{width:236.594284pt;}
._83{width:241.113004pt;}
._5b{width:242.658323pt;}
._57{width:250.519887pt;}
._65{width:264.077159pt;}
._60{width:271.464595pt;}
._63{width:278.556769pt;}
._77{width:294.987487pt;}
._81{width:329.155631pt;}
._46{width:347.784161pt;}
._50{width:371.900883pt;}
._5a{width:386.896437pt;}
._88{width:391.293638pt;}
._56{width:393.354900pt;}
._58{width:409.461506pt;}
._6a{width:420.844801pt;}
._69{width:436.616540pt;}
._6c{width:442.328441pt;}
._6b{width:455.907148pt;}
._71{width:463.433954pt;}
._4f{width:476.482166pt;}
._72{width:487.270318pt;}
._59{width:491.431301pt;}
._54{width:492.564614pt;}
._55{width:497.370571pt;}
._6e{width:500.019512pt;}
._5c{width:503.629474pt;}
._6d{width:529.877380pt;}
._43{width:532.943617pt;}
._6f{width:535.894903pt;}
._44{width:546.871996pt;}
._4e{width:555.668489pt;}
._70{width:558.670750pt;}
._47{width:567.469019pt;}
._76{width:572.726256pt;}
._7e{width:600.112835pt;}
._45{width:605.051726pt;}
._7f{width:657.737473pt;}
._5f{width:678.635511pt;}
._62{width:713.968713pt;}
._4{width:752.405333pt;}
._b{width:753.941333pt;}
._86{width:886.756294pt;}
._84{width:942.431823pt;}
._82{width:950.527800pt;}
._64{width:989.313184pt;}
._87{width:995.282796pt;}
._89{width:1002.362640pt;}
._61{width:1005.817183pt;}
._5e{width:1062.871349pt;}
._80{width:1081.371854pt;}
._66{width:1131.984664pt;}
._5d{width:1268.161317pt;}
._85{width:1447.967164pt;}
.fsc{font-size:24.320000pt;}
.fsa{font-size:37.120000pt;}
.fse{font-size:38.411457pt;}
.fs7{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs12{font-size:48.754377pt;}
.fs8{font-size:53.760000pt;}
.fsb{font-size:54.985205pt;}
.fsd{font-size:55.934508pt;}
.fs11{font-size:56.320000pt;}
.fsf{font-size:58.605165pt;}
.fs9{font-size:58.880000pt;}
.fs10{font-size:59.692734pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.fs6{font-size:106.240000pt;}
.fs4{font-size:117.760000pt;}
.y3ef{bottom:-46.756076pt;}
.y0{bottom:0.000000pt;}
.y3f8{bottom:0.000003pt;}
.y3f1{bottom:0.907046pt;}
.y1a3{bottom:2.560000pt;}
.y9{bottom:3.520000pt;}
.y1bb{bottom:4.293513pt;}
.y27f{bottom:4.386565pt;}
.y2a4{bottom:4.552965pt;}
.y2ba{bottom:4.686595pt;}
.y3e9{bottom:4.988542pt;}
.y285{bottom:5.251113pt;}
.y28b{bottom:5.251153pt;}
.y3f2{bottom:6.802580pt;}
.ya{bottom:7.040000pt;}
.y3e7{bottom:7.256044pt;}
.y1f{bottom:8.320000pt;}
.y3ed{bottom:9.085198pt;}
.y8{bottom:9.600000pt;}
.y5{bottom:11.200000pt;}
.y20c{bottom:13.760000pt;}
.y3fa{bottom:14.073761pt;}
.yd6{bottom:14.080000pt;}
.y20e{bottom:14.120000pt;}
.y3f4{bottom:14.980746pt;}
.ye4{bottom:15.040000pt;}
.ye2{bottom:15.360000pt;}
.ye8{bottom:15.386667pt;}
.ye1{bottom:16.000000pt;}
.y1a2{bottom:16.320000pt;}
.y3e8{bottom:16.341210pt;}
.y3eb{bottom:16.341224pt;}
.y3f5{bottom:16.794760pt;}
.y3fb{bottom:17.701783pt;}
.y3f3{bottom:19.062261pt;}
.y3f6{bottom:19.062276pt;}
.y3ec{bottom:19.969247pt;}
.y3e6{bottom:20.422720pt;}
.y1ba{bottom:22.308283pt;}
.y6{bottom:23.040000pt;}
.y2a3{bottom:23.764273pt;}
.y2b9{bottom:24.235225pt;}
.y3ea{bottom:26.771771pt;}
.y1a1{bottom:30.080000pt;}
.y1e{bottom:33.280000pt;}
.y269{bottom:36.800000pt;}
.y1b9{bottom:40.352083pt;}
.y2a2{bottom:43.005491pt;}
.yd5{bottom:43.520000pt;}
.yd8{bottom:43.546667pt;}
.y2b8{bottom:43.814195pt;}
.y289{bottom:45.432554pt;}
.y26a{bottom:49.920000pt;}
.y268{bottom:55.040000pt;}
.y26d{bottom:55.360000pt;}
.y26c{bottom:56.000000pt;}
.y26b{bottom:57.920000pt;}
.y1b8{bottom:58.395882pt;}
.y2a1{bottom:62.216313pt;}
.y2b7{bottom:63.393165pt;}
.y288{bottom:63.796943pt;}
.y27{bottom:69.120000pt;}
.y1c{bottom:69.440000pt;}
.y1d{bottom:71.040000pt;}
.y1b7{bottom:76.439681pt;}
.y2a0{bottom:81.427135pt;}
.y287{bottom:82.132321pt;}
.y2b6{bottom:82.972135pt;}
.y26{bottom:87.392000pt;}
.y1b6{bottom:94.455020pt;}
.y3f9{bottom:97.128153pt;}
.y286{bottom:100.467700pt;}
.y29f{bottom:100.637957pt;}
.y2b5{bottom:103.476096pt;}
.y1b5{bottom:112.498819pt;}
.y155{bottom:117.792000pt;}
.y265{bottom:118.752000pt;}
.y29e{bottom:119.848779pt;}
.y363{bottom:120.672000pt;}
.y38e{bottom:121.312000pt;}
.y220{bottom:121.632000pt;}
.y1f6{bottom:122.272000pt;}
.y1b2{bottom:122.912000pt;}
.y2f5{bottom:124.192000pt;}
.y171{bottom:125.152000pt;}
.y34c{bottom:125.472000pt;}
.y3c8{bottom:126.432000pt;}
.y101{bottom:127.072000pt;}
.y244{bottom:129.312000pt;}
.y22d{bottom:130.272000pt;}
.y1b4{bottom:131.395288pt;}
.y336{bottom:131.872000pt;}
.y37f{bottom:132.832000pt;}
.y308{bottom:133.152000pt;}
.y1ea{bottom:133.466667pt;}
.y2ea{bottom:134.426667pt;}
.y94{bottom:134.746667pt;}
.y3cd{bottom:136.026667pt;}
.y29d{bottom:139.059600pt;}
.y58{bottom:139.226667pt;}
.y231{bottom:139.866667pt;}
.y25{bottom:140.186667pt;}
.y283{bottom:140.648868pt;}
.y1b1{bottom:142.106667pt;}
.y79{bottom:143.066667pt;}
.y17a{bottom:143.386667pt;}
.y129{bottom:143.706667pt;}
.y18b{bottom:144.666667pt;}
.y147{bottom:146.266667pt;}
.y27b{bottom:146.906667pt;}
.y154{bottom:147.226667pt;}
.y362{bottom:147.546667pt;}
.yd3{bottom:147.866667pt;}
.y264{bottom:148.186667pt;}
.yb7{bottom:149.786667pt;}
.y20a{bottom:150.106667pt;}
.y38d{bottom:150.746667pt;}
.y1f5{bottom:151.386667pt;}
.y34b{bottom:152.026667pt;}
.y10c{bottom:152.666667pt;}
.y2f4{bottom:153.626667pt;}
.y170{bottom:154.586667pt;}
.y22c{bottom:154.906667pt;}
.y295{bottom:155.226667pt;}
.y24a{bottom:155.546667pt;}
.y1d6{bottom:155.866667pt;}
.y100{bottom:156.186667pt;}
.y2c3{bottom:156.506667pt;}
.y243{bottom:156.826667pt;}
.y57{bottom:157.786667pt;}
.y19f{bottom:158.106667pt;}
.y24{bottom:158.426667pt;}
.y335{bottom:158.746667pt;}
.y282{bottom:159.007456pt;}
.y29c{bottom:159.182328pt;}
.y37e{bottom:159.706667pt;}
.y307{bottom:162.586667pt;}
.y1e9{bottom:162.906667pt;}
.y2e9{bottom:163.546667pt;}
.y93{bottom:164.186667pt;}
.y3cc{bottom:165.466667pt;}
.y2d9{bottom:165.786667pt;}
.y112{bottom:169.306667pt;}
.y2fc{bottom:169.626667pt;}
.y322{bottom:170.586667pt;}
.y1b0{bottom:171.546667pt;}
.y78{bottom:172.186667pt;}
.y128{bottom:172.826667pt;}
.y187{bottom:173.786667pt;}
.y18d{bottom:174.106667pt;}
.y2c2{bottom:174.426667pt;}
.y146{bottom:175.706667pt;}
.y56{bottom:176.026667pt;}
.y153{bottom:176.346667pt;}
.y3e4{bottom:176.666667pt;}
.yd2{bottom:176.986667pt;}
.y2da{bottom:177.306667pt;}
.y281{bottom:177.342834pt;}
.y263{bottom:177.626667pt;}
.y29b{bottom:178.417467pt;}
.y209{bottom:178.906667pt;}
.yb6{bottom:179.226667pt;}
.y38c{bottom:179.866667pt;}
.y1f4{bottom:180.826667pt;}
.y10b{bottom:182.106667pt;}
.y2f3{bottom:182.746667pt;}
.y249{bottom:183.066667pt;}
.y27a{bottom:183.386667pt;}
.y27c{bottom:183.584666pt;}
.y16f{bottom:183.706667pt;}
.y294{bottom:184.346667pt;}
.y1d5{bottom:184.986667pt;}
.y334{bottom:185.306667pt;}
.yff{bottom:185.626667pt;}
.y242{bottom:185.946667pt;}
.y37d{bottom:186.626667pt;}
.y3e1{bottom:187.266667pt;}
.y19e{bottom:187.586667pt;}
.y23{bottom:190.146667pt;}
.y306{bottom:191.746667pt;}
.y1e8{bottom:192.066667pt;}
.y2e8{bottom:193.026667pt;}
.y92{bottom:193.346667pt;}
.y55{bottom:194.626667pt;}
.y2d8{bottom:195.266667pt;}
.y280{bottom:195.678212pt;}
.y3cb{bottom:195.906667pt;}
.y22b{bottom:196.226667pt;}
.y2b3{bottom:196.546667pt;}
.y29a{bottom:197.628289pt;}
.y111{bottom:198.466667pt;}
.y2fb{bottom:198.786667pt;}
.y321{bottom:199.746667pt;}
.y1af{bottom:201.026667pt;}
.y361{bottom:201.346667pt;}
.y77{bottom:201.666667pt;}
.y1dc{bottom:201.986667pt;}
.y127{bottom:202.306667pt;}
.yea{bottom:202.626667pt;}
.y186{bottom:203.266667pt;}
.y28a{bottom:203.690028pt;}
.y145{bottom:204.866667pt;}
.y152{bottom:205.826667pt;}
.yd1{bottom:206.466667pt;}
.y262{bottom:206.786667pt;}
.y2dd{bottom:208.066667pt;}
.yb5{bottom:208.386667pt;}
.y38b{bottom:209.346667pt;}
.y1f3{bottom:209.986667pt;}
.y248{bottom:210.946667pt;}
.y10a{bottom:211.266667pt;}
.y247{bottom:212.226667pt;}
.y54{bottom:212.866667pt;}
.y16e{bottom:213.186667pt;}
.y37c{bottom:213.506667pt;}
.y293{bottom:213.826667pt;}
.y3c7{bottom:214.466667pt;}
.yfe{bottom:214.786667pt;}
.y241{bottom:215.106667pt;}
.y27d{bottom:215.789104pt;}
.y3e0{bottom:216.386667pt;}
.y3a3{bottom:216.706667pt;}
.y299{bottom:216.839111pt;}
.y19d{bottom:217.026667pt;}
.y230{bottom:217.666667pt;}
.y305{bottom:221.186667pt;}
.y1e7{bottom:221.506667pt;}
.y2e7{bottom:222.466667pt;}
.y91{bottom:222.786667pt;}
.y2d7{bottom:224.706667pt;}
.y22{bottom:226.306667pt;}
.y110{bottom:227.906667pt;}
.y2f2{bottom:228.226667pt;}
.y320{bottom:229.186667pt;}
.y1ae{bottom:230.146667pt;}
.y76{bottom:230.786667pt;}
.y53{bottom:231.426667pt;}
.y23b{bottom:232.386667pt;}
.y185{bottom:232.706667pt;}
.y144{bottom:234.306667pt;}
.y151{bottom:234.946667pt;}
.y3f0{bottom:235.567233pt;}
.yd0{bottom:235.906667pt;}
.y261{bottom:236.226667pt;}
.y298{bottom:236.961839pt;}
.y208{bottom:237.506667pt;}
.yb4{bottom:237.826667pt;}
.y333{bottom:239.106667pt;}
.y37b{bottom:240.386667pt;}
.y109{bottom:240.706667pt;}
.y1d4{bottom:241.666667pt;}
.y16d{bottom:242.306667pt;}
.y3a0{bottom:242.946667pt;}
.y240{bottom:243.266667pt;}
.y3c6{bottom:243.906667pt;}
.yfd{bottom:244.226667pt;}
.y3a2{bottom:245.826667pt;}
.y19c{bottom:246.146667pt;}
.y3e5{bottom:247.733421pt;}
.y3f7{bottom:247.733488pt;}
.y38a{bottom:248.066667pt;}
.y3e3{bottom:248.386667pt;}
.y22f{bottom:248.706667pt;}
.ye9{bottom:249.026667pt;}
.y52{bottom:249.666667pt;}
.y304{bottom:250.306667pt;}
.y1e6{bottom:250.626667pt;}
.y2e6{bottom:251.586667pt;}
.y90{bottom:252.226667pt;}
.y2d6{bottom:253.826667pt;}
.y360{bottom:255.106667pt;}
.y297{bottom:256.172660pt;}
.y10f{bottom:257.026667pt;}
.y2f1{bottom:257.346667pt;}
.y31f{bottom:258.306667pt;}
.y1ad{bottom:259.586667pt;}
.y22e{bottom:259.906667pt;}
.y75{bottom:260.226667pt;}
.y3ce{bottom:260.546667pt;}
.y126{bottom:260.866667pt;}
.y184{bottom:261.826667pt;}
.y21{bottom:262.786667pt;}
.y143{bottom:263.426667pt;}
.y246{bottom:263.746667pt;}
.y150{bottom:264.386667pt;}
.ycf{bottom:265.026667pt;}
.y260{bottom:265.346667pt;}
.y332{bottom:265.986667pt;}
.y1f2{bottom:266.946667pt;}
.yb3{bottom:267.266667pt;}
.y23f{bottom:267.586667pt;}
.y51{bottom:268.226667pt;}
.y3b2{bottom:268.546667pt;}
.y108{bottom:269.826667pt;}
.y1d3{bottom:271.106667pt;}
.y16c{bottom:271.746667pt;}
.y39f{bottom:272.386667pt;}
.y3c5{bottom:273.026667pt;}
.yfc{bottom:273.346667pt;}
.y3a1{bottom:273.666667pt;}
.y3df{bottom:274.946667pt;}
.y19b{bottom:275.586667pt;}
.y2b2{bottom:277.506667pt;}
.y303{bottom:279.746667pt;}
.y8f{bottom:280.066667pt;}
.y2e5{bottom:281.026667pt;}
.y35f{bottom:281.986667pt;}
.y2d5{bottom:283.266667pt;}
.y50{bottom:286.466667pt;}
.y2f0{bottom:286.786667pt;}
.y389{bottom:287.426667pt;}
.y31e{bottom:287.746667pt;}
.y23e{bottom:288.386667pt;}
.y1ac{bottom:288.706667pt;}
.y74{bottom:289.346667pt;}
.y125{bottom:290.306667pt;}
.y23a{bottom:290.946667pt;}
.y183{bottom:291.266667pt;}
.y142{bottom:292.866667pt;}
.y14f{bottom:293.506667pt;}
.y37a{bottom:294.146667pt;}
.yce{bottom:294.466667pt;}
.y25f{bottom:294.786667pt;}
.ye7{bottom:295.746667pt;}
.yb2{bottom:296.386667pt;}
.y3ca{bottom:297.053333pt;}
.y3b1{bottom:298.013333pt;}
.y2b1{bottom:298.333333pt;}
.y284{bottom:298.906343pt;}
.y20{bottom:298.973333pt;}
.y107{bottom:299.293333pt;}
.y1d2{bottom:300.253333pt;}
.y16b{bottom:300.893333pt;}
.y39e{bottom:301.533333pt;}
.y3c4{bottom:302.493333pt;}
.yfb{bottom:302.813333pt;}
.y3de{bottom:304.413333pt;}
.y19a{bottom:304.733333pt;}
.y4f{bottom:305.053333pt;}
.y23d{bottom:308.573333pt;}
.y302{bottom:308.893333pt;}
.y1e5{bottom:309.213333pt;}
.y2e4{bottom:310.173333pt;}
.y2d4{bottom:312.413333pt;}
.y292{bottom:313.373333pt;}
.y8e{bottom:314.013333pt;}
.y3ee{bottom:314.458748pt;}
.y1db{bottom:315.933333pt;}
.y388{bottom:316.893333pt;}
.y31d{bottom:317.213333pt;}
.y1ab{bottom:318.173333pt;}
.y1b{bottom:318.493333pt;}
.y73{bottom:318.813333pt;}
.y239{bottom:319.133333pt;}
.y124{bottom:319.453333pt;}
.y15f{bottom:319.773333pt;}
.y182{bottom:320.413333pt;}
.y379{bottom:320.733333pt;}
.y141{bottom:322.333333pt;}
.y14e{bottom:322.973333pt;}
.y4e{bottom:323.293333pt;}
.ycd{bottom:323.613333pt;}
.y25e{bottom:323.933333pt;}
.y1f1{bottom:325.533333pt;}
.yb1{bottom:325.853333pt;}
.y3b0{bottom:327.133333pt;}
.y106{bottom:328.413333pt;}
.y1d1{bottom:329.693333pt;}
.y16a{bottom:330.333333pt;}
.y39d{bottom:330.973333pt;}
.y3c3{bottom:331.613333pt;}
.yfa{bottom:331.933333pt;}
.y3dd{bottom:333.533333pt;}
.y199{bottom:334.173333pt;}
.y2b0{bottom:335.453333pt;}
.y2b4{bottom:336.213098pt;}
.y301{bottom:338.333333pt;}
.y1e4{bottom:338.653333pt;}
.y2e3{bottom:339.613333pt;}
.y34a{bottom:340.253333pt;}
.y10e{bottom:341.213333pt;}
.y4d{bottom:341.853333pt;}
.ye6{bottom:342.493333pt;}
.y3c9{bottom:342.813333pt;}
.y1da{bottom:343.773333pt;}
.y2ef{bottom:345.373333pt;}
.y31c{bottom:346.333333pt;}
.y331{bottom:346.653333pt;}
.y1aa{bottom:347.293333pt;}
.y378{bottom:347.613333pt;}
.y72{bottom:347.933333pt;}
.y123{bottom:348.893333pt;}
.y181{bottom:349.853333pt;}
.y296{bottom:350.200000pt;}
.y140{bottom:351.453333pt;}
.y14d{bottom:352.093333pt;}
.ycc{bottom:353.053333pt;}
.y25d{bottom:353.373333pt;}
.yb0{bottom:354.973333pt;}
.y3af{bottom:356.573333pt;}
.y105{bottom:357.853333pt;}
.y1d0{bottom:359.133333pt;}
.y169{bottom:359.773333pt;}
.y4c{bottom:360.093333pt;}
.y3c2{bottom:361.053333pt;}
.yf9{bottom:361.373333pt;}
.y3dc{bottom:362.973333pt;}
.y198{bottom:363.293333pt;}
.y35e{bottom:365.853333pt;}
.y349{bottom:366.813333pt;}
.y7c{bottom:367.453333pt;}
.y1e3{bottom:367.773333pt;}
.y1d9{bottom:368.093333pt;}
.y2e2{bottom:368.733333pt;}
.y2d3{bottom:370.973333pt;}
.y10d{bottom:372.573333pt;}
.y330{bottom:373.533333pt;}
.y377{bottom:374.493333pt;}
.y2ee{bottom:374.813333pt;}
.y238{bottom:375.773333pt;}
.y387{bottom:376.413333pt;}
.y1a9{bottom:376.733333pt;}
.y71{bottom:377.373333pt;}
.y18a{bottom:377.693333pt;}
.y122{bottom:378.013333pt;}
.y15e{bottom:378.333333pt;}
.y4b{bottom:378.653333pt;}
.y180{bottom:378.973333pt;}
.y14c{bottom:380.253333pt;}
.y13f{bottom:380.893333pt;}
.ycb{bottom:382.173333pt;}
.y25c{bottom:382.493333pt;}
.y1f0{bottom:382.813333pt;}
.y207{bottom:384.093333pt;}
.yaf{bottom:384.413333pt;}
.y3ae{bottom:386.013333pt;}
.y7b{bottom:387.293333pt;}
.y1cf{bottom:388.253333pt;}
.y1d8{bottom:388.573333pt;}
.y168{bottom:388.893333pt;}
.ye5{bottom:389.213333pt;}
.y39c{bottom:389.533333pt;}
.y3c1{bottom:390.173333pt;}
.yf8{bottom:390.813333pt;}
.y3db{bottom:392.093333pt;}
.y197{bottom:392.733333pt;}
.y35d{bottom:394.013333pt;}
.y27e{bottom:394.116855pt;}
.y4a{bottom:396.893333pt;}
.y1e2{bottom:397.213333pt;}
.y2e1{bottom:398.173333pt;}
.y2d2{bottom:400.413333pt;}
.y376{bottom:401.373333pt;}
.y2ed{bottom:403.933333pt;}
.y31b{bottom:404.893333pt;}
.y237{bottom:405.213333pt;}
.y1a8{bottom:405.853333pt;}
.y386{bottom:406.493333pt;}
.y70{bottom:406.853333pt;}
.y121{bottom:407.493333pt;}
.y14b{bottom:408.453333pt;}
.y189{bottom:408.773333pt;}
.y13e{bottom:410.053333pt;}
.y25b{bottom:410.693333pt;}
.yca{bottom:411.653333pt;}
.yae{bottom:413.573333pt;}
.y3ad{bottom:415.173333pt;}
.y49{bottom:415.493333pt;}
.y21f{bottom:416.133333pt;}
.y104{bottom:416.453333pt;}
.y1ce{bottom:417.733333pt;}
.y167{bottom:418.373333pt;}
.y39b{bottom:419.013333pt;}
.y3c0{bottom:419.653333pt;}
.yf7{bottom:419.973333pt;}
.y35c{bottom:420.933333pt;}
.y3da{bottom:421.573333pt;}
.y196{bottom:421.893333pt;}
.y2e0{bottom:423.173333pt;}
.y348{bottom:425.413333pt;}
.y1a{bottom:426.053333pt;}
.y300{bottom:426.373333pt;}
.y1e1{bottom:426.693333pt;}
.y32f{bottom:427.333333pt;}
.y375{bottom:428.293333pt;}
.y22a{bottom:429.573333pt;}
.y2ec{bottom:433.413333pt;}
.y48{bottom:433.733333pt;}
.y31a{bottom:434.373333pt;}
.y236{bottom:435.013333pt;}
.y1a7{bottom:435.333333pt;}
.y6f{bottom:435.973333pt;}
.y120{bottom:436.613333pt;}
.y15d{bottom:436.933333pt;}
.y14a{bottom:437.573333pt;}
.y179{bottom:437.893333pt;}
.y13d{bottom:439.493333pt;}
.yc9{bottom:440.773333pt;}
.y1ef{bottom:441.093333pt;}
.y206{bottom:442.693333pt;}
.yad{bottom:443.013333pt;}
.y2df{bottom:443.653333pt;}
.y3ac{bottom:444.613333pt;}
.y21e{bottom:445.573333pt;}
.y103{bottom:445.893333pt;}
.y1cd{bottom:446.853333pt;}
.y166{bottom:447.493333pt;}
.y35b{bottom:447.813333pt;}
.y39a{bottom:448.133333pt;}
.y3bf{bottom:448.773333pt;}
.yf6{bottom:449.413333pt;}
.y3d9{bottom:451.013333pt;}
.y195{bottom:451.333333pt;}
.y47{bottom:452.293333pt;}
.y32e{bottom:454.213333pt;}
.y374{bottom:455.173333pt;}
.y2ff{bottom:455.493333pt;}
.y1e0{bottom:455.813333pt;}
.y229{bottom:458.693333pt;}
.y2d1{bottom:459.013333pt;}
.y1a6{bottom:460.293333pt;}
.y19{bottom:462.213333pt;}
.y2eb{bottom:462.533333pt;}
.y319{bottom:463.493333pt;}
.y2de{bottom:464.133333pt;}
.y235{bottom:464.453333pt;}
.y6e{bottom:465.413333pt;}
.y11f{bottom:466.053333pt;}
.y385{bottom:466.693333pt;}
.y149{bottom:467.013333pt;}
.y13c{bottom:468.613333pt;}
.y25a{bottom:468.933333pt;}
.y8d{bottom:470.213333pt;}
.y46{bottom:470.533333pt;}
.yac{bottom:472.133333pt;}
.y3ab{bottom:473.733333pt;}
.y21d{bottom:474.693333pt;}
.y102{bottom:475.013333pt;}
.y1cc{bottom:476.293333pt;}
.y165{bottom:476.933333pt;}
.y399{bottom:477.573333pt;}
.y3be{bottom:478.213333pt;}
.yf5{bottom:478.533333pt;}
.y347{bottom:479.173333pt;}
.y3d8{bottom:480.133333pt;}
.y194{bottom:480.773333pt;}
.y32d{bottom:481.093333pt;}
.y373{bottom:482.053333pt;}
.ye3{bottom:482.693333pt;}
.y2fe{bottom:484.933333pt;}
.y1a5{bottom:485.253333pt;}
.y228{bottom:487.813333pt;}
.y2d0{bottom:488.453333pt;}
.y45{bottom:489.093333pt;}
.y279{bottom:491.013333pt;}
.y2fa{bottom:491.973333pt;}
.y318{bottom:492.933333pt;}
.y234{bottom:493.573333pt;}
.y6d{bottom:494.533333pt;}
.y148{bottom:494.853333pt;}
.y11e{bottom:495.173333pt;}
.y15c{bottom:495.493333pt;}
.y384{bottom:496.133333pt;}
.y178{bottom:496.453333pt;}
.y245{bottom:496.773333pt;}
.y13b{bottom:498.053333pt;}
.y18{bottom:498.373333pt;}
.yc8{bottom:499.333333pt;}
.y1ee{bottom:499.653333pt;}
.y205{bottom:501.253333pt;}
.yab{bottom:501.573333pt;}
.y3aa{bottom:503.173333pt;}
.y21c{bottom:504.133333pt;}
.y8c{bottom:504.453333pt;}
.y1cb{bottom:505.413333pt;}
.y164{bottom:506.053333pt;}
.y398{bottom:506.693333pt;}
.y44{bottom:507.333333pt;}
.y3bd{bottom:507.653333pt;}
.yf4{bottom:507.973333pt;}
.y372{bottom:508.933333pt;}
.y3d7{bottom:509.573333pt;}
.y193{bottom:509.893333pt;}
.y1a4{bottom:510.533333pt;}
.y1b3{bottom:510.640000pt;}
.y259{bottom:512.773333pt;}
.y1df{bottom:514.373333pt;}
.y227{bottom:517.280000pt;}
.y2cf{bottom:517.600000pt;}
.y278{bottom:520.480000pt;}
.y2f9{bottom:521.120000pt;}
.y317{bottom:522.080000pt;}
.y233{bottom:523.040000pt;}
.y6c{bottom:524.000000pt;}
.y177{bottom:524.320000pt;}
.y11d{bottom:524.640000pt;}
.y383{bottom:525.280000pt;}
.y17f{bottom:525.600000pt;}
.y43{bottom:525.920000pt;}
.yaa{bottom:526.560000pt;}
.y13a{bottom:527.200000pt;}
.y1ed{bottom:527.520000pt;}
.y35a{bottom:528.160000pt;}
.yc7{bottom:528.800000pt;}
.ye0{bottom:529.120000pt;}
.ya7{bottom:530.400000pt;}
.y204{bottom:530.720000pt;}
.y3a9{bottom:532.320000pt;}
.y21b{bottom:533.280000pt;}
.y8b{bottom:533.600000pt;}
.y346{bottom:533.920000pt;}
.y163{bottom:534.240000pt;}
.y32c{bottom:534.560000pt;}
.y17{bottom:534.880000pt;}
.y371{bottom:535.840000pt;}
.y397{bottom:536.160000pt;}
.y3bc{bottom:536.800000pt;}
.yf3{bottom:537.120000pt;}
.y258{bottom:537.440000pt;}
.y3d6{bottom:538.720000pt;}
.y192{bottom:539.360000pt;}
.y1de{bottom:542.240000pt;}
.y42{bottom:544.160000pt;}
.y226{bottom:545.120000pt;}
.ya9{bottom:546.720000pt;}
.y2ce{bottom:547.040000pt;}
.y2f8{bottom:550.560000pt;}
.y316{bottom:551.520000pt;}
.y162{bottom:551.840000pt;}
.y232{bottom:552.480000pt;}
.y6b{bottom:553.120000pt;}
.y1d7{bottom:553.440000pt;}
.y11c{bottom:553.760000pt;}
.y15b{bottom:554.080000pt;}
.y17e{bottom:555.040000pt;}
.y139{bottom:556.640000pt;}
.yc6{bottom:558.240000pt;}
.y223{bottom:558.560000pt;}
.ya6{bottom:559.520000pt;}
.y2af{bottom:559.840000pt;}
.y203{bottom:560.160000pt;}
.y257{bottom:561.120000pt;}
.y21a{bottom:561.440000pt;}
.y3a8{bottom:561.760000pt;}
.y345{bottom:562.080000pt;}
.y41{bottom:562.720000pt;}
.y8a{bottom:563.040000pt;}
.y1ca{bottom:564.000000pt;}
.y396{bottom:565.280000pt;}
.y277{bottom:565.600000pt;}
.y3bb{bottom:566.240000pt;}
.yf2{bottom:566.560000pt;}
.y1dd{bottom:566.880000pt;}
.y3d5{bottom:568.160000pt;}
.y191{bottom:568.480000pt;}
.y225{bottom:569.760000pt;}
.y161{bottom:572.320000pt;}
.y2cd{bottom:576.160000pt;}
.y16{bottom:577.440000pt;}
.y222{bottom:579.360000pt;}
.y2f7{bottom:579.680000pt;}
.y40{bottom:580.960000pt;}
.y359{bottom:581.920000pt;}
.y6a{bottom:582.560000pt;}
.ydf{bottom:583.200000pt;}
.y15a{bottom:583.520000pt;}
.y17d{bottom:584.160000pt;}
.y138{bottom:585.760000pt;}
.y2c1{bottom:586.080000pt;}
.yc5{bottom:587.360000pt;}
.y3d4{bottom:587.680000pt;}
.y32b{bottom:588.320000pt;}
.ya5{bottom:588.960000pt;}
.y202{bottom:589.280000pt;}
.y370{bottom:589.600000pt;}
.y224{bottom:589.920000pt;}
.y219{bottom:590.240000pt;}
.y3a7{bottom:590.880000pt;}
.y67{bottom:592.160000pt;}
.y1c9{bottom:593.440000pt;}
.y395{bottom:594.720000pt;}
.y276{bottom:595.040000pt;}
.y3ba{bottom:595.360000pt;}
.yf1{bottom:595.680000pt;}
.y256{bottom:596.320000pt;}
.y190{bottom:597.920000pt;}
.y3f{bottom:599.520000pt;}
.y221{bottom:599.840000pt;}
.y382{bottom:603.360000pt;}
.yb8{bottom:605.600000pt;}
.y3d3{bottom:607.200000pt;}
.y358{bottom:608.800000pt;}
.y2f6{bottom:609.120000pt;}
.y315{bottom:610.080000pt;}
.y66{bottom:611.680000pt;}
.yde{bottom:612.320000pt;}
.y11b{bottom:612.640000pt;}
.y17c{bottom:613.600000pt;}
.y137{bottom:613.920000pt;}
.y2fd{bottom:614.880000pt;}
.y176{bottom:615.200000pt;}
.y344{bottom:615.840000pt;}
.y36f{bottom:616.480000pt;}
.yc4{bottom:616.800000pt;}
.y3e{bottom:617.760000pt;}
.ya4{bottom:618.400000pt;}
.y201{bottom:618.720000pt;}
.y3a6{bottom:619.040000pt;}
.y89{bottom:621.600000pt;}
.y1c8{bottom:622.560000pt;}
.y394{bottom:623.840000pt;}
.y275{bottom:624.160000pt;}
.y3b9{bottom:624.800000pt;}
.yf0{bottom:625.120000pt;}
.y18f{bottom:625.760000pt;}
.y15{bottom:627.066667pt;}
.y98{bottom:631.226667pt;}
.y218{bottom:632.186667pt;}
.y381{bottom:632.826667pt;}
.y255{bottom:634.746667pt;}
.y3d2{bottom:635.066667pt;}
.y357{bottom:635.706667pt;}
.y3d{bottom:636.346667pt;}
.y314{bottom:639.546667pt;}
.y65{bottom:641.146667pt;}
.ydd{bottom:641.786667pt;}
.y159{bottom:642.106667pt;}
.y136{bottom:642.746667pt;}
.y36e{bottom:643.386667pt;}
.y2dc{bottom:644.026667pt;}
.y175{bottom:644.666667pt;}
.yc3{bottom:645.946667pt;}
.y200{bottom:646.586667pt;}
.y2ae{bottom:647.866667pt;}
.ya3{bottom:648.506667pt;}
.y88{bottom:650.746667pt;}
.y291{bottom:651.706667pt;}
.y1c7{bottom:652.026667pt;}
.y18e{bottom:653.306667pt;}
.y274{bottom:653.626667pt;}
.y3b8{bottom:653.946667pt;}
.y3c{bottom:654.586667pt;}
.y217{bottom:658.746667pt;}
.y97{bottom:660.666667pt;}
.y254{bottom:662.266667pt;}
.y2cc{bottom:664.186667pt;}
.y356{bottom:665.786667pt;}
.y313{bottom:668.666667pt;}
.y1a0{bottom:668.986667pt;}
.y343{bottom:669.626667pt;}
.y36d{bottom:669.946667pt;}
.y64{bottom:670.586667pt;}
.y23c{bottom:670.906667pt;}
.ydc{bottom:671.226667pt;}
.y135{bottom:672.186667pt;}
.y1ec{bottom:672.506667pt;}
.y3b{bottom:673.146667pt;}
.y174{bottom:673.786667pt;}
.y2c0{bottom:674.106667pt;}
.yc2{bottom:675.386667pt;}
.y14{bottom:676.986667pt;}
.y3a5{bottom:677.306667pt;}
.ya2{bottom:677.626667pt;}
.y87{bottom:680.186667pt;}
.y1c6{bottom:681.466667pt;}
.y393{bottom:682.426667pt;}
.y3b7{bottom:683.386667pt;}
.yef{bottom:683.706667pt;}
.y216{bottom:687.866667pt;}
.y2db{bottom:689.146667pt;}
.y96{bottom:690.106667pt;}
.y3a{bottom:691.386667pt;}
.y2cb{bottom:693.306667pt;}
.y355{bottom:693.946667pt;}
.y32a{bottom:695.866667pt;}
.y342{bottom:696.506667pt;}
.y36c{bottom:696.826667pt;}
.y290{bottom:697.146667pt;}
.y312{bottom:698.106667pt;}
.y63{bottom:699.706667pt;}
.ydb{bottom:700.346667pt;}
.y158{bottom:700.666667pt;}
.y134{bottom:701.306667pt;}
.y253{bottom:701.946667pt;}
.y173{bottom:703.226667pt;}
.yc1{bottom:704.506667pt;}
.y1ff{bottom:704.826667pt;}
.y2ad{bottom:706.426667pt;}
.ya1{bottom:707.066667pt;}
.y13{bottom:707.386667pt;}
.y86{bottom:709.626667pt;}
.y39{bottom:709.946667pt;}
.y1c5{bottom:710.586667pt;}
.y392{bottom:711.866667pt;}
.yee{bottom:713.146667pt;}
.y215{bottom:717.306667pt;}
.y354{bottom:720.826667pt;}
.y2ca{bottom:721.466667pt;}
.y329{bottom:722.746667pt;}
.y341{bottom:723.066667pt;}
.y36b{bottom:723.706667pt;}
.y95{bottom:724.346667pt;}
.y12{bottom:725.626667pt;}
.y28f{bottom:726.266667pt;}
.y311{bottom:727.546667pt;}
.y38{bottom:728.186667pt;}
.y62{bottom:729.146667pt;}
.y11a{bottom:729.786667pt;}
.y133{bottom:730.746667pt;}
.y172{bottom:731.066667pt;}
.y2bf{bottom:732.666667pt;}
.yc0{bottom:733.946667pt;}
.y1fe{bottom:734.266667pt;}
.y3a4{bottom:734.586667pt;}
.y2ac{bottom:735.866667pt;}
.ya0{bottom:736.506667pt;}
.y85{bottom:738.786667pt;}
.y1c4{bottom:740.066667pt;}
.yed{bottom:742.306667pt;}
.y252{bottom:743.266667pt;}
.y11{bottom:744.866667pt;}
.y2c9{bottom:745.826667pt;}
.y214{bottom:746.466667pt;}
.y37{bottom:746.786667pt;}
.y353{bottom:747.746667pt;}
.y328{bottom:749.666667pt;}
.y36a{bottom:750.626667pt;}
.y3d1{bottom:751.906667pt;}
.y340{bottom:753.506667pt;}
.yda{bottom:757.346667pt;}
.y310{bottom:757.666667pt;}
.y61{bottom:758.306667pt;}
.y119{bottom:758.946667pt;}
.y157{bottom:759.586667pt;}
.y132{bottom:760.226667pt;}
.y2c8{bottom:760.866667pt;}
.y2be{bottom:761.826667pt;}
.ybf{bottom:763.106667pt;}
.y1fd{bottom:763.426667pt;}
.y36{bottom:765.026667pt;}
.y9f{bottom:766.306667pt;}
.y84{bottom:768.226667pt;}
.y10{bottom:768.866667pt;}
.y1c3{bottom:769.186667pt;}
.y251{bottom:771.106667pt;}
.yec{bottom:771.746667pt;}
.y352{bottom:774.626667pt;}
.y2c7{bottom:775.586667pt;}
.y213{bottom:775.906667pt;}
.y327{bottom:776.546667pt;}
.y369{bottom:777.506667pt;}
.y2ab{bottom:781.026667pt;}
.y3d0{bottom:781.346667pt;}
.y33f{bottom:781.666667pt;}
.y35{bottom:783.586667pt;}
.y391{bottom:786.466667pt;}
.yd9{bottom:786.786667pt;}
.y118{bottom:787.106667pt;}
.y60{bottom:787.746667pt;}
.y156{bottom:788.066667pt;}
.y131{bottom:789.346667pt;}
.y2bd{bottom:791.266667pt;}
.ybe{bottom:792.546667pt;}
.y1fc{bottom:792.866667pt;}
.yf{bottom:793.186667pt;}
.y9e{bottom:795.746667pt;}
.y83{bottom:797.346667pt;}
.y1c2{bottom:798.626667pt;}
.yeb{bottom:800.866667pt;}
.y273{bottom:801.186667pt;}
.y351{bottom:801.506667pt;}
.y34{bottom:801.826667pt;}
.y326{bottom:803.426667pt;}
.y212{bottom:803.746667pt;}
.y368{bottom:804.386667pt;}
.y33e{bottom:808.546667pt;}
.y3cf{bottom:809.186667pt;}
.yd7{bottom:809.506667pt;}
.y2aa{bottom:810.466667pt;}
.y3b6{bottom:811.106667pt;}
.y117{bottom:815.906667pt;}
.y30f{bottom:816.226667pt;}
.y5f{bottom:816.866667pt;}
.y1eb{bottom:817.186667pt;}
.ye{bottom:817.506667pt;}
.y130{bottom:818.786667pt;}
.y33{bottom:820.386667pt;}
.y1fb{bottom:820.706667pt;}
.ybd{bottom:821.986667pt;}
.y250{bottom:823.266667pt;}
.y9d{bottom:825.186667pt;}
.y82{bottom:826.786667pt;}
.y3e2{bottom:827.106667pt;}
.y1c1{bottom:827.746667pt;}
.y211{bottom:828.386667pt;}
.y28e{bottom:830.306667pt;}
.y367{bottom:831.266667pt;}
.y33d{bottom:835.426667pt;}
.y32{bottom:838.626667pt;}
.y2a9{bottom:839.586667pt;}
.y3b5{bottom:840.546667pt;}
.yd{bottom:841.506667pt;}
.y116{bottom:843.746667pt;}
.y30e{bottom:845.346667pt;}
.y5e{bottom:846.306667pt;}
.y272{bottom:846.946667pt;}
.y12f{bottom:847.933333pt;}
.y210{bottom:848.893333pt;}
.y1fa{bottom:849.533333pt;}
.y2bc{bottom:849.853333pt;}
.ybc{bottom:851.133333pt;}
.y350{bottom:854.973333pt;}
.y9c{bottom:855.293333pt;}
.y81{bottom:855.933333pt;}
.y31{bottom:857.213333pt;}
.y366{bottom:858.173333pt;}
.y28d{bottom:859.453333pt;}
.y390{bottom:861.373333pt;}
.y33c{bottom:862.333333pt;}
.y24f{bottom:864.573333pt;}
.yc{bottom:865.853333pt;}
.y20f{bottom:868.093333pt;}
.y2a8{bottom:869.053333pt;}
.y115{bottom:872.893333pt;}
.y267{bottom:873.853333pt;}
.y30d{bottom:874.813333pt;}
.y24e{bottom:875.133333pt;}
.y30{bottom:875.453333pt;}
.y188{bottom:875.773333pt;}
.y271{bottom:876.413333pt;}
.y12e{bottom:877.373333pt;}
.y1f9{bottom:878.973333pt;}
.ybb{bottom:880.573333pt;}
.yd4{bottom:882.813333pt;}
.y325{bottom:883.773333pt;}
.y9b{bottom:884.413333pt;}
.y3b4{bottom:884.733333pt;}
.y80{bottom:885.373333pt;}
.y1c0{bottom:886.333333pt;}
.y38f{bottom:887.613333pt;}
.yb{bottom:888.893333pt;}
.y33b{bottom:889.213333pt;}
.y2f{bottom:894.013333pt;}
.y114{bottom:902.333333pt;}
.y7{bottom:903.613333pt;}
.y30c{bottom:903.933333pt;}
.y5d{bottom:904.893333pt;}
.y270{bottom:905.853333pt;}
.y12d{bottom:906.493333pt;}
.y1f8{bottom:908.413333pt;}
.yba{bottom:909.693333pt;}
.y2e{bottom:912.253333pt;}
.y24d{bottom:913.533333pt;}
.y9a{bottom:913.853333pt;}
.y2a7{bottom:914.173333pt;}
.y7f{bottom:914.493333pt;}
.y1bf{bottom:915.773333pt;}
.y28c{bottom:918.333333pt;}
.y4{bottom:921.853333pt;}
.y324{bottom:927.933333pt;}
.y266{bottom:929.213333pt;}
.y2d{bottom:930.813333pt;}
.y365{bottom:931.453333pt;}
.y30b{bottom:933.373333pt;}
.y5c{bottom:934.333333pt;}
.y12c{bottom:935.933333pt;}
.y1f7{bottom:936.253333pt;}
.y2a6{bottom:939.133333pt;}
.y34f{bottom:940.413333pt;}
.yb9{bottom:941.373333pt;}
.y33a{bottom:942.653333pt;}
.y99{bottom:943.293333pt;}
.y3b3{bottom:943.613333pt;}
.y7e{bottom:943.933333pt;}
.y1be{bottom:945.213333pt;}
.y113{bottom:947.453333pt;}
.y2c{bottom:949.053333pt;}
.y380{bottom:950.013333pt;}
.y26f{bottom:950.973333pt;}
.y20d{bottom:956.093333pt;}
.y323{bottom:957.413333pt;}
.y30a{bottom:962.533333pt;}
.y2bb{bottom:963.173333pt;}
.y5b{bottom:963.493333pt;}
.y17b{bottom:963.813333pt;}
.y12b{bottom:965.093333pt;}
.y34e{bottom:967.333333pt;}
.y2b{bottom:967.653333pt;}
.y69{bottom:968.613333pt;}
.y24c{bottom:968.933333pt;}
.y339{bottom:969.573333pt;}
.y3{bottom:970.213333pt;}
.y7d{bottom:973.413333pt;}
.y1bd{bottom:974.373333pt;}
.y2a5{bottom:975.973333pt;}
.y364{bottom:976.933333pt;}
.y24b{bottom:980.773333pt;}
.y5a{bottom:984.613333pt;}
.y2a{bottom:985.893333pt;}
.y26e{bottom:986.533333pt;}
.y2c6{bottom:988.773333pt;}
.y309{bottom:992.293333pt;}
.y7a{bottom:992.933333pt;}
.y12a{bottom:993.253333pt;}
.y1bc{bottom:993.573333pt;}
.y18c{bottom:994.533333pt;}
.y34d{bottom:995.173333pt;}
.y338{bottom:996.453333pt;}
.y2{bottom:999.013333pt;}
.y20b{bottom:1000.293333pt;}
.y29{bottom:1004.453333pt;}
.y2c5{bottom:1008.293333pt;}
.y59{bottom:1011.813333pt;}
.ya8{bottom:1017.253333pt;}
.y1{bottom:1018.533333pt;}
.y68{bottom:1022.053333pt;}
.y160{bottom:1022.373333pt;}
.y28{bottom:1022.693333pt;}
.y337{bottom:1023.333333pt;}
.y2c4{bottom:1026.213333pt;}
.h7{height:18.240000pt;}
.h2c{height:20.975440pt;}
.h1f{height:29.120000pt;}
.h21{height:29.440000pt;}
.h20{height:29.472000pt;}
.h18{height:32.000000pt;}
.h19{height:32.032000pt;}
.h4{height:33.920000pt;}
.h1c{height:41.280000pt;}
.h5{height:42.678750pt;}
.h13{height:47.713750pt;}
.h39{height:50.849291pt;}
.h17{height:51.500000pt;}
.h6{height:52.160000pt;}
.h22{height:52.762500pt;}
.h2e{height:55.634078pt;}
.h3{height:56.156250pt;}
.h1e{height:56.300769pt;}
.h2b{height:57.272785pt;}
.h31{height:58.290391pt;}
.h1b{height:58.563750pt;}
.h15{height:58.880000pt;}
.h16{height:58.912000pt;}
.h26{height:59.527500pt;}
.h30{height:60.007339pt;}
.h36{height:60.288750pt;}
.h34{height:61.120929pt;}
.h35{height:61.410000pt;}
.hc{height:62.812500pt;}
.hf{height:63.656250pt;}
.hb{height:65.141250pt;}
.h11{height:65.531250pt;}
.h2{height:65.812500pt;}
.h2d{height:66.149190pt;}
.h3b{height:66.271796pt;}
.h1a{height:66.625000pt;}
.h12{height:66.750000pt;}
.h37{height:68.748750pt;}
.h8{height:75.249375pt;}
.h14{height:76.016250pt;}
.he{height:85.299375pt;}
.h10{height:87.811875pt;}
.ha{height:90.592000pt;}
.h9{height:103.327500pt;}
.h32{height:104.268750pt;}
.h23{height:104.327500pt;}
.h27{height:105.052500pt;}
.hd{height:108.781875pt;}
.h25{height:110.172500pt;}
.h33{height:118.398811pt;}
.h3a{height:142.048995pt;}
.h1d{height:145.143286pt;}
.h24{height:150.407500pt;}
.h2a{height:231.513160pt;}
.h2f{height:270.829580pt;}
.h38{height:566.418313pt;}
.h29{height:793.333333pt;}
.h28{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:18.734903pt;}
.w19{width:18.766081pt;}
.w4{width:94.464000pt;}
.w9{width:108.192000pt;}
.wb{width:108.832000pt;}
.wc{width:109.184000pt;}
.wa{width:128.704000pt;}
.w8{width:150.466667pt;}
.wf{width:179.933333pt;}
.w10{width:203.266667pt;}
.w11{width:214.813333pt;}
.w3{width:226.973333pt;}
.w5{width:245.853333pt;}
.w6{width:288.133333pt;}
.w7{width:302.533333pt;}
.w18{width:334.796719pt;}
.wd{width:561.826667pt;}
.w16{width:565.824811pt;}
.w17{width:566.022941pt;}
.we{width:566.118425pt;}
.w15{width:644.548832pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w14{width:1122.559983pt;}
.w12{width:1122.560000pt;}
.w13{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:4.826667pt;}
.x2c{left:5.760000pt;}
.x13{left:10.240000pt;}
.x3e{left:11.196373pt;}
.x7c{left:13.995414pt;}
.x88{left:14.990583pt;}
.x31{left:17.280000pt;}
.x12{left:20.826667pt;}
.x20{left:23.680000pt;}
.x41{left:24.941282pt;}
.x3f{left:26.659396pt;}
.x40{left:30.124258pt;}
.x89{left:33.756655pt;}
.x2f{left:35.200000pt;}
.x25{left:36.506667pt;}
.x21{left:37.786667pt;}
.x2e{left:39.360000pt;}
.x27{left:40.346667pt;}
.x30{left:44.200000pt;}
.x24{left:46.426667pt;}
.x6{left:47.386667pt;}
.x75{left:50.305502pt;}
.x6f{left:52.437092pt;}
.x26{left:54.106667pt;}
.x47{left:59.874667pt;}
.x74{left:61.066037pt;}
.x70{left:62.800426pt;}
.x2a{left:64.360000pt;}
.x73{left:65.579484pt;}
.x49{left:66.906667pt;}
.x4b{left:70.760000pt;}
.x4c{left:73.954667pt;}
.x72{left:75.443308pt;}
.x4e{left:78.466667pt;}
.x4d{left:82.906667pt;}
.x8a{left:92.835486pt;}
.x7b{left:101.629667pt;}
.x7a{left:104.453576pt;}
.x46{left:107.552000pt;}
.xf{left:108.832000pt;}
.x1{left:113.311988pt;}
.x3d{left:114.259057pt;}
.x56{left:116.223988pt;}
.x7d{left:117.486999pt;}
.x38{left:118.464000pt;}
.x11{left:119.746667pt;}
.x5{left:122.920000pt;}
.x8b{left:132.238001pt;}
.x19{left:137.346655pt;}
.xb{left:139.586655pt;}
.x10{left:143.741333pt;}
.x8c{left:151.939259pt;}
.x32{left:154.626655pt;}
.x4f{left:155.586655pt;}
.x1e{left:157.506667pt;}
.x16{left:160.386655pt;}
.x18{left:161.346655pt;}
.x59{left:166.146655pt;}
.x1d{left:168.066655pt;}
.x33{left:171.906655pt;}
.x1c{left:176.066655pt;}
.x36{left:185.346655pt;}
.x28{left:187.586655pt;}
.x35{left:188.866655pt;}
.x8e{left:191.304366pt;}
.x54{left:197.213322pt;}
.xc{left:199.133322pt;}
.x45{left:202.333322pt;}
.x61{left:204.253322pt;}
.x17{left:207.773322pt;}
.x9{left:209.373322pt;}
.x8f{left:211.009362pt;}
.x3c{left:216.733322pt;}
.x29{left:222.173333pt;}
.x87{left:229.893989pt;}
.x3a{left:231.456000pt;}
.x81{left:235.613322pt;}
.x5c{left:236.893322pt;}
.x67{left:238.173322pt;}
.x7f{left:248.733322pt;}
.x5e{left:250.333322pt;}
.x78{left:253.533322pt;}
.x63{left:256.093322pt;}
.x5b{left:257.373322pt;}
.x7{left:260.253322pt;}
.xa{left:268.613322pt;}
.x83{left:270.213322pt;}
.x51{left:274.693322pt;}
.x79{left:276.966445pt;}
.x43{left:279.493322pt;}
.x39{left:281.056000pt;}
.x48{left:288.773333pt;}
.x90{left:289.783212pt;}
.xe{left:301.573322pt;}
.x6e{left:305.413322pt;}
.x1f{left:309.253333pt;}
.x77{left:317.893322pt;}
.x91{left:329.154434pt;}
.x2{left:340.293333pt;}
.x2b{left:352.480000pt;}
.x5a{left:361.439988pt;}
.x5f{left:364.959988pt;}
.x64{left:366.559988pt;}
.x8d{left:367.743094pt;}
.xd{left:370.399988pt;}
.x57{left:377.119988pt;}
.x1a{left:388.959988pt;}
.x15{left:392.799988pt;}
.x66{left:395.679988pt;}
.x8{left:396.959988pt;}
.x62{left:413.599988pt;}
.x22{left:418.746667pt;}
.x4{left:434.746667pt;}
.x37{left:444.986655pt;}
.x14{left:446.266655pt;}
.x2d{left:462.586667pt;}
.x5d{left:474.106655pt;}
.x4a{left:493.306667pt;}
.x65{left:499.426655pt;}
.x86{left:501.026655pt;}
.x60{left:505.186655pt;}
.x71{left:514.122480pt;}
.x76{left:524.066655pt;}
.x80{left:526.946655pt;}
.x23{left:528.226667pt;}
.x69{left:539.359983pt;}
.x68{left:547.359983pt;}
.x85{left:567.906655pt;}
.x44{left:581.053322pt;}
.x7e{left:589.373322pt;}
.x82{left:590.973322pt;}
.x84{left:596.093322pt;}
.x55{left:617.213322pt;}
.x53{left:638.333322pt;}
.x58{left:650.533322pt;}
.x42{left:653.733322pt;}
.x3b{left:680.293322pt;}
.x1b{left:716.133322pt;}
.x50{left:721.919988pt;}
.x34{left:729.599988pt;}
.x52{left:745.919988pt;}
.x6d{left:759.359988pt;}
.x6b{left:986.533317pt;}
.x6c{left:990.693317pt;}
.x6a{left:992.613317pt;}
}




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