
    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_eaf97c7e5ede7af2890d6462.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_8b4b20379860060849a56ef3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_6a05213c7dfa8d4d24dedea8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_b681d3ab732cab79c7d7bf9e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1015b8ffaaa37c03215de8e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4dac928be8599eb2e5daa122.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_de7c5e4c594e8f2241eb77bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1cb211b9f8b6f1b800bd45f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.782000;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_2cda3b844400174c1803282a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.049000;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_af490377eea32d1f57fafc13.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.299000;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_6ff1c3315247b7cfb1ab42f5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.482000;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;}
.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);}
.v5{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.936000px;}
.v4{vertical-align:21.696000px;}
.v1{vertical-align:25.530000px;}
.v3{vertical-align:41.466000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000538px;}
.ls2{letter-spacing:0.000564px;}
.ls3{letter-spacing:2.988710px;}
.ls5{letter-spacing:2.994710px;}
.ls6{letter-spacing:9.956338px;}
.ls4{letter-spacing:9.962338px;}
.lsc{letter-spacing:18.960538px;}
.lsd{letter-spacing:19.542538px;}
.lsb{letter-spacing:19.920538px;}
.ls7{letter-spacing:19.926538px;}
.ls8{letter-spacing:22.914710px;}
.lse{letter-spacing:24.102538px;}
.lsa{letter-spacing:29.886538px;}
.ls9{letter-spacing:105.142200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsff{word-spacing:-48.418425px;}
.ws6c{word-spacing:-30.551309px;}
.ws40{word-spacing:-29.887800px;}
.ws11b{word-spacing:-19.238254px;}
.ws107{word-spacing:-16.557841px;}
.ws10f{word-spacing:-16.498066px;}
.ws34{word-spacing:-16.462310px;}
.ws5e{word-spacing:-16.258963px;}
.wsb5{word-spacing:-16.199188px;}
.ws8a{word-spacing:-16.139475px;}
.wsb3{word-spacing:-16.079636px;}
.wsd6{word-spacing:-15.900310px;}
.ws123{word-spacing:-15.840534px;}
.ws5{word-spacing:-15.780758px;}
.ws64{word-spacing:-15.720983px;}
.wse8{word-spacing:-15.661207px;}
.wscc{word-spacing:-15.481880px;}
.ws105{word-spacing:-15.422105px;}
.ws147{word-spacing:-15.362329px;}
.wsd3{word-spacing:-15.302554px;}
.wsb1{word-spacing:-15.242778px;}
.wsaf{word-spacing:-15.183002px;}
.ws25{word-spacing:-15.123227px;}
.ws108{word-spacing:-15.063451px;}
.ws19{word-spacing:-15.020471px;}
.wse1{word-spacing:-15.003676px;}
.wse3{word-spacing:-14.943900px;}
.wsd9{word-spacing:-14.824349px;}
.ws4{word-spacing:-14.645022px;}
.ws117{word-spacing:-14.585246px;}
.wsad{word-spacing:-14.525471px;}
.ws140{word-spacing:-14.471673px;}
.wse5{word-spacing:-14.465695px;}
.ws96{word-spacing:-14.405920px;}
.ws125{word-spacing:-14.286368px;}
.ws148{word-spacing:-14.259492px;}
.wsdd{word-spacing:-14.226593px;}
.wsfa{word-spacing:-14.166817px;}
.wsae{word-spacing:-14.107042px;}
.ws13a{word-spacing:-14.047266px;}
.ws3a{word-spacing:-13.987490px;}
.ws79{word-spacing:-13.867939px;}
.wsa2{word-spacing:-13.808164px;}
.ws8e{word-spacing:-13.748388px;}
.ws53{word-spacing:-13.688612px;}
.wsd8{word-spacing:-13.569061px;}
.ws146{word-spacing:-13.509286px;}
.wsd2{word-spacing:-13.449600px;}
.wsf1{word-spacing:-13.449510px;}
.wseb{word-spacing:-13.389734px;}
.wse6{word-spacing:-13.329959px;}
.wsf0{word-spacing:-13.270183px;}
.ws14{word-spacing:-13.210408px;}
.ws86{word-spacing:-13.150632px;}
.ws4f{word-spacing:-13.031081px;}
.ws90{word-spacing:-12.971305px;}
.ws102{word-spacing:-12.911530px;}
.ws13b{word-spacing:-12.851754px;}
.wscd{word-spacing:-12.791978px;}
.ws149{word-spacing:-12.760123px;}
.ws5d{word-spacing:-12.732203px;}
.ws6e{word-spacing:-12.672427px;}
.wsb9{word-spacing:-12.618629px;}
.ws26{word-spacing:-12.612652px;}
.ws83{word-spacing:-12.552876px;}
.wse{word-spacing:-12.493100px;}
.wsc8{word-spacing:-12.433325px;}
.ws89{word-spacing:-12.373549px;}
.ws80{word-spacing:-12.313774px;}
.wsd4{word-spacing:-12.253998px;}
.ws8b{word-spacing:-12.194222px;}
.ws93{word-spacing:-12.134447px;}
.ws43{word-spacing:-12.074671px;}
.wsea{word-spacing:-12.014896px;}
.wsbf{word-spacing:-11.955120px;}
.ws8{word-spacing:-11.895344px;}
.wsfb{word-spacing:-11.875735px;}
.ws143{word-spacing:-11.841546px;}
.ws2f{word-spacing:-11.835569px;}
.wsf7{word-spacing:-11.802672px;}
.wsda{word-spacing:-11.775793px;}
.ws23{word-spacing:-11.716018px;}
.ws5c{word-spacing:-11.656242px;}
.ws142{word-spacing:-11.602444px;}
.ws76{word-spacing:-11.596466px;}
.wsb{word-spacing:-11.536691px;}
.ws71{word-spacing:-11.476915px;}
.wse2{word-spacing:-11.417140px;}
.ws6{word-spacing:-11.357364px;}
.wsf3{word-spacing:-11.297588px;}
.ws141{word-spacing:-11.243790px;}
.ws17{word-spacing:-11.237813px;}
.ws16{word-spacing:-11.178037px;}
.ws13d{word-spacing:-11.124239px;}
.ws112{word-spacing:-11.118262px;}
.ws61{word-spacing:-11.058486px;}
.wscb{word-spacing:-10.998710px;}
.wsec{word-spacing:-10.939979px;}
.ws66{word-spacing:-10.938935px;}
.ws132{word-spacing:-10.879159px;}
.ws84{word-spacing:-10.819384px;}
.ws35{word-spacing:-10.759608px;}
.ws65{word-spacing:-10.734662px;}
.wsce{word-spacing:-10.699832px;}
.wsdc{word-spacing:-10.640057px;}
.ws4b{word-spacing:-10.580281px;}
.ws15{word-spacing:-10.520506px;}
.ws24{word-spacing:-10.460730px;}
.ws10e{word-spacing:-10.406932px;}
.ws6a{word-spacing:-10.400954px;}
.ws36{word-spacing:-10.341179px;}
.ws6b{word-spacing:-10.281403px;}
.ws13e{word-spacing:-10.227605px;}
.ws48{word-spacing:-10.221628px;}
.ws22{word-spacing:-10.161852px;}
.ws12d{word-spacing:-10.108054px;}
.wsbe{word-spacing:-10.102076px;}
.ws72{word-spacing:-10.042301px;}
.ws126{word-spacing:-9.993762px;}
.ws7{word-spacing:-9.982525px;}
.ws3b{word-spacing:-9.966336px;}
.ws14a{word-spacing:-9.956458px;}
.ws33{word-spacing:-9.922750px;}
.wsd0{word-spacing:-9.862974px;}
.ws12{word-spacing:-9.803198px;}
.ws50{word-spacing:-9.743423px;}
.ws11{word-spacing:-9.683647px;}
.wsc4{word-spacing:-9.623872px;}
.wsb2{word-spacing:-9.564096px;}
.ws58{word-spacing:-9.504320px;}
.ws9{word-spacing:-9.471785px;}
.ws78{word-spacing:-9.444545px;}
.ws5a{word-spacing:-9.384769px;}
.ws88{word-spacing:-9.324994px;}
.wsb7{word-spacing:-9.265218px;}
.ws12e{word-spacing:-9.211420px;}
.wsbc{word-spacing:-9.205442px;}
.ws127{word-spacing:-9.151644px;}
.ws7e{word-spacing:-9.145667px;}
.wsca{word-spacing:-9.085891px;}
.ws4a{word-spacing:-9.026116px;}
.wsc5{word-spacing:-8.966340px;}
.wsf9{word-spacing:-8.906564px;}
.wsc2{word-spacing:-8.846789px;}
.ws27{word-spacing:-8.787013px;}
.wsd5{word-spacing:-8.727238px;}
.wsa0{word-spacing:-8.667462px;}
.ws111{word-spacing:-8.652924px;}
.wsa6{word-spacing:-8.607686px;}
.wsb8{word-spacing:-8.553888px;}
.wsc7{word-spacing:-8.547911px;}
.ws114{word-spacing:-8.498430px;}
.ws12f{word-spacing:-8.488971px;}
.ws38{word-spacing:-8.488135px;}
.ws13{word-spacing:-8.428360px;}
.wsa{word-spacing:-8.368584px;}
.ws3c{word-spacing:-8.367811px;}
.ws3{word-spacing:-8.308808px;}
.ws5b{word-spacing:-8.249033px;}
.ws9c{word-spacing:-8.189257px;}
.ws9a{word-spacing:-8.129482px;}
.ws74{word-spacing:-8.069706px;}
.ws10b{word-spacing:-8.009930px;}
.wsaa{word-spacing:-7.950155px;}
.ws2d{word-spacing:-7.890379px;}
.ws29{word-spacing:-7.883713px;}
.ws4e{word-spacing:-7.836581px;}
.ws2b{word-spacing:-7.830604px;}
.wsed{word-spacing:-7.776806px;}
.ws63{word-spacing:-7.770828px;}
.ws77{word-spacing:-7.711052px;}
.wsac{word-spacing:-7.651277px;}
.ws1f{word-spacing:-7.591501px;}
.ws153{word-spacing:-7.542672px;}
.wsee{word-spacing:-7.537703px;}
.wsbb{word-spacing:-7.531726px;}
.ws45{word-spacing:-7.471950px;}
.wsc{word-spacing:-7.412174px;}
.ws91{word-spacing:-7.352399px;}
.ws11f{word-spacing:-7.350717px;}
.ws31{word-spacing:-7.292623px;}
.wsf{word-spacing:-7.232848px;}
.ws8c{word-spacing:-7.173072px;}
.ws28{word-spacing:-7.113296px;}
.wsf6{word-spacing:-7.053521px;}
.ws39{word-spacing:-6.993745px;}
.wsfc{word-spacing:-6.948826px;}
.wsd7{word-spacing:-6.939947px;}
.wsc6{word-spacing:-6.933970px;}
.ws12c{word-spacing:-6.903834px;}
.ws7d{word-spacing:-6.874194px;}
.wse0{word-spacing:-6.814418px;}
.wsa9{word-spacing:-6.754643px;}
.wsc0{word-spacing:-6.694867px;}
.wsc1{word-spacing:-6.635092px;}
.ws113{word-spacing:-6.581294px;}
.wse9{word-spacing:-6.575316px;}
.wse4{word-spacing:-6.525747px;}
.wsc3{word-spacing:-6.515540px;}
.ws1d{word-spacing:-6.455765px;}
.ws44{word-spacing:-6.395989px;}
.ws2a{word-spacing:-6.393079px;}
.ws52{word-spacing:-6.336214px;}
.ws82{word-spacing:-6.276438px;}
.ws32{word-spacing:-6.216662px;}
.ws94{word-spacing:-6.156887px;}
.wscf{word-spacing:-6.097111px;}
.wsde{word-spacing:-6.037336px;}
.ws14b{word-spacing:-6.036819px;}
.ws98{word-spacing:-5.977560px;}
.ws119{word-spacing:-5.956003px;}
.wsdb{word-spacing:-5.917784px;}
.wsf5{word-spacing:-5.863986px;}
.ws103{word-spacing:-5.858009px;}
.ws6f{word-spacing:-5.798233px;}
.ws62{word-spacing:-5.738458px;}
.wsb4{word-spacing:-5.678682px;}
.wsf4{word-spacing:-5.648077px;}
.ws1b{word-spacing:-5.618906px;}
.ws57{word-spacing:-5.559131px;}
.ws30{word-spacing:-5.499355px;}
.wsd{word-spacing:-5.439580px;}
.ws3d{word-spacing:-5.379804px;}
.ws4c{word-spacing:-5.320028px;}
.ws37{word-spacing:-5.309553px;}
.ws49{word-spacing:-5.260253px;}
.ws4d{word-spacing:-5.200477px;}
.ws92{word-spacing:-5.140702px;}
.ws2c{word-spacing:-5.082826px;}
.ws85{word-spacing:-5.080926px;}
.ws120{word-spacing:-5.028027px;}
.ws8f{word-spacing:-5.021150px;}
.ws14e{word-spacing:-4.968819px;}
.ws54{word-spacing:-4.961375px;}
.ws12b{word-spacing:-4.913553px;}
.ws20{word-spacing:-4.901599px;}
.wsba{word-spacing:-4.841824px;}
.ws5f{word-spacing:-4.782048px;}
.wsa4{word-spacing:-4.722272px;}
.ws1a{word-spacing:-4.662497px;}
.ws7f{word-spacing:-4.602721px;}
.ws95{word-spacing:-4.542946px;}
.ws1e{word-spacing:-4.483170px;}
.ws21{word-spacing:-4.423394px;}
.ws101{word-spacing:-4.363619px;}
.ws7a{word-spacing:-4.303843px;}
.ws73{word-spacing:-4.244068px;}
.wsdf{word-spacing:-4.184292px;}
.ws12a{word-spacing:-4.124516px;}
.wsb0{word-spacing:-4.064741px;}
.ws75{word-spacing:-4.004965px;}
.ws51{word-spacing:-3.945190px;}
.wse7{word-spacing:-3.885414px;}
.ws56{word-spacing:-3.825638px;}
.ws129{word-spacing:-3.765863px;}
.ws133{word-spacing:-3.720068px;}
.ws81{word-spacing:-3.706087px;}
.wsfd{word-spacing:-3.655930px;}
.wsab{word-spacing:-3.646312px;}
.ws109{word-spacing:-3.586536px;}
.ws7b{word-spacing:-3.526760px;}
.ws2e{word-spacing:-3.466985px;}
.wsd1{word-spacing:-3.407209px;}
.ws6d{word-spacing:-3.347434px;}
.ws8d{word-spacing:-3.287658px;}
.wsfe{word-spacing:-3.227882px;}
.ws70{word-spacing:-3.168107px;}
.ws144{word-spacing:-3.108331px;}
.ws122{word-spacing:-3.048556px;}
.ws139{word-spacing:-2.988780px;}
.wsa1{word-spacing:-2.869229px;}
.ws100{word-spacing:-2.809453px;}
.ws55{word-spacing:-2.689902px;}
.ws10{word-spacing:-2.630126px;}
.wsc9{word-spacing:-2.570351px;}
.ws87{word-spacing:-2.524123px;}
.ws69{word-spacing:-2.510575px;}
.ws68{word-spacing:-2.450800px;}
.ws7c{word-spacing:-2.391024px;}
.ws41{word-spacing:-2.331248px;}
.ws121{word-spacing:-2.271473px;}
.ws42{word-spacing:-2.211697px;}
.ws14d{word-spacing:-2.151922px;}
.ws116{word-spacing:-2.092146px;}
.ws145{word-spacing:-2.032370px;}
.ws11e{word-spacing:-1.912819px;}
.ws97{word-spacing:-1.853044px;}
.ws130{word-spacing:-1.733492px;}
.ws10d{word-spacing:-1.673717px;}
.ws1c{word-spacing:-1.613941px;}
.ws104{word-spacing:-1.554166px;}
.wsa5{word-spacing:-1.494390px;}
.ws11d{word-spacing:-1.255288px;}
.ws106{word-spacing:-1.075961px;}
.ws115{word-spacing:-1.016185px;}
.ws151{word-spacing:-0.985953px;}
.ws99{word-spacing:-0.940927px;}
.wsbd{word-spacing:-0.896634px;}
.ws11c{word-spacing:-0.836858px;}
.ws13c{word-spacing:-0.798038px;}
.ws124{word-spacing:-0.777083px;}
.ws9e{word-spacing:-0.657532px;}
.wsb6{word-spacing:-0.597756px;}
.ws14c{word-spacing:-0.537980px;}
.ws59{word-spacing:-0.478205px;}
.ws60{word-spacing:-0.358654px;}
.wsa7{word-spacing:-0.298878px;}
.ws9d{word-spacing:-0.239102px;}
.wsf2{word-spacing:-0.179327px;}
.wsef{word-spacing:-0.119551px;}
.ws3e{word-spacing:-0.059776px;}
.ws3f{word-spacing:-0.041843px;}
.ws18{word-spacing:0.000000px;}
.ws135{word-spacing:0.059776px;}
.ws10a{word-spacing:0.298878px;}
.ws9f{word-spacing:0.788688px;}
.ws67{word-spacing:0.956410px;}
.wsa3{word-spacing:1.016185px;}
.ws131{word-spacing:1.195512px;}
.ws128{word-spacing:1.374839px;}
.ws136{word-spacing:1.972595px;}
.ws152{word-spacing:2.032370px;}
.wsf8{word-spacing:2.321403px;}
.ws110{word-spacing:2.749678px;}
.ws137{word-spacing:3.227882px;}
.ws150{word-spacing:5.917784px;}
.ws14f{word-spacing:7.531726px;}
.ws10c{word-spacing:8.308808px;}
.ws9b{word-spacing:8.607686px;}
.wsa8{word-spacing:8.727238px;}
.ws134{word-spacing:9.324994px;}
.ws11a{word-spacing:13.150632px;}
.ws46{word-spacing:13.210408px;}
.ws138{word-spacing:13.569061px;}
.ws13f{word-spacing:15.003676px;}
.ws118{word-spacing:15.422105px;}
.ws47{word-spacing:16.557841px;}
.ws1{word-spacing:23.312640px;}
.ws0{word-spacing:31.091012px;}
.ws2{word-spacing:48.418425px;}
._f{margin-left:-8.074048px;}
._2d{margin-left:-7.019543px;}
._20{margin-left:-5.858009px;}
._6{margin-left:-4.841824px;}
._28{margin-left:-3.701788px;}
._2{margin-left:-2.685602px;}
._3{margin-left:-1.673717px;}
._4{width:1.613941px;}
._0{width:2.685602px;}
._2c{width:4.363619px;}
._23{width:14.341844px;}
._15{width:15.900310px;}
._1f{width:17.454475px;}
._9{width:18.470660px;}
._24{width:19.666172px;}
._14{width:20.917160px;}
._19{width:22.770204px;}
._5{width:24.255995px;}
._c{width:25.464406px;}
._d{width:26.531767px;}
._13{width:27.612028px;}
._b{width:29.110717px;}
._11{width:30.485556px;}
._1b{width:32.453851px;}
._1c{width:33.470036px;}
._7{width:34.490521px;}
._16{width:35.805584px;}
._12{width:37.479301px;}
._8{width:39.567148px;}
._1a{width:40.766959px;}
._1{width:41.936714px;}
._1d{width:43.576412px;}
._25{width:44.891476px;}
._17{width:45.967436px;}
._1e{width:47.043397px;}
._a{width:48.657338px;}
._27{width:50.027878px;}
._10{width:51.765670px;}
._26{width:53.319835px;}
._2b{width:54.694674px;}
._21{width:55.710859px;}
._22{width:59.596273px;}
._29{width:62.525278px;}
._2a{width:66.590018px;}
._2e{width:79.676575px;}
._18{width:80.697600px;}
._e{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y363{bottom:134.046000px;}
.y1d{bottom:134.047500px;}
.y90{bottom:178.879500px;}
.yce{bottom:179.137500px;}
.y10f{bottom:182.872500px;}
.y20c{bottom:183.138000px;}
.y222{bottom:183.220500px;}
.y23f{bottom:184.450500px;}
.y362{bottom:187.009500px;}
.y255{bottom:187.528500px;}
.y338{bottom:188.725500px;}
.y16e{bottom:188.908500px;}
.y35a{bottom:189.075000px;}
.y47{bottom:190.305000px;}
.y19e{bottom:190.651500px;}
.yb4{bottom:190.966500px;}
.y12d{bottom:192.810000px;}
.y2da{bottom:194.419500px;}
.y26a{bottom:196.666500px;}
.y8f{bottom:196.812000px;}
.ycd{bottom:197.070000px;}
.y146{bottom:197.497500px;}
.y68{bottom:199.717500px;}
.y10e{bottom:200.805000px;}
.y20b{bottom:201.070500px;}
.y221{bottom:201.154500px;}
.y23e{bottom:202.383000px;}
.y1ce{bottom:204.325500px;}
.y361{bottom:204.942000px;}
.y254{bottom:205.461000px;}
.y2a4{bottom:205.467000px;}
.y1f7{bottom:206.265000px;}
.y337{bottom:206.658000px;}
.y16d{bottom:206.841000px;}
.y187{bottom:206.910000px;}
.y359{bottom:207.007500px;}
.y46{bottom:208.237500px;}
.y19d{bottom:208.584000px;}
.y2ba{bottom:208.585500px;}
.y280{bottom:208.854000px;}
.yb3{bottom:208.899000px;}
.y37c{bottom:210.303000px;}
.y12c{bottom:210.744000px;}
.y2f3{bottom:211.087500px;}
.yf4{bottom:211.971000px;}
.y2d9{bottom:212.352000px;}
.y269{bottom:214.599000px;}
.y1b4{bottom:214.744500px;}
.ycc{bottom:215.002500px;}
.y145{bottom:215.430000px;}
.y67{bottom:217.650000px;}
.y10d{bottom:218.739000px;}
.y20a{bottom:219.003000px;}
.y220{bottom:219.087000px;}
.y23d{bottom:220.315500px;}
.y1cd{bottom:222.258000px;}
.y253{bottom:223.393500px;}
.y2a3{bottom:223.399500px;}
.y1f6{bottom:224.197500px;}
.y336{bottom:224.590500px;}
.y16c{bottom:224.773500px;}
.y186{bottom:224.842500px;}
.y358{bottom:224.940000px;}
.y45{bottom:226.171500px;}
.y8e{bottom:226.275000px;}
.y19c{bottom:226.518000px;}
.y27f{bottom:226.786500px;}
.yb2{bottom:226.833000px;}
.y12b{bottom:228.676500px;}
.y2f2{bottom:229.020000px;}
.yf3{bottom:229.903500px;}
.y2d8{bottom:230.284500px;}
.y268{bottom:232.531500px;}
.y1b3{bottom:232.677000px;}
.ycb{bottom:232.935000px;}
.y144{bottom:233.362500px;}
.y66{bottom:235.582500px;}
.y10c{bottom:236.671500px;}
.y209{bottom:236.935500px;}
.y21f{bottom:237.019500px;}
.y23c{bottom:238.249500px;}
.y1c{bottom:240.049500px;}
.y1cc{bottom:240.190500px;}
.y37b{bottom:240.192000px;}
.y2b9{bottom:241.315500px;}
.y252{bottom:241.326000px;}
.y2a2{bottom:241.332000px;}
.y1f5{bottom:242.130000px;}
.y335{bottom:242.524500px;}
.y16b{bottom:242.706000px;}
.y185{bottom:242.775000px;}
.y357{bottom:242.872500px;}
.y44{bottom:244.104000px;}
.y8d{bottom:244.207500px;}
.y19b{bottom:244.450500px;}
.y27e{bottom:244.720500px;}
.yb1{bottom:244.765500px;}
.y12a{bottom:246.609000px;}
.y2f1{bottom:246.952500px;}
.yf2{bottom:247.837500px;}
.y2d7{bottom:248.217000px;}
.y267{bottom:250.465500px;}
.y1b2{bottom:250.609500px;}
.yca{bottom:250.867500px;}
.y143{bottom:251.295000px;}
.y65{bottom:253.516500px;}
.y10b{bottom:254.604000px;}
.y208{bottom:254.869500px;}
.y21e{bottom:254.952000px;}
.y23b{bottom:256.182000px;}
.y1b{bottom:257.983500px;}
.y1cb{bottom:258.124500px;}
.y251{bottom:259.258500px;}
.y2a1{bottom:259.264500px;}
.y1f4{bottom:260.062500px;}
.y334{bottom:260.457000px;}
.y16a{bottom:260.640000px;}
.y356{bottom:260.805000px;}
.y43{bottom:262.036500px;}
.y8c{bottom:262.140000px;}
.y360{bottom:262.183500px;}
.y19a{bottom:262.383000px;}
.y27d{bottom:262.653000px;}
.yb0{bottom:262.698000px;}
.y129{bottom:264.541500px;}
.y2f0{bottom:264.885000px;}
.y2b1{bottom:265.558500px;}
.yf1{bottom:265.770000px;}
.y266{bottom:268.398000px;}
.y1b1{bottom:268.542000px;}
.yc9{bottom:268.801500px;}
.y142{bottom:269.227500px;}
.y64{bottom:271.449000px;}
.y10a{bottom:272.536500px;}
.y207{bottom:272.802000px;}
.y21d{bottom:272.884500px;}
.y2d6{bottom:275.802000px;}
.y1a{bottom:275.916000px;}
.y1ca{bottom:276.057000px;}
.y250{bottom:277.192500px;}
.y2a0{bottom:277.198500px;}
.y1f3{bottom:277.995000px;}
.y333{bottom:278.389500px;}
.y169{bottom:278.572500px;}
.y355{bottom:278.739000px;}
.y42{bottom:279.969000px;}
.y35f{bottom:280.116000px;}
.y199{bottom:280.315500px;}
.y27c{bottom:280.585500px;}
.yaf{bottom:280.630500px;}
.y128{bottom:282.474000px;}
.y2ef{bottom:282.819000px;}
.y2b0{bottom:283.491000px;}
.yf0{bottom:283.702500px;}
.y265{bottom:286.330500px;}
.y1b0{bottom:286.476000px;}
.yc8{bottom:286.734000px;}
.y141{bottom:287.160000px;}
.y37a{bottom:288.012000px;}
.y184{bottom:288.790500px;}
.y109{bottom:290.469000px;}
.y206{bottom:290.734500px;}
.y21c{bottom:290.817000px;}
.y8b{bottom:291.603000px;}
.y19{bottom:293.848500px;}
.y1c9{bottom:293.989500px;}
.y24f{bottom:295.125000px;}
.y29f{bottom:295.131000px;}
.y1f2{bottom:295.927500px;}
.y332{bottom:296.322000px;}
.y168{bottom:296.505000px;}
.y354{bottom:296.671500px;}
.y41{bottom:297.901500px;}
.y35e{bottom:298.048500px;}
.y198{bottom:298.248000px;}
.y27b{bottom:298.518000px;}
.yae{bottom:298.563000px;}
.y127{bottom:300.406500px;}
.y2ee{bottom:300.751500px;}
.y2af{bottom:301.423500px;}
.yef{bottom:301.635000px;}
.y264{bottom:304.263000px;}
.y1af{bottom:304.408500px;}
.yc7{bottom:304.666500px;}
.y140{bottom:305.094000px;}
.y379{bottom:305.944500px;}
.y183{bottom:306.723000px;}
.y108{bottom:308.403000px;}
.y205{bottom:308.667000px;}
.y21b{bottom:308.751000px;}
.y8a{bottom:309.537000px;}
.y18{bottom:311.781000px;}
.y1c8{bottom:311.922000px;}
.y24e{bottom:313.057500px;}
.y29e{bottom:313.063500px;}
.y1f1{bottom:313.861500px;}
.y23a{bottom:314.251500px;}
.y331{bottom:314.254500px;}
.y167{bottom:314.437500px;}
.y353{bottom:314.604000px;}
.y312{bottom:315.243000px;}
.y40{bottom:315.834000px;}
.y35d{bottom:315.981000px;}
.y197{bottom:316.182000px;}
.y27a{bottom:316.450500px;}
.yad{bottom:316.495500px;}
.y2d5{bottom:317.634000px;}
.y2ed{bottom:318.684000px;}
.y2ae{bottom:319.357500px;}
.yee{bottom:319.567500px;}
.y263{bottom:322.195500px;}
.y1ae{bottom:322.341000px;}
.yc6{bottom:322.599000px;}
.y13f{bottom:323.026500px;}
.y378{bottom:323.877000px;}
.y182{bottom:324.655500px;}
.y63{bottom:325.782000px;}
.y107{bottom:326.335500px;}
.y204{bottom:326.599500px;}
.y21a{bottom:326.683500px;}
.y89{bottom:327.469500px;}
.y17{bottom:329.713500px;}
.y1c7{bottom:329.854500px;}
.y24d{bottom:330.990000px;}
.y29d{bottom:330.996000px;}
.y1f0{bottom:331.794000px;}
.y239{bottom:332.184000px;}
.y330{bottom:332.187000px;}
.y166{bottom:332.370000px;}
.y352{bottom:332.536500px;}
.y126{bottom:333.138000px;}
.y311{bottom:333.175500px;}
.y35c{bottom:333.915000px;}
.y196{bottom:334.114500px;}
.y279{bottom:334.383000px;}
.yac{bottom:334.429500px;}
.y2d4{bottom:335.566500px;}
.y2ec{bottom:336.616500px;}
.y2ad{bottom:337.290000px;}
.yed{bottom:337.500000px;}
.y262{bottom:340.129500px;}
.y1ad{bottom:340.273500px;}
.yc5{bottom:340.531500px;}
.y181{bottom:342.588000px;}
.y3f{bottom:343.419000px;}
.y62{bottom:343.714500px;}
.y106{bottom:344.268000px;}
.y203{bottom:344.533500px;}
.y219{bottom:344.616000px;}
.y16{bottom:347.647500px;}
.y1c6{bottom:347.787000px;}
.y24c{bottom:348.922500px;}
.y1ef{bottom:349.726500px;}
.y238{bottom:350.116500px;}
.y32f{bottom:350.121000px;}
.y165{bottom:350.302500px;}
.y351{bottom:350.469000px;}
.y310{bottom:351.108000px;}
.y195{bottom:352.047000px;}
.y278{bottom:352.317000px;}
.yab{bottom:352.362000px;}
.y377{bottom:353.766000px;}
.y2eb{bottom:354.549000px;}
.y2ac{bottom:355.222500px;}
.yec{bottom:355.434000px;}
.y88{bottom:356.932500px;}
.y1ac{bottom:358.206000px;}
.yc4{bottom:358.464000px;}
.y13e{bottom:358.891500px;}
.y180{bottom:360.520500px;}
.y61{bottom:361.648500px;}
.y105{bottom:362.200500px;}
.y202{bottom:362.466000px;}
.y218{bottom:362.548500px;}
.y3e{bottom:364.339500px;}
.y15{bottom:365.580000px;}
.y1c5{bottom:365.721000px;}
.y24b{bottom:366.855000px;}
.y29c{bottom:366.861000px;}
.y1ee{bottom:367.659000px;}
.y32e{bottom:368.053500px;}
.y164{bottom:368.236500px;}
.y350{bottom:368.401500px;}
.y2d3{bottom:368.443500px;}
.y30f{bottom:369.040500px;}
.y35b{bottom:369.780000px;}
.y194{bottom:369.979500px;}
.y277{bottom:370.249500px;}
.yaa{bottom:370.294500px;}
.y376{bottom:371.698500px;}
.y2ea{bottom:372.481500px;}
.yeb{bottom:373.366500px;}
.y87{bottom:374.865000px;}
.y1ab{bottom:376.138500px;}
.y17f{bottom:378.454500px;}
.y60{bottom:379.581000px;}
.y104{bottom:380.133000px;}
.y201{bottom:380.398500px;}
.y217{bottom:380.481000px;}
.y125{bottom:382.557000px;}
.y14{bottom:383.512500px;}
.y1c4{bottom:383.653500px;}
.y24a{bottom:384.789000px;}
.y1ed{bottom:385.591500px;}
.y32d{bottom:385.986000px;}
.y261{bottom:386.143500px;}
.y163{bottom:386.169000px;}
.y34f{bottom:386.335500px;}
.y2d2{bottom:386.376000px;}
.y30e{bottom:386.974500px;}
.y193{bottom:387.912000px;}
.y276{bottom:388.182000px;}
.ya9{bottom:388.227000px;}
.y375{bottom:389.631000px;}
.y2e9{bottom:390.415500px;}
.yea{bottom:391.299000px;}
.y86{bottom:392.797500px;}
.y1aa{bottom:394.072500px;}
.y17e{bottom:396.387000px;}
.y237{bottom:396.961500px;}
.y5f{bottom:397.513500px;}
.y103{bottom:398.065500px;}
.y200{bottom:398.331000px;}
.y216{bottom:398.413500px;}
.y124{bottom:400.489500px;}
.y13{bottom:401.445000px;}
.y1c3{bottom:401.586000px;}
.y249{bottom:402.721500px;}
.y1ec{bottom:403.525500px;}
.y32c{bottom:403.918500px;}
.y260{bottom:404.076000px;}
.y162{bottom:404.101500px;}
.y34e{bottom:404.268000px;}
.y30d{bottom:404.907000px;}
.y192{bottom:405.844500px;}
.y275{bottom:406.114500px;}
.ya8{bottom:406.159500px;}
.y3d{bottom:406.173000px;}
.y2e8{bottom:408.348000px;}
.ye9{bottom:409.231500px;}
.y1a9{bottom:412.005000px;}
.y17d{bottom:414.319500px;}
.y236{bottom:414.894000px;}
.y5e{bottom:415.446000px;}
.y1ff{bottom:416.263500px;}
.y13d{bottom:416.347500px;}
.yc3{bottom:416.535000px;}
.y123{bottom:418.422000px;}
.y2d1{bottom:419.253000px;}
.y12{bottom:419.377500px;}
.y1c2{bottom:419.518500px;}
.y248{bottom:420.654000px;}
.y1eb{bottom:421.458000px;}
.y32b{bottom:421.851000px;}
.y25f{bottom:422.008500px;}
.y161{bottom:422.034000px;}
.y34d{bottom:422.200500px;}
.y85{bottom:422.260500px;}
.y30c{bottom:422.839500px;}
.y191{bottom:423.778500px;}
.y274{bottom:424.047000px;}
.ya7{bottom:424.093500px;}
.y3c{bottom:424.105500px;}
.y2e7{bottom:426.280500px;}
.ye8{bottom:427.164000px;}
.y1a8{bottom:429.937500px;}
.y102{bottom:430.797000px;}
.y17c{bottom:432.252000px;}
.y235{bottom:432.828000px;}
.y5d{bottom:433.378500px;}
.y1fe{bottom:434.196000px;}
.y2ab{bottom:434.197500px;}
.y13c{bottom:434.280000px;}
.yc2{bottom:434.467500px;}
.y122{bottom:436.356000px;}
.y2d0{bottom:437.185500px;}
.y11{bottom:437.310000px;}
.y1c1{bottom:437.451000px;}
.y247{bottom:438.586500px;}
.y1ea{bottom:439.390500px;}
.y32a{bottom:439.783500px;}
.y25e{bottom:439.941000px;}
.y160{bottom:439.966500px;}
.y34c{bottom:440.133000px;}
.y84{bottom:440.193000px;}
.y190{bottom:441.711000px;}
.y273{bottom:441.979500px;}
.ya6{bottom:442.026000px;}
.y3b{bottom:442.038000px;}
.y2e6{bottom:444.213000px;}
.ye7{bottom:445.098000px;}
.y1a7{bottom:447.870000px;}
.y17b{bottom:450.184500px;}
.y234{bottom:450.760500px;}
.y30b{bottom:450.858000px;}
.y5c{bottom:451.311000px;}
.y1fd{bottom:452.130000px;}
.y13b{bottom:452.212500px;}
.yc1{bottom:452.400000px;}
.y121{bottom:454.288500px;}
.y29b{bottom:454.657500px;}
.y2cf{bottom:455.118000px;}
.y10{bottom:455.244000px;}
.y1c0{bottom:455.383500px;}
.y374{bottom:455.385000px;}
.y1e9{bottom:457.323000px;}
.y329{bottom:457.717500px;}
.y15f{bottom:457.899000px;}
.y34b{bottom:458.065500px;}
.y18f{bottom:459.643500px;}
.y272{bottom:459.913500px;}
.ya5{bottom:459.958500px;}
.y3a{bottom:459.970500px;}
.ye6{bottom:463.030500px;}
.y1a6{bottom:465.802500px;}
.y246{bottom:466.170000px;}
.y17a{bottom:468.117000px;}
.y25d{bottom:468.487500px;}
.y233{bottom:468.693000px;}
.y30a{bottom:468.790500px;}
.y83{bottom:469.231500px;}
.y5b{bottom:469.245000px;}
.y1fc{bottom:470.062500px;}
.y13a{bottom:470.145000px;}
.yc0{bottom:470.332500px;}
.y120{bottom:472.221000px;}
.y29a{bottom:472.590000px;}
.y2ce{bottom:473.050500px;}
.yf{bottom:473.176500px;}
.y1bf{bottom:473.317500px;}
.y1e8{bottom:475.255500px;}
.y328{bottom:475.650000px;}
.y15e{bottom:475.833000px;}
.y34a{bottom:475.999500px;}
.y18e{bottom:477.576000px;}
.y271{bottom:477.846000px;}
.ya4{bottom:477.891000px;}
.y39{bottom:477.903000px;}
.y2e5{bottom:480.078000px;}
.ye5{bottom:480.963000px;}
.y1a5{bottom:483.735000px;}
.y373{bottom:485.272500px;}
.y179{bottom:486.051000px;}
.y25c{bottom:486.420000px;}
.y232{bottom:486.625500px;}
.y309{bottom:486.723000px;}
.y82{bottom:487.165500px;}
.y5a{bottom:487.177500px;}
.y1fb{bottom:487.995000px;}
.y139{bottom:488.077500px;}
.ybf{bottom:488.265000px;}
.y11f{bottom:490.153500px;}
.y299{bottom:490.522500px;}
.y2cd{bottom:490.983000px;}
.ye{bottom:491.109000px;}
.y1be{bottom:491.250000px;}
.y1e7{bottom:493.188000px;}
.y327{bottom:493.582500px;}
.y15d{bottom:493.765500px;}
.y349{bottom:493.932000px;}
.y2b8{bottom:495.508500px;}
.y270{bottom:495.778500px;}
.ya3{bottom:495.823500px;}
.y38{bottom:495.837000px;}
.ye4{bottom:498.895500px;}
.y1a4{bottom:501.669000px;}
.y372{bottom:503.205000px;}
.y178{bottom:503.983500px;}
.y25b{bottom:504.352500px;}
.y231{bottom:504.558000px;}
.y308{bottom:504.655500px;}
.y81{bottom:505.098000px;}
.y59{bottom:505.110000px;}
.y1fa{bottom:505.927500px;}
.y138{bottom:506.011500px;}
.y298{bottom:508.455000px;}
.y2cc{bottom:508.917000px;}
.yd{bottom:509.041500px;}
.y1bd{bottom:509.182500px;}
.y18d{bottom:510.307500px;}
.y1e6{bottom:511.122000px;}
.y326{bottom:511.515000px;}
.y15c{bottom:511.698000px;}
.y348{bottom:511.864500px;}
.y2f5{bottom:513.441000px;}
.y2b7{bottom:513.442500px;}
.y26f{bottom:513.711000px;}
.ya2{bottom:513.756000px;}
.y37{bottom:513.769500px;}
.y2e4{bottom:515.944500px;}
.y101{bottom:516.616500px;}
.ye3{bottom:516.828000px;}
.y1a3{bottom:519.601500px;}
.y177{bottom:521.916000px;}
.y230{bottom:522.490500px;}
.y307{bottom:522.589500px;}
.y80{bottom:523.030500px;}
.y58{bottom:523.042500px;}
.y1f9{bottom:523.860000px;}
.y137{bottom:523.944000px;}
.y297{bottom:526.387500px;}
.y2cb{bottom:526.849500px;}
.y1bc{bottom:527.115000px;}
.y325{bottom:529.447500px;}
.y15b{bottom:529.630500px;}
.y347{bottom:529.797000px;}
.ybe{bottom:531.375000px;}
.y26e{bottom:531.643500px;}
.ya1{bottom:531.690000px;}
.y36{bottom:531.702000px;}
.y25a{bottom:533.569500px;}
.y2e3{bottom:533.877000px;}
.y100{bottom:534.549000px;}
.y1a2{bottom:537.534000px;}
.y176{bottom:539.848500px;}
.y22f{bottom:540.424500px;}
.y306{bottom:540.522000px;}
.y7f{bottom:540.963000px;}
.y1f8{bottom:541.792500px;}
.y136{bottom:541.876500px;}
.y1e5{bottom:543.852000px;}
.y296{bottom:544.321500px;}
.y245{bottom:544.404000px;}
.y11e{bottom:544.488000px;}
.y2ca{bottom:544.782000px;}
.y1bb{bottom:545.047500px;}
.y2aa{bottom:545.235000px;}
.y15a{bottom:547.563000px;}
.y346{bottom:547.729500px;}
.ybd{bottom:549.307500px;}
.y26d{bottom:549.576000px;}
.y35{bottom:549.634500px;}
.y371{bottom:551.026500px;}
.y259{bottom:551.502000px;}
.y2e2{bottom:551.809500px;}
.yff{bottom:552.483000px;}
.ye2{bottom:552.694500px;}
.y1a1{bottom:555.466500px;}
.y175{bottom:557.781000px;}
.y22e{bottom:558.357000px;}
.y7e{bottom:558.895500px;}
.y18c{bottom:559.726500px;}
.y135{bottom:559.809000px;}
.y295{bottom:562.254000px;}
.y244{bottom:562.336500px;}
.y11d{bottom:562.420500px;}
.y2c9{bottom:562.714500px;}
.y1ba{bottom:562.981500px;}
.y2a9{bottom:563.167500px;}
.y159{bottom:565.495500px;}
.y345{bottom:565.662000px;}
.yc{bottom:566.281500px;}
.ybc{bottom:567.240000px;}
.y26c{bottom:567.510000px;}
.y34{bottom:567.567000px;}
.y305{bottom:568.540500px;}
.y258{bottom:569.434500px;}
.y2e1{bottom:569.742000px;}
.yfe{bottom:570.415500px;}
.y1a0{bottom:573.399000px;}
.y174{bottom:575.713500px;}
.y22d{bottom:576.289500px;}
.y7d{bottom:576.828000px;}
.y18b{bottom:577.659000px;}
.y215{bottom:577.741500px;}
.y294{bottom:580.186500px;}
.y243{bottom:580.269000px;}
.y11c{bottom:580.353000px;}
.y2c8{bottom:580.647000px;}
.y1b9{bottom:580.914000px;}
.y2a8{bottom:581.100000px;}
.y2bc{bottom:581.182500px;}
.y158{bottom:583.429500px;}
.y344{bottom:583.596000px;}
.yb{bottom:584.214000px;}
.y2b6{bottom:585.172500px;}
.y26b{bottom:585.442500px;}
.y33{bottom:585.499500px;}
.y304{bottom:586.473000px;}
.y324{bottom:587.517000px;}
.y2e0{bottom:587.676000px;}
.ya0{bottom:589.759500px;}
.y19f{bottom:591.333000px;}
.y1e4{bottom:593.271000px;}
.y173{bottom:593.647500px;}
.y22c{bottom:594.222000px;}
.y7c{bottom:594.762000px;}
.y18a{bottom:595.591500px;}
.y214{bottom:595.674000px;}
.y57{bottom:596.376000px;}
.y293{bottom:598.119000px;}
.y242{bottom:598.203000px;}
.y11b{bottom:598.285500px;}
.y2c7{bottom:598.581000px;}
.y257{bottom:598.651500px;}
.y1b8{bottom:598.846500px;}
.y2a7{bottom:599.032500px;}
.y2bb{bottom:599.116500px;}
.ybb{bottom:599.971500px;}
.y157{bottom:601.362000px;}
.y343{bottom:601.528500px;}
.y2b5{bottom:603.105000px;}
.y32{bottom:603.433500px;}
.y323{bottom:605.451000px;}
.y2df{bottom:605.608500px;}
.ye1{bottom:609.265500px;}
.y1e3{bottom:611.203500px;}
.y172{bottom:611.580000px;}
.y22b{bottom:612.154500px;}
.yfd{bottom:613.524000px;}
.y213{bottom:613.608000px;}
.y292{bottom:616.051500px;}
.y241{bottom:616.135500px;}
.y11a{bottom:616.218000px;}
.y2c6{bottom:616.513500px;}
.y256{bottom:616.585500px;}
.y56{bottom:616.737000px;}
.y1b7{bottom:616.779000px;}
.y2a6{bottom:616.965000px;}
.y134{bottom:617.049000px;}
.y156{bottom:619.294500px;}
.y342{bottom:619.461000px;}
.y2b4{bottom:621.039000px;}
.y31{bottom:621.366000px;}
.y322{bottom:623.383500px;}
.y2de{bottom:623.541000px;}
.ye0{bottom:627.198000px;}
.y370{bottom:628.734000px;}
.y1e2{bottom:629.136000px;}
.y171{bottom:629.512500px;}
.y22a{bottom:630.087000px;}
.ya{bottom:630.228000px;}
.yfc{bottom:631.456500px;}
.y212{bottom:631.540500px;}
.y291{bottom:633.985500px;}
.y240{bottom:634.068000px;}
.y119{bottom:634.150500px;}
.y2c5{bottom:634.446000px;}
.y1b6{bottom:634.711500px;}
.y2a5{bottom:634.897500px;}
.y133{bottom:634.981500px;}
.y2f4{bottom:635.836500px;}
.y155{bottom:637.227000px;}
.y341{bottom:637.393500px;}
.y9f{bottom:637.518000px;}
.y55{bottom:638.743500px;}
.y2b3{bottom:638.971500px;}
.y30{bottom:639.298500px;}
.y321{bottom:641.316000px;}
.y2dd{bottom:641.473500px;}
.y303{bottom:643.713000px;}
.ydf{bottom:645.130500px;}
.y36f{bottom:646.666500px;}
.y1e1{bottom:647.070000px;}
.y170{bottom:647.445000px;}
.y9{bottom:648.162000px;}
.yfb{bottom:649.389000px;}
.yba{bottom:649.390500px;}
.y211{bottom:649.473000px;}
.y290{bottom:651.918000px;}
.y118{bottom:652.084500px;}
.y2c4{bottom:652.378500px;}
.y7b{bottom:652.831500px;}
.y132{bottom:652.914000px;}
.y154{bottom:655.159500px;}
.y9e{bottom:655.450500px;}
.y54{bottom:656.676000px;}
.y384{bottom:657.085500px;}
.y2f{bottom:657.231000px;}
.y320{bottom:659.248500px;}
.y2dc{bottom:659.406000px;}
.y302{bottom:661.645500px;}
.y229{bottom:662.818500px;}
.yde{bottom:663.063000px;}
.y1e0{bottom:665.002500px;}
.y8{bottom:666.094500px;}
.yb9{bottom:667.323000px;}
.y210{bottom:667.405500px;}
.y1b5{bottom:667.443000px;}
.y28f{bottom:669.850500px;}
.y117{bottom:670.017000px;}
.y340{bottom:670.125000px;}
.y2c3{bottom:670.311000px;}
.y7a{bottom:670.764000px;}
.y131{bottom:670.846500px;}
.y2b2{bottom:671.703000px;}
.y153{bottom:673.093500px;}
.y9d{bottom:673.383000px;}
.y53{bottom:674.608500px;}
.y383{bottom:675.018000px;}
.y16f{bottom:675.028500px;}
.y2e{bottom:675.163500px;}
.y31f{bottom:677.181000px;}
.y2db{bottom:677.338500px;}
.y301{bottom:679.578000px;}
.ydd{bottom:680.995500px;}
.y1df{bottom:682.935000px;}
.y7{bottom:684.027000px;}
.yb8{bottom:685.255500px;}
.y28e{bottom:687.783000px;}
.y116{bottom:687.949500px;}
.y2c2{bottom:688.243500px;}
.y79{bottom:688.696500px;}
.y130{bottom:688.779000px;}
.y228{bottom:689.718000px;}
.y9c{bottom:691.315500px;}
.y52{bottom:692.541000px;}
.y2d{bottom:693.097500px;}
.y36e{bottom:694.488000px;}
.y31e{bottom:695.115000px;}
.y300{bottom:697.510500px;}
.ydc{bottom:698.929500px;}
.y1de{bottom:700.867500px;}
.y6{bottom:701.959500px;}
.yb7{bottom:703.188000px;}
.y28d{bottom:705.715500px;}
.y152{bottom:705.823500px;}
.y115{bottom:705.882000px;}
.y2c1{bottom:706.177500px;}
.y78{bottom:706.629000px;}
.y12f{bottom:706.713000px;}
.y9b{bottom:709.248000px;}
.y2c{bottom:711.030000px;}
.y36d{bottom:712.420500px;}
.y31d{bottom:713.047500px;}
.y2ff{bottom:715.443000px;}
.ydb{bottom:716.862000px;}
.y1dd{bottom:718.800000px;}
.yb6{bottom:721.120500px;}
.y382{bottom:722.839500px;}
.y28c{bottom:723.648000px;}
.y114{bottom:723.814500px;}
.y77{bottom:724.561500px;}
.y12e{bottom:724.645500px;}
.y9a{bottom:727.182000px;}
.y2b{bottom:728.962500px;}
.y2fe{bottom:733.375500px;}
.y5{bottom:734.691000px;}
.yda{bottom:734.794500px;}
.y1dc{bottom:736.732500px;}
.yb5{bottom:739.053000px;}
.y381{bottom:740.772000px;}
.y28b{bottom:741.582000px;}
.y113{bottom:741.747000px;}
.y36c{bottom:742.308000px;}
.y76{bottom:742.495500px;}
.y20f{bottom:742.578000px;}
.y99{bottom:745.114500px;}
.y2a{bottom:746.895000px;}
.y51{bottom:750.610500px;}
.y2fd{bottom:751.309500px;}
.yd9{bottom:752.727000px;}
.y1db{bottom:754.666500px;}
.y151{bottom:755.242500px;}
.yfa{bottom:756.987000px;}
.y28a{bottom:759.514500px;}
.y112{bottom:759.681000px;}
.y31c{bottom:759.892500px;}
.y36b{bottom:760.242000px;}
.y75{bottom:760.428000px;}
.y20e{bottom:760.510500px;}
.y29{bottom:764.827500px;}
.y50{bottom:768.544500px;}
.y2fc{bottom:769.242000px;}
.yd8{bottom:770.659500px;}
.y1da{bottom:772.599000px;}
.y150{bottom:773.175000px;}
.yf9{bottom:774.919500px;}
.y289{bottom:777.447000px;}
.y111{bottom:777.613500px;}
.y31b{bottom:777.825000px;}
.y74{bottom:778.360500px;}
.y20d{bottom:778.443000px;}
.y28{bottom:782.760000px;}
.y4f{bottom:786.477000px;}
.y2fb{bottom:787.174500px;}
.yd7{bottom:788.592000px;}
.y36a{bottom:790.129500px;}
.y1d9{bottom:790.531500px;}
.y14f{bottom:791.107500px;}
.yf8{bottom:792.852000px;}
.y288{bottom:795.379500px;}
.y110{bottom:795.546000px;}
.y31a{bottom:795.757500px;}
.y73{bottom:796.293000px;}
.y227{bottom:796.375500px;}
.y4{bottom:799.053000px;}
.y27{bottom:800.694000px;}
.y98{bottom:802.353000px;}
.y4e{bottom:804.409500px;}
.y2fa{bottom:805.107000px;}
.yd6{bottom:806.526000px;}
.y369{bottom:808.062000px;}
.y1d8{bottom:808.464000px;}
.y14e{bottom:809.041500px;}
.yf7{bottom:810.784500px;}
.y287{bottom:813.312000px;}
.y33f{bottom:813.478500px;}
.y319{bottom:813.690000px;}
.y72{bottom:814.225500px;}
.y226{bottom:814.309500px;}
.y26{bottom:818.626500px;}
.y97{bottom:820.287000px;}
.y4d{bottom:822.342000px;}
.y2f9{bottom:823.039500px;}
.yd5{bottom:824.458500px;}
.y1d7{bottom:826.396500px;}
.y14d{bottom:826.974000px;}
.yf6{bottom:828.717000px;}
.y286{bottom:831.244500px;}
.y33e{bottom:831.411000px;}
.y318{bottom:831.622500px;}
.y71{bottom:832.158000px;}
.y225{bottom:832.242000px;}
.y25{bottom:836.559000px;}
.y368{bottom:837.949500px;}
.y96{bottom:838.219500px;}
.y4c{bottom:840.274500px;}
.y2f8{bottom:840.972000px;}
.yd4{bottom:842.391000px;}
.y1d6{bottom:844.330500px;}
.y14c{bottom:844.906500px;}
.yf5{bottom:846.649500px;}
.y3{bottom:846.874500px;}
.y285{bottom:849.178500px;}
.y33d{bottom:849.343500px;}
.y317{bottom:849.556500px;}
.y70{bottom:850.092000px;}
.y224{bottom:850.174500px;}
.y380{bottom:854.346000px;}
.y24{bottom:854.491500px;}
.y367{bottom:855.882000px;}
.y95{bottom:856.152000px;}
.y4b{bottom:858.207000px;}
.y2f7{bottom:858.906000px;}
.yd3{bottom:860.323500px;}
.y1d5{bottom:862.263000px;}
.y14b{bottom:862.839000px;}
.y189{bottom:864.583500px;}
.y284{bottom:867.111000px;}
.y33c{bottom:867.277500px;}
.y316{bottom:867.489000px;}
.y6f{bottom:868.024500px;}
.y223{bottom:868.107000px;}
.y37f{bottom:872.278500px;}
.y23{bottom:872.424000px;}
.y94{bottom:874.084500px;}
.y4a{bottom:876.141000px;}
.yd2{bottom:878.256000px;}
.y1d4{bottom:880.195500px;}
.y14a{bottom:880.771500px;}
.y188{bottom:882.516000px;}
.y283{bottom:885.043500px;}
.y33b{bottom:885.210000px;}
.y315{bottom:885.421500px;}
.y366{bottom:885.771000px;}
.y6e{bottom:885.957000px;}
.y2c0{bottom:886.039500px;}
.y2{bottom:890.211000px;}
.y22{bottom:890.356500px;}
.y93{bottom:892.017000px;}
.y2f6{bottom:894.771000px;}
.yd1{bottom:896.188500px;}
.y1d3{bottom:898.128000px;}
.y282{bottom:902.976000px;}
.y33a{bottom:903.142500px;}
.y314{bottom:903.354000px;}
.y365{bottom:903.703500px;}
.y6d{bottom:903.889500px;}
.y2bf{bottom:903.972000px;}
.y21{bottom:908.290500px;}
.yd0{bottom:914.122500px;}
.y1d2{bottom:916.060500px;}
.y37e{bottom:920.100000px;}
.y281{bottom:920.908500px;}
.y339{bottom:921.075000px;}
.y313{bottom:921.286500px;}
.y6c{bottom:921.822000px;}
.y2be{bottom:921.906000px;}
.y1{bottom:923.088000px;}
.y20{bottom:926.223000px;}
.ycf{bottom:932.055000px;}
.y1d1{bottom:933.993000px;}
.y364{bottom:936.435000px;}
.y37d{bottom:938.032500px;}
.y149{bottom:938.841000px;}
.y6b{bottom:939.754500px;}
.y2bd{bottom:939.838500px;}
.y92{bottom:949.987500px;}
.y1d0{bottom:951.927000px;}
.y49{bottom:955.740000px;}
.y148{bottom:956.775000px;}
.y6a{bottom:957.688500px;}
.y1f{bottom:958.954500px;}
.y48{bottom:959.724000px;}
.y91{bottom:967.920000px;}
.y147{bottom:974.707500px;}
.y69{bottom:975.621000px;}
.y1cf{bottom:984.657000px;}
.y1e{bottom:985.852500px;}
.h7{height:27.783619px;}
.ha{height:42.799330px;}
.h4{height:44.831700px;}
.h8{height:49.479619px;}
.h5{height:53.313619px;}
.h2{height:53.798400px;}
.h3{height:64.557900px;}
.h6{height:69.249619px;}
.h1{height:72.511265px;}
.h9{height:85.835700px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:200.652000px;}
.x16{left:208.125000px;}
.x1{left:219.202500px;}
.x6{left:224.038500px;}
.x17{left:231.370500px;}
.x8{left:236.967000px;}
.x13{left:238.012500px;}
.x9{left:246.604500px;}
.x15{left:249.070500px;}
.xa{left:348.868500px;}
.x3{left:353.211000px;}
.xb{left:363.811500px;}
.x2{left:384.303000px;}
.x4{left:385.884000px;}
.xc{left:401.442000px;}
.x11{left:416.925000px;}
.x12{left:437.265000px;}
.xd{left:439.071000px;}
.x14{left:450.964500px;}
.x7{left:454.699500px;}
.xe{left:476.700000px;}
.xf{left:514.330500px;}
.x10{left:551.959500px;}
@media print{
.v5{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.165333pt;}
.v4{vertical-align:19.285333pt;}
.v1{vertical-align:22.693333pt;}
.v3{vertical-align:36.858667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000479pt;}
.ls2{letter-spacing:0.000501pt;}
.ls3{letter-spacing:2.656631pt;}
.ls5{letter-spacing:2.661964pt;}
.ls6{letter-spacing:8.850079pt;}
.ls4{letter-spacing:8.855412pt;}
.lsc{letter-spacing:16.853812pt;}
.lsd{letter-spacing:17.371145pt;}
.lsb{letter-spacing:17.707145pt;}
.ls7{letter-spacing:17.712479pt;}
.ls8{letter-spacing:20.368631pt;}
.lse{letter-spacing:21.424479pt;}
.lsa{letter-spacing:26.565812pt;}
.ls9{letter-spacing:93.459733pt;}
.wsff{word-spacing:-43.038600pt;}
.ws6c{word-spacing:-27.156719pt;}
.ws40{word-spacing:-26.566933pt;}
.ws11b{word-spacing:-17.100670pt;}
.ws107{word-spacing:-14.718081pt;}
.ws10f{word-spacing:-14.664947pt;}
.ws34{word-spacing:-14.633165pt;}
.ws5e{word-spacing:-14.452412pt;}
.wsb5{word-spacing:-14.399278pt;}
.ws8a{word-spacing:-14.346200pt;}
.wsb3{word-spacing:-14.293010pt;}
.wsd6{word-spacing:-14.133609pt;}
.ws123{word-spacing:-14.080475pt;}
.ws5{word-spacing:-14.027341pt;}
.ws64{word-spacing:-13.974207pt;}
.wse8{word-spacing:-13.921073pt;}
.wscc{word-spacing:-13.761671pt;}
.ws105{word-spacing:-13.708538pt;}
.ws147{word-spacing:-13.655404pt;}
.wsd3{word-spacing:-13.602270pt;}
.wsb1{word-spacing:-13.549136pt;}
.wsaf{word-spacing:-13.496002pt;}
.ws25{word-spacing:-13.442868pt;}
.ws108{word-spacing:-13.389734pt;}
.ws19{word-spacing:-13.351530pt;}
.wse1{word-spacing:-13.336601pt;}
.wse3{word-spacing:-13.283467pt;}
.wsd9{word-spacing:-13.177199pt;}
.ws4{word-spacing:-13.017797pt;}
.ws117{word-spacing:-12.964663pt;}
.wsad{word-spacing:-12.911530pt;}
.ws140{word-spacing:-12.863709pt;}
.wse5{word-spacing:-12.858396pt;}
.ws96{word-spacing:-12.805262pt;}
.ws125{word-spacing:-12.698994pt;}
.ws148{word-spacing:-12.675104pt;}
.wsdd{word-spacing:-12.645860pt;}
.wsfa{word-spacing:-12.592726pt;}
.wsae{word-spacing:-12.539593pt;}
.ws13a{word-spacing:-12.486459pt;}
.ws3a{word-spacing:-12.433325pt;}
.ws79{word-spacing:-12.327057pt;}
.wsa2{word-spacing:-12.273923pt;}
.ws8e{word-spacing:-12.220789pt;}
.ws53{word-spacing:-12.167655pt;}
.wsd8{word-spacing:-12.061388pt;}
.ws146{word-spacing:-12.008254pt;}
.wsd2{word-spacing:-11.955200pt;}
.wsf1{word-spacing:-11.955120pt;}
.wseb{word-spacing:-11.901986pt;}
.wse6{word-spacing:-11.848852pt;}
.wsf0{word-spacing:-11.795718pt;}
.ws14{word-spacing:-11.742585pt;}
.ws86{word-spacing:-11.689451pt;}
.ws4f{word-spacing:-11.583183pt;}
.ws90{word-spacing:-11.530049pt;}
.ws102{word-spacing:-11.476915pt;}
.ws13b{word-spacing:-11.423781pt;}
.wscd{word-spacing:-11.370647pt;}
.ws149{word-spacing:-11.342331pt;}
.ws5d{word-spacing:-11.317514pt;}
.ws6e{word-spacing:-11.264380pt;}
.wsb9{word-spacing:-11.216559pt;}
.ws26{word-spacing:-11.211246pt;}
.ws83{word-spacing:-11.158112pt;}
.wse{word-spacing:-11.104978pt;}
.wsc8{word-spacing:-11.051844pt;}
.ws89{word-spacing:-10.998710pt;}
.ws80{word-spacing:-10.945577pt;}
.wsd4{word-spacing:-10.892443pt;}
.ws8b{word-spacing:-10.839309pt;}
.ws93{word-spacing:-10.786175pt;}
.ws43{word-spacing:-10.733041pt;}
.wsea{word-spacing:-10.679907pt;}
.wsbf{word-spacing:-10.626773pt;}
.ws8{word-spacing:-10.573639pt;}
.wsfb{word-spacing:-10.556209pt;}
.ws143{word-spacing:-10.525819pt;}
.ws2f{word-spacing:-10.520506pt;}
.wsf7{word-spacing:-10.491264pt;}
.wsda{word-spacing:-10.467372pt;}
.ws23{word-spacing:-10.414238pt;}
.ws5c{word-spacing:-10.361104pt;}
.ws142{word-spacing:-10.313284pt;}
.ws76{word-spacing:-10.307970pt;}
.wsb{word-spacing:-10.254836pt;}
.ws71{word-spacing:-10.201702pt;}
.wse2{word-spacing:-10.148569pt;}
.ws6{word-spacing:-10.095435pt;}
.wsf3{word-spacing:-10.042301pt;}
.ws141{word-spacing:-9.994480pt;}
.ws17{word-spacing:-9.989167pt;}
.ws16{word-spacing:-9.936033pt;}
.ws13d{word-spacing:-9.888213pt;}
.ws112{word-spacing:-9.882899pt;}
.ws61{word-spacing:-9.829765pt;}
.wscb{word-spacing:-9.776631pt;}
.wsec{word-spacing:-9.724426pt;}
.ws66{word-spacing:-9.723498pt;}
.ws132{word-spacing:-9.670364pt;}
.ws84{word-spacing:-9.617230pt;}
.ws35{word-spacing:-9.564096pt;}
.ws65{word-spacing:-9.541921pt;}
.wsce{word-spacing:-9.510962pt;}
.wsdc{word-spacing:-9.457828pt;}
.ws4b{word-spacing:-9.404694pt;}
.ws15{word-spacing:-9.351561pt;}
.ws24{word-spacing:-9.298427pt;}
.ws10e{word-spacing:-9.250606pt;}
.ws6a{word-spacing:-9.245293pt;}
.ws36{word-spacing:-9.192159pt;}
.ws6b{word-spacing:-9.139025pt;}
.ws13e{word-spacing:-9.091205pt;}
.ws48{word-spacing:-9.085891pt;}
.ws22{word-spacing:-9.032757pt;}
.ws12d{word-spacing:-8.984937pt;}
.wsbe{word-spacing:-8.979623pt;}
.ws72{word-spacing:-8.926490pt;}
.ws126{word-spacing:-8.883344pt;}
.ws7{word-spacing:-8.873356pt;}
.ws3b{word-spacing:-8.858965pt;}
.ws14a{word-spacing:-8.850185pt;}
.ws33{word-spacing:-8.820222pt;}
.wsd0{word-spacing:-8.767088pt;}
.ws12{word-spacing:-8.713954pt;}
.ws50{word-spacing:-8.660820pt;}
.ws11{word-spacing:-8.607686pt;}
.wsc4{word-spacing:-8.554553pt;}
.wsb2{word-spacing:-8.501419pt;}
.ws58{word-spacing:-8.448285pt;}
.ws9{word-spacing:-8.419364pt;}
.ws78{word-spacing:-8.395151pt;}
.ws5a{word-spacing:-8.342017pt;}
.ws88{word-spacing:-8.288883pt;}
.wsb7{word-spacing:-8.235749pt;}
.ws12e{word-spacing:-8.187929pt;}
.wsbc{word-spacing:-8.182615pt;}
.ws127{word-spacing:-8.134795pt;}
.ws7e{word-spacing:-8.129482pt;}
.wsca{word-spacing:-8.076348pt;}
.ws4a{word-spacing:-8.023214pt;}
.wsc5{word-spacing:-7.970080pt;}
.wsf9{word-spacing:-7.916946pt;}
.wsc2{word-spacing:-7.863812pt;}
.ws27{word-spacing:-7.810678pt;}
.wsd5{word-spacing:-7.757545pt;}
.wsa0{word-spacing:-7.704411pt;}
.ws111{word-spacing:-7.691488pt;}
.wsa6{word-spacing:-7.651277pt;}
.wsb8{word-spacing:-7.603456pt;}
.wsc7{word-spacing:-7.598143pt;}
.ws114{word-spacing:-7.554160pt;}
.ws12f{word-spacing:-7.545752pt;}
.ws38{word-spacing:-7.545009pt;}
.ws13{word-spacing:-7.491875pt;}
.wsa{word-spacing:-7.438741pt;}
.ws3c{word-spacing:-7.438055pt;}
.ws3{word-spacing:-7.385607pt;}
.ws5b{word-spacing:-7.332474pt;}
.ws9c{word-spacing:-7.279340pt;}
.ws9a{word-spacing:-7.226206pt;}
.ws74{word-spacing:-7.173072pt;}
.ws10b{word-spacing:-7.119938pt;}
.wsaa{word-spacing:-7.066804pt;}
.ws2d{word-spacing:-7.013670pt;}
.ws29{word-spacing:-7.007745pt;}
.ws4e{word-spacing:-6.965850pt;}
.ws2b{word-spacing:-6.960537pt;}
.wsed{word-spacing:-6.912716pt;}
.ws63{word-spacing:-6.907403pt;}
.ws77{word-spacing:-6.854269pt;}
.wsac{word-spacing:-6.801135pt;}
.ws1f{word-spacing:-6.748001pt;}
.ws153{word-spacing:-6.704598pt;}
.wsee{word-spacing:-6.700181pt;}
.wsbb{word-spacing:-6.694867pt;}
.ws45{word-spacing:-6.641733pt;}
.wsc{word-spacing:-6.588599pt;}
.ws91{word-spacing:-6.535466pt;}
.ws11f{word-spacing:-6.533971pt;}
.ws31{word-spacing:-6.482332pt;}
.wsf{word-spacing:-6.429198pt;}
.ws8c{word-spacing:-6.376064pt;}
.ws28{word-spacing:-6.322930pt;}
.wsf6{word-spacing:-6.269796pt;}
.ws39{word-spacing:-6.216662pt;}
.wsfc{word-spacing:-6.176734pt;}
.wsd7{word-spacing:-6.168842pt;}
.wsc6{word-spacing:-6.163529pt;}
.ws12c{word-spacing:-6.136741pt;}
.ws7d{word-spacing:-6.110395pt;}
.wse0{word-spacing:-6.057261pt;}
.wsa9{word-spacing:-6.004127pt;}
.wsc0{word-spacing:-5.950993pt;}
.wsc1{word-spacing:-5.897859pt;}
.ws113{word-spacing:-5.850039pt;}
.wse9{word-spacing:-5.844725pt;}
.wse4{word-spacing:-5.800664pt;}
.wsc3{word-spacing:-5.791591pt;}
.ws1d{word-spacing:-5.738458pt;}
.ws44{word-spacing:-5.685324pt;}
.ws2a{word-spacing:-5.682737pt;}
.ws52{word-spacing:-5.632190pt;}
.ws82{word-spacing:-5.579056pt;}
.ws32{word-spacing:-5.525922pt;}
.ws94{word-spacing:-5.472788pt;}
.wscf{word-spacing:-5.419654pt;}
.wsde{word-spacing:-5.366521pt;}
.ws14b{word-spacing:-5.366061pt;}
.ws98{word-spacing:-5.313387pt;}
.ws119{word-spacing:-5.294225pt;}
.wsdb{word-spacing:-5.260253pt;}
.wsf5{word-spacing:-5.212432pt;}
.ws103{word-spacing:-5.207119pt;}
.ws6f{word-spacing:-5.153985pt;}
.ws62{word-spacing:-5.100851pt;}
.wsb4{word-spacing:-5.047717pt;}
.wsf4{word-spacing:-5.020513pt;}
.ws1b{word-spacing:-4.994583pt;}
.ws57{word-spacing:-4.941450pt;}
.ws30{word-spacing:-4.888316pt;}
.wsd{word-spacing:-4.835182pt;}
.ws3d{word-spacing:-4.782048pt;}
.ws4c{word-spacing:-4.728914pt;}
.ws37{word-spacing:-4.719603pt;}
.ws49{word-spacing:-4.675780pt;}
.ws4d{word-spacing:-4.622646pt;}
.ws92{word-spacing:-4.569513pt;}
.ws2c{word-spacing:-4.518068pt;}
.ws85{word-spacing:-4.516379pt;}
.ws120{word-spacing:-4.469357pt;}
.ws8f{word-spacing:-4.463245pt;}
.ws14e{word-spacing:-4.416728pt;}
.ws54{word-spacing:-4.410111pt;}
.ws12b{word-spacing:-4.367603pt;}
.ws20{word-spacing:-4.356977pt;}
.wsba{word-spacing:-4.303843pt;}
.ws5f{word-spacing:-4.250709pt;}
.wsa4{word-spacing:-4.197575pt;}
.ws1a{word-spacing:-4.144442pt;}
.ws7f{word-spacing:-4.091308pt;}
.ws95{word-spacing:-4.038174pt;}
.ws1e{word-spacing:-3.985040pt;}
.ws21{word-spacing:-3.931906pt;}
.ws101{word-spacing:-3.878772pt;}
.ws7a{word-spacing:-3.825638pt;}
.ws73{word-spacing:-3.772505pt;}
.wsdf{word-spacing:-3.719371pt;}
.ws12a{word-spacing:-3.666237pt;}
.wsb0{word-spacing:-3.613103pt;}
.ws75{word-spacing:-3.559969pt;}
.ws51{word-spacing:-3.506835pt;}
.wse7{word-spacing:-3.453701pt;}
.ws56{word-spacing:-3.400567pt;}
.ws129{word-spacing:-3.347434pt;}
.ws133{word-spacing:-3.306727pt;}
.ws81{word-spacing:-3.294300pt;}
.wsfd{word-spacing:-3.249716pt;}
.wsab{word-spacing:-3.241166pt;}
.ws109{word-spacing:-3.188032pt;}
.ws7b{word-spacing:-3.134898pt;}
.ws2e{word-spacing:-3.081764pt;}
.wsd1{word-spacing:-3.028630pt;}
.ws6d{word-spacing:-2.975497pt;}
.ws8d{word-spacing:-2.922363pt;}
.wsfe{word-spacing:-2.869229pt;}
.ws70{word-spacing:-2.816095pt;}
.ws144{word-spacing:-2.762961pt;}
.ws122{word-spacing:-2.709827pt;}
.ws139{word-spacing:-2.656693pt;}
.wsa1{word-spacing:-2.550426pt;}
.ws100{word-spacing:-2.497292pt;}
.ws55{word-spacing:-2.391024pt;}
.ws10{word-spacing:-2.337890pt;}
.wsc9{word-spacing:-2.284756pt;}
.ws87{word-spacing:-2.243665pt;}
.ws69{word-spacing:-2.231622pt;}
.ws68{word-spacing:-2.178489pt;}
.ws7c{word-spacing:-2.125355pt;}
.ws41{word-spacing:-2.072221pt;}
.ws121{word-spacing:-2.019087pt;}
.ws42{word-spacing:-1.965953pt;}
.ws14d{word-spacing:-1.912819pt;}
.ws116{word-spacing:-1.859685pt;}
.ws145{word-spacing:-1.806551pt;}
.ws11e{word-spacing:-1.700284pt;}
.ws97{word-spacing:-1.647150pt;}
.ws130{word-spacing:-1.540882pt;}
.ws10d{word-spacing:-1.487748pt;}
.ws1c{word-spacing:-1.434614pt;}
.ws104{word-spacing:-1.381481pt;}
.wsa5{word-spacing:-1.328347pt;}
.ws11d{word-spacing:-1.115811pt;}
.ws106{word-spacing:-0.956410pt;}
.ws115{word-spacing:-0.903276pt;}
.ws151{word-spacing:-0.876402pt;}
.ws99{word-spacing:-0.836379pt;}
.wsbd{word-spacing:-0.797008pt;}
.ws11c{word-spacing:-0.743874pt;}
.ws13c{word-spacing:-0.709367pt;}
.ws124{word-spacing:-0.690740pt;}
.ws9e{word-spacing:-0.584473pt;}
.wsb6{word-spacing:-0.531339pt;}
.ws14c{word-spacing:-0.478205pt;}
.ws59{word-spacing:-0.425071pt;}
.ws60{word-spacing:-0.318803pt;}
.wsa7{word-spacing:-0.265669pt;}
.ws9d{word-spacing:-0.212535pt;}
.wsf2{word-spacing:-0.159402pt;}
.wsef{word-spacing:-0.106268pt;}
.ws3e{word-spacing:-0.053134pt;}
.ws3f{word-spacing:-0.037194pt;}
.ws18{word-spacing:0.000000pt;}
.ws135{word-spacing:0.053134pt;}
.ws10a{word-spacing:0.265669pt;}
.ws9f{word-spacing:0.701056pt;}
.ws67{word-spacing:0.850142pt;}
.wsa3{word-spacing:0.903276pt;}
.ws131{word-spacing:1.062677pt;}
.ws128{word-spacing:1.222079pt;}
.ws136{word-spacing:1.753418pt;}
.ws152{word-spacing:1.806551pt;}
.wsf8{word-spacing:2.063469pt;}
.ws110{word-spacing:2.444158pt;}
.ws137{word-spacing:2.869229pt;}
.ws150{word-spacing:5.260253pt;}
.ws14f{word-spacing:6.694867pt;}
.ws10c{word-spacing:7.385607pt;}
.ws9b{word-spacing:7.651277pt;}
.wsa8{word-spacing:7.757545pt;}
.ws134{word-spacing:8.288883pt;}
.ws11a{word-spacing:11.689451pt;}
.ws46{word-spacing:11.742585pt;}
.ws138{word-spacing:12.061388pt;}
.ws13f{word-spacing:13.336601pt;}
.ws118{word-spacing:13.708538pt;}
.ws47{word-spacing:14.718081pt;}
.ws1{word-spacing:20.722347pt;}
.ws0{word-spacing:27.636455pt;}
.ws2{word-spacing:43.038600pt;}
._f{margin-left:-7.176931pt;}
._2d{margin-left:-6.239594pt;}
._20{margin-left:-5.207119pt;}
._6{margin-left:-4.303843pt;}
._28{margin-left:-3.290478pt;}
._2{margin-left:-2.387202pt;}
._3{margin-left:-1.487748pt;}
._4{width:1.434614pt;}
._0{width:2.387202pt;}
._2c{width:3.878772pt;}
._23{width:12.748306pt;}
._15{width:14.133609pt;}
._1f{width:15.515089pt;}
._9{width:16.418365pt;}
._24{width:17.481042pt;}
._14{width:18.593031pt;}
._19{width:20.240181pt;}
._5{width:21.560884pt;}
._c{width:22.635027pt;}
._d{width:23.583793pt;}
._13{width:24.544025pt;}
._b{width:25.876193pt;}
._11{width:27.098272pt;}
._1b{width:28.847868pt;}
._1c{width:29.751143pt;}
._7{width:30.658241pt;}
._16{width:31.827186pt;}
._12{width:33.314934pt;}
._8{width:35.170798pt;}
._1a{width:36.237297pt;}
._1{width:37.277079pt;}
._1d{width:38.734589pt;}
._25{width:39.903534pt;}
._17{width:40.859943pt;}
._1e{width:41.816353pt;}
._a{width:43.250967pt;}
._27{width:44.469225pt;}
._10{width:46.013929pt;}
._26{width:47.395409pt;}
._2b{width:48.617488pt;}
._21{width:49.520764pt;}
._22{width:52.974465pt;}
._29{width:55.578025pt;}
._2a{width:59.191127pt;}
._2e{width:70.823622pt;}
._18{width:71.731200pt;}
._e{width:86.077200pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y363{bottom:119.152000pt;}
.y1d{bottom:119.153333pt;}
.y90{bottom:159.004000pt;}
.yce{bottom:159.233333pt;}
.y10f{bottom:162.553333pt;}
.y20c{bottom:162.789333pt;}
.y222{bottom:162.862667pt;}
.y23f{bottom:163.956000pt;}
.y362{bottom:166.230667pt;}
.y255{bottom:166.692000pt;}
.y338{bottom:167.756000pt;}
.y16e{bottom:167.918667pt;}
.y35a{bottom:168.066667pt;}
.y47{bottom:169.160000pt;}
.y19e{bottom:169.468000pt;}
.yb4{bottom:169.748000pt;}
.y12d{bottom:171.386667pt;}
.y2da{bottom:172.817333pt;}
.y26a{bottom:174.814667pt;}
.y8f{bottom:174.944000pt;}
.ycd{bottom:175.173333pt;}
.y146{bottom:175.553333pt;}
.y68{bottom:177.526667pt;}
.y10e{bottom:178.493333pt;}
.y20b{bottom:178.729333pt;}
.y221{bottom:178.804000pt;}
.y23e{bottom:179.896000pt;}
.y1ce{bottom:181.622667pt;}
.y361{bottom:182.170667pt;}
.y254{bottom:182.632000pt;}
.y2a4{bottom:182.637333pt;}
.y1f7{bottom:183.346667pt;}
.y337{bottom:183.696000pt;}
.y16d{bottom:183.858667pt;}
.y187{bottom:183.920000pt;}
.y359{bottom:184.006667pt;}
.y46{bottom:185.100000pt;}
.y19d{bottom:185.408000pt;}
.y2ba{bottom:185.409333pt;}
.y280{bottom:185.648000pt;}
.yb3{bottom:185.688000pt;}
.y37c{bottom:186.936000pt;}
.y12c{bottom:187.328000pt;}
.y2f3{bottom:187.633333pt;}
.yf4{bottom:188.418667pt;}
.y2d9{bottom:188.757333pt;}
.y269{bottom:190.754667pt;}
.y1b4{bottom:190.884000pt;}
.ycc{bottom:191.113333pt;}
.y145{bottom:191.493333pt;}
.y67{bottom:193.466667pt;}
.y10d{bottom:194.434667pt;}
.y20a{bottom:194.669333pt;}
.y220{bottom:194.744000pt;}
.y23d{bottom:195.836000pt;}
.y1cd{bottom:197.562667pt;}
.y253{bottom:198.572000pt;}
.y2a3{bottom:198.577333pt;}
.y1f6{bottom:199.286667pt;}
.y336{bottom:199.636000pt;}
.y16c{bottom:199.798667pt;}
.y186{bottom:199.860000pt;}
.y358{bottom:199.946667pt;}
.y45{bottom:201.041333pt;}
.y8e{bottom:201.133333pt;}
.y19c{bottom:201.349333pt;}
.y27f{bottom:201.588000pt;}
.yb2{bottom:201.629333pt;}
.y12b{bottom:203.268000pt;}
.y2f2{bottom:203.573333pt;}
.yf3{bottom:204.358667pt;}
.y2d8{bottom:204.697333pt;}
.y268{bottom:206.694667pt;}
.y1b3{bottom:206.824000pt;}
.ycb{bottom:207.053333pt;}
.y144{bottom:207.433333pt;}
.y66{bottom:209.406667pt;}
.y10c{bottom:210.374667pt;}
.y209{bottom:210.609333pt;}
.y21f{bottom:210.684000pt;}
.y23c{bottom:211.777333pt;}
.y1c{bottom:213.377333pt;}
.y1cc{bottom:213.502667pt;}
.y37b{bottom:213.504000pt;}
.y2b9{bottom:214.502667pt;}
.y252{bottom:214.512000pt;}
.y2a2{bottom:214.517333pt;}
.y1f5{bottom:215.226667pt;}
.y335{bottom:215.577333pt;}
.y16b{bottom:215.738667pt;}
.y185{bottom:215.800000pt;}
.y357{bottom:215.886667pt;}
.y44{bottom:216.981333pt;}
.y8d{bottom:217.073333pt;}
.y19b{bottom:217.289333pt;}
.y27e{bottom:217.529333pt;}
.yb1{bottom:217.569333pt;}
.y12a{bottom:219.208000pt;}
.y2f1{bottom:219.513333pt;}
.yf2{bottom:220.300000pt;}
.y2d7{bottom:220.637333pt;}
.y267{bottom:222.636000pt;}
.y1b2{bottom:222.764000pt;}
.yca{bottom:222.993333pt;}
.y143{bottom:223.373333pt;}
.y65{bottom:225.348000pt;}
.y10b{bottom:226.314667pt;}
.y208{bottom:226.550667pt;}
.y21e{bottom:226.624000pt;}
.y23b{bottom:227.717333pt;}
.y1b{bottom:229.318667pt;}
.y1cb{bottom:229.444000pt;}
.y251{bottom:230.452000pt;}
.y2a1{bottom:230.457333pt;}
.y1f4{bottom:231.166667pt;}
.y334{bottom:231.517333pt;}
.y16a{bottom:231.680000pt;}
.y356{bottom:231.826667pt;}
.y43{bottom:232.921333pt;}
.y8c{bottom:233.013333pt;}
.y360{bottom:233.052000pt;}
.y19a{bottom:233.229333pt;}
.y27d{bottom:233.469333pt;}
.yb0{bottom:233.509333pt;}
.y129{bottom:235.148000pt;}
.y2f0{bottom:235.453333pt;}
.y2b1{bottom:236.052000pt;}
.yf1{bottom:236.240000pt;}
.y266{bottom:238.576000pt;}
.y1b1{bottom:238.704000pt;}
.yc9{bottom:238.934667pt;}
.y142{bottom:239.313333pt;}
.y64{bottom:241.288000pt;}
.y10a{bottom:242.254667pt;}
.y207{bottom:242.490667pt;}
.y21d{bottom:242.564000pt;}
.y2d6{bottom:245.157333pt;}
.y1a{bottom:245.258667pt;}
.y1ca{bottom:245.384000pt;}
.y250{bottom:246.393333pt;}
.y2a0{bottom:246.398667pt;}
.y1f3{bottom:247.106667pt;}
.y333{bottom:247.457333pt;}
.y169{bottom:247.620000pt;}
.y355{bottom:247.768000pt;}
.y42{bottom:248.861333pt;}
.y35f{bottom:248.992000pt;}
.y199{bottom:249.169333pt;}
.y27c{bottom:249.409333pt;}
.yaf{bottom:249.449333pt;}
.y128{bottom:251.088000pt;}
.y2ef{bottom:251.394667pt;}
.y2b0{bottom:251.992000pt;}
.yf0{bottom:252.180000pt;}
.y265{bottom:254.516000pt;}
.y1b0{bottom:254.645333pt;}
.yc8{bottom:254.874667pt;}
.y141{bottom:255.253333pt;}
.y37a{bottom:256.010667pt;}
.y184{bottom:256.702667pt;}
.y109{bottom:258.194667pt;}
.y206{bottom:258.430667pt;}
.y21c{bottom:258.504000pt;}
.y8b{bottom:259.202667pt;}
.y19{bottom:261.198667pt;}
.y1c9{bottom:261.324000pt;}
.y24f{bottom:262.333333pt;}
.y29f{bottom:262.338667pt;}
.y1f2{bottom:263.046667pt;}
.y332{bottom:263.397333pt;}
.y168{bottom:263.560000pt;}
.y354{bottom:263.708000pt;}
.y41{bottom:264.801333pt;}
.y35e{bottom:264.932000pt;}
.y198{bottom:265.109333pt;}
.y27b{bottom:265.349333pt;}
.yae{bottom:265.389333pt;}
.y127{bottom:267.028000pt;}
.y2ee{bottom:267.334667pt;}
.y2af{bottom:267.932000pt;}
.yef{bottom:268.120000pt;}
.y264{bottom:270.456000pt;}
.y1af{bottom:270.585333pt;}
.yc7{bottom:270.814667pt;}
.y140{bottom:271.194667pt;}
.y379{bottom:271.950667pt;}
.y183{bottom:272.642667pt;}
.y108{bottom:274.136000pt;}
.y205{bottom:274.370667pt;}
.y21b{bottom:274.445333pt;}
.y8a{bottom:275.144000pt;}
.y18{bottom:277.138667pt;}
.y1c8{bottom:277.264000pt;}
.y24e{bottom:278.273333pt;}
.y29e{bottom:278.278667pt;}
.y1f1{bottom:278.988000pt;}
.y23a{bottom:279.334667pt;}
.y331{bottom:279.337333pt;}
.y167{bottom:279.500000pt;}
.y353{bottom:279.648000pt;}
.y312{bottom:280.216000pt;}
.y40{bottom:280.741333pt;}
.y35d{bottom:280.872000pt;}
.y197{bottom:281.050667pt;}
.y27a{bottom:281.289333pt;}
.yad{bottom:281.329333pt;}
.y2d5{bottom:282.341333pt;}
.y2ed{bottom:283.274667pt;}
.y2ae{bottom:283.873333pt;}
.yee{bottom:284.060000pt;}
.y263{bottom:286.396000pt;}
.y1ae{bottom:286.525333pt;}
.yc6{bottom:286.754667pt;}
.y13f{bottom:287.134667pt;}
.y378{bottom:287.890667pt;}
.y182{bottom:288.582667pt;}
.y63{bottom:289.584000pt;}
.y107{bottom:290.076000pt;}
.y204{bottom:290.310667pt;}
.y21a{bottom:290.385333pt;}
.y89{bottom:291.084000pt;}
.y17{bottom:293.078667pt;}
.y1c7{bottom:293.204000pt;}
.y24d{bottom:294.213333pt;}
.y29d{bottom:294.218667pt;}
.y1f0{bottom:294.928000pt;}
.y239{bottom:295.274667pt;}
.y330{bottom:295.277333pt;}
.y166{bottom:295.440000pt;}
.y352{bottom:295.588000pt;}
.y126{bottom:296.122667pt;}
.y311{bottom:296.156000pt;}
.y35c{bottom:296.813333pt;}
.y196{bottom:296.990667pt;}
.y279{bottom:297.229333pt;}
.yac{bottom:297.270667pt;}
.y2d4{bottom:298.281333pt;}
.y2ec{bottom:299.214667pt;}
.y2ad{bottom:299.813333pt;}
.yed{bottom:300.000000pt;}
.y262{bottom:302.337333pt;}
.y1ad{bottom:302.465333pt;}
.yc5{bottom:302.694667pt;}
.y181{bottom:304.522667pt;}
.y3f{bottom:305.261333pt;}
.y62{bottom:305.524000pt;}
.y106{bottom:306.016000pt;}
.y203{bottom:306.252000pt;}
.y219{bottom:306.325333pt;}
.y16{bottom:309.020000pt;}
.y1c6{bottom:309.144000pt;}
.y24c{bottom:310.153333pt;}
.y1ef{bottom:310.868000pt;}
.y238{bottom:311.214667pt;}
.y32f{bottom:311.218667pt;}
.y165{bottom:311.380000pt;}
.y351{bottom:311.528000pt;}
.y310{bottom:312.096000pt;}
.y195{bottom:312.930667pt;}
.y278{bottom:313.170667pt;}
.yab{bottom:313.210667pt;}
.y377{bottom:314.458667pt;}
.y2eb{bottom:315.154667pt;}
.y2ac{bottom:315.753333pt;}
.yec{bottom:315.941333pt;}
.y88{bottom:317.273333pt;}
.y1ac{bottom:318.405333pt;}
.yc4{bottom:318.634667pt;}
.y13e{bottom:319.014667pt;}
.y180{bottom:320.462667pt;}
.y61{bottom:321.465333pt;}
.y105{bottom:321.956000pt;}
.y202{bottom:322.192000pt;}
.y218{bottom:322.265333pt;}
.y3e{bottom:323.857333pt;}
.y15{bottom:324.960000pt;}
.y1c5{bottom:325.085333pt;}
.y24b{bottom:326.093333pt;}
.y29c{bottom:326.098667pt;}
.y1ee{bottom:326.808000pt;}
.y32e{bottom:327.158667pt;}
.y164{bottom:327.321333pt;}
.y350{bottom:327.468000pt;}
.y2d3{bottom:327.505333pt;}
.y30f{bottom:328.036000pt;}
.y35b{bottom:328.693333pt;}
.y194{bottom:328.870667pt;}
.y277{bottom:329.110667pt;}
.yaa{bottom:329.150667pt;}
.y376{bottom:330.398667pt;}
.y2ea{bottom:331.094667pt;}
.yeb{bottom:331.881333pt;}
.y87{bottom:333.213333pt;}
.y1ab{bottom:334.345333pt;}
.y17f{bottom:336.404000pt;}
.y60{bottom:337.405333pt;}
.y104{bottom:337.896000pt;}
.y201{bottom:338.132000pt;}
.y217{bottom:338.205333pt;}
.y125{bottom:340.050667pt;}
.y14{bottom:340.900000pt;}
.y1c4{bottom:341.025333pt;}
.y24a{bottom:342.034667pt;}
.y1ed{bottom:342.748000pt;}
.y32d{bottom:343.098667pt;}
.y261{bottom:343.238667pt;}
.y163{bottom:343.261333pt;}
.y34f{bottom:343.409333pt;}
.y2d2{bottom:343.445333pt;}
.y30e{bottom:343.977333pt;}
.y193{bottom:344.810667pt;}
.y276{bottom:345.050667pt;}
.ya9{bottom:345.090667pt;}
.y375{bottom:346.338667pt;}
.y2e9{bottom:347.036000pt;}
.yea{bottom:347.821333pt;}
.y86{bottom:349.153333pt;}
.y1aa{bottom:350.286667pt;}
.y17e{bottom:352.344000pt;}
.y237{bottom:352.854667pt;}
.y5f{bottom:353.345333pt;}
.y103{bottom:353.836000pt;}
.y200{bottom:354.072000pt;}
.y216{bottom:354.145333pt;}
.y124{bottom:355.990667pt;}
.y13{bottom:356.840000pt;}
.y1c3{bottom:356.965333pt;}
.y249{bottom:357.974667pt;}
.y1ec{bottom:358.689333pt;}
.y32c{bottom:359.038667pt;}
.y260{bottom:359.178667pt;}
.y162{bottom:359.201333pt;}
.y34e{bottom:359.349333pt;}
.y30d{bottom:359.917333pt;}
.y192{bottom:360.750667pt;}
.y275{bottom:360.990667pt;}
.ya8{bottom:361.030667pt;}
.y3d{bottom:361.042667pt;}
.y2e8{bottom:362.976000pt;}
.ye9{bottom:363.761333pt;}
.y1a9{bottom:366.226667pt;}
.y17d{bottom:368.284000pt;}
.y236{bottom:368.794667pt;}
.y5e{bottom:369.285333pt;}
.y1ff{bottom:370.012000pt;}
.y13d{bottom:370.086667pt;}
.yc3{bottom:370.253333pt;}
.y123{bottom:371.930667pt;}
.y2d1{bottom:372.669333pt;}
.y12{bottom:372.780000pt;}
.y1c2{bottom:372.905333pt;}
.y248{bottom:373.914667pt;}
.y1eb{bottom:374.629333pt;}
.y32b{bottom:374.978667pt;}
.y25f{bottom:375.118667pt;}
.y161{bottom:375.141333pt;}
.y34d{bottom:375.289333pt;}
.y85{bottom:375.342667pt;}
.y30c{bottom:375.857333pt;}
.y191{bottom:376.692000pt;}
.y274{bottom:376.930667pt;}
.ya7{bottom:376.972000pt;}
.y3c{bottom:376.982667pt;}
.y2e7{bottom:378.916000pt;}
.ye8{bottom:379.701333pt;}
.y1a8{bottom:382.166667pt;}
.y102{bottom:382.930667pt;}
.y17c{bottom:384.224000pt;}
.y235{bottom:384.736000pt;}
.y5d{bottom:385.225333pt;}
.y1fe{bottom:385.952000pt;}
.y2ab{bottom:385.953333pt;}
.y13c{bottom:386.026667pt;}
.yc2{bottom:386.193333pt;}
.y122{bottom:387.872000pt;}
.y2d0{bottom:388.609333pt;}
.y11{bottom:388.720000pt;}
.y1c1{bottom:388.845333pt;}
.y247{bottom:389.854667pt;}
.y1ea{bottom:390.569333pt;}
.y32a{bottom:390.918667pt;}
.y25e{bottom:391.058667pt;}
.y160{bottom:391.081333pt;}
.y34c{bottom:391.229333pt;}
.y84{bottom:391.282667pt;}
.y190{bottom:392.632000pt;}
.y273{bottom:392.870667pt;}
.ya6{bottom:392.912000pt;}
.y3b{bottom:392.922667pt;}
.y2e6{bottom:394.856000pt;}
.ye7{bottom:395.642667pt;}
.y1a7{bottom:398.106667pt;}
.y17b{bottom:400.164000pt;}
.y234{bottom:400.676000pt;}
.y30b{bottom:400.762667pt;}
.y5c{bottom:401.165333pt;}
.y1fd{bottom:401.893333pt;}
.y13b{bottom:401.966667pt;}
.yc1{bottom:402.133333pt;}
.y121{bottom:403.812000pt;}
.y29b{bottom:404.140000pt;}
.y2cf{bottom:404.549333pt;}
.y10{bottom:404.661333pt;}
.y1c0{bottom:404.785333pt;}
.y374{bottom:404.786667pt;}
.y1e9{bottom:406.509333pt;}
.y329{bottom:406.860000pt;}
.y15f{bottom:407.021333pt;}
.y34b{bottom:407.169333pt;}
.y18f{bottom:408.572000pt;}
.y272{bottom:408.812000pt;}
.ya5{bottom:408.852000pt;}
.y3a{bottom:408.862667pt;}
.ye6{bottom:411.582667pt;}
.y1a6{bottom:414.046667pt;}
.y246{bottom:414.373333pt;}
.y17a{bottom:416.104000pt;}
.y25d{bottom:416.433333pt;}
.y233{bottom:416.616000pt;}
.y30a{bottom:416.702667pt;}
.y83{bottom:417.094667pt;}
.y5b{bottom:417.106667pt;}
.y1fc{bottom:417.833333pt;}
.y13a{bottom:417.906667pt;}
.yc0{bottom:418.073333pt;}
.y120{bottom:419.752000pt;}
.y29a{bottom:420.080000pt;}
.y2ce{bottom:420.489333pt;}
.yf{bottom:420.601333pt;}
.y1bf{bottom:420.726667pt;}
.y1e8{bottom:422.449333pt;}
.y328{bottom:422.800000pt;}
.y15e{bottom:422.962667pt;}
.y34a{bottom:423.110667pt;}
.y18e{bottom:424.512000pt;}
.y271{bottom:424.752000pt;}
.ya4{bottom:424.792000pt;}
.y39{bottom:424.802667pt;}
.y2e5{bottom:426.736000pt;}
.ye5{bottom:427.522667pt;}
.y1a5{bottom:429.986667pt;}
.y373{bottom:431.353333pt;}
.y179{bottom:432.045333pt;}
.y25c{bottom:432.373333pt;}
.y232{bottom:432.556000pt;}
.y309{bottom:432.642667pt;}
.y82{bottom:433.036000pt;}
.y5a{bottom:433.046667pt;}
.y1fb{bottom:433.773333pt;}
.y139{bottom:433.846667pt;}
.ybf{bottom:434.013333pt;}
.y11f{bottom:435.692000pt;}
.y299{bottom:436.020000pt;}
.y2cd{bottom:436.429333pt;}
.ye{bottom:436.541333pt;}
.y1be{bottom:436.666667pt;}
.y1e7{bottom:438.389333pt;}
.y327{bottom:438.740000pt;}
.y15d{bottom:438.902667pt;}
.y349{bottom:439.050667pt;}
.y2b8{bottom:440.452000pt;}
.y270{bottom:440.692000pt;}
.ya3{bottom:440.732000pt;}
.y38{bottom:440.744000pt;}
.ye4{bottom:443.462667pt;}
.y1a4{bottom:445.928000pt;}
.y372{bottom:447.293333pt;}
.y178{bottom:447.985333pt;}
.y25b{bottom:448.313333pt;}
.y231{bottom:448.496000pt;}
.y308{bottom:448.582667pt;}
.y81{bottom:448.976000pt;}
.y59{bottom:448.986667pt;}
.y1fa{bottom:449.713333pt;}
.y138{bottom:449.788000pt;}
.y298{bottom:451.960000pt;}
.y2cc{bottom:452.370667pt;}
.yd{bottom:452.481333pt;}
.y1bd{bottom:452.606667pt;}
.y18d{bottom:453.606667pt;}
.y1e6{bottom:454.330667pt;}
.y326{bottom:454.680000pt;}
.y15c{bottom:454.842667pt;}
.y348{bottom:454.990667pt;}
.y2f5{bottom:456.392000pt;}
.y2b7{bottom:456.393333pt;}
.y26f{bottom:456.632000pt;}
.ya2{bottom:456.672000pt;}
.y37{bottom:456.684000pt;}
.y2e4{bottom:458.617333pt;}
.y101{bottom:459.214667pt;}
.ye3{bottom:459.402667pt;}
.y1a3{bottom:461.868000pt;}
.y177{bottom:463.925333pt;}
.y230{bottom:464.436000pt;}
.y307{bottom:464.524000pt;}
.y80{bottom:464.916000pt;}
.y58{bottom:464.926667pt;}
.y1f9{bottom:465.653333pt;}
.y137{bottom:465.728000pt;}
.y297{bottom:467.900000pt;}
.y2cb{bottom:468.310667pt;}
.y1bc{bottom:468.546667pt;}
.y325{bottom:470.620000pt;}
.y15b{bottom:470.782667pt;}
.y347{bottom:470.930667pt;}
.ybe{bottom:472.333333pt;}
.y26e{bottom:472.572000pt;}
.ya1{bottom:472.613333pt;}
.y36{bottom:472.624000pt;}
.y25a{bottom:474.284000pt;}
.y2e3{bottom:474.557333pt;}
.y100{bottom:475.154667pt;}
.y1a2{bottom:477.808000pt;}
.y176{bottom:479.865333pt;}
.y22f{bottom:480.377333pt;}
.y306{bottom:480.464000pt;}
.y7f{bottom:480.856000pt;}
.y1f8{bottom:481.593333pt;}
.y136{bottom:481.668000pt;}
.y1e5{bottom:483.424000pt;}
.y296{bottom:483.841333pt;}
.y245{bottom:483.914667pt;}
.y11e{bottom:483.989333pt;}
.y2ca{bottom:484.250667pt;}
.y1bb{bottom:484.486667pt;}
.y2aa{bottom:484.653333pt;}
.y15a{bottom:486.722667pt;}
.y346{bottom:486.870667pt;}
.ybd{bottom:488.273333pt;}
.y26d{bottom:488.512000pt;}
.y35{bottom:488.564000pt;}
.y371{bottom:489.801333pt;}
.y259{bottom:490.224000pt;}
.y2e2{bottom:490.497333pt;}
.yff{bottom:491.096000pt;}
.ye2{bottom:491.284000pt;}
.y1a1{bottom:493.748000pt;}
.y175{bottom:495.805333pt;}
.y22e{bottom:496.317333pt;}
.y7e{bottom:496.796000pt;}
.y18c{bottom:497.534667pt;}
.y135{bottom:497.608000pt;}
.y295{bottom:499.781333pt;}
.y244{bottom:499.854667pt;}
.y11d{bottom:499.929333pt;}
.y2c9{bottom:500.190667pt;}
.y1ba{bottom:500.428000pt;}
.y2a9{bottom:500.593333pt;}
.y159{bottom:502.662667pt;}
.y345{bottom:502.810667pt;}
.yc{bottom:503.361333pt;}
.ybc{bottom:504.213333pt;}
.y26c{bottom:504.453333pt;}
.y34{bottom:504.504000pt;}
.y305{bottom:505.369333pt;}
.y258{bottom:506.164000pt;}
.y2e1{bottom:506.437333pt;}
.yfe{bottom:507.036000pt;}
.y1a0{bottom:509.688000pt;}
.y174{bottom:511.745333pt;}
.y22d{bottom:512.257333pt;}
.y7d{bottom:512.736000pt;}
.y18b{bottom:513.474667pt;}
.y215{bottom:513.548000pt;}
.y294{bottom:515.721333pt;}
.y243{bottom:515.794667pt;}
.y11c{bottom:515.869333pt;}
.y2c8{bottom:516.130667pt;}
.y1b9{bottom:516.368000pt;}
.y2a8{bottom:516.533333pt;}
.y2bc{bottom:516.606667pt;}
.y158{bottom:518.604000pt;}
.y344{bottom:518.752000pt;}
.yb{bottom:519.301333pt;}
.y2b6{bottom:520.153333pt;}
.y26b{bottom:520.393333pt;}
.y33{bottom:520.444000pt;}
.y304{bottom:521.309333pt;}
.y324{bottom:522.237333pt;}
.y2e0{bottom:522.378667pt;}
.ya0{bottom:524.230667pt;}
.y19f{bottom:525.629333pt;}
.y1e4{bottom:527.352000pt;}
.y173{bottom:527.686667pt;}
.y22c{bottom:528.197333pt;}
.y7c{bottom:528.677333pt;}
.y18a{bottom:529.414667pt;}
.y214{bottom:529.488000pt;}
.y57{bottom:530.112000pt;}
.y293{bottom:531.661333pt;}
.y242{bottom:531.736000pt;}
.y11b{bottom:531.809333pt;}
.y2c7{bottom:532.072000pt;}
.y257{bottom:532.134667pt;}
.y1b8{bottom:532.308000pt;}
.y2a7{bottom:532.473333pt;}
.y2bb{bottom:532.548000pt;}
.ybb{bottom:533.308000pt;}
.y157{bottom:534.544000pt;}
.y343{bottom:534.692000pt;}
.y2b5{bottom:536.093333pt;}
.y32{bottom:536.385333pt;}
.y323{bottom:538.178667pt;}
.y2df{bottom:538.318667pt;}
.ye1{bottom:541.569333pt;}
.y1e3{bottom:543.292000pt;}
.y172{bottom:543.626667pt;}
.y22b{bottom:544.137333pt;}
.yfd{bottom:545.354667pt;}
.y213{bottom:545.429333pt;}
.y292{bottom:547.601333pt;}
.y241{bottom:547.676000pt;}
.y11a{bottom:547.749333pt;}
.y2c6{bottom:548.012000pt;}
.y256{bottom:548.076000pt;}
.y56{bottom:548.210667pt;}
.y1b7{bottom:548.248000pt;}
.y2a6{bottom:548.413333pt;}
.y134{bottom:548.488000pt;}
.y156{bottom:550.484000pt;}
.y342{bottom:550.632000pt;}
.y2b4{bottom:552.034667pt;}
.y31{bottom:552.325333pt;}
.y322{bottom:554.118667pt;}
.y2de{bottom:554.258667pt;}
.ye0{bottom:557.509333pt;}
.y370{bottom:558.874667pt;}
.y1e2{bottom:559.232000pt;}
.y171{bottom:559.566667pt;}
.y22a{bottom:560.077333pt;}
.ya{bottom:560.202667pt;}
.yfc{bottom:561.294667pt;}
.y212{bottom:561.369333pt;}
.y291{bottom:563.542667pt;}
.y240{bottom:563.616000pt;}
.y119{bottom:563.689333pt;}
.y2c5{bottom:563.952000pt;}
.y1b6{bottom:564.188000pt;}
.y2a5{bottom:564.353333pt;}
.y133{bottom:564.428000pt;}
.y2f4{bottom:565.188000pt;}
.y155{bottom:566.424000pt;}
.y341{bottom:566.572000pt;}
.y9f{bottom:566.682667pt;}
.y55{bottom:567.772000pt;}
.y2b3{bottom:567.974667pt;}
.y30{bottom:568.265333pt;}
.y321{bottom:570.058667pt;}
.y2dd{bottom:570.198667pt;}
.y303{bottom:572.189333pt;}
.ydf{bottom:573.449333pt;}
.y36f{bottom:574.814667pt;}
.y1e1{bottom:575.173333pt;}
.y170{bottom:575.506667pt;}
.y9{bottom:576.144000pt;}
.yfb{bottom:577.234667pt;}
.yba{bottom:577.236000pt;}
.y211{bottom:577.309333pt;}
.y290{bottom:579.482667pt;}
.y118{bottom:579.630667pt;}
.y2c4{bottom:579.892000pt;}
.y7b{bottom:580.294667pt;}
.y132{bottom:580.368000pt;}
.y154{bottom:582.364000pt;}
.y9e{bottom:582.622667pt;}
.y54{bottom:583.712000pt;}
.y384{bottom:584.076000pt;}
.y2f{bottom:584.205333pt;}
.y320{bottom:585.998667pt;}
.y2dc{bottom:586.138667pt;}
.y302{bottom:588.129333pt;}
.y229{bottom:589.172000pt;}
.yde{bottom:589.389333pt;}
.y1e0{bottom:591.113333pt;}
.y8{bottom:592.084000pt;}
.yb9{bottom:593.176000pt;}
.y210{bottom:593.249333pt;}
.y1b5{bottom:593.282667pt;}
.y28f{bottom:595.422667pt;}
.y117{bottom:595.570667pt;}
.y340{bottom:595.666667pt;}
.y2c3{bottom:595.832000pt;}
.y7a{bottom:596.234667pt;}
.y131{bottom:596.308000pt;}
.y2b2{bottom:597.069333pt;}
.y153{bottom:598.305333pt;}
.y9d{bottom:598.562667pt;}
.y53{bottom:599.652000pt;}
.y383{bottom:600.016000pt;}
.y16f{bottom:600.025333pt;}
.y2e{bottom:600.145333pt;}
.y31f{bottom:601.938667pt;}
.y2db{bottom:602.078667pt;}
.y301{bottom:604.069333pt;}
.ydd{bottom:605.329333pt;}
.y1df{bottom:607.053333pt;}
.y7{bottom:608.024000pt;}
.yb8{bottom:609.116000pt;}
.y28e{bottom:611.362667pt;}
.y116{bottom:611.510667pt;}
.y2c2{bottom:611.772000pt;}
.y79{bottom:612.174667pt;}
.y130{bottom:612.248000pt;}
.y228{bottom:613.082667pt;}
.y9c{bottom:614.502667pt;}
.y52{bottom:615.592000pt;}
.y2d{bottom:616.086667pt;}
.y36e{bottom:617.322667pt;}
.y31e{bottom:617.880000pt;}
.y300{bottom:620.009333pt;}
.ydc{bottom:621.270667pt;}
.y1de{bottom:622.993333pt;}
.y6{bottom:623.964000pt;}
.yb7{bottom:625.056000pt;}
.y28d{bottom:627.302667pt;}
.y152{bottom:627.398667pt;}
.y115{bottom:627.450667pt;}
.y2c1{bottom:627.713333pt;}
.y78{bottom:628.114667pt;}
.y12f{bottom:628.189333pt;}
.y9b{bottom:630.442667pt;}
.y2c{bottom:632.026667pt;}
.y36d{bottom:633.262667pt;}
.y31d{bottom:633.820000pt;}
.y2ff{bottom:635.949333pt;}
.ydb{bottom:637.210667pt;}
.y1dd{bottom:638.933333pt;}
.yb6{bottom:640.996000pt;}
.y382{bottom:642.524000pt;}
.y28c{bottom:643.242667pt;}
.y114{bottom:643.390667pt;}
.y77{bottom:644.054667pt;}
.y12e{bottom:644.129333pt;}
.y9a{bottom:646.384000pt;}
.y2b{bottom:647.966667pt;}
.y2fe{bottom:651.889333pt;}
.y5{bottom:653.058667pt;}
.yda{bottom:653.150667pt;}
.y1dc{bottom:654.873333pt;}
.yb5{bottom:656.936000pt;}
.y381{bottom:658.464000pt;}
.y28b{bottom:659.184000pt;}
.y113{bottom:659.330667pt;}
.y36c{bottom:659.829333pt;}
.y76{bottom:659.996000pt;}
.y20f{bottom:660.069333pt;}
.y99{bottom:662.324000pt;}
.y2a{bottom:663.906667pt;}
.y51{bottom:667.209333pt;}
.y2fd{bottom:667.830667pt;}
.yd9{bottom:669.090667pt;}
.y1db{bottom:670.814667pt;}
.y151{bottom:671.326667pt;}
.yfa{bottom:672.877333pt;}
.y28a{bottom:675.124000pt;}
.y112{bottom:675.272000pt;}
.y31c{bottom:675.460000pt;}
.y36b{bottom:675.770667pt;}
.y75{bottom:675.936000pt;}
.y20e{bottom:676.009333pt;}
.y29{bottom:679.846667pt;}
.y50{bottom:683.150667pt;}
.y2fc{bottom:683.770667pt;}
.yd8{bottom:685.030667pt;}
.y1da{bottom:686.754667pt;}
.y150{bottom:687.266667pt;}
.yf9{bottom:688.817333pt;}
.y289{bottom:691.064000pt;}
.y111{bottom:691.212000pt;}
.y31b{bottom:691.400000pt;}
.y74{bottom:691.876000pt;}
.y20d{bottom:691.949333pt;}
.y28{bottom:695.786667pt;}
.y4f{bottom:699.090667pt;}
.y2fb{bottom:699.710667pt;}
.yd7{bottom:700.970667pt;}
.y36a{bottom:702.337333pt;}
.y1d9{bottom:702.694667pt;}
.y14f{bottom:703.206667pt;}
.yf8{bottom:704.757333pt;}
.y288{bottom:707.004000pt;}
.y110{bottom:707.152000pt;}
.y31a{bottom:707.340000pt;}
.y73{bottom:707.816000pt;}
.y227{bottom:707.889333pt;}
.y4{bottom:710.269333pt;}
.y27{bottom:711.728000pt;}
.y98{bottom:713.202667pt;}
.y4e{bottom:715.030667pt;}
.y2fa{bottom:715.650667pt;}
.yd6{bottom:716.912000pt;}
.y369{bottom:718.277333pt;}
.y1d8{bottom:718.634667pt;}
.y14e{bottom:719.148000pt;}
.yf7{bottom:720.697333pt;}
.y287{bottom:722.944000pt;}
.y33f{bottom:723.092000pt;}
.y319{bottom:723.280000pt;}
.y72{bottom:723.756000pt;}
.y226{bottom:723.830667pt;}
.y26{bottom:727.668000pt;}
.y97{bottom:729.144000pt;}
.y4d{bottom:730.970667pt;}
.y2f9{bottom:731.590667pt;}
.yd5{bottom:732.852000pt;}
.y1d7{bottom:734.574667pt;}
.y14d{bottom:735.088000pt;}
.yf6{bottom:736.637333pt;}
.y286{bottom:738.884000pt;}
.y33e{bottom:739.032000pt;}
.y318{bottom:739.220000pt;}
.y71{bottom:739.696000pt;}
.y225{bottom:739.770667pt;}
.y25{bottom:743.608000pt;}
.y368{bottom:744.844000pt;}
.y96{bottom:745.084000pt;}
.y4c{bottom:746.910667pt;}
.y2f8{bottom:747.530667pt;}
.yd4{bottom:748.792000pt;}
.y1d6{bottom:750.516000pt;}
.y14c{bottom:751.028000pt;}
.yf5{bottom:752.577333pt;}
.y3{bottom:752.777333pt;}
.y285{bottom:754.825333pt;}
.y33d{bottom:754.972000pt;}
.y317{bottom:755.161333pt;}
.y70{bottom:755.637333pt;}
.y224{bottom:755.710667pt;}
.y380{bottom:759.418667pt;}
.y24{bottom:759.548000pt;}
.y367{bottom:760.784000pt;}
.y95{bottom:761.024000pt;}
.y4b{bottom:762.850667pt;}
.y2f7{bottom:763.472000pt;}
.yd3{bottom:764.732000pt;}
.y1d5{bottom:766.456000pt;}
.y14b{bottom:766.968000pt;}
.y189{bottom:768.518667pt;}
.y284{bottom:770.765333pt;}
.y33c{bottom:770.913333pt;}
.y316{bottom:771.101333pt;}
.y6f{bottom:771.577333pt;}
.y223{bottom:771.650667pt;}
.y37f{bottom:775.358667pt;}
.y23{bottom:775.488000pt;}
.y94{bottom:776.964000pt;}
.y4a{bottom:778.792000pt;}
.yd2{bottom:780.672000pt;}
.y1d4{bottom:782.396000pt;}
.y14a{bottom:782.908000pt;}
.y188{bottom:784.458667pt;}
.y283{bottom:786.705333pt;}
.y33b{bottom:786.853333pt;}
.y315{bottom:787.041333pt;}
.y366{bottom:787.352000pt;}
.y6e{bottom:787.517333pt;}
.y2c0{bottom:787.590667pt;}
.y2{bottom:791.298667pt;}
.y22{bottom:791.428000pt;}
.y93{bottom:792.904000pt;}
.y2f6{bottom:795.352000pt;}
.yd1{bottom:796.612000pt;}
.y1d3{bottom:798.336000pt;}
.y282{bottom:802.645333pt;}
.y33a{bottom:802.793333pt;}
.y314{bottom:802.981333pt;}
.y365{bottom:803.292000pt;}
.y6d{bottom:803.457333pt;}
.y2bf{bottom:803.530667pt;}
.y21{bottom:807.369333pt;}
.yd0{bottom:812.553333pt;}
.y1d2{bottom:814.276000pt;}
.y37e{bottom:817.866667pt;}
.y281{bottom:818.585333pt;}
.y339{bottom:818.733333pt;}
.y313{bottom:818.921333pt;}
.y6c{bottom:819.397333pt;}
.y2be{bottom:819.472000pt;}
.y1{bottom:820.522667pt;}
.y20{bottom:823.309333pt;}
.ycf{bottom:828.493333pt;}
.y1d1{bottom:830.216000pt;}
.y364{bottom:832.386667pt;}
.y37d{bottom:833.806667pt;}
.y149{bottom:834.525333pt;}
.y6b{bottom:835.337333pt;}
.y2bd{bottom:835.412000pt;}
.y92{bottom:844.433333pt;}
.y1d0{bottom:846.157333pt;}
.y49{bottom:849.546667pt;}
.y148{bottom:850.466667pt;}
.y6a{bottom:851.278667pt;}
.y1f{bottom:852.404000pt;}
.y48{bottom:853.088000pt;}
.y91{bottom:860.373333pt;}
.y147{bottom:866.406667pt;}
.y69{bottom:867.218667pt;}
.y1cf{bottom:875.250667pt;}
.y1e{bottom:876.313333pt;}
.h7{height:24.696550pt;}
.ha{height:38.043849pt;}
.h4{height:39.850400pt;}
.h8{height:43.981884pt;}
.h5{height:47.389884pt;}
.h2{height:47.820800pt;}
.h3{height:57.384800pt;}
.h6{height:61.555217pt;}
.h1{height:64.454458pt;}
.h9{height:76.298400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:178.357333pt;}
.x16{left:185.000000pt;}
.x1{left:194.846667pt;}
.x6{left:199.145333pt;}
.x17{left:205.662667pt;}
.x8{left:210.637333pt;}
.x13{left:211.566667pt;}
.x9{left:219.204000pt;}
.x15{left:221.396000pt;}
.xa{left:310.105333pt;}
.x3{left:313.965333pt;}
.xb{left:323.388000pt;}
.x2{left:341.602667pt;}
.x4{left:343.008000pt;}
.xc{left:356.837333pt;}
.x11{left:370.600000pt;}
.x12{left:388.680000pt;}
.xd{left:390.285333pt;}
.x14{left:400.857333pt;}
.x7{left:404.177333pt;}
.xe{left:423.733333pt;}
.xf{left:457.182667pt;}
.x10{left:490.630667pt;}
}




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