
    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_28e38b6eae6f25605396c76f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230957;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_398406b835150315b2693563.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_3fd4389e107f91cf75f68bf3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402832;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_c3f10c2768de7ba75c8fdccc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.406333;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_5d2b570ec14d726657f92d95.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_2a2876049553bf1e2f8b74f3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.041992;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_5d43dee7674dd12a224525e8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.066406;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_38fe0bd9b5244bed2d399eba.woff')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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_01c33ac90ef536031b499d74.woff')format("woff");}.ff9{font-family:ff9;line-height:0.922852;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_7584744804003dc5e521eedd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.681641;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_df7a2fb6625aa35306d2ed32.woff')format("woff");}.ffb{font-family:ffb;line-height:1.099609;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_c9a555f310c937e58bdfc561.woff')format("woff");}.ffc{font-family:ffc;line-height:0.681641;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_f4c3614ceebcce92d6953382.woff')format("woff");}.ffd{font-family:ffd;line-height:0.681641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-72.000000px;}
.v4{vertical-align:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:13.980000px;}
.v3{vertical-align:16.992000px;}
.v1{vertical-align:29.935200px;}
.v6{vertical-align:72.000000px;}
.ls85{letter-spacing:-10.833000px;}
.ls7c{letter-spacing:-10.143000px;}
.lsfc{letter-spacing:-6.969000px;}
.lsa9{letter-spacing:-6.966000px;}
.ls131{letter-spacing:-6.600000px;}
.lse7{letter-spacing:-6.348000px;}
.ls84{letter-spacing:-6.003000px;}
.ls41{letter-spacing:-5.934000px;}
.lsa7{letter-spacing:-5.796000px;}
.lscf{letter-spacing:-5.016000px;}
.ls86{letter-spacing:-4.554000px;}
.ls53{letter-spacing:-4.200000px;}
.ls10c{letter-spacing:-3.795000px;}
.ls5c{letter-spacing:-3.450000px;}
.lsa8{letter-spacing:-3.402000px;}
.lsa1{letter-spacing:-3.312000px;}
.ls42{letter-spacing:-3.243000px;}
.ls6c{letter-spacing:-3.225000px;}
.ls68{letter-spacing:-3.120000px;}
.lsd2{letter-spacing:-3.105000px;}
.ls78{letter-spacing:-2.850000px;}
.lse2{letter-spacing:-2.829000px;}
.ls5e{letter-spacing:-2.700000px;}
.ls79{letter-spacing:-2.691000px;}
.ls94{letter-spacing:-2.622000px;}
.ls12c{letter-spacing:-2.550000px;}
.ls5d{letter-spacing:-2.520000px;}
.lsa5{letter-spacing:-2.484000px;}
.ls14{letter-spacing:-2.475000px;}
.ls55{letter-spacing:-2.415000px;}
.ls46{letter-spacing:-2.346000px;}
.lsf3{letter-spacing:-2.277000px;}
.lsaa{letter-spacing:-2.214000px;}
.ls45{letter-spacing:-2.208000px;}
.lse1{letter-spacing:-2.139000px;}
.ls61{letter-spacing:-2.100000px;}
.ls91{letter-spacing:-2.070000px;}
.ls65{letter-spacing:-2.040000px;}
.lsfb{letter-spacing:-2.025000px;}
.ls11e{letter-spacing:-2.016000px;}
.ls87{letter-spacing:-2.001000px;}
.ls60{letter-spacing:-1.980000px;}
.lsf2{letter-spacing:-1.932000px;}
.ls107{letter-spacing:-1.863000px;}
.lsd1{letter-spacing:-1.848000px;}
.ls93{letter-spacing:-1.794000px;}
.ls7e{letter-spacing:-1.740000px;}
.ls82{letter-spacing:-1.725000px;}
.ls62{letter-spacing:-1.680000px;}
.ls2d{letter-spacing:-1.656000px;}
.lsc1{letter-spacing:-1.650000px;}
.ls11c{letter-spacing:-1.638000px;}
.lsbf{letter-spacing:-1.620000px;}
.ls92{letter-spacing:-1.587000px;}
.lsce{letter-spacing:-1.584000px;}
.ls7a{letter-spacing:-1.518000px;}
.ls12e{letter-spacing:-1.500000px;}
.ls3f{letter-spacing:-1.449000px;}
.lsb5{letter-spacing:-1.440000px;}
.ls118{letter-spacing:-1.386000px;}
.ls54{letter-spacing:-1.380000px;}
.lscc{letter-spacing:-1.320000px;}
.ls4b{letter-spacing:-1.311000px;}
.lsb6{letter-spacing:-1.260000px;}
.ls40{letter-spacing:-1.242000px;}
.lsad{letter-spacing:-1.188000px;}
.ls17{letter-spacing:-1.173000px;}
.ls130{letter-spacing:-1.140000px;}
.lsea{letter-spacing:-1.134000px;}
.ls70{letter-spacing:-1.104000px;}
.lsd9{letter-spacing:-1.086129px;}
.ls5f{letter-spacing:-1.080000px;}
.ls4c{letter-spacing:-1.035000px;}
.ls116{letter-spacing:-1.008000px;}
.lsab{letter-spacing:-0.972000px;}
.ls47{letter-spacing:-0.966000px;}
.ls63{letter-spacing:-0.960000px;}
.ls122{letter-spacing:-0.945000px;}
.lsaf{letter-spacing:-0.925221px;}
.ls132{letter-spacing:-0.900000px;}
.ls35{letter-spacing:-0.897000px;}
.ls113{letter-spacing:-0.882000px;}
.lse8{letter-spacing:-0.844767px;}
.lsd{letter-spacing:-0.840000px;}
.ls30{letter-spacing:-0.828000px;}
.ls3e{letter-spacing:-0.825000px;}
.ls11b{letter-spacing:-0.819000px;}
.lsd5{letter-spacing:-0.810000px;}
.lsd0{letter-spacing:-0.792000px;}
.ls12f{letter-spacing:-0.780000px;}
.ls6d{letter-spacing:-0.759000px;}
.lsdb{letter-spacing:-0.724086px;}
.ls126{letter-spacing:-0.693000px;}
.ls32{letter-spacing:-0.690000px;}
.ls6{letter-spacing:-0.660000px;}
.ls10f{letter-spacing:-0.630000px;}
.ls81{letter-spacing:-0.621000px;}
.lse0{letter-spacing:-0.603405px;}
.lsa{letter-spacing:-0.600000px;}
.lsb0{letter-spacing:-0.598158px;}
.ls117{letter-spacing:-0.567000px;}
.ls95{letter-spacing:-0.552000px;}
.ls8{letter-spacing:-0.540000px;}
.ls4e{letter-spacing:-0.483000px;}
.lsf0{letter-spacing:-0.442497px;}
.ls11a{letter-spacing:-0.441000px;}
.ls9{letter-spacing:-0.420000px;}
.ls2e{letter-spacing:-0.414000px;}
.lse9{letter-spacing:-0.409266px;}
.ls119{letter-spacing:-0.378000px;}
.lse5{letter-spacing:-0.346302px;}
.ls19{letter-spacing:-0.345000px;}
.ls97{letter-spacing:-0.300000px;}
.ls44{letter-spacing:-0.276000px;}
.lscd{letter-spacing:-0.264000px;}
.lsf1{letter-spacing:-0.244860px;}
.lsa6{letter-spacing:-0.241362px;}
.lsf9{letter-spacing:-0.240000px;}
.lsf4{letter-spacing:-0.220374px;}
.ls83{letter-spacing:-0.207000px;}
.lscb{letter-spacing:-0.201135px;}
.ls6e{letter-spacing:-0.138000px;}
.ls7{letter-spacing:-0.120000px;}
.ls88{letter-spacing:-0.108000px;}
.ls48{letter-spacing:-0.069000px;}
.lsac{letter-spacing:-0.062964px;}
.ls51{letter-spacing:-0.054000px;}
.lsda{letter-spacing:-0.040227px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000300px;}
.ls74{letter-spacing:0.000600px;}
.lsc8{letter-spacing:0.013200px;}
.lsc7{letter-spacing:0.024600px;}
.ls11{letter-spacing:0.025800px;}
.lsc5{letter-spacing:0.030600px;}
.lsf6{letter-spacing:0.040227px;}
.lsc9{letter-spacing:0.049200px;}
.ls1a{letter-spacing:0.054000px;}
.lsc6{letter-spacing:0.054600px;}
.lsb9{letter-spacing:0.060000px;}
.ls6b{letter-spacing:0.069000px;}
.lsdc{letter-spacing:0.094446px;}
.lsdd{letter-spacing:0.108000px;}
.lsf7{letter-spacing:0.125928px;}
.ls18{letter-spacing:0.138000px;}
.ls125{letter-spacing:0.189000px;}
.lsfd{letter-spacing:0.207000px;}
.lsed{letter-spacing:0.225000px;}
.ls73{letter-spacing:0.227700px;}
.lsdf{letter-spacing:0.276000px;}
.ls66{letter-spacing:0.300000px;}
.ls24{letter-spacing:0.340200px;}
.ls39{letter-spacing:0.340800px;}
.ls12b{letter-spacing:0.360000px;}
.lsd4{letter-spacing:0.378000px;}
.ls5b{letter-spacing:0.414000px;}
.ls129{letter-spacing:0.441000px;}
.lsba{letter-spacing:0.450000px;}
.lsbd{letter-spacing:0.480000px;}
.ls7b{letter-spacing:0.483000px;}
.ls21{letter-spacing:0.533400px;}
.ls3b{letter-spacing:0.534000px;}
.ls67{letter-spacing:0.540000px;}
.ls90{letter-spacing:0.552000px;}
.ls25{letter-spacing:0.561000px;}
.lsca{letter-spacing:0.563178px;}
.lsd3{letter-spacing:0.566676px;}
.ls128{letter-spacing:0.567000px;}
.ls10a{letter-spacing:0.600000px;}
.lsa3{letter-spacing:0.614100px;}
.ls6f{letter-spacing:0.621000px;}
.ls112{letter-spacing:0.630000px;}
.ls80{letter-spacing:0.675000px;}
.ls105{letter-spacing:0.690000px;}
.ls1d{letter-spacing:0.747000px;}
.ls106{letter-spacing:0.759000px;}
.ls102{letter-spacing:0.825000px;}
.lseb{letter-spacing:0.828000px;}
.lsd8{letter-spacing:0.900000px;}
.lsae{letter-spacing:0.926400px;}
.lsb2{letter-spacing:0.960000px;}
.ls64{letter-spacing:1.020000px;}
.ls2f{letter-spacing:1.035000px;}
.lsbe{letter-spacing:1.050000px;}
.ls38{letter-spacing:1.064400px;}
.ls23{letter-spacing:1.065000px;}
.ls4{letter-spacing:1.104000px;}
.lsb3{letter-spacing:1.140000px;}
.ls3c{letter-spacing:1.154400px;}
.ls34{letter-spacing:1.173000px;}
.ls115{letter-spacing:1.197000px;}
.ls4a{letter-spacing:1.207500px;}
.ls31{letter-spacing:1.242000px;}
.ls20{letter-spacing:1.251000px;}
.ls2a{letter-spacing:1.251600px;}
.ls15{letter-spacing:1.260000px;}
.ls50{letter-spacing:1.296000px;}
.ls8b{letter-spacing:1.311000px;}
.ls8f{letter-spacing:1.380000px;}
.lsf8{letter-spacing:1.404000px;}
.lsff{letter-spacing:1.425000px;}
.ls8a{letter-spacing:1.460400px;}
.ls3a{letter-spacing:1.464600px;}
.ls27{letter-spacing:1.465200px;}
.ls2b{letter-spacing:1.527000px;}
.ls28{letter-spacing:1.566600px;}
.ls4f{letter-spacing:1.587000px;}
.lsd7{letter-spacing:1.606800px;}
.ls120{letter-spacing:1.764000px;}
.lsc4{letter-spacing:1.772400px;}
.lsde{letter-spacing:1.782000px;}
.ls56{letter-spacing:1.794000px;}
.ls1e{letter-spacing:1.809600px;}
.ls29{letter-spacing:1.810200px;}
.ls124{letter-spacing:1.827000px;}
.ls1f{letter-spacing:1.913400px;}
.ls2c{letter-spacing:1.914000px;}
.ls103{letter-spacing:1.932000px;}
.ls77{letter-spacing:2.000700px;}
.ls26{letter-spacing:2.037600px;}
.ls6a{letter-spacing:2.038200px;}
.lsc3{letter-spacing:2.041200px;}
.ls4d{letter-spacing:2.070000px;}
.lsb4{letter-spacing:2.160000px;}
.lsee{letter-spacing:2.208000px;}
.ls127{letter-spacing:2.268000px;}
.ls75{letter-spacing:2.346000px;}
.ls13{letter-spacing:2.400000px;}
.ls3{letter-spacing:2.592000px;}
.lse3{letter-spacing:2.622000px;}
.ls1c{letter-spacing:2.628600px;}
.ls8d{letter-spacing:2.691000px;}
.ls8e{letter-spacing:2.760000px;}
.ls22{letter-spacing:2.831400px;}
.lse4{letter-spacing:2.967000px;}
.ls104{letter-spacing:3.036000px;}
.ls9c{letter-spacing:3.418800px;}
.ls76{letter-spacing:3.469200px;}
.ls16{letter-spacing:3.696000px;}
.ls9b{letter-spacing:3.742200px;}
.ls8c{letter-spacing:4.071000px;}
.lsb{letter-spacing:4.200000px;}
.ls99{letter-spacing:4.263600px;}
.ls58{letter-spacing:4.372200px;}
.ls43{letter-spacing:4.485000px;}
.ls9d{letter-spacing:4.884000px;}
.ls9a{letter-spacing:4.950000px;}
.ls101{letter-spacing:4.968000px;}
.ls114{letter-spacing:4.977000px;}
.ls10e{letter-spacing:5.040000px;}
.lsa0{letter-spacing:5.676000px;}
.ls11d{letter-spacing:5.733000px;}
.ls5{letter-spacing:5.760000px;}
.ls10{letter-spacing:5.761200px;}
.lsc{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls9f{letter-spacing:6.204000px;}
.ls111{letter-spacing:6.300000px;}
.ls121{letter-spacing:6.426000px;}
.ls98{letter-spacing:6.468000px;}
.ls9e{letter-spacing:6.600000px;}
.ls3d{letter-spacing:6.962100px;}
.ls109{letter-spacing:6.969000px;}
.ls11f{letter-spacing:7.497000px;}
.ls123{letter-spacing:8.001000px;}
.lsa4{letter-spacing:8.160156px;}
.lsef{letter-spacing:8.160756px;}
.ls12d{letter-spacing:8.640000px;}
.ls10d{letter-spacing:8.820000px;}
.ls12{letter-spacing:9.268200px;}
.ls89{letter-spacing:9.522000px;}
.ls10b{letter-spacing:12.213000px;}
.ls36{letter-spacing:12.558000px;}
.ls33{letter-spacing:12.765000px;}
.lsc2{letter-spacing:50.280000px;}
.lsbc{letter-spacing:65.820000px;}
.lsb7{letter-spacing:199.140000px;}
.ls5a{letter-spacing:227.580000px;}
.ls59{letter-spacing:246.660000px;}
.lsfe{letter-spacing:501.005400px;}
.lsf5{letter-spacing:501.530400px;}
.ls100{letter-spacing:501.605400px;}
.ls108{letter-spacing:501.792600px;}
.ls110{letter-spacing:502.314000px;}
.lsbb{letter-spacing:504.438600px;}
.lsfa{letter-spacing:504.447600px;}
.lsd6{letter-spacing:504.580800px;}
.ls7f{letter-spacing:504.787200px;}
.lsb8{letter-spacing:504.989400px;}
.lse6{letter-spacing:505.068600px;}
.lsec{letter-spacing:505.255800px;}
.ls12a{letter-spacing:505.381800px;}
.lsa2{letter-spacing:505.424400px;}
.lsb1{letter-spacing:505.454400px;}
.ls96{letter-spacing:505.724400px;}
.lsc0{letter-spacing:507.130800px;}
.ls37{letter-spacing:512.184000px;}
.lse{letter-spacing:513.811800px;}
.ls72{letter-spacing:514.224000px;}
.ls69{letter-spacing:514.591800px;}
.ls52{letter-spacing:515.551800px;}
.ls7d{letter-spacing:990.022800px;}
.ls49{letter-spacing:990.517800px;}
.ls57{letter-spacing:993.142800px;}
.ls71{letter-spacing:997.192800px;}
.ls1b{letter-spacing:999.172800px;}
.ls0{letter-spacing:1027.522800px;}
.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;}
}
.wsa0{word-spacing:-199.140000px;}
.ws6c{word-spacing:-69.000000px;}
.wsa8{word-spacing:-60.000000px;}
.ws0{word-spacing:-32.940000px;}
.wsf3{word-spacing:-26.523000px;}
.ws10{word-spacing:-26.280000px;}
.ws115{word-spacing:-25.500000px;}
.ws86{word-spacing:-24.750000px;}
.wsf{word-spacing:-24.090000px;}
.ws3{word-spacing:-22.740000px;}
.ws1{word-spacing:-22.620000px;}
.wsea{word-spacing:-22.500000px;}
.wsa3{word-spacing:-22.125000px;}
.wsbb{word-spacing:-21.975000px;}
.wseb{word-spacing:-21.900000px;}
.ws66{word-spacing:-21.750000px;}
.wsf0{word-spacing:-21.675000px;}
.wsa2{word-spacing:-21.525000px;}
.wsd9{word-spacing:-21.300000px;}
.ws8c{word-spacing:-21.075000px;}
.ws84{word-spacing:-20.775000px;}
.ws27{word-spacing:-20.250000px;}
.ws71{word-spacing:-19.458000px;}
.wsa9{word-spacing:-19.425000px;}
.ws18{word-spacing:-19.389000px;}
.wse7{word-spacing:-19.050000px;}
.ws70{word-spacing:-18.975000px;}
.ws7f{word-spacing:-18.837000px;}
.ws55{word-spacing:-18.699000px;}
.ws1b{word-spacing:-18.630000px;}
.wsd{word-spacing:-18.600000px;}
.wsaf{word-spacing:-18.546000px;}
.ws114{word-spacing:-18.525000px;}
.wsb1{word-spacing:-18.492000px;}
.wsb2{word-spacing:-18.423000px;}
.ws6f{word-spacing:-18.354000px;}
.ws5a{word-spacing:-18.225000px;}
.ws28{word-spacing:-18.147000px;}
.ws109{word-spacing:-18.144000px;}
.wsa5{word-spacing:-18.120000px;}
.ws72{word-spacing:-18.078000px;}
.ws9e{word-spacing:-18.000000px;}
.ws54{word-spacing:-17.850000px;}
.ws85{word-spacing:-17.820000px;}
.ws68{word-spacing:-17.664000px;}
.ws7e{word-spacing:-17.595000px;}
.ws5e{word-spacing:-17.526000px;}
.ws6e{word-spacing:-17.388000px;}
.ws107{word-spacing:-17.325000px;}
.wsec{word-spacing:-17.319000px;}
.ws69{word-spacing:-17.043000px;}
.ws3d{word-spacing:-16.875000px;}
.ws63{word-spacing:-16.860000px;}
.ws6a{word-spacing:-16.836000px;}
.ws2a{word-spacing:-16.767000px;}
.ws5c{word-spacing:-16.698000px;}
.ws1a{word-spacing:-16.629000px;}
.ws116{word-spacing:-16.560000px;}
.ws117{word-spacing:-16.440000px;}
.ws67{word-spacing:-16.422000px;}
.wsc0{word-spacing:-16.353000px;}
.wsa4{word-spacing:-16.320000px;}
.wsbd{word-spacing:-16.302000px;}
.wsdb{word-spacing:-16.284000px;}
.ws5f{word-spacing:-16.215000px;}
.wsa6{word-spacing:-16.200000px;}
.wsbc{word-spacing:-16.146000px;}
.ws108{word-spacing:-16.128000px;}
.ws2c{word-spacing:-16.077000px;}
.ws3f{word-spacing:-16.008000px;}
.ws2d{word-spacing:-15.870000px;}
.ws7b{word-spacing:-15.801000px;}
.ws5b{word-spacing:-15.732000px;}
.ws3e{word-spacing:-15.663000px;}
.ws35{word-spacing:-15.594000px;}
.ws10a{word-spacing:-15.561000px;}
.ws5d{word-spacing:-15.525000px;}
.wsae{word-spacing:-15.510000px;}
.wsce{word-spacing:-15.456000px;}
.ws19{word-spacing:-15.387000px;}
.wsd0{word-spacing:-15.318000px;}
.wscf{word-spacing:-15.249000px;}
.wsf2{word-spacing:-15.180000px;}
.ws80{word-spacing:-15.174000px;}
.wsdc{word-spacing:-15.111000px;}
.ws73{word-spacing:-15.066000px;}
.ws7c{word-spacing:-15.042000px;}
.wsf7{word-spacing:-14.994000px;}
.wsac{word-spacing:-14.982000px;}
.ws7d{word-spacing:-14.973000px;}
.ws2b{word-spacing:-14.835000px;}
.wsdd{word-spacing:-14.766000px;}
.ws9d{word-spacing:-14.760000px;}
.wsad{word-spacing:-14.718000px;}
.ws2e{word-spacing:-14.697000px;}
.ws6b{word-spacing:-14.628000px;}
.wsa7{word-spacing:-14.580000px;}
.wsd7{word-spacing:-14.559000px;}
.wsb0{word-spacing:-14.454000px;}
.ws2{word-spacing:-14.400000px;}
.wsf8{word-spacing:-14.175000px;}
.ws92{word-spacing:-13.986000px;}
.ws64{word-spacing:-13.860000px;}
.ws4f{word-spacing:-13.740000px;}
.wsb3{word-spacing:-13.716000px;}
.wsf9{word-spacing:-13.545000px;}
.ws29{word-spacing:-13.455000px;}
.wsd2{word-spacing:-13.284000px;}
.ws65{word-spacing:-13.080000px;}
.wse{word-spacing:-13.062000px;}
.ws21{word-spacing:-12.765000px;}
.ws26{word-spacing:-12.558000px;}
.wsb5{word-spacing:-12.528000px;}
.wsb4{word-spacing:-12.366000px;}
.wsf1{word-spacing:-12.213000px;}
.wsaa{word-spacing:-11.866965px;}
.wse1{word-spacing:-11.344014px;}
.ws6d{word-spacing:-11.303787px;}
.wsbf{word-spacing:-11.263560px;}
.ws8e{word-spacing:-11.247000px;}
.wsab{word-spacing:-11.102652px;}
.ws8d{word-spacing:-11.062425px;}
.wsc6{word-spacing:-10.700382px;}
.wsd1{word-spacing:-10.459020px;}
.ws99{word-spacing:-10.378566px;}
.ws118{word-spacing:-10.260000px;}
.wsbe{word-spacing:-10.217658px;}
.wse8{word-spacing:-10.074000px;}
.ws8f{word-spacing:-9.936000px;}
.wsda{word-spacing:-9.584520px;}
.ws91{word-spacing:-8.208000px;}
.ws10f{word-spacing:-8.001000px;}
.ws10b{word-spacing:-7.497000px;}
.ws87{word-spacing:-6.600000px;}
.ws78{word-spacing:-6.486000px;}
.ws10d{word-spacing:-6.426000px;}
.wsfa{word-spacing:-6.300000px;}
.ws88{word-spacing:-6.204000px;}
.ws5{word-spacing:-6.000000px;}
.ws106{word-spacing:-5.733000px;}
.ws89{word-spacing:-5.676000px;}
.wse2{word-spacing:-5.451000px;}
.wsf5{word-spacing:-5.040000px;}
.wsfd{word-spacing:-4.977000px;}
.ws31{word-spacing:-4.485000px;}
.ws95{word-spacing:-4.320000px;}
.wsb{word-spacing:-4.200000px;}
.ws13{word-spacing:-3.696000px;}
.wscb{word-spacing:-2.967000px;}
.wsca{word-spacing:-2.622000px;}
.ws11{word-spacing:-2.400000px;}
.ws113{word-spacing:-2.268000px;}
.ws38{word-spacing:-2.070000px;}
.ws110{word-spacing:-1.827000px;}
.ws41{word-spacing:-1.794000px;}
.wsc5{word-spacing:-1.782000px;}
.ws10c{word-spacing:-1.764000px;}
.ws3a{word-spacing:-1.587000px;}
.wse4{word-spacing:-1.404000px;}
.ws3b{word-spacing:-1.296000px;}
.ws12{word-spacing:-1.260000px;}
.ws1f{word-spacing:-1.242000px;}
.wsfe{word-spacing:-1.197000px;}
.ws9c{word-spacing:-1.188000px;}
.ws23{word-spacing:-1.173000px;}
.ws6{word-spacing:-1.104000px;}
.ws1c{word-spacing:-1.035000px;}
.wse6{word-spacing:-0.900000px;}
.wsd8{word-spacing:-0.828000px;}
.wsfb{word-spacing:-0.630000px;}
.ws58{word-spacing:-0.621000px;}
.wsba{word-spacing:-0.566676px;}
.ws81{word-spacing:-0.552000px;}
.ws53{word-spacing:-0.540000px;}
.ws9a{word-spacing:-0.483000px;}
.ws50{word-spacing:-0.414000px;}
.wsc7{word-spacing:-0.276000px;}
.wse9{word-spacing:-0.207000px;}
.ws111{word-spacing:-0.189000px;}
.ws15{word-spacing:-0.138000px;}
.wse3{word-spacing:-0.125928px;}
.wsc4{word-spacing:-0.108000px;}
.wsc3{word-spacing:-0.094446px;}
.ws17{word-spacing:-0.054000px;}
.ws90{word-spacing:-0.021600px;}
.ws4{word-spacing:0.000000px;}
.ws3c{word-spacing:0.054000px;}
.ws98{word-spacing:0.062964px;}
.ws33{word-spacing:0.069000px;}
.ws8{word-spacing:0.120000px;}
.ws57{word-spacing:0.138000px;}
.ws75{word-spacing:0.207000px;}
.wse0{word-spacing:0.220374px;}
.wse5{word-spacing:0.240000px;}
.wsb6{word-spacing:0.264000px;}
.wsb8{word-spacing:0.276000px;}
.wsa1{word-spacing:0.300000px;}
.ws16{word-spacing:0.345000px;}
.wscd{word-spacing:0.346302px;}
.ws100{word-spacing:0.378000px;}
.wsd5{word-spacing:0.409266px;}
.ws25{word-spacing:0.414000px;}
.ws101{word-spacing:0.441000px;}
.wsde{word-spacing:0.442497px;}
.ws39{word-spacing:0.483000px;}
.ws9{word-spacing:0.540000px;}
.wsc1{word-spacing:0.552000px;}
.ws103{word-spacing:0.567000px;}
.ws9b{word-spacing:0.598158px;}
.wsa{word-spacing:0.600000px;}
.ws7a{word-spacing:0.621000px;}
.wsf6{word-spacing:0.630000px;}
.ws7{word-spacing:0.660000px;}
.ws20{word-spacing:0.690000px;}
.ws112{word-spacing:0.693000px;}
.wsc2{word-spacing:0.724086px;}
.ws56{word-spacing:0.759000px;}
.ws11a{word-spacing:0.780000px;}
.ws102{word-spacing:0.819000px;}
.ws1e{word-spacing:0.828000px;}
.wsc{word-spacing:0.840000px;}
.wsfc{word-spacing:0.882000px;}
.ws24{word-spacing:0.897000px;}
.ws11e{word-spacing:0.900000px;}
.ws10e{word-spacing:0.945000px;}
.ws34{word-spacing:0.966000px;}
.ws97{word-spacing:0.972000px;}
.wsff{word-spacing:1.008000px;}
.ws37{word-spacing:1.035000px;}
.ws59{word-spacing:1.104000px;}
.wsd6{word-spacing:1.134000px;}
.ws11c{word-spacing:1.140000px;}
.ws14{word-spacing:1.173000px;}
.wsef{word-spacing:1.242000px;}
.ws9f{word-spacing:1.260000px;}
.ws36{word-spacing:1.311000px;}
.ws60{word-spacing:1.380000px;}
.ws104{word-spacing:1.386000px;}
.ws11b{word-spacing:1.440000px;}
.ws2f{word-spacing:1.449000px;}
.ws119{word-spacing:1.500000px;}
.ws8b{word-spacing:1.518000px;}
.ws82{word-spacing:1.587000px;}
.ws105{word-spacing:1.638000px;}
.ws11d{word-spacing:1.680000px;}
.ws76{word-spacing:1.725000px;}
.ws83{word-spacing:1.794000px;}
.wsed{word-spacing:1.863000px;}
.wsee{word-spacing:1.932000px;}
.ws52{word-spacing:1.980000px;}
.wscc{word-spacing:2.001000px;}
.wsc8{word-spacing:2.139000px;}
.wsc9{word-spacing:2.208000px;}
.ws96{word-spacing:2.214000px;}
.wsdf{word-spacing:2.277000px;}
.ws32{word-spacing:2.346000px;}
.ws40{word-spacing:2.415000px;}
.ws93{word-spacing:2.484000px;}
.ws22{word-spacing:2.553000px;}
.ws79{word-spacing:2.829000px;}
.wsb9{word-spacing:3.105000px;}
.ws30{word-spacing:3.243000px;}
.ws8a{word-spacing:3.312000px;}
.ws51{word-spacing:3.450000px;}
.ws1d{word-spacing:3.498000px;}
.wsf4{word-spacing:3.795000px;}
.ws94{word-spacing:4.428000px;}
.wsb7{word-spacing:5.016000px;}
.ws74{word-spacing:6.003000px;}
.wsd3{word-spacing:6.348000px;}
.ws62{word-spacing:8.153838px;}
.ws61{word-spacing:10.143000px;}
.ws77{word-spacing:10.833000px;}
.wsd4{word-spacing:12.144000px;}
.ws4d{word-spacing:199.080000px;}
.ws4e{word-spacing:200.400000px;}
.ws46{word-spacing:200.520000px;}
.ws4c{word-spacing:201.060000px;}
.ws4b{word-spacing:201.420000px;}
.ws45{word-spacing:202.500000px;}
.ws49{word-spacing:202.920000px;}
.ws4a{word-spacing:203.520000px;}
.ws47{word-spacing:204.000000px;}
.ws48{word-spacing:206.940000px;}
.ws44{word-spacing:207.660000px;}
.ws43{word-spacing:228.540000px;}
.ws42{word-spacing:228.840000px;}
._32{margin-left:-199.698000px;}
._33{margin-left:-198.516000px;}
._31{margin-left:-194.982000px;}
._24{margin-left:-18.973200px;}
._f{margin-left:-15.917400px;}
._1e{margin-left:-14.627700px;}
._1f{margin-left:-13.434300px;}
._1c{margin-left:-11.932200px;}
._1d{margin-left:-10.539000px;}
._a{margin-left:-9.332400px;}
._9{margin-left:-7.911000px;}
._e{margin-left:-6.556200px;}
._b{margin-left:-5.518800px;}
._d{margin-left:-3.889800px;}
._c{margin-left:-2.740800px;}
._7{margin-left:-1.428000px;}
._2{width:1.241400px;}
._1{width:2.400000px;}
._8{width:3.957600px;}
._4{width:5.284200px;}
._3{width:6.451800px;}
._5{width:7.506000px;}
._6{width:8.604600px;}
._17{width:9.655200px;}
._18{width:11.240700px;}
._19{width:12.344700px;}
._1a{width:13.838100px;}
._16{width:15.523500px;}
._15{width:16.528200px;}
._14{width:18.339600px;}
._13{width:19.404600px;}
._1b{width:20.852100px;}
._20{width:22.012200px;}
._21{width:23.055300px;}
._3b{width:24.321900px;}
._28{width:25.627200px;}
._29{width:27.767124px;}
._3a{width:31.512900px;}
._3d{width:33.233100px;}
._27{width:35.291322px;}
._22{width:36.313500px;}
._23{width:37.970700px;}
._3c{width:39.771300px;}
._11{width:43.445160px;}
._2a{width:46.867764px;}
._2c{width:58.767600px;}
._2f{width:61.443900px;}
._37{width:66.420000px;}
._36{width:70.166100px;}
._10{width:71.400000px;}
._34{width:74.055900px;}
._2d{width:80.274600px;}
._2b{width:111.573000px;}
._38{width:165.842400px;}
._2e{width:196.615500px;}
._30{width:199.140000px;}
._35{width:231.242400px;}
._25{width:247.260000px;}
._12{width:253.008000px;}
._39{width:301.862400px;}
._0{width:578.400000px;}
._26{width:1336.996200px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fse{font-size:34.980000px;}
.fsc{font-size:40.227000px;}
.fs8{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:62.964000px;}
.fs3{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y371{bottom:105.945600px;}
.y285{bottom:106.165350px;}
.y2df{bottom:106.266150px;}
.y23d{bottom:106.272300px;}
.y88{bottom:106.275150px;}
.y2ca{bottom:106.275450px;}
.yfd{bottom:106.278450px;}
.y42{bottom:106.284300px;}
.y30a{bottom:106.291050px;}
.y1d{bottom:106.293300px;}
.yad{bottom:106.296300px;}
.y13a{bottom:106.296450px;}
.yfe{bottom:106.299150px;}
.y63{bottom:106.312500px;}
.y32c{bottom:106.496850px;}
.y1ba{bottom:109.079550px;}
.ydc{bottom:109.294950px;}
.y165{bottom:120.421500px;}
.y23c{bottom:123.525300px;}
.y2c9{bottom:123.528450px;}
.y41{bottom:123.537300px;}
.y1c{bottom:123.546300px;}
.y25c{bottom:123.549300px;}
.y370{bottom:126.195600px;}
.y2de{bottom:126.517650px;}
.yac{bottom:126.544800px;}
.y139{bottom:126.544950px;}
.y14e{bottom:126.549150px;}
.y62{bottom:126.581250px;}
.y284{bottom:126.589350px;}
.y87{bottom:126.699150px;}
.y32b{bottom:127.192350px;}
.yfc{bottom:127.237200px;}
.y309{bottom:127.333050px;}
.y214{bottom:127.798500px;}
.y164{bottom:140.673000px;}
.y23b{bottom:140.778300px;}
.y2c8{bottom:140.781450px;}
.y40{bottom:140.790300px;}
.y1b{bottom:143.794800px;}
.y121{bottom:145.048200px;}
.y36f{bottom:146.445600px;}
.y2dd{bottom:146.769150px;}
.y14d{bottom:146.799150px;}
.y61{bottom:146.846850px;}
.y283{bottom:147.013350px;}
.y86{bottom:147.123150px;}
.y213{bottom:148.047000px;}
.yfb{bottom:148.195950px;}
.yc2{bottom:151.736400px;}
.ydb{bottom:153.307950px;}
.y2a4{bottom:153.424500px;}
.y32a{bottom:156.392850px;}
.y308{bottom:156.880050px;}
.y23a{bottom:158.031300px;}
.y2c7{bottom:158.034450px;}
.y3f{bottom:158.043300px;}
.y163{bottom:160.924500px;}
.y120{bottom:162.301200px;}
.y11f{bottom:165.296700px;}
.y36e{bottom:166.695600px;}
.y2dc{bottom:167.020650px;}
.y14c{bottom:167.051550px;}
.y60{bottom:167.132100px;}
.y282{bottom:167.437350px;}
.y85{bottom:167.547150px;}
.yfa{bottom:169.154700px;}
.yab{bottom:170.545800px;}
.y25b{bottom:170.550450px;}
.yc1{bottom:171.986400px;}
.yda{bottom:173.632950px;}
.y14b{bottom:173.693850px;}
.y138{bottom:173.695350px;}
.y239{bottom:175.284300px;}
.y2c6{bottom:175.287450px;}
.y3e{bottom:175.296300px;}
.y329{bottom:177.088350px;}
.y2a3{bottom:177.126000px;}
.y162{bottom:181.176000px;}
.y2db{bottom:187.272150px;}
.y5f{bottom:187.400850px;}
.y1a{bottom:187.810800px;}
.y1a3{bottom:187.860000px;}
.y281{bottom:187.861350px;}
.y84{bottom:187.971150px;}
.yaa{bottom:190.883550px;}
.y25a{bottom:190.888200px;}
.y36d{bottom:191.190600px;}
.y212{bottom:192.074700px;}
.y238{bottom:192.537300px;}
.y2c5{bottom:192.540450px;}
.y27c{bottom:192.549300px;}
.y14a{bottom:193.945350px;}
.y137{bottom:193.946850px;}
.y3d{bottom:195.544800px;}
.y328{bottom:197.783850px;}
.y2a2{bottom:200.827500px;}
.y161{bottom:201.427500px;}
.y5e{bottom:207.673050px;}
.y19{bottom:207.865800px;}
.y307{bottom:208.216350px;}
.y1a2{bottom:208.284000px;}
.y280{bottom:208.285350px;}
.y83{bottom:208.395150px;}
.y184{bottom:209.243700px;}
.y11e{bottom:209.333100px;}
.y237{bottom:209.790300px;}
.y2c4{bottom:209.793450px;}
.yf9{bottom:211.072200px;}
.ya9{bottom:211.221300px;}
.y259{bottom:211.225950px;}
.y211{bottom:212.326200px;}
.y149{bottom:214.196850px;}
.y136{bottom:214.198350px;}
.y160{bottom:221.679000px;}
.y36c{bottom:224.190600px;}
.y2a1{bottom:224.529000px;}
.y327{bottom:226.984350px;}
.y236{bottom:227.043300px;}
.y2c3{bottom:227.046450px;}
.y2da{bottom:227.775150px;}
.y5d{bottom:227.945400px;}
.y1a1{bottom:228.708000px;}
.y27f{bottom:228.709350px;}
.y82{bottom:228.819150px;}
.y306{bottom:229.261350px;}
.y11d{bottom:230.343600px;}
.ya8{bottom:231.559050px;}
.y258{bottom:231.563700px;}
.y183{bottom:231.616950px;}
.yf8{bottom:232.030950px;}
.y210{bottom:232.582350px;}
.y148{bottom:234.448350px;}
.y135{bottom:234.449850px;}
.y3c{bottom:239.560200px;}
.y27b{bottom:239.673900px;}
.y18{bottom:240.670800px;}
.y15f{bottom:241.930500px;}
.y36b{bottom:242.940600px;}
.y235{bottom:244.296300px;}
.y2c2{bottom:247.294950px;}
.y326{bottom:247.679850px;}
.y2d9{bottom:248.026650px;}
.y2a0{bottom:248.230500px;}
.y349{bottom:248.278350px;}
.y1a0{bottom:249.132000px;}
.y27e{bottom:249.133350px;}
.y81{bottom:249.236700px;}
.y5c{bottom:249.576900px;}
.y305{bottom:250.306350px;}
.y11c{bottom:251.354100px;}
.ya7{bottom:251.896800px;}
.y257{bottom:251.901450px;}
.y20f{bottom:252.838650px;}
.y182{bottom:253.990200px;}
.y134{bottom:254.686350px;}
.y147{bottom:254.699850px;}
.y27a{bottom:260.391150px;}
.y234{bottom:261.549300px;}
.y3b{bottom:261.622950px;}
.y36a{bottom:261.690600px;}
.y15e{bottom:262.182000px;}
.y233{bottom:264.544800px;}
.y2d8{bottom:268.278150px;}
.y325{bottom:268.375350px;}
.y348{bottom:268.532850px;}
.y19f{bottom:269.556000px;}
.y80{bottom:269.557350px;}
.y5b{bottom:269.872200px;}
.y304{bottom:271.351350px;}
.y29f{bottom:271.932000px;}
.ya6{bottom:272.234550px;}
.y256{bottom:272.239200px;}
.y20e{bottom:273.082350px;}
.yf7{bottom:273.948450px;}
.y146{bottom:274.936350px;}
.y133{bottom:274.937850px;}
.y181{bottom:276.363450px;}
.y1dc{bottom:279.093000px;}
.y369{bottom:280.440600px;}
.y279{bottom:281.108400px;}
.y3a{bottom:282.346350px;}
.y15d{bottom:282.433500px;}
.y232{bottom:283.045200px;}
.y2d7{bottom:288.529650px;}
.y347{bottom:288.787350px;}
.y324{bottom:289.070850px;}
.y19e{bottom:289.980000px;}
.y7f{bottom:289.981350px;}
.y5a{bottom:290.140950px;}
.yd9{bottom:290.243550px;}
.y17{bottom:290.485800px;}
.y2c1{bottom:291.439350px;}
.y303{bottom:292.396350px;}
.ya5{bottom:292.572300px;}
.y255{bottom:292.576950px;}
.y11b{bottom:293.375100px;}
.yf6{bottom:294.907200px;}
.y145{bottom:295.187850px;}
.y132{bottom:295.189350px;}
.y29e{bottom:295.633500px;}
.y1db{bottom:297.093000px;}
.y180{bottom:298.736700px;}
.y368{bottom:299.190600px;}
.y231{bottom:300.298200px;}
.y278{bottom:301.825650px;}
.y15c{bottom:302.685000px;}
.y39{bottom:303.050100px;}
.y2d6{bottom:308.781150px;}
.y7e{bottom:310.405350px;}
.y59{bottom:310.409700px;}
.y2c0{bottom:311.708100px;}
.y16{bottom:312.040800px;}
.ya4{bottom:312.910050px;}
.y254{bottom:312.914700px;}
.y302{bottom:313.441350px;}
.y20d{bottom:313.621350px;}
.y11a{bottom:314.385600px;}
.y1da{bottom:315.093000px;}
.y144{bottom:315.439350px;}
.y131{bottom:315.440850px;}
.yf5{bottom:315.865950px;}
.y346{bottom:317.546850px;}
.y230{bottom:317.551200px;}
.y367{bottom:317.940600px;}
.y323{bottom:318.271350px;}
.y29d{bottom:319.335000px;}
.y22f{bottom:320.546700px;}
.y17f{bottom:321.109950px;}
.y277{bottom:322.542900px;}
.y15b{bottom:322.936500px;}
.y38{bottom:323.763000px;}
.y2d5{bottom:329.032650px;}
.y58{bottom:330.678450px;}
.y19d{bottom:330.828000px;}
.y7d{bottom:330.829350px;}
.y2bf{bottom:331.976850px;}
.y1d9{bottom:333.093000px;}
.ya3{bottom:333.247800px;}
.y253{bottom:333.252450px;}
.y15{bottom:333.595800px;}
.y20c{bottom:333.872850px;}
.y301{bottom:334.486350px;}
.y119{bottom:335.396100px;}
.y143{bottom:335.690850px;}
.y130{bottom:335.692350px;}
.y366{bottom:336.690600px;}
.yf4{bottom:336.824700px;}
.y345{bottom:337.801350px;}
.y29c{bottom:343.036500px;}
.y15a{bottom:343.188000px;}
.y276{bottom:343.260150px;}
.y17e{bottom:343.483200px;}
.y37{bottom:345.784200px;}
.y322{bottom:347.471850px;}
.y2d4{bottom:349.284150px;}
.y1d8{bottom:351.093000px;}
.y19c{bottom:351.252000px;}
.y7c{bottom:351.253350px;}
.y2be{bottom:352.245600px;}
.ya2{bottom:353.585550px;}
.y252{bottom:353.590200px;}
.y20b{bottom:354.124350px;}
.y14{bottom:355.135050px;}
.y365{bottom:355.440600px;}
.y300{bottom:355.531350px;}
.y142{bottom:355.942350px;}
.y12f{bottom:355.943850px;}
.y118{bottom:356.406600px;}
.y1b8{bottom:357.843000px;}
.y344{bottom:358.055850px;}
.y159{bottom:363.439500px;}
.y275{bottom:363.977400px;}
.y22e{bottom:364.555200px;}
.y17d{bottom:365.856450px;}
.yc0{bottom:366.367650px;}
.y29b{bottom:366.738000px;}
.y36{bottom:367.846950px;}
.y321{bottom:368.167350px;}
.y1d7{bottom:369.093000px;}
.y2d3{bottom:369.535650px;}
.y57{bottom:371.229150px;}
.y19b{bottom:371.676000px;}
.y7b{bottom:371.677350px;}
.y2bd{bottom:372.514350px;}
.ya1{bottom:373.923300px;}
.y251{bottom:373.927950px;}
.y364{bottom:374.190600px;}
.y20a{bottom:374.375850px;}
.y13{bottom:375.190050px;}
.y1b7{bottom:375.856500px;}
.y141{bottom:376.193850px;}
.y12e{bottom:376.195350px;}
.y2ff{bottom:376.576350px;}
.y117{bottom:377.417100px;}
.y343{bottom:378.310350px;}
.yf3{bottom:378.742200px;}
.y158{bottom:383.691000px;}
.y274{bottom:384.694650px;}
.y22d{bottom:385.255200px;}
.y1d6{bottom:387.093000px;}
.y17c{bottom:388.229700px;}
.y35{bottom:388.564200px;}
.y320{bottom:388.862850px;}
.y2d2{bottom:389.787150px;}
.y29a{bottom:390.439500px;}
.y19a{bottom:392.100000px;}
.y7a{bottom:392.101350px;}
.y2bc{bottom:392.783100px;}
.y363{bottom:392.940600px;}
.y1b6{bottom:393.852000px;}
.ya0{bottom:394.261050px;}
.y250{bottom:394.265700px;}
.y209{bottom:394.661850px;}
.y12{bottom:395.245050px;}
.y140{bottom:396.445350px;}
.y12d{bottom:396.446850px;}
.y2fe{bottom:397.621350px;}
.y116{bottom:398.427600px;}
.y342{bottom:398.564850px;}
.yf2{bottom:399.700950px;}
.yd8{bottom:400.387050px;}
.y157{bottom:403.942500px;}
.y1d5{bottom:405.093000px;}
.y273{bottom:405.411900px;}
.y22c{bottom:405.955200px;}
.y1ee{bottom:406.214250px;}
.y34{bottom:409.281450px;}
.y31f{bottom:409.558350px;}
.y2d1{bottom:410.038650px;}
.y17b{bottom:410.602950px;}
.ybf{bottom:411.591450px;}
.y362{bottom:411.690600px;}
.y1b5{bottom:411.847500px;}
.y79{bottom:412.525350px;}
.y2bb{bottom:413.051850px;}
.y299{bottom:414.141000px;}
.y9f{bottom:414.598800px;}
.y24f{bottom:414.603450px;}
.y208{bottom:414.913350px;}
.y11{bottom:415.300050px;}
.y13f{bottom:416.696850px;}
.y12c{bottom:416.698350px;}
.y2fd{bottom:418.666350px;}
.y341{bottom:418.819350px;}
.yd6{bottom:418.866450px;}
.y115{bottom:419.438100px;}
.y1d4{bottom:423.093000px;}
.y156{bottom:424.194000px;}
.y272{bottom:426.129150px;}
.y22b{bottom:426.655200px;}
.y1a6{bottom:429.843000px;}
.y2d0{bottom:430.290150px;}
.y361{bottom:430.440600px;}
.y199{bottom:432.948000px;}
.y78{bottom:432.949350px;}
.y17a{bottom:432.976200px;}
.y2ba{bottom:433.320600px;}
.y9e{bottom:434.936550px;}
.y24e{bottom:434.941200px;}
.y10{bottom:435.355050px;}
.y13e{bottom:436.948350px;}
.y12b{bottom:436.949850px;}
.y298{bottom:437.842500px;}
.y31e{bottom:438.758850px;}
.y2fc{bottom:439.711350px;}
.y114{bottom:440.448600px;}
.y1d3{bottom:441.093000px;}
.yf1{bottom:441.618450px;}
.y155{bottom:444.445500px;}
.y271{bottom:446.846400px;}
.y22a{bottom:447.333150px;}
.y340{bottom:447.578850px;}
.y1b9{bottom:447.843000px;}
.yd7{bottom:447.861450px;}
.y360{bottom:449.190600px;}
.y2cf{bottom:450.541650px;}
.y33{bottom:450.715950px;}
.y198{bottom:453.372000px;}
.y77{bottom:453.373350px;}
.y2b9{bottom:453.589350px;}
.y9d{bottom:455.274300px;}
.y24d{bottom:455.278950px;}
.y179{bottom:455.349450px;}
.yf{bottom:455.410050px;}
.y207{bottom:455.433600px;}
.ybe{bottom:456.815400px;}
.y13d{bottom:457.199850px;}
.y12a{bottom:457.201350px;}
.y1d2{bottom:459.093000px;}
.y31d{bottom:459.454350px;}
.y2fb{bottom:460.756350px;}
.y113{bottom:461.459100px;}
.y297{bottom:461.544000px;}
.yf0{bottom:462.577200px;}
.y1b4{bottom:465.843000px;}
.y270{bottom:467.563650px;}
.y33f{bottom:467.833350px;}
.y35f{bottom:467.940600px;}
.y229{bottom:468.033150px;}
.y32{bottom:471.433200px;}
.y197{bottom:473.796000px;}
.y76{bottom:473.797350px;}
.ye{bottom:475.465050px;}
.y9c{bottom:475.612050px;}
.y24c{bottom:475.616700px;}
.y206{bottom:475.685100px;}
.y1ed{bottom:475.956000px;}
.y1d1{bottom:477.093000px;}
.y13c{bottom:477.451350px;}
.y178{bottom:477.633450px;}
.y31c{bottom:480.149850px;}
.y2fa{bottom:481.801350px;}
.y112{bottom:482.469600px;}
.yef{bottom:483.535950px;}
.y1b3{bottom:483.843000px;}
.y2b8{bottom:484.397850px;}
.y154{bottom:484.951500px;}
.y296{bottom:485.245500px;}
.y35e{bottom:486.690600px;}
.y33e{bottom:488.087850px;}
.y26f{bottom:488.280900px;}
.y228{bottom:488.733150px;}
.y2ce{bottom:491.044650px;}
.y31{bottom:492.150450px;}
.y196{bottom:494.220000px;}
.y27d{bottom:494.221350px;}
.y1d0{bottom:495.093000px;}
.yd{bottom:495.520050px;}
.y205{bottom:495.936600px;}
.y9b{bottom:495.949800px;}
.y24b{bottom:495.954450px;}
.y129{bottom:497.701350px;}
.y177{bottom:500.006700px;}
.y1b2{bottom:501.843000px;}
.ybd{bottom:502.039350px;}
.y2f9{bottom:502.846350px;}
.y111{bottom:503.480100px;}
.yee{bottom:504.494700px;}
.y2b7{bottom:504.666600px;}
.y35d{bottom:505.440600px;}
.y33d{bottom:508.342350px;}
.y295{bottom:508.947000px;}
.y26e{bottom:508.998150px;}
.y31b{bottom:509.350350px;}
.y227{bottom:509.433150px;}
.y2cd{bottom:511.296150px;}
.y30{bottom:512.867700px;}
.y1cf{bottom:513.093000px;}
.yd5{bottom:513.770400px;}
.y75{bottom:514.645350px;}
.y56{bottom:516.125700px;}
.y204{bottom:516.188100px;}
.y9a{bottom:516.287550px;}
.y24a{bottom:516.292200px;}
.y1b1{bottom:519.843000px;}
.y176{bottom:522.379950px;}
.y2f8{bottom:523.891350px;}
.y35c{bottom:524.190600px;}
.y110{bottom:524.508750px;}
.y2b6{bottom:524.935350px;}
.yed{bottom:525.453450px;}
.y153{bottom:525.459000px;}
.yc{bottom:528.325050px;}
.y33c{bottom:528.596850px;}
.y26d{bottom:529.715400px;}
.y226{bottom:530.133150px;}
.y1ce{bottom:531.093000px;}
.y2cc{bottom:531.547650px;}
.y2f{bottom:533.584950px;}
.y195{bottom:535.068000px;}
.y74{bottom:535.069350px;}
.y55{bottom:536.414400px;}
.y203{bottom:536.439600px;}
.y99{bottom:536.625300px;}
.y249{bottom:536.629950px;}
.y1b0{bottom:537.843000px;}
.y13b{bottom:538.201350px;}
.y31a{bottom:538.550850px;}
.yd4{bottom:541.190850px;}
.y35b{bottom:542.940600px;}
.y175{bottom:544.753200px;}
.y2f7{bottom:544.936350px;}
.y2b5{bottom:545.204100px;}
.y10f{bottom:545.519250px;}
.y152{bottom:545.704500px;}
.yec{bottom:546.412200px;}
.y1cd{bottom:549.093000px;}
.y26c{bottom:550.432650px;}
.y225{bottom:550.833150px;}
.y2cb{bottom:551.799150px;}
.y2e{bottom:554.302200px;}
.y194{bottom:555.492000px;}
.y73{bottom:555.493350px;}
.y1af{bottom:555.843000px;}
.y54{bottom:556.683150px;}
.y202{bottom:556.691100px;}
.y98{bottom:556.963050px;}
.y248{bottom:556.967700px;}
.yd3{bottom:557.262300px;}
.y33b{bottom:557.356350px;}
.y319{bottom:559.246350px;}
.y294{bottom:560.668800px;}
.y35a{bottom:561.690600px;}
.y2b4{bottom:565.472850px;}
.y151{bottom:565.950000px;}
.y2f6{bottom:565.981350px;}
.y10e{bottom:566.529750px;}
.y1cc{bottom:567.093000px;}
.y174{bottom:567.126450px;}
.yeb{bottom:567.370950px;}
.y26b{bottom:571.149900px;}
.y224{bottom:571.533150px;}
.ybc{bottom:571.592850px;}
.y1ec{bottom:571.593000px;}
.y1ae{bottom:573.843000px;}
.y2d{bottom:575.019450px;}
.y193{bottom:575.916000px;}
.y72{bottom:575.917350px;}
.y201{bottom:576.942600px;}
.y53{bottom:576.951900px;}
.y97{bottom:577.300800px;}
.y247{bottom:577.305450px;}
.yd2{bottom:577.582800px;}
.y33a{bottom:577.610850px;}
.y293{bottom:578.668800px;}
.y318{bottom:579.941850px;}
.y359{bottom:580.440600px;}
.y1cb{bottom:585.093000px;}
.y2b3{bottom:585.741600px;}
.y150{bottom:586.195500px;}
.y2f5{bottom:587.026350px;}
.y10d{bottom:587.540250px;}
.yea{bottom:588.329700px;}
.y173{bottom:589.499700px;}
.y1eb{bottom:589.593000px;}
.y2e6{bottom:591.164100px;}
.y1ad{bottom:591.843000px;}
.y26a{bottom:591.867150px;}
.y223{bottom:592.233150px;}
.y2c{bottom:595.736700px;}
.y192{bottom:596.340000px;}
.y71{bottom:596.341350px;}
.y292{bottom:596.668800px;}
.y200{bottom:597.194100px;}
.y52{bottom:597.217500px;}
.y246{bottom:597.643200px;}
.y339{bottom:597.865350px;}
.yd1{bottom:597.903300px;}
.yb{bottom:598.944000px;}
.y358{bottom:599.190600px;}
.y1ca{bottom:603.093000px;}
.y2b2{bottom:606.010350px;}
.y1ea{bottom:607.593000px;}
.y2f4{bottom:608.071350px;}
.y10c{bottom:608.550750px;}
.y317{bottom:609.142350px;}
.ye9{bottom:609.288450px;}
.y1ac{bottom:609.843000px;}
.y2e5{bottom:611.414100px;}
.y172{bottom:611.872950px;}
.y269{bottom:612.584400px;}
.y222{bottom:612.933150px;}
.y291{bottom:614.668800px;}
.y2b{bottom:616.453950px;}
.y191{bottom:616.764000px;}
.y70{bottom:616.765350px;}
.y1ff{bottom:617.445600px;}
.y51{bottom:617.529150px;}
.y357{bottom:617.940600px;}
.y245{bottom:617.972850px;}
.y96{bottom:617.976300px;}
.y338{bottom:618.119850px;}
.yd0{bottom:618.223800px;}
.y128{bottom:619.180350px;}
.ybb{bottom:619.190850px;}
.y14f{bottom:619.201350px;}
.y1c9{bottom:621.093000px;}
.y1e9{bottom:625.593000px;}
.y2b1{bottom:626.279100px;}
.y1ab{bottom:627.843000px;}
.ya{bottom:628.251150px;}
.y2f3{bottom:629.116350px;}
.y10b{bottom:629.561250px;}
.y316{bottom:629.837850px;}
.ye8{bottom:630.247200px;}
.y2e4{bottom:631.664100px;}
.y290{bottom:632.668800px;}
.y268{bottom:633.301650px;}
.y221{bottom:633.628350px;}
.y171{bottom:634.246200px;}
.y356{bottom:636.690600px;}
.y2a{bottom:637.167450px;}
.y190{bottom:637.188000px;}
.y6f{bottom:637.189350px;}
.y50{bottom:637.797900px;}
.y244{bottom:638.310600px;}
.y95{bottom:638.314050px;}
.ycf{bottom:638.544300px;}
.y1c8{bottom:639.093000px;}
.y127{bottom:639.431850px;}
.yba{bottom:639.442350px;}
.y1e8{bottom:643.593000px;}
.y1aa{bottom:645.843000px;}
.y2b0{bottom:646.547850px;}
.y337{bottom:646.879350px;}
.y2f2{bottom:650.161350px;}
.y315{bottom:650.533350px;}
.y10a{bottom:650.571750px;}
.ye7{bottom:651.205200px;}
.y2e3{bottom:651.914100px;}
.y267{bottom:654.018900px;}
.y220{bottom:654.328350px;}
.y355{bottom:655.440600px;}
.y9{bottom:655.803150px;}
.y170{bottom:656.619450px;}
.y1c7{bottom:657.093000px;}
.y18f{bottom:657.612000px;}
.y6e{bottom:657.613350px;}
.y29{bottom:657.884700px;}
.y4f{bottom:658.066650px;}
.y243{bottom:658.648350px;}
.y94{bottom:658.651800px;}
.yce{bottom:658.864050px;}
.y1fe{bottom:659.336700px;}
.y126{bottom:659.683350px;}
.yb9{bottom:659.693850px;}
.y1e7{bottom:661.593000px;}
.y1a9{bottom:663.843000px;}
.y28f{bottom:665.661600px;}
.y336{bottom:667.133850px;}
.y2f1{bottom:671.206350px;}
.y314{bottom:671.228850px;}
.y109{bottom:671.582250px;}
.ye6{bottom:672.163050px;}
.y2e2{bottom:672.164100px;}
.y354{bottom:674.190600px;}
.y21f{bottom:675.006300px;}
.y1c6{bottom:675.093000px;}
.y1fd{bottom:677.336700px;}
.y1f0{bottom:677.343000px;}
.y2af{bottom:677.373150px;}
.y18e{bottom:678.036000px;}
.y6d{bottom:678.037350px;}
.y4e{bottom:678.335400px;}
.y242{bottom:678.986100px;}
.y93{bottom:678.989550px;}
.y16f{bottom:678.992700px;}
.ycd{bottom:679.181400px;}
.y1e6{bottom:679.593000px;}
.y125{bottom:679.934850px;}
.yb8{bottom:679.945350px;}
.y1a5{bottom:681.843000px;}
.y28e{bottom:689.363100px;}
.y2f0{bottom:692.251350px;}
.y2e1{bottom:692.414100px;}
.y108{bottom:692.592750px;}
.y353{bottom:692.940600px;}
.y1c5{bottom:693.093000px;}
.ye5{bottom:693.121800px;}
.y1fc{bottom:695.336700px;}
.y266{bottom:695.528850px;}
.y21e{bottom:695.706300px;}
.y335{bottom:695.893350px;}
.y1e5{bottom:697.593000px;}
.y2ae{bottom:697.641900px;}
.y18d{bottom:698.460000px;}
.y6c{bottom:698.461350px;}
.y4d{bottom:698.604150px;}
.y241{bottom:699.323850px;}
.y92{bottom:699.327300px;}
.ycc{bottom:699.501900px;}
.y124{bottom:700.186350px;}
.yb7{bottom:700.196850px;}
.y313{bottom:700.429350px;}
.y16e{bottom:701.365950px;}
.y8{bottom:704.622750px;}
.y1c4{bottom:711.093000px;}
.y352{bottom:711.690600px;}
.y2e0{bottom:712.664100px;}
.y28d{bottom:713.064600px;}
.y2ef{bottom:713.296350px;}
.y1fb{bottom:713.336700px;}
.y107{bottom:713.603250px;}
.ye4{bottom:714.072600px;}
.y1e4{bottom:715.593000px;}
.y334{bottom:716.147850px;}
.y265{bottom:716.246100px;}
.y21d{bottom:716.406300px;}
.y1a8{bottom:717.843000px;}
.y2ad{bottom:717.910650px;}
.y4c{bottom:718.869750px;}
.y18c{bottom:718.884000px;}
.y6b{bottom:718.885350px;}
.y240{bottom:719.661600px;}
.y91{bottom:719.665050px;}
.ycb{bottom:719.822400px;}
.y28{bottom:720.022650px;}
.y123{bottom:720.437850px;}
.yb6{bottom:720.448350px;}
.y312{bottom:721.124850px;}
.y16d{bottom:723.739200px;}
.y1c3{bottom:729.093000px;}
.y351{bottom:730.440600px;}
.y1fa{bottom:731.336700px;}
.y1e3{bottom:733.593000px;}
.y2ee{bottom:734.341350px;}
.y106{bottom:734.613750px;}
.ye3{bottom:735.031350px;}
.y1a4{bottom:735.843000px;}
.y333{bottom:736.402350px;}
.y7{bottom:736.671750px;}
.y264{bottom:736.963350px;}
.y21c{bottom:737.106300px;}
.y4b{bottom:739.155000px;}
.y18b{bottom:739.308000px;}
.y6a{bottom:739.309350px;}
.y23f{bottom:739.999350px;}
.y90{bottom:740.002800px;}
.yca{bottom:740.142900px;}
.y122{bottom:740.689350px;}
.yb5{bottom:740.699850px;}
.y27{bottom:741.487650px;}
.y311{bottom:741.820350px;}
.y16c{bottom:746.112450px;}
.y1c2{bottom:747.093000px;}
.y350{bottom:749.190600px;}
.y1f9{bottom:749.336700px;}
.y1e2{bottom:751.593000px;}
.y2ac{bottom:753.444750px;}
.y1a7{bottom:753.843000px;}
.y2ed{bottom:755.386350px;}
.y105{bottom:755.624250px;}
.ye2{bottom:755.990100px;}
.y332{bottom:756.656850px;}
.y263{bottom:757.680600px;}
.y21b{bottom:757.806300px;}
.y4a{bottom:759.423750px;}
.y18a{bottom:759.732000px;}
.y69{bottom:759.733350px;}
.y23e{bottom:760.337100px;}
.y8f{bottom:760.340550px;}
.yc9{bottom:760.457850px;}
.y28c{bottom:760.484850px;}
.yb4{bottom:760.940850px;}
.y310{bottom:762.515850px;}
.y26{bottom:762.952650px;}
.y1c1{bottom:765.093000px;}
.y1f8{bottom:767.336700px;}
.y34f{bottom:767.940600px;}
.y16b{bottom:768.485700px;}
.y6{bottom:768.720750px;}
.y1e1{bottom:769.593000px;}
.y2ab{bottom:771.444750px;}
.y2ec{bottom:776.431350px;}
.y104{bottom:776.634750px;}
.ye1{bottom:776.948850px;}
.y262{bottom:778.397850px;}
.y21a{bottom:778.506300px;}
.y49{bottom:779.692950px;}
.y189{bottom:780.156000px;}
.y286{bottom:780.157350px;}
.y8e{bottom:780.674850px;}
.yc8{bottom:780.778350px;}
.yb3{bottom:781.192350px;}
.y1c0{bottom:783.093000px;}
.y28b{bottom:784.186350px;}
.y25{bottom:784.407750px;}
.y1f7{bottom:785.336700px;}
.y331{bottom:785.416350px;}
.y34e{bottom:786.690600px;}
.y1e0{bottom:787.593000px;}
.y2aa{bottom:789.444750px;}
.y1de{bottom:789.843000px;}
.y16a{bottom:790.858950px;}
.y30f{bottom:791.716350px;}
.y2eb{bottom:797.476350px;}
.y103{bottom:797.645250px;}
.ye0{bottom:797.907600px;}
.y261{bottom:799.115100px;}
.y219{bottom:799.206300px;}
.y188{bottom:800.580000px;}
.y68{bottom:800.581350px;}
.y8d{bottom:801.012600px;}
.y1bf{bottom:801.093000px;}
.yc7{bottom:801.098850px;}
.y48{bottom:801.331050px;}
.yb2{bottom:801.443850px;}
.y1f6{bottom:803.336700px;}
.y24{bottom:804.372750px;}
.y34d{bottom:805.440600px;}
.y330{bottom:805.670850px;}
.y2a9{bottom:807.444750px;}
.y1dd{bottom:807.843000px;}
.y28a{bottom:807.887850px;}
.y30e{bottom:812.411850px;}
.y169{bottom:813.208350px;}
.y2ea{bottom:818.521350px;}
.y102{bottom:818.655750px;}
.y1be{bottom:819.093000px;}
.y260{bottom:819.832350px;}
.y218{bottom:819.906300px;}
.y187{bottom:821.004000px;}
.y67{bottom:821.005350px;}
.y1f5{bottom:821.336700px;}
.y1ef{bottom:821.343000px;}
.y8c{bottom:821.350350px;}
.yc6{bottom:821.419350px;}
.y47{bottom:821.626350px;}
.yb1{bottom:821.695350px;}
.y23{bottom:824.337750px;}
.y1df{bottom:825.843000px;}
.y5{bottom:830.531250px;}
.y289{bottom:831.589350px;}
.y34c{bottom:832.695600px;}
.y30d{bottom:833.107350px;}
.y32f{bottom:834.430350px;}
.y168{bottom:835.581600px;}
.y1bd{bottom:837.093000px;}
.y1f4{bottom:839.336700px;}
.y1bc{bottom:839.343000px;}
.y2e9{bottom:839.566350px;}
.y101{bottom:839.669850px;}
.ydf{bottom:839.825100px;}
.y25f{bottom:840.549600px;}
.y217{bottom:840.606300px;}
.y186{bottom:841.428000px;}
.y66{bottom:841.429350px;}
.y8b{bottom:841.688100px;}
.yc5{bottom:841.739850px;}
.y46{bottom:841.895100px;}
.yb0{bottom:841.946850px;}
.y2a8{bottom:843.444750px;}
.y22{bottom:844.302750px;}
.y4{bottom:852.086250px;}
.y32e{bottom:854.684850px;}
.y288{bottom:855.290850px;}
.y1f3{bottom:857.336700px;}
.y1f1{bottom:857.343000px;}
.y167{bottom:857.954850px;}
.y2e8{bottom:860.611350px;}
.y100{bottom:860.680350px;}
.yde{bottom:860.783850px;}
.y25e{bottom:861.266850px;}
.y216{bottom:861.303900px;}
.y2a7{bottom:861.444750px;}
.y185{bottom:861.852000px;}
.y65{bottom:861.853350px;}
.y8a{bottom:862.025850px;}
.yc4{bottom:862.060350px;}
.y45{bottom:862.163850px;}
.yaf{bottom:862.198350px;}
.y30c{bottom:862.307850px;}
.y21{bottom:864.267750px;}
.y1f2{bottom:875.336700px;}
.y1bb{bottom:875.343000px;}
.y34b{bottom:877.716450px;}
.y287{bottom:878.992350px;}
.y2a6{bottom:879.444750px;}
.y166{bottom:880.328100px;}
.y2e7{bottom:881.656350px;}
.yff{bottom:881.690850px;}
.ydd{bottom:881.742600px;}
.y25d{bottom:881.984100px;}
.y215{bottom:882.001350px;}
.y3{bottom:882.146250px;}
.y64{bottom:882.277350px;}
.y89{bottom:882.363600px;}
.yc3{bottom:882.380850px;}
.y44{bottom:882.432600px;}
.yae{bottom:882.449850px;}
.y30b{bottom:883.003350px;}
.y32d{bottom:883.444350px;}
.y20{bottom:884.232750px;}
.y2a5{bottom:897.444750px;}
.y34a{bottom:900.207450px;}
.y43{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1f{bottom:904.197750px;}
.y1e{bottom:948.189000px;}
.h27{height:21.720735px;}
.h35{height:30.667280px;}
.h22{height:34.074756px;}
.h21{height:39.185969px;}
.h8{height:40.620539px;}
.h11{height:41.396484px;}
.ha{height:46.757812px;}
.h2f{height:47.605957px;}
.h2d{height:51.826172px;}
.h9{height:52.602539px;}
.h37{height:55.488281px;}
.h38{height:56.567871px;}
.h39{height:56.938477px;}
.h3a{height:58.262695px;}
.h29{height:58.437666px;}
.h4{height:58.447266px;}
.h3{height:61.369629px;}
.h25{height:63.811523px;}
.h2a{height:64.291992px;}
.h7{height:67.214355px;}
.h32{height:67.223955px;}
.h31{height:67.224555px;}
.h1d{height:67.228155px;}
.hb{height:67.229355px;}
.h34{height:67.233555px;}
.h30{height:67.245555px;}
.h36{height:67.246755px;}
.h28{height:67.274355px;}
.h33{height:67.302555px;}
.h2b{height:67.309755px;}
.h2c{height:67.571355px;}
.h16{height:68.793400px;}
.h13{height:68.819800px;}
.h17{height:68.846200px;}
.h18{height:68.846800px;}
.h1b{height:68.872600px;}
.h15{height:68.899000px;}
.h14{height:68.899600px;}
.h26{height:68.911600px;}
.hf{height:68.926000px;}
.h20{height:68.929000px;}
.h24{height:68.929600px;}
.h1a{height:68.938600px;}
.he{height:68.941000px;}
.hd{height:68.943400px;}
.h1f{height:68.948200px;}
.h19{height:68.950600px;}
.h23{height:68.954800px;}
.h1e{height:68.968000px;}
.hc{height:69.113200px;}
.h1c{height:69.351400px;}
.h2{height:73.059082px;}
.h12{height:75.192000px;}
.h10{height:75.203400px;}
.h6{height:81.826172px;}
.h5{height:105.205078px;}
.h2e{height:130.447266px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:80.722050px;}
.x8{left:82.964250px;}
.xb{left:84.017250px;}
.x1{left:85.039350px;}
.x1b{left:90.018600px;}
.x36{left:93.634800px;}
.x34{left:102.447000px;}
.x9{left:103.725450px;}
.x35{left:104.809500px;}
.x7{left:105.990750px;}
.x13{left:108.885450px;}
.x1e{left:110.943600px;}
.x11{left:112.166400px;}
.xe{left:115.910400px;}
.x2b{left:139.039350px;}
.x37{left:144.634800px;}
.x15{left:146.223750px;}
.x1d{left:151.113600px;}
.x17{left:170.000250px;}
.x18{left:178.596750px;}
.x1a{left:187.266750px;}
.x16{left:188.595750px;}
.x19{left:189.612750px;}
.x12{left:191.061900px;}
.x1c{left:209.418600px;}
.x14{left:213.494250px;}
.x3{left:227.615250px;}
.x5{left:229.002600px;}
.x4{left:231.881250px;}
.x2{left:233.415450px;}
.x2c{left:260.810550px;}
.xf{left:272.642250px;}
.x31{left:281.705550px;}
.x2a{left:298.385550px;}
.x30{left:306.170550px;}
.x2f{left:307.220550px;}
.x32{left:314.930550px;}
.x33{left:315.935550px;}
.x2d{left:332.870550px;}
.x38{left:365.959800px;}
.x39{left:369.409800px;}
.x1f{left:385.156050px;}
.x6{left:393.006150px;}
.x2e{left:395.720550px;}
.x23{left:408.016050px;}
.x22{left:410.206050px;}
.x27{left:412.276050px;}
.x25{left:413.956050px;}
.x28{left:415.846050px;}
.x26{left:424.456050px;}
.x21{left:429.736050px;}
.x3c{left:432.675150px;}
.x3b{left:433.953900px;}
.x3d{left:435.000150px;}
.x29{left:451.846050px;}
.x24{left:465.631050px;}
.x20{left:481.936050px;}
.x3a{left:543.144150px;}
.xc{left:572.316300px;}
.xd{left:573.867300px;}
.x10{left:615.325050px;}
@media print{
.v5{vertical-align:-64.000000pt;}
.v4{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.426667pt;}
.v3{vertical-align:15.104000pt;}
.v1{vertical-align:26.609067pt;}
.v6{vertical-align:64.000000pt;}
.ls85{letter-spacing:-9.629333pt;}
.ls7c{letter-spacing:-9.016000pt;}
.lsfc{letter-spacing:-6.194667pt;}
.lsa9{letter-spacing:-6.192000pt;}
.ls131{letter-spacing:-5.866667pt;}
.lse7{letter-spacing:-5.642667pt;}
.ls84{letter-spacing:-5.336000pt;}
.ls41{letter-spacing:-5.274667pt;}
.lsa7{letter-spacing:-5.152000pt;}
.lscf{letter-spacing:-4.458667pt;}
.ls86{letter-spacing:-4.048000pt;}
.ls53{letter-spacing:-3.733333pt;}
.ls10c{letter-spacing:-3.373333pt;}
.ls5c{letter-spacing:-3.066667pt;}
.lsa8{letter-spacing:-3.024000pt;}
.lsa1{letter-spacing:-2.944000pt;}
.ls42{letter-spacing:-2.882667pt;}
.ls6c{letter-spacing:-2.866667pt;}
.ls68{letter-spacing:-2.773333pt;}
.lsd2{letter-spacing:-2.760000pt;}
.ls78{letter-spacing:-2.533333pt;}
.lse2{letter-spacing:-2.514667pt;}
.ls5e{letter-spacing:-2.400000pt;}
.ls79{letter-spacing:-2.392000pt;}
.ls94{letter-spacing:-2.330667pt;}
.ls12c{letter-spacing:-2.266667pt;}
.ls5d{letter-spacing:-2.240000pt;}
.lsa5{letter-spacing:-2.208000pt;}
.ls14{letter-spacing:-2.200000pt;}
.ls55{letter-spacing:-2.146667pt;}
.ls46{letter-spacing:-2.085333pt;}
.lsf3{letter-spacing:-2.024000pt;}
.lsaa{letter-spacing:-1.968000pt;}
.ls45{letter-spacing:-1.962667pt;}
.lse1{letter-spacing:-1.901333pt;}
.ls61{letter-spacing:-1.866667pt;}
.ls91{letter-spacing:-1.840000pt;}
.ls65{letter-spacing:-1.813333pt;}
.lsfb{letter-spacing:-1.800000pt;}
.ls11e{letter-spacing:-1.792000pt;}
.ls87{letter-spacing:-1.778667pt;}
.ls60{letter-spacing:-1.760000pt;}
.lsf2{letter-spacing:-1.717333pt;}
.ls107{letter-spacing:-1.656000pt;}
.lsd1{letter-spacing:-1.642667pt;}
.ls93{letter-spacing:-1.594667pt;}
.ls7e{letter-spacing:-1.546667pt;}
.ls82{letter-spacing:-1.533333pt;}
.ls62{letter-spacing:-1.493333pt;}
.ls2d{letter-spacing:-1.472000pt;}
.lsc1{letter-spacing:-1.466667pt;}
.ls11c{letter-spacing:-1.456000pt;}
.lsbf{letter-spacing:-1.440000pt;}
.ls92{letter-spacing:-1.410667pt;}
.lsce{letter-spacing:-1.408000pt;}
.ls7a{letter-spacing:-1.349333pt;}
.ls12e{letter-spacing:-1.333333pt;}
.ls3f{letter-spacing:-1.288000pt;}
.lsb5{letter-spacing:-1.280000pt;}
.ls118{letter-spacing:-1.232000pt;}
.ls54{letter-spacing:-1.226667pt;}
.lscc{letter-spacing:-1.173333pt;}
.ls4b{letter-spacing:-1.165333pt;}
.lsb6{letter-spacing:-1.120000pt;}
.ls40{letter-spacing:-1.104000pt;}
.lsad{letter-spacing:-1.056000pt;}
.ls17{letter-spacing:-1.042667pt;}
.ls130{letter-spacing:-1.013333pt;}
.lsea{letter-spacing:-1.008000pt;}
.ls70{letter-spacing:-0.981333pt;}
.lsd9{letter-spacing:-0.965448pt;}
.ls5f{letter-spacing:-0.960000pt;}
.ls4c{letter-spacing:-0.920000pt;}
.ls116{letter-spacing:-0.896000pt;}
.lsab{letter-spacing:-0.864000pt;}
.ls47{letter-spacing:-0.858667pt;}
.ls63{letter-spacing:-0.853333pt;}
.ls122{letter-spacing:-0.840000pt;}
.lsaf{letter-spacing:-0.822419pt;}
.ls132{letter-spacing:-0.800000pt;}
.ls35{letter-spacing:-0.797333pt;}
.ls113{letter-spacing:-0.784000pt;}
.lse8{letter-spacing:-0.750904pt;}
.lsd{letter-spacing:-0.746667pt;}
.ls30{letter-spacing:-0.736000pt;}
.ls3e{letter-spacing:-0.733333pt;}
.ls11b{letter-spacing:-0.728000pt;}
.lsd5{letter-spacing:-0.720000pt;}
.lsd0{letter-spacing:-0.704000pt;}
.ls12f{letter-spacing:-0.693333pt;}
.ls6d{letter-spacing:-0.674667pt;}
.lsdb{letter-spacing:-0.643632pt;}
.ls126{letter-spacing:-0.616000pt;}
.ls32{letter-spacing:-0.613333pt;}
.ls6{letter-spacing:-0.586667pt;}
.ls10f{letter-spacing:-0.560000pt;}
.ls81{letter-spacing:-0.552000pt;}
.lse0{letter-spacing:-0.536360pt;}
.lsa{letter-spacing:-0.533333pt;}
.lsb0{letter-spacing:-0.531696pt;}
.ls117{letter-spacing:-0.504000pt;}
.ls95{letter-spacing:-0.490667pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls4e{letter-spacing:-0.429333pt;}
.lsf0{letter-spacing:-0.393331pt;}
.ls11a{letter-spacing:-0.392000pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls2e{letter-spacing:-0.368000pt;}
.lse9{letter-spacing:-0.363792pt;}
.ls119{letter-spacing:-0.336000pt;}
.lse5{letter-spacing:-0.307824pt;}
.ls19{letter-spacing:-0.306667pt;}
.ls97{letter-spacing:-0.266667pt;}
.ls44{letter-spacing:-0.245333pt;}
.lscd{letter-spacing:-0.234667pt;}
.lsf1{letter-spacing:-0.217653pt;}
.lsa6{letter-spacing:-0.214544pt;}
.lsf9{letter-spacing:-0.213333pt;}
.lsf4{letter-spacing:-0.195888pt;}
.ls83{letter-spacing:-0.184000pt;}
.lscb{letter-spacing:-0.178787pt;}
.ls6e{letter-spacing:-0.122667pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls88{letter-spacing:-0.096000pt;}
.ls48{letter-spacing:-0.061333pt;}
.lsac{letter-spacing:-0.055968pt;}
.ls51{letter-spacing:-0.048000pt;}
.lsda{letter-spacing:-0.035757pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000267pt;}
.ls74{letter-spacing:0.000533pt;}
.lsc8{letter-spacing:0.011733pt;}
.lsc7{letter-spacing:0.021867pt;}
.ls11{letter-spacing:0.022933pt;}
.lsc5{letter-spacing:0.027200pt;}
.lsf6{letter-spacing:0.035757pt;}
.lsc9{letter-spacing:0.043733pt;}
.ls1a{letter-spacing:0.048000pt;}
.lsc6{letter-spacing:0.048533pt;}
.lsb9{letter-spacing:0.053333pt;}
.ls6b{letter-spacing:0.061333pt;}
.lsdc{letter-spacing:0.083952pt;}
.lsdd{letter-spacing:0.096000pt;}
.lsf7{letter-spacing:0.111936pt;}
.ls18{letter-spacing:0.122667pt;}
.ls125{letter-spacing:0.168000pt;}
.lsfd{letter-spacing:0.184000pt;}
.lsed{letter-spacing:0.200000pt;}
.ls73{letter-spacing:0.202400pt;}
.lsdf{letter-spacing:0.245333pt;}
.ls66{letter-spacing:0.266667pt;}
.ls24{letter-spacing:0.302400pt;}
.ls39{letter-spacing:0.302933pt;}
.ls12b{letter-spacing:0.320000pt;}
.lsd4{letter-spacing:0.336000pt;}
.ls5b{letter-spacing:0.368000pt;}
.ls129{letter-spacing:0.392000pt;}
.lsba{letter-spacing:0.400000pt;}
.lsbd{letter-spacing:0.426667pt;}
.ls7b{letter-spacing:0.429333pt;}
.ls21{letter-spacing:0.474133pt;}
.ls3b{letter-spacing:0.474667pt;}
.ls67{letter-spacing:0.480000pt;}
.ls90{letter-spacing:0.490667pt;}
.ls25{letter-spacing:0.498667pt;}
.lsca{letter-spacing:0.500603pt;}
.lsd3{letter-spacing:0.503712pt;}
.ls128{letter-spacing:0.504000pt;}
.ls10a{letter-spacing:0.533333pt;}
.lsa3{letter-spacing:0.545867pt;}
.ls6f{letter-spacing:0.552000pt;}
.ls112{letter-spacing:0.560000pt;}
.ls80{letter-spacing:0.600000pt;}
.ls105{letter-spacing:0.613333pt;}
.ls1d{letter-spacing:0.664000pt;}
.ls106{letter-spacing:0.674667pt;}
.ls102{letter-spacing:0.733333pt;}
.lseb{letter-spacing:0.736000pt;}
.lsd8{letter-spacing:0.800000pt;}
.lsae{letter-spacing:0.823467pt;}
.lsb2{letter-spacing:0.853333pt;}
.ls64{letter-spacing:0.906667pt;}
.ls2f{letter-spacing:0.920000pt;}
.lsbe{letter-spacing:0.933333pt;}
.ls38{letter-spacing:0.946133pt;}
.ls23{letter-spacing:0.946667pt;}
.ls4{letter-spacing:0.981333pt;}
.lsb3{letter-spacing:1.013333pt;}
.ls3c{letter-spacing:1.026133pt;}
.ls34{letter-spacing:1.042667pt;}
.ls115{letter-spacing:1.064000pt;}
.ls4a{letter-spacing:1.073333pt;}
.ls31{letter-spacing:1.104000pt;}
.ls20{letter-spacing:1.112000pt;}
.ls2a{letter-spacing:1.112533pt;}
.ls15{letter-spacing:1.120000pt;}
.ls50{letter-spacing:1.152000pt;}
.ls8b{letter-spacing:1.165333pt;}
.ls8f{letter-spacing:1.226667pt;}
.lsf8{letter-spacing:1.248000pt;}
.lsff{letter-spacing:1.266667pt;}
.ls8a{letter-spacing:1.298133pt;}
.ls3a{letter-spacing:1.301867pt;}
.ls27{letter-spacing:1.302400pt;}
.ls2b{letter-spacing:1.357333pt;}
.ls28{letter-spacing:1.392533pt;}
.ls4f{letter-spacing:1.410667pt;}
.lsd7{letter-spacing:1.428267pt;}
.ls120{letter-spacing:1.568000pt;}
.lsc4{letter-spacing:1.575467pt;}
.lsde{letter-spacing:1.584000pt;}
.ls56{letter-spacing:1.594667pt;}
.ls1e{letter-spacing:1.608533pt;}
.ls29{letter-spacing:1.609067pt;}
.ls124{letter-spacing:1.624000pt;}
.ls1f{letter-spacing:1.700800pt;}
.ls2c{letter-spacing:1.701333pt;}
.ls103{letter-spacing:1.717333pt;}
.ls77{letter-spacing:1.778400pt;}
.ls26{letter-spacing:1.811200pt;}
.ls6a{letter-spacing:1.811733pt;}
.lsc3{letter-spacing:1.814400pt;}
.ls4d{letter-spacing:1.840000pt;}
.lsb4{letter-spacing:1.920000pt;}
.lsee{letter-spacing:1.962667pt;}
.ls127{letter-spacing:2.016000pt;}
.ls75{letter-spacing:2.085333pt;}
.ls13{letter-spacing:2.133333pt;}
.ls3{letter-spacing:2.304000pt;}
.lse3{letter-spacing:2.330667pt;}
.ls1c{letter-spacing:2.336533pt;}
.ls8d{letter-spacing:2.392000pt;}
.ls8e{letter-spacing:2.453333pt;}
.ls22{letter-spacing:2.516800pt;}
.lse4{letter-spacing:2.637333pt;}
.ls104{letter-spacing:2.698667pt;}
.ls9c{letter-spacing:3.038933pt;}
.ls76{letter-spacing:3.083733pt;}
.ls16{letter-spacing:3.285333pt;}
.ls9b{letter-spacing:3.326400pt;}
.ls8c{letter-spacing:3.618667pt;}
.lsb{letter-spacing:3.733333pt;}
.ls99{letter-spacing:3.789867pt;}
.ls58{letter-spacing:3.886400pt;}
.ls43{letter-spacing:3.986667pt;}
.ls9d{letter-spacing:4.341333pt;}
.ls9a{letter-spacing:4.400000pt;}
.ls101{letter-spacing:4.416000pt;}
.ls114{letter-spacing:4.424000pt;}
.ls10e{letter-spacing:4.480000pt;}
.lsa0{letter-spacing:5.045333pt;}
.ls11d{letter-spacing:5.096000pt;}
.ls5{letter-spacing:5.120000pt;}
.ls10{letter-spacing:5.121067pt;}
.lsc{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls9f{letter-spacing:5.514667pt;}
.ls111{letter-spacing:5.600000pt;}
.ls121{letter-spacing:5.712000pt;}
.ls98{letter-spacing:5.749333pt;}
.ls9e{letter-spacing:5.866667pt;}
.ls3d{letter-spacing:6.188533pt;}
.ls109{letter-spacing:6.194667pt;}
.ls11f{letter-spacing:6.664000pt;}
.ls123{letter-spacing:7.112000pt;}
.lsa4{letter-spacing:7.253472pt;}
.lsef{letter-spacing:7.254005pt;}
.ls12d{letter-spacing:7.680000pt;}
.ls10d{letter-spacing:7.840000pt;}
.ls12{letter-spacing:8.238400pt;}
.ls89{letter-spacing:8.464000pt;}
.ls10b{letter-spacing:10.856000pt;}
.ls36{letter-spacing:11.162667pt;}
.ls33{letter-spacing:11.346667pt;}
.lsc2{letter-spacing:44.693333pt;}
.lsbc{letter-spacing:58.506667pt;}
.lsb7{letter-spacing:177.013333pt;}
.ls5a{letter-spacing:202.293333pt;}
.ls59{letter-spacing:219.253333pt;}
.lsfe{letter-spacing:445.338133pt;}
.lsf5{letter-spacing:445.804800pt;}
.ls100{letter-spacing:445.871467pt;}
.ls108{letter-spacing:446.037867pt;}
.ls110{letter-spacing:446.501333pt;}
.lsbb{letter-spacing:448.389867pt;}
.lsfa{letter-spacing:448.397867pt;}
.lsd6{letter-spacing:448.516267pt;}
.ls7f{letter-spacing:448.699733pt;}
.lsb8{letter-spacing:448.879467pt;}
.lse6{letter-spacing:448.949867pt;}
.lsec{letter-spacing:449.116267pt;}
.ls12a{letter-spacing:449.228267pt;}
.lsa2{letter-spacing:449.266133pt;}
.lsb1{letter-spacing:449.292800pt;}
.ls96{letter-spacing:449.532800pt;}
.lsc0{letter-spacing:450.782933pt;}
.ls37{letter-spacing:455.274667pt;}
.lse{letter-spacing:456.721600pt;}
.ls72{letter-spacing:457.088000pt;}
.ls69{letter-spacing:457.414933pt;}
.ls52{letter-spacing:458.268267pt;}
.ls7d{letter-spacing:880.020267pt;}
.ls49{letter-spacing:880.460267pt;}
.ls57{letter-spacing:882.793600pt;}
.ls71{letter-spacing:886.393600pt;}
.ls1b{letter-spacing:888.153600pt;}
.ls0{letter-spacing:913.353600pt;}
.wsa0{word-spacing:-177.013333pt;}
.ws6c{word-spacing:-61.333333pt;}
.wsa8{word-spacing:-53.333333pt;}
.ws0{word-spacing:-29.280000pt;}
.wsf3{word-spacing:-23.576000pt;}
.ws10{word-spacing:-23.360000pt;}
.ws115{word-spacing:-22.666667pt;}
.ws86{word-spacing:-22.000000pt;}
.wsf{word-spacing:-21.413333pt;}
.ws3{word-spacing:-20.213333pt;}
.ws1{word-spacing:-20.106667pt;}
.wsea{word-spacing:-20.000000pt;}
.wsa3{word-spacing:-19.666667pt;}
.wsbb{word-spacing:-19.533333pt;}
.wseb{word-spacing:-19.466667pt;}
.ws66{word-spacing:-19.333333pt;}
.wsf0{word-spacing:-19.266667pt;}
.wsa2{word-spacing:-19.133333pt;}
.wsd9{word-spacing:-18.933333pt;}
.ws8c{word-spacing:-18.733333pt;}
.ws84{word-spacing:-18.466667pt;}
.ws27{word-spacing:-18.000000pt;}
.ws71{word-spacing:-17.296000pt;}
.wsa9{word-spacing:-17.266667pt;}
.ws18{word-spacing:-17.234667pt;}
.wse7{word-spacing:-16.933333pt;}
.ws70{word-spacing:-16.866667pt;}
.ws7f{word-spacing:-16.744000pt;}
.ws55{word-spacing:-16.621333pt;}
.ws1b{word-spacing:-16.560000pt;}
.wsd{word-spacing:-16.533333pt;}
.wsaf{word-spacing:-16.485333pt;}
.ws114{word-spacing:-16.466667pt;}
.wsb1{word-spacing:-16.437333pt;}
.wsb2{word-spacing:-16.376000pt;}
.ws6f{word-spacing:-16.314667pt;}
.ws5a{word-spacing:-16.200000pt;}
.ws28{word-spacing:-16.130667pt;}
.ws109{word-spacing:-16.128000pt;}
.wsa5{word-spacing:-16.106667pt;}
.ws72{word-spacing:-16.069333pt;}
.ws9e{word-spacing:-16.000000pt;}
.ws54{word-spacing:-15.866667pt;}
.ws85{word-spacing:-15.840000pt;}
.ws68{word-spacing:-15.701333pt;}
.ws7e{word-spacing:-15.640000pt;}
.ws5e{word-spacing:-15.578667pt;}
.ws6e{word-spacing:-15.456000pt;}
.ws107{word-spacing:-15.400000pt;}
.wsec{word-spacing:-15.394667pt;}
.ws69{word-spacing:-15.149333pt;}
.ws3d{word-spacing:-15.000000pt;}
.ws63{word-spacing:-14.986667pt;}
.ws6a{word-spacing:-14.965333pt;}
.ws2a{word-spacing:-14.904000pt;}
.ws5c{word-spacing:-14.842667pt;}
.ws1a{word-spacing:-14.781333pt;}
.ws116{word-spacing:-14.720000pt;}
.ws117{word-spacing:-14.613333pt;}
.ws67{word-spacing:-14.597333pt;}
.wsc0{word-spacing:-14.536000pt;}
.wsa4{word-spacing:-14.506667pt;}
.wsbd{word-spacing:-14.490667pt;}
.wsdb{word-spacing:-14.474667pt;}
.ws5f{word-spacing:-14.413333pt;}
.wsa6{word-spacing:-14.400000pt;}
.wsbc{word-spacing:-14.352000pt;}
.ws108{word-spacing:-14.336000pt;}
.ws2c{word-spacing:-14.290667pt;}
.ws3f{word-spacing:-14.229333pt;}
.ws2d{word-spacing:-14.106667pt;}
.ws7b{word-spacing:-14.045333pt;}
.ws5b{word-spacing:-13.984000pt;}
.ws3e{word-spacing:-13.922667pt;}
.ws35{word-spacing:-13.861333pt;}
.ws10a{word-spacing:-13.832000pt;}
.ws5d{word-spacing:-13.800000pt;}
.wsae{word-spacing:-13.786667pt;}
.wsce{word-spacing:-13.738667pt;}
.ws19{word-spacing:-13.677333pt;}
.wsd0{word-spacing:-13.616000pt;}
.wscf{word-spacing:-13.554667pt;}
.wsf2{word-spacing:-13.493333pt;}
.ws80{word-spacing:-13.488000pt;}
.wsdc{word-spacing:-13.432000pt;}
.ws73{word-spacing:-13.392000pt;}
.ws7c{word-spacing:-13.370667pt;}
.wsf7{word-spacing:-13.328000pt;}
.wsac{word-spacing:-13.317333pt;}
.ws7d{word-spacing:-13.309333pt;}
.ws2b{word-spacing:-13.186667pt;}
.wsdd{word-spacing:-13.125333pt;}
.ws9d{word-spacing:-13.120000pt;}
.wsad{word-spacing:-13.082667pt;}
.ws2e{word-spacing:-13.064000pt;}
.ws6b{word-spacing:-13.002667pt;}
.wsa7{word-spacing:-12.960000pt;}
.wsd7{word-spacing:-12.941333pt;}
.wsb0{word-spacing:-12.848000pt;}
.ws2{word-spacing:-12.800000pt;}
.wsf8{word-spacing:-12.600000pt;}
.ws92{word-spacing:-12.432000pt;}
.ws64{word-spacing:-12.320000pt;}
.ws4f{word-spacing:-12.213333pt;}
.wsb3{word-spacing:-12.192000pt;}
.wsf9{word-spacing:-12.040000pt;}
.ws29{word-spacing:-11.960000pt;}
.wsd2{word-spacing:-11.808000pt;}
.ws65{word-spacing:-11.626667pt;}
.wse{word-spacing:-11.610667pt;}
.ws21{word-spacing:-11.346667pt;}
.ws26{word-spacing:-11.162667pt;}
.wsb5{word-spacing:-11.136000pt;}
.wsb4{word-spacing:-10.992000pt;}
.wsf1{word-spacing:-10.856000pt;}
.wsaa{word-spacing:-10.548413pt;}
.wse1{word-spacing:-10.083568pt;}
.ws6d{word-spacing:-10.047811pt;}
.wsbf{word-spacing:-10.012053pt;}
.ws8e{word-spacing:-9.997333pt;}
.wsab{word-spacing:-9.869024pt;}
.ws8d{word-spacing:-9.833267pt;}
.wsc6{word-spacing:-9.511451pt;}
.wsd1{word-spacing:-9.296907pt;}
.ws99{word-spacing:-9.225392pt;}
.ws118{word-spacing:-9.120000pt;}
.wsbe{word-spacing:-9.082363pt;}
.wse8{word-spacing:-8.954667pt;}
.ws8f{word-spacing:-8.832000pt;}
.wsda{word-spacing:-8.519573pt;}
.ws91{word-spacing:-7.296000pt;}
.ws10f{word-spacing:-7.112000pt;}
.ws10b{word-spacing:-6.664000pt;}
.ws87{word-spacing:-5.866667pt;}
.ws78{word-spacing:-5.765333pt;}
.ws10d{word-spacing:-5.712000pt;}
.wsfa{word-spacing:-5.600000pt;}
.ws88{word-spacing:-5.514667pt;}
.ws5{word-spacing:-5.333333pt;}
.ws106{word-spacing:-5.096000pt;}
.ws89{word-spacing:-5.045333pt;}
.wse2{word-spacing:-4.845333pt;}
.wsf5{word-spacing:-4.480000pt;}
.wsfd{word-spacing:-4.424000pt;}
.ws31{word-spacing:-3.986667pt;}
.ws95{word-spacing:-3.840000pt;}
.wsb{word-spacing:-3.733333pt;}
.ws13{word-spacing:-3.285333pt;}
.wscb{word-spacing:-2.637333pt;}
.wsca{word-spacing:-2.330667pt;}
.ws11{word-spacing:-2.133333pt;}
.ws113{word-spacing:-2.016000pt;}
.ws38{word-spacing:-1.840000pt;}
.ws110{word-spacing:-1.624000pt;}
.ws41{word-spacing:-1.594667pt;}
.wsc5{word-spacing:-1.584000pt;}
.ws10c{word-spacing:-1.568000pt;}
.ws3a{word-spacing:-1.410667pt;}
.wse4{word-spacing:-1.248000pt;}
.ws3b{word-spacing:-1.152000pt;}
.ws12{word-spacing:-1.120000pt;}
.ws1f{word-spacing:-1.104000pt;}
.wsfe{word-spacing:-1.064000pt;}
.ws9c{word-spacing:-1.056000pt;}
.ws23{word-spacing:-1.042667pt;}
.ws6{word-spacing:-0.981333pt;}
.ws1c{word-spacing:-0.920000pt;}
.wse6{word-spacing:-0.800000pt;}
.wsd8{word-spacing:-0.736000pt;}
.wsfb{word-spacing:-0.560000pt;}
.ws58{word-spacing:-0.552000pt;}
.wsba{word-spacing:-0.503712pt;}
.ws81{word-spacing:-0.490667pt;}
.ws53{word-spacing:-0.480000pt;}
.ws9a{word-spacing:-0.429333pt;}
.ws50{word-spacing:-0.368000pt;}
.wsc7{word-spacing:-0.245333pt;}
.wse9{word-spacing:-0.184000pt;}
.ws111{word-spacing:-0.168000pt;}
.ws15{word-spacing:-0.122667pt;}
.wse3{word-spacing:-0.111936pt;}
.wsc4{word-spacing:-0.096000pt;}
.wsc3{word-spacing:-0.083952pt;}
.ws17{word-spacing:-0.048000pt;}
.ws90{word-spacing:-0.019200pt;}
.ws4{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.048000pt;}
.ws98{word-spacing:0.055968pt;}
.ws33{word-spacing:0.061333pt;}
.ws8{word-spacing:0.106667pt;}
.ws57{word-spacing:0.122667pt;}
.ws75{word-spacing:0.184000pt;}
.wse0{word-spacing:0.195888pt;}
.wse5{word-spacing:0.213333pt;}
.wsb6{word-spacing:0.234667pt;}
.wsb8{word-spacing:0.245333pt;}
.wsa1{word-spacing:0.266667pt;}
.ws16{word-spacing:0.306667pt;}
.wscd{word-spacing:0.307824pt;}
.ws100{word-spacing:0.336000pt;}
.wsd5{word-spacing:0.363792pt;}
.ws25{word-spacing:0.368000pt;}
.ws101{word-spacing:0.392000pt;}
.wsde{word-spacing:0.393331pt;}
.ws39{word-spacing:0.429333pt;}
.ws9{word-spacing:0.480000pt;}
.wsc1{word-spacing:0.490667pt;}
.ws103{word-spacing:0.504000pt;}
.ws9b{word-spacing:0.531696pt;}
.wsa{word-spacing:0.533333pt;}
.ws7a{word-spacing:0.552000pt;}
.wsf6{word-spacing:0.560000pt;}
.ws7{word-spacing:0.586667pt;}
.ws20{word-spacing:0.613333pt;}
.ws112{word-spacing:0.616000pt;}
.wsc2{word-spacing:0.643632pt;}
.ws56{word-spacing:0.674667pt;}
.ws11a{word-spacing:0.693333pt;}
.ws102{word-spacing:0.728000pt;}
.ws1e{word-spacing:0.736000pt;}
.wsc{word-spacing:0.746667pt;}
.wsfc{word-spacing:0.784000pt;}
.ws24{word-spacing:0.797333pt;}
.ws11e{word-spacing:0.800000pt;}
.ws10e{word-spacing:0.840000pt;}
.ws34{word-spacing:0.858667pt;}
.ws97{word-spacing:0.864000pt;}
.wsff{word-spacing:0.896000pt;}
.ws37{word-spacing:0.920000pt;}
.ws59{word-spacing:0.981333pt;}
.wsd6{word-spacing:1.008000pt;}
.ws11c{word-spacing:1.013333pt;}
.ws14{word-spacing:1.042667pt;}
.wsef{word-spacing:1.104000pt;}
.ws9f{word-spacing:1.120000pt;}
.ws36{word-spacing:1.165333pt;}
.ws60{word-spacing:1.226667pt;}
.ws104{word-spacing:1.232000pt;}
.ws11b{word-spacing:1.280000pt;}
.ws2f{word-spacing:1.288000pt;}
.ws119{word-spacing:1.333333pt;}
.ws8b{word-spacing:1.349333pt;}
.ws82{word-spacing:1.410667pt;}
.ws105{word-spacing:1.456000pt;}
.ws11d{word-spacing:1.493333pt;}
.ws76{word-spacing:1.533333pt;}
.ws83{word-spacing:1.594667pt;}
.wsed{word-spacing:1.656000pt;}
.wsee{word-spacing:1.717333pt;}
.ws52{word-spacing:1.760000pt;}
.wscc{word-spacing:1.778667pt;}
.wsc8{word-spacing:1.901333pt;}
.wsc9{word-spacing:1.962667pt;}
.ws96{word-spacing:1.968000pt;}
.wsdf{word-spacing:2.024000pt;}
.ws32{word-spacing:2.085333pt;}
.ws40{word-spacing:2.146667pt;}
.ws93{word-spacing:2.208000pt;}
.ws22{word-spacing:2.269333pt;}
.ws79{word-spacing:2.514667pt;}
.wsb9{word-spacing:2.760000pt;}
.ws30{word-spacing:2.882667pt;}
.ws8a{word-spacing:2.944000pt;}
.ws51{word-spacing:3.066667pt;}
.ws1d{word-spacing:3.109333pt;}
.wsf4{word-spacing:3.373333pt;}
.ws94{word-spacing:3.936000pt;}
.wsb7{word-spacing:4.458667pt;}
.ws74{word-spacing:5.336000pt;}
.wsd3{word-spacing:5.642667pt;}
.ws62{word-spacing:7.247856pt;}
.ws61{word-spacing:9.016000pt;}
.ws77{word-spacing:9.629333pt;}
.wsd4{word-spacing:10.794667pt;}
.ws4d{word-spacing:176.960000pt;}
.ws4e{word-spacing:178.133333pt;}
.ws46{word-spacing:178.240000pt;}
.ws4c{word-spacing:178.720000pt;}
.ws4b{word-spacing:179.040000pt;}
.ws45{word-spacing:180.000000pt;}
.ws49{word-spacing:180.373333pt;}
.ws4a{word-spacing:180.906667pt;}
.ws47{word-spacing:181.333333pt;}
.ws48{word-spacing:183.946667pt;}
.ws44{word-spacing:184.586667pt;}
.ws43{word-spacing:203.146667pt;}
.ws42{word-spacing:203.413333pt;}
._32{margin-left:-177.509333pt;}
._33{margin-left:-176.458667pt;}
._31{margin-left:-173.317333pt;}
._24{margin-left:-16.865067pt;}
._f{margin-left:-14.148800pt;}
._1e{margin-left:-13.002400pt;}
._1f{margin-left:-11.941600pt;}
._1c{margin-left:-10.606400pt;}
._1d{margin-left:-9.368000pt;}
._a{margin-left:-8.295467pt;}
._9{margin-left:-7.032000pt;}
._e{margin-left:-5.827733pt;}
._b{margin-left:-4.905600pt;}
._d{margin-left:-3.457600pt;}
._c{margin-left:-2.436267pt;}
._7{margin-left:-1.269333pt;}
._2{width:1.103467pt;}
._1{width:2.133333pt;}
._8{width:3.517867pt;}
._4{width:4.697067pt;}
._3{width:5.734933pt;}
._5{width:6.672000pt;}
._6{width:7.648533pt;}
._17{width:8.582400pt;}
._18{width:9.991733pt;}
._19{width:10.973067pt;}
._1a{width:12.300533pt;}
._16{width:13.798667pt;}
._15{width:14.691733pt;}
._14{width:16.301867pt;}
._13{width:17.248533pt;}
._1b{width:18.535200pt;}
._20{width:19.566400pt;}
._21{width:20.493600pt;}
._3b{width:21.619467pt;}
._28{width:22.779733pt;}
._29{width:24.681888pt;}
._3a{width:28.011467pt;}
._3d{width:29.540533pt;}
._27{width:31.370064pt;}
._22{width:32.278667pt;}
._23{width:33.751733pt;}
._3c{width:35.352267pt;}
._11{width:38.617920pt;}
._2a{width:41.660235pt;}
._2c{width:52.237867pt;}
._2f{width:54.616800pt;}
._37{width:59.040000pt;}
._36{width:62.369867pt;}
._10{width:63.466667pt;}
._34{width:65.827467pt;}
._2d{width:71.355200pt;}
._2b{width:99.176000pt;}
._38{width:147.415467pt;}
._2e{width:174.769333pt;}
._30{width:177.013333pt;}
._35{width:205.548800pt;}
._25{width:219.786667pt;}
._12{width:224.896000pt;}
._39{width:268.322133pt;}
._0{width:514.133333pt;}
._26{width:1188.441067pt;}
.fs9{font-size:27.984000pt;}
.fse{font-size:31.093333pt;}
.fsc{font-size:35.757333pt;}
.fs8{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:55.968000pt;}
.fs3{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y371{bottom:94.173867pt;}
.y285{bottom:94.369200pt;}
.y2df{bottom:94.458800pt;}
.y23d{bottom:94.464267pt;}
.y88{bottom:94.466800pt;}
.y2ca{bottom:94.467067pt;}
.yfd{bottom:94.469733pt;}
.y42{bottom:94.474933pt;}
.y30a{bottom:94.480933pt;}
.y1d{bottom:94.482933pt;}
.yad{bottom:94.485600pt;}
.y13a{bottom:94.485733pt;}
.yfe{bottom:94.488133pt;}
.y63{bottom:94.500000pt;}
.y32c{bottom:94.663867pt;}
.y1ba{bottom:96.959600pt;}
.ydc{bottom:97.151067pt;}
.y165{bottom:107.041333pt;}
.y23c{bottom:109.800267pt;}
.y2c9{bottom:109.803067pt;}
.y41{bottom:109.810933pt;}
.y1c{bottom:109.818933pt;}
.y25c{bottom:109.821600pt;}
.y370{bottom:112.173867pt;}
.y2de{bottom:112.460133pt;}
.yac{bottom:112.484267pt;}
.y139{bottom:112.484400pt;}
.y14e{bottom:112.488133pt;}
.y62{bottom:112.516667pt;}
.y284{bottom:112.523867pt;}
.y87{bottom:112.621467pt;}
.y32b{bottom:113.059867pt;}
.yfc{bottom:113.099733pt;}
.y309{bottom:113.184933pt;}
.y214{bottom:113.598667pt;}
.y164{bottom:125.042667pt;}
.y23b{bottom:125.136267pt;}
.y2c8{bottom:125.139067pt;}
.y40{bottom:125.146933pt;}
.y1b{bottom:127.817600pt;}
.y121{bottom:128.931733pt;}
.y36f{bottom:130.173867pt;}
.y2dd{bottom:130.461467pt;}
.y14d{bottom:130.488133pt;}
.y61{bottom:130.530533pt;}
.y283{bottom:130.678533pt;}
.y86{bottom:130.776133pt;}
.y213{bottom:131.597333pt;}
.yfb{bottom:131.729733pt;}
.yc2{bottom:134.876800pt;}
.ydb{bottom:136.273733pt;}
.y2a4{bottom:136.377333pt;}
.y32a{bottom:139.015867pt;}
.y308{bottom:139.448933pt;}
.y23a{bottom:140.472267pt;}
.y2c7{bottom:140.475067pt;}
.y3f{bottom:140.482933pt;}
.y163{bottom:143.044000pt;}
.y120{bottom:144.267733pt;}
.y11f{bottom:146.930400pt;}
.y36e{bottom:148.173867pt;}
.y2dc{bottom:148.462800pt;}
.y14c{bottom:148.490267pt;}
.y60{bottom:148.561867pt;}
.y282{bottom:148.833200pt;}
.y85{bottom:148.930800pt;}
.yfa{bottom:150.359733pt;}
.yab{bottom:151.596267pt;}
.y25b{bottom:151.600400pt;}
.yc1{bottom:152.876800pt;}
.yda{bottom:154.340400pt;}
.y14b{bottom:154.394533pt;}
.y138{bottom:154.395867pt;}
.y239{bottom:155.808267pt;}
.y2c6{bottom:155.811067pt;}
.y3e{bottom:155.818933pt;}
.y329{bottom:157.411867pt;}
.y2a3{bottom:157.445333pt;}
.y162{bottom:161.045333pt;}
.y2db{bottom:166.464133pt;}
.y5f{bottom:166.578533pt;}
.y1a{bottom:166.942933pt;}
.y1a3{bottom:166.986667pt;}
.y281{bottom:166.987867pt;}
.y84{bottom:167.085467pt;}
.yaa{bottom:169.674267pt;}
.y25a{bottom:169.678400pt;}
.y36d{bottom:169.947200pt;}
.y212{bottom:170.733067pt;}
.y238{bottom:171.144267pt;}
.y2c5{bottom:171.147067pt;}
.y27c{bottom:171.154933pt;}
.y14a{bottom:172.395867pt;}
.y137{bottom:172.397200pt;}
.y3d{bottom:173.817600pt;}
.y328{bottom:175.807867pt;}
.y2a2{bottom:178.513333pt;}
.y161{bottom:179.046667pt;}
.y5e{bottom:184.598267pt;}
.y19{bottom:184.769600pt;}
.y307{bottom:185.081200pt;}
.y1a2{bottom:185.141333pt;}
.y280{bottom:185.142533pt;}
.y83{bottom:185.240133pt;}
.y184{bottom:185.994400pt;}
.y11e{bottom:186.073867pt;}
.y237{bottom:186.480267pt;}
.y2c4{bottom:186.483067pt;}
.yf9{bottom:187.619733pt;}
.ya9{bottom:187.752267pt;}
.y259{bottom:187.756400pt;}
.y211{bottom:188.734400pt;}
.y149{bottom:190.397200pt;}
.y136{bottom:190.398533pt;}
.y160{bottom:197.048000pt;}
.y36c{bottom:199.280533pt;}
.y2a1{bottom:199.581333pt;}
.y327{bottom:201.763867pt;}
.y236{bottom:201.816267pt;}
.y2c3{bottom:201.819067pt;}
.y2da{bottom:202.466800pt;}
.y5d{bottom:202.618133pt;}
.y1a1{bottom:203.296000pt;}
.y27f{bottom:203.297200pt;}
.y82{bottom:203.394800pt;}
.y306{bottom:203.787867pt;}
.y11d{bottom:204.749867pt;}
.ya8{bottom:205.830267pt;}
.y258{bottom:205.834400pt;}
.y183{bottom:205.881733pt;}
.yf8{bottom:206.249733pt;}
.y210{bottom:206.739867pt;}
.y148{bottom:208.398533pt;}
.y135{bottom:208.399867pt;}
.y3c{bottom:212.942400pt;}
.y27b{bottom:213.043467pt;}
.y18{bottom:213.929600pt;}
.y15f{bottom:215.049333pt;}
.y36b{bottom:215.947200pt;}
.y235{bottom:217.152267pt;}
.y2c2{bottom:219.817733pt;}
.y326{bottom:220.159867pt;}
.y2d9{bottom:220.468133pt;}
.y2a0{bottom:220.649333pt;}
.y349{bottom:220.691867pt;}
.y1a0{bottom:221.450667pt;}
.y27e{bottom:221.451867pt;}
.y81{bottom:221.543733pt;}
.y5c{bottom:221.846133pt;}
.y305{bottom:222.494533pt;}
.y11c{bottom:223.425867pt;}
.ya7{bottom:223.908267pt;}
.y257{bottom:223.912400pt;}
.y20f{bottom:224.745467pt;}
.y182{bottom:225.769067pt;}
.y134{bottom:226.387867pt;}
.y147{bottom:226.399867pt;}
.y27a{bottom:231.458800pt;}
.y234{bottom:232.488267pt;}
.y3b{bottom:232.553733pt;}
.y36a{bottom:232.613867pt;}
.y15e{bottom:233.050667pt;}
.y233{bottom:235.150933pt;}
.y2d8{bottom:238.469467pt;}
.y325{bottom:238.555867pt;}
.y348{bottom:238.695867pt;}
.y19f{bottom:239.605333pt;}
.y80{bottom:239.606533pt;}
.y5b{bottom:239.886400pt;}
.y304{bottom:241.201200pt;}
.y29f{bottom:241.717333pt;}
.ya6{bottom:241.986267pt;}
.y256{bottom:241.990400pt;}
.y20e{bottom:242.739867pt;}
.yf7{bottom:243.509733pt;}
.y146{bottom:244.387867pt;}
.y133{bottom:244.389200pt;}
.y181{bottom:245.656400pt;}
.y1dc{bottom:248.082667pt;}
.y369{bottom:249.280533pt;}
.y279{bottom:249.874133pt;}
.y3a{bottom:250.974533pt;}
.y15d{bottom:251.052000pt;}
.y232{bottom:251.595733pt;}
.y2d7{bottom:256.470800pt;}
.y347{bottom:256.699867pt;}
.y324{bottom:256.951867pt;}
.y19e{bottom:257.760000pt;}
.y7f{bottom:257.761200pt;}
.y5a{bottom:257.903067pt;}
.yd9{bottom:257.994267pt;}
.y17{bottom:258.209600pt;}
.y2c1{bottom:259.057200pt;}
.y303{bottom:259.907867pt;}
.ya5{bottom:260.064267pt;}
.y255{bottom:260.068400pt;}
.y11b{bottom:260.777867pt;}
.yf6{bottom:262.139733pt;}
.y145{bottom:262.389200pt;}
.y132{bottom:262.390533pt;}
.y29e{bottom:262.785333pt;}
.y1db{bottom:264.082667pt;}
.y180{bottom:265.543733pt;}
.y368{bottom:265.947200pt;}
.y231{bottom:266.931733pt;}
.y278{bottom:268.289467pt;}
.y15c{bottom:269.053333pt;}
.y39{bottom:269.377867pt;}
.y2d6{bottom:274.472133pt;}
.y7e{bottom:275.915867pt;}
.y59{bottom:275.919733pt;}
.y2c0{bottom:277.073867pt;}
.y16{bottom:277.369600pt;}
.ya4{bottom:278.142267pt;}
.y254{bottom:278.146400pt;}
.y302{bottom:278.614533pt;}
.y20d{bottom:278.774533pt;}
.y11a{bottom:279.453867pt;}
.y1da{bottom:280.082667pt;}
.y144{bottom:280.390533pt;}
.y131{bottom:280.391867pt;}
.yf5{bottom:280.769733pt;}
.y346{bottom:282.263867pt;}
.y230{bottom:282.267733pt;}
.y367{bottom:282.613867pt;}
.y323{bottom:282.907867pt;}
.y29d{bottom:283.853333pt;}
.y22f{bottom:284.930400pt;}
.y17f{bottom:285.431067pt;}
.y277{bottom:286.704800pt;}
.y15b{bottom:287.054667pt;}
.y38{bottom:287.789333pt;}
.y2d5{bottom:292.473467pt;}
.y58{bottom:293.936400pt;}
.y19d{bottom:294.069333pt;}
.y7d{bottom:294.070533pt;}
.y2bf{bottom:295.090533pt;}
.y1d9{bottom:296.082667pt;}
.ya3{bottom:296.220267pt;}
.y253{bottom:296.224400pt;}
.y15{bottom:296.529600pt;}
.y20c{bottom:296.775867pt;}
.y301{bottom:297.321200pt;}
.y119{bottom:298.129867pt;}
.y143{bottom:298.391867pt;}
.y130{bottom:298.393200pt;}
.y366{bottom:299.280533pt;}
.yf4{bottom:299.399733pt;}
.y345{bottom:300.267867pt;}
.y29c{bottom:304.921333pt;}
.y15a{bottom:305.056000pt;}
.y276{bottom:305.120133pt;}
.y17e{bottom:305.318400pt;}
.y37{bottom:307.363733pt;}
.y322{bottom:308.863867pt;}
.y2d4{bottom:310.474800pt;}
.y1d8{bottom:312.082667pt;}
.y19c{bottom:312.224000pt;}
.y7c{bottom:312.225200pt;}
.y2be{bottom:313.107200pt;}
.ya2{bottom:314.298267pt;}
.y252{bottom:314.302400pt;}
.y20b{bottom:314.777200pt;}
.y14{bottom:315.675600pt;}
.y365{bottom:315.947200pt;}
.y300{bottom:316.027867pt;}
.y142{bottom:316.393200pt;}
.y12f{bottom:316.394533pt;}
.y118{bottom:316.805867pt;}
.y1b8{bottom:318.082667pt;}
.y344{bottom:318.271867pt;}
.y159{bottom:323.057333pt;}
.y275{bottom:323.535467pt;}
.y22e{bottom:324.049067pt;}
.y17d{bottom:325.205733pt;}
.yc0{bottom:325.660133pt;}
.y29b{bottom:325.989333pt;}
.y36{bottom:326.975067pt;}
.y321{bottom:327.259867pt;}
.y1d7{bottom:328.082667pt;}
.y2d3{bottom:328.476133pt;}
.y57{bottom:329.981467pt;}
.y19b{bottom:330.378667pt;}
.y7b{bottom:330.379867pt;}
.y2bd{bottom:331.123867pt;}
.ya1{bottom:332.376267pt;}
.y251{bottom:332.380400pt;}
.y364{bottom:332.613867pt;}
.y20a{bottom:332.778533pt;}
.y13{bottom:333.502267pt;}
.y1b7{bottom:334.094667pt;}
.y141{bottom:334.394533pt;}
.y12e{bottom:334.395867pt;}
.y2ff{bottom:334.734533pt;}
.y117{bottom:335.481867pt;}
.y343{bottom:336.275867pt;}
.yf3{bottom:336.659733pt;}
.y158{bottom:341.058667pt;}
.y274{bottom:341.950800pt;}
.y22d{bottom:342.449067pt;}
.y1d6{bottom:344.082667pt;}
.y17c{bottom:345.093067pt;}
.y35{bottom:345.390400pt;}
.y320{bottom:345.655867pt;}
.y2d2{bottom:346.477467pt;}
.y29a{bottom:347.057333pt;}
.y19a{bottom:348.533333pt;}
.y7a{bottom:348.534533pt;}
.y2bc{bottom:349.140533pt;}
.y363{bottom:349.280533pt;}
.y1b6{bottom:350.090667pt;}
.ya0{bottom:350.454267pt;}
.y250{bottom:350.458400pt;}
.y209{bottom:350.810533pt;}
.y12{bottom:351.328933pt;}
.y140{bottom:352.395867pt;}
.y12d{bottom:352.397200pt;}
.y2fe{bottom:353.441200pt;}
.y116{bottom:354.157867pt;}
.y342{bottom:354.279867pt;}
.yf2{bottom:355.289733pt;}
.yd8{bottom:355.899600pt;}
.y157{bottom:359.060000pt;}
.y1d5{bottom:360.082667pt;}
.y273{bottom:360.366133pt;}
.y22c{bottom:360.849067pt;}
.y1ee{bottom:361.079333pt;}
.y34{bottom:363.805733pt;}
.y31f{bottom:364.051867pt;}
.y2d1{bottom:364.478800pt;}
.y17b{bottom:364.980400pt;}
.ybf{bottom:365.859067pt;}
.y362{bottom:365.947200pt;}
.y1b5{bottom:366.086667pt;}
.y79{bottom:366.689200pt;}
.y2bb{bottom:367.157200pt;}
.y299{bottom:368.125333pt;}
.y9f{bottom:368.532267pt;}
.y24f{bottom:368.536400pt;}
.y208{bottom:368.811867pt;}
.y11{bottom:369.155600pt;}
.y13f{bottom:370.397200pt;}
.y12c{bottom:370.398533pt;}
.y2fd{bottom:372.147867pt;}
.y341{bottom:372.283867pt;}
.yd6{bottom:372.325733pt;}
.y115{bottom:372.833867pt;}
.y1d4{bottom:376.082667pt;}
.y156{bottom:377.061333pt;}
.y272{bottom:378.781467pt;}
.y22b{bottom:379.249067pt;}
.y1a6{bottom:382.082667pt;}
.y2d0{bottom:382.480133pt;}
.y361{bottom:382.613867pt;}
.y199{bottom:384.842667pt;}
.y78{bottom:384.843867pt;}
.y17a{bottom:384.867733pt;}
.y2ba{bottom:385.173867pt;}
.y9e{bottom:386.610267pt;}
.y24e{bottom:386.614400pt;}
.y10{bottom:386.982267pt;}
.y13e{bottom:388.398533pt;}
.y12b{bottom:388.399867pt;}
.y298{bottom:389.193333pt;}
.y31e{bottom:390.007867pt;}
.y2fc{bottom:390.854533pt;}
.y114{bottom:391.509867pt;}
.y1d3{bottom:392.082667pt;}
.yf1{bottom:392.549733pt;}
.y155{bottom:395.062667pt;}
.y271{bottom:397.196800pt;}
.y22a{bottom:397.629467pt;}
.y340{bottom:397.847867pt;}
.y1b9{bottom:398.082667pt;}
.yd7{bottom:398.099067pt;}
.y360{bottom:399.280533pt;}
.y2cf{bottom:400.481467pt;}
.y33{bottom:400.636400pt;}
.y198{bottom:402.997333pt;}
.y77{bottom:402.998533pt;}
.y2b9{bottom:403.190533pt;}
.y9d{bottom:404.688267pt;}
.y24d{bottom:404.692400pt;}
.y179{bottom:404.755067pt;}
.yf{bottom:404.808933pt;}
.y207{bottom:404.829867pt;}
.ybe{bottom:406.058133pt;}
.y13d{bottom:406.399867pt;}
.y12a{bottom:406.401200pt;}
.y1d2{bottom:408.082667pt;}
.y31d{bottom:408.403867pt;}
.y2fb{bottom:409.561200pt;}
.y113{bottom:410.185867pt;}
.y297{bottom:410.261333pt;}
.yf0{bottom:411.179733pt;}
.y1b4{bottom:414.082667pt;}
.y270{bottom:415.612133pt;}
.y33f{bottom:415.851867pt;}
.y35f{bottom:415.947200pt;}
.y229{bottom:416.029467pt;}
.y32{bottom:419.051733pt;}
.y197{bottom:421.152000pt;}
.y76{bottom:421.153200pt;}
.ye{bottom:422.635600pt;}
.y9c{bottom:422.766267pt;}
.y24c{bottom:422.770400pt;}
.y206{bottom:422.831200pt;}
.y1ed{bottom:423.072000pt;}
.y1d1{bottom:424.082667pt;}
.y13c{bottom:424.401200pt;}
.y178{bottom:424.563067pt;}
.y31c{bottom:426.799867pt;}
.y2fa{bottom:428.267867pt;}
.y112{bottom:428.861867pt;}
.yef{bottom:429.809733pt;}
.y1b3{bottom:430.082667pt;}
.y2b8{bottom:430.575867pt;}
.y154{bottom:431.068000pt;}
.y296{bottom:431.329333pt;}
.y35e{bottom:432.613867pt;}
.y33e{bottom:433.855867pt;}
.y26f{bottom:434.027467pt;}
.y228{bottom:434.429467pt;}
.y2ce{bottom:436.484133pt;}
.y31{bottom:437.467067pt;}
.y196{bottom:439.306667pt;}
.y27d{bottom:439.307867pt;}
.y1d0{bottom:440.082667pt;}
.yd{bottom:440.462267pt;}
.y205{bottom:440.832533pt;}
.y9b{bottom:440.844267pt;}
.y24b{bottom:440.848400pt;}
.y129{bottom:442.401200pt;}
.y177{bottom:444.450400pt;}
.y1b2{bottom:446.082667pt;}
.ybd{bottom:446.257200pt;}
.y2f9{bottom:446.974533pt;}
.y111{bottom:447.537867pt;}
.yee{bottom:448.439733pt;}
.y2b7{bottom:448.592533pt;}
.y35d{bottom:449.280533pt;}
.y33d{bottom:451.859867pt;}
.y295{bottom:452.397333pt;}
.y26e{bottom:452.442800pt;}
.y31b{bottom:452.755867pt;}
.y227{bottom:452.829467pt;}
.y2cd{bottom:454.485467pt;}
.y30{bottom:455.882400pt;}
.y1cf{bottom:456.082667pt;}
.yd5{bottom:456.684800pt;}
.y75{bottom:457.462533pt;}
.y56{bottom:458.778400pt;}
.y204{bottom:458.833867pt;}
.y9a{bottom:458.922267pt;}
.y24a{bottom:458.926400pt;}
.y1b1{bottom:462.082667pt;}
.y176{bottom:464.337733pt;}
.y2f8{bottom:465.681200pt;}
.y35c{bottom:465.947200pt;}
.y110{bottom:466.230000pt;}
.y2b6{bottom:466.609200pt;}
.yed{bottom:467.069733pt;}
.y153{bottom:467.074667pt;}
.yc{bottom:469.622267pt;}
.y33c{bottom:469.863867pt;}
.y26d{bottom:470.858133pt;}
.y226{bottom:471.229467pt;}
.y1ce{bottom:472.082667pt;}
.y2cc{bottom:472.486800pt;}
.y2f{bottom:474.297733pt;}
.y195{bottom:475.616000pt;}
.y74{bottom:475.617200pt;}
.y55{bottom:476.812800pt;}
.y203{bottom:476.835200pt;}
.y99{bottom:477.000267pt;}
.y249{bottom:477.004400pt;}
.y1b0{bottom:478.082667pt;}
.y13b{bottom:478.401200pt;}
.y31a{bottom:478.711867pt;}
.yd4{bottom:481.058533pt;}
.y35b{bottom:482.613867pt;}
.y175{bottom:484.225067pt;}
.y2f7{bottom:484.387867pt;}
.y2b5{bottom:484.625867pt;}
.y10f{bottom:484.906000pt;}
.y152{bottom:485.070667pt;}
.yec{bottom:485.699733pt;}
.y1cd{bottom:488.082667pt;}
.y26c{bottom:489.273467pt;}
.y225{bottom:489.629467pt;}
.y2cb{bottom:490.488133pt;}
.y2e{bottom:492.713067pt;}
.y194{bottom:493.770667pt;}
.y73{bottom:493.771867pt;}
.y1af{bottom:494.082667pt;}
.y54{bottom:494.829467pt;}
.y202{bottom:494.836533pt;}
.y98{bottom:495.078267pt;}
.y248{bottom:495.082400pt;}
.yd3{bottom:495.344267pt;}
.y33b{bottom:495.427867pt;}
.y319{bottom:497.107867pt;}
.y294{bottom:498.372267pt;}
.y35a{bottom:499.280533pt;}
.y2b4{bottom:502.642533pt;}
.y151{bottom:503.066667pt;}
.y2f6{bottom:503.094533pt;}
.y10e{bottom:503.582000pt;}
.y1cc{bottom:504.082667pt;}
.y174{bottom:504.112400pt;}
.yeb{bottom:504.329733pt;}
.y26b{bottom:507.688800pt;}
.y224{bottom:508.029467pt;}
.ybc{bottom:508.082533pt;}
.y1ec{bottom:508.082667pt;}
.y1ae{bottom:510.082667pt;}
.y2d{bottom:511.128400pt;}
.y193{bottom:511.925333pt;}
.y72{bottom:511.926533pt;}
.y201{bottom:512.837867pt;}
.y53{bottom:512.846133pt;}
.y97{bottom:513.156267pt;}
.y247{bottom:513.160400pt;}
.yd2{bottom:513.406933pt;}
.y33a{bottom:513.431867pt;}
.y293{bottom:514.372267pt;}
.y318{bottom:515.503867pt;}
.y359{bottom:515.947200pt;}
.y1cb{bottom:520.082667pt;}
.y2b3{bottom:520.659200pt;}
.y150{bottom:521.062667pt;}
.y2f5{bottom:521.801200pt;}
.y10d{bottom:522.258000pt;}
.yea{bottom:522.959733pt;}
.y173{bottom:523.999733pt;}
.y1eb{bottom:524.082667pt;}
.y2e6{bottom:525.479200pt;}
.y1ad{bottom:526.082667pt;}
.y26a{bottom:526.104133pt;}
.y223{bottom:526.429467pt;}
.y2c{bottom:529.543733pt;}
.y192{bottom:530.080000pt;}
.y71{bottom:530.081200pt;}
.y292{bottom:530.372267pt;}
.y200{bottom:530.839200pt;}
.y52{bottom:530.860000pt;}
.y246{bottom:531.238400pt;}
.y339{bottom:531.435867pt;}
.yd1{bottom:531.469600pt;}
.yb{bottom:532.394667pt;}
.y358{bottom:532.613867pt;}
.y1ca{bottom:536.082667pt;}
.y2b2{bottom:538.675867pt;}
.y1ea{bottom:540.082667pt;}
.y2f4{bottom:540.507867pt;}
.y10c{bottom:540.934000pt;}
.y317{bottom:541.459867pt;}
.ye9{bottom:541.589733pt;}
.y1ac{bottom:542.082667pt;}
.y2e5{bottom:543.479200pt;}
.y172{bottom:543.887067pt;}
.y269{bottom:544.519467pt;}
.y222{bottom:544.829467pt;}
.y291{bottom:546.372267pt;}
.y2b{bottom:547.959067pt;}
.y191{bottom:548.234667pt;}
.y70{bottom:548.235867pt;}
.y1ff{bottom:548.840533pt;}
.y51{bottom:548.914800pt;}
.y357{bottom:549.280533pt;}
.y245{bottom:549.309200pt;}
.y96{bottom:549.312267pt;}
.y338{bottom:549.439867pt;}
.yd0{bottom:549.532267pt;}
.y128{bottom:550.382533pt;}
.ybb{bottom:550.391867pt;}
.y14f{bottom:550.401200pt;}
.y1c9{bottom:552.082667pt;}
.y1e9{bottom:556.082667pt;}
.y2b1{bottom:556.692533pt;}
.y1ab{bottom:558.082667pt;}
.ya{bottom:558.445467pt;}
.y2f3{bottom:559.214533pt;}
.y10b{bottom:559.610000pt;}
.y316{bottom:559.855867pt;}
.ye8{bottom:560.219733pt;}
.y2e4{bottom:561.479200pt;}
.y290{bottom:562.372267pt;}
.y268{bottom:562.934800pt;}
.y221{bottom:563.225200pt;}
.y171{bottom:563.774400pt;}
.y356{bottom:565.947200pt;}
.y2a{bottom:566.371067pt;}
.y190{bottom:566.389333pt;}
.y6f{bottom:566.390533pt;}
.y50{bottom:566.931467pt;}
.y244{bottom:567.387200pt;}
.y95{bottom:567.390267pt;}
.ycf{bottom:567.594933pt;}
.y1c8{bottom:568.082667pt;}
.y127{bottom:568.383867pt;}
.yba{bottom:568.393200pt;}
.y1e8{bottom:572.082667pt;}
.y1aa{bottom:574.082667pt;}
.y2b0{bottom:574.709200pt;}
.y337{bottom:575.003867pt;}
.y2f2{bottom:577.921200pt;}
.y315{bottom:578.251867pt;}
.y10a{bottom:578.286000pt;}
.ye7{bottom:578.849067pt;}
.y2e3{bottom:579.479200pt;}
.y267{bottom:581.350133pt;}
.y220{bottom:581.625200pt;}
.y355{bottom:582.613867pt;}
.y9{bottom:582.936133pt;}
.y170{bottom:583.661733pt;}
.y1c7{bottom:584.082667pt;}
.y18f{bottom:584.544000pt;}
.y6e{bottom:584.545200pt;}
.y29{bottom:584.786400pt;}
.y4f{bottom:584.948133pt;}
.y243{bottom:585.465200pt;}
.y94{bottom:585.468267pt;}
.yce{bottom:585.656933pt;}
.y1fe{bottom:586.077067pt;}
.y126{bottom:586.385200pt;}
.yb9{bottom:586.394533pt;}
.y1e7{bottom:588.082667pt;}
.y1a9{bottom:590.082667pt;}
.y28f{bottom:591.699200pt;}
.y336{bottom:593.007867pt;}
.y2f1{bottom:596.627867pt;}
.y314{bottom:596.647867pt;}
.y109{bottom:596.962000pt;}
.ye6{bottom:597.478267pt;}
.y2e2{bottom:597.479200pt;}
.y354{bottom:599.280533pt;}
.y21f{bottom:600.005600pt;}
.y1c6{bottom:600.082667pt;}
.y1fd{bottom:602.077067pt;}
.y1f0{bottom:602.082667pt;}
.y2af{bottom:602.109467pt;}
.y18e{bottom:602.698667pt;}
.y6d{bottom:602.699867pt;}
.y4e{bottom:602.964800pt;}
.y242{bottom:603.543200pt;}
.y93{bottom:603.546267pt;}
.y16f{bottom:603.549067pt;}
.ycd{bottom:603.716800pt;}
.y1e6{bottom:604.082667pt;}
.y125{bottom:604.386533pt;}
.yb8{bottom:604.395867pt;}
.y1a5{bottom:606.082667pt;}
.y28e{bottom:612.767200pt;}
.y2f0{bottom:615.334533pt;}
.y2e1{bottom:615.479200pt;}
.y108{bottom:615.638000pt;}
.y353{bottom:615.947200pt;}
.y1c5{bottom:616.082667pt;}
.ye5{bottom:616.108267pt;}
.y1fc{bottom:618.077067pt;}
.y266{bottom:618.247867pt;}
.y21e{bottom:618.405600pt;}
.y335{bottom:618.571867pt;}
.y1e5{bottom:620.082667pt;}
.y2ae{bottom:620.126133pt;}
.y18d{bottom:620.853333pt;}
.y6c{bottom:620.854533pt;}
.y4d{bottom:620.981467pt;}
.y241{bottom:621.621200pt;}
.y92{bottom:621.624267pt;}
.ycc{bottom:621.779467pt;}
.y124{bottom:622.387867pt;}
.yb7{bottom:622.397200pt;}
.y313{bottom:622.603867pt;}
.y16e{bottom:623.436400pt;}
.y8{bottom:626.331333pt;}
.y1c4{bottom:632.082667pt;}
.y352{bottom:632.613867pt;}
.y2e0{bottom:633.479200pt;}
.y28d{bottom:633.835200pt;}
.y2ef{bottom:634.041200pt;}
.y1fb{bottom:634.077067pt;}
.y107{bottom:634.314000pt;}
.ye4{bottom:634.731200pt;}
.y1e4{bottom:636.082667pt;}
.y334{bottom:636.575867pt;}
.y265{bottom:636.663200pt;}
.y21d{bottom:636.805600pt;}
.y1a8{bottom:638.082667pt;}
.y2ad{bottom:638.142800pt;}
.y4c{bottom:638.995333pt;}
.y18c{bottom:639.008000pt;}
.y6b{bottom:639.009200pt;}
.y240{bottom:639.699200pt;}
.y91{bottom:639.702267pt;}
.ycb{bottom:639.842133pt;}
.y28{bottom:640.020133pt;}
.y123{bottom:640.389200pt;}
.yb6{bottom:640.398533pt;}
.y312{bottom:640.999867pt;}
.y16d{bottom:643.323733pt;}
.y1c3{bottom:648.082667pt;}
.y351{bottom:649.280533pt;}
.y1fa{bottom:650.077067pt;}
.y1e3{bottom:652.082667pt;}
.y2ee{bottom:652.747867pt;}
.y106{bottom:652.990000pt;}
.ye3{bottom:653.361200pt;}
.y1a4{bottom:654.082667pt;}
.y333{bottom:654.579867pt;}
.y7{bottom:654.819333pt;}
.y264{bottom:655.078533pt;}
.y21c{bottom:655.205600pt;}
.y4b{bottom:657.026667pt;}
.y18b{bottom:657.162667pt;}
.y6a{bottom:657.163867pt;}
.y23f{bottom:657.777200pt;}
.y90{bottom:657.780267pt;}
.yca{bottom:657.904800pt;}
.y122{bottom:658.390533pt;}
.yb5{bottom:658.399867pt;}
.y27{bottom:659.100133pt;}
.y311{bottom:659.395867pt;}
.y16c{bottom:663.211067pt;}
.y1c2{bottom:664.082667pt;}
.y350{bottom:665.947200pt;}
.y1f9{bottom:666.077067pt;}
.y1e2{bottom:668.082667pt;}
.y2ac{bottom:669.728667pt;}
.y1a7{bottom:670.082667pt;}
.y2ed{bottom:671.454533pt;}
.y105{bottom:671.666000pt;}
.ye2{bottom:671.991200pt;}
.y332{bottom:672.583867pt;}
.y263{bottom:673.493867pt;}
.y21b{bottom:673.605600pt;}
.y4a{bottom:675.043333pt;}
.y18a{bottom:675.317333pt;}
.y69{bottom:675.318533pt;}
.y23e{bottom:675.855200pt;}
.y8f{bottom:675.858267pt;}
.yc9{bottom:675.962533pt;}
.y28c{bottom:675.986533pt;}
.yb4{bottom:676.391867pt;}
.y310{bottom:677.791867pt;}
.y26{bottom:678.180133pt;}
.y1c1{bottom:680.082667pt;}
.y1f8{bottom:682.077067pt;}
.y34f{bottom:682.613867pt;}
.y16b{bottom:683.098400pt;}
.y6{bottom:683.307333pt;}
.y1e1{bottom:684.082667pt;}
.y2ab{bottom:685.728667pt;}
.y2ec{bottom:690.161200pt;}
.y104{bottom:690.342000pt;}
.ye1{bottom:690.621200pt;}
.y262{bottom:691.909200pt;}
.y21a{bottom:692.005600pt;}
.y49{bottom:693.060400pt;}
.y189{bottom:693.472000pt;}
.y286{bottom:693.473200pt;}
.y8e{bottom:693.933200pt;}
.yc8{bottom:694.025200pt;}
.yb3{bottom:694.393200pt;}
.y1c0{bottom:696.082667pt;}
.y28b{bottom:697.054533pt;}
.y25{bottom:697.251333pt;}
.y1f7{bottom:698.077067pt;}
.y331{bottom:698.147867pt;}
.y34e{bottom:699.280533pt;}
.y1e0{bottom:700.082667pt;}
.y2aa{bottom:701.728667pt;}
.y1de{bottom:702.082667pt;}
.y16a{bottom:702.985733pt;}
.y30f{bottom:703.747867pt;}
.y2eb{bottom:708.867867pt;}
.y103{bottom:709.018000pt;}
.ye0{bottom:709.251200pt;}
.y261{bottom:710.324533pt;}
.y219{bottom:710.405600pt;}
.y188{bottom:711.626667pt;}
.y68{bottom:711.627867pt;}
.y8d{bottom:712.011200pt;}
.y1bf{bottom:712.082667pt;}
.yc7{bottom:712.087867pt;}
.y48{bottom:712.294267pt;}
.yb2{bottom:712.394533pt;}
.y1f6{bottom:714.077067pt;}
.y24{bottom:714.998000pt;}
.y34d{bottom:715.947200pt;}
.y330{bottom:716.151867pt;}
.y2a9{bottom:717.728667pt;}
.y1dd{bottom:718.082667pt;}
.y28a{bottom:718.122533pt;}
.y30e{bottom:722.143867pt;}
.y169{bottom:722.851867pt;}
.y2ea{bottom:727.574533pt;}
.y102{bottom:727.694000pt;}
.y1be{bottom:728.082667pt;}
.y260{bottom:728.739867pt;}
.y218{bottom:728.805600pt;}
.y187{bottom:729.781333pt;}
.y67{bottom:729.782533pt;}
.y1f5{bottom:730.077067pt;}
.y1ef{bottom:730.082667pt;}
.y8c{bottom:730.089200pt;}
.yc6{bottom:730.150533pt;}
.y47{bottom:730.334533pt;}
.yb1{bottom:730.395867pt;}
.y23{bottom:732.744667pt;}
.y1df{bottom:734.082667pt;}
.y5{bottom:738.250000pt;}
.y289{bottom:739.190533pt;}
.y34c{bottom:740.173867pt;}
.y30d{bottom:740.539867pt;}
.y32f{bottom:741.715867pt;}
.y168{bottom:742.739200pt;}
.y1bd{bottom:744.082667pt;}
.y1f4{bottom:746.077067pt;}
.y1bc{bottom:746.082667pt;}
.y2e9{bottom:746.281200pt;}
.y101{bottom:746.373200pt;}
.ydf{bottom:746.511200pt;}
.y25f{bottom:747.155200pt;}
.y217{bottom:747.205600pt;}
.y186{bottom:747.936000pt;}
.y66{bottom:747.937200pt;}
.y8b{bottom:748.167200pt;}
.yc5{bottom:748.213200pt;}
.y46{bottom:748.351200pt;}
.yb0{bottom:748.397200pt;}
.y2a8{bottom:749.728667pt;}
.y22{bottom:750.491333pt;}
.y4{bottom:757.410000pt;}
.y32e{bottom:759.719867pt;}
.y288{bottom:760.258533pt;}
.y1f3{bottom:762.077067pt;}
.y1f1{bottom:762.082667pt;}
.y167{bottom:762.626533pt;}
.y2e8{bottom:764.987867pt;}
.y100{bottom:765.049200pt;}
.yde{bottom:765.141200pt;}
.y25e{bottom:765.570533pt;}
.y216{bottom:765.603467pt;}
.y2a7{bottom:765.728667pt;}
.y185{bottom:766.090667pt;}
.y65{bottom:766.091867pt;}
.y8a{bottom:766.245200pt;}
.yc4{bottom:766.275867pt;}
.y45{bottom:766.367867pt;}
.yaf{bottom:766.398533pt;}
.y30c{bottom:766.495867pt;}
.y21{bottom:768.238000pt;}
.y1f2{bottom:778.077067pt;}
.y1bb{bottom:778.082667pt;}
.y34b{bottom:780.192400pt;}
.y287{bottom:781.326533pt;}
.y2a6{bottom:781.728667pt;}
.y166{bottom:782.513867pt;}
.y2e7{bottom:783.694533pt;}
.yff{bottom:783.725200pt;}
.ydd{bottom:783.771200pt;}
.y25d{bottom:783.985867pt;}
.y215{bottom:784.001200pt;}
.y3{bottom:784.130000pt;}
.y64{bottom:784.246533pt;}
.y89{bottom:784.323200pt;}
.yc3{bottom:784.338533pt;}
.y44{bottom:784.384533pt;}
.yae{bottom:784.399867pt;}
.y30b{bottom:784.891867pt;}
.y32d{bottom:785.283867pt;}
.y20{bottom:785.984667pt;}
.y2a5{bottom:797.728667pt;}
.y34a{bottom:800.184400pt;}
.y43{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:803.731333pt;}
.y1e{bottom:842.834667pt;}
.h27{height:19.307320pt;}
.h35{height:27.259805pt;}
.h22{height:30.288672pt;}
.h21{height:34.831973pt;}
.h8{height:36.107146pt;}
.h11{height:36.796875pt;}
.ha{height:41.562500pt;}
.h2f{height:42.316406pt;}
.h2d{height:46.067708pt;}
.h9{height:46.757812pt;}
.h37{height:49.322917pt;}
.h38{height:50.282552pt;}
.h39{height:50.611979pt;}
.h3a{height:51.789062pt;}
.h29{height:51.944592pt;}
.h4{height:51.953125pt;}
.h3{height:54.550781pt;}
.h25{height:56.721354pt;}
.h2a{height:57.148438pt;}
.h7{height:59.746094pt;}
.h32{height:59.754627pt;}
.h31{height:59.755160pt;}
.h1d{height:59.758360pt;}
.hb{height:59.759427pt;}
.h34{height:59.763160pt;}
.h30{height:59.773827pt;}
.h36{height:59.774894pt;}
.h28{height:59.799427pt;}
.h33{height:59.824494pt;}
.h2b{height:59.830894pt;}
.h2c{height:60.063427pt;}
.h16{height:61.149689pt;}
.h13{height:61.173156pt;}
.h17{height:61.196622pt;}
.h18{height:61.197156pt;}
.h1b{height:61.220089pt;}
.h15{height:61.243556pt;}
.h14{height:61.244089pt;}
.h26{height:61.254756pt;}
.hf{height:61.267556pt;}
.h20{height:61.270222pt;}
.h24{height:61.270756pt;}
.h1a{height:61.278756pt;}
.he{height:61.280889pt;}
.hd{height:61.283022pt;}
.h1f{height:61.287289pt;}
.h19{height:61.289422pt;}
.h23{height:61.293156pt;}
.h1e{height:61.304889pt;}
.hc{height:61.433956pt;}
.h1c{height:61.645689pt;}
.h2{height:64.941406pt;}
.h12{height:66.837333pt;}
.h10{height:66.847467pt;}
.h6{height:72.734375pt;}
.h5{height:93.515625pt;}
.h2e{height:115.953125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:71.752933pt;}
.x8{left:73.746000pt;}
.xb{left:74.682000pt;}
.x1{left:75.590533pt;}
.x1b{left:80.016533pt;}
.x36{left:83.230933pt;}
.x34{left:91.064000pt;}
.x9{left:92.200400pt;}
.x35{left:93.164000pt;}
.x7{left:94.214000pt;}
.x13{left:96.787067pt;}
.x1e{left:98.616533pt;}
.x11{left:99.703467pt;}
.xe{left:103.031467pt;}
.x2b{left:123.590533pt;}
.x37{left:128.564267pt;}
.x15{left:129.976667pt;}
.x1d{left:134.323200pt;}
.x17{left:151.111333pt;}
.x18{left:158.752667pt;}
.x1a{left:166.459333pt;}
.x16{left:167.640667pt;}
.x19{left:168.544667pt;}
.x12{left:169.832800pt;}
.x1c{left:186.149867pt;}
.x14{left:189.772667pt;}
.x3{left:202.324667pt;}
.x5{left:203.557867pt;}
.x4{left:206.116667pt;}
.x2{left:207.480400pt;}
.x2c{left:231.831600pt;}
.xf{left:242.348667pt;}
.x31{left:250.404933pt;}
.x2a{left:265.231600pt;}
.x30{left:272.151600pt;}
.x2f{left:273.084933pt;}
.x32{left:279.938267pt;}
.x33{left:280.831600pt;}
.x2d{left:295.884933pt;}
.x38{left:325.297600pt;}
.x39{left:328.364267pt;}
.x1f{left:342.360933pt;}
.x6{left:349.338800pt;}
.x2e{left:351.751600pt;}
.x23{left:362.680933pt;}
.x22{left:364.627600pt;}
.x27{left:366.467600pt;}
.x25{left:367.960933pt;}
.x28{left:369.640933pt;}
.x26{left:377.294267pt;}
.x21{left:381.987600pt;}
.x3c{left:384.600133pt;}
.x3b{left:385.736800pt;}
.x3d{left:386.666800pt;}
.x29{left:401.640933pt;}
.x24{left:413.894267pt;}
.x20{left:428.387600pt;}
.x3a{left:482.794800pt;}
.xc{left:508.725600pt;}
.xd{left:510.104267pt;}
.x10{left:546.955600pt;}
}




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