
    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_e4a12c5b10275a25d5015ec1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_41fe4d6e29e3b11f8bc413cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9ffb9c952c2155c83a75b5fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3b830173ccfd3bdbe9f96f15.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_bee06286e0ce564915505d07.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.023000;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_d6ea455f2d62239e16de5ce7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.066000;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_4fbd9e3ebf25534c471472c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.009000;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_e256f02c4e92f04b2c6c49ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005000;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_3e9ee0c27a5275cd9725f3a5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_50cea8737053de554768375a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003000;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_c7aa0b3a21a94655fe12ec48.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_84229472cfaf460dfd0ef5d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.884000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_48b3069f8eaf0d8cd492f0d9.woff2')format("woff");}.fff{font-family:fff;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c271347f3a9079f7e8d8ac6e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.558000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_19a83ebf829c7426f308e80b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1ae2f98ab9b9b8bc3d4f0e21.woff2')format("woff");}.ff12{font-family:ff12;line-height:3.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_fce6744fe7f436434a6e2093.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_19d99fb00fe445737c3507b9.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_47ae61e4c00c5aa493c10024.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.988000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_53eceecbdbd4121309eb0026.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.709000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8376aa98b63aa77f1ade8be1.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.005000;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;}
.m3{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-87.076376px;}
.v7{vertical-align:-71.771456px;}
.v8{vertical-align:-37.076564px;}
.v3{vertical-align:-12.593593px;}
.v4{vertical-align:-9.187398px;}
.v5{vertical-align:-7.482000px;}
.ve{vertical-align:-6.466281px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:3.739446px;}
.vc{vertical-align:7.141405px;}
.vd{vertical-align:10.205708px;}
.va{vertical-align:12.586652px;}
.v2{vertical-align:21.090000px;}
.v1{vertical-align:24.487633px;}
.v6{vertical-align:34.698000px;}
.ls62{letter-spacing:-0.839976px;}
.ls64{letter-spacing:-0.629982px;}
.ls2{letter-spacing:-0.509994px;}
.ls61{letter-spacing:-0.419988px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.027320px;}
.ls5e{letter-spacing:0.030352px;}
.ls5d{letter-spacing:0.031026px;}
.ls27{letter-spacing:0.046212px;}
.ls29{letter-spacing:0.052200px;}
.ls28{letter-spacing:0.052832px;}
.ls26{letter-spacing:0.088227px;}
.ls25{letter-spacing:0.088859px;}
.ls40{letter-spacing:0.100994px;}
.ls46{letter-spacing:0.105092px;}
.ls3e{letter-spacing:0.123151px;}
.ls4c{letter-spacing:0.142128px;}
.ls5f{letter-spacing:0.142198px;}
.ls51{letter-spacing:0.142543px;}
.ls1a{letter-spacing:0.148163px;}
.ls1e{letter-spacing:0.148759px;}
.ls2e{letter-spacing:0.181537px;}
.ls5a{letter-spacing:0.201374px;}
.ls1{letter-spacing:0.509994px;}
.ls2c{letter-spacing:0.511611px;}
.ls17{letter-spacing:0.520142px;}
.ls1d{letter-spacing:0.520774px;}
.ls14{letter-spacing:0.526142px;}
.ls24{letter-spacing:0.528194px;}
.ls2a{letter-spacing:0.832795px;}
.ls8{letter-spacing:0.836090px;}
.ls60{letter-spacing:0.839976px;}
.ls21{letter-spacing:0.840407px;}
.ls2b{letter-spacing:0.854964px;}
.ls52{letter-spacing:0.860674px;}
.lsd{letter-spacing:0.862142px;}
.lsb{letter-spacing:0.862738px;}
.ls4f{letter-spacing:0.866674px;}
.lsf{letter-spacing:0.868142px;}
.ls12{letter-spacing:0.868774px;}
.ls22{letter-spacing:0.877397px;}
.ls54{letter-spacing:0.897746px;}
.ls63{letter-spacing:1.259964px;}
.ls2f{letter-spacing:2.760517px;}
.ls19{letter-spacing:2.781342px;}
.ls3d{letter-spacing:2.787342px;}
.ls53{letter-spacing:2.836641px;}
.ls2d{letter-spacing:3.102517px;}
.ls20{letter-spacing:3.117342px;}
.ls15{letter-spacing:3.123342px;}
.ls35{letter-spacing:3.123362px;}
.ls36{letter-spacing:3.189029px;}
.ls4{letter-spacing:3.450588px;}
.ls5{letter-spacing:3.456588px;}
.ls3a{letter-spacing:11.066870px;}
.lsa{letter-spacing:11.071970px;}
.ls4a{letter-spacing:11.077065px;}
.lsc{letter-spacing:11.408566px;}
.ls43{letter-spacing:11.413666px;}
.lse{letter-spacing:14.007342px;}
.ls4e{letter-spacing:14.121734px;}
.ls11{letter-spacing:14.131934px;}
.ls18{letter-spacing:14.322517px;}
.ls16{letter-spacing:14.328517px;}
.ls13{letter-spacing:14.343342px;}
.ls9{letter-spacing:14.349342px;}
.ls33{letter-spacing:14.349362px;}
.ls3c{letter-spacing:14.352201px;}
.ls38{letter-spacing:14.415029px;}
.ls3{letter-spacing:14.473630px;}
.ls4d{letter-spacing:16.996232px;}
.ls10{letter-spacing:17.067342px;}
.ls50{letter-spacing:17.116641px;}
.ls41{letter-spacing:17.139029px;}
.ls1c{letter-spacing:17.388517px;}
.ls37{letter-spacing:17.475029px;}
.ls57{letter-spacing:17.912488px;}
.ls3b{letter-spacing:18.417320px;}
.ls32{letter-spacing:18.663646px;}
.ls44{letter-spacing:18.756465px;}
.ls39{letter-spacing:31.140234px;}
.ls47{letter-spacing:32.445029px;}
.ls42{letter-spacing:33.863602px;}
.ls31{letter-spacing:37.933354px;}
.ls49{letter-spacing:48.495675px;}
.ls48{letter-spacing:48.831934px;}
.ls30{letter-spacing:57.659922px;}
.ls23{letter-spacing:59.358202px;}
.ls58{letter-spacing:231.919462px;}
.ls59{letter-spacing:310.612088px;}
.ls5b{letter-spacing:313.356913px;}
.ls5c{letter-spacing:317.080088px;}
.ls56{letter-spacing:464.290309px;}
.ls55{letter-spacing:464.294809px;}
.ls1b{letter-spacing:947.382517px;}
.ls1f{letter-spacing:1170.522517px;}
.ls3f{letter-spacing:1396.410201px;}
.ls7{letter-spacing:1546.495466px;}
.ls34{letter-spacing:1707.630517px;}
.ls45{letter-spacing:1842.015057px;}
.ls4b{letter-spacing:1861.580099px;}
.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;}
}
.ws23{word-spacing:-39.677533px;}
.ws36{word-spacing:-35.009533px;}
.ws1e{word-spacing:-32.894613px;}
.ws3a{word-spacing:-32.675066px;}
.ws1{word-spacing:-13.986000px;}
.ws3{word-spacing:-12.749850px;}
.wsa{word-spacing:-12.494853px;}
.ws5{word-spacing:-12.239856px;}
.ws28{word-spacing:-11.249850px;}
.ws4{word-spacing:-10.667695px;}
.ws55{word-spacing:-10.499700px;}
.ws72{word-spacing:-10.289706px;}
.ws73{word-spacing:-10.079712px;}
.ws74{word-spacing:-9.869718px;}
.ws75{word-spacing:-9.659724px;}
.ws76{word-spacing:-9.449730px;}
.ws57{word-spacing:-9.281891px;}
.ws9{word-spacing:-8.924850px;}
.ws1d{word-spacing:-8.746353px;}
.ws3e{word-spacing:-8.189891px;}
.ws33{word-spacing:-7.643782px;}
.ws56{word-spacing:-7.181795px;}
.ws54{word-spacing:-5.732672px;}
.ws21{word-spacing:-5.431436px;}
.ws3b{word-spacing:-5.350363px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:1.560582px;}
.ws2{word-spacing:4.438800px;}
.ws71{word-spacing:4.444200px;}
.ws18{word-spacing:4.875543px;}
.ws15{word-spacing:5.352805px;}
.ws19{word-spacing:5.358805px;}
.ws14{word-spacing:5.694805px;}
.ws7{word-spacing:6.823720px;}
.ws17{word-spacing:7.206215px;}
.wsb{word-spacing:8.412805px;}
.ws8{word-spacing:30.732238px;}
.ws1f{word-spacing:69.848778px;}
.ws1c{word-spacing:71.893854px;}
.ws20{word-spacing:82.858725px;}
.ws26{word-spacing:98.431688px;}
.ws43{word-spacing:106.594579px;}
.ws40{word-spacing:106.617078px;}
.ws2a{word-spacing:107.274070px;}
.ws27{word-spacing:107.976060px;}
.ws2c{word-spacing:111.355515px;}
.ws3c{word-spacing:112.785173px;}
.ws2b{word-spacing:116.800443px;}
.ws32{word-spacing:116.822942px;}
.ws29{word-spacing:124.283843px;}
.ws4a{word-spacing:142.793220px;}
.ws49{word-spacing:142.798320px;}
.ws25{word-spacing:156.415160px;}
.ws48{word-spacing:163.493877px;}
.ws4b{word-spacing:168.945747px;}
.ws2d{word-spacing:170.142731px;}
.ws31{word-spacing:171.285716px;}
.ws30{word-spacing:171.609712px;}
.ws53{word-spacing:184.605539px;}
.ws41{word-spacing:188.431303px;}
.ws3d{word-spacing:195.477394px;}
.ws51{word-spacing:201.019303px;}
.ws4d{word-spacing:201.355303px;}
.ws4e{word-spacing:208.501303px;}
.ws2e{word-spacing:212.617665px;}
.ws46{word-spacing:213.943303px;}
.ws44{word-spacing:214.285303px;}
.ws50{word-spacing:214.963303px;}
.ws3f{word-spacing:218.023303px;}
.ws42{word-spacing:221.089303px;}
.ws4f{word-spacing:227.209303px;}
.ws45{word-spacing:227.551303px;}
.ws24{word-spacing:230.471389px;}
.ws4c{word-spacing:230.953303px;}
.ws52{word-spacing:234.691303px;}
.ws47{word-spacing:247.279303px;}
.ws2f{word-spacing:254.849602px;}
.ws35{word-spacing:299.502507px;}
.ws39{word-spacing:299.507007px;}
.ws58{word-spacing:341.282885px;}
.ws37{word-spacing:411.563704px;}
.ws38{word-spacing:424.487704px;}
.ws62{word-spacing:424.861634px;}
.ws5a{word-spacing:425.197634px;}
.ws59{word-spacing:441.187634px;}
.ws6a{word-spacing:441.193634px;}
.ws34{word-spacing:449.447512px;}
.ws6b{word-spacing:514.303303px;}
.ws6c{word-spacing:521.107303px;}
.ws64{word-spacing:529.273303px;}
.ws5d{word-spacing:535.057303px;}
.ws65{word-spacing:536.077303px;}
.ws6d{word-spacing:540.157303px;}
.ws5c{word-spacing:541.861303px;}
.wsc{word-spacing:542.052223px;}
.ws66{word-spacing:555.127303px;}
.ws5e{word-spacing:560.911303px;}
.ws22{word-spacing:651.099140px;}
.ws12{word-spacing:676.403981px;}
.wsf{word-spacing:676.718977px;}
.wse{word-spacing:683.603885px;}
.ws5f{word-spacing:686.761303px;}
.ws6e{word-spacing:686.767303px;}
.ws67{word-spacing:689.485303px;}
.ws11{word-spacing:690.173798px;}
.ws61{word-spacing:700.369303px;}
.ws70{word-spacing:700.711303px;}
.ws10{word-spacing:702.548633px;}
.ws69{word-spacing:703.093303px;}
.wsd{word-spacing:706.283583px;}
.ws13{word-spacing:709.883535px;}
.ws5b{word-spacing:719.077303px;}
.ws63{word-spacing:719.419303px;}
.ws60{word-spacing:720.097303px;}
.ws6f{word-spacing:720.439303px;}
.ws68{word-spacing:722.821303px;}
.ws1a{word-spacing:830.580805px;}
.ws1b{word-spacing:1081.272805px;}
.ws16{word-spacing:1119.714805px;}
._1f{margin-left:-142.773040px;}
._20{margin-left:-140.284050px;}
._14{margin-left:-101.142010px;}
._1{margin-left:-4.140000px;}
._0{margin-left:-1.920020px;}
._7{width:1.206000px;}
._6{width:2.490000px;}
._4{width:4.093200px;}
._2{width:5.291956px;}
._8{width:6.300208px;}
._3{width:7.904953px;}
._5{width:8.910000px;}
._c{width:10.163776px;}
._9{width:11.745162px;}
._63{width:12.777148px;}
._11{width:13.810638px;}
._e{width:15.060123px;}
._d{width:16.319808px;}
._f{width:17.615193px;}
._10{width:18.895278px;}
._12{width:20.195762px;}
._22{width:21.622180px;}
._b{width:22.633534px;}
._a{width:23.679021px;}
._13{width:25.678198px;}
._16{width:31.823626px;}
._15{width:32.920113px;}
._53{width:53.204536px;}
._4f{width:67.617844px;}
._50{width:77.478434px;}
._56{width:80.024178px;}
._55{width:81.900653px;}
._54{width:87.507579px;}
._52{width:89.384054px;}
._4e{width:97.173450px;}
._1c{width:101.304607px;}
._4c{width:102.628533px;}
._4a{width:103.812796px;}
._49{width:110.188875px;}
._4b{width:111.248125px;}
._40{width:113.622291px;}
._3f{width:114.710176px;}
._29{width:119.485126px;}
._41{width:126.545946px;}
._2e{width:128.050293px;}
._45{width:130.186608px;}
._46{width:131.531058px;}
._2b{width:132.680731px;}
._2d{width:135.065699px;}
._3e{width:136.388681px;}
._30{width:139.115645px;}
._3c{width:143.525586px;}
._28{width:144.718070px;}
._2f{width:153.564952px;}
._31{width:154.716937px;}
._47{width:156.148011px;}
._25{width:167.680927px;}
._2c{width:170.228230px;}
._34{width:171.870708px;}
._23{width:179.135393px;}
._3d{width:180.942587px;}
._26{width:182.006659px;}
._24{width:185.586817px;}
._35{width:190.576959px;}
._38{width:191.679444px;}
._39{width:196.890375px;}
._32{width:200.697324px;}
._65{width:202.178207px;}
._33{width:210.552193px;}
._2a{width:213.387155px;}
._48{width:215.081821px;}
._66{width:216.934318px;}
._3b{width:224.232010px;}
._43{width:226.985081px;}
._5a{width:228.520665px;}
._36{width:233.051893px;}
._5d{width:235.547888px;}
._42{width:240.290825px;}
._37{width:241.898775px;}
._27{width:249.476674px;}
._44{width:255.736491px;}
._3a{width:260.321529px;}
._1b{width:283.865427px;}
._57{width:285.497160px;}
._6b{width:296.342016px;}
._1d{width:297.858495px;}
._64{width:316.546746px;}
._19{width:340.939700px;}
._6d{width:360.699281px;}
._6a{width:363.930723px;}
._6e{width:364.967846px;}
._51{width:371.978540px;}
._6c{width:373.817859px;}
._62{width:377.047830px;}
._4d{width:379.803936px;}
._61{width:381.448508px;}
._69{width:384.214435px;}
._5c{width:387.210837px;}
._59{width:389.805355px;}
._67{width:392.194031px;}
._60{width:394.230810px;}
._5b{width:395.503601px;}
._5e{width:398.119875px;}
._58{width:421.644378px;}
._1e{width:527.777208px;}
._5f{width:549.510173px;}
._68{width:552.469380px;}
._1a{width:644.233910px;}
._18{width:677.578466px;}
._17{width:887.022364px;}
._21{width:1252.535064px;}
.fc3{color:rgb(130,122,156);}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(163,92,81);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:27.996600px;}
.fs15{font-size:29.397600px;}
.fs14{font-size:31.498200px;}
.fs13{font-size:33.994800px;}
.fs11{font-size:35.699400px;}
.fsb{font-size:35.995200px;}
.fse{font-size:39.000600px;}
.fsd{font-size:41.998800px;}
.fs4{font-size:42.000000px;}
.fs12{font-size:44.999400px;}
.fs10{font-size:47.999400px;}
.fs6{font-size:48.000000px;}
.fsf{font-size:50.820000px;}
.fsc{font-size:50.999400px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:71.999400px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fsa{font-size:101.999400px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:26.858370px;}
.yea{bottom:32.397750px;}
.y6{bottom:35.925007px;}
.y61{bottom:42.179400px;}
.ya3{bottom:42.187021px;}
.y5{bottom:66.525004px;}
.y38{bottom:67.597501px;}
.ye7{bottom:76.535400px;}
.y22f{bottom:77.046110px;}
.ycc{bottom:77.046887px;}
.ydf{bottom:77.048801px;}
.y2a6{bottom:77.051815px;}
.ya2{bottom:77.054674px;}
.y70{bottom:78.151904px;}
.y1da{bottom:78.578801px;}
.y108{bottom:80.277150px;}
.y161{bottom:82.235029px;}
.y37{bottom:84.097501px;}
.y134{bottom:84.275299px;}
.y1ec{bottom:86.318074px;}
.y356{bottom:87.601202px;}
.y6f{bottom:90.907050px;}
.y17e{bottom:90.993741px;}
.ycb{bottom:95.073900px;}
.y22e{bottom:95.074398px;}
.yde{bottom:95.077089px;}
.y2a5{bottom:95.080103px;}
.ya1{bottom:95.082962px;}
.y1d9{bottom:96.607089px;}
.y4{bottom:97.125005px;}
.y107{bottom:100.006580px;}
.y160{bottom:100.177893px;}
.y355{bottom:101.121665px;}
.y133{bottom:102.303587px;}
.y2da{bottom:103.330285px;}
.y30f{bottom:103.755523px;}
.y1eb{bottom:104.346362px;}
.y17d{bottom:109.022029px;}
.yca{bottom:113.102250px;}
.y22d{bottom:113.102686px;}
.ydd{bottom:113.105377px;}
.y2a4{bottom:113.107116px;}
.ya0{bottom:113.111250px;}
.y106{bottom:113.527774px;}
.y1d8{bottom:114.549953px;}
.y354{bottom:114.643179px;}
.y2d9{bottom:116.765701px;}
.y287{bottom:117.099623px;}
.y30e{bottom:117.275987px;}
.y15f{bottom:118.206181px;}
.y36b{bottom:118.548070px;}
.y132{bottom:120.335558px;}
.y1ea{bottom:122.374650px;}
.y17c{bottom:126.964893px;}
.y353{bottom:128.079645px;}
.y2d8{bottom:130.287215px;}
.y286{bottom:130.621136px;}
.y30d{bottom:130.797501px;}
.y22c{bottom:131.045550px;}
.y25d{bottom:131.046386px;}
.ydc{bottom:131.048241px;}
.y2a3{bottom:131.051255px;}
.y9f{bottom:131.054114px;}
.y1d7{bottom:132.578241px;}
.y105{bottom:133.426509px;}
.y15e{bottom:136.234469px;}
.y131{bottom:138.278422px;}
.y22{bottom:139.264499px;}
.y36a{bottom:139.552173px;}
.ye9{bottom:140.314020px;}
.y1e9{bottom:140.317514px;}
.y352{bottom:141.600109px;}
.y2d7{bottom:143.808729px;}
.y285{bottom:144.141600px;}
.y30c{bottom:144.232917px;}
.y25c{bottom:144.568070px;}
.y17b{bottom:144.993181px;}
.y22b{bottom:149.073900px;}
.ydb{bottom:149.076529px;}
.y2a2{bottom:149.079543px;}
.yc9{bottom:149.079736px;}
.y9e{bottom:149.082402px;}
.y1d6{bottom:150.606529px;}
.y104{bottom:153.410743px;}
.y15d{bottom:154.177333px;}
.y351{bottom:155.121622px;}
.y130{bottom:156.306710px;}
.y2d6{bottom:157.329193px;}
.y30b{bottom:157.754430px;}
.y25b{bottom:158.004536px;}
.y1e8{bottom:158.345801px;}
.y369{bottom:160.556276px;}
.y17a{bottom:163.021469px;}
.y284{bottom:163.785266px;}
.yda{bottom:167.104817px;}
.y2a1{bottom:167.107831px;}
.yc8{bottom:167.108024px;}
.y9d{bottom:167.110690px;}
.y1d5{bottom:168.549393px;}
.y350{bottom:168.643136px;}
.y2d5{bottom:170.765659px;}
.y30a{bottom:171.275944px;}
.y25a{bottom:171.525000px;}
.y103{bottom:173.310602px;}
.y12f{bottom:174.334998px;}
.y1e7{bottom:176.374089px;}
.y368{bottom:181.561654px;}
.y34f{bottom:182.078552px;}
.y283{bottom:183.771265px;}
.y2d4{bottom:184.286122px;}
.y309{bottom:184.796408px;}
.yd9{bottom:185.047681px;}
.y2a0{bottom:185.050694px;}
.yc7{bottom:185.050888px;}
.y22a{bottom:185.051815px;}
.y9c{bottom:185.053554px;}
.y1d4{bottom:186.577681px;}
.y15c{bottom:190.233908px;}
.y259{bottom:191.254496px;}
.y1ae{bottom:191.509649px;}
.y12e{bottom:192.277862px;}
.y5e{bottom:192.956589px;}
.y102{bottom:193.209337px;}
.y1e6{bottom:194.316953px;}
.y34e{bottom:195.600066px;}
.y19{bottom:196.933500px;}
.y2d3{bottom:197.807636px;}
.y308{bottom:198.232874px;}
.y179{bottom:198.992621px;}
.y367{bottom:202.565757px;}
.yd8{bottom:203.075969px;}
.y29f{bottom:203.078982px;}
.yc6{bottom:203.079176px;}
.y229{bottom:203.080103px;}
.y9b{bottom:203.081842px;}
.y282{bottom:203.668766px;}
.y1d3{bottom:204.605969px;}
.y258{bottom:204.775691px;}
.y1ad{bottom:205.031163px;}
.y15b{bottom:208.176772px;}
.y34d{bottom:209.120530px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y12d{bottom:210.306150px;}
.y5d{bottom:210.899453px;}
.y2d2{bottom:211.329150px;}
.y307{bottom:211.754387px;}
.y1e5{bottom:212.345241px;}
.y101{bottom:213.193571px;}
.y178{bottom:217.020908px;}
.y1ac{bottom:218.466579px;}
.yd7{bottom:221.104257px;}
.y228{bottom:221.107116px;}
.y29e{bottom:221.107270px;}
.yc5{bottom:221.107464px;}
.y9a{bottom:221.110129px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y34c{bottom:222.642043px;}
.y366{bottom:223.569860px;}
.y281{bottom:223.654765px;}
.y257{bottom:224.675551px;}
.y2d1{bottom:224.764566px;}
.y306{bottom:225.274851px;}
.y15a{bottom:226.205060px;}
.y12c{bottom:228.334438px;}
.y5c{bottom:228.927741px;}
.y1ab{bottom:231.988093px;}
.y100{bottom:233.092305px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y177{bottom:234.963772px;}
.y34b{bottom:236.078509px;}
.y36{bottom:236.926501px;}
.y256{bottom:238.196745px;}
.y2d0{bottom:238.286079px;}
.y305{bottom:238.796365px;}
.yd6{bottom:239.047121px;}
.y29d{bottom:239.050134px;}
.y227{bottom:239.051255px;}
.yc4{bottom:239.051603px;}
.y99{bottom:239.052993px;}
.yeb{bottom:239.301000px;}
.y1d2{bottom:240.577121px;}
.y280{bottom:243.553765px;}
.y159{bottom:244.233348px;}
.y365{bottom:244.575237px;}
.y1aa{bottom:245.509607px;}
.y12b{bottom:246.277301px;}
.yff{bottom:246.613500px;}
.y5b{bottom:246.956029px;}
.y1e4{bottom:248.316393px;}
.y34a{bottom:249.598973px;}
.y2cf{bottom:251.807593px;}
.y304{bottom:252.231781px;}
.y176{bottom:252.992060px;}
.yd5{bottom:257.075408px;}
.y29c{bottom:257.078422px;}
.yc3{bottom:257.078616px;}
.y226{bottom:257.079543px;}
.y98{bottom:257.081281px;}
.y255{bottom:258.095480px;}
.y1d1{bottom:258.605408px;}
.y1a9{bottom:259.030070px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y158{bottom:262.177487px;}
.y349{bottom:263.120487px;}
.y27f{bottom:263.451266px;}
.y12a{bottom:264.305589px;}
.y5a{bottom:264.898893px;}
.y2ce{bottom:265.328057px;}
.y364{bottom:265.579340px;}
.y303{bottom:265.753295px;}
.y1e3{bottom:266.344681px;}
.yfe{bottom:266.514564px;}
.y175{bottom:271.020348px;}
.y254{bottom:271.616675px;}
.y1a8{bottom:272.466536px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yd4{bottom:275.103696px;}
.y29b{bottom:275.106710px;}
.yc2{bottom:275.106904px;}
.y225{bottom:275.107831px;}
.y1d0{bottom:276.548272px;}
.y348{bottom:276.642000px;}
.y2cd{bottom:278.764523px;}
.y302{bottom:279.274808px;}
.y157{bottom:280.204500px;}
.y27e{bottom:283.436171px;}
.y1e2{bottom:284.372969px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1a7{bottom:285.987000px;}
.y363{bottom:286.499294px;}
.y174{bottom:288.964487px;}
.yfd{bottom:288.964500px;}
.y347{bottom:290.077416px;}
.y253{bottom:291.516534px;}
.y2cc{bottom:292.284987px;}
.y301{bottom:292.795272px;}
.ye6{bottom:293.046199px;}
.yd3{bottom:293.046560px;}
.y29a{bottom:293.049574px;}
.y224{bottom:293.050694px;}
.yc1{bottom:293.051043px;}
.y97{bottom:293.052433px;}
.y1cf{bottom:294.576560px;}
.y156{bottom:298.233000px;}
.y129{bottom:300.276741px;}
.y59{bottom:300.955469px;}
.y35{bottom:301.276501px;}
.y1e1{bottom:302.315833px;}
.y346{bottom:303.598930px;}
.y252{bottom:305.037729px;}
.y27d{bottom:305.631000px;}
.y1a6{bottom:305.716959px;}
.y2cb{bottom:305.806500px;}
.y300{bottom:306.231738px;}
.y173{bottom:306.991500px;}
.y362{bottom:307.503397px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.ye5{bottom:311.074487px;}
.yd2{bottom:311.074848px;}
.y299{bottom:311.077862px;}
.y223{bottom:311.078982px;}
.yc0{bottom:311.079331px;}
.y96{bottom:311.080721px;}
.y1ce{bottom:312.604848px;}
.y345{bottom:317.119394px;}
.y128{bottom:318.305029px;}
.y58{bottom:318.898333px;}
.y1a5{bottom:319.238154px;}
.y2ca{bottom:319.328014px;}
.y2ff{bottom:319.753252px;}
.y1e0{bottom:320.344121px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y172{bottom:325.020000px;}
.y251{bottom:325.021963px;}
.y27c{bottom:325.532813px;}
.y361{bottom:328.507500px;}
.ye4{bottom:329.101500px;}
.yd1{bottom:329.103136px;}
.y298{bottom:329.106150px;}
.ybf{bottom:329.106343px;}
.y95{bottom:329.109009px;}
.y1cd{bottom:330.548987px;}
.y344{bottom:330.640907px;}
.y2fe{bottom:333.273715px;}
.y155{bottom:334.205987px;}
.y127{bottom:336.333317px;}
.y57{bottom:336.926621px;}
.y250{bottom:338.457659px;}
.y1a4{bottom:339.138014px;}
.y343{bottom:344.077374px;}
.y2c9{bottom:346.284944px;}
.y2fd{bottom:346.795229px;}
.ye3{bottom:347.045700px;}
.yd0{bottom:347.046000px;}
.y297{bottom:347.049014px;}
.y222{bottom:347.050134px;}
.ybe{bottom:347.050482px;}
.y94{bottom:347.051873px;}
.y10{bottom:348.133500px;}
.y1cc{bottom:348.576000px;}
.y154{bottom:352.233000px;}
.y152{bottom:352.234446px;}
.y1a3{bottom:352.659208px;}
.y27b{bottom:354.019803px;}
.y126{bottom:354.276181px;}
.y56{bottom:354.954908px;}
.y1df{bottom:356.315272px;}
.y342{bottom:357.597837px;}
.y153{bottom:357.846000px;}
.y24f{bottom:358.441892px;}
.y2c8{bottom:359.806457px;}
.y2fc{bottom:360.230645px;}
.y171{bottom:360.993430px;}
.ycf{bottom:365.074500px;}
.y296{bottom:365.077301px;}
.y221{bottom:365.078422px;}
.ybd{bottom:365.078770px;}
.y93{bottom:365.080161px;}
.y34{bottom:365.626501px;}
.y1cb{bottom:366.604500px;}
.y360{bottom:367.712206px;}
.y151{bottom:370.177310px;}
.y341{bottom:371.119351px;}
.y24e{bottom:371.878713px;}
.y125{bottom:372.304469px;}
.y1a2{bottom:372.557943px;}
.y55{bottom:372.897772px;}
.y2c7{bottom:373.326921px;}
.y27a{bottom:373.408500px;}
.y2fb{bottom:373.752159px;}
.y1de{bottom:374.343560px;}
.y170{bottom:379.021718px;}
.ye2{bottom:383.101500px;}
.y220{bottom:383.106710px;}
.ybc{bottom:383.107058px;}
.y92{bottom:383.108449px;}
.y340{bottom:384.640865px;}
.y35f{bottom:385.655143px;}
.y2c6{bottom:386.763387px;}
.yf{bottom:386.785499px;}
.y2fa{bottom:387.273672px;}
.yfc{bottom:389.226110px;}
.y124{bottom:390.332757px;}
.y54{bottom:390.926060px;}
.y24d{bottom:391.862946px;}
.y1dd{bottom:392.371848px;}
.y1a1{bottom:392.542177px;}
.y16f{bottom:396.965857px;}
.y33f{bottom:398.076281px;}
.y35e{bottom:399.176657px;}
.y2c5{bottom:400.283851px;}
.y150{bottom:400.365130px;}
.y2f9{bottom:400.794136px;}
.y295{bottom:401.048453px;}
.y21f{bottom:401.049574px;}
.ybb{bottom:401.049922px;}
.y91{bottom:401.052587px;}
.y24c{bottom:405.298642px;}
.yfb{bottom:407.254398px;}
.ye{bottom:408.044999px;}
.y123{bottom:408.275621px;}
.y53{bottom:408.954348px;}
.y14e{bottom:409.125095px;}
.y1dc{bottom:410.315987px;}
.y33e{bottom:411.597794px;}
.y1a0{bottom:412.440911px;}
.y35d{bottom:412.698171px;}
.y2c4{bottom:413.805364px;}
.y2f8{bottom:414.230602px;}
.y16e{bottom:414.994145px;}
.y14f{bottom:417.798000px;}
.y294{bottom:419.076741px;}
.y1ca{bottom:419.077089px;}
.y21e{bottom:419.077862px;}
.yba{bottom:419.078210px;}
.y90{bottom:419.079600px;}
.y33d{bottom:425.118258px;}
.yfa{bottom:425.282686px;}
.y24b{bottom:425.282876px;}
.y35c{bottom:426.218634px;}
.y122{bottom:426.303908px;}
.y52{bottom:426.898487px;}
.y2c3{bottom:427.326878px;}
.y2f7{bottom:427.752116px;}
.y1db{bottom:428.343000px;}
.y19f{bottom:432.340771px;}
.y33{bottom:432.907500px;}
.y16d{bottom:433.021158px;}
.y293{bottom:437.105029px;}
.y1c9{bottom:437.105377px;}
.y21d{bottom:437.106150px;}
.yb9{bottom:437.106498px;}
.y8f{bottom:437.107888px;}
.y33c{bottom:438.639772px;}
.y24a{bottom:438.804071px;}
.y2c2{bottom:440.762294px;}
.y2f6{bottom:441.272580px;}
.y35b{bottom:444.161572px;}
.y121{bottom:444.332196px;}
.y51{bottom:444.925500px;}
.y279{bottom:450.114023px;}
.y16c{bottom:450.965296px;}
.y33b{bottom:452.076238px;}
.y19e{bottom:452.325004px;}
.y2c1{bottom:454.283808px;}
.y2f5{bottom:454.794093px;}
.y292{bottom:455.047893px;}
.y1c8{bottom:455.048241px;}
.y21c{bottom:455.049014px;}
.yb8{bottom:455.049362px;}
.y8e{bottom:455.052027px;}
.yf9{bottom:455.982350px;}
.y35a{bottom:457.683085px;}
.y249{bottom:458.702805px;}
.y120{bottom:462.275060px;}
.y14d{bottom:462.954961px;}
.y50{bottom:462.955500px;}
.y278{bottom:463.635536px;}
.y33a{bottom:465.596701px;}
.y2c0{bottom:467.805322px;}
.y2f4{bottom:468.229509px;}
.y16b{bottom:468.993584px;}
.y359{bottom:471.204599px;}
.y19d{bottom:472.223739px;}
.y248{bottom:472.224000px;}
.y291{bottom:473.076181px;}
.y1c7{bottom:473.076529px;}
.yb7{bottom:473.077650px;}
.y8d{bottom:473.080315px;}
.y20c{bottom:476.817107px;}
.y277{bottom:477.156000px;}
.y339{bottom:479.118215px;}
.y11f{bottom:480.303348px;}
.y2bf{bottom:481.325785px;}
.y2f3{bottom:481.751023px;}
.y358{bottom:484.725063px;}
.y19c{bottom:485.744934px;}
.y16a{bottom:487.021872px;}
.y20b{bottom:490.337570px;}
.y290{bottom:491.104469px;}
.y1c6{bottom:491.104817px;}
.y21b{bottom:491.105589px;}
.yb6{bottom:491.105938px;}
.y8c{bottom:491.108603px;}
.y246{bottom:492.123000px;}
.y338{bottom:492.639729px;}
.y32{bottom:494.326501px;}
.y2be{bottom:494.762251px;}
.y2f2{bottom:495.272537px;}
.y276{bottom:496.885765px;}
.y149{bottom:497.650630px;}
.y11e{bottom:498.331636px;}
.yf8{bottom:501.818060px;}
.y357{bottom:502.668000px;}
.yd{bottom:502.864502px;}
.y20a{bottom:503.774036px;}
.y169{bottom:504.964736px;}
.y19b{bottom:505.644794px;}
.y337{bottom:506.075145px;}
.y14b{bottom:506.409000px;}
.y148{bottom:506.409909px;}
.y4f{bottom:506.580750px;}
.y247{bottom:508.620031px;}
.y2f1{bottom:508.793000px;}
.y28f{bottom:509.047333px;}
.y1c5{bottom:509.047681px;}
.y21a{bottom:509.048453px;}
.yb5{bottom:509.048801px;}
.y8b{bottom:509.051467px;}
.y11d{bottom:516.275272px;}
.y275{bottom:516.784765px;}
.y209{bottom:517.294500px;}
.y19a{bottom:519.165988px;}
.y336{bottom:519.596659px;}
.yf7{bottom:519.762199px;}
.yc{bottom:520.864502px;}
.y2bd{bottom:521.804229px;}
.y2f0{bottom:522.229466px;}
.y14a{bottom:524.352641px;}
.y168{bottom:525.033136px;}
.y28e{bottom:527.075621px;}
.y1c4{bottom:527.075969px;}
.y219{bottom:527.076741px;}
.yb4{bottom:527.077089px;}
.y8a{bottom:527.079755px;}
.y14c{bottom:528.178094px;}
.y335{bottom:533.117122px;}
.y245{bottom:534.132564px;}
.y11c{bottom:534.303560px;}
.y2bc{bottom:535.325742px;}
.y2ef{bottom:535.750980px;}
.y274{bottom:536.683766px;}
.y208{bottom:537.024266px;}
.yf6{bottom:537.790487px;}
.yb{bottom:538.864499px;}
.y199{bottom:539.064723px;}
.y4e{bottom:541.021950px;}
.y167{bottom:542.978296px;}
.y28d{bottom:545.103908px;}
.y1c3{bottom:545.104257px;}
.y218{bottom:545.105029px;}
.yb3{bottom:545.105377px;}
.y89{bottom:545.108043px;}
.y334{bottom:546.638636px;}
.y2bb{bottom:548.761158px;}
.y2ee{bottom:549.271444px;}
.y11b{bottom:552.331848px;}
.y198{bottom:552.585918px;}
.yf5{bottom:555.818898px;}
.y244{bottom:556.582500px;}
.y273{bottom:556.668265px;}
.ya{bottom:556.864499px;}
.y207{bottom:557.008765px;}
.y333{bottom:560.075102px;}
.y31{bottom:561.607500px;}
.y2ba{bottom:562.282672px;}
.y2ed{bottom:562.792958px;}
.y166{bottom:563.046560px;}
.y28c{bottom:563.046772px;}
.y1c2{bottom:563.047121px;}
.y217{bottom:563.047893px;}
.ye1{bottom:563.048241px;}
.y88{bottom:563.050907px;}
.y147{bottom:564.577262px;}
.y11a{bottom:570.275987px;}
.y4d{bottom:571.806000px;}
.y197{bottom:572.570151px;}
.y332{bottom:573.595566px;}
.yf4{bottom:573.761762px;}
.y2b9{bottom:575.804186px;}
.y2ec{bottom:576.228374px;}
.y272{bottom:576.567266px;}
.y206{bottom:576.907765px;}
.y165{bottom:581.074848px;}
.y28b{bottom:581.075060px;}
.y1c1{bottom:581.075408px;}
.y216{bottom:581.076181px;}
.yb2{bottom:581.076529px;}
.y87{bottom:581.079194px;}
.y331{bottom:587.117079px;}
.y4c{bottom:588.303000px;}
.y119{bottom:588.304398px;}
.y2b8{bottom:589.324649px;}
.y2eb{bottom:589.749887px;}
.y196{bottom:592.470011px;}
.y146{bottom:595.363188px;}
.y30{bottom:595.957501px;}
.y271{bottom:596.551765px;}
.y205{bottom:596.806766px;}
.y164{bottom:599.103136px;}
.y28a{bottom:599.103348px;}
.y1c0{bottom:599.103696px;}
.yb1{bottom:599.104817px;}
.y86{bottom:599.107482px;}
.y330{bottom:600.638593px;}
.y2ea{bottom:603.271401px;}
.yf3{bottom:604.546092px;}
.y118{bottom:606.332686px;}
.y2f{bottom:610.957501px;}
.y195{bottom:612.368746px;}
.y32f{bottom:614.074009px;}
.y2b7{bottom:616.281579px;}
.y270{bottom:616.451171px;}
.y204{bottom:616.791265px;}
.y2e9{bottom:616.791865px;}
.y163{bottom:617.046000px;}
.y1bf{bottom:617.046560px;}
.y215{bottom:617.047333px;}
.y289{bottom:617.047487px;}
.yb0{bottom:617.047681px;}
.y85{bottom:617.050346px;}
.y4b{bottom:619.005000px;}
.y2e{bottom:625.957500px;}
.y32e{bottom:627.595523px;}
.y2b6{bottom:629.803093px;}
.y2e8{bottom:630.228331px;}
.y194{bottom:632.352979px;}
.y243{bottom:633.628070px;}
.y162{bottom:635.074500px;}
.y1be{bottom:635.074848px;}
.y214{bottom:635.075621px;}
.yaf{bottom:635.075969px;}
.yce{bottom:635.078634px;}
.y203{bottom:636.690265px;}
.y117{bottom:637.031257px;}
.y26f{bottom:638.646000px;}
.y4a{bottom:640.009500px;}
.y32d{bottom:641.115987px;}
.y145{bottom:641.198898px;}
.y2b5{bottom:643.324607px;}
.y2e7{bottom:643.749844px;}
.y9{bottom:645.510000px;}
.y242{bottom:647.064536px;}
.y193{bottom:652.252839px;}
.y288{bottom:653.101500px;}
.yf2{bottom:653.102621px;}
.y1bd{bottom:653.103136px;}
.y213{bottom:653.103908px;}
.yae{bottom:653.104257px;}
.y84{bottom:653.106922px;}
.y32c{bottom:654.637500px;}
.y202{bottom:656.589000px;}
.y2e6{bottom:657.270308px;}
.y26e{bottom:658.546389px;}
.y144{bottom:659.141762px;}
.y241{bottom:660.585000px;}
.y49{bottom:661.014000px;}
.y8{bottom:666.771000px;}
.y32b{bottom:668.073966px;}
.y2b4{bottom:670.281536px;}
.y2e5{bottom:670.791822px;}
.y1bc{bottom:671.046000px;}
.yf1{bottom:671.046759px;}
.y212{bottom:671.046772px;}
.yad{bottom:671.047121px;}
.y83{bottom:671.049786px;}
.y192{bottom:672.151573px;}
.y201{bottom:676.574813px;}
.y240{bottom:680.314765px;}
.y32a{bottom:681.594430px;}
.y48{bottom:682.018500px;}
.y2b3{bottom:683.802000px;}
.y2e4{bottom:684.226187px;}
.y191{bottom:685.672768px;}
.y26d{bottom:687.034654px;}
.y2b2{bottom:688.479000px;}
.yf0{bottom:689.073772px;}
.y1bb{bottom:689.074500px;}
.y211{bottom:689.075060px;}
.yac{bottom:689.075408px;}
.y82{bottom:689.078074px;}
.y143{bottom:689.925047px;}
.y116{bottom:695.028757px;}
.y329{bottom:695.115944px;}
.y2b1{bottom:697.323084px;}
.y2e3{bottom:697.747702px;}
.y23f{bottom:700.213766px;}
.y47{bottom:703.023000px;}
.y200{bottom:704.977654px;}
.y190{bottom:705.571503px;}
.y6e{bottom:706.414571px;}
.y26c{bottom:706.507500px;}
.yef{bottom:707.102060px;}
.y210{bottom:707.103348px;}
.yab{bottom:707.103696px;}
.y81{bottom:707.106362px;}
.y2d{bottom:707.317498px;}
.y328{bottom:708.637457px;}
.y2b0{bottom:710.758500px;}
.y2e2{bottom:711.269215px;}
.y2af{bottom:715.437042px;}
.y18f{bottom:719.092698px;}
.y6d{bottom:719.170657px;}
.y23e{bottom:720.198265px;}
.y327{bottom:722.072873px;}
.y46{bottom:724.027500px;}
.y2ad{bottom:724.281536px;}
.y1ff{bottom:724.450500px;}
.y2e1{bottom:724.789679px;}
.yee{bottom:725.046199px;}
.yaa{bottom:725.046560px;}
.y20f{bottom:725.047487px;}
.y1ba{bottom:725.047893px;}
.y80{bottom:725.049226px;}
.y7{bottom:726.298500px;}
.y2ae{bottom:728.958000px;}
.y326{bottom:735.594387px;}
.y2c{bottom:737.317498px;}
.y2ac{bottom:737.802000px;}
.y2e0{bottom:738.226145px;}
.y142{bottom:738.567348px;}
.y18e{bottom:739.076931px;}
.y23d{bottom:740.097266px;}
.yed{bottom:743.074487px;}
.y20e{bottom:743.074500px;}
.ya9{bottom:743.074848px;}
.y1b9{bottom:743.076181px;}
.y7f{bottom:743.077514px;}
.y6c{bottom:744.681778px;}
.y45{bottom:745.032000px;}
.y325{bottom:749.114851px;}
.y2aa{bottom:751.323355px;}
.y2df{bottom:751.747659px;}
.y18d{bottom:752.513752px;}
.y3{bottom:752.599495px;}
.y115{bottom:753.025561px;}
.y2b{bottom:755.317498px;}
.y2ab{bottom:756.000000px;}
.y141{bottom:756.511487px;}
.y6b{bottom:757.437863px;}
.y23c{bottom:760.081765px;}
.yec{bottom:761.101500px;}
.ya8{bottom:761.103136px;}
.y20d{bottom:761.103750px;}
.y1b8{bottom:761.104469px;}
.y7e{bottom:761.105801px;}
.y324{bottom:762.636364px;}
.y2de{bottom:765.268122px;}
.y2a9{bottom:765.270107px;}
.y44{bottom:766.036500px;}
.y26b{bottom:766.801070px;}
.y6a{bottom:770.192899px;}
.y18c{bottom:772.497985px;}
.y2a{bottom:773.317498px;}
.y140{bottom:774.539272px;}
.y323{bottom:776.072830px;}
.y2dd{bottom:778.789636px;}
.ya7{bottom:779.046000px;}
.y1b7{bottom:779.047333px;}
.y7d{bottom:779.048665px;}
.y23b{bottom:779.982265px;}
.y26a{bottom:780.237536px;}
.y43{bottom:787.041000px;}
.y322{bottom:789.593294px;}
.y29{bottom:791.317498px;}
.y2dc{bottom:792.225052px;}
.y2a8{bottom:792.227036px;}
.y18b{bottom:792.396720px;}
.y1fe{bottom:792.482036px;}
.y13f{bottom:792.567560px;}
.y269{bottom:793.758000px;}
.y69{bottom:795.705070px;}
.ye0{bottom:797.074500px;}
.ya6{bottom:797.075250px;}
.y1b6{bottom:797.075621px;}
.ycd{bottom:797.076953px;}
.y114{bottom:798.775848px;}
.y23a{bottom:799.879766px;}
.y321{bottom:803.114808px;}
.y2db{bottom:805.746566px;}
.y2a7{bottom:805.747500px;}
.y18a{bottom:805.917915px;}
.y1fd{bottom:806.003570px;}
.y42{bottom:808.045500px;}
.y68{bottom:808.460106px;}
.y268{bottom:813.487765px;}
.y1b5{bottom:815.103908px;}
.y7c{bottom:815.105241px;}
.y320{bottom:816.636322px;}
.y113{bottom:816.804136px;}
.y1fc{bottom:819.440036px;}
.y239{bottom:819.864265px;}
.y67{bottom:821.216191px;}
.y189{bottom:825.817775px;}
.y13e{bottom:828.539987px;}
.y41{bottom:829.050000px;}
.y31f{bottom:830.071738px;}
.y1fb{bottom:832.960500px;}
.ya5{bottom:833.046000px;}
.y1b4{bottom:833.046772px;}
.y7b{bottom:833.048105px;}
.y267{bottom:833.385266px;}
.y66{bottom:833.972277px;}
.y112{bottom:834.747000px;}
.y238{bottom:839.764765px;}
.y31e{bottom:843.593251px;}
.y28{bottom:843.789002px;}
.y188{bottom:845.802008px;}
.y13d{bottom:846.568380px;}
.y65{bottom:846.643315px;}
.y40{bottom:850.054500px;}
.y1b3{bottom:851.075060px;}
.y7a{bottom:851.076393px;}
.y111{bottom:852.775487px;}
.y1fa{bottom:853.200237px;}
.y266{bottom:853.369765px;}
.y1f9{bottom:856.007075px;}
.y31d{bottom:857.113715px;}
.y64{bottom:859.398350px;}
.y237{bottom:859.662266px;}
.y13c{bottom:864.511244px;}
.y187{bottom:865.700743px;}
.y1b2{bottom:869.103348px;}
.y79{bottom:869.104681px;}
.y31c{bottom:870.635229px;}
.y110{bottom:870.803060px;}
.y3f{bottom:871.059000px;}
.y265{bottom:873.270265px;}
.y1f8{bottom:874.970947px;}
.y1f7{bottom:876.756298px;}
.y186{bottom:879.221937px;}
.y2{bottom:879.369000px;}
.y236{bottom:879.648265px;}
.y13b{bottom:882.539532px;}
.y31b{bottom:884.071695px;}
.y63{bottom:884.740426px;}
.y1b1{bottom:887.047487px;}
.y78{bottom:887.047545px;}
.y10f{bottom:888.747199px;}
.y264{bottom:893.169266px;}
.y1f6{bottom:897.250737px;}
.y31a{bottom:897.592158px;}
.y185{bottom:899.121797px;}
.y235{bottom:899.545766px;}
.y62{bottom:899.706699px;}
.y1f5{bottom:900.057575px;}
.y13a{bottom:900.567820px;}
.y3d{bottom:904.818000px;}
.y1b0{bottom:905.074500px;}
.y77{bottom:905.075833px;}
.y10e{bottom:906.775487px;}
.y27{bottom:907.453504px;}
.y3e{bottom:910.771500px;}
.y319{bottom:911.113672px;}
.y263{bottom:913.153765px;}
.y139{bottom:918.511959px;}
.y184{bottom:919.020532px;}
.y1f4{bottom:919.021447px;}
.y234{bottom:919.531765px;}
.y1f3{bottom:920.806798px;}
.y1af{bottom:923.103000px;}
.y76{bottom:923.104121px;}
.y318{bottom:924.635186px;}
.y10d{bottom:924.802500px;}
.y10c{bottom:924.803686px;}
.y262{bottom:933.051671px;}
.y3c{bottom:934.074353px;}
.y317{bottom:938.070602px;}
.y26{bottom:938.953498px;}
.y183{bottom:939.004765px;}
.y233{bottom:939.430500px;}
.y75{bottom:941.048259px;}
.y1f2{bottom:941.302064px;}
.y1f1{bottom:944.107777px;}
.y316{bottom:951.592116px;}
.y138{bottom:954.567259px;}
.y261{bottom:955.246500px;}
.y10b{bottom:955.502700px;}
.y182{bottom:958.903500px;}
.y74{bottom:959.075272px;}
.y231{bottom:959.330858px;}
.y1f0{bottom:963.071649px;}
.y3b{bottom:964.092776px;}
.y1ef{bottom:964.857000px;}
.y315{bottom:965.112579px;}
.y1{bottom:966.726000px;}
.y25{bottom:970.453498px;}
.y137{bottom:972.511398px;}
.y260{bottom:975.146889px;}
.y232{bottom:975.827889px;}
.y73{bottom:977.103560px;}
.y314{bottom:978.634093px;}
.y181{bottom:978.889128px;}
.y1ed{bottom:984.842033px;}
.y136{bottom:990.539686px;}
.y313{bottom:992.070559px;}
.y3a{bottom:994.024500px;}
.ya4{bottom:995.047699px;}
.y1ee{bottom:1001.339064px;}
.y10a{bottom:1001.339686px;}
.y25f{bottom:1003.635154px;}
.y230{bottom:1004.316154px;}
.y312{bottom:1005.591023px;}
.y180{bottom:1007.291969px;}
.y72{bottom:1013.075987px;}
.y311{bottom:1019.112536px;}
.y135{bottom:1021.237500px;}
.y25e{bottom:1023.108000px;}
.y17f{bottom:1023.789000px;}
.y39{bottom:1028.551500px;}
.y71{bottom:1031.103000px;}
.y109{bottom:1032.037500px;}
.y310{bottom:1032.633000px;}
.y24{bottom:1035.546001px;}
.y60{bottom:1112.825680px;}
.y5f{bottom:1127.877000px;}
.y23{bottom:1165.122003px;}
.h47{height:22.985209px;}
.h32{height:26.821897px;}
.h15{height:28.400213px;}
.h1c{height:32.019493px;}
.h7{height:32.130000px;}
.h42{height:32.339076px;}
.h3c{height:33.132772px;}
.h26{height:33.137053px;}
.h37{height:33.749550px;}
.h1b{height:34.313020px;}
.h1a{height:34.481015px;}
.h43{height:36.209574px;}
.h44{height:36.210017px;}
.hb{height:36.726562px;}
.h34{height:36.764510px;}
.h40{height:36.937446px;}
.h46{height:36.941824px;}
.h3e{height:36.943442px;}
.h3d{height:36.943446px;}
.h25{height:36.944507px;}
.h45{height:36.947824px;}
.h41{height:36.949442px;}
.h1f{height:37.047780px;}
.h35{height:37.488996px;}
.h39{height:37.830996px;}
.h20{height:39.215510px;}
.h2e{height:39.371537px;}
.h30{height:39.524157px;}
.h2f{height:39.524535px;}
.h2c{height:40.227777px;}
.h29{height:40.229497px;}
.h23{height:40.231128px;}
.h28{height:40.232281px;}
.h22{height:40.232934px;}
.h27{height:40.233725px;}
.h2a{height:40.235497px;}
.h19{height:40.238527px;}
.hf{height:41.317383px;}
.h3f{height:41.580000px;}
.h24{height:41.666510px;}
.h1d{height:41.688000px;}
.h3b{height:41.704808px;}
.h14{height:42.606000px;}
.h36{height:44.085912px;}
.h18{height:44.118000px;}
.h38{height:44.422251px;}
.h3a{height:44.425558px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h17{height:47.340000px;}
.h3{height:48.195000px;}
.h16{height:49.020000px;}
.h33{height:50.836202px;}
.h2b{height:52.652638px;}
.h21{height:52.654459px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h12{height:58.823510px;}
.ha{height:68.862305px;}
.h2d{height:74.932889px;}
.h31{height:75.275114px;}
.h5{height:78.030000px;}
.h13{height:80.477527px;}
.hc{height:82.634766px;}
.h4{height:119.055004px;}
.h1e{height:176.286000px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:352.828500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w5{width:914.173500px;}
.w6{width:914.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x11{left:37.391250px;}
.x13{left:73.984200px;}
.xe{left:75.004650px;}
.x56{left:84.018750px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:145.650000px;}
.x12{left:161.847075px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x9{left:233.083498px;}
.xa{left:270.255000px;}
.x52{left:271.530935px;}
.x30{left:274.507518px;}
.x15{left:276.038942px;}
.x14{left:277.483500px;}
.x4d{left:279.864000px;}
.xd{left:282.754950px;}
.x53{left:285.391589px;}
.x54{left:291.003678px;}
.x8{left:293.590494px;}
.x22{left:307.416985px;}
.x1d{left:315.923322px;}
.x1e{left:320.512500px;}
.x19{left:345.941210px;}
.x38{left:347.131109px;}
.x25{left:349.425896px;}
.x18{left:355.464073px;}
.x24{left:362.351974px;}
.x23{left:368.815013px;}
.x17{left:379.020000px;}
.x2c{left:389.905108px;}
.x10{left:396.198000px;}
.x44{left:398.238591px;}
.x45{left:400.449187px;}
.x47{left:403.256024px;}
.x51{left:407.934000px;}
.x1b{left:410.739859px;}
.x1a{left:420.263997px;}
.x2f{left:443.988724px;}
.x31{left:445.434724px;}
.xb{left:449.688000px;}
.x3{left:454.959000px;}
.x1c{left:468.652500px;}
.x4f{left:471.710993px;}
.x32{left:489.569605px;}
.x3a{left:499.007976px;}
.x33{left:502.324555px;}
.x28{left:515.676274px;}
.x27{left:516.697537px;}
.x39{left:518.653188px;}
.x49{left:519.929344px;}
.x4b{left:522.141064px;}
.xc{left:559.729500px;}
.x50{left:562.446314px;}
.x4e{left:565.507814px;}
.x4c{left:575.205482px;}
.x46{left:576.395716px;}
.x40{left:578.266566px;}
.x55{left:584.216201px;}
.x3c{left:588.299000px;}
.x3b{left:590.764821px;}
.x41{left:606.924434px;}
.x4a{left:609.220528px;}
.x48{left:611.432249px;}
.x29{left:630.308900px;}
.x34{left:631.838806px;}
.x35{left:644.680455px;}
.x16{left:655.482566px;}
.x42{left:664.496666px;}
.x3e{left:677.590025px;}
.x3d{left:680.055846px;}
.x2d{left:689.323994px;}
.x21{left:720.704648px;}
.x2e{left:725.806252px;}
.x2a{left:741.028597px;}
.x2b{left:743.495693px;}
.x43{left:753.787850px;}
.x3f{left:766.965198px;}
.x26{left:770.108939px;}
.x36{left:774.278855px;}
.xf{left:776.325000px;}
.x1f{left:786.103500px;}
.x37{left:787.119229px;}
.x20{left:796.224000px;}
@media print{
.v9{vertical-align:-77.401223pt;}
.v7{vertical-align:-63.796849pt;}
.v8{vertical-align:-32.956946pt;}
.v3{vertical-align:-11.194305pt;}
.v4{vertical-align:-8.166576pt;}
.v5{vertical-align:-6.650667pt;}
.ve{vertical-align:-5.747805pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:3.323952pt;}
.vc{vertical-align:6.347915pt;}
.vd{vertical-align:9.071741pt;}
.va{vertical-align:11.188135pt;}
.v2{vertical-align:18.746667pt;}
.v1{vertical-align:21.766785pt;}
.v6{vertical-align:30.842667pt;}
.ls62{letter-spacing:-0.746645pt;}
.ls64{letter-spacing:-0.559984pt;}
.ls2{letter-spacing:-0.453328pt;}
.ls61{letter-spacing:-0.373323pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024284pt;}
.ls5e{letter-spacing:0.026980pt;}
.ls5d{letter-spacing:0.027579pt;}
.ls27{letter-spacing:0.041077pt;}
.ls29{letter-spacing:0.046400pt;}
.ls28{letter-spacing:0.046962pt;}
.ls26{letter-spacing:0.078424pt;}
.ls25{letter-spacing:0.078986pt;}
.ls40{letter-spacing:0.089773pt;}
.ls46{letter-spacing:0.093415pt;}
.ls3e{letter-spacing:0.109467pt;}
.ls4c{letter-spacing:0.126336pt;}
.ls5f{letter-spacing:0.126398pt;}
.ls51{letter-spacing:0.126705pt;}
.ls1a{letter-spacing:0.131700pt;}
.ls1e{letter-spacing:0.132230pt;}
.ls2e{letter-spacing:0.161367pt;}
.ls5a{letter-spacing:0.178999pt;}
.ls1{letter-spacing:0.453328pt;}
.ls2c{letter-spacing:0.454765pt;}
.ls17{letter-spacing:0.462349pt;}
.ls1d{letter-spacing:0.462910pt;}
.ls14{letter-spacing:0.467682pt;}
.ls24{letter-spacing:0.469506pt;}
.ls2a{letter-spacing:0.740262pt;}
.ls8{letter-spacing:0.743191pt;}
.ls60{letter-spacing:0.746645pt;}
.ls21{letter-spacing:0.747029pt;}
.ls2b{letter-spacing:0.759968pt;}
.ls52{letter-spacing:0.765044pt;}
.lsd{letter-spacing:0.766349pt;}
.lsb{letter-spacing:0.766878pt;}
.ls4f{letter-spacing:0.770377pt;}
.lsf{letter-spacing:0.771682pt;}
.ls12{letter-spacing:0.772244pt;}
.ls22{letter-spacing:0.779908pt;}
.ls54{letter-spacing:0.797996pt;}
.ls63{letter-spacing:1.119968pt;}
.ls2f{letter-spacing:2.453793pt;}
.ls19{letter-spacing:2.472304pt;}
.ls3d{letter-spacing:2.477637pt;}
.ls53{letter-spacing:2.521459pt;}
.ls2d{letter-spacing:2.757793pt;}
.ls20{letter-spacing:2.770971pt;}
.ls15{letter-spacing:2.776304pt;}
.ls35{letter-spacing:2.776322pt;}
.ls36{letter-spacing:2.834693pt;}
.ls4{letter-spacing:3.067189pt;}
.ls5{letter-spacing:3.072523pt;}
.ls3a{letter-spacing:9.837218pt;}
.lsa{letter-spacing:9.841751pt;}
.ls4a{letter-spacing:9.846280pt;}
.lsc{letter-spacing:10.140947pt;}
.ls43{letter-spacing:10.145481pt;}
.lse{letter-spacing:12.450971pt;}
.ls4e{letter-spacing:12.552652pt;}
.ls11{letter-spacing:12.561719pt;}
.ls18{letter-spacing:12.731126pt;}
.ls16{letter-spacing:12.736459pt;}
.ls13{letter-spacing:12.749637pt;}
.ls9{letter-spacing:12.754971pt;}
.ls33{letter-spacing:12.754989pt;}
.ls3c{letter-spacing:12.757512pt;}
.ls38{letter-spacing:12.813359pt;}
.ls3{letter-spacing:12.865449pt;}
.ls4d{letter-spacing:15.107762pt;}
.ls10{letter-spacing:15.170971pt;}
.ls50{letter-spacing:15.214792pt;}
.ls41{letter-spacing:15.234693pt;}
.ls1c{letter-spacing:15.456459pt;}
.ls37{letter-spacing:15.533359pt;}
.ls57{letter-spacing:15.922212pt;}
.ls3b{letter-spacing:16.370952pt;}
.ls32{letter-spacing:16.589908pt;}
.ls44{letter-spacing:16.672413pt;}
.ls39{letter-spacing:27.680208pt;}
.ls47{letter-spacing:28.840026pt;}
.ls42{letter-spacing:30.100979pt;}
.ls31{letter-spacing:33.718537pt;}
.ls49{letter-spacing:43.107267pt;}
.ls48{letter-spacing:43.406164pt;}
.ls30{letter-spacing:51.253264pt;}
.ls23{letter-spacing:52.762846pt;}
.ls58{letter-spacing:206.150633pt;}
.ls59{letter-spacing:276.099634pt;}
.ls5b{letter-spacing:278.539478pt;}
.ls5c{letter-spacing:281.848967pt;}
.ls56{letter-spacing:412.702497pt;}
.ls55{letter-spacing:412.706497pt;}
.ls1b{letter-spacing:842.117793pt;}
.ls1f{letter-spacing:1040.464459pt;}
.ls3f{letter-spacing:1241.253512pt;}
.ls7{letter-spacing:1374.662637pt;}
.ls34{letter-spacing:1517.893793pt;}
.ls45{letter-spacing:1637.346717pt;}
.ls4b{letter-spacing:1654.737866pt;}
.ws23{word-spacing:-35.268918pt;}
.ws36{word-spacing:-31.119585pt;}
.ws1e{word-spacing:-29.239656pt;}
.ws3a{word-spacing:-29.044503pt;}
.ws1{word-spacing:-12.432000pt;}
.ws3{word-spacing:-11.333200pt;}
.wsa{word-spacing:-11.106536pt;}
.ws5{word-spacing:-10.879872pt;}
.ws28{word-spacing:-9.999867pt;}
.ws4{word-spacing:-9.482396pt;}
.ws55{word-spacing:-9.333067pt;}
.ws72{word-spacing:-9.146405pt;}
.ws73{word-spacing:-8.959744pt;}
.ws74{word-spacing:-8.773083pt;}
.ws75{word-spacing:-8.586421pt;}
.ws76{word-spacing:-8.399760pt;}
.ws57{word-spacing:-8.250570pt;}
.ws9{word-spacing:-7.933200pt;}
.ws1d{word-spacing:-7.774536pt;}
.ws3e{word-spacing:-7.279903pt;}
.ws33{word-spacing:-6.794473pt;}
.ws56{word-spacing:-6.383818pt;}
.ws54{word-spacing:-5.095709pt;}
.ws21{word-spacing:-4.827943pt;}
.ws3b{word-spacing:-4.755878pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:1.387184pt;}
.ws2{word-spacing:3.945600pt;}
.ws71{word-spacing:3.950400pt;}
.ws18{word-spacing:4.333816pt;}
.ws15{word-spacing:4.758049pt;}
.ws19{word-spacing:4.763382pt;}
.ws14{word-spacing:5.062049pt;}
.ws7{word-spacing:6.065529pt;}
.ws17{word-spacing:6.405525pt;}
.wsb{word-spacing:7.478049pt;}
.ws8{word-spacing:27.317545pt;}
.ws1f{word-spacing:62.087803pt;}
.ws1c{word-spacing:63.905648pt;}
.ws20{word-spacing:73.652200pt;}
.ws26{word-spacing:87.494833pt;}
.ws43{word-spacing:94.750737pt;}
.ws40{word-spacing:94.770736pt;}
.ws2a{word-spacing:95.354729pt;}
.ws27{word-spacing:95.978720pt;}
.ws2c{word-spacing:98.982680pt;}
.ws3c{word-spacing:100.253487pt;}
.ws2b{word-spacing:103.822616pt;}
.ws32{word-spacing:103.842615pt;}
.ws29{word-spacing:110.474527pt;}
.ws4a{word-spacing:126.927307pt;}
.ws49{word-spacing:126.931840pt;}
.ws25{word-spacing:139.035698pt;}
.ws48{word-spacing:145.327890pt;}
.ws4b{word-spacing:150.173998pt;}
.ws2d{word-spacing:151.237983pt;}
.ws31{word-spacing:152.253970pt;}
.ws30{word-spacing:152.541966pt;}
.ws53{word-spacing:164.093812pt;}
.ws41{word-spacing:167.494492pt;}
.ws3d{word-spacing:173.757683pt;}
.ws51{word-spacing:178.683825pt;}
.ws4d{word-spacing:178.982492pt;}
.ws4e{word-spacing:185.334492pt;}
.ws2e{word-spacing:188.993480pt;}
.ws46{word-spacing:190.171825pt;}
.ws44{word-spacing:190.475825pt;}
.ws50{word-spacing:191.078492pt;}
.ws3f{word-spacing:193.798492pt;}
.ws42{word-spacing:196.523825pt;}
.ws4f{word-spacing:201.963825pt;}
.ws45{word-spacing:202.267825pt;}
.ws24{word-spacing:204.863456pt;}
.ws4c{word-spacing:205.291825pt;}
.ws52{word-spacing:208.614492pt;}
.ws47{word-spacing:219.803825pt;}
.ws2f{word-spacing:226.532980pt;}
.ws35{word-spacing:266.224450pt;}
.ws39{word-spacing:266.228450pt;}
.ws58{word-spacing:303.362564pt;}
.ws37{word-spacing:365.834403pt;}
.ws38{word-spacing:377.322403pt;}
.ws62{word-spacing:377.654786pt;}
.ws5a{word-spacing:377.953453pt;}
.ws59{word-spacing:392.166786pt;}
.ws6a{word-spacing:392.172119pt;}
.ws34{word-spacing:399.508900pt;}
.ws6b{word-spacing:457.158492pt;}
.ws6c{word-spacing:463.206492pt;}
.ws64{word-spacing:470.465158pt;}
.ws5d{word-spacing:475.606492pt;}
.ws65{word-spacing:476.513158pt;}
.ws6d{word-spacing:480.139825pt;}
.ws5c{word-spacing:481.654492pt;}
.wsc{word-spacing:481.824198pt;}
.ws66{word-spacing:493.446492pt;}
.ws5e{word-spacing:498.587825pt;}
.ws22{word-spacing:578.754791pt;}
.ws12{word-spacing:601.247983pt;}
.wsf{word-spacing:601.527980pt;}
.wse{word-spacing:607.647898pt;}
.ws5f{word-spacing:610.454492pt;}
.ws6e{word-spacing:610.459825pt;}
.ws67{word-spacing:612.875825pt;}
.ws11{word-spacing:613.487820pt;}
.ws61{word-spacing:622.550492pt;}
.ws70{word-spacing:622.854492pt;}
.ws10{word-spacing:624.487673pt;}
.ws69{word-spacing:624.971825pt;}
.wsd{word-spacing:627.807629pt;}
.ws13{word-spacing:631.007586pt;}
.ws5b{word-spacing:639.179825pt;}
.ws63{word-spacing:639.483825pt;}
.ws60{word-spacing:640.086492pt;}
.ws6f{word-spacing:640.390492pt;}
.ws68{word-spacing:642.507825pt;}
.ws1a{word-spacing:738.294049pt;}
.ws1b{word-spacing:961.131382pt;}
.ws16{word-spacing:995.302049pt;}
._1f{margin-left:-126.909369pt;}
._20{margin-left:-124.696933pt;}
._14{margin-left:-89.904009pt;}
._1{margin-left:-3.680000pt;}
._0{margin-left:-1.706684pt;}
._7{width:1.072000pt;}
._6{width:2.213333pt;}
._4{width:3.638400pt;}
._2{width:4.703961pt;}
._8{width:5.600185pt;}
._3{width:7.026625pt;}
._5{width:7.920000pt;}
._c{width:9.034467pt;}
._9{width:10.440144pt;}
._63{width:11.357465pt;}
._11{width:12.276122pt;}
._e{width:13.386776pt;}
._d{width:14.506496pt;}
._f{width:15.657949pt;}
._10{width:16.795802pt;}
._12{width:17.951789pt;}
._22{width:19.219716pt;}
._b{width:20.118697pt;}
._a{width:21.048019pt;}
._13{width:22.825065pt;}
._16{width:28.287667pt;}
._15{width:29.262322pt;}
._53{width:47.292921pt;}
._4f{width:60.104750pt;}
._50{width:68.869719pt;}
._56{width:71.132603pt;}
._55{width:72.800581pt;}
._54{width:77.784514pt;}
._52{width:79.452492pt;}
._4e{width:86.376400pt;}
._1c{width:90.048539pt;}
._4c{width:91.225363pt;}
._4a{width:92.278041pt;}
._49{width:97.945666pt;}
._4b{width:98.887223pt;}
._40{width:100.997592pt;}
._3f{width:101.964601pt;}
._29{width:106.209001pt;}
._41{width:112.485286pt;}
._2e{width:113.822482pt;}
._45{width:115.721429pt;}
._46{width:116.916496pt;}
._2b{width:117.938427pt;}
._2d{width:120.058399pt;}
._3e{width:121.234384pt;}
._30{width:123.658351pt;}
._3c{width:127.578299pt;}
._28{width:128.638285pt;}
._2f{width:136.502180pt;}
._31{width:137.526166pt;}
._47{width:138.798232pt;}
._25{width:149.049713pt;}
._2c{width:151.313982pt;}
._34{width:152.773963pt;}
._23{width:159.231460pt;}
._3d{width:160.837855pt;}
._26{width:161.783697pt;}
._24{width:164.966059pt;}
._35{width:169.401741pt;}
._38{width:170.381728pt;}
._39{width:175.013666pt;}
._32{width:178.397621pt;}
._65{width:179.713961pt;}
._33{width:187.157505pt;}
._2a{width:189.677471pt;}
._48{width:191.183841pt;}
._66{width:192.830505pt;}
._3b{width:199.317342pt;}
._43{width:201.764517pt;}
._5a{width:203.129480pt;}
._36{width:207.157238pt;}
._5d{width:209.375900pt;}
._42{width:213.591844pt;}
._37{width:215.021133pt;}
._27{width:221.757043pt;}
._44{width:227.321326pt;}
._3a{width:231.396915pt;}
._1b{width:252.324824pt;}
._57{width:253.775253pt;}
._6b{width:263.415125pt;}
._1d{width:264.763107pt;}
._64{width:281.374885pt;}
._19{width:303.057511pt;}
._6d{width:320.621583pt;}
._6a{width:323.493976pt;}
._6e{width:324.415863pt;}
._51{width:330.647591pt;}
._6c{width:332.282541pt;}
._62{width:335.153627pt;}
._4d{width:337.603499pt;}
._61{width:339.065341pt;}
._69{width:341.523942pt;}
._5c{width:344.187411pt;}
._59{width:346.493649pt;}
._67{width:348.616916pt;}
._60{width:350.427387pt;}
._5b{width:351.558756pt;}
._5e{width:353.884334pt;}
._58{width:374.795003pt;}
._1e{width:469.135296pt;}
._5f{width:488.453487pt;}
._68{width:491.083893pt;}
._1a{width:572.652365pt;}
._18{width:602.291969pt;}
._17{width:788.464324pt;}
._21{width:1113.364501pt;}
.fs16{font-size:24.885867pt;}
.fs15{font-size:26.131200pt;}
.fs14{font-size:27.998400pt;}
.fs13{font-size:30.217600pt;}
.fs11{font-size:31.732800pt;}
.fsb{font-size:31.995733pt;}
.fse{font-size:34.667200pt;}
.fsd{font-size:37.332267pt;}
.fs4{font-size:37.333333pt;}
.fs12{font-size:39.999467pt;}
.fs10{font-size:42.666133pt;}
.fs6{font-size:42.666667pt;}
.fsf{font-size:45.173333pt;}
.fsc{font-size:45.332800pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:63.999467pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fsa{font-size:90.666133pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:23.874107pt;}
.yea{bottom:28.798000pt;}
.y6{bottom:31.933340pt;}
.y61{bottom:37.492800pt;}
.ya3{bottom:37.499574pt;}
.y5{bottom:59.133337pt;}
.y38{bottom:60.086668pt;}
.ye7{bottom:68.031467pt;}
.y22f{bottom:68.485431pt;}
.ycc{bottom:68.486122pt;}
.ydf{bottom:68.487824pt;}
.y2a6{bottom:68.490502pt;}
.ya2{bottom:68.493044pt;}
.y70{bottom:69.468359pt;}
.y1da{bottom:69.847824pt;}
.y108{bottom:71.357467pt;}
.y161{bottom:73.097804pt;}
.y37{bottom:74.753335pt;}
.y134{bottom:74.911377pt;}
.y1ec{bottom:76.727177pt;}
.y356{bottom:77.867735pt;}
.y6f{bottom:80.806267pt;}
.y17e{bottom:80.883325pt;}
.ycb{bottom:84.510133pt;}
.y22e{bottom:84.510576pt;}
.yde{bottom:84.512968pt;}
.y2a5{bottom:84.515647pt;}
.ya1{bottom:84.518189pt;}
.y1d9{bottom:85.872968pt;}
.y4{bottom:86.333337pt;}
.y107{bottom:88.894738pt;}
.y160{bottom:89.047016pt;}
.y355{bottom:89.885925pt;}
.y133{bottom:90.936522pt;}
.y2da{bottom:91.849143pt;}
.y30f{bottom:92.227132pt;}
.y1eb{bottom:92.752322pt;}
.y17d{bottom:96.908470pt;}
.yca{bottom:100.535333pt;}
.y22d{bottom:100.535721pt;}
.ydd{bottom:100.538113pt;}
.y2a4{bottom:100.539659pt;}
.ya0{bottom:100.543333pt;}
.y106{bottom:100.913577pt;}
.y1d8{bottom:101.822181pt;}
.y354{bottom:101.905048pt;}
.y2d9{bottom:103.791735pt;}
.y287{bottom:104.088553pt;}
.y30e{bottom:104.245322pt;}
.y15f{bottom:105.072161pt;}
.y36b{bottom:105.376062pt;}
.y132{bottom:106.964941pt;}
.y1ea{bottom:108.777466pt;}
.y17c{bottom:112.857683pt;}
.y353{bottom:113.848573pt;}
.y2d8{bottom:115.810858pt;}
.y286{bottom:116.107677pt;}
.y30d{bottom:116.264445pt;}
.y22c{bottom:116.484933pt;}
.y25d{bottom:116.485677pt;}
.ydc{bottom:116.487325pt;}
.y2a3{bottom:116.490004pt;}
.y9f{bottom:116.492546pt;}
.y1d7{bottom:117.847325pt;}
.y105{bottom:118.601341pt;}
.y15e{bottom:121.097306pt;}
.y131{bottom:122.914153pt;}
.y22{bottom:123.790666pt;}
.y36a{bottom:124.046376pt;}
.ye9{bottom:124.723573pt;}
.y1e9{bottom:124.726679pt;}
.y352{bottom:125.866763pt;}
.y2d7{bottom:127.829981pt;}
.y285{bottom:128.125867pt;}
.y30c{bottom:128.207037pt;}
.y25c{bottom:128.504951pt;}
.y17b{bottom:128.882827pt;}
.y22b{bottom:132.510133pt;}
.ydb{bottom:132.512470pt;}
.y2a2{bottom:132.515149pt;}
.yc9{bottom:132.515321pt;}
.y9e{bottom:132.517691pt;}
.y1d6{bottom:133.872470pt;}
.y104{bottom:136.365105pt;}
.y15d{bottom:137.046518pt;}
.y351{bottom:137.885887pt;}
.y130{bottom:138.939298pt;}
.y2d6{bottom:139.848171pt;}
.y30b{bottom:140.226160pt;}
.y25b{bottom:140.448477pt;}
.y1e8{bottom:140.751824pt;}
.y369{bottom:142.716690pt;}
.y17a{bottom:144.907972pt;}
.y284{bottom:145.586904pt;}
.yda{bottom:148.537615pt;}
.y2a1{bottom:148.540294pt;}
.yc8{bottom:148.540466pt;}
.y9d{bottom:148.542835pt;}
.y1d5{bottom:149.821683pt;}
.y350{bottom:149.905010pt;}
.y2d5{bottom:151.791697pt;}
.y30a{bottom:152.245284pt;}
.y25a{bottom:152.466667pt;}
.y103{bottom:154.053869pt;}
.y12f{bottom:154.964443pt;}
.y1e7{bottom:156.776968pt;}
.y368{bottom:161.388137pt;}
.y34f{bottom:161.847602pt;}
.y283{bottom:163.352236pt;}
.y2d4{bottom:163.809886pt;}
.y309{bottom:164.263474pt;}
.yd9{bottom:164.486827pt;}
.y2a0{bottom:164.489506pt;}
.yc7{bottom:164.489678pt;}
.y22a{bottom:164.490502pt;}
.y9c{bottom:164.492048pt;}
.y1d4{bottom:165.846827pt;}
.y15c{bottom:169.096808pt;}
.y259{bottom:170.003997pt;}
.y1ae{bottom:170.230799pt;}
.y12e{bottom:170.913655pt;}
.y5e{bottom:171.516968pt;}
.y102{bottom:171.741633pt;}
.y1e6{bottom:172.726181pt;}
.y34e{bottom:173.866725pt;}
.y19{bottom:175.052000pt;}
.y2d3{bottom:175.829010pt;}
.y308{bottom:176.206999pt;}
.y179{bottom:176.882329pt;}
.y367{bottom:180.058450pt;}
.yd8{bottom:180.511972pt;}
.y29f{bottom:180.514651pt;}
.yc6{bottom:180.514823pt;}
.y229{bottom:180.515647pt;}
.y9b{bottom:180.517192pt;}
.y282{bottom:181.038904pt;}
.y1d3{bottom:181.871972pt;}
.y258{bottom:182.022836pt;}
.y1ad{bottom:182.249923pt;}
.y15b{bottom:185.046020pt;}
.y34d{bottom:185.884915pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y12d{bottom:186.938800pt;}
.y5d{bottom:187.466181pt;}
.y2d2{bottom:187.848133pt;}
.y307{bottom:188.226122pt;}
.y1e5{bottom:188.751325pt;}
.y101{bottom:189.505396pt;}
.y178{bottom:192.907474pt;}
.y1ac{bottom:194.192515pt;}
.yd7{bottom:196.537117pt;}
.y228{bottom:196.539659pt;}
.y29e{bottom:196.539796pt;}
.yc5{bottom:196.539968pt;}
.y9a{bottom:196.542337pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y34c{bottom:197.904038pt;}
.y366{bottom:198.728764pt;}
.y281{bottom:198.804236pt;}
.y257{bottom:199.711601pt;}
.y2d1{bottom:199.790725pt;}
.y306{bottom:200.244312pt;}
.y15a{bottom:201.071165pt;}
.y12c{bottom:202.963945pt;}
.y5c{bottom:203.491325pt;}
.y1ab{bottom:206.211638pt;}
.y100{bottom:207.193160pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y177{bottom:208.856687pt;}
.y34b{bottom:209.847564pt;}
.y36{bottom:210.601334pt;}
.y256{bottom:211.730440pt;}
.y2d0{bottom:211.809848pt;}
.y305{bottom:212.263435pt;}
.yd6{bottom:212.486329pt;}
.y29d{bottom:212.489008pt;}
.y227{bottom:212.490004pt;}
.yc4{bottom:212.490314pt;}
.y99{bottom:212.491550pt;}
.yeb{bottom:212.712000pt;}
.y1d2{bottom:213.846329pt;}
.y280{bottom:216.492236pt;}
.y159{bottom:217.096310pt;}
.y365{bottom:217.400211pt;}
.y1aa{bottom:218.230761pt;}
.y12b{bottom:218.913157pt;}
.yff{bottom:219.212000pt;}
.y5b{bottom:219.516470pt;}
.y1e4{bottom:220.725683pt;}
.y34a{bottom:221.865754pt;}
.y2cf{bottom:223.828972pt;}
.y304{bottom:224.206027pt;}
.y176{bottom:224.881831pt;}
.yd5{bottom:228.511474pt;}
.y29c{bottom:228.514153pt;}
.yc3{bottom:228.514325pt;}
.y226{bottom:228.515149pt;}
.y98{bottom:228.516694pt;}
.y255{bottom:229.418205pt;}
.y1d1{bottom:229.871474pt;}
.y1a9{bottom:230.248951pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y158{bottom:233.046655pt;}
.y349{bottom:233.884877pt;}
.y27f{bottom:234.178904pt;}
.y12a{bottom:234.938302pt;}
.y5a{bottom:235.465683pt;}
.y2ce{bottom:235.847162pt;}
.y364{bottom:236.070525pt;}
.y303{bottom:236.225151pt;}
.y1e3{bottom:236.750827pt;}
.yfe{bottom:236.901835pt;}
.y175{bottom:240.906976pt;}
.y254{bottom:241.437044pt;}
.y1a8{bottom:242.192477pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yd4{bottom:244.536619pt;}
.y29b{bottom:244.539298pt;}
.yc2{bottom:244.539470pt;}
.y225{bottom:244.540294pt;}
.y1d0{bottom:245.820687pt;}
.y348{bottom:245.904000pt;}
.y2cd{bottom:247.790687pt;}
.y302{bottom:248.244274pt;}
.y157{bottom:249.070667pt;}
.y27e{bottom:251.943263pt;}
.y1e2{bottom:252.775972pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1a7{bottom:254.210667pt;}
.y363{bottom:254.666039pt;}
.y174{bottom:256.857322pt;}
.yfd{bottom:256.857333pt;}
.y347{bottom:257.846592pt;}
.y253{bottom:259.125808pt;}
.y2cc{bottom:259.808877pt;}
.y301{bottom:260.262464pt;}
.ye6{bottom:260.485510pt;}
.yd3{bottom:260.485831pt;}
.y29a{bottom:260.488510pt;}
.y224{bottom:260.489506pt;}
.yc1{bottom:260.489816pt;}
.y97{bottom:260.491052pt;}
.y1cf{bottom:261.845831pt;}
.y156{bottom:265.096000pt;}
.y129{bottom:266.912659pt;}
.y59{bottom:267.515972pt;}
.y35{bottom:267.801334pt;}
.y1e1{bottom:268.725185pt;}
.y346{bottom:269.865716pt;}
.y252{bottom:271.144648pt;}
.y27d{bottom:271.672000pt;}
.y1a6{bottom:271.748408pt;}
.y2cb{bottom:271.828000pt;}
.y300{bottom:272.205989pt;}
.y173{bottom:272.881333pt;}
.y362{bottom:273.336353pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.ye5{bottom:276.510655pt;}
.yd2{bottom:276.510976pt;}
.y299{bottom:276.513655pt;}
.y223{bottom:276.514651pt;}
.yc0{bottom:276.514960pt;}
.y96{bottom:276.516196pt;}
.y1ce{bottom:277.870976pt;}
.y345{bottom:281.883906pt;}
.y128{bottom:282.937804pt;}
.y58{bottom:283.465185pt;}
.y1a5{bottom:283.767248pt;}
.y2ca{bottom:283.847123pt;}
.y2ff{bottom:284.225113pt;}
.y1e0{bottom:284.750329pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y172{bottom:288.906667pt;}
.y251{bottom:288.908411pt;}
.y27c{bottom:289.362501pt;}
.y361{bottom:292.006667pt;}
.ye4{bottom:292.534667pt;}
.yd1{bottom:292.536121pt;}
.y298{bottom:292.538800pt;}
.ybf{bottom:292.538972pt;}
.y95{bottom:292.541341pt;}
.y1cd{bottom:293.821322pt;}
.y344{bottom:293.903029pt;}
.y2fe{bottom:296.243303pt;}
.y155{bottom:297.071989pt;}
.y127{bottom:298.962948pt;}
.y57{bottom:299.490329pt;}
.y250{bottom:300.851252pt;}
.y1a4{bottom:301.456012pt;}
.y343{bottom:305.846554pt;}
.y2c9{bottom:307.808839pt;}
.y2fd{bottom:308.262426pt;}
.ye3{bottom:308.485067pt;}
.yd0{bottom:308.485333pt;}
.y297{bottom:308.488012pt;}
.y222{bottom:308.489008pt;}
.ybe{bottom:308.489318pt;}
.y94{bottom:308.490554pt;}
.y10{bottom:309.452000pt;}
.y1cc{bottom:309.845333pt;}
.y154{bottom:313.096000pt;}
.y152{bottom:313.097286pt;}
.y1a3{bottom:313.474852pt;}
.y27b{bottom:314.684269pt;}
.y126{bottom:314.912161pt;}
.y56{bottom:315.515474pt;}
.y1df{bottom:316.724687pt;}
.y342{bottom:317.864744pt;}
.y153{bottom:318.085333pt;}
.y24f{bottom:318.615015pt;}
.y2c8{bottom:319.827962pt;}
.y2fc{bottom:320.205018pt;}
.y171{bottom:320.883049pt;}
.ycf{bottom:324.510667pt;}
.y296{bottom:324.513157pt;}
.y221{bottom:324.514153pt;}
.ybd{bottom:324.514462pt;}
.y93{bottom:324.515698pt;}
.y34{bottom:325.001334pt;}
.y1cb{bottom:325.870667pt;}
.y360{bottom:326.855294pt;}
.y151{bottom:329.046498pt;}
.y341{bottom:329.883867pt;}
.y24e{bottom:330.558856pt;}
.y125{bottom:330.937306pt;}
.y1a2{bottom:331.162616pt;}
.y55{bottom:331.464687pt;}
.y2c7{bottom:331.846152pt;}
.y27a{bottom:331.918667pt;}
.y2fb{bottom:332.224141pt;}
.y1de{bottom:332.749831pt;}
.y170{bottom:336.908194pt;}
.ye2{bottom:340.534667pt;}
.y220{bottom:340.539298pt;}
.ybc{bottom:340.539607pt;}
.y92{bottom:340.540843pt;}
.y340{bottom:341.902991pt;}
.y35f{bottom:342.804572pt;}
.y2c6{bottom:343.789677pt;}
.yf{bottom:343.809333pt;}
.y2fa{bottom:344.243264pt;}
.yfc{bottom:345.978765pt;}
.y124{bottom:346.962450pt;}
.y54{bottom:347.489831pt;}
.y24d{bottom:348.322619pt;}
.y1dd{bottom:348.774976pt;}
.y1a1{bottom:348.926379pt;}
.y16f{bottom:352.858539pt;}
.y33f{bottom:353.845583pt;}
.y35e{bottom:354.823695pt;}
.y2c5{bottom:355.807867pt;}
.y150{bottom:355.880116pt;}
.y2f9{bottom:356.261454pt;}
.y295{bottom:356.487514pt;}
.y21f{bottom:356.488510pt;}
.ybb{bottom:356.488820pt;}
.y91{bottom:356.491189pt;}
.y24c{bottom:360.265460pt;}
.yfb{bottom:362.003910pt;}
.ye{bottom:362.706666pt;}
.y123{bottom:362.911663pt;}
.y53{bottom:363.514976pt;}
.y14e{bottom:363.666751pt;}
.y1dc{bottom:364.725322pt;}
.y33e{bottom:365.864706pt;}
.y1a0{bottom:366.614143pt;}
.y35d{bottom:366.842818pt;}
.y2c4{bottom:367.826991pt;}
.y2f8{bottom:368.204980pt;}
.y16e{bottom:368.883684pt;}
.y14f{bottom:371.376000pt;}
.y294{bottom:372.512659pt;}
.y1ca{bottom:372.512968pt;}
.y21e{bottom:372.513655pt;}
.yba{bottom:372.513964pt;}
.y90{bottom:372.515200pt;}
.y33d{bottom:377.882896pt;}
.yfa{bottom:378.029054pt;}
.y24b{bottom:378.029223pt;}
.y35c{bottom:378.861008pt;}
.y122{bottom:378.936808pt;}
.y52{bottom:379.465322pt;}
.y2c3{bottom:379.846114pt;}
.y2f7{bottom:380.224103pt;}
.y1db{bottom:380.749333pt;}
.y19f{bottom:384.302907pt;}
.y33{bottom:384.806667pt;}
.y16d{bottom:384.907696pt;}
.y293{bottom:388.537804pt;}
.y1c9{bottom:388.538113pt;}
.y21d{bottom:388.538800pt;}
.yb9{bottom:388.539109pt;}
.y8f{bottom:388.540345pt;}
.y33c{bottom:389.902019pt;}
.y24a{bottom:390.048063pt;}
.y2c2{bottom:391.788706pt;}
.y2f6{bottom:392.242293pt;}
.y35b{bottom:394.810286pt;}
.y121{bottom:394.961952pt;}
.y51{bottom:395.489333pt;}
.y279{bottom:400.101353pt;}
.y16c{bottom:400.858041pt;}
.y33b{bottom:401.845545pt;}
.y19e{bottom:402.066671pt;}
.y2c1{bottom:403.807829pt;}
.y2f5{bottom:404.261416pt;}
.y292{bottom:404.487016pt;}
.y1c8{bottom:404.487325pt;}
.y21c{bottom:404.488012pt;}
.yb8{bottom:404.488322pt;}
.y8e{bottom:404.490691pt;}
.yf9{bottom:405.317644pt;}
.y35a{bottom:406.829409pt;}
.y249{bottom:407.735827pt;}
.y120{bottom:410.911165pt;}
.y14d{bottom:411.515521pt;}
.y50{bottom:411.516000pt;}
.y278{bottom:412.120477pt;}
.y33a{bottom:413.863735pt;}
.y2c0{bottom:415.826952pt;}
.y2f4{bottom:416.204008pt;}
.y16b{bottom:416.883186pt;}
.y359{bottom:418.848532pt;}
.y19d{bottom:419.754435pt;}
.y248{bottom:419.754667pt;}
.y291{bottom:420.512161pt;}
.y1c7{bottom:420.512470pt;}
.yb7{bottom:420.513466pt;}
.y8d{bottom:420.515836pt;}
.y20c{bottom:423.837428pt;}
.y277{bottom:424.138667pt;}
.y339{bottom:425.882858pt;}
.y11f{bottom:426.936310pt;}
.y2bf{bottom:427.845142pt;}
.y2f3{bottom:428.223132pt;}
.y358{bottom:430.866722pt;}
.y19c{bottom:431.773275pt;}
.y16a{bottom:432.908331pt;}
.y20b{bottom:435.855618pt;}
.y290{bottom:436.537306pt;}
.y1c6{bottom:436.537615pt;}
.y21b{bottom:436.538302pt;}
.yb6{bottom:436.538611pt;}
.y8c{bottom:436.540980pt;}
.y246{bottom:437.442667pt;}
.y338{bottom:437.901981pt;}
.y32{bottom:439.401334pt;}
.y2be{bottom:439.788668pt;}
.y2f2{bottom:440.242255pt;}
.y276{bottom:441.676236pt;}
.y149{bottom:442.356116pt;}
.y11e{bottom:442.961454pt;}
.yf8{bottom:446.060498pt;}
.y357{bottom:446.816000pt;}
.yd{bottom:446.990669pt;}
.y20a{bottom:447.799143pt;}
.y169{bottom:448.857543pt;}
.y19b{bottom:449.462039pt;}
.y337{bottom:449.844573pt;}
.y14b{bottom:450.141333pt;}
.y148{bottom:450.142142pt;}
.y4f{bottom:450.294000pt;}
.y247{bottom:452.106694pt;}
.y2f1{bottom:452.260445pt;}
.y28f{bottom:452.486518pt;}
.y1c5{bottom:452.486827pt;}
.y21a{bottom:452.487514pt;}
.yb5{bottom:452.487824pt;}
.y8b{bottom:452.490193pt;}
.y11d{bottom:458.911353pt;}
.y275{bottom:459.364236pt;}
.y209{bottom:459.817333pt;}
.y19a{bottom:461.480878pt;}
.y336{bottom:461.863697pt;}
.yf7{bottom:462.010844pt;}
.yc{bottom:462.990669pt;}
.y2bd{bottom:463.825981pt;}
.y2f0{bottom:464.203970pt;}
.y14a{bottom:466.091236pt;}
.y168{bottom:466.696121pt;}
.y28e{bottom:468.511663pt;}
.y1c4{bottom:468.511972pt;}
.y219{bottom:468.512659pt;}
.yb4{bottom:468.512968pt;}
.y8a{bottom:468.515338pt;}
.y14c{bottom:469.491639pt;}
.y335{bottom:473.881886pt;}
.y245{bottom:474.784501pt;}
.y11c{bottom:474.936498pt;}
.y2bc{bottom:475.845104pt;}
.y2ef{bottom:476.223093pt;}
.y274{bottom:477.052237pt;}
.y208{bottom:477.354904pt;}
.yf6{bottom:478.035989pt;}
.yb{bottom:478.990666pt;}
.y199{bottom:479.168643pt;}
.y4e{bottom:480.908400pt;}
.y167{bottom:482.647375pt;}
.y28d{bottom:484.536808pt;}
.y1c3{bottom:484.537117pt;}
.y218{bottom:484.537804pt;}
.yb3{bottom:484.538113pt;}
.y89{bottom:484.540482pt;}
.y334{bottom:485.901010pt;}
.y2bb{bottom:487.787696pt;}
.y2ee{bottom:488.241283pt;}
.y11b{bottom:490.961643pt;}
.y198{bottom:491.187482pt;}
.yf5{bottom:494.061243pt;}
.y244{bottom:494.740000pt;}
.y273{bottom:494.816236pt;}
.ya{bottom:494.990666pt;}
.y207{bottom:495.118903pt;}
.y333{bottom:497.844535pt;}
.y31{bottom:499.206667pt;}
.y2ba{bottom:499.806820pt;}
.y2ed{bottom:500.260407pt;}
.y166{bottom:500.485831pt;}
.y28c{bottom:500.486020pt;}
.y1c2{bottom:500.486329pt;}
.y217{bottom:500.487016pt;}
.ye1{bottom:500.487325pt;}
.y88{bottom:500.489695pt;}
.y147{bottom:501.846455pt;}
.y11a{bottom:506.911989pt;}
.y4d{bottom:508.272000pt;}
.y197{bottom:508.951245pt;}
.y332{bottom:509.862725pt;}
.yf4{bottom:510.010455pt;}
.y2b9{bottom:511.825943pt;}
.y2ec{bottom:512.202999pt;}
.y272{bottom:512.504237pt;}
.y206{bottom:512.806903pt;}
.y165{bottom:516.510976pt;}
.y28b{bottom:516.511165pt;}
.y1c1{bottom:516.511474pt;}
.y216{bottom:516.512161pt;}
.yb2{bottom:516.512470pt;}
.y87{bottom:516.514840pt;}
.y331{bottom:521.881848pt;}
.y4c{bottom:522.936000pt;}
.y119{bottom:522.937243pt;}
.y2b8{bottom:523.844133pt;}
.y2eb{bottom:524.222122pt;}
.y196{bottom:526.640010pt;}
.y146{bottom:529.211722pt;}
.y30{bottom:529.740001pt;}
.y271{bottom:530.268236pt;}
.y205{bottom:530.494904pt;}
.y164{bottom:532.536121pt;}
.y28a{bottom:532.536310pt;}
.y1c0{bottom:532.536619pt;}
.yb1{bottom:532.537615pt;}
.y86{bottom:532.539984pt;}
.y330{bottom:533.900972pt;}
.y2ea{bottom:536.241245pt;}
.yf3{bottom:537.374304pt;}
.y118{bottom:538.962388pt;}
.y2f{bottom:543.073335pt;}
.y195{bottom:544.327774pt;}
.y32f{bottom:545.843564pt;}
.y2b7{bottom:547.805848pt;}
.y270{bottom:547.956596pt;}
.y204{bottom:548.258903pt;}
.y2e9{bottom:548.259435pt;}
.y163{bottom:548.485333pt;}
.y1bf{bottom:548.485831pt;}
.y215{bottom:548.486518pt;}
.y289{bottom:548.486655pt;}
.yb0{bottom:548.486827pt;}
.y85{bottom:548.489197pt;}
.y4b{bottom:550.226667pt;}
.y2e{bottom:556.406667pt;}
.y32e{bottom:557.862687pt;}
.y2b6{bottom:559.824971pt;}
.y2e8{bottom:560.202961pt;}
.y194{bottom:562.091537pt;}
.y243{bottom:563.224951pt;}
.y162{bottom:564.510667pt;}
.y1be{bottom:564.510976pt;}
.y214{bottom:564.511663pt;}
.yaf{bottom:564.511972pt;}
.yce{bottom:564.514341pt;}
.y203{bottom:565.946903pt;}
.y117{bottom:566.250006pt;}
.y26f{bottom:567.685333pt;}
.y4a{bottom:568.897333pt;}
.y32d{bottom:569.880877pt;}
.y145{bottom:569.954576pt;}
.y2b5{bottom:571.844095pt;}
.y2e7{bottom:572.222084pt;}
.y9{bottom:573.786667pt;}
.y242{bottom:575.168477pt;}
.y193{bottom:579.780301pt;}
.y288{bottom:580.534667pt;}
.yf2{bottom:580.535663pt;}
.y1bd{bottom:580.536121pt;}
.y213{bottom:580.536808pt;}
.yae{bottom:580.537117pt;}
.y84{bottom:580.539486pt;}
.y32c{bottom:581.900000pt;}
.y202{bottom:583.634667pt;}
.y2e6{bottom:584.240274pt;}
.y26e{bottom:585.374568pt;}
.y144{bottom:585.903789pt;}
.y241{bottom:587.186667pt;}
.y49{bottom:587.568000pt;}
.y8{bottom:592.685334pt;}
.y32b{bottom:593.843526pt;}
.y2b4{bottom:595.805810pt;}
.y2e5{bottom:596.259397pt;}
.y1bc{bottom:596.485333pt;}
.yf1{bottom:596.486008pt;}
.y212{bottom:596.486020pt;}
.yad{bottom:596.486329pt;}
.y83{bottom:596.488699pt;}
.y192{bottom:597.468065pt;}
.y201{bottom:601.399834pt;}
.y240{bottom:604.724236pt;}
.y32a{bottom:605.861716pt;}
.y48{bottom:606.238667pt;}
.y2b3{bottom:607.824000pt;}
.y2e4{bottom:608.201055pt;}
.y191{bottom:609.486905pt;}
.y26d{bottom:610.697470pt;}
.y2b2{bottom:611.981333pt;}
.yf0{bottom:612.510020pt;}
.y1bb{bottom:612.510667pt;}
.y211{bottom:612.511165pt;}
.yac{bottom:612.511474pt;}
.y82{bottom:612.513843pt;}
.y143{bottom:613.266709pt;}
.y116{bottom:617.803340pt;}
.y329{bottom:617.880839pt;}
.y2b1{bottom:619.842741pt;}
.y2e3{bottom:620.220179pt;}
.y23f{bottom:622.412237pt;}
.y47{bottom:624.909333pt;}
.y200{bottom:626.646804pt;}
.y190{bottom:627.174669pt;}
.y6e{bottom:627.924063pt;}
.y26c{bottom:628.006667pt;}
.yef{bottom:628.535165pt;}
.y210{bottom:628.536310pt;}
.yab{bottom:628.536619pt;}
.y81{bottom:628.538988pt;}
.y2d{bottom:628.726665pt;}
.y328{bottom:629.899962pt;}
.y2b0{bottom:631.785333pt;}
.y2e2{bottom:632.239302pt;}
.y2af{bottom:635.944037pt;}
.y18f{bottom:639.193509pt;}
.y6d{bottom:639.262806pt;}
.y23e{bottom:640.176236pt;}
.y327{bottom:641.842554pt;}
.y46{bottom:643.580000pt;}
.y2ad{bottom:643.805810pt;}
.y1ff{bottom:643.956000pt;}
.y2e1{bottom:644.257492pt;}
.yee{bottom:644.485510pt;}
.yaa{bottom:644.485831pt;}
.y20f{bottom:644.486655pt;}
.y1ba{bottom:644.487016pt;}
.y80{bottom:644.488201pt;}
.y7{bottom:645.598667pt;}
.y2ae{bottom:647.962667pt;}
.y326{bottom:653.861677pt;}
.y2c{bottom:655.393332pt;}
.y2ac{bottom:655.824000pt;}
.y2e0{bottom:656.201018pt;}
.y142{bottom:656.504310pt;}
.y18e{bottom:656.957272pt;}
.y23d{bottom:657.864237pt;}
.yed{bottom:660.510655pt;}
.y20e{bottom:660.510667pt;}
.ya9{bottom:660.510976pt;}
.y1b9{bottom:660.512161pt;}
.y7f{bottom:660.513345pt;}
.y6c{bottom:661.939358pt;}
.y45{bottom:662.250667pt;}
.y325{bottom:665.879867pt;}
.y2aa{bottom:667.842982pt;}
.y2df{bottom:668.220141pt;}
.y18d{bottom:668.901113pt;}
.y3{bottom:668.977329pt;}
.y115{bottom:669.356055pt;}
.y2b{bottom:671.393332pt;}
.y2ab{bottom:672.000000pt;}
.y141{bottom:672.454655pt;}
.y6b{bottom:673.278101pt;}
.y23c{bottom:675.628236pt;}
.yec{bottom:676.534667pt;}
.ya8{bottom:676.536121pt;}
.y20d{bottom:676.536667pt;}
.y1b8{bottom:676.537306pt;}
.y7e{bottom:676.538490pt;}
.y324{bottom:677.898991pt;}
.y2de{bottom:680.238331pt;}
.y2a9{bottom:680.240095pt;}
.y44{bottom:680.921333pt;}
.y26b{bottom:681.600951pt;}
.y6a{bottom:684.615910pt;}
.y18c{bottom:686.664876pt;}
.y2a{bottom:687.393332pt;}
.y140{bottom:688.479353pt;}
.y323{bottom:689.842516pt;}
.y2dd{bottom:692.257454pt;}
.ya7{bottom:692.485333pt;}
.y1b7{bottom:692.486518pt;}
.y7d{bottom:692.487703pt;}
.y23b{bottom:693.317569pt;}
.y26a{bottom:693.544477pt;}
.y43{bottom:699.592000pt;}
.y322{bottom:701.860706pt;}
.y29{bottom:703.393332pt;}
.y2dc{bottom:704.200046pt;}
.y2a8{bottom:704.201810pt;}
.y18b{bottom:704.352640pt;}
.y1fe{bottom:704.428477pt;}
.y13f{bottom:704.504498pt;}
.y269{bottom:705.562667pt;}
.y69{bottom:707.293396pt;}
.ye0{bottom:708.510667pt;}
.ya6{bottom:708.511333pt;}
.y1b6{bottom:708.511663pt;}
.ycd{bottom:708.512847pt;}
.y114{bottom:710.022976pt;}
.y23a{bottom:711.004237pt;}
.y321{bottom:713.879829pt;}
.y2db{bottom:716.219170pt;}
.y2a7{bottom:716.220000pt;}
.y18a{bottom:716.371480pt;}
.y1fd{bottom:716.447618pt;}
.y42{bottom:718.262667pt;}
.y68{bottom:718.631205pt;}
.y268{bottom:723.100236pt;}
.y1b5{bottom:724.536808pt;}
.y7c{bottom:724.537992pt;}
.y320{bottom:725.898952pt;}
.y113{bottom:726.048121pt;}
.y1fc{bottom:728.391143pt;}
.y239{bottom:728.768236pt;}
.y67{bottom:729.969948pt;}
.y189{bottom:734.060244pt;}
.y13e{bottom:736.479989pt;}
.y41{bottom:736.933333pt;}
.y31f{bottom:737.841545pt;}
.y1fb{bottom:740.409333pt;}
.ya5{bottom:740.485333pt;}
.y1b4{bottom:740.486020pt;}
.y7b{bottom:740.487205pt;}
.y267{bottom:740.786904pt;}
.y66{bottom:741.308690pt;}
.y112{bottom:741.997333pt;}
.y238{bottom:746.457569pt;}
.y31e{bottom:749.860668pt;}
.y28{bottom:750.034669pt;}
.y188{bottom:751.824007pt;}
.y13d{bottom:752.505227pt;}
.y65{bottom:752.571835pt;}
.y40{bottom:755.604000pt;}
.y1b3{bottom:756.511165pt;}
.y7a{bottom:756.512349pt;}
.y111{bottom:758.022655pt;}
.y1fa{bottom:758.400211pt;}
.y266{bottom:758.550903pt;}
.y1f9{bottom:760.895178pt;}
.y31d{bottom:761.878858pt;}
.y64{bottom:763.909645pt;}
.y237{bottom:764.144237pt;}
.y13c{bottom:768.454439pt;}
.y187{bottom:769.511771pt;}
.y1b2{bottom:772.536310pt;}
.y79{bottom:772.537494pt;}
.y31c{bottom:773.897981pt;}
.y110{bottom:774.047165pt;}
.y3f{bottom:774.274667pt;}
.y265{bottom:776.240236pt;}
.y1f8{bottom:777.751953pt;}
.y1f7{bottom:779.338932pt;}
.y186{bottom:781.530611pt;}
.y2{bottom:781.661334pt;}
.y236{bottom:781.909569pt;}
.y13b{bottom:784.479584pt;}
.y31b{bottom:785.841506pt;}
.y63{bottom:786.435934pt;}
.y1b1{bottom:788.486655pt;}
.y78{bottom:788.486706pt;}
.y10f{bottom:789.997510pt;}
.y264{bottom:793.928237pt;}
.y1f6{bottom:797.556211pt;}
.y31a{bottom:797.859696pt;}
.y185{bottom:799.219375pt;}
.y235{bottom:799.596237pt;}
.y62{bottom:799.739288pt;}
.y1f5{bottom:800.051178pt;}
.y13a{bottom:800.504729pt;}
.y3d{bottom:804.282667pt;}
.y1b0{bottom:804.510667pt;}
.y77{bottom:804.511851pt;}
.y10e{bottom:806.022655pt;}
.y27{bottom:806.625337pt;}
.y3e{bottom:809.574667pt;}
.y319{bottom:809.878820pt;}
.y263{bottom:811.692236pt;}
.y139{bottom:816.455074pt;}
.y184{bottom:816.907139pt;}
.y1f4{bottom:816.907953pt;}
.y234{bottom:817.361569pt;}
.y1f3{bottom:818.494932pt;}
.y1af{bottom:820.536000pt;}
.y76{bottom:820.536996pt;}
.y318{bottom:821.897943pt;}
.y10d{bottom:822.046667pt;}
.y10c{bottom:822.047721pt;}
.y262{bottom:829.379263pt;}
.y3c{bottom:830.288313pt;}
.y317{bottom:833.840535pt;}
.y26{bottom:834.625331pt;}
.y183{bottom:834.670903pt;}
.y233{bottom:835.049333pt;}
.y75{bottom:836.487342pt;}
.y1f2{bottom:836.712946pt;}
.y1f1{bottom:839.206913pt;}
.y316{bottom:845.859658pt;}
.y138{bottom:848.504231pt;}
.y261{bottom:849.108000pt;}
.y10b{bottom:849.335734pt;}
.y182{bottom:852.358667pt;}
.y74{bottom:852.511353pt;}
.y231{bottom:852.738541pt;}
.y1f0{bottom:856.063688pt;}
.y3b{bottom:856.971357pt;}
.y1ef{bottom:857.650667pt;}
.y315{bottom:857.877848pt;}
.y1{bottom:859.312000pt;}
.y25{bottom:862.625331pt;}
.y137{bottom:864.454576pt;}
.y260{bottom:866.797235pt;}
.y232{bottom:867.402568pt;}
.y73{bottom:868.536498pt;}
.y314{bottom:869.896971pt;}
.y181{bottom:870.123670pt;}
.y1ed{bottom:875.415141pt;}
.y136{bottom:880.479721pt;}
.y313{bottom:881.840497pt;}
.y3a{bottom:883.577333pt;}
.ya4{bottom:884.486844pt;}
.y1ee{bottom:890.079168pt;}
.y10a{bottom:890.079721pt;}
.y25f{bottom:892.120137pt;}
.y230{bottom:892.725470pt;}
.y312{bottom:893.858687pt;}
.y180{bottom:895.370639pt;}
.y72{bottom:900.511989pt;}
.y311{bottom:905.877810pt;}
.y135{bottom:907.766667pt;}
.y25e{bottom:909.429333pt;}
.y17f{bottom:910.034667pt;}
.y39{bottom:914.268000pt;}
.y71{bottom:916.536000pt;}
.y109{bottom:917.366667pt;}
.y310{bottom:917.896000pt;}
.y24{bottom:920.485335pt;}
.y60{bottom:989.178382pt;}
.y5f{bottom:1002.557333pt;}
.y23{bottom:1035.664002pt;}
.h47{height:20.431297pt;}
.h32{height:23.841686pt;}
.h15{height:25.244634pt;}
.h1c{height:28.461771pt;}
.h7{height:28.560000pt;}
.h42{height:28.745845pt;}
.h3c{height:29.451353pt;}
.h26{height:29.455158pt;}
.h37{height:29.999600pt;}
.h1b{height:30.500462pt;}
.h1a{height:30.649791pt;}
.h43{height:32.186288pt;}
.h44{height:32.186682pt;}
.hb{height:32.645833pt;}
.h34{height:32.679564pt;}
.h40{height:32.833285pt;}
.h46{height:32.837177pt;}
.h3e{height:32.838615pt;}
.h3d{height:32.838619pt;}
.h25{height:32.839562pt;}
.h45{height:32.842510pt;}
.h41{height:32.843948pt;}
.h1f{height:32.931360pt;}
.h35{height:33.323552pt;}
.h39{height:33.627552pt;}
.h20{height:34.858231pt;}
.h2e{height:34.996922pt;}
.h30{height:35.132584pt;}
.h2f{height:35.132920pt;}
.h2c{height:35.758024pt;}
.h29{height:35.759553pt;}
.h23{height:35.761003pt;}
.h28{height:35.762027pt;}
.h22{height:35.762608pt;}
.h27{height:35.763311pt;}
.h2a{height:35.764887pt;}
.h19{height:35.767579pt;}
.hf{height:36.726562pt;}
.h3f{height:36.960000pt;}
.h24{height:37.036898pt;}
.h1d{height:37.056000pt;}
.h3b{height:37.070941pt;}
.h14{height:37.872000pt;}
.h36{height:39.187477pt;}
.h18{height:39.216000pt;}
.h38{height:39.486445pt;}
.h3a{height:39.489385pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h17{height:42.080000pt;}
.h3{height:42.840000pt;}
.h16{height:43.573333pt;}
.h33{height:45.187735pt;}
.h2b{height:46.802344pt;}
.h21{height:46.803964pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h12{height:52.287564pt;}
.ha{height:61.210938pt;}
.h2d{height:66.607013pt;}
.h31{height:66.911213pt;}
.h5{height:69.360000pt;}
.h13{height:71.535579pt;}
.hc{height:73.453125pt;}
.h4{height:105.826671pt;}
.h1e{height:156.698667pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:313.625333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w5{width:812.598667pt;}
.w6{width:812.666667pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x11{left:33.236667pt;}
.x13{left:65.763733pt;}
.xe{left:66.670800pt;}
.x56{left:74.683333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:129.466667pt;}
.x12{left:143.864067pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x9{left:207.185331pt;}
.xa{left:240.226667pt;}
.x52{left:241.360831pt;}
.x30{left:244.006683pt;}
.x15{left:245.367948pt;}
.x14{left:246.652000pt;}
.x4d{left:248.768000pt;}
.xd{left:251.337733pt;}
.x53{left:253.681412pt;}
.x54{left:258.669936pt;}
.x8{left:260.969328pt;}
.x22{left:273.259542pt;}
.x1d{left:280.820731pt;}
.x1e{left:284.900000pt;}
.x19{left:307.503298pt;}
.x38{left:308.560986pt;}
.x25{left:310.600797pt;}
.x18{left:315.968065pt;}
.x24{left:322.090644pt;}
.x23{left:327.835567pt;}
.x17{left:336.906667pt;}
.x2c{left:346.582318pt;}
.x10{left:352.176000pt;}
.x44{left:353.989859pt;}
.x45{left:355.954833pt;}
.x47{left:358.449799pt;}
.x51{left:362.608000pt;}
.x1b{left:365.102097pt;}
.x1a{left:373.567997pt;}
.x2f{left:394.656644pt;}
.x31{left:395.941977pt;}
.xb{left:399.722667pt;}
.x3{left:404.408000pt;}
.x1c{left:416.580000pt;}
.x4f{left:419.298660pt;}
.x32{left:435.172982pt;}
.x3a{left:443.562645pt;}
.x33{left:446.510715pt;}
.x28{left:458.378910pt;}
.x27{left:459.286699pt;}
.x39{left:461.025056pt;}
.x49{left:462.159417pt;}
.x4b{left:464.125390pt;}
.xc{left:497.537333pt;}
.x50{left:499.952280pt;}
.x4e{left:502.673613pt;}
.x4c{left:511.293761pt;}
.x46{left:512.351747pt;}
.x40{left:514.014725pt;}
.x55{left:519.303289pt;}
.x3c{left:522.932445pt;}
.x3b{left:525.124286pt;}
.x41{left:539.488385pt;}
.x4a{left:541.529358pt;}
.x48{left:543.495332pt;}
.x29{left:560.274578pt;}
.x34{left:561.634494pt;}
.x35{left:573.049293pt;}
.x16{left:582.651169pt;}
.x42{left:590.663703pt;}
.x3e{left:602.302244pt;}
.x3d{left:604.494085pt;}
.x2d{left:612.732439pt;}
.x21{left:640.626353pt;}
.x2e{left:645.161112pt;}
.x2a{left:658.692087pt;}
.x2b{left:660.885061pt;}
.x43{left:670.033645pt;}
.x3f{left:681.746843pt;}
.x26{left:684.541279pt;}
.x36{left:688.247871pt;}
.xf{left:690.066667pt;}
.x1f{left:698.758667pt;}
.x37{left:699.661537pt;}
.x20{left:707.754667pt;}
}




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