
    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_0950b3df257d1bd61fde0ce5.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_c0316a16e1ce961d726df770.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948730;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_784d22f7fe6323448cb8e550.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_d9c081b359631d048ef010af.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.723633;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_074d16f4c10067de28bead52.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959473;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_8e24b87a093cc9428754212a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933105;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_46e4eedd03a3b428d42a45bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.943000;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_d9ead21c3012a30ab0104272.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.954000;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_b39d2ed8dad4f97bc8d41145.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973000;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_0cc94e11e20f573d45124cb8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.068000;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_be549090994b0b3d15d0ece8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973000;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_8f704ed5a6c25d865853351d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1c1ad6ffcd2ba32f84cf24e5.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a12eab7ee81407b4eed5ee6e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.908203;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_af2680c139a38e4d1cf2a376.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.926758;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_8dd004eb2d61e6f8ebc1914c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.704590;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_9d5268f1a71202a6b3df46ff.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255883,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.262907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262907,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.262913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262913,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);}
.v5{vertical-align:-19.200000px;}
.v3{vertical-align:-17.280600px;}
.v6{vertical-align:-15.360000px;}
.v4{vertical-align:-9.038400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.200600px;}
.v7{vertical-align:30.600000px;}
.v1{vertical-align:87.826800px;}
.ls50{letter-spacing:-3.660000px;}
.ls69{letter-spacing:-1.560000px;}
.ls5c{letter-spacing:-1.442496px;}
.ls6d{letter-spacing:-1.320000px;}
.ls5d{letter-spacing:-1.282176px;}
.ls3d{letter-spacing:-1.200000px;}
.ls52{letter-spacing:-1.020000px;}
.ls53{letter-spacing:-0.969000px;}
.ls6b{letter-spacing:-0.960000px;}
.ls62{letter-spacing:-0.900000px;}
.ls49{letter-spacing:-0.840000px;}
.ls67{letter-spacing:-0.780000px;}
.ls61{letter-spacing:-0.720000px;}
.ls31{letter-spacing:-0.660000px;}
.ls3e{letter-spacing:-0.600000px;}
.ls42{letter-spacing:-0.540000px;}
.ls3c{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.420000px;}
.ls3a{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.288000px;}
.ls43{letter-spacing:-0.240000px;}
.ls27{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.171795px;}
.ls51{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.120000px;}
.ls39{letter-spacing:-0.108000px;}
.ls28{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.031200px;}
.ls33{letter-spacing:0.048000px;}
.ls29{letter-spacing:0.060000px;}
.ls44{letter-spacing:0.096000px;}
.ls4d{letter-spacing:0.102000px;}
.ls5{letter-spacing:0.108000px;}
.ls30{letter-spacing:0.120000px;}
.ls58{letter-spacing:0.124800px;}
.ls45{letter-spacing:0.144000px;}
.ls4a{letter-spacing:0.156000px;}
.ls1e{letter-spacing:0.180000px;}
.ls40{letter-spacing:0.192000px;}
.ls1{letter-spacing:0.204300px;}
.ls4{letter-spacing:0.216000px;}
.ls48{letter-spacing:0.218400px;}
.ls54{letter-spacing:0.223800px;}
.ls24{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.336000px;}
.ls56{letter-spacing:0.357000px;}
.ls23{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.378000px;}
.ls4c{letter-spacing:0.384000px;}
.ls68{letter-spacing:0.390000px;}
.ls32{letter-spacing:0.395400px;}
.ls5e{letter-spacing:0.408000px;}
.ls21{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.432000px;}
.ls4e{letter-spacing:0.459000px;}
.lsf{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.486000px;}
.ls66{letter-spacing:0.507000px;}
.ls55{letter-spacing:0.528000px;}
.ls1c{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.570000px;}
.ls17{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.594000px;}
.ls26{letter-spacing:0.600000px;}
.ls5f{letter-spacing:0.612000px;}
.ls59{letter-spacing:0.624000px;}
.ls1b{letter-spacing:0.648000px;}
.ls20{letter-spacing:0.660000px;}
.ls60{letter-spacing:0.663000px;}
.ls5a{letter-spacing:0.672000px;}
.lsa{letter-spacing:0.720000px;}
.ls5b{letter-spacing:0.721248px;}
.ls10{letter-spacing:0.768000px;}
.ls34{letter-spacing:0.780000px;}
.ls1f{letter-spacing:0.840000px;}
.ls2d{letter-spacing:0.900000px;}
.ls11{letter-spacing:0.912000px;}
.ls14{letter-spacing:0.960000px;}
.ls2a{letter-spacing:1.020000px;}
.ls3f{letter-spacing:1.029000px;}
.ls36{letter-spacing:1.080000px;}
.ls2f{letter-spacing:1.140000px;}
.ls15{letter-spacing:1.152000px;}
.ls2e{letter-spacing:1.200000px;}
.ls41{letter-spacing:1.260000px;}
.ls2b{letter-spacing:1.320000px;}
.ls18{letter-spacing:1.344000px;}
.ls9{letter-spacing:1.392000px;}
.lsc{letter-spacing:1.440000px;}
.ls64{letter-spacing:1.500000px;}
.ls65{letter-spacing:1.560000px;}
.ls4b{letter-spacing:1.675800px;}
.ls16{letter-spacing:1.680000px;}
.ls4f{letter-spacing:1.800000px;}
.ls13{letter-spacing:1.872000px;}
.ls46{letter-spacing:1.920000px;}
.ls12{letter-spacing:1.968000px;}
.ls37{letter-spacing:1.980000px;}
.ls6a{letter-spacing:2.040000px;}
.ls57{letter-spacing:2.100000px;}
.ls63{letter-spacing:2.220000px;}
.ls35{letter-spacing:2.280000px;}
.ls47{letter-spacing:2.460000px;}
.ls6c{letter-spacing:2.700000px;}
.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;}
}
.ws135{word-spacing:-15.720000px;}
.ws1{word-spacing:-15.012000px;}
.ws3{word-spacing:-14.736000px;}
.ws14a{word-spacing:-14.520000px;}
.wscf{word-spacing:-14.400000px;}
.wsf9{word-spacing:-14.340000px;}
.wsa{word-spacing:-14.280000px;}
.ws149{word-spacing:-14.160000px;}
.ws6{word-spacing:-14.112000px;}
.ws14b{word-spacing:-14.040000px;}
.ws5{word-spacing:-13.824000px;}
.ws7{word-spacing:-13.680000px;}
.ws84{word-spacing:-13.620000px;}
.ws12f{word-spacing:-13.509000px;}
.wsaf{word-spacing:-13.500000px;}
.wsce{word-spacing:-13.260000px;}
.ws4{word-spacing:-13.056000px;}
.ws3c{word-spacing:-12.960000px;}
.ws137{word-spacing:-12.900000px;}
.ws14c{word-spacing:-12.600000px;}
.ws156{word-spacing:-12.420000px;}
.ws103{word-spacing:-11.577000px;}
.ws109{word-spacing:-10.710000px;}
.ws102{word-spacing:-10.608000px;}
.ws136{word-spacing:-9.360000px;}
.ws8{word-spacing:-8.853000px;}
.ws118{word-spacing:-8.196000px;}
.ws9{word-spacing:-8.037900px;}
.wse{word-spacing:-8.016000px;}
.ws10a{word-spacing:-8.007450px;}
.ws117{word-spacing:-6.753504px;}
.ws119{word-spacing:-6.365088px;}
.ws23{word-spacing:-5.184000px;}
.ws22{word-spacing:-4.140000px;}
.wsd9{word-spacing:-2.460000px;}
.ws12b{word-spacing:-1.835904px;}
.ws148{word-spacing:-1.140000px;}
.ws129{word-spacing:-0.721248px;}
.ws13f{word-spacing:-0.600000px;}
.ws28{word-spacing:-0.594000px;}
.ws33{word-spacing:-0.570000px;}
.ws154{word-spacing:-0.540000px;}
.ws141{word-spacing:-0.420000px;}
.ws13b{word-spacing:-0.300000px;}
.ws14{word-spacing:-0.288000px;}
.wseb{word-spacing:-0.156000px;}
.ws11f{word-spacing:-0.124800px;}
.ws98{word-spacing:-0.031200px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.171795px;}
.ws158{word-spacing:0.240000px;}
.ws12d{word-spacing:1.282176px;}
.ws21{word-spacing:1.344000px;}
.ws12a{word-spacing:1.442496px;}
.ws62{word-spacing:2.040000px;}
.ws1d{word-spacing:2.112000px;}
.ws9c{word-spacing:2.160000px;}
.ws12c{word-spacing:2.193000px;}
.ws20{word-spacing:2.208000px;}
.ws3d{word-spacing:2.280000px;}
.ws114{word-spacing:2.295000px;}
.ws31{word-spacing:2.322000px;}
.wsee{word-spacing:2.400000px;}
.ws27{word-spacing:2.430000px;}
.ws25{word-spacing:2.484000px;}
.wsc9{word-spacing:2.496000px;}
.ws94{word-spacing:2.538000px;}
.ws14d{word-spacing:2.580000px;}
.ws15{word-spacing:2.688000px;}
.ws24{word-spacing:2.700000px;}
.wsa2{word-spacing:2.760000px;}
.ws132{word-spacing:2.820000px;}
.ws45{word-spacing:2.880000px;}
.wsef{word-spacing:2.928000px;}
.ws7e{word-spacing:2.940000px;}
.ws80{word-spacing:3.000000px;}
.wsb{word-spacing:3.024000px;}
.ws48{word-spacing:3.060000px;}
.ws8c{word-spacing:3.120000px;}
.ws8b{word-spacing:3.180000px;}
.ws77{word-spacing:3.240000px;}
.wscd{word-spacing:3.264000px;}
.ws44{word-spacing:3.300000px;}
.wsff{word-spacing:3.360000px;}
.ws121{word-spacing:3.408000px;}
.ws38{word-spacing:3.420000px;}
.ws43{word-spacing:3.480000px;}
.wsdb{word-spacing:3.540000px;}
.wse7{word-spacing:3.600000px;}
.ws6d{word-spacing:3.660000px;}
.ws142{word-spacing:3.720000px;}
.ws92{word-spacing:3.726000px;}
.wsf7{word-spacing:3.780000px;}
.ws5b{word-spacing:3.840000px;}
.ws85{word-spacing:3.900000px;}
.wsed{word-spacing:3.936000px;}
.wsb3{word-spacing:3.960000px;}
.ws10c{word-spacing:4.140000px;}
.ws73{word-spacing:4.200000px;}
.ws82{word-spacing:4.260000px;}
.wsc7{word-spacing:4.272000px;}
.wsc8{word-spacing:4.320000px;}
.ws99{word-spacing:4.368000px;}
.ws70{word-spacing:4.380000px;}
.ws112{word-spacing:4.437000px;}
.wsb4{word-spacing:4.440000px;}
.ws110{word-spacing:4.464000px;}
.wsb8{word-spacing:4.500000px;}
.wsfd{word-spacing:4.560000px;}
.ws123{word-spacing:4.608000px;}
.ws96{word-spacing:4.620000px;}
.ws113{word-spacing:4.641000px;}
.wsec{word-spacing:4.656000px;}
.ws34{word-spacing:4.680000px;}
.wsa3{word-spacing:4.740000px;}
.ws7d{word-spacing:4.800000px;}
.ws11e{word-spacing:4.860000px;}
.ws2c{word-spacing:4.914000px;}
.ws6b{word-spacing:4.920000px;}
.ws120{word-spacing:4.944000px;}
.ws145{word-spacing:4.980000px;}
.wsde{word-spacing:5.040000px;}
.ws124{word-spacing:5.088000px;}
.ws89{word-spacing:5.100000px;}
.ws151{word-spacing:5.160000px;}
.ws30{word-spacing:5.184000px;}
.ws47{word-spacing:5.220000px;}
.wscc{word-spacing:5.232000px;}
.wsdd{word-spacing:5.280000px;}
.wsc6{word-spacing:5.340000px;}
.ws3e{word-spacing:5.400000px;}
.ws35{word-spacing:5.460000px;}
.ws69{word-spacing:5.520000px;}
.wsaa{word-spacing:5.580000px;}
.ws26{word-spacing:5.616000px;}
.wsfe{word-spacing:5.640000px;}
.wsb5{word-spacing:5.700000px;}
.ws40{word-spacing:5.760000px;}
.ws2d{word-spacing:5.778000px;}
.ws97{word-spacing:5.820000px;}
.ws12{word-spacing:5.856000px;}
.ws12e{word-spacing:5.865000px;}
.wsfc{word-spacing:5.880000px;}
.ws5a{word-spacing:5.940000px;}
.ws7b{word-spacing:6.000000px;}
.ws2a{word-spacing:6.048000px;}
.wsb1{word-spacing:6.060000px;}
.wsd4{word-spacing:6.120000px;}
.wsf{word-spacing:6.144000px;}
.wsbf{word-spacing:6.180000px;}
.ws13{word-spacing:6.240000px;}
.ws95{word-spacing:6.300000px;}
.wsca{word-spacing:6.336000px;}
.wse9{word-spacing:6.360000px;}
.ws8d{word-spacing:6.372000px;}
.ws127{word-spacing:6.384000px;}
.ws5f{word-spacing:6.420000px;}
.ws57{word-spacing:6.480000px;}
.ws93{word-spacing:6.534000px;}
.ws4c{word-spacing:6.540000px;}
.wsf0{word-spacing:6.576000px;}
.wsa4{word-spacing:6.600000px;}
.ws111{word-spacing:6.624000px;}
.ws2b{word-spacing:6.642000px;}
.wsa1{word-spacing:6.660000px;}
.ws9b{word-spacing:6.672000px;}
.ws6a{word-spacing:6.720000px;}
.ws125{word-spacing:6.768000px;}
.ws6e{word-spacing:6.780000px;}
.ws115{word-spacing:6.783000px;}
.ws11{word-spacing:6.816000px;}
.ws4f{word-spacing:6.840000px;}
.ws59{word-spacing:6.900000px;}
.ws5c{word-spacing:6.960000px;}
.ws2f{word-spacing:7.020000px;}
.ws91{word-spacing:7.074000px;}
.ws5d{word-spacing:7.080000px;}
.ws116{word-spacing:7.089000px;}
.ws39{word-spacing:7.140000px;}
.wscb{word-spacing:7.152000px;}
.ws76{word-spacing:7.200000px;}
.wsac{word-spacing:7.260000px;}
.ws128{word-spacing:7.296000px;}
.ws7a{word-spacing:7.320000px;}
.ws65{word-spacing:7.380000px;}
.ws4a{word-spacing:7.440000px;}
.wsdc{word-spacing:7.500000px;}
.wsb9{word-spacing:7.560000px;}
.ws74{word-spacing:7.620000px;}
.ws67{word-spacing:7.680000px;}
.ws50{word-spacing:7.740000px;}
.ws8f{word-spacing:7.776000px;}
.ws49{word-spacing:7.800000px;}
.ws6f{word-spacing:7.860000px;}
.ws8e{word-spacing:7.884000px;}
.ws81{word-spacing:7.920000px;}
.wsd2{word-spacing:7.980000px;}
.ws41{word-spacing:8.040000px;}
.ws2e{word-spacing:8.046000px;}
.wsc0{word-spacing:8.100000px;}
.ws7c{word-spacing:8.160000px;}
.wsad{word-spacing:8.220000px;}
.wsd3{word-spacing:8.280000px;}
.ws37{word-spacing:8.340000px;}
.ws1f{word-spacing:8.400000px;}
.ws1e{word-spacing:8.448000px;}
.wsea{word-spacing:8.460000px;}
.ws122{word-spacing:8.496000px;}
.ws133{word-spacing:8.517000px;}
.ws6c{word-spacing:8.520000px;}
.wsa6{word-spacing:8.580000px;}
.ws29{word-spacing:8.640000px;}
.wse5{word-spacing:8.700000px;}
.wsbc{word-spacing:8.760000px;}
.wsb6{word-spacing:8.820000px;}
.ws134{word-spacing:8.874000px;}
.wsba{word-spacing:8.880000px;}
.wse0{word-spacing:8.940000px;}
.ws90{word-spacing:8.964000px;}
.ws126{word-spacing:8.976000px;}
.ws56{word-spacing:9.000000px;}
.wsd1{word-spacing:9.060000px;}
.ws61{word-spacing:9.120000px;}
.wsf1{word-spacing:9.180000px;}
.ws9a{word-spacing:9.216000px;}
.ws5e{word-spacing:9.240000px;}
.wsd0{word-spacing:9.300000px;}
.ws87{word-spacing:9.360000px;}
.wsf5{word-spacing:9.420000px;}
.ws3f{word-spacing:9.480000px;}
.wse8{word-spacing:9.540000px;}
.wsc2{word-spacing:9.600000px;}
.wsc5{word-spacing:9.660000px;}
.ws83{word-spacing:9.720000px;}
.ws78{word-spacing:9.780000px;}
.wsc1{word-spacing:9.840000px;}
.wsa9{word-spacing:9.900000px;}
.wsa5{word-spacing:9.960000px;}
.ws1c{word-spacing:9.984000px;}
.ws10e{word-spacing:10.020000px;}
.wsd{word-spacing:10.080000px;}
.ws53{word-spacing:10.140000px;}
.ws3a{word-spacing:10.200000px;}
.wse3{word-spacing:10.260000px;}
.ws131{word-spacing:10.320000px;}
.wsbb{word-spacing:10.380000px;}
.ws88{word-spacing:10.440000px;}
.ws9d{word-spacing:10.500000px;}
.wsb7{word-spacing:10.560000px;}
.ws11a{word-spacing:10.620000px;}
.ws140{word-spacing:10.680000px;}
.wsbd{word-spacing:10.740000px;}
.wse6{word-spacing:10.800000px;}
.ws36{word-spacing:10.860000px;}
.ws10d{word-spacing:10.920000px;}
.ws42{word-spacing:10.980000px;}
.ws51{word-spacing:11.040000px;}
.ws4b{word-spacing:11.100000px;}
.ws4e{word-spacing:11.160000px;}
.ws7f{word-spacing:11.220000px;}
.ws100{word-spacing:11.280000px;}
.ws71{word-spacing:11.400000px;}
.wsa7{word-spacing:11.460000px;}
.ws60{word-spacing:11.520000px;}
.wsda{word-spacing:11.580000px;}
.ws63{word-spacing:11.700000px;}
.wsfa{word-spacing:11.760000px;}
.wsc3{word-spacing:11.820000px;}
.ws46{word-spacing:11.880000px;}
.ws146{word-spacing:11.940000px;}
.ws16{word-spacing:12.000000px;}
.ws139{word-spacing:12.060000px;}
.ws79{word-spacing:12.120000px;}
.wsab{word-spacing:12.180000px;}
.ws58{word-spacing:12.240000px;}
.ws4d{word-spacing:12.300000px;}
.ws55{word-spacing:12.360000px;}
.ws10f{word-spacing:12.420000px;}
.ws155{word-spacing:12.480000px;}
.ws68{word-spacing:12.540000px;}
.ws9f{word-spacing:12.600000px;}
.ws138{word-spacing:12.660000px;}
.wsa0{word-spacing:12.720000px;}
.ws11d{word-spacing:12.780000px;}
.wsae{word-spacing:12.840000px;}
.ws52{word-spacing:12.900000px;}
.wsfb{word-spacing:12.960000px;}
.ws75{word-spacing:13.020000px;}
.ws72{word-spacing:13.080000px;}
.ws130{word-spacing:13.200000px;}
.wsf2{word-spacing:13.260000px;}
.wsb0{word-spacing:13.320000px;}
.wsf3{word-spacing:13.380000px;}
.wse2{word-spacing:13.500000px;}
.ws8a{word-spacing:13.560000px;}
.ws14f{word-spacing:13.620000px;}
.ws14e{word-spacing:13.680000px;}
.wse4{word-spacing:13.740000px;}
.ws9e{word-spacing:13.800000px;}
.wsf6{word-spacing:13.920000px;}
.wsdf{word-spacing:14.040000px;}
.wsd7{word-spacing:14.100000px;}
.ws19{word-spacing:14.112000px;}
.wsd8{word-spacing:14.220000px;}
.ws66{word-spacing:14.280000px;}
.wsd5{word-spacing:14.340000px;}
.ws64{word-spacing:14.400000px;}
.ws86{word-spacing:14.640000px;}
.ws11b{word-spacing:14.700000px;}
.wsa8{word-spacing:14.820000px;}
.wsc4{word-spacing:14.880000px;}
.ws1a{word-spacing:14.976000px;}
.wse1{word-spacing:15.000000px;}
.ws13a{word-spacing:15.300000px;}
.wsb2{word-spacing:15.600000px;}
.wsf8{word-spacing:15.720000px;}
.ws143{word-spacing:15.900000px;}
.ws153{word-spacing:15.960000px;}
.ws54{word-spacing:16.140000px;}
.ws18{word-spacing:16.320000px;}
.ws144{word-spacing:16.440000px;}
.ws1b{word-spacing:16.656000px;}
.ws150{word-spacing:16.800000px;}
.ws10{word-spacing:16.944000px;}
.ws17{word-spacing:17.184000px;}
.wsbe{word-spacing:17.520000px;}
.ws13e{word-spacing:17.880000px;}
.ws13d{word-spacing:18.000000px;}
.ws147{word-spacing:18.240000px;}
.ws157{word-spacing:18.360000px;}
.wsf4{word-spacing:19.260000px;}
.ws101{word-spacing:19.500000px;}
.ws10b{word-spacing:20.820000px;}
.wsd6{word-spacing:21.780000px;}
.ws152{word-spacing:23.100000px;}
.ws11c{word-spacing:23.760000px;}
.ws13c{word-spacing:24.960000px;}
.ws2{word-spacing:25.638706px;}
.ws32{word-spacing:26.568000px;}
.ws105{word-spacing:54.213000px;}
.ws106{word-spacing:66.453000px;}
.ws107{word-spacing:72.267000px;}
.ws108{word-spacing:84.507000px;}
.ws104{word-spacing:803.454000px;}
.ws3b{word-spacing:2053.684200px;}
._5{margin-left:-9.792000px;}
._15{margin-left:-8.076000px;}
._c{margin-left:-7.024800px;}
._d{margin-left:-5.526000px;}
._1{margin-left:-4.425439px;}
._0{margin-left:-2.991600px;}
._2{margin-left:-1.296000px;}
._3{width:1.464000px;}
._4{width:2.654400px;}
._e{width:3.978000px;}
._16{width:7.080000px;}
._6{width:9.558000px;}
._7{width:23.862000px;}
._14{width:42.882000px;}
._a{width:44.700000px;}
._b{width:49.260000px;}
._9{width:51.420000px;}
._8{width:52.560000px;}
._13{width:140.787000px;}
._12{width:282.765000px;}
._11{width:577.668000px;}
._10{width:674.445000px;}
._f{width:711.882439px;}
.fc3{color:transparent;}
.fc2{color:rgb(4,6,6);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:22.896000px;}
.fs15{font-size:25.056000px;}
.fs11{font-size:27.552600px;}
.fs13{font-size:28.620000px;}
.fse{font-size:31.200000px;}
.fs16{font-size:31.320600px;}
.fs10{font-size:32.029800px;}
.fs12{font-size:32.784000px;}
.fs7{font-size:34.359000px;}
.fsb{font-size:35.100000px;}
.fsa{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsf{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fsd{font-size:55.200000px;}
.fsc{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:148.418400px;}
.y0{bottom:0.000000px;}
.y188{bottom:3.788700px;}
.y251{bottom:15.660555px;}
.y249{bottom:17.618700px;}
.y1e6{bottom:20.391750px;}
.y1e9{bottom:21.465000px;}
.y1ee{bottom:22.180050px;}
.y6{bottom:35.925007px;}
.y250{bottom:39.934020px;}
.y24a{bottom:40.325850px;}
.y1e7{bottom:50.800350px;}
.y1ea{bottom:51.873450px;}
.y1ed{bottom:52.231050px;}
.y27{bottom:58.830300px;}
.y24b{bottom:63.033150px;}
.y24f{bottom:64.207485px;}
.y5{bottom:66.525004px;}
.y24{bottom:74.914350px;}
.y1e8{bottom:81.566550px;}
.y1eb{bottom:82.282050px;}
.y24c{bottom:85.740300px;}
.y24e{bottom:88.480950px;}
.y1e4{bottom:93.539250px;}
.y104{bottom:93.543300px;}
.y164{bottom:93.543450px;}
.y18b{bottom:93.544950px;}
.y215{bottom:93.711600px;}
.y247{bottom:94.451850px;}
.y4{bottom:97.125005px;}
.y103{bottom:107.943300px;}
.y163{bottom:107.943450px;}
.y136{bottom:108.575550px;}
.yd3{bottom:108.580800px;}
.y9f{bottom:109.120800px;}
.y147{bottom:110.375550px;}
.y214{bottom:111.711600px;}
.y183{bottom:112.045500px;}
.y246{bottom:112.451850px;}
.y102{bottom:122.343300px;}
.y162{bottom:122.343450px;}
.y1c9{bottom:124.119750px;}
.y1e2{bottom:124.529550px;}
.y135{bottom:126.575550px;}
.yd2{bottom:126.580800px;}
.y9e{bottom:127.120800px;}
.y146{bottom:128.375550px;}
.y213{bottom:129.711600px;}
.y1c8{bottom:134.364750px;}
.y1e1{bottom:134.774550px;}
.y142{bottom:136.743300px;}
.y161{bottom:136.743450px;}
.y187{bottom:137.524500px;}
.y23{bottom:139.264499px;}
.y101{bottom:140.583300px;}
.y134{bottom:144.575550px;}
.yd1{bottom:144.580800px;}
.y1c7{bottom:144.609750px;}
.y9d{bottom:145.120800px;}
.y1e0{bottom:145.429350px;}
.y6b{bottom:145.525950px;}
.y145{bottom:146.375550px;}
.y245{bottom:147.459750px;}
.y212{bottom:147.711600px;}
.y141{bottom:151.143300px;}
.y160{bottom:151.143450px;}
.y1c6{bottom:155.264550px;}
.y1df{bottom:155.674350px;}
.y133{bottom:162.575550px;}
.yd0{bottom:162.580800px;}
.y9c{bottom:163.120800px;}
.y6a{bottom:163.525950px;}
.y259{bottom:164.375550px;}
.y1c5{bottom:165.509550px;}
.y140{bottom:165.543300px;}
.y1b0{bottom:165.543450px;}
.y211{bottom:165.711600px;}
.y1de{bottom:165.919350px;}
.y15f{bottom:169.383450px;}
.y1c4{bottom:176.164350px;}
.y1dd{bottom:176.574150px;}
.y100{bottom:178.775550px;}
.y13f{bottom:179.943300px;}
.y1af{bottom:179.943450px;}
.y132{bottom:180.575550px;}
.ycf{bottom:180.580800px;}
.y9b{bottom:181.120800px;}
.y69{bottom:181.525950px;}
.y144{bottom:182.375400px;}
.y258{bottom:182.375550px;}
.y210{bottom:183.711600px;}
.y1c3{bottom:186.409350px;}
.y1dc{bottom:186.819150px;}
.y13e{bottom:194.343300px;}
.y1ae{bottom:194.343450px;}
.y1c2{bottom:196.654350px;}
.yff{bottom:196.775550px;}
.y1a{bottom:196.933500px;}
.y1db{bottom:197.064150px;}
.y148{bottom:198.183300px;}
.y131{bottom:198.575550px;}
.y244{bottom:198.576600px;}
.yce{bottom:198.580800px;}
.y9a{bottom:199.120800px;}
.y143{bottom:199.475400px;}
.y68{bottom:199.525950px;}
.y257{bottom:200.375550px;}
.y20f{bottom:201.711600px;}
.y1c1{bottom:207.309150px;}
.y1da{bottom:207.718950px;}
.y13d{bottom:208.743300px;}
.y1ad{bottom:208.743450px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yfe{bottom:214.775550px;}
.y130{bottom:216.575550px;}
.y243{bottom:216.576600px;}
.ycd{bottom:216.580800px;}
.y99{bottom:217.120800px;}
.y67{bottom:217.525950px;}
.y1c0{bottom:217.554150px;}
.y1d9{bottom:217.963950px;}
.y15e{bottom:218.375550px;}
.y20e{bottom:219.711600px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y13c{bottom:223.143300px;}
.y1ac{bottom:223.143450px;}
.y1bf{bottom:227.799150px;}
.y1d8{bottom:228.618750px;}
.y186{bottom:230.748411px;}
.yfd{bottom:232.775550px;}
.y12f{bottom:234.575550px;}
.y242{bottom:234.576600px;}
.ycc{bottom:234.580800px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y98{bottom:235.120800px;}
.y66{bottom:235.525950px;}
.y15d{bottom:236.375550px;}
.y13b{bottom:237.543300px;}
.y1ab{bottom:237.543450px;}
.y20d{bottom:237.711600px;}
.y1be{bottom:238.453950px;}
.y1d7{bottom:238.863750px;}
.y185{bottom:239.356420px;}
.y184{bottom:248.524950px;}
.y1bd{bottom:248.698950px;}
.y1d6{bottom:249.108750px;}
.yfc{bottom:250.775550px;}
.y13a{bottom:251.943300px;}
.y1aa{bottom:251.943450px;}
.y12e{bottom:252.575550px;}
.y241{bottom:252.576600px;}
.ycb{bottom:252.580800px;}
.y97{bottom:253.120800px;}
.y65{bottom:253.525950px;}
.y15c{bottom:254.375550px;}
.y20c{bottom:255.711600px;}
.y1bc{bottom:258.943950px;}
.y1d5{bottom:259.763550px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y139{bottom:266.343300px;}
.y1a9{bottom:266.343450px;}
.yfb{bottom:268.775550px;}
.y1bb{bottom:269.598750px;}
.y1d4{bottom:270.008550px;}
.y12d{bottom:270.575550px;}
.y240{bottom:270.576600px;}
.yca{bottom:270.580800px;}
.y96{bottom:271.120800px;}
.y64{bottom:271.525950px;}
.y15b{bottom:272.375550px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y20b{bottom:273.711600px;}
.y1ba{bottom:279.843750px;}
.y1d3{bottom:280.253550px;}
.y138{bottom:280.743300px;}
.y1a8{bottom:280.743450px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yfa{bottom:286.775550px;}
.y12c{bottom:288.575550px;}
.y23f{bottom:288.576600px;}
.yc9{bottom:288.580800px;}
.y95{bottom:289.120800px;}
.y63{bottom:289.525950px;}
.y15a{bottom:290.375550px;}
.y1b9{bottom:290.498550px;}
.y1d2{bottom:290.908350px;}
.y20a{bottom:291.711600px;}
.y137{bottom:298.983300px;}
.y1a7{bottom:298.983450px;}
.y1b8{bottom:300.743550px;}
.y1d1{bottom:301.153350px;}
.yf9{bottom:304.775550px;}
.y12b{bottom:306.575550px;}
.y23e{bottom:306.576600px;}
.yc8{bottom:306.580800px;}
.y94{bottom:307.120800px;}
.y62{bottom:307.525950px;}
.y159{bottom:308.375550px;}
.y209{bottom:309.711600px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y1b7{bottom:310.988550px;}
.y1d0{bottom:311.398350px;}
.y1b6{bottom:321.643350px;}
.y1cf{bottom:322.053150px;}
.yf8{bottom:322.775550px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y12a{bottom:324.575550px;}
.y23d{bottom:324.576600px;}
.yc7{bottom:324.580800px;}
.y93{bottom:325.120800px;}
.y61{bottom:325.525950px;}
.y158{bottom:326.375550px;}
.y208{bottom:327.711600px;}
.y1b5{bottom:331.888350px;}
.y1ce{bottom:332.298150px;}
.y1a6{bottom:338.647950px;}
.yf7{bottom:340.775550px;}
.y1b4{bottom:342.133350px;}
.y1cd{bottom:342.543150px;}
.y129{bottom:342.575550px;}
.y23c{bottom:342.576600px;}
.yc6{bottom:342.580800px;}
.y92{bottom:343.120800px;}
.y157{bottom:344.375550px;}
.y207{bottom:345.711600px;}
.y11{bottom:348.133500px;}
.y1b3{bottom:352.788150px;}
.y1cc{bottom:353.197950px;}
.y1a5{bottom:356.645550px;}
.yf6{bottom:358.775550px;}
.y128{bottom:360.575550px;}
.y23b{bottom:360.576600px;}
.yc5{bottom:360.580800px;}
.y91{bottom:361.120800px;}
.y60{bottom:361.525950px;}
.y156{bottom:362.375550px;}
.y1b2{bottom:363.033150px;}
.y1cb{bottom:363.442950px;}
.y206{bottom:363.711600px;}
.y1b1{bottom:373.278150px;}
.y1ca{bottom:374.097750px;}
.y1a4{bottom:374.645550px;}
.y48{bottom:375.288150px;}
.yf5{bottom:376.775550px;}
.y127{bottom:378.575550px;}
.y23a{bottom:378.576600px;}
.yc4{bottom:378.580800px;}
.y90{bottom:379.120800px;}
.y155{bottom:380.375550px;}
.y205{bottom:381.711600px;}
.y18a{bottom:386.425200px;}
.y10{bottom:386.785499px;}
.y47{bottom:389.688150px;}
.y1a3{bottom:392.645550px;}
.yf4{bottom:394.775550px;}
.y126{bottom:396.575550px;}
.y239{bottom:396.576600px;}
.yc3{bottom:396.580800px;}
.y8f{bottom:397.120800px;}
.y154{bottom:398.375550px;}
.y189{bottom:401.725200px;}
.y46{bottom:404.088150px;}
.y1e3{bottom:404.575500px;}
.yf{bottom:408.044999px;}
.y1a2{bottom:410.645550px;}
.yf3{bottom:412.775550px;}
.y125{bottom:414.575550px;}
.y238{bottom:414.576600px;}
.yc2{bottom:414.580800px;}
.y8e{bottom:415.120800px;}
.y153{bottom:416.375550px;}
.y204{bottom:417.711600px;}
.y1a1{bottom:428.645550px;}
.yf2{bottom:430.775550px;}
.y45{bottom:431.244150px;}
.y124{bottom:432.575550px;}
.y237{bottom:432.576600px;}
.yc1{bottom:432.580800px;}
.y8d{bottom:433.120800px;}
.y152{bottom:434.375550px;}
.y5f{bottom:435.880500px;}
.y1a0{bottom:446.645550px;}
.y123{bottom:450.575550px;}
.y236{bottom:450.576600px;}
.yc0{bottom:450.580800px;}
.y8c{bottom:451.120800px;}
.y5e{bottom:452.080500px;}
.y151{bottom:452.375550px;}
.y44{bottom:458.400150px;}
.y19f{bottom:464.645550px;}
.yf1{bottom:466.775550px;}
.y122{bottom:468.575550px;}
.y235{bottom:468.576600px;}
.ybf{bottom:468.580800px;}
.y8b{bottom:469.120800px;}
.y150{bottom:470.375550px;}
.y175{bottom:470.661600px;}
.y203{bottom:470.811600px;}
.y43{bottom:472.800150px;}
.y19e{bottom:482.645550px;}
.yf0{bottom:482.975550px;}
.ye{bottom:484.864502px;}
.y5d{bottom:485.290500px;}
.y121{bottom:486.575550px;}
.y234{bottom:486.576600px;}
.ybe{bottom:486.580800px;}
.y8a{bottom:487.120800px;}
.y14f{bottom:488.375550px;}
.y174{bottom:488.661600px;}
.y202{bottom:488.811600px;}
.yef{bottom:499.175550px;}
.y42{bottom:499.956150px;}
.y19d{bottom:500.645550px;}
.y5c{bottom:501.490500px;}
.yd{bottom:502.864502px;}
.y120{bottom:504.575550px;}
.y233{bottom:504.576600px;}
.ybd{bottom:504.580800px;}
.y89{bottom:505.120800px;}
.y14e{bottom:506.375550px;}
.y173{bottom:506.661600px;}
.y201{bottom:506.811600px;}
.y41{bottom:514.356150px;}
.yee{bottom:515.375550px;}
.y5b{bottom:517.690500px;}
.y19c{bottom:518.645550px;}
.yc{bottom:520.864502px;}
.y11f{bottom:522.575550px;}
.y232{bottom:522.576600px;}
.ybc{bottom:522.580800px;}
.y88{bottom:523.120800px;}
.y14d{bottom:524.375550px;}
.y172{bottom:524.661600px;}
.y200{bottom:524.811600px;}
.y40{bottom:528.756150px;}
.yed{bottom:531.575550px;}
.y5a{bottom:533.890500px;}
.y19b{bottom:536.645550px;}
.yb{bottom:538.864499px;}
.y11e{bottom:540.575550px;}
.y231{bottom:540.576600px;}
.ybb{bottom:540.580800px;}
.y87{bottom:541.120800px;}
.y14c{bottom:542.375550px;}
.y171{bottom:542.661600px;}
.y1ff{bottom:542.811600px;}
.yec{bottom:547.775550px;}
.y59{bottom:550.090500px;}
.y19a{bottom:554.645550px;}
.y3f{bottom:555.912150px;}
.ya{bottom:556.864499px;}
.y11d{bottom:558.575550px;}
.y230{bottom:558.576600px;}
.yba{bottom:558.580800px;}
.y86{bottom:559.120800px;}
.y14b{bottom:560.375550px;}
.y170{bottom:560.661600px;}
.y1fe{bottom:560.811600px;}
.yeb{bottom:563.975550px;}
.y58{bottom:566.290500px;}
.y3e{bottom:570.312150px;}
.y199{bottom:572.645550px;}
.y11c{bottom:576.575550px;}
.y22f{bottom:576.576600px;}
.yb9{bottom:576.580800px;}
.y85{bottom:577.120800px;}
.y14a{bottom:578.375550px;}
.y16f{bottom:578.661600px;}
.y1fd{bottom:578.811600px;}
.yea{bottom:580.175550px;}
.y57{bottom:582.490500px;}
.y3d{bottom:584.712150px;}
.y198{bottom:590.645550px;}
.y11b{bottom:594.575550px;}
.y22e{bottom:594.576600px;}
.yb8{bottom:594.580800px;}
.y84{bottom:595.120800px;}
.y149{bottom:596.375550px;}
.y16e{bottom:596.661600px;}
.y1fc{bottom:596.811600px;}
.y56{bottom:598.690500px;}
.y3c{bottom:599.112150px;}
.y197{bottom:608.645550px;}
.y11a{bottom:612.575550px;}
.y22d{bottom:612.576600px;}
.yb7{bottom:612.580800px;}
.y83{bottom:613.120800px;}
.y3b{bottom:613.512150px;}
.ye9{bottom:614.375550px;}
.y16d{bottom:614.661600px;}
.y1fb{bottom:614.811600px;}
.y55{bottom:614.890500px;}
.y196{bottom:626.645550px;}
.y3a{bottom:627.912150px;}
.y119{bottom:630.575550px;}
.y22c{bottom:630.576600px;}
.yb6{bottom:630.580800px;}
.y54{bottom:631.090500px;}
.y82{bottom:631.120800px;}
.ye8{bottom:632.375550px;}
.y16c{bottom:632.661600px;}
.y1fa{bottom:632.811600px;}
.y39{bottom:642.312150px;}
.y195{bottom:644.645550px;}
.y9{bottom:645.510000px;}
.y53{bottom:647.290500px;}
.y118{bottom:648.575550px;}
.y22b{bottom:648.576600px;}
.yb5{bottom:648.580800px;}
.y81{bottom:649.120800px;}
.ye7{bottom:650.375550px;}
.y16b{bottom:650.661600px;}
.y1f9{bottom:650.811600px;}
.y38{bottom:656.712150px;}
.y194{bottom:662.645550px;}
.y52{bottom:663.490500px;}
.y117{bottom:666.575550px;}
.y22a{bottom:666.576600px;}
.yb4{bottom:666.580800px;}
.y8{bottom:666.771000px;}
.y80{bottom:667.120800px;}
.ye6{bottom:668.375550px;}
.y16a{bottom:668.661600px;}
.y1f8{bottom:668.811600px;}
.y193{bottom:680.645550px;}
.y37{bottom:683.868150px;}
.y116{bottom:684.575550px;}
.y229{bottom:684.576600px;}
.yb3{bottom:684.580800px;}
.y7f{bottom:685.120800px;}
.ye5{bottom:686.375550px;}
.y169{bottom:686.661600px;}
.y1f7{bottom:686.811600px;}
.y192{bottom:698.645550px;}
.y115{bottom:702.575550px;}
.y228{bottom:702.576600px;}
.yb2{bottom:702.580800px;}
.y7e{bottom:703.120800px;}
.ye4{bottom:704.375550px;}
.y168{bottom:704.661600px;}
.y1f6{bottom:704.811600px;}
.y51{bottom:705.205500px;}
.y36{bottom:711.024150px;}
.y191{bottom:716.645550px;}
.y114{bottom:720.575550px;}
.y227{bottom:720.576600px;}
.yb1{bottom:720.580800px;}
.y7d{bottom:721.120800px;}
.y50{bottom:721.405500px;}
.y256{bottom:721.475400px;}
.ye3{bottom:722.375550px;}
.y167{bottom:722.661600px;}
.y1f5{bottom:722.811600px;}
.y7{bottom:726.298500px;}
.y190{bottom:734.645550px;}
.y35{bottom:738.180150px;}
.y113{bottom:738.575550px;}
.y226{bottom:738.576600px;}
.yb0{bottom:738.580800px;}
.y7c{bottom:739.120800px;}
.y255{bottom:739.475400px;}
.ye2{bottom:740.375550px;}
.y166{bottom:740.661600px;}
.y1f4{bottom:740.811600px;}
.y4f{bottom:741.925500px;}
.y3{bottom:752.599495px;}
.y18f{bottom:752.645550px;}
.y112{bottom:756.575550px;}
.y225{bottom:756.576600px;}
.yaf{bottom:756.580800px;}
.y7b{bottom:757.120800px;}
.y254{bottom:757.475400px;}
.y4e{bottom:758.125650px;}
.ye1{bottom:758.375550px;}
.y165{bottom:758.661600px;}
.y1f3{bottom:758.811600px;}
.y34{bottom:765.336150px;}
.y18e{bottom:770.645550px;}
.y111{bottom:774.575550px;}
.y224{bottom:774.576600px;}
.yae{bottom:774.580800px;}
.y7a{bottom:775.120800px;}
.y253{bottom:775.475400px;}
.ye0{bottom:776.375550px;}
.y1f2{bottom:776.811600px;}
.y4d{bottom:778.509450px;}
.y33{bottom:779.736150px;}
.y18d{bottom:788.645550px;}
.y110{bottom:792.575550px;}
.y223{bottom:792.576600px;}
.yad{bottom:792.580800px;}
.y79{bottom:793.120800px;}
.y32{bottom:794.136150px;}
.ydf{bottom:794.375550px;}
.y1f1{bottom:794.811600px;}
.y18c{bottom:806.645550px;}
.y31{bottom:808.536150px;}
.y10f{bottom:810.575550px;}
.y222{bottom:810.576600px;}
.yac{bottom:810.580800px;}
.y78{bottom:811.120800px;}
.y252{bottom:811.475400px;}
.y182{bottom:812.086800px;}
.yde{bottom:812.375550px;}
.y1f0{bottom:812.811600px;}
.y30{bottom:822.936150px;}
.y10e{bottom:828.575550px;}
.y221{bottom:828.576600px;}
.yab{bottom:828.580800px;}
.y77{bottom:829.120800px;}
.ydd{bottom:830.375550px;}
.y2f{bottom:837.336150px;}
.y181{bottom:838.772550px;}
.y4c{bottom:839.029200px;}
.y10d{bottom:846.575550px;}
.y220{bottom:846.576600px;}
.yaa{bottom:846.580800px;}
.y76{bottom:847.120800px;}
.ydc{bottom:848.375550px;}
.y2e{bottom:851.736150px;}
.y180{bottom:856.546050px;}
.y1ef{bottom:860.076900px;}
.y10c{bottom:864.575550px;}
.y21f{bottom:864.576600px;}
.ya9{bottom:864.580800px;}
.y75{bottom:865.120800px;}
.y24d{bottom:866.235000px;}
.ydb{bottom:866.375550px;}
.y248{bottom:867.018000px;}
.y4b{bottom:867.829200px;}
.y17f{bottom:874.319550px;}
.y1ec{bottom:877.825500px;}
.y1e5{bottom:878.541000px;}
.y2{bottom:879.369000px;}
.y10b{bottom:882.575550px;}
.y21e{bottom:882.576600px;}
.ya8{bottom:882.580800px;}
.y74{bottom:883.120800px;}
.yda{bottom:884.375550px;}
.y17e{bottom:892.093050px;}
.y4a{bottom:896.629200px;}
.y10a{bottom:900.575550px;}
.y21d{bottom:900.576600px;}
.ya7{bottom:900.580800px;}
.y73{bottom:901.120800px;}
.yd9{bottom:902.375550px;}
.y17d{bottom:909.866550px;}
.y109{bottom:918.575550px;}
.y21c{bottom:918.576600px;}
.ya6{bottom:918.580800px;}
.y72{bottom:919.120800px;}
.y49{bottom:925.429200px;}
.y17c{bottom:927.640050px;}
.y108{bottom:936.575550px;}
.y21b{bottom:936.576600px;}
.ya5{bottom:936.580800px;}
.y71{bottom:937.120800px;}
.yd8{bottom:938.375400px;}
.y17b{bottom:949.659300px;}
.y107{bottom:954.575550px;}
.y21a{bottom:954.576600px;}
.ya4{bottom:954.580800px;}
.y70{bottom:955.120800px;}
.yd7{bottom:955.475400px;}
.y179{bottom:957.309300px;}
.y178{bottom:964.959300px;}
.y1{bottom:966.726000px;}
.y106{bottom:972.575550px;}
.y219{bottom:972.576600px;}
.ya3{bottom:972.580800px;}
.y6f{bottom:973.120800px;}
.y17a{bottom:980.259300px;}
.y105{bottom:990.575550px;}
.y218{bottom:990.576600px;}
.ya2{bottom:990.580800px;}
.y6e{bottom:991.120800px;}
.yd6{bottom:1008.575550px;}
.y217{bottom:1008.576600px;}
.ya1{bottom:1008.580800px;}
.y177{bottom:1012.911150px;}
.yd5{bottom:1026.575550px;}
.y216{bottom:1026.576600px;}
.ya0{bottom:1026.580800px;}
.y6d{bottom:1027.120800px;}
.y176{bottom:1028.211150px;}
.y28{bottom:1060.054050px;}
.y26{bottom:1061.232300px;}
.y2d{bottom:1061.232450px;}
.y2a{bottom:1061.763450px;}
.y2c{bottom:1071.356250px;}
.y29{bottom:1071.887100px;}
.yd4{bottom:1077.325050px;}
.y25{bottom:1077.499800px;}
.y6c{bottom:1079.584650px;}
.y2b{bottom:1081.476926px;}
.h24{height:12.399000px;}
.h2a{height:16.668914px;}
.h2d{height:16.969078px;}
.h25{height:19.130760px;}
.h29{height:19.871895px;}
.h2f{height:21.747018px;}
.h23{height:22.239441px;}
.h1c{height:22.339200px;}
.h27{height:22.763109px;}
.hc{height:24.661978px;}
.hd{height:24.673873px;}
.h14{height:28.466100px;}
.h7{height:32.130000px;}
.h1d{height:34.368000px;}
.h10{height:34.992188px;}
.hf{height:35.367188px;}
.he{height:35.601562px;}
.h1f{height:36.516000px;}
.h16{height:38.664000px;}
.h1e{height:38.928000px;}
.h19{height:39.523200px;}
.ha{height:39.788086px;}
.h17{height:40.812000px;}
.h21{height:41.361000px;}
.h18{height:42.960000px;}
.h15{height:43.794000px;}
.h11{height:44.340000px;}
.h6{height:45.900000px;}
.h1b{height:47.124000px;}
.h13{height:47.124600px;}
.h26{height:47.133600px;}
.h3{height:48.195000px;}
.h1a{height:48.660000px;}
.h2{height:55.080000px;}
.h20{height:67.116000px;}
.h12{height:68.160000px;}
.h5{height:78.030000px;}
.hb{height:112.488778px;}
.h4{height:119.055004px;}
.h28{height:121.635000px;}
.h2b{height:122.350500px;}
.h2c{height:133.111500px;}
.h2e{height:134.677500px;}
.h22{height:261.957000px;}
.h8{height:1148.031000px;}
.h9{height:1148.250000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:66.903000px;}
.w7{width:349.965000px;}
.w6{width:350.055000px;}
.w4{width:350.787000px;}
.w8{width:350.788500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:9.987900px;}
.x49{left:12.558600px;}
.x48{left:14.792250px;}
.x4e{left:17.909850px;}
.x47{left:31.086750px;}
.x46{left:39.878400px;}
.x5{left:85.039350px;}
.x11{left:86.565300px;}
.x43{left:91.196034px;}
.x38{left:96.646374px;}
.x13{left:97.795200px;}
.x1{left:102.045000px;}
.x3b{left:103.694934px;}
.x2{left:106.297500px;}
.x40{left:108.260106px;}
.xd{left:110.551200px;}
.x16{left:119.456550px;}
.x41{left:123.512862px;}
.x36{left:125.102886px;}
.x34{left:127.610862px;}
.x37{left:132.282582px;}
.x3e{left:142.617738px;}
.x4a{left:146.868000px;}
.x3f{left:152.182470px;}
.x17{left:153.628050px;}
.x12{left:155.264550px;}
.x3a{left:157.886886px;}
.x44{left:160.377900px;}
.x42{left:161.534106px;}
.x3d{left:162.886446px;}
.x8{left:166.251900px;}
.x4f{left:171.433500px;}
.x4c{left:176.763450px;}
.x35{left:179.745618px;}
.x39{left:187.703934px;}
.x3c{left:197.268666px;}
.xc{left:198.336900px;}
.x4{left:203.484001px;}
.x50{left:217.626750px;}
.x33{left:244.043238px;}
.x32{left:247.149522px;}
.x31{left:250.255806px;}
.x30{left:268.877118px;}
.x2f{left:271.983402px;}
.x2e{left:278.187774px;}
.x2d{left:281.294058px;}
.x1c{left:283.026844px;}
.x1b{left:284.139900px;}
.x1d{left:285.917587px;}
.x2c{left:293.710998px;}
.x4d{left:298.785150px;}
.x2b{left:303.021654px;}
.x2a{left:306.127938px;}
.x29{left:312.332310px;}
.x28{left:315.438594px;}
.x27{left:321.642966px;}
.x45{left:327.167850px;}
.x9{left:331.653600px;}
.x26{left:340.264278px;}
.x25{left:343.370562px;}
.xb{left:357.168600px;}
.x24{left:371.310726px;}
.x23{left:377.515098px;}
.x22{left:396.136410px;}
.x21{left:399.242694px;}
.x20{left:408.553350px;}
.x3{left:454.959000px;}
.xe{left:457.081200px;}
.x1e{left:459.369000px;}
.xf{left:482.596200px;}
.x15{left:486.155400px;}
.x14{left:516.550650px;}
.xa{left:526.202400px;}
.x4b{left:553.878750px;}
.x6{left:660.088650px;}
.x7{left:678.826650px;}
.x18{left:699.260100px;}
.x19{left:747.225600px;}
.x1a{left:760.740600px;}
.x10{left:794.626050px;}
@media print{
.v5{vertical-align:-17.066667pt;}
.v3{vertical-align:-15.360533pt;}
.v6{vertical-align:-13.653333pt;}
.v4{vertical-align:-8.034133pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.067200pt;}
.v7{vertical-align:27.200000pt;}
.v1{vertical-align:78.068267pt;}
.ls50{letter-spacing:-3.253333pt;}
.ls69{letter-spacing:-1.386667pt;}
.ls5c{letter-spacing:-1.282219pt;}
.ls6d{letter-spacing:-1.173333pt;}
.ls5d{letter-spacing:-1.139712pt;}
.ls3d{letter-spacing:-1.066667pt;}
.ls52{letter-spacing:-0.906667pt;}
.ls53{letter-spacing:-0.861333pt;}
.ls6b{letter-spacing:-0.853333pt;}
.ls62{letter-spacing:-0.800000pt;}
.ls49{letter-spacing:-0.746667pt;}
.ls67{letter-spacing:-0.693333pt;}
.ls61{letter-spacing:-0.640000pt;}
.ls31{letter-spacing:-0.586667pt;}
.ls3e{letter-spacing:-0.533333pt;}
.ls42{letter-spacing:-0.480000pt;}
.ls3c{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.373333pt;}
.ls3a{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.256000pt;}
.ls43{letter-spacing:-0.213333pt;}
.ls27{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.152707pt;}
.ls51{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.106667pt;}
.ls39{letter-spacing:-0.096000pt;}
.ls28{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.027733pt;}
.ls33{letter-spacing:0.042667pt;}
.ls29{letter-spacing:0.053333pt;}
.ls44{letter-spacing:0.085333pt;}
.ls4d{letter-spacing:0.090667pt;}
.ls5{letter-spacing:0.096000pt;}
.ls30{letter-spacing:0.106667pt;}
.ls58{letter-spacing:0.110933pt;}
.ls45{letter-spacing:0.128000pt;}
.ls4a{letter-spacing:0.138667pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls40{letter-spacing:0.170667pt;}
.ls1{letter-spacing:0.181600pt;}
.ls4{letter-spacing:0.192000pt;}
.ls48{letter-spacing:0.194133pt;}
.ls54{letter-spacing:0.198933pt;}
.ls24{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.298667pt;}
.ls56{letter-spacing:0.317333pt;}
.ls23{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.336000pt;}
.ls4c{letter-spacing:0.341333pt;}
.ls68{letter-spacing:0.346667pt;}
.ls32{letter-spacing:0.351467pt;}
.ls5e{letter-spacing:0.362667pt;}
.ls21{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.384000pt;}
.ls4e{letter-spacing:0.408000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.432000pt;}
.ls66{letter-spacing:0.450667pt;}
.ls55{letter-spacing:0.469333pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.506667pt;}
.ls17{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.528000pt;}
.ls26{letter-spacing:0.533333pt;}
.ls5f{letter-spacing:0.544000pt;}
.ls59{letter-spacing:0.554667pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.586667pt;}
.ls60{letter-spacing:0.589333pt;}
.ls5a{letter-spacing:0.597333pt;}
.lsa{letter-spacing:0.640000pt;}
.ls5b{letter-spacing:0.641109pt;}
.ls10{letter-spacing:0.682667pt;}
.ls34{letter-spacing:0.693333pt;}
.ls1f{letter-spacing:0.746667pt;}
.ls2d{letter-spacing:0.800000pt;}
.ls11{letter-spacing:0.810667pt;}
.ls14{letter-spacing:0.853333pt;}
.ls2a{letter-spacing:0.906667pt;}
.ls3f{letter-spacing:0.914667pt;}
.ls36{letter-spacing:0.960000pt;}
.ls2f{letter-spacing:1.013333pt;}
.ls15{letter-spacing:1.024000pt;}
.ls2e{letter-spacing:1.066667pt;}
.ls41{letter-spacing:1.120000pt;}
.ls2b{letter-spacing:1.173333pt;}
.ls18{letter-spacing:1.194667pt;}
.ls9{letter-spacing:1.237333pt;}
.lsc{letter-spacing:1.280000pt;}
.ls64{letter-spacing:1.333333pt;}
.ls65{letter-spacing:1.386667pt;}
.ls4b{letter-spacing:1.489600pt;}
.ls16{letter-spacing:1.493333pt;}
.ls4f{letter-spacing:1.600000pt;}
.ls13{letter-spacing:1.664000pt;}
.ls46{letter-spacing:1.706667pt;}
.ls12{letter-spacing:1.749333pt;}
.ls37{letter-spacing:1.760000pt;}
.ls6a{letter-spacing:1.813333pt;}
.ls57{letter-spacing:1.866667pt;}
.ls63{letter-spacing:1.973333pt;}
.ls35{letter-spacing:2.026667pt;}
.ls47{letter-spacing:2.186667pt;}
.ls6c{letter-spacing:2.400000pt;}
.ws135{word-spacing:-13.973333pt;}
.ws1{word-spacing:-13.344000pt;}
.ws3{word-spacing:-13.098667pt;}
.ws14a{word-spacing:-12.906667pt;}
.wscf{word-spacing:-12.800000pt;}
.wsf9{word-spacing:-12.746667pt;}
.wsa{word-spacing:-12.693333pt;}
.ws149{word-spacing:-12.586667pt;}
.ws6{word-spacing:-12.544000pt;}
.ws14b{word-spacing:-12.480000pt;}
.ws5{word-spacing:-12.288000pt;}
.ws7{word-spacing:-12.160000pt;}
.ws84{word-spacing:-12.106667pt;}
.ws12f{word-spacing:-12.008000pt;}
.wsaf{word-spacing:-12.000000pt;}
.wsce{word-spacing:-11.786667pt;}
.ws4{word-spacing:-11.605333pt;}
.ws3c{word-spacing:-11.520000pt;}
.ws137{word-spacing:-11.466667pt;}
.ws14c{word-spacing:-11.200000pt;}
.ws156{word-spacing:-11.040000pt;}
.ws103{word-spacing:-10.290667pt;}
.ws109{word-spacing:-9.520000pt;}
.ws102{word-spacing:-9.429333pt;}
.ws136{word-spacing:-8.320000pt;}
.ws8{word-spacing:-7.869333pt;}
.ws118{word-spacing:-7.285333pt;}
.ws9{word-spacing:-7.144800pt;}
.wse{word-spacing:-7.125333pt;}
.ws10a{word-spacing:-7.117733pt;}
.ws117{word-spacing:-6.003115pt;}
.ws119{word-spacing:-5.657856pt;}
.ws23{word-spacing:-4.608000pt;}
.ws22{word-spacing:-3.680000pt;}
.wsd9{word-spacing:-2.186667pt;}
.ws12b{word-spacing:-1.631915pt;}
.ws148{word-spacing:-1.013333pt;}
.ws129{word-spacing:-0.641109pt;}
.ws13f{word-spacing:-0.533333pt;}
.ws28{word-spacing:-0.528000pt;}
.ws33{word-spacing:-0.506667pt;}
.ws154{word-spacing:-0.480000pt;}
.ws141{word-spacing:-0.373333pt;}
.ws13b{word-spacing:-0.266667pt;}
.ws14{word-spacing:-0.256000pt;}
.wseb{word-spacing:-0.138667pt;}
.ws11f{word-spacing:-0.110933pt;}
.ws98{word-spacing:-0.027733pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.152707pt;}
.ws158{word-spacing:0.213333pt;}
.ws12d{word-spacing:1.139712pt;}
.ws21{word-spacing:1.194667pt;}
.ws12a{word-spacing:1.282219pt;}
.ws62{word-spacing:1.813333pt;}
.ws1d{word-spacing:1.877333pt;}
.ws9c{word-spacing:1.920000pt;}
.ws12c{word-spacing:1.949333pt;}
.ws20{word-spacing:1.962667pt;}
.ws3d{word-spacing:2.026667pt;}
.ws114{word-spacing:2.040000pt;}
.ws31{word-spacing:2.064000pt;}
.wsee{word-spacing:2.133333pt;}
.ws27{word-spacing:2.160000pt;}
.ws25{word-spacing:2.208000pt;}
.wsc9{word-spacing:2.218667pt;}
.ws94{word-spacing:2.256000pt;}
.ws14d{word-spacing:2.293333pt;}
.ws15{word-spacing:2.389333pt;}
.ws24{word-spacing:2.400000pt;}
.wsa2{word-spacing:2.453333pt;}
.ws132{word-spacing:2.506667pt;}
.ws45{word-spacing:2.560000pt;}
.wsef{word-spacing:2.602667pt;}
.ws7e{word-spacing:2.613333pt;}
.ws80{word-spacing:2.666667pt;}
.wsb{word-spacing:2.688000pt;}
.ws48{word-spacing:2.720000pt;}
.ws8c{word-spacing:2.773333pt;}
.ws8b{word-spacing:2.826667pt;}
.ws77{word-spacing:2.880000pt;}
.wscd{word-spacing:2.901333pt;}
.ws44{word-spacing:2.933333pt;}
.wsff{word-spacing:2.986667pt;}
.ws121{word-spacing:3.029333pt;}
.ws38{word-spacing:3.040000pt;}
.ws43{word-spacing:3.093333pt;}
.wsdb{word-spacing:3.146667pt;}
.wse7{word-spacing:3.200000pt;}
.ws6d{word-spacing:3.253333pt;}
.ws142{word-spacing:3.306667pt;}
.ws92{word-spacing:3.312000pt;}
.wsf7{word-spacing:3.360000pt;}
.ws5b{word-spacing:3.413333pt;}
.ws85{word-spacing:3.466667pt;}
.wsed{word-spacing:3.498667pt;}
.wsb3{word-spacing:3.520000pt;}
.ws10c{word-spacing:3.680000pt;}
.ws73{word-spacing:3.733333pt;}
.ws82{word-spacing:3.786667pt;}
.wsc7{word-spacing:3.797333pt;}
.wsc8{word-spacing:3.840000pt;}
.ws99{word-spacing:3.882667pt;}
.ws70{word-spacing:3.893333pt;}
.ws112{word-spacing:3.944000pt;}
.wsb4{word-spacing:3.946667pt;}
.ws110{word-spacing:3.968000pt;}
.wsb8{word-spacing:4.000000pt;}
.wsfd{word-spacing:4.053333pt;}
.ws123{word-spacing:4.096000pt;}
.ws96{word-spacing:4.106667pt;}
.ws113{word-spacing:4.125333pt;}
.wsec{word-spacing:4.138667pt;}
.ws34{word-spacing:4.160000pt;}
.wsa3{word-spacing:4.213333pt;}
.ws7d{word-spacing:4.266667pt;}
.ws11e{word-spacing:4.320000pt;}
.ws2c{word-spacing:4.368000pt;}
.ws6b{word-spacing:4.373333pt;}
.ws120{word-spacing:4.394667pt;}
.ws145{word-spacing:4.426667pt;}
.wsde{word-spacing:4.480000pt;}
.ws124{word-spacing:4.522667pt;}
.ws89{word-spacing:4.533333pt;}
.ws151{word-spacing:4.586667pt;}
.ws30{word-spacing:4.608000pt;}
.ws47{word-spacing:4.640000pt;}
.wscc{word-spacing:4.650667pt;}
.wsdd{word-spacing:4.693333pt;}
.wsc6{word-spacing:4.746667pt;}
.ws3e{word-spacing:4.800000pt;}
.ws35{word-spacing:4.853333pt;}
.ws69{word-spacing:4.906667pt;}
.wsaa{word-spacing:4.960000pt;}
.ws26{word-spacing:4.992000pt;}
.wsfe{word-spacing:5.013333pt;}
.wsb5{word-spacing:5.066667pt;}
.ws40{word-spacing:5.120000pt;}
.ws2d{word-spacing:5.136000pt;}
.ws97{word-spacing:5.173333pt;}
.ws12{word-spacing:5.205333pt;}
.ws12e{word-spacing:5.213333pt;}
.wsfc{word-spacing:5.226667pt;}
.ws5a{word-spacing:5.280000pt;}
.ws7b{word-spacing:5.333333pt;}
.ws2a{word-spacing:5.376000pt;}
.wsb1{word-spacing:5.386667pt;}
.wsd4{word-spacing:5.440000pt;}
.wsf{word-spacing:5.461333pt;}
.wsbf{word-spacing:5.493333pt;}
.ws13{word-spacing:5.546667pt;}
.ws95{word-spacing:5.600000pt;}
.wsca{word-spacing:5.632000pt;}
.wse9{word-spacing:5.653333pt;}
.ws8d{word-spacing:5.664000pt;}
.ws127{word-spacing:5.674667pt;}
.ws5f{word-spacing:5.706667pt;}
.ws57{word-spacing:5.760000pt;}
.ws93{word-spacing:5.808000pt;}
.ws4c{word-spacing:5.813333pt;}
.wsf0{word-spacing:5.845333pt;}
.wsa4{word-spacing:5.866667pt;}
.ws111{word-spacing:5.888000pt;}
.ws2b{word-spacing:5.904000pt;}
.wsa1{word-spacing:5.920000pt;}
.ws9b{word-spacing:5.930667pt;}
.ws6a{word-spacing:5.973333pt;}
.ws125{word-spacing:6.016000pt;}
.ws6e{word-spacing:6.026667pt;}
.ws115{word-spacing:6.029333pt;}
.ws11{word-spacing:6.058667pt;}
.ws4f{word-spacing:6.080000pt;}
.ws59{word-spacing:6.133333pt;}
.ws5c{word-spacing:6.186667pt;}
.ws2f{word-spacing:6.240000pt;}
.ws91{word-spacing:6.288000pt;}
.ws5d{word-spacing:6.293333pt;}
.ws116{word-spacing:6.301333pt;}
.ws39{word-spacing:6.346667pt;}
.wscb{word-spacing:6.357333pt;}
.ws76{word-spacing:6.400000pt;}
.wsac{word-spacing:6.453333pt;}
.ws128{word-spacing:6.485333pt;}
.ws7a{word-spacing:6.506667pt;}
.ws65{word-spacing:6.560000pt;}
.ws4a{word-spacing:6.613333pt;}
.wsdc{word-spacing:6.666667pt;}
.wsb9{word-spacing:6.720000pt;}
.ws74{word-spacing:6.773333pt;}
.ws67{word-spacing:6.826667pt;}
.ws50{word-spacing:6.880000pt;}
.ws8f{word-spacing:6.912000pt;}
.ws49{word-spacing:6.933333pt;}
.ws6f{word-spacing:6.986667pt;}
.ws8e{word-spacing:7.008000pt;}
.ws81{word-spacing:7.040000pt;}
.wsd2{word-spacing:7.093333pt;}
.ws41{word-spacing:7.146667pt;}
.ws2e{word-spacing:7.152000pt;}
.wsc0{word-spacing:7.200000pt;}
.ws7c{word-spacing:7.253333pt;}
.wsad{word-spacing:7.306667pt;}
.wsd3{word-spacing:7.360000pt;}
.ws37{word-spacing:7.413333pt;}
.ws1f{word-spacing:7.466667pt;}
.ws1e{word-spacing:7.509333pt;}
.wsea{word-spacing:7.520000pt;}
.ws122{word-spacing:7.552000pt;}
.ws133{word-spacing:7.570667pt;}
.ws6c{word-spacing:7.573333pt;}
.wsa6{word-spacing:7.626667pt;}
.ws29{word-spacing:7.680000pt;}
.wse5{word-spacing:7.733333pt;}
.wsbc{word-spacing:7.786667pt;}
.wsb6{word-spacing:7.840000pt;}
.ws134{word-spacing:7.888000pt;}
.wsba{word-spacing:7.893333pt;}
.wse0{word-spacing:7.946667pt;}
.ws90{word-spacing:7.968000pt;}
.ws126{word-spacing:7.978667pt;}
.ws56{word-spacing:8.000000pt;}
.wsd1{word-spacing:8.053333pt;}
.ws61{word-spacing:8.106667pt;}
.wsf1{word-spacing:8.160000pt;}
.ws9a{word-spacing:8.192000pt;}
.ws5e{word-spacing:8.213333pt;}
.wsd0{word-spacing:8.266667pt;}
.ws87{word-spacing:8.320000pt;}
.wsf5{word-spacing:8.373333pt;}
.ws3f{word-spacing:8.426667pt;}
.wse8{word-spacing:8.480000pt;}
.wsc2{word-spacing:8.533333pt;}
.wsc5{word-spacing:8.586667pt;}
.ws83{word-spacing:8.640000pt;}
.ws78{word-spacing:8.693333pt;}
.wsc1{word-spacing:8.746667pt;}
.wsa9{word-spacing:8.800000pt;}
.wsa5{word-spacing:8.853333pt;}
.ws1c{word-spacing:8.874667pt;}
.ws10e{word-spacing:8.906667pt;}
.wsd{word-spacing:8.960000pt;}
.ws53{word-spacing:9.013333pt;}
.ws3a{word-spacing:9.066667pt;}
.wse3{word-spacing:9.120000pt;}
.ws131{word-spacing:9.173333pt;}
.wsbb{word-spacing:9.226667pt;}
.ws88{word-spacing:9.280000pt;}
.ws9d{word-spacing:9.333333pt;}
.wsb7{word-spacing:9.386667pt;}
.ws11a{word-spacing:9.440000pt;}
.ws140{word-spacing:9.493333pt;}
.wsbd{word-spacing:9.546667pt;}
.wse6{word-spacing:9.600000pt;}
.ws36{word-spacing:9.653333pt;}
.ws10d{word-spacing:9.706667pt;}
.ws42{word-spacing:9.760000pt;}
.ws51{word-spacing:9.813333pt;}
.ws4b{word-spacing:9.866667pt;}
.ws4e{word-spacing:9.920000pt;}
.ws7f{word-spacing:9.973333pt;}
.ws100{word-spacing:10.026667pt;}
.ws71{word-spacing:10.133333pt;}
.wsa7{word-spacing:10.186667pt;}
.ws60{word-spacing:10.240000pt;}
.wsda{word-spacing:10.293333pt;}
.ws63{word-spacing:10.400000pt;}
.wsfa{word-spacing:10.453333pt;}
.wsc3{word-spacing:10.506667pt;}
.ws46{word-spacing:10.560000pt;}
.ws146{word-spacing:10.613333pt;}
.ws16{word-spacing:10.666667pt;}
.ws139{word-spacing:10.720000pt;}
.ws79{word-spacing:10.773333pt;}
.wsab{word-spacing:10.826667pt;}
.ws58{word-spacing:10.880000pt;}
.ws4d{word-spacing:10.933333pt;}
.ws55{word-spacing:10.986667pt;}
.ws10f{word-spacing:11.040000pt;}
.ws155{word-spacing:11.093333pt;}
.ws68{word-spacing:11.146667pt;}
.ws9f{word-spacing:11.200000pt;}
.ws138{word-spacing:11.253333pt;}
.wsa0{word-spacing:11.306667pt;}
.ws11d{word-spacing:11.360000pt;}
.wsae{word-spacing:11.413333pt;}
.ws52{word-spacing:11.466667pt;}
.wsfb{word-spacing:11.520000pt;}
.ws75{word-spacing:11.573333pt;}
.ws72{word-spacing:11.626667pt;}
.ws130{word-spacing:11.733333pt;}
.wsf2{word-spacing:11.786667pt;}
.wsb0{word-spacing:11.840000pt;}
.wsf3{word-spacing:11.893333pt;}
.wse2{word-spacing:12.000000pt;}
.ws8a{word-spacing:12.053333pt;}
.ws14f{word-spacing:12.106667pt;}
.ws14e{word-spacing:12.160000pt;}
.wse4{word-spacing:12.213333pt;}
.ws9e{word-spacing:12.266667pt;}
.wsf6{word-spacing:12.373333pt;}
.wsdf{word-spacing:12.480000pt;}
.wsd7{word-spacing:12.533333pt;}
.ws19{word-spacing:12.544000pt;}
.wsd8{word-spacing:12.640000pt;}
.ws66{word-spacing:12.693333pt;}
.wsd5{word-spacing:12.746667pt;}
.ws64{word-spacing:12.800000pt;}
.ws86{word-spacing:13.013333pt;}
.ws11b{word-spacing:13.066667pt;}
.wsa8{word-spacing:13.173333pt;}
.wsc4{word-spacing:13.226667pt;}
.ws1a{word-spacing:13.312000pt;}
.wse1{word-spacing:13.333333pt;}
.ws13a{word-spacing:13.600000pt;}
.wsb2{word-spacing:13.866667pt;}
.wsf8{word-spacing:13.973333pt;}
.ws143{word-spacing:14.133333pt;}
.ws153{word-spacing:14.186667pt;}
.ws54{word-spacing:14.346667pt;}
.ws18{word-spacing:14.506667pt;}
.ws144{word-spacing:14.613333pt;}
.ws1b{word-spacing:14.805333pt;}
.ws150{word-spacing:14.933333pt;}
.ws10{word-spacing:15.061333pt;}
.ws17{word-spacing:15.274667pt;}
.wsbe{word-spacing:15.573333pt;}
.ws13e{word-spacing:15.893333pt;}
.ws13d{word-spacing:16.000000pt;}
.ws147{word-spacing:16.213333pt;}
.ws157{word-spacing:16.320000pt;}
.wsf4{word-spacing:17.120000pt;}
.ws101{word-spacing:17.333333pt;}
.ws10b{word-spacing:18.506667pt;}
.wsd6{word-spacing:19.360000pt;}
.ws152{word-spacing:20.533333pt;}
.ws11c{word-spacing:21.120000pt;}
.ws13c{word-spacing:22.186667pt;}
.ws2{word-spacing:22.789961pt;}
.ws32{word-spacing:23.616000pt;}
.ws105{word-spacing:48.189333pt;}
.ws106{word-spacing:59.069333pt;}
.ws107{word-spacing:64.237333pt;}
.ws108{word-spacing:75.117333pt;}
.ws104{word-spacing:714.181333pt;}
.ws3b{word-spacing:1825.497067pt;}
._5{margin-left:-8.704000pt;}
._15{margin-left:-7.178667pt;}
._c{margin-left:-6.244267pt;}
._d{margin-left:-4.912000pt;}
._1{margin-left:-3.933724pt;}
._0{margin-left:-2.659200pt;}
._2{margin-left:-1.152000pt;}
._3{width:1.301333pt;}
._4{width:2.359467pt;}
._e{width:3.536000pt;}
._16{width:6.293333pt;}
._6{width:8.496000pt;}
._7{width:21.210667pt;}
._14{width:38.117333pt;}
._a{width:39.733333pt;}
._b{width:43.786667pt;}
._9{width:45.706667pt;}
._8{width:46.720000pt;}
._13{width:125.144000pt;}
._12{width:251.346667pt;}
._11{width:513.482667pt;}
._10{width:599.506667pt;}
._f{width:632.784390pt;}
.fs14{font-size:20.352000pt;}
.fs15{font-size:22.272000pt;}
.fs11{font-size:24.491200pt;}
.fs13{font-size:25.440000pt;}
.fse{font-size:27.733333pt;}
.fs16{font-size:27.840533pt;}
.fs10{font-size:28.470933pt;}
.fs12{font-size:29.141333pt;}
.fs7{font-size:30.541333pt;}
.fsb{font-size:31.200000pt;}
.fsa{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsf{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fsd{font-size:49.066667pt;}
.fsc{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:131.927467pt;}
.y0{bottom:0.000000pt;}
.y188{bottom:3.367733pt;}
.y251{bottom:13.920493pt;}
.y249{bottom:15.661067pt;}
.y1e6{bottom:18.126000pt;}
.y1e9{bottom:19.080000pt;}
.y1ee{bottom:19.715600pt;}
.y6{bottom:31.933340pt;}
.y250{bottom:35.496907pt;}
.y24a{bottom:35.845200pt;}
.y1e7{bottom:45.155867pt;}
.y1ea{bottom:46.109733pt;}
.y1ed{bottom:46.427600pt;}
.y27{bottom:52.293600pt;}
.y24b{bottom:56.029467pt;}
.y24f{bottom:57.073320pt;}
.y5{bottom:59.133337pt;}
.y24{bottom:66.590533pt;}
.y1e8{bottom:72.503600pt;}
.y1eb{bottom:73.139600pt;}
.y24c{bottom:76.213600pt;}
.y24e{bottom:78.649733pt;}
.y1e4{bottom:83.146000pt;}
.y104{bottom:83.149600pt;}
.y164{bottom:83.149733pt;}
.y18b{bottom:83.151067pt;}
.y215{bottom:83.299200pt;}
.y247{bottom:83.957200pt;}
.y4{bottom:86.333337pt;}
.y103{bottom:95.949600pt;}
.y163{bottom:95.949733pt;}
.y136{bottom:96.511600pt;}
.yd3{bottom:96.516267pt;}
.y9f{bottom:96.996267pt;}
.y147{bottom:98.111600pt;}
.y214{bottom:99.299200pt;}
.y183{bottom:99.596000pt;}
.y246{bottom:99.957200pt;}
.y102{bottom:108.749600pt;}
.y162{bottom:108.749733pt;}
.y1c9{bottom:110.328667pt;}
.y1e2{bottom:110.692933pt;}
.y135{bottom:112.511600pt;}
.yd2{bottom:112.516267pt;}
.y9e{bottom:112.996267pt;}
.y146{bottom:114.111600pt;}
.y213{bottom:115.299200pt;}
.y1c8{bottom:119.435333pt;}
.y1e1{bottom:119.799600pt;}
.y142{bottom:121.549600pt;}
.y161{bottom:121.549733pt;}
.y187{bottom:122.244000pt;}
.y23{bottom:123.790666pt;}
.y101{bottom:124.962933pt;}
.y134{bottom:128.511600pt;}
.yd1{bottom:128.516267pt;}
.y1c7{bottom:128.542000pt;}
.y9d{bottom:128.996267pt;}
.y1e0{bottom:129.270533pt;}
.y6b{bottom:129.356400pt;}
.y145{bottom:130.111600pt;}
.y245{bottom:131.075333pt;}
.y212{bottom:131.299200pt;}
.y141{bottom:134.349600pt;}
.y160{bottom:134.349733pt;}
.y1c6{bottom:138.012933pt;}
.y1df{bottom:138.377200pt;}
.y133{bottom:144.511600pt;}
.yd0{bottom:144.516267pt;}
.y9c{bottom:144.996267pt;}
.y6a{bottom:145.356400pt;}
.y259{bottom:146.111600pt;}
.y1c5{bottom:147.119600pt;}
.y140{bottom:147.149600pt;}
.y1b0{bottom:147.149733pt;}
.y211{bottom:147.299200pt;}
.y1de{bottom:147.483867pt;}
.y15f{bottom:150.563067pt;}
.y1c4{bottom:156.590533pt;}
.y1dd{bottom:156.954800pt;}
.y100{bottom:158.911600pt;}
.y13f{bottom:159.949600pt;}
.y1af{bottom:159.949733pt;}
.y132{bottom:160.511600pt;}
.ycf{bottom:160.516267pt;}
.y9b{bottom:160.996267pt;}
.y69{bottom:161.356400pt;}
.y144{bottom:162.111467pt;}
.y258{bottom:162.111600pt;}
.y210{bottom:163.299200pt;}
.y1c3{bottom:165.697200pt;}
.y1dc{bottom:166.061467pt;}
.y13e{bottom:172.749600pt;}
.y1ae{bottom:172.749733pt;}
.y1c2{bottom:174.803867pt;}
.yff{bottom:174.911600pt;}
.y1a{bottom:175.052000pt;}
.y1db{bottom:175.168133pt;}
.y148{bottom:176.162933pt;}
.y131{bottom:176.511600pt;}
.y244{bottom:176.512533pt;}
.yce{bottom:176.516267pt;}
.y9a{bottom:176.996267pt;}
.y143{bottom:177.311467pt;}
.y68{bottom:177.356400pt;}
.y257{bottom:178.111600pt;}
.y20f{bottom:179.299200pt;}
.y1c1{bottom:184.274800pt;}
.y1da{bottom:184.639067pt;}
.y13d{bottom:185.549600pt;}
.y1ad{bottom:185.549733pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yfe{bottom:190.911600pt;}
.y130{bottom:192.511600pt;}
.y243{bottom:192.512533pt;}
.ycd{bottom:192.516267pt;}
.y99{bottom:192.996267pt;}
.y67{bottom:193.356400pt;}
.y1c0{bottom:193.381467pt;}
.y1d9{bottom:193.745733pt;}
.y15e{bottom:194.111600pt;}
.y20e{bottom:195.299200pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y13c{bottom:198.349600pt;}
.y1ac{bottom:198.349733pt;}
.y1bf{bottom:202.488133pt;}
.y1d8{bottom:203.216667pt;}
.y186{bottom:205.109699pt;}
.yfd{bottom:206.911600pt;}
.y12f{bottom:208.511600pt;}
.y242{bottom:208.512533pt;}
.ycc{bottom:208.516267pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y98{bottom:208.996267pt;}
.y66{bottom:209.356400pt;}
.y15d{bottom:210.111600pt;}
.y13b{bottom:211.149600pt;}
.y1ab{bottom:211.149733pt;}
.y20d{bottom:211.299200pt;}
.y1be{bottom:211.959067pt;}
.y1d7{bottom:212.323333pt;}
.y185{bottom:212.761262pt;}
.y184{bottom:220.911067pt;}
.y1bd{bottom:221.065733pt;}
.y1d6{bottom:221.430000pt;}
.yfc{bottom:222.911600pt;}
.y13a{bottom:223.949600pt;}
.y1aa{bottom:223.949733pt;}
.y12e{bottom:224.511600pt;}
.y241{bottom:224.512533pt;}
.ycb{bottom:224.516267pt;}
.y97{bottom:224.996267pt;}
.y65{bottom:225.356400pt;}
.y15c{bottom:226.111600pt;}
.y20c{bottom:227.299200pt;}
.y1bc{bottom:230.172400pt;}
.y1d5{bottom:230.900933pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y139{bottom:236.749600pt;}
.y1a9{bottom:236.749733pt;}
.yfb{bottom:238.911600pt;}
.y1bb{bottom:239.643333pt;}
.y1d4{bottom:240.007600pt;}
.y12d{bottom:240.511600pt;}
.y240{bottom:240.512533pt;}
.yca{bottom:240.516267pt;}
.y96{bottom:240.996267pt;}
.y64{bottom:241.356400pt;}
.y15b{bottom:242.111600pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y20b{bottom:243.299200pt;}
.y1ba{bottom:248.750000pt;}
.y1d3{bottom:249.114267pt;}
.y138{bottom:249.549600pt;}
.y1a8{bottom:249.549733pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yfa{bottom:254.911600pt;}
.y12c{bottom:256.511600pt;}
.y23f{bottom:256.512533pt;}
.yc9{bottom:256.516267pt;}
.y95{bottom:256.996267pt;}
.y63{bottom:257.356400pt;}
.y15a{bottom:258.111600pt;}
.y1b9{bottom:258.220933pt;}
.y1d2{bottom:258.585200pt;}
.y20a{bottom:259.299200pt;}
.y137{bottom:265.762933pt;}
.y1a7{bottom:265.763067pt;}
.y1b8{bottom:267.327600pt;}
.y1d1{bottom:267.691867pt;}
.yf9{bottom:270.911600pt;}
.y12b{bottom:272.511600pt;}
.y23e{bottom:272.512533pt;}
.yc8{bottom:272.516267pt;}
.y94{bottom:272.996267pt;}
.y62{bottom:273.356400pt;}
.y159{bottom:274.111600pt;}
.y209{bottom:275.299200pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y1b7{bottom:276.434267pt;}
.y1d0{bottom:276.798533pt;}
.y1b6{bottom:285.905200pt;}
.y1cf{bottom:286.269467pt;}
.yf8{bottom:286.911600pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y12a{bottom:288.511600pt;}
.y23d{bottom:288.512533pt;}
.yc7{bottom:288.516267pt;}
.y93{bottom:288.996267pt;}
.y61{bottom:289.356400pt;}
.y158{bottom:290.111600pt;}
.y208{bottom:291.299200pt;}
.y1b5{bottom:295.011867pt;}
.y1ce{bottom:295.376133pt;}
.y1a6{bottom:301.020400pt;}
.yf7{bottom:302.911600pt;}
.y1b4{bottom:304.118533pt;}
.y1cd{bottom:304.482800pt;}
.y129{bottom:304.511600pt;}
.y23c{bottom:304.512533pt;}
.yc6{bottom:304.516267pt;}
.y92{bottom:304.996267pt;}
.y157{bottom:306.111600pt;}
.y207{bottom:307.299200pt;}
.y11{bottom:309.452000pt;}
.y1b3{bottom:313.589467pt;}
.y1cc{bottom:313.953733pt;}
.y1a5{bottom:317.018267pt;}
.yf6{bottom:318.911600pt;}
.y128{bottom:320.511600pt;}
.y23b{bottom:320.512533pt;}
.yc5{bottom:320.516267pt;}
.y91{bottom:320.996267pt;}
.y60{bottom:321.356400pt;}
.y156{bottom:322.111600pt;}
.y1b2{bottom:322.696133pt;}
.y1cb{bottom:323.060400pt;}
.y206{bottom:323.299200pt;}
.y1b1{bottom:331.802800pt;}
.y1ca{bottom:332.531333pt;}
.y1a4{bottom:333.018267pt;}
.y48{bottom:333.589467pt;}
.yf5{bottom:334.911600pt;}
.y127{bottom:336.511600pt;}
.y23a{bottom:336.512533pt;}
.yc4{bottom:336.516267pt;}
.y90{bottom:336.996267pt;}
.y155{bottom:338.111600pt;}
.y205{bottom:339.299200pt;}
.y18a{bottom:343.489067pt;}
.y10{bottom:343.809333pt;}
.y47{bottom:346.389467pt;}
.y1a3{bottom:349.018267pt;}
.yf4{bottom:350.911600pt;}
.y126{bottom:352.511600pt;}
.y239{bottom:352.512533pt;}
.yc3{bottom:352.516267pt;}
.y8f{bottom:352.996267pt;}
.y154{bottom:354.111600pt;}
.y189{bottom:357.089067pt;}
.y46{bottom:359.189467pt;}
.y1e3{bottom:359.622667pt;}
.yf{bottom:362.706666pt;}
.y1a2{bottom:365.018267pt;}
.yf3{bottom:366.911600pt;}
.y125{bottom:368.511600pt;}
.y238{bottom:368.512533pt;}
.yc2{bottom:368.516267pt;}
.y8e{bottom:368.996267pt;}
.y153{bottom:370.111600pt;}
.y204{bottom:371.299200pt;}
.y1a1{bottom:381.018267pt;}
.yf2{bottom:382.911600pt;}
.y45{bottom:383.328133pt;}
.y124{bottom:384.511600pt;}
.y237{bottom:384.512533pt;}
.yc1{bottom:384.516267pt;}
.y8d{bottom:384.996267pt;}
.y152{bottom:386.111600pt;}
.y5f{bottom:387.449333pt;}
.y1a0{bottom:397.018267pt;}
.y123{bottom:400.511600pt;}
.y236{bottom:400.512533pt;}
.yc0{bottom:400.516267pt;}
.y8c{bottom:400.996267pt;}
.y5e{bottom:401.849333pt;}
.y151{bottom:402.111600pt;}
.y44{bottom:407.466800pt;}
.y19f{bottom:413.018267pt;}
.yf1{bottom:414.911600pt;}
.y122{bottom:416.511600pt;}
.y235{bottom:416.512533pt;}
.ybf{bottom:416.516267pt;}
.y8b{bottom:416.996267pt;}
.y150{bottom:418.111600pt;}
.y175{bottom:418.365867pt;}
.y203{bottom:418.499200pt;}
.y43{bottom:420.266800pt;}
.y19e{bottom:429.018267pt;}
.yf0{bottom:429.311600pt;}
.ye{bottom:430.990669pt;}
.y5d{bottom:431.369333pt;}
.y121{bottom:432.511600pt;}
.y234{bottom:432.512533pt;}
.ybe{bottom:432.516267pt;}
.y8a{bottom:432.996267pt;}
.y14f{bottom:434.111600pt;}
.y174{bottom:434.365867pt;}
.y202{bottom:434.499200pt;}
.yef{bottom:443.711600pt;}
.y42{bottom:444.405467pt;}
.y19d{bottom:445.018267pt;}
.y5c{bottom:445.769333pt;}
.yd{bottom:446.990669pt;}
.y120{bottom:448.511600pt;}
.y233{bottom:448.512533pt;}
.ybd{bottom:448.516267pt;}
.y89{bottom:448.996267pt;}
.y14e{bottom:450.111600pt;}
.y173{bottom:450.365867pt;}
.y201{bottom:450.499200pt;}
.y41{bottom:457.205467pt;}
.yee{bottom:458.111600pt;}
.y5b{bottom:460.169333pt;}
.y19c{bottom:461.018267pt;}
.yc{bottom:462.990669pt;}
.y11f{bottom:464.511600pt;}
.y232{bottom:464.512533pt;}
.ybc{bottom:464.516267pt;}
.y88{bottom:464.996267pt;}
.y14d{bottom:466.111600pt;}
.y172{bottom:466.365867pt;}
.y200{bottom:466.499200pt;}
.y40{bottom:470.005467pt;}
.yed{bottom:472.511600pt;}
.y5a{bottom:474.569333pt;}
.y19b{bottom:477.018267pt;}
.yb{bottom:478.990666pt;}
.y11e{bottom:480.511600pt;}
.y231{bottom:480.512533pt;}
.ybb{bottom:480.516267pt;}
.y87{bottom:480.996267pt;}
.y14c{bottom:482.111600pt;}
.y171{bottom:482.365867pt;}
.y1ff{bottom:482.499200pt;}
.yec{bottom:486.911600pt;}
.y59{bottom:488.969333pt;}
.y19a{bottom:493.018267pt;}
.y3f{bottom:494.144133pt;}
.ya{bottom:494.990666pt;}
.y11d{bottom:496.511600pt;}
.y230{bottom:496.512533pt;}
.yba{bottom:496.516267pt;}
.y86{bottom:496.996267pt;}
.y14b{bottom:498.111600pt;}
.y170{bottom:498.365867pt;}
.y1fe{bottom:498.499200pt;}
.yeb{bottom:501.311600pt;}
.y58{bottom:503.369333pt;}
.y3e{bottom:506.944133pt;}
.y199{bottom:509.018267pt;}
.y11c{bottom:512.511600pt;}
.y22f{bottom:512.512533pt;}
.yb9{bottom:512.516267pt;}
.y85{bottom:512.996267pt;}
.y14a{bottom:514.111600pt;}
.y16f{bottom:514.365867pt;}
.y1fd{bottom:514.499200pt;}
.yea{bottom:515.711600pt;}
.y57{bottom:517.769333pt;}
.y3d{bottom:519.744133pt;}
.y198{bottom:525.018267pt;}
.y11b{bottom:528.511600pt;}
.y22e{bottom:528.512533pt;}
.yb8{bottom:528.516267pt;}
.y84{bottom:528.996267pt;}
.y149{bottom:530.111600pt;}
.y16e{bottom:530.365867pt;}
.y1fc{bottom:530.499200pt;}
.y56{bottom:532.169333pt;}
.y3c{bottom:532.544133pt;}
.y197{bottom:541.018267pt;}
.y11a{bottom:544.511600pt;}
.y22d{bottom:544.512533pt;}
.yb7{bottom:544.516267pt;}
.y83{bottom:544.996267pt;}
.y3b{bottom:545.344133pt;}
.ye9{bottom:546.111600pt;}
.y16d{bottom:546.365867pt;}
.y1fb{bottom:546.499200pt;}
.y55{bottom:546.569333pt;}
.y196{bottom:557.018267pt;}
.y3a{bottom:558.144133pt;}
.y119{bottom:560.511600pt;}
.y22c{bottom:560.512533pt;}
.yb6{bottom:560.516267pt;}
.y54{bottom:560.969333pt;}
.y82{bottom:560.996267pt;}
.ye8{bottom:562.111600pt;}
.y16c{bottom:562.365867pt;}
.y1fa{bottom:562.499200pt;}
.y39{bottom:570.944133pt;}
.y195{bottom:573.018267pt;}
.y9{bottom:573.786667pt;}
.y53{bottom:575.369333pt;}
.y118{bottom:576.511600pt;}
.y22b{bottom:576.512533pt;}
.yb5{bottom:576.516267pt;}
.y81{bottom:576.996267pt;}
.ye7{bottom:578.111600pt;}
.y16b{bottom:578.365867pt;}
.y1f9{bottom:578.499200pt;}
.y38{bottom:583.744133pt;}
.y194{bottom:589.018267pt;}
.y52{bottom:589.769333pt;}
.y117{bottom:592.511600pt;}
.y22a{bottom:592.512533pt;}
.yb4{bottom:592.516267pt;}
.y8{bottom:592.685334pt;}
.y80{bottom:592.996267pt;}
.ye6{bottom:594.111600pt;}
.y16a{bottom:594.365867pt;}
.y1f8{bottom:594.499200pt;}
.y193{bottom:605.018267pt;}
.y37{bottom:607.882800pt;}
.y116{bottom:608.511600pt;}
.y229{bottom:608.512533pt;}
.yb3{bottom:608.516267pt;}
.y7f{bottom:608.996267pt;}
.ye5{bottom:610.111600pt;}
.y169{bottom:610.365867pt;}
.y1f7{bottom:610.499200pt;}
.y192{bottom:621.018267pt;}
.y115{bottom:624.511600pt;}
.y228{bottom:624.512533pt;}
.yb2{bottom:624.516267pt;}
.y7e{bottom:624.996267pt;}
.ye4{bottom:626.111600pt;}
.y168{bottom:626.365867pt;}
.y1f6{bottom:626.499200pt;}
.y51{bottom:626.849333pt;}
.y36{bottom:632.021467pt;}
.y191{bottom:637.018267pt;}
.y114{bottom:640.511600pt;}
.y227{bottom:640.512533pt;}
.yb1{bottom:640.516267pt;}
.y7d{bottom:640.996267pt;}
.y50{bottom:641.249333pt;}
.y256{bottom:641.311467pt;}
.ye3{bottom:642.111600pt;}
.y167{bottom:642.365867pt;}
.y1f5{bottom:642.499200pt;}
.y7{bottom:645.598667pt;}
.y190{bottom:653.018267pt;}
.y35{bottom:656.160133pt;}
.y113{bottom:656.511600pt;}
.y226{bottom:656.512533pt;}
.yb0{bottom:656.516267pt;}
.y7c{bottom:656.996267pt;}
.y255{bottom:657.311467pt;}
.ye2{bottom:658.111600pt;}
.y166{bottom:658.365867pt;}
.y1f4{bottom:658.499200pt;}
.y4f{bottom:659.489333pt;}
.y3{bottom:668.977329pt;}
.y18f{bottom:669.018267pt;}
.y112{bottom:672.511600pt;}
.y225{bottom:672.512533pt;}
.yaf{bottom:672.516267pt;}
.y7b{bottom:672.996267pt;}
.y254{bottom:673.311467pt;}
.y4e{bottom:673.889467pt;}
.ye1{bottom:674.111600pt;}
.y165{bottom:674.365867pt;}
.y1f3{bottom:674.499200pt;}
.y34{bottom:680.298800pt;}
.y18e{bottom:685.018267pt;}
.y111{bottom:688.511600pt;}
.y224{bottom:688.512533pt;}
.yae{bottom:688.516267pt;}
.y7a{bottom:688.996267pt;}
.y253{bottom:689.311467pt;}
.ye0{bottom:690.111600pt;}
.y1f2{bottom:690.499200pt;}
.y4d{bottom:692.008400pt;}
.y33{bottom:693.098800pt;}
.y18d{bottom:701.018267pt;}
.y110{bottom:704.511600pt;}
.y223{bottom:704.512533pt;}
.yad{bottom:704.516267pt;}
.y79{bottom:704.996267pt;}
.y32{bottom:705.898800pt;}
.ydf{bottom:706.111600pt;}
.y1f1{bottom:706.499200pt;}
.y18c{bottom:717.018267pt;}
.y31{bottom:718.698800pt;}
.y10f{bottom:720.511600pt;}
.y222{bottom:720.512533pt;}
.yac{bottom:720.516267pt;}
.y78{bottom:720.996267pt;}
.y252{bottom:721.311467pt;}
.y182{bottom:721.854933pt;}
.yde{bottom:722.111600pt;}
.y1f0{bottom:722.499200pt;}
.y30{bottom:731.498800pt;}
.y10e{bottom:736.511600pt;}
.y221{bottom:736.512533pt;}
.yab{bottom:736.516267pt;}
.y77{bottom:736.996267pt;}
.ydd{bottom:738.111600pt;}
.y2f{bottom:744.298800pt;}
.y181{bottom:745.575600pt;}
.y4c{bottom:745.803733pt;}
.y10d{bottom:752.511600pt;}
.y220{bottom:752.512533pt;}
.yaa{bottom:752.516267pt;}
.y76{bottom:752.996267pt;}
.ydc{bottom:754.111600pt;}
.y2e{bottom:757.098800pt;}
.y180{bottom:761.374267pt;}
.y1ef{bottom:764.512800pt;}
.y10c{bottom:768.511600pt;}
.y21f{bottom:768.512533pt;}
.ya9{bottom:768.516267pt;}
.y75{bottom:768.996267pt;}
.y24d{bottom:769.986667pt;}
.ydb{bottom:770.111600pt;}
.y248{bottom:770.682667pt;}
.y4b{bottom:771.403733pt;}
.y17f{bottom:777.172933pt;}
.y1ec{bottom:780.289333pt;}
.y1e5{bottom:780.925333pt;}
.y2{bottom:781.661334pt;}
.y10b{bottom:784.511600pt;}
.y21e{bottom:784.512533pt;}
.ya8{bottom:784.516267pt;}
.y74{bottom:784.996267pt;}
.yda{bottom:786.111600pt;}
.y17e{bottom:792.971600pt;}
.y4a{bottom:797.003733pt;}
.y10a{bottom:800.511600pt;}
.y21d{bottom:800.512533pt;}
.ya7{bottom:800.516267pt;}
.y73{bottom:800.996267pt;}
.yd9{bottom:802.111600pt;}
.y17d{bottom:808.770267pt;}
.y109{bottom:816.511600pt;}
.y21c{bottom:816.512533pt;}
.ya6{bottom:816.516267pt;}
.y72{bottom:816.996267pt;}
.y49{bottom:822.603733pt;}
.y17c{bottom:824.568933pt;}
.y108{bottom:832.511600pt;}
.y21b{bottom:832.512533pt;}
.ya5{bottom:832.516267pt;}
.y71{bottom:832.996267pt;}
.yd8{bottom:834.111467pt;}
.y17b{bottom:844.141600pt;}
.y107{bottom:848.511600pt;}
.y21a{bottom:848.512533pt;}
.ya4{bottom:848.516267pt;}
.y70{bottom:848.996267pt;}
.yd7{bottom:849.311467pt;}
.y179{bottom:850.941600pt;}
.y178{bottom:857.741600pt;}
.y1{bottom:859.312000pt;}
.y106{bottom:864.511600pt;}
.y219{bottom:864.512533pt;}
.ya3{bottom:864.516267pt;}
.y6f{bottom:864.996267pt;}
.y17a{bottom:871.341600pt;}
.y105{bottom:880.511600pt;}
.y218{bottom:880.512533pt;}
.ya2{bottom:880.516267pt;}
.y6e{bottom:880.996267pt;}
.yd6{bottom:896.511600pt;}
.y217{bottom:896.512533pt;}
.ya1{bottom:896.516267pt;}
.y177{bottom:900.365467pt;}
.yd5{bottom:912.511600pt;}
.y216{bottom:912.512533pt;}
.ya0{bottom:912.516267pt;}
.y6d{bottom:912.996267pt;}
.y176{bottom:913.965467pt;}
.y28{bottom:942.270267pt;}
.y26{bottom:943.317600pt;}
.y2d{bottom:943.317733pt;}
.y2a{bottom:943.789733pt;}
.y2c{bottom:952.316667pt;}
.y29{bottom:952.788533pt;}
.yd4{bottom:957.622267pt;}
.y25{bottom:957.777600pt;}
.y6c{bottom:959.630800pt;}
.y2b{bottom:961.312823pt;}
.h24{height:11.021333pt;}
.h2a{height:14.816812pt;}
.h2d{height:15.083625pt;}
.h25{height:17.005120pt;}
.h29{height:17.663906pt;}
.h2f{height:19.330683pt;}
.h23{height:19.768392pt;}
.h1c{height:19.857067pt;}
.h27{height:20.233875pt;}
.hc{height:21.921758pt;}
.hd{height:21.932331pt;}
.h14{height:25.303200pt;}
.h7{height:28.560000pt;}
.h1d{height:30.549333pt;}
.h10{height:31.104167pt;}
.hf{height:31.437500pt;}
.he{height:31.645833pt;}
.h1f{height:32.458667pt;}
.h16{height:34.368000pt;}
.h1e{height:34.602667pt;}
.h19{height:35.131733pt;}
.ha{height:35.367188pt;}
.h17{height:36.277333pt;}
.h21{height:36.765333pt;}
.h18{height:38.186667pt;}
.h15{height:38.928000pt;}
.h11{height:39.413333pt;}
.h6{height:40.800000pt;}
.h1b{height:41.888000pt;}
.h13{height:41.888533pt;}
.h26{height:41.896533pt;}
.h3{height:42.840000pt;}
.h1a{height:43.253333pt;}
.h2{height:48.960000pt;}
.h20{height:59.658667pt;}
.h12{height:60.586667pt;}
.h5{height:69.360000pt;}
.hb{height:99.990024pt;}
.h4{height:105.826671pt;}
.h28{height:108.120000pt;}
.h2b{height:108.756000pt;}
.h2c{height:118.321333pt;}
.h2e{height:119.713333pt;}
.h22{height:232.850667pt;}
.h8{height:1020.472000pt;}
.h9{height:1020.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:59.469333pt;}
.w7{width:311.080000pt;}
.w6{width:311.160000pt;}
.w4{width:311.810667pt;}
.w8{width:311.812000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:8.878133pt;}
.x49{left:11.163200pt;}
.x48{left:13.148667pt;}
.x4e{left:15.919867pt;}
.x47{left:27.632667pt;}
.x46{left:35.447467pt;}
.x5{left:75.590533pt;}
.x11{left:76.946933pt;}
.x43{left:81.063141pt;}
.x38{left:85.907888pt;}
.x13{left:86.929067pt;}
.x1{left:90.706667pt;}
.x3b{left:92.173275pt;}
.x2{left:94.486667pt;}
.x40{left:96.231205pt;}
.xd{left:98.267733pt;}
.x16{left:106.183600pt;}
.x41{left:109.789211pt;}
.x36{left:111.202565pt;}
.x34{left:113.431877pt;}
.x37{left:117.584517pt;}
.x3e{left:126.771323pt;}
.x4a{left:130.549333pt;}
.x3f{left:135.273307pt;}
.x17{left:136.558267pt;}
.x12{left:138.012933pt;}
.x3a{left:140.343899pt;}
.x44{left:142.558133pt;}
.x42{left:143.585872pt;}
.x3d{left:144.787952pt;}
.x8{left:147.779467pt;}
.x4f{left:152.385333pt;}
.x4c{left:157.123067pt;}
.x35{left:159.773883pt;}
.x39{left:166.847941pt;}
.x3c{left:175.349925pt;}
.xc{left:176.299467pt;}
.x4{left:180.874667pt;}
.x50{left:193.446000pt;}
.x33{left:216.927323pt;}
.x32{left:219.688464pt;}
.x31{left:222.449605pt;}
.x30{left:239.001883pt;}
.x2f{left:241.763024pt;}
.x2e{left:247.278021pt;}
.x2d{left:250.039163pt;}
.x1c{left:251.579417pt;}
.x1b{left:252.568800pt;}
.x1d{left:254.148966pt;}
.x2c{left:261.076443pt;}
.x4d{left:265.586800pt;}
.x2b{left:269.352581pt;}
.x2a{left:272.113723pt;}
.x29{left:277.628720pt;}
.x28{left:280.389861pt;}
.x27{left:285.904859pt;}
.x45{left:290.815867pt;}
.x9{left:294.803200pt;}
.x26{left:302.457136pt;}
.x25{left:305.218277pt;}
.xb{left:317.483200pt;}
.x24{left:330.053979pt;}
.x23{left:335.568976pt;}
.x22{left:352.121253pt;}
.x21{left:354.882395pt;}
.x20{left:363.158533pt;}
.x3{left:404.408000pt;}
.xe{left:406.294400pt;}
.x1e{left:408.328000pt;}
.xf{left:428.974400pt;}
.x15{left:432.138133pt;}
.x14{left:459.156133pt;}
.xa{left:467.735467pt;}
.x4b{left:492.336667pt;}
.x6{left:586.745467pt;}
.x7{left:603.401467pt;}
.x18{left:621.564533pt;}
.x19{left:664.200533pt;}
.x1a{left:676.213867pt;}
.x10{left:706.334267pt;}
}




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