
    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_83aeae78ebb1d2de164c83ff.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_f8c7337f10cd528dba83a2cd.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_2f4cf7e340edcbce7a190ea8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2f4cf7e340edcbce7a190ea8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c5cdc1fd08912d06613ddd67.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c0e9e02667e83df644e48861.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.840000;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_3b040562bd7d473ce6dbf2d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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_ec32910af72186d3ce976372.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_d11a96a3e41e0c24c4f7859f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_86adfafbaac1ae79f67ed442.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070312;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_d9c0ddde75c54c961f42884c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_692ccef8dec95c2970788d03.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_acbbae3f9f66c0b3fb88a4db.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740234;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_c740b198c366cc662963d8b3.woff2')format("woff");}.fff{font-family:fff;line-height:0.730957;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_29d7fe159246967bf6a15e2d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.575000;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_3def0d9d92d80721b3062a00.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.575000;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_867181eebd27ea56093e802f.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_e077b8e2ff8a138ac0eca0be.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_1e54ab81f71ed52b2854ee11.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.592000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-68.150160px;}
.v7{vertical-align:-34.075080px;}
.vc{vertical-align:-22.913280px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-18.000000px;}
.vf{vertical-align:-16.384680px;}
.vb{vertical-align:-5.896800px;}
.v5{vertical-align:-2.845080px;}
.va{vertical-align:-1.347840px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:5.265000px;}
.v6{vertical-align:18.000000px;}
.v12{vertical-align:19.440000px;}
.v3{vertical-align:20.926800px;}
.v1{vertical-align:24.120000px;}
.ve{vertical-align:27.083160px;}
.v11{vertical-align:30.960000px;}
.v8{vertical-align:34.075080px;}
.vd{vertical-align:40.393080px;}
.v13{vertical-align:46.440000px;}
.lsb9{letter-spacing:-2.031840px;}
.lsa6{letter-spacing:-1.563120px;}
.lsa9{letter-spacing:-1.503000px;}
.lsa5{letter-spacing:-1.382760px;}
.lsa7{letter-spacing:-1.322640px;}
.lsaf{letter-spacing:-1.314000px;}
.lsa4{letter-spacing:-1.202400px;}
.lsb7{letter-spacing:-1.194000px;}
.lsa8{letter-spacing:-1.142280px;}
.ls60{letter-spacing:-1.022040px;}
.ls6c{letter-spacing:-0.864000px;}
.ls2d{letter-spacing:-0.841680px;}
.ls2f{letter-spacing:-0.781560px;}
.lsb6{letter-spacing:-0.774000px;}
.ls2e{letter-spacing:-0.661320px;}
.lsb3{letter-spacing:-0.660000px;}
.ls30{letter-spacing:-0.601200px;}
.lsb2{letter-spacing:-0.600000px;}
.ls3e{letter-spacing:-0.541080px;}
.ls6b{letter-spacing:-0.486000px;}
.ls5c{letter-spacing:-0.480960px;}
.ls7a{letter-spacing:-0.420840px;}
.ls2c{letter-spacing:-0.300600px;}
.lsb8{letter-spacing:-0.298800px;}
.lsbb{letter-spacing:-0.270000px;}
.ls6e{letter-spacing:-0.252000px;}
.ls5e{letter-spacing:-0.240480px;}
.ls5f{letter-spacing:-0.180360px;}
.ls31{letter-spacing:-0.162000px;}
.ls6d{letter-spacing:-0.126360px;}
.ls2b{letter-spacing:-0.120240px;}
.ls24{letter-spacing:-0.108000px;}
.ls23{letter-spacing:-0.095760px;}
.ls25{letter-spacing:-0.083880px;}
.ls26{letter-spacing:-0.072000px;}
.lsae{letter-spacing:-0.066240px;}
.ls2a{letter-spacing:-0.060120px;}
.lsb4{letter-spacing:-0.060000px;}
.lsba{letter-spacing:-0.059760px;}
.ls62{letter-spacing:-0.054000px;}
.ls8f{letter-spacing:-0.042120px;}
.ls0{letter-spacing:0.000000px;}
.ls99{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.018720px;}
.lsaa{letter-spacing:0.033120px;}
.lsa2{letter-spacing:0.042084px;}
.ls7e{letter-spacing:0.054108px;}
.lsb0{letter-spacing:0.060000px;}
.ls1a{letter-spacing:0.060120px;}
.ls3c{letter-spacing:0.075600px;}
.ls95{letter-spacing:0.081000px;}
.ls4{letter-spacing:0.083880px;}
.ls61{letter-spacing:0.096192px;}
.lsa3{letter-spacing:0.102204px;}
.ls22{letter-spacing:0.108000px;}
.lsad{letter-spacing:0.119520px;}
.lsab{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.120240px;}
.ls64{letter-spacing:0.126252px;}
.ls3{letter-spacing:0.143640px;}
.ls6{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.167760px;}
.ls90{letter-spacing:0.172800px;}
.lsac{letter-spacing:0.179280px;}
.ls11{letter-spacing:0.180360px;}
.ls37{letter-spacing:0.198396px;}
.ls42{letter-spacing:0.216000px;}
.lsb5{letter-spacing:0.240000px;}
.ls29{letter-spacing:0.240480px;}
.ls8e{letter-spacing:0.286200px;}
.ls17{letter-spacing:0.300600px;}
.ls82{letter-spacing:0.305280px;}
.ls3d{letter-spacing:0.307800px;}
.ls96{letter-spacing:0.324000px;}
.lsa1{letter-spacing:0.378000px;}
.lsf{letter-spacing:0.420840px;}
.ls10{letter-spacing:0.480960px;}
.ls1c{letter-spacing:0.486972px;}
.ls5a{letter-spacing:0.517032px;}
.ls53{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.541080px;}
.ls78{letter-spacing:0.547092px;}
.ls1b{letter-spacing:0.577152px;}
.ls28{letter-spacing:0.601200px;}
.lsb{letter-spacing:0.661320px;}
.lsb1{letter-spacing:0.714000px;}
.lsd{letter-spacing:0.721440px;}
.ls27{letter-spacing:0.781560px;}
.ls12{letter-spacing:0.841680px;}
.ls8{letter-spacing:0.901800px;}
.ls3f{letter-spacing:0.961920px;}
.ls40{letter-spacing:1.022040px;}
.ls36{letter-spacing:1.034064px;}
.ls3a{letter-spacing:1.052100px;}
.ls38{letter-spacing:1.142280px;}
.ls47{letter-spacing:1.202400px;}
.ls39{letter-spacing:1.238472px;}
.ls13{letter-spacing:1.250496px;}
.ls41{letter-spacing:1.262520px;}
.ls43{letter-spacing:1.322640px;}
.ls5d{letter-spacing:1.382760px;}
.ls54{letter-spacing:1.503000px;}
.ls45{letter-spacing:1.563120px;}
.lsc{letter-spacing:1.623240px;}
.ls2{letter-spacing:1.800000px;}
.lsa{letter-spacing:1.983960px;}
.ls19{letter-spacing:1.995984px;}
.ls9{letter-spacing:2.001996px;}
.ls1{letter-spacing:2.250000px;}
.ls7d{letter-spacing:2.290572px;}
.ls6a{letter-spacing:2.344680px;}
.ls15{letter-spacing:2.669328px;}
.ls65{letter-spacing:2.691144px;}
.ls44{letter-spacing:2.705400px;}
.ls35{letter-spacing:2.902608px;}
.ls16{letter-spacing:3.066120px;}
.lse{letter-spacing:3.426840px;}
.ls66{letter-spacing:3.727440px;}
.ls7b{letter-spacing:3.763512px;}
.ls48{letter-spacing:3.787560px;}
.ls34{letter-spacing:4.148280px;}
.ls52{letter-spacing:4.484952px;}
.ls58{letter-spacing:4.490964px;}
.ls51{letter-spacing:4.509000px;}
.ls59{letter-spacing:4.869720px;}
.ls4c{letter-spacing:5.110200px;}
.ls4d{letter-spacing:5.230440px;}
.ls6f{letter-spacing:5.567112px;}
.ls33{letter-spacing:5.591160px;}
.ls32{letter-spacing:5.951880px;}
.ls49{letter-spacing:5.957892px;}
.ls55{letter-spacing:7.034040px;}
.ls5b{letter-spacing:7.328628px;}
.ls4e{letter-spacing:7.334640px;}
.ls4f{letter-spacing:7.394760px;}
.ls63{letter-spacing:7.406784px;}
.ls50{letter-spacing:8.116200px;}
.ls7c{letter-spacing:8.434836px;}
.ls68{letter-spacing:8.765496px;}
.ls67{letter-spacing:8.789544px;}
.ls69{letter-spacing:8.837640px;}
.ls46{letter-spacing:9.559080px;}
.ls57{letter-spacing:9.877716px;}
.ls56{letter-spacing:9.919800px;}
.ls1e{letter-spacing:10.280520px;}
.ls79{letter-spacing:10.641240px;}
.ls4a{letter-spacing:10.947852px;}
.ls4b{letter-spacing:11.001960px;}
.ls1d{letter-spacing:11.993940px;}
.ls20{letter-spacing:29.646000px;}
.ls21{letter-spacing:53.028000px;}
.ls92{letter-spacing:53.208000px;}
.ls85{letter-spacing:64.566000px;}
.ls9f{letter-spacing:73.008000px;}
.ls83{letter-spacing:89.370000px;}
.ls8a{letter-spacing:89.442000px;}
.ls91{letter-spacing:93.546000px;}
.ls7f{letter-spacing:114.588000px;}
.lsa0{letter-spacing:146.466000px;}
.ls9e{letter-spacing:260.586000px;}
.ls75{letter-spacing:265.086000px;}
.ls9a{letter-spacing:285.048000px;}
.ls9c{letter-spacing:285.066000px;}
.ls72{letter-spacing:289.328400px;}
.ls93{letter-spacing:309.528000px;}
.ls94{letter-spacing:309.888000px;}
.ls98{letter-spacing:309.906000px;}
.ls77{letter-spacing:335.610000px;}
.ls97{letter-spacing:370.710000px;}
.ls76{letter-spacing:409.806000px;}
.ls73{letter-spacing:436.428000px;}
.ls70{letter-spacing:472.410000px;}
.ls9b{letter-spacing:493.830000px;}
.ls71{letter-spacing:520.290000px;}
.ls74{letter-spacing:553.410000px;}
.ls9d{letter-spacing:567.666000px;}
.ls1f{letter-spacing:847.227960px;}
.ls81{letter-spacing:898.668000px;}
.ls84{letter-spacing:902.610000px;}
.ls80{letter-spacing:1005.588000px;}
.ls86{letter-spacing:1016.748000px;}
.ls88{letter-spacing:1119.006000px;}
.ls8c{letter-spacing:1444.770000px;}
.ls8b{letter-spacing:1448.730000px;}
.ls89{letter-spacing:1500.930000px;}
.ls8d{letter-spacing:1562.850000px;}
.ls87{letter-spacing:1629.126000px;}
.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;}
}
.wsc1{word-spacing:-28.745040px;}
.ws8d{word-spacing:-23.486400px;}
.ws8b{word-spacing:-23.402520px;}
.ws8c{word-spacing:-23.234760px;}
.ws3{word-spacing:-19.944000px;}
.ws8e{word-spacing:-18.216360px;}
.ws64{word-spacing:-18.036000px;}
.ws65{word-spacing:-17.975880px;}
.ws66{word-spacing:-17.915760px;}
.ws4d{word-spacing:-17.855640px;}
.ws4e{word-spacing:-17.735400px;}
.ws4f{word-spacing:-17.675280px;}
.ws4{word-spacing:-17.494920px;}
.wsa3{word-spacing:-17.388000px;}
.ws6{word-spacing:-17.314560px;}
.ws8{word-spacing:-17.254440px;}
.ws5{word-spacing:-17.134200px;}
.ws7{word-spacing:-16.953840px;}
.wsb{word-spacing:-16.893720px;}
.ws74{word-spacing:-16.833600px;}
.wsa{word-spacing:-16.773480px;}
.ws11{word-spacing:-16.713360px;}
.wsc{word-spacing:-16.653240px;}
.ws9{word-spacing:-16.593120px;}
.ws9b{word-spacing:-16.533000px;}
.ws75{word-spacing:-16.472880px;}
.ws4a{word-spacing:-16.412760px;}
.ws73{word-spacing:-16.232400px;}
.ws49{word-spacing:-16.172280px;}
.wsd{word-spacing:-16.112160px;}
.wsf{word-spacing:-16.052040px;}
.ws10{word-spacing:-15.931800px;}
.wse{word-spacing:-15.871680px;}
.ws77{word-spacing:-15.691320px;}
.wsb7{word-spacing:-15.571080px;}
.wsb6{word-spacing:-15.330600px;}
.ws4b{word-spacing:-15.174000px;}
.wsaa{word-spacing:-15.120000px;}
.wsbe{word-spacing:-15.102720px;}
.wsbd{word-spacing:-15.036480px;}
.ws4c{word-spacing:-15.012000px;}
.ws14{word-spacing:-14.904000px;}
.ws13{word-spacing:-14.850000px;}
.ws9c{word-spacing:-14.526000px;}
.wsc0{word-spacing:-13.745280px;}
.wsc4{word-spacing:-13.744800px;}
.wsbf{word-spacing:-13.625280px;}
.wsc2{word-spacing:-13.326480px;}
.wsb4{word-spacing:-12.528000px;}
.wsb2{word-spacing:-12.420000px;}
.wsb3{word-spacing:-12.312000px;}
.wsa6{word-spacing:-12.258000px;}
.ws84{word-spacing:-12.150000px;}
.wsc5{word-spacing:-12.042000px;}
.ws12{word-spacing:-11.709360px;}
.wsb1{word-spacing:-11.667240px;}
.wsc3{word-spacing:-11.593440px;}
.ws50{word-spacing:-10.820880px;}
.ws76{word-spacing:-10.808640px;}
.ws1{word-spacing:-10.440000px;}
.ws9e{word-spacing:-9.477000px;}
.wsa4{word-spacing:-8.352000px;}
.wsa2{word-spacing:-8.208000px;}
.ws95{word-spacing:-4.509000px;}
.ws32{word-spacing:-4.328640px;}
.ws34{word-spacing:-4.148280px;}
.ws33{word-spacing:-3.787560px;}
.ws96{word-spacing:-3.607200px;}
.ws55{word-spacing:-3.426840px;}
.ws56{word-spacing:-3.306600px;}
.ws40{word-spacing:-3.066120px;}
.ws3f{word-spacing:-2.885760px;}
.ws27{word-spacing:-2.705400px;}
.ws43{word-spacing:-2.344680px;}
.ws94{word-spacing:-2.224440px;}
.wsd4{word-spacing:-2.124000px;}
.ws26{word-spacing:-1.983960px;}
.ws28{word-spacing:-1.863720px;}
.ws8f{word-spacing:-1.803600px;}
.ws7d{word-spacing:-1.743480px;}
.ws7c{word-spacing:-1.623240px;}
.ws7e{word-spacing:-1.503000px;}
.ws39{word-spacing:-1.262520px;}
.ws5d{word-spacing:-1.142280px;}
.ws68{word-spacing:-1.082160px;}
.ws5e{word-spacing:-1.022040px;}
.ws5c{word-spacing:-0.961920px;}
.ws20{word-spacing:-0.901800px;}
.ws2c{word-spacing:-0.781560px;}
.ws5b{word-spacing:-0.721440px;}
.wsd2{word-spacing:-0.714000px;}
.ws1f{word-spacing:-0.661320px;}
.ws24{word-spacing:-0.541080px;}
.wsa9{word-spacing:-0.432000px;}
.ws1e{word-spacing:-0.420840px;}
.ws87{word-spacing:-0.378000px;}
.ws60{word-spacing:-0.360720px;}
.ws88{word-spacing:-0.324000px;}
.ws1d{word-spacing:-0.300600px;}
.ws63{word-spacing:-0.270000px;}
.ws2d{word-spacing:-0.240480px;}
.wscf{word-spacing:-0.240000px;}
.ws72{word-spacing:-0.216000px;}
.wsdd{word-spacing:-0.198000px;}
.ws2f{word-spacing:-0.180360px;}
.ws18{word-spacing:-0.167760px;}
.wsa7{word-spacing:-0.162000px;}
.ws1c{word-spacing:-0.144000px;}
.ws16{word-spacing:-0.143640px;}
.wsdc{word-spacing:-0.126000px;}
.ws7b{word-spacing:-0.120240px;}
.wsc8{word-spacing:-0.120000px;}
.wse1{word-spacing:-0.119520px;}
.ws9a{word-spacing:-0.108000px;}
.ws19{word-spacing:-0.083880px;}
.wsa8{word-spacing:-0.072000px;}
.wsc6{word-spacing:-0.066240px;}
.wscd{word-spacing:-0.066000px;}
.ws3a{word-spacing:-0.060120px;}
.wsd0{word-spacing:-0.060000px;}
.wse2{word-spacing:-0.059760px;}
.ws59{word-spacing:-0.054000px;}
.wsdf{word-spacing:-0.024000px;}
.ws0{word-spacing:0.000000px;}
.wsce{word-spacing:0.054000px;}
.wse0{word-spacing:0.059760px;}
.wsd6{word-spacing:0.060000px;}
.ws37{word-spacing:0.060120px;}
.wsc7{word-spacing:0.066240px;}
.ws1b{word-spacing:0.072000px;}
.ws17{word-spacing:0.083880px;}
.ws15{word-spacing:0.095760px;}
.ws5a{word-spacing:0.108000px;}
.wsd1{word-spacing:0.120000px;}
.ws7a{word-spacing:0.120240px;}
.ws61{word-spacing:0.162000px;}
.ws80{word-spacing:0.167760px;}
.ws30{word-spacing:0.180360px;}
.ws1a{word-spacing:0.216000px;}
.ws48{word-spacing:0.270000px;}
.wsd8{word-spacing:0.288000px;}
.wse3{word-spacing:0.298800px;}
.ws3c{word-spacing:0.300600px;}
.wsb5{word-spacing:0.324000px;}
.wsba{word-spacing:0.360720px;}
.wsac{word-spacing:0.420840px;}
.ws62{word-spacing:0.432000px;}
.ws97{word-spacing:0.480960px;}
.wsdb{word-spacing:0.540000px;}
.ws2a{word-spacing:0.541080px;}
.wsca{word-spacing:0.588000px;}
.wsd5{word-spacing:0.594000px;}
.wsd3{word-spacing:0.600000px;}
.wsde{word-spacing:0.606000px;}
.wsd7{word-spacing:0.624000px;}
.ws8a{word-spacing:0.648000px;}
.wsc9{word-spacing:0.660000px;}
.ws41{word-spacing:0.661320px;}
.wscb{word-spacing:0.774000px;}
.ws42{word-spacing:0.781560px;}
.ws86{word-spacing:0.841680px;}
.wsda{word-spacing:0.870000px;}
.ws2b{word-spacing:0.901800px;}
.wsd9{word-spacing:1.002000px;}
.wsb9{word-spacing:1.022040px;}
.wsb8{word-spacing:1.202400px;}
.ws29{word-spacing:1.262520px;}
.wsbb{word-spacing:1.322640px;}
.wscc{word-spacing:1.362000px;}
.wsbc{word-spacing:1.563120px;}
.ws21{word-spacing:1.623240px;}
.ws5f{word-spacing:1.743480px;}
.ws35{word-spacing:1.983960px;}
.ws36{word-spacing:2.164320px;}
.ws44{word-spacing:2.344680px;}
.ws91{word-spacing:2.585160px;}
.ws23{word-spacing:2.705400px;}
.ws6b{word-spacing:2.825640px;}
.ws90{word-spacing:2.885760px;}
.ws25{word-spacing:3.066120px;}
.ws79{word-spacing:3.186360px;}
.ws6f{word-spacing:3.366720px;}
.ws54{word-spacing:3.426840px;}
.ws22{word-spacing:3.547080px;}
.ws67{word-spacing:3.727440px;}
.ws31{word-spacing:3.787560px;}
.ws92{word-spacing:4.088160px;}
.ws57{word-spacing:4.148280px;}
.ws93{word-spacing:4.268520px;}
.ws58{word-spacing:4.509000px;}
.ws6c{word-spacing:4.809600px;}
.ws47{word-spacing:4.869720px;}
.ws6d{word-spacing:4.989960px;}
.ws81{word-spacing:5.170320px;}
.wsb0{word-spacing:5.230440px;}
.wsad{word-spacing:5.290560px;}
.ws89{word-spacing:5.531040px;}
.ws2e{word-spacing:5.891760px;}
.ws6e{word-spacing:6.072120px;}
.ws53{word-spacing:6.132240px;}
.ws52{word-spacing:6.252480px;}
.ws7f{word-spacing:6.613200px;}
.ws45{word-spacing:6.973920px;}
.ws38{word-spacing:7.334640px;}
.ws69{word-spacing:7.515000px;}
.ws2{word-spacing:7.560000px;}
.ws82{word-spacing:7.575120px;}
.ws6a{word-spacing:7.695360px;}
.ws46{word-spacing:8.056080px;}
.ws78{word-spacing:8.777520px;}
.ws83{word-spacing:9.138240px;}
.wsab{word-spacing:9.498960px;}
.ws3d{word-spacing:9.859680px;}
.ws3e{word-spacing:10.220400px;}
.ws71{word-spacing:10.581120px;}
.wsae{word-spacing:11.302560px;}
.ws3b{word-spacing:12.024000px;}
.ws70{word-spacing:13.827600px;}
.wsaf{word-spacing:18.516960px;}
.ws99{word-spacing:36.492840px;}
.ws98{word-spacing:36.853560px;}
.wsa1{word-spacing:76.608000px;}
.ws9f{word-spacing:157.916304px;}
.wsa0{word-spacing:160.992000px;}
.ws9d{word-spacing:169.415064px;}
.ws51{word-spacing:184.842000px;}
.ws85{word-spacing:312.714000px;}
.wsa5{word-spacing:883.678800px;}
._15{margin-left:-2315.504880px;}
._2{margin-left:-11.484000px;}
._1{margin-left:-10.440000px;}
._3{margin-left:-9.396000px;}
._0{margin-left:-5.220000px;}
._4{margin-left:-3.894000px;}
._9{margin-left:-2.369400px;}
._6{margin-left:-1.024488px;}
._5{width:1.242000px;}
._8{width:2.525040px;}
._7{width:3.942000px;}
._d{width:5.834088px;}
._a{width:7.755480px;}
._11{width:8.820000px;}
._c{width:10.586016px;}
._b{width:12.444840px;}
._e{width:17.874000px;}
._14{width:35.230320px;}
._23{width:136.764000px;}
._25{width:260.442000px;}
._22{width:275.886000px;}
._1a{width:306.078600px;}
._21{width:315.630000px;}
._20{width:318.150000px;}
._16{width:322.818600px;}
._1d{width:333.612000px;}
._1c{width:336.132000px;}
._1f{width:360.990000px;}
._10{width:372.574200px;}
._1b{width:378.594000px;}
._1e{width:436.842000px;}
._18{width:500.370600px;}
._13{width:514.125000px;}
._17{width:613.932600px;}
._f{width:706.834200px;}
._19{width:798.018600px;}
._24{width:848.988000px;}
._12{width:870.201000px;}
.fc8{color:transparent;}
.fc9{color:rgb(255,0,0);}
.fc7{color:rgb(95,187,201);}
.fc6{color:rgb(110,53,139);}
.fc4{color:rgb(214,0,126);}
.fc5{color:rgb(0,130,173);}
.fc3{color:rgb(0,73,101);}
.fc1{color:rgb(227,5,19);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:36.000000px;}
.fs10{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:42.120000px;}
.fs9{font-size:47.880000px;}
.fse{font-size:54.000000px;}
.fs12{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs11{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:83.880000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.fs6{font-size:252.000000px;}
.fs5{font-size:261.000000px;}
.y0{bottom:0.000000px;}
.y151{bottom:0.823800px;}
.y165{bottom:2.053050px;}
.y1fa{bottom:2.070000px;}
.y1f5{bottom:2.160000px;}
.y167{bottom:2.185800px;}
.y163{bottom:2.186550px;}
.y155{bottom:2.255100px;}
.y15d{bottom:2.719650px;}
.y15b{bottom:2.730150px;}
.y203{bottom:2.880000px;}
.y153{bottom:3.009750px;}
.y1e0{bottom:3.060000px;}
.y16b{bottom:3.688800px;}
.y169{bottom:3.701400px;}
.y16d{bottom:3.711000px;}
.yf3{bottom:3.724800px;}
.y161{bottom:3.765600px;}
.y85{bottom:4.019550px;}
.y72{bottom:5.171250px;}
.y20c{bottom:6.390000px;}
.y15f{bottom:7.033500px;}
.y159{bottom:8.389950px;}
.y18f{bottom:9.990000px;}
.y199{bottom:10.080000px;}
.y19e{bottom:11.790000px;}
.y187{bottom:13.770000px;}
.y182{bottom:14.310000px;}
.y192{bottom:14.850000px;}
.y202{bottom:18.360000px;}
.y18b{bottom:18.630000px;}
.y209{bottom:20.430000px;}
.y220{bottom:20.880000px;}
.y1f7{bottom:21.330000px;}
.y27{bottom:23.854500px;}
.y1de{bottom:34.110000px;}
.y26{bottom:37.620000px;}
.y5{bottom:66.525004px;}
.y278{bottom:89.926110px;}
.y6d{bottom:92.430000px;}
.y4e{bottom:92.434500px;}
.y126{bottom:92.439000px;}
.y1af{bottom:96.633810px;}
.y4{bottom:97.125005px;}
.y115{bottom:98.280000px;}
.yca{bottom:101.766780px;}
.y277{bottom:106.489170px;}
.y125{bottom:108.004500px;}
.y6c{bottom:113.850000px;}
.y114{bottom:115.920000px;}
.y4d{bottom:118.350000px;}
.y1ae{bottom:120.666780px;}
.y124{bottom:123.570000px;}
.y1d2{bottom:125.726940px;}
.yc9{bottom:125.799750px;}
.y276{bottom:125.922960px;}
.yde{bottom:128.880000px;}
.y1f1{bottom:129.330000px;}
.y6b{bottom:131.400000px;}
.y4c{bottom:133.380000px;}
.y287{bottom:136.980000px;}
.y113{bottom:137.340000px;}
.y123{bottom:139.054500px;}
.y20{bottom:139.264499px;}
.y275{bottom:142.486020px;}
.y1f0{bottom:144.360000px;}
.y1ad{bottom:144.699750px;}
.y6a{bottom:147.060000px;}
.y1d1{bottom:149.669730px;}
.yc8{bottom:149.742540px;}
.y112{bottom:152.280000px;}
.y286{bottom:153.544500px;}
.y122{bottom:154.620000px;}
.ydd{bottom:159.451020px;}
.y274{bottom:161.919810px;}
.y69{bottom:162.544500px;}
.y1ac{bottom:168.642540px;}
.y285{bottom:169.920000px;}
.y121{bottom:170.104500px;}
.y1d0{bottom:173.702700px;}
.yc7{bottom:173.775510px;}
.y273{bottom:178.482870px;}
.y68{bottom:182.610000px;}
.ydc{bottom:183.393810px;}
.yaa{bottom:183.870000px;}
.y284{bottom:186.480000px;}
.y4b{bottom:188.819730px;}
.y120{bottom:191.430000px;}
.y111{bottom:191.592540px;}
.y1ab{bottom:192.675510px;}
.y67{bottom:195.480000px;}
.y17{bottom:196.933500px;}
.y1cf{bottom:197.735670px;}
.yc6{bottom:197.808480px;}
.y272{bottom:197.916660px;}
.ya9{bottom:198.900000px;}
.y283{bottom:203.044500px;}
.y11f{bottom:206.460000px;}
.ydb{bottom:207.426780px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y4a{bottom:212.852700px;}
.y271{bottom:214.479720px;}
.y110{bottom:215.625510px;}
.y1aa{bottom:216.708480px;}
.y282{bottom:219.420000px;}
.y1ce{bottom:221.678460px;}
.yc5{bottom:221.751270px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y23f{bottom:224.910000px;}
.y270{bottom:230.952600px;}
.yda{bottom:231.459750px;}
.y11e{bottom:234.078300px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y49{bottom:236.885670px;}
.y10f{bottom:239.658480px;}
.y1a9{bottom:240.651270px;}
.y66{bottom:243.250200px;}
.y1cd{bottom:245.711430px;}
.yc4{bottom:245.784240px;}
.ya8{bottom:245.903130px;}
.y23e{bottom:246.153150px;}
.y26f{bottom:250.476570px;}
.y281{bottom:254.332440px;}
.yd9{bottom:255.402540px;}
.y1ef{bottom:256.050000px;}
.y11d{bottom:258.111270px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y48{bottom:260.828460px;}
.y10e{bottom:263.601270px;}
.y1a8{bottom:264.684240px;}
.y26e{bottom:266.949450px;}
.y23d{bottom:267.120000px;}
.y65{bottom:267.192990px;}
.y1cc{bottom:269.744400px;}
.yc3{bottom:269.817210px;}
.ya7{bottom:269.845920px;}
.y280{bottom:272.335200px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y1ee{bottom:278.907030px;}
.yd8{bottom:279.435510px;}
.y11c{bottom:282.144240px;}
.y47{bottom:284.861430px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y26d{bottom:286.473420px;}
.y10d{bottom:287.634240px;}
.y23c{bottom:287.910000px;}
.y1a7{bottom:288.717210px;}
.y64{bottom:291.225960px;}
.y1cb{bottom:293.687190px;}
.yc2{bottom:293.751270px;}
.ya6{bottom:293.878890px;}
.y81{bottom:299.994900px;}
.y1ed{bottom:302.940000px;}
.y26c{bottom:302.946300px;}
.y23b{bottom:303.394500px;}
.yd7{bottom:303.468480px;}
.y11b{bottom:306.087030px;}
.y46{bottom:308.894400px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y10c{bottom:311.667210px;}
.y1a6{bottom:312.660000px;}
.y27f{bottom:313.016700px;}
.y63{bottom:315.258930px;}
.y1ca{bottom:317.720160px;}
.yc1{bottom:317.784240px;}
.ya5{bottom:317.911860px;}
.y23a{bottom:318.960000px;}
.y26b{bottom:322.470270px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y1ec{bottom:325.080000px;}
.yd6{bottom:327.411270px;}
.y11a{bottom:330.120000px;}
.y45{bottom:332.837190px;}
.y1a5{bottom:334.795500px;}
.y10b{bottom:335.610000px;}
.yef{bottom:338.252400px;}
.y26a{bottom:338.943150px;}
.y62{bottom:339.201720px;}
.y1c9{bottom:341.753130px;}
.yc0{bottom:341.817210px;}
.ya4{bottom:341.854650px;}
.y239{bottom:343.709910px;}
.ye{bottom:348.133500px;}
.y1eb{bottom:349.650000px;}
.yd5{bottom:351.444240px;}
.y27e{bottom:351.717000px;}
.y119{bottom:352.255500px;}
.y44{bottom:356.870160px;}
.y269{bottom:358.467120px;}
.y61{bottom:363.234690px;}
.y1c8{bottom:365.695920px;}
.ybf{bottom:365.760000px;}
.ya3{bottom:365.887620px;}
.y238{bottom:366.300000px;}
.y1a4{bottom:368.275500px;}
.y27d{bottom:369.720000px;}
.y268{bottom:374.985000px;}
.yd4{bottom:375.477210px;}
.y1ea{bottom:376.020000px;}
.y10a{bottom:377.280000px;}
.y43{bottom:380.903130px;}
.y118{bottom:385.735500px;}
.y236{bottom:386.280000px;}
.yd{bottom:386.785499px;}
.y60{bottom:387.267660px;}
.y1a3{bottom:388.255500px;}
.y1c7{bottom:389.728890px;}
.ya2{bottom:389.920590px;}
.y237{bottom:392.670000px;}
.y267{bottom:394.508970px;}
.yd3{bottom:399.411270px;}
.y117{bottom:401.220000px;}
.y1a2{bottom:403.915500px;}
.y42{bottom:404.845920px;}
.y1e9{bottom:407.070000px;}
.ybe{bottom:407.434500px;}
.yc{bottom:408.044999px;}
.y235{bottom:409.500000px;}
.y266{bottom:410.981850px;}
.y5f{bottom:411.210450px;}
.y27c{bottom:411.289500px;}
.y1c6{bottom:413.761860px;}
.ya1{bottom:413.863380px;}
.y116{bottom:415.710000px;}
.y1a1{bottom:419.400000px;}
.y231{bottom:419.764500px;}
.yd2{bottom:423.444240px;}
.y41{bottom:428.878890px;}
.y27b{bottom:429.292500px;}
.y17f{bottom:429.599250px;}
.y265{bottom:430.505820px;}
.ybd{bottom:431.550000px;}
.y233{bottom:432.810000px;}
.y1a0{bottom:434.340000px;}
.y5e{bottom:435.243420px;}
.y230{bottom:435.330000px;}
.y1c5{bottom:437.704650px;}
.y109{bottom:437.713380px;}
.ya0{bottom:437.896350px;}
.y234{bottom:439.200000px;}
.y1e8{bottom:439.650000px;}
.y19d{bottom:444.870000px;}
.y264{bottom:446.978700px;}
.y27a{bottom:447.295500px;}
.yd1{bottom:447.477210px;}
.y17e{bottom:448.881750px;}
.y40{bottom:452.911860px;}
.y22f{bottom:456.030000px;}
.y19f{bottom:456.660000px;}
.y5d{bottom:457.653150px;}
.y1c4{bottom:461.737620px;}
.y108{bottom:461.746350px;}
.y9f{bottom:461.929320px;}
.y232{bottom:462.424500px;}
.y263{bottom:466.502670px;}
.y17d{bottom:468.164250px;}
.yd0{bottom:471.420000px;}
.y1e7{bottom:472.320000px;}
.y3f{bottom:476.854650px;}
.y5c{bottom:478.620000px;}
.y19b{bottom:478.800000px;}
.y22d{bottom:479.250000px;}
.y262{bottom:482.975550px;}
.y22e{bottom:485.640000px;}
.y1c3{bottom:485.770590px;}
.y107{bottom:485.779320px;}
.y9e{bottom:485.872110px;}
.y17c{bottom:487.446750px;}
.y19c{bottom:488.880000px;}
.y22b{bottom:489.510000px;}
.ybc{bottom:491.954220px;}
.y279{bottom:495.540000px;}
.y5b{bottom:499.401000px;}
.y3e{bottom:500.887620px;}
.y261{bottom:502.499520px;}
.y229{bottom:502.560000px;}
.y1e6{bottom:504.900000px;}
.y22a{bottom:505.080000px;}
.y17b{bottom:506.729400px;}
.y198{bottom:508.590000px;}
.y22c{bottom:508.950000px;}
.y1c2{bottom:509.713380px;}
.y106{bottom:509.722110px;}
.y9d{bottom:509.905080px;}
.ycf{bottom:511.564500px;}
.y5a{bottom:514.885500px;}
.ybb{bottom:515.987190px;}
.y19a{bottom:518.670000px;}
.y260{bottom:518.972400px;}
.yb{bottom:520.864502px;}
.y3d{bottom:524.920590px;}
.y227{bottom:525.780000px;}
.y17a{bottom:526.012050px;}
.yce{bottom:527.130000px;}
.y80{bottom:527.580000px;}
.y228{bottom:532.170000px;}
.y1c1{bottom:533.746350px;}
.y105{bottom:533.755080px;}
.y9c{bottom:533.938050px;}
.y1e5{bottom:537.570000px;}
.y196{bottom:538.380000px;}
.y25f{bottom:538.496370px;}
.ya{bottom:538.864499px;}
.yba{bottom:540.020160px;}
.ycd{bottom:542.880000px;}
.y179{bottom:545.294550px;}
.y84{bottom:548.446200px;}
.y197{bottom:548.460000px;}
.y3c{bottom:548.863380px;}
.y226{bottom:549.000000px;}
.y25e{bottom:554.969250px;}
.y9{bottom:556.864499px;}
.yee{bottom:557.010000px;}
.y1c0{bottom:557.779320px;}
.y104{bottom:557.788050px;}
.y9b{bottom:557.880840px;}
.yb9{bottom:563.962950px;}
.y83{bottom:565.292850px;}
.y194{bottom:568.170000px;}
.y1e4{bottom:570.150000px;}
.y224{bottom:572.310000px;}
.y3b{bottom:572.896350px;}
.y25d{bottom:574.493220px;}
.y177{bottom:574.825200px;}
.yf2{bottom:576.907050px;}
.y195{bottom:578.160000px;}
.y225{bottom:578.700000px;}
.y1bf{bottom:581.722110px;}
.y103{bottom:581.730840px;}
.y9a{bottom:581.913810px;}
.y178{bottom:585.085200px;}
.y176{bottom:585.265200px;}
.yb8{bottom:587.995920px;}
.y25c{bottom:590.966100px;}
.y82{bottom:591.500850px;}
.yf1{bottom:593.079300px;}
.y16e{bottom:595.197750px;}
.y222{bottom:595.530000px;}
.y3a{bottom:596.929320px;}
.y21c{bottom:597.060000px;}
.y191{bottom:597.960000px;}
.y223{bottom:601.920000px;}
.y1e3{bottom:602.820000px;}
.y1be{bottom:605.755080px;}
.y102{bottom:605.763810px;}
.y99{bottom:605.946780px;}
.y73{bottom:607.884600px;}
.y193{bottom:607.950000px;}
.y25b{bottom:610.490070px;}
.yb7{bottom:612.028890px;}
.yf0{bottom:618.713850px;}
.y21e{bottom:618.750000px;}
.y39{bottom:620.872110px;}
.y221{bottom:624.150000px;}
.y74{bottom:624.786600px;}
.y25a{bottom:626.962950px;}
.y18e{bottom:627.750000px;}
.y133{bottom:629.380290px;}
.y1bd{bottom:629.788050px;}
.y101{bottom:629.796780px;}
.y98{bottom:629.889570px;}
.y21f{bottom:631.890000px;}
.ydf{bottom:635.097450px;}
.y1e2{bottom:635.400000px;}
.yb6{bottom:635.971680px;}
.y190{bottom:637.740000px;}
.y16f{bottom:637.775040px;}
.y75{bottom:641.688600px;}
.y38{bottom:644.905080px;}
.y8{bottom:645.510000px;}
.y259{bottom:646.486920px;}
.y6e{bottom:648.075450px;}
.y132{bottom:650.671950px;}
.ye0{bottom:652.444950px;}
.y1bc{bottom:653.730840px;}
.y100{bottom:653.739570px;}
.y97{bottom:653.922540px;}
.y21b{bottom:655.560000px;}
.y18a{bottom:657.450000px;}
.y76{bottom:658.590600px;}
.yb5{bottom:660.004650px;}
.y21d{bottom:661.954500px;}
.y258{bottom:662.959800px;}
.y18d{bottom:663.484500px;}
.y70{bottom:664.007520px;}
.y7{bottom:666.771000px;}
.y1e1{bottom:668.070000px;}
.y37{bottom:668.938050px;}
.ye1{bottom:669.792450px;}
.y24{bottom:670.535400px;}
.y129{bottom:671.942550px;}
.y77{bottom:675.492600px;}
.y1bb{bottom:677.763810px;}
.yff{bottom:677.772540px;}
.y96{bottom:677.955510px;}
.y219{bottom:678.780000px;}
.y18c{bottom:679.050000px;}
.y6f{bottom:679.963530px;}
.y170{bottom:680.352330px;}
.y257{bottom:682.483770px;}
.yb4{bottom:684.037620px;}
.y21a{bottom:685.170000px;}
.ye2{bottom:687.139950px;}
.y1dd{bottom:689.580000px;}
.y71{bottom:691.650000px;}
.y78{bottom:692.394600px;}
.y36{bottom:692.880840px;}
.y186{bottom:694.800000px;}
.y256{bottom:698.956650px;}
.y189{bottom:700.830000px;}
.y127{bottom:701.742450px;}
.y1ba{bottom:701.796780px;}
.yfe{bottom:701.805510px;}
.y95{bottom:701.898300px;}
.y217{bottom:702.000000px;}
.ye3{bottom:704.487450px;}
.y128{bottom:705.996570px;}
.yb3{bottom:707.980410px;}
.y1df{bottom:708.120000px;}
.y1dc{bottom:708.129000px;}
.y218{bottom:708.390000px;}
.y185{bottom:708.570000px;}
.y79{bottom:709.296600px;}
.y255{bottom:715.429530px;}
.y188{bottom:716.310000px;}
.y35{bottom:716.913810px;}
.ye4{bottom:721.834950px;}
.y171{bottom:722.929620px;}
.y12b{bottom:723.034110px;}
.y215{bottom:725.310000px;}
.y1b9{bottom:725.739570px;}
.yfd{bottom:725.748300px;}
.y94{bottom:725.931270px;}
.y7a{bottom:726.198600px;}
.y6{bottom:726.298500px;}
.y216{bottom:731.700000px;}
.yb2{bottom:732.013380px;}
.y181{bottom:732.780000px;}
.y254{bottom:734.953500px;}
.y12d{bottom:735.817530px;}
.y131{bottom:735.828060px;}
.ye5{bottom:739.182450px;}
.y184{bottom:739.345500px;}
.y12a{bottom:740.061120px;}
.y34{bottom:740.946780px;}
.y23{bottom:742.535400px;}
.y7b{bottom:743.100600px;}
.y213{bottom:748.530000px;}
.y12e{bottom:748.590420px;}
.y13b{bottom:748.622010px;}
.y1b8{bottom:749.772540px;}
.yfc{bottom:749.781270px;}
.y93{bottom:749.964240px;}
.y253{bottom:751.426380px;}
.y3{bottom:752.599495px;}
.y12c{bottom:752.844540px;}
.y135{bottom:752.876130px;}
.y183{bottom:754.830000px;}
.y214{bottom:754.920000px;}
.yb1{bottom:756.046350px;}
.ye6{bottom:756.529950px;}
.y130{bottom:757.109190px;}
.y138{bottom:757.140780px;}
.y1db{bottom:757.984500px;}
.y7c{bottom:760.002600px;}
.y140{bottom:761.394900px;}
.y33{bottom:764.889570px;}
.y172{bottom:765.506910px;}
.y134{bottom:765.649020px;}
.y12f{bottom:769.882080px;}
.y13f{bottom:769.924200px;}
.y252{bottom:770.950350px;}
.y212{bottom:771.750000px;}
.y1b7{bottom:773.805510px;}
.yfb{bottom:773.814240px;}
.ye7{bottom:773.877450px;}
.y92{bottom:773.907030px;}
.y137{bottom:774.167790px;}
.y7d{bottom:776.904600px;}
.y20e{bottom:778.140000px;}
.y13c{bottom:778.432440px;}
.yb0{bottom:779.989140px;}
.y145{bottom:782.676030px;}
.y13a{bottom:782.686560px;}
.y136{bottom:786.940680px;}
.y13e{bottom:786.951210px;}
.y251{bottom:787.423230px;}
.y32{bottom:788.922540px;}
.ye8{bottom:791.224950px;}
.y1da{bottom:791.910000px;}
.y180{bottom:792.630000px;}
.y7e{bottom:793.806600px;}
.y210{bottom:795.060000px;}
.y139{bottom:795.459450px;}
.y22{bottom:796.535400px;}
.y1b6{bottom:797.748300px;}
.yfa{bottom:797.757030px;}
.y91{bottom:797.937030px;}
.y142{bottom:798.239370px;}
.y15e{bottom:801.090000px;}
.y211{bottom:801.450000px;}
.y146{bottom:803.967690px;}
.y13d{bottom:803.978220px;}
.y250{bottom:803.986290px;}
.yaf{bottom:804.022110px;}
.y15c{bottom:804.960000px;}
.y166{bottom:805.230000px;}
.y164{bottom:805.320000px;}
.y173{bottom:808.084200px;}
.y14a{bottom:808.221810px;}
.y143{bottom:808.232340px;}
.ye9{bottom:808.572450px;}
.y1d9{bottom:809.895330px;}
.y7f{bottom:810.708600px;}
.y144{bottom:812.486460px;}
.y31{bottom:812.955510px;}
.y160{bottom:812.970000px;}
.y147{bottom:816.740580px;}
.y141{bottom:816.751110px;}
.y20d{bottom:818.280000px;}
.y168{bottom:819.900000px;}
.y149{bottom:820.994700px;}
.y16a{bottom:821.520000px;}
.y1b5{bottom:821.781270px;}
.yf9{bottom:821.790000px;}
.y90{bottom:821.970000px;}
.y24f{bottom:823.420080px;}
.y20f{bottom:824.670000px;}
.yea{bottom:825.919950px;}
.yae{bottom:828.055080px;}
.y162{bottom:830.790000px;}
.y148{bottom:833.767590px;}
.y1d8{bottom:833.928300px;}
.y158{bottom:836.190000px;}
.y30{bottom:836.898300px;}
.y14c{bottom:838.021710px;}
.y16c{bottom:838.530000px;}
.y24e{bottom:839.983140px;}
.y20b{bottom:841.500000px;}
.y152{bottom:841.950000px;}
.y14b{bottom:842.286360px;}
.yeb{bottom:843.267450px;}
.y1b4{bottom:845.814240px;}
.y15a{bottom:847.530000px;}
.y174{bottom:850.661490px;}
.yad{bottom:851.997870px;}
.y150{bottom:853.560000px;}
.y59{bottom:854.910000px;}
.y156{bottom:855.032100px;}
.y24d{bottom:856.456020px;}
.y14e{bottom:856.522920px;}
.y14f{bottom:856.786170px;}
.y1d7{bottom:857.961270px;}
.yec{bottom:860.614950px;}
.y2f{bottom:860.931270px;}
.yf8{bottom:863.464500px;}
.y8f{bottom:863.550000px;}
.y14d{bottom:863.567490px;}
.y208{bottom:864.810000px;}
.y157{bottom:867.804990px;}
.y1b3{bottom:869.757030px;}
.y20a{bottom:869.760000px;}
.y58{bottom:870.570000px;}
.y154{bottom:874.800000px;}
.y24c{bottom:875.979990px;}
.yac{bottom:876.030840px;}
.yed{bottom:877.962450px;}
.y2{bottom:879.369000px;}
.y1d6{bottom:881.904060px;}
.y2e{bottom:884.964240px;}
.yf7{bottom:887.580000px;}
.y24b{bottom:892.452870px;}
.y175{bottom:893.238780px;}
.y1b2{bottom:893.790000px;}
.yab{bottom:900.063810px;}
.y206{bottom:900.630000px;}
.y57{bottom:905.931270px;}
.y1d5{bottom:905.937030px;}
.y207{bottom:907.020000px;}
.y2d{bottom:908.907030px;}
.y24a{bottom:908.925750px;}
.ycc{bottom:921.060000px;}
.y204{bottom:923.850000px;}
.y8e{bottom:924.006600px;}
.y249{bottom:928.449720px;}
.y1d4{bottom:929.952540px;}
.y56{bottom:929.964240px;}
.y205{bottom:930.240000px;}
.y2c{bottom:932.940000px;}
.y1b1{bottom:935.464500px;}
.ycb{bottom:936.720000px;}
.y248{bottom:944.922600px;}
.y201{bottom:946.170000px;}
.y200{bottom:947.160000px;}
.y8d{bottom:948.039570px;}
.yf6{bottom:948.051270px;}
.y1d3{bottom:953.895330px;}
.y55{bottom:953.907030px;}
.y1b0{bottom:959.580000px;}
.y247{bottom:964.446570px;}
.y1{bottom:966.726000px;}
.y8c{bottom:972.072540px;}
.yf5{bottom:972.084240px;}
.y25{bottom:972.212700px;}
.y2b{bottom:973.890000px;}
.y54{bottom:977.928300px;}
.y1fe{bottom:978.840000px;}
.y246{bottom:980.919450px;}
.y1ff{bottom:985.230000px;}
.y8b{bottom:996.015330px;}
.yf4{bottom:996.027030px;}
.y245{bottom:1000.443420px;}
.y53{bottom:1001.961270px;}
.y1fc{bottom:1002.150000px;}
.y1fd{bottom:1008.540000px;}
.y244{bottom:1016.916300px;}
.y8a{bottom:1020.048300px;}
.y1fb{bottom:1020.150000px;}
.y2a{bottom:1021.950000px;}
.y21{bottom:1023.023400px;}
.y1f9{bottom:1025.370000px;}
.y52{bottom:1025.904060px;}
.y243{bottom:1033.479360px;}
.y89{bottom:1044.081270px;}
.y1f4{bottom:1048.590000px;}
.y51{bottom:1049.937030px;}
.y242{bottom:1052.913150px;}
.y1f8{bottom:1054.440000px;}
.y1f6{bottom:1062.180000px;}
.y29{bottom:1064.610000px;}
.y88{bottom:1068.024060px;}
.y241{bottom:1072.437120px;}
.y50{bottom:1073.970000px;}
.y240{bottom:1088.910000px;}
.y87{bottom:1092.057030px;}
.y1f3{bottom:1107.094500px;}
.y28{bottom:1107.990000px;}
.y4f{bottom:1115.550000px;}
.y86{bottom:1116.090000px;}
.y1f2{bottom:1122.660000px;}
.h2a{height:9.180000px;}
.h2c{height:12.060000px;}
.h34{height:13.320000px;}
.h33{height:13.500000px;}
.h2b{height:13.588500px;}
.h30{height:14.040000px;}
.h36{height:14.940000px;}
.h32{height:15.030000px;}
.h35{height:15.031500px;}
.h31{height:18.360000px;}
.h1b{height:19.081500px;}
.h2e{height:19.710000px;}
.h4a{height:22.498500px;}
.h48{height:22.500000px;}
.h38{height:26.208984px;}
.h3e{height:29.700000px;}
.h40{height:29.788500px;}
.h3f{height:29.790000px;}
.h1a{height:30.955078px;}
.h4b{height:30.960000px;}
.h7{height:32.130000px;}
.h37{height:32.466797px;}
.h41{height:33.210000px;}
.h2f{height:34.857949px;}
.h46{height:35.064141px;}
.h4c{height:35.100000px;}
.h4e{height:36.000000px;}
.h16{height:36.217441px;}
.h45{height:36.901500px;}
.h3a{height:37.260000px;}
.h3c{height:37.350000px;}
.h25{height:37.986152px;}
.h27{height:38.028272px;}
.h39{height:38.250000px;}
.h19{height:39.313477px;}
.hf{height:43.180840px;}
.h2d{height:43.251152px;}
.h24{height:44.208984px;}
.h6{height:45.900000px;}
.h17{height:46.432617px;}
.h42{height:46.800000px;}
.h3{height:48.195000px;}
.h1c{height:48.700195px;}
.hd{height:48.906000px;}
.h14{height:51.694980px;}
.h20{height:51.729900px;}
.h13{height:52.417969px;}
.hc{height:53.064000px;}
.h44{height:54.219551px;}
.h28{height:55.002632px;}
.h2{height:55.080000px;}
.h1e{height:57.097441px;}
.h1f{height:57.109321px;}
.h21{height:57.132361px;}
.h18{height:57.144241px;}
.h23{height:57.167281px;}
.h54{height:57.618000px;}
.h12{height:58.977949px;}
.h11{height:61.066934px;}
.h15{height:61.428014px;}
.h51{height:63.763920px;}
.h52{height:63.764160px;}
.h53{height:64.779840px;}
.h43{height:65.872617px;}
.hb{height:67.050000px;}
.h47{height:70.273477px;}
.h50{height:70.678080px;}
.h26{height:72.061232px;}
.h3b{height:77.392617px;}
.h3d{height:77.752617px;}
.h5{height:78.030000px;}
.h29{height:78.379232px;}
.h10{height:78.626953px;}
.h4d{height:79.660195px;}
.h49{height:95.140195px;}
.h4{height:119.055004px;}
.ha{height:182.196000px;}
.h9{height:188.703000px;}
.h1d{height:312.750000px;}
.h22{height:353.250000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h4f{height:1264.500000px;}
.wd{width:12.061500px;}
.wf{width:16.200000px;}
.we{width:29.340000px;}
.wc{width:57.150000px;}
.w5{width:75.148500px;}
.w8{width:83.790000px;}
.wb{width:95.850000px;}
.wa{width:95.938500px;}
.w9{width:95.940000px;}
.w11{width:115.290000px;}
.w10{width:115.648500px;}
.w13{width:208.351500px;}
.w12{width:297.630000px;}
.w2{width:637.794021px;}
.w7{width:653.670000px;}
.w6{width:666.000000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.w14{width:895.500000px;}
.x0{left:0.000000px;}
.x19{left:2.295150px;}
.x54{left:5.940000px;}
.x14{left:7.788900px;}
.x4f{left:9.000000px;}
.x5a{left:17.190000px;}
.x46{left:18.810000px;}
.x29{left:35.838150px;}
.xf{left:41.102700px;}
.x16{left:57.861300px;}
.x5{left:77.983650px;}
.x6{left:83.131200px;}
.x50{left:86.220000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5c{left:117.000000px;}
.x13{left:121.500000px;}
.x9{left:127.620000px;}
.x12{left:129.293400px;}
.x10{left:131.763900px;}
.x4e{left:132.840000px;}
.x11{left:135.449400px;}
.x18{left:139.060800px;}
.xc{left:144.634500px;}
.xb{left:148.947570px;}
.x17{left:151.372800px;}
.x52{left:154.620000px;}
.x1a{left:157.005300px;}
.x2c{left:160.650000px;}
.x45{left:174.716400px;}
.x1d{left:177.725730px;}
.x15{left:179.361300px;}
.x4{left:203.484001px;}
.x1b{left:211.472100px;}
.x2d{left:215.820000px;}
.x5d{left:231.306000px;}
.x1e{left:235.830270px;}
.x2e{left:272.520000px;}
.x37{left:278.709300px;}
.x24{left:291.060120px;}
.x1c{left:292.576440px;}
.x28{left:313.380000px;}
.x47{left:321.385500px;}
.x48{left:323.640000px;}
.x38{left:328.479300px;}
.x2f{left:333.450000px;}
.x39{left:335.409300px;}
.xa{left:343.620000px;}
.x26{left:349.164660px;}
.x56{left:352.170000px;}
.x57{left:357.390000px;}
.x58{left:361.710000px;}
.x2a{left:370.080000px;}
.x3a{left:385.179300px;}
.x30{left:390.150000px;}
.x3b{left:399.129300px;}
.x25{left:404.447160px;}
.x1f{left:405.910830px;}
.x51{left:412.290000px;}
.x7{left:415.080000px;}
.x2b{left:426.780000px;}
.x49{left:438.565500px;}
.x4a{left:440.820000px;}
.x31{left:444.420000px;}
.x8{left:446.501250px;}
.x3d{left:448.809300px;}
.x3{left:454.959000px;}
.x3c{left:458.709300px;}
.x20{left:462.604350px;}
.x59{left:467.820000px;}
.x5b{left:473.040000px;}
.x3e{left:496.959300px;}
.x3f{left:498.939300px;}
.x32{left:502.110000px;}
.x27{left:519.182040px;}
.x4b{left:551.871000px;}
.x33{left:559.440000px;}
.x40{left:571.560300px;}
.x4c{left:573.025500px;}
.x21{left:575.991390px;}
.x34{left:615.510000px;}
.x41{left:618.900300px;}
.x22{left:632.684910px;}
.x4d{left:657.994500px;}
.x35{left:673.830000px;}
.x42{left:675.600300px;}
.xe{left:712.350000px;}
.x36{left:724.680000px;}
.x43{left:729.870300px;}
.x53{left:737.730000px;}
.x44{left:739.320300px;}
.x55{left:744.480000px;}
.x23{left:746.071950px;}
.xd{left:752.804400px;}
@media print{
.v9{vertical-align:-60.577920pt;}
.v7{vertical-align:-30.288960pt;}
.vc{vertical-align:-20.367360pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-16.000000pt;}
.vf{vertical-align:-14.564160pt;}
.vb{vertical-align:-5.241600pt;}
.v5{vertical-align:-2.528960pt;}
.va{vertical-align:-1.198080pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:4.680000pt;}
.v6{vertical-align:16.000000pt;}
.v12{vertical-align:17.280000pt;}
.v3{vertical-align:18.601600pt;}
.v1{vertical-align:21.440000pt;}
.ve{vertical-align:24.073920pt;}
.v11{vertical-align:27.520000pt;}
.v8{vertical-align:30.288960pt;}
.vd{vertical-align:35.904960pt;}
.v13{vertical-align:41.280000pt;}
.lsb9{letter-spacing:-1.806080pt;}
.lsa6{letter-spacing:-1.389440pt;}
.lsa9{letter-spacing:-1.336000pt;}
.lsa5{letter-spacing:-1.229120pt;}
.lsa7{letter-spacing:-1.175680pt;}
.lsaf{letter-spacing:-1.168000pt;}
.lsa4{letter-spacing:-1.068800pt;}
.lsb7{letter-spacing:-1.061333pt;}
.lsa8{letter-spacing:-1.015360pt;}
.ls60{letter-spacing:-0.908480pt;}
.ls6c{letter-spacing:-0.768000pt;}
.ls2d{letter-spacing:-0.748160pt;}
.ls2f{letter-spacing:-0.694720pt;}
.lsb6{letter-spacing:-0.688000pt;}
.ls2e{letter-spacing:-0.587840pt;}
.lsb3{letter-spacing:-0.586667pt;}
.ls30{letter-spacing:-0.534400pt;}
.lsb2{letter-spacing:-0.533333pt;}
.ls3e{letter-spacing:-0.480960pt;}
.ls6b{letter-spacing:-0.432000pt;}
.ls5c{letter-spacing:-0.427520pt;}
.ls7a{letter-spacing:-0.374080pt;}
.ls2c{letter-spacing:-0.267200pt;}
.lsb8{letter-spacing:-0.265600pt;}
.lsbb{letter-spacing:-0.240000pt;}
.ls6e{letter-spacing:-0.224000pt;}
.ls5e{letter-spacing:-0.213760pt;}
.ls5f{letter-spacing:-0.160320pt;}
.ls31{letter-spacing:-0.144000pt;}
.ls6d{letter-spacing:-0.112320pt;}
.ls2b{letter-spacing:-0.106880pt;}
.ls24{letter-spacing:-0.096000pt;}
.ls23{letter-spacing:-0.085120pt;}
.ls25{letter-spacing:-0.074560pt;}
.ls26{letter-spacing:-0.064000pt;}
.lsae{letter-spacing:-0.058880pt;}
.ls2a{letter-spacing:-0.053440pt;}
.lsb4{letter-spacing:-0.053333pt;}
.lsba{letter-spacing:-0.053120pt;}
.ls62{letter-spacing:-0.048000pt;}
.ls8f{letter-spacing:-0.037440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls99{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.016640pt;}
.lsaa{letter-spacing:0.029440pt;}
.lsa2{letter-spacing:0.037408pt;}
.ls7e{letter-spacing:0.048096pt;}
.lsb0{letter-spacing:0.053333pt;}
.ls1a{letter-spacing:0.053440pt;}
.ls3c{letter-spacing:0.067200pt;}
.ls95{letter-spacing:0.072000pt;}
.ls4{letter-spacing:0.074560pt;}
.ls61{letter-spacing:0.085504pt;}
.lsa3{letter-spacing:0.090848pt;}
.ls22{letter-spacing:0.096000pt;}
.lsad{letter-spacing:0.106240pt;}
.lsab{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.106880pt;}
.ls64{letter-spacing:0.112224pt;}
.ls3{letter-spacing:0.127680pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.149120pt;}
.ls90{letter-spacing:0.153600pt;}
.lsac{letter-spacing:0.159360pt;}
.ls11{letter-spacing:0.160320pt;}
.ls37{letter-spacing:0.176352pt;}
.ls42{letter-spacing:0.192000pt;}
.lsb5{letter-spacing:0.213333pt;}
.ls29{letter-spacing:0.213760pt;}
.ls8e{letter-spacing:0.254400pt;}
.ls17{letter-spacing:0.267200pt;}
.ls82{letter-spacing:0.271360pt;}
.ls3d{letter-spacing:0.273600pt;}
.ls96{letter-spacing:0.288000pt;}
.lsa1{letter-spacing:0.336000pt;}
.lsf{letter-spacing:0.374080pt;}
.ls10{letter-spacing:0.427520pt;}
.ls1c{letter-spacing:0.432864pt;}
.ls5a{letter-spacing:0.459584pt;}
.ls53{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.480960pt;}
.ls78{letter-spacing:0.486304pt;}
.ls1b{letter-spacing:0.513024pt;}
.ls28{letter-spacing:0.534400pt;}
.lsb{letter-spacing:0.587840pt;}
.lsb1{letter-spacing:0.634667pt;}
.lsd{letter-spacing:0.641280pt;}
.ls27{letter-spacing:0.694720pt;}
.ls12{letter-spacing:0.748160pt;}
.ls8{letter-spacing:0.801600pt;}
.ls3f{letter-spacing:0.855040pt;}
.ls40{letter-spacing:0.908480pt;}
.ls36{letter-spacing:0.919168pt;}
.ls3a{letter-spacing:0.935200pt;}
.ls38{letter-spacing:1.015360pt;}
.ls47{letter-spacing:1.068800pt;}
.ls39{letter-spacing:1.100864pt;}
.ls13{letter-spacing:1.111552pt;}
.ls41{letter-spacing:1.122240pt;}
.ls43{letter-spacing:1.175680pt;}
.ls5d{letter-spacing:1.229120pt;}
.ls54{letter-spacing:1.336000pt;}
.ls45{letter-spacing:1.389440pt;}
.lsc{letter-spacing:1.442880pt;}
.ls2{letter-spacing:1.600000pt;}
.lsa{letter-spacing:1.763520pt;}
.ls19{letter-spacing:1.774208pt;}
.ls9{letter-spacing:1.779552pt;}
.ls1{letter-spacing:2.000000pt;}
.ls7d{letter-spacing:2.036064pt;}
.ls6a{letter-spacing:2.084160pt;}
.ls15{letter-spacing:2.372736pt;}
.ls65{letter-spacing:2.392128pt;}
.ls44{letter-spacing:2.404800pt;}
.ls35{letter-spacing:2.580096pt;}
.ls16{letter-spacing:2.725440pt;}
.lse{letter-spacing:3.046080pt;}
.ls66{letter-spacing:3.313280pt;}
.ls7b{letter-spacing:3.345344pt;}
.ls48{letter-spacing:3.366720pt;}
.ls34{letter-spacing:3.687360pt;}
.ls52{letter-spacing:3.986624pt;}
.ls58{letter-spacing:3.991968pt;}
.ls51{letter-spacing:4.008000pt;}
.ls59{letter-spacing:4.328640pt;}
.ls4c{letter-spacing:4.542400pt;}
.ls4d{letter-spacing:4.649280pt;}
.ls6f{letter-spacing:4.948544pt;}
.ls33{letter-spacing:4.969920pt;}
.ls32{letter-spacing:5.290560pt;}
.ls49{letter-spacing:5.295904pt;}
.ls55{letter-spacing:6.252480pt;}
.ls5b{letter-spacing:6.514336pt;}
.ls4e{letter-spacing:6.519680pt;}
.ls4f{letter-spacing:6.573120pt;}
.ls63{letter-spacing:6.583808pt;}
.ls50{letter-spacing:7.214400pt;}
.ls7c{letter-spacing:7.497632pt;}
.ls68{letter-spacing:7.791552pt;}
.ls67{letter-spacing:7.812928pt;}
.ls69{letter-spacing:7.855680pt;}
.ls46{letter-spacing:8.496960pt;}
.ls57{letter-spacing:8.780192pt;}
.ls56{letter-spacing:8.817600pt;}
.ls1e{letter-spacing:9.138240pt;}
.ls79{letter-spacing:9.458880pt;}
.ls4a{letter-spacing:9.731424pt;}
.ls4b{letter-spacing:9.779520pt;}
.ls1d{letter-spacing:10.661280pt;}
.ls20{letter-spacing:26.352000pt;}
.ls21{letter-spacing:47.136000pt;}
.ls92{letter-spacing:47.296000pt;}
.ls85{letter-spacing:57.392000pt;}
.ls9f{letter-spacing:64.896000pt;}
.ls83{letter-spacing:79.440000pt;}
.ls8a{letter-spacing:79.504000pt;}
.ls91{letter-spacing:83.152000pt;}
.ls7f{letter-spacing:101.856000pt;}
.lsa0{letter-spacing:130.192000pt;}
.ls9e{letter-spacing:231.632000pt;}
.ls75{letter-spacing:235.632000pt;}
.ls9a{letter-spacing:253.376000pt;}
.ls9c{letter-spacing:253.392000pt;}
.ls72{letter-spacing:257.180800pt;}
.ls93{letter-spacing:275.136000pt;}
.ls94{letter-spacing:275.456000pt;}
.ls98{letter-spacing:275.472000pt;}
.ls77{letter-spacing:298.320000pt;}
.ls97{letter-spacing:329.520000pt;}
.ls76{letter-spacing:364.272000pt;}
.ls73{letter-spacing:387.936000pt;}
.ls70{letter-spacing:419.920000pt;}
.ls9b{letter-spacing:438.960000pt;}
.ls71{letter-spacing:462.480000pt;}
.ls74{letter-spacing:491.920000pt;}
.ls9d{letter-spacing:504.592000pt;}
.ls1f{letter-spacing:753.091520pt;}
.ls81{letter-spacing:798.816000pt;}
.ls84{letter-spacing:802.320000pt;}
.ls80{letter-spacing:893.856000pt;}
.ls86{letter-spacing:903.776000pt;}
.ls88{letter-spacing:994.672000pt;}
.ls8c{letter-spacing:1284.240000pt;}
.ls8b{letter-spacing:1287.760000pt;}
.ls89{letter-spacing:1334.160000pt;}
.ls8d{letter-spacing:1389.200000pt;}
.ls87{letter-spacing:1448.112000pt;}
.wsc1{word-spacing:-25.551147pt;}
.ws8d{word-spacing:-20.876800pt;}
.ws8b{word-spacing:-20.802240pt;}
.ws8c{word-spacing:-20.653120pt;}
.ws3{word-spacing:-17.728000pt;}
.ws8e{word-spacing:-16.192320pt;}
.ws64{word-spacing:-16.032000pt;}
.ws65{word-spacing:-15.978560pt;}
.ws66{word-spacing:-15.925120pt;}
.ws4d{word-spacing:-15.871680pt;}
.ws4e{word-spacing:-15.764800pt;}
.ws4f{word-spacing:-15.711360pt;}
.ws4{word-spacing:-15.551040pt;}
.wsa3{word-spacing:-15.456000pt;}
.ws6{word-spacing:-15.390720pt;}
.ws8{word-spacing:-15.337280pt;}
.ws5{word-spacing:-15.230400pt;}
.ws7{word-spacing:-15.070080pt;}
.wsb{word-spacing:-15.016640pt;}
.ws74{word-spacing:-14.963200pt;}
.wsa{word-spacing:-14.909760pt;}
.ws11{word-spacing:-14.856320pt;}
.wsc{word-spacing:-14.802880pt;}
.ws9{word-spacing:-14.749440pt;}
.ws9b{word-spacing:-14.696000pt;}
.ws75{word-spacing:-14.642560pt;}
.ws4a{word-spacing:-14.589120pt;}
.ws73{word-spacing:-14.428800pt;}
.ws49{word-spacing:-14.375360pt;}
.wsd{word-spacing:-14.321920pt;}
.wsf{word-spacing:-14.268480pt;}
.ws10{word-spacing:-14.161600pt;}
.wse{word-spacing:-14.108160pt;}
.ws77{word-spacing:-13.947840pt;}
.wsb7{word-spacing:-13.840960pt;}
.wsb6{word-spacing:-13.627200pt;}
.ws4b{word-spacing:-13.488000pt;}
.wsaa{word-spacing:-13.440000pt;}
.wsbe{word-spacing:-13.424640pt;}
.wsbd{word-spacing:-13.365760pt;}
.ws4c{word-spacing:-13.344000pt;}
.ws14{word-spacing:-13.248000pt;}
.ws13{word-spacing:-13.200000pt;}
.ws9c{word-spacing:-12.912000pt;}
.wsc0{word-spacing:-12.218027pt;}
.wsc4{word-spacing:-12.217600pt;}
.wsbf{word-spacing:-12.111360pt;}
.wsc2{word-spacing:-11.845760pt;}
.wsb4{word-spacing:-11.136000pt;}
.wsb2{word-spacing:-11.040000pt;}
.wsb3{word-spacing:-10.944000pt;}
.wsa6{word-spacing:-10.896000pt;}
.ws84{word-spacing:-10.800000pt;}
.wsc5{word-spacing:-10.704000pt;}
.ws12{word-spacing:-10.408320pt;}
.wsb1{word-spacing:-10.370880pt;}
.wsc3{word-spacing:-10.305280pt;}
.ws50{word-spacing:-9.618560pt;}
.ws76{word-spacing:-9.607680pt;}
.ws1{word-spacing:-9.280000pt;}
.ws9e{word-spacing:-8.424000pt;}
.wsa4{word-spacing:-7.424000pt;}
.wsa2{word-spacing:-7.296000pt;}
.ws95{word-spacing:-4.008000pt;}
.ws32{word-spacing:-3.847680pt;}
.ws34{word-spacing:-3.687360pt;}
.ws33{word-spacing:-3.366720pt;}
.ws96{word-spacing:-3.206400pt;}
.ws55{word-spacing:-3.046080pt;}
.ws56{word-spacing:-2.939200pt;}
.ws40{word-spacing:-2.725440pt;}
.ws3f{word-spacing:-2.565120pt;}
.ws27{word-spacing:-2.404800pt;}
.ws43{word-spacing:-2.084160pt;}
.ws94{word-spacing:-1.977280pt;}
.wsd4{word-spacing:-1.888000pt;}
.ws26{word-spacing:-1.763520pt;}
.ws28{word-spacing:-1.656640pt;}
.ws8f{word-spacing:-1.603200pt;}
.ws7d{word-spacing:-1.549760pt;}
.ws7c{word-spacing:-1.442880pt;}
.ws7e{word-spacing:-1.336000pt;}
.ws39{word-spacing:-1.122240pt;}
.ws5d{word-spacing:-1.015360pt;}
.ws68{word-spacing:-0.961920pt;}
.ws5e{word-spacing:-0.908480pt;}
.ws5c{word-spacing:-0.855040pt;}
.ws20{word-spacing:-0.801600pt;}
.ws2c{word-spacing:-0.694720pt;}
.ws5b{word-spacing:-0.641280pt;}
.wsd2{word-spacing:-0.634667pt;}
.ws1f{word-spacing:-0.587840pt;}
.ws24{word-spacing:-0.480960pt;}
.wsa9{word-spacing:-0.384000pt;}
.ws1e{word-spacing:-0.374080pt;}
.ws87{word-spacing:-0.336000pt;}
.ws60{word-spacing:-0.320640pt;}
.ws88{word-spacing:-0.288000pt;}
.ws1d{word-spacing:-0.267200pt;}
.ws63{word-spacing:-0.240000pt;}
.ws2d{word-spacing:-0.213760pt;}
.wscf{word-spacing:-0.213333pt;}
.ws72{word-spacing:-0.192000pt;}
.wsdd{word-spacing:-0.176000pt;}
.ws2f{word-spacing:-0.160320pt;}
.ws18{word-spacing:-0.149120pt;}
.wsa7{word-spacing:-0.144000pt;}
.ws1c{word-spacing:-0.128000pt;}
.ws16{word-spacing:-0.127680pt;}
.wsdc{word-spacing:-0.112000pt;}
.ws7b{word-spacing:-0.106880pt;}
.wsc8{word-spacing:-0.106667pt;}
.wse1{word-spacing:-0.106240pt;}
.ws9a{word-spacing:-0.096000pt;}
.ws19{word-spacing:-0.074560pt;}
.wsa8{word-spacing:-0.064000pt;}
.wsc6{word-spacing:-0.058880pt;}
.wscd{word-spacing:-0.058667pt;}
.ws3a{word-spacing:-0.053440pt;}
.wsd0{word-spacing:-0.053333pt;}
.wse2{word-spacing:-0.053120pt;}
.ws59{word-spacing:-0.048000pt;}
.wsdf{word-spacing:-0.021333pt;}
.ws0{word-spacing:0.000000pt;}
.wsce{word-spacing:0.048000pt;}
.wse0{word-spacing:0.053120pt;}
.wsd6{word-spacing:0.053333pt;}
.ws37{word-spacing:0.053440pt;}
.wsc7{word-spacing:0.058880pt;}
.ws1b{word-spacing:0.064000pt;}
.ws17{word-spacing:0.074560pt;}
.ws15{word-spacing:0.085120pt;}
.ws5a{word-spacing:0.096000pt;}
.wsd1{word-spacing:0.106667pt;}
.ws7a{word-spacing:0.106880pt;}
.ws61{word-spacing:0.144000pt;}
.ws80{word-spacing:0.149120pt;}
.ws30{word-spacing:0.160320pt;}
.ws1a{word-spacing:0.192000pt;}
.ws48{word-spacing:0.240000pt;}
.wsd8{word-spacing:0.256000pt;}
.wse3{word-spacing:0.265600pt;}
.ws3c{word-spacing:0.267200pt;}
.wsb5{word-spacing:0.288000pt;}
.wsba{word-spacing:0.320640pt;}
.wsac{word-spacing:0.374080pt;}
.ws62{word-spacing:0.384000pt;}
.ws97{word-spacing:0.427520pt;}
.wsdb{word-spacing:0.480000pt;}
.ws2a{word-spacing:0.480960pt;}
.wsca{word-spacing:0.522667pt;}
.wsd5{word-spacing:0.528000pt;}
.wsd3{word-spacing:0.533333pt;}
.wsde{word-spacing:0.538667pt;}
.wsd7{word-spacing:0.554667pt;}
.ws8a{word-spacing:0.576000pt;}
.wsc9{word-spacing:0.586667pt;}
.ws41{word-spacing:0.587840pt;}
.wscb{word-spacing:0.688000pt;}
.ws42{word-spacing:0.694720pt;}
.ws86{word-spacing:0.748160pt;}
.wsda{word-spacing:0.773333pt;}
.ws2b{word-spacing:0.801600pt;}
.wsd9{word-spacing:0.890667pt;}
.wsb9{word-spacing:0.908480pt;}
.wsb8{word-spacing:1.068800pt;}
.ws29{word-spacing:1.122240pt;}
.wsbb{word-spacing:1.175680pt;}
.wscc{word-spacing:1.210667pt;}
.wsbc{word-spacing:1.389440pt;}
.ws21{word-spacing:1.442880pt;}
.ws5f{word-spacing:1.549760pt;}
.ws35{word-spacing:1.763520pt;}
.ws36{word-spacing:1.923840pt;}
.ws44{word-spacing:2.084160pt;}
.ws91{word-spacing:2.297920pt;}
.ws23{word-spacing:2.404800pt;}
.ws6b{word-spacing:2.511680pt;}
.ws90{word-spacing:2.565120pt;}
.ws25{word-spacing:2.725440pt;}
.ws79{word-spacing:2.832320pt;}
.ws6f{word-spacing:2.992640pt;}
.ws54{word-spacing:3.046080pt;}
.ws22{word-spacing:3.152960pt;}
.ws67{word-spacing:3.313280pt;}
.ws31{word-spacing:3.366720pt;}
.ws92{word-spacing:3.633920pt;}
.ws57{word-spacing:3.687360pt;}
.ws93{word-spacing:3.794240pt;}
.ws58{word-spacing:4.008000pt;}
.ws6c{word-spacing:4.275200pt;}
.ws47{word-spacing:4.328640pt;}
.ws6d{word-spacing:4.435520pt;}
.ws81{word-spacing:4.595840pt;}
.wsb0{word-spacing:4.649280pt;}
.wsad{word-spacing:4.702720pt;}
.ws89{word-spacing:4.916480pt;}
.ws2e{word-spacing:5.237120pt;}
.ws6e{word-spacing:5.397440pt;}
.ws53{word-spacing:5.450880pt;}
.ws52{word-spacing:5.557760pt;}
.ws7f{word-spacing:5.878400pt;}
.ws45{word-spacing:6.199040pt;}
.ws38{word-spacing:6.519680pt;}
.ws69{word-spacing:6.680000pt;}
.ws2{word-spacing:6.720000pt;}
.ws82{word-spacing:6.733440pt;}
.ws6a{word-spacing:6.840320pt;}
.ws46{word-spacing:7.160960pt;}
.ws78{word-spacing:7.802240pt;}
.ws83{word-spacing:8.122880pt;}
.wsab{word-spacing:8.443520pt;}
.ws3d{word-spacing:8.764160pt;}
.ws3e{word-spacing:9.084800pt;}
.ws71{word-spacing:9.405440pt;}
.wsae{word-spacing:10.046720pt;}
.ws3b{word-spacing:10.688000pt;}
.ws70{word-spacing:12.291200pt;}
.wsaf{word-spacing:16.459520pt;}
.ws99{word-spacing:32.438080pt;}
.ws98{word-spacing:32.758720pt;}
.wsa1{word-spacing:68.096000pt;}
.ws9f{word-spacing:140.370048pt;}
.wsa0{word-spacing:143.104000pt;}
.ws9d{word-spacing:150.591168pt;}
.ws51{word-spacing:164.304000pt;}
.ws85{word-spacing:277.968000pt;}
.wsa5{word-spacing:785.492267pt;}
._15{margin-left:-2058.226560pt;}
._2{margin-left:-10.208000pt;}
._1{margin-left:-9.280000pt;}
._3{margin-left:-8.352000pt;}
._0{margin-left:-4.640000pt;}
._4{margin-left:-3.461333pt;}
._9{margin-left:-2.106133pt;}
._6{margin-left:-0.910656pt;}
._5{width:1.104000pt;}
._8{width:2.244480pt;}
._7{width:3.504000pt;}
._d{width:5.185856pt;}
._a{width:6.893760pt;}
._11{width:7.840000pt;}
._c{width:9.409792pt;}
._b{width:11.062080pt;}
._e{width:15.888000pt;}
._14{width:31.315840pt;}
._23{width:121.568000pt;}
._25{width:231.504000pt;}
._22{width:245.232000pt;}
._1a{width:272.069867pt;}
._21{width:280.560000pt;}
._20{width:282.800000pt;}
._16{width:286.949867pt;}
._1d{width:296.544000pt;}
._1c{width:298.784000pt;}
._1f{width:320.880000pt;}
._10{width:331.177067pt;}
._1b{width:336.528000pt;}
._1e{width:388.304000pt;}
._18{width:444.773867pt;}
._13{width:457.000000pt;}
._17{width:545.717867pt;}
._f{width:628.297067pt;}
._19{width:709.349867pt;}
._24{width:754.656000pt;}
._12{width:773.512000pt;}
.fsf{font-size:32.000000pt;}
.fs10{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:37.440000pt;}
.fs9{font-size:42.560000pt;}
.fse{font-size:48.000000pt;}
.fs12{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs11{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.560000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.fs6{font-size:224.000000pt;}
.fs5{font-size:232.000000pt;}
.y0{bottom:0.000000pt;}
.y151{bottom:0.732267pt;}
.y165{bottom:1.824933pt;}
.y1fa{bottom:1.840000pt;}
.y1f5{bottom:1.920000pt;}
.y167{bottom:1.942933pt;}
.y163{bottom:1.943600pt;}
.y155{bottom:2.004533pt;}
.y15d{bottom:2.417467pt;}
.y15b{bottom:2.426800pt;}
.y203{bottom:2.560000pt;}
.y153{bottom:2.675333pt;}
.y1e0{bottom:2.720000pt;}
.y16b{bottom:3.278933pt;}
.y169{bottom:3.290133pt;}
.y16d{bottom:3.298667pt;}
.yf3{bottom:3.310933pt;}
.y161{bottom:3.347200pt;}
.y85{bottom:3.572933pt;}
.y72{bottom:4.596667pt;}
.y20c{bottom:5.680000pt;}
.y15f{bottom:6.252000pt;}
.y159{bottom:7.457733pt;}
.y18f{bottom:8.880000pt;}
.y199{bottom:8.960000pt;}
.y19e{bottom:10.480000pt;}
.y187{bottom:12.240000pt;}
.y182{bottom:12.720000pt;}
.y192{bottom:13.200000pt;}
.y202{bottom:16.320000pt;}
.y18b{bottom:16.560000pt;}
.y209{bottom:18.160000pt;}
.y220{bottom:18.560000pt;}
.y1f7{bottom:18.960000pt;}
.y27{bottom:21.204000pt;}
.y1de{bottom:30.320000pt;}
.y26{bottom:33.440000pt;}
.y5{bottom:59.133337pt;}
.y278{bottom:79.934320pt;}
.y6d{bottom:82.160000pt;}
.y4e{bottom:82.164000pt;}
.y126{bottom:82.168000pt;}
.y1af{bottom:85.896720pt;}
.y4{bottom:86.333337pt;}
.y115{bottom:87.360000pt;}
.yca{bottom:90.459360pt;}
.y277{bottom:94.657040pt;}
.y125{bottom:96.004000pt;}
.y6c{bottom:101.200000pt;}
.y114{bottom:103.040000pt;}
.y4d{bottom:105.200000pt;}
.y1ae{bottom:107.259360pt;}
.y124{bottom:109.840000pt;}
.y1d2{bottom:111.757280pt;}
.yc9{bottom:111.822000pt;}
.y276{bottom:111.931520pt;}
.yde{bottom:114.560000pt;}
.y1f1{bottom:114.960000pt;}
.y6b{bottom:116.800000pt;}
.y4c{bottom:118.560000pt;}
.y287{bottom:121.760000pt;}
.y113{bottom:122.080000pt;}
.y123{bottom:123.604000pt;}
.y20{bottom:123.790666pt;}
.y275{bottom:126.654240pt;}
.y1f0{bottom:128.320000pt;}
.y1ad{bottom:128.622000pt;}
.y6a{bottom:130.720000pt;}
.y1d1{bottom:133.039760pt;}
.yc8{bottom:133.104480pt;}
.y112{bottom:135.360000pt;}
.y286{bottom:136.484000pt;}
.y122{bottom:137.440000pt;}
.ydd{bottom:141.734240pt;}
.y274{bottom:143.928720pt;}
.y69{bottom:144.484000pt;}
.y1ac{bottom:149.904480pt;}
.y285{bottom:151.040000pt;}
.y121{bottom:151.204000pt;}
.y1d0{bottom:154.402400pt;}
.yc7{bottom:154.467120pt;}
.y273{bottom:158.651440pt;}
.y68{bottom:162.320000pt;}
.ydc{bottom:163.016720pt;}
.yaa{bottom:163.440000pt;}
.y284{bottom:165.760000pt;}
.y4b{bottom:167.839760pt;}
.y120{bottom:170.160000pt;}
.y111{bottom:170.304480pt;}
.y1ab{bottom:171.267120pt;}
.y67{bottom:173.760000pt;}
.y17{bottom:175.052000pt;}
.y1cf{bottom:175.765040pt;}
.yc6{bottom:175.829760pt;}
.y272{bottom:175.925920pt;}
.ya9{bottom:176.800000pt;}
.y283{bottom:180.484000pt;}
.y11f{bottom:183.520000pt;}
.ydb{bottom:184.379360pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y4a{bottom:189.202400pt;}
.y271{bottom:190.648640pt;}
.y110{bottom:191.667120pt;}
.y1aa{bottom:192.629760pt;}
.y282{bottom:195.040000pt;}
.y1ce{bottom:197.047520pt;}
.yc5{bottom:197.112240pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y23f{bottom:199.920000pt;}
.y270{bottom:205.291200pt;}
.yda{bottom:205.742000pt;}
.y11e{bottom:208.069600pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y49{bottom:210.565040pt;}
.y10f{bottom:213.029760pt;}
.y1a9{bottom:213.912240pt;}
.y66{bottom:216.222400pt;}
.y1cd{bottom:218.410160pt;}
.yc4{bottom:218.474880pt;}
.ya8{bottom:218.580560pt;}
.y23e{bottom:218.802800pt;}
.y26f{bottom:222.645840pt;}
.y281{bottom:226.073280pt;}
.yd9{bottom:227.024480pt;}
.y1ef{bottom:227.600000pt;}
.y11d{bottom:229.432240pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y48{bottom:231.847520pt;}
.y10e{bottom:234.312240pt;}
.y1a8{bottom:235.274880pt;}
.y26e{bottom:237.288400pt;}
.y23d{bottom:237.440000pt;}
.y65{bottom:237.504880pt;}
.y1cc{bottom:239.772800pt;}
.yc3{bottom:239.837520pt;}
.ya7{bottom:239.863040pt;}
.y280{bottom:242.075733pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y1ee{bottom:247.917360pt;}
.yd8{bottom:248.387120pt;}
.y11c{bottom:250.794880pt;}
.y47{bottom:253.210160pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y26d{bottom:254.643040pt;}
.y10d{bottom:255.674880pt;}
.y23c{bottom:255.920000pt;}
.y1a7{bottom:256.637520pt;}
.y64{bottom:258.867520pt;}
.y1cb{bottom:261.055280pt;}
.yc2{bottom:261.112240pt;}
.ya6{bottom:261.225680pt;}
.y81{bottom:266.662133pt;}
.y1ed{bottom:269.280000pt;}
.y26c{bottom:269.285600pt;}
.y23b{bottom:269.684000pt;}
.yd7{bottom:269.749760pt;}
.y11b{bottom:272.077360pt;}
.y46{bottom:274.572800pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y10c{bottom:277.037520pt;}
.y1a6{bottom:277.920000pt;}
.y27f{bottom:278.237067pt;}
.y63{bottom:280.230160pt;}
.y1ca{bottom:282.417920pt;}
.yc1{bottom:282.474880pt;}
.ya5{bottom:282.588320pt;}
.y23a{bottom:283.520000pt;}
.y26b{bottom:286.640240pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y1ec{bottom:288.960000pt;}
.yd6{bottom:291.032240pt;}
.y11a{bottom:293.440000pt;}
.y45{bottom:295.855280pt;}
.y1a5{bottom:297.596000pt;}
.y10b{bottom:298.320000pt;}
.yef{bottom:300.668800pt;}
.y26a{bottom:301.282800pt;}
.y62{bottom:301.512640pt;}
.y1c9{bottom:303.780560pt;}
.yc0{bottom:303.837520pt;}
.ya4{bottom:303.870800pt;}
.y239{bottom:305.519920pt;}
.ye{bottom:309.452000pt;}
.y1eb{bottom:310.800000pt;}
.yd5{bottom:312.394880pt;}
.y27e{bottom:312.637333pt;}
.y119{bottom:313.116000pt;}
.y44{bottom:317.217920pt;}
.y269{bottom:318.637440pt;}
.y61{bottom:322.875280pt;}
.y1c8{bottom:325.063040pt;}
.ybf{bottom:325.120000pt;}
.ya3{bottom:325.233440pt;}
.y238{bottom:325.600000pt;}
.y1a4{bottom:327.356000pt;}
.y27d{bottom:328.640000pt;}
.y268{bottom:333.320000pt;}
.yd4{bottom:333.757520pt;}
.y1ea{bottom:334.240000pt;}
.y10a{bottom:335.360000pt;}
.y43{bottom:338.580560pt;}
.y118{bottom:342.876000pt;}
.y236{bottom:343.360000pt;}
.yd{bottom:343.809333pt;}
.y60{bottom:344.237920pt;}
.y1a3{bottom:345.116000pt;}
.y1c7{bottom:346.425680pt;}
.ya2{bottom:346.596080pt;}
.y237{bottom:349.040000pt;}
.y267{bottom:350.674640pt;}
.yd3{bottom:355.032240pt;}
.y117{bottom:356.640000pt;}
.y1a2{bottom:359.036000pt;}
.y42{bottom:359.863040pt;}
.y1e9{bottom:361.840000pt;}
.ybe{bottom:362.164000pt;}
.yc{bottom:362.706666pt;}
.y235{bottom:364.000000pt;}
.y266{bottom:365.317200pt;}
.y5f{bottom:365.520400pt;}
.y27c{bottom:365.590667pt;}
.y1c6{bottom:367.788320pt;}
.ya1{bottom:367.878560pt;}
.y116{bottom:369.520000pt;}
.y1a1{bottom:372.800000pt;}
.y231{bottom:373.124000pt;}
.yd2{bottom:376.394880pt;}
.y41{bottom:381.225680pt;}
.y27b{bottom:381.593333pt;}
.y17f{bottom:381.866000pt;}
.y265{bottom:382.671840pt;}
.ybd{bottom:383.600000pt;}
.y233{bottom:384.720000pt;}
.y1a0{bottom:386.080000pt;}
.y5e{bottom:386.883040pt;}
.y230{bottom:386.960000pt;}
.y1c5{bottom:389.070800pt;}
.y109{bottom:389.078560pt;}
.ya0{bottom:389.241200pt;}
.y234{bottom:390.400000pt;}
.y1e8{bottom:390.800000pt;}
.y19d{bottom:395.440000pt;}
.y264{bottom:397.314400pt;}
.y27a{bottom:397.596000pt;}
.yd1{bottom:397.757520pt;}
.y17e{bottom:399.006000pt;}
.y40{bottom:402.588320pt;}
.y22f{bottom:405.360000pt;}
.y19f{bottom:405.920000pt;}
.y5d{bottom:406.802800pt;}
.y1c4{bottom:410.433440pt;}
.y108{bottom:410.441200pt;}
.y9f{bottom:410.603840pt;}
.y232{bottom:411.044000pt;}
.y263{bottom:414.669040pt;}
.y17d{bottom:416.146000pt;}
.yd0{bottom:419.040000pt;}
.y1e7{bottom:419.840000pt;}
.y3f{bottom:423.870800pt;}
.y5c{bottom:425.440000pt;}
.y19b{bottom:425.600000pt;}
.y22d{bottom:426.000000pt;}
.y262{bottom:429.311600pt;}
.y22e{bottom:431.680000pt;}
.y1c3{bottom:431.796080pt;}
.y107{bottom:431.803840pt;}
.y9e{bottom:431.886320pt;}
.y17c{bottom:433.286000pt;}
.y19c{bottom:434.560000pt;}
.y22b{bottom:435.120000pt;}
.ybc{bottom:437.292640pt;}
.y279{bottom:440.480000pt;}
.y5b{bottom:443.912000pt;}
.y3e{bottom:445.233440pt;}
.y261{bottom:446.666240pt;}
.y229{bottom:446.720000pt;}
.y1e6{bottom:448.800000pt;}
.y22a{bottom:448.960000pt;}
.y17b{bottom:450.426133pt;}
.y198{bottom:452.080000pt;}
.y22c{bottom:452.400000pt;}
.y1c2{bottom:453.078560pt;}
.y106{bottom:453.086320pt;}
.y9d{bottom:453.248960pt;}
.ycf{bottom:454.724000pt;}
.y5a{bottom:457.676000pt;}
.ybb{bottom:458.655280pt;}
.y19a{bottom:461.040000pt;}
.y260{bottom:461.308800pt;}
.yb{bottom:462.990669pt;}
.y3d{bottom:466.596080pt;}
.y227{bottom:467.360000pt;}
.y17a{bottom:467.566267pt;}
.yce{bottom:468.560000pt;}
.y80{bottom:468.960000pt;}
.y228{bottom:473.040000pt;}
.y1c1{bottom:474.441200pt;}
.y105{bottom:474.448960pt;}
.y9c{bottom:474.611600pt;}
.y1e5{bottom:477.840000pt;}
.y196{bottom:478.560000pt;}
.y25f{bottom:478.663440pt;}
.ya{bottom:478.990666pt;}
.yba{bottom:480.017920pt;}
.ycd{bottom:482.560000pt;}
.y179{bottom:484.706267pt;}
.y84{bottom:487.507733pt;}
.y197{bottom:487.520000pt;}
.y3c{bottom:487.878560pt;}
.y226{bottom:488.000000pt;}
.y25e{bottom:493.306000pt;}
.y9{bottom:494.990666pt;}
.yee{bottom:495.120000pt;}
.y1c0{bottom:495.803840pt;}
.y104{bottom:495.811600pt;}
.y9b{bottom:495.894080pt;}
.yb9{bottom:501.300400pt;}
.y83{bottom:502.482533pt;}
.y194{bottom:505.040000pt;}
.y1e4{bottom:506.800000pt;}
.y224{bottom:508.720000pt;}
.y3b{bottom:509.241200pt;}
.y25d{bottom:510.660640pt;}
.y177{bottom:510.955733pt;}
.yf2{bottom:512.806267pt;}
.y195{bottom:513.920000pt;}
.y225{bottom:514.400000pt;}
.y1bf{bottom:517.086320pt;}
.y103{bottom:517.094080pt;}
.y9a{bottom:517.256720pt;}
.y178{bottom:520.075733pt;}
.y176{bottom:520.235733pt;}
.yb8{bottom:522.663040pt;}
.y25c{bottom:525.303200pt;}
.y82{bottom:525.778533pt;}
.yf1{bottom:527.181600pt;}
.y16e{bottom:529.064667pt;}
.y222{bottom:529.360000pt;}
.y3a{bottom:530.603840pt;}
.y21c{bottom:530.720000pt;}
.y191{bottom:531.520000pt;}
.y223{bottom:535.040000pt;}
.y1e3{bottom:535.840000pt;}
.y1be{bottom:538.448960pt;}
.y102{bottom:538.456720pt;}
.y99{bottom:538.619360pt;}
.y73{bottom:540.341867pt;}
.y193{bottom:540.400000pt;}
.y25b{bottom:542.657840pt;}
.yb7{bottom:544.025680pt;}
.yf0{bottom:549.967867pt;}
.y21e{bottom:550.000000pt;}
.y39{bottom:551.886320pt;}
.y221{bottom:554.800000pt;}
.y74{bottom:555.365867pt;}
.y25a{bottom:557.300400pt;}
.y18e{bottom:558.000000pt;}
.y133{bottom:559.449147pt;}
.y1bd{bottom:559.811600pt;}
.y101{bottom:559.819360pt;}
.y98{bottom:559.901840pt;}
.y21f{bottom:561.680000pt;}
.ydf{bottom:564.531067pt;}
.y1e2{bottom:564.800000pt;}
.yb6{bottom:565.308160pt;}
.y190{bottom:566.880000pt;}
.y16f{bottom:566.911147pt;}
.y75{bottom:570.389867pt;}
.y38{bottom:573.248960pt;}
.y8{bottom:573.786667pt;}
.y259{bottom:574.655040pt;}
.y6e{bottom:576.067067pt;}
.y132{bottom:578.375067pt;}
.ye0{bottom:579.951067pt;}
.y1bc{bottom:581.094080pt;}
.y100{bottom:581.101840pt;}
.y97{bottom:581.264480pt;}
.y21b{bottom:582.720000pt;}
.y18a{bottom:584.400000pt;}
.y76{bottom:585.413867pt;}
.yb5{bottom:586.670800pt;}
.y21d{bottom:588.404000pt;}
.y258{bottom:589.297600pt;}
.y18d{bottom:589.764000pt;}
.y70{bottom:590.228907pt;}
.y7{bottom:592.685334pt;}
.y1e1{bottom:593.840000pt;}
.y37{bottom:594.611600pt;}
.ye1{bottom:595.371067pt;}
.y24{bottom:596.031467pt;}
.y129{bottom:597.282267pt;}
.y77{bottom:600.437867pt;}
.y1bb{bottom:602.456720pt;}
.yff{bottom:602.464480pt;}
.y96{bottom:602.627120pt;}
.y219{bottom:603.360000pt;}
.y18c{bottom:603.600000pt;}
.y6f{bottom:604.412027pt;}
.y170{bottom:604.757627pt;}
.y257{bottom:606.652240pt;}
.yb4{bottom:608.033440pt;}
.y21a{bottom:609.040000pt;}
.ye2{bottom:610.791067pt;}
.y1dd{bottom:612.960000pt;}
.y71{bottom:614.800000pt;}
.y78{bottom:615.461867pt;}
.y36{bottom:615.894080pt;}
.y186{bottom:617.600000pt;}
.y256{bottom:621.294800pt;}
.y189{bottom:622.960000pt;}
.y127{bottom:623.771067pt;}
.y1ba{bottom:623.819360pt;}
.yfe{bottom:623.827120pt;}
.y95{bottom:623.909600pt;}
.y217{bottom:624.000000pt;}
.ye3{bottom:626.211067pt;}
.y128{bottom:627.552507pt;}
.yb3{bottom:629.315920pt;}
.y1df{bottom:629.440000pt;}
.y1dc{bottom:629.448000pt;}
.y218{bottom:629.680000pt;}
.y185{bottom:629.840000pt;}
.y79{bottom:630.485867pt;}
.y255{bottom:635.937360pt;}
.y188{bottom:636.720000pt;}
.y35{bottom:637.256720pt;}
.ye4{bottom:641.631067pt;}
.y171{bottom:642.604107pt;}
.y12b{bottom:642.696987pt;}
.y215{bottom:644.720000pt;}
.y1b9{bottom:645.101840pt;}
.yfd{bottom:645.109600pt;}
.y94{bottom:645.272240pt;}
.y7a{bottom:645.509867pt;}
.y6{bottom:645.598667pt;}
.y216{bottom:650.400000pt;}
.yb2{bottom:650.678560pt;}
.y181{bottom:651.360000pt;}
.y254{bottom:653.292000pt;}
.y12d{bottom:654.060027pt;}
.y131{bottom:654.069387pt;}
.ye5{bottom:657.051067pt;}
.y184{bottom:657.196000pt;}
.y12a{bottom:657.832107pt;}
.y34{bottom:658.619360pt;}
.y23{bottom:660.031467pt;}
.y7b{bottom:660.533867pt;}
.y213{bottom:665.360000pt;}
.y12e{bottom:665.413707pt;}
.y13b{bottom:665.441787pt;}
.y1b8{bottom:666.464480pt;}
.yfc{bottom:666.472240pt;}
.y93{bottom:666.634880pt;}
.y253{bottom:667.934560pt;}
.y3{bottom:668.977329pt;}
.y12c{bottom:669.195147pt;}
.y135{bottom:669.223227pt;}
.y183{bottom:670.960000pt;}
.y214{bottom:671.040000pt;}
.yb1{bottom:672.041200pt;}
.ye6{bottom:672.471067pt;}
.y130{bottom:672.985947pt;}
.y138{bottom:673.014027pt;}
.y1db{bottom:673.764000pt;}
.y7c{bottom:675.557867pt;}
.y140{bottom:676.795467pt;}
.y33{bottom:679.901840pt;}
.y172{bottom:680.450587pt;}
.y134{bottom:680.576907pt;}
.y12f{bottom:684.339627pt;}
.y13f{bottom:684.377067pt;}
.y252{bottom:685.289200pt;}
.y212{bottom:686.000000pt;}
.y1b7{bottom:687.827120pt;}
.yfb{bottom:687.834880pt;}
.ye7{bottom:687.891067pt;}
.y92{bottom:687.917360pt;}
.y137{bottom:688.149147pt;}
.y7d{bottom:690.581867pt;}
.y20e{bottom:691.680000pt;}
.y13c{bottom:691.939947pt;}
.yb0{bottom:693.323680pt;}
.y145{bottom:695.712027pt;}
.y13a{bottom:695.721387pt;}
.y136{bottom:699.502827pt;}
.y13e{bottom:699.512187pt;}
.y251{bottom:699.931760pt;}
.y32{bottom:701.264480pt;}
.ye8{bottom:703.311067pt;}
.y1da{bottom:703.920000pt;}
.y180{bottom:704.560000pt;}
.y7e{bottom:705.605867pt;}
.y210{bottom:706.720000pt;}
.y139{bottom:707.075067pt;}
.y22{bottom:708.031467pt;}
.y1b6{bottom:709.109600pt;}
.yfa{bottom:709.117360pt;}
.y91{bottom:709.277360pt;}
.y142{bottom:709.546107pt;}
.y15e{bottom:712.080000pt;}
.y211{bottom:712.400000pt;}
.y146{bottom:714.637947pt;}
.y13d{bottom:714.647307pt;}
.y250{bottom:714.654480pt;}
.yaf{bottom:714.686320pt;}
.y15c{bottom:715.520000pt;}
.y166{bottom:715.760000pt;}
.y164{bottom:715.840000pt;}
.y173{bottom:718.297067pt;}
.y14a{bottom:718.419387pt;}
.y143{bottom:718.428747pt;}
.ye9{bottom:718.731067pt;}
.y1d9{bottom:719.906960pt;}
.y7f{bottom:720.629867pt;}
.y144{bottom:722.210187pt;}
.y31{bottom:722.627120pt;}
.y160{bottom:722.640000pt;}
.y147{bottom:725.991627pt;}
.y141{bottom:726.000987pt;}
.y20d{bottom:727.360000pt;}
.y168{bottom:728.800000pt;}
.y149{bottom:729.773067pt;}
.y16a{bottom:730.240000pt;}
.y1b5{bottom:730.472240pt;}
.yf9{bottom:730.480000pt;}
.y90{bottom:730.640000pt;}
.y24f{bottom:731.928960pt;}
.y20f{bottom:733.040000pt;}
.yea{bottom:734.151067pt;}
.yae{bottom:736.048960pt;}
.y162{bottom:738.480000pt;}
.y148{bottom:741.126747pt;}
.y1d8{bottom:741.269600pt;}
.y158{bottom:743.280000pt;}
.y30{bottom:743.909600pt;}
.y14c{bottom:744.908187pt;}
.y16c{bottom:745.360000pt;}
.y24e{bottom:746.651680pt;}
.y20b{bottom:748.000000pt;}
.y152{bottom:748.400000pt;}
.y14b{bottom:748.698987pt;}
.yeb{bottom:749.571067pt;}
.y1b4{bottom:751.834880pt;}
.y15a{bottom:753.360000pt;}
.y174{bottom:756.143547pt;}
.yad{bottom:757.331440pt;}
.y150{bottom:758.720000pt;}
.y59{bottom:759.920000pt;}
.y156{bottom:760.028533pt;}
.y24d{bottom:761.294240pt;}
.y14e{bottom:761.353707pt;}
.y14f{bottom:761.587707pt;}
.y1d7{bottom:762.632240pt;}
.yec{bottom:764.991067pt;}
.y2f{bottom:765.272240pt;}
.yf8{bottom:767.524000pt;}
.y8f{bottom:767.600000pt;}
.y14d{bottom:767.615547pt;}
.y208{bottom:768.720000pt;}
.y157{bottom:771.382213pt;}
.y1b3{bottom:773.117360pt;}
.y20a{bottom:773.120000pt;}
.y58{bottom:773.840000pt;}
.y154{bottom:777.600000pt;}
.y24c{bottom:778.648880pt;}
.yac{bottom:778.694080pt;}
.yed{bottom:780.411067pt;}
.y2{bottom:781.661334pt;}
.y1d6{bottom:783.914720pt;}
.y2e{bottom:786.634880pt;}
.yf7{bottom:788.960000pt;}
.y24b{bottom:793.291440pt;}
.y175{bottom:793.990027pt;}
.y1b2{bottom:794.480000pt;}
.yab{bottom:800.056720pt;}
.y206{bottom:800.560000pt;}
.y57{bottom:805.272240pt;}
.y1d5{bottom:805.277360pt;}
.y207{bottom:806.240000pt;}
.y2d{bottom:807.917360pt;}
.y24a{bottom:807.934000pt;}
.ycc{bottom:818.720000pt;}
.y204{bottom:821.200000pt;}
.y8e{bottom:821.339200pt;}
.y249{bottom:825.288640pt;}
.y1d4{bottom:826.624480pt;}
.y56{bottom:826.634880pt;}
.y205{bottom:826.880000pt;}
.y2c{bottom:829.280000pt;}
.y1b1{bottom:831.524000pt;}
.ycb{bottom:832.640000pt;}
.y248{bottom:839.931200pt;}
.y201{bottom:841.040000pt;}
.y200{bottom:841.920000pt;}
.y8d{bottom:842.701840pt;}
.yf6{bottom:842.712240pt;}
.y1d3{bottom:847.906960pt;}
.y55{bottom:847.917360pt;}
.y1b0{bottom:852.960000pt;}
.y247{bottom:857.285840pt;}
.y1{bottom:859.312000pt;}
.y8c{bottom:864.064480pt;}
.yf5{bottom:864.074880pt;}
.y25{bottom:864.189067pt;}
.y2b{bottom:865.680000pt;}
.y54{bottom:869.269600pt;}
.y1fe{bottom:870.080000pt;}
.y246{bottom:871.928400pt;}
.y1ff{bottom:875.760000pt;}
.y8b{bottom:885.346960pt;}
.yf4{bottom:885.357360pt;}
.y245{bottom:889.283040pt;}
.y53{bottom:890.632240pt;}
.y1fc{bottom:890.800000pt;}
.y1fd{bottom:896.480000pt;}
.y244{bottom:903.925600pt;}
.y8a{bottom:906.709600pt;}
.y1fb{bottom:906.800000pt;}
.y2a{bottom:908.400000pt;}
.y21{bottom:909.354133pt;}
.y1f9{bottom:911.440000pt;}
.y52{bottom:911.914720pt;}
.y243{bottom:918.648320pt;}
.y89{bottom:928.072240pt;}
.y1f4{bottom:932.080000pt;}
.y51{bottom:933.277360pt;}
.y242{bottom:935.922800pt;}
.y1f8{bottom:937.280000pt;}
.y1f6{bottom:944.160000pt;}
.y29{bottom:946.320000pt;}
.y88{bottom:949.354720pt;}
.y241{bottom:953.277440pt;}
.y50{bottom:954.640000pt;}
.y240{bottom:967.920000pt;}
.y87{bottom:970.717360pt;}
.y1f3{bottom:984.084000pt;}
.y28{bottom:984.880000pt;}
.y4f{bottom:991.600000pt;}
.y86{bottom:992.080000pt;}
.y1f2{bottom:997.920000pt;}
.h2a{height:8.160000pt;}
.h2c{height:10.720000pt;}
.h34{height:11.840000pt;}
.h33{height:12.000000pt;}
.h2b{height:12.078667pt;}
.h30{height:12.480000pt;}
.h36{height:13.280000pt;}
.h32{height:13.360000pt;}
.h35{height:13.361333pt;}
.h31{height:16.320000pt;}
.h1b{height:16.961333pt;}
.h2e{height:17.520000pt;}
.h4a{height:19.998667pt;}
.h48{height:20.000000pt;}
.h38{height:23.296875pt;}
.h3e{height:26.400000pt;}
.h40{height:26.478667pt;}
.h3f{height:26.480000pt;}
.h1a{height:27.515625pt;}
.h4b{height:27.520000pt;}
.h7{height:28.560000pt;}
.h37{height:28.859375pt;}
.h41{height:29.520000pt;}
.h2f{height:30.984844pt;}
.h46{height:31.168125pt;}
.h4c{height:31.200000pt;}
.h4e{height:32.000000pt;}
.h16{height:32.193281pt;}
.h45{height:32.801333pt;}
.h3a{height:33.120000pt;}
.h3c{height:33.200000pt;}
.h25{height:33.765469pt;}
.h27{height:33.802909pt;}
.h39{height:34.000000pt;}
.h19{height:34.945312pt;}
.hf{height:38.382969pt;}
.h2d{height:38.445469pt;}
.h24{height:39.296875pt;}
.h6{height:40.800000pt;}
.h17{height:41.273438pt;}
.h42{height:41.600000pt;}
.h3{height:42.840000pt;}
.h1c{height:43.289062pt;}
.hd{height:43.472000pt;}
.h14{height:45.951094pt;}
.h20{height:45.982134pt;}
.h13{height:46.593750pt;}
.hc{height:47.168000pt;}
.h44{height:48.195156pt;}
.h28{height:48.891229pt;}
.h2{height:48.960000pt;}
.h1e{height:50.753281pt;}
.h1f{height:50.763841pt;}
.h21{height:50.784321pt;}
.h18{height:50.794881pt;}
.h23{height:50.815361pt;}
.h54{height:51.216000pt;}
.h12{height:52.424844pt;}
.h11{height:54.281719pt;}
.h15{height:54.602679pt;}
.h51{height:56.679040pt;}
.h52{height:56.679253pt;}
.h53{height:57.582080pt;}
.h43{height:58.553438pt;}
.hb{height:59.600000pt;}
.h47{height:62.465313pt;}
.h50{height:62.824960pt;}
.h26{height:64.054429pt;}
.h3b{height:68.793438pt;}
.h3d{height:69.113438pt;}
.h5{height:69.360000pt;}
.h29{height:69.670429pt;}
.h10{height:69.890625pt;}
.h4d{height:70.809063pt;}
.h49{height:84.569062pt;}
.h4{height:105.826671pt;}
.ha{height:161.952000pt;}
.h9{height:167.736000pt;}
.h1d{height:278.000000pt;}
.h22{height:314.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h4f{height:1124.000000pt;}
.wd{width:10.721333pt;}
.wf{width:14.400000pt;}
.we{width:26.080000pt;}
.wc{width:50.800000pt;}
.w5{width:66.798667pt;}
.w8{width:74.480000pt;}
.wb{width:85.200000pt;}
.wa{width:85.278667pt;}
.w9{width:85.280000pt;}
.w11{width:102.480000pt;}
.w10{width:102.798667pt;}
.w13{width:185.201333pt;}
.w12{width:264.560000pt;}
.w2{width:566.928019pt;}
.w7{width:581.040000pt;}
.w6{width:592.000000pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.w14{width:796.000000pt;}
.x0{left:0.000000pt;}
.x19{left:2.040133pt;}
.x54{left:5.280000pt;}
.x14{left:6.923467pt;}
.x4f{left:8.000000pt;}
.x5a{left:15.280000pt;}
.x46{left:16.720000pt;}
.x29{left:31.856133pt;}
.xf{left:36.535733pt;}
.x16{left:51.432267pt;}
.x5{left:69.318800pt;}
.x6{left:73.894400pt;}
.x50{left:76.640000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5c{left:104.000000pt;}
.x13{left:108.000000pt;}
.x9{left:113.440000pt;}
.x12{left:114.927467pt;}
.x10{left:117.123467pt;}
.x4e{left:118.080000pt;}
.x11{left:120.399467pt;}
.x18{left:123.609600pt;}
.xc{left:128.564000pt;}
.xb{left:132.397840pt;}
.x17{left:134.553600pt;}
.x52{left:137.440000pt;}
.x1a{left:139.560267pt;}
.x2c{left:142.800000pt;}
.x45{left:155.303467pt;}
.x1d{left:157.978427pt;}
.x15{left:159.432267pt;}
.x4{left:180.874667pt;}
.x1b{left:187.975200pt;}
.x2d{left:191.840000pt;}
.x5d{left:205.605333pt;}
.x1e{left:209.626907pt;}
.x2e{left:242.240000pt;}
.x37{left:247.741600pt;}
.x24{left:258.720107pt;}
.x1c{left:260.067947pt;}
.x28{left:278.560000pt;}
.x47{left:285.676000pt;}
.x48{left:287.680000pt;}
.x38{left:291.981600pt;}
.x2f{left:296.400000pt;}
.x39{left:298.141600pt;}
.xa{left:305.440000pt;}
.x26{left:310.368587pt;}
.x56{left:313.040000pt;}
.x57{left:317.680000pt;}
.x58{left:321.520000pt;}
.x2a{left:328.960000pt;}
.x3a{left:342.381600pt;}
.x30{left:346.800000pt;}
.x3b{left:354.781600pt;}
.x25{left:359.508587pt;}
.x1f{left:360.809627pt;}
.x51{left:366.480000pt;}
.x7{left:368.960000pt;}
.x2b{left:379.360000pt;}
.x49{left:389.836000pt;}
.x4a{left:391.840000pt;}
.x31{left:395.040000pt;}
.x8{left:396.890000pt;}
.x3d{left:398.941600pt;}
.x3{left:404.408000pt;}
.x3c{left:407.741600pt;}
.x20{left:411.203867pt;}
.x59{left:415.840000pt;}
.x5b{left:420.480000pt;}
.x3e{left:441.741600pt;}
.x3f{left:443.501600pt;}
.x32{left:446.320000pt;}
.x27{left:461.495147pt;}
.x4b{left:490.552000pt;}
.x33{left:497.280000pt;}
.x40{left:508.053600pt;}
.x4c{left:509.356000pt;}
.x21{left:511.992347pt;}
.x34{left:547.120000pt;}
.x41{left:550.133600pt;}
.x22{left:562.386587pt;}
.x4d{left:584.884000pt;}
.x35{left:598.960000pt;}
.x42{left:600.533600pt;}
.xe{left:633.200000pt;}
.x36{left:644.160000pt;}
.x43{left:648.773600pt;}
.x53{left:655.760000pt;}
.x44{left:657.173600pt;}
.x55{left:661.760000pt;}
.x23{left:663.175067pt;}
.xd{left:669.159467pt;}
}




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