
    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_6bf737fda5bb243895a626de.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0199ab842d8994746bcfb10f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.947000;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_ca80399a9e9e0e6eec91e424.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.947000;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_74ba6db4437cf56fa979b47e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948000;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_a990c39c75e1493c7c41c449.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.947000;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_907425a9287703b6a5b6ebe1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_bfa6379c4d7b9cf71f5c8567.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026000;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_132ab13311c10a0b243bdf69.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024000;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_ce4fc8242cb38960b556ec06.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.022000;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_82973d8d3b16aba1af7ea3df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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_ae04c55a473ea57158840e35.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cb75c25b5b79c18da53484bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692000;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_f15551b3f7ee33706f14aefa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.514000;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_c11b6da6c1f588f26db1d841.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692000;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_33ff04145f0f6172e62a356e.woff2')format("woff");}.fff{font-family:fff;line-height:1.017000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:137.695800px;}
.ls1a{letter-spacing:-2.152255px;}
.ls54{letter-spacing:-1.585305px;}
.ls78{letter-spacing:-1.484726px;}
.ls79{letter-spacing:-1.465569px;}
.ls7b{letter-spacing:-1.446411px;}
.ls81{letter-spacing:-1.424858px;}
.ls2e{letter-spacing:-1.345833px;}
.ls18{letter-spacing:-1.293149px;}
.ls45{letter-spacing:-1.245254px;}
.ls73{letter-spacing:-1.178202px;}
.ls4a{letter-spacing:-1.159044px;}
.ls2f{letter-spacing:-1.139887px;}
.ls22{letter-spacing:-1.125518px;}
.ls53{letter-spacing:-1.106361px;}
.ls23{letter-spacing:-1.091992px;}
.ls12{letter-spacing:-1.072835px;}
.ls7c{letter-spacing:-1.059664px;}
.lsd{letter-spacing:-1.039308px;}
.ls3f{letter-spacing:-1.024940px;}
.ls3e{letter-spacing:-1.005782px;}
.ls84{letter-spacing:-1.001592px;}
.ls20{letter-spacing:-0.975848px;}
.ls2d{letter-spacing:-0.972256px;}
.ls35{letter-spacing:-0.938730px;}
.ls3d{letter-spacing:-0.919572px;}
.ls56{letter-spacing:-0.905204px;}
.ls55{letter-spacing:-0.886046px;}
.ls6e{letter-spacing:-0.852520px;}
.ls32{letter-spacing:-0.838152px;}
.ls4b{letter-spacing:-0.818994px;}
.ls27{letter-spacing:-0.799836px;}
.ls7a{letter-spacing:-0.790258px;}
.ls30{letter-spacing:-0.785468px;}
.ls66{letter-spacing:-0.766310px;}
.ls74{letter-spacing:-0.751942px;}
.ls7e{letter-spacing:-0.732784px;}
.ls75{letter-spacing:-0.718416px;}
.ls17{letter-spacing:-0.699258px;}
.ls2c{letter-spacing:-0.665732px;}
.ls28{letter-spacing:-0.664535px;}
.ls25{letter-spacing:-0.646574px;}
.lsf{letter-spacing:-0.632206px;}
.ls80{letter-spacing:-0.624423px;}
.ls21{letter-spacing:-0.613048px;}
.ls82{letter-spacing:-0.611851px;}
.ls6f{letter-spacing:-0.607660px;}
.ls48{letter-spacing:-0.598680px;}
.ls8f{letter-spacing:-0.579522px;}
.ls19{letter-spacing:-0.565154px;}
.ls1c{letter-spacing:-0.545996px;}
.ls49{letter-spacing:-0.531628px;}
.ls6d{letter-spacing:-0.526838px;}
.lse{letter-spacing:-0.512470px;}
.ls41{letter-spacing:-0.498102px;}
.ls33{letter-spacing:-0.478944px;}
.ls7f{letter-spacing:-0.466970px;}
.ls1e{letter-spacing:-0.464576px;}
.ls13{letter-spacing:-0.459786px;}
.ls26{letter-spacing:-0.445418px;}
.ls7d{letter-spacing:-0.437036px;}
.ls65{letter-spacing:-0.426260px;}
.ls34{letter-spacing:-0.411892px;}
.ls59{letter-spacing:-0.406504px;}
.ls31{letter-spacing:-0.392734px;}
.ls1f{letter-spacing:-0.378366px;}
.ls4e{letter-spacing:-0.359208px;}
.ls43{letter-spacing:-0.344840px;}
.ls6c{letter-spacing:-0.338254px;}
.ls14{letter-spacing:-0.325682px;}
.ls42{letter-spacing:-0.311314px;}
.ls67{letter-spacing:-0.306524px;}
.ls77{letter-spacing:-0.292156px;}
.ls16{letter-spacing:-0.281380px;}
.ls29{letter-spacing:-0.272998px;}
.ls4d{letter-spacing:-0.258630px;}
.ls6b{letter-spacing:-0.239472px;}
.ls10{letter-spacing:-0.225104px;}
.ls6a{letter-spacing:-0.209538px;}
.ls24{letter-spacing:-0.205946px;}
.ls83{letter-spacing:-0.201156px;}
.ls4c{letter-spacing:-0.191578px;}
.ls44{letter-spacing:-0.182597px;}
.ls50{letter-spacing:-0.172420px;}
.ls46{letter-spacing:-0.167630px;}
.ls63{letter-spacing:-0.153262px;}
.ls64{letter-spacing:-0.140690px;}
.ls3c{letter-spacing:-0.138894px;}
.ls69{letter-spacing:-0.119736px;}
.ls1d{letter-spacing:-0.105368px;}
.ls2a{letter-spacing:-0.086210px;}
.ls4f{letter-spacing:-0.071842px;}
.ls1b{letter-spacing:-0.056875px;}
.ls15{letter-spacing:-0.052684px;}
.ls2b{letter-spacing:-0.038316px;}
.ls40{letter-spacing:-0.019158px;}
.ls11{letter-spacing:-0.004789px;}
.ls58{letter-spacing:-0.003600px;}
.ls1{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.002993px;}
.ls52{letter-spacing:0.003600px;}
.ls0{letter-spacing:0.004191px;}
.ls5d{letter-spacing:0.033526px;}
.ls8c{letter-spacing:0.047894px;}
.ls4{letter-spacing:0.067052px;}
.ls70{letter-spacing:0.081420px;}
.ls60{letter-spacing:0.100578px;}
.ls39{letter-spacing:0.114947px;}
.lsa{letter-spacing:0.134104px;}
.ls37{letter-spacing:0.148473px;}
.ls7{letter-spacing:0.167630px;}
.ls76{letter-spacing:0.170624px;}
.lsb{letter-spacing:0.186788px;}
.ls8d{letter-spacing:0.201156px;}
.ls5f{letter-spacing:0.220314px;}
.ls68{letter-spacing:0.227498px;}
.ls8e{letter-spacing:0.234683px;}
.ls5c{letter-spacing:0.253840px;}
.ls5b{letter-spacing:0.301735px;}
.ls8{letter-spacing:0.320892px;}
.ls3b{letter-spacing:0.335261px;}
.ls6{letter-spacing:0.387945px;}
.ls5a{letter-spacing:0.407102px;}
.ls72{letter-spacing:0.454997px;}
.ls9{letter-spacing:0.474155px;}
.ls8a{letter-spacing:0.541207px;}
.ls51{letter-spacing:0.627417px;}
.ls62{letter-spacing:0.675311px;}
.lsc{letter-spacing:0.694469px;}
.ls3{letter-spacing:0.761521px;}
.ls5{letter-spacing:0.866889px;}
.ls87{letter-spacing:0.967467px;}
.ls86{letter-spacing:1.000993px;}
.ls8b{letter-spacing:1.087203px;}
.ls36{letter-spacing:1.206939px;}
.ls88{letter-spacing:1.221307px;}
.ls3a{letter-spacing:1.254833px;}
.ls38{letter-spacing:1.393727px;}
.ls5e{letter-spacing:1.714620px;}
.ls61{letter-spacing:1.853513px;}
.ls71{letter-spacing:2.480930px;}
.ls89{letter-spacing:3.060452px;}
.ls85{letter-spacing:6.244232px;}
.ls57{letter-spacing:8.029496px;}
.ls2{letter-spacing:12.960315px;}
.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;}
}
.wse7{word-spacing:-24.167514px;}
.ws49{word-spacing:-23.947200px;}
.wsdb{word-spacing:-23.722096px;}
.ws48{word-spacing:-23.568834px;}
.ws11e{word-spacing:-23.487414px;}
.ws6a{word-spacing:-23.468256px;}
.ws78{word-spacing:-23.247942px;}
.ws8d{word-spacing:-23.008470px;}
.ws20{word-spacing:-22.907892px;}
.ws2c{word-spacing:-22.874365px;}
.ws50{word-spacing:-22.855208px;}
.ws4b{word-spacing:-22.821682px;}
.ws60{word-spacing:-22.807313px;}
.ws99{word-spacing:-22.788156px;}
.ws108{word-spacing:-22.768998px;}
.ws90{word-spacing:-22.701946px;}
.ws3c{word-spacing:-22.654051px;}
.ws5f{word-spacing:-22.601367px;}
.ws10e{word-spacing:-22.500789px;}
.ws10b{word-spacing:-22.481631px;}
.ws106{word-spacing:-22.462474px;}
.wsb6{word-spacing:-22.361895px;}
.ws14a{word-spacing:-15.862625px;}
.ws53{word-spacing:-15.632732px;}
.ws43{word-spacing:-15.627943px;}
.ws58{word-spacing:-15.623153px;}
.ws92{word-spacing:-15.565680px;}
.ws21{word-spacing:-15.560891px;}
.ws95{word-spacing:-15.556101px;}
.ws3d{word-spacing:-15.512996px;}
.ws3a{word-spacing:-15.508207px;}
.ws8a{word-spacing:-15.503417px;}
.ws27{word-spacing:-15.469891px;}
.ws3b{word-spacing:-15.460312px;}
.ws32{word-spacing:-15.445944px;}
.ws5e{word-spacing:-15.441155px;}
.ws5b{word-spacing:-15.436365px;}
.ws115{word-spacing:-15.426786px;}
.ws101{word-spacing:-15.412418px;}
.ws14b{word-spacing:-15.383681px;}
.ws10f{word-spacing:-15.374102px;}
.ws2e{word-spacing:-15.307050px;}
.ws25{word-spacing:-15.268735px;}
.ws14f{word-spacing:-15.249577px;}
.wsf8{word-spacing:-15.187314px;}
.wsb9{word-spacing:-15.163367px;}
.ws6c{word-spacing:-15.148999px;}
.wsd1{word-spacing:-15.129841px;}
.ws56{word-spacing:-15.086736px;}
.wsec{word-spacing:-15.081947px;}
.wsea{word-spacing:-15.062789px;}
.wsa8{word-spacing:-15.053210px;}
.wsa6{word-spacing:-15.029263px;}
.wsb3{word-spacing:-15.014894px;}
.ws103{word-spacing:-14.933474px;}
.wsd8{word-spacing:-14.928684px;}
.ws40{word-spacing:-14.910125px;}
.ws114{word-spacing:-14.880790px;}
.wsb4{word-spacing:-14.861632px;}
.ws107{word-spacing:-14.847264px;}
.wsd7{word-spacing:-14.842475px;}
.ws102{word-spacing:-14.813738px;}
.ws124{word-spacing:-14.770633px;}
.ws68{word-spacing:-14.722739px;}
.wse2{word-spacing:-14.708370px;}
.ws51{word-spacing:-14.689212px;}
.ws8c{word-spacing:-14.685620px;}
.ws2f{word-spacing:-14.660476px;}
.ws14e{word-spacing:-14.655686px;}
.wsa7{word-spacing:-14.636529px;}
.ws37{word-spacing:-14.626950px;}
.ws6f{word-spacing:-14.612581px;}
.ws3f{word-spacing:-14.555108px;}
.ws113{word-spacing:-14.529964px;}
.wsaf{word-spacing:-14.521582px;}
.wsaa{word-spacing:-14.516793px;}
.wse4{word-spacing:-14.502424px;}
.ws118{word-spacing:-14.492845px;}
.ws10c{word-spacing:-14.473688px;}
.ws88{word-spacing:-14.430583px;}
.ws36{word-spacing:-14.425793px;}
.ws52{word-spacing:-14.382688px;}
.ws55{word-spacing:-14.363531px;}
.ws121{word-spacing:-14.339583px;}
.ws67{word-spacing:-14.296478px;}
.wsf6{word-spacing:-14.272531px;}
.wsf9{word-spacing:-14.253373px;}
.wsdf{word-spacing:-14.248584px;}
.wsf4{word-spacing:-14.200690px;}
.ws4e{word-spacing:-14.152795px;}
.wsd0{word-spacing:-14.143216px;}
.wsa3{word-spacing:-14.061796px;}
.ws10d{word-spacing:-14.028270px;}
.ws4a{word-spacing:-13.991152px;}
.ws80{word-spacing:-13.980375px;}
.ws54{word-spacing:-13.975586px;}
.ws69{word-spacing:-13.966007px;}
.ws119{word-spacing:-13.932481px;}
.ws33{word-spacing:-13.913323px;}
.ws9b{word-spacing:-13.889376px;}
.ws84{word-spacing:-13.855850px;}
.wsa2{word-spacing:-13.822324px;}
.ws8e{word-spacing:-13.812745px;}
.wsf7{word-spacing:-13.793587px;}
.ws97{word-spacing:-13.788798px;}
.ws70{word-spacing:-13.784008px;}
.ws89{word-spacing:-13.736114px;}
.ws96{word-spacing:-13.669062px;}
.wsac{word-spacing:-13.635536px;}
.ws120{word-spacing:-13.625957px;}
.wsce{word-spacing:-13.597220px;}
.wse8{word-spacing:-13.582852px;}
.wsef{word-spacing:-13.568484px;}
.wse5{word-spacing:-13.554115px;}
.ws86{word-spacing:-13.482274px;}
.ws112{word-spacing:-13.453537px;}
.ws105{word-spacing:-13.434379px;}
.ws82{word-spacing:-13.420011px;}
.ws34{word-spacing:-13.405643px;}
.ws81{word-spacing:-13.400853px;}
.ws4d{word-spacing:-13.372116px;}
.ws4c{word-spacing:-13.367327px;}
.wsee{word-spacing:-13.348169px;}
.ws7f{word-spacing:-13.194907px;}
.ws109{word-spacing:-13.161381px;}
.wsf0{word-spacing:-13.156592px;}
.ws11b{word-spacing:-13.132644px;}
.ws8f{word-spacing:-13.099118px;}
.wsd6{word-spacing:-13.089540px;}
.wsab{word-spacing:-13.056013px;}
.ws66{word-spacing:-13.036856px;}
.ws9e{word-spacing:-13.022487px;}
.wsd4{word-spacing:-13.008119px;}
.ws122{word-spacing:-12.993751px;}
.wsad{word-spacing:-12.893172px;}
.ws87{word-spacing:-12.869225px;}
.ws75{word-spacing:-12.845278px;}
.ws42{word-spacing:-12.840489px;}
.ws26{word-spacing:-12.835699px;}
.ws2b{word-spacing:-12.830910px;}
.ws3e{word-spacing:-12.814745px;}
.wsf5{word-spacing:-12.792594px;}
.wse9{word-spacing:-12.783015px;}
.ws6d{word-spacing:-12.763858px;}
.ws83{word-spacing:-12.754279px;}
.ws11f{word-spacing:-12.739910px;}
.ws7b{word-spacing:-12.701595px;}
.ws85{word-spacing:-12.682437px;}
.ws77{word-spacing:-12.653700px;}
.ws24{word-spacing:-12.629753px;}
.ws6b{word-spacing:-12.596227px;}
.ws93{word-spacing:-12.581859px;}
.ws111{word-spacing:-12.567491px;}
.ws125{word-spacing:-12.562701px;}
.wsb2{word-spacing:-12.553122px;}
.ws9c{word-spacing:-12.548333px;}
.ws65{word-spacing:-12.543543px;}
.ws8b{word-spacing:-12.466912px;}
.ws154{word-spacing:-12.419018px;}
.ws74{word-spacing:-12.375913px;}
.ws38{word-spacing:-12.366334px;}
.ws7a{word-spacing:-12.361545px;}
.wsdc{word-spacing:-12.342387px;}
.wse1{word-spacing:-12.308861px;}
.ws6e{word-spacing:-12.275335px;}
.ws126{word-spacing:-12.246598px;}
.ws14c{word-spacing:-12.237019px;}
.ws39{word-spacing:-12.232230px;}
.ws7c{word-spacing:-12.208283px;}
.wsa5{word-spacing:-12.189125px;}
.wsd5{word-spacing:-12.169967px;}
.ws11d{word-spacing:-12.160388px;}
.wsdd{word-spacing:-12.122073px;}
.ws123{word-spacing:-12.117283px;}
.wsed{word-spacing:-12.069389px;}
.ws9d{word-spacing:-11.983179px;}
.ws14d{word-spacing:-11.949653px;}
.ws45{word-spacing:-11.930495px;}
.ws57{word-spacing:-11.916127px;}
.ws2d{word-spacing:-11.873022px;}
.wsb5{word-spacing:-11.868232px;}
.ws59{word-spacing:-11.863443px;}
.ws31{word-spacing:-11.853864px;}
.wseb{word-spacing:-11.829917px;}
.wsb8{word-spacing:-11.815548px;}
.ws11c{word-spacing:-11.805970px;}
.ws155{word-spacing:-11.786812px;}
.wsa0{word-spacing:-11.695812px;}
.wsb7{word-spacing:-11.671865px;}
.ws2a{word-spacing:-11.609603px;}
.ws5a{word-spacing:-11.542550px;}
.wsf3{word-spacing:-11.532972px;}
.wsd2{word-spacing:-11.528182px;}
.ws23{word-spacing:-11.509024px;}
.wsa9{word-spacing:-11.456340px;}
.ws41{word-spacing:-11.446762px;}
.wsfe{word-spacing:-11.432393px;}
.ws10a{word-spacing:-11.374920px;}
.ws61{word-spacing:-11.341394px;}
.ws127{word-spacing:-11.336604px;}
.ws62{word-spacing:-11.307868px;}
.wse3{word-spacing:-11.303078px;}
.ws4f{word-spacing:-11.293500px;}
.wsae{word-spacing:-11.173764px;}
.ws11a{word-spacing:-11.159395px;}
.ws117{word-spacing:-11.125869px;}
.ws151{word-spacing:-11.039659px;}
.ws7e{word-spacing:-10.967818px;}
.wsff{word-spacing:-10.939081px;}
.wse6{word-spacing:-10.895976px;}
.ws64{word-spacing:-10.809766px;}
.ws110{word-spacing:-10.766661px;}
.wsa1{word-spacing:-10.747503px;}
.ws9a{word-spacing:-10.709188px;}
.wsfc{word-spacing:-10.675662px;}
.wsf1{word-spacing:-10.656504px;}
.wsd9{word-spacing:-10.622978px;}
.ws100{word-spacing:-10.579873px;}
.ws91{word-spacing:-10.555926px;}
.wsfd{word-spacing:-10.546347px;}
.wsa4{word-spacing:-10.536768px;}
.ws104{word-spacing:-10.527189px;}
.wsd3{word-spacing:-10.522400px;}
.wscf{word-spacing:-10.503242px;}
.wse0{word-spacing:-10.488874px;}
.ws150{word-spacing:-10.445769px;}
.ws94{word-spacing:-10.282928px;}
.ws5c{word-spacing:-10.263770px;}
.ws79{word-spacing:-10.239823px;}
.ws7d{word-spacing:-10.235033px;}
.ws5d{word-spacing:-10.230244px;}
.wsde{word-spacing:-10.215876px;}
.ws153{word-spacing:-10.206297px;}
.ws152{word-spacing:-10.201507px;}
.ws28{word-spacing:-10.196718px;}
.ws116{word-spacing:-10.191928px;}
.ws30{word-spacing:-10.187139px;}
.ws35{word-spacing:-10.182349px;}
.ws9f{word-spacing:-10.163192px;}
.ws63{word-spacing:-10.148823px;}
.ws22{word-spacing:-10.120087px;}
.ws98{word-spacing:-10.115297px;}
.wsf2{word-spacing:-10.110508px;}
.ws1f{word-spacing:-10.081771px;}
.ws29{word-spacing:-10.072192px;}
.ws44{word-spacing:-10.067403px;}
.ws76{word-spacing:-10.062613px;}
.wsda{word-spacing:-9.674669px;}
.wsc1{word-spacing:-9.056232px;}
.wsc3{word-spacing:-8.071404px;}
.wsc5{word-spacing:-7.779600px;}
.wsc6{word-spacing:-7.776000px;}
.ws145{word-spacing:-6.286140px;}
.wsc8{word-spacing:-1.533818px;}
.ws46{word-spacing:-0.065854px;}
.ws1a{word-spacing:-0.053881px;}
.wse{word-spacing:-0.050888px;}
.ws11{word-spacing:-0.046098px;}
.ws14{word-spacing:-0.044901px;}
.ws16{word-spacing:-0.041908px;}
.wsbf{word-spacing:-0.012572px;}
.wsc0{word-spacing:-0.008382px;}
.wsc9{word-spacing:-0.004191px;}
.ws1e{word-spacing:0.000000px;}
.ws140{word-spacing:0.159249px;}
.ws147{word-spacing:0.364596px;}
.ws148{word-spacing:0.565753px;}
.ws13e{word-spacing:0.569943px;}
.ws134{word-spacing:0.582516px;}
.ws144{word-spacing:0.959684px;}
.ws136{word-spacing:1.382951px;}
.wsc2{word-spacing:2.539601px;}
.wsbe{word-spacing:2.543791px;}
.wsca{word-spacing:2.547982px;}
.ws137{word-spacing:7.229061px;}
.ws143{word-spacing:7.233252px;}
.ws142{word-spacing:7.237443px;}
.ws15{word-spacing:7.346402px;}
.ws146{word-spacing:7.426027px;}
.ws133{word-spacing:7.459553px;}
.ws13f{word-spacing:7.467934px;}
.ws156{word-spacing:7.606229px;}
.ws131{word-spacing:7.610420px;}
.ws12b{word-spacing:7.648137px;}
.ws128{word-spacing:7.656519px;}
.ws12c{word-spacing:7.673282px;}
.ws17{word-spacing:7.752906px;}
.ws18{word-spacing:7.773860px;}
.ws139{word-spacing:7.794814px;}
.ws129{word-spacing:7.803195px;}
.ws12d{word-spacing:7.815767px;}
.ws12a{word-spacing:7.824149px;}
.ws13a{word-spacing:7.828340px;}
.ws12e{word-spacing:7.845103px;}
.ws71{word-spacing:7.928918px;}
.ws72{word-spacing:7.937299px;}
.ws130{word-spacing:7.945681px;}
.ws12f{word-spacing:7.958253px;}
.ws13b{word-spacing:7.962444px;}
.ws13d{word-spacing:7.966635px;}
.ws19{word-spacing:7.970826px;}
.ws141{word-spacing:7.975016px;}
.wsf{word-spacing:7.979207px;}
.ws132{word-spacing:7.983398px;}
.ws10{word-spacing:7.987589px;}
.ws149{word-spacing:8.036680px;}
.wsba{word-spacing:8.203413px;}
.ws13{word-spacing:8.374037px;}
.ws12{word-spacing:8.441388px;}
.ws2{word-spacing:8.562621px;}
.ws138{word-spacing:8.800596px;}
.wsbb{word-spacing:8.997562px;}
.wsbd{word-spacing:9.001752px;}
.wsc7{word-spacing:9.010134px;}
.wsa{word-spacing:9.098739px;}
.ws9{word-spacing:9.105923px;}
.ws7{word-spacing:9.149626px;}
.ws6{word-spacing:9.155314px;}
.ws13c{word-spacing:9.202909px;}
.wsd{word-spacing:9.404065px;}
.wsc{word-spacing:9.411250px;}
.ws1b{word-spacing:9.472315px;}
.ws4{word-spacing:9.714481px;}
.ws47{word-spacing:9.860260px;}
.ws135{word-spacing:11.260572px;}
.wsbc{word-spacing:11.553925px;}
.ws3{word-spacing:17.760374px;}
.ws0{word-spacing:19.720409px;}
.ws1{word-spacing:20.560951px;}
.wsb{word-spacing:21.570587px;}
.ws8{word-spacing:21.574535px;}
.ws5{word-spacing:21.575164px;}
.wsb0{word-spacing:30.064512px;}
.ws1d{word-spacing:35.856143px;}
.wsfb{word-spacing:94.881000px;}
.wscc{word-spacing:109.596756px;}
.wscd{word-spacing:110.937799px;}
.wsfa{word-spacing:204.247200px;}
.wsc4{word-spacing:224.508000px;}
.wscb{word-spacing:338.990576px;}
.ws73{word-spacing:927.532529px;}
.wsb1{word-spacing:927.549292px;}
.ws1c{word-spacing:2177.816440px;}
._4a{margin-left:-390.683400px;}
._2e{margin-left:-271.884000px;}
._48{margin-left:-251.622600px;}
._2c{margin-left:-9.433401px;}
._2b{margin-left:-8.029496px;}
._3{margin-left:-6.972188px;}
._2{margin-left:-5.377314px;}
._4{margin-left:-4.045580px;}
._1{margin-left:-2.683269px;}
._0{margin-left:-1.616427px;}
._5{width:1.166818px;}
._b{width:2.382737px;}
._4c{width:4.136280px;}
._4b{width:5.318074px;}
._9{width:6.633374px;}
._a{width:8.060628px;}
._12{width:10.030883px;}
._8{width:11.831414px;}
._4d{width:17.806539px;}
._7{width:20.732491px;}
._6{width:22.056402px;}
._d{width:30.557816px;}
._e{width:35.025166px;}
._f{width:36.098000px;}
._4e{width:70.564017px;}
._11{width:76.598711px;}
._10{width:78.558781px;}
._3a{width:80.655367px;}
._35{width:83.907397px;}
._37{width:86.811593px;}
._3c{width:88.677080px;}
._36{width:96.458723px;}
._3b{width:101.491826px;}
._39{width:118.715849px;}
._16{width:160.003217px;}
._30{width:163.598889px;}
._1c{width:171.212602px;}
._1f{width:183.056588px;}
._14{width:194.493172px;}
._26{width:217.546542px;}
._18{width:229.159138px;}
._31{width:238.219561px;}
._40{width:303.793572px;}
._24{width:315.937182px;}
._2f{width:323.215349px;}
._33{width:324.674940px;}
._32{width:333.618022px;}
._38{width:339.045056px;}
._3e{width:341.458934px;}
._27{width:347.306203px;}
._46{width:358.745819px;}
._3f{width:361.423715px;}
._45{width:367.563178px;}
._43{width:369.361014px;}
._42{width:382.269737px;}
._3d{width:386.273715px;}
._34{width:388.555294px;}
._41{width:390.662647px;}
._44{width:404.908223px;}
._1e{width:440.356679px;}
._25{width:445.035962px;}
._23{width:455.171300px;}
._21{width:466.673730px;}
._22{width:486.933070px;}
._1b{width:521.333528px;}
._49{width:556.406400px;}
._1a{width:562.559241px;}
._1d{width:604.240540px;}
._20{width:614.201976px;}
._47{width:675.680400px;}
._2d{width:736.459200px;}
._13{width:741.213734px;}
._29{width:745.063831px;}
._28{width:800.959005px;}
._19{width:850.963153px;}
._15{width:857.081663px;}
._2a{width:868.172204px;}
._17{width:879.875207px;}
._c{width:1353.769332px;}
.fc5{color:transparent;}
.fc3{color:rgb(51,74,151);}
.fc2{color:rgb(0,146,191);}
.fc1{color:rgb(26,23,28);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:26.940600px;}
.fs9{font-size:29.934000px;}
.fse{font-size:35.100000px;}
.fsc{font-size:36.000000px;}
.fsd{font-size:39.000000px;}
.fs4{font-size:41.907600px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:44.901000px;}
.fs8{font-size:47.894400px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:50.887800px;}
.fs5{font-size:53.881200px;}
.fsa{font-size:65.854200px;}
.fs1{font-size:107.761800px;}
.fs7{font-size:254.421000px;}
.y0{bottom:0.000000px;}
.y40{bottom:2.604000px;}
.y3f{bottom:3.000000px;}
.y1{bottom:37.500000px;}
.ybd{bottom:65.789626px;}
.y19b{bottom:65.794236px;}
.y215{bottom:65.794500px;}
.y3e{bottom:65.794950px;}
.y3b6{bottom:65.795467px;}
.y2e4{bottom:65.798390px;}
.y213{bottom:100.967549px;}
.y2d5{bottom:100.969344px;}
.y2e2{bottom:100.971439px;}
.y125{bottom:101.289750px;}
.y26e{bottom:101.290350px;}
.ybb{bottom:101.337900px;}
.y11c{bottom:101.339700px;}
.y24b{bottom:101.340750px;}
.y85{bottom:101.340900px;}
.yec{bottom:101.341350px;}
.y29{bottom:101.341500px;}
.y3b{bottom:101.341947px;}
.y32c{bottom:104.340278px;}
.y372{bottom:104.348659px;}
.y2c8{bottom:105.457648px;}
.y1f8{bottom:108.076650px;}
.y212{bottom:114.437699px;}
.y2d4{bottom:114.439494px;}
.y2e1{bottom:114.441589px;}
.y28{bottom:114.811650px;}
.y3a{bottom:114.812097px;}
.y32b{bottom:117.810428px;}
.y371{bottom:117.818809px;}
.y124{bottom:118.501800px;}
.y26b{bottom:118.502250px;}
.y26d{bottom:118.502400px;}
.yba{bottom:118.549950px;}
.y11b{bottom:118.551750px;}
.y24a{bottom:118.552800px;}
.y84{bottom:118.552950px;}
.yeb{bottom:118.553400px;}
.y2c7{bottom:118.927798px;}
.y26c{bottom:123.366600px;}
.y1f7{bottom:126.036900px;}
.y211{bottom:127.907850px;}
.y2d3{bottom:127.909644px;}
.y2e0{bottom:127.911740px;}
.y39{bottom:128.282247px;}
.y32a{bottom:131.280578px;}
.y370{bottom:131.288960px;}
.y2c6{bottom:132.397948px;}
.y430{bottom:133.146000px;}
.yea{bottom:134.642850px;}
.y123{bottom:135.713850px;}
.y26a{bottom:135.714300px;}
.yb9{bottom:135.762000px;}
.y11a{bottom:135.763800px;}
.y249{bottom:135.764850px;}
.y83{bottom:135.765000px;}
.y210{bottom:141.378000px;}
.y2d2{bottom:141.379795px;}
.y2df{bottom:141.381890px;}
.y38{bottom:141.752398px;}
.y1f5{bottom:142.126350px;}
.y3b4{bottom:144.746243px;}
.y329{bottom:144.750729px;}
.y20f{bottom:145.493850px;}
.y2c5{bottom:145.868099px;}
.y1f6{bottom:146.242200px;}
.y42f{bottom:146.616150px;}
.y36f{bottom:149.249509px;}
.y431{bottom:151.106550px;}
.y122{bottom:152.925900px;}
.y267{bottom:152.926200px;}
.y269{bottom:152.926350px;}
.yb8{bottom:152.974050px;}
.y119{bottom:152.975850px;}
.y248{bottom:152.976900px;}
.y82{bottom:152.977050px;}
.y1f4{bottom:153.351300px;}
.y2d1{bottom:154.849945px;}
.y2de{bottom:154.852040px;}
.y37{bottom:155.222548px;}
.y268{bottom:157.790550px;}
.y3b3{bottom:158.216393px;}
.y328{bottom:158.220879px;}
.y20e{bottom:158.590050px;}
.y2c4{bottom:159.338249px;}
.y36e{bottom:162.719660px;}
.y42e{bottom:164.576700px;}
.y2d0{bottom:168.320095px;}
.y2dd{bottom:168.322191px;}
.y36{bottom:168.692698px;}
.y121{bottom:170.137950px;}
.y264{bottom:170.138100px;}
.y266{bottom:170.138250px;}
.yb7{bottom:170.186100px;}
.y118{bottom:170.187900px;}
.ye8{bottom:170.188950px;}
.y81{bottom:170.189100px;}
.y1f3{bottom:171.311850px;}
.y3b2{bottom:171.686543px;}
.y327{bottom:171.691029px;}
.y20d{bottom:172.060200px;}
.y2c3{bottom:172.808399px;}
.y265{bottom:175.002450px;}
.ye9{bottom:175.053600px;}
.y20c{bottom:176.176050px;}
.y36d{bottom:176.189810px;}
.y2cf{bottom:181.790246px;}
.y2dc{bottom:181.792341px;}
.y35{bottom:182.162849px;}
.y3b1{bottom:185.156694px;}
.y326{bottom:185.161180px;}
.y2c2{bottom:186.278550px;}
.y261{bottom:187.349100px;}
.y120{bottom:187.350000px;}
.y263{bottom:187.350150px;}
.yb6{bottom:187.398150px;}
.y117{bottom:187.399950px;}
.ye7{bottom:187.401000px;}
.y80{bottom:187.401150px;}
.y1f2{bottom:189.272100px;}
.y20b{bottom:189.273146px;}
.y36c{bottom:189.659960px;}
.y262{bottom:192.214500px;}
.y2ce{bottom:195.260396px;}
.y2db{bottom:195.262491px;}
.y34{bottom:195.632999px;}
.y325{bottom:198.631330px;}
.y2c1{bottom:199.748700px;}
.y20a{bottom:202.743297px;}
.y3b0{bottom:203.117243px;}
.y36b{bottom:203.130111px;}
.y260{bottom:204.561150px;}
.y11f{bottom:204.562050px;}
.yb5{bottom:204.610200px;}
.y116{bottom:204.612000px;}
.ye6{bottom:204.613050px;}
.y7f{bottom:204.613200px;}
.y1f0{bottom:207.232200px;}
.y2cd{bottom:208.730546px;}
.y2da{bottom:208.732642px;}
.y1f1{bottom:211.348350px;}
.y324{bottom:212.101480px;}
.y2c0{bottom:213.218850px;}
.y33{bottom:213.593549px;}
.y209{bottom:216.213447px;}
.y3af{bottom:216.587394px;}
.y36a{bottom:216.600261px;}
.y27{bottom:219.205950px;}
.y25f{bottom:221.773200px;}
.y11e{bottom:221.774100px;}
.yb4{bottom:221.822250px;}
.y41e{bottom:221.823900px;}
.y115{bottom:221.824050px;}
.y7c{bottom:221.825100px;}
.y7e{bottom:221.825250px;}
.y2cc{bottom:222.200697px;}
.y2d9{bottom:222.202792px;}
.y1ef{bottom:225.192750px;}
.y323{bottom:225.571631px;}
.y7d{bottom:226.689450px;}
.y32{bottom:227.063699px;}
.y208{bottom:229.683597px;}
.y3ae{bottom:230.057544px;}
.y2bf{bottom:231.179400px;}
.y369{bottom:234.560811px;}
.y2cb{bottom:235.670847px;}
.y2d8{bottom:235.672942px;}
.y25e{bottom:238.985250px;}
.y11d{bottom:238.986150px;}
.yb3{bottom:239.034300px;}
.y41d{bottom:239.035950px;}
.y114{bottom:239.036100px;}
.y7b{bottom:239.037150px;}
.y42d{bottom:239.037300px;}
.y322{bottom:239.041781px;}
.y31{bottom:240.533849px;}
.y1ee{bottom:243.153000px;}
.y207{bottom:243.153748px;}
.y2be{bottom:244.649550px;}
.y3ad{bottom:248.018094px;}
.y368{bottom:248.030961px;}
.y2ca{bottom:249.140997px;}
.y2d7{bottom:249.143093px;}
.y321{bottom:252.511931px;}
.y26{bottom:253.632069px;}
.y30{bottom:254.004000px;}
.ye5{bottom:255.126600px;}
.y25d{bottom:256.197300px;}
.y246{bottom:256.246200px;}
.yb2{bottom:256.246350px;}
.y41c{bottom:256.248000px;}
.y113{bottom:256.248150px;}
.y7a{bottom:256.249200px;}
.y42c{bottom:256.249350px;}
.y206{bottom:256.623898px;}
.y1ed{bottom:261.113100px;}
.y247{bottom:261.113400px;}
.y3ac{bottom:261.488244px;}
.y367{bottom:261.501111px;}
.y2bd{bottom:262.610100px;}
.y2c9{bottom:262.611148px;}
.y2d6{bottom:262.613243px;}
.y320{bottom:265.982082px;}
.y205{bottom:270.094048px;}
.y25{bottom:270.843595px;}
.y199{bottom:271.539599px;}
.y2f{bottom:271.964549px;}
.y79{bottom:272.338650px;}
.y25c{bottom:273.409350px;}
.y245{bottom:273.458250px;}
.yb1{bottom:273.458400px;}
.y41b{bottom:273.460050px;}
.y112{bottom:273.460200px;}
.y42b{bottom:273.461400px;}
.y3ab{bottom:274.958394px;}
.y366{bottom:274.971262px;}
.y1ec{bottom:279.073650px;}
.y31f{bottom:279.452232px;}
.y204{bottom:283.564199px;}
.y198{bottom:285.009749px;}
.y2e{bottom:285.434700px;}
.y194{bottom:286.073550px;}
.y191{bottom:286.074450px;}
.y18e{bottom:286.075350px;}
.y18b{bottom:286.076250px;}
.y188{bottom:286.077150px;}
.y185{bottom:286.078050px;}
.y182{bottom:286.078950px;}
.y24{bottom:288.055122px;}
.y3aa{bottom:288.428545px;}
.y25b{bottom:290.621400px;}
.y244{bottom:290.670300px;}
.yb0{bottom:290.670450px;}
.y41a{bottom:290.672100px;}
.y111{bottom:290.672250px;}
.ye4{bottom:290.673000px;}
.y42a{bottom:290.673450px;}
.y31e{bottom:292.922382px;}
.y365{bottom:292.931811px;}
.y193{bottom:296.573850px;}
.y190{bottom:296.574750px;}
.y18d{bottom:296.575650px;}
.y18a{bottom:296.576550px;}
.y187{bottom:296.577450px;}
.y184{bottom:296.578350px;}
.y180{bottom:296.578950px;}
.y181{bottom:296.579250px;}
.y1eb{bottom:297.034050px;}
.y203{bottom:297.034349px;}
.y197{bottom:298.479899px;}
.y78{bottom:298.530750px;}
.y2d{bottom:298.904850px;}
.y3a9{bottom:301.898695px;}
.y23{bottom:305.266648px;}
.y31d{bottom:306.392533px;}
.y364{bottom:306.401962px;}
.y192{bottom:307.074150px;}
.y18f{bottom:307.075050px;}
.y18c{bottom:307.075950px;}
.y189{bottom:307.076850px;}
.y186{bottom:307.077750px;}
.y183{bottom:307.078650px;}
.y17e{bottom:307.078950px;}
.y17f{bottom:307.079250px;}
.y25a{bottom:307.833450px;}
.y243{bottom:307.882350px;}
.yaf{bottom:307.882500px;}
.y419{bottom:307.884150px;}
.y110{bottom:307.884300px;}
.ye1{bottom:307.884600px;}
.y29f{bottom:307.884900px;}
.ye3{bottom:307.885050px;}
.y429{bottom:307.885500px;}
.y202{bottom:310.504499px;}
.y196{bottom:311.950050px;}
.ye2{bottom:312.749250px;}
.y1ea{bottom:314.994150px;}
.y17d{bottom:317.579250px;}
.y3a8{bottom:319.859245px;}
.y31c{bottom:319.862683px;}
.y363{bottom:319.872112px;}
.y22{bottom:322.478174px;}
.y174{bottom:323.088750px;}
.y201{bottom:323.974650px;}
.y259{bottom:325.045500px;}
.y242{bottom:325.094400px;}
.yae{bottom:325.094550px;}
.y418{bottom:325.096200px;}
.y10f{bottom:325.096350px;}
.ye0{bottom:325.096650px;}
.y29c{bottom:325.096800px;}
.y29e{bottom:325.096950px;}
.y428{bottom:325.097550px;}
.y195{bottom:325.420200px;}
.y29d{bottom:329.961300px;}
.y1e9{bottom:332.954700px;}
.y3a7{bottom:333.329395px;}
.y31b{bottom:333.332833px;}
.y362{bottom:333.342262px;}
.y432{bottom:335.012700px;}
.y200{bottom:337.444800px;}
.y172{bottom:337.940250px;}
.y21{bottom:339.689700px;}
.y1ff{bottom:341.560650px;}
.y258{bottom:342.257550px;}
.y241{bottom:342.306450px;}
.yad{bottom:342.306600px;}
.y417{bottom:342.308250px;}
.y10e{bottom:342.308400px;}
.ydf{bottom:342.308700px;}
.y29b{bottom:342.308850px;}
.y2bc{bottom:342.309000px;}
.y427{bottom:342.309600px;}
.y3a6{bottom:346.799545px;}
.y31a{bottom:346.802984px;}
.y361{bottom:346.812413px;}
.y2bb{bottom:347.173200px;}
.y1e8{bottom:350.914950px;}
.y1fe{bottom:354.658873px;}
.y171{bottom:354.978750px;}
.y257{bottom:359.469600px;}
.y240{bottom:359.518500px;}
.yac{bottom:359.518650px;}
.y416{bottom:359.520300px;}
.y77{bottom:359.520450px;}
.yde{bottom:359.520750px;}
.y29a{bottom:359.520900px;}
.y426{bottom:359.521650px;}
.y3a5{bottom:360.269696px;}
.y319{bottom:360.273134px;}
.y360{bottom:360.282563px;}
.y1fd{bottom:368.129023px;}
.y1e7{bottom:368.875050px;}
.y3a4{bottom:373.739846px;}
.y318{bottom:373.743284px;}
.y35f{bottom:373.752713px;}
.y20{bottom:374.116867px;}
.y256{bottom:376.681650px;}
.y23f{bottom:376.730550px;}
.yab{bottom:376.730700px;}
.y298{bottom:376.732200px;}
.y415{bottom:376.732350px;}
.y76{bottom:376.732500px;}
.ydd{bottom:376.732800px;}
.y425{bottom:376.733700px;}
.y299{bottom:381.597150px;}
.y1fc{bottom:381.599174px;}
.y1e6{bottom:386.835600px;}
.y317{bottom:387.213434px;}
.y35e{bottom:387.222864px;}
.y1f{bottom:391.328393px;}
.y3a3{bottom:391.700396px;}
.y255{bottom:393.893700px;}
.y23e{bottom:393.942600px;}
.yaa{bottom:393.942750px;}
.y297{bottom:393.944250px;}
.y414{bottom:393.944400px;}
.y75{bottom:393.944550px;}
.ydb{bottom:393.944850px;}
.y424{bottom:393.945750px;}
.y1fb{bottom:395.069324px;}
.ydc{bottom:398.809200px;}
.y316{bottom:400.683585px;}
.y17c{bottom:401.954250px;}
.y17b{bottom:401.954550px;}
.y173{bottom:402.153750px;}
.y1e5{bottom:404.796000px;}
.y3a2{bottom:405.170546px;}
.y35d{bottom:405.183413px;}
.y1fa{bottom:408.539474px;}
.y1e{bottom:408.539919px;}
.y254{bottom:411.105750px;}
.y23d{bottom:411.154650px;}
.ya9{bottom:411.154800px;}
.y296{bottom:411.156300px;}
.y413{bottom:411.156450px;}
.y74{bottom:411.156600px;}
.yd8{bottom:411.156750px;}
.yda{bottom:411.156900px;}
.y423{bottom:411.157800px;}
.y170{bottom:412.107750px;}
.y315{bottom:414.153735px;}
.yd9{bottom:416.021100px;}
.y3a1{bottom:418.640696px;}
.y1f9{bottom:422.009625px;}
.y1e4{bottom:422.755950px;}
.y1d{bottom:425.751445px;}
.y314{bottom:427.623885px;}
.y253{bottom:428.317800px;}
.y251{bottom:428.318214px;}
.y23c{bottom:428.366700px;}
.ya8{bottom:428.366850px;}
.y295{bottom:428.368350px;}
.y412{bottom:428.368500px;}
.y73{bottom:428.368650px;}
.yd6{bottom:428.368800px;}
.y422{bottom:428.369850px;}
.y3a0{bottom:432.110847px;}
.y35c{bottom:432.123714px;}
.y252{bottom:433.182000px;}
.yd7{bottom:433.233150px;}
.y1e3{bottom:440.716500px;}
.y313{bottom:441.094036px;}
.y1c{bottom:442.962972px;}
.y250{bottom:445.530264px;}
.y23b{bottom:445.578750px;}
.ya7{bottom:445.578900px;}
.y294{bottom:445.580400px;}
.y411{bottom:445.580550px;}
.y72{bottom:445.580700px;}
.yd5{bottom:445.580850px;}
.y39f{bottom:445.580997px;}
.y421{bottom:445.581900px;}
.y35b{bottom:445.593864px;}
.y312{bottom:454.564186px;}
.y1e2{bottom:458.676900px;}
.y35a{bottom:459.064015px;}
.y1b{bottom:460.174498px;}
.yd4{bottom:461.670300px;}
.y24f{bottom:462.742314px;}
.y23a{bottom:462.790800px;}
.ya6{bottom:462.790950px;}
.y293{bottom:462.792450px;}
.y410{bottom:462.792600px;}
.y71{bottom:462.792750px;}
.y420{bottom:462.793950px;}
.y39e{bottom:463.541547px;}
.y311{bottom:468.034336px;}
.y17a{bottom:468.578850px;}
.y16f{bottom:469.238100px;}
.y1e1{bottom:476.637000px;}
.y39d{bottom:477.011697px;}
.y359{bottom:477.024564px;}
.y1a{bottom:477.386024px;}
.y24e{bottom:479.954364px;}
.y239{bottom:480.002850px;}
.ya5{bottom:480.003000px;}
.y292{bottom:480.004500px;}
.y6f{bottom:480.004650px;}
.y41f{bottom:480.006000px;}
.y70{bottom:484.869000px;}
.y310{bottom:485.994886px;}
.y10d{bottom:487.862400px;}
.y39c{bottom:490.481847px;}
.y358{bottom:490.494715px;}
.y19{bottom:494.597550px;}
.y24d{bottom:497.166414px;}
.yd3{bottom:497.214600px;}
.y238{bottom:497.214900px;}
.ya4{bottom:497.215050px;}
.y6c{bottom:497.216550px;}
.y6e{bottom:497.216700px;}
.y30f{bottom:499.465036px;}
.y6d{bottom:502.080900px;}
.y39b{bottom:503.951998px;}
.y357{bottom:503.964865px;}
.y179{bottom:508.829550px;}
.y1e0{bottom:512.557800px;}
.y30e{bottom:512.935187px;}
.y24c{bottom:514.378464px;}
.yd2{bottom:514.426650px;}
.y237{bottom:514.426950px;}
.ya3{bottom:514.427100px;}
.y6b{bottom:514.428600px;}
.y39a{bottom:517.422148px;}
.y356{bottom:517.435015px;}
.y40f{bottom:521.163750px;}
.y16e{bottom:526.367700px;}
.y30d{bottom:526.405337px;}
.y18{bottom:529.021874px;}
.y1df{bottom:530.518275px;}
.y355{bottom:530.905166px;}
.yd1{bottom:531.638700px;}
.y236{bottom:531.639000px;}
.ya2{bottom:531.639150px;}
.y68{bottom:531.640350px;}
.y6a{bottom:531.640650px;}
.y399{bottom:535.382698px;}
.y177{bottom:535.578900px;}
.y178{bottom:535.579350px;}
.y69{bottom:536.504850px;}
.y30c{bottom:539.875487px;}
.y354{bottom:544.375316px;}
.y17{bottom:546.233400px;}
.y1dc{bottom:546.607650px;}
.yd0{bottom:548.850750px;}
.y235{bottom:548.851050px;}
.ya1{bottom:548.851200px;}
.y67{bottom:548.852400px;}
.y398{bottom:548.852848px;}
.y10c{bottom:548.854650px;}
.y28c{bottom:549.924449px;}
.y30b{bottom:553.345638px;}
.y1dd{bottom:557.832601px;}
.y353{bottom:557.845466px;}
.y397{bottom:562.322998px;}
.y28b{bottom:563.394599px;}
.ycf{bottom:566.062800px;}
.y234{bottom:566.063100px;}
.ya0{bottom:566.063250px;}
.y66{bottom:566.064450px;}
.y10b{bottom:566.066700px;}
.y30a{bottom:566.815788px;}
.y176{bottom:569.579100px;}
.y175{bottom:569.579550px;}
.y352{bottom:571.315617px;}
.y1de{bottom:573.921976px;}
.y396{bottom:575.793149px;}
.y28a{bottom:576.864749px;}
.y309{bottom:580.285938px;}
.y16{bottom:580.658248px;}
.yce{bottom:583.274850px;}
.y233{bottom:583.275150px;}
.y9f{bottom:583.275300px;}
.y65{bottom:583.276500px;}
.y10a{bottom:583.278750px;}
.y16d{bottom:583.498050px;}
.y351{bottom:584.785767px;}
.y40e{bottom:589.263300px;}
.y289{bottom:590.334900px;}
.y395{bottom:593.753698px;}
.y308{bottom:593.756089px;}
.y1da{bottom:597.269700px;}
.y15{bottom:597.869774px;}
.ycd{bottom:600.486900px;}
.y232{bottom:600.487200px;}
.y9e{bottom:600.487350px;}
.y2ba{bottom:600.488250px;}
.y62{bottom:600.488400px;}
.y64{bottom:600.488550px;}
.y109{bottom:600.490800px;}
.y1db{bottom:601.759800px;}
.y350{bottom:602.746317px;}
.y288{bottom:603.805050px;}
.y63{bottom:605.352750px;}
.y394{bottom:607.223849px;}
.y307{bottom:607.226239px;}
.y16c{bottom:612.462000px;}
.y14{bottom:615.081300px;}
.y34f{bottom:616.216467px;}
.ycc{bottom:617.698950px;}
.y231{bottom:617.699250px;}
.y9d{bottom:617.699400px;}
.y2b9{bottom:617.700300px;}
.y61{bottom:617.700450px;}
.y108{bottom:617.702850px;}
.y393{bottom:620.693999px;}
.y306{bottom:620.696389px;}
.y3d2{bottom:625.184693px;}
.y34e{bottom:629.686617px;}
.y392{bottom:634.164149px;}
.y305{bottom:634.166540px;}
.y284{bottom:634.394100px;}
.ycb{bottom:634.911000px;}
.y230{bottom:634.911300px;}
.y9c{bottom:634.911450px;}
.y5e{bottom:634.911600px;}
.y2b8{bottom:634.912350px;}
.y60{bottom:634.912500px;}
.y107{bottom:634.914900px;}
.y3d1{bottom:638.654844px;}
.y5f{bottom:639.776700px;}
.y34d{bottom:643.156768px;}
.y304{bottom:647.636690px;}
.y3f1{bottom:647.637738px;}
.y282{bottom:649.245600px;}
.y13{bottom:649.506522px;}
.y16b{bottom:650.104650px;}
.yca{bottom:652.123050px;}
.y22f{bottom:652.123350px;}
.y9b{bottom:652.123500px;}
.y5d{bottom:652.123650px;}
.y2b5{bottom:652.124100px;}
.y2b7{bottom:652.124400px;}
.y391{bottom:652.124699px;}
.y3d0{bottom:652.124994px;}
.y106{bottom:652.126950px;}
.y16a{bottom:654.220650px;}
.y34c{bottom:656.626918px;}
.y2b6{bottom:656.988600px;}
.y147{bottom:657.214050px;}
.y303{bottom:661.106840px;}
.y3f0{bottom:661.107888px;}
.y281{bottom:663.533100px;}
.y390{bottom:665.594849px;}
.y3cf{bottom:665.595144px;}
.y12{bottom:666.718048px;}
.y169{bottom:667.316999px;}
.yc9{bottom:669.335100px;}
.y22e{bottom:669.335400px;}
.y9a{bottom:669.335550px;}
.y5c{bottom:669.335700px;}
.y2b4{bottom:669.336150px;}
.y105{bottom:669.339000px;}
.y34b{bottom:670.097068px;}
.y1d9{bottom:671.432999px;}
.y302{bottom:674.576991px;}
.y3ef{bottom:674.578038px;}
.y146{bottom:675.174300px;}
.y1c2{bottom:678.541950px;}
.y38f{bottom:679.065000px;}
.y3ce{bottom:679.065295px;}
.y168{bottom:680.787149px;}
.y1c3{bottom:682.657800px;}
.y11{bottom:683.929574px;}
.y1d8{bottom:684.903149px;}
.yc8{bottom:686.547150px;}
.y22d{bottom:686.547450px;}
.y99{bottom:686.547600px;}
.y5b{bottom:686.547750px;}
.y2b3{bottom:686.548200px;}
.y104{bottom:686.551050px;}
.y301{bottom:688.047141px;}
.y34a{bottom:688.057618px;}
.y280{bottom:689.528100px;}
.y38e{bottom:692.535150px;}
.y3ee{bottom:692.538588px;}
.y145{bottom:693.134700px;}
.y167{bottom:694.257299px;}
.y283{bottom:695.783100px;}
.y1c1{bottom:696.502200px;}
.y40d{bottom:697.025546px;}
.y3cd{bottom:697.025844px;}
.y1d7{bottom:698.373299px;}
.y10{bottom:701.141100px;}
.y300{bottom:701.517291px;}
.y349{bottom:701.527768px;}
.yc7{bottom:703.759200px;}
.y22c{bottom:703.759500px;}
.y98{bottom:703.759650px;}
.y5a{bottom:703.759800px;}
.y2b2{bottom:703.760250px;}
.y103{bottom:703.763100px;}
.y3ed{bottom:706.008738px;}
.y166{bottom:707.727450px;}
.y40c{bottom:710.495696px;}
.y3cc{bottom:710.495995px;}
.y38d{bottom:710.514853px;}
.y144{bottom:711.094501px;}
.y1d6{bottom:711.843450px;}
.y1c0{bottom:712.591949px;}
.y2ff{bottom:714.987442px;}
.y348{bottom:714.997919px;}
.y3ec{bottom:719.478889px;}
.yc6{bottom:720.971250px;}
.y22b{bottom:720.971550px;}
.y97{bottom:720.971700px;}
.y59{bottom:720.971850px;}
.y2af{bottom:720.972150px;}
.y2b1{bottom:720.972300px;}
.y102{bottom:720.975150px;}
.y165{bottom:721.197600px;}
.y27f{bottom:723.696600px;}
.y1bf{bottom:723.816900px;}
.y40b{bottom:723.965846px;}
.y3cb{bottom:723.966145px;}
.y38c{bottom:723.985003px;}
.y164{bottom:725.313600px;}
.y2b0{bottom:725.836500px;}
.y2fe{bottom:728.457592px;}
.y347{bottom:728.468069px;}
.y143{bottom:729.055050px;}
.y1d5{bottom:729.429450px;}
.y1be{bottom:735.041850px;}
.yf{bottom:735.565424px;}
.y40a{bottom:737.435997px;}
.y3ca{bottom:737.436295px;}
.y3eb{bottom:737.439438px;}
.y38b{bottom:737.455154px;}
.yc5{bottom:738.183300px;}
.y22a{bottom:738.183600px;}
.y96{bottom:738.183750px;}
.y58{bottom:738.183900px;}
.y2ae{bottom:738.184200px;}
.y101{bottom:738.187200px;}
.y163{bottom:738.410248px;}
.y2fd{bottom:741.927742px;}
.y346{bottom:741.938219px;}
.y1d4{bottom:742.526397px;}
.y140{bottom:747.014776px;}
.y142{bottom:747.015600px;}
.y27e{bottom:749.315100px;}
.y3ea{bottom:750.909589px;}
.y141{bottom:751.131450px;}
.y162{bottom:751.880398px;}
.ye{bottom:752.776950px;}
.y1bc{bottom:753.002400px;}
.yc4{bottom:755.395350px;}
.y229{bottom:755.395650px;}
.y95{bottom:755.395800px;}
.y57{bottom:755.395950px;}
.y2ad{bottom:755.396250px;}
.y409{bottom:755.396546px;}
.y3c9{bottom:755.396845px;}
.y2fc{bottom:755.397893px;}
.y100{bottom:755.399250px;}
.y345{bottom:755.408370px;}
.y38a{bottom:755.415703px;}
.y1d3{bottom:755.996547px;}
.y1bd{bottom:757.118250px;}
.y2ac{bottom:760.260450px;}
.y3e9{bottom:764.379739px;}
.y13f{bottom:764.975326px;}
.y161{bottom:765.350548px;}
.y408{bottom:768.866697px;}
.y3c8{bottom:768.866995px;}
.y2fb{bottom:768.868043px;}
.y344{bottom:768.878520px;}
.y389{bottom:768.885854px;}
.y1d2{bottom:769.466697px;}
.y1bb{bottom:770.962650px;}
.yc3{bottom:772.607400px;}
.y228{bottom:772.607700px;}
.y94{bottom:772.607850px;}
.y56{bottom:772.608000px;}
.yff{bottom:772.611300px;}
.y27d{bottom:775.010100px;}
.y3e8{bottom:777.849889px;}
.y160{bottom:778.820699px;}
.y407{bottom:782.336847px;}
.y3c7{bottom:782.337146px;}
.y2fa{bottom:782.338193px;}
.y343{bottom:782.348670px;}
.y388{bottom:782.356004px;}
.y13e{bottom:782.935875px;}
.y1d1{bottom:782.936848px;}
.y1ba{bottom:787.052100px;}
.yd{bottom:787.201798px;}
.yc2{bottom:789.819450px;}
.y227{bottom:789.819750px;}
.y93{bottom:789.819900px;}
.y55{bottom:789.820050px;}
.yfe{bottom:789.823350px;}
.y15f{bottom:792.290849px;}
.y406{bottom:795.806997px;}
.y3c6{bottom:795.807296px;}
.y2f9{bottom:795.808344px;}
.y3e7{bottom:795.810439px;}
.y342{bottom:795.818821px;}
.y387{bottom:795.826154px;}
.y1d0{bottom:796.406998px;}
.y1b9{bottom:798.277050px;}
.y13d{bottom:800.896425px;}
.y27c{bottom:801.003600px;}
.y2c{bottom:801.794024px;}
.yc{bottom:804.413324px;}
.y15e{bottom:805.760999px;}
.yc1{bottom:807.031500px;}
.y226{bottom:807.031800px;}
.y92{bottom:807.031950px;}
.y54{bottom:807.032100px;}
.yfd{bottom:807.035400px;}
.y405{bottom:809.277148px;}
.y3c5{bottom:809.277446px;}
.y2f8{bottom:809.278494px;}
.y3e6{bottom:809.280589px;}
.y341{bottom:809.288971px;}
.y386{bottom:809.296305px;}
.y1cf{bottom:809.877148px;}
.y1b7{bottom:816.237600px;}
.y286{bottom:816.354825px;}
.y2b{bottom:816.760650px;}
.y13c{bottom:818.856975px;}
.y15d{bottom:819.231150px;}
.y1b8{bottom:820.353450px;}
.yb{bottom:821.625822px;}
.y2f7{bottom:822.748644px;}
.y3e5{bottom:822.750740px;}
.y340{bottom:822.759121px;}
.y1ce{bottom:823.347299px;}
.yc0{bottom:824.243550px;}
.y225{bottom:824.243850px;}
.y91{bottom:824.244000px;}
.y53{bottom:824.244150px;}
.yfc{bottom:824.247450px;}
.y285{bottom:826.854600px;}
.y287{bottom:827.180100px;}
.y404{bottom:827.237697px;}
.y3c4{bottom:827.237996px;}
.y385{bottom:827.256854px;}
.y15c{bottom:832.701300px;}
.y1b6{bottom:834.198000px;}
.y13b{bottom:834.946350px;}
.y2f6{bottom:836.218795px;}
.y3e4{bottom:836.220890px;}
.y33f{bottom:836.229272px;}
.y15b{bottom:836.817150px;}
.y1cd{bottom:836.817449px;}
.y2a{bottom:840.707700px;}
.y403{bottom:840.707848px;}
.y3c3{bottom:840.708146px;}
.y384{bottom:840.727005px;}
.y51{bottom:841.455600px;}
.y224{bottom:841.455900px;}
.y90{bottom:841.456050px;}
.yfb{bottom:841.459500px;}
.y139{bottom:846.171300px;}
.y52{bottom:846.320400px;}
.y33e{bottom:849.699422px;}
.y278{bottom:849.894600px;}
.y15a{bottom:849.913648px;}
.y13a{bottom:850.287450px;}
.y1cc{bottom:850.287599px;}
.y402{bottom:854.177998px;}
.y3c2{bottom:854.178297px;}
.y2f5{bottom:854.179344px;}
.y3e3{bottom:854.181440px;}
.y383{bottom:854.197155px;}
.y8f{bottom:857.545500px;}
.y50{bottom:858.667650px;}
.y223{bottom:858.667950px;}
.yfa{bottom:858.671550px;}
.y1b5{bottom:861.512400px;}
.y33d{bottom:863.169572px;}
.y159{bottom:863.383798px;}
.y1cb{bottom:863.757750px;}
.y136{bottom:864.131550px;}
.y138{bottom:864.131850px;}
.y276{bottom:864.744600px;}
.y401{bottom:867.648148px;}
.y3c1{bottom:867.648447px;}
.y2f4{bottom:867.649495px;}
.y3e2{bottom:867.651590px;}
.y382{bottom:867.667305px;}
.y137{bottom:868.247700px;}
.ya{bottom:875.133221px;}
.y220{bottom:875.879250px;}
.y291{bottom:875.879550px;}
.y4f{bottom:875.879700px;}
.y222{bottom:875.880000px;}
.yf9{bottom:875.883600px;}
.y33c{bottom:876.639723px;}
.y158{bottom:876.853949px;}
.y1ca{bottom:877.227900px;}
.y275{bottom:879.033600px;}
.y1b3{bottom:879.472950px;}
.y221{bottom:880.744200px;}
.y400{bottom:881.118299px;}
.y3c0{bottom:881.118597px;}
.y2f3{bottom:881.119645px;}
.y3e1{bottom:881.121740px;}
.y381{bottom:881.137456px;}
.y1c9{bottom:881.343750px;}
.y133{bottom:882.091950px;}
.y135{bottom:882.092100px;}
.y1b4{bottom:883.588800px;}
.y134{bottom:886.208100px;}
.y9{bottom:890.099847px;}
.y33b{bottom:890.109873px;}
.y157{bottom:890.324099px;}
.y21f{bottom:893.091300px;}
.y290{bottom:893.091600px;}
.y4e{bottom:893.091750px;}
.y2ab{bottom:893.092050px;}
.yf8{bottom:893.095650px;}
.y1c8{bottom:894.439950px;}
.y3bf{bottom:894.588748px;}
.y2f2{bottom:894.589795px;}
.y3e0{bottom:894.591891px;}
.y1b2{bottom:897.433200px;}
.y3ff{bottom:899.078848px;}
.y380{bottom:899.098005px;}
.y130{bottom:900.051751px;}
.y132{bottom:900.052500px;}
.y274{bottom:902.227500px;}
.y277{bottom:903.562650px;}
.y33a{bottom:903.580023px;}
.y156{bottom:903.794249px;}
.y131{bottom:904.168350px;}
.y8{bottom:905.066473px;}
.y1c7{bottom:907.910100px;}
.y2f1{bottom:908.059946px;}
.y21e{bottom:910.303350px;}
.y28f{bottom:910.303650px;}
.y4d{bottom:910.303800px;}
.yf7{bottom:910.307700px;}
.y1c6{bottom:912.025950px;}
.y3fe{bottom:912.548999px;}
.y3be{bottom:912.549297px;}
.y3df{bottom:912.552440px;}
.y37f{bottom:912.568156px;}
.y1b0{bottom:913.522650px;}
.y2aa{bottom:915.168150px;}
.y339{bottom:917.050174px;}
.y155{bottom:917.264400px;}
.y1b1{bottom:917.638500px;}
.y12f{bottom:918.012301px;}
.y7{bottom:920.033098px;}
.y2f0{bottom:921.530096px;}
.y1af{bottom:924.747600px;}
.y1c5{bottom:925.123125px;}
.y3fd{bottom:926.019149px;}
.y3bd{bottom:926.019448px;}
.y3de{bottom:926.022591px;}
.y37e{bottom:926.038306px;}
.y21d{bottom:927.515400px;}
.y28e{bottom:927.515700px;}
.y4c{bottom:927.515850px;}
.yf6{bottom:927.519750px;}
.y338{bottom:930.520324px;}
.y154{bottom:930.734550px;}
.y273{bottom:932.921100px;}
.y153{bottom:934.850550px;}
.y6{bottom:934.999724px;}
.y2ef{bottom:935.000246px;}
.y12e{bottom:935.972850px;}
.y1c4{bottom:938.593276px;}
.y3fc{bottom:939.489299px;}
.y3bc{bottom:939.489598px;}
.y3dd{bottom:939.492741px;}
.y37d{bottom:939.508456px;}
.y1ae{bottom:942.708150px;}
.y1ac{bottom:942.711292px;}
.y337{bottom:943.990474px;}
.y21c{bottom:944.727450px;}
.y2a9{bottom:944.727600px;}
.y4a{bottom:944.727750px;}
.y8e{bottom:944.727900px;}
.yf5{bottom:944.731800px;}
.y1ad{bottom:946.824150px;}
.y152{bottom:947.946899px;}
.y2ee{bottom:948.470397px;}
.y4b{bottom:949.592100px;}
.y5{bottom:949.966350px;}
.y3bb{bottom:952.959748px;}
.y3dc{bottom:952.962891px;}
.y37c{bottom:952.978607px;}
.y12d{bottom:953.933400px;}
.y272{bottom:956.490450px;}
.y3fb{bottom:957.449849px;}
.y336{bottom:957.460625px;}
.y1ab{bottom:960.671842px;}
.ybf{bottom:960.817350px;}
.y151{bottom:961.417049px;}
.y8c{bottom:961.939350px;}
.y21b{bottom:961.939500px;}
.y2a8{bottom:961.939650px;}
.y49{bottom:961.939800px;}
.y2ed{bottom:961.940547px;}
.yf4{bottom:961.943850px;}
.y8d{bottom:966.804150px;}
.y3fa{bottom:970.919999px;}
.y3ba{bottom:970.920298px;}
.y3db{bottom:970.923441px;}
.y335{bottom:970.930775px;}
.y37b{bottom:970.939156px;}
.y12c{bottom:971.893650px;}
.y150{bottom:974.887200px;}
.y2ec{bottom:975.410697px;}
.y1aa{bottom:978.632391px;}
.y8b{bottom:979.151400px;}
.y21a{bottom:979.151550px;}
.y2a7{bottom:979.151700px;}
.y48{bottom:979.151850px;}
.yf3{bottom:979.155900px;}
.y271{bottom:979.908900px;}
.y3f9{bottom:984.390150px;}
.y3b9{bottom:984.390448px;}
.y4{bottom:984.391414px;}
.y3da{bottom:984.393591px;}
.y334{bottom:984.400925px;}
.y37a{bottom:984.409307px;}
.y14f{bottom:988.357350px;}
.y2eb{bottom:988.880848px;}
.y12b{bottom:989.853900px;}
.y14e{bottom:992.473200px;}
.y46{bottom:996.363300px;}
.y8a{bottom:996.363450px;}
.y219{bottom:996.363600px;}
.y2a6{bottom:996.363750px;}
.yf2{bottom:996.367950px;}
.y1a9{bottom:996.592941px;}
.y3f8{bottom:997.860300px;}
.y3b8{bottom:997.860599px;}
.y3d9{bottom:997.863742px;}
.y333{bottom:997.871076px;}
.y379{bottom:997.879457px;}
.y47{bottom:1001.228100px;}
.y2ea{bottom:1002.350998px;}
.y270{bottom:1002.503400px;}
.y14d{bottom:1005.572023px;}
.y12a{bottom:1007.814075px;}
.y3f7{bottom:1011.330450px;}
.y3b7{bottom:1011.330749px;}
.y3d8{bottom:1011.333892px;}
.y332{bottom:1011.341226px;}
.y378{bottom:1011.349607px;}
.y19f{bottom:1012.679173px;}
.y1a2{bottom:1012.680221px;}
.y1a5{bottom:1012.681269px;}
.y1a8{bottom:1012.682316px;}
.y45{bottom:1013.575350px;}
.y89{bottom:1013.575500px;}
.y218{bottom:1013.575650px;}
.y2a5{bottom:1013.575800px;}
.yf1{bottom:1013.580000px;}
.y2e9{bottom:1015.821148px;}
.y3{bottom:1017.318032px;}
.y27a{bottom:1017.855075px;}
.y2a4{bottom:1018.440000px;}
.y14c{bottom:1019.042173px;}
.y19e{bottom:1023.904124px;}
.y1a1{bottom:1023.905172px;}
.y1a4{bottom:1023.906219px;}
.y1a7{bottom:1023.907267px;}
.y3d7{bottom:1024.804042px;}
.y377{bottom:1024.819758px;}
.y129{bottom:1025.774625px;}
.y279{bottom:1028.354850px;}
.y27b{bottom:1028.681550px;}
.y3f6{bottom:1029.291000px;}
.y2e8{bottom:1029.291299px;}
.y331{bottom:1029.301776px;}
.y44{bottom:1030.787400px;}
.y88{bottom:1030.787550px;}
.y217{bottom:1030.787700px;}
.yf0{bottom:1030.792050px;}
.y14b{bottom:1032.512323px;}
.y1a0{bottom:1035.130122px;}
.y1a3{bottom:1035.131170px;}
.y1a6{bottom:1035.132218px;}
.y28d{bottom:1035.652050px;}
.y127{bottom:1041.864000px;}
.y2e7{bottom:1042.761449px;}
.y3d6{bottom:1042.764592px;}
.y3f5{bottom:1042.766687px;}
.y330{bottom:1042.771926px;}
.y376{bottom:1042.780307px;}
.y14a{bottom:1045.982474px;}
.y43{bottom:1047.999450px;}
.y41{bottom:1047.999600px;}
.y2a2{bottom:1048.003200px;}
.yef{bottom:1048.004100px;}
.y2{bottom:1050.244650px;}
.y19d{bottom:1051.218450px;}
.y2a3{bottom:1052.863950px;}
.y128{bottom:1053.088951px;}
.y2e6{bottom:1056.231599px;}
.y3d5{bottom:1056.234742px;}
.y3f4{bottom:1056.236838px;}
.y32f{bottom:1056.242076px;}
.y375{bottom:1056.250458px;}
.y149{bottom:1059.452624px;}
.y26f{bottom:1059.599324px;}
.y216{bottom:1062.592500px;}
.y42{bottom:1065.211500px;}
.y87{bottom:1065.211650px;}
.y2a1{bottom:1065.215250px;}
.yee{bottom:1065.216150px;}
.y2e5{bottom:1069.701750px;}
.y3d4{bottom:1069.704893px;}
.y3f3{bottom:1069.706988px;}
.y32e{bottom:1069.712227px;}
.y374{bottom:1069.720608px;}
.y148{bottom:1072.922774px;}
.y126{bottom:1074.565950px;}
.y19c{bottom:1079.056050px;}
.y86{bottom:1081.301100px;}
.ybe{bottom:1082.423550px;}
.y2a0{bottom:1082.427300px;}
.yed{bottom:1082.428200px;}
.y3d{bottom:1083.171900px;}
.y3d3{bottom:1083.175043px;}
.y3f2{bottom:1083.177138px;}
.y32d{bottom:1083.182377px;}
.y373{bottom:1083.190758px;}
.ybc{bottom:1131.066150px;}
.y19a{bottom:1131.070761px;}
.y214{bottom:1131.071025px;}
.y3b5{bottom:1131.071992px;}
.y2e3{bottom:1131.074915px;}
.y3c{bottom:1135.556250px;}
.hf{height:19.909103px;}
.h10{height:20.151569px;}
.hc{height:24.007068px;}
.h13{height:24.289200px;}
.h11{height:26.604000px;}
.h12{height:28.821000px;}
.he{height:30.969716px;}
.h6{height:31.346885px;}
.h3{height:33.585948px;}
.h4{height:38.060188px;}
.h5{height:38.064074px;}
.hb{height:38.411309px;}
.h7{height:40.303138px;}
.h1{height:43.804688px;}
.h9{height:48.375000px;}
.hd{height:49.258942px;}
.h2{height:80.605826px;}
.ha{height:190.306908px;}
.h8{height:1185.000000px;}
.h0{height:1188.000000px;}
.w1{width:903.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:15.000000px;}
.x7{left:60.692550px;}
.x2{left:101.103300px;}
.x57{left:105.592135px;}
.x6{left:114.573450px;}
.x5a{left:116.070150px;}
.x3{left:119.063700px;}
.x1c{left:123.553800px;}
.x28{left:129.540450px;}
.xc{left:137.023950px;}
.x4a{left:141.073950px;}
.x4b{left:150.073950px;}
.x9{left:154.771154px;}
.x59{left:167.106150px;}
.x2c{left:177.008100px;}
.x29{left:179.309100px;}
.x70{left:181.014000px;}
.x2d{left:182.916750px;}
.x4c{left:183.961650px;}
.x2a{left:185.407050px;}
.x35{left:189.276150px;}
.x33{left:196.768800px;}
.x60{left:205.283400px;}
.x22{left:206.904450px;}
.x4d{left:212.773350px;}
.x34{left:214.111050px;}
.x71{left:215.324250px;}
.x62{left:217.181400px;}
.x23{left:219.088950px;}
.x1d{left:221.309550px;}
.x30{left:224.251800px;}
.x2b{left:225.646650px;}
.xd{left:228.094350px;}
.x31{left:230.407350px;}
.x1e{left:231.757200px;}
.x61{left:236.186400px;}
.x58{left:239.662650px;}
.x10{left:244.160700px;}
.x5b{left:250.139550px;}
.x11{left:251.823150px;}
.x17{left:258.499950px;}
.x53{left:268.022850px;}
.x5e{left:272.271450px;}
.x4e{left:276.243150px;}
.x18{left:278.021400px;}
.x12{left:280.220100px;}
.x1{left:285.000000px;}
.x13{left:287.245050px;}
.x77{left:294.178050px;}
.x78{left:305.983500px;}
.xe{left:310.350900px;}
.xf{left:325.717350px;}
.x2e{left:339.711150px;}
.x54{left:347.071061px;}
.x83{left:354.045001px;}
.x1f{left:356.483850px;}
.x75{left:357.588000px;}
.x72{left:364.494450px;}
.x14{left:368.428350px;}
.x73{left:371.089950px;}
.x2f{left:374.838205px;}
.x74{left:379.699650px;}
.x85{left:380.744850px;}
.x15{left:382.588950px;}
.x86{left:386.413800px;}
.x20{left:391.925550px;}
.x36{left:398.103450px;}
.x4f{left:403.183650px;}
.x37{left:407.389950px;}
.x38{left:408.751950px;}
.x39{left:413.700450px;}
.x21{left:415.029900px;}
.xb{left:420.225750px;}
.x76{left:432.686400px;}
.x5f{left:433.733051px;}
.x16{left:437.346000px;}
.x55{left:439.113770px;}
.xa{left:452.098350px;}
.x24{left:460.311300px;}
.x26{left:462.828450px;}
.x50{left:466.651650px;}
.x51{left:471.603450px;}
.x19{left:473.779800px;}
.x6e{left:477.816450px;}
.x25{left:482.760000px;}
.x5d{left:489.610650px;}
.x6d{left:492.151800px;}
.x1b{left:496.230300px;}
.x80{left:500.261100px;}
.x7c{left:507.012000px;}
.x47{left:510.198150px;}
.x41{left:514.073250px;}
.x42{left:516.073950px;}
.x7d{left:517.323600px;}
.x81{left:523.996350px;}
.x52{left:532.599150px;}
.x56{left:534.405366px;}
.x48{left:536.413950px;}
.x49{left:537.774450px;}
.x43{left:542.290950px;}
.x44{left:543.651450px;}
.x45{left:548.601450px;}
.x46{left:549.961950px;}
.x7e{left:551.925150px;}
.x27{left:556.580989px;}
.x6c{left:558.655800px;}
.x6f{left:567.342300px;}
.x7f{left:576.287250px;}
.x3e{left:577.981950px;}
.x3f{left:579.342450px;}
.x3a{left:582.646950px;}
.x3b{left:584.008950px;}
.x40{left:585.652950px;}
.x3c{left:588.957450px;}
.x3d{left:590.319450px;}
.x84{left:593.517600px;}
.x63{left:603.117000px;}
.x64{left:613.936500px;}
.x65{left:626.706300px;}
.x66{left:634.828200px;}
.x5{left:639.912750px;}
.x5c{left:645.903450px;}
.x32{left:653.385450px;}
.x4{left:659.369700px;}
.x7b{left:666.212250px;}
.x6b{left:668.874750px;}
.x79{left:675.738000px;}
.x7a{left:688.602300px;}
.x82{left:690.260400px;}
.x69{left:720.300900px;}
.x6a{left:733.327650px;}
.x67{left:768.089700px;}
.x68{left:779.519850px;}
.x1a{left:808.034250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:122.396267pt;}
.ls1a{letter-spacing:-1.913115pt;}
.ls54{letter-spacing:-1.409160pt;}
.ls78{letter-spacing:-1.319757pt;}
.ls79{letter-spacing:-1.302728pt;}
.ls7b{letter-spacing:-1.285699pt;}
.ls81{letter-spacing:-1.266541pt;}
.ls2e{letter-spacing:-1.196296pt;}
.ls18{letter-spacing:-1.149466pt;}
.ls45{letter-spacing:-1.106893pt;}
.ls73{letter-spacing:-1.047291pt;}
.ls4a{letter-spacing:-1.030262pt;}
.ls2f{letter-spacing:-1.013233pt;}
.ls22{letter-spacing:-1.000461pt;}
.ls53{letter-spacing:-0.983432pt;}
.ls23{letter-spacing:-0.970660pt;}
.ls12{letter-spacing:-0.953631pt;}
.ls7c{letter-spacing:-0.941923pt;}
.lsd{letter-spacing:-0.923830pt;}
.ls3f{letter-spacing:-0.911058pt;}
.ls3e{letter-spacing:-0.894029pt;}
.ls84{letter-spacing:-0.890304pt;}
.ls20{letter-spacing:-0.867421pt;}
.ls2d{letter-spacing:-0.864228pt;}
.ls35{letter-spacing:-0.834427pt;}
.ls3d{letter-spacing:-0.817398pt;}
.ls56{letter-spacing:-0.804626pt;}
.ls55{letter-spacing:-0.787597pt;}
.ls6e{letter-spacing:-0.757796pt;}
.ls32{letter-spacing:-0.745024pt;}
.ls4b{letter-spacing:-0.727995pt;}
.ls27{letter-spacing:-0.710966pt;}
.ls7a{letter-spacing:-0.702451pt;}
.ls30{letter-spacing:-0.698194pt;}
.ls66{letter-spacing:-0.681165pt;}
.ls74{letter-spacing:-0.668393pt;}
.ls7e{letter-spacing:-0.651364pt;}
.ls75{letter-spacing:-0.638592pt;}
.ls17{letter-spacing:-0.621563pt;}
.ls2c{letter-spacing:-0.591762pt;}
.ls28{letter-spacing:-0.590698pt;}
.ls25{letter-spacing:-0.574733pt;}
.lsf{letter-spacing:-0.561961pt;}
.ls80{letter-spacing:-0.555043pt;}
.ls21{letter-spacing:-0.544932pt;}
.ls82{letter-spacing:-0.543868pt;}
.ls6f{letter-spacing:-0.540142pt;}
.ls48{letter-spacing:-0.532160pt;}
.ls8f{letter-spacing:-0.515131pt;}
.ls19{letter-spacing:-0.502359pt;}
.ls1c{letter-spacing:-0.485330pt;}
.ls49{letter-spacing:-0.472558pt;}
.ls6d{letter-spacing:-0.468301pt;}
.lse{letter-spacing:-0.455529pt;}
.ls41{letter-spacing:-0.442757pt;}
.ls33{letter-spacing:-0.425728pt;}
.ls7f{letter-spacing:-0.415085pt;}
.ls1e{letter-spacing:-0.412956pt;}
.ls13{letter-spacing:-0.408699pt;}
.ls26{letter-spacing:-0.395927pt;}
.ls7d{letter-spacing:-0.388477pt;}
.ls65{letter-spacing:-0.378898pt;}
.ls34{letter-spacing:-0.366126pt;}
.ls59{letter-spacing:-0.361337pt;}
.ls31{letter-spacing:-0.349097pt;}
.ls1f{letter-spacing:-0.336325pt;}
.ls4e{letter-spacing:-0.319296pt;}
.ls43{letter-spacing:-0.306524pt;}
.ls6c{letter-spacing:-0.300670pt;}
.ls14{letter-spacing:-0.289495pt;}
.ls42{letter-spacing:-0.276723pt;}
.ls67{letter-spacing:-0.272466pt;}
.ls77{letter-spacing:-0.259694pt;}
.ls16{letter-spacing:-0.250115pt;}
.ls29{letter-spacing:-0.242665pt;}
.ls4d{letter-spacing:-0.229893pt;}
.ls6b{letter-spacing:-0.212864pt;}
.ls10{letter-spacing:-0.200092pt;}
.ls6a{letter-spacing:-0.186256pt;}
.ls24{letter-spacing:-0.183063pt;}
.ls83{letter-spacing:-0.178806pt;}
.ls4c{letter-spacing:-0.170291pt;}
.ls44{letter-spacing:-0.162309pt;}
.ls50{letter-spacing:-0.153262pt;}
.ls46{letter-spacing:-0.149005pt;}
.ls63{letter-spacing:-0.136233pt;}
.ls64{letter-spacing:-0.125058pt;}
.ls3c{letter-spacing:-0.123461pt;}
.ls69{letter-spacing:-0.106432pt;}
.ls1d{letter-spacing:-0.093660pt;}
.ls2a{letter-spacing:-0.076631pt;}
.ls4f{letter-spacing:-0.063859pt;}
.ls1b{letter-spacing:-0.050555pt;}
.ls15{letter-spacing:-0.046830pt;}
.ls2b{letter-spacing:-0.034058pt;}
.ls40{letter-spacing:-0.017029pt;}
.ls11{letter-spacing:-0.004257pt;}
.ls58{letter-spacing:-0.003200pt;}
.ls1{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.002661pt;}
.ls52{letter-spacing:0.003200pt;}
.ls0{letter-spacing:0.003725pt;}
.ls5d{letter-spacing:0.029801pt;}
.ls8c{letter-spacing:0.042573pt;}
.ls4{letter-spacing:0.059602pt;}
.ls70{letter-spacing:0.072374pt;}
.ls60{letter-spacing:0.089403pt;}
.ls39{letter-spacing:0.102175pt;}
.lsa{letter-spacing:0.119204pt;}
.ls37{letter-spacing:0.131976pt;}
.ls7{letter-spacing:0.149005pt;}
.ls76{letter-spacing:0.151666pt;}
.lsb{letter-spacing:0.166034pt;}
.ls8d{letter-spacing:0.178806pt;}
.ls5f{letter-spacing:0.195835pt;}
.ls68{letter-spacing:0.202221pt;}
.ls8e{letter-spacing:0.208607pt;}
.ls5c{letter-spacing:0.225636pt;}
.ls5b{letter-spacing:0.268209pt;}
.ls8{letter-spacing:0.285238pt;}
.ls3b{letter-spacing:0.298010pt;}
.ls6{letter-spacing:0.344840pt;}
.ls5a{letter-spacing:0.361869pt;}
.ls72{letter-spacing:0.404442pt;}
.ls9{letter-spacing:0.421471pt;}
.ls8a{letter-spacing:0.481073pt;}
.ls51{letter-spacing:0.557704pt;}
.ls62{letter-spacing:0.600276pt;}
.lsc{letter-spacing:0.617306pt;}
.ls3{letter-spacing:0.676908pt;}
.ls5{letter-spacing:0.770568pt;}
.ls87{letter-spacing:0.859971pt;}
.ls86{letter-spacing:0.889772pt;}
.ls8b{letter-spacing:0.966403pt;}
.ls36{letter-spacing:1.072835pt;}
.ls88{letter-spacing:1.085606pt;}
.ls3a{letter-spacing:1.115407pt;}
.ls38{letter-spacing:1.238868pt;}
.ls5e{letter-spacing:1.524106pt;}
.ls61{letter-spacing:1.647567pt;}
.ls71{letter-spacing:2.205271pt;}
.ls89{letter-spacing:2.720402pt;}
.ls85{letter-spacing:5.550429pt;}
.ls57{letter-spacing:7.137330pt;}
.ls2{letter-spacing:11.520280pt;}
.wse7{word-spacing:-21.482235pt;}
.ws49{word-spacing:-21.286400pt;}
.wsdb{word-spacing:-21.086308pt;}
.ws48{word-spacing:-20.950075pt;}
.ws11e{word-spacing:-20.877701pt;}
.ws6a{word-spacing:-20.860672pt;}
.ws78{word-spacing:-20.664837pt;}
.ws8d{word-spacing:-20.451973pt;}
.ws20{word-spacing:-20.362570pt;}
.ws2c{word-spacing:-20.332769pt;}
.ws50{word-spacing:-20.315740pt;}
.ws4b{word-spacing:-20.285939pt;}
.ws60{word-spacing:-20.273167pt;}
.ws99{word-spacing:-20.256138pt;}
.ws108{word-spacing:-20.239109pt;}
.ws90{word-spacing:-20.179507pt;}
.ws3c{word-spacing:-20.136934pt;}
.ws5f{word-spacing:-20.090104pt;}
.ws10e{word-spacing:-20.000701pt;}
.ws10b{word-spacing:-19.983672pt;}
.ws106{word-spacing:-19.966643pt;}
.wsb6{word-spacing:-19.877240pt;}
.ws14a{word-spacing:-14.100111pt;}
.ws53{word-spacing:-13.895762pt;}
.ws43{word-spacing:-13.891505pt;}
.ws58{word-spacing:-13.887247pt;}
.ws92{word-spacing:-13.836160pt;}
.ws21{word-spacing:-13.831903pt;}
.ws95{word-spacing:-13.827645pt;}
.ws3d{word-spacing:-13.789330pt;}
.ws3a{word-spacing:-13.785073pt;}
.ws8a{word-spacing:-13.780815pt;}
.ws27{word-spacing:-13.751014pt;}
.ws3b{word-spacing:-13.742500pt;}
.ws32{word-spacing:-13.729728pt;}
.ws5e{word-spacing:-13.725471pt;}
.ws5b{word-spacing:-13.721213pt;}
.ws115{word-spacing:-13.712699pt;}
.ws101{word-spacing:-13.699927pt;}
.ws14b{word-spacing:-13.674383pt;}
.ws10f{word-spacing:-13.665869pt;}
.ws2e{word-spacing:-13.606267pt;}
.ws25{word-spacing:-13.572209pt;}
.ws14f{word-spacing:-13.555180pt;}
.wsf8{word-spacing:-13.499835pt;}
.wsb9{word-spacing:-13.478548pt;}
.ws6c{word-spacing:-13.465777pt;}
.wsd1{word-spacing:-13.448748pt;}
.ws56{word-spacing:-13.410432pt;}
.wsec{word-spacing:-13.406175pt;}
.wsea{word-spacing:-13.389146pt;}
.wsa8{word-spacing:-13.380631pt;}
.wsa6{word-spacing:-13.359345pt;}
.wsb3{word-spacing:-13.346573pt;}
.ws103{word-spacing:-13.274199pt;}
.wsd8{word-spacing:-13.269942pt;}
.ws40{word-spacing:-13.253445pt;}
.ws114{word-spacing:-13.227369pt;}
.wsb4{word-spacing:-13.210340pt;}
.ws107{word-spacing:-13.197568pt;}
.wsd7{word-spacing:-13.193311pt;}
.ws102{word-spacing:-13.167767pt;}
.ws124{word-spacing:-13.129452pt;}
.ws68{word-spacing:-13.086879pt;}
.wse2{word-spacing:-13.074107pt;}
.ws51{word-spacing:-13.057078pt;}
.ws8c{word-spacing:-13.053885pt;}
.ws2f{word-spacing:-13.031534pt;}
.ws14e{word-spacing:-13.027277pt;}
.wsa7{word-spacing:-13.010248pt;}
.ws37{word-spacing:-13.001733pt;}
.ws6f{word-spacing:-12.988961pt;}
.ws3f{word-spacing:-12.937874pt;}
.ws113{word-spacing:-12.915523pt;}
.wsaf{word-spacing:-12.908073pt;}
.wsaa{word-spacing:-12.903816pt;}
.wse4{word-spacing:-12.891044pt;}
.ws118{word-spacing:-12.882529pt;}
.ws10c{word-spacing:-12.865500pt;}
.ws88{word-spacing:-12.827185pt;}
.ws36{word-spacing:-12.822927pt;}
.ws52{word-spacing:-12.784612pt;}
.ws55{word-spacing:-12.767583pt;}
.ws121{word-spacing:-12.746296pt;}
.ws67{word-spacing:-12.707981pt;}
.wsf6{word-spacing:-12.686694pt;}
.wsf9{word-spacing:-12.669665pt;}
.wsdf{word-spacing:-12.665408pt;}
.wsf4{word-spacing:-12.622835pt;}
.ws4e{word-spacing:-12.580262pt;}
.wsd0{word-spacing:-12.571748pt;}
.wsa3{word-spacing:-12.499374pt;}
.ws10d{word-spacing:-12.469573pt;}
.ws4a{word-spacing:-12.436579pt;}
.ws80{word-spacing:-12.427000pt;}
.ws54{word-spacing:-12.422743pt;}
.ws69{word-spacing:-12.414228pt;}
.ws119{word-spacing:-12.384428pt;}
.ws33{word-spacing:-12.367398pt;}
.ws9b{word-spacing:-12.346112pt;}
.ws84{word-spacing:-12.316311pt;}
.wsa2{word-spacing:-12.286510pt;}
.ws8e{word-spacing:-12.277996pt;}
.wsf7{word-spacing:-12.260966pt;}
.ws97{word-spacing:-12.256709pt;}
.ws70{word-spacing:-12.252452pt;}
.ws89{word-spacing:-12.209879pt;}
.ws96{word-spacing:-12.150277pt;}
.wsac{word-spacing:-12.120476pt;}
.ws120{word-spacing:-12.111962pt;}
.wsce{word-spacing:-12.086418pt;}
.wse8{word-spacing:-12.073646pt;}
.wsef{word-spacing:-12.060874pt;}
.wse5{word-spacing:-12.048102pt;}
.ws86{word-spacing:-11.984243pt;}
.ws112{word-spacing:-11.958700pt;}
.ws105{word-spacing:-11.941670pt;}
.ws82{word-spacing:-11.928899pt;}
.ws34{word-spacing:-11.916127pt;}
.ws81{word-spacing:-11.911869pt;}
.ws4d{word-spacing:-11.886326pt;}
.ws4c{word-spacing:-11.882068pt;}
.wsee{word-spacing:-11.865039pt;}
.ws7f{word-spacing:-11.728806pt;}
.ws109{word-spacing:-11.699005pt;}
.wsf0{word-spacing:-11.694748pt;}
.ws11b{word-spacing:-11.673462pt;}
.ws8f{word-spacing:-11.643661pt;}
.wsd6{word-spacing:-11.635146pt;}
.wsab{word-spacing:-11.605345pt;}
.ws66{word-spacing:-11.588316pt;}
.ws9e{word-spacing:-11.575544pt;}
.wsd4{word-spacing:-11.562772pt;}
.ws122{word-spacing:-11.550001pt;}
.wsad{word-spacing:-11.460598pt;}
.ws87{word-spacing:-11.439311pt;}
.ws75{word-spacing:-11.418025pt;}
.ws42{word-spacing:-11.413768pt;}
.ws26{word-spacing:-11.409510pt;}
.ws2b{word-spacing:-11.405253pt;}
.ws3e{word-spacing:-11.390885pt;}
.wsf5{word-spacing:-11.371195pt;}
.wse9{word-spacing:-11.362680pt;}
.ws6d{word-spacing:-11.345651pt;}
.ws83{word-spacing:-11.337137pt;}
.ws11f{word-spacing:-11.324365pt;}
.ws7b{word-spacing:-11.290307pt;}
.ws85{word-spacing:-11.273277pt;}
.ws77{word-spacing:-11.247734pt;}
.ws24{word-spacing:-11.226447pt;}
.ws6b{word-spacing:-11.196646pt;}
.ws93{word-spacing:-11.183875pt;}
.ws111{word-spacing:-11.171103pt;}
.ws125{word-spacing:-11.166845pt;}
.wsb2{word-spacing:-11.158331pt;}
.ws9c{word-spacing:-11.154074pt;}
.ws65{word-spacing:-11.149816pt;}
.ws8b{word-spacing:-11.081700pt;}
.ws154{word-spacing:-11.039127pt;}
.ws74{word-spacing:-11.000812pt;}
.ws38{word-spacing:-10.992297pt;}
.ws7a{word-spacing:-10.988040pt;}
.wsdc{word-spacing:-10.971011pt;}
.wse1{word-spacing:-10.941210pt;}
.ws6e{word-spacing:-10.911409pt;}
.ws126{word-spacing:-10.885865pt;}
.ws14c{word-spacing:-10.877350pt;}
.ws39{word-spacing:-10.873093pt;}
.ws7c{word-spacing:-10.851807pt;}
.wsa5{word-spacing:-10.834778pt;}
.wsd5{word-spacing:-10.817748pt;}
.ws11d{word-spacing:-10.809234pt;}
.wsdd{word-spacing:-10.775176pt;}
.ws123{word-spacing:-10.770918pt;}
.wsed{word-spacing:-10.728346pt;}
.ws9d{word-spacing:-10.651715pt;}
.ws14d{word-spacing:-10.621914pt;}
.ws45{word-spacing:-10.604884pt;}
.ws57{word-spacing:-10.592113pt;}
.ws2d{word-spacing:-10.553797pt;}
.wsb5{word-spacing:-10.549540pt;}
.ws59{word-spacing:-10.545283pt;}
.ws31{word-spacing:-10.536768pt;}
.wseb{word-spacing:-10.515482pt;}
.wsb8{word-spacing:-10.502710pt;}
.ws11c{word-spacing:-10.494195pt;}
.ws155{word-spacing:-10.477166pt;}
.wsa0{word-spacing:-10.396278pt;}
.wsb7{word-spacing:-10.374991pt;}
.ws2a{word-spacing:-10.319647pt;}
.ws5a{word-spacing:-10.260045pt;}
.wsf3{word-spacing:-10.251530pt;}
.wsd2{word-spacing:-10.247273pt;}
.ws23{word-spacing:-10.230244pt;}
.wsa9{word-spacing:-10.183414pt;}
.ws41{word-spacing:-10.174899pt;}
.wsfe{word-spacing:-10.162127pt;}
.ws10a{word-spacing:-10.111040pt;}
.ws61{word-spacing:-10.081239pt;}
.ws127{word-spacing:-10.076982pt;}
.ws62{word-spacing:-10.051438pt;}
.wse3{word-spacing:-10.047181pt;}
.ws4f{word-spacing:-10.038666pt;}
.wsae{word-spacing:-9.932234pt;}
.ws11a{word-spacing:-9.919462pt;}
.ws117{word-spacing:-9.889661pt;}
.ws151{word-spacing:-9.813030pt;}
.ws7e{word-spacing:-9.749171pt;}
.wsff{word-spacing:-9.723628pt;}
.wse6{word-spacing:-9.685312pt;}
.ws64{word-spacing:-9.608681pt;}
.ws110{word-spacing:-9.570365pt;}
.wsa1{word-spacing:-9.553336pt;}
.ws9a{word-spacing:-9.519278pt;}
.wsfc{word-spacing:-9.489477pt;}
.wsf1{word-spacing:-9.472448pt;}
.wsd9{word-spacing:-9.442647pt;}
.ws100{word-spacing:-9.404332pt;}
.ws91{word-spacing:-9.383045pt;}
.wsfd{word-spacing:-9.374531pt;}
.wsa4{word-spacing:-9.366016pt;}
.ws104{word-spacing:-9.357501pt;}
.wsd3{word-spacing:-9.353244pt;}
.wscf{word-spacing:-9.336215pt;}
.wse0{word-spacing:-9.323443pt;}
.ws150{word-spacing:-9.285128pt;}
.ws94{word-spacing:-9.140380pt;}
.ws5c{word-spacing:-9.123351pt;}
.ws79{word-spacing:-9.102065pt;}
.ws7d{word-spacing:-9.097807pt;}
.ws5d{word-spacing:-9.093550pt;}
.wsde{word-spacing:-9.080778pt;}
.ws153{word-spacing:-9.072264pt;}
.ws152{word-spacing:-9.068006pt;}
.ws28{word-spacing:-9.063749pt;}
.ws116{word-spacing:-9.059492pt;}
.ws30{word-spacing:-9.055235pt;}
.ws35{word-spacing:-9.050977pt;}
.ws9f{word-spacing:-9.033948pt;}
.ws63{word-spacing:-9.021176pt;}
.ws22{word-spacing:-8.995633pt;}
.ws98{word-spacing:-8.991375pt;}
.wsf2{word-spacing:-8.987118pt;}
.ws1f{word-spacing:-8.961574pt;}
.ws29{word-spacing:-8.953060pt;}
.ws44{word-spacing:-8.948803pt;}
.ws76{word-spacing:-8.944545pt;}
.wsda{word-spacing:-8.599706pt;}
.wsc1{word-spacing:-8.049984pt;}
.wsc3{word-spacing:-7.174581pt;}
.wsc5{word-spacing:-6.915200pt;}
.wsc6{word-spacing:-6.912000pt;}
.ws145{word-spacing:-5.587680pt;}
.wsc8{word-spacing:-1.363394pt;}
.ws46{word-spacing:-0.058537pt;}
.ws1a{word-spacing:-0.047894pt;}
.wse{word-spacing:-0.045234pt;}
.ws11{word-spacing:-0.040976pt;}
.ws14{word-spacing:-0.039912pt;}
.ws16{word-spacing:-0.037251pt;}
.wsbf{word-spacing:-0.011175pt;}
.wsc0{word-spacing:-0.007450pt;}
.wsc9{word-spacing:-0.003725pt;}
.ws1e{word-spacing:0.000000pt;}
.ws140{word-spacing:0.141555pt;}
.ws147{word-spacing:0.324085pt;}
.ws148{word-spacing:0.502891pt;}
.ws13e{word-spacing:0.506616pt;}
.ws134{word-spacing:0.517792pt;}
.ws144{word-spacing:0.853052pt;}
.ws136{word-spacing:1.229290pt;}
.wsc2{word-spacing:2.257423pt;}
.wsbe{word-spacing:2.261148pt;}
.wsca{word-spacing:2.264873pt;}
.ws137{word-spacing:6.425832pt;}
.ws143{word-spacing:6.429557pt;}
.ws142{word-spacing:6.433282pt;}
.ws15{word-spacing:6.530135pt;}
.ws146{word-spacing:6.600913pt;}
.ws133{word-spacing:6.630714pt;}
.ws13f{word-spacing:6.638164pt;}
.ws156{word-spacing:6.761093pt;}
.ws131{word-spacing:6.764818pt;}
.ws12b{word-spacing:6.798344pt;}
.ws128{word-spacing:6.805794pt;}
.ws12c{word-spacing:6.820695pt;}
.ws17{word-spacing:6.891472pt;}
.ws18{word-spacing:6.910098pt;}
.ws139{word-spacing:6.928723pt;}
.ws129{word-spacing:6.936173pt;}
.ws12d{word-spacing:6.947349pt;}
.ws12a{word-spacing:6.954799pt;}
.ws13a{word-spacing:6.958524pt;}
.ws12e{word-spacing:6.973425pt;}
.ws71{word-spacing:7.047927pt;}
.ws72{word-spacing:7.055377pt;}
.ws130{word-spacing:7.062828pt;}
.ws12f{word-spacing:7.074003pt;}
.ws13b{word-spacing:7.077728pt;}
.ws13d{word-spacing:7.081453pt;}
.ws19{word-spacing:7.085178pt;}
.ws141{word-spacing:7.088903pt;}
.wsf{word-spacing:7.092628pt;}
.ws132{word-spacing:7.096354pt;}
.ws10{word-spacing:7.100079pt;}
.ws149{word-spacing:7.143716pt;}
.wsba{word-spacing:7.291922pt;}
.ws13{word-spacing:7.443588pt;}
.ws12{word-spacing:7.503456pt;}
.ws2{word-spacing:7.611218pt;}
.ws138{word-spacing:7.822752pt;}
.wsbb{word-spacing:7.997833pt;}
.wsbd{word-spacing:8.001558pt;}
.wsc7{word-spacing:8.009008pt;}
.wsa{word-spacing:8.087768pt;}
.ws9{word-spacing:8.094154pt;}
.ws7{word-spacing:8.133001pt;}
.ws6{word-spacing:8.138057pt;}
.ws13c{word-spacing:8.180364pt;}
.wsd{word-spacing:8.359169pt;}
.wsc{word-spacing:8.365555pt;}
.ws1b{word-spacing:8.419836pt;}
.ws4{word-spacing:8.635094pt;}
.ws47{word-spacing:8.764675pt;}
.ws135{word-spacing:10.009397pt;}
.wsbc{word-spacing:10.270156pt;}
.ws3{word-spacing:15.786999pt;}
.ws0{word-spacing:17.529253pt;}
.ws1{word-spacing:18.276401pt;}
.wsb{word-spacing:19.173855pt;}
.ws8{word-spacing:19.177364pt;}
.ws5{word-spacing:19.177923pt;}
.wsb0{word-spacing:26.724011pt;}
.ws1d{word-spacing:31.872127pt;}
.wsfb{word-spacing:84.338667pt;}
.wscc{word-spacing:97.419338pt;}
.wscd{word-spacing:98.611377pt;}
.wsfa{word-spacing:181.553067pt;}
.wsc4{word-spacing:199.562667pt;}
.wscb{word-spacing:301.324957pt;}
.ws73{word-spacing:824.473359pt;}
.wsb1{word-spacing:824.488260pt;}
.ws1c{word-spacing:1935.836836pt;}
._4a{margin-left:-347.274133pt;}
._2e{margin-left:-241.674667pt;}
._48{margin-left:-223.664533pt;}
._2c{margin-left:-8.385245pt;}
._2b{margin-left:-7.137330pt;}
._3{margin-left:-6.197501pt;}
._2{margin-left:-4.779835pt;}
._4{margin-left:-3.596071pt;}
._1{margin-left:-2.385128pt;}
._0{margin-left:-1.436824pt;}
._5{width:1.037172pt;}
._b{width:2.117989pt;}
._4c{width:3.676693pt;}
._4b{width:4.727177pt;}
._9{width:5.896333pt;}
._a{width:7.165002pt;}
._12{width:8.916341pt;}
._8{width:10.516812pt;}
._4d{width:15.828035pt;}
._7{width:18.428881pt;}
._6{width:19.605691pt;}
._d{width:27.162503pt;}
._e{width:31.133481pt;}
._f{width:32.087111pt;}
._4e{width:62.723571pt;}
._11{width:68.087743pt;}
._10{width:69.830027pt;}
._3a{width:71.693660pt;}
._35{width:74.584353pt;}
._37{width:77.165861pt;}
._3c{width:78.824071pt;}
._36{width:85.741087pt;}
._3b{width:90.214956pt;}
._39{width:105.525199pt;}
._16{width:142.225082pt;}
._30{width:145.421235pt;}
._1c{width:152.188979pt;}
._1f{width:162.716967pt;}
._14{width:172.882819pt;}
._26{width:193.374704pt;}
._18{width:203.697012pt;}
._31{width:211.750721pt;}
._40{width:270.038730pt;}
._24{width:280.833050pt;}
._2f{width:287.302533pt;}
._33{width:288.599947pt;}
._32{width:296.549353pt;}
._38{width:301.373383pt;}
._3e{width:303.519052pt;}
._27{width:308.716625pt;}
._46{width:318.885172pt;}
._3f{width:321.265524pt;}
._45{width:326.722825pt;}
._43{width:328.320901pt;}
._42{width:339.795322pt;}
._3d{width:343.354413pt;}
._34{width:345.382483pt;}
._41{width:347.255686pt;}
._44{width:359.918420pt;}
._1e{width:391.428159pt;}
._25{width:395.587522pt;}
._23{width:404.596711pt;}
._21{width:414.821093pt;}
._22{width:432.829396pt;}
._1b{width:463.407581pt;}
._49{width:494.583467pt;}
._1a{width:500.052659pt;}
._1d{width:537.102702pt;}
._20{width:545.957312pt;}
._47{width:600.604800pt;}
._2d{width:654.630400pt;}
._13{width:658.856653pt;}
._29{width:662.278960pt;}
._28{width:711.963560pt;}
._19{width:756.411692pt;}
._15{width:761.850367pt;}
._2a{width:771.708626pt;}
._17{width:782.111295pt;}
._c{width:1203.350517pt;}
.fsb{font-size:23.947200pt;}
.fs9{font-size:26.608000pt;}
.fse{font-size:31.200000pt;}
.fsc{font-size:32.000000pt;}
.fsd{font-size:34.666667pt;}
.fs4{font-size:37.251200pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:39.912000pt;}
.fs8{font-size:42.572800pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:45.233600pt;}
.fs5{font-size:47.894400pt;}
.fsa{font-size:58.537067pt;}
.fs1{font-size:95.788267pt;}
.fs7{font-size:226.152000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:2.314667pt;}
.y3f{bottom:2.666667pt;}
.y1{bottom:33.333333pt;}
.ybd{bottom:58.479667pt;}
.y19b{bottom:58.483766pt;}
.y215{bottom:58.484000pt;}
.y3e{bottom:58.484400pt;}
.y3b6{bottom:58.484860pt;}
.y2e4{bottom:58.487458pt;}
.y213{bottom:89.748932pt;}
.y2d5{bottom:89.750528pt;}
.y2e2{bottom:89.752390pt;}
.y125{bottom:90.035333pt;}
.y26e{bottom:90.035867pt;}
.ybb{bottom:90.078133pt;}
.y11c{bottom:90.079733pt;}
.y24b{bottom:90.080667pt;}
.y85{bottom:90.080800pt;}
.yec{bottom:90.081200pt;}
.y29{bottom:90.081333pt;}
.y3b{bottom:90.081730pt;}
.y32c{bottom:92.746913pt;}
.y372{bottom:92.754364pt;}
.y2c8{bottom:93.740131pt;}
.y1f8{bottom:96.068133pt;}
.y212{bottom:101.722399pt;}
.y2d4{bottom:101.723995pt;}
.y2e1{bottom:101.725857pt;}
.y28{bottom:102.054800pt;}
.y3a{bottom:102.055197pt;}
.y32b{bottom:104.720380pt;}
.y371{bottom:104.727831pt;}
.y124{bottom:105.334933pt;}
.y26b{bottom:105.335333pt;}
.y26d{bottom:105.335467pt;}
.yba{bottom:105.377733pt;}
.y11b{bottom:105.379333pt;}
.y24a{bottom:105.380267pt;}
.y84{bottom:105.380400pt;}
.yeb{bottom:105.380800pt;}
.y2c7{bottom:105.713598pt;}
.y26c{bottom:109.659200pt;}
.y1f7{bottom:112.032800pt;}
.y211{bottom:113.695866pt;}
.y2d3{bottom:113.697462pt;}
.y2e0{bottom:113.699324pt;}
.y39{bottom:114.028664pt;}
.y32a{bottom:116.693847pt;}
.y370{bottom:116.701298pt;}
.y2c6{bottom:117.687065pt;}
.y430{bottom:118.352000pt;}
.yea{bottom:119.682533pt;}
.y123{bottom:120.634533pt;}
.y26a{bottom:120.634933pt;}
.yb9{bottom:120.677333pt;}
.y11a{bottom:120.678933pt;}
.y249{bottom:120.679867pt;}
.y83{bottom:120.680000pt;}
.y210{bottom:125.669333pt;}
.y2d2{bottom:125.670929pt;}
.y2df{bottom:125.672791pt;}
.y38{bottom:126.002131pt;}
.y1f5{bottom:126.334533pt;}
.y3b4{bottom:128.663327pt;}
.y329{bottom:128.667314pt;}
.y20f{bottom:129.327867pt;}
.y2c5{bottom:129.660532pt;}
.y1f6{bottom:129.993067pt;}
.y42f{bottom:130.325467pt;}
.y36f{bottom:132.666231pt;}
.y431{bottom:134.316933pt;}
.y122{bottom:135.934133pt;}
.y267{bottom:135.934400pt;}
.y269{bottom:135.934533pt;}
.yb8{bottom:135.976933pt;}
.y119{bottom:135.978533pt;}
.y248{bottom:135.979467pt;}
.y82{bottom:135.979600pt;}
.y1f4{bottom:136.312267pt;}
.y2d1{bottom:137.644396pt;}
.y2de{bottom:137.646258pt;}
.y37{bottom:137.975598pt;}
.y268{bottom:140.258267pt;}
.y3b3{bottom:140.636794pt;}
.y328{bottom:140.640781pt;}
.y20e{bottom:140.968933pt;}
.y2c4{bottom:141.633999pt;}
.y36e{bottom:144.639698pt;}
.y42e{bottom:146.290400pt;}
.y2d0{bottom:149.617863pt;}
.y2dd{bottom:149.619725pt;}
.y36{bottom:149.949065pt;}
.y121{bottom:151.233733pt;}
.y264{bottom:151.233867pt;}
.y266{bottom:151.234000pt;}
.yb7{bottom:151.276533pt;}
.y118{bottom:151.278133pt;}
.ye8{bottom:151.279067pt;}
.y81{bottom:151.279200pt;}
.y1f3{bottom:152.277200pt;}
.y3b2{bottom:152.610261pt;}
.y327{bottom:152.614248pt;}
.y20d{bottom:152.942400pt;}
.y2c3{bottom:153.607466pt;}
.y265{bottom:155.557733pt;}
.ye9{bottom:155.603200pt;}
.y20c{bottom:156.600933pt;}
.y36d{bottom:156.613165pt;}
.y2cf{bottom:161.591330pt;}
.y2dc{bottom:161.593192pt;}
.y35{bottom:161.922532pt;}
.y3b1{bottom:164.583728pt;}
.y326{bottom:164.587715pt;}
.y2c2{bottom:165.580933pt;}
.y261{bottom:166.532533pt;}
.y120{bottom:166.533333pt;}
.y263{bottom:166.533467pt;}
.yb6{bottom:166.576133pt;}
.y117{bottom:166.577733pt;}
.ye7{bottom:166.578667pt;}
.y80{bottom:166.578800pt;}
.y1f2{bottom:168.241867pt;}
.y20b{bottom:168.242797pt;}
.y36c{bottom:168.586631pt;}
.y262{bottom:170.857333pt;}
.y2ce{bottom:173.564796pt;}
.y2db{bottom:173.566659pt;}
.y34{bottom:173.895999pt;}
.y325{bottom:176.561182pt;}
.y2c1{bottom:177.554400pt;}
.y20a{bottom:180.216264pt;}
.y3b0{bottom:180.548661pt;}
.y36b{bottom:180.560098pt;}
.y260{bottom:181.832133pt;}
.y11f{bottom:181.832933pt;}
.yb5{bottom:181.875733pt;}
.y116{bottom:181.877333pt;}
.ye6{bottom:181.878267pt;}
.y7f{bottom:181.878400pt;}
.y1f0{bottom:184.206400pt;}
.y2cd{bottom:185.538263pt;}
.y2da{bottom:185.540126pt;}
.y1f1{bottom:187.865200pt;}
.y324{bottom:188.534649pt;}
.y2c0{bottom:189.527867pt;}
.y33{bottom:189.860932pt;}
.y209{bottom:192.189731pt;}
.y3af{bottom:192.522128pt;}
.y36a{bottom:192.533565pt;}
.y27{bottom:194.849733pt;}
.y25f{bottom:197.131733pt;}
.y11e{bottom:197.132533pt;}
.yb4{bottom:197.175333pt;}
.y41e{bottom:197.176800pt;}
.y115{bottom:197.176933pt;}
.y7c{bottom:197.177867pt;}
.y7e{bottom:197.178000pt;}
.y2cc{bottom:197.511730pt;}
.y2d9{bottom:197.513593pt;}
.y1ef{bottom:200.171333pt;}
.y323{bottom:200.508116pt;}
.y7d{bottom:201.501733pt;}
.y32{bottom:201.834399pt;}
.y208{bottom:204.163198pt;}
.y3ae{bottom:204.495595pt;}
.y2bf{bottom:205.492800pt;}
.y369{bottom:208.498498pt;}
.y2cb{bottom:209.485197pt;}
.y2d8{bottom:209.487060pt;}
.y25e{bottom:212.431333pt;}
.y11d{bottom:212.432133pt;}
.yb3{bottom:212.474933pt;}
.y41d{bottom:212.476400pt;}
.y114{bottom:212.476533pt;}
.y7b{bottom:212.477467pt;}
.y42d{bottom:212.477600pt;}
.y322{bottom:212.481583pt;}
.y31{bottom:213.807866pt;}
.y1ee{bottom:216.136000pt;}
.y207{bottom:216.136665pt;}
.y2be{bottom:217.466267pt;}
.y3ad{bottom:220.460528pt;}
.y368{bottom:220.471965pt;}
.y2ca{bottom:221.458664pt;}
.y2d7{bottom:221.460527pt;}
.y321{bottom:224.455050pt;}
.y26{bottom:225.450728pt;}
.y30{bottom:225.781333pt;}
.ye5{bottom:226.779200pt;}
.y25d{bottom:227.730933pt;}
.y246{bottom:227.774400pt;}
.yb2{bottom:227.774533pt;}
.y41c{bottom:227.776000pt;}
.y113{bottom:227.776133pt;}
.y7a{bottom:227.777067pt;}
.y42c{bottom:227.777200pt;}
.y206{bottom:228.110132pt;}
.y1ed{bottom:232.100534pt;}
.y247{bottom:232.100800pt;}
.y3ac{bottom:232.433995pt;}
.y367{bottom:232.445432pt;}
.y2bd{bottom:233.431200pt;}
.y2c9{bottom:233.432131pt;}
.y2d6{bottom:233.433994pt;}
.y320{bottom:236.428517pt;}
.y205{bottom:240.083599pt;}
.y25{bottom:240.749863pt;}
.y199{bottom:241.368532pt;}
.y2f{bottom:241.746266pt;}
.y79{bottom:242.078800pt;}
.y25c{bottom:243.030533pt;}
.y245{bottom:243.074000pt;}
.yb1{bottom:243.074133pt;}
.y41b{bottom:243.075600pt;}
.y112{bottom:243.075733pt;}
.y42b{bottom:243.076800pt;}
.y3ab{bottom:244.407462pt;}
.y366{bottom:244.418899pt;}
.y1ec{bottom:248.065467pt;}
.y31f{bottom:248.401984pt;}
.y204{bottom:252.057065pt;}
.y198{bottom:253.341999pt;}
.y2e{bottom:253.719733pt;}
.y194{bottom:254.287600pt;}
.y191{bottom:254.288400pt;}
.y18e{bottom:254.289200pt;}
.y18b{bottom:254.290000pt;}
.y188{bottom:254.290800pt;}
.y185{bottom:254.291600pt;}
.y182{bottom:254.292400pt;}
.y24{bottom:256.048997pt;}
.y3aa{bottom:256.380929pt;}
.y25b{bottom:258.330133pt;}
.y244{bottom:258.373600pt;}
.yb0{bottom:258.373733pt;}
.y41a{bottom:258.375200pt;}
.y111{bottom:258.375333pt;}
.ye4{bottom:258.376000pt;}
.y42a{bottom:258.376400pt;}
.y31e{bottom:260.375451pt;}
.y365{bottom:260.383832pt;}
.y193{bottom:263.621200pt;}
.y190{bottom:263.622000pt;}
.y18d{bottom:263.622800pt;}
.y18a{bottom:263.623600pt;}
.y187{bottom:263.624400pt;}
.y184{bottom:263.625200pt;}
.y180{bottom:263.625733pt;}
.y181{bottom:263.626000pt;}
.y1eb{bottom:264.030267pt;}
.y203{bottom:264.030532pt;}
.y197{bottom:265.315466pt;}
.y78{bottom:265.360667pt;}
.y2d{bottom:265.693200pt;}
.y3a9{bottom:268.354396pt;}
.y23{bottom:271.348131pt;}
.y31d{bottom:272.348918pt;}
.y364{bottom:272.357299pt;}
.y192{bottom:272.954800pt;}
.y18f{bottom:272.955600pt;}
.y18c{bottom:272.956400pt;}
.y189{bottom:272.957200pt;}
.y186{bottom:272.958000pt;}
.y183{bottom:272.958800pt;}
.y17e{bottom:272.959067pt;}
.y17f{bottom:272.959333pt;}
.y25a{bottom:273.629733pt;}
.y243{bottom:273.673200pt;}
.yaf{bottom:273.673333pt;}
.y419{bottom:273.674800pt;}
.y110{bottom:273.674933pt;}
.ye1{bottom:273.675200pt;}
.y29f{bottom:273.675467pt;}
.ye3{bottom:273.675600pt;}
.y429{bottom:273.676000pt;}
.y202{bottom:276.003999pt;}
.y196{bottom:277.288933pt;}
.ye2{bottom:277.999333pt;}
.y1ea{bottom:279.994800pt;}
.y17d{bottom:282.292667pt;}
.y3a8{bottom:284.319329pt;}
.y31c{bottom:284.322385pt;}
.y363{bottom:284.330766pt;}
.y22{bottom:286.647266pt;}
.y174{bottom:287.190000pt;}
.y201{bottom:287.977466pt;}
.y259{bottom:288.929333pt;}
.y242{bottom:288.972800pt;}
.yae{bottom:288.972933pt;}
.y418{bottom:288.974400pt;}
.y10f{bottom:288.974533pt;}
.ye0{bottom:288.974800pt;}
.y29c{bottom:288.974933pt;}
.y29e{bottom:288.975067pt;}
.y428{bottom:288.975600pt;}
.y195{bottom:289.262400pt;}
.y29d{bottom:293.298933pt;}
.y1e9{bottom:295.959733pt;}
.y3a7{bottom:296.292796pt;}
.y31b{bottom:296.295852pt;}
.y362{bottom:296.304233pt;}
.y432{bottom:297.789067pt;}
.y200{bottom:299.950933pt;}
.y172{bottom:300.391333pt;}
.y21{bottom:301.946400pt;}
.y1ff{bottom:303.609467pt;}
.y258{bottom:304.228933pt;}
.y241{bottom:304.272400pt;}
.yad{bottom:304.272533pt;}
.y417{bottom:304.274000pt;}
.y10e{bottom:304.274133pt;}
.ydf{bottom:304.274400pt;}
.y29b{bottom:304.274533pt;}
.y2bc{bottom:304.274667pt;}
.y427{bottom:304.275200pt;}
.y3a6{bottom:308.266263pt;}
.y31a{bottom:308.269319pt;}
.y361{bottom:308.277700pt;}
.y2bb{bottom:308.598400pt;}
.y1e8{bottom:311.924400pt;}
.y1fe{bottom:315.252332pt;}
.y171{bottom:315.536667pt;}
.y257{bottom:319.528533pt;}
.y240{bottom:319.572000pt;}
.yac{bottom:319.572133pt;}
.y416{bottom:319.573600pt;}
.y77{bottom:319.573733pt;}
.yde{bottom:319.574000pt;}
.y29a{bottom:319.574133pt;}
.y426{bottom:319.574800pt;}
.y3a5{bottom:320.239730pt;}
.y319{bottom:320.242786pt;}
.y360{bottom:320.251167pt;}
.y1fd{bottom:327.225799pt;}
.y1e7{bottom:327.888934pt;}
.y3a4{bottom:332.213196pt;}
.y318{bottom:332.216253pt;}
.y35f{bottom:332.224634pt;}
.y20{bottom:332.548326pt;}
.y256{bottom:334.828133pt;}
.y23f{bottom:334.871600pt;}
.yab{bottom:334.871733pt;}
.y298{bottom:334.873067pt;}
.y415{bottom:334.873200pt;}
.y76{bottom:334.873333pt;}
.ydd{bottom:334.873600pt;}
.y425{bottom:334.874400pt;}
.y299{bottom:339.197467pt;}
.y1fc{bottom:339.199265pt;}
.y1e6{bottom:343.853867pt;}
.y317{bottom:344.189720pt;}
.y35e{bottom:344.198101pt;}
.y1f{bottom:347.847461pt;}
.y3a3{bottom:348.178130pt;}
.y255{bottom:350.127733pt;}
.y23e{bottom:350.171200pt;}
.yaa{bottom:350.171333pt;}
.y297{bottom:350.172667pt;}
.y414{bottom:350.172800pt;}
.y75{bottom:350.172933pt;}
.ydb{bottom:350.173200pt;}
.y424{bottom:350.174000pt;}
.y1fb{bottom:351.172732pt;}
.ydc{bottom:354.497067pt;}
.y316{bottom:356.163187pt;}
.y17c{bottom:357.292667pt;}
.y17b{bottom:357.292933pt;}
.y173{bottom:357.470000pt;}
.y1e5{bottom:359.818667pt;}
.y3a2{bottom:360.151596pt;}
.y35d{bottom:360.163034pt;}
.y1fa{bottom:363.146199pt;}
.y1e{bottom:363.146595pt;}
.y254{bottom:365.427333pt;}
.y23d{bottom:365.470800pt;}
.ya9{bottom:365.470933pt;}
.y296{bottom:365.472267pt;}
.y413{bottom:365.472400pt;}
.y74{bottom:365.472533pt;}
.yd8{bottom:365.472667pt;}
.yda{bottom:365.472800pt;}
.y423{bottom:365.473600pt;}
.y170{bottom:366.318000pt;}
.y315{bottom:368.136653pt;}
.yd9{bottom:369.796533pt;}
.y3a1{bottom:372.125063pt;}
.y1f9{bottom:375.119666pt;}
.y1e4{bottom:375.783067pt;}
.y1d{bottom:378.445729pt;}
.y314{bottom:380.110120pt;}
.y253{bottom:380.726933pt;}
.y251{bottom:380.727301pt;}
.y23c{bottom:380.770400pt;}
.ya8{bottom:380.770533pt;}
.y295{bottom:380.771867pt;}
.y412{bottom:380.772000pt;}
.y73{bottom:380.772133pt;}
.yd6{bottom:380.772267pt;}
.y422{bottom:380.773200pt;}
.y3a0{bottom:384.098530pt;}
.y35c{bottom:384.109968pt;}
.y252{bottom:385.050667pt;}
.yd7{bottom:385.096133pt;}
.y1e3{bottom:391.748000pt;}
.y313{bottom:392.083587pt;}
.y1c{bottom:393.744864pt;}
.y250{bottom:396.026901pt;}
.y23b{bottom:396.070000pt;}
.ya7{bottom:396.070133pt;}
.y294{bottom:396.071467pt;}
.y411{bottom:396.071600pt;}
.y72{bottom:396.071733pt;}
.yd5{bottom:396.071867pt;}
.y39f{bottom:396.071997pt;}
.y421{bottom:396.072800pt;}
.y35b{bottom:396.083435pt;}
.y312{bottom:404.057054pt;}
.y1e2{bottom:407.712800pt;}
.y35a{bottom:408.056902pt;}
.y1b{bottom:409.043998pt;}
.yd4{bottom:410.373600pt;}
.y24f{bottom:411.326501pt;}
.y23a{bottom:411.369600pt;}
.ya6{bottom:411.369733pt;}
.y293{bottom:411.371067pt;}
.y410{bottom:411.371200pt;}
.y71{bottom:411.371333pt;}
.y420{bottom:411.372400pt;}
.y39e{bottom:412.036930pt;}
.y311{bottom:416.030521pt;}
.y17a{bottom:416.514533pt;}
.y16f{bottom:417.100533pt;}
.y1e1{bottom:423.677334pt;}
.y39d{bottom:424.010397pt;}
.y359{bottom:424.021835pt;}
.y1a{bottom:424.343132pt;}
.y24e{bottom:426.626101pt;}
.y239{bottom:426.669200pt;}
.ya5{bottom:426.669333pt;}
.y292{bottom:426.670667pt;}
.y6f{bottom:426.670800pt;}
.y41f{bottom:426.672000pt;}
.y70{bottom:430.994667pt;}
.y310{bottom:431.995454pt;}
.y10d{bottom:433.655467pt;}
.y39c{bottom:435.983864pt;}
.y358{bottom:435.995302pt;}
.y19{bottom:439.642267pt;}
.y24d{bottom:441.925701pt;}
.yd3{bottom:441.968533pt;}
.y238{bottom:441.968800pt;}
.ya4{bottom:441.968933pt;}
.y6c{bottom:441.970267pt;}
.y6e{bottom:441.970400pt;}
.y30f{bottom:443.968921pt;}
.y6d{bottom:446.294133pt;}
.y39b{bottom:447.957331pt;}
.y357{bottom:447.968769pt;}
.y179{bottom:452.292933pt;}
.y1e0{bottom:455.606933pt;}
.y30e{bottom:455.942388pt;}
.y24c{bottom:457.225301pt;}
.yd2{bottom:457.268133pt;}
.y237{bottom:457.268400pt;}
.ya3{bottom:457.268533pt;}
.y6b{bottom:457.269867pt;}
.y39a{bottom:459.930798pt;}
.y356{bottom:459.942236pt;}
.y40f{bottom:463.256667pt;}
.y16e{bottom:467.882400pt;}
.y30d{bottom:467.915855pt;}
.y18{bottom:470.241666pt;}
.y1df{bottom:471.571800pt;}
.y355{bottom:471.915703pt;}
.yd1{bottom:472.567733pt;}
.y236{bottom:472.568000pt;}
.ya2{bottom:472.568133pt;}
.y68{bottom:472.569200pt;}
.y6a{bottom:472.569467pt;}
.y399{bottom:475.895731pt;}
.y177{bottom:476.070133pt;}
.y178{bottom:476.070533pt;}
.y69{bottom:476.893200pt;}
.y30c{bottom:479.889322pt;}
.y354{bottom:483.889170pt;}
.y17{bottom:485.540800pt;}
.y1dc{bottom:485.873467pt;}
.yd0{bottom:487.867333pt;}
.y235{bottom:487.867600pt;}
.ya1{bottom:487.867733pt;}
.y67{bottom:487.868800pt;}
.y398{bottom:487.869198pt;}
.y10c{bottom:487.870800pt;}
.y28c{bottom:488.821732pt;}
.y30b{bottom:491.862789pt;}
.y1dd{bottom:495.851201pt;}
.y353{bottom:495.862637pt;}
.y397{bottom:499.842665pt;}
.y28b{bottom:500.795199pt;}
.ycf{bottom:503.166933pt;}
.y234{bottom:503.167200pt;}
.ya0{bottom:503.167333pt;}
.y66{bottom:503.168400pt;}
.y10b{bottom:503.170400pt;}
.y30a{bottom:503.836256pt;}
.y176{bottom:506.292533pt;}
.y175{bottom:506.292933pt;}
.y352{bottom:507.836104pt;}
.y1de{bottom:510.152868pt;}
.y396{bottom:511.816132pt;}
.y28a{bottom:512.768666pt;}
.y309{bottom:515.809723pt;}
.y16{bottom:516.140665pt;}
.yce{bottom:518.466533pt;}
.y233{bottom:518.466800pt;}
.y9f{bottom:518.466933pt;}
.y65{bottom:518.468000pt;}
.y10a{bottom:518.470000pt;}
.y16d{bottom:518.664933pt;}
.y351{bottom:519.809571pt;}
.y40e{bottom:523.789600pt;}
.y289{bottom:524.742133pt;}
.y395{bottom:527.781065pt;}
.y308{bottom:527.783190pt;}
.y1da{bottom:530.906400pt;}
.y15{bottom:531.439799pt;}
.ycd{bottom:533.766133pt;}
.y232{bottom:533.766400pt;}
.y9e{bottom:533.766533pt;}
.y2ba{bottom:533.767333pt;}
.y62{bottom:533.767467pt;}
.y64{bottom:533.767600pt;}
.y109{bottom:533.769600pt;}
.y1db{bottom:534.897600pt;}
.y350{bottom:535.774504pt;}
.y288{bottom:536.715600pt;}
.y63{bottom:538.091333pt;}
.y394{bottom:539.754532pt;}
.y307{bottom:539.756657pt;}
.y16c{bottom:544.410667pt;}
.y14{bottom:546.738933pt;}
.y34f{bottom:547.747971pt;}
.ycc{bottom:549.065733pt;}
.y231{bottom:549.066000pt;}
.y9d{bottom:549.066133pt;}
.y2b9{bottom:549.066933pt;}
.y61{bottom:549.067067pt;}
.y108{bottom:549.069200pt;}
.y393{bottom:551.727999pt;}
.y306{bottom:551.730124pt;}
.y3d2{bottom:555.719727pt;}
.y34e{bottom:559.721438pt;}
.y392{bottom:563.701466pt;}
.y305{bottom:563.703591pt;}
.y284{bottom:563.905867pt;}
.ycb{bottom:564.365333pt;}
.y230{bottom:564.365600pt;}
.y9c{bottom:564.365733pt;}
.y5e{bottom:564.365867pt;}
.y2b8{bottom:564.366533pt;}
.y60{bottom:564.366667pt;}
.y107{bottom:564.368800pt;}
.y3d1{bottom:567.693194pt;}
.y5f{bottom:568.690400pt;}
.y34d{bottom:571.694905pt;}
.y304{bottom:575.677058pt;}
.y3f1{bottom:575.677989pt;}
.y282{bottom:577.107200pt;}
.y13{bottom:577.339130pt;}
.y16b{bottom:577.870800pt;}
.yca{bottom:579.664933pt;}
.y22f{bottom:579.665200pt;}
.y9b{bottom:579.665333pt;}
.y5d{bottom:579.665467pt;}
.y2b5{bottom:579.665867pt;}
.y2b7{bottom:579.666133pt;}
.y391{bottom:579.666399pt;}
.y3d0{bottom:579.666661pt;}
.y106{bottom:579.668400pt;}
.y16a{bottom:581.529467pt;}
.y34c{bottom:583.668372pt;}
.y2b6{bottom:583.989867pt;}
.y147{bottom:584.190267pt;}
.y303{bottom:587.650525pt;}
.y3f0{bottom:587.651456pt;}
.y281{bottom:589.807200pt;}
.y390{bottom:591.639866pt;}
.y3cf{bottom:591.640128pt;}
.y12{bottom:592.638265pt;}
.y169{bottom:593.170665pt;}
.yc9{bottom:594.964533pt;}
.y22e{bottom:594.964800pt;}
.y9a{bottom:594.964933pt;}
.y5c{bottom:594.965067pt;}
.y2b4{bottom:594.965467pt;}
.y105{bottom:594.968000pt;}
.y34b{bottom:595.641839pt;}
.y1d9{bottom:596.829332pt;}
.y302{bottom:599.623992pt;}
.y3ef{bottom:599.624923pt;}
.y146{bottom:600.154933pt;}
.y1c2{bottom:603.148400pt;}
.y38f{bottom:603.613333pt;}
.y3ce{bottom:603.613595pt;}
.y168{bottom:605.144132pt;}
.y1c3{bottom:606.806933pt;}
.y11{bottom:607.937399pt;}
.y1d8{bottom:608.802799pt;}
.yc8{bottom:610.264133pt;}
.y22d{bottom:610.264400pt;}
.y99{bottom:610.264533pt;}
.y5b{bottom:610.264667pt;}
.y2b3{bottom:610.265067pt;}
.y104{bottom:610.267600pt;}
.y301{bottom:611.597459pt;}
.y34a{bottom:611.606772pt;}
.y280{bottom:612.913867pt;}
.y38e{bottom:615.586800pt;}
.y3ee{bottom:615.589856pt;}
.y145{bottom:616.119733pt;}
.y167{bottom:617.117599pt;}
.y283{bottom:618.473867pt;}
.y1c1{bottom:619.113067pt;}
.y40d{bottom:619.578263pt;}
.y3cd{bottom:619.578528pt;}
.y1d7{bottom:620.776266pt;}
.y10{bottom:623.236533pt;}
.y300{bottom:623.570926pt;}
.y349{bottom:623.580239pt;}
.yc7{bottom:625.563733pt;}
.y22c{bottom:625.564000pt;}
.y98{bottom:625.564133pt;}
.y5a{bottom:625.564267pt;}
.y2b2{bottom:625.564667pt;}
.y103{bottom:625.567200pt;}
.y3ed{bottom:627.563323pt;}
.y166{bottom:629.091066pt;}
.y40c{bottom:631.551730pt;}
.y3cc{bottom:631.551995pt;}
.y38d{bottom:631.568758pt;}
.y144{bottom:632.084001pt;}
.y1d6{bottom:632.749733pt;}
.y1c0{bottom:633.415066pt;}
.y2ff{bottom:635.544393pt;}
.y348{bottom:635.553705pt;}
.y3ec{bottom:639.536790pt;}
.yc6{bottom:640.863333pt;}
.y22b{bottom:640.863600pt;}
.y97{bottom:640.863733pt;}
.y59{bottom:640.863867pt;}
.y2af{bottom:640.864133pt;}
.y2b1{bottom:640.864267pt;}
.y102{bottom:640.866800pt;}
.y165{bottom:641.064533pt;}
.y27f{bottom:643.285867pt;}
.y1bf{bottom:643.392800pt;}
.y40b{bottom:643.525197pt;}
.y3cb{bottom:643.525462pt;}
.y38c{bottom:643.542225pt;}
.y164{bottom:644.723200pt;}
.y2b0{bottom:645.188000pt;}
.y2fe{bottom:647.517860pt;}
.y347{bottom:647.527172pt;}
.y143{bottom:648.048934pt;}
.y1d5{bottom:648.381733pt;}
.y1be{bottom:653.370534pt;}
.yf{bottom:653.835932pt;}
.y40a{bottom:655.498664pt;}
.y3ca{bottom:655.498929pt;}
.y3eb{bottom:655.501723pt;}
.y38b{bottom:655.515692pt;}
.yc5{bottom:656.162933pt;}
.y22a{bottom:656.163200pt;}
.y96{bottom:656.163333pt;}
.y58{bottom:656.163467pt;}
.y2ae{bottom:656.163733pt;}
.y101{bottom:656.166400pt;}
.y163{bottom:656.364665pt;}
.y2fd{bottom:659.491327pt;}
.y346{bottom:659.500639pt;}
.y1d4{bottom:660.023464pt;}
.y140{bottom:664.013134pt;}
.y142{bottom:664.013867pt;}
.y27e{bottom:666.057867pt;}
.y3ea{bottom:667.475190pt;}
.y141{bottom:667.672400pt;}
.y162{bottom:668.338132pt;}
.ye{bottom:669.135067pt;}
.y1bc{bottom:669.335467pt;}
.yc4{bottom:671.462533pt;}
.y229{bottom:671.462800pt;}
.y95{bottom:671.462933pt;}
.y57{bottom:671.463067pt;}
.y2ad{bottom:671.463333pt;}
.y409{bottom:671.463597pt;}
.y3c9{bottom:671.463862pt;}
.y2fc{bottom:671.464794pt;}
.y100{bottom:671.466000pt;}
.y345{bottom:671.474106pt;}
.y38a{bottom:671.480625pt;}
.y1d3{bottom:671.996931pt;}
.y1bd{bottom:672.994000pt;}
.y2ac{bottom:675.787067pt;}
.y3e9{bottom:679.448657pt;}
.y13f{bottom:679.978067pt;}
.y161{bottom:680.311599pt;}
.y408{bottom:683.437064pt;}
.y3c8{bottom:683.437329pt;}
.y2fb{bottom:683.438261pt;}
.y344{bottom:683.447573pt;}
.y389{bottom:683.454092pt;}
.y1d2{bottom:683.970398pt;}
.y1bb{bottom:685.300133pt;}
.yc3{bottom:686.762133pt;}
.y228{bottom:686.762400pt;}
.y94{bottom:686.762533pt;}
.y56{bottom:686.762667pt;}
.yff{bottom:686.765600pt;}
.y27d{bottom:688.897867pt;}
.y3e8{bottom:691.422124pt;}
.y160{bottom:692.285065pt;}
.y407{bottom:695.410531pt;}
.y3c7{bottom:695.410796pt;}
.y2fa{bottom:695.411727pt;}
.y343{bottom:695.421040pt;}
.y388{bottom:695.427559pt;}
.y13e{bottom:695.943000pt;}
.y1d1{bottom:695.943865pt;}
.y1ba{bottom:699.601866pt;}
.yd{bottom:699.734931pt;}
.yc2{bottom:702.061733pt;}
.y227{bottom:702.062000pt;}
.y93{bottom:702.062133pt;}
.y55{bottom:702.062267pt;}
.yfe{bottom:702.065200pt;}
.y15f{bottom:704.258532pt;}
.y406{bottom:707.383998pt;}
.y3c6{bottom:707.384263pt;}
.y2f9{bottom:707.385194pt;}
.y3e7{bottom:707.387057pt;}
.y342{bottom:707.394507pt;}
.y387{bottom:707.401026pt;}
.y1d0{bottom:707.917332pt;}
.y1b9{bottom:709.579600pt;}
.y13d{bottom:711.907933pt;}
.y27c{bottom:712.003200pt;}
.y2c{bottom:712.705799pt;}
.yc{bottom:715.034066pt;}
.y15e{bottom:716.231999pt;}
.yc1{bottom:717.361333pt;}
.y226{bottom:717.361600pt;}
.y92{bottom:717.361733pt;}
.y54{bottom:717.361867pt;}
.yfd{bottom:717.364800pt;}
.y405{bottom:719.357465pt;}
.y3c5{bottom:719.357730pt;}
.y2f8{bottom:719.358661pt;}
.y3e6{bottom:719.360524pt;}
.y341{bottom:719.367974pt;}
.y386{bottom:719.374493pt;}
.y1cf{bottom:719.890799pt;}
.y1b7{bottom:725.544533pt;}
.y286{bottom:725.648733pt;}
.y2b{bottom:726.009467pt;}
.y13c{bottom:727.872866pt;}
.y15d{bottom:728.205466pt;}
.y1b8{bottom:729.203067pt;}
.yb{bottom:730.334064pt;}
.y2f7{bottom:731.332128pt;}
.y3e5{bottom:731.333991pt;}
.y340{bottom:731.341441pt;}
.y1ce{bottom:731.864265pt;}
.yc0{bottom:732.660933pt;}
.y225{bottom:732.661200pt;}
.y91{bottom:732.661333pt;}
.y53{bottom:732.661467pt;}
.yfc{bottom:732.664400pt;}
.y285{bottom:734.981867pt;}
.y287{bottom:735.271200pt;}
.y404{bottom:735.322398pt;}
.y3c4{bottom:735.322663pt;}
.y385{bottom:735.339426pt;}
.y15c{bottom:740.178933pt;}
.y1b6{bottom:741.509333pt;}
.y13b{bottom:742.174533pt;}
.y2f6{bottom:743.305595pt;}
.y3e4{bottom:743.307458pt;}
.y33f{bottom:743.314908pt;}
.y15b{bottom:743.837467pt;}
.y1cd{bottom:743.837732pt;}
.y2a{bottom:747.295733pt;}
.y403{bottom:747.295865pt;}
.y3c3{bottom:747.296130pt;}
.y384{bottom:747.312893pt;}
.y51{bottom:747.960533pt;}
.y224{bottom:747.960800pt;}
.y90{bottom:747.960933pt;}
.yfb{bottom:747.964000pt;}
.y139{bottom:752.152267pt;}
.y52{bottom:752.284800pt;}
.y33e{bottom:755.288375pt;}
.y278{bottom:755.461867pt;}
.y15a{bottom:755.478798pt;}
.y13a{bottom:755.811067pt;}
.y1cc{bottom:755.811199pt;}
.y402{bottom:759.269332pt;}
.y3c2{bottom:759.269597pt;}
.y2f5{bottom:759.270528pt;}
.y3e3{bottom:759.272391pt;}
.y383{bottom:759.286360pt;}
.y8f{bottom:762.262667pt;}
.y50{bottom:763.260133pt;}
.y223{bottom:763.260400pt;}
.yfa{bottom:763.263600pt;}
.y1b5{bottom:765.788800pt;}
.y33d{bottom:767.261842pt;}
.y159{bottom:767.452265pt;}
.y1cb{bottom:767.784666pt;}
.y136{bottom:768.116934pt;}
.y138{bottom:768.117200pt;}
.y276{bottom:768.661867pt;}
.y401{bottom:771.242799pt;}
.y3c1{bottom:771.243064pt;}
.y2f4{bottom:771.243995pt;}
.y3e2{bottom:771.245858pt;}
.y382{bottom:771.259827pt;}
.y137{bottom:771.775733pt;}
.ya{bottom:777.896196pt;}
.y220{bottom:778.559333pt;}
.y291{bottom:778.559600pt;}
.y4f{bottom:778.559733pt;}
.y222{bottom:778.560000pt;}
.yf9{bottom:778.563200pt;}
.y33c{bottom:779.235309pt;}
.y158{bottom:779.425732pt;}
.y1ca{bottom:779.758133pt;}
.y275{bottom:781.363200pt;}
.y1b3{bottom:781.753733pt;}
.y221{bottom:782.883733pt;}
.y400{bottom:783.216265pt;}
.y3c0{bottom:783.216531pt;}
.y2f3{bottom:783.217462pt;}
.y3e1{bottom:783.219325pt;}
.y381{bottom:783.233294pt;}
.y1c9{bottom:783.416667pt;}
.y133{bottom:784.081734pt;}
.y135{bottom:784.081867pt;}
.y1b4{bottom:785.412267pt;}
.y134{bottom:787.740533pt;}
.y9{bottom:791.199864pt;}
.y33b{bottom:791.208776pt;}
.y157{bottom:791.399199pt;}
.y21f{bottom:793.858933pt;}
.y290{bottom:793.859200pt;}
.y4e{bottom:793.859333pt;}
.y2ab{bottom:793.859600pt;}
.yf8{bottom:793.862800pt;}
.y1c8{bottom:795.057733pt;}
.y3bf{bottom:795.189998pt;}
.y2f2{bottom:795.190929pt;}
.y3e0{bottom:795.192792pt;}
.y1b2{bottom:797.718400pt;}
.y3ff{bottom:799.181199pt;}
.y380{bottom:799.198227pt;}
.y130{bottom:800.046001pt;}
.y132{bottom:800.046667pt;}
.y274{bottom:801.980000pt;}
.y277{bottom:803.166800pt;}
.y33a{bottom:803.182243pt;}
.y156{bottom:803.372666pt;}
.y131{bottom:803.705200pt;}
.y8{bottom:804.503531pt;}
.y1c7{bottom:807.031200pt;}
.y2f1{bottom:807.164396pt;}
.y21e{bottom:809.158533pt;}
.y28f{bottom:809.158800pt;}
.y4d{bottom:809.158933pt;}
.yf7{bottom:809.162400pt;}
.y1c6{bottom:810.689733pt;}
.y3fe{bottom:811.154665pt;}
.y3be{bottom:811.154931pt;}
.y3df{bottom:811.157725pt;}
.y37f{bottom:811.171694pt;}
.y1b0{bottom:812.020133pt;}
.y2aa{bottom:813.482800pt;}
.y339{bottom:815.155710pt;}
.y155{bottom:815.346133pt;}
.y1b1{bottom:815.678667pt;}
.y12f{bottom:816.010934pt;}
.y7{bottom:817.807199pt;}
.y2f0{bottom:819.137863pt;}
.y1af{bottom:821.997867pt;}
.y1c5{bottom:822.331667pt;}
.y3fd{bottom:823.128132pt;}
.y3bd{bottom:823.128398pt;}
.y3de{bottom:823.131192pt;}
.y37e{bottom:823.145161pt;}
.y21d{bottom:824.458133pt;}
.y28e{bottom:824.458400pt;}
.y4c{bottom:824.458533pt;}
.yf6{bottom:824.462000pt;}
.y338{bottom:827.129177pt;}
.y154{bottom:827.319600pt;}
.y273{bottom:829.263200pt;}
.y153{bottom:830.978267pt;}
.y6{bottom:831.110866pt;}
.y2ef{bottom:831.111330pt;}
.y12e{bottom:831.975867pt;}
.y1c4{bottom:834.305134pt;}
.y3fc{bottom:835.101599pt;}
.y3bc{bottom:835.101865pt;}
.y3dd{bottom:835.104659pt;}
.y37d{bottom:835.118628pt;}
.y1ae{bottom:837.962800pt;}
.y1ac{bottom:837.965593pt;}
.y337{bottom:839.102644pt;}
.y21c{bottom:839.757733pt;}
.y2a9{bottom:839.757867pt;}
.y4a{bottom:839.758000pt;}
.y8e{bottom:839.758133pt;}
.yf5{bottom:839.761600pt;}
.y1ad{bottom:841.621467pt;}
.y152{bottom:842.619466pt;}
.y2ee{bottom:843.084797pt;}
.y4b{bottom:844.081867pt;}
.y5{bottom:844.414533pt;}
.y3bb{bottom:847.075332pt;}
.y3dc{bottom:847.078126pt;}
.y37c{bottom:847.092095pt;}
.y12d{bottom:847.940800pt;}
.y272{bottom:850.213733pt;}
.y3fb{bottom:851.066532pt;}
.y336{bottom:851.076111pt;}
.y1ab{bottom:853.930526pt;}
.ybf{bottom:854.059867pt;}
.y151{bottom:854.592933pt;}
.y8c{bottom:855.057200pt;}
.y21b{bottom:855.057333pt;}
.y2a8{bottom:855.057467pt;}
.y49{bottom:855.057600pt;}
.y2ed{bottom:855.058264pt;}
.yf4{bottom:855.061200pt;}
.y8d{bottom:859.381467pt;}
.y3fa{bottom:863.039999pt;}
.y3ba{bottom:863.040265pt;}
.y3db{bottom:863.043059pt;}
.y335{bottom:863.049578pt;}
.y37b{bottom:863.057028pt;}
.y12c{bottom:863.905467pt;}
.y150{bottom:866.566400pt;}
.y2ec{bottom:867.031731pt;}
.y1aa{bottom:869.895459pt;}
.y8b{bottom:870.356800pt;}
.y21a{bottom:870.356933pt;}
.y2a7{bottom:870.357067pt;}
.y48{bottom:870.357200pt;}
.yf3{bottom:870.360800pt;}
.y271{bottom:871.030133pt;}
.y3f9{bottom:875.013466pt;}
.y3b9{bottom:875.013732pt;}
.y4{bottom:875.014590pt;}
.y3da{bottom:875.016526pt;}
.y334{bottom:875.023045pt;}
.y37a{bottom:875.030495pt;}
.y14f{bottom:878.539867pt;}
.y2eb{bottom:879.005198pt;}
.y12b{bottom:879.870133pt;}
.y14e{bottom:882.198400pt;}
.y46{bottom:885.656267pt;}
.y8a{bottom:885.656400pt;}
.y219{bottom:885.656533pt;}
.y2a6{bottom:885.656667pt;}
.yf2{bottom:885.660400pt;}
.y1a9{bottom:885.860392pt;}
.y3f8{bottom:886.986933pt;}
.y3b8{bottom:886.987199pt;}
.y3d9{bottom:886.989993pt;}
.y333{bottom:886.996512pt;}
.y379{bottom:887.003962pt;}
.y47{bottom:889.980533pt;}
.y2ea{bottom:890.978665pt;}
.y270{bottom:891.114133pt;}
.y14d{bottom:893.841798pt;}
.y12a{bottom:895.834733pt;}
.y3f7{bottom:898.960400pt;}
.y3b7{bottom:898.960666pt;}
.y3d8{bottom:898.963460pt;}
.y332{bottom:898.969979pt;}
.y378{bottom:898.977429pt;}
.y19f{bottom:900.159265pt;}
.y1a2{bottom:900.160196pt;}
.y1a5{bottom:900.161128pt;}
.y1a8{bottom:900.162059pt;}
.y45{bottom:900.955867pt;}
.y89{bottom:900.956000pt;}
.y218{bottom:900.956133pt;}
.y2a5{bottom:900.956267pt;}
.yf1{bottom:900.960000pt;}
.y2e9{bottom:902.952132pt;}
.y3{bottom:904.282695pt;}
.y27a{bottom:904.760067pt;}
.y2a4{bottom:905.280000pt;}
.y14c{bottom:905.815265pt;}
.y19e{bottom:910.136999pt;}
.y1a1{bottom:910.137930pt;}
.y1a4{bottom:910.138862pt;}
.y1a7{bottom:910.139793pt;}
.y3d7{bottom:910.936927pt;}
.y377{bottom:910.950896pt;}
.y129{bottom:911.799666pt;}
.y279{bottom:914.093200pt;}
.y27b{bottom:914.383600pt;}
.y3f6{bottom:914.925333pt;}
.y2e8{bottom:914.925599pt;}
.y331{bottom:914.934912pt;}
.y44{bottom:916.255467pt;}
.y88{bottom:916.255600pt;}
.y217{bottom:916.255733pt;}
.yf0{bottom:916.259600pt;}
.y14b{bottom:917.788732pt;}
.y1a0{bottom:920.115664pt;}
.y1a3{bottom:920.116596pt;}
.y1a6{bottom:920.117527pt;}
.y28d{bottom:920.579600pt;}
.y127{bottom:926.101333pt;}
.y2e7{bottom:926.899066pt;}
.y3d6{bottom:926.901860pt;}
.y3f5{bottom:926.903722pt;}
.y330{bottom:926.908379pt;}
.y376{bottom:926.915829pt;}
.y14a{bottom:929.762199pt;}
.y43{bottom:931.555067pt;}
.y41{bottom:931.555200pt;}
.y2a2{bottom:931.558400pt;}
.yef{bottom:931.559200pt;}
.y2{bottom:933.550800pt;}
.y19d{bottom:934.416400pt;}
.y2a3{bottom:935.879067pt;}
.y128{bottom:936.079067pt;}
.y2e6{bottom:938.872533pt;}
.y3d5{bottom:938.875327pt;}
.y3f4{bottom:938.877189pt;}
.y32f{bottom:938.881846pt;}
.y375{bottom:938.889296pt;}
.y149{bottom:941.735666pt;}
.y26f{bottom:941.866066pt;}
.y216{bottom:944.526667pt;}
.y42{bottom:946.854667pt;}
.y87{bottom:946.854800pt;}
.y2a1{bottom:946.858000pt;}
.yee{bottom:946.858800pt;}
.y2e5{bottom:950.846000pt;}
.y3d4{bottom:950.848794pt;}
.y3f3{bottom:950.850656pt;}
.y32e{bottom:950.855313pt;}
.y374{bottom:950.862763pt;}
.y148{bottom:953.709133pt;}
.y126{bottom:955.169733pt;}
.y19c{bottom:959.160933pt;}
.y86{bottom:961.156533pt;}
.ybe{bottom:962.154267pt;}
.y2a0{bottom:962.157600pt;}
.yed{bottom:962.158400pt;}
.y3d{bottom:962.819467pt;}
.y3d3{bottom:962.822261pt;}
.y3f2{bottom:962.824123pt;}
.y32d{bottom:962.828779pt;}
.y373{bottom:962.836230pt;}
.ybc{bottom:1005.392133pt;}
.y19a{bottom:1005.396232pt;}
.y214{bottom:1005.396466pt;}
.y3b5{bottom:1005.397326pt;}
.y2e3{bottom:1005.399924pt;}
.y3c{bottom:1009.383333pt;}
.hf{height:17.696981pt;}
.h10{height:17.912506pt;}
.hc{height:21.339616pt;}
.h13{height:21.590400pt;}
.h11{height:23.648000pt;}
.h12{height:25.618667pt;}
.he{height:27.528637pt;}
.h6{height:27.863898pt;}
.h3{height:29.854176pt;}
.h4{height:33.831278pt;}
.h5{height:33.834733pt;}
.hb{height:34.143386pt;}
.h7{height:35.825011pt;}
.h1{height:38.937500pt;}
.h9{height:43.000000pt;}
.hd{height:43.785726pt;}
.h2{height:71.649623pt;}
.ha{height:169.161696pt;}
.h8{height:1053.333333pt;}
.h0{height:1056.000000pt;}
.w1{width:802.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:13.333333pt;}
.x7{left:53.948933pt;}
.x2{left:89.869600pt;}
.x57{left:93.859676pt;}
.x6{left:101.843067pt;}
.x5a{left:103.173467pt;}
.x3{left:105.834400pt;}
.x1c{left:109.825600pt;}
.x28{left:115.147067pt;}
.xc{left:121.799067pt;}
.x4a{left:125.399067pt;}
.x4b{left:133.399067pt;}
.x9{left:137.574359pt;}
.x59{left:148.538800pt;}
.x2c{left:157.340533pt;}
.x29{left:159.385867pt;}
.x70{left:160.901333pt;}
.x2d{left:162.592667pt;}
.x4c{left:163.521467pt;}
.x2a{left:164.806267pt;}
.x35{left:168.245467pt;}
.x33{left:174.905600pt;}
.x60{left:182.474133pt;}
.x22{left:183.915067pt;}
.x4d{left:189.131867pt;}
.x34{left:190.320933pt;}
.x71{left:191.399333pt;}
.x62{left:193.050133pt;}
.x23{left:194.745733pt;}
.x1d{left:196.719600pt;}
.x30{left:199.334933pt;}
.x2b{left:200.574800pt;}
.xd{left:202.750533pt;}
.x31{left:204.806533pt;}
.x1e{left:206.006400pt;}
.x61{left:209.943467pt;}
.x58{left:213.033467pt;}
.x10{left:217.031733pt;}
.x5b{left:222.346267pt;}
.x11{left:223.842800pt;}
.x17{left:229.777733pt;}
.x53{left:238.242533pt;}
.x5e{left:242.019066pt;}
.x4e{left:245.549467pt;}
.x18{left:247.130133pt;}
.x12{left:249.084533pt;}
.x1{left:253.333333pt;}
.x13{left:255.328933pt;}
.x77{left:261.491600pt;}
.x78{left:271.985333pt;}
.xe{left:275.867467pt;}
.xf{left:289.526533pt;}
.x2e{left:301.965467pt;}
.x54{left:308.507609pt;}
.x83{left:314.706668pt;}
.x1f{left:316.874533pt;}
.x75{left:317.856000pt;}
.x72{left:323.995067pt;}
.x14{left:327.491867pt;}
.x73{left:329.857733pt;}
.x2f{left:333.189516pt;}
.x74{left:337.510800pt;}
.x85{left:338.439867pt;}
.x15{left:340.079067pt;}
.x86{left:343.478933pt;}
.x20{left:348.378267pt;}
.x36{left:353.869733pt;}
.x4f{left:358.385467pt;}
.x37{left:362.124400pt;}
.x38{left:363.335067pt;}
.x39{left:367.733733pt;}
.x21{left:368.915467pt;}
.xb{left:373.534000pt;}
.x76{left:384.610133pt;}
.x5f{left:385.540490pt;}
.x16{left:388.752000pt;}
.x55{left:390.323351pt;}
.xa{left:401.865200pt;}
.x24{left:409.165600pt;}
.x26{left:411.403066pt;}
.x50{left:414.801467pt;}
.x51{left:419.203067pt;}
.x19{left:421.137600pt;}
.x6e{left:424.725733pt;}
.x25{left:429.120000pt;}
.x5d{left:435.209467pt;}
.x6d{left:437.468267pt;}
.x1b{left:441.093600pt;}
.x80{left:444.676533pt;}
.x7c{left:450.677333pt;}
.x47{left:453.509467pt;}
.x41{left:456.954000pt;}
.x42{left:458.732400pt;}
.x7d{left:459.843200pt;}
.x81{left:465.774533pt;}
.x52{left:473.421467pt;}
.x56{left:475.026992pt;}
.x48{left:476.812400pt;}
.x49{left:478.021733pt;}
.x43{left:482.036400pt;}
.x44{left:483.245733pt;}
.x45{left:487.645733pt;}
.x46{left:488.855067pt;}
.x7e{left:490.600133pt;}
.x27{left:494.738657pt;}
.x6c{left:496.582933pt;}
.x6f{left:504.304267pt;}
.x7f{left:512.255333pt;}
.x3e{left:513.761733pt;}
.x3f{left:514.971067pt;}
.x3a{left:517.908400pt;}
.x3b{left:519.119067pt;}
.x40{left:520.580400pt;}
.x3c{left:523.517733pt;}
.x3d{left:524.728400pt;}
.x84{left:527.571200pt;}
.x63{left:536.104000pt;}
.x64{left:545.721333pt;}
.x65{left:557.072267pt;}
.x66{left:564.291733pt;}
.x5{left:568.811333pt;}
.x5c{left:574.136400pt;}
.x32{left:580.787067pt;}
.x4{left:586.106400pt;}
.x7b{left:592.188667pt;}
.x6b{left:594.555333pt;}
.x79{left:600.656000pt;}
.x7a{left:612.090933pt;}
.x82{left:613.564800pt;}
.x69{left:640.267467pt;}
.x6a{left:651.846800pt;}
.x67{left:682.746400pt;}
.x68{left:692.906533pt;}
.x1a{left:718.252667pt;}
}




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