
    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_c62c55cb6b7a42bd4c84a8eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_2fb1fa132f60f3347282cdad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_a8470157792e7c8f72ef2d56.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_71d5e7b40626306595ca497d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_ac1b81eb3d922568dadabba0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_4d8a02edcc13e87d94fd62d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.719238;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_60bb91f92bd1940369b5fc4e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_fb738890acac0e57b3e1726e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.671556;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_81259f9df1bcb0937c9bd803.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970000;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_f0281c8848e0fda7d985b1a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_347d877850b9c0176751eeca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;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_5ff6a0689ccf1855526ac69f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;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_2fb1fa132f60f3347282cdad.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_a8470157792e7c8f72ef2d56.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;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_2a432e49a4f6aab0338e600e.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;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_ac0b689726b281a75d8c78d4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923500;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_1604706dd63fc01def34b037.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_89aa5c5575ae9b8b2cc3fa4d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.715000;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_5ff6a0689ccf1855526ac69f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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_2fb1fa132f60f3347282cdad.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a8470157792e7c8f72ef2d56.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2a432e49a4f6aab0338e600e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2fb1fa132f60f3347282cdad.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a8470157792e7c8f72ef2d56.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;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:ff19;src:url('chunks/assets/font_2a432e49a4f6aab0338e600e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958496;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:ff1a;src:url('chunks/assets/font_2fb1fa132f60f3347282cdad.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958496;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:ff1b;src:url('chunks/assets/font_a8470157792e7c8f72ef2d56.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.958496;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:ff1c;src:url('chunks/assets/font_2a432e49a4f6aab0338e600e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958496;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);}
.v3{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.v5{vertical-align:-10.818000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.252000px;}
.v1{vertical-align:20.400000px;}
.v6{vertical-align:22.512000px;}
.ls18{letter-spacing:-4.374000px;}
.ls8d{letter-spacing:-4.185000px;}
.ls6e{letter-spacing:-4.158000px;}
.ls52{letter-spacing:-4.074000px;}
.ls64{letter-spacing:-4.032000px;}
.ls81{letter-spacing:-3.690000px;}
.ls59{letter-spacing:-3.570000px;}
.ls53{letter-spacing:-3.276000px;}
.ls17{letter-spacing:-3.240000px;}
.ls89{letter-spacing:-1.755000px;}
.ls86{letter-spacing:-1.395000px;}
.ls87{letter-spacing:-1.350000px;}
.ls85{letter-spacing:-1.305000px;}
.ls54{letter-spacing:-1.026000px;}
.ls8b{letter-spacing:-0.945000px;}
.ls88{letter-spacing:-0.855000px;}
.ls49{letter-spacing:-0.810000px;}
.ls8a{letter-spacing:-0.765000px;}
.ls33{letter-spacing:-0.756000px;}
.ls4a{letter-spacing:-0.714000px;}
.ls6f{letter-spacing:-0.702000px;}
.ls1f{letter-spacing:-0.648000px;}
.ls71{letter-spacing:-0.600000px;}
.ls34{letter-spacing:-0.594000px;}
.ls4b{letter-spacing:-0.546000px;}
.ls5a{letter-spacing:-0.540000px;}
.ls4d{letter-spacing:-0.504000px;}
.ls44{letter-spacing:-0.486000px;}
.ls45{letter-spacing:-0.456300px;}
.ls7f{letter-spacing:-0.450000px;}
.ls35{letter-spacing:-0.432000px;}
.ls60{letter-spacing:-0.420000px;}
.ls1c{letter-spacing:-0.378000px;}
.ls58{letter-spacing:-0.336000px;}
.ls3f{letter-spacing:-0.324000px;}
.ls83{letter-spacing:-0.315000px;}
.ls4e{letter-spacing:-0.294000px;}
.ls72{letter-spacing:-0.280800px;}
.ls19{letter-spacing:-0.270000px;}
.ls66{letter-spacing:-0.252000px;}
.ls68{letter-spacing:-0.245700px;}
.ls38{letter-spacing:-0.216000px;}
.ls51{letter-spacing:-0.210000px;}
.ls40{letter-spacing:-0.180000px;}
.ls43{letter-spacing:-0.175500px;}
.ls4c{letter-spacing:-0.168000px;}
.ls36{letter-spacing:-0.162000px;}
.ls21{letter-spacing:-0.153000px;}
.ls67{letter-spacing:-0.140400px;}
.ls61{letter-spacing:-0.126000px;}
.ls39{letter-spacing:-0.108000px;}
.ls3e{letter-spacing:-0.105300px;}
.ls80{letter-spacing:-0.090000px;}
.ls3a{letter-spacing:-0.070200px;}
.ls1e{letter-spacing:-0.054000px;}
.ls7e{letter-spacing:-0.045000px;}
.ls16{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012300px;}
.ls2{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.013800px;}
.ls50{letter-spacing:0.021600px;}
.ls63{letter-spacing:0.035100px;}
.ls78{letter-spacing:0.045000px;}
.ls24{letter-spacing:0.046200px;}
.ls23{letter-spacing:0.054000px;}
.ls37{letter-spacing:0.070200px;}
.ls11{letter-spacing:0.070650px;}
.ls7{letter-spacing:0.100800px;}
.ls10{letter-spacing:0.102000px;}
.ls70{letter-spacing:0.105300px;}
.ls26{letter-spacing:0.108000px;}
.ls30{letter-spacing:0.113400px;}
.ls25{letter-spacing:0.117600px;}
.ls76{letter-spacing:0.135000px;}
.ls3d{letter-spacing:0.140400px;}
.ls1b{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.165000px;}
.ls6d{letter-spacing:0.175500px;}
.lsc{letter-spacing:0.186000px;}
.ls56{letter-spacing:0.192000px;}
.ls5b{letter-spacing:0.210600px;}
.ls3c{letter-spacing:0.216000px;}
.ls74{letter-spacing:0.225000px;}
.ls73{letter-spacing:0.240000px;}
.ls31{letter-spacing:0.245700px;}
.ls2f{letter-spacing:0.259200px;}
.lsa{letter-spacing:0.270000px;}
.ls5f{letter-spacing:0.280800px;}
.ls65{letter-spacing:0.294000px;}
.ls7a{letter-spacing:0.315000px;}
.ls5e{letter-spacing:0.315900px;}
.ls69{letter-spacing:0.321600px;}
.ls2e{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.337800px;}
.ls7c{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.368550px;}
.ls5{letter-spacing:0.378000px;}
.ls6a{letter-spacing:0.386100px;}
.ls75{letter-spacing:0.405000px;}
.ls6c{letter-spacing:0.420000px;}
.ls5d{letter-spacing:0.421200px;}
.ls27{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.486000px;}
.ls77{letter-spacing:0.495000px;}
.ls13{letter-spacing:0.512250px;}
.ls9{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.571650px;}
.lsd{letter-spacing:0.584850px;}
.ls6{letter-spacing:0.594000px;}
.ls2d{letter-spacing:0.648000px;}
.ls28{letter-spacing:0.658800px;}
.ls82{letter-spacing:0.675000px;}
.ls2c{letter-spacing:0.702000px;}
.ls7b{letter-spacing:0.738000px;}
.ls1a{letter-spacing:0.756000px;}
.ls57{letter-spacing:0.772200px;}
.ls2a{letter-spacing:0.780000px;}
.ls29{letter-spacing:0.804600px;}
.ls42{letter-spacing:0.810000px;}
.ls12{letter-spacing:0.816000px;}
.ls47{letter-spacing:0.864000px;}
.ls41{letter-spacing:0.900000px;}
.lse{letter-spacing:0.918000px;}
.ls79{letter-spacing:0.945000px;}
.ls15{letter-spacing:0.960000px;}
.ls20{letter-spacing:0.972000px;}
.ls84{letter-spacing:1.125000px;}
.ls48{letter-spacing:1.134000px;}
.ls2b{letter-spacing:1.182600px;}
.ls55{letter-spacing:1.188000px;}
.ls8e{letter-spacing:1.215000px;}
.ls4f{letter-spacing:1.260000px;}
.ls3b{letter-spacing:1.296000px;}
.ls14{letter-spacing:1.326000px;}
.ls8c{letter-spacing:1.395000px;}
.ls46{letter-spacing:1.420200px;}
.ls5c{letter-spacing:1.555200px;}
.ls0{letter-spacing:2.592000px;}
.ls22{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls7d{letter-spacing:4.620000px;}
.ls62{letter-spacing:6.120000px;}
.ls32{letter-spacing:14.742000px;}
.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;}
}
.ws2{word-spacing:-15.067500px;}
.ws2e{word-spacing:-13.596000px;}
.ws30{word-spacing:-13.260000px;}
.ws6{word-spacing:-12.798000px;}
.ws8a{word-spacing:-12.690000px;}
.ws89{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.360000px;}
.ws48{word-spacing:-12.312000px;}
.ws38{word-spacing:-12.258000px;}
.ws2f{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws2d{word-spacing:-12.042000px;}
.wsc4{word-spacing:-11.988000px;}
.ws28{word-spacing:-11.934000px;}
.wsb5{word-spacing:-11.880000px;}
.wsb0{word-spacing:-11.826000px;}
.wsb7{word-spacing:-11.772000px;}
.ws5{word-spacing:-11.610000px;}
.ws26{word-spacing:-11.502000px;}
.wsc3{word-spacing:-11.340000px;}
.ws77{word-spacing:-11.232000px;}
.wsc6{word-spacing:-10.080000px;}
.wsdc{word-spacing:-9.990000px;}
.wsc5{word-spacing:-9.855000px;}
.wsdd{word-spacing:-9.540000px;}
.wsa{word-spacing:-9.360000px;}
.ws4{word-spacing:-9.120000px;}
.wsda{word-spacing:-9.000000px;}
.ws91{word-spacing:-8.988000px;}
.wsdb{word-spacing:-8.955000px;}
.ws8e{word-spacing:-8.904000px;}
.ws79{word-spacing:-8.739900px;}
.ws54{word-spacing:-8.568000px;}
.ws53{word-spacing:-8.400000px;}
.ws87{word-spacing:-8.388900px;}
.wsb2{word-spacing:-8.353800px;}
.wsb4{word-spacing:-8.336250px;}
.ws88{word-spacing:-8.283600px;}
.ws8b{word-spacing:-8.248500px;}
.ws31{word-spacing:-8.213400px;}
.ws86{word-spacing:-8.178300px;}
.wsb3{word-spacing:-8.143200px;}
.ws2b{word-spacing:-8.108100px;}
.wsb6{word-spacing:-8.073000px;}
.ws29{word-spacing:-8.037900px;}
.ws9a{word-spacing:-8.002800px;}
.ws27{word-spacing:-7.967700px;}
.ws2a{word-spacing:-7.897500px;}
.ws2c{word-spacing:-7.862400px;}
.wsae{word-spacing:-7.827300px;}
.ws32{word-spacing:-7.792200px;}
.wsaf{word-spacing:-7.722000px;}
.wsb8{word-spacing:-7.686900px;}
.ws33{word-spacing:-7.511400px;}
.wsab{word-spacing:-6.120000px;}
.wsc1{word-spacing:-5.508000px;}
.wsc{word-spacing:-5.340000px;}
.wsc7{word-spacing:-4.620000px;}
.wse8{word-spacing:-3.960000px;}
.ws9{word-spacing:-3.744000px;}
.ws8{word-spacing:-3.276000px;}
.ws25{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.wsb{word-spacing:-2.400000px;}
.wsc0{word-spacing:-1.944000px;}
.ws37{word-spacing:-1.890000px;}
.wsc8{word-spacing:-1.860000px;}
.ws1c{word-spacing:-1.836000px;}
.wsbe{word-spacing:-1.728000px;}
.ws4c{word-spacing:-1.674000px;}
.wsb1{word-spacing:-1.620000px;}
.wsdf{word-spacing:-1.575000px;}
.ws94{word-spacing:-1.566000px;}
.wscc{word-spacing:-1.530000px;}
.ws50{word-spacing:-1.512000px;}
.wsbd{word-spacing:-1.458000px;}
.ws42{word-spacing:-1.404000px;}
.wse9{word-spacing:-1.386000px;}
.wsac{word-spacing:-1.350000px;}
.ws23{word-spacing:-1.326000px;}
.ws34{word-spacing:-1.296000px;}
.ws22{word-spacing:-1.275000px;}
.wsd{word-spacing:-1.260000px;}
.ws19{word-spacing:-1.242000px;}
.ws45{word-spacing:-1.188000px;}
.wse{word-spacing:-1.134000px;}
.wsd1{word-spacing:-1.080000px;}
.ws1f{word-spacing:-1.071000px;}
.wscb{word-spacing:-1.035000px;}
.ws46{word-spacing:-1.026000px;}
.ws41{word-spacing:-0.972000px;}
.ws99{word-spacing:-0.966000px;}
.ws5d{word-spacing:-0.924000px;}
.ws1e{word-spacing:-0.918000px;}
.ws3b{word-spacing:-0.900000px;}
.ws43{word-spacing:-0.864000px;}
.ws21{word-spacing:-0.816000px;}
.ws6c{word-spacing:-0.810000px;}
.ws47{word-spacing:-0.756000px;}
.wsd4{word-spacing:-0.720000px;}
.ws6f{word-spacing:-0.714000px;}
.ws3d{word-spacing:-0.702000px;}
.ws17{word-spacing:-0.648000px;}
.wsc9{word-spacing:-0.600000px;}
.ws16{word-spacing:-0.594000px;}
.wscd{word-spacing:-0.585000px;}
.ws97{word-spacing:-0.540000px;}
.wscf{word-spacing:-0.495000px;}
.ws10{word-spacing:-0.486000px;}
.ws6e{word-spacing:-0.432000px;}
.wsca{word-spacing:-0.405000px;}
.ws4f{word-spacing:-0.378000px;}
.ws40{word-spacing:-0.324000px;}
.ws3a{word-spacing:-0.270000px;}
.ws12{word-spacing:-0.216000px;}
.wsbb{word-spacing:-0.180000px;}
.ws98{word-spacing:-0.162000px;}
.wsd7{word-spacing:-0.135000px;}
.ws18{word-spacing:-0.108000px;}
.ws20{word-spacing:-0.102000px;}
.wsd8{word-spacing:-0.090000px;}
.wsb9{word-spacing:-0.070200px;}
.ws15{word-spacing:-0.054000px;}
.wsce{word-spacing:-0.045000px;}
.ws5e{word-spacing:-0.035100px;}
.ws7{word-spacing:0.000000px;}
.wsde{word-spacing:0.045000px;}
.ws11{word-spacing:0.054000px;}
.wse3{word-spacing:0.090000px;}
.ws44{word-spacing:0.108000px;}
.ws24{word-spacing:0.153000px;}
.ws4d{word-spacing:0.162000px;}
.ws39{word-spacing:0.180000px;}
.ws35{word-spacing:0.216000px;}
.ws1b{word-spacing:0.270000px;}
.ws3f{word-spacing:0.324000px;}
.ws95{word-spacing:0.378000px;}
.ws1a{word-spacing:0.432000px;}
.ws3e{word-spacing:0.486000px;}
.wsd2{word-spacing:0.585000px;}
.ws96{word-spacing:0.594000px;}
.wsbf{word-spacing:0.600000px;}
.wsd3{word-spacing:0.630000px;}
.ws49{word-spacing:0.648000px;}
.ws4b{word-spacing:0.702000px;}
.ws78{word-spacing:0.714000px;}
.ws3c{word-spacing:0.720000px;}
.ws13{word-spacing:0.756000px;}
.ws4a{word-spacing:0.810000px;}
.wsd9{word-spacing:0.990000px;}
.wsbc{word-spacing:1.026000px;}
.ws14{word-spacing:1.242000px;}
.wsd5{word-spacing:1.260000px;}
.ws1d{word-spacing:1.275000px;}
.wsc2{word-spacing:1.296000px;}
.wsd6{word-spacing:1.305000px;}
.wse0{word-spacing:1.395000px;}
.ws4e{word-spacing:1.566000px;}
.wse7{word-spacing:1.674000px;}
.wse1{word-spacing:1.710000px;}
.ws85{word-spacing:1.728000px;}
.wse2{word-spacing:1.755000px;}
.wse6{word-spacing:1.935000px;}
.ws6d{word-spacing:1.944000px;}
.ws36{word-spacing:1.998000px;}
.wse4{word-spacing:2.430000px;}
.wsad{word-spacing:3.108000px;}
.wse5{word-spacing:3.150000px;}
.wsd0{word-spacing:3.690000px;}
.wsf{word-spacing:4.374000px;}
.wsba{word-spacing:4.914000px;}
.ws51{word-spacing:14.742000px;}
.ws9c{word-spacing:38.476200px;}
.ws8f{word-spacing:38.514000px;}
.ws90{word-spacing:38.766000px;}
.ws72{word-spacing:46.242000px;}
.ws9e{word-spacing:65.314200px;}
.wsa2{word-spacing:68.586000px;}
.ws93{word-spacing:68.754000px;}
.ws71{word-spacing:72.534000px;}
.ws70{word-spacing:73.836000px;}
.ws92{word-spacing:83.580000px;}
.wsa6{word-spacing:90.510000px;}
.wsa8{word-spacing:91.644000px;}
.wsa0{word-spacing:96.600000px;}
.ws7c{word-spacing:97.734000px;}
.ws56{word-spacing:99.372000px;}
.ws73{word-spacing:107.814000px;}
.ws76{word-spacing:109.620000px;}
.ws7a{word-spacing:117.894000px;}
.ws84{word-spacing:125.748000px;}
.ws83{word-spacing:127.974000px;}
.ws61{word-spacing:128.772000px;}
.ws7e{word-spacing:128.898000px;}
.ws7b{word-spacing:131.124000px;}
.ws82{word-spacing:131.166000px;}
.ws81{word-spacing:131.502000px;}
.ws7f{word-spacing:134.820000px;}
.ws55{word-spacing:135.534000px;}
.ws74{word-spacing:140.826000px;}
.ws7d{word-spacing:145.068000px;}
.ws80{word-spacing:147.378000px;}
.ws58{word-spacing:149.898000px;}
.ws60{word-spacing:150.532200px;}
.ws75{word-spacing:154.434000px;}
.ws5a{word-spacing:160.440000px;}
.wsa7{word-spacing:162.456000px;}
.ws8c{word-spacing:164.556000px;}
.ws9f{word-spacing:166.446000px;}
.ws5c{word-spacing:170.814000px;}
.ws9b{word-spacing:200.466000px;}
.ws67{word-spacing:221.802000px;}
.ws65{word-spacing:224.910000px;}
.ws69{word-spacing:236.334000px;}
.ws63{word-spacing:240.912000px;}
.ws6b{word-spacing:243.096000px;}
.ws59{word-spacing:308.826000px;}
.ws57{word-spacing:309.036000px;}
.ws8d{word-spacing:318.322200px;}
.ws5b{word-spacing:319.620000px;}
.ws64{word-spacing:322.308000px;}
.ws66{word-spacing:324.954000px;}
.ws62{word-spacing:336.714000px;}
.ws68{word-spacing:339.276000px;}
.ws9d{word-spacing:342.598200px;}
.ws6a{word-spacing:346.458000px;}
.wsa9{word-spacing:465.066000px;}
.wsa5{word-spacing:473.932200px;}
.wsa3{word-spacing:483.042000px;}
.wsaa{word-spacing:487.036200px;}
.wsa4{word-spacing:501.274200px;}
.wsa1{word-spacing:515.092200px;}
.ws52{word-spacing:547.428000px;}
.ws5f{word-spacing:595.266000px;}
._8{margin-left:-14.203200px;}
._84{margin-left:-13.113000px;}
._9{margin-left:-12.012600px;}
._e{margin-left:-10.488000px;}
._d{margin-left:-8.291400px;}
._1{margin-left:-6.926400px;}
._81{margin-left:-5.757600px;}
._6{margin-left:-4.668000px;}
._3{margin-left:-3.660000px;}
._0{margin-left:-1.776000px;}
._4{width:1.068600px;}
._7{width:2.825400px;}
._5{width:4.441200px;}
._2{width:5.959200px;}
._b{width:7.730400px;}
._6d{width:10.905600px;}
._c{width:11.966400px;}
._82{width:13.164000px;}
._a{width:48.327600px;}
._83{width:49.857000px;}
._68{width:69.774000px;}
._4e{width:79.458600px;}
._4c{width:81.046200px;}
._6f{width:89.748000px;}
._67{width:98.112000px;}
._63{width:102.156000px;}
._57{width:107.196000px;}
._58{width:108.990000px;}
._66{width:110.784000px;}
._59{width:112.014000px;}
._5e{width:113.454000px;}
._17{width:114.828000px;}
._4f{width:117.276000px;}
._5d{width:118.440000px;}
._50{width:119.994000px;}
._5b{width:121.968000px;}
._51{width:123.366000px;}
._14{width:124.782000px;}
._5c{width:126.042000px;}
._4d{width:127.356000px;}
._56{width:128.898000px;}
._54{width:130.200000px;}
._62{width:132.078000px;}
._5a{width:133.182000px;}
._52{width:135.282000px;}
._18{width:136.542000px;}
._16{width:137.688000px;}
._53{width:139.356000px;}
._2c{width:140.873400px;}
._64{width:141.876000px;}
._5f{width:143.892000px;}
._13{width:145.068000px;}
._10{width:146.286000px;}
._55{width:147.516000px;}
._61{width:148.806000px;}
._27{width:150.486000px;}
._22{width:151.830000px;}
._65{width:152.850000px;}
._20{width:154.434000px;}
._12{width:157.164000px;}
._1e{width:159.180000px;}
._1c{width:161.616000px;}
._25{width:164.178000px;}
._60{width:167.676000px;}
._79{width:168.744000px;}
._1a{width:171.066000px;}
._69{width:177.870000px;}
._29{width:182.681400px;}
._74{width:187.871400px;}
._32{width:193.284000px;}
._4a{width:202.146000px;}
._2f{width:203.364000px;}
._3a{width:208.698000px;}
._7d{width:214.812000px;}
._78{width:216.354000px;}
._39{width:218.778000px;}
._44{width:224.448000px;}
._3d{width:226.128000px;}
._47{width:228.732000px;}
._31{width:235.326000px;}
._46{width:236.712000px;}
._35{width:241.458000px;}
._40{width:244.986000px;}
._7f{width:249.072000px;}
._42{width:253.806000px;}
._2e{width:256.284000px;}
._37{width:257.544000px;}
._70{width:263.219400px;}
._71{width:265.464000px;}
._6e{width:269.862000px;}
._3f{width:273.252000px;}
._f{width:280.194000px;}
._23{width:287.796000px;}
._15{width:296.868000px;}
._7e{width:298.674000px;}
._26{width:299.808000px;}
._21{width:301.992000px;}
._1f{width:304.134000px;}
._11{width:305.646000px;}
._49{width:306.696000px;}
._1d{width:308.502000px;}
._3b{width:312.618000px;}
._24{width:314.256000px;}
._80{width:318.738000px;}
._19{width:320.388000px;}
._1b{width:321.522000px;}
._38{width:322.698000px;}
._43{width:328.662000px;}
._3c{width:329.964000px;}
._28{width:331.938000px;}
._7a{width:332.988000px;}
._72{width:334.008000px;}
._33{width:338.868000px;}
._45{width:340.884000px;}
._48{width:341.892000px;}
._34{width:345.336000px;}
._30{width:349.452000px;}
._7c{width:351.048000px;}
._76{width:356.370000px;}
._41{width:357.642000px;}
._2d{width:360.120000px;}
._36{width:361.380000px;}
._73{width:364.488000px;}
._6c{width:370.482000px;}
._3e{width:377.088000px;}
._6b{width:380.562000px;}
._4b{width:388.542000px;}
._6a{width:390.642000px;}
._7b{width:405.816000px;}
._77{width:438.480000px;}
._75{width:470.232000px;}
._2b{width:583.560000px;}
._2a{width:593.640000px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y2f{bottom:68.319900px;}
.y133{bottom:68.551500px;}
.y94{bottom:69.532800px;}
.yc2{bottom:71.052300px;}
.y86{bottom:74.092800px;}
.y177{bottom:74.796300px;}
.y1b5{bottom:75.547800px;}
.y60{bottom:77.052300px;}
.y15c{bottom:80.032800px;}
.y129{bottom:83.230800px;}
.y2e{bottom:83.313900px;}
.y132{bottom:83.551500px;}
.y93{bottom:84.531300px;}
.yc1{bottom:86.050800px;}
.y85{bottom:89.091300px;}
.y176{bottom:89.794800px;}
.y1b4{bottom:90.546300px;}
.y23e{bottom:91.462050px;}
.y5f{bottom:92.050800px;}
.y15b{bottom:95.031300px;}
.y2d{bottom:98.307900px;}
.y131{bottom:98.551500px;}
.y92{bottom:99.529800px;}
.yc0{bottom:101.049300px;}
.y13b{bottom:102.066450px;}
.y84{bottom:104.089800px;}
.y23d{bottom:104.208300px;}
.y128{bottom:104.250300px;}
.y175{bottom:104.797800px;}
.y1b3{bottom:105.544800px;}
.y5e{bottom:107.049300px;}
.y1f8{bottom:107.796300px;}
.y15a{bottom:110.029800px;}
.y2c{bottom:113.307900px;}
.y130{bottom:113.553000px;}
.y91{bottom:114.534300px;}
.ybf{bottom:116.047800px;}
.y23c{bottom:116.954550px;}
.y13a{bottom:117.064950px;}
.y83{bottom:119.088300px;}
.y174{bottom:119.796300px;}
.y1b2{bottom:120.546300px;}
.y127{bottom:121.690800px;}
.y5d{bottom:122.047800px;}
.y1f7{bottom:122.794800px;}
.y159{bottom:125.040300px;}
.y2b{bottom:128.307900px;}
.y12f{bottom:128.551500px;}
.y90{bottom:129.532800px;}
.y23b{bottom:129.700800px;}
.ybe{bottom:131.046300px;}
.y139{bottom:132.063450px;}
.y82{bottom:134.086800px;}
.y173{bottom:134.794800px;}
.y1b1{bottom:135.544800px;}
.y5c{bottom:137.046300px;}
.y1f6{bottom:137.799300px;}
.y126{bottom:139.131300px;}
.y158{bottom:140.038800px;}
.y23a{bottom:142.447050px;}
.y2a{bottom:143.307900px;}
.y12e{bottom:143.550000px;}
.y8f{bottom:144.531300px;}
.ybd{bottom:146.044800px;}
.y138{bottom:147.061950px;}
.y81{bottom:149.085300px;}
.y172{bottom:149.797800px;}
.y1b0{bottom:150.556800px;}
.y5b{bottom:152.044800px;}
.y1f5{bottom:152.797800px;}
.y157{bottom:155.037300px;}
.y239{bottom:155.193300px;}
.y125{bottom:156.571800px;}
.y12d{bottom:158.550000px;}
.y8e{bottom:159.529800px;}
.ybc{bottom:161.044800px;}
.y137{bottom:162.060450px;}
.y29{bottom:162.636900px;}
.y80{bottom:164.083800px;}
.y171{bottom:164.796300px;}
.y1af{bottom:165.555300px;}
.y5a{bottom:167.053800px;}
.y1f4{bottom:167.796300px;}
.y238{bottom:167.939550px;}
.y156{bottom:170.035800px;}
.y124{bottom:174.012300px;}
.y8d{bottom:174.528300px;}
.ybb{bottom:176.043300px;}
.y136{bottom:177.058950px;}
.y7f{bottom:179.082300px;}
.y170{bottom:179.794800px;}
.y1ae{bottom:180.553800px;}
.y237{bottom:180.685800px;}
.y59{bottom:182.052300px;}
.y1f3{bottom:182.794800px;}
.y155{bottom:185.034300px;}
.y12c{bottom:190.483800px;}
.y123{bottom:191.452800px;}
.y236{bottom:193.432050px;}
.y7e{bottom:194.080800px;}
.y16f{bottom:194.797800px;}
.y1ad{bottom:195.552300px;}
.y58{bottom:197.050800px;}
.y1f2{bottom:197.796300px;}
.y28{bottom:198.687300px;}
.y154{bottom:200.032800px;}
.y12b{bottom:205.482300px;}
.y235{bottom:206.178300px;}
.y122{bottom:208.893300px;}
.yba{bottom:209.044800px;}
.y7d{bottom:209.079300px;}
.y16e{bottom:209.796300px;}
.y1ac{bottom:210.550800px;}
.y57{bottom:212.049300px;}
.y1f1{bottom:212.794800px;}
.y27{bottom:213.685800px;}
.y153{bottom:215.031300px;}
.y234{bottom:218.924550px;}
.y12a{bottom:220.480800px;}
.yb9{bottom:224.047800px;}
.y7c{bottom:224.077800px;}
.y16d{bottom:224.794800px;}
.y1ab{bottom:225.549300px;}
.y121{bottom:226.333800px;}
.y56{bottom:227.047800px;}
.y1f0{bottom:227.793300px;}
.y26{bottom:228.685800px;}
.yb5{bottom:229.636950px;}
.y152{bottom:230.029800px;}
.y233{bottom:231.670800px;}
.yb8{bottom:239.046300px;}
.y7b{bottom:239.076300px;}
.y16c{bottom:239.797800px;}
.y1aa{bottom:240.547800px;}
.y55{bottom:242.046300px;}
.y25{bottom:243.691800px;}
.y120{bottom:243.774300px;}
.y232{bottom:244.417050px;}
.yb4{bottom:244.635450px;}
.y151{bottom:245.034300px;}
.yb7{bottom:254.044800px;}
.y7a{bottom:254.074800px;}
.y16b{bottom:254.796300px;}
.y1a9{bottom:255.546300px;}
.y54{bottom:257.044800px;}
.y231{bottom:257.163300px;}
.y24{bottom:258.690300px;}
.yb3{bottom:259.633950px;}
.y150{bottom:260.032800px;}
.y1ef{bottom:260.808300px;}
.y11f{bottom:261.214800px;}
.y135{bottom:268.482300px;}
.yb6{bottom:269.043300px;}
.y79{bottom:269.073300px;}
.y16a{bottom:269.794800px;}
.y230{bottom:269.909550px;}
.y1a8{bottom:270.544800px;}
.y53{bottom:272.043300px;}
.y23{bottom:273.688800px;}
.y14f{bottom:275.031300px;}
.y1ee{bottom:275.806800px;}
.y11e{bottom:278.655300px;}
.y22f{bottom:282.655800px;}
.y134{bottom:283.480800px;}
.y78{bottom:284.071800px;}
.y169{bottom:284.793300px;}
.y1a7{bottom:285.543300px;}
.y275{bottom:285.797250px;}
.y52{bottom:287.043300px;}
.y22{bottom:288.687300px;}
.y14e{bottom:290.029800px;}
.y1ed{bottom:290.805300px;}
.y22e{bottom:295.402050px;}
.y11d{bottom:296.095800px;}
.y77{bottom:299.070300px;}
.y274{bottom:300.795750px;}
.y21{bottom:303.685800px;}
.y14d{bottom:305.032800px;}
.y1ec{bottom:305.803800px;}
.y22d{bottom:308.148300px;}
.y11c{bottom:313.536300px;}
.y76{bottom:314.068800px;}
.y273{bottom:315.794250px;}
.y20{bottom:318.708300px;}
.y14c{bottom:320.031300px;}
.y51{bottom:320.050800px;}
.y1eb{bottom:320.802300px;}
.y22c{bottom:320.894550px;}
.y75{bottom:329.067300px;}
.y272{bottom:330.792750px;}
.y11b{bottom:330.976800px;}
.yee{bottom:332.044800px;}
.y22b{bottom:333.640800px;}
.y1f{bottom:333.706800px;}
.y14b{bottom:335.029800px;}
.y50{bottom:335.049300px;}
.y1ea{bottom:335.800800px;}
.y1b8{bottom:336.061950px;}
.y1a6{bottom:337.669800px;}
.y74{bottom:344.065800px;}
.y271{bottom:345.791250px;}
.y22a{bottom:346.387050px;}
.yed{bottom:347.043300px;}
.y11a{bottom:348.417300px;}
.y1e{bottom:348.705300px;}
.y14a{bottom:350.031300px;}
.y4f{bottom:350.047800px;}
.y1e9{bottom:350.799300px;}
.y1b7{bottom:351.060450px;}
.y1a5{bottom:352.668300px;}
.y73{bottom:359.064300px;}
.y229{bottom:359.133300px;}
.y1d{bottom:363.703800px;}
.y149{bottom:365.029800px;}
.y4e{bottom:365.046300px;}
.y1e8{bottom:365.797800px;}
.y119{bottom:365.857800px;}
.y1b6{bottom:366.058950px;}
.y270{bottom:371.797800px;}
.y228{bottom:371.879550px;}
.y72{bottom:374.062800px;}
.yec{bottom:377.107800px;}
.y1c{bottom:378.702300px;}
.y148{bottom:380.035800px;}
.y4d{bottom:380.044800px;}
.y1e7{bottom:380.796300px;}
.y1a4{bottom:383.035800px;}
.y118{bottom:383.298300px;}
.y227{bottom:384.625800px;}
.y26f{bottom:386.796300px;}
.y71{bottom:389.061300px;}
.y1b{bottom:393.700800px;}
.yeb{bottom:394.548300px;}
.y147{bottom:395.034300px;}
.y4c{bottom:395.043300px;}
.y1e6{bottom:395.794800px;}
.y226{bottom:397.372050px;}
.y1a3{bottom:400.476300px;}
.y117{bottom:400.738800px;}
.y70{bottom:404.059800px;}
.y26e{bottom:408.544800px;}
.y1a{bottom:408.699300px;}
.y146{bottom:410.032800px;}
.y4b{bottom:410.043300px;}
.y225{bottom:410.118300px;}
.y1e5{bottom:410.808300px;}
.yea{bottom:411.988800px;}
.y1a2{bottom:417.906300px;}
.y116{bottom:418.179300px;}
.y6f{bottom:419.058300px;}
.y224{bottom:422.864550px;}
.y1a1{bottom:423.523800px;}
.y19{bottom:423.697800px;}
.y145{bottom:425.031300px;}
.y1e4{bottom:425.806800px;}
.ye9{bottom:429.429300px;}
.y26d{bottom:430.293300px;}
.y6e{bottom:434.056800px;}
.y223{bottom:435.610800px;}
.y115{bottom:435.619800px;}
.y18{bottom:438.696300px;}
.y144{bottom:440.029800px;}
.y1e3{bottom:440.805300px;}
.y4a{bottom:443.047800px;}
.y26c{bottom:445.293300px;}
.y1a0{bottom:446.581800px;}
.ye8{bottom:446.869800px;}
.y222{bottom:448.357050px;}
.y6d{bottom:449.055300px;}
.y114{bottom:453.060300px;}
.y143{bottom:455.032800px;}
.y1e2{bottom:455.803800px;}
.y49{bottom:458.046300px;}
.y221{bottom:461.103300px;}
.y19f{bottom:464.022300px;}
.y6c{bottom:464.053800px;}
.ye7{bottom:464.310300px;}
.y142{bottom:470.031300px;}
.y113{bottom:470.500800px;}
.y1e1{bottom:470.802300px;}
.y26b{bottom:472.296300px;}
.y48{bottom:473.044800px;}
.y220{bottom:473.849550px;}
.y6b{bottom:479.052300px;}
.y19e{bottom:481.462800px;}
.ye6{bottom:481.750800px;}
.y141{bottom:485.029800px;}
.y1e0{bottom:485.800800px;}
.y17{bottom:485.946300px;}
.y21f{bottom:486.595800px;}
.y26a{bottom:487.294800px;}
.y112{bottom:487.941300px;}
.y47{bottom:488.044800px;}
.y6a{bottom:494.050800px;}
.y19d{bottom:498.892800px;}
.ye5{bottom:499.191300px;}
.y21e{bottom:499.342050px;}
.y140{bottom:500.034300px;}
.y1df{bottom:500.799300px;}
.y269{bottom:502.293300px;}
.y16{bottom:502.443300px;}
.y46{bottom:503.052300px;}
.y19c{bottom:504.510300px;}
.y111{bottom:505.381800px;}
.y69{bottom:509.049300px;}
.y21d{bottom:512.088300px;}
.y13f{bottom:515.032800px;}
.y1de{bottom:515.797800px;}
.ye4{bottom:516.631800px;}
.y268{bottom:517.293300px;}
.y45{bottom:518.050800px;}
.y15{bottom:518.940300px;}
.y110{bottom:522.822300px;}
.y68{bottom:524.047800px;}
.y21c{bottom:524.834550px;}
.y19b{bottom:527.568300px;}
.y13e{bottom:530.031300px;}
.y1dd{bottom:530.796300px;}
.y44{bottom:533.049300px;}
.ye3{bottom:534.072300px;}
.y14{bottom:535.437300px;}
.y21b{bottom:537.580800px;}
.y67{bottom:539.046300px;}
.y10f{bottom:540.262800px;}
.y267{bottom:544.306800px;}
.y19a{bottom:544.998300px;}
.y13d{bottom:545.029800px;}
.y1dc{bottom:545.794800px;}
.y43{bottom:548.047800px;}
.y21a{bottom:550.327050px;}
.y199{bottom:550.615800px;}
.ye2{bottom:551.512800px;}
.y13{bottom:551.961300px;}
.y66{bottom:554.044800px;}
.y10e{bottom:557.703300px;}
.y266{bottom:559.305300px;}
.y13c{bottom:560.028300px;}
.y1db{bottom:560.793300px;}
.y42{bottom:563.046300px;}
.y219{bottom:563.073300px;}
.y12{bottom:568.458300px;}
.ye1{bottom:568.953300px;}
.y65{bottom:569.043300px;}
.y198{bottom:573.673800px;}
.yb2{bottom:573.730800px;}
.y265{bottom:574.303800px;}
.y10d{bottom:575.143800px;}
.y1da{bottom:575.793300px;}
.y218{bottom:575.819550px;}
.y41{bottom:578.044800px;}
.y197{bottom:579.291300px;}
.y11{bottom:584.955300px;}
.ye0{bottom:586.393800px;}
.y217{bottom:588.565800px;}
.y264{bottom:589.302300px;}
.y10c{bottom:592.584300px;}
.y40{bottom:593.044800px;}
.y216{bottom:601.312050px;}
.y10{bottom:601.452300px;}
.y196{bottom:602.349300px;}
.ydf{bottom:603.834300px;}
.yb1{bottom:603.837300px;}
.y263{bottom:604.300800px;}
.y3f{bottom:608.046300px;}
.y1d9{bottom:608.812800px;}
.y10b{bottom:610.024800px;}
.y168{bottom:611.592300px;}
.y215{bottom:614.058300px;}
.yf{bottom:617.949300px;}
.y262{bottom:619.299300px;}
.y195{bottom:619.789800px;}
.yde{bottom:621.274800px;}
.yb0{bottom:621.277800px;}
.y3e{bottom:623.044800px;}
.y1d8{bottom:623.811300px;}
.y167{bottom:626.590800px;}
.y214{bottom:626.804550px;}
.y10a{bottom:627.465300px;}
.y8c{bottom:631.801950px;}
.y261{bottom:634.297800px;}
.ye{bottom:634.446300px;}
.y194{bottom:637.230300px;}
.y3d{bottom:638.046300px;}
.ydd{bottom:638.715300px;}
.yaf{bottom:638.718300px;}
.y1d7{bottom:638.809800px;}
.y213{bottom:639.550800px;}
.y109{bottom:644.905800px;}
.y8b{bottom:646.800450px;}
.y260{bottom:649.296300px;}
.yd{bottom:650.943300px;}
.y212{bottom:652.297050px;}
.y3c{bottom:653.044800px;}
.y1d6{bottom:653.808300px;}
.y193{bottom:654.670800px;}
.ydc{bottom:656.155800px;}
.yae{bottom:656.158800px;}
.y166{bottom:656.763300px;}
.y8a{bottom:661.803450px;}
.y108{bottom:662.346300px;}
.y25f{bottom:664.294800px;}
.y211{bottom:665.043300px;}
.yc{bottom:667.440300px;}
.y3b{bottom:668.044800px;}
.y1d5{bottom:668.806800px;}
.y192{bottom:672.111300px;}
.ydb{bottom:673.596300px;}
.yad{bottom:673.599300px;}
.y165{bottom:674.203800px;}
.y89{bottom:676.801950px;}
.y210{bottom:677.793300px;}
.y25e{bottom:679.293300px;}
.y107{bottom:679.786800px;}
.y3a{bottom:683.046300px;}
.y1d4{bottom:683.805300px;}
.yb{bottom:683.937300px;}
.y191{bottom:689.551800px;}
.yda{bottom:691.036800px;}
.yac{bottom:691.039800px;}
.y164{bottom:691.644300px;}
.y88{bottom:691.800450px;}
.y25d{bottom:694.293300px;}
.y106{bottom:697.227300px;}
.y39{bottom:698.044800px;}
.y1d3{bottom:698.803800px;}
.ya{bottom:700.434300px;}
.y87{bottom:706.798950px;}
.y190{bottom:706.992300px;}
.yd9{bottom:708.477300px;}
.yab{bottom:708.480300px;}
.y163{bottom:709.084800px;}
.y20f{bottom:710.811300px;}
.y38{bottom:713.046300px;}
.y1d2{bottom:713.802300px;}
.y105{bottom:714.667800px;}
.y25c{bottom:721.402050px;}
.y18f{bottom:724.432800px;}
.y20e{bottom:725.809800px;}
.yd8{bottom:725.917800px;}
.yaa{bottom:725.920800px;}
.y162{bottom:726.525300px;}
.y37{bottom:728.044800px;}
.y1d1{bottom:728.800800px;}
.y9{bottom:730.434300px;}
.y104{bottom:732.108300px;}
.y25b{bottom:734.148300px;}
.y20d{bottom:740.808300px;}
.y18e{bottom:741.873300px;}
.y36{bottom:743.044800px;}
.yd7{bottom:743.358300px;}
.ya9{bottom:743.361300px;}
.y1d0{bottom:743.799300px;}
.y160{bottom:743.965800px;}
.y25a{bottom:746.894550px;}
.y8{bottom:748.434300px;}
.y103{bottom:749.548800px;}
.y20c{bottom:755.806800px;}
.y32{bottom:757.050000px;}
.y35{bottom:758.043300px;}
.y1cf{bottom:758.797800px;}
.y18d{bottom:759.303300px;}
.y259{bottom:759.640800px;}
.yd6{bottom:760.798800px;}
.ya8{bottom:760.801800px;}
.y161{bottom:761.406300px;}
.y18c{bottom:764.920800px;}
.y102{bottom:766.989300px;}
.y20b{bottom:770.805300px;}
.y258{bottom:772.387050px;}
.y1ce{bottom:773.796300px;}
.y31{bottom:778.050000px;}
.yd5{bottom:778.239300px;}
.ya7{bottom:778.242300px;}
.y7{bottom:781.416300px;}
.y101{bottom:784.429800px;}
.y257{bottom:785.133300px;}
.y20a{bottom:785.803800px;}
.y18b{bottom:787.978800px;}
.y1cd{bottom:788.794800px;}
.y18a{bottom:793.596300px;}
.yd4{bottom:795.679800px;}
.ya6{bottom:795.682800px;}
.y256{bottom:797.879550px;}
.y30{bottom:799.050000px;}
.y209{bottom:800.802300px;}
.y100{bottom:801.870300px;}
.y1cc{bottom:803.794800px;}
.y64{bottom:809.761950px;}
.y255{bottom:810.625800px;}
.yd3{bottom:813.120300px;}
.ya5{bottom:813.123300px;}
.y208{bottom:815.800800px;}
.y189{bottom:816.654300px;}
.y15f{bottom:816.660450px;}
.y1cb{bottom:818.796300px;}
.yff{bottom:819.310800px;}
.y188{bottom:822.271800px;}
.y254{bottom:823.372050px;}
.y63{bottom:824.760450px;}
.y6{bottom:826.422300px;}
.yd2{bottom:830.560800px;}
.ya4{bottom:830.563800px;}
.y207{bottom:830.799300px;}
.y15e{bottom:831.660450px;}
.y1ca{bottom:833.794800px;}
.y253{bottom:836.118300px;}
.yfe{bottom:836.751300px;}
.y62{bottom:839.760450px;}
.y187{bottom:845.329800px;}
.y206{bottom:845.797800px;}
.y15d{bottom:846.658950px;}
.yd1{bottom:848.001300px;}
.ya3{bottom:848.004300px;}
.y1c9{bottom:848.794800px;}
.y252{bottom:848.864550px;}
.y186{bottom:850.947300px;}
.yfd{bottom:854.191800px;}
.y61{bottom:854.758950px;}
.y205{bottom:860.796300px;}
.y251{bottom:861.610800px;}
.y1c8{bottom:863.797800px;}
.yd0{bottom:865.441800px;}
.ya2{bottom:865.444800px;}
.y5{bottom:871.428300px;}
.yfc{bottom:871.632300px;}
.y185{bottom:874.005300px;}
.y250{bottom:874.357050px;}
.y204{bottom:875.794800px;}
.y1c7{bottom:878.796300px;}
.y184{bottom:879.622800px;}
.ycf{bottom:882.882300px;}
.ya1{bottom:882.885300px;}
.y24f{bottom:887.103300px;}
.yfb{bottom:889.072800px;}
.y203{bottom:890.796300px;}
.y1c6{bottom:893.794800px;}
.y24e{bottom:899.849550px;}
.yce{bottom:900.322800px;}
.ya0{bottom:900.325800px;}
.y183{bottom:902.680800px;}
.y202{bottom:905.794800px;}
.yfa{bottom:906.513300px;}
.y1c5{bottom:908.796300px;}
.y24d{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.ycd{bottom:917.763300px;}
.y9f{bottom:917.766300px;}
.y182{bottom:920.110800px;}
.y201{bottom:920.793300px;}
.y1c4{bottom:923.794800px;}
.yf9{bottom:923.953800px;}
.y24c{bottom:925.342050px;}
.y181{bottom:925.728300px;}
.y33{bottom:926.409600px;}
.ycc{bottom:935.203800px;}
.y9e{bottom:935.206800px;}
.y24b{bottom:938.088300px;}
.y1c3{bottom:938.794800px;}
.yf8{bottom:941.394300px;}
.y180{bottom:948.786300px;}
.y24a{bottom:950.834550px;}
.ycb{bottom:952.644300px;}
.y9d{bottom:952.647300px;}
.y200{bottom:953.796300px;}
.y1c2{bottom:953.800800px;}
.yf7{bottom:958.834800px;}
.y249{bottom:963.580800px;}
.y17f{bottom:966.216300px;}
.y1ff{bottom:968.794800px;}
.y1c1{bottom:968.799300px;}
.yca{bottom:970.084800px;}
.y9c{bottom:970.087800px;}
.y17e{bottom:971.833800px;}
.yf6{bottom:976.275300px;}
.y248{bottom:976.327050px;}
.y1fe{bottom:983.796300px;}
.y1c0{bottom:983.797800px;}
.yc9{bottom:987.525300px;}
.y9b{bottom:987.528300px;}
.y247{bottom:989.073300px;}
.yf5{bottom:993.715800px;}
.y17d{bottom:994.891800px;}
.y1fd{bottom:998.794800px;}
.y1bf{bottom:998.796300px;}
.y17c{bottom:1000.509300px;}
.y246{bottom:1001.819550px;}
.yc8{bottom:1004.965800px;}
.y9a{bottom:1004.968800px;}
.yf4{bottom:1011.156300px;}
.y1be{bottom:1013.794800px;}
.y1fc{bottom:1013.797800px;}
.y245{bottom:1014.565800px;}
.yc7{bottom:1022.406300px;}
.y99{bottom:1022.409300px;}
.y17b{bottom:1023.567300px;}
.y244{bottom:1027.312050px;}
.yf3{bottom:1028.596800px;}
.y1fb{bottom:1028.796300px;}
.y1bd{bottom:1028.797800px;}
.y17a{bottom:1029.184800px;}
.yc6{bottom:1039.846800px;}
.y98{bottom:1039.849800px;}
.y243{bottom:1040.058300px;}
.y1fa{bottom:1043.794800px;}
.y1bc{bottom:1043.796300px;}
.yf2{bottom:1046.037300px;}
.y179{bottom:1052.242800px;}
.y242{bottom:1052.804550px;}
.yc5{bottom:1057.287300px;}
.y97{bottom:1057.290300px;}
.y178{bottom:1057.860300px;}
.y1bb{bottom:1058.794800px;}
.y1f9{bottom:1058.796300px;}
.yf1{bottom:1063.477800px;}
.y241{bottom:1065.550800px;}
.y1ba{bottom:1073.794800px;}
.yc4{bottom:1074.727800px;}
.y95{bottom:1074.730800px;}
.y240{bottom:1078.297050px;}
.yef{bottom:1080.918300px;}
.y1b9{bottom:1088.793300px;}
.y23f{bottom:1091.043300px;}
.yf0{bottom:1092.163800px;}
.yc3{bottom:1092.168300px;}
.y96{bottom:1092.171300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.he{height:23.842749px;}
.h18{height:29.946000px;}
.h17{height:29.988000px;}
.h21{height:32.085000px;}
.h22{height:32.130000px;}
.h3{height:34.523438px;}
.h10{height:36.681152px;}
.h9{height:38.502000px;}
.h15{height:38.556000px;}
.h7{height:38.838867px;}
.hf{height:41.158749px;}
.h2{height:43.154297px;}
.ha{height:43.290300px;}
.h20{height:43.326300px;}
.h1f{height:43.332300px;}
.h1d{height:43.338300px;}
.h14{height:43.344300px;}
.h12{height:43.350300px;}
.hb{height:43.356300px;}
.h16{height:43.362300px;}
.h1c{height:43.368300px;}
.h1a{height:43.373700px;}
.hd{height:43.374300px;}
.h1b{height:43.379700px;}
.hc{height:43.380300px;}
.h19{height:43.385700px;}
.h8{height:43.497264px;}
.h4{height:44.233154px;}
.h13{height:47.469727px;}
.h6{height:48.450293px;}
.h1e{height:52.458000px;}
.h11{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x6{left:78.816300px;}
.x7{left:94.224300px;}
.x8{left:140.952750px;}
.x4{left:233.456400px;}
.xa{left:238.143900px;}
.x5{left:251.453850px;}
.x16{left:300.348450px;}
.x14{left:373.667400px;}
.xc{left:487.172400px;}
.xb{left:498.228900px;}
.x10{left:502.355400px;}
.xf{left:536.522400px;}
.xe{left:558.792750px;}
.xd{left:559.811250px;}
.x3{left:584.586600px;}
.x13{left:598.356900px;}
.x12{left:607.124400px;}
.x11{left:816.003600px;}
.x15{left:817.278150px;}
.x9{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v3{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v5{vertical-align:-9.616000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.224000pt;}
.v1{vertical-align:18.133333pt;}
.v6{vertical-align:20.010667pt;}
.ls18{letter-spacing:-3.888000pt;}
.ls8d{letter-spacing:-3.720000pt;}
.ls6e{letter-spacing:-3.696000pt;}
.ls52{letter-spacing:-3.621333pt;}
.ls64{letter-spacing:-3.584000pt;}
.ls81{letter-spacing:-3.280000pt;}
.ls59{letter-spacing:-3.173333pt;}
.ls53{letter-spacing:-2.912000pt;}
.ls17{letter-spacing:-2.880000pt;}
.ls89{letter-spacing:-1.560000pt;}
.ls86{letter-spacing:-1.240000pt;}
.ls87{letter-spacing:-1.200000pt;}
.ls85{letter-spacing:-1.160000pt;}
.ls54{letter-spacing:-0.912000pt;}
.ls8b{letter-spacing:-0.840000pt;}
.ls88{letter-spacing:-0.760000pt;}
.ls49{letter-spacing:-0.720000pt;}
.ls8a{letter-spacing:-0.680000pt;}
.ls33{letter-spacing:-0.672000pt;}
.ls4a{letter-spacing:-0.634667pt;}
.ls6f{letter-spacing:-0.624000pt;}
.ls1f{letter-spacing:-0.576000pt;}
.ls71{letter-spacing:-0.533333pt;}
.ls34{letter-spacing:-0.528000pt;}
.ls4b{letter-spacing:-0.485333pt;}
.ls5a{letter-spacing:-0.480000pt;}
.ls4d{letter-spacing:-0.448000pt;}
.ls44{letter-spacing:-0.432000pt;}
.ls45{letter-spacing:-0.405600pt;}
.ls7f{letter-spacing:-0.400000pt;}
.ls35{letter-spacing:-0.384000pt;}
.ls60{letter-spacing:-0.373333pt;}
.ls1c{letter-spacing:-0.336000pt;}
.ls58{letter-spacing:-0.298667pt;}
.ls3f{letter-spacing:-0.288000pt;}
.ls83{letter-spacing:-0.280000pt;}
.ls4e{letter-spacing:-0.261333pt;}
.ls72{letter-spacing:-0.249600pt;}
.ls19{letter-spacing:-0.240000pt;}
.ls66{letter-spacing:-0.224000pt;}
.ls68{letter-spacing:-0.218400pt;}
.ls38{letter-spacing:-0.192000pt;}
.ls51{letter-spacing:-0.186667pt;}
.ls40{letter-spacing:-0.160000pt;}
.ls43{letter-spacing:-0.156000pt;}
.ls4c{letter-spacing:-0.149333pt;}
.ls36{letter-spacing:-0.144000pt;}
.ls21{letter-spacing:-0.136000pt;}
.ls67{letter-spacing:-0.124800pt;}
.ls61{letter-spacing:-0.112000pt;}
.ls39{letter-spacing:-0.096000pt;}
.ls3e{letter-spacing:-0.093600pt;}
.ls80{letter-spacing:-0.080000pt;}
.ls3a{letter-spacing:-0.062400pt;}
.ls1e{letter-spacing:-0.048000pt;}
.ls7e{letter-spacing:-0.040000pt;}
.ls16{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.010933pt;}
.ls2{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.012267pt;}
.ls50{letter-spacing:0.019200pt;}
.ls63{letter-spacing:0.031200pt;}
.ls78{letter-spacing:0.040000pt;}
.ls24{letter-spacing:0.041067pt;}
.ls23{letter-spacing:0.048000pt;}
.ls37{letter-spacing:0.062400pt;}
.ls11{letter-spacing:0.062800pt;}
.ls7{letter-spacing:0.089600pt;}
.ls10{letter-spacing:0.090667pt;}
.ls70{letter-spacing:0.093600pt;}
.ls26{letter-spacing:0.096000pt;}
.ls30{letter-spacing:0.100800pt;}
.ls25{letter-spacing:0.104533pt;}
.ls76{letter-spacing:0.120000pt;}
.ls3d{letter-spacing:0.124800pt;}
.ls1b{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.146667pt;}
.ls6d{letter-spacing:0.156000pt;}
.lsc{letter-spacing:0.165333pt;}
.ls56{letter-spacing:0.170667pt;}
.ls5b{letter-spacing:0.187200pt;}
.ls3c{letter-spacing:0.192000pt;}
.ls74{letter-spacing:0.200000pt;}
.ls73{letter-spacing:0.213333pt;}
.ls31{letter-spacing:0.218400pt;}
.ls2f{letter-spacing:0.230400pt;}
.lsa{letter-spacing:0.240000pt;}
.ls5f{letter-spacing:0.249600pt;}
.ls65{letter-spacing:0.261333pt;}
.ls7a{letter-spacing:0.280000pt;}
.ls5e{letter-spacing:0.280800pt;}
.ls69{letter-spacing:0.285867pt;}
.ls2e{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.300267pt;}
.ls7c{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.327600pt;}
.ls5{letter-spacing:0.336000pt;}
.ls6a{letter-spacing:0.343200pt;}
.ls75{letter-spacing:0.360000pt;}
.ls6c{letter-spacing:0.373333pt;}
.ls5d{letter-spacing:0.374400pt;}
.ls27{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.432000pt;}
.ls77{letter-spacing:0.440000pt;}
.ls13{letter-spacing:0.455333pt;}
.ls9{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.508133pt;}
.lsd{letter-spacing:0.519867pt;}
.ls6{letter-spacing:0.528000pt;}
.ls2d{letter-spacing:0.576000pt;}
.ls28{letter-spacing:0.585600pt;}
.ls82{letter-spacing:0.600000pt;}
.ls2c{letter-spacing:0.624000pt;}
.ls7b{letter-spacing:0.656000pt;}
.ls1a{letter-spacing:0.672000pt;}
.ls57{letter-spacing:0.686400pt;}
.ls2a{letter-spacing:0.693333pt;}
.ls29{letter-spacing:0.715200pt;}
.ls42{letter-spacing:0.720000pt;}
.ls12{letter-spacing:0.725333pt;}
.ls47{letter-spacing:0.768000pt;}
.ls41{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.816000pt;}
.ls79{letter-spacing:0.840000pt;}
.ls15{letter-spacing:0.853333pt;}
.ls20{letter-spacing:0.864000pt;}
.ls84{letter-spacing:1.000000pt;}
.ls48{letter-spacing:1.008000pt;}
.ls2b{letter-spacing:1.051200pt;}
.ls55{letter-spacing:1.056000pt;}
.ls8e{letter-spacing:1.080000pt;}
.ls4f{letter-spacing:1.120000pt;}
.ls3b{letter-spacing:1.152000pt;}
.ls14{letter-spacing:1.178667pt;}
.ls8c{letter-spacing:1.240000pt;}
.ls46{letter-spacing:1.262400pt;}
.ls5c{letter-spacing:1.382400pt;}
.ls0{letter-spacing:2.304000pt;}
.ls22{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls7d{letter-spacing:4.106667pt;}
.ls62{letter-spacing:5.440000pt;}
.ls32{letter-spacing:13.104000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws2e{word-spacing:-12.085333pt;}
.ws30{word-spacing:-11.786667pt;}
.ws6{word-spacing:-11.376000pt;}
.ws8a{word-spacing:-11.280000pt;}
.ws89{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws48{word-spacing:-10.944000pt;}
.ws38{word-spacing:-10.896000pt;}
.ws2f{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws2d{word-spacing:-10.704000pt;}
.wsc4{word-spacing:-10.656000pt;}
.ws28{word-spacing:-10.608000pt;}
.wsb5{word-spacing:-10.560000pt;}
.wsb0{word-spacing:-10.512000pt;}
.wsb7{word-spacing:-10.464000pt;}
.ws5{word-spacing:-10.320000pt;}
.ws26{word-spacing:-10.224000pt;}
.wsc3{word-spacing:-10.080000pt;}
.ws77{word-spacing:-9.984000pt;}
.wsc6{word-spacing:-8.960000pt;}
.wsdc{word-spacing:-8.880000pt;}
.wsc5{word-spacing:-8.760000pt;}
.wsdd{word-spacing:-8.480000pt;}
.wsa{word-spacing:-8.320000pt;}
.ws4{word-spacing:-8.106667pt;}
.wsda{word-spacing:-8.000000pt;}
.ws91{word-spacing:-7.989333pt;}
.wsdb{word-spacing:-7.960000pt;}
.ws8e{word-spacing:-7.914667pt;}
.ws79{word-spacing:-7.768800pt;}
.ws54{word-spacing:-7.616000pt;}
.ws53{word-spacing:-7.466667pt;}
.ws87{word-spacing:-7.456800pt;}
.wsb2{word-spacing:-7.425600pt;}
.wsb4{word-spacing:-7.410000pt;}
.ws88{word-spacing:-7.363200pt;}
.ws8b{word-spacing:-7.332000pt;}
.ws31{word-spacing:-7.300800pt;}
.ws86{word-spacing:-7.269600pt;}
.wsb3{word-spacing:-7.238400pt;}
.ws2b{word-spacing:-7.207200pt;}
.wsb6{word-spacing:-7.176000pt;}
.ws29{word-spacing:-7.144800pt;}
.ws9a{word-spacing:-7.113600pt;}
.ws27{word-spacing:-7.082400pt;}
.ws2a{word-spacing:-7.020000pt;}
.ws2c{word-spacing:-6.988800pt;}
.wsae{word-spacing:-6.957600pt;}
.ws32{word-spacing:-6.926400pt;}
.wsaf{word-spacing:-6.864000pt;}
.wsb8{word-spacing:-6.832800pt;}
.ws33{word-spacing:-6.676800pt;}
.wsab{word-spacing:-5.440000pt;}
.wsc1{word-spacing:-4.896000pt;}
.wsc{word-spacing:-4.746667pt;}
.wsc7{word-spacing:-4.106667pt;}
.wse8{word-spacing:-3.520000pt;}
.ws9{word-spacing:-3.328000pt;}
.ws8{word-spacing:-2.912000pt;}
.ws25{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.wsb{word-spacing:-2.133333pt;}
.wsc0{word-spacing:-1.728000pt;}
.ws37{word-spacing:-1.680000pt;}
.wsc8{word-spacing:-1.653333pt;}
.ws1c{word-spacing:-1.632000pt;}
.wsbe{word-spacing:-1.536000pt;}
.ws4c{word-spacing:-1.488000pt;}
.wsb1{word-spacing:-1.440000pt;}
.wsdf{word-spacing:-1.400000pt;}
.ws94{word-spacing:-1.392000pt;}
.wscc{word-spacing:-1.360000pt;}
.ws50{word-spacing:-1.344000pt;}
.wsbd{word-spacing:-1.296000pt;}
.ws42{word-spacing:-1.248000pt;}
.wse9{word-spacing:-1.232000pt;}
.wsac{word-spacing:-1.200000pt;}
.ws23{word-spacing:-1.178667pt;}
.ws34{word-spacing:-1.152000pt;}
.ws22{word-spacing:-1.133333pt;}
.wsd{word-spacing:-1.120000pt;}
.ws19{word-spacing:-1.104000pt;}
.ws45{word-spacing:-1.056000pt;}
.wse{word-spacing:-1.008000pt;}
.wsd1{word-spacing:-0.960000pt;}
.ws1f{word-spacing:-0.952000pt;}
.wscb{word-spacing:-0.920000pt;}
.ws46{word-spacing:-0.912000pt;}
.ws41{word-spacing:-0.864000pt;}
.ws99{word-spacing:-0.858667pt;}
.ws5d{word-spacing:-0.821333pt;}
.ws1e{word-spacing:-0.816000pt;}
.ws3b{word-spacing:-0.800000pt;}
.ws43{word-spacing:-0.768000pt;}
.ws21{word-spacing:-0.725333pt;}
.ws6c{word-spacing:-0.720000pt;}
.ws47{word-spacing:-0.672000pt;}
.wsd4{word-spacing:-0.640000pt;}
.ws6f{word-spacing:-0.634667pt;}
.ws3d{word-spacing:-0.624000pt;}
.ws17{word-spacing:-0.576000pt;}
.wsc9{word-spacing:-0.533333pt;}
.ws16{word-spacing:-0.528000pt;}
.wscd{word-spacing:-0.520000pt;}
.ws97{word-spacing:-0.480000pt;}
.wscf{word-spacing:-0.440000pt;}
.ws10{word-spacing:-0.432000pt;}
.ws6e{word-spacing:-0.384000pt;}
.wsca{word-spacing:-0.360000pt;}
.ws4f{word-spacing:-0.336000pt;}
.ws40{word-spacing:-0.288000pt;}
.ws3a{word-spacing:-0.240000pt;}
.ws12{word-spacing:-0.192000pt;}
.wsbb{word-spacing:-0.160000pt;}
.ws98{word-spacing:-0.144000pt;}
.wsd7{word-spacing:-0.120000pt;}
.ws18{word-spacing:-0.096000pt;}
.ws20{word-spacing:-0.090667pt;}
.wsd8{word-spacing:-0.080000pt;}
.wsb9{word-spacing:-0.062400pt;}
.ws15{word-spacing:-0.048000pt;}
.wsce{word-spacing:-0.040000pt;}
.ws5e{word-spacing:-0.031200pt;}
.ws7{word-spacing:0.000000pt;}
.wsde{word-spacing:0.040000pt;}
.ws11{word-spacing:0.048000pt;}
.wse3{word-spacing:0.080000pt;}
.ws44{word-spacing:0.096000pt;}
.ws24{word-spacing:0.136000pt;}
.ws4d{word-spacing:0.144000pt;}
.ws39{word-spacing:0.160000pt;}
.ws35{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.240000pt;}
.ws3f{word-spacing:0.288000pt;}
.ws95{word-spacing:0.336000pt;}
.ws1a{word-spacing:0.384000pt;}
.ws3e{word-spacing:0.432000pt;}
.wsd2{word-spacing:0.520000pt;}
.ws96{word-spacing:0.528000pt;}
.wsbf{word-spacing:0.533333pt;}
.wsd3{word-spacing:0.560000pt;}
.ws49{word-spacing:0.576000pt;}
.ws4b{word-spacing:0.624000pt;}
.ws78{word-spacing:0.634667pt;}
.ws3c{word-spacing:0.640000pt;}
.ws13{word-spacing:0.672000pt;}
.ws4a{word-spacing:0.720000pt;}
.wsd9{word-spacing:0.880000pt;}
.wsbc{word-spacing:0.912000pt;}
.ws14{word-spacing:1.104000pt;}
.wsd5{word-spacing:1.120000pt;}
.ws1d{word-spacing:1.133333pt;}
.wsc2{word-spacing:1.152000pt;}
.wsd6{word-spacing:1.160000pt;}
.wse0{word-spacing:1.240000pt;}
.ws4e{word-spacing:1.392000pt;}
.wse7{word-spacing:1.488000pt;}
.wse1{word-spacing:1.520000pt;}
.ws85{word-spacing:1.536000pt;}
.wse2{word-spacing:1.560000pt;}
.wse6{word-spacing:1.720000pt;}
.ws6d{word-spacing:1.728000pt;}
.ws36{word-spacing:1.776000pt;}
.wse4{word-spacing:2.160000pt;}
.wsad{word-spacing:2.762667pt;}
.wse5{word-spacing:2.800000pt;}
.wsd0{word-spacing:3.280000pt;}
.wsf{word-spacing:3.888000pt;}
.wsba{word-spacing:4.368000pt;}
.ws51{word-spacing:13.104000pt;}
.ws9c{word-spacing:34.201067pt;}
.ws8f{word-spacing:34.234667pt;}
.ws90{word-spacing:34.458667pt;}
.ws72{word-spacing:41.104000pt;}
.ws9e{word-spacing:58.057067pt;}
.wsa2{word-spacing:60.965333pt;}
.ws93{word-spacing:61.114667pt;}
.ws71{word-spacing:64.474667pt;}
.ws70{word-spacing:65.632000pt;}
.ws92{word-spacing:74.293333pt;}
.wsa6{word-spacing:80.453333pt;}
.wsa8{word-spacing:81.461333pt;}
.wsa0{word-spacing:85.866667pt;}
.ws7c{word-spacing:86.874667pt;}
.ws56{word-spacing:88.330667pt;}
.ws73{word-spacing:95.834667pt;}
.ws76{word-spacing:97.440000pt;}
.ws7a{word-spacing:104.794667pt;}
.ws84{word-spacing:111.776000pt;}
.ws83{word-spacing:113.754667pt;}
.ws61{word-spacing:114.464000pt;}
.ws7e{word-spacing:114.576000pt;}
.ws7b{word-spacing:116.554667pt;}
.ws82{word-spacing:116.592000pt;}
.ws81{word-spacing:116.890667pt;}
.ws7f{word-spacing:119.840000pt;}
.ws55{word-spacing:120.474667pt;}
.ws74{word-spacing:125.178667pt;}
.ws7d{word-spacing:128.949333pt;}
.ws80{word-spacing:131.002667pt;}
.ws58{word-spacing:133.242667pt;}
.ws60{word-spacing:133.806400pt;}
.ws75{word-spacing:137.274667pt;}
.ws5a{word-spacing:142.613333pt;}
.wsa7{word-spacing:144.405333pt;}
.ws8c{word-spacing:146.272000pt;}
.ws9f{word-spacing:147.952000pt;}
.ws5c{word-spacing:151.834667pt;}
.ws9b{word-spacing:178.192000pt;}
.ws67{word-spacing:197.157333pt;}
.ws65{word-spacing:199.920000pt;}
.ws69{word-spacing:210.074667pt;}
.ws63{word-spacing:214.144000pt;}
.ws6b{word-spacing:216.085333pt;}
.ws59{word-spacing:274.512000pt;}
.ws57{word-spacing:274.698667pt;}
.ws8d{word-spacing:282.953067pt;}
.ws5b{word-spacing:284.106667pt;}
.ws64{word-spacing:286.496000pt;}
.ws66{word-spacing:288.848000pt;}
.ws62{word-spacing:299.301333pt;}
.ws68{word-spacing:301.578667pt;}
.ws9d{word-spacing:304.531733pt;}
.ws6a{word-spacing:307.962667pt;}
.wsa9{word-spacing:413.392000pt;}
.wsa5{word-spacing:421.273067pt;}
.wsa3{word-spacing:429.370667pt;}
.wsaa{word-spacing:432.921067pt;}
.wsa4{word-spacing:445.577067pt;}
.wsa1{word-spacing:457.859733pt;}
.ws52{word-spacing:486.602667pt;}
.ws5f{word-spacing:529.125333pt;}
._8{margin-left:-12.625067pt;}
._84{margin-left:-11.656000pt;}
._9{margin-left:-10.677867pt;}
._e{margin-left:-9.322667pt;}
._d{margin-left:-7.370133pt;}
._1{margin-left:-6.156800pt;}
._81{margin-left:-5.117867pt;}
._6{margin-left:-4.149333pt;}
._3{margin-left:-3.253333pt;}
._0{margin-left:-1.578667pt;}
._4{width:0.949867pt;}
._7{width:2.511467pt;}
._5{width:3.947733pt;}
._2{width:5.297067pt;}
._b{width:6.871467pt;}
._6d{width:9.693867pt;}
._c{width:10.636800pt;}
._82{width:11.701333pt;}
._a{width:42.957867pt;}
._83{width:44.317333pt;}
._68{width:62.021333pt;}
._4e{width:70.629867pt;}
._4c{width:72.041067pt;}
._6f{width:79.776000pt;}
._67{width:87.210667pt;}
._63{width:90.805333pt;}
._57{width:95.285333pt;}
._58{width:96.880000pt;}
._66{width:98.474667pt;}
._59{width:99.568000pt;}
._5e{width:100.848000pt;}
._17{width:102.069333pt;}
._4f{width:104.245333pt;}
._5d{width:105.280000pt;}
._50{width:106.661333pt;}
._5b{width:108.416000pt;}
._51{width:109.658667pt;}
._14{width:110.917333pt;}
._5c{width:112.037333pt;}
._4d{width:113.205333pt;}
._56{width:114.576000pt;}
._54{width:115.733333pt;}
._62{width:117.402667pt;}
._5a{width:118.384000pt;}
._52{width:120.250667pt;}
._18{width:121.370667pt;}
._16{width:122.389333pt;}
._53{width:123.872000pt;}
._2c{width:125.220800pt;}
._64{width:126.112000pt;}
._5f{width:127.904000pt;}
._13{width:128.949333pt;}
._10{width:130.032000pt;}
._55{width:131.125333pt;}
._61{width:132.272000pt;}
._27{width:133.765333pt;}
._22{width:134.960000pt;}
._65{width:135.866667pt;}
._20{width:137.274667pt;}
._12{width:139.701333pt;}
._1e{width:141.493333pt;}
._1c{width:143.658667pt;}
._25{width:145.936000pt;}
._60{width:149.045333pt;}
._79{width:149.994667pt;}
._1a{width:152.058667pt;}
._69{width:158.106667pt;}
._29{width:162.383467pt;}
._74{width:166.996800pt;}
._32{width:171.808000pt;}
._4a{width:179.685333pt;}
._2f{width:180.768000pt;}
._3a{width:185.509333pt;}
._7d{width:190.944000pt;}
._78{width:192.314667pt;}
._39{width:194.469333pt;}
._44{width:199.509333pt;}
._3d{width:201.002667pt;}
._47{width:203.317333pt;}
._31{width:209.178667pt;}
._46{width:210.410667pt;}
._35{width:214.629333pt;}
._40{width:217.765333pt;}
._7f{width:221.397333pt;}
._42{width:225.605333pt;}
._2e{width:227.808000pt;}
._37{width:228.928000pt;}
._70{width:233.972800pt;}
._71{width:235.968000pt;}
._6e{width:239.877333pt;}
._3f{width:242.890667pt;}
._f{width:249.061333pt;}
._23{width:255.818667pt;}
._15{width:263.882667pt;}
._7e{width:265.488000pt;}
._26{width:266.496000pt;}
._21{width:268.437333pt;}
._1f{width:270.341333pt;}
._11{width:271.685333pt;}
._49{width:272.618667pt;}
._1d{width:274.224000pt;}
._3b{width:277.882667pt;}
._24{width:279.338667pt;}
._80{width:283.322667pt;}
._19{width:284.789333pt;}
._1b{width:285.797333pt;}
._38{width:286.842667pt;}
._43{width:292.144000pt;}
._3c{width:293.301333pt;}
._28{width:295.056000pt;}
._7a{width:295.989333pt;}
._72{width:296.896000pt;}
._33{width:301.216000pt;}
._45{width:303.008000pt;}
._48{width:303.904000pt;}
._34{width:306.965333pt;}
._30{width:310.624000pt;}
._7c{width:312.042667pt;}
._76{width:316.773333pt;}
._41{width:317.904000pt;}
._2d{width:320.106667pt;}
._36{width:321.226667pt;}
._73{width:323.989333pt;}
._6c{width:329.317333pt;}
._3e{width:335.189333pt;}
._6b{width:338.277333pt;}
._4b{width:345.370667pt;}
._6a{width:347.237333pt;}
._7b{width:360.725333pt;}
._77{width:389.760000pt;}
._75{width:417.984000pt;}
._2b{width:518.720000pt;}
._2a{width:527.680000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y2f{bottom:60.728800pt;}
.y133{bottom:60.934667pt;}
.y94{bottom:61.806933pt;}
.yc2{bottom:63.157600pt;}
.y86{bottom:65.860267pt;}
.y177{bottom:66.485600pt;}
.y1b5{bottom:67.153600pt;}
.y60{bottom:68.490933pt;}
.y15c{bottom:71.140267pt;}
.y129{bottom:73.982933pt;}
.y2e{bottom:74.056800pt;}
.y132{bottom:74.268000pt;}
.y93{bottom:75.138933pt;}
.yc1{bottom:76.489600pt;}
.y85{bottom:79.192267pt;}
.y176{bottom:79.817600pt;}
.y1b4{bottom:80.485600pt;}
.y23e{bottom:81.299600pt;}
.y5f{bottom:81.822933pt;}
.y15b{bottom:84.472267pt;}
.y2d{bottom:87.384800pt;}
.y131{bottom:87.601333pt;}
.y92{bottom:88.470933pt;}
.yc0{bottom:89.821600pt;}
.y13b{bottom:90.725733pt;}
.y84{bottom:92.524267pt;}
.y23d{bottom:92.629600pt;}
.y128{bottom:92.666933pt;}
.y175{bottom:93.153600pt;}
.y1b3{bottom:93.817600pt;}
.y5e{bottom:95.154933pt;}
.y1f8{bottom:95.818933pt;}
.y15a{bottom:97.804267pt;}
.y2c{bottom:100.718133pt;}
.y130{bottom:100.936000pt;}
.y91{bottom:101.808267pt;}
.ybf{bottom:103.153600pt;}
.y23c{bottom:103.959600pt;}
.y13a{bottom:104.057733pt;}
.y83{bottom:105.856267pt;}
.y174{bottom:106.485600pt;}
.y1b2{bottom:107.152267pt;}
.y127{bottom:108.169600pt;}
.y5d{bottom:108.486933pt;}
.y1f7{bottom:109.150933pt;}
.y159{bottom:111.146933pt;}
.y2b{bottom:114.051467pt;}
.y12f{bottom:114.268000pt;}
.y90{bottom:115.140267pt;}
.y23b{bottom:115.289600pt;}
.ybe{bottom:116.485600pt;}
.y139{bottom:117.389733pt;}
.y82{bottom:119.188267pt;}
.y173{bottom:119.817600pt;}
.y1b1{bottom:120.484267pt;}
.y5c{bottom:121.818933pt;}
.y1f6{bottom:122.488267pt;}
.y126{bottom:123.672267pt;}
.y158{bottom:124.478933pt;}
.y23a{bottom:126.619600pt;}
.y2a{bottom:127.384800pt;}
.y12e{bottom:127.600000pt;}
.y8f{bottom:128.472267pt;}
.ybd{bottom:129.817600pt;}
.y138{bottom:130.721733pt;}
.y81{bottom:132.520267pt;}
.y172{bottom:133.153600pt;}
.y1b0{bottom:133.828267pt;}
.y5b{bottom:135.150933pt;}
.y1f5{bottom:135.820267pt;}
.y157{bottom:137.810933pt;}
.y239{bottom:137.949600pt;}
.y125{bottom:139.174933pt;}
.y12d{bottom:140.933333pt;}
.y8e{bottom:141.804267pt;}
.ybc{bottom:143.150933pt;}
.y137{bottom:144.053733pt;}
.y29{bottom:144.566133pt;}
.y80{bottom:145.852267pt;}
.y171{bottom:146.485600pt;}
.y1af{bottom:147.160267pt;}
.y5a{bottom:148.492267pt;}
.y1f4{bottom:149.152267pt;}
.y238{bottom:149.279600pt;}
.y156{bottom:151.142933pt;}
.y124{bottom:154.677600pt;}
.y8d{bottom:155.136267pt;}
.ybb{bottom:156.482933pt;}
.y136{bottom:157.385733pt;}
.y7f{bottom:159.184267pt;}
.y170{bottom:159.817600pt;}
.y1ae{bottom:160.492267pt;}
.y237{bottom:160.609600pt;}
.y59{bottom:161.824267pt;}
.y1f3{bottom:162.484267pt;}
.y155{bottom:164.474933pt;}
.y12c{bottom:169.318933pt;}
.y123{bottom:170.180267pt;}
.y236{bottom:171.939600pt;}
.y7e{bottom:172.516267pt;}
.y16f{bottom:173.153600pt;}
.y1ad{bottom:173.824267pt;}
.y58{bottom:175.156267pt;}
.y1f2{bottom:175.818933pt;}
.y28{bottom:176.610933pt;}
.y154{bottom:177.806933pt;}
.y12b{bottom:182.650933pt;}
.y235{bottom:183.269600pt;}
.y122{bottom:185.682933pt;}
.yba{bottom:185.817600pt;}
.y7d{bottom:185.848267pt;}
.y16e{bottom:186.485600pt;}
.y1ac{bottom:187.156267pt;}
.y57{bottom:188.488267pt;}
.y1f1{bottom:189.150933pt;}
.y27{bottom:189.942933pt;}
.y153{bottom:191.138933pt;}
.y234{bottom:194.599600pt;}
.y12a{bottom:195.982933pt;}
.yb9{bottom:199.153600pt;}
.y7c{bottom:199.180267pt;}
.y16d{bottom:199.817600pt;}
.y1ab{bottom:200.488267pt;}
.y121{bottom:201.185600pt;}
.y56{bottom:201.820267pt;}
.y1f0{bottom:202.482933pt;}
.y26{bottom:203.276267pt;}
.yb5{bottom:204.121733pt;}
.y152{bottom:204.470933pt;}
.y233{bottom:205.929600pt;}
.yb8{bottom:212.485600pt;}
.y7b{bottom:212.512267pt;}
.y16c{bottom:213.153600pt;}
.y1aa{bottom:213.820267pt;}
.y55{bottom:215.152267pt;}
.y25{bottom:216.614933pt;}
.y120{bottom:216.688267pt;}
.y232{bottom:217.259600pt;}
.yb4{bottom:217.453733pt;}
.y151{bottom:217.808267pt;}
.yb7{bottom:225.817600pt;}
.y7a{bottom:225.844267pt;}
.y16b{bottom:226.485600pt;}
.y1a9{bottom:227.152267pt;}
.y54{bottom:228.484267pt;}
.y231{bottom:228.589600pt;}
.y24{bottom:229.946933pt;}
.yb3{bottom:230.785733pt;}
.y150{bottom:231.140267pt;}
.y1ef{bottom:231.829600pt;}
.y11f{bottom:232.190933pt;}
.y135{bottom:238.650933pt;}
.yb6{bottom:239.149600pt;}
.y79{bottom:239.176267pt;}
.y16a{bottom:239.817600pt;}
.y230{bottom:239.919600pt;}
.y1a8{bottom:240.484267pt;}
.y53{bottom:241.816267pt;}
.y23{bottom:243.278933pt;}
.y14f{bottom:244.472267pt;}
.y1ee{bottom:245.161600pt;}
.y11e{bottom:247.693600pt;}
.y22f{bottom:251.249600pt;}
.y134{bottom:251.982933pt;}
.y78{bottom:252.508267pt;}
.y169{bottom:253.149600pt;}
.y1a7{bottom:253.816267pt;}
.y275{bottom:254.042000pt;}
.y52{bottom:255.149600pt;}
.y22{bottom:256.610933pt;}
.y14e{bottom:257.804267pt;}
.y1ed{bottom:258.493600pt;}
.y22e{bottom:262.579600pt;}
.y11d{bottom:263.196267pt;}
.y77{bottom:265.840267pt;}
.y274{bottom:267.374000pt;}
.y21{bottom:269.942933pt;}
.y14d{bottom:271.140267pt;}
.y1ec{bottom:271.825600pt;}
.y22d{bottom:273.909600pt;}
.y11c{bottom:278.698933pt;}
.y76{bottom:279.172267pt;}
.y273{bottom:280.706000pt;}
.y20{bottom:283.296267pt;}
.y14c{bottom:284.472267pt;}
.y51{bottom:284.489600pt;}
.y1eb{bottom:285.157600pt;}
.y22c{bottom:285.239600pt;}
.y75{bottom:292.504267pt;}
.y272{bottom:294.038000pt;}
.y11b{bottom:294.201600pt;}
.yee{bottom:295.150933pt;}
.y22b{bottom:296.569600pt;}
.y1f{bottom:296.628267pt;}
.y14b{bottom:297.804267pt;}
.y50{bottom:297.821600pt;}
.y1ea{bottom:298.489600pt;}
.y1b8{bottom:298.721733pt;}
.y1a6{bottom:300.150933pt;}
.y74{bottom:305.836267pt;}
.y271{bottom:307.370000pt;}
.y22a{bottom:307.899600pt;}
.yed{bottom:308.482933pt;}
.y11a{bottom:309.704267pt;}
.y1e{bottom:309.960267pt;}
.y14a{bottom:311.138933pt;}
.y4f{bottom:311.153600pt;}
.y1e9{bottom:311.821600pt;}
.y1b7{bottom:312.053733pt;}
.y1a5{bottom:313.482933pt;}
.y73{bottom:319.168267pt;}
.y229{bottom:319.229600pt;}
.y1d{bottom:323.292267pt;}
.y149{bottom:324.470933pt;}
.y4e{bottom:324.485600pt;}
.y1e8{bottom:325.153600pt;}
.y119{bottom:325.206933pt;}
.y1b6{bottom:325.385733pt;}
.y270{bottom:330.486933pt;}
.y228{bottom:330.559600pt;}
.y72{bottom:332.500267pt;}
.yec{bottom:335.206933pt;}
.y1c{bottom:336.624267pt;}
.y148{bottom:337.809600pt;}
.y4d{bottom:337.817600pt;}
.y1e7{bottom:338.485600pt;}
.y1a4{bottom:340.476267pt;}
.y118{bottom:340.709600pt;}
.y227{bottom:341.889600pt;}
.y26f{bottom:343.818933pt;}
.y71{bottom:345.832267pt;}
.y1b{bottom:349.956267pt;}
.yeb{bottom:350.709600pt;}
.y147{bottom:351.141600pt;}
.y4c{bottom:351.149600pt;}
.y1e6{bottom:351.817600pt;}
.y226{bottom:353.219600pt;}
.y1a3{bottom:355.978933pt;}
.y117{bottom:356.212267pt;}
.y70{bottom:359.164267pt;}
.y26e{bottom:363.150933pt;}
.y1a{bottom:363.288267pt;}
.y146{bottom:364.473600pt;}
.y4b{bottom:364.482933pt;}
.y225{bottom:364.549600pt;}
.y1e5{bottom:365.162933pt;}
.yea{bottom:366.212267pt;}
.y1a2{bottom:371.472267pt;}
.y116{bottom:371.714933pt;}
.y6f{bottom:372.496267pt;}
.y224{bottom:375.879600pt;}
.y1a1{bottom:376.465600pt;}
.y19{bottom:376.620267pt;}
.y145{bottom:377.805600pt;}
.y1e4{bottom:378.494933pt;}
.ye9{bottom:381.714933pt;}
.y26d{bottom:382.482933pt;}
.y6e{bottom:385.828267pt;}
.y223{bottom:387.209600pt;}
.y115{bottom:387.217600pt;}
.y18{bottom:389.952267pt;}
.y144{bottom:391.137600pt;}
.y1e3{bottom:391.826933pt;}
.y4a{bottom:393.820267pt;}
.y26c{bottom:395.816267pt;}
.y1a0{bottom:396.961600pt;}
.ye8{bottom:397.217600pt;}
.y222{bottom:398.539600pt;}
.y6d{bottom:399.160267pt;}
.y114{bottom:402.720267pt;}
.y143{bottom:404.473600pt;}
.y1e2{bottom:405.158933pt;}
.y49{bottom:407.152267pt;}
.y221{bottom:409.869600pt;}
.y19f{bottom:412.464267pt;}
.y6c{bottom:412.492267pt;}
.ye7{bottom:412.720267pt;}
.y142{bottom:417.805600pt;}
.y113{bottom:418.222933pt;}
.y1e1{bottom:418.490933pt;}
.y26b{bottom:419.818933pt;}
.y48{bottom:420.484267pt;}
.y220{bottom:421.199600pt;}
.y6b{bottom:425.824267pt;}
.y19e{bottom:427.966933pt;}
.ye6{bottom:428.222933pt;}
.y141{bottom:431.137600pt;}
.y1e0{bottom:431.822933pt;}
.y17{bottom:431.952267pt;}
.y21f{bottom:432.529600pt;}
.y26a{bottom:433.150933pt;}
.y112{bottom:433.725600pt;}
.y47{bottom:433.817600pt;}
.y6a{bottom:439.156267pt;}
.y19d{bottom:443.460267pt;}
.ye5{bottom:443.725600pt;}
.y21e{bottom:443.859600pt;}
.y140{bottom:444.474933pt;}
.y1df{bottom:445.154933pt;}
.y269{bottom:446.482933pt;}
.y16{bottom:446.616267pt;}
.y46{bottom:447.157600pt;}
.y19c{bottom:448.453600pt;}
.y111{bottom:449.228267pt;}
.y69{bottom:452.488267pt;}
.y21d{bottom:455.189600pt;}
.y13f{bottom:457.806933pt;}
.y1de{bottom:458.486933pt;}
.ye4{bottom:459.228267pt;}
.y268{bottom:459.816267pt;}
.y45{bottom:460.489600pt;}
.y15{bottom:461.280267pt;}
.y110{bottom:464.730933pt;}
.y68{bottom:465.820267pt;}
.y21c{bottom:466.519600pt;}
.y19b{bottom:468.949600pt;}
.y13e{bottom:471.138933pt;}
.y1dd{bottom:471.818933pt;}
.y44{bottom:473.821600pt;}
.ye3{bottom:474.730933pt;}
.y14{bottom:475.944267pt;}
.y21b{bottom:477.849600pt;}
.y67{bottom:479.152267pt;}
.y10f{bottom:480.233600pt;}
.y267{bottom:483.828267pt;}
.y19a{bottom:484.442933pt;}
.y13d{bottom:484.470933pt;}
.y1dc{bottom:485.150933pt;}
.y43{bottom:487.153600pt;}
.y21a{bottom:489.179600pt;}
.y199{bottom:489.436267pt;}
.ye2{bottom:490.233600pt;}
.y13{bottom:490.632267pt;}
.y66{bottom:492.484267pt;}
.y10e{bottom:495.736267pt;}
.y266{bottom:497.160267pt;}
.y13c{bottom:497.802933pt;}
.y1db{bottom:498.482933pt;}
.y42{bottom:500.485600pt;}
.y219{bottom:500.509600pt;}
.y12{bottom:505.296267pt;}
.ye1{bottom:505.736267pt;}
.y65{bottom:505.816267pt;}
.y198{bottom:509.932267pt;}
.yb2{bottom:509.982933pt;}
.y265{bottom:510.492267pt;}
.y10d{bottom:511.238933pt;}
.y1da{bottom:511.816267pt;}
.y218{bottom:511.839600pt;}
.y41{bottom:513.817600pt;}
.y197{bottom:514.925600pt;}
.y11{bottom:519.960267pt;}
.ye0{bottom:521.238933pt;}
.y217{bottom:523.169600pt;}
.y264{bottom:523.824267pt;}
.y10c{bottom:526.741600pt;}
.y40{bottom:527.150933pt;}
.y216{bottom:534.499600pt;}
.y10{bottom:534.624267pt;}
.y196{bottom:535.421600pt;}
.ydf{bottom:536.741600pt;}
.yb1{bottom:536.744267pt;}
.y263{bottom:537.156267pt;}
.y3f{bottom:540.485600pt;}
.y1d9{bottom:541.166933pt;}
.y10b{bottom:542.244267pt;}
.y168{bottom:543.637600pt;}
.y215{bottom:545.829600pt;}
.yf{bottom:549.288267pt;}
.y262{bottom:550.488267pt;}
.y195{bottom:550.924267pt;}
.yde{bottom:552.244267pt;}
.yb0{bottom:552.246933pt;}
.y3e{bottom:553.817600pt;}
.y1d8{bottom:554.498933pt;}
.y167{bottom:556.969600pt;}
.y214{bottom:557.159600pt;}
.y10a{bottom:557.746933pt;}
.y8c{bottom:561.601733pt;}
.y261{bottom:563.820267pt;}
.ye{bottom:563.952267pt;}
.y194{bottom:566.426933pt;}
.y3d{bottom:567.152267pt;}
.ydd{bottom:567.746933pt;}
.yaf{bottom:567.749600pt;}
.y1d7{bottom:567.830933pt;}
.y213{bottom:568.489600pt;}
.y109{bottom:573.249600pt;}
.y8b{bottom:574.933733pt;}
.y260{bottom:577.152267pt;}
.yd{bottom:578.616267pt;}
.y212{bottom:579.819600pt;}
.y3c{bottom:580.484267pt;}
.y1d6{bottom:581.162933pt;}
.y193{bottom:581.929600pt;}
.ydc{bottom:583.249600pt;}
.yae{bottom:583.252267pt;}
.y166{bottom:583.789600pt;}
.y8a{bottom:588.269733pt;}
.y108{bottom:588.752267pt;}
.y25f{bottom:590.484267pt;}
.y211{bottom:591.149600pt;}
.yc{bottom:593.280267pt;}
.y3b{bottom:593.817600pt;}
.y1d5{bottom:594.494933pt;}
.y192{bottom:597.432267pt;}
.ydb{bottom:598.752267pt;}
.yad{bottom:598.754933pt;}
.y165{bottom:599.292267pt;}
.y89{bottom:601.601733pt;}
.y210{bottom:602.482933pt;}
.y25e{bottom:603.816267pt;}
.y107{bottom:604.254933pt;}
.y3a{bottom:607.152267pt;}
.y1d4{bottom:607.826933pt;}
.yb{bottom:607.944267pt;}
.y191{bottom:612.934933pt;}
.yda{bottom:614.254933pt;}
.yac{bottom:614.257600pt;}
.y164{bottom:614.794933pt;}
.y88{bottom:614.933733pt;}
.y25d{bottom:617.149600pt;}
.y106{bottom:619.757600pt;}
.y39{bottom:620.484267pt;}
.y1d3{bottom:621.158933pt;}
.ya{bottom:622.608267pt;}
.y87{bottom:628.265733pt;}
.y190{bottom:628.437600pt;}
.yd9{bottom:629.757600pt;}
.yab{bottom:629.760267pt;}
.y163{bottom:630.297600pt;}
.y20f{bottom:631.832267pt;}
.y38{bottom:633.818933pt;}
.y1d2{bottom:634.490933pt;}
.y105{bottom:635.260267pt;}
.y25c{bottom:641.246267pt;}
.y18f{bottom:643.940267pt;}
.y20e{bottom:645.164267pt;}
.yd8{bottom:645.260267pt;}
.yaa{bottom:645.262933pt;}
.y162{bottom:645.800267pt;}
.y37{bottom:647.150933pt;}
.y1d1{bottom:647.822933pt;}
.y9{bottom:649.274933pt;}
.y104{bottom:650.762933pt;}
.y25b{bottom:652.576267pt;}
.y20d{bottom:658.496267pt;}
.y18e{bottom:659.442933pt;}
.y36{bottom:660.484267pt;}
.yd7{bottom:660.762933pt;}
.ya9{bottom:660.765600pt;}
.y1d0{bottom:661.154933pt;}
.y160{bottom:661.302933pt;}
.y25a{bottom:663.906267pt;}
.y8{bottom:665.274933pt;}
.y103{bottom:666.265600pt;}
.y20c{bottom:671.828267pt;}
.y32{bottom:672.933333pt;}
.y35{bottom:673.816267pt;}
.y1cf{bottom:674.486933pt;}
.y18d{bottom:674.936267pt;}
.y259{bottom:675.236267pt;}
.yd6{bottom:676.265600pt;}
.ya8{bottom:676.268267pt;}
.y161{bottom:676.805600pt;}
.y18c{bottom:679.929600pt;}
.y102{bottom:681.768267pt;}
.y20b{bottom:685.160267pt;}
.y258{bottom:686.566267pt;}
.y1ce{bottom:687.818933pt;}
.y31{bottom:691.600000pt;}
.yd5{bottom:691.768267pt;}
.ya7{bottom:691.770933pt;}
.y7{bottom:694.592267pt;}
.y101{bottom:697.270933pt;}
.y257{bottom:697.896267pt;}
.y20a{bottom:698.492267pt;}
.y18b{bottom:700.425600pt;}
.y1cd{bottom:701.150933pt;}
.y18a{bottom:705.418933pt;}
.yd4{bottom:707.270933pt;}
.ya6{bottom:707.273600pt;}
.y256{bottom:709.226267pt;}
.y30{bottom:710.266667pt;}
.y209{bottom:711.824267pt;}
.y100{bottom:712.773600pt;}
.y1cc{bottom:714.484267pt;}
.y64{bottom:719.788400pt;}
.y255{bottom:720.556267pt;}
.yd3{bottom:722.773600pt;}
.ya5{bottom:722.776267pt;}
.y208{bottom:725.156267pt;}
.y189{bottom:725.914933pt;}
.y15f{bottom:725.920400pt;}
.y1cb{bottom:727.818933pt;}
.yff{bottom:728.276267pt;}
.y188{bottom:730.908267pt;}
.y254{bottom:731.886267pt;}
.y63{bottom:733.120400pt;}
.y6{bottom:734.597600pt;}
.yd2{bottom:738.276267pt;}
.ya4{bottom:738.278933pt;}
.y207{bottom:738.488267pt;}
.y15e{bottom:739.253733pt;}
.y1ca{bottom:741.150933pt;}
.y253{bottom:743.216267pt;}
.yfe{bottom:743.778933pt;}
.y62{bottom:746.453733pt;}
.y187{bottom:751.404267pt;}
.y206{bottom:751.820267pt;}
.y15d{bottom:752.585733pt;}
.yd1{bottom:753.778933pt;}
.ya3{bottom:753.781600pt;}
.y1c9{bottom:754.484267pt;}
.y252{bottom:754.546267pt;}
.y186{bottom:756.397600pt;}
.yfd{bottom:759.281600pt;}
.y61{bottom:759.785733pt;}
.y205{bottom:765.152267pt;}
.y251{bottom:765.876267pt;}
.y1c8{bottom:767.820267pt;}
.yd0{bottom:769.281600pt;}
.ya2{bottom:769.284267pt;}
.y5{bottom:774.602933pt;}
.yfc{bottom:774.784267pt;}
.y185{bottom:776.893600pt;}
.y250{bottom:777.206267pt;}
.y204{bottom:778.484267pt;}
.y1c7{bottom:781.152267pt;}
.y184{bottom:781.886933pt;}
.ycf{bottom:784.784267pt;}
.ya1{bottom:784.786933pt;}
.y24f{bottom:788.536267pt;}
.yfb{bottom:790.286933pt;}
.y203{bottom:791.818933pt;}
.y1c6{bottom:794.484267pt;}
.y24e{bottom:799.866267pt;}
.yce{bottom:800.286933pt;}
.ya0{bottom:800.289600pt;}
.y183{bottom:802.382933pt;}
.y202{bottom:805.150933pt;}
.yfa{bottom:805.789600pt;}
.y1c5{bottom:807.818933pt;}
.y24d{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.ycd{bottom:815.789600pt;}
.y9f{bottom:815.792267pt;}
.y182{bottom:817.876267pt;}
.y201{bottom:818.482933pt;}
.y1c4{bottom:821.150933pt;}
.yf9{bottom:821.292267pt;}
.y24c{bottom:822.526267pt;}
.y181{bottom:822.869600pt;}
.y33{bottom:823.475200pt;}
.ycc{bottom:831.292267pt;}
.y9e{bottom:831.294933pt;}
.y24b{bottom:833.856267pt;}
.y1c3{bottom:834.484267pt;}
.yf8{bottom:836.794933pt;}
.y180{bottom:843.365600pt;}
.y24a{bottom:845.186267pt;}
.ycb{bottom:846.794933pt;}
.y9d{bottom:846.797600pt;}
.y200{bottom:847.818933pt;}
.y1c2{bottom:847.822933pt;}
.yf7{bottom:852.297600pt;}
.y249{bottom:856.516267pt;}
.y17f{bottom:858.858933pt;}
.y1ff{bottom:861.150933pt;}
.y1c1{bottom:861.154933pt;}
.yca{bottom:862.297600pt;}
.y9c{bottom:862.300267pt;}
.y17e{bottom:863.852267pt;}
.yf6{bottom:867.800267pt;}
.y248{bottom:867.846267pt;}
.y1fe{bottom:874.485600pt;}
.y1c0{bottom:874.486933pt;}
.yc9{bottom:877.800267pt;}
.y9b{bottom:877.802933pt;}
.y247{bottom:879.176267pt;}
.yf5{bottom:883.302933pt;}
.y17d{bottom:884.348267pt;}
.y1fd{bottom:887.817600pt;}
.y1bf{bottom:887.818933pt;}
.y17c{bottom:889.341600pt;}
.y246{bottom:890.506267pt;}
.yc8{bottom:893.302933pt;}
.y9a{bottom:893.305600pt;}
.yf4{bottom:898.805600pt;}
.y1be{bottom:901.150933pt;}
.y1fc{bottom:901.153600pt;}
.y245{bottom:901.836267pt;}
.yc7{bottom:908.805600pt;}
.y99{bottom:908.808267pt;}
.y17b{bottom:909.837600pt;}
.y244{bottom:913.166267pt;}
.yf3{bottom:914.308267pt;}
.y1fb{bottom:914.485600pt;}
.y1bd{bottom:914.486933pt;}
.y17a{bottom:914.830933pt;}
.yc6{bottom:924.308267pt;}
.y98{bottom:924.310933pt;}
.y243{bottom:924.496267pt;}
.y1fa{bottom:927.817600pt;}
.y1bc{bottom:927.818933pt;}
.yf2{bottom:929.810933pt;}
.y179{bottom:935.326933pt;}
.y242{bottom:935.826267pt;}
.yc5{bottom:939.810933pt;}
.y97{bottom:939.813600pt;}
.y178{bottom:940.320267pt;}
.y1bb{bottom:941.150933pt;}
.y1f9{bottom:941.152267pt;}
.yf1{bottom:945.313600pt;}
.y241{bottom:947.156267pt;}
.y1ba{bottom:954.484267pt;}
.yc4{bottom:955.313600pt;}
.y95{bottom:955.316267pt;}
.y240{bottom:958.486267pt;}
.yef{bottom:960.816267pt;}
.y1b9{bottom:967.816267pt;}
.y23f{bottom:969.816267pt;}
.yf0{bottom:970.812267pt;}
.yc3{bottom:970.816267pt;}
.y96{bottom:970.818933pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.he{height:21.193555pt;}
.h18{height:26.618667pt;}
.h17{height:26.656000pt;}
.h21{height:28.520000pt;}
.h22{height:28.560000pt;}
.h3{height:30.687500pt;}
.h10{height:32.605469pt;}
.h9{height:34.224000pt;}
.h15{height:34.272000pt;}
.h7{height:34.523438pt;}
.hf{height:36.585555pt;}
.h2{height:38.359375pt;}
.ha{height:38.480267pt;}
.h20{height:38.512267pt;}
.h1f{height:38.517600pt;}
.h1d{height:38.522933pt;}
.h14{height:38.528267pt;}
.h12{height:38.533600pt;}
.hb{height:38.538933pt;}
.h16{height:38.544267pt;}
.h1c{height:38.549600pt;}
.h1a{height:38.554400pt;}
.hd{height:38.554933pt;}
.h1b{height:38.559733pt;}
.hc{height:38.560267pt;}
.h19{height:38.565067pt;}
.h8{height:38.664234pt;}
.h4{height:39.318359pt;}
.h13{height:42.195312pt;}
.h6{height:43.066927pt;}
.h1e{height:46.629333pt;}
.h11{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x6{left:70.058933pt;}
.x7{left:83.754933pt;}
.x8{left:125.291333pt;}
.x4{left:207.516800pt;}
.xa{left:211.683467pt;}
.x5{left:223.514533pt;}
.x16{left:266.976400pt;}
.x14{left:332.148800pt;}
.xc{left:433.042133pt;}
.xb{left:442.870133pt;}
.x10{left:446.538133pt;}
.xf{left:476.908800pt;}
.xe{left:496.704667pt;}
.xd{left:497.610000pt;}
.x3{left:519.632533pt;}
.x13{left:531.872800pt;}
.x12{left:539.666133pt;}
.x11{left:725.336533pt;}
.x15{left:726.469467pt;}
.x9{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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