
    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_b86dee34d9c51e627c3cfa96.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.944000;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_a92374fd9a599c3ccac28106.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916000;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_e8a2b9154c88ed760514dd55.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.007000;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_89f1611d2703948b6e03789b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.907227;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_350a6b88ea40c35bd0d8ca12.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986000;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_148ccba089dba139efce4395.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_7898d839375c35f5e6d9da3d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_1bd3802abd3be22809f90b16.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.924000;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_c104dcc559661a3be8a574d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924000;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_67750503987df6d2ef42a504.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5abcc7d2275ea7c565b630f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_d6584b5fe366d26e22bc2f4d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b86dee34d9c51e627c3cfa96.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.944000;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_020eb214979ca0c5318c6b2d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.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:fff;src:url('chunks/assets/font_313553a2e491883807b6b89f.woff2')format("woff");}.fff{font-family:fff;line-height:0.957000;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_baa4b9a0f7dd1ddfe93c858d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.940430;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_b86dee34d9c51e627c3cfa96.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.944000;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_401e90fe363459c8e648052e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.708008;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_3551d32055487adf93389423.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;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_b86dee34d9c51e627c3cfa96.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.944000;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_b86dee34d9c51e627c3cfa96.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.944000;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_b86dee34d9c51e627c3cfa96.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.944000;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_e25ea4f285caf45d53dfc22c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.924000;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:ff18;src:url('chunks/assets/font_cc6d7b63b9cdbebca0fd87c0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v6{vertical-align:-35.964000px;}
.v2{vertical-align:-17.982000px;}
.v4{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.986000px;}
.v1{vertical-align:17.982000px;}
.v3{vertical-align:21.978000px;}
.ls20{letter-spacing:-2.052000px;}
.ls3e{letter-spacing:-1.566000px;}
.ls18{letter-spacing:-1.404000px;}
.ls88{letter-spacing:-1.134000px;}
.ls8b{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-1.026000px;}
.ls87{letter-spacing:-0.972000px;}
.ls89{letter-spacing:-0.918000px;}
.ls7a{letter-spacing:-0.900000px;}
.ls45{letter-spacing:-0.864000px;}
.ls41{letter-spacing:-0.810000px;}
.ls42{letter-spacing:-0.702000px;}
.ls78{letter-spacing:-0.675000px;}
.lsac{letter-spacing:-0.663000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls8c{letter-spacing:-0.629640px;}
.ls1c{letter-spacing:-0.594000px;}
.ls10{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.486000px;}
.lsa6{letter-spacing:-0.480000px;}
.ls8a{letter-spacing:-0.472230px;}
.ls36{letter-spacing:-0.432000px;}
.lsaa{letter-spacing:-0.429000px;}
.lsa9{letter-spacing:-0.390000px;}
.ls16{letter-spacing:-0.378000px;}
.ls77{letter-spacing:-0.360000px;}
.ls86{letter-spacing:-0.346302px;}
.ls39{letter-spacing:-0.324000px;}
.lsae{letter-spacing:-0.312000px;}
.lsa7{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.283338px;}
.ls28{letter-spacing:-0.270000px;}
.lsb0{letter-spacing:-0.234000px;}
.ls76{letter-spacing:-0.225000px;}
.ls17{letter-spacing:-0.220374px;}
.ls1d{letter-spacing:-0.216000px;}
.lsa8{letter-spacing:-0.195000px;}
.lsa5{letter-spacing:-0.192000px;}
.ls3a{letter-spacing:-0.188892px;}
.ls51{letter-spacing:-0.162000px;}
.ls43{letter-spacing:-0.157410px;}
.lsad{letter-spacing:-0.156000px;}
.ls8f{letter-spacing:-0.135000px;}
.ls79{letter-spacing:-0.131175px;}
.ls3c{letter-spacing:-0.108000px;}
.ls50{letter-spacing:-0.094446px;}
.lsaf{letter-spacing:-0.078000px;}
.ls3d{letter-spacing:-0.062964px;}
.ls19{letter-spacing:-0.054000px;}
.lsab{letter-spacing:-0.039000px;}
.ls1a{letter-spacing:-0.031482px;}
.lse{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.000015px;}
.ls1{letter-spacing:0.000072px;}
.ls95{letter-spacing:0.000093px;}
.ls6{letter-spacing:0.000240px;}
.lsd{letter-spacing:0.000384px;}
.ls46{letter-spacing:0.000600px;}
.ls7f{letter-spacing:0.006000px;}
.ls80{letter-spacing:0.006600px;}
.ls68{letter-spacing:0.008400px;}
.ls67{letter-spacing:0.010200px;}
.ls57{letter-spacing:0.017640px;}
.ls56{letter-spacing:0.017808px;}
.ls55{letter-spacing:0.030000px;}
.ls37{letter-spacing:0.031482px;}
.ls71{letter-spacing:0.054000px;}
.ls69{letter-spacing:0.073200px;}
.ls9c{letter-spacing:0.078000px;}
.lsb3{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.094446px;}
.ls2d{letter-spacing:0.108000px;}
.ls9b{letter-spacing:0.156000px;}
.ls7{letter-spacing:0.162000px;}
.ls5d{letter-spacing:0.165672px;}
.ls5e{letter-spacing:0.179208px;}
.ls62{letter-spacing:0.181272px;}
.ls63{letter-spacing:0.193008px;}
.ls7c{letter-spacing:0.193800px;}
.ls9f{letter-spacing:0.195000px;}
.ls53{letter-spacing:0.209880px;}
.ls2{letter-spacing:0.216000px;}
.ls5b{letter-spacing:0.216840px;}
.ls33{letter-spacing:0.217200px;}
.ls73{letter-spacing:0.220374px;}
.lsb2{letter-spacing:0.225000px;}
.ls4e{letter-spacing:0.262200px;}
.ls83{letter-spacing:0.262215px;}
.ls54{letter-spacing:0.262350px;}
.ls4f{letter-spacing:0.262500px;}
.ls27{letter-spacing:0.270000px;}
.ls61{letter-spacing:0.274440px;}
.ls5f{letter-spacing:0.275040px;}
.ls40{letter-spacing:0.283338px;}
.ls84{letter-spacing:0.292500px;}
.ls65{letter-spacing:0.314208px;}
.ls58{letter-spacing:0.314640px;}
.ls85{letter-spacing:0.314820px;}
.ls64{letter-spacing:0.315072px;}
.ls2e{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.346302px;}
.ls9a{letter-spacing:0.351000px;}
.ls81{letter-spacing:0.352800px;}
.ls4a{letter-spacing:0.360000px;}
.ls5a{letter-spacing:0.371400px;}
.ls5c{letter-spacing:0.372000px;}
.ls49{letter-spacing:0.375600px;}
.lsb{letter-spacing:0.377784px;}
.ls74{letter-spacing:0.378000px;}
.ls48{letter-spacing:0.382500px;}
.ls4b{letter-spacing:0.382800px;}
.ls91{letter-spacing:0.384000px;}
.ls35{letter-spacing:0.385200px;}
.ls52{letter-spacing:0.405000px;}
.ls9e{letter-spacing:0.429000px;}
.ls30{letter-spacing:0.432000px;}
.ls7e{letter-spacing:0.433008px;}
.ls4c{letter-spacing:0.449400px;}
.ls4d{letter-spacing:0.450000px;}
.ls60{letter-spacing:0.471000px;}
.lsf{letter-spacing:0.472230px;}
.ls7d{letter-spacing:0.476472px;}
.ls3f{letter-spacing:0.486000px;}
.ls9d{letter-spacing:0.526500px;}
.ls59{letter-spacing:0.539400px;}
.ls31{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.550935px;}
.ls2c{letter-spacing:0.558240px;}
.ls96{letter-spacing:0.565500px;}
.ls3b{letter-spacing:0.566676px;}
.ls4{letter-spacing:0.583608px;}
.ls8{letter-spacing:0.588240px;}
.ls14{letter-spacing:0.594000px;}
.ls9{letter-spacing:0.598158px;}
.ls94{letter-spacing:0.624000px;}
.ls7b{letter-spacing:0.630000px;}
.ls32{letter-spacing:0.634800px;}
.ls3{letter-spacing:0.643872px;}
.ls22{letter-spacing:0.648000px;}
.ls99{letter-spacing:0.702000px;}
.ls2a{letter-spacing:0.756000px;}
.lsa2{letter-spacing:0.768000px;}
.ls97{letter-spacing:0.780000px;}
.ls0{letter-spacing:0.810000px;}
.lsa0{letter-spacing:0.819000px;}
.ls5{letter-spacing:0.864000px;}
.lsa3{letter-spacing:0.960000px;}
.ls23{letter-spacing:0.972000px;}
.lsb1{letter-spacing:1.002000px;}
.lsa{letter-spacing:1.026000px;}
.ls2b{letter-spacing:1.045800px;}
.ls2f{letter-spacing:1.080000px;}
.ls75{letter-spacing:1.134000px;}
.ls8d{letter-spacing:1.188000px;}
.ls25{letter-spacing:1.196316px;}
.ls26{letter-spacing:1.242000px;}
.ls1f{letter-spacing:1.296000px;}
.ls90{letter-spacing:1.392000px;}
.ls21{letter-spacing:1.404000px;}
.ls70{letter-spacing:1.434600px;}
.ls47{letter-spacing:1.458000px;}
.ls38{letter-spacing:1.512000px;}
.ls98{letter-spacing:1.560000px;}
.ls44{letter-spacing:1.674000px;}
.ls82{letter-spacing:1.743000px;}
.lsa1{letter-spacing:1.794000px;}
.ls72{letter-spacing:1.836000px;}
.ls92{letter-spacing:1.920000px;}
.lsa4{letter-spacing:2.016000px;}
.ls24{letter-spacing:2.052000px;}
.ls6f{letter-spacing:2.103600px;}
.ls6d{letter-spacing:2.121600px;}
.ls8e{letter-spacing:2.256000px;}
.ls6e{letter-spacing:2.287200px;}
.ls6b{letter-spacing:2.693400px;}
.ls6a{letter-spacing:2.694000px;}
.ls93{letter-spacing:3.264000px;}
.ls29{letter-spacing:3.294000px;}
.ls66{letter-spacing:3.436200px;}
.ls34{letter-spacing:6.066600px;}
.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;}
}
.ws1{word-spacing:-31.482000px;}
.ws3e{word-spacing:-16.470000px;}
.ws13{word-spacing:-15.012000px;}
.ws5{word-spacing:-14.301000px;}
.ws99{word-spacing:-13.725000px;}
.wsc{word-spacing:-13.284000px;}
.ws7d{word-spacing:-12.892500px;}
.wsc3{word-spacing:-12.798000px;}
.ws9a{word-spacing:-12.510000px;}
.ws46{word-spacing:-12.474000px;}
.ws3c{word-spacing:-12.366000px;}
.ws98{word-spacing:-12.285000px;}
.ws9{word-spacing:-12.258000px;}
.wsb{word-spacing:-12.204000px;}
.ws7c{word-spacing:-12.150000px;}
.ws43{word-spacing:-11.988000px;}
.wse9{word-spacing:-11.895000px;}
.ws47{word-spacing:-11.880000px;}
.wseb{word-spacing:-11.856000px;}
.ws78{word-spacing:-11.772000px;}
.ws48{word-spacing:-11.718000px;}
.ws3f{word-spacing:-11.664000px;}
.ws7b{word-spacing:-11.556000px;}
.ws45{word-spacing:-11.502000px;}
.wsea{word-spacing:-11.466000px;}
.ws79{word-spacing:-11.448000px;}
.ws41{word-spacing:-11.286000px;}
.wsa{word-spacing:-11.232000px;}
.ws7a{word-spacing:-11.124000px;}
.ws42{word-spacing:-11.016000px;}
.ws40{word-spacing:-10.908000px;}
.wse7{word-spacing:-10.896000px;}
.wse8{word-spacing:-10.704000px;}
.ws3b{word-spacing:-10.692000px;}
.ws12a{word-spacing:-10.215000px;}
.ws12{word-spacing:-9.602010px;}
.ws11{word-spacing:-8.349726px;}
.ws10{word-spacing:-8.342730px;}
.ws7f{word-spacing:-8.264025px;}
.ws7e{word-spacing:-8.211555px;}
.ws97{word-spacing:-8.001675px;}
.wsd{word-spacing:-7.744572px;}
.ws39{word-spacing:-7.713090px;}
.wsf{word-spacing:-7.697349px;}
.ws0{word-spacing:-7.618644px;}
.wse{word-spacing:-7.524198px;}
.ws6{word-spacing:-7.492716px;}
.wsc2{word-spacing:-7.461234px;}
.ws3d{word-spacing:-7.429752px;}
.ws96{word-spacing:-7.366788px;}
.ws3{word-spacing:-7.240860px;}
.ws37{word-spacing:-7.177896px;}
.ws2{word-spacing:-7.146414px;}
.ws8{word-spacing:-7.114932px;}
.ws3a{word-spacing:-7.083450px;}
.ws44{word-spacing:-6.989004px;}
.ws38{word-spacing:-6.957522px;}
.wsec{word-spacing:-6.934785px;}
.ws7{word-spacing:-6.926040px;}
.ws4{word-spacing:-6.863076px;}
.ws14{word-spacing:-6.807108px;}
.wsc4{word-spacing:-6.800112px;}
.wsc5{word-spacing:-6.674184px;}
.wsc6{word-spacing:-6.516774px;}
.ws32{word-spacing:-4.158000px;}
.ws31{word-spacing:-4.104000px;}
.wsdf{word-spacing:-3.555000px;}
.wse5{word-spacing:-3.465000px;}
.ws8d{word-spacing:-3.420000px;}
.ws133{word-spacing:-3.375000px;}
.ws110{word-spacing:-3.354000px;}
.wsb2{word-spacing:-3.285000px;}
.ws29{word-spacing:-3.186000px;}
.ws8c{word-spacing:-3.150000px;}
.ws60{word-spacing:-3.132000px;}
.ws17{word-spacing:-3.078000px;}
.ws1d{word-spacing:-3.024000px;}
.ws10e{word-spacing:-3.003000px;}
.wsa0{word-spacing:-2.970000px;}
.wsf4{word-spacing:-2.964000px;}
.wsb9{word-spacing:-2.925000px;}
.ws1f{word-spacing:-2.916000px;}
.ws51{word-spacing:-2.862000px;}
.ws57{word-spacing:-2.808000px;}
.ws1c{word-spacing:-2.754000px;}
.ws6b{word-spacing:-2.700000px;}
.ws36{word-spacing:-2.664000px;}
.wsd3{word-spacing:-2.646000px;}
.ws8b{word-spacing:-2.592000px;}
.ws4f{word-spacing:-2.538000px;}
.ws11a{word-spacing:-2.496000px;}
.wscb{word-spacing:-2.484000px;}
.wsac{word-spacing:-2.475000px;}
.ws35{word-spacing:-2.430000px;}
.ws4e{word-spacing:-2.376000px;}
.ws64{word-spacing:-2.268000px;}
.ws10f{word-spacing:-2.262000px;}
.ws10d{word-spacing:-2.223000px;}
.wsf1{word-spacing:-2.208000px;}
.ws132{word-spacing:-2.205000px;}
.ws34{word-spacing:-2.160000px;}
.ws129{word-spacing:-2.106000px;}
.ws87{word-spacing:-2.052000px;}
.ws12b{word-spacing:-2.028000px;}
.ws1e{word-spacing:-1.998000px;}
.ws11b{word-spacing:-1.989000px;}
.wsd6{word-spacing:-1.836000px;}
.wsef{word-spacing:-1.824000px;}
.wse1{word-spacing:-1.800000px;}
.ws100{word-spacing:-1.755000px;}
.ws22{word-spacing:-1.728000px;}
.ws62{word-spacing:-1.674000px;}
.wsa9{word-spacing:-1.665000px;}
.ws5e{word-spacing:-1.620000px;}
.ws6f{word-spacing:-1.566000px;}
.ws4a{word-spacing:-1.512000px;}
.ws28{word-spacing:-1.458000px;}
.ws124{word-spacing:-1.404000px;}
.wsca{word-spacing:-1.350000px;}
.ws10c{word-spacing:-1.326000px;}
.ws8e{word-spacing:-1.305000px;}
.ws5a{word-spacing:-1.296000px;}
.ws117{word-spacing:-1.287000px;}
.wsb6{word-spacing:-1.260000px;}
.ws101{word-spacing:-1.092000px;}
.ws23{word-spacing:-1.080000px;}
.ws95{word-spacing:-0.945000px;}
.wsd2{word-spacing:-0.918000px;}
.wsa6{word-spacing:-0.900000px;}
.ws113{word-spacing:-0.897000px;}
.wsd4{word-spacing:-0.864000px;}
.wsb0{word-spacing:-0.810000px;}
.ws104{word-spacing:-0.780000px;}
.ws12f{word-spacing:-0.765000px;}
.ws6c{word-spacing:-0.756000px;}
.ws102{word-spacing:-0.741000px;}
.wsa7{word-spacing:-0.675000px;}
.ws123{word-spacing:-0.663000px;}
.ws91{word-spacing:-0.630000px;}
.ws71{word-spacing:-0.594000px;}
.ws8f{word-spacing:-0.585000px;}
.ws77{word-spacing:-0.486000px;}
.ws92{word-spacing:-0.450000px;}
.ws9f{word-spacing:-0.432000px;}
.wse6{word-spacing:-0.405000px;}
.ws119{word-spacing:-0.390000px;}
.ws25{word-spacing:-0.324000px;}
.ws80{word-spacing:-0.288585px;}
.wscc{word-spacing:-0.270000px;}
.ws94{word-spacing:-0.262350px;}
.ws10b{word-spacing:-0.234000px;}
.ws33{word-spacing:-0.216000px;}
.ws120{word-spacing:-0.195000px;}
.ws73{word-spacing:-0.162000px;}
.ws55{word-spacing:-0.054000px;}
.ws9c{word-spacing:-0.026235px;}
.ws15{word-spacing:0.000000px;}
.wsab{word-spacing:0.045000px;}
.ws122{word-spacing:0.078000px;}
.wsb4{word-spacing:0.090000px;}
.ws8a{word-spacing:0.094446px;}
.ws9b{word-spacing:0.104940px;}
.wse0{word-spacing:0.135000px;}
.wscd{word-spacing:0.188892px;}
.ws103{word-spacing:0.195000px;}
.wsa1{word-spacing:0.216000px;}
.wsa8{word-spacing:0.225000px;}
.wsaa{word-spacing:0.270000px;}
.wsf3{word-spacing:0.288000px;}
.ws74{word-spacing:0.324000px;}
.wsd5{word-spacing:0.378000px;}
.wsfd{word-spacing:0.429000px;}
.wsf2{word-spacing:0.480000px;}
.ws75{word-spacing:0.486000px;}
.ws52{word-spacing:0.540000px;}
.wsa3{word-spacing:0.585000px;}
.ws2e{word-spacing:0.594000px;}
.ws53{word-spacing:0.648000px;}
.ws115{word-spacing:0.663000px;}
.wsa4{word-spacing:0.675000px;}
.wsd1{word-spacing:0.702000px;}
.wsae{word-spacing:0.720000px;}
.wsc0{word-spacing:0.765000px;}
.ws2b{word-spacing:0.810000px;}
.wsb1{word-spacing:0.855000px;}
.ws11e{word-spacing:0.858000px;}
.ws4b{word-spacing:0.918000px;}
.ws128{word-spacing:0.936000px;}
.ws11f{word-spacing:1.014000px;}
.ws18{word-spacing:1.026000px;}
.ws90{word-spacing:1.035000px;}
.wsdb{word-spacing:1.080000px;}
.wsdc{word-spacing:1.170000px;}
.ws56{word-spacing:1.242000px;}
.wsc1{word-spacing:1.260000px;}
.ws24{word-spacing:1.296000px;}
.ws9d{word-spacing:1.458000px;}
.wse3{word-spacing:1.485000px;}
.ws5c{word-spacing:1.512000px;}
.ws10a{word-spacing:1.560000px;}
.ws69{word-spacing:1.566000px;}
.wsbd{word-spacing:1.575000px;}
.wsad{word-spacing:1.620000px;}
.ws1b{word-spacing:1.674000px;}
.wsbe{word-spacing:1.710000px;}
.ws11c{word-spacing:1.755000px;}
.ws76{word-spacing:1.782000px;}
.ws68{word-spacing:1.944000px;}
.wsd7{word-spacing:1.998000px;}
.ws50{word-spacing:2.052000px;}
.ws5f{word-spacing:2.106000px;}
.wsbc{word-spacing:2.115000px;}
.wsb3{word-spacing:2.160000px;}
.ws11d{word-spacing:2.184000px;}
.ws84{word-spacing:2.322000px;}
.ws93{word-spacing:2.340000px;}
.ws83{word-spacing:2.430000px;}
.ws5b{word-spacing:2.484000px;}
.ws121{word-spacing:2.496000px;}
.wsba{word-spacing:2.520000px;}
.ws112{word-spacing:2.535000px;}
.wsb8{word-spacing:2.610000px;}
.ws2a{word-spacing:2.646000px;}
.ws105{word-spacing:2.652000px;}
.ws12d{word-spacing:2.655000px;}
.wsb7{word-spacing:2.700000px;}
.ws2f{word-spacing:2.754000px;}
.wsbb{word-spacing:2.790000px;}
.wsd8{word-spacing:2.808000px;}
.ws21{word-spacing:2.862000px;}
.ws126{word-spacing:2.886000px;}
.ws70{word-spacing:2.916000px;}
.ws106{word-spacing:2.964000px;}
.ws125{word-spacing:3.003000px;}
.wsfa{word-spacing:3.042000px;}
.wse4{word-spacing:3.105000px;}
.ws58{word-spacing:3.132000px;}
.wscf{word-spacing:3.186000px;}
.wsf8{word-spacing:3.198000px;}
.ws2c{word-spacing:3.240000px;}
.ws59{word-spacing:3.294000px;}
.ws114{word-spacing:3.315000px;}
.wsde{word-spacing:3.330000px;}
.wsdd{word-spacing:3.375000px;}
.ws27{word-spacing:3.456000px;}
.ws108{word-spacing:3.471000px;}
.wsd0{word-spacing:3.510000px;}
.ws118{word-spacing:3.549000px;}
.ws20{word-spacing:3.564000px;}
.ws130{word-spacing:3.645000px;}
.wsf9{word-spacing:3.666000px;}
.ws107{word-spacing:3.705000px;}
.ws12c{word-spacing:3.744000px;}
.ws116{word-spacing:3.822000px;}
.wsa2{word-spacing:3.834000px;}
.wse2{word-spacing:3.870000px;}
.wsc7{word-spacing:3.888000px;}
.wsfb{word-spacing:3.900000px;}
.ws127{word-spacing:3.939000px;}
.wsf5{word-spacing:3.978000px;}
.wsc9{word-spacing:3.996000px;}
.wsa5{word-spacing:4.005000px;}
.ws26{word-spacing:4.050000px;}
.ws9e{word-spacing:4.104000px;}
.ws85{word-spacing:4.158000px;}
.wsb5{word-spacing:4.185000px;}
.wsc8{word-spacing:4.212000px;}
.wsfe{word-spacing:4.251000px;}
.ws6e{word-spacing:4.320000px;}
.ws111{word-spacing:4.329000px;}
.wsfc{word-spacing:4.368000px;}
.ws30{word-spacing:4.374000px;}
.wsf0{word-spacing:4.464000px;}
.ws6d{word-spacing:4.536000px;}
.wsd9{word-spacing:4.656000px;}
.wsf6{word-spacing:4.719000px;}
.ws66{word-spacing:4.752000px;}
.ws61{word-spacing:4.860000px;}
.wsbf{word-spacing:4.905000px;}
.ws5d{word-spacing:4.914000px;}
.wsaf{word-spacing:4.950000px;}
.ws65{word-spacing:4.968000px;}
.ws4d{word-spacing:5.076000px;}
.ws12e{word-spacing:5.085000px;}
.ws89{word-spacing:5.184000px;}
.ws54{word-spacing:5.238000px;}
.ws88{word-spacing:5.400000px;}
.wsed{word-spacing:5.424000px;}
.wsda{word-spacing:5.472000px;}
.ws72{word-spacing:5.616000px;}
.ws4c{word-spacing:5.670000px;}
.ws109{word-spacing:5.694000px;}
.ws6a{word-spacing:5.724000px;}
.ws63{word-spacing:5.832000px;}
.ws86{word-spacing:5.886000px;}
.wsff{word-spacing:5.928000px;}
.wsf7{word-spacing:5.967000px;}
.wsce{word-spacing:6.048000px;}
.ws16{word-spacing:6.102000px;}
.ws19{word-spacing:6.156000px;}
.wsee{word-spacing:6.576000px;}
.ws49{word-spacing:6.588000px;}
.ws67{word-spacing:6.696000px;}
.ws1a{word-spacing:6.750000px;}
.ws131{word-spacing:6.840000px;}
.ws2d{word-spacing:8.208000px;}
.ws82{word-spacing:1559.890200px;}
.ws81{word-spacing:1569.670200px;}
._5{margin-left:-7.219836px;}
._6{margin-left:-5.292000px;}
._3{margin-left:-4.024200px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.242000px;}
._1{width:1.294800px;}
._4{width:2.431584px;}
._8{width:3.772632px;}
._7{width:4.988400px;}
._9{width:9.419400px;}
._c{width:22.887000px;}
._b{width:24.447000px;}
._a{width:48.276000px;}
.fc3{color:rgb(236,0,140);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(35,31,32);}
.fs10{font-size:22.737000px;}
.fs8{font-size:24.486000px;}
.fse{font-size:26.235000px;}
.fs2{font-size:31.482000px;}
.fs7{font-size:38.478000px;}
.fsf{font-size:39.000000px;}
.fsb{font-size:39.708144px;}
.fs0{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:39.721200px;}
.y8f{bottom:78.661350px;}
.y4c{bottom:78.661500px;}
.y156{bottom:83.157000px;}
.y4b{bottom:91.261500px;}
.y1eb{bottom:91.469850px;}
.y237{bottom:91.474500px;}
.y18f{bottom:94.323900px;}
.yf5{bottom:95.311350px;}
.y102{bottom:95.311500px;}
.y8e{bottom:95.345700px;}
.yc7{bottom:95.526450px;}
.y154{bottom:95.793300px;}
.yce{bottom:95.857200px;}
.yd4{bottom:96.399600px;}
.y103{bottom:99.807000px;}
.y155{bottom:100.288800px;}
.y4a{bottom:103.861500px;}
.y236{bottom:104.287500px;}
.y1ea{bottom:104.703300px;}
.y18e{bottom:109.986300px;}
.yf3{bottom:111.961350px;}
.y100{bottom:111.961500px;}
.y8d{bottom:112.030050px;}
.yc6{bottom:112.391550px;}
.y153{bottom:112.925250px;}
.ycd{bottom:113.052900px;}
.yd3{bottom:114.137700px;}
.yf4{bottom:116.456850px;}
.y101{bottom:116.457000px;}
.y49{bottom:116.461500px;}
.y1e9{bottom:117.511800px;}
.y235{bottom:117.525750px;}
.yf2{bottom:128.611350px;}
.yff{bottom:128.611500px;}
.y8c{bottom:128.714400px;}
.yc5{bottom:129.256650px;}
.y152{bottom:130.057200px;}
.ycc{bottom:130.248750px;}
.y1e8{bottom:130.320150px;}
.y234{bottom:130.338750px;}
.yd2{bottom:131.875800px;}
.y48{bottom:132.558000px;}
.y18d{bottom:139.004550px;}
.y47{bottom:141.661500px;}
.y233{bottom:143.151750px;}
.y1e7{bottom:143.553750px;}
.yf0{bottom:145.261350px;}
.yfe{bottom:145.261500px;}
.y8b{bottom:145.398600px;}
.yc4{bottom:146.121750px;}
.y151{bottom:147.189150px;}
.ycb{bottom:147.444450px;}
.yf1{bottom:149.756850px;}
.y18c{bottom:155.716950px;}
.y1e6{bottom:156.362100px;}
.y232{bottom:156.390000px;}
.y46{bottom:157.758000px;}
.yef{bottom:161.911350px;}
.yfd{bottom:161.911500px;}
.yd1{bottom:161.919750px;}
.y8a{bottom:162.083100px;}
.yc3{bottom:162.986850px;}
.y150{bottom:164.320950px;}
.yca{bottom:164.640150px;}
.y1e5{bottom:169.170450px;}
.y231{bottom:169.203000px;}
.yed{bottom:178.561350px;}
.yfb{bottom:178.561500px;}
.y88{bottom:178.767300px;}
.yd0{bottom:179.657850px;}
.yc2{bottom:179.851950px;}
.y14e{bottom:181.452900px;}
.yc9{bottom:181.836000px;}
.y230{bottom:182.016000px;}
.y1e4{bottom:182.404050px;}
.yee{bottom:183.056850px;}
.yfc{bottom:183.057000px;}
.y89{bottom:183.262800px;}
.y1d{bottom:183.712500px;}
.y18b{bottom:184.735350px;}
.y14f{bottom:185.948400px;}
.yec{bottom:195.211350px;}
.yfa{bottom:195.211500px;}
.y1e3{bottom:195.212550px;}
.y22f{bottom:195.254250px;}
.y87{bottom:195.451650px;}
.yc1{bottom:196.717050px;}
.ycf{bottom:197.395950px;}
.y14d{bottom:198.584850px;}
.yc8{bottom:199.031700px;}
.y34{bottom:200.362500px;}
.y1c{bottom:200.411250px;}
.y18a{bottom:201.447900px;}
.y1e2{bottom:208.020750px;}
.y22e{bottom:208.067250px;}
.yeb{bottom:211.861350px;}
.yf9{bottom:211.861500px;}
.y86{bottom:212.136000px;}
.yc0{bottom:213.582150px;}
.y14c{bottom:215.716800px;}
.y33{bottom:217.012500px;}
.y1b{bottom:217.110000px;}
.y189{bottom:218.160300px;}
.y22d{bottom:220.880250px;}
.y1e1{bottom:221.254350px;}
.yea{bottom:228.511350px;}
.yf7{bottom:228.511500px;}
.y85{bottom:228.820350px;}
.ybf{bottom:230.447250px;}
.y14a{bottom:232.848750px;}
.yf8{bottom:233.007000px;}
.y32{bottom:233.662500px;}
.y22c{bottom:233.693250px;}
.y1a{bottom:233.808750px;}
.y1e0{bottom:234.062850px;}
.y188{bottom:234.872700px;}
.ydd{bottom:235.846050px;}
.y14b{bottom:237.344250px;}
.ye9{bottom:245.161350px;}
.yf6{bottom:245.161500px;}
.y84{bottom:245.504550px;}
.y1df{bottom:246.871200px;}
.y22b{bottom:246.931500px;}
.ybe{bottom:247.312350px;}
.ydc{bottom:249.346050px;}
.y149{bottom:249.980550px;}
.y31{bottom:250.312500px;}
.y19{bottom:250.507650px;}
.y187{bottom:251.585100px;}
.y1de{bottom:259.679550px;}
.y22a{bottom:259.744500px;}
.ye8{bottom:261.811350px;}
.y83{bottom:262.189050px;}
.ydb{bottom:262.846050px;}
.ybd{bottom:264.177450px;}
.y30{bottom:266.962500px;}
.y148{bottom:267.112500px;}
.y18{bottom:267.206400px;}
.y186{bottom:268.297650px;}
.y229{bottom:272.557500px;}
.y1dd{bottom:272.913150px;}
.yda{bottom:276.346050px;}
.ye7{bottom:278.461350px;}
.y82{bottom:278.873250px;}
.y116{bottom:279.766050px;}
.ybc{bottom:281.042550px;}
.y2f{bottom:283.612500px;}
.y17{bottom:283.905150px;}
.y146{bottom:284.244450px;}
.y185{bottom:285.010050px;}
.y1dc{bottom:285.721500px;}
.y228{bottom:285.795600px;}
.y147{bottom:288.739950px;}
.yd9{bottom:289.846050px;}
.y115{bottom:293.266050px;}
.y81{bottom:295.557600px;}
.ybb{bottom:297.907650px;}
.y1db{bottom:298.530000px;}
.y227{bottom:298.608600px;}
.y2e{bottom:300.262500px;}
.y16{bottom:300.603900px;}
.y145{bottom:301.376400px;}
.yd8{bottom:303.346050px;}
.y114{bottom:306.766050px;}
.y1da{bottom:311.338350px;}
.y226{bottom:311.846850px;}
.y80{bottom:312.241950px;}
.y184{bottom:314.028450px;}
.yba{bottom:314.772750px;}
.y132{bottom:315.586200px;}
.yd7{bottom:316.846050px;}
.y2d{bottom:316.912500px;}
.y15{bottom:317.302800px;}
.y144{bottom:318.508350px;}
.y113{bottom:320.266050px;}
.y1d9{bottom:324.571950px;}
.y225{bottom:324.659850px;}
.y7f{bottom:328.926300px;}
.y131{bottom:329.086200px;}
.yd6{bottom:330.346050px;}
.y183{bottom:330.740850px;}
.yb9{bottom:331.637850px;}
.y2c{bottom:333.562500px;}
.y112{bottom:333.766050px;}
.y14{bottom:334.001550px;}
.y143{bottom:335.640150px;}
.y1d8{bottom:337.380300px;}
.y224{bottom:337.472850px;}
.y130{bottom:342.586200px;}
.yd5{bottom:343.846050px;}
.y7e{bottom:345.610500px;}
.y111{bottom:347.266050px;}
.y182{bottom:347.453250px;}
.yb8{bottom:348.502950px;}
.y1d7{bottom:350.188650px;}
.y2b{bottom:350.212500px;}
.y13{bottom:350.700300px;}
.y223{bottom:350.711100px;}
.y142{bottom:352.772100px;}
.y12f{bottom:356.086200px;}
.y110{bottom:360.766050px;}
.y7d{bottom:362.294850px;}
.y1d6{bottom:363.422250px;}
.y222{bottom:363.524100px;}
.ye3{bottom:363.645600px;}
.y181{bottom:364.165650px;}
.ye4{bottom:364.695600px;}
.ye5{bottom:365.145600px;}
.yb7{bottom:365.368050px;}
.y2a{bottom:366.862500px;}
.y12{bottom:367.399050px;}
.y12e{bottom:369.586200px;}
.y141{bottom:369.904050px;}
.y10f{bottom:374.266050px;}
.y1d5{bottom:376.230600px;}
.y221{bottom:376.762200px;}
.y7c{bottom:378.979200px;}
.y180{bottom:380.878200px;}
.yb6{bottom:382.233150px;}
.y12d{bottom:383.086200px;}
.y29{bottom:383.512500px;}
.y11{bottom:384.097800px;}
.y140{bottom:387.036000px;}
.y10e{bottom:387.766050px;}
.y1d4{bottom:389.038950px;}
.y220{bottom:389.575200px;}
.y7b{bottom:395.663550px;}
.y12c{bottom:396.586200px;}
.y17f{bottom:397.590600px;}
.yb5{bottom:399.098250px;}
.y28{bottom:400.162500px;}
.y10{bottom:400.796700px;}
.y10d{bottom:401.266050px;}
.y1d3{bottom:401.847450px;}
.y21f{bottom:402.388200px;}
.y13f{bottom:404.167950px;}
.y12b{bottom:410.086200px;}
.y7a{bottom:412.347900px;}
.y17e{bottom:414.303000px;}
.y10c{bottom:414.766050px;}
.y1d2{bottom:415.081050px;}
.y21e{bottom:415.201200px;}
.yb4{bottom:415.963350px;}
.y27{bottom:416.812500px;}
.yf{bottom:417.495450px;}
.y13e{bottom:421.299750px;}
.y12a{bottom:423.586200px;}
.y1d1{bottom:427.889400px;}
.y10b{bottom:428.266050px;}
.y21d{bottom:428.439450px;}
.y79{bottom:429.032250px;}
.y17d{bottom:431.015550px;}
.yb3{bottom:432.828300px;}
.y26{bottom:433.462500px;}
.yd{bottom:434.194200px;}
.y129{bottom:437.086200px;}
.y13d{bottom:438.431700px;}
.ye{bottom:438.689700px;}
.y1d0{bottom:440.697750px;}
.y21c{bottom:441.252450px;}
.y10a{bottom:441.766050px;}
.y78{bottom:445.716450px;}
.y17c{bottom:447.727950px;}
.yb2{bottom:449.693550px;}
.y25{bottom:450.112500px;}
.y128{bottom:450.586200px;}
.yc{bottom:450.892950px;}
.y1cf{bottom:453.931350px;}
.y21b{bottom:454.490700px;}
.y109{bottom:455.266050px;}
.y77{bottom:462.400800px;}
.y127{bottom:464.086200px;}
.y17b{bottom:464.440350px;}
.yb1{bottom:466.558650px;}
.y1ce{bottom:466.739700px;}
.y24{bottom:466.762500px;}
.y21a{bottom:467.303700px;}
.yb{bottom:467.591850px;}
.y108{bottom:468.766050px;}
.y19e{bottom:475.246200px;}
.y126{bottom:477.586200px;}
.y76{bottom:479.085150px;}
.y1cd{bottom:479.548200px;}
.y219{bottom:480.116700px;}
.y17a{bottom:481.152750px;}
.y107{bottom:482.266050px;}
.y23{bottom:483.412500px;}
.yb0{bottom:483.423600px;}
.y9{bottom:484.290600px;}
.y19d{bottom:488.746200px;}
.ya{bottom:488.786100px;}
.y125{bottom:491.086200px;}
.y1cc{bottom:492.781650px;}
.y218{bottom:493.354950px;}
.y106{bottom:495.766050px;}
.y75{bottom:495.769500px;}
.y179{bottom:497.865300px;}
.y22{bottom:500.062500px;}
.yaf{bottom:500.288700px;}
.y8{bottom:500.989350px;}
.y19c{bottom:502.246200px;}
.y124{bottom:504.586200px;}
.y1cb{bottom:505.590150px;}
.y217{bottom:506.167950px;}
.y105{bottom:509.266050px;}
.y74{bottom:512.453850px;}
.y178{bottom:514.577700px;}
.y19b{bottom:515.746200px;}
.y21{bottom:516.712500px;}
.yae{bottom:517.153950px;}
.y7{bottom:517.688100px;}
.y123{bottom:518.086200px;}
.y1ca{bottom:518.398500px;}
.y216{bottom:518.980800px;}
.y104{bottom:522.766050px;}
.y73{bottom:529.138200px;}
.y19a{bottom:529.246200px;}
.y177{bottom:531.290100px;}
.y122{bottom:531.586200px;}
.y1c9{bottom:531.632100px;}
.y215{bottom:532.219050px;}
.y20{bottom:533.362500px;}
.yad{bottom:534.018900px;}
.y6{bottom:534.387000px;}
.y11d{bottom:542.565600px;}
.y199{bottom:542.746200px;}
.y11e{bottom:543.615750px;}
.y11f{bottom:544.065600px;}
.y1c8{bottom:544.440450px;}
.y214{bottom:545.032050px;}
.y121{bottom:545.086200px;}
.y72{bottom:545.822550px;}
.y176{bottom:548.002500px;}
.y1f{bottom:550.012500px;}
.yac{bottom:550.884000px;}
.y4{bottom:551.085750px;}
.y5{bottom:555.581250px;}
.y198{bottom:556.246200px;}
.y1c7{bottom:557.248800px;}
.y213{bottom:557.845050px;}
.yde{bottom:564.392400px;}
.y175{bottom:564.715050px;}
.y139{bottom:564.885750px;}
.ye6{bottom:565.442400px;}
.y13a{bottom:565.935750px;}
.y13b{bottom:566.385750px;}
.ydf{bottom:566.488950px;}
.y1e{bottom:566.662500px;}
.yab{bottom:567.749250px;}
.y3{bottom:567.784500px;}
.y197{bottom:569.746200px;}
.y1c6{bottom:570.057150px;}
.y212{bottom:571.083300px;}
.y71{bottom:571.910700px;}
.y250{bottom:572.986050px;}
.y174{bottom:581.427450px;}
.y196{bottom:583.246200px;}
.y1c5{bottom:583.290750px;}
.y211{bottom:583.896300px;}
.yaa{bottom:584.614200px;}
.y24f{bottom:586.486050px;}
.y70{bottom:588.595050px;}
.y1c4{bottom:596.099250px;}
.y210{bottom:596.709300px;}
.y195{bottom:596.746200px;}
.y173{bottom:598.139850px;}
.y24e{bottom:599.986050px;}
.ya9{bottom:601.479300px;}
.y6f{bottom:605.279400px;}
.y1c3{bottom:608.907600px;}
.y20f{bottom:609.947550px;}
.y194{bottom:610.246200px;}
.y24d{bottom:613.486050px;}
.y172{bottom:614.852400px;}
.ya8{bottom:618.344400px;}
.y45{bottom:620.118600px;}
.y6e{bottom:621.963750px;}
.y1c2{bottom:622.141200px;}
.y20e{bottom:622.760550px;}
.y193{bottom:623.746200px;}
.y24c{bottom:626.986050px;}
.y171{bottom:631.564800px;}
.y1c1{bottom:634.949550px;}
.ya7{bottom:635.209500px;}
.y20d{bottom:635.998650px;}
.y192{bottom:637.246200px;}
.y6d{bottom:638.648100px;}
.y24b{bottom:640.486050px;}
.y1c0{bottom:647.757900px;}
.y170{bottom:648.277200px;}
.y20c{bottom:648.811650px;}
.y44{bottom:649.074450px;}
.y191{bottom:650.746200px;}
.ya6{bottom:652.074600px;}
.y24a{bottom:653.986050px;}
.y6c{bottom:655.332300px;}
.y1bf{bottom:660.991500px;}
.y20b{bottom:661.624650px;}
.y190{bottom:664.246200px;}
.y16f{bottom:664.989600px;}
.y43{bottom:667.074450px;}
.y249{bottom:667.486050px;}
.ya5{bottom:668.939700px;}
.y6b{bottom:672.016650px;}
.y1be{bottom:673.800000px;}
.y20a{bottom:674.862900px;}
.y248{bottom:680.986050px;}
.y16e{bottom:681.702000px;}
.y42{bottom:683.274450px;}
.y1a0{bottom:684.045750px;}
.ya4{bottom:685.804800px;}
.y1a2{bottom:686.142150px;}
.y1bd{bottom:687.033450px;}
.y118{bottom:687.282750px;}
.y209{bottom:687.675900px;}
.y120{bottom:688.332750px;}
.y6a{bottom:688.701000px;}
.y11a{bottom:689.379150px;}
.y247{bottom:694.486050px;}
.y134{bottom:696.949200px;}
.y13c{bottom:697.999200px;}
.y16d{bottom:698.414550px;}
.y136{bottom:699.045600px;}
.y41{bottom:699.474450px;}
.y1bc{bottom:699.841800px;}
.y208{bottom:700.914150px;}
.ya3{bottom:702.669900px;}
.y69{bottom:705.385350px;}
.y246{bottom:707.986050px;}
.y1bb{bottom:712.650300px;}
.y207{bottom:713.727150px;}
.y16c{bottom:715.126950px;}
.y40{bottom:715.674450px;}
.ya2{bottom:719.535000px;}
.y245{bottom:721.486050px;}
.y68{bottom:722.069700px;}
.y1ba{bottom:725.883750px;}
.y206{bottom:726.540150px;}
.y16b{bottom:731.839350px;}
.y3f{bottom:731.874450px;}
.ya1{bottom:736.400100px;}
.y1b9{bottom:738.692250px;}
.y67{bottom:738.754050px;}
.y205{bottom:739.778250px;}
.y251{bottom:741.285600px;}
.y252{bottom:742.335600px;}
.y3e{bottom:748.074450px;}
.y16a{bottom:748.551750px;}
.y1b8{bottom:751.925850px;}
.y204{bottom:752.591250px;}
.ya0{bottom:753.265200px;}
.y66{bottom:755.438250px;}
.ye2{bottom:759.399150px;}
.ye0{bottom:760.408200px;}
.ye1{bottom:760.449150px;}
.y3d{bottom:764.274450px;}
.y1b7{bottom:764.734200px;}
.y203{bottom:765.829500px;}
.y9f{bottom:770.130300px;}
.y65{bottom:772.122600px;}
.y1b6{bottom:777.542550px;}
.y169{bottom:777.570150px;}
.y202{bottom:778.642500px;}
.y3c{bottom:780.474450px;}
.y9e{bottom:786.995400px;}
.y64{bottom:788.806950px;}
.y1b5{bottom:790.776150px;}
.y201{bottom:791.455500px;}
.y168{bottom:794.282550px;}
.y3b{bottom:796.674450px;}
.y1b4{bottom:803.584500px;}
.y9d{bottom:803.860500px;}
.y200{bottom:804.693750px;}
.y63{bottom:805.491300px;}
.y167{bottom:810.995100px;}
.y3a{bottom:812.874450px;}
.y1b3{bottom:816.393000px;}
.y1ff{bottom:817.506750px;}
.y117{bottom:818.658750px;}
.y11c{bottom:819.708750px;}
.y62{bottom:822.175650px;}
.y19f{bottom:823.850400px;}
.y1a4{bottom:824.900550px;}
.y133{bottom:825.486750px;}
.y138{bottom:826.536750px;}
.y166{bottom:827.707500px;}
.y1fe{bottom:830.319750px;}
.y9c{bottom:833.031450px;}
.y61{bottom:838.860000px;}
.y1fd{bottom:843.557850px;}
.y165{bottom:844.420050px;}
.y1b2{bottom:847.608150px;}
.y9b{bottom:849.896550px;}
.y39{bottom:850.334250px;}
.y1fc{bottom:856.370850px;}
.y164{bottom:861.132450px;}
.y1b1{bottom:863.341500px;}
.y60{bottom:864.948150px;}
.y9a{bottom:866.761650px;}
.y1fb{bottom:869.609100px;}
.y38{bottom:870.134250px;}
.y163{bottom:877.844850px;}
.y5f{bottom:881.632500px;}
.y1fa{bottom:882.422100px;}
.y99{bottom:883.626750px;}
.y4e{bottom:885.732300px;}
.y1b0{bottom:889.704900px;}
.y161{bottom:894.557250px;}
.y1f9{bottom:895.235100px;}
.y5e{bottom:898.316850px;}
.y162{bottom:899.052750px;}
.y98{bottom:900.491850px;}
.y1af{bottom:905.438250px;}
.y1f8{bottom:908.473350px;}
.y253{bottom:909.357450px;}
.y254{bottom:910.407450px;}
.y15f{bottom:911.269650px;}
.y5d{bottom:915.001350px;}
.y160{bottom:915.765150px;}
.y97{bottom:917.356950px;}
.y1ae{bottom:921.171600px;}
.y1f7{bottom:921.286350px;}
.y37{bottom:923.950050px;}
.y50{bottom:925.580619px;}
.y15e{bottom:927.982200px;}
.y5c{bottom:931.685550px;}
.y1f6{bottom:934.099200px;}
.y96{bottom:934.222050px;}
.y1ad{bottom:936.905100px;}
.y11b{bottom:941.268450px;}
.y119{bottom:942.318450px;}
.y15d{bottom:944.694600px;}
.y1f5{bottom:947.337450px;}
.y5b{bottom:948.369900px;}
.y137{bottom:950.199300px;}
.y95{bottom:951.087150px;}
.y135{bottom:951.249450px;}
.y1ac{bottom:952.638450px;}
.y1a3{bottom:952.760250px;}
.y1a1{bottom:953.810250px;}
.y1f4{bottom:960.150450px;}
.y15c{bottom:961.407000px;}
.y36{bottom:963.550050px;}
.y4f{bottom:964.448379px;}
.y5a{bottom:965.954250px;}
.y94{bottom:967.952250px;}
.y1ab{bottom:968.371800px;}
.y1f3{bottom:972.963450px;}
.y244{bottom:974.354550px;}
.y23e{bottom:974.354700px;}
.y15b{bottom:978.119550px;}
.y1aa{bottom:984.105150px;}
.y93{bottom:984.817350px;}
.y1f2{bottom:986.201700px;}
.y23d{bottom:987.029700px;}
.y243{bottom:994.657800px;}
.y15a{bottom:994.831950px;}
.y59{bottom:994.944450px;}
.y1f1{bottom:999.014700px;}
.y1a9{bottom:999.838650px;}
.y23c{bottom:1000.129800px;}
.y92{bottom:1001.682450px;}
.y242{bottom:1008.157800px;}
.y159{bottom:1011.544350px;}
.y58{bottom:1011.628800px;}
.y1f0{bottom:1011.827700px;}
.y23b{bottom:1012.804800px;}
.y1a8{bottom:1015.572000px;}
.y35{bottom:1018.342200px;}
.y241{bottom:1021.657800px;}
.y1ef{bottom:1025.065950px;}
.y23a{bottom:1025.479800px;}
.y91{bottom:1027.951500px;}
.y158{bottom:1028.256750px;}
.y57{bottom:1028.313150px;}
.y1a7{bottom:1031.305350px;}
.y240{bottom:1035.157800px;}
.y1ee{bottom:1037.878950px;}
.y239{bottom:1038.580050px;}
.y90{bottom:1044.816600px;}
.y157{bottom:1044.969300px;}
.y56{bottom:1044.997500px;}
.y1a6{bottom:1047.038700px;}
.y23f{bottom:1048.657800px;}
.y1ed{bottom:1050.691950px;}
.y238{bottom:1051.255050px;}
.y4d{bottom:1051.893600px;}
.y55{bottom:1061.681700px;}
.y1a5{bottom:1062.772200px;}
.y1ec{bottom:1063.930050px;}
.y54{bottom:1089.177750px;}
.y2{bottom:1111.871850px;}
.y53{bottom:1113.281550px;}
.y1{bottom:1125.521850px;}
.y52{bottom:1128.881700px;}
.hf{height:17.923752px;}
.h6{height:23.611500px;}
.h1f{height:28.548000px;}
.h1d{height:29.268000px;}
.h20{height:29.630484px;}
.h3{height:30.744000px;}
.h2{height:31.584000px;}
.h10{height:31.909752px;}
.h1c{height:32.940000px;}
.h1a{height:33.200903px;}
.h21{height:33.750000px;}
.h19{height:33.840000px;}
.h18{height:34.189020px;}
.h1b{height:34.945312px;}
.h15{height:35.136000px;}
.h1e{height:36.000000px;}
.h14{height:36.096000px;}
.h16{height:38.502000px;}
.h8{height:39.528000px;}
.h5{height:40.500000px;}
.he{height:40.608000px;}
.hd{height:41.026824px;}
.h13{height:41.414353px;}
.h4{height:41.593500px;}
.h17{height:41.594100px;}
.h12{height:45.878906px;}
.h7{height:47.250000px;}
.hb{height:49.451292px;}
.hc{height:49.451892px;}
.h11{height:52.417969px;}
.h9{height:61.488000px;}
.ha{height:96.624000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:19.959141px;}
.x9{left:31.514421px;}
.xb{left:46.275600px;}
.x8{left:53.431650px;}
.x6{left:68.031450px;}
.x1b{left:81.893700px;}
.x27{left:85.684350px;}
.x2b{left:87.688350px;}
.x7{left:89.291400px;}
.x33{left:149.554200px;}
.x16{left:153.220500px;}
.x1d{left:180.541800px;}
.x19{left:185.753550px;}
.x1c{left:193.477050px;}
.x12{left:196.505550px;}
.x28{left:203.308800px;}
.xc{left:232.101600px;}
.x15{left:251.866200px;}
.x2e{left:259.918800px;}
.x34{left:264.111900px;}
.x31{left:270.555450px;}
.xe{left:277.134450px;}
.x2d{left:280.151100px;}
.x32{left:312.985950px;}
.x29{left:314.867400px;}
.x2a{left:316.200450px;}
.xd{left:326.769450px;}
.x18{left:350.093250px;}
.x14{left:351.911850px;}
.x2c{left:364.035000px;}
.x11{left:368.890200px;}
.x1{left:447.448800px;}
.x13{left:451.283550px;}
.x2{left:455.478000px;}
.x22{left:473.109600px;}
.x26{left:475.113600px;}
.xf{left:476.716500px;}
.x17{left:517.766850px;}
.x1a{left:543.278700px;}
.x1e{left:549.413100px;}
.x23{left:591.758850px;}
.x2f{left:593.010150px;}
.x21{left:628.194900px;}
.x20{left:650.813250px;}
.x4{left:657.434250px;}
.x1f{left:664.080750px;}
.x5{left:689.618100px;}
.x24{left:699.637800px;}
.x25{left:700.970850px;}
.x3{left:714.489000px;}
.x30{left:751.353750px;}
.x10{left:826.621800px;}
@media print{
.v6{vertical-align:-31.968000pt;}
.v2{vertical-align:-15.984000pt;}
.v4{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.432000pt;}
.v1{vertical-align:15.984000pt;}
.v3{vertical-align:19.536000pt;}
.ls20{letter-spacing:-1.824000pt;}
.ls3e{letter-spacing:-1.392000pt;}
.ls18{letter-spacing:-1.248000pt;}
.ls88{letter-spacing:-1.008000pt;}
.ls8b{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.912000pt;}
.ls87{letter-spacing:-0.864000pt;}
.ls89{letter-spacing:-0.816000pt;}
.ls7a{letter-spacing:-0.800000pt;}
.ls45{letter-spacing:-0.768000pt;}
.ls41{letter-spacing:-0.720000pt;}
.ls42{letter-spacing:-0.624000pt;}
.ls78{letter-spacing:-0.600000pt;}
.lsac{letter-spacing:-0.589333pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls8c{letter-spacing:-0.559680pt;}
.ls1c{letter-spacing:-0.528000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.432000pt;}
.lsa6{letter-spacing:-0.426667pt;}
.ls8a{letter-spacing:-0.419760pt;}
.ls36{letter-spacing:-0.384000pt;}
.lsaa{letter-spacing:-0.381333pt;}
.lsa9{letter-spacing:-0.346667pt;}
.ls16{letter-spacing:-0.336000pt;}
.ls77{letter-spacing:-0.320000pt;}
.ls86{letter-spacing:-0.307824pt;}
.ls39{letter-spacing:-0.288000pt;}
.lsae{letter-spacing:-0.277333pt;}
.lsa7{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.251856pt;}
.ls28{letter-spacing:-0.240000pt;}
.lsb0{letter-spacing:-0.208000pt;}
.ls76{letter-spacing:-0.200000pt;}
.ls17{letter-spacing:-0.195888pt;}
.ls1d{letter-spacing:-0.192000pt;}
.lsa8{letter-spacing:-0.173333pt;}
.lsa5{letter-spacing:-0.170667pt;}
.ls3a{letter-spacing:-0.167904pt;}
.ls51{letter-spacing:-0.144000pt;}
.ls43{letter-spacing:-0.139920pt;}
.lsad{letter-spacing:-0.138667pt;}
.ls8f{letter-spacing:-0.120000pt;}
.ls79{letter-spacing:-0.116600pt;}
.ls3c{letter-spacing:-0.096000pt;}
.ls50{letter-spacing:-0.083952pt;}
.lsaf{letter-spacing:-0.069333pt;}
.ls3d{letter-spacing:-0.055968pt;}
.ls19{letter-spacing:-0.048000pt;}
.lsab{letter-spacing:-0.034667pt;}
.ls1a{letter-spacing:-0.027984pt;}
.lse{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.000013pt;}
.ls1{letter-spacing:0.000064pt;}
.ls95{letter-spacing:0.000083pt;}
.ls6{letter-spacing:0.000213pt;}
.lsd{letter-spacing:0.000341pt;}
.ls46{letter-spacing:0.000533pt;}
.ls7f{letter-spacing:0.005333pt;}
.ls80{letter-spacing:0.005867pt;}
.ls68{letter-spacing:0.007467pt;}
.ls67{letter-spacing:0.009067pt;}
.ls57{letter-spacing:0.015680pt;}
.ls56{letter-spacing:0.015829pt;}
.ls55{letter-spacing:0.026667pt;}
.ls37{letter-spacing:0.027984pt;}
.ls71{letter-spacing:0.048000pt;}
.ls69{letter-spacing:0.065067pt;}
.ls9c{letter-spacing:0.069333pt;}
.lsb3{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.083952pt;}
.ls2d{letter-spacing:0.096000pt;}
.ls9b{letter-spacing:0.138667pt;}
.ls7{letter-spacing:0.144000pt;}
.ls5d{letter-spacing:0.147264pt;}
.ls5e{letter-spacing:0.159296pt;}
.ls62{letter-spacing:0.161131pt;}
.ls63{letter-spacing:0.171563pt;}
.ls7c{letter-spacing:0.172267pt;}
.ls9f{letter-spacing:0.173333pt;}
.ls53{letter-spacing:0.186560pt;}
.ls2{letter-spacing:0.192000pt;}
.ls5b{letter-spacing:0.192747pt;}
.ls33{letter-spacing:0.193067pt;}
.ls73{letter-spacing:0.195888pt;}
.lsb2{letter-spacing:0.200000pt;}
.ls4e{letter-spacing:0.233067pt;}
.ls83{letter-spacing:0.233080pt;}
.ls54{letter-spacing:0.233200pt;}
.ls4f{letter-spacing:0.233333pt;}
.ls27{letter-spacing:0.240000pt;}
.ls61{letter-spacing:0.243947pt;}
.ls5f{letter-spacing:0.244480pt;}
.ls40{letter-spacing:0.251856pt;}
.ls84{letter-spacing:0.260000pt;}
.ls65{letter-spacing:0.279296pt;}
.ls58{letter-spacing:0.279680pt;}
.ls85{letter-spacing:0.279840pt;}
.ls64{letter-spacing:0.280064pt;}
.ls2e{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.307824pt;}
.ls9a{letter-spacing:0.312000pt;}
.ls81{letter-spacing:0.313600pt;}
.ls4a{letter-spacing:0.320000pt;}
.ls5a{letter-spacing:0.330133pt;}
.ls5c{letter-spacing:0.330667pt;}
.ls49{letter-spacing:0.333867pt;}
.lsb{letter-spacing:0.335808pt;}
.ls74{letter-spacing:0.336000pt;}
.ls48{letter-spacing:0.340000pt;}
.ls4b{letter-spacing:0.340267pt;}
.ls91{letter-spacing:0.341333pt;}
.ls35{letter-spacing:0.342400pt;}
.ls52{letter-spacing:0.360000pt;}
.ls9e{letter-spacing:0.381333pt;}
.ls30{letter-spacing:0.384000pt;}
.ls7e{letter-spacing:0.384896pt;}
.ls4c{letter-spacing:0.399467pt;}
.ls4d{letter-spacing:0.400000pt;}
.ls60{letter-spacing:0.418667pt;}
.lsf{letter-spacing:0.419760pt;}
.ls7d{letter-spacing:0.423531pt;}
.ls3f{letter-spacing:0.432000pt;}
.ls9d{letter-spacing:0.468000pt;}
.ls59{letter-spacing:0.479467pt;}
.ls31{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.489720pt;}
.ls2c{letter-spacing:0.496213pt;}
.ls96{letter-spacing:0.502667pt;}
.ls3b{letter-spacing:0.503712pt;}
.ls4{letter-spacing:0.518763pt;}
.ls8{letter-spacing:0.522880pt;}
.ls14{letter-spacing:0.528000pt;}
.ls9{letter-spacing:0.531696pt;}
.ls94{letter-spacing:0.554667pt;}
.ls7b{letter-spacing:0.560000pt;}
.ls32{letter-spacing:0.564267pt;}
.ls3{letter-spacing:0.572331pt;}
.ls22{letter-spacing:0.576000pt;}
.ls99{letter-spacing:0.624000pt;}
.ls2a{letter-spacing:0.672000pt;}
.lsa2{letter-spacing:0.682667pt;}
.ls97{letter-spacing:0.693333pt;}
.ls0{letter-spacing:0.720000pt;}
.lsa0{letter-spacing:0.728000pt;}
.ls5{letter-spacing:0.768000pt;}
.lsa3{letter-spacing:0.853333pt;}
.ls23{letter-spacing:0.864000pt;}
.lsb1{letter-spacing:0.890667pt;}
.lsa{letter-spacing:0.912000pt;}
.ls2b{letter-spacing:0.929600pt;}
.ls2f{letter-spacing:0.960000pt;}
.ls75{letter-spacing:1.008000pt;}
.ls8d{letter-spacing:1.056000pt;}
.ls25{letter-spacing:1.063392pt;}
.ls26{letter-spacing:1.104000pt;}
.ls1f{letter-spacing:1.152000pt;}
.ls90{letter-spacing:1.237333pt;}
.ls21{letter-spacing:1.248000pt;}
.ls70{letter-spacing:1.275200pt;}
.ls47{letter-spacing:1.296000pt;}
.ls38{letter-spacing:1.344000pt;}
.ls98{letter-spacing:1.386667pt;}
.ls44{letter-spacing:1.488000pt;}
.ls82{letter-spacing:1.549333pt;}
.lsa1{letter-spacing:1.594667pt;}
.ls72{letter-spacing:1.632000pt;}
.ls92{letter-spacing:1.706667pt;}
.lsa4{letter-spacing:1.792000pt;}
.ls24{letter-spacing:1.824000pt;}
.ls6f{letter-spacing:1.869867pt;}
.ls6d{letter-spacing:1.885867pt;}
.ls8e{letter-spacing:2.005333pt;}
.ls6e{letter-spacing:2.033067pt;}
.ls6b{letter-spacing:2.394133pt;}
.ls6a{letter-spacing:2.394667pt;}
.ls93{letter-spacing:2.901333pt;}
.ls29{letter-spacing:2.928000pt;}
.ls66{letter-spacing:3.054400pt;}
.ls34{letter-spacing:5.392533pt;}
.ws1{word-spacing:-27.984000pt;}
.ws3e{word-spacing:-14.640000pt;}
.ws13{word-spacing:-13.344000pt;}
.ws5{word-spacing:-12.712000pt;}
.ws99{word-spacing:-12.200000pt;}
.wsc{word-spacing:-11.808000pt;}
.ws7d{word-spacing:-11.460000pt;}
.wsc3{word-spacing:-11.376000pt;}
.ws9a{word-spacing:-11.120000pt;}
.ws46{word-spacing:-11.088000pt;}
.ws3c{word-spacing:-10.992000pt;}
.ws98{word-spacing:-10.920000pt;}
.ws9{word-spacing:-10.896000pt;}
.wsb{word-spacing:-10.848000pt;}
.ws7c{word-spacing:-10.800000pt;}
.ws43{word-spacing:-10.656000pt;}
.wse9{word-spacing:-10.573333pt;}
.ws47{word-spacing:-10.560000pt;}
.wseb{word-spacing:-10.538667pt;}
.ws78{word-spacing:-10.464000pt;}
.ws48{word-spacing:-10.416000pt;}
.ws3f{word-spacing:-10.368000pt;}
.ws7b{word-spacing:-10.272000pt;}
.ws45{word-spacing:-10.224000pt;}
.wsea{word-spacing:-10.192000pt;}
.ws79{word-spacing:-10.176000pt;}
.ws41{word-spacing:-10.032000pt;}
.wsa{word-spacing:-9.984000pt;}
.ws7a{word-spacing:-9.888000pt;}
.ws42{word-spacing:-9.792000pt;}
.ws40{word-spacing:-9.696000pt;}
.wse7{word-spacing:-9.685333pt;}
.wse8{word-spacing:-9.514667pt;}
.ws3b{word-spacing:-9.504000pt;}
.ws12a{word-spacing:-9.080000pt;}
.ws12{word-spacing:-8.535120pt;}
.ws11{word-spacing:-7.421979pt;}
.ws10{word-spacing:-7.415760pt;}
.ws7f{word-spacing:-7.345800pt;}
.ws7e{word-spacing:-7.299160pt;}
.ws97{word-spacing:-7.112600pt;}
.wsd{word-spacing:-6.884064pt;}
.ws39{word-spacing:-6.856080pt;}
.wsf{word-spacing:-6.842088pt;}
.ws0{word-spacing:-6.772128pt;}
.wse{word-spacing:-6.688176pt;}
.ws6{word-spacing:-6.660192pt;}
.wsc2{word-spacing:-6.632208pt;}
.ws3d{word-spacing:-6.604224pt;}
.ws96{word-spacing:-6.548256pt;}
.ws3{word-spacing:-6.436320pt;}
.ws37{word-spacing:-6.380352pt;}
.ws2{word-spacing:-6.352368pt;}
.ws8{word-spacing:-6.324384pt;}
.ws3a{word-spacing:-6.296400pt;}
.ws44{word-spacing:-6.212448pt;}
.ws38{word-spacing:-6.184464pt;}
.wsec{word-spacing:-6.164253pt;}
.ws7{word-spacing:-6.156480pt;}
.ws4{word-spacing:-6.100512pt;}
.ws14{word-spacing:-6.050763pt;}
.wsc4{word-spacing:-6.044544pt;}
.wsc5{word-spacing:-5.932608pt;}
.wsc6{word-spacing:-5.792688pt;}
.ws32{word-spacing:-3.696000pt;}
.ws31{word-spacing:-3.648000pt;}
.wsdf{word-spacing:-3.160000pt;}
.wse5{word-spacing:-3.080000pt;}
.ws8d{word-spacing:-3.040000pt;}
.ws133{word-spacing:-3.000000pt;}
.ws110{word-spacing:-2.981333pt;}
.wsb2{word-spacing:-2.920000pt;}
.ws29{word-spacing:-2.832000pt;}
.ws8c{word-spacing:-2.800000pt;}
.ws60{word-spacing:-2.784000pt;}
.ws17{word-spacing:-2.736000pt;}
.ws1d{word-spacing:-2.688000pt;}
.ws10e{word-spacing:-2.669333pt;}
.wsa0{word-spacing:-2.640000pt;}
.wsf4{word-spacing:-2.634667pt;}
.wsb9{word-spacing:-2.600000pt;}
.ws1f{word-spacing:-2.592000pt;}
.ws51{word-spacing:-2.544000pt;}
.ws57{word-spacing:-2.496000pt;}
.ws1c{word-spacing:-2.448000pt;}
.ws6b{word-spacing:-2.400000pt;}
.ws36{word-spacing:-2.368000pt;}
.wsd3{word-spacing:-2.352000pt;}
.ws8b{word-spacing:-2.304000pt;}
.ws4f{word-spacing:-2.256000pt;}
.ws11a{word-spacing:-2.218667pt;}
.wscb{word-spacing:-2.208000pt;}
.wsac{word-spacing:-2.200000pt;}
.ws35{word-spacing:-2.160000pt;}
.ws4e{word-spacing:-2.112000pt;}
.ws64{word-spacing:-2.016000pt;}
.ws10f{word-spacing:-2.010667pt;}
.ws10d{word-spacing:-1.976000pt;}
.wsf1{word-spacing:-1.962667pt;}
.ws132{word-spacing:-1.960000pt;}
.ws34{word-spacing:-1.920000pt;}
.ws129{word-spacing:-1.872000pt;}
.ws87{word-spacing:-1.824000pt;}
.ws12b{word-spacing:-1.802667pt;}
.ws1e{word-spacing:-1.776000pt;}
.ws11b{word-spacing:-1.768000pt;}
.wsd6{word-spacing:-1.632000pt;}
.wsef{word-spacing:-1.621333pt;}
.wse1{word-spacing:-1.600000pt;}
.ws100{word-spacing:-1.560000pt;}
.ws22{word-spacing:-1.536000pt;}
.ws62{word-spacing:-1.488000pt;}
.wsa9{word-spacing:-1.480000pt;}
.ws5e{word-spacing:-1.440000pt;}
.ws6f{word-spacing:-1.392000pt;}
.ws4a{word-spacing:-1.344000pt;}
.ws28{word-spacing:-1.296000pt;}
.ws124{word-spacing:-1.248000pt;}
.wsca{word-spacing:-1.200000pt;}
.ws10c{word-spacing:-1.178667pt;}
.ws8e{word-spacing:-1.160000pt;}
.ws5a{word-spacing:-1.152000pt;}
.ws117{word-spacing:-1.144000pt;}
.wsb6{word-spacing:-1.120000pt;}
.ws101{word-spacing:-0.970667pt;}
.ws23{word-spacing:-0.960000pt;}
.ws95{word-spacing:-0.840000pt;}
.wsd2{word-spacing:-0.816000pt;}
.wsa6{word-spacing:-0.800000pt;}
.ws113{word-spacing:-0.797333pt;}
.wsd4{word-spacing:-0.768000pt;}
.wsb0{word-spacing:-0.720000pt;}
.ws104{word-spacing:-0.693333pt;}
.ws12f{word-spacing:-0.680000pt;}
.ws6c{word-spacing:-0.672000pt;}
.ws102{word-spacing:-0.658667pt;}
.wsa7{word-spacing:-0.600000pt;}
.ws123{word-spacing:-0.589333pt;}
.ws91{word-spacing:-0.560000pt;}
.ws71{word-spacing:-0.528000pt;}
.ws8f{word-spacing:-0.520000pt;}
.ws77{word-spacing:-0.432000pt;}
.ws92{word-spacing:-0.400000pt;}
.ws9f{word-spacing:-0.384000pt;}
.wse6{word-spacing:-0.360000pt;}
.ws119{word-spacing:-0.346667pt;}
.ws25{word-spacing:-0.288000pt;}
.ws80{word-spacing:-0.256520pt;}
.wscc{word-spacing:-0.240000pt;}
.ws94{word-spacing:-0.233200pt;}
.ws10b{word-spacing:-0.208000pt;}
.ws33{word-spacing:-0.192000pt;}
.ws120{word-spacing:-0.173333pt;}
.ws73{word-spacing:-0.144000pt;}
.ws55{word-spacing:-0.048000pt;}
.ws9c{word-spacing:-0.023320pt;}
.ws15{word-spacing:0.000000pt;}
.wsab{word-spacing:0.040000pt;}
.ws122{word-spacing:0.069333pt;}
.wsb4{word-spacing:0.080000pt;}
.ws8a{word-spacing:0.083952pt;}
.ws9b{word-spacing:0.093280pt;}
.wse0{word-spacing:0.120000pt;}
.wscd{word-spacing:0.167904pt;}
.ws103{word-spacing:0.173333pt;}
.wsa1{word-spacing:0.192000pt;}
.wsa8{word-spacing:0.200000pt;}
.wsaa{word-spacing:0.240000pt;}
.wsf3{word-spacing:0.256000pt;}
.ws74{word-spacing:0.288000pt;}
.wsd5{word-spacing:0.336000pt;}
.wsfd{word-spacing:0.381333pt;}
.wsf2{word-spacing:0.426667pt;}
.ws75{word-spacing:0.432000pt;}
.ws52{word-spacing:0.480000pt;}
.wsa3{word-spacing:0.520000pt;}
.ws2e{word-spacing:0.528000pt;}
.ws53{word-spacing:0.576000pt;}
.ws115{word-spacing:0.589333pt;}
.wsa4{word-spacing:0.600000pt;}
.wsd1{word-spacing:0.624000pt;}
.wsae{word-spacing:0.640000pt;}
.wsc0{word-spacing:0.680000pt;}
.ws2b{word-spacing:0.720000pt;}
.wsb1{word-spacing:0.760000pt;}
.ws11e{word-spacing:0.762667pt;}
.ws4b{word-spacing:0.816000pt;}
.ws128{word-spacing:0.832000pt;}
.ws11f{word-spacing:0.901333pt;}
.ws18{word-spacing:0.912000pt;}
.ws90{word-spacing:0.920000pt;}
.wsdb{word-spacing:0.960000pt;}
.wsdc{word-spacing:1.040000pt;}
.ws56{word-spacing:1.104000pt;}
.wsc1{word-spacing:1.120000pt;}
.ws24{word-spacing:1.152000pt;}
.ws9d{word-spacing:1.296000pt;}
.wse3{word-spacing:1.320000pt;}
.ws5c{word-spacing:1.344000pt;}
.ws10a{word-spacing:1.386667pt;}
.ws69{word-spacing:1.392000pt;}
.wsbd{word-spacing:1.400000pt;}
.wsad{word-spacing:1.440000pt;}
.ws1b{word-spacing:1.488000pt;}
.wsbe{word-spacing:1.520000pt;}
.ws11c{word-spacing:1.560000pt;}
.ws76{word-spacing:1.584000pt;}
.ws68{word-spacing:1.728000pt;}
.wsd7{word-spacing:1.776000pt;}
.ws50{word-spacing:1.824000pt;}
.ws5f{word-spacing:1.872000pt;}
.wsbc{word-spacing:1.880000pt;}
.wsb3{word-spacing:1.920000pt;}
.ws11d{word-spacing:1.941333pt;}
.ws84{word-spacing:2.064000pt;}
.ws93{word-spacing:2.080000pt;}
.ws83{word-spacing:2.160000pt;}
.ws5b{word-spacing:2.208000pt;}
.ws121{word-spacing:2.218667pt;}
.wsba{word-spacing:2.240000pt;}
.ws112{word-spacing:2.253333pt;}
.wsb8{word-spacing:2.320000pt;}
.ws2a{word-spacing:2.352000pt;}
.ws105{word-spacing:2.357333pt;}
.ws12d{word-spacing:2.360000pt;}
.wsb7{word-spacing:2.400000pt;}
.ws2f{word-spacing:2.448000pt;}
.wsbb{word-spacing:2.480000pt;}
.wsd8{word-spacing:2.496000pt;}
.ws21{word-spacing:2.544000pt;}
.ws126{word-spacing:2.565333pt;}
.ws70{word-spacing:2.592000pt;}
.ws106{word-spacing:2.634667pt;}
.ws125{word-spacing:2.669333pt;}
.wsfa{word-spacing:2.704000pt;}
.wse4{word-spacing:2.760000pt;}
.ws58{word-spacing:2.784000pt;}
.wscf{word-spacing:2.832000pt;}
.wsf8{word-spacing:2.842667pt;}
.ws2c{word-spacing:2.880000pt;}
.ws59{word-spacing:2.928000pt;}
.ws114{word-spacing:2.946667pt;}
.wsde{word-spacing:2.960000pt;}
.wsdd{word-spacing:3.000000pt;}
.ws27{word-spacing:3.072000pt;}
.ws108{word-spacing:3.085333pt;}
.wsd0{word-spacing:3.120000pt;}
.ws118{word-spacing:3.154667pt;}
.ws20{word-spacing:3.168000pt;}
.ws130{word-spacing:3.240000pt;}
.wsf9{word-spacing:3.258667pt;}
.ws107{word-spacing:3.293333pt;}
.ws12c{word-spacing:3.328000pt;}
.ws116{word-spacing:3.397333pt;}
.wsa2{word-spacing:3.408000pt;}
.wse2{word-spacing:3.440000pt;}
.wsc7{word-spacing:3.456000pt;}
.wsfb{word-spacing:3.466667pt;}
.ws127{word-spacing:3.501333pt;}
.wsf5{word-spacing:3.536000pt;}
.wsc9{word-spacing:3.552000pt;}
.wsa5{word-spacing:3.560000pt;}
.ws26{word-spacing:3.600000pt;}
.ws9e{word-spacing:3.648000pt;}
.ws85{word-spacing:3.696000pt;}
.wsb5{word-spacing:3.720000pt;}
.wsc8{word-spacing:3.744000pt;}
.wsfe{word-spacing:3.778667pt;}
.ws6e{word-spacing:3.840000pt;}
.ws111{word-spacing:3.848000pt;}
.wsfc{word-spacing:3.882667pt;}
.ws30{word-spacing:3.888000pt;}
.wsf0{word-spacing:3.968000pt;}
.ws6d{word-spacing:4.032000pt;}
.wsd9{word-spacing:4.138667pt;}
.wsf6{word-spacing:4.194667pt;}
.ws66{word-spacing:4.224000pt;}
.ws61{word-spacing:4.320000pt;}
.wsbf{word-spacing:4.360000pt;}
.ws5d{word-spacing:4.368000pt;}
.wsaf{word-spacing:4.400000pt;}
.ws65{word-spacing:4.416000pt;}
.ws4d{word-spacing:4.512000pt;}
.ws12e{word-spacing:4.520000pt;}
.ws89{word-spacing:4.608000pt;}
.ws54{word-spacing:4.656000pt;}
.ws88{word-spacing:4.800000pt;}
.wsed{word-spacing:4.821333pt;}
.wsda{word-spacing:4.864000pt;}
.ws72{word-spacing:4.992000pt;}
.ws4c{word-spacing:5.040000pt;}
.ws109{word-spacing:5.061333pt;}
.ws6a{word-spacing:5.088000pt;}
.ws63{word-spacing:5.184000pt;}
.ws86{word-spacing:5.232000pt;}
.wsff{word-spacing:5.269333pt;}
.wsf7{word-spacing:5.304000pt;}
.wsce{word-spacing:5.376000pt;}
.ws16{word-spacing:5.424000pt;}
.ws19{word-spacing:5.472000pt;}
.wsee{word-spacing:5.845333pt;}
.ws49{word-spacing:5.856000pt;}
.ws67{word-spacing:5.952000pt;}
.ws1a{word-spacing:6.000000pt;}
.ws131{word-spacing:6.080000pt;}
.ws2d{word-spacing:7.296000pt;}
.ws82{word-spacing:1386.569067pt;}
.ws81{word-spacing:1395.262400pt;}
._5{margin-left:-6.417632pt;}
._6{margin-left:-4.704000pt;}
._3{margin-left:-3.577067pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-1.104000pt;}
._1{width:1.150933pt;}
._4{width:2.161408pt;}
._8{width:3.353451pt;}
._7{width:4.434133pt;}
._9{width:8.372800pt;}
._c{width:20.344000pt;}
._b{width:21.730667pt;}
._a{width:42.912000pt;}
.fs10{font-size:20.210667pt;}
.fs8{font-size:21.765333pt;}
.fse{font-size:23.320000pt;}
.fs2{font-size:27.984000pt;}
.fs7{font-size:34.202667pt;}
.fsf{font-size:34.666667pt;}
.fsb{font-size:35.296128pt;}
.fs0{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:35.307733pt;}
.y8f{bottom:69.921200pt;}
.y4c{bottom:69.921333pt;}
.y156{bottom:73.917333pt;}
.y4b{bottom:81.121333pt;}
.y1eb{bottom:81.306533pt;}
.y237{bottom:81.310667pt;}
.y18f{bottom:83.843467pt;}
.yf5{bottom:84.721200pt;}
.y102{bottom:84.721333pt;}
.y8e{bottom:84.751733pt;}
.yc7{bottom:84.912400pt;}
.y154{bottom:85.149600pt;}
.yce{bottom:85.206400pt;}
.yd4{bottom:85.688533pt;}
.y103{bottom:88.717333pt;}
.y155{bottom:89.145600pt;}
.y4a{bottom:92.321333pt;}
.y236{bottom:92.700000pt;}
.y1ea{bottom:93.069600pt;}
.y18e{bottom:97.765600pt;}
.yf3{bottom:99.521200pt;}
.y100{bottom:99.521333pt;}
.y8d{bottom:99.582267pt;}
.yc6{bottom:99.903600pt;}
.y153{bottom:100.378000pt;}
.ycd{bottom:100.491467pt;}
.yd3{bottom:101.455733pt;}
.yf4{bottom:103.517200pt;}
.y101{bottom:103.517333pt;}
.y49{bottom:103.521333pt;}
.y1e9{bottom:104.454933pt;}
.y235{bottom:104.467333pt;}
.yf2{bottom:114.321200pt;}
.yff{bottom:114.321333pt;}
.y8c{bottom:114.412800pt;}
.yc5{bottom:114.894800pt;}
.y152{bottom:115.606400pt;}
.ycc{bottom:115.776667pt;}
.y1e8{bottom:115.840133pt;}
.y234{bottom:115.856667pt;}
.yd2{bottom:117.222933pt;}
.y48{bottom:117.829333pt;}
.y18d{bottom:123.559600pt;}
.y47{bottom:125.921333pt;}
.y233{bottom:127.246000pt;}
.y1e7{bottom:127.603333pt;}
.yf0{bottom:129.121200pt;}
.yfe{bottom:129.121333pt;}
.y8b{bottom:129.243200pt;}
.yc4{bottom:129.886000pt;}
.y151{bottom:130.834800pt;}
.ycb{bottom:131.061733pt;}
.yf1{bottom:133.117200pt;}
.y18c{bottom:138.415067pt;}
.y1e6{bottom:138.988533pt;}
.y232{bottom:139.013333pt;}
.y46{bottom:140.229333pt;}
.yef{bottom:143.921200pt;}
.yfd{bottom:143.921333pt;}
.yd1{bottom:143.928667pt;}
.y8a{bottom:144.073867pt;}
.yc3{bottom:144.877200pt;}
.y150{bottom:146.063067pt;}
.yca{bottom:146.346800pt;}
.y1e5{bottom:150.373733pt;}
.y231{bottom:150.402667pt;}
.yed{bottom:158.721200pt;}
.yfb{bottom:158.721333pt;}
.y88{bottom:158.904267pt;}
.yd0{bottom:159.695867pt;}
.yc2{bottom:159.868400pt;}
.y14e{bottom:161.291467pt;}
.yc9{bottom:161.632000pt;}
.y230{bottom:161.792000pt;}
.y1e4{bottom:162.136933pt;}
.yee{bottom:162.717200pt;}
.yfc{bottom:162.717333pt;}
.y89{bottom:162.900267pt;}
.y1d{bottom:163.300000pt;}
.y18b{bottom:164.209200pt;}
.y14f{bottom:165.287467pt;}
.yec{bottom:173.521200pt;}
.yfa{bottom:173.521333pt;}
.y1e3{bottom:173.522267pt;}
.y22f{bottom:173.559333pt;}
.y87{bottom:173.734800pt;}
.yc1{bottom:174.859600pt;}
.ycf{bottom:175.463067pt;}
.y14d{bottom:176.519867pt;}
.yc8{bottom:176.917067pt;}
.y34{bottom:178.100000pt;}
.y1c{bottom:178.143333pt;}
.y18a{bottom:179.064800pt;}
.y1e2{bottom:184.907333pt;}
.y22e{bottom:184.948667pt;}
.yeb{bottom:188.321200pt;}
.yf9{bottom:188.321333pt;}
.y86{bottom:188.565333pt;}
.yc0{bottom:189.850800pt;}
.y14c{bottom:191.748267pt;}
.y33{bottom:192.900000pt;}
.y1b{bottom:192.986667pt;}
.y189{bottom:193.920267pt;}
.y22d{bottom:196.338000pt;}
.y1e1{bottom:196.670533pt;}
.yea{bottom:203.121200pt;}
.yf7{bottom:203.121333pt;}
.y85{bottom:203.395867pt;}
.ybf{bottom:204.842000pt;}
.y14a{bottom:206.976667pt;}
.yf8{bottom:207.117333pt;}
.y32{bottom:207.700000pt;}
.y22c{bottom:207.727333pt;}
.y1a{bottom:207.830000pt;}
.y1e0{bottom:208.055867pt;}
.y188{bottom:208.775733pt;}
.ydd{bottom:209.640933pt;}
.y14b{bottom:210.972667pt;}
.ye9{bottom:217.921200pt;}
.yf6{bottom:217.921333pt;}
.y84{bottom:218.226267pt;}
.y1df{bottom:219.441067pt;}
.y22b{bottom:219.494667pt;}
.ybe{bottom:219.833200pt;}
.ydc{bottom:221.640933pt;}
.y149{bottom:222.204933pt;}
.y31{bottom:222.500000pt;}
.y19{bottom:222.673467pt;}
.y187{bottom:223.631200pt;}
.y1de{bottom:230.826267pt;}
.y22a{bottom:230.884000pt;}
.ye8{bottom:232.721200pt;}
.y83{bottom:233.056933pt;}
.ydb{bottom:233.640933pt;}
.ybd{bottom:234.824400pt;}
.y30{bottom:237.300000pt;}
.y148{bottom:237.433333pt;}
.y18{bottom:237.516800pt;}
.y186{bottom:238.486800pt;}
.y229{bottom:242.273333pt;}
.y1dd{bottom:242.589467pt;}
.yda{bottom:245.640933pt;}
.ye7{bottom:247.521200pt;}
.y82{bottom:247.887333pt;}
.y116{bottom:248.680933pt;}
.ybc{bottom:249.815600pt;}
.y2f{bottom:252.100000pt;}
.y17{bottom:252.360133pt;}
.y146{bottom:252.661733pt;}
.y185{bottom:253.342267pt;}
.y1dc{bottom:253.974667pt;}
.y228{bottom:254.040533pt;}
.y147{bottom:256.657733pt;}
.yd9{bottom:257.640933pt;}
.y115{bottom:260.680933pt;}
.y81{bottom:262.717867pt;}
.ybb{bottom:264.806800pt;}
.y1db{bottom:265.360000pt;}
.y227{bottom:265.429867pt;}
.y2e{bottom:266.900000pt;}
.y16{bottom:267.203467pt;}
.y145{bottom:267.890133pt;}
.yd8{bottom:269.640933pt;}
.y114{bottom:272.680933pt;}
.y1da{bottom:276.745200pt;}
.y226{bottom:277.197200pt;}
.y80{bottom:277.548400pt;}
.y184{bottom:279.136400pt;}
.yba{bottom:279.798000pt;}
.y132{bottom:280.521067pt;}
.yd7{bottom:281.640933pt;}
.y2d{bottom:281.700000pt;}
.y15{bottom:282.046933pt;}
.y144{bottom:283.118533pt;}
.y113{bottom:284.680933pt;}
.y1d9{bottom:288.508400pt;}
.y225{bottom:288.586533pt;}
.y7f{bottom:292.378933pt;}
.y131{bottom:292.521067pt;}
.yd6{bottom:293.640933pt;}
.y183{bottom:293.991867pt;}
.yb9{bottom:294.789200pt;}
.y2c{bottom:296.500000pt;}
.y112{bottom:296.680933pt;}
.y14{bottom:296.890267pt;}
.y143{bottom:298.346800pt;}
.y1d8{bottom:299.893600pt;}
.y224{bottom:299.975867pt;}
.y130{bottom:304.521067pt;}
.yd5{bottom:305.640933pt;}
.y7e{bottom:307.209333pt;}
.y111{bottom:308.680933pt;}
.y182{bottom:308.847333pt;}
.yb8{bottom:309.780400pt;}
.y1d7{bottom:311.278800pt;}
.y2b{bottom:311.300000pt;}
.y13{bottom:311.733600pt;}
.y223{bottom:311.743200pt;}
.y142{bottom:313.575200pt;}
.y12f{bottom:316.521067pt;}
.y110{bottom:320.680933pt;}
.y7d{bottom:322.039867pt;}
.y1d6{bottom:323.042000pt;}
.y222{bottom:323.132533pt;}
.ye3{bottom:323.240533pt;}
.y181{bottom:323.702800pt;}
.ye4{bottom:324.173867pt;}
.ye5{bottom:324.573867pt;}
.yb7{bottom:324.771600pt;}
.y2a{bottom:326.100000pt;}
.y12{bottom:326.576933pt;}
.y12e{bottom:328.521067pt;}
.y141{bottom:328.803600pt;}
.y10f{bottom:332.680933pt;}
.y1d5{bottom:334.427200pt;}
.y221{bottom:334.899733pt;}
.y7c{bottom:336.870400pt;}
.y180{bottom:338.558400pt;}
.yb6{bottom:339.762800pt;}
.y12d{bottom:340.521067pt;}
.y29{bottom:340.900000pt;}
.y11{bottom:341.420267pt;}
.y140{bottom:344.032000pt;}
.y10e{bottom:344.680933pt;}
.y1d4{bottom:345.812400pt;}
.y220{bottom:346.289067pt;}
.y7b{bottom:351.700933pt;}
.y12c{bottom:352.521067pt;}
.y17f{bottom:353.413867pt;}
.yb5{bottom:354.754000pt;}
.y28{bottom:355.700000pt;}
.y10{bottom:356.263733pt;}
.y10d{bottom:356.680933pt;}
.y1d3{bottom:357.197733pt;}
.y21f{bottom:357.678400pt;}
.y13f{bottom:359.260400pt;}
.y12b{bottom:364.521067pt;}
.y7a{bottom:366.531467pt;}
.y17e{bottom:368.269333pt;}
.y10c{bottom:368.680933pt;}
.y1d2{bottom:368.960933pt;}
.y21e{bottom:369.067733pt;}
.yb4{bottom:369.745200pt;}
.y27{bottom:370.500000pt;}
.yf{bottom:371.107067pt;}
.y13e{bottom:374.488667pt;}
.y12a{bottom:376.521067pt;}
.y1d1{bottom:380.346133pt;}
.y10b{bottom:380.680933pt;}
.y21d{bottom:380.835067pt;}
.y79{bottom:381.362000pt;}
.y17d{bottom:383.124933pt;}
.yb3{bottom:384.736267pt;}
.y26{bottom:385.300000pt;}
.yd{bottom:385.950400pt;}
.y129{bottom:388.521067pt;}
.y13d{bottom:389.717067pt;}
.ye{bottom:389.946400pt;}
.y1d0{bottom:391.731333pt;}
.y21c{bottom:392.224400pt;}
.y10a{bottom:392.680933pt;}
.y78{bottom:396.192400pt;}
.y17c{bottom:397.980400pt;}
.yb2{bottom:399.727600pt;}
.y25{bottom:400.100000pt;}
.y128{bottom:400.521067pt;}
.yc{bottom:400.793733pt;}
.y1cf{bottom:403.494533pt;}
.y21b{bottom:403.991733pt;}
.y109{bottom:404.680933pt;}
.y77{bottom:411.022933pt;}
.y127{bottom:412.521067pt;}
.y17b{bottom:412.835867pt;}
.yb1{bottom:414.718800pt;}
.y1ce{bottom:414.879733pt;}
.y24{bottom:414.900000pt;}
.y21a{bottom:415.381067pt;}
.yb{bottom:415.637200pt;}
.y108{bottom:416.680933pt;}
.y19e{bottom:422.441067pt;}
.y126{bottom:424.521067pt;}
.y76{bottom:425.853467pt;}
.y1cd{bottom:426.265067pt;}
.y219{bottom:426.770400pt;}
.y17a{bottom:427.691333pt;}
.y107{bottom:428.680933pt;}
.y23{bottom:429.700000pt;}
.yb0{bottom:429.709867pt;}
.y9{bottom:430.480533pt;}
.y19d{bottom:434.441067pt;}
.ya{bottom:434.476533pt;}
.y125{bottom:436.521067pt;}
.y1cc{bottom:438.028133pt;}
.y218{bottom:438.537733pt;}
.y106{bottom:440.680933pt;}
.y75{bottom:440.684000pt;}
.y179{bottom:442.546933pt;}
.y22{bottom:444.500000pt;}
.yaf{bottom:444.701067pt;}
.y8{bottom:445.323867pt;}
.y19c{bottom:446.441067pt;}
.y124{bottom:448.521067pt;}
.y1cb{bottom:449.413467pt;}
.y217{bottom:449.927067pt;}
.y105{bottom:452.680933pt;}
.y74{bottom:455.514533pt;}
.y178{bottom:457.402400pt;}
.y19b{bottom:458.441067pt;}
.y21{bottom:459.300000pt;}
.yae{bottom:459.692400pt;}
.y7{bottom:460.167200pt;}
.y123{bottom:460.521067pt;}
.y1ca{bottom:460.798667pt;}
.y216{bottom:461.316267pt;}
.y104{bottom:464.680933pt;}
.y73{bottom:470.345067pt;}
.y19a{bottom:470.441067pt;}
.y177{bottom:472.257867pt;}
.y122{bottom:472.521067pt;}
.y1c9{bottom:472.561867pt;}
.y215{bottom:473.083600pt;}
.y20{bottom:474.100000pt;}
.yad{bottom:474.683467pt;}
.y6{bottom:475.010667pt;}
.y11d{bottom:482.280533pt;}
.y199{bottom:482.441067pt;}
.y11e{bottom:483.214000pt;}
.y11f{bottom:483.613867pt;}
.y1c8{bottom:483.947067pt;}
.y214{bottom:484.472933pt;}
.y121{bottom:484.521067pt;}
.y72{bottom:485.175600pt;}
.y176{bottom:487.113333pt;}
.y1f{bottom:488.900000pt;}
.yac{bottom:489.674667pt;}
.y4{bottom:489.854000pt;}
.y5{bottom:493.850000pt;}
.y198{bottom:494.441067pt;}
.y1c7{bottom:495.332267pt;}
.y213{bottom:495.862267pt;}
.yde{bottom:501.682133pt;}
.y175{bottom:501.968933pt;}
.y139{bottom:502.120667pt;}
.ye6{bottom:502.615467pt;}
.y13a{bottom:503.054000pt;}
.y13b{bottom:503.454000pt;}
.ydf{bottom:503.545733pt;}
.y1e{bottom:503.700000pt;}
.yab{bottom:504.666000pt;}
.y3{bottom:504.697333pt;}
.y197{bottom:506.441067pt;}
.y1c6{bottom:506.717467pt;}
.y212{bottom:507.629600pt;}
.y71{bottom:508.365067pt;}
.y250{bottom:509.320933pt;}
.y174{bottom:516.824400pt;}
.y196{bottom:518.441067pt;}
.y1c5{bottom:518.480667pt;}
.y211{bottom:519.018933pt;}
.yaa{bottom:519.657067pt;}
.y24f{bottom:521.320933pt;}
.y70{bottom:523.195600pt;}
.y1c4{bottom:529.866000pt;}
.y210{bottom:530.408267pt;}
.y195{bottom:530.441067pt;}
.y173{bottom:531.679867pt;}
.y24e{bottom:533.320933pt;}
.ya9{bottom:534.648267pt;}
.y6f{bottom:538.026133pt;}
.y1c3{bottom:541.251200pt;}
.y20f{bottom:542.175600pt;}
.y194{bottom:542.441067pt;}
.y24d{bottom:545.320933pt;}
.y172{bottom:546.535467pt;}
.ya8{bottom:549.639467pt;}
.y45{bottom:551.216533pt;}
.y6e{bottom:552.856667pt;}
.y1c2{bottom:553.014400pt;}
.y20e{bottom:553.564933pt;}
.y193{bottom:554.441067pt;}
.y24c{bottom:557.320933pt;}
.y171{bottom:561.390933pt;}
.y1c1{bottom:564.399600pt;}
.ya7{bottom:564.630667pt;}
.y20d{bottom:565.332133pt;}
.y192{bottom:566.441067pt;}
.y6d{bottom:567.687200pt;}
.y24b{bottom:569.320933pt;}
.y1c0{bottom:575.784800pt;}
.y170{bottom:576.246400pt;}
.y20c{bottom:576.721467pt;}
.y44{bottom:576.955067pt;}
.y191{bottom:578.441067pt;}
.ya6{bottom:579.621867pt;}
.y24a{bottom:581.320933pt;}
.y6c{bottom:582.517600pt;}
.y1bf{bottom:587.548000pt;}
.y20b{bottom:588.110800pt;}
.y190{bottom:590.441067pt;}
.y16f{bottom:591.101867pt;}
.y43{bottom:592.955067pt;}
.y249{bottom:593.320933pt;}
.ya5{bottom:594.613067pt;}
.y6b{bottom:597.348133pt;}
.y1be{bottom:598.933333pt;}
.y20a{bottom:599.878133pt;}
.y248{bottom:605.320933pt;}
.y16e{bottom:605.957333pt;}
.y42{bottom:607.355067pt;}
.y1a0{bottom:608.040667pt;}
.ya4{bottom:609.604267pt;}
.y1a2{bottom:609.904133pt;}
.y1bd{bottom:610.696400pt;}
.y118{bottom:610.918000pt;}
.y209{bottom:611.267467pt;}
.y120{bottom:611.851333pt;}
.y6a{bottom:612.178667pt;}
.y11a{bottom:612.781467pt;}
.y247{bottom:617.320933pt;}
.y134{bottom:619.510400pt;}
.y13c{bottom:620.443733pt;}
.y16d{bottom:620.812933pt;}
.y136{bottom:621.373867pt;}
.y41{bottom:621.755067pt;}
.y1bc{bottom:622.081600pt;}
.y208{bottom:623.034800pt;}
.ya3{bottom:624.595467pt;}
.y69{bottom:627.009200pt;}
.y246{bottom:629.320933pt;}
.y1bb{bottom:633.466933pt;}
.y207{bottom:634.424133pt;}
.y16c{bottom:635.668400pt;}
.y40{bottom:636.155067pt;}
.ya2{bottom:639.586667pt;}
.y245{bottom:641.320933pt;}
.y68{bottom:641.839733pt;}
.y1ba{bottom:645.230000pt;}
.y206{bottom:645.813467pt;}
.y16b{bottom:650.523867pt;}
.y3f{bottom:650.555067pt;}
.ya1{bottom:654.577867pt;}
.y1b9{bottom:656.615333pt;}
.y67{bottom:656.670267pt;}
.y205{bottom:657.580667pt;}
.y251{bottom:658.920533pt;}
.y252{bottom:659.853867pt;}
.y3e{bottom:664.955067pt;}
.y16a{bottom:665.379333pt;}
.y1b8{bottom:668.378533pt;}
.y204{bottom:668.970000pt;}
.ya0{bottom:669.569067pt;}
.y66{bottom:671.500667pt;}
.ye2{bottom:675.021467pt;}
.ye0{bottom:675.918400pt;}
.ye1{bottom:675.954800pt;}
.y3d{bottom:679.355067pt;}
.y1b7{bottom:679.763733pt;}
.y203{bottom:680.737333pt;}
.y9f{bottom:684.560267pt;}
.y65{bottom:686.331200pt;}
.y1b6{bottom:691.148933pt;}
.y169{bottom:691.173467pt;}
.y202{bottom:692.126667pt;}
.y3c{bottom:693.755067pt;}
.y9e{bottom:699.551467pt;}
.y64{bottom:701.161733pt;}
.y1b5{bottom:702.912133pt;}
.y201{bottom:703.516000pt;}
.y168{bottom:706.028933pt;}
.y3b{bottom:708.155067pt;}
.y1b4{bottom:714.297333pt;}
.y9d{bottom:714.542667pt;}
.y200{bottom:715.283333pt;}
.y63{bottom:715.992267pt;}
.y167{bottom:720.884533pt;}
.y3a{bottom:722.555067pt;}
.y1b3{bottom:725.682667pt;}
.y1ff{bottom:726.672667pt;}
.y117{bottom:727.696667pt;}
.y11c{bottom:728.630000pt;}
.y62{bottom:730.822800pt;}
.y19f{bottom:732.311467pt;}
.y1a4{bottom:733.244933pt;}
.y133{bottom:733.766000pt;}
.y138{bottom:734.699333pt;}
.y166{bottom:735.740000pt;}
.y1fe{bottom:738.062000pt;}
.y9c{bottom:740.472400pt;}
.y61{bottom:745.653333pt;}
.y1fd{bottom:749.829200pt;}
.y165{bottom:750.595600pt;}
.y1b2{bottom:753.429467pt;}
.y9b{bottom:755.463600pt;}
.y39{bottom:755.852667pt;}
.y1fc{bottom:761.218533pt;}
.y164{bottom:765.451067pt;}
.y1b1{bottom:767.414667pt;}
.y60{bottom:768.842800pt;}
.y9a{bottom:770.454800pt;}
.y1fb{bottom:772.985867pt;}
.y38{bottom:773.452667pt;}
.y163{bottom:780.306533pt;}
.y5f{bottom:783.673333pt;}
.y1fa{bottom:784.375200pt;}
.y99{bottom:785.446000pt;}
.y4e{bottom:787.317600pt;}
.y1b0{bottom:790.848800pt;}
.y161{bottom:795.162000pt;}
.y1f9{bottom:795.764533pt;}
.y5e{bottom:798.503867pt;}
.y162{bottom:799.158000pt;}
.y98{bottom:800.437200pt;}
.y1af{bottom:804.834000pt;}
.y1f8{bottom:807.531867pt;}
.y253{bottom:808.317733pt;}
.y254{bottom:809.251067pt;}
.y15f{bottom:810.017467pt;}
.y5d{bottom:813.334533pt;}
.y160{bottom:814.013467pt;}
.y97{bottom:815.428400pt;}
.y1ae{bottom:818.819200pt;}
.y1f7{bottom:818.921200pt;}
.y37{bottom:821.288933pt;}
.y50{bottom:822.738328pt;}
.y15e{bottom:824.873067pt;}
.y5c{bottom:828.164933pt;}
.y1f6{bottom:830.310400pt;}
.y96{bottom:830.419600pt;}
.y1ad{bottom:832.804533pt;}
.y11b{bottom:836.683067pt;}
.y119{bottom:837.616400pt;}
.y15d{bottom:839.728533pt;}
.y1f5{bottom:842.077733pt;}
.y5b{bottom:842.995467pt;}
.y137{bottom:844.621600pt;}
.y95{bottom:845.410800pt;}
.y135{bottom:845.555067pt;}
.y1ac{bottom:846.789733pt;}
.y1a3{bottom:846.898000pt;}
.y1a1{bottom:847.831333pt;}
.y1f4{bottom:853.467067pt;}
.y15c{bottom:854.584000pt;}
.y36{bottom:856.488933pt;}
.y4f{bottom:857.287448pt;}
.y5a{bottom:858.626000pt;}
.y94{bottom:860.402000pt;}
.y1ab{bottom:860.774933pt;}
.y1f3{bottom:864.856400pt;}
.y244{bottom:866.092933pt;}
.y23e{bottom:866.093067pt;}
.y15b{bottom:869.439600pt;}
.y1aa{bottom:874.760133pt;}
.y93{bottom:875.393200pt;}
.y1f2{bottom:876.623733pt;}
.y23d{bottom:877.359733pt;}
.y243{bottom:884.140267pt;}
.y15a{bottom:884.295067pt;}
.y59{bottom:884.395067pt;}
.y1f1{bottom:888.013067pt;}
.y1a9{bottom:888.745467pt;}
.y23c{bottom:889.004267pt;}
.y92{bottom:890.384400pt;}
.y242{bottom:896.140267pt;}
.y159{bottom:899.150533pt;}
.y58{bottom:899.225600pt;}
.y1f0{bottom:899.402400pt;}
.y23b{bottom:900.270933pt;}
.y1a8{bottom:902.730667pt;}
.y35{bottom:905.193067pt;}
.y241{bottom:908.140267pt;}
.y1ef{bottom:911.169733pt;}
.y23a{bottom:911.537600pt;}
.y91{bottom:913.734667pt;}
.y158{bottom:914.006000pt;}
.y57{bottom:914.056133pt;}
.y1a7{bottom:916.715867pt;}
.y240{bottom:920.140267pt;}
.y1ee{bottom:922.559067pt;}
.y239{bottom:923.182267pt;}
.y90{bottom:928.725867pt;}
.y157{bottom:928.861600pt;}
.y56{bottom:928.886667pt;}
.y1a6{bottom:930.701067pt;}
.y23f{bottom:932.140267pt;}
.y1ed{bottom:933.948400pt;}
.y238{bottom:934.448933pt;}
.y4d{bottom:935.016533pt;}
.y55{bottom:943.717067pt;}
.y1a5{bottom:944.686400pt;}
.y1ec{bottom:945.715600pt;}
.y54{bottom:968.158000pt;}
.y2{bottom:988.330533pt;}
.y53{bottom:989.583600pt;}
.y1{bottom:1000.463867pt;}
.y52{bottom:1003.450400pt;}
.hf{height:15.932224pt;}
.h6{height:20.988000pt;}
.h1f{height:25.376000pt;}
.h1d{height:26.016000pt;}
.h20{height:26.338208pt;}
.h3{height:27.328000pt;}
.h2{height:28.074667pt;}
.h10{height:28.364224pt;}
.h1c{height:29.280000pt;}
.h1a{height:29.511914pt;}
.h21{height:30.000000pt;}
.h19{height:30.080000pt;}
.h18{height:30.390240pt;}
.h1b{height:31.062500pt;}
.h15{height:31.232000pt;}
.h1e{height:32.000000pt;}
.h14{height:32.085333pt;}
.h16{height:34.224000pt;}
.h8{height:35.136000pt;}
.h5{height:36.000000pt;}
.he{height:36.096000pt;}
.hd{height:36.468288pt;}
.h13{height:36.812759pt;}
.h4{height:36.972000pt;}
.h17{height:36.972533pt;}
.h12{height:40.781250pt;}
.h7{height:42.000000pt;}
.hb{height:43.956704pt;}
.hc{height:43.957237pt;}
.h11{height:46.593750pt;}
.h9{height:54.656000pt;}
.ha{height:85.888000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:17.741459pt;}
.x9{left:28.012819pt;}
.xb{left:41.133867pt;}
.x8{left:47.494800pt;}
.x6{left:60.472400pt;}
.x1b{left:72.794400pt;}
.x27{left:76.163867pt;}
.x2b{left:77.945200pt;}
.x7{left:79.370133pt;}
.x33{left:132.937067pt;}
.x16{left:136.196000pt;}
.x1d{left:160.481600pt;}
.x19{left:165.114267pt;}
.x1c{left:171.979600pt;}
.x12{left:174.671600pt;}
.x28{left:180.718933pt;}
.xc{left:206.312533pt;}
.x15{left:223.881067pt;}
.x2e{left:231.038933pt;}
.x34{left:234.766133pt;}
.x31{left:240.493733pt;}
.xe{left:246.341733pt;}
.x2d{left:249.023200pt;}
.x32{left:278.209733pt;}
.x29{left:279.882133pt;}
.x2a{left:281.067067pt;}
.xd{left:290.461733pt;}
.x18{left:311.194000pt;}
.x14{left:312.810533pt;}
.x2c{left:323.586667pt;}
.x11{left:327.902400pt;}
.x1{left:397.732267pt;}
.x13{left:401.140933pt;}
.x2{left:404.869333pt;}
.x22{left:420.541867pt;}
.x26{left:422.323200pt;}
.xf{left:423.748000pt;}
.x17{left:460.237200pt;}
.x1a{left:482.914400pt;}
.x1e{left:488.367200pt;}
.x23{left:526.007867pt;}
.x2f{left:527.120133pt;}
.x21{left:558.395467pt;}
.x20{left:578.500667pt;}
.x4{left:584.386000pt;}
.x1f{left:590.294000pt;}
.x5{left:612.993867pt;}
.x24{left:621.900267pt;}
.x25{left:623.085200pt;}
.x3{left:635.101333pt;}
.x30{left:667.870000pt;}
.x10{left:734.774933pt;}
}




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