
    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_fd37fb724912d6806b01aea9.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_4bbcc4330d08188aa6898c5c.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_d8fea21b0c58181a41011c01.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_3e7dcfa5175c4d485ab5879d.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_3666002bdd0eb5a4bea2874a.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_459d5026afc370a883572fe9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_eb669df8645545ccccf3e39d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_050ba0987713609c0e822283.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f186cda4ce85be273cb62918.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4638b4dd9ad00db8425de332.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_de4e9244d0cba3d0ba20404f.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_7cdbd0dc9bc594b1a6cae4b5.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_966c30c89653825b534a6c67.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_130c406f10047f2ced7b9cae.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.956500;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_207a4a1a3546ca0549979bd9.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_77dc035b6a83953e1eb57e7d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.767000;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_d89b9ada2f7cfb553663e7cd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.700000;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_f186cda4ce85be273cb62918.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_4638b4dd9ad00db8425de332.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_de4e9244d0cba3d0ba20404f.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_7cdbd0dc9bc594b1a6cae4b5.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_4638b4dd9ad00db8425de332.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_de4e9244d0cba3d0ba20404f.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_7cdbd0dc9bc594b1a6cae4b5.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_4638b4dd9ad00db8425de332.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_de4e9244d0cba3d0ba20404f.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_7cdbd0dc9bc594b1a6cae4b5.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_bb6de4782dede06a512a2725.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.442472;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.806600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.186000px;}
.v1{vertical-align:20.400000px;}
.ls2f{letter-spacing:-5.292000px;}
.ls3f{letter-spacing:-1.890000px;}
.ls81{letter-spacing:-1.350000px;}
.ls27{letter-spacing:-1.188000px;}
.ls8a{letter-spacing:-1.080000px;}
.ls3c{letter-spacing:-1.026000px;}
.ls88{letter-spacing:-0.990000px;}
.ls8e{letter-spacing:-0.900000px;}
.ls86{letter-spacing:-0.855000px;}
.ls23{letter-spacing:-0.810000px;}
.ls2a{letter-spacing:-0.798000px;}
.ls84{letter-spacing:-0.720000px;}
.ls87{letter-spacing:-0.675000px;}
.ls26{letter-spacing:-0.648000px;}
.ls8b{letter-spacing:-0.585000px;}
.ls2b{letter-spacing:-0.546000px;}
.ls31{letter-spacing:-0.540000px;}
.ls3b{letter-spacing:-0.486000px;}
.ls71{letter-spacing:-0.450000px;}
.ls49{letter-spacing:-0.432000px;}
.ls3d{letter-spacing:-0.378000px;}
.ls93{letter-spacing:-0.360000px;}
.ls51{letter-spacing:-0.324000px;}
.ls8c{letter-spacing:-0.315000px;}
.ls50{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.255000px;}
.ls89{letter-spacing:-0.225000px;}
.ls11{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.210000px;}
.ls72{letter-spacing:-0.180000px;}
.ls28{letter-spacing:-0.168000px;}
.ls25{letter-spacing:-0.162000px;}
.ls14{letter-spacing:-0.140400px;}
.ls85{letter-spacing:-0.135000px;}
.ls64{letter-spacing:-0.120000px;}
.ls30{letter-spacing:-0.108000px;}
.ls3a{letter-spacing:-0.105300px;}
.ls82{letter-spacing:-0.090000px;}
.ls39{letter-spacing:-0.060000px;}
.ls2d{letter-spacing:-0.054000px;}
.ls6f{letter-spacing:-0.045000px;}
.ls2e{letter-spacing:-0.035100px;}
.ls10{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013200px;}
.ls4{letter-spacing:0.013800px;}
.lsd{letter-spacing:0.017250px;}
.ls2{letter-spacing:0.022800px;}
.ls73{letter-spacing:0.031500px;}
.ls4c{letter-spacing:0.035100px;}
.ls74{letter-spacing:0.045000px;}
.lsc{letter-spacing:0.051000px;}
.ls5{letter-spacing:0.054000px;}
.ls35{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.070200px;}
.ls8f{letter-spacing:0.090000px;}
.ls4a{letter-spacing:0.105300px;}
.lsb{letter-spacing:0.108000px;}
.ls56{letter-spacing:0.135000px;}
.ls48{letter-spacing:0.140400px;}
.ls57{letter-spacing:0.151200px;}
.ls53{letter-spacing:0.157950px;}
.ls52{letter-spacing:0.160200px;}
.ls9{letter-spacing:0.162000px;}
.ls36{letter-spacing:0.175500px;}
.ls68{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.183600px;}
.ls38{letter-spacing:0.205200px;}
.ls20{letter-spacing:0.210600px;}
.ls1a{letter-spacing:0.215400px;}
.ls12{letter-spacing:0.216000px;}
.ls70{letter-spacing:0.225000px;}
.ls58{letter-spacing:0.232200px;}
.lse{letter-spacing:0.237450px;}
.ls62{letter-spacing:0.238200px;}
.ls55{letter-spacing:0.243000px;}
.ls8{letter-spacing:0.246600px;}
.ls77{letter-spacing:0.247500px;}
.ls21{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.280800px;}
.ls61{letter-spacing:0.281400px;}
.ls4b{letter-spacing:0.291600px;}
.ls8d{letter-spacing:0.315000px;}
.ls4e{letter-spacing:0.315900px;}
.ls19{letter-spacing:0.324000px;}
.ls37{letter-spacing:0.334800px;}
.ls5e{letter-spacing:0.351000px;}
.ls2c{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378000px;}
.ls5b{letter-spacing:0.384000px;}
.ls40{letter-spacing:0.399600px;}
.ls69{letter-spacing:0.405000px;}
.ls17{letter-spacing:0.408000px;}
.ls67{letter-spacing:0.410400px;}
.ls24{letter-spacing:0.420000px;}
.ls7c{letter-spacing:0.427500px;}
.ls1e{letter-spacing:0.432000px;}
.ls6a{letter-spacing:0.450000px;}
.ls6d{letter-spacing:0.456300px;}
.ls44{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.486000px;}
.ls83{letter-spacing:0.495000px;}
.ls76{letter-spacing:0.517500px;}
.ls1c{letter-spacing:0.540000px;}
.ls45{letter-spacing:0.577800px;}
.ls7b{letter-spacing:0.585000px;}
.ls22{letter-spacing:0.594000px;}
.ls3e{letter-spacing:0.600000px;}
.ls78{letter-spacing:0.630000px;}
.ls34{letter-spacing:0.648000px;}
.ls33{letter-spacing:0.658800px;}
.ls90{letter-spacing:0.675000px;}
.ls6{letter-spacing:0.693600px;}
.ls41{letter-spacing:0.696600px;}
.ls46{letter-spacing:0.702000px;}
.ls80{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.729000px;}
.ls42{letter-spacing:0.756000px;}
.ls7f{letter-spacing:0.765000px;}
.ls5d{letter-spacing:0.810000px;}
.ls94{letter-spacing:0.855000px;}
.ls47{letter-spacing:0.864000px;}
.ls60{letter-spacing:0.918000px;}
.lsf{letter-spacing:0.960000px;}
.ls5f{letter-spacing:0.972000px;}
.ls75{letter-spacing:0.990000px;}
.ls63{letter-spacing:1.020000px;}
.ls4d{letter-spacing:1.026000px;}
.ls79{letter-spacing:1.035000px;}
.ls13{letter-spacing:1.080000px;}
.ls59{letter-spacing:1.134000px;}
.ls5a{letter-spacing:1.242000px;}
.ls54{letter-spacing:1.296000px;}
.ls66{letter-spacing:1.350000px;}
.ls6e{letter-spacing:1.380000px;}
.ls6b{letter-spacing:1.395000px;}
.ls7e{letter-spacing:1.440000px;}
.ls91{letter-spacing:1.458000px;}
.ls6c{letter-spacing:1.782000px;}
.ls65{letter-spacing:1.800000px;}
.ls43{letter-spacing:1.920000px;}
.ls7d{letter-spacing:2.430000px;}
.ls0{letter-spacing:2.592000px;}
.ls7a{letter-spacing:2.650500px;}
.ls18{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls5c{letter-spacing:4.620000px;}
.ls92{letter-spacing:4.920000px;}
.ls4f{letter-spacing:6.120000px;}
.ls1f{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;}
.ws23{word-spacing:-13.596000px;}
.ws85{word-spacing:-13.176000px;}
.ws48{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws6c{word-spacing:-12.312000px;}
.ws4b{word-spacing:-12.258000px;}
.ws3c{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws47{word-spacing:-12.042000px;}
.ws53{word-spacing:-11.988000px;}
.ws3d{word-spacing:-11.826000px;}
.ws4a{word-spacing:-11.772000px;}
.ws24{word-spacing:-11.178000px;}
.ws86{word-spacing:-10.485000px;}
.ws9e{word-spacing:-10.440000px;}
.ws96{word-spacing:-10.305000px;}
.ws9a{word-spacing:-10.282500px;}
.ws9c{word-spacing:-10.215000px;}
.ws9f{word-spacing:-10.192500px;}
.ws87{word-spacing:-10.125000px;}
.ws41{word-spacing:-10.044000px;}
.wsc0{word-spacing:-10.035000px;}
.ws44{word-spacing:-9.990000px;}
.wsbf{word-spacing:-9.945000px;}
.ws77{word-spacing:-9.936000px;}
.ws9d{word-spacing:-9.855000px;}
.ws54{word-spacing:-9.828000px;}
.ws99{word-spacing:-9.810000px;}
.wsa0{word-spacing:-9.720000px;}
.ws98{word-spacing:-9.630000px;}
.ws7d{word-spacing:-9.612000px;}
.ws9b{word-spacing:-9.585000px;}
.ws97{word-spacing:-9.450000px;}
.ws7b{word-spacing:-9.288000px;}
.ws84{word-spacing:-8.424000px;}
.ws74{word-spacing:-8.318700px;}
.ws68{word-spacing:-8.283600px;}
.ws22{word-spacing:-8.248500px;}
.ws21{word-spacing:-8.178300px;}
.ws46{word-spacing:-8.143200px;}
.ws6d{word-spacing:-8.125650px;}
.ws58{word-spacing:-8.108100px;}
.ws59{word-spacing:-8.073000px;}
.ws6{word-spacing:-8.037900px;}
.ws66{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws3b{word-spacing:-7.932600px;}
.ws45{word-spacing:-7.862400px;}
.ws5{word-spacing:-7.827300px;}
.ws3a{word-spacing:-7.770000px;}
.ws7{word-spacing:-6.630000px;}
.ws69{word-spacing:-6.120000px;}
.ws34{word-spacing:-5.508000px;}
.wsc1{word-spacing:-4.920000px;}
.ws75{word-spacing:-4.620000px;}
.ws17{word-spacing:-4.029000px;}
.ws1d{word-spacing:-3.876000px;}
.ws39{word-spacing:-3.318000px;}
.ws9{word-spacing:-3.276000px;}
.ws20{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.ws19{word-spacing:-2.499000px;}
.wsa{word-spacing:-2.400000px;}
.ws78{word-spacing:-2.052000px;}
.ws6b{word-spacing:-1.998000px;}
.ws5c{word-spacing:-1.920000px;}
.wsd{word-spacing:-1.890000px;}
.ws12{word-spacing:-1.836000px;}
.ws89{word-spacing:-1.800000px;}
.ws3e{word-spacing:-1.782000px;}
.ws52{word-spacing:-1.728000px;}
.ws51{word-spacing:-1.674000px;}
.ws1b{word-spacing:-1.632000px;}
.ws6f{word-spacing:-1.620000px;}
.wsa6{word-spacing:-1.575000px;}
.wse{word-spacing:-1.566000px;}
.ws90{word-spacing:-1.530000px;}
.ws67{word-spacing:-1.512000px;}
.ws63{word-spacing:-1.458000px;}
.ws4f{word-spacing:-1.404000px;}
.ws8b{word-spacing:-1.380000px;}
.ws5f{word-spacing:-1.350000px;}
.wsa5{word-spacing:-1.305000px;}
.ws5a{word-spacing:-1.296000px;}
.wsb{word-spacing:-1.260000px;}
.ws10{word-spacing:-1.242000px;}
.ws35{word-spacing:-1.188000px;}
.ws2a{word-spacing:-1.134000px;}
.ws70{word-spacing:-1.080000px;}
.ws8f{word-spacing:-1.035000px;}
.ws3f{word-spacing:-1.026000px;}
.ws1f{word-spacing:-1.020000px;}
.wsb3{word-spacing:-0.990000px;}
.ws27{word-spacing:-0.972000px;}
.ws37{word-spacing:-0.924000px;}
.ws6a{word-spacing:-0.918000px;}
.wsa1{word-spacing:-0.900000px;}
.ws2b{word-spacing:-0.864000px;}
.wsaf{word-spacing:-0.855000px;}
.ws57{word-spacing:-0.810000px;}
.wsb9{word-spacing:-0.765000px;}
.ws14{word-spacing:-0.756000px;}
.wsb6{word-spacing:-0.720000px;}
.ws50{word-spacing:-0.702000px;}
.wsb7{word-spacing:-0.675000px;}
.ws13{word-spacing:-0.648000px;}
.ws55{word-spacing:-0.600000px;}
.wsc{word-spacing:-0.594000px;}
.wsbe{word-spacing:-0.585000px;}
.ws18{word-spacing:-0.561000px;}
.ws31{word-spacing:-0.540000px;}
.ws1a{word-spacing:-0.510000px;}
.ws8e{word-spacing:-0.495000px;}
.ws26{word-spacing:-0.486000px;}
.ws60{word-spacing:-0.480000px;}
.wsaa{word-spacing:-0.450000px;}
.ws32{word-spacing:-0.432000px;}
.ws2e{word-spacing:-0.420000px;}
.ws91{word-spacing:-0.405000px;}
.ws15{word-spacing:-0.378000px;}
.ws42{word-spacing:-0.360000px;}
.ws8d{word-spacing:-0.351000px;}
.ws2d{word-spacing:-0.324000px;}
.wsab{word-spacing:-0.315000px;}
.ws11{word-spacing:-0.270000px;}
.ws92{word-spacing:-0.225000px;}
.ws30{word-spacing:-0.216000px;}
.wsbb{word-spacing:-0.180000px;}
.ws6e{word-spacing:-0.175500px;}
.ws33{word-spacing:-0.162000px;}
.ws16{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.102000px;}
.wsc3{word-spacing:-0.090000px;}
.ws4e{word-spacing:-0.060000px;}
.ws28{word-spacing:-0.054000px;}
.wsa8{word-spacing:-0.045000px;}
.ws49{word-spacing:-0.035100px;}
.ws8{word-spacing:0.000000px;}
.ws93{word-spacing:0.045000px;}
.ws40{word-spacing:0.054000px;}
.ws4d{word-spacing:0.060000px;}
.wsa7{word-spacing:0.090000px;}
.ws2f{word-spacing:0.108000px;}
.ws82{word-spacing:0.120000px;}
.wsad{word-spacing:0.135000px;}
.ws2c{word-spacing:0.162000px;}
.ws36{word-spacing:0.168000px;}
.wsac{word-spacing:0.180000px;}
.ws56{word-spacing:0.216000px;}
.wsb5{word-spacing:0.225000px;}
.ws1c{word-spacing:0.255000px;}
.ws5d{word-spacing:0.270000px;}
.wsa2{word-spacing:0.315000px;}
.ws29{word-spacing:0.324000px;}
.wsae{word-spacing:0.360000px;}
.ws5e{word-spacing:0.378000px;}
.wsb4{word-spacing:0.405000px;}
.ws61{word-spacing:0.432000px;}
.wsa3{word-spacing:0.450000px;}
.ws4c{word-spacing:0.486000px;}
.wsc2{word-spacing:0.495000px;}
.ws62{word-spacing:0.540000px;}
.wsb0{word-spacing:0.585000px;}
.ws5b{word-spacing:0.594000px;}
.wsc6{word-spacing:0.630000px;}
.ws64{word-spacing:0.648000px;}
.wsc4{word-spacing:0.675000px;}
.wsc8{word-spacing:0.702000px;}
.ws88{word-spacing:0.756000px;}
.wsbd{word-spacing:0.765000px;}
.ws38{word-spacing:0.798000px;}
.wsbc{word-spacing:0.855000px;}
.ws76{word-spacing:0.864000px;}
.ws94{word-spacing:0.900000px;}
.ws71{word-spacing:0.918000px;}
.ws65{word-spacing:0.972000px;}
.wsa9{word-spacing:0.990000px;}
.ws7c{word-spacing:1.026000px;}
.wsa4{word-spacing:1.035000px;}
.wsb8{word-spacing:1.080000px;}
.ws72{word-spacing:1.134000px;}
.ws81{word-spacing:1.188000px;}
.ws80{word-spacing:1.242000px;}
.wsc5{word-spacing:1.395000px;}
.wsf{word-spacing:1.404000px;}
.ws7a{word-spacing:1.458000px;}
.ws7f{word-spacing:1.512000px;}
.wsb1{word-spacing:1.530000px;}
.ws79{word-spacing:1.566000px;}
.wsb2{word-spacing:1.575000px;}
.ws7e{word-spacing:1.620000px;}
.ws73{word-spacing:1.944000px;}
.ws83{word-spacing:2.052000px;}
.ws8c{word-spacing:2.160000px;}
.ws95{word-spacing:2.430000px;}
.wsc7{word-spacing:2.484000px;}
.wsba{word-spacing:2.565000px;}
.ws8a{word-spacing:3.294000px;}
.ws43{word-spacing:3.402000px;}
.ws25{word-spacing:72.324000px;}
._1b{margin-left:-14.535750px;}
._17{margin-left:-11.661600px;}
._15{margin-left:-10.289400px;}
._6{margin-left:-9.267000px;}
._12{margin-left:-7.900800px;}
._8{margin-left:-6.615000px;}
._3{margin-left:-5.198400px;}
._1{margin-left:-3.650400px;}
._0{margin-left:-1.776000px;}
._2{width:1.191000px;}
._4{width:2.463150px;}
._5{width:3.999150px;}
._9{width:5.763600px;}
._13{width:8.449200px;}
._16{width:10.107000px;}
._1a{width:39.732000px;}
._18{width:41.324400px;}
._19{width:42.686400px;}
._7{width:47.768400px;}
._14{width:48.793800px;}
._1c{width:50.304150px;}
._b{width:101.682000px;}
._e{width:126.630000px;}
._10{width:136.710000px;}
._c{width:145.217250px;}
._11{width:165.377250px;}
._a{width:208.530000px;}
._d{width:233.478000px;}
._f{width:243.558000px;}
.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.307900px;}
.y84{bottom:68.551500px;}
.yd4{bottom:68.553000px;}
.y127{bottom:68.556000px;}
.y259{bottom:68.565900px;}
.y1e6{bottom:68.571000px;}
.y150{bottom:68.796300px;}
.yee{bottom:69.552300px;}
.y56{bottom:70.281300px;}
.y19c{bottom:71.062800px;}
.y17b{bottom:72.571800px;}
.y292{bottom:79.095000px;}
.ycf{bottom:80.814300px;}
.y132{bottom:81.046200px;}
.y2e{bottom:83.307900px;}
.yd3{bottom:83.551500px;}
.y83{bottom:83.553000px;}
.y126{bottom:83.554500px;}
.y258{bottom:83.564400px;}
.y1e5{bottom:83.569500px;}
.y14f{bottom:83.794800px;}
.y2e2{bottom:84.089550px;}
.yed{bottom:84.550800px;}
.y55{bottom:85.279800px;}
.y19b{bottom:86.061300px;}
.y17a{bottom:87.570300px;}
.y291{bottom:91.841250px;}
.yce{bottom:95.812800px;}
.y131{bottom:96.058200px;}
.y2e1{bottom:96.835800px;}
.y2d{bottom:98.307900px;}
.yd2{bottom:98.550000px;}
.y82{bottom:98.551500px;}
.y125{bottom:98.553000px;}
.y1e4{bottom:98.568000px;}
.y14e{bottom:98.808300px;}
.yec{bottom:99.549300px;}
.y54{bottom:100.296300px;}
.y19a{bottom:101.059800px;}
.y179{bottom:102.568800px;}
.y290{bottom:104.587500px;}
.y2e0{bottom:109.582050px;}
.ycd{bottom:110.811300px;}
.y130{bottom:111.056700px;}
.y2c{bottom:113.307900px;}
.y124{bottom:113.551500px;}
.y21e{bottom:113.555700px;}
.y81{bottom:113.556000px;}
.y1e3{bottom:113.566500px;}
.y14d{bottom:113.806800px;}
.yeb{bottom:114.547800px;}
.y53{bottom:115.294800px;}
.y199{bottom:116.058300px;}
.y28f{bottom:117.333750px;}
.y178{bottom:117.567300px;}
.y257{bottom:117.827400px;}
.y2df{bottom:122.328300px;}
.ycc{bottom:125.809800px;}
.y12f{bottom:126.055200px;}
.y2b{bottom:128.307900px;}
.y123{bottom:128.553000px;}
.y21d{bottom:128.554200px;}
.y80{bottom:128.554500px;}
.y1e2{bottom:128.565000px;}
.yd1{bottom:128.794800px;}
.y14c{bottom:128.805300px;}
.yea{bottom:129.546300px;}
.y28e{bottom:130.080000px;}
.y52{bottom:130.293300px;}
.y198{bottom:131.056800px;}
.y177{bottom:132.565800px;}
.y256{bottom:132.825900px;}
.y2de{bottom:135.074550px;}
.ycb{bottom:140.808300px;}
.y12e{bottom:141.053700px;}
.y28d{bottom:142.826250px;}
.y122{bottom:143.551500px;}
.y21c{bottom:143.552700px;}
.y7f{bottom:143.553000px;}
.y1e1{bottom:143.563500px;}
.yd0{bottom:143.793300px;}
.y14b{bottom:143.803800px;}
.ye9{bottom:144.544800px;}
.y51{bottom:145.291800px;}
.y197{bottom:146.055300px;}
.y176{bottom:147.564300px;}
.y2a{bottom:147.636900px;}
.y2dd{bottom:147.820800px;}
.y255{bottom:147.824400px;}
.y28c{bottom:155.572500px;}
.yca{bottom:155.806800px;}
.y12d{bottom:156.052200px;}
.y121{bottom:158.550000px;}
.y21b{bottom:158.551200px;}
.y7e{bottom:158.551500px;}
.y1e0{bottom:158.562000px;}
.y14a{bottom:158.802300px;}
.ye8{bottom:159.543300px;}
.y50{bottom:160.290300px;}
.y2dc{bottom:160.567050px;}
.y196{bottom:161.053800px;}
.y175{bottom:162.562800px;}
.y254{bottom:162.822900px;}
.y28b{bottom:168.318750px;}
.yc9{bottom:170.805300px;}
.y12c{bottom:171.050700px;}
.y2db{bottom:173.313300px;}
.y120{bottom:173.550000px;}
.y7d{bottom:173.554500px;}
.y1df{bottom:173.560500px;}
.y149{bottom:173.800800px;}
.y4f{bottom:175.288800px;}
.y195{bottom:176.052300px;}
.y174{bottom:177.561300px;}
.y253{bottom:177.821400px;}
.y28a{bottom:181.065000px;}
.y29{bottom:182.188800px;}
.yc8{bottom:185.803800px;}
.y12b{bottom:186.049200px;}
.y2da{bottom:186.059550px;}
.y7c{bottom:188.553000px;}
.y1de{bottom:188.559000px;}
.y148{bottom:188.799300px;}
.y21a{bottom:189.614700px;}
.y4e{bottom:190.287300px;}
.y194{bottom:191.050800px;}
.y173{bottom:192.559800px;}
.y252{bottom:192.819900px;}
.y289{bottom:193.811250px;}
.ye7{bottom:194.725950px;}
.y28{bottom:197.187300px;}
.y2d9{bottom:198.805800px;}
.yc7{bottom:200.802300px;}
.y12a{bottom:201.047700px;}
.y7b{bottom:203.551500px;}
.y1dd{bottom:203.557500px;}
.y11f{bottom:203.656650px;}
.y147{bottom:203.797800px;}
.y219{bottom:204.614700px;}
.y4d{bottom:205.285800px;}
.y193{bottom:206.049300px;}
.y288{bottom:206.557500px;}
.y172{bottom:207.558300px;}
.y251{bottom:207.818400px;}
.ye6{bottom:209.724450px;}
.y2d8{bottom:211.552050px;}
.y27{bottom:212.185800px;}
.yc6{bottom:215.800800px;}
.y129{bottom:216.046200px;}
.y7a{bottom:218.551500px;}
.y1dc{bottom:218.556000px;}
.y11e{bottom:218.655150px;}
.y146{bottom:218.796300px;}
.y287{bottom:219.303750px;}
.y218{bottom:219.614700px;}
.y4c{bottom:220.284300px;}
.y192{bottom:221.047800px;}
.y171{bottom:222.556800px;}
.y250{bottom:222.816900px;}
.y2d7{bottom:224.298300px;}
.ye5{bottom:224.722950px;}
.y26{bottom:227.187300px;}
.yc5{bottom:230.799300px;}
.y128{bottom:231.044700px;}
.y286{bottom:232.050000px;}
.y79{bottom:233.550000px;}
.y1db{bottom:233.554500px;}
.y11d{bottom:233.653650px;}
.y145{bottom:233.794800px;}
.y217{bottom:234.619200px;}
.y4b{bottom:235.282800px;}
.y191{bottom:236.046300px;}
.y2d6{bottom:237.044550px;}
.y170{bottom:237.555300px;}
.y24f{bottom:237.816900px;}
.ye4{bottom:239.721450px;}
.y25{bottom:242.185800px;}
.y285{bottom:244.800000px;}
.yc4{bottom:245.797800px;}
.y78{bottom:248.550000px;}
.y1da{bottom:248.553000px;}
.y11c{bottom:248.652150px;}
.y144{bottom:248.793300px;}
.y216{bottom:249.617700px;}
.y2d5{bottom:249.790800px;}
.y4a{bottom:250.281300px;}
.y190{bottom:251.044800px;}
.y16f{bottom:252.553800px;}
.y24e{bottom:252.815400px;}
.ye3{bottom:254.719950px;}
.y24{bottom:257.187300px;}
.yc3{bottom:260.796300px;}
.y2d4{bottom:262.537050px;}
.y1d9{bottom:263.551500px;}
.y11b{bottom:263.650650px;}
.y143{bottom:263.793300px;}
.y215{bottom:264.616200px;}
.y49{bottom:265.279800px;}
.y18f{bottom:266.044800px;}
.y16e{bottom:267.552300px;}
.ye2{bottom:269.718450px;}
.y23{bottom:272.185800px;}
.y284{bottom:275.083350px;}
.y2d3{bottom:275.283300px;}
.yc2{bottom:275.794800px;}
.y1d8{bottom:278.553000px;}
.y11a{bottom:278.649150px;}
.y214{bottom:279.614700px;}
.y48{bottom:280.278300px;}
.y18e{bottom:281.046300px;}
.y77{bottom:281.047800px;}
.y16d{bottom:282.550800px;}
.y24d{bottom:284.044950px;}
.ye1{bottom:284.716950px;}
.y22{bottom:287.185800px;}
.y2d2{bottom:288.029550px;}
.y283{bottom:290.089500px;}
.yc1{bottom:290.821800px;}
.y1d7{bottom:293.551500px;}
.y119{bottom:293.647650px;}
.y213{bottom:294.614700px;}
.y47{bottom:295.278300px;}
.y18d{bottom:296.044800px;}
.y76{bottom:296.046300px;}
.y142{bottom:296.811300px;}
.y16c{bottom:297.549300px;}
.y24c{bottom:299.043450px;}
.ye0{bottom:299.715450px;}
.y2d1{bottom:300.775800px;}
.y21{bottom:302.187300px;}
.y282{bottom:305.088000px;}
.yc0{bottom:305.820300px;}
.y1d6{bottom:308.562000px;}
.y118{bottom:308.646150px;}
.y212{bottom:309.622200px;}
.y75{bottom:311.044800px;}
.y18c{bottom:311.049300px;}
.y141{bottom:311.809800px;}
.y16b{bottom:312.547800px;}
.y2d0{bottom:313.522050px;}
.y24b{bottom:314.041950px;}
.ydf{bottom:314.713950px;}
.y20{bottom:317.185800px;}
.y281{bottom:320.086500px;}
.ybf{bottom:320.818800px;}
.y1d5{bottom:323.560500px;}
.y117{bottom:323.644650px;}
.y211{bottom:324.620700px;}
.y74{bottom:326.046300px;}
.y18b{bottom:326.047800px;}
.y2cf{bottom:326.268300px;}
.y140{bottom:326.808300px;}
.y16a{bottom:327.546300px;}
.y46{bottom:328.282800px;}
.y24a{bottom:329.040450px;}
.yde{bottom:329.712450px;}
.y1f{bottom:332.187300px;}
.y280{bottom:335.085000px;}
.ybe{bottom:335.817300px;}
.y1d4{bottom:338.559000px;}
.y116{bottom:338.643150px;}
.y2ce{bottom:339.014550px;}
.y210{bottom:339.619200px;}
.y73{bottom:341.044800px;}
.y18a{bottom:341.046300px;}
.y13f{bottom:341.806800px;}
.y169{bottom:342.544800px;}
.y45{bottom:343.281300px;}
.y249{bottom:344.046450px;}
.ydd{bottom:344.710950px;}
.y1e{bottom:347.185800px;}
.y27f{bottom:350.083500px;}
.ybd{bottom:350.815800px;}
.y2cd{bottom:351.760800px;}
.y1d3{bottom:353.557500px;}
.y115{bottom:353.641650px;}
.y20f{bottom:354.617700px;}
.y189{bottom:356.044800px;}
.y72{bottom:356.046300px;}
.y13e{bottom:356.805300px;}
.y168{bottom:357.559800px;}
.y44{bottom:358.279800px;}
.y248{bottom:359.044950px;}
.ydc{bottom:359.709450px;}
.y1d{bottom:362.188800px;}
.y2cc{bottom:364.507050px;}
.y27e{bottom:365.082000px;}
.ybc{bottom:365.814300px;}
.y1d2{bottom:368.556000px;}
.y114{bottom:368.640150px;}
.y20e{bottom:369.616200px;}
.y2f9{bottom:371.043300px;}
.y71{bottom:371.044800px;}
.y188{bottom:371.052300px;}
.y13d{bottom:371.803800px;}
.y167{bottom:372.558300px;}
.y43{bottom:373.284300px;}
.y247{bottom:374.043450px;}
.ydb{bottom:374.707950px;}
.y1c{bottom:377.187300px;}
.y2cb{bottom:377.253300px;}
.ybb{bottom:380.812800px;}
.y1d1{bottom:383.554500px;}
.y113{bottom:383.638650px;}
.y20d{bottom:384.614700px;}
.y70{bottom:386.050800px;}
.y13c{bottom:386.802300px;}
.y166{bottom:387.556800px;}
.y42{bottom:388.282800px;}
.y246{bottom:389.041950px;}
.yda{bottom:389.706450px;}
.y2ca{bottom:389.999550px;}
.y1b{bottom:392.185800px;}
.y2f8{bottom:392.799300px;}
.y27d{bottom:395.380500px;}
.yba{bottom:395.811300px;}
.y1d0{bottom:398.553000px;}
.y112{bottom:398.637150px;}
.y20c{bottom:399.614700px;}
.y6f{bottom:401.049300px;}
.y13b{bottom:401.800800px;}
.y165{bottom:402.555300px;}
.y2c9{bottom:402.745800px;}
.y41{bottom:403.281300px;}
.y245{bottom:404.040450px;}
.yd9{bottom:404.704950px;}
.y1a{bottom:407.227800px;}
.y2f7{bottom:407.797800px;}
.y27c{bottom:410.379000px;}
.yb9{bottom:410.809800px;}
.y1cf{bottom:413.551500px;}
.y111{bottom:413.635650px;}
.y20b{bottom:414.614700px;}
.y2c8{bottom:415.492050px;}
.y6e{bottom:416.047800px;}
.y13a{bottom:416.799300px;}
.y164{bottom:417.553800px;}
.y40{bottom:418.279800px;}
.y244{bottom:419.038950px;}
.yd8{bottom:419.703450px;}
.y19{bottom:422.226300px;}
.y27b{bottom:425.377500px;}
.yb8{bottom:425.808300px;}
.y2c7{bottom:428.238300px;}
.y1ce{bottom:428.562000px;}
.y110{bottom:428.634150px;}
.y2f6{bottom:429.546300px;}
.y20a{bottom:429.613200px;}
.y6d{bottom:431.046300px;}
.y139{bottom:431.797800px;}
.y163{bottom:432.552300px;}
.y3f{bottom:433.279800px;}
.yd7{bottom:434.701950px;}
.y27a{bottom:440.376000px;}
.yb7{bottom:440.806800px;}
.y2c6{bottom:440.984550px;}
.y1cd{bottom:443.560500px;}
.y10f{bottom:443.632650px;}
.y2f5{bottom:444.544800px;}
.y6c{bottom:446.044800px;}
.y138{bottom:446.796300px;}
.y162{bottom:447.550800px;}
.y3e{bottom:448.282800px;}
.yd6{bottom:449.700450px;}
.y243{bottom:450.270000px;}
.y2c5{bottom:453.730800px;}
.y279{bottom:455.374500px;}
.yb6{bottom:455.805300px;}
.y209{bottom:458.148750px;}
.y1cc{bottom:458.559000px;}
.y10e{bottom:458.635650px;}
.y6b{bottom:461.047800px;}
.y137{bottom:461.794800px;}
.y161{bottom:462.549300px;}
.y3d{bottom:463.281300px;}
.yd5{bottom:464.698950px;}
.y242{bottom:465.268500px;}
.y2f4{bottom:466.293300px;}
.y2c4{bottom:466.477050px;}
.y18{bottom:469.476300px;}
.y278{bottom:470.373000px;}
.yb5{bottom:470.803800px;}
.y208{bottom:473.147250px;}
.y1cb{bottom:473.557500px;}
.y10d{bottom:473.634150px;}
.y6a{bottom:476.046300px;}
.y136{bottom:476.797800px;}
.y160{bottom:477.547800px;}
.y3c{bottom:478.279800px;}
.y2c3{bottom:479.223300px;}
.y241{bottom:480.267000px;}
.y2f3{bottom:481.293300px;}
.y277{bottom:485.371500px;}
.yb4{bottom:485.802300px;}
.y17{bottom:485.973300px;}
.y207{bottom:488.145750px;}
.y1ca{bottom:488.556000px;}
.y10c{bottom:488.632650px;}
.y69{bottom:491.044800px;}
.y135{bottom:491.796300px;}
.y2c2{bottom:491.969550px;}
.y15f{bottom:492.546300px;}
.y3b{bottom:493.282800px;}
.y240{bottom:495.265500px;}
.y276{bottom:500.370000px;}
.yb3{bottom:500.800800px;}
.y16{bottom:502.470300px;}
.y206{bottom:503.144250px;}
.y1c9{bottom:503.554500px;}
.y10b{bottom:503.631150px;}
.y2c1{bottom:504.715800px;}
.y68{bottom:506.043300px;}
.y134{bottom:506.794800px;}
.y15e{bottom:507.544800px;}
.y3a{bottom:508.281300px;}
.y2f2{bottom:508.296300px;}
.y23f{bottom:510.264000px;}
.y275{bottom:515.368500px;}
.yb2{bottom:515.799300px;}
.y2c0{bottom:517.462050px;}
.y205{bottom:518.142750px;}
.y1c8{bottom:518.553000px;}
.y10a{bottom:518.631150px;}
.y15{bottom:518.967300px;}
.y133{bottom:521.793300px;}
.y15d{bottom:522.543300px;}
.y39{bottom:523.279800px;}
.y2f1{bottom:523.294800px;}
.y23e{bottom:525.275400px;}
.y2bf{bottom:530.208300px;}
.y274{bottom:530.367000px;}
.yb1{bottom:530.797800px;}
.y1c7{bottom:533.551500px;}
.y14{bottom:535.464300px;}
.y38{bottom:538.282800px;}
.y2f0{bottom:538.293300px;}
.y23d{bottom:540.273900px;}
.y2be{bottom:542.954550px;}
.y273{bottom:545.365500px;}
.yb0{bottom:545.796300px;}
.y1c6{bottom:548.551500px;}
.y109{bottom:548.728650px;}
.y204{bottom:549.206250px;}
.y13{bottom:551.961300px;}
.y37{bottom:553.281300px;}
.y2ef{bottom:553.293300px;}
.y23c{bottom:555.272400px;}
.y2bd{bottom:555.700800px;}
.y1a7{bottom:556.813950px;}
.y272{bottom:560.373000px;}
.yaf{bottom:560.794800px;}
.y8c{bottom:562.929450px;}
.y1c5{bottom:563.551500px;}
.y108{bottom:563.727150px;}
.y203{bottom:564.204750px;}
.y36{bottom:568.279800px;}
.y2bc{bottom:568.447050px;}
.y12{bottom:568.458300px;}
.y23b{bottom:570.270900px;}
.y1a6{bottom:571.812450px;}
.y271{bottom:575.371500px;}
.yae{bottom:575.794800px;}
.y8b{bottom:577.927950px;}
.y15c{bottom:578.530950px;}
.y1c4{bottom:578.550000px;}
.y107{bottom:578.725650px;}
.y187{bottom:579.075450px;}
.y202{bottom:579.206250px;}
.y2ee{bottom:580.308300px;}
.y2bb{bottom:581.193300px;}
.y35{bottom:583.278300px;}
.y11{bottom:584.955300px;}
.y1a5{bottom:586.810950px;}
.y270{bottom:590.370000px;}
.yad{bottom:590.794800px;}
.y8a{bottom:592.926450px;}
.y15b{bottom:593.529450px;}
.y1c3{bottom:593.550000px;}
.y106{bottom:593.724150px;}
.y2ba{bottom:593.939550px;}
.y186{bottom:594.073950px;}
.y201{bottom:594.204750px;}
.y2ed{bottom:595.306800px;}
.y10{bottom:601.452300px;}
.y1a4{bottom:601.809450px;}
.y23a{bottom:604.533900px;}
.y26f{bottom:605.368500px;}
.yac{bottom:605.794800px;}
.y2b9{bottom:606.685800px;}
.y89{bottom:607.924950px;}
.y15a{bottom:608.527950px;}
.y105{bottom:608.722650px;}
.y185{bottom:609.072450px;}
.y200{bottom:609.212250px;}
.y2ec{bottom:610.305300px;}
.y1a3{bottom:616.807950px;}
.yf{bottom:617.949300px;}
.y2b8{bottom:619.432050px;}
.y239{bottom:619.532400px;}
.y26e{bottom:620.367000px;}
.yab{bottom:620.796300px;}
.y88{bottom:622.923450px;}
.y159{bottom:623.526450px;}
.y1c2{bottom:623.679150px;}
.y104{bottom:623.721150px;}
.y184{bottom:624.070950px;}
.y1ff{bottom:624.210750px;}
.y2eb{bottom:625.303800px;}
.y1a2{bottom:631.806450px;}
.y2b7{bottom:632.178300px;}
.ye{bottom:634.446300px;}
.y238{bottom:634.530900px;}
.y26d{bottom:635.365500px;}
.yaa{bottom:635.794800px;}
.y67{bottom:636.342300px;}
.y87{bottom:637.921950px;}
.y158{bottom:638.524950px;}
.y1c1{bottom:638.677650px;}
.y103{bottom:638.719650px;}
.y183{bottom:639.069450px;}
.y1fe{bottom:639.209250px;}
.y2ea{bottom:640.302300px;}
.y2b6{bottom:644.924550px;}
.y1a1{bottom:646.804950px;}
.y237{bottom:649.529400px;}
.y26c{bottom:650.364000px;}
.ya9{bottom:650.818800px;}
.yd{bottom:650.943300px;}
.y66{bottom:651.340800px;}
.y86{bottom:652.920450px;}
.y157{bottom:653.523450px;}
.y1c0{bottom:653.676150px;}
.y102{bottom:653.718150px;}
.y182{bottom:654.067950px;}
.y1fd{bottom:654.207750px;}
.y2e9{bottom:655.300800px;}
.y2b5{bottom:657.670800px;}
.y1a0{bottom:661.803450px;}
.y236{bottom:664.529400px;}
.ya8{bottom:665.817300px;}
.yc{bottom:667.440300px;}
.y85{bottom:667.918950px;}
.y156{bottom:668.521950px;}
.y1bf{bottom:668.674650px;}
.y101{bottom:668.716650px;}
.y181{bottom:669.066450px;}
.y1fc{bottom:669.206250px;}
.y2e8{bottom:670.299300px;}
.y2b4{bottom:670.417050px;}
.y19f{bottom:676.801950px;}
.y235{bottom:679.530900px;}
.y26b{bottom:680.676300px;}
.ya7{bottom:680.815800px;}
.y65{bottom:681.525300px;}
.y2b3{bottom:683.163300px;}
.y155{bottom:683.520450px;}
.y1be{bottom:683.673150px;}
.y100{bottom:683.715150px;}
.yb{bottom:683.937300px;}
.y180{bottom:684.064950px;}
.y1fb{bottom:684.204750px;}
.y2e7{bottom:685.297800px;}
.y19e{bottom:691.800450px;}
.y234{bottom:694.529400px;}
.y26a{bottom:695.674800px;}
.ya6{bottom:695.814300px;}
.y2b2{bottom:695.909550px;}
.y154{bottom:698.523450px;}
.y1bd{bottom:698.671650px;}
.yff{bottom:698.713650px;}
.y64{bottom:698.965800px;}
.y17f{bottom:699.063450px;}
.y1fa{bottom:699.207750px;}
.y2e6{bottom:700.296300px;}
.ya{bottom:700.434300px;}
.y19d{bottom:706.798950px;}
.y2b1{bottom:708.655800px;}
.y233{bottom:709.551900px;}
.y269{bottom:710.673300px;}
.ya5{bottom:710.812800px;}
.y153{bottom:713.521950px;}
.y1bc{bottom:713.671650px;}
.yfe{bottom:713.721150px;}
.y17e{bottom:714.061950px;}
.y1f9{bottom:714.206250px;}
.y2e5{bottom:715.294800px;}
.y63{bottom:716.406300px;}
.y2b0{bottom:721.402050px;}
.y232{bottom:724.550400px;}
.y268{bottom:725.671800px;}
.ya4{bottom:725.811300px;}
.y152{bottom:728.520450px;}
.yfd{bottom:728.719650px;}
.y17d{bottom:729.060450px;}
.y1f8{bottom:729.204750px;}
.y2e4{bottom:730.293300px;}
.y9{bottom:730.434300px;}
.y62{bottom:733.846800px;}
.y2af{bottom:734.148300px;}
.y231{bottom:739.548900px;}
.y267{bottom:740.670300px;}
.ya3{bottom:740.809800px;}
.y151{bottom:743.518950px;}
.yfc{bottom:743.718150px;}
.y1bb{bottom:743.814300px;}
.y17c{bottom:744.058950px;}
.y1f7{bottom:744.208800px;}
.y2e3{bottom:745.293300px;}
.y2ae{bottom:746.894550px;}
.y8{bottom:748.434300px;}
.y61{bottom:751.287300px;}
.y230{bottom:754.547400px;}
.y266{bottom:755.668800px;}
.ya2{bottom:755.808300px;}
.y32{bottom:757.050000px;}
.yfb{bottom:758.716650px;}
.y1ba{bottom:758.812800px;}
.y1f6{bottom:759.207300px;}
.y2ad{bottom:759.640800px;}
.y60{bottom:768.727800px;}
.y22f{bottom:769.545900px;}
.y265{bottom:770.667300px;}
.ya1{bottom:770.806800px;}
.y2ac{bottom:772.387050px;}
.yfa{bottom:773.715150px;}
.y1b9{bottom:773.811300px;}
.y1f5{bottom:774.205800px;}
.y31{bottom:778.050000px;}
.y7{bottom:781.416300px;}
.y22e{bottom:784.544400px;}
.y2ab{bottom:785.133300px;}
.ya0{bottom:785.805300px;}
.y5c{bottom:786.157800px;}
.y5f{bottom:786.168300px;}
.yf9{bottom:788.713650px;}
.y1b8{bottom:788.809800px;}
.y1f4{bottom:789.204300px;}
.y5b{bottom:797.403300px;}
.y5e{bottom:797.413800px;}
.y2aa{bottom:797.879550px;}
.y30{bottom:799.050000px;}
.y22d{bottom:799.542900px;}
.y9f{bottom:800.803800px;}
.yf8{bottom:803.712150px;}
.y1b7{bottom:803.808300px;}
.y264{bottom:803.809800px;}
.y1f3{bottom:804.202800px;}
.y5d{bottom:808.659300px;}
.y2a9{bottom:810.625800px;}
.y22c{bottom:814.541400px;}
.y9e{bottom:815.802300px;}
.yf7{bottom:818.712150px;}
.y1b6{bottom:818.806800px;}
.y263{bottom:818.808300px;}
.y2a8{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.y22b{bottom:829.539900px;}
.y9d{bottom:830.800800px;}
.y1b5{bottom:833.805300px;}
.y262{bottom:833.806800px;}
.y1f2{bottom:835.282800px;}
.y2a7{bottom:836.118300px;}
.y22a{bottom:844.538400px;}
.y9c{bottom:845.799300px;}
.y1b4{bottom:848.803800px;}
.y261{bottom:848.805300px;}
.yf6{bottom:848.817300px;}
.y2a6{bottom:848.864550px;}
.y1f1{bottom:850.281300px;}
.y5a{bottom:855.123450px;}
.y229{bottom:859.536900px;}
.y9b{bottom:860.797800px;}
.y2a5{bottom:861.610800px;}
.y1b3{bottom:863.802300px;}
.y260{bottom:863.803800px;}
.yf5{bottom:863.815800px;}
.y1f0{bottom:865.279800px;}
.y59{bottom:870.121950px;}
.y5{bottom:871.428300px;}
.y2a4{bottom:874.357050px;}
.y228{bottom:874.535400px;}
.y9a{bottom:875.796300px;}
.y1b2{bottom:878.800800px;}
.y25f{bottom:878.802300px;}
.yf4{bottom:878.814300px;}
.y1ef{bottom:880.278300px;}
.y58{bottom:885.120450px;}
.y2a3{bottom:887.103300px;}
.y227{bottom:889.533900px;}
.y99{bottom:890.794800px;}
.y1b1{bottom:893.799300px;}
.y25e{bottom:893.800800px;}
.yf3{bottom:893.812800px;}
.y1ee{bottom:895.276800px;}
.y2a2{bottom:899.849550px;}
.y57{bottom:900.118950px;}
.y226{bottom:904.532400px;}
.y98{bottom:905.794800px;}
.y1b0{bottom:908.797800px;}
.y25d{bottom:908.799300px;}
.yf2{bottom:908.811300px;}
.y1ed{bottom:910.275300px;}
.y2a1{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y225{bottom:919.530900px;}
.y97{bottom:920.793300px;}
.y1af{bottom:923.796300px;}
.y25c{bottom:923.797800px;}
.yf1{bottom:923.809800px;}
.y1ec{bottom:925.273800px;}
.y2a0{bottom:925.342050px;}
.y33{bottom:926.409600px;}
.y224{bottom:934.529400px;}
.y96{bottom:935.793300px;}
.y29f{bottom:938.088300px;}
.y1ae{bottom:938.794800px;}
.y25b{bottom:938.796300px;}
.yf0{bottom:938.808300px;}
.y1eb{bottom:940.272300px;}
.y223{bottom:949.536300px;}
.y29e{bottom:950.834550px;}
.y25a{bottom:953.794800px;}
.y1ad{bottom:953.796300px;}
.yef{bottom:953.806800px;}
.y1ea{bottom:955.270800px;}
.y29d{bottom:963.580800px;}
.y222{bottom:964.534800px;}
.y1ac{bottom:968.794800px;}
.y95{bottom:968.805300px;}
.y1e9{bottom:970.269300px;}
.y29c{bottom:976.327050px;}
.y221{bottom:979.533300px;}
.y1ab{bottom:983.796300px;}
.y94{bottom:983.803800px;}
.y1e8{bottom:985.267800px;}
.y29b{bottom:989.073300px;}
.y220{bottom:994.531800px;}
.y1aa{bottom:998.794800px;}
.y93{bottom:998.802300px;}
.y1e7{bottom:1000.266300px;}
.y29a{bottom:1001.819550px;}
.y21f{bottom:1009.530300px;}
.y1a9{bottom:1013.796300px;}
.y92{bottom:1013.800800px;}
.y299{bottom:1014.565800px;}
.y298{bottom:1027.312050px;}
.y1a8{bottom:1028.794800px;}
.y91{bottom:1028.799300px;}
.y297{bottom:1040.058300px;}
.y90{bottom:1043.797800px;}
.y296{bottom:1052.804550px;}
.y8f{bottom:1058.796300px;}
.y295{bottom:1065.550800px;}
.y8e{bottom:1073.794800px;}
.y294{bottom:1078.297050px;}
.y8d{bottom:1088.793300px;}
.y293{bottom:1091.043300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hd{height:23.842749px;}
.h16{height:29.988000px;}
.h17{height:30.618000px;}
.h18{height:31.038000px;}
.h2d{height:32.220000px;}
.h3{height:34.523438px;}
.hf{height:36.681152px;}
.h19{height:38.556000px;}
.h8{height:38.664000px;}
.h7{height:38.838867px;}
.h12{height:39.906000px;}
.he{height:41.158749px;}
.h2{height:43.154297px;}
.h9{height:43.317600px;}
.h1e{height:43.389600px;}
.h15{height:43.419600px;}
.h24{height:43.425600px;}
.h23{height:43.431600px;}
.h22{height:43.437600px;}
.h2b{height:43.440000px;}
.h27{height:43.443000px;}
.h26{height:43.443600px;}
.h29{height:43.455000px;}
.h20{height:43.455600px;}
.h2a{height:43.458000px;}
.h2c{height:43.461000px;}
.h1a{height:43.461600px;}
.h1d{height:43.467000px;}
.h13{height:43.467600px;}
.h28{height:43.469400px;}
.h1c{height:43.473000px;}
.ha{height:43.473600px;}
.h21{height:43.479000px;}
.hb{height:43.479600px;}
.h1b{height:43.485000px;}
.hc{height:43.485600px;}
.h11{height:43.491600px;}
.h1f{height:44.184900px;}
.h4{height:44.233154px;}
.h25{height:44.286900px;}
.h14{height:47.469727px;}
.h6{height:48.450293px;}
.h10{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;}
.x8{left:71.139150px;}
.x7{left:78.951150px;}
.x6{left:87.951150px;}
.x9{left:140.952750px;}
.x4{left:233.456400px;}
.xa{left:238.143900px;}
.x5{left:251.452500px;}
.x12{left:300.348300px;}
.xb{left:370.685400px;}
.xc{left:375.893400px;}
.xe{left:458.790900px;}
.xd{left:463.862400px;}
.x3{left:584.586600px;}
.x10{left:816.003600px;}
.x11{left:817.278150px;}
.xf{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v3{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v5{vertical-align:-9.605867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.165333pt;}
.v1{vertical-align:18.133333pt;}
.ls2f{letter-spacing:-4.704000pt;}
.ls3f{letter-spacing:-1.680000pt;}
.ls81{letter-spacing:-1.200000pt;}
.ls27{letter-spacing:-1.056000pt;}
.ls8a{letter-spacing:-0.960000pt;}
.ls3c{letter-spacing:-0.912000pt;}
.ls88{letter-spacing:-0.880000pt;}
.ls8e{letter-spacing:-0.800000pt;}
.ls86{letter-spacing:-0.760000pt;}
.ls23{letter-spacing:-0.720000pt;}
.ls2a{letter-spacing:-0.709333pt;}
.ls84{letter-spacing:-0.640000pt;}
.ls87{letter-spacing:-0.600000pt;}
.ls26{letter-spacing:-0.576000pt;}
.ls8b{letter-spacing:-0.520000pt;}
.ls2b{letter-spacing:-0.485333pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls3b{letter-spacing:-0.432000pt;}
.ls71{letter-spacing:-0.400000pt;}
.ls49{letter-spacing:-0.384000pt;}
.ls3d{letter-spacing:-0.336000pt;}
.ls93{letter-spacing:-0.320000pt;}
.ls51{letter-spacing:-0.288000pt;}
.ls8c{letter-spacing:-0.280000pt;}
.ls50{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.226667pt;}
.ls89{letter-spacing:-0.200000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.186667pt;}
.ls72{letter-spacing:-0.160000pt;}
.ls28{letter-spacing:-0.149333pt;}
.ls25{letter-spacing:-0.144000pt;}
.ls14{letter-spacing:-0.124800pt;}
.ls85{letter-spacing:-0.120000pt;}
.ls64{letter-spacing:-0.106667pt;}
.ls30{letter-spacing:-0.096000pt;}
.ls3a{letter-spacing:-0.093600pt;}
.ls82{letter-spacing:-0.080000pt;}
.ls39{letter-spacing:-0.053333pt;}
.ls2d{letter-spacing:-0.048000pt;}
.ls6f{letter-spacing:-0.040000pt;}
.ls2e{letter-spacing:-0.031200pt;}
.ls10{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011733pt;}
.ls4{letter-spacing:0.012267pt;}
.lsd{letter-spacing:0.015333pt;}
.ls2{letter-spacing:0.020267pt;}
.ls73{letter-spacing:0.028000pt;}
.ls4c{letter-spacing:0.031200pt;}
.ls74{letter-spacing:0.040000pt;}
.lsc{letter-spacing:0.045333pt;}
.ls5{letter-spacing:0.048000pt;}
.ls35{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.062400pt;}
.ls8f{letter-spacing:0.080000pt;}
.ls4a{letter-spacing:0.093600pt;}
.lsb{letter-spacing:0.096000pt;}
.ls56{letter-spacing:0.120000pt;}
.ls48{letter-spacing:0.124800pt;}
.ls57{letter-spacing:0.134400pt;}
.ls53{letter-spacing:0.140400pt;}
.ls52{letter-spacing:0.142400pt;}
.ls9{letter-spacing:0.144000pt;}
.ls36{letter-spacing:0.156000pt;}
.ls68{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.163200pt;}
.ls38{letter-spacing:0.182400pt;}
.ls20{letter-spacing:0.187200pt;}
.ls1a{letter-spacing:0.191467pt;}
.ls12{letter-spacing:0.192000pt;}
.ls70{letter-spacing:0.200000pt;}
.ls58{letter-spacing:0.206400pt;}
.lse{letter-spacing:0.211067pt;}
.ls62{letter-spacing:0.211733pt;}
.ls55{letter-spacing:0.216000pt;}
.ls8{letter-spacing:0.219200pt;}
.ls77{letter-spacing:0.220000pt;}
.ls21{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.249600pt;}
.ls61{letter-spacing:0.250133pt;}
.ls4b{letter-spacing:0.259200pt;}
.ls8d{letter-spacing:0.280000pt;}
.ls4e{letter-spacing:0.280800pt;}
.ls19{letter-spacing:0.288000pt;}
.ls37{letter-spacing:0.297600pt;}
.ls5e{letter-spacing:0.312000pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336000pt;}
.ls5b{letter-spacing:0.341333pt;}
.ls40{letter-spacing:0.355200pt;}
.ls69{letter-spacing:0.360000pt;}
.ls17{letter-spacing:0.362667pt;}
.ls67{letter-spacing:0.364800pt;}
.ls24{letter-spacing:0.373333pt;}
.ls7c{letter-spacing:0.380000pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls6a{letter-spacing:0.400000pt;}
.ls6d{letter-spacing:0.405600pt;}
.ls44{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.432000pt;}
.ls83{letter-spacing:0.440000pt;}
.ls76{letter-spacing:0.460000pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls45{letter-spacing:0.513600pt;}
.ls7b{letter-spacing:0.520000pt;}
.ls22{letter-spacing:0.528000pt;}
.ls3e{letter-spacing:0.533333pt;}
.ls78{letter-spacing:0.560000pt;}
.ls34{letter-spacing:0.576000pt;}
.ls33{letter-spacing:0.585600pt;}
.ls90{letter-spacing:0.600000pt;}
.ls6{letter-spacing:0.616533pt;}
.ls41{letter-spacing:0.619200pt;}
.ls46{letter-spacing:0.624000pt;}
.ls80{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.648000pt;}
.ls42{letter-spacing:0.672000pt;}
.ls7f{letter-spacing:0.680000pt;}
.ls5d{letter-spacing:0.720000pt;}
.ls94{letter-spacing:0.760000pt;}
.ls47{letter-spacing:0.768000pt;}
.ls60{letter-spacing:0.816000pt;}
.lsf{letter-spacing:0.853333pt;}
.ls5f{letter-spacing:0.864000pt;}
.ls75{letter-spacing:0.880000pt;}
.ls63{letter-spacing:0.906667pt;}
.ls4d{letter-spacing:0.912000pt;}
.ls79{letter-spacing:0.920000pt;}
.ls13{letter-spacing:0.960000pt;}
.ls59{letter-spacing:1.008000pt;}
.ls5a{letter-spacing:1.104000pt;}
.ls54{letter-spacing:1.152000pt;}
.ls66{letter-spacing:1.200000pt;}
.ls6e{letter-spacing:1.226667pt;}
.ls6b{letter-spacing:1.240000pt;}
.ls7e{letter-spacing:1.280000pt;}
.ls91{letter-spacing:1.296000pt;}
.ls6c{letter-spacing:1.584000pt;}
.ls65{letter-spacing:1.600000pt;}
.ls43{letter-spacing:1.706667pt;}
.ls7d{letter-spacing:2.160000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls7a{letter-spacing:2.356000pt;}
.ls18{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls5c{letter-spacing:4.106667pt;}
.ls92{letter-spacing:4.373333pt;}
.ls4f{letter-spacing:5.440000pt;}
.ls1f{letter-spacing:13.104000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws23{word-spacing:-12.085333pt;}
.ws85{word-spacing:-11.712000pt;}
.ws48{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws6c{word-spacing:-10.944000pt;}
.ws4b{word-spacing:-10.896000pt;}
.ws3c{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws47{word-spacing:-10.704000pt;}
.ws53{word-spacing:-10.656000pt;}
.ws3d{word-spacing:-10.512000pt;}
.ws4a{word-spacing:-10.464000pt;}
.ws24{word-spacing:-9.936000pt;}
.ws86{word-spacing:-9.320000pt;}
.ws9e{word-spacing:-9.280000pt;}
.ws96{word-spacing:-9.160000pt;}
.ws9a{word-spacing:-9.140000pt;}
.ws9c{word-spacing:-9.080000pt;}
.ws9f{word-spacing:-9.060000pt;}
.ws87{word-spacing:-9.000000pt;}
.ws41{word-spacing:-8.928000pt;}
.wsc0{word-spacing:-8.920000pt;}
.ws44{word-spacing:-8.880000pt;}
.wsbf{word-spacing:-8.840000pt;}
.ws77{word-spacing:-8.832000pt;}
.ws9d{word-spacing:-8.760000pt;}
.ws54{word-spacing:-8.736000pt;}
.ws99{word-spacing:-8.720000pt;}
.wsa0{word-spacing:-8.640000pt;}
.ws98{word-spacing:-8.560000pt;}
.ws7d{word-spacing:-8.544000pt;}
.ws9b{word-spacing:-8.520000pt;}
.ws97{word-spacing:-8.400000pt;}
.ws7b{word-spacing:-8.256000pt;}
.ws84{word-spacing:-7.488000pt;}
.ws74{word-spacing:-7.394400pt;}
.ws68{word-spacing:-7.363200pt;}
.ws22{word-spacing:-7.332000pt;}
.ws21{word-spacing:-7.269600pt;}
.ws46{word-spacing:-7.238400pt;}
.ws6d{word-spacing:-7.222800pt;}
.ws58{word-spacing:-7.207200pt;}
.ws59{word-spacing:-7.176000pt;}
.ws6{word-spacing:-7.144800pt;}
.ws66{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws3b{word-spacing:-7.051200pt;}
.ws45{word-spacing:-6.988800pt;}
.ws5{word-spacing:-6.957600pt;}
.ws3a{word-spacing:-6.906667pt;}
.ws7{word-spacing:-5.893333pt;}
.ws69{word-spacing:-5.440000pt;}
.ws34{word-spacing:-4.896000pt;}
.wsc1{word-spacing:-4.373333pt;}
.ws75{word-spacing:-4.106667pt;}
.ws17{word-spacing:-3.581333pt;}
.ws1d{word-spacing:-3.445333pt;}
.ws39{word-spacing:-2.949333pt;}
.ws9{word-spacing:-2.912000pt;}
.ws20{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.ws19{word-spacing:-2.221333pt;}
.wsa{word-spacing:-2.133333pt;}
.ws78{word-spacing:-1.824000pt;}
.ws6b{word-spacing:-1.776000pt;}
.ws5c{word-spacing:-1.706667pt;}
.wsd{word-spacing:-1.680000pt;}
.ws12{word-spacing:-1.632000pt;}
.ws89{word-spacing:-1.600000pt;}
.ws3e{word-spacing:-1.584000pt;}
.ws52{word-spacing:-1.536000pt;}
.ws51{word-spacing:-1.488000pt;}
.ws1b{word-spacing:-1.450667pt;}
.ws6f{word-spacing:-1.440000pt;}
.wsa6{word-spacing:-1.400000pt;}
.wse{word-spacing:-1.392000pt;}
.ws90{word-spacing:-1.360000pt;}
.ws67{word-spacing:-1.344000pt;}
.ws63{word-spacing:-1.296000pt;}
.ws4f{word-spacing:-1.248000pt;}
.ws8b{word-spacing:-1.226667pt;}
.ws5f{word-spacing:-1.200000pt;}
.wsa5{word-spacing:-1.160000pt;}
.ws5a{word-spacing:-1.152000pt;}
.wsb{word-spacing:-1.120000pt;}
.ws10{word-spacing:-1.104000pt;}
.ws35{word-spacing:-1.056000pt;}
.ws2a{word-spacing:-1.008000pt;}
.ws70{word-spacing:-0.960000pt;}
.ws8f{word-spacing:-0.920000pt;}
.ws3f{word-spacing:-0.912000pt;}
.ws1f{word-spacing:-0.906667pt;}
.wsb3{word-spacing:-0.880000pt;}
.ws27{word-spacing:-0.864000pt;}
.ws37{word-spacing:-0.821333pt;}
.ws6a{word-spacing:-0.816000pt;}
.wsa1{word-spacing:-0.800000pt;}
.ws2b{word-spacing:-0.768000pt;}
.wsaf{word-spacing:-0.760000pt;}
.ws57{word-spacing:-0.720000pt;}
.wsb9{word-spacing:-0.680000pt;}
.ws14{word-spacing:-0.672000pt;}
.wsb6{word-spacing:-0.640000pt;}
.ws50{word-spacing:-0.624000pt;}
.wsb7{word-spacing:-0.600000pt;}
.ws13{word-spacing:-0.576000pt;}
.ws55{word-spacing:-0.533333pt;}
.wsc{word-spacing:-0.528000pt;}
.wsbe{word-spacing:-0.520000pt;}
.ws18{word-spacing:-0.498667pt;}
.ws31{word-spacing:-0.480000pt;}
.ws1a{word-spacing:-0.453333pt;}
.ws8e{word-spacing:-0.440000pt;}
.ws26{word-spacing:-0.432000pt;}
.ws60{word-spacing:-0.426667pt;}
.wsaa{word-spacing:-0.400000pt;}
.ws32{word-spacing:-0.384000pt;}
.ws2e{word-spacing:-0.373333pt;}
.ws91{word-spacing:-0.360000pt;}
.ws15{word-spacing:-0.336000pt;}
.ws42{word-spacing:-0.320000pt;}
.ws8d{word-spacing:-0.312000pt;}
.ws2d{word-spacing:-0.288000pt;}
.wsab{word-spacing:-0.280000pt;}
.ws11{word-spacing:-0.240000pt;}
.ws92{word-spacing:-0.200000pt;}
.ws30{word-spacing:-0.192000pt;}
.wsbb{word-spacing:-0.160000pt;}
.ws6e{word-spacing:-0.156000pt;}
.ws33{word-spacing:-0.144000pt;}
.ws16{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.090667pt;}
.wsc3{word-spacing:-0.080000pt;}
.ws4e{word-spacing:-0.053333pt;}
.ws28{word-spacing:-0.048000pt;}
.wsa8{word-spacing:-0.040000pt;}
.ws49{word-spacing:-0.031200pt;}
.ws8{word-spacing:0.000000pt;}
.ws93{word-spacing:0.040000pt;}
.ws40{word-spacing:0.048000pt;}
.ws4d{word-spacing:0.053333pt;}
.wsa7{word-spacing:0.080000pt;}
.ws2f{word-spacing:0.096000pt;}
.ws82{word-spacing:0.106667pt;}
.wsad{word-spacing:0.120000pt;}
.ws2c{word-spacing:0.144000pt;}
.ws36{word-spacing:0.149333pt;}
.wsac{word-spacing:0.160000pt;}
.ws56{word-spacing:0.192000pt;}
.wsb5{word-spacing:0.200000pt;}
.ws1c{word-spacing:0.226667pt;}
.ws5d{word-spacing:0.240000pt;}
.wsa2{word-spacing:0.280000pt;}
.ws29{word-spacing:0.288000pt;}
.wsae{word-spacing:0.320000pt;}
.ws5e{word-spacing:0.336000pt;}
.wsb4{word-spacing:0.360000pt;}
.ws61{word-spacing:0.384000pt;}
.wsa3{word-spacing:0.400000pt;}
.ws4c{word-spacing:0.432000pt;}
.wsc2{word-spacing:0.440000pt;}
.ws62{word-spacing:0.480000pt;}
.wsb0{word-spacing:0.520000pt;}
.ws5b{word-spacing:0.528000pt;}
.wsc6{word-spacing:0.560000pt;}
.ws64{word-spacing:0.576000pt;}
.wsc4{word-spacing:0.600000pt;}
.wsc8{word-spacing:0.624000pt;}
.ws88{word-spacing:0.672000pt;}
.wsbd{word-spacing:0.680000pt;}
.ws38{word-spacing:0.709333pt;}
.wsbc{word-spacing:0.760000pt;}
.ws76{word-spacing:0.768000pt;}
.ws94{word-spacing:0.800000pt;}
.ws71{word-spacing:0.816000pt;}
.ws65{word-spacing:0.864000pt;}
.wsa9{word-spacing:0.880000pt;}
.ws7c{word-spacing:0.912000pt;}
.wsa4{word-spacing:0.920000pt;}
.wsb8{word-spacing:0.960000pt;}
.ws72{word-spacing:1.008000pt;}
.ws81{word-spacing:1.056000pt;}
.ws80{word-spacing:1.104000pt;}
.wsc5{word-spacing:1.240000pt;}
.wsf{word-spacing:1.248000pt;}
.ws7a{word-spacing:1.296000pt;}
.ws7f{word-spacing:1.344000pt;}
.wsb1{word-spacing:1.360000pt;}
.ws79{word-spacing:1.392000pt;}
.wsb2{word-spacing:1.400000pt;}
.ws7e{word-spacing:1.440000pt;}
.ws73{word-spacing:1.728000pt;}
.ws83{word-spacing:1.824000pt;}
.ws8c{word-spacing:1.920000pt;}
.ws95{word-spacing:2.160000pt;}
.wsc7{word-spacing:2.208000pt;}
.wsba{word-spacing:2.280000pt;}
.ws8a{word-spacing:2.928000pt;}
.ws43{word-spacing:3.024000pt;}
.ws25{word-spacing:64.288000pt;}
._1b{margin-left:-12.920667pt;}
._17{margin-left:-10.365867pt;}
._15{margin-left:-9.146133pt;}
._6{margin-left:-8.237333pt;}
._12{margin-left:-7.022933pt;}
._8{margin-left:-5.880000pt;}
._3{margin-left:-4.620800pt;}
._1{margin-left:-3.244800pt;}
._0{margin-left:-1.578667pt;}
._2{width:1.058667pt;}
._4{width:2.189467pt;}
._5{width:3.554800pt;}
._9{width:5.123200pt;}
._13{width:7.510400pt;}
._16{width:8.984000pt;}
._1a{width:35.317333pt;}
._18{width:36.732800pt;}
._19{width:37.943467pt;}
._7{width:42.460800pt;}
._14{width:43.372267pt;}
._1c{width:44.714800pt;}
._b{width:90.384000pt;}
._e{width:112.560000pt;}
._10{width:121.520000pt;}
._c{width:129.082000pt;}
._11{width:147.002000pt;}
._a{width:185.360000pt;}
._d{width:207.536000pt;}
._f{width:216.496000pt;}
.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.718133pt;}
.y84{bottom:60.934667pt;}
.yd4{bottom:60.936000pt;}
.y127{bottom:60.938667pt;}
.y259{bottom:60.947467pt;}
.y1e6{bottom:60.952000pt;}
.y150{bottom:61.152267pt;}
.yee{bottom:61.824267pt;}
.y56{bottom:62.472267pt;}
.y19c{bottom:63.166933pt;}
.y17b{bottom:64.508267pt;}
.y292{bottom:70.306667pt;}
.ycf{bottom:71.834933pt;}
.y132{bottom:72.041067pt;}
.y2e{bottom:74.051467pt;}
.yd3{bottom:74.268000pt;}
.y83{bottom:74.269333pt;}
.y126{bottom:74.270667pt;}
.y258{bottom:74.279467pt;}
.y1e5{bottom:74.284000pt;}
.y14f{bottom:74.484267pt;}
.y2e2{bottom:74.746267pt;}
.yed{bottom:75.156267pt;}
.y55{bottom:75.804267pt;}
.y19b{bottom:76.498933pt;}
.y17a{bottom:77.840267pt;}
.y291{bottom:81.636667pt;}
.yce{bottom:85.166933pt;}
.y131{bottom:85.385067pt;}
.y2e1{bottom:86.076267pt;}
.y2d{bottom:87.384800pt;}
.yd2{bottom:87.600000pt;}
.y82{bottom:87.601333pt;}
.y125{bottom:87.602667pt;}
.y1e4{bottom:87.616000pt;}
.y14e{bottom:87.829600pt;}
.yec{bottom:88.488267pt;}
.y54{bottom:89.152267pt;}
.y19a{bottom:89.830933pt;}
.y179{bottom:91.172267pt;}
.y290{bottom:92.966667pt;}
.y2e0{bottom:97.406267pt;}
.ycd{bottom:98.498933pt;}
.y130{bottom:98.717067pt;}
.y2c{bottom:100.718133pt;}
.y124{bottom:100.934667pt;}
.y21e{bottom:100.938400pt;}
.y81{bottom:100.938667pt;}
.y1e3{bottom:100.948000pt;}
.y14d{bottom:101.161600pt;}
.yeb{bottom:101.820267pt;}
.y53{bottom:102.484267pt;}
.y199{bottom:103.162933pt;}
.y28f{bottom:104.296667pt;}
.y178{bottom:104.504267pt;}
.y257{bottom:104.735467pt;}
.y2df{bottom:108.736267pt;}
.ycc{bottom:111.830933pt;}
.y12f{bottom:112.049067pt;}
.y2b{bottom:114.051467pt;}
.y123{bottom:114.269333pt;}
.y21d{bottom:114.270400pt;}
.y80{bottom:114.270667pt;}
.y1e2{bottom:114.280000pt;}
.yd1{bottom:114.484267pt;}
.y14c{bottom:114.493600pt;}
.yea{bottom:115.152267pt;}
.y28e{bottom:115.626667pt;}
.y52{bottom:115.816267pt;}
.y198{bottom:116.494933pt;}
.y177{bottom:117.836267pt;}
.y256{bottom:118.067467pt;}
.y2de{bottom:120.066267pt;}
.ycb{bottom:125.162933pt;}
.y12e{bottom:125.381067pt;}
.y28d{bottom:126.956667pt;}
.y122{bottom:127.601333pt;}
.y21c{bottom:127.602400pt;}
.y7f{bottom:127.602667pt;}
.y1e1{bottom:127.612000pt;}
.yd0{bottom:127.816267pt;}
.y14b{bottom:127.825600pt;}
.ye9{bottom:128.484267pt;}
.y51{bottom:129.148267pt;}
.y197{bottom:129.826933pt;}
.y176{bottom:131.168267pt;}
.y2a{bottom:131.232800pt;}
.y2dd{bottom:131.396267pt;}
.y255{bottom:131.399467pt;}
.y28c{bottom:138.286667pt;}
.yca{bottom:138.494933pt;}
.y12d{bottom:138.713067pt;}
.y121{bottom:140.933333pt;}
.y21b{bottom:140.934400pt;}
.y7e{bottom:140.934667pt;}
.y1e0{bottom:140.944000pt;}
.y14a{bottom:141.157600pt;}
.ye8{bottom:141.816267pt;}
.y50{bottom:142.480267pt;}
.y2dc{bottom:142.726267pt;}
.y196{bottom:143.158933pt;}
.y175{bottom:144.500267pt;}
.y254{bottom:144.731467pt;}
.y28b{bottom:149.616667pt;}
.yc9{bottom:151.826933pt;}
.y12c{bottom:152.045067pt;}
.y2db{bottom:154.056267pt;}
.y120{bottom:154.266667pt;}
.y7d{bottom:154.270667pt;}
.y1df{bottom:154.276000pt;}
.y149{bottom:154.489600pt;}
.y4f{bottom:155.812267pt;}
.y195{bottom:156.490933pt;}
.y174{bottom:157.832267pt;}
.y253{bottom:158.063467pt;}
.y28a{bottom:160.946667pt;}
.y29{bottom:161.945600pt;}
.yc8{bottom:165.158933pt;}
.y12b{bottom:165.377067pt;}
.y2da{bottom:165.386267pt;}
.y7c{bottom:167.602667pt;}
.y1de{bottom:167.608000pt;}
.y148{bottom:167.821600pt;}
.y21a{bottom:168.546400pt;}
.y4e{bottom:169.144267pt;}
.y194{bottom:169.822933pt;}
.y173{bottom:171.164267pt;}
.y252{bottom:171.395467pt;}
.y289{bottom:172.276667pt;}
.ye7{bottom:173.089733pt;}
.y28{bottom:175.277600pt;}
.y2d9{bottom:176.716267pt;}
.yc7{bottom:178.490933pt;}
.y12a{bottom:178.709067pt;}
.y7b{bottom:180.934667pt;}
.y1dd{bottom:180.940000pt;}
.y11f{bottom:181.028133pt;}
.y147{bottom:181.153600pt;}
.y219{bottom:181.879733pt;}
.y4d{bottom:182.476267pt;}
.y193{bottom:183.154933pt;}
.y288{bottom:183.606667pt;}
.y172{bottom:184.496267pt;}
.y251{bottom:184.727467pt;}
.ye6{bottom:186.421733pt;}
.y2d8{bottom:188.046267pt;}
.y27{bottom:188.609600pt;}
.yc6{bottom:191.822933pt;}
.y129{bottom:192.041067pt;}
.y7a{bottom:194.268000pt;}
.y1dc{bottom:194.272000pt;}
.y11e{bottom:194.360133pt;}
.y146{bottom:194.485600pt;}
.y287{bottom:194.936667pt;}
.y218{bottom:195.213067pt;}
.y4c{bottom:195.808267pt;}
.y192{bottom:196.486933pt;}
.y171{bottom:197.828267pt;}
.y250{bottom:198.059467pt;}
.y2d7{bottom:199.376267pt;}
.ye5{bottom:199.753733pt;}
.y26{bottom:201.944267pt;}
.yc5{bottom:205.154933pt;}
.y128{bottom:205.373067pt;}
.y286{bottom:206.266667pt;}
.y79{bottom:207.600000pt;}
.y1db{bottom:207.604000pt;}
.y11d{bottom:207.692133pt;}
.y145{bottom:207.817600pt;}
.y217{bottom:208.550400pt;}
.y4b{bottom:209.140267pt;}
.y191{bottom:209.818933pt;}
.y2d6{bottom:210.706267pt;}
.y170{bottom:211.160267pt;}
.y24f{bottom:211.392800pt;}
.ye4{bottom:213.085733pt;}
.y25{bottom:215.276267pt;}
.y285{bottom:217.600000pt;}
.yc4{bottom:218.486933pt;}
.y78{bottom:220.933333pt;}
.y1da{bottom:220.936000pt;}
.y11c{bottom:221.024133pt;}
.y144{bottom:221.149600pt;}
.y216{bottom:221.882400pt;}
.y2d5{bottom:222.036267pt;}
.y4a{bottom:222.472267pt;}
.y190{bottom:223.150933pt;}
.y16f{bottom:224.492267pt;}
.y24e{bottom:224.724800pt;}
.ye3{bottom:226.417733pt;}
.y24{bottom:228.610933pt;}
.yc3{bottom:231.818933pt;}
.y2d4{bottom:233.366267pt;}
.y1d9{bottom:234.268000pt;}
.y11b{bottom:234.356133pt;}
.y143{bottom:234.482933pt;}
.y215{bottom:235.214400pt;}
.y49{bottom:235.804267pt;}
.y18f{bottom:236.484267pt;}
.y16e{bottom:237.824267pt;}
.ye2{bottom:239.749733pt;}
.y23{bottom:241.942933pt;}
.y284{bottom:244.518533pt;}
.y2d3{bottom:244.696267pt;}
.yc2{bottom:245.150933pt;}
.y1d8{bottom:247.602667pt;}
.y11a{bottom:247.688133pt;}
.y214{bottom:248.546400pt;}
.y48{bottom:249.136267pt;}
.y18e{bottom:249.818933pt;}
.y77{bottom:249.820267pt;}
.y16d{bottom:251.156267pt;}
.y24d{bottom:252.484400pt;}
.ye1{bottom:253.081733pt;}
.y22{bottom:255.276267pt;}
.y2d2{bottom:256.026267pt;}
.y283{bottom:257.857333pt;}
.yc1{bottom:258.508267pt;}
.y1d7{bottom:260.934667pt;}
.y119{bottom:261.020133pt;}
.y213{bottom:261.879733pt;}
.y47{bottom:262.469600pt;}
.y18d{bottom:263.150933pt;}
.y76{bottom:263.152267pt;}
.y142{bottom:263.832267pt;}
.y16c{bottom:264.488267pt;}
.y24c{bottom:265.816400pt;}
.ye0{bottom:266.413733pt;}
.y2d1{bottom:267.356267pt;}
.y21{bottom:268.610933pt;}
.y282{bottom:271.189333pt;}
.yc0{bottom:271.840267pt;}
.y1d6{bottom:274.277333pt;}
.y118{bottom:274.352133pt;}
.y212{bottom:275.219733pt;}
.y75{bottom:276.484267pt;}
.y18c{bottom:276.488267pt;}
.y141{bottom:277.164267pt;}
.y16b{bottom:277.820267pt;}
.y2d0{bottom:278.686267pt;}
.y24b{bottom:279.148400pt;}
.ydf{bottom:279.745733pt;}
.y20{bottom:281.942933pt;}
.y281{bottom:284.521333pt;}
.ybf{bottom:285.172267pt;}
.y1d5{bottom:287.609333pt;}
.y117{bottom:287.684133pt;}
.y211{bottom:288.551733pt;}
.y74{bottom:289.818933pt;}
.y18b{bottom:289.820267pt;}
.y2cf{bottom:290.016267pt;}
.y140{bottom:290.496267pt;}
.y16a{bottom:291.152267pt;}
.y46{bottom:291.806933pt;}
.y24a{bottom:292.480400pt;}
.yde{bottom:293.077733pt;}
.y1f{bottom:295.277600pt;}
.y280{bottom:297.853333pt;}
.ybe{bottom:298.504267pt;}
.y1d4{bottom:300.941333pt;}
.y116{bottom:301.016133pt;}
.y2ce{bottom:301.346267pt;}
.y210{bottom:301.883733pt;}
.y73{bottom:303.150933pt;}
.y18a{bottom:303.152267pt;}
.y13f{bottom:303.828267pt;}
.y169{bottom:304.484267pt;}
.y45{bottom:305.138933pt;}
.y249{bottom:305.819067pt;}
.ydd{bottom:306.409733pt;}
.y1e{bottom:308.609600pt;}
.y27f{bottom:311.185333pt;}
.ybd{bottom:311.836267pt;}
.y2cd{bottom:312.676267pt;}
.y1d3{bottom:314.273333pt;}
.y115{bottom:314.348133pt;}
.y20f{bottom:315.215733pt;}
.y189{bottom:316.484267pt;}
.y72{bottom:316.485600pt;}
.y13e{bottom:317.160267pt;}
.y168{bottom:317.830933pt;}
.y44{bottom:318.470933pt;}
.y248{bottom:319.151067pt;}
.ydc{bottom:319.741733pt;}
.y1d{bottom:321.945600pt;}
.y2cc{bottom:324.006267pt;}
.y27e{bottom:324.517333pt;}
.ybc{bottom:325.168267pt;}
.y1d2{bottom:327.605333pt;}
.y114{bottom:327.680133pt;}
.y20e{bottom:328.547733pt;}
.y2f9{bottom:329.816267pt;}
.y71{bottom:329.817600pt;}
.y188{bottom:329.824267pt;}
.y13d{bottom:330.492267pt;}
.y167{bottom:331.162933pt;}
.y43{bottom:331.808267pt;}
.y247{bottom:332.483067pt;}
.ydb{bottom:333.073733pt;}
.y1c{bottom:335.277600pt;}
.y2cb{bottom:335.336267pt;}
.ybb{bottom:338.500267pt;}
.y1d1{bottom:340.937333pt;}
.y113{bottom:341.012133pt;}
.y20d{bottom:341.879733pt;}
.y70{bottom:343.156267pt;}
.y13c{bottom:343.824267pt;}
.y166{bottom:344.494933pt;}
.y42{bottom:345.140267pt;}
.y246{bottom:345.815067pt;}
.yda{bottom:346.405733pt;}
.y2ca{bottom:346.666267pt;}
.y1b{bottom:348.609600pt;}
.y2f8{bottom:349.154933pt;}
.y27d{bottom:351.449333pt;}
.yba{bottom:351.832267pt;}
.y1d0{bottom:354.269333pt;}
.y112{bottom:354.344133pt;}
.y20c{bottom:355.213067pt;}
.y6f{bottom:356.488267pt;}
.y13b{bottom:357.156267pt;}
.y165{bottom:357.826933pt;}
.y2c9{bottom:357.996267pt;}
.y41{bottom:358.472267pt;}
.y245{bottom:359.147067pt;}
.yd9{bottom:359.737733pt;}
.y1a{bottom:361.980267pt;}
.y2f7{bottom:362.486933pt;}
.y27c{bottom:364.781333pt;}
.yb9{bottom:365.164267pt;}
.y1cf{bottom:367.601333pt;}
.y111{bottom:367.676133pt;}
.y20b{bottom:368.546400pt;}
.y2c8{bottom:369.326267pt;}
.y6e{bottom:369.820267pt;}
.y13a{bottom:370.488267pt;}
.y164{bottom:371.158933pt;}
.y40{bottom:371.804267pt;}
.y244{bottom:372.479067pt;}
.yd8{bottom:373.069733pt;}
.y19{bottom:375.312267pt;}
.y27b{bottom:378.113333pt;}
.yb8{bottom:378.496267pt;}
.y2c7{bottom:380.656267pt;}
.y1ce{bottom:380.944000pt;}
.y110{bottom:381.008133pt;}
.y2f6{bottom:381.818933pt;}
.y20a{bottom:381.878400pt;}
.y6d{bottom:383.152267pt;}
.y139{bottom:383.820267pt;}
.y163{bottom:384.490933pt;}
.y3f{bottom:385.137600pt;}
.yd7{bottom:386.401733pt;}
.y27a{bottom:391.445333pt;}
.yb7{bottom:391.828267pt;}
.y2c6{bottom:391.986267pt;}
.y1cd{bottom:394.276000pt;}
.y10f{bottom:394.340133pt;}
.y2f5{bottom:395.150933pt;}
.y6c{bottom:396.484267pt;}
.y138{bottom:397.152267pt;}
.y162{bottom:397.822933pt;}
.y3e{bottom:398.473600pt;}
.yd6{bottom:399.733733pt;}
.y243{bottom:400.240000pt;}
.y2c5{bottom:403.316267pt;}
.y279{bottom:404.777333pt;}
.yb6{bottom:405.160267pt;}
.y209{bottom:407.243333pt;}
.y1cc{bottom:407.608000pt;}
.y10e{bottom:407.676133pt;}
.y6b{bottom:409.820267pt;}
.y137{bottom:410.484267pt;}
.y161{bottom:411.154933pt;}
.y3d{bottom:411.805600pt;}
.yd5{bottom:413.065733pt;}
.y242{bottom:413.572000pt;}
.y2f4{bottom:414.482933pt;}
.y2c4{bottom:414.646267pt;}
.y18{bottom:417.312267pt;}
.y278{bottom:418.109333pt;}
.yb5{bottom:418.492267pt;}
.y208{bottom:420.575333pt;}
.y1cb{bottom:420.940000pt;}
.y10d{bottom:421.008133pt;}
.y6a{bottom:423.152267pt;}
.y136{bottom:423.820267pt;}
.y160{bottom:424.486933pt;}
.y3c{bottom:425.137600pt;}
.y2c3{bottom:425.976267pt;}
.y241{bottom:426.904000pt;}
.y2f3{bottom:427.816267pt;}
.y277{bottom:431.441333pt;}
.yb4{bottom:431.824267pt;}
.y17{bottom:431.976267pt;}
.y207{bottom:433.907333pt;}
.y1ca{bottom:434.272000pt;}
.y10c{bottom:434.340133pt;}
.y69{bottom:436.484267pt;}
.y135{bottom:437.152267pt;}
.y2c2{bottom:437.306267pt;}
.y15f{bottom:437.818933pt;}
.y3b{bottom:438.473600pt;}
.y240{bottom:440.236000pt;}
.y276{bottom:444.773333pt;}
.yb3{bottom:445.156267pt;}
.y16{bottom:446.640267pt;}
.y206{bottom:447.239333pt;}
.y1c9{bottom:447.604000pt;}
.y10b{bottom:447.672133pt;}
.y2c1{bottom:448.636267pt;}
.y68{bottom:449.816267pt;}
.y134{bottom:450.484267pt;}
.y15e{bottom:451.150933pt;}
.y3a{bottom:451.805600pt;}
.y2f2{bottom:451.818933pt;}
.y23f{bottom:453.568000pt;}
.y275{bottom:458.105333pt;}
.yb2{bottom:458.488267pt;}
.y2c0{bottom:459.966267pt;}
.y205{bottom:460.571333pt;}
.y1c8{bottom:460.936000pt;}
.y10a{bottom:461.005467pt;}
.y15{bottom:461.304267pt;}
.y133{bottom:463.816267pt;}
.y15d{bottom:464.482933pt;}
.y39{bottom:465.137600pt;}
.y2f1{bottom:465.150933pt;}
.y23e{bottom:466.911467pt;}
.y2bf{bottom:471.296267pt;}
.y274{bottom:471.437333pt;}
.yb1{bottom:471.820267pt;}
.y1c7{bottom:474.268000pt;}
.y14{bottom:475.968267pt;}
.y38{bottom:478.473600pt;}
.y2f0{bottom:478.482933pt;}
.y23d{bottom:480.243467pt;}
.y2be{bottom:482.626267pt;}
.y273{bottom:484.769333pt;}
.yb0{bottom:485.152267pt;}
.y1c6{bottom:487.601333pt;}
.y109{bottom:487.758800pt;}
.y204{bottom:488.183333pt;}
.y13{bottom:490.632267pt;}
.y37{bottom:491.805600pt;}
.y2ef{bottom:491.816267pt;}
.y23c{bottom:493.575467pt;}
.y2bd{bottom:493.956267pt;}
.y1a7{bottom:494.945733pt;}
.y272{bottom:498.109333pt;}
.yaf{bottom:498.484267pt;}
.y8c{bottom:500.381733pt;}
.y1c5{bottom:500.934667pt;}
.y108{bottom:501.090800pt;}
.y203{bottom:501.515333pt;}
.y36{bottom:505.137600pt;}
.y2bc{bottom:505.286267pt;}
.y12{bottom:505.296267pt;}
.y23b{bottom:506.907467pt;}
.y1a6{bottom:508.277733pt;}
.y271{bottom:511.441333pt;}
.yae{bottom:511.817600pt;}
.y8b{bottom:513.713733pt;}
.y15c{bottom:514.249733pt;}
.y1c4{bottom:514.266667pt;}
.y107{bottom:514.422800pt;}
.y187{bottom:514.733733pt;}
.y202{bottom:514.850000pt;}
.y2ee{bottom:515.829600pt;}
.y2bb{bottom:516.616267pt;}
.y35{bottom:518.469600pt;}
.y11{bottom:519.960267pt;}
.y1a5{bottom:521.609733pt;}
.y270{bottom:524.773333pt;}
.yad{bottom:525.150933pt;}
.y8a{bottom:527.045733pt;}
.y15b{bottom:527.581733pt;}
.y1c3{bottom:527.600000pt;}
.y106{bottom:527.754800pt;}
.y2ba{bottom:527.946267pt;}
.y186{bottom:528.065733pt;}
.y201{bottom:528.182000pt;}
.y2ed{bottom:529.161600pt;}
.y10{bottom:534.624267pt;}
.y1a4{bottom:534.941733pt;}
.y23a{bottom:537.363467pt;}
.y26f{bottom:538.105333pt;}
.yac{bottom:538.484267pt;}
.y2b9{bottom:539.276267pt;}
.y89{bottom:540.377733pt;}
.y15a{bottom:540.913733pt;}
.y105{bottom:541.086800pt;}
.y185{bottom:541.397733pt;}
.y200{bottom:541.522000pt;}
.y2ec{bottom:542.493600pt;}
.y1a3{bottom:548.273733pt;}
.yf{bottom:549.288267pt;}
.y2b8{bottom:550.606267pt;}
.y239{bottom:550.695467pt;}
.y26e{bottom:551.437333pt;}
.yab{bottom:551.818933pt;}
.y88{bottom:553.709733pt;}
.y159{bottom:554.245733pt;}
.y1c2{bottom:554.381467pt;}
.y104{bottom:554.418800pt;}
.y184{bottom:554.729733pt;}
.y1ff{bottom:554.854000pt;}
.y2eb{bottom:555.825600pt;}
.y1a2{bottom:561.605733pt;}
.y2b7{bottom:561.936267pt;}
.ye{bottom:563.952267pt;}
.y238{bottom:564.027467pt;}
.y26d{bottom:564.769333pt;}
.yaa{bottom:565.150933pt;}
.y67{bottom:565.637600pt;}
.y87{bottom:567.041733pt;}
.y158{bottom:567.577733pt;}
.y1c1{bottom:567.713467pt;}
.y103{bottom:567.750800pt;}
.y183{bottom:568.061733pt;}
.y1fe{bottom:568.186000pt;}
.y2ea{bottom:569.157600pt;}
.y2b6{bottom:573.266267pt;}
.y1a1{bottom:574.937733pt;}
.y237{bottom:577.359467pt;}
.y26c{bottom:578.101333pt;}
.ya9{bottom:578.505600pt;}
.yd{bottom:578.616267pt;}
.y66{bottom:578.969600pt;}
.y86{bottom:580.373733pt;}
.y157{bottom:580.909733pt;}
.y1c0{bottom:581.045467pt;}
.y102{bottom:581.082800pt;}
.y182{bottom:581.393733pt;}
.y1fd{bottom:581.518000pt;}
.y2e9{bottom:582.489600pt;}
.y2b5{bottom:584.596267pt;}
.y1a0{bottom:588.269733pt;}
.y236{bottom:590.692800pt;}
.ya8{bottom:591.837600pt;}
.yc{bottom:593.280267pt;}
.y85{bottom:593.705733pt;}
.y156{bottom:594.241733pt;}
.y1bf{bottom:594.377467pt;}
.y101{bottom:594.414800pt;}
.y181{bottom:594.725733pt;}
.y1fc{bottom:594.850000pt;}
.y2e8{bottom:595.821600pt;}
.y2b4{bottom:595.926267pt;}
.y19f{bottom:601.601733pt;}
.y235{bottom:604.027467pt;}
.y26b{bottom:605.045600pt;}
.ya7{bottom:605.169600pt;}
.y65{bottom:605.800267pt;}
.y2b3{bottom:607.256267pt;}
.y155{bottom:607.573733pt;}
.y1be{bottom:607.709467pt;}
.y100{bottom:607.746800pt;}
.yb{bottom:607.944267pt;}
.y180{bottom:608.057733pt;}
.y1fb{bottom:608.182000pt;}
.y2e7{bottom:609.153600pt;}
.y19e{bottom:614.933733pt;}
.y234{bottom:617.359467pt;}
.y26a{bottom:618.377600pt;}
.ya6{bottom:618.501600pt;}
.y2b2{bottom:618.586267pt;}
.y154{bottom:620.909733pt;}
.y1bd{bottom:621.041467pt;}
.yff{bottom:621.078800pt;}
.y64{bottom:621.302933pt;}
.y17f{bottom:621.389733pt;}
.y1fa{bottom:621.518000pt;}
.y2e6{bottom:622.485600pt;}
.ya{bottom:622.608267pt;}
.y19d{bottom:628.265733pt;}
.y2b1{bottom:629.916267pt;}
.y233{bottom:630.712800pt;}
.y269{bottom:631.709600pt;}
.ya5{bottom:631.833600pt;}
.y153{bottom:634.241733pt;}
.y1bc{bottom:634.374800pt;}
.yfe{bottom:634.418800pt;}
.y17e{bottom:634.721733pt;}
.y1f9{bottom:634.850000pt;}
.y2e5{bottom:635.817600pt;}
.y63{bottom:636.805600pt;}
.y2b0{bottom:641.246267pt;}
.y232{bottom:644.044800pt;}
.y268{bottom:645.041600pt;}
.ya4{bottom:645.165600pt;}
.y152{bottom:647.573733pt;}
.yfd{bottom:647.750800pt;}
.y17d{bottom:648.053733pt;}
.y1f8{bottom:648.182000pt;}
.y2e4{bottom:649.149600pt;}
.y9{bottom:649.274933pt;}
.y62{bottom:652.308267pt;}
.y2af{bottom:652.576267pt;}
.y231{bottom:657.376800pt;}
.y267{bottom:658.373600pt;}
.ya3{bottom:658.497600pt;}
.y151{bottom:660.905733pt;}
.yfc{bottom:661.082800pt;}
.y1bb{bottom:661.168267pt;}
.y17c{bottom:661.385733pt;}
.y1f7{bottom:661.518933pt;}
.y2e3{bottom:662.482933pt;}
.y2ae{bottom:663.906267pt;}
.y8{bottom:665.274933pt;}
.y61{bottom:667.810933pt;}
.y230{bottom:670.708800pt;}
.y266{bottom:671.705600pt;}
.ya2{bottom:671.829600pt;}
.y32{bottom:672.933333pt;}
.yfb{bottom:674.414800pt;}
.y1ba{bottom:674.500267pt;}
.y1f6{bottom:674.850933pt;}
.y2ad{bottom:675.236267pt;}
.y60{bottom:683.313600pt;}
.y22f{bottom:684.040800pt;}
.y265{bottom:685.037600pt;}
.ya1{bottom:685.161600pt;}
.y2ac{bottom:686.566267pt;}
.yfa{bottom:687.746800pt;}
.y1b9{bottom:687.832267pt;}
.y1f5{bottom:688.182933pt;}
.y31{bottom:691.600000pt;}
.y7{bottom:694.592267pt;}
.y22e{bottom:697.372800pt;}
.y2ab{bottom:697.896267pt;}
.ya0{bottom:698.493600pt;}
.y5c{bottom:698.806933pt;}
.y5f{bottom:698.816267pt;}
.yf9{bottom:701.078800pt;}
.y1b8{bottom:701.164267pt;}
.y1f4{bottom:701.514933pt;}
.y5b{bottom:708.802933pt;}
.y5e{bottom:708.812267pt;}
.y2aa{bottom:709.226267pt;}
.y30{bottom:710.266667pt;}
.y22d{bottom:710.704800pt;}
.y9f{bottom:711.825600pt;}
.yf8{bottom:714.410800pt;}
.y1b7{bottom:714.496267pt;}
.y264{bottom:714.497600pt;}
.y1f3{bottom:714.846933pt;}
.y5d{bottom:718.808267pt;}
.y2a9{bottom:720.556267pt;}
.y22c{bottom:724.036800pt;}
.y9e{bottom:725.157600pt;}
.yf7{bottom:727.744133pt;}
.y1b6{bottom:727.828267pt;}
.y263{bottom:727.829600pt;}
.y2a8{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.y22b{bottom:737.368800pt;}
.y9d{bottom:738.489600pt;}
.y1b5{bottom:741.160267pt;}
.y262{bottom:741.161600pt;}
.y1f2{bottom:742.473600pt;}
.y2a7{bottom:743.216267pt;}
.y22a{bottom:750.700800pt;}
.y9c{bottom:751.821600pt;}
.y1b4{bottom:754.492267pt;}
.y261{bottom:754.493600pt;}
.yf6{bottom:754.504267pt;}
.y2a6{bottom:754.546267pt;}
.y1f1{bottom:755.805600pt;}
.y5a{bottom:760.109733pt;}
.y229{bottom:764.032800pt;}
.y9b{bottom:765.153600pt;}
.y2a5{bottom:765.876267pt;}
.y1b3{bottom:767.824267pt;}
.y260{bottom:767.825600pt;}
.yf5{bottom:767.836267pt;}
.y1f0{bottom:769.137600pt;}
.y59{bottom:773.441733pt;}
.y5{bottom:774.602933pt;}
.y2a4{bottom:777.206267pt;}
.y228{bottom:777.364800pt;}
.y9a{bottom:778.485600pt;}
.y1b2{bottom:781.156267pt;}
.y25f{bottom:781.157600pt;}
.yf4{bottom:781.168267pt;}
.y1ef{bottom:782.469600pt;}
.y58{bottom:786.773733pt;}
.y2a3{bottom:788.536267pt;}
.y227{bottom:790.696800pt;}
.y99{bottom:791.817600pt;}
.y1b1{bottom:794.488267pt;}
.y25e{bottom:794.489600pt;}
.yf3{bottom:794.500267pt;}
.y1ee{bottom:795.801600pt;}
.y2a2{bottom:799.866267pt;}
.y57{bottom:800.105733pt;}
.y226{bottom:804.028800pt;}
.y98{bottom:805.150933pt;}
.y1b0{bottom:807.820267pt;}
.y25d{bottom:807.821600pt;}
.yf2{bottom:807.832267pt;}
.y1ed{bottom:809.133600pt;}
.y2a1{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y225{bottom:817.360800pt;}
.y97{bottom:818.482933pt;}
.y1af{bottom:821.152267pt;}
.y25c{bottom:821.153600pt;}
.yf1{bottom:821.164267pt;}
.y1ec{bottom:822.465600pt;}
.y2a0{bottom:822.526267pt;}
.y33{bottom:823.475200pt;}
.y224{bottom:830.692800pt;}
.y96{bottom:831.816267pt;}
.y29f{bottom:833.856267pt;}
.y1ae{bottom:834.484267pt;}
.y25b{bottom:834.485600pt;}
.yf0{bottom:834.496267pt;}
.y1eb{bottom:835.797600pt;}
.y223{bottom:844.032267pt;}
.y29e{bottom:845.186267pt;}
.y25a{bottom:847.817600pt;}
.y1ad{bottom:847.818933pt;}
.yef{bottom:847.828267pt;}
.y1ea{bottom:849.129600pt;}
.y29d{bottom:856.516267pt;}
.y222{bottom:857.364267pt;}
.y1ac{bottom:861.150933pt;}
.y95{bottom:861.160267pt;}
.y1e9{bottom:862.461600pt;}
.y29c{bottom:867.846267pt;}
.y221{bottom:870.696267pt;}
.y1ab{bottom:874.485600pt;}
.y94{bottom:874.492267pt;}
.y1e8{bottom:875.793600pt;}
.y29b{bottom:879.176267pt;}
.y220{bottom:884.028267pt;}
.y1aa{bottom:887.817600pt;}
.y93{bottom:887.824267pt;}
.y1e7{bottom:889.125600pt;}
.y29a{bottom:890.506267pt;}
.y21f{bottom:897.360267pt;}
.y1a9{bottom:901.152267pt;}
.y92{bottom:901.156267pt;}
.y299{bottom:901.836267pt;}
.y298{bottom:913.166267pt;}
.y1a8{bottom:914.484267pt;}
.y91{bottom:914.488267pt;}
.y297{bottom:924.496267pt;}
.y90{bottom:927.820267pt;}
.y296{bottom:935.826267pt;}
.y8f{bottom:941.152267pt;}
.y295{bottom:947.156267pt;}
.y8e{bottom:954.484267pt;}
.y294{bottom:958.486267pt;}
.y8d{bottom:967.816267pt;}
.y293{bottom:969.816267pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hd{height:21.193555pt;}
.h16{height:26.656000pt;}
.h17{height:27.216000pt;}
.h18{height:27.589333pt;}
.h2d{height:28.640000pt;}
.h3{height:30.687500pt;}
.hf{height:32.605469pt;}
.h19{height:34.272000pt;}
.h8{height:34.368000pt;}
.h7{height:34.523438pt;}
.h12{height:35.472000pt;}
.he{height:36.585555pt;}
.h2{height:38.359375pt;}
.h9{height:38.504533pt;}
.h1e{height:38.568533pt;}
.h15{height:38.595200pt;}
.h24{height:38.600533pt;}
.h23{height:38.605867pt;}
.h22{height:38.611200pt;}
.h2b{height:38.613333pt;}
.h27{height:38.616000pt;}
.h26{height:38.616533pt;}
.h29{height:38.626667pt;}
.h20{height:38.627200pt;}
.h2a{height:38.629333pt;}
.h2c{height:38.632000pt;}
.h1a{height:38.632533pt;}
.h1d{height:38.637333pt;}
.h13{height:38.637867pt;}
.h28{height:38.639467pt;}
.h1c{height:38.642667pt;}
.ha{height:38.643200pt;}
.h21{height:38.648000pt;}
.hb{height:38.648533pt;}
.h1b{height:38.653333pt;}
.hc{height:38.653867pt;}
.h11{height:38.659200pt;}
.h1f{height:39.275467pt;}
.h4{height:39.318359pt;}
.h25{height:39.366133pt;}
.h14{height:42.195312pt;}
.h6{height:43.066927pt;}
.h10{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;}
.x8{left:63.234800pt;}
.x7{left:70.178800pt;}
.x6{left:78.178800pt;}
.x9{left:125.291333pt;}
.x4{left:207.516800pt;}
.xa{left:211.683467pt;}
.x5{left:223.513333pt;}
.x12{left:266.976267pt;}
.xb{left:329.498133pt;}
.xc{left:334.127467pt;}
.xe{left:407.814133pt;}
.xd{left:412.322133pt;}
.x3{left:519.632533pt;}
.x10{left:725.336533pt;}
.x11{left:726.469467pt;}
.xf{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; }
  