
    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_88b274ecddc557a517e9dc1d.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_c842d27e8b1a342e3a8a0b42.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_d372440466397d1f6ffa392e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_3d05d3cd24c657322308590e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.925000;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_7711ec04ffaaed518042413c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_ec32f9902a1f54d131606af0.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_92b41e8533715ed7cd362592.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_3a8f4f58baa75f6825a63116.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_2541d5d4b5586d697f2ccf19.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_263e388b6763e7bb8b510d28.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_768a0b15ab846bc2311d9826.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_db1cfe8f5d674feac6be0d2d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_3c540718133de2c6f3c1fe04.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_711605114a13aaf58fb7b097.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_b07858cd56c45f89402aaf88.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ce03e3308cc451c728bd378e.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_f05c7c9d09114c51a9b326de.woff2')format("woff");}.ff13{font-family:ff13;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);}
.v2{vertical-align:-23.760000px;}
.v5{vertical-align:-18.000000px;}
.v3{vertical-align:-3.057120px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:47.520000px;}
.lsd3{letter-spacing:-2.031840px;}
.lsbf{letter-spacing:-1.553760px;}
.lsbe{letter-spacing:-1.523520px;}
.lsc0{letter-spacing:-1.494000px;}
.lsca{letter-spacing:-1.314000px;}
.lsa0{letter-spacing:-1.296000px;}
.lsa1{letter-spacing:-1.242000px;}
.lsc1{letter-spacing:-1.195200px;}
.lsd2{letter-spacing:-1.194000px;}
.lsab{letter-spacing:-1.015920px;}
.ls81{letter-spacing:-0.864000px;}
.ls2{letter-spacing:-0.840000px;}
.ls2e{letter-spacing:-0.836640px;}
.lsd1{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.758160px;}
.lsce{letter-spacing:-0.660000px;}
.lscd{letter-spacing:-0.600000px;}
.ls71{letter-spacing:-0.594000px;}
.ls1a{letter-spacing:-0.486000px;}
.ls41{letter-spacing:-0.478080px;}
.ls7f{letter-spacing:-0.432000px;}
.ls55{letter-spacing:-0.385920px;}
.ls53{letter-spacing:-0.378000px;}
.lsba{letter-spacing:-0.358560px;}
.ls11{letter-spacing:-0.336960px;}
.lsf{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.298800px;}
.ls80{letter-spacing:-0.270000px;}
.ls42{letter-spacing:-0.239040px;}
.lse{letter-spacing:-0.216000px;}
.ls54{letter-spacing:-0.192960px;}
.ls8f{letter-spacing:-0.167040px;}
.ls7d{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.119520px;}
.lsa2{letter-spacing:-0.108000px;}
.ls79{letter-spacing:-0.084240px;}
.ls14{letter-spacing:-0.072000px;}
.lsc9{letter-spacing:-0.066240px;}
.lscf{letter-spacing:-0.060000px;}
.ls17{letter-spacing:-0.059760px;}
.ls7e{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls97{letter-spacing:0.018000px;}
.lsc6{letter-spacing:0.033120px;}
.lsbc{letter-spacing:0.035856px;}
.ls22{letter-spacing:0.059760px;}
.lscb{letter-spacing:0.060000px;}
.ls87{letter-spacing:0.071712px;}
.ls8b{letter-spacing:0.077688px;}
.ls6b{letter-spacing:0.086400px;}
.ls4a{letter-spacing:0.101592px;}
.ls65{letter-spacing:0.102600px;}
.lsbb{letter-spacing:0.107568px;}
.ls50{letter-spacing:0.108000px;}
.ls70{letter-spacing:0.113400px;}
.ls5f{letter-spacing:0.118800px;}
.ls7a{letter-spacing:0.119520px;}
.lsc7{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.144000px;}
.ls52{letter-spacing:0.162000px;}
.lsc8{letter-spacing:0.179280px;}
.ls4{letter-spacing:0.183600px;}
.lsbd{letter-spacing:0.215136px;}
.ls1b{letter-spacing:0.216000px;}
.lsa7{letter-spacing:0.221112px;}
.ls25{letter-spacing:0.239040px;}
.lsd0{letter-spacing:0.240000px;}
.ls51{letter-spacing:0.270000px;}
.ls60{letter-spacing:0.280872px;}
.ls5a{letter-spacing:0.286848px;}
.ls12{letter-spacing:0.288000px;}
.ls86{letter-spacing:0.292824px;}
.ls4e{letter-spacing:0.298800px;}
.lsb1{letter-spacing:0.304776px;}
.ls3d{letter-spacing:0.310752px;}
.ls33{letter-spacing:0.322704px;}
.ls7b{letter-spacing:0.324000px;}
.ls85{letter-spacing:0.328680px;}
.ls2d{letter-spacing:0.336960px;}
.lsd{letter-spacing:0.337680px;}
.ls8d{letter-spacing:0.346608px;}
.ls18{letter-spacing:0.358560px;}
.ls19{letter-spacing:0.378000px;}
.ls48{letter-spacing:0.382464px;}
.lsc3{letter-spacing:0.388440px;}
.ls35{letter-spacing:0.394416px;}
.ls46{letter-spacing:0.400392px;}
.ls4b{letter-spacing:0.418320px;}
.ls40{letter-spacing:0.421200px;}
.ls84{letter-spacing:0.430272px;}
.ls83{letter-spacing:0.448200px;}
.ls43{letter-spacing:0.478080px;}
.ls7{letter-spacing:0.597600px;}
.ls72{letter-spacing:0.603576px;}
.ls9{letter-spacing:0.615528px;}
.ls20{letter-spacing:0.639432px;}
.lsc4{letter-spacing:0.645408px;}
.ls1f{letter-spacing:0.657360px;}
.ls3f{letter-spacing:0.663336px;}
.ls78{letter-spacing:0.681264px;}
.ls34{letter-spacing:0.693216px;}
.ls39{letter-spacing:0.699192px;}
.ls82{letter-spacing:0.711144px;}
.lscc{letter-spacing:0.714000px;}
.ls4d{letter-spacing:0.717120px;}
.ls3e{letter-spacing:0.770904px;}
.ls7c{letter-spacing:0.772200px;}
.ls67{letter-spacing:0.782856px;}
.ls68{letter-spacing:0.818712px;}
.lsaf{letter-spacing:0.836640px;}
.ls2f{letter-spacing:0.854568px;}
.ls66{letter-spacing:0.872496px;}
.lsb5{letter-spacing:0.896400px;}
.ls2c{letter-spacing:0.956160px;}
.ls9f{letter-spacing:0.997992px;}
.lsc5{letter-spacing:1.039824px;}
.lsc2{letter-spacing:1.231056px;}
.ls9e{letter-spacing:1.350576px;}
.ls23{letter-spacing:1.374480px;}
.lsb9{letter-spacing:1.482048px;}
.ls6d{letter-spacing:1.523880px;}
.ls63{letter-spacing:1.631448px;}
.lsb7{letter-spacing:1.786824px;}
.ls3{letter-spacing:1.800000px;}
.ls56{letter-spacing:2.091600px;}
.ls8e{letter-spacing:2.121480px;}
.ls8a{letter-spacing:2.133432px;}
.ls61{letter-spacing:2.181240px;}
.ls62{letter-spacing:2.193192px;}
.lsb3{letter-spacing:2.217096px;}
.ls3b{letter-spacing:2.223072px;}
.ls1{letter-spacing:2.250000px;}
.ls64{letter-spacing:2.360520px;}
.ls6e{letter-spacing:2.450160px;}
.ls29{letter-spacing:2.497968px;}
.ls32{letter-spacing:2.808720px;}
.lsa3{letter-spacing:2.868480px;}
.ls69{letter-spacing:2.934216px;}
.lsae{letter-spacing:3.203136px;}
.ls8{letter-spacing:3.525840px;}
.ls4f{letter-spacing:3.600000px;}
.ls21{letter-spacing:3.603528px;}
.lsac{letter-spacing:3.609504px;}
.ls58{letter-spacing:3.621456px;}
.ls88{letter-spacing:3.645360px;}
.ls59{letter-spacing:3.687192px;}
.ls57{letter-spacing:3.723048px;}
.ls6f{letter-spacing:4.237200px;}
.ls26{letter-spacing:4.242960px;}
.ls6a{letter-spacing:4.253760px;}
.lsa6{letter-spacing:4.284792px;}
.ls89{letter-spacing:4.290768px;}
.ls3c{letter-spacing:4.308696px;}
.ls1d{letter-spacing:4.326624px;}
.lsa{letter-spacing:4.338576px;}
.ls76{letter-spacing:4.356504px;}
.ls6{letter-spacing:4.410288px;}
.ls75{letter-spacing:4.470048px;}
.ls73{letter-spacing:4.505904px;}
.ls1c{letter-spacing:4.523832px;}
.ls24{letter-spacing:4.960080px;}
.ls5{letter-spacing:5.019840px;}
.lsa4{letter-spacing:5.055696px;}
.ls2b{letter-spacing:5.079600px;}
.lsa5{letter-spacing:5.205096px;}
.ls6c{letter-spacing:5.677200px;}
.lsa9{letter-spacing:5.707080px;}
.ls5d{letter-spacing:5.736960px;}
.ls2a{letter-spacing:5.766840px;}
.lsa8{letter-spacing:5.832576px;}
.lsad{letter-spacing:5.838552px;}
.ls5c{letter-spacing:5.850504px;}
.lsb8{letter-spacing:6.041736px;}
.ls30{letter-spacing:6.448104px;}
.lsb{letter-spacing:6.454080px;}
.lsb2{letter-spacing:6.627384px;}
.ls5b{letter-spacing:6.705072px;}
.ls28{letter-spacing:6.752880px;}
.ls27{letter-spacing:7.171200px;}
.ls77{letter-spacing:7.224984px;}
.ls1e{letter-spacing:7.272792px;}
.ls31{letter-spacing:7.350480px;}
.ls4c{letter-spacing:7.888320px;}
.ls74{letter-spacing:8.067600px;}
.ls36{letter-spacing:8.605440px;}
.lsb0{letter-spacing:9.322560px;}
.ls47{letter-spacing:9.358416px;}
.ls44{letter-spacing:10.756800px;}
.ls45{letter-spacing:10.858392px;}
.ls8c{letter-spacing:11.539656px;}
.ls3a{letter-spacing:12.191040px;}
.ls5e{letter-spacing:14.438016px;}
.lsaa{letter-spacing:26.766504px;}
.lsc{letter-spacing:30.348000px;}
.ls38{letter-spacing:33.824160px;}
.ls49{letter-spacing:62.568720px;}
.ls37{letter-spacing:64.002960px;}
.lsb6{letter-spacing:64.720080px;}
.ls93{letter-spacing:170.586720px;}
.ls9a{letter-spacing:206.586720px;}
.ls99{letter-spacing:224.586720px;}
.ls91{letter-spacing:238.986720px;}
.ls92{letter-spacing:241.866720px;}
.ls94{letter-spacing:255.690000px;}
.ls98{letter-spacing:323.946720px;}
.ls95{letter-spacing:333.450000px;}
.ls9c{letter-spacing:485.946720px;}
.ls96{letter-spacing:503.946720px;}
.ls90{letter-spacing:680.346720px;}
.lsb4{letter-spacing:847.685520px;}
.ls9b{letter-spacing:1084.986720px;}
.ls9d{letter-spacing:1330.650000px;}
.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;}
}
.ws3b{word-spacing:-59.760000px;}
.ws3{word-spacing:-30.024000px;}
.ws2{word-spacing:-29.808000px;}
.ws4{word-spacing:-29.700000px;}
.ws9f{word-spacing:-28.745040px;}
.ws2d{word-spacing:-23.755680px;}
.ws7e{word-spacing:-23.081760px;}
.ws7{word-spacing:-17.210880px;}
.ws46{word-spacing:-17.031600px;}
.ws2e{word-spacing:-16.971840px;}
.ws2f{word-spacing:-16.852320px;}
.ws6d{word-spacing:-16.732800px;}
.ws3a{word-spacing:-16.613280px;}
.ws8{word-spacing:-16.553520px;}
.ws6{word-spacing:-16.493760px;}
.ws3c{word-spacing:-16.374240px;}
.ws9{word-spacing:-16.314480px;}
.ws90{word-spacing:-16.254720px;}
.ws30{word-spacing:-15.776640px;}
.ws8b{word-spacing:-15.597360px;}
.ws85{word-spacing:-15.390000px;}
.wsc{word-spacing:-15.228000px;}
.ws86{word-spacing:-15.120000px;}
.ws93{word-spacing:-15.119280px;}
.ws9c{word-spacing:-15.102720px;}
.ws94{word-spacing:-15.059520px;}
.ws9b{word-spacing:-15.036480px;}
.wsd{word-spacing:-15.012000px;}
.ws87{word-spacing:-14.904000px;}
.ws4e{word-spacing:-14.634000px;}
.wsb{word-spacing:-14.526000px;}
.ws84{word-spacing:-13.770000px;}
.ws9e{word-spacing:-13.745280px;}
.wsa2{word-spacing:-13.744800px;}
.ws9d{word-spacing:-13.625280px;}
.ws5{word-spacing:-13.410720px;}
.wsa0{word-spacing:-13.326480px;}
.ws71{word-spacing:-12.690000px;}
.ws76{word-spacing:-12.312000px;}
.ws74{word-spacing:-12.258000px;}
.ws70{word-spacing:-12.150000px;}
.ws75{word-spacing:-12.042000px;}
.ws72{word-spacing:-11.988000px;}
.ws73{word-spacing:-11.880000px;}
.wsa{word-spacing:-11.609280px;}
.wsa1{word-spacing:-11.593440px;}
.ws77{word-spacing:-11.448000px;}
.ws82{word-spacing:-11.442240px;}
.ws81{word-spacing:-10.808640px;}
.ws4f{word-spacing:-10.805760px;}
.ws50{word-spacing:-10.612800px;}
.ws1{word-spacing:-10.440000px;}
.ws88{word-spacing:-10.008000px;}
.ws34{word-spacing:-4.242960px;}
.ws22{word-spacing:-3.525840px;}
.ws63{word-spacing:-2.868480px;}
.ws23{word-spacing:-2.808720px;}
.ws5a{word-spacing:-2.701440px;}
.ws3e{word-spacing:-2.629440px;}
.wsb0{word-spacing:-2.124000px;}
.ws26{word-spacing:-2.091600px;}
.ws6f{word-spacing:-1.912320px;}
.ws96{word-spacing:-1.494000px;}
.ws8d{word-spacing:-1.434240px;}
.ws39{word-spacing:-1.374480px;}
.ws80{word-spacing:-1.195200px;}
.ws8f{word-spacing:-0.896400px;}
.ws17{word-spacing:-0.864000px;}
.ws45{word-spacing:-0.810000px;}
.ws53{word-spacing:-0.756000px;}
.wsae{word-spacing:-0.714000px;}
.ws1e{word-spacing:-0.657360px;}
.ws25{word-spacing:-0.597600px;}
.ws5b{word-spacing:-0.530640px;}
.ws33{word-spacing:-0.478080px;}
.ws12{word-spacing:-0.432000px;}
.ws62{word-spacing:-0.418320px;}
.ws7c{word-spacing:-0.378000px;}
.ws28{word-spacing:-0.358560px;}
.wse{word-spacing:-0.337680px;}
.ws79{word-spacing:-0.324000px;}
.ws98{word-spacing:-0.298800px;}
.ws2b{word-spacing:-0.270000px;}
.ws6e{word-spacing:-0.252720px;}
.wsab{word-spacing:-0.240000px;}
.ws60{word-spacing:-0.239040px;}
.ws56{word-spacing:-0.216000px;}
.wsb8{word-spacing:-0.198000px;}
.ws54{word-spacing:-0.162000px;}
.ws16{word-spacing:-0.144000px;}
.wsb7{word-spacing:-0.126000px;}
.wsa5{word-spacing:-0.120000px;}
.ws8e{word-spacing:-0.119520px;}
.ws2c{word-spacing:-0.108000px;}
.ws3d{word-spacing:-0.084240px;}
.wsa3{word-spacing:-0.066240px;}
.wsaa{word-spacing:-0.066000px;}
.wsac{word-spacing:-0.060000px;}
.wsbb{word-spacing:-0.059760px;}
.ws55{word-spacing:-0.054000px;}
.wsba{word-spacing:-0.024000px;}
.ws0{word-spacing:0.000000px;}
.ws7a{word-spacing:0.054000px;}
.ws1f{word-spacing:0.059760px;}
.wsb1{word-spacing:0.060000px;}
.wsa4{word-spacing:0.066240px;}
.ws18{word-spacing:0.072000px;}
.ws78{word-spacing:0.108000px;}
.ws1b{word-spacing:0.119520px;}
.wsad{word-spacing:0.120000px;}
.ws7b{word-spacing:0.162000px;}
.ws64{word-spacing:0.192960px;}
.ws10{word-spacing:0.216000px;}
.ws43{word-spacing:0.239040px;}
.wsb3{word-spacing:0.288000px;}
.ws27{word-spacing:0.298800px;}
.ws11{word-spacing:0.324000px;}
.ws15{word-spacing:0.336960px;}
.ws6a{word-spacing:0.385920px;}
.ws95{word-spacing:0.397440px;}
.ws41{word-spacing:0.418320px;}
.wsf{word-spacing:0.432000px;}
.ws42{word-spacing:0.478080px;}
.wsb6{word-spacing:0.540000px;}
.wsa7{word-spacing:0.588000px;}
.ws69{word-spacing:0.594000px;}
.wsaf{word-spacing:0.600000px;}
.wsb9{word-spacing:0.606000px;}
.wsb2{word-spacing:0.624000px;}
.wsa6{word-spacing:0.660000px;}
.ws14{word-spacing:0.673920px;}
.ws68{word-spacing:0.702000px;}
.wsa8{word-spacing:0.774000px;}
.ws2a{word-spacing:0.776880px;}
.ws92{word-spacing:0.836640px;}
.ws7d{word-spacing:0.864000px;}
.wsb5{word-spacing:0.870000px;}
.wsb4{word-spacing:1.002000px;}
.ws13{word-spacing:1.095120px;}
.ws97{word-spacing:1.195200px;}
.ws8a{word-spacing:1.296000px;}
.wsa9{word-spacing:1.362000px;}
.ws32{word-spacing:1.494000px;}
.ws99{word-spacing:1.553760px;}
.ws4c{word-spacing:1.673280px;}
.ws67{word-spacing:2.151360px;}
.ws20{word-spacing:2.211120px;}
.ws66{word-spacing:2.390400px;}
.ws91{word-spacing:2.928240px;}
.ws21{word-spacing:2.988000px;}
.ws6b{word-spacing:3.167280px;}
.ws9a{word-spacing:3.645360px;}
.ws1c{word-spacing:3.705120px;}
.ws4d{word-spacing:3.884400px;}
.ws58{word-spacing:4.212000px;}
.ws1a{word-spacing:4.422240px;}
.ws19{word-spacing:5.139360px;}
.ws35{word-spacing:5.318640px;}
.ws57{word-spacing:5.670000px;}
.ws5c{word-spacing:5.796720px;}
.ws31{word-spacing:5.856480px;}
.ws36{word-spacing:6.035760px;}
.ws29{word-spacing:6.573600px;}
.ws52{word-spacing:6.752880px;}
.ws7f{word-spacing:6.812640px;}
.ws6c{word-spacing:7.230960px;}
.ws24{word-spacing:7.290720px;}
.ws49{word-spacing:7.470000px;}
.ws3f{word-spacing:8.007840px;}
.ws4a{word-spacing:8.127360px;}
.ws4b{word-spacing:8.724960px;}
.ws1d{word-spacing:9.442080px;}
.ws5d{word-spacing:10.159200px;}
.ws48{word-spacing:10.398240px;}
.ws47{word-spacing:10.876320px;}
.ws83{word-spacing:11.593440px;}
.ws38{word-spacing:12.310560px;}
.ws37{word-spacing:13.027680px;}
.ws5e{word-spacing:13.744800px;}
.ws59{word-spacing:15.179040px;}
.ws5f{word-spacing:16.440192px;}
.ws61{word-spacing:16.681392px;}
.ws89{word-spacing:17.330400px;}
.ws44{word-spacing:20.975760px;}
.ws8c{word-spacing:26.712720px;}
.ws40{word-spacing:33.943680px;}
.ws51{word-spacing:37.328112px;}
.ws65{word-spacing:65.210832px;}
._f{margin-left:-32.904000px;}
._2{margin-left:-11.484000px;}
._1{margin-left:-10.440000px;}
._3{margin-left:-9.396000px;}
._1b{margin-left:-7.745040px;}
._0{margin-left:-5.220000px;}
._6{margin-left:-3.894000px;}
._4{margin-left:-2.250000px;}
._7{margin-left:-1.099872px;}
._8{width:1.112400px;}
._5{width:2.160000px;}
._c{width:3.977352px;}
._9{width:5.125680px;}
._d{width:6.274872px;}
._a{width:7.291440px;}
._10{width:8.817120px;}
._11{width:9.976464px;}
._e{width:12.196080px;}
._14{width:13.827600px;}
._13{width:26.818560px;}
._12{width:36.943344px;}
._16{width:38.203200px;}
._15{width:49.153680px;}
._19{width:54.701280px;}
._18{width:64.826064px;}
._1a{width:151.245360px;}
._1c{width:237.675744px;}
._1f{width:258.103728px;}
._1e{width:259.466256px;}
._17{width:283.153320px;}
._20{width:330.517872px;}
._1d{width:332.640000px;}
._b{width:847.396800px;}
.fc5{color:rgb(95,187,201);}
.fc4{color:rgb(255,0,0);}
.fc6{color:rgb(0,73,101);}
.fc3{color:rgb(0,130,173);}
.fc1{color:rgb(227,5,19);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:36.000000px;}
.fsf{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs11{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.fs6{font-size:168.000000px;}
.fs5{font-size:261.000000px;}
.y0{bottom:0.000000px;}
.y169{bottom:2.513250px;}
.y19d{bottom:2.880000px;}
.y1fe{bottom:4.680000px;}
.y1fa{bottom:4.860000px;}
.y19f{bottom:9.900000px;}
.y1b0{bottom:18.360000px;}
.y1ae{bottom:18.540000px;}
.y2c{bottom:23.943960px;}
.y1a3{bottom:33.839850px;}
.y1a6{bottom:33.840000px;}
.y6{bottom:35.925007px;}
.y2b{bottom:37.620000px;}
.y5{bottom:66.525004px;}
.y190{bottom:90.081000px;}
.y1f2{bottom:92.511000px;}
.y8c{bottom:92.515500px;}
.y15a{bottom:92.520000px;}
.y4{bottom:97.125005px;}
.yff{bottom:97.544880px;}
.y4a{bottom:99.000000px;}
.y1d0{bottom:101.764080px;}
.y23c{bottom:101.956320px;}
.y1c3{bottom:107.100000px;}
.y1f1{bottom:107.995500px;}
.y159{bottom:108.000000px;}
.ydc{bottom:113.220000px;}
.y26c{bottom:113.940000px;}
.y18f{bottom:114.194160px;}
.y8b{bottom:114.480000px;}
.y216{bottom:120.676320px;}
.yfe{bottom:121.478760px;}
.y49{bottom:122.400000px;}
.y158{bottom:123.480000px;}
.y1cf{bottom:125.877240px;}
.y23b{bottom:125.890200px;}
.y195{bottom:126.720000px;}
.y8a{bottom:128.880000px;}
.y1c2{bottom:129.199500px;}
.y18b{bottom:132.120000px;}
.y26b{bottom:133.560000px;}
.y29d{bottom:136.980000px;}
.y18e{bottom:138.128040px;}
.y22{bottom:139.264499px;}
.y215{bottom:144.610200px;}
.y1c1{bottom:144.684000px;}
.yfd{bottom:145.412640px;}
.y157{bottom:145.620000px;}
.y48{bottom:145.980000px;}
.y1ce{bottom:149.811120px;}
.y23a{bottom:150.003360px;}
.y26a{bottom:153.180000px;}
.y29c{bottom:153.544500px;}
.y18a{bottom:156.060000px;}
.yb5{bottom:156.314160px;}
.y1f0{bottom:159.840000px;}
.y47{bottom:160.200000px;}
.y89{bottom:161.979480px;}
.y18d{bottom:162.061920px;}
.y156{bottom:162.540000px;}
.yc2{bottom:162.919080px;}
.y214{bottom:168.723360px;}
.y1c0{bottom:169.159500px;}
.yfc{bottom:169.525800px;}
.y29b{bottom:169.920000px;}
.y126{bottom:171.900000px;}
.y269{bottom:172.620000px;}
.y1cd{bottom:173.745000px;}
.y239{bottom:173.937240px;}
.y155{bottom:178.020000px;}
.y189{bottom:180.000000px;}
.ydb{bottom:180.064080px;}
.yb4{bottom:180.248040px;}
.y1bf{bottom:184.819500px;}
.y88{bottom:186.092640px;}
.y18c{bottom:186.175080px;}
.y29a{bottom:186.480000px;}
.yc1{bottom:187.032240px;}
.y268{bottom:192.060000px;}
.y213{bottom:192.657240px;}
.yfb{bottom:193.459680px;}
.y154{bottom:193.680000px;}
.y125{bottom:196.020000px;}
.y19{bottom:196.933500px;}
.y1cc{bottom:197.858160px;}
.y238{bottom:197.871120px;}
.y1be{bottom:200.304000px;}
.y299{bottom:203.044500px;}
.y188{bottom:204.120000px;}
.yda{bottom:204.177240px;}
.y1ef{bottom:204.240600px;}
.yb3{bottom:204.361200px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y87{bottom:210.026520px;}
.y70{bottom:210.108960px;}
.yc0{bottom:210.966120px;}
.y267{bottom:211.680000px;}
.y153{bottom:215.640000px;}
.y1bd{bottom:215.788500px;}
.y212{bottom:216.591120px;}
.yfa{bottom:217.393560px;}
.y298{bottom:219.420000px;}
.y124{bottom:219.960000px;}
.y1cb{bottom:221.792040px;}
.y237{bottom:221.984280px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y187{bottom:228.060000px;}
.yd9{bottom:228.111120px;}
.y1ee{bottom:228.174480px;}
.yb2{bottom:228.295080px;}
.y152{bottom:229.860000px;}
.y266{bottom:231.120000px;}
.y1bc{bottom:231.273000px;}
.y86{bottom:233.960400px;}
.y6f{bottom:234.042840px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.ybf{bottom:234.900000px;}
.y211{bottom:240.704280px;}
.yf9{bottom:241.506720px;}
.y123{bottom:243.900000px;}
.y10c{bottom:244.342500px;}
.ycf{bottom:244.479450px;}
.y1ca{bottom:245.725920px;}
.y236{bottom:245.918160px;}
.y1bb{bottom:246.757500px;}
.y265{bottom:250.560000px;}
.y186{bottom:252.000000px;}
.yd8{bottom:252.045000px;}
.y1ed{bottom:252.108360px;}
.yb1{bottom:252.228960px;}
.y297{bottom:254.332440px;}
.ybe{bottom:257.220000px;}
.y85{bottom:258.073560px;}
.y6e{bottom:258.156000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y151{bottom:263.520000px;}
.y210{bottom:264.638160px;}
.y165{bottom:265.016700px;}
.yf8{bottom:265.440600px;}
.y122{bottom:268.020000px;}
.y1c9{bottom:269.839080px;}
.y235{bottom:269.852040px;}
.y264{bottom:270.180000px;}
.y1ba{bottom:271.422000px;}
.y296{bottom:272.335200px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.ybd{bottom:273.060000px;}
.y185{bottom:276.120000px;}
.yd7{bottom:276.158160px;}
.y1ec{bottom:276.221520px;}
.yb0{bottom:276.342120px;}
.y84{bottom:282.007440px;}
.y6d{bottom:282.089880px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1b9{bottom:286.906500px;}
.y150{bottom:287.460000px;}
.y20f{bottom:288.572040px;}
.yf7{bottom:289.374480px;}
.y263{bottom:289.620000px;}
.ybc{bottom:289.971000px;}
.y121{bottom:291.960000px;}
.y1c8{bottom:293.772960px;}
.y234{bottom:293.965200px;}
.y23d{bottom:299.902500px;}
.y184{bottom:300.060000px;}
.yd6{bottom:300.092040px;}
.y1eb{bottom:300.155400px;}
.yaf{bottom:300.276000px;}
.y1b8{bottom:302.391000px;}
.ybb{bottom:305.455500px;}
.y83{bottom:305.941320px;}
.y6c{bottom:306.023760px;}
.y262{bottom:309.060000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y133{bottom:311.521350px;}
.y14f{bottom:311.580000px;}
.y20e{bottom:312.685200px;}
.y295{bottom:313.016700px;}
.yf6{bottom:313.487640px;}
.y120{bottom:315.900000px;}
.y1c7{bottom:317.706840px;}
.y1b7{bottom:317.875500px;}
.y233{bottom:317.899080px;}
.yba{bottom:320.940000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y183{bottom:324.000000px;}
.yd5{bottom:324.025920px;}
.y1ea{bottom:324.089280px;}
.yae{bottom:324.209880px;}
.y46{bottom:328.428000px;}
.y261{bottom:328.680000px;}
.y82{bottom:330.054480px;}
.y6b{bottom:330.136920px;}
.y14e{bottom:335.520000px;}
.y20d{bottom:336.619080px;}
.yb9{bottom:336.780000px;}
.yf5{bottom:337.421520px;}
.y11f{bottom:340.020000px;}
.y1c6{bottom:341.820000px;}
.y232{bottom:341.832960px;}
.y1b6{bottom:342.540000px;}
.y182{bottom:348.120000px;}
.y10{bottom:348.133500px;}
.yd4{bottom:348.139080px;}
.y1e9{bottom:348.202440px;}
.yad{bottom:348.323040px;}
.yce{bottom:350.820000px;}
.y45{bottom:350.927640px;}
.y294{bottom:351.717000px;}
.y81{bottom:353.988360px;}
.y6a{bottom:354.070800px;}
.yd1{bottom:355.666620px;}
.y1b5{bottom:355.860000px;}
.y14d{bottom:359.460000px;}
.y20c{bottom:360.552960px;}
.yf4{bottom:361.355400px;}
.y11e{bottom:363.960000px;}
.y231{bottom:365.946120px;}
.y260{bottom:367.560000px;}
.y293{bottom:369.720000px;}
.y181{bottom:372.060000px;}
.yd3{bottom:372.072960px;}
.y1e8{bottom:372.136320px;}
.yac{bottom:372.256920px;}
.yc3{bottom:374.233200px;}
.y44{bottom:374.861520px;}
.y80{bottom:377.922240px;}
.y69{bottom:378.004680px;}
.yd0{bottom:379.762500px;}
.y14c{bottom:383.580000px;}
.y1c5{bottom:383.586300px;}
.y20b{bottom:384.666120px;}
.y25f{bottom:384.840000px;}
.yf3{bottom:385.468560px;}
.yf{bottom:386.785499px;}
.y28e{bottom:387.022320px;}
.y1b4{bottom:387.540000px;}
.y11d{bottom:387.900000px;}
.y230{bottom:389.880000px;}
.yc4{bottom:394.325160px;}
.y180{bottom:396.000000px;}
.yd2{bottom:396.006840px;}
.y1e7{bottom:396.070200px;}
.yab{bottom:396.190800px;}
.y43{bottom:398.795400px;}
.y7f{bottom:402.035400px;}
.y68{bottom:402.117840px;}
.y25e{bottom:404.280000px;}
.y14b{bottom:407.520000px;}
.y1c4{bottom:407.700000px;}
.ye{bottom:408.044999px;}
.y20a{bottom:408.600000px;}
.yf2{bottom:409.402440px;}
.y292{bottom:411.289500px;}
.yc5{bottom:414.417120px;}
.y28d{bottom:418.515840px;}
.y1b3{bottom:419.220000px;}
.y17f{bottom:420.120000px;}
.y1e6{bottom:420.183360px;}
.yaa{bottom:420.303960px;}
.y42{bottom:422.908560px;}
.y25d{bottom:423.900000px;}
.y7e{bottom:425.969280px;}
.y67{bottom:426.051720px;}
.y291{bottom:429.292500px;}
.y11c{bottom:429.660000px;}
.y209{bottom:430.735500px;}
.y14a{bottom:431.460000px;}
.y22f{bottom:431.640000px;}
.yf1{bottom:433.336320px;}
.yc6{bottom:434.509080px;}
.y28c{bottom:435.069360px;}
.y25c{bottom:443.340000px;}
.y17e{bottom:444.060000px;}
.y1e5{bottom:444.117240px;}
.ya9{bottom:444.237840px;}
.y208{bottom:446.220000px;}
.y41{bottom:446.842440px;}
.y290{bottom:447.295500px;}
.y7d{bottom:449.903160px;}
.y66{bottom:449.985600px;}
.y1b2{bottom:451.080000px;}
.yc7{bottom:454.601040px;}
.y149{bottom:455.580000px;}
.yf0{bottom:457.449480px;}
.y25b{bottom:462.780000px;}
.y28b{bottom:466.562880px;}
.y17d{bottom:468.000000px;}
.y1e4{bottom:468.051120px;}
.ya8{bottom:468.171720px;}
.y40{bottom:470.776320px;}
.y7c{bottom:474.016320px;}
.y65{bottom:474.098760px;}
.yc8{bottom:474.693000px;}
.y207{bottom:477.180000px;}
.y148{bottom:479.520000px;}
.yef{bottom:481.383360px;}
.y25a{bottom:482.400000px;}
.y1b1{bottom:482.760000px;}
.y28a{bottom:483.116400px;}
.y11b{bottom:490.184640px;}
.y17c{bottom:492.120000px;}
.y1e3{bottom:492.164280px;}
.y22e{bottom:492.272640px;}
.ya7{bottom:492.284880px;}
.yc9{bottom:494.784960px;}
.y3f{bottom:494.889480px;}
.y28f{bottom:495.540000px;}
.y7b{bottom:497.950200px;}
.y64{bottom:498.032640px;}
.y289{bottom:499.490640px;}
.y206{bottom:501.120000px;}
.y259{bottom:501.840000px;}
.y147{bottom:502.020000px;}
.yd{bottom:502.864502px;}
.yee{bottom:505.317240px;}
.y11a{bottom:514.118520px;}
.y1af{bottom:514.440000px;}
.yca{bottom:514.876920px;}
.y17b{bottom:516.060000px;}
.y1e2{bottom:516.098160px;}
.y22d{bottom:516.206520px;}
.ya6{bottom:516.218760px;}
.y3e{bottom:518.823360px;}
.y146{bottom:519.300000px;}
.yc{bottom:520.864502px;}
.y258{bottom:521.280000px;}
.y7a{bottom:521.884080px;}
.y63{bottom:521.966520px;}
.y205{bottom:522.180000px;}
.yed{bottom:529.430400px;}
.y288{bottom:530.984160px;}
.ycb{bottom:534.968880px;}
.y145{bottom:536.580000px;}
.y119{bottom:538.052400px;}
.yb{bottom:538.864499px;}
.y17a{bottom:540.000000px;}
.y1e1{bottom:540.032040px;}
.y22c{bottom:540.140400px;}
.ya5{bottom:540.152640px;}
.y257{bottom:540.900000px;}
.y3d{bottom:542.757240px;}
.y79{bottom:545.997240px;}
.y62{bottom:546.079680px;}
.y1ad{bottom:546.120000px;}
.y287{bottom:547.537680px;}
.yec{bottom:553.364280px;}
.y144{bottom:553.500000px;}
.ycc{bottom:555.060840px;}
.ya{bottom:556.864499px;}
.y256{bottom:560.340000px;}
.y118{bottom:562.165560px;}
.y286{bottom:564.091200px;}
.y179{bottom:564.120000px;}
.y1e0{bottom:564.145200px;}
.y22b{bottom:564.253560px;}
.ya4{bottom:564.265800px;}
.y3c{bottom:566.870400px;}
.y143{bottom:568.980000px;}
.y78{bottom:569.931120px;}
.y61{bottom:570.013560px;}
.ycd{bottom:575.152800px;}
.yeb{bottom:577.298160px;}
.y1ac{bottom:577.980000px;}
.y204{bottom:578.700000px;}
.y255{bottom:579.780000px;}
.y285{bottom:580.465440px;}
.y142{bottom:584.820000px;}
.y117{bottom:586.099440px;}
.y178{bottom:588.060000px;}
.y1df{bottom:588.079080px;}
.y22a{bottom:588.187440px;}
.ya3{bottom:588.199680px;}
.y3b{bottom:590.804280px;}
.y77{bottom:593.865000px;}
.y60{bottom:593.947440px;}
.y164{bottom:598.860000px;}
.y254{bottom:599.400000px;}
.y1ab{bottom:601.200000px;}
.yea{bottom:601.411320px;}
.y167{bottom:609.091500px;}
.y116{bottom:610.033320px;}
.y284{bottom:611.958960px;}
.y177{bottom:612.000000px;}
.y1de{bottom:612.012960px;}
.y229{bottom:612.121320px;}
.ya2{bottom:612.133560px;}
.y3a{bottom:614.738160px;}
.y76{bottom:617.978160px;}
.y5f{bottom:618.060600px;}
.y203{bottom:618.480000px;}
.y253{bottom:618.840000px;}
.yb8{bottom:623.511000px;}
.y1a9{bottom:624.420000px;}
.ye9{bottom:625.345200px;}
.y168{bottom:628.020000px;}
.y283{bottom:628.512480px;}
.y115{bottom:634.146480px;}
.y176{bottom:636.120000px;}
.y1dd{bottom:636.126120px;}
.y228{bottom:636.234480px;}
.ya1{bottom:636.246720px;}
.y252{bottom:638.280000px;}
.y39{bottom:638.851320px;}
.yb7{bottom:638.995500px;}
.y75{bottom:641.912040px;}
.y5e{bottom:641.994480px;}
.y1aa{bottom:642.780000px;}
.y9{bottom:645.510000px;}
.y166{bottom:647.818800px;}
.ye8{bottom:649.279080px;}
.yb6{bottom:654.480000px;}
.y251{bottom:657.900000px;}
.y114{bottom:658.080360px;}
.y202{bottom:658.260000px;}
.y282{bottom:660.006000px;}
.y175{bottom:660.060000px;}
.y1dc{bottom:660.066120px;}
.y227{bottom:660.168360px;}
.ya0{bottom:660.180600px;}
.y15b{bottom:662.386350px;}
.y38{bottom:662.785200px;}
.y74{bottom:665.845920px;}
.y5d{bottom:665.928360px;}
.y8{bottom:666.771000px;}
.y29{bottom:670.535400px;}
.y1a8{bottom:671.580000px;}
.ye7{bottom:673.392240px;}
.y281{bottom:676.559520px;}
.y250{bottom:677.340000px;}
.y113{bottom:680.580000px;}
.y174{bottom:684.000000px;}
.y1db{bottom:684.070200px;}
.y226{bottom:684.102240px;}
.y9f{bottom:684.114480px;}
.y15c{bottom:684.769710px;}
.y37{bottom:686.719080px;}
.y73{bottom:689.959080px;}
.y5c{bottom:690.041520px;}
.y1a5{bottom:694.980000px;}
.y24f{bottom:696.780000px;}
.ye6{bottom:697.326120px;}
.y112{bottom:697.495500px;}
.y201{bottom:698.040000px;}
.y28{bottom:706.535400px;}
.y15d{bottom:707.153070px;}
.y280{bottom:707.873760px;}
.y173{bottom:708.120000px;}
.y1da{bottom:708.183360px;}
.y225{bottom:708.215400px;}
.y9e{bottom:708.227640px;}
.y36{bottom:710.832240px;}
.y111{bottom:712.980000px;}
.y1a7{bottom:713.340000px;}
.y72{bottom:713.892960px;}
.y5b{bottom:713.975400px;}
.y24e{bottom:714.060000px;}
.ye5{bottom:721.260000px;}
.y27f{bottom:724.427280px;}
.y7{bottom:726.298500px;}
.y110{bottom:728.640000px;}
.y15e{bottom:729.536430px;}
.y24d{bottom:731.340000px;}
.y172{bottom:732.060000px;}
.y1d9{bottom:732.117240px;}
.y224{bottom:732.149280px;}
.y9d{bottom:732.161520px;}
.y27{bottom:733.535400px;}
.y35{bottom:734.766120px;}
.y200{bottom:737.820000px;}
.y71{bottom:737.826840px;}
.y5a{bottom:737.909280px;}
.y1a2{bottom:742.140000px;}
.y10f{bottom:743.400000px;}
.ye4{bottom:743.566500px;}
.y24c{bottom:750.780000px;}
.y15f{bottom:751.919790px;}
.y3{bottom:752.599495px;}
.y132{bottom:753.300000px;}
.y27e{bottom:755.920800px;}
.y171{bottom:756.000000px;}
.y1d8{bottom:756.051120px;}
.y223{bottom:756.083160px;}
.y9c{bottom:756.095400px;}
.y34{bottom:758.700000px;}
.ye3{bottom:759.051000px;}
.y1a4{bottom:760.500000px;}
.y136{bottom:761.894550px;}
.y59{bottom:762.022440px;}
.y1fd{bottom:765.720000px;}
.y24b{bottom:770.400000px;}
.y27d{bottom:772.474320px;}
.y160{bottom:774.303150px;}
.ye2{bottom:774.535500px;}
.y170{bottom:780.120000px;}
.y1d7{bottom:780.164280px;}
.y222{bottom:780.196320px;}
.y9b{bottom:780.208560px;}
.y1ff{bottom:782.460000px;}
.y58{bottom:785.956320px;}
.y26{bottom:787.523400px;}
.y135{bottom:787.689660px;}
.y27c{bottom:789.027840px;}
.y1a1{bottom:789.300000px;}
.y24a{bottom:789.840000px;}
.ye1{bottom:790.020000px;}
.y1fc{bottom:794.340000px;}
.y161{bottom:796.686510px;}
.y33{bottom:799.920000px;}
.y16f{bottom:804.060000px;}
.y1d6{bottom:804.098160px;}
.y221{bottom:804.130200px;}
.y9a{bottom:804.142440px;}
.y27b{bottom:805.402080px;}
.ye0{bottom:805.860000px;}
.y249{bottom:809.280000px;}
.y57{bottom:809.890200px;}
.y1a0{bottom:812.520000px;}
.y134{bottom:812.702100px;}
.y162{bottom:819.069870px;}
.y10b{bottom:820.080000px;}
.y10e{bottom:825.730980px;}
.y1fb{bottom:826.920000px;}
.y127{bottom:827.269650px;}
.y16e{bottom:828.000000px;}
.y1d5{bottom:828.032040px;}
.y220{bottom:828.064080px;}
.y99{bottom:828.076320px;}
.y248{bottom:828.900000px;}
.y56{bottom:834.003360px;}
.y25{bottom:835.529400px;}
.y19e{bottom:835.920000px;}
.y27a{bottom:836.895600px;}
.y163{bottom:841.453230px;}
.y10d{bottom:847.523400px;}
.y247{bottom:848.340000px;}
.y128{bottom:848.869110px;}
.y16d{bottom:852.120000px;}
.y1d4{bottom:852.145200px;}
.y21f{bottom:852.177240px;}
.y98{bottom:852.189480px;}
.y279{bottom:853.449120px;}
.y1f9{bottom:854.820000px;}
.y55{bottom:857.937240px;}
.y194{bottom:859.140000px;}
.y1f8{bottom:859.680000px;}
.y100{bottom:862.090950px;}
.y246{bottom:867.780000px;}
.y129{bottom:870.468570px;}
.y16c{bottom:876.060000px;}
.y1d3{bottom:876.079080px;}
.y21e{bottom:876.111120px;}
.y97{bottom:876.123360px;}
.y19c{bottom:877.473000px;}
.y2{bottom:879.369000px;}
.y101{bottom:880.482450px;}
.y141{bottom:880.920000px;}
.y54{bottom:881.871120px;}
.y24{bottom:883.535400px;}
.y1f7{bottom:883.620000px;}
.y278{bottom:884.942640px;}
.y245{bottom:887.400000px;}
.y12a{bottom:892.068030px;}
.y19b{bottom:892.957500px;}
.y140{bottom:898.020000px;}
.y102{bottom:898.873950px;}
.y16b{bottom:900.000000px;}
.y1d2{bottom:900.012960px;}
.y21d{bottom:900.045000px;}
.y96{bottom:900.057240px;}
.y277{bottom:901.496160px;}
.y53{bottom:905.984280px;}
.y244{bottom:906.840000px;}
.y19a{bottom:908.442000px;}
.y13f{bottom:913.500000px;}
.y12b{bottom:913.667490px;}
.y1f6{bottom:916.200000px;}
.y103{bottom:917.265450px;}
.y199{bottom:923.926500px;}
.y16a{bottom:924.120000px;}
.y1d1{bottom:924.126120px;}
.y21c{bottom:924.158160px;}
.y95{bottom:924.170400px;}
.y243{bottom:926.280000px;}
.y13e{bottom:929.340000px;}
.y52{bottom:929.918160px;}
.y32{bottom:931.860000px;}
.y276{bottom:932.810400px;}
.y12c{bottom:935.266950px;}
.y104{bottom:935.656950px;}
.y198{bottom:939.411000px;}
.y242{bottom:945.900000px;}
.y13d{bottom:948.060000px;}
.y21b{bottom:948.092040px;}
.y94{bottom:948.104280px;}
.y275{bottom:949.363920px;}
.y51{bottom:953.852040px;}
.y105{bottom:954.048450px;}
.y197{bottom:954.895500px;}
.y12d{bottom:956.866410px;}
.y1f5{bottom:962.100000px;}
.y274{bottom:965.917440px;}
.y1{bottom:966.726000px;}
.y241{bottom:966.780000px;}
.y196{bottom:970.380000px;}
.y13c{bottom:972.000000px;}
.y21a{bottom:972.025920px;}
.y93{bottom:972.038160px;}
.y2a{bottom:972.212700px;}
.y106{bottom:972.439950px;}
.y31{bottom:974.526300px;}
.y50{bottom:977.965200px;}
.y12e{bottom:978.465870px;}
.y273{bottom:982.470960px;}
.y240{bottom:990.720000px;}
.y107{bottom:990.831450px;}
.y13b{bottom:996.120000px;}
.y219{bottom:996.139080px;}
.y92{bottom:996.151320px;}
.y30{bottom:998.640000px;}
.y12f{bottom:1000.065330px;}
.y4f{bottom:1001.899080px;}
.y108{bottom:1009.222950px;}
.y272{bottom:1013.785200px;}
.y23f{bottom:1014.840000px;}
.y1f4{bottom:1017.175500px;}
.y13a{bottom:1020.060000px;}
.y218{bottom:1020.072960px;}
.y91{bottom:1020.085200px;}
.y193{bottom:1020.235500px;}
.y130{bottom:1021.664790px;}
.y23{bottom:1023.023400px;}
.y4e{bottom:1025.832960px;}
.y109{bottom:1027.614450px;}
.y271{bottom:1030.338720px;}
.y1f3{bottom:1032.660000px;}
.y192{bottom:1035.720000px;}
.y23e{bottom:1038.960000px;}
.y2f{bottom:1042.011000px;}
.y131{bottom:1043.264250px;}
.y139{bottom:1044.000000px;}
.y217{bottom:1044.006840px;}
.y90{bottom:1044.019080px;}
.y10a{bottom:1046.005950px;}
.y270{bottom:1046.892240px;}
.y4d{bottom:1049.946120px;}
.y26f{bottom:1063.445760px;}
.y138{bottom:1068.120000px;}
.y8f{bottom:1068.132240px;}
.y191{bottom:1069.566480px;}
.y4c{bottom:1073.880000px;}
.y2e{bottom:1075.140000px;}
.y26e{bottom:1079.820000px;}
.ydf{bottom:1091.691000px;}
.y137{bottom:1092.060000px;}
.y8e{bottom:1092.066120px;}
.yde{bottom:1107.175500px;}
.y2d{bottom:1108.080000px;}
.y4b{bottom:1115.640000px;}
.y26d{bottom:1115.820000px;}
.y8d{bottom:1116.000000px;}
.ydd{bottom:1122.660000px;}
.h21{height:19.080000px;}
.h26{height:22.498500px;}
.h24{height:22.500000px;}
.h30{height:30.955078px;}
.h29{height:30.960000px;}
.h2a{height:30.961500px;}
.h28{height:31.140000px;}
.h7{height:32.130000px;}
.hf{height:35.143594px;}
.h15{height:35.907891px;}
.h23{height:39.313477px;}
.h25{height:39.339844px;}
.h6{height:45.900000px;}
.h18{height:46.432617px;}
.h27{height:46.440000px;}
.h1a{height:47.223633px;}
.h2d{height:47.880000px;}
.h2c{height:48.060000px;}
.h3{height:48.195000px;}
.hd{height:48.906000px;}
.h2e{height:48.955078px;}
.h14{height:51.385430px;}
.h17{height:52.260820px;}
.hc{height:53.064000px;}
.h2{height:55.080000px;}
.h38{height:57.618000px;}
.h32{height:57.927656px;}
.h1c{height:58.932051px;}
.h19{height:59.261811px;}
.h16{height:59.338131px;}
.h2b{height:59.643411px;}
.h1e{height:59.667891px;}
.h13{height:62.964844px;}
.h35{height:63.763920px;}
.h36{height:63.764160px;}
.h37{height:64.779840px;}
.hb{height:65.700000px;}
.h12{height:65.946445px;}
.h34{height:70.678080px;}
.h31{height:72.858867px;}
.h11{height:73.668867px;}
.h5{height:78.030000px;}
.h2f{height:93.952617px;}
.h10{height:94.447266px;}
.h4{height:119.055004px;}
.h22{height:139.320000px;}
.ha{height:153.888000px;}
.h9{height:239.076000px;}
.h1d{height:255.060000px;}
.h1b{height:255.238500px;}
.h20{height:275.760000px;}
.h1f{height:322.920000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h33{height:1264.500000px;}
.wd{width:50.578500px;}
.wc{width:60.480000px;}
.we{width:63.538500px;}
.wb{width:63.540000px;}
.wf{width:70.560000px;}
.w10{width:110.520000px;}
.wa{width:153.180000px;}
.w11{width:381.961500px;}
.w2{width:637.794021px;}
.w8{width:642.060000px;}
.w9{width:642.240000px;}
.w5{width:648.000000px;}
.w6{width:652.500000px;}
.w7{width:671.580000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.w12{width:895.500000px;}
.x0{left:0.000000px;}
.x10{left:6.047400px;}
.x14{left:8.168400px;}
.x2f{left:11.160000px;}
.x2d{left:14.040000px;}
.x2c{left:17.280000px;}
.x2e{left:20.340000px;}
.x18{left:28.306650px;}
.x5{left:77.983650px;}
.x6{left:82.614150px;}
.x17{left:100.080000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x38{left:117.000000px;}
.x13{left:120.240000px;}
.x12{left:125.130750px;}
.x9{left:127.620000px;}
.xe{left:129.849900px;}
.xf{left:133.130220px;}
.x1c{left:135.880560px;}
.x19{left:137.500500px;}
.x15{left:139.633950px;}
.xb{left:144.696420px;}
.x37{left:161.638380px;}
.xc{left:171.719100px;}
.x1d{left:172.814100px;}
.x30{left:180.720000px;}
.xd{left:198.716580px;}
.x4{left:203.484001px;}
.x1b{left:222.738450px;}
.x39{left:231.306000px;}
.x1e{left:233.754000px;}
.x16{left:252.636150px;}
.x11{left:259.480770px;}
.x1a{left:261.839100px;}
.x20{left:280.800000px;}
.x21{left:288.900000px;}
.xa{left:343.620000px;}
.x22{left:352.260000px;}
.x23{left:404.820000px;}
.x1f{left:412.200000px;}
.x7{left:414.900000px;}
.x8{left:446.400720px;}
.x3{left:454.959000px;}
.x24{left:456.120000px;}
.x25{left:463.860000px;}
.x26{left:519.660000px;}
.x31{left:526.320000px;}
.x27{left:527.760000px;}
.x32{left:549.540000px;}
.x28{left:583.920000px;}
.x29{left:591.660000px;}
.x34{left:620.280000px;}
.x33{left:624.780000px;}
.x2a{left:654.480000px;}
.x2b{left:662.580000px;}
.x36{left:714.960000px;}
.x35{left:738.180000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v5{vertical-align:-16.000000pt;}
.v3{vertical-align:-2.717440pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:42.240000pt;}
.lsd3{letter-spacing:-1.806080pt;}
.lsbf{letter-spacing:-1.381120pt;}
.lsbe{letter-spacing:-1.354240pt;}
.lsc0{letter-spacing:-1.328000pt;}
.lsca{letter-spacing:-1.168000pt;}
.lsa0{letter-spacing:-1.152000pt;}
.lsa1{letter-spacing:-1.104000pt;}
.lsc1{letter-spacing:-1.062400pt;}
.lsd2{letter-spacing:-1.061333pt;}
.lsab{letter-spacing:-0.903040pt;}
.ls81{letter-spacing:-0.768000pt;}
.ls2{letter-spacing:-0.746667pt;}
.ls2e{letter-spacing:-0.743680pt;}
.lsd1{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.673920pt;}
.lsce{letter-spacing:-0.586667pt;}
.lscd{letter-spacing:-0.533333pt;}
.ls71{letter-spacing:-0.528000pt;}
.ls1a{letter-spacing:-0.432000pt;}
.ls41{letter-spacing:-0.424960pt;}
.ls7f{letter-spacing:-0.384000pt;}
.ls55{letter-spacing:-0.343040pt;}
.ls53{letter-spacing:-0.336000pt;}
.lsba{letter-spacing:-0.318720pt;}
.ls11{letter-spacing:-0.299520pt;}
.lsf{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.265600pt;}
.ls80{letter-spacing:-0.240000pt;}
.ls42{letter-spacing:-0.212480pt;}
.lse{letter-spacing:-0.192000pt;}
.ls54{letter-spacing:-0.171520pt;}
.ls8f{letter-spacing:-0.148480pt;}
.ls7d{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.106240pt;}
.lsa2{letter-spacing:-0.096000pt;}
.ls79{letter-spacing:-0.074880pt;}
.ls14{letter-spacing:-0.064000pt;}
.lsc9{letter-spacing:-0.058880pt;}
.lscf{letter-spacing:-0.053333pt;}
.ls17{letter-spacing:-0.053120pt;}
.ls7e{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls97{letter-spacing:0.016000pt;}
.lsc6{letter-spacing:0.029440pt;}
.lsbc{letter-spacing:0.031872pt;}
.ls22{letter-spacing:0.053120pt;}
.lscb{letter-spacing:0.053333pt;}
.ls87{letter-spacing:0.063744pt;}
.ls8b{letter-spacing:0.069056pt;}
.ls6b{letter-spacing:0.076800pt;}
.ls4a{letter-spacing:0.090304pt;}
.ls65{letter-spacing:0.091200pt;}
.lsbb{letter-spacing:0.095616pt;}
.ls50{letter-spacing:0.096000pt;}
.ls70{letter-spacing:0.100800pt;}
.ls5f{letter-spacing:0.105600pt;}
.ls7a{letter-spacing:0.106240pt;}
.lsc7{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.128000pt;}
.ls52{letter-spacing:0.144000pt;}
.lsc8{letter-spacing:0.159360pt;}
.ls4{letter-spacing:0.163200pt;}
.lsbd{letter-spacing:0.191232pt;}
.ls1b{letter-spacing:0.192000pt;}
.lsa7{letter-spacing:0.196544pt;}
.ls25{letter-spacing:0.212480pt;}
.lsd0{letter-spacing:0.213333pt;}
.ls51{letter-spacing:0.240000pt;}
.ls60{letter-spacing:0.249664pt;}
.ls5a{letter-spacing:0.254976pt;}
.ls12{letter-spacing:0.256000pt;}
.ls86{letter-spacing:0.260288pt;}
.ls4e{letter-spacing:0.265600pt;}
.lsb1{letter-spacing:0.270912pt;}
.ls3d{letter-spacing:0.276224pt;}
.ls33{letter-spacing:0.286848pt;}
.ls7b{letter-spacing:0.288000pt;}
.ls85{letter-spacing:0.292160pt;}
.ls2d{letter-spacing:0.299520pt;}
.lsd{letter-spacing:0.300160pt;}
.ls8d{letter-spacing:0.308096pt;}
.ls18{letter-spacing:0.318720pt;}
.ls19{letter-spacing:0.336000pt;}
.ls48{letter-spacing:0.339968pt;}
.lsc3{letter-spacing:0.345280pt;}
.ls35{letter-spacing:0.350592pt;}
.ls46{letter-spacing:0.355904pt;}
.ls4b{letter-spacing:0.371840pt;}
.ls40{letter-spacing:0.374400pt;}
.ls84{letter-spacing:0.382464pt;}
.ls83{letter-spacing:0.398400pt;}
.ls43{letter-spacing:0.424960pt;}
.ls7{letter-spacing:0.531200pt;}
.ls72{letter-spacing:0.536512pt;}
.ls9{letter-spacing:0.547136pt;}
.ls20{letter-spacing:0.568384pt;}
.lsc4{letter-spacing:0.573696pt;}
.ls1f{letter-spacing:0.584320pt;}
.ls3f{letter-spacing:0.589632pt;}
.ls78{letter-spacing:0.605568pt;}
.ls34{letter-spacing:0.616192pt;}
.ls39{letter-spacing:0.621504pt;}
.ls82{letter-spacing:0.632128pt;}
.lscc{letter-spacing:0.634667pt;}
.ls4d{letter-spacing:0.637440pt;}
.ls3e{letter-spacing:0.685248pt;}
.ls7c{letter-spacing:0.686400pt;}
.ls67{letter-spacing:0.695872pt;}
.ls68{letter-spacing:0.727744pt;}
.lsaf{letter-spacing:0.743680pt;}
.ls2f{letter-spacing:0.759616pt;}
.ls66{letter-spacing:0.775552pt;}
.lsb5{letter-spacing:0.796800pt;}
.ls2c{letter-spacing:0.849920pt;}
.ls9f{letter-spacing:0.887104pt;}
.lsc5{letter-spacing:0.924288pt;}
.lsc2{letter-spacing:1.094272pt;}
.ls9e{letter-spacing:1.200512pt;}
.ls23{letter-spacing:1.221760pt;}
.lsb9{letter-spacing:1.317376pt;}
.ls6d{letter-spacing:1.354560pt;}
.ls63{letter-spacing:1.450176pt;}
.lsb7{letter-spacing:1.588288pt;}
.ls3{letter-spacing:1.600000pt;}
.ls56{letter-spacing:1.859200pt;}
.ls8e{letter-spacing:1.885760pt;}
.ls8a{letter-spacing:1.896384pt;}
.ls61{letter-spacing:1.938880pt;}
.ls62{letter-spacing:1.949504pt;}
.lsb3{letter-spacing:1.970752pt;}
.ls3b{letter-spacing:1.976064pt;}
.ls1{letter-spacing:2.000000pt;}
.ls64{letter-spacing:2.098240pt;}
.ls6e{letter-spacing:2.177920pt;}
.ls29{letter-spacing:2.220416pt;}
.ls32{letter-spacing:2.496640pt;}
.lsa3{letter-spacing:2.549760pt;}
.ls69{letter-spacing:2.608192pt;}
.lsae{letter-spacing:2.847232pt;}
.ls8{letter-spacing:3.134080pt;}
.ls4f{letter-spacing:3.200000pt;}
.ls21{letter-spacing:3.203136pt;}
.lsac{letter-spacing:3.208448pt;}
.ls58{letter-spacing:3.219072pt;}
.ls88{letter-spacing:3.240320pt;}
.ls59{letter-spacing:3.277504pt;}
.ls57{letter-spacing:3.309376pt;}
.ls6f{letter-spacing:3.766400pt;}
.ls26{letter-spacing:3.771520pt;}
.ls6a{letter-spacing:3.781120pt;}
.lsa6{letter-spacing:3.808704pt;}
.ls89{letter-spacing:3.814016pt;}
.ls3c{letter-spacing:3.829952pt;}
.ls1d{letter-spacing:3.845888pt;}
.lsa{letter-spacing:3.856512pt;}
.ls76{letter-spacing:3.872448pt;}
.ls6{letter-spacing:3.920256pt;}
.ls75{letter-spacing:3.973376pt;}
.ls73{letter-spacing:4.005248pt;}
.ls1c{letter-spacing:4.021184pt;}
.ls24{letter-spacing:4.408960pt;}
.ls5{letter-spacing:4.462080pt;}
.lsa4{letter-spacing:4.493952pt;}
.ls2b{letter-spacing:4.515200pt;}
.lsa5{letter-spacing:4.626752pt;}
.ls6c{letter-spacing:5.046400pt;}
.lsa9{letter-spacing:5.072960pt;}
.ls5d{letter-spacing:5.099520pt;}
.ls2a{letter-spacing:5.126080pt;}
.lsa8{letter-spacing:5.184512pt;}
.lsad{letter-spacing:5.189824pt;}
.ls5c{letter-spacing:5.200448pt;}
.lsb8{letter-spacing:5.370432pt;}
.ls30{letter-spacing:5.731648pt;}
.lsb{letter-spacing:5.736960pt;}
.lsb2{letter-spacing:5.891008pt;}
.ls5b{letter-spacing:5.960064pt;}
.ls28{letter-spacing:6.002560pt;}
.ls27{letter-spacing:6.374400pt;}
.ls77{letter-spacing:6.422208pt;}
.ls1e{letter-spacing:6.464704pt;}
.ls31{letter-spacing:6.533760pt;}
.ls4c{letter-spacing:7.011840pt;}
.ls74{letter-spacing:7.171200pt;}
.ls36{letter-spacing:7.649280pt;}
.lsb0{letter-spacing:8.286720pt;}
.ls47{letter-spacing:8.318592pt;}
.ls44{letter-spacing:9.561600pt;}
.ls45{letter-spacing:9.651904pt;}
.ls8c{letter-spacing:10.257472pt;}
.ls3a{letter-spacing:10.836480pt;}
.ls5e{letter-spacing:12.833792pt;}
.lsaa{letter-spacing:23.792448pt;}
.lsc{letter-spacing:26.976000pt;}
.ls38{letter-spacing:30.065920pt;}
.ls49{letter-spacing:55.616640pt;}
.ls37{letter-spacing:56.891520pt;}
.lsb6{letter-spacing:57.528960pt;}
.ls93{letter-spacing:151.632640pt;}
.ls9a{letter-spacing:183.632640pt;}
.ls99{letter-spacing:199.632640pt;}
.ls91{letter-spacing:212.432640pt;}
.ls92{letter-spacing:214.992640pt;}
.ls94{letter-spacing:227.280000pt;}
.ls98{letter-spacing:287.952640pt;}
.ls95{letter-spacing:296.400000pt;}
.ls9c{letter-spacing:431.952640pt;}
.ls96{letter-spacing:447.952640pt;}
.ls90{letter-spacing:604.752640pt;}
.lsb4{letter-spacing:753.498240pt;}
.ls9b{letter-spacing:964.432640pt;}
.ls9d{letter-spacing:1182.800000pt;}
.ws3b{word-spacing:-53.120000pt;}
.ws3{word-spacing:-26.688000pt;}
.ws2{word-spacing:-26.496000pt;}
.ws4{word-spacing:-26.400000pt;}
.ws9f{word-spacing:-25.551147pt;}
.ws2d{word-spacing:-21.116160pt;}
.ws7e{word-spacing:-20.517120pt;}
.ws7{word-spacing:-15.298560pt;}
.ws46{word-spacing:-15.139200pt;}
.ws2e{word-spacing:-15.086080pt;}
.ws2f{word-spacing:-14.979840pt;}
.ws6d{word-spacing:-14.873600pt;}
.ws3a{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.714240pt;}
.ws6{word-spacing:-14.661120pt;}
.ws3c{word-spacing:-14.554880pt;}
.ws9{word-spacing:-14.501760pt;}
.ws90{word-spacing:-14.448640pt;}
.ws30{word-spacing:-14.023680pt;}
.ws8b{word-spacing:-13.864320pt;}
.ws85{word-spacing:-13.680000pt;}
.wsc{word-spacing:-13.536000pt;}
.ws86{word-spacing:-13.440000pt;}
.ws93{word-spacing:-13.439360pt;}
.ws9c{word-spacing:-13.424640pt;}
.ws94{word-spacing:-13.386240pt;}
.ws9b{word-spacing:-13.365760pt;}
.wsd{word-spacing:-13.344000pt;}
.ws87{word-spacing:-13.248000pt;}
.ws4e{word-spacing:-13.008000pt;}
.wsb{word-spacing:-12.912000pt;}
.ws84{word-spacing:-12.240000pt;}
.ws9e{word-spacing:-12.218027pt;}
.wsa2{word-spacing:-12.217600pt;}
.ws9d{word-spacing:-12.111360pt;}
.ws5{word-spacing:-11.920640pt;}
.wsa0{word-spacing:-11.845760pt;}
.ws71{word-spacing:-11.280000pt;}
.ws76{word-spacing:-10.944000pt;}
.ws74{word-spacing:-10.896000pt;}
.ws70{word-spacing:-10.800000pt;}
.ws75{word-spacing:-10.704000pt;}
.ws72{word-spacing:-10.656000pt;}
.ws73{word-spacing:-10.560000pt;}
.wsa{word-spacing:-10.319360pt;}
.wsa1{word-spacing:-10.305280pt;}
.ws77{word-spacing:-10.176000pt;}
.ws82{word-spacing:-10.170880pt;}
.ws81{word-spacing:-9.607680pt;}
.ws4f{word-spacing:-9.605120pt;}
.ws50{word-spacing:-9.433600pt;}
.ws1{word-spacing:-9.280000pt;}
.ws88{word-spacing:-8.896000pt;}
.ws34{word-spacing:-3.771520pt;}
.ws22{word-spacing:-3.134080pt;}
.ws63{word-spacing:-2.549760pt;}
.ws23{word-spacing:-2.496640pt;}
.ws5a{word-spacing:-2.401280pt;}
.ws3e{word-spacing:-2.337280pt;}
.wsb0{word-spacing:-1.888000pt;}
.ws26{word-spacing:-1.859200pt;}
.ws6f{word-spacing:-1.699840pt;}
.ws96{word-spacing:-1.328000pt;}
.ws8d{word-spacing:-1.274880pt;}
.ws39{word-spacing:-1.221760pt;}
.ws80{word-spacing:-1.062400pt;}
.ws8f{word-spacing:-0.796800pt;}
.ws17{word-spacing:-0.768000pt;}
.ws45{word-spacing:-0.720000pt;}
.ws53{word-spacing:-0.672000pt;}
.wsae{word-spacing:-0.634667pt;}
.ws1e{word-spacing:-0.584320pt;}
.ws25{word-spacing:-0.531200pt;}
.ws5b{word-spacing:-0.471680pt;}
.ws33{word-spacing:-0.424960pt;}
.ws12{word-spacing:-0.384000pt;}
.ws62{word-spacing:-0.371840pt;}
.ws7c{word-spacing:-0.336000pt;}
.ws28{word-spacing:-0.318720pt;}
.wse{word-spacing:-0.300160pt;}
.ws79{word-spacing:-0.288000pt;}
.ws98{word-spacing:-0.265600pt;}
.ws2b{word-spacing:-0.240000pt;}
.ws6e{word-spacing:-0.224640pt;}
.wsab{word-spacing:-0.213333pt;}
.ws60{word-spacing:-0.212480pt;}
.ws56{word-spacing:-0.192000pt;}
.wsb8{word-spacing:-0.176000pt;}
.ws54{word-spacing:-0.144000pt;}
.ws16{word-spacing:-0.128000pt;}
.wsb7{word-spacing:-0.112000pt;}
.wsa5{word-spacing:-0.106667pt;}
.ws8e{word-spacing:-0.106240pt;}
.ws2c{word-spacing:-0.096000pt;}
.ws3d{word-spacing:-0.074880pt;}
.wsa3{word-spacing:-0.058880pt;}
.wsaa{word-spacing:-0.058667pt;}
.wsac{word-spacing:-0.053333pt;}
.wsbb{word-spacing:-0.053120pt;}
.ws55{word-spacing:-0.048000pt;}
.wsba{word-spacing:-0.021333pt;}
.ws0{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.048000pt;}
.ws1f{word-spacing:0.053120pt;}
.wsb1{word-spacing:0.053333pt;}
.wsa4{word-spacing:0.058880pt;}
.ws18{word-spacing:0.064000pt;}
.ws78{word-spacing:0.096000pt;}
.ws1b{word-spacing:0.106240pt;}
.wsad{word-spacing:0.106667pt;}
.ws7b{word-spacing:0.144000pt;}
.ws64{word-spacing:0.171520pt;}
.ws10{word-spacing:0.192000pt;}
.ws43{word-spacing:0.212480pt;}
.wsb3{word-spacing:0.256000pt;}
.ws27{word-spacing:0.265600pt;}
.ws11{word-spacing:0.288000pt;}
.ws15{word-spacing:0.299520pt;}
.ws6a{word-spacing:0.343040pt;}
.ws95{word-spacing:0.353280pt;}
.ws41{word-spacing:0.371840pt;}
.wsf{word-spacing:0.384000pt;}
.ws42{word-spacing:0.424960pt;}
.wsb6{word-spacing:0.480000pt;}
.wsa7{word-spacing:0.522667pt;}
.ws69{word-spacing:0.528000pt;}
.wsaf{word-spacing:0.533333pt;}
.wsb9{word-spacing:0.538667pt;}
.wsb2{word-spacing:0.554667pt;}
.wsa6{word-spacing:0.586667pt;}
.ws14{word-spacing:0.599040pt;}
.ws68{word-spacing:0.624000pt;}
.wsa8{word-spacing:0.688000pt;}
.ws2a{word-spacing:0.690560pt;}
.ws92{word-spacing:0.743680pt;}
.ws7d{word-spacing:0.768000pt;}
.wsb5{word-spacing:0.773333pt;}
.wsb4{word-spacing:0.890667pt;}
.ws13{word-spacing:0.973440pt;}
.ws97{word-spacing:1.062400pt;}
.ws8a{word-spacing:1.152000pt;}
.wsa9{word-spacing:1.210667pt;}
.ws32{word-spacing:1.328000pt;}
.ws99{word-spacing:1.381120pt;}
.ws4c{word-spacing:1.487360pt;}
.ws67{word-spacing:1.912320pt;}
.ws20{word-spacing:1.965440pt;}
.ws66{word-spacing:2.124800pt;}
.ws91{word-spacing:2.602880pt;}
.ws21{word-spacing:2.656000pt;}
.ws6b{word-spacing:2.815360pt;}
.ws9a{word-spacing:3.240320pt;}
.ws1c{word-spacing:3.293440pt;}
.ws4d{word-spacing:3.452800pt;}
.ws58{word-spacing:3.744000pt;}
.ws1a{word-spacing:3.930880pt;}
.ws19{word-spacing:4.568320pt;}
.ws35{word-spacing:4.727680pt;}
.ws57{word-spacing:5.040000pt;}
.ws5c{word-spacing:5.152640pt;}
.ws31{word-spacing:5.205760pt;}
.ws36{word-spacing:5.365120pt;}
.ws29{word-spacing:5.843200pt;}
.ws52{word-spacing:6.002560pt;}
.ws7f{word-spacing:6.055680pt;}
.ws6c{word-spacing:6.427520pt;}
.ws24{word-spacing:6.480640pt;}
.ws49{word-spacing:6.640000pt;}
.ws3f{word-spacing:7.118080pt;}
.ws4a{word-spacing:7.224320pt;}
.ws4b{word-spacing:7.755520pt;}
.ws1d{word-spacing:8.392960pt;}
.ws5d{word-spacing:9.030400pt;}
.ws48{word-spacing:9.242880pt;}
.ws47{word-spacing:9.667840pt;}
.ws83{word-spacing:10.305280pt;}
.ws38{word-spacing:10.942720pt;}
.ws37{word-spacing:11.580160pt;}
.ws5e{word-spacing:12.217600pt;}
.ws59{word-spacing:13.492480pt;}
.ws5f{word-spacing:14.613504pt;}
.ws61{word-spacing:14.827904pt;}
.ws89{word-spacing:15.404800pt;}
.ws44{word-spacing:18.645120pt;}
.ws8c{word-spacing:23.744640pt;}
.ws40{word-spacing:30.172160pt;}
.ws51{word-spacing:33.180544pt;}
.ws65{word-spacing:57.965184pt;}
._f{margin-left:-29.248000pt;}
._2{margin-left:-10.208000pt;}
._1{margin-left:-9.280000pt;}
._3{margin-left:-8.352000pt;}
._1b{margin-left:-6.884480pt;}
._0{margin-left:-4.640000pt;}
._6{margin-left:-3.461333pt;}
._4{margin-left:-2.000000pt;}
._7{margin-left:-0.977664pt;}
._8{width:0.988800pt;}
._5{width:1.920000pt;}
._c{width:3.535424pt;}
._9{width:4.556160pt;}
._d{width:5.577664pt;}
._a{width:6.481280pt;}
._10{width:7.837440pt;}
._11{width:8.867968pt;}
._e{width:10.840960pt;}
._14{width:12.291200pt;}
._13{width:23.838720pt;}
._12{width:32.838528pt;}
._16{width:33.958400pt;}
._15{width:43.692160pt;}
._19{width:48.623360pt;}
._18{width:57.623168pt;}
._1a{width:134.440320pt;}
._1c{width:211.267328pt;}
._1f{width:229.425536pt;}
._1e{width:230.636672pt;}
._17{width:251.691840pt;}
._20{width:293.793664pt;}
._1d{width:295.680000pt;}
._b{width:753.241600pt;}
.fs10{font-size:32.000000pt;}
.fsf{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs11{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.fs6{font-size:149.333333pt;}
.fs5{font-size:232.000000pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:2.234000pt;}
.y19d{bottom:2.560000pt;}
.y1fe{bottom:4.160000pt;}
.y1fa{bottom:4.320000pt;}
.y19f{bottom:8.800000pt;}
.y1b0{bottom:16.320000pt;}
.y1ae{bottom:16.480000pt;}
.y2c{bottom:21.283520pt;}
.y1a3{bottom:30.079867pt;}
.y1a6{bottom:30.080000pt;}
.y6{bottom:31.933340pt;}
.y2b{bottom:33.440000pt;}
.y5{bottom:59.133337pt;}
.y190{bottom:80.072000pt;}
.y1f2{bottom:82.232000pt;}
.y8c{bottom:82.236000pt;}
.y15a{bottom:82.240000pt;}
.y4{bottom:86.333337pt;}
.yff{bottom:86.706560pt;}
.y4a{bottom:88.000000pt;}
.y1d0{bottom:90.456960pt;}
.y23c{bottom:90.627840pt;}
.y1c3{bottom:95.200000pt;}
.y1f1{bottom:95.996000pt;}
.y159{bottom:96.000000pt;}
.ydc{bottom:100.640000pt;}
.y26c{bottom:101.280000pt;}
.y18f{bottom:101.505920pt;}
.y8b{bottom:101.760000pt;}
.y216{bottom:107.267840pt;}
.yfe{bottom:107.981120pt;}
.y49{bottom:108.800000pt;}
.y158{bottom:109.760000pt;}
.y1cf{bottom:111.890880pt;}
.y23b{bottom:111.902400pt;}
.y195{bottom:112.640000pt;}
.y8a{bottom:114.560000pt;}
.y1c2{bottom:114.844000pt;}
.y18b{bottom:117.440000pt;}
.y26b{bottom:118.720000pt;}
.y29d{bottom:121.760000pt;}
.y18e{bottom:122.780480pt;}
.y22{bottom:123.790666pt;}
.y215{bottom:128.542400pt;}
.y1c1{bottom:128.608000pt;}
.yfd{bottom:129.255680pt;}
.y157{bottom:129.440000pt;}
.y48{bottom:129.760000pt;}
.y1ce{bottom:133.165440pt;}
.y23a{bottom:133.336320pt;}
.y26a{bottom:136.160000pt;}
.y29c{bottom:136.484000pt;}
.y18a{bottom:138.720000pt;}
.yb5{bottom:138.945920pt;}
.y1f0{bottom:142.080000pt;}
.y47{bottom:142.400000pt;}
.y89{bottom:143.981760pt;}
.y18d{bottom:144.055040pt;}
.y156{bottom:144.480000pt;}
.yc2{bottom:144.816960pt;}
.y214{bottom:149.976320pt;}
.y1c0{bottom:150.364000pt;}
.yfc{bottom:150.689600pt;}
.y29b{bottom:151.040000pt;}
.y126{bottom:152.800000pt;}
.y269{bottom:153.440000pt;}
.y1cd{bottom:154.440000pt;}
.y239{bottom:154.610880pt;}
.y155{bottom:158.240000pt;}
.y189{bottom:160.000000pt;}
.ydb{bottom:160.056960pt;}
.yb4{bottom:160.220480pt;}
.y1bf{bottom:164.284000pt;}
.y88{bottom:165.415680pt;}
.y18c{bottom:165.488960pt;}
.y29a{bottom:165.760000pt;}
.yc1{bottom:166.250880pt;}
.y268{bottom:170.720000pt;}
.y213{bottom:171.250880pt;}
.yfb{bottom:171.964160pt;}
.y154{bottom:172.160000pt;}
.y125{bottom:174.240000pt;}
.y19{bottom:175.052000pt;}
.y1cc{bottom:175.873920pt;}
.y238{bottom:175.885440pt;}
.y1be{bottom:178.048000pt;}
.y299{bottom:180.484000pt;}
.y188{bottom:181.440000pt;}
.yda{bottom:181.490880pt;}
.y1ef{bottom:181.547200pt;}
.yb3{bottom:181.654400pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y87{bottom:186.690240pt;}
.y70{bottom:186.763520pt;}
.yc0{bottom:187.525440pt;}
.y267{bottom:188.160000pt;}
.y153{bottom:191.680000pt;}
.y1bd{bottom:191.812000pt;}
.y212{bottom:192.525440pt;}
.yfa{bottom:193.238720pt;}
.y298{bottom:195.040000pt;}
.y124{bottom:195.520000pt;}
.y1cb{bottom:197.148480pt;}
.y237{bottom:197.319360pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y187{bottom:202.720000pt;}
.yd9{bottom:202.765440pt;}
.y1ee{bottom:202.821760pt;}
.yb2{bottom:202.928960pt;}
.y152{bottom:204.320000pt;}
.y266{bottom:205.440000pt;}
.y1bc{bottom:205.576000pt;}
.y86{bottom:207.964800pt;}
.y6f{bottom:208.038080pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.ybf{bottom:208.800000pt;}
.y211{bottom:213.959360pt;}
.yf9{bottom:214.672640pt;}
.y123{bottom:216.800000pt;}
.y10c{bottom:217.193333pt;}
.ycf{bottom:217.315067pt;}
.y1ca{bottom:218.423040pt;}
.y236{bottom:218.593920pt;}
.y1bb{bottom:219.340000pt;}
.y265{bottom:222.720000pt;}
.y186{bottom:224.000000pt;}
.yd8{bottom:224.040000pt;}
.y1ed{bottom:224.096320pt;}
.yb1{bottom:224.203520pt;}
.y297{bottom:226.073280pt;}
.ybe{bottom:228.640000pt;}
.y85{bottom:229.398720pt;}
.y6e{bottom:229.472000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y151{bottom:234.240000pt;}
.y210{bottom:235.233920pt;}
.y165{bottom:235.570400pt;}
.yf8{bottom:235.947200pt;}
.y122{bottom:238.240000pt;}
.y1c9{bottom:239.856960pt;}
.y235{bottom:239.868480pt;}
.y264{bottom:240.160000pt;}
.y1ba{bottom:241.264000pt;}
.y296{bottom:242.075733pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.ybd{bottom:242.720000pt;}
.y185{bottom:245.440000pt;}
.yd7{bottom:245.473920pt;}
.y1ec{bottom:245.530240pt;}
.yb0{bottom:245.637440pt;}
.y84{bottom:250.673280pt;}
.y6d{bottom:250.746560pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1b9{bottom:255.028000pt;}
.y150{bottom:255.520000pt;}
.y20f{bottom:256.508480pt;}
.yf7{bottom:257.221760pt;}
.y263{bottom:257.440000pt;}
.ybc{bottom:257.752000pt;}
.y121{bottom:259.520000pt;}
.y1c8{bottom:261.131520pt;}
.y234{bottom:261.302400pt;}
.y23d{bottom:266.580000pt;}
.y184{bottom:266.720000pt;}
.yd6{bottom:266.748480pt;}
.y1eb{bottom:266.804800pt;}
.yaf{bottom:266.912000pt;}
.y1b8{bottom:268.792000pt;}
.ybb{bottom:271.516000pt;}
.y83{bottom:271.947840pt;}
.y6c{bottom:272.021120pt;}
.y262{bottom:274.720000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y133{bottom:276.907867pt;}
.y14f{bottom:276.960000pt;}
.y20e{bottom:277.942400pt;}
.y295{bottom:278.237067pt;}
.yf6{bottom:278.655680pt;}
.y120{bottom:280.800000pt;}
.y1c7{bottom:282.406080pt;}
.y1b7{bottom:282.556000pt;}
.y233{bottom:282.576960pt;}
.yba{bottom:285.280000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y183{bottom:288.000000pt;}
.yd5{bottom:288.023040pt;}
.y1ea{bottom:288.079360pt;}
.yae{bottom:288.186560pt;}
.y46{bottom:291.936000pt;}
.y261{bottom:292.160000pt;}
.y82{bottom:293.381760pt;}
.y6b{bottom:293.455040pt;}
.y14e{bottom:298.240000pt;}
.y20d{bottom:299.216960pt;}
.yb9{bottom:299.360000pt;}
.yf5{bottom:299.930240pt;}
.y11f{bottom:302.240000pt;}
.y1c6{bottom:303.840000pt;}
.y232{bottom:303.851520pt;}
.y1b6{bottom:304.480000pt;}
.y182{bottom:309.440000pt;}
.y10{bottom:309.452000pt;}
.yd4{bottom:309.456960pt;}
.y1e9{bottom:309.513280pt;}
.yad{bottom:309.620480pt;}
.yce{bottom:311.840000pt;}
.y45{bottom:311.935680pt;}
.y294{bottom:312.637333pt;}
.y81{bottom:314.656320pt;}
.y6a{bottom:314.729600pt;}
.yd1{bottom:316.148107pt;}
.y1b5{bottom:316.320000pt;}
.y14d{bottom:319.520000pt;}
.y20c{bottom:320.491520pt;}
.yf4{bottom:321.204800pt;}
.y11e{bottom:323.520000pt;}
.y231{bottom:325.285440pt;}
.y260{bottom:326.720000pt;}
.y293{bottom:328.640000pt;}
.y181{bottom:330.720000pt;}
.yd3{bottom:330.731520pt;}
.y1e8{bottom:330.787840pt;}
.yac{bottom:330.895040pt;}
.yc3{bottom:332.651733pt;}
.y44{bottom:333.210240pt;}
.y80{bottom:335.930880pt;}
.y69{bottom:336.004160pt;}
.yd0{bottom:337.566667pt;}
.y14c{bottom:340.960000pt;}
.y1c5{bottom:340.965600pt;}
.y20b{bottom:341.925440pt;}
.y25f{bottom:342.080000pt;}
.yf3{bottom:342.638720pt;}
.yf{bottom:343.809333pt;}
.y28e{bottom:344.019840pt;}
.y1b4{bottom:344.480000pt;}
.y11d{bottom:344.800000pt;}
.y230{bottom:346.560000pt;}
.yc4{bottom:350.511253pt;}
.y180{bottom:352.000000pt;}
.yd2{bottom:352.006080pt;}
.y1e7{bottom:352.062400pt;}
.yab{bottom:352.169600pt;}
.y43{bottom:354.484800pt;}
.y7f{bottom:357.364800pt;}
.y68{bottom:357.438080pt;}
.y25e{bottom:359.360000pt;}
.y14b{bottom:362.240000pt;}
.y1c4{bottom:362.400000pt;}
.ye{bottom:362.706666pt;}
.y20a{bottom:363.200000pt;}
.yf2{bottom:363.913280pt;}
.y292{bottom:365.590667pt;}
.yc5{bottom:368.370773pt;}
.y28d{bottom:372.014080pt;}
.y1b3{bottom:372.640000pt;}
.y17f{bottom:373.440000pt;}
.y1e6{bottom:373.496320pt;}
.yaa{bottom:373.603520pt;}
.y42{bottom:375.918720pt;}
.y25d{bottom:376.800000pt;}
.y7e{bottom:378.639360pt;}
.y67{bottom:378.712640pt;}
.y291{bottom:381.593333pt;}
.y11c{bottom:381.920000pt;}
.y209{bottom:382.876000pt;}
.y14a{bottom:383.520000pt;}
.y22f{bottom:383.680000pt;}
.yf1{bottom:385.187840pt;}
.yc6{bottom:386.230293pt;}
.y28c{bottom:386.728320pt;}
.y25c{bottom:394.080000pt;}
.y17e{bottom:394.720000pt;}
.y1e5{bottom:394.770880pt;}
.ya9{bottom:394.878080pt;}
.y208{bottom:396.640000pt;}
.y41{bottom:397.193280pt;}
.y290{bottom:397.596000pt;}
.y7d{bottom:399.913920pt;}
.y66{bottom:399.987200pt;}
.y1b2{bottom:400.960000pt;}
.yc7{bottom:404.089813pt;}
.y149{bottom:404.960000pt;}
.yf0{bottom:406.621760pt;}
.y25b{bottom:411.360000pt;}
.y28b{bottom:414.722560pt;}
.y17d{bottom:416.000000pt;}
.y1e4{bottom:416.045440pt;}
.ya8{bottom:416.152640pt;}
.y40{bottom:418.467840pt;}
.y7c{bottom:421.347840pt;}
.y65{bottom:421.421120pt;}
.yc8{bottom:421.949333pt;}
.y207{bottom:424.160000pt;}
.y148{bottom:426.240000pt;}
.yef{bottom:427.896320pt;}
.y25a{bottom:428.800000pt;}
.y1b1{bottom:429.120000pt;}
.y28a{bottom:429.436800pt;}
.y11b{bottom:435.719680pt;}
.y17c{bottom:437.440000pt;}
.y1e3{bottom:437.479360pt;}
.y22e{bottom:437.575680pt;}
.ya7{bottom:437.586560pt;}
.yc9{bottom:439.808853pt;}
.y3f{bottom:439.901760pt;}
.y28f{bottom:440.480000pt;}
.y7b{bottom:442.622400pt;}
.y64{bottom:442.695680pt;}
.y289{bottom:443.991680pt;}
.y206{bottom:445.440000pt;}
.y259{bottom:446.080000pt;}
.y147{bottom:446.240000pt;}
.yd{bottom:446.990669pt;}
.yee{bottom:449.170880pt;}
.y11a{bottom:456.994240pt;}
.y1af{bottom:457.280000pt;}
.yca{bottom:457.668373pt;}
.y17b{bottom:458.720000pt;}
.y1e2{bottom:458.753920pt;}
.y22d{bottom:458.850240pt;}
.ya6{bottom:458.861120pt;}
.y3e{bottom:461.176320pt;}
.y146{bottom:461.600000pt;}
.yc{bottom:462.990669pt;}
.y258{bottom:463.360000pt;}
.y7a{bottom:463.896960pt;}
.y63{bottom:463.970240pt;}
.y205{bottom:464.160000pt;}
.yed{bottom:470.604800pt;}
.y288{bottom:471.985920pt;}
.ycb{bottom:475.527893pt;}
.y145{bottom:476.960000pt;}
.y119{bottom:478.268800pt;}
.yb{bottom:478.990666pt;}
.y17a{bottom:480.000000pt;}
.y1e1{bottom:480.028480pt;}
.y22c{bottom:480.124800pt;}
.ya5{bottom:480.135680pt;}
.y257{bottom:480.800000pt;}
.y3d{bottom:482.450880pt;}
.y79{bottom:485.330880pt;}
.y62{bottom:485.404160pt;}
.y1ad{bottom:485.440000pt;}
.y287{bottom:486.700160pt;}
.yec{bottom:491.879360pt;}
.y144{bottom:492.000000pt;}
.ycc{bottom:493.387413pt;}
.ya{bottom:494.990666pt;}
.y256{bottom:498.080000pt;}
.y118{bottom:499.702720pt;}
.y286{bottom:501.414400pt;}
.y179{bottom:501.440000pt;}
.y1e0{bottom:501.462400pt;}
.y22b{bottom:501.558720pt;}
.ya4{bottom:501.569600pt;}
.y3c{bottom:503.884800pt;}
.y143{bottom:505.760000pt;}
.y78{bottom:506.605440pt;}
.y61{bottom:506.678720pt;}
.ycd{bottom:511.246933pt;}
.yeb{bottom:513.153920pt;}
.y1ac{bottom:513.760000pt;}
.y204{bottom:514.400000pt;}
.y255{bottom:515.360000pt;}
.y285{bottom:515.969280pt;}
.y142{bottom:519.840000pt;}
.y117{bottom:520.977280pt;}
.y178{bottom:522.720000pt;}
.y1df{bottom:522.736960pt;}
.y22a{bottom:522.833280pt;}
.ya3{bottom:522.844160pt;}
.y3b{bottom:525.159360pt;}
.y77{bottom:527.880000pt;}
.y60{bottom:527.953280pt;}
.y164{bottom:532.320000pt;}
.y254{bottom:532.800000pt;}
.y1ab{bottom:534.400000pt;}
.yea{bottom:534.587840pt;}
.y167{bottom:541.414667pt;}
.y116{bottom:542.251840pt;}
.y284{bottom:543.963520pt;}
.y177{bottom:544.000000pt;}
.y1de{bottom:544.011520pt;}
.y229{bottom:544.107840pt;}
.ya2{bottom:544.118720pt;}
.y3a{bottom:546.433920pt;}
.y76{bottom:549.313920pt;}
.y5f{bottom:549.387200pt;}
.y203{bottom:549.760000pt;}
.y253{bottom:550.080000pt;}
.yb8{bottom:554.232000pt;}
.y1a9{bottom:555.040000pt;}
.ye9{bottom:555.862400pt;}
.y168{bottom:558.240000pt;}
.y283{bottom:558.677760pt;}
.y115{bottom:563.685760pt;}
.y176{bottom:565.440000pt;}
.y1dd{bottom:565.445440pt;}
.y228{bottom:565.541760pt;}
.ya1{bottom:565.552640pt;}
.y252{bottom:567.360000pt;}
.y39{bottom:567.867840pt;}
.yb7{bottom:567.996000pt;}
.y75{bottom:570.588480pt;}
.y5e{bottom:570.661760pt;}
.y1aa{bottom:571.360000pt;}
.y9{bottom:573.786667pt;}
.y166{bottom:575.838933pt;}
.ye8{bottom:577.136960pt;}
.yb6{bottom:581.760000pt;}
.y251{bottom:584.800000pt;}
.y114{bottom:584.960320pt;}
.y202{bottom:585.120000pt;}
.y282{bottom:586.672000pt;}
.y175{bottom:586.720000pt;}
.y1dc{bottom:586.725440pt;}
.y227{bottom:586.816320pt;}
.ya0{bottom:586.827200pt;}
.y15b{bottom:588.787867pt;}
.y38{bottom:589.142400pt;}
.y74{bottom:591.863040pt;}
.y5d{bottom:591.936320pt;}
.y8{bottom:592.685334pt;}
.y29{bottom:596.031467pt;}
.y1a8{bottom:596.960000pt;}
.ye7{bottom:598.570880pt;}
.y281{bottom:601.386240pt;}
.y250{bottom:602.080000pt;}
.y113{bottom:604.960000pt;}
.y174{bottom:608.000000pt;}
.y1db{bottom:608.062400pt;}
.y226{bottom:608.090880pt;}
.y9f{bottom:608.101760pt;}
.y15c{bottom:608.684187pt;}
.y37{bottom:610.416960pt;}
.y73{bottom:613.296960pt;}
.y5c{bottom:613.370240pt;}
.y1a5{bottom:617.760000pt;}
.y24f{bottom:619.360000pt;}
.ye6{bottom:619.845440pt;}
.y112{bottom:619.996000pt;}
.y201{bottom:620.480000pt;}
.y28{bottom:628.031467pt;}
.y15d{bottom:628.580507pt;}
.y280{bottom:629.221120pt;}
.y173{bottom:629.440000pt;}
.y1da{bottom:629.496320pt;}
.y225{bottom:629.524800pt;}
.y9e{bottom:629.535680pt;}
.y36{bottom:631.850880pt;}
.y111{bottom:633.760000pt;}
.y1a7{bottom:634.080000pt;}
.y72{bottom:634.571520pt;}
.y5b{bottom:634.644800pt;}
.y24e{bottom:634.720000pt;}
.ye5{bottom:641.120000pt;}
.y27f{bottom:643.935360pt;}
.y7{bottom:645.598667pt;}
.y110{bottom:647.680000pt;}
.y15e{bottom:648.476827pt;}
.y24d{bottom:650.080000pt;}
.y172{bottom:650.720000pt;}
.y1d9{bottom:650.770880pt;}
.y224{bottom:650.799360pt;}
.y9d{bottom:650.810240pt;}
.y27{bottom:652.031467pt;}
.y35{bottom:653.125440pt;}
.y200{bottom:655.840000pt;}
.y71{bottom:655.846080pt;}
.y5a{bottom:655.919360pt;}
.y1a2{bottom:659.680000pt;}
.y10f{bottom:660.800000pt;}
.ye4{bottom:660.948000pt;}
.y24c{bottom:667.360000pt;}
.y15f{bottom:668.373147pt;}
.y3{bottom:668.977329pt;}
.y132{bottom:669.600000pt;}
.y27e{bottom:671.929600pt;}
.y171{bottom:672.000000pt;}
.y1d8{bottom:672.045440pt;}
.y223{bottom:672.073920pt;}
.y9c{bottom:672.084800pt;}
.y34{bottom:674.400000pt;}
.ye3{bottom:674.712000pt;}
.y1a4{bottom:676.000000pt;}
.y136{bottom:677.239600pt;}
.y59{bottom:677.353280pt;}
.y1fd{bottom:680.640000pt;}
.y24b{bottom:684.800000pt;}
.y27d{bottom:686.643840pt;}
.y160{bottom:688.269467pt;}
.ye2{bottom:688.476000pt;}
.y170{bottom:693.440000pt;}
.y1d7{bottom:693.479360pt;}
.y222{bottom:693.507840pt;}
.y9b{bottom:693.518720pt;}
.y1ff{bottom:695.520000pt;}
.y58{bottom:698.627840pt;}
.y26{bottom:700.020800pt;}
.y135{bottom:700.168587pt;}
.y27c{bottom:701.358080pt;}
.y1a1{bottom:701.600000pt;}
.y24a{bottom:702.080000pt;}
.ye1{bottom:702.240000pt;}
.y1fc{bottom:706.080000pt;}
.y161{bottom:708.165787pt;}
.y33{bottom:711.040000pt;}
.y16f{bottom:714.720000pt;}
.y1d6{bottom:714.753920pt;}
.y221{bottom:714.782400pt;}
.y9a{bottom:714.793280pt;}
.y27b{bottom:715.912960pt;}
.ye0{bottom:716.320000pt;}
.y249{bottom:719.360000pt;}
.y57{bottom:719.902400pt;}
.y1a0{bottom:722.240000pt;}
.y134{bottom:722.401867pt;}
.y162{bottom:728.062107pt;}
.y10b{bottom:728.960000pt;}
.y10e{bottom:733.983093pt;}
.y1fb{bottom:735.040000pt;}
.y127{bottom:735.350800pt;}
.y16e{bottom:736.000000pt;}
.y1d5{bottom:736.028480pt;}
.y220{bottom:736.056960pt;}
.y99{bottom:736.067840pt;}
.y248{bottom:736.800000pt;}
.y56{bottom:741.336320pt;}
.y25{bottom:742.692800pt;}
.y19e{bottom:743.040000pt;}
.y27a{bottom:743.907200pt;}
.y163{bottom:747.958427pt;}
.y10d{bottom:753.354133pt;}
.y247{bottom:754.080000pt;}
.y128{bottom:754.550320pt;}
.y16d{bottom:757.440000pt;}
.y1d4{bottom:757.462400pt;}
.y21f{bottom:757.490880pt;}
.y98{bottom:757.501760pt;}
.y279{bottom:758.621440pt;}
.y1f9{bottom:759.840000pt;}
.y55{bottom:762.610880pt;}
.y194{bottom:763.680000pt;}
.y1f8{bottom:764.160000pt;}
.y100{bottom:766.303067pt;}
.y246{bottom:771.360000pt;}
.y129{bottom:773.749840pt;}
.y16c{bottom:778.720000pt;}
.y1d3{bottom:778.736960pt;}
.y21e{bottom:778.765440pt;}
.y97{bottom:778.776320pt;}
.y19c{bottom:779.976000pt;}
.y2{bottom:781.661334pt;}
.y101{bottom:782.651067pt;}
.y141{bottom:783.040000pt;}
.y54{bottom:783.885440pt;}
.y24{bottom:785.364800pt;}
.y1f7{bottom:785.440000pt;}
.y278{bottom:786.615680pt;}
.y245{bottom:788.800000pt;}
.y12a{bottom:792.949360pt;}
.y19b{bottom:793.740000pt;}
.y140{bottom:798.240000pt;}
.y102{bottom:798.999067pt;}
.y16b{bottom:800.000000pt;}
.y1d2{bottom:800.011520pt;}
.y21d{bottom:800.040000pt;}
.y96{bottom:800.050880pt;}
.y277{bottom:801.329920pt;}
.y53{bottom:805.319360pt;}
.y244{bottom:806.080000pt;}
.y19a{bottom:807.504000pt;}
.y13f{bottom:812.000000pt;}
.y12b{bottom:812.148880pt;}
.y1f6{bottom:814.400000pt;}
.y103{bottom:815.347067pt;}
.y199{bottom:821.268000pt;}
.y16a{bottom:821.440000pt;}
.y1d1{bottom:821.445440pt;}
.y21c{bottom:821.473920pt;}
.y95{bottom:821.484800pt;}
.y243{bottom:823.360000pt;}
.y13e{bottom:826.080000pt;}
.y52{bottom:826.593920pt;}
.y32{bottom:828.320000pt;}
.y276{bottom:829.164800pt;}
.y12c{bottom:831.348400pt;}
.y104{bottom:831.695067pt;}
.y198{bottom:835.032000pt;}
.y242{bottom:840.800000pt;}
.y13d{bottom:842.720000pt;}
.y21b{bottom:842.748480pt;}
.y94{bottom:842.759360pt;}
.y275{bottom:843.879040pt;}
.y51{bottom:847.868480pt;}
.y105{bottom:848.043067pt;}
.y197{bottom:848.796000pt;}
.y12d{bottom:850.547920pt;}
.y1f5{bottom:855.200000pt;}
.y274{bottom:858.593280pt;}
.y1{bottom:859.312000pt;}
.y241{bottom:859.360000pt;}
.y196{bottom:862.560000pt;}
.y13c{bottom:864.000000pt;}
.y21a{bottom:864.023040pt;}
.y93{bottom:864.033920pt;}
.y2a{bottom:864.189067pt;}
.y106{bottom:864.391067pt;}
.y31{bottom:866.245600pt;}
.y50{bottom:869.302400pt;}
.y12e{bottom:869.747440pt;}
.y273{bottom:873.307520pt;}
.y240{bottom:880.640000pt;}
.y107{bottom:880.739067pt;}
.y13b{bottom:885.440000pt;}
.y219{bottom:885.456960pt;}
.y92{bottom:885.467840pt;}
.y30{bottom:887.680000pt;}
.y12f{bottom:888.946960pt;}
.y4f{bottom:890.576960pt;}
.y108{bottom:897.087067pt;}
.y272{bottom:901.142400pt;}
.y23f{bottom:902.080000pt;}
.y1f4{bottom:904.156000pt;}
.y13a{bottom:906.720000pt;}
.y218{bottom:906.731520pt;}
.y91{bottom:906.742400pt;}
.y193{bottom:906.876000pt;}
.y130{bottom:908.146480pt;}
.y23{bottom:909.354133pt;}
.y4e{bottom:911.851520pt;}
.y109{bottom:913.435067pt;}
.y271{bottom:915.856640pt;}
.y1f3{bottom:917.920000pt;}
.y192{bottom:920.640000pt;}
.y23e{bottom:923.520000pt;}
.y2f{bottom:926.232000pt;}
.y131{bottom:927.346000pt;}
.y139{bottom:928.000000pt;}
.y217{bottom:928.006080pt;}
.y90{bottom:928.016960pt;}
.y10a{bottom:929.783067pt;}
.y270{bottom:930.570880pt;}
.y4d{bottom:933.285440pt;}
.y26f{bottom:945.285120pt;}
.y138{bottom:949.440000pt;}
.y8f{bottom:949.450880pt;}
.y191{bottom:950.725760pt;}
.y4c{bottom:954.560000pt;}
.y2e{bottom:955.680000pt;}
.y26e{bottom:959.840000pt;}
.ydf{bottom:970.392000pt;}
.y137{bottom:970.720000pt;}
.y8e{bottom:970.725440pt;}
.yde{bottom:984.156000pt;}
.y2d{bottom:984.960000pt;}
.y4b{bottom:991.680000pt;}
.y26d{bottom:991.840000pt;}
.y8d{bottom:992.000000pt;}
.ydd{bottom:997.920000pt;}
.h21{height:16.960000pt;}
.h26{height:19.998667pt;}
.h24{height:20.000000pt;}
.h30{height:27.515625pt;}
.h29{height:27.520000pt;}
.h2a{height:27.521333pt;}
.h28{height:27.680000pt;}
.h7{height:28.560000pt;}
.hf{height:31.238750pt;}
.h15{height:31.918125pt;}
.h23{height:34.945312pt;}
.h25{height:34.968750pt;}
.h6{height:40.800000pt;}
.h18{height:41.273438pt;}
.h27{height:41.280000pt;}
.h1a{height:41.976562pt;}
.h2d{height:42.560000pt;}
.h2c{height:42.720000pt;}
.h3{height:42.840000pt;}
.hd{height:43.472000pt;}
.h2e{height:43.515625pt;}
.h14{height:45.675938pt;}
.h17{height:46.454062pt;}
.hc{height:47.168000pt;}
.h2{height:48.960000pt;}
.h38{height:51.216000pt;}
.h32{height:51.491250pt;}
.h1c{height:52.384045pt;}
.h19{height:52.677165pt;}
.h16{height:52.745005pt;}
.h2b{height:53.016365pt;}
.h1e{height:53.038125pt;}
.h13{height:55.968750pt;}
.h35{height:56.679040pt;}
.h36{height:56.679253pt;}
.h37{height:57.582080pt;}
.hb{height:58.400000pt;}
.h12{height:58.619063pt;}
.h34{height:62.824960pt;}
.h31{height:64.763437pt;}
.h11{height:65.483437pt;}
.h5{height:69.360000pt;}
.h2f{height:83.513437pt;}
.h10{height:83.953125pt;}
.h4{height:105.826671pt;}
.h22{height:123.840000pt;}
.ha{height:136.789333pt;}
.h9{height:212.512000pt;}
.h1d{height:226.720000pt;}
.h1b{height:226.878667pt;}
.h20{height:245.120000pt;}
.h1f{height:287.040000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h33{height:1124.000000pt;}
.wd{width:44.958667pt;}
.wc{width:53.760000pt;}
.we{width:56.478667pt;}
.wb{width:56.480000pt;}
.wf{width:62.720000pt;}
.w10{width:98.240000pt;}
.wa{width:136.160000pt;}
.w11{width:339.521333pt;}
.w2{width:566.928019pt;}
.w8{width:570.720000pt;}
.w9{width:570.880000pt;}
.w5{width:576.000000pt;}
.w6{width:580.000000pt;}
.w7{width:596.960000pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.w12{width:796.000000pt;}
.x0{left:0.000000pt;}
.x10{left:5.375467pt;}
.x14{left:7.260800pt;}
.x2f{left:9.920000pt;}
.x2d{left:12.480000pt;}
.x2c{left:15.360000pt;}
.x2e{left:18.080000pt;}
.x18{left:25.161467pt;}
.x5{left:69.318800pt;}
.x6{left:73.434800pt;}
.x17{left:88.960000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x38{left:104.000000pt;}
.x13{left:106.880000pt;}
.x12{left:111.227333pt;}
.x9{left:113.440000pt;}
.xe{left:115.422133pt;}
.xf{left:118.337973pt;}
.x1c{left:120.782720pt;}
.x19{left:122.222667pt;}
.x15{left:124.119067pt;}
.xb{left:128.619040pt;}
.x37{left:143.678560pt;}
.xc{left:152.639200pt;}
.x1d{left:153.612533pt;}
.x30{left:160.640000pt;}
.xd{left:176.636960pt;}
.x4{left:180.874667pt;}
.x1b{left:197.989733pt;}
.x39{left:205.605333pt;}
.x1e{left:207.781333pt;}
.x16{left:224.565467pt;}
.x11{left:230.649573pt;}
.x1a{left:232.745867pt;}
.x20{left:249.600000pt;}
.x21{left:256.800000pt;}
.xa{left:305.440000pt;}
.x22{left:313.120000pt;}
.x23{left:359.840000pt;}
.x1f{left:366.400000pt;}
.x7{left:368.800000pt;}
.x8{left:396.800640pt;}
.x3{left:404.408000pt;}
.x24{left:405.440000pt;}
.x25{left:412.320000pt;}
.x26{left:461.920000pt;}
.x31{left:467.840000pt;}
.x27{left:469.120000pt;}
.x32{left:488.480000pt;}
.x28{left:519.040000pt;}
.x29{left:525.920000pt;}
.x34{left:551.360000pt;}
.x33{left:555.360000pt;}
.x2a{left:581.760000pt;}
.x2b{left:588.960000pt;}
.x36{left:635.520000pt;}
.x35{left:656.160000pt;}
}




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