
    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_83f9b345eea54fe5d3d9eb32.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_71fb1989b556a171b4ab22ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_43de820ab73724d6f6003bc1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_868105fec71c71d8145cd667.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065581;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_37cffb367888fa03f9a36cd8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_786df6a781fd3ef2e100515c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.223000;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_386c29bb25405dc6b7fc167a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239000;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_a321bbf959a4a830c5f563e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142000;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_80daf17d0594e4e0d9951da4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_6b2d6dc356e72e00cd1a2168.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065581;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_24fe79818c321d8b7efd3299.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_11c78c387a27d6466e507611.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.065581;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_4d1990bd8007ebc82adc1775.woff2')format("woff");}.fff{font-family:fff;line-height:1.144000;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_cd4802b2f2da09aae5842a24.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.665000;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_357fc2403fec243457da6bdd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.669000;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_3d6c7bd5defc403122515727.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.861000;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_31dc90b5905bbc7bfc479392.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.860000;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_58d64b6f77daaa7f92974e8f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.853000;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_d5a5fb09d161a713a5853a69.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.687000;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_c1d4eea0333b661740fdffa3.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.328000;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_a23fd2dad79da54faeb7ffcb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.611000;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_9225f7f9d9d9f7be1a954c68.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.557000;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_12567b623be2c841703e945a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.672000;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_db9e9117b0706e33fef7b989.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.452000;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_ebbfdd904661d22d9836626b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.665000;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_e539e572c26a208689d50e4a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.890000;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:ff1d;src:url('chunks/assets/font_0efad7ff49edbf85e4e801c3.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.588000;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:ff1e;src:url('chunks/assets/font_a9b6a2885c55664dc5052803.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.851000;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:ff1f;src:url('chunks/assets/font_3bf8ba2577b524efad8a825e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.450000;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:ff20;src:url('chunks/assets/font_76de29f102f2c494d6e90be0.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.676000;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:ff21;src:url('chunks/assets/font_ce32b7386187c417acc3effe.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.669000;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:ff22;src:url('chunks/assets/font_e6f7d79d917514e948d1e4a6.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.643000;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:ff23;src:url('chunks/assets/font_91a75721d783ea2fd07641a8.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.199979px;}
.v3{vertical-align:-15.012085px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.013916px;}
.v1{vertical-align:24.000000px;}
.v5{vertical-align:33.675600px;}
.ls19{letter-spacing:-2.832000px;}
.ls1c{letter-spacing:-1.536000px;}
.ls1b{letter-spacing:-1.500000px;}
.ls1a{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-0.900000px;}
.ls1f{letter-spacing:-0.840000px;}
.ls18{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.300000px;}
.ls1{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.004556px;}
.lse{letter-spacing:0.004830px;}
.ls13{letter-spacing:0.042010px;}
.ls1d{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.533991px;}
.lsd{letter-spacing:0.539990px;}
.ls6{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.600000px;}
.ls2e{letter-spacing:0.638361px;}
.ls25{letter-spacing:0.672000px;}
.ls2{letter-spacing:0.840000px;}
.ls21{letter-spacing:1.305600px;}
.ls2b{letter-spacing:1.343914px;}
.ls7{letter-spacing:1.604564px;}
.ls16{letter-spacing:1.657985px;}
.ls34{letter-spacing:1.689586px;}
.ls32{letter-spacing:2.932800px;}
.ls15{letter-spacing:3.009794px;}
.ls31{letter-spacing:3.124870px;}
.ls27{letter-spacing:3.220790px;}
.lsb{letter-spacing:3.300825px;}
.ls24{letter-spacing:3.888000px;}
.ls1e{letter-spacing:4.320000px;}
.ls2d{letter-spacing:4.751957px;}
.ls2c{letter-spacing:5.327963px;}
.ls2a{letter-spacing:5.375962px;}
.ls23{letter-spacing:6.196800px;}
.ls33{letter-spacing:7.968000px;}
.ls35{letter-spacing:9.888000px;}
.lsa{letter-spacing:9.962490px;}
.ls9{letter-spacing:10.022505px;}
.ls26{letter-spacing:11.385667px;}
.ls30{letter-spacing:11.572800px;}
.ls22{letter-spacing:12.239988px;}
.ls29{letter-spacing:12.676758px;}
.ls11{letter-spacing:13.323329px;}
.ls2f{letter-spacing:13.704000px;}
.ls10{letter-spacing:15.723929px;}
.ls17{letter-spacing:16.347104px;}
.ls8{letter-spacing:16.684169px;}
.ls12{letter-spacing:17.158445px;}
.ls28{letter-spacing:21.225587px;}
.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;}
}
.ws1a{word-spacing:-60.000000px;}
.wsc4{word-spacing:-15.060000px;}
.wsb3{word-spacing:-15.000000px;}
.ws19{word-spacing:-13.332000px;}
.ws110{word-spacing:-12.672000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.wsf0{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.520000px;}
.wsa9{word-spacing:-11.340000px;}
.wsb9{word-spacing:-10.464000px;}
.ws2{word-spacing:-9.408000px;}
.wsfe{word-spacing:-9.216000px;}
.wsd0{word-spacing:-9.168000px;}
.ws4{word-spacing:-8.694000px;}
.ws7{word-spacing:-8.400000px;}
.ws9f{word-spacing:-7.500000px;}
.wse1{word-spacing:-6.000000px;}
.ws8{word-spacing:-1.890000px;}
.ws52{word-spacing:-1.140000px;}
.wsb6{word-spacing:-1.020000px;}
.wsf3{word-spacing:-0.900000px;}
.ws3a{word-spacing:-0.840000px;}
.ws38{word-spacing:-0.720000px;}
.ws120{word-spacing:-0.672000px;}
.wsa3{word-spacing:-0.660000px;}
.ws60{word-spacing:-0.600000px;}
.ws13e{word-spacing:-0.576000px;}
.ws8f{word-spacing:-0.540000px;}
.ws63{word-spacing:-0.480000px;}
.ws5e{word-spacing:-0.420000px;}
.wsca{word-spacing:-0.360000px;}
.ws95{word-spacing:-0.300000px;}
.ws118{word-spacing:-0.288000px;}
.ws48{word-spacing:-0.240000px;}
.ws135{word-spacing:-0.192000px;}
.ws17{word-spacing:-0.180000px;}
.ws12a{word-spacing:-0.144000px;}
.ws65{word-spacing:-0.120000px;}
.ws151{word-spacing:-0.096000px;}
.ws99{word-spacing:-0.060015px;}
.ws53{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws124{word-spacing:0.048000px;}
.ws46{word-spacing:0.060000px;}
.ws12d{word-spacing:0.096000px;}
.wsa7{word-spacing:0.120000px;}
.wsd{word-spacing:0.180000px;}
.ws12f{word-spacing:0.192000px;}
.ws16{word-spacing:0.240000px;}
.wsf{word-spacing:0.300000px;}
.ws111{word-spacing:0.336000px;}
.wsb{word-spacing:0.360000px;}
.ws8c{word-spacing:0.420000px;}
.ws109{word-spacing:0.432000px;}
.ws30{word-spacing:0.480000px;}
.ws28{word-spacing:0.540000px;}
.ws130{word-spacing:0.576000px;}
.ws73{word-spacing:0.600000px;}
.ws69{word-spacing:0.660000px;}
.ws140{word-spacing:0.672000px;}
.ws147{word-spacing:0.720000px;}
.ws156{word-spacing:0.768000px;}
.ws81{word-spacing:0.780000px;}
.ws2b{word-spacing:0.840000px;}
.ws136{word-spacing:0.864000px;}
.ws36{word-spacing:0.900000px;}
.ws139{word-spacing:0.912000px;}
.ws8d{word-spacing:0.960000px;}
.ws13f{word-spacing:1.008000px;}
.ws6f{word-spacing:1.020000px;}
.ws31{word-spacing:1.080000px;}
.ws71{word-spacing:1.140000px;}
.wsbf{word-spacing:1.200000px;}
.ws112{word-spacing:1.248000px;}
.ws7e{word-spacing:1.260000px;}
.ws125{word-spacing:1.296000px;}
.ws94{word-spacing:1.320000px;}
.ws10d{word-spacing:1.344000px;}
.ws25{word-spacing:1.380000px;}
.ws152{word-spacing:1.440000px;}
.ws5f{word-spacing:1.500000px;}
.ws13c{word-spacing:1.536000px;}
.wsa1{word-spacing:1.560000px;}
.ws10f{word-spacing:1.584000px;}
.ws7b{word-spacing:1.620000px;}
.ws143{word-spacing:1.632000px;}
.ws1b{word-spacing:1.680000px;}
.ws8a{word-spacing:1.800000px;}
.ws15d{word-spacing:1.824000px;}
.ws84{word-spacing:1.860000px;}
.ws145{word-spacing:1.968000px;}
.ws26{word-spacing:1.980000px;}
.ws59{word-spacing:2.040000px;}
.ws134{word-spacing:2.064000px;}
.ws47{word-spacing:2.100000px;}
.wsa6{word-spacing:2.160000px;}
.wsf2{word-spacing:2.220000px;}
.wscc{word-spacing:2.280000px;}
.ws113{word-spacing:2.304000px;}
.ws32{word-spacing:2.340000px;}
.ws15e{word-spacing:2.352000px;}
.ws24{word-spacing:2.400000px;}
.ws6a{word-spacing:2.460000px;}
.ws68{word-spacing:2.520000px;}
.ws122{word-spacing:2.544000px;}
.ws39{word-spacing:2.580000px;}
.ws14f{word-spacing:2.592000px;}
.ws1e{word-spacing:2.640000px;}
.ws15b{word-spacing:2.688000px;}
.ws56{word-spacing:2.700000px;}
.ws146{word-spacing:2.736000px;}
.ws79{word-spacing:2.760000px;}
.ws4e{word-spacing:2.820000px;}
.ws13a{word-spacing:2.832000px;}
.ws8e{word-spacing:2.880000px;}
.ws14b{word-spacing:2.928000px;}
.wsfc{word-spacing:2.940000px;}
.ws1c{word-spacing:3.000000px;}
.ws12c{word-spacing:3.024000px;}
.ws137{word-spacing:3.072000px;}
.ws89{word-spacing:3.120000px;}
.ws97{word-spacing:3.180000px;}
.ws10e{word-spacing:3.216000px;}
.wsc0{word-spacing:3.240000px;}
.ws121{word-spacing:3.264000px;}
.wsbe{word-spacing:3.300000px;}
.ws78{word-spacing:3.360000px;}
.ws11d{word-spacing:3.408000px;}
.ws27{word-spacing:3.420000px;}
.ws10b{word-spacing:3.456000px;}
.wsa2{word-spacing:3.480000px;}
.ws117{word-spacing:3.504000px;}
.ws4f{word-spacing:3.540000px;}
.ws126{word-spacing:3.552000px;}
.ws55{word-spacing:3.600000px;}
.ws14e{word-spacing:3.696000px;}
.wscb{word-spacing:3.720000px;}
.ws11c{word-spacing:3.744000px;}
.ws8b{word-spacing:3.780000px;}
.ws66{word-spacing:3.840000px;}
.ws149{word-spacing:3.888000px;}
.wsa{word-spacing:3.900000px;}
.ws93{word-spacing:3.960000px;}
.ws138{word-spacing:3.984000px;}
.ws12{word-spacing:4.020000px;}
.ws10a{word-spacing:4.032000px;}
.ws6d{word-spacing:4.080000px;}
.ws158{word-spacing:4.128000px;}
.wsf4{word-spacing:4.140000px;}
.ws159{word-spacing:4.176000px;}
.wsc1{word-spacing:4.200000px;}
.ws9d{word-spacing:4.260000px;}
.ws14d{word-spacing:4.272000px;}
.ws61{word-spacing:4.320000px;}
.ws10c{word-spacing:4.368000px;}
.wsc9{word-spacing:4.380000px;}
.ws43{word-spacing:4.440000px;}
.ws11e{word-spacing:4.464000px;}
.wsa0{word-spacing:4.500000px;}
.wsce{word-spacing:4.560000px;}
.ws7f{word-spacing:4.620000px;}
.wsb7{word-spacing:4.656000px;}
.ws57{word-spacing:4.680000px;}
.ws129{word-spacing:4.704000px;}
.ws5c{word-spacing:4.740000px;}
.ws9{word-spacing:4.800000px;}
.ws77{word-spacing:4.860000px;}
.ws58{word-spacing:4.920000px;}
.ws11b{word-spacing:4.944000px;}
.ws3e{word-spacing:4.980000px;}
.ws86{word-spacing:5.040000px;}
.ws29{word-spacing:5.100000px;}
.ws80{word-spacing:5.160000px;}
.ws14c{word-spacing:5.184000px;}
.ws9e{word-spacing:5.220000px;}
.ws150{word-spacing:5.232000px;}
.ws1f{word-spacing:5.280000px;}
.ws49{word-spacing:5.340000px;}
.ws72{word-spacing:5.400000px;}
.wsc8{word-spacing:5.460000px;}
.ws12b{word-spacing:5.472000px;}
.ws54{word-spacing:5.520000px;}
.wsdc{word-spacing:5.580000px;}
.ws148{word-spacing:5.616000px;}
.ws5d{word-spacing:5.640000px;}
.ws4b{word-spacing:5.700000px;}
.ws115{word-spacing:5.760000px;}
.wsb4{word-spacing:5.820000px;}
.ws131{word-spacing:5.856000px;}
.ws4c{word-spacing:5.880000px;}
.ws5a{word-spacing:5.940000px;}
.ws132{word-spacing:5.952000px;}
.wsbd{word-spacing:6.000000px;}
.ws141{word-spacing:6.048000px;}
.ws14{word-spacing:6.060000px;}
.ws119{word-spacing:6.096000px;}
.ws64{word-spacing:6.120000px;}
.ws45{word-spacing:6.180000px;}
.wsb2{word-spacing:6.240000px;}
.wsa5{word-spacing:6.300000px;}
.ws42{word-spacing:6.360000px;}
.ws11a{word-spacing:6.384000px;}
.ws20{word-spacing:6.420000px;}
.ws35{word-spacing:6.480000px;}
.ws11{word-spacing:6.540000px;}
.ws155{word-spacing:6.576000px;}
.wsa8{word-spacing:6.660000px;}
.ws5b{word-spacing:6.720000px;}
.ws15c{word-spacing:6.768000px;}
.ws2f{word-spacing:6.840000px;}
.wsfa{word-spacing:6.900000px;}
.wsde{word-spacing:6.960000px;}
.ws22{word-spacing:7.020000px;}
.ws10{word-spacing:7.080000px;}
.ws6b{word-spacing:7.140000px;}
.ws114{word-spacing:7.152000px;}
.ws6e{word-spacing:7.200000px;}
.ws51{word-spacing:7.260000px;}
.ws50{word-spacing:7.320000px;}
.ws15{word-spacing:7.380000px;}
.ws3f{word-spacing:7.440000px;}
.ws90{word-spacing:7.500000px;}
.wsf1{word-spacing:7.560000px;}
.ws82{word-spacing:7.620000px;}
.ws37{word-spacing:7.680000px;}
.ws2a{word-spacing:7.740000px;}
.ws157{word-spacing:7.776000px;}
.ws40{word-spacing:7.800000px;}
.ws153{word-spacing:7.824000px;}
.ws2d{word-spacing:7.860000px;}
.ws2c{word-spacing:7.920000px;}
.wsc6{word-spacing:7.980000px;}
.ws154{word-spacing:8.016000px;}
.ws3d{word-spacing:8.040000px;}
.ws85{word-spacing:8.100000px;}
.wsc{word-spacing:8.160000px;}
.ws2e{word-spacing:8.220000px;}
.ws44{word-spacing:8.280000px;}
.ws7c{word-spacing:8.340000px;}
.ws92{word-spacing:8.400000px;}
.ws4a{word-spacing:8.460000px;}
.ws12e{word-spacing:8.496000px;}
.ws6c{word-spacing:8.520000px;}
.wsf8{word-spacing:8.580000px;}
.ws9c{word-spacing:8.640000px;}
.ws87{word-spacing:8.700000px;}
.wse0{word-spacing:8.760000px;}
.wsfd{word-spacing:8.880000px;}
.ws7d{word-spacing:9.000000px;}
.ws14a{word-spacing:9.072000px;}
.wsf6{word-spacing:9.120000px;}
.ws98{word-spacing:9.240000px;}
.ws13d{word-spacing:9.312000px;}
.ws83{word-spacing:9.360000px;}
.ws91{word-spacing:9.420000px;}
.ws70{word-spacing:9.480000px;}
.ws21{word-spacing:9.540000px;}
.wsb5{word-spacing:9.600000px;}
.ws127{word-spacing:9.696000px;}
.ws67{word-spacing:9.720000px;}
.ws13{word-spacing:9.780000px;}
.ws15a{word-spacing:9.792000px;}
.ws1d{word-spacing:9.840000px;}
.ws96{word-spacing:9.960000px;}
.ws74{word-spacing:10.080000px;}
.ws41{word-spacing:10.200000px;}
.ws13b{word-spacing:10.368000px;}
.wsb1{word-spacing:10.380000px;}
.ws11f{word-spacing:10.704000px;}
.wsc2{word-spacing:10.800000px;}
.wse{word-spacing:11.040000px;}
.wsf5{word-spacing:11.100000px;}
.ws3b{word-spacing:11.340000px;}
.ws144{word-spacing:11.664000px;}
.wsdd{word-spacing:11.700000px;}
.ws4d{word-spacing:11.760000px;}
.ws7a{word-spacing:11.940000px;}
.wsc3{word-spacing:12.000000px;}
.ws128{word-spacing:12.144000px;}
.ws75{word-spacing:12.180000px;}
.wsdf{word-spacing:12.240000px;}
.ws116{word-spacing:12.336000px;}
.ws62{word-spacing:12.480000px;}
.wsf9{word-spacing:13.080000px;}
.wsfb{word-spacing:13.500000px;}
.ws142{word-spacing:13.728000px;}
.ws33{word-spacing:13.800000px;}
.wsc7{word-spacing:14.220000px;}
.ws76{word-spacing:14.580000px;}
.wscd{word-spacing:14.820000px;}
.ws88{word-spacing:14.880000px;}
.ws133{word-spacing:16.416000px;}
.ws23{word-spacing:16.500000px;}
.ws9b{word-spacing:17.030278px;}
.ws3c{word-spacing:17.820000px;}
.wsa4{word-spacing:19.140000px;}
.wsf7{word-spacing:20.100000px;}
.ws9a{word-spacing:20.341560px;}
.ws123{word-spacing:20.496000px;}
.ws34{word-spacing:23.820000px;}
.wsaa{word-spacing:37.776000px;}
.wsae{word-spacing:43.104000px;}
.wsad{word-spacing:49.776000px;}
.wsab{word-spacing:61.776000px;}
.ws18{word-spacing:73.056000px;}
.wsbb{word-spacing:88.511993px;}
.wsb8{word-spacing:88.512000px;}
.wsaf{word-spacing:121.776000px;}
.wse9{word-spacing:147.695984px;}
.wse2{word-spacing:147.696000px;}
.wsc5{word-spacing:158.639992px;}
.wse8{word-spacing:163.727984px;}
.wsac{word-spacing:166.800000px;}
.wse6{word-spacing:171.695984px;}
.wsd6{word-spacing:188.207977px;}
.wsd3{word-spacing:188.207991px;}
.wscf{word-spacing:188.208000px;}
.wsea{word-spacing:195.695984px;}
.wsda{word-spacing:200.308791px;}
.wsd5{word-spacing:204.239977px;}
.wseb{word-spacing:211.727984px;}
.wsd4{word-spacing:212.207977px;}
.wsb0{word-spacing:213.168000px;}
.wse7{word-spacing:220.656000px;}
.wsd8{word-spacing:228.239977px;}
.wse5{word-spacing:235.727984px;}
.wsd9{word-spacing:236.207977px;}
.wsd2{word-spacing:252.239977px;}
.wsff{word-spacing:256.704000px;}
.wsdb{word-spacing:259.727991px;}
.wsbc{word-spacing:263.904000px;}
.wsd1{word-spacing:281.088000px;}
.ws100{word-spacing:281.136000px;}
.wsba{word-spacing:297.840000px;}
.wse4{word-spacing:312.576000px;}
.ws104{word-spacing:324.576000px;}
.ws103{word-spacing:360.144000px;}
.wsd7{word-spacing:386.927991px;}
.wse3{word-spacing:393.839990px;}
.wsec{word-spacing:416.447990px;}
.ws108{word-spacing:417.791990px;}
.ws107{word-spacing:417.792000px;}
.ws106{word-spacing:424.464000px;}
.ws102{word-spacing:445.584000px;}
.ws101{word-spacing:525.696000px;}
.ws105{word-spacing:575.207898px;}
.wsee{word-spacing:692.112000px;}
.wsed{word-spacing:1039.775959px;}
.wsef{word-spacing:1577.615965px;}
._67{margin-left:-19.392014px;}
._3a{margin-left:-17.400000px;}
._6{margin-left:-15.600000px;}
._39{margin-left:-14.400000px;}
._80{margin-left:-13.221600px;}
._81{margin-left:-5.439600px;}
._4{margin-left:-4.398000px;}
._3{margin-left:-2.820000px;}
._0{margin-left:-1.632000px;}
._1{width:1.320000px;}
._d{width:3.288000px;}
._f{width:4.470000px;}
._e{width:5.676000px;}
._a{width:6.960000px;}
._b{width:8.586000px;}
._5{width:10.752000px;}
._3b{width:12.611977px;}
._10{width:14.106000px;}
._7f{width:21.168000px;}
._7{width:22.320000px;}
._13{width:37.175989px;}
._2{width:40.920021px;}
._26{width:49.776000px;}
._21{width:55.104000px;}
._9{width:56.255991px;}
._24{width:61.776000px;}
._15{width:63.995989px;}
._1a{width:70.607989px;}
._8{width:73.056000px;}
._14{width:74.291989px;}
._22{width:80.712000px;}
._23{width:85.776000px;}
._1e{width:87.408000px;}
._29{width:97.776000px;}
._2c{width:117.840000px;}
._2b{width:122.196000px;}
._1f{width:125.760000px;}
._1d{width:132.480000px;}
._28{width:133.776000px;}
._31{width:136.511993px;}
._3c{width:139.038622px;}
._30{width:141.983987px;}
._25{width:147.120000px;}
._33{width:150.276007px;}
._1c{width:152.982000px;}
._27{width:157.824000px;}
._58{width:159.696000px;}
._34{width:168.576000px;}
._2a{width:181.290000px;}
._2f{width:185.046000px;}
._56{width:187.776000px;}
._37{width:189.840000px;}
._46{width:200.628000px;}
._32{width:208.560000px;}
._55{width:210.815984px;}
._5a{width:225.576011px;}
._6a{width:228.240000px;}
._2e{width:229.872000px;}
._5c{width:231.888010px;}
._40{width:236.159977px;}
._3d{width:237.552000px;}
._18{width:243.719989px;}
._2d{width:248.496000px;}
._5e{width:252.576000px;}
._35{width:257.483993px;}
._20{width:259.104000px;}
._54{width:264.528000px;}
._48{width:265.578009px;}
._49{width:268.271991px;}
._5f{width:271.247990px;}
._47{width:273.168000px;}
._59{width:277.343990px;}
._38{width:280.608000px;}
._3e{width:284.741991px;}
._4b{width:290.064009px;}
._4d{width:293.088000px;}
._50{width:294.911991px;}
._42{width:296.207977px;}
._57{width:298.211990px;}
._36{width:299.232000px;}
._64{width:304.656000px;}
._41{width:308.255991px;}
._45{width:313.200000px;}
._17{width:316.037989px;}
._4f{width:317.088000px;}
._63{width:323.663984px;}
._53{width:331.631984px;}
._44{width:333.120000px;}
._6d{width:335.712000px;}
._4e{width:339.167991px;}
._66{width:340.656000px;}
._43{width:345.168000px;}
._65{width:359.909995px;}
._60{width:363.695984px;}
._4a{width:365.088000px;}
._4c{width:380.303991px;}
._52{width:382.325990px;}
._62{width:388.656000px;}
._70{width:390.048000px;}
._51{width:401.083200px;}
._61{width:408.576000px;}
._3f{width:417.024000px;}
._78{width:424.176000px;}
._6c{width:425.808000px;}
._72{width:426.864000px;}
._5d{width:436.751990px;}
._75{width:440.160000px;}
._6f{width:450.864000px;}
._74{width:453.552000px;}
._6e{width:456.096000px;}
._12{width:495.455989px;}
._5b{width:496.511990px;}
._7b{width:497.855990px;}
._16{width:504.863989px;}
._73{width:513.456000px;}
._1b{width:515.903989px;}
._6b{width:525.744000px;}
._79{width:533.285990px;}
._7a{width:537.839990px;}
._7d{width:552.767990px;}
._71{width:554.760000px;}
._19{width:567.599989px;}
._68{width:572.112000px;}
._77{width:585.408000px;}
._69{width:598.752000px;}
._7e{width:609.887990px;}
._76{width:612.096000px;}
._7c{width:628.511990px;}
._11{width:681.365989px;}
._c{width:965.471974px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:42.010200px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:60.014997px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:2.195709px;}
.y157{bottom:2.423847px;}
.yda{bottom:3.044403px;}
.ydc{bottom:3.944733px;}
.yd6{bottom:3.946198px;}
.yd8{bottom:5.894531px;}
.ye7{bottom:14.952576px;}
.ye0{bottom:18.706055px;}
.ye2{bottom:37.875595px;}
.y77{bottom:49.625399px;}
.y48{bottom:49.625999px;}
.y25{bottom:53.240250px;}
.y22{bottom:53.554802px;}
.y5{bottom:66.525004px;}
.ybf{bottom:90.797516px;}
.yd4{bottom:90.797539px;}
.y199{bottom:90.797550px;}
.ya2{bottom:90.797562px;}
.y119{bottom:90.974105px;}
.y171{bottom:93.187042px;}
.y46{bottom:94.800000px;}
.y4{bottom:97.125005px;}
.y159{bottom:99.490494px;}
.y148{bottom:99.937180px;}
.y22a{bottom:104.731085px;}
.y10c{bottom:105.088950px;}
.y118{bottom:105.218105px;}
.y262{bottom:105.383516px;}
.y18c{bottom:105.937042px;}
.y74{bottom:107.672516px;}
.ybe{bottom:108.797516px;}
.yd3{bottom:108.797539px;}
.y198{bottom:108.797550px;}
.ya1{bottom:108.797562px;}
.y170{bottom:111.187042px;}
.y156{bottom:115.261505px;}
.y45{bottom:116.597248px;}
.y155{bottom:117.714450px;}
.y158{bottom:117.718494px;}
.y147{bottom:117.937180px;}
.y229{bottom:118.975085px;}
.y10b{bottom:119.332950px;}
.y261{bottom:119.627516px;}
.y18b{bottom:123.937042px;}
.y73{bottom:125.672516px;}
.y1f1{bottom:125.807087px;}
.y1a7{bottom:126.355045px;}
.ybd{bottom:126.797516px;}
.yd2{bottom:126.797539px;}
.y197{bottom:126.797550px;}
.ya0{bottom:126.797562px;}
.y16f{bottom:129.187042px;}
.y127{bottom:130.125007px;}
.y228{bottom:133.219085px;}
.y260{bottom:133.871516px;}
.y146{bottom:135.937180px;}
.y154{bottom:137.303550px;}
.y10a{bottom:137.560950px;}
.y44{bottom:138.394500px;}
.y21{bottom:139.264499px;}
.y1f0{bottom:140.051087px;}
.y1a6{bottom:140.599045px;}
.y18a{bottom:141.937042px;}
.y72{bottom:143.672516px;}
.ybc{bottom:144.797516px;}
.yd1{bottom:144.797539px;}
.y9f{bottom:144.797562px;}
.y16e{bottom:147.187042px;}
.y227{bottom:147.463085px;}
.y25f{bottom:148.115516px;}
.y126{bottom:148.353007px;}
.y153{bottom:151.547550px;}
.y109{bottom:151.804950px;}
.y145{bottom:153.937180px;}
.y1ef{bottom:154.295087px;}
.y1a5{bottom:154.843045px;}
.y189{bottom:159.937042px;}
.y71{bottom:161.672516px;}
.y226{bottom:161.707085px;}
.y43{bottom:162.272997px;}
.y25e{bottom:162.359516px;}
.ybb{bottom:162.797516px;}
.yd0{bottom:162.797539px;}
.y196{bottom:162.797550px;}
.y9e{bottom:162.797562px;}
.y16d{bottom:165.187042px;}
.y125{bottom:166.497007px;}
.y1ee{bottom:168.539087px;}
.y1a4{bottom:169.087045px;}
.y108{bottom:169.948950px;}
.y144{bottom:171.937180px;}
.y225{bottom:175.951085px;}
.y42{bottom:176.516997px;}
.y25d{bottom:176.603516px;}
.y188{bottom:177.937042px;}
.y70{bottom:179.672516px;}
.yba{bottom:180.797516px;}
.ycf{bottom:180.797539px;}
.y9d{bottom:180.797562px;}
.y1ed{bottom:182.783087px;}
.y16c{bottom:183.187042px;}
.y1a3{bottom:183.331045px;}
.y107{bottom:184.192950px;}
.y124{bottom:184.641007px;}
.y143{bottom:189.937180px;}
.y224{bottom:190.195085px;}
.y25c{bottom:190.847516px;}
.y187{bottom:195.937042px;}
.y18{bottom:196.933500px;}
.y1ec{bottom:197.027087px;}
.y1a2{bottom:197.575045px;}
.y6f{bottom:197.672516px;}
.y41{bottom:198.308997px;}
.yb9{bottom:198.797516px;}
.yce{bottom:198.797539px;}
.y9c{bottom:198.797562px;}
.y16b{bottom:201.187042px;}
.y106{bottom:202.336950px;}
.y123{bottom:202.785007px;}
.y223{bottom:204.439085px;}
.y25b{bottom:205.091516px;}
.y142{bottom:207.937180px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1eb{bottom:211.271087px;}
.y1a1{bottom:211.819045px;}
.y40{bottom:212.552997px;}
.y186{bottom:213.937042px;}
.y6e{bottom:215.672516px;}
.yb8{bottom:216.797516px;}
.ycd{bottom:216.797539px;}
.y9b{bottom:216.797562px;}
.y222{bottom:218.683085px;}
.y16a{bottom:219.187042px;}
.y25a{bottom:219.335516px;}
.y105{bottom:220.480950px;}
.y122{bottom:220.929007px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1ea{bottom:225.515087px;}
.y141{bottom:225.937180px;}
.y1a0{bottom:226.063045px;}
.y185{bottom:231.937042px;}
.y221{bottom:232.927085px;}
.y259{bottom:233.579516px;}
.y6d{bottom:233.672516px;}
.y3f{bottom:234.344997px;}
.y1e{bottom:234.718504px;}
.y104{bottom:234.724950px;}
.y15{bottom:234.733496px;}
.yb7{bottom:234.797516px;}
.y9a{bottom:234.797562px;}
.y169{bottom:237.187042px;}
.y121{bottom:239.073007px;}
.y1e9{bottom:239.759087px;}
.y19f{bottom:240.307045px;}
.y140{bottom:243.937180px;}
.y220{bottom:247.171085px;}
.y258{bottom:247.823516px;}
.y3e{bottom:248.588997px;}
.y184{bottom:249.937042px;}
.y6c{bottom:251.672516px;}
.yb6{bottom:252.797516px;}
.ycc{bottom:252.797539px;}
.y99{bottom:252.797562px;}
.y103{bottom:252.868950px;}
.y1e8{bottom:254.003087px;}
.y168{bottom:255.187042px;}
.y120{bottom:257.217007px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y21f{bottom:261.415085px;}
.y13f{bottom:261.937180px;}
.y257{bottom:262.067516px;}
.y102{bottom:267.112950px;}
.y183{bottom:267.937042px;}
.y1e7{bottom:268.247087px;}
.y19e{bottom:268.807045px;}
.y6b{bottom:269.672516px;}
.yb5{bottom:270.797516px;}
.y98{bottom:270.797562px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y167{bottom:273.187042px;}
.y11f{bottom:275.361007px;}
.y21e{bottom:275.659085px;}
.y256{bottom:276.311516px;}
.y13e{bottom:279.937180px;}
.y101{bottom:281.356950px;}
.y1e6{bottom:282.491087px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y182{bottom:285.937042px;}
.y6a{bottom:287.672516px;}
.yb4{bottom:288.797516px;}
.ycb{bottom:288.797539px;}
.y97{bottom:288.797562px;}
.y21d{bottom:289.903085px;}
.y255{bottom:290.555516px;}
.y166{bottom:291.187042px;}
.y11e{bottom:293.505007px;}
.y100{bottom:295.600950px;}
.y1e5{bottom:296.735087px;}
.y19d{bottom:297.307045px;}
.y13d{bottom:297.937180px;}
.y181{bottom:303.937042px;}
.y21c{bottom:304.147085px;}
.y254{bottom:304.799516px;}
.y69{bottom:305.672516px;}
.yb3{bottom:306.797516px;}
.y96{bottom:306.797562px;}
.y165{bottom:309.187042px;}
.yff{bottom:309.844950px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1e4{bottom:310.979087px;}
.y11d{bottom:311.649007px;}
.y13c{bottom:315.937180px;}
.y21b{bottom:318.391085px;}
.y253{bottom:319.043516px;}
.y180{bottom:321.937042px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y68{bottom:323.672516px;}
.yb2{bottom:324.797516px;}
.y95{bottom:324.797562px;}
.y1e3{bottom:325.223087px;}
.y164{bottom:327.187042px;}
.yfe{bottom:327.988950px;}
.y19c{bottom:329.561516px;}
.y11c{bottom:329.793007px;}
.y21a{bottom:332.635085px;}
.y252{bottom:333.287516px;}
.y13b{bottom:333.937180px;}
.y3d{bottom:337.817093px;}
.y1e2{bottom:339.467087px;}
.y17f{bottom:339.937042px;}
.y67{bottom:341.672516px;}
.yfd{bottom:342.232950px;}
.yb1{bottom:342.797516px;}
.y94{bottom:342.797562px;}
.y163{bottom:345.187042px;}
.y219{bottom:346.879085px;}
.y251{bottom:347.531516px;}
.y11b{bottom:347.937007px;}
.yf{bottom:348.133500px;}
.y13a{bottom:351.937180px;}
.y1e1{bottom:353.711087px;}
.y3c{bottom:355.817093px;}
.y17e{bottom:357.937042px;}
.y19b{bottom:358.061516px;}
.y66{bottom:359.672516px;}
.yfc{bottom:360.376950px;}
.yb0{bottom:360.797516px;}
.y93{bottom:360.797562px;}
.y218{bottom:361.123085px;}
.y250{bottom:361.775516px;}
.y162{bottom:363.187042px;}
.y117{bottom:367.526096px;}
.y1e0{bottom:367.955087px;}
.y139{bottom:369.937180px;}
.y19a{bottom:372.305516px;}
.yfb{bottom:374.620950px;}
.y217{bottom:375.367085px;}
.y17d{bottom:375.937042px;}
.y11a{bottom:375.945007px;}
.y24f{bottom:376.019516px;}
.y65{bottom:377.672516px;}
.yaf{bottom:378.797516px;}
.y92{bottom:378.797562px;}
.y161{bottom:381.187042px;}
.y116{bottom:381.770096px;}
.y1df{bottom:382.199087px;}
.ye{bottom:386.785499px;}
.y138{bottom:387.937180px;}
.y216{bottom:389.611085px;}
.y24e{bottom:390.263516px;}
.y3b{bottom:392.567093px;}
.yfa{bottom:392.764950px;}
.y64{bottom:395.672516px;}
.y1de{bottom:396.443087px;}
.yae{bottom:396.797516px;}
.y91{bottom:396.797562px;}
.y160{bottom:399.187042px;}
.y215{bottom:403.855085px;}
.y24d{bottom:404.507516px;}
.y137{bottom:405.937180px;}
.yf9{bottom:407.008950px;}
.yd{bottom:408.044999px;}
.y3a{bottom:410.567093px;}
.y1dd{bottom:410.687087px;}
.y63{bottom:413.672516px;}
.yad{bottom:414.797516px;}
.y90{bottom:414.797562px;}
.y15f{bottom:417.187042px;}
.y214{bottom:418.099085px;}
.y24c{bottom:418.751516px;}
.y136{bottom:423.937180px;}
.y1dc{bottom:424.931087px;}
.yf8{bottom:425.152950px;}
.y115{bottom:428.297516px;}
.y18d{bottom:428.495499px;}
.y39{bottom:428.567093px;}
.y62{bottom:431.672516px;}
.y213{bottom:432.343085px;}
.yac{bottom:432.797516px;}
.y8f{bottom:432.797562px;}
.y283{bottom:432.979084px;}
.y24b{bottom:432.995516px;}
.y15e{bottom:435.187042px;}
.y1db{bottom:439.175087px;}
.y135{bottom:441.937180px;}
.y114{bottom:446.297516px;}
.y38{bottom:446.567093px;}
.y212{bottom:446.587085px;}
.y282{bottom:447.223084px;}
.y24a{bottom:447.239516px;}
.y61{bottom:449.672516px;}
.yab{bottom:450.797516px;}
.y8e{bottom:450.797562px;}
.yf7{bottom:453.160950px;}
.y15d{bottom:453.187042px;}
.y1da{bottom:453.419087px;}
.y195{bottom:454.404734px;}
.y134{bottom:459.937180px;}
.y211{bottom:460.831085px;}
.y249{bottom:461.483516px;}
.y1bb{bottom:461.522714px;}
.y113{bottom:464.297516px;}
.y37{bottom:464.567093px;}
.ydd{bottom:464.854523px;}
.y1d9{bottom:467.663087px;}
.y60{bottom:467.672516px;}
.yaa{bottom:468.797516px;}
.y8d{bottom:468.797562px;}
.y15c{bottom:471.187042px;}
.y194{bottom:472.632734px;}
.yf6{bottom:474.543594px;}
.y210{bottom:475.075085px;}
.y281{bottom:475.723084px;}
.y248{bottom:475.727516px;}
.y133{bottom:477.937180px;}
.y1ba{bottom:479.750714px;}
.y1d8{bottom:481.907087px;}
.y112{bottom:482.297516px;}
.y36{bottom:482.567093px;}
.ydb{bottom:482.855988px;}
.y5f{bottom:485.672516px;}
.ya9{bottom:486.797516px;}
.y8c{bottom:486.797562px;}
.y15b{bottom:489.187042px;}
.y20f{bottom:489.319085px;}
.y280{bottom:489.967084px;}
.y247{bottom:489.971516px;}
.y193{bottom:490.776734px;}
.y132{bottom:495.937180px;}
.y1d7{bottom:496.151087px;}
.y1b9{bottom:497.894714px;}
.y111{bottom:500.297516px;}
.y35{bottom:500.567093px;}
.yc{bottom:502.864502px;}
.y20e{bottom:503.563085px;}
.y5e{bottom:503.672516px;}
.y27f{bottom:504.211084px;}
.y246{bottom:504.215516px;}
.ya8{bottom:504.797516px;}
.y8b{bottom:504.797562px;}
.y15a{bottom:507.187042px;}
.y192{bottom:508.920734px;}
.y1d6{bottom:510.395087px;}
.y131{bottom:513.937180px;}
.y1b8{bottom:516.038714px;}
.y20d{bottom:517.807085px;}
.yf5{bottom:518.297516px;}
.y27e{bottom:518.455084px;}
.y245{bottom:518.459516px;}
.y34{bottom:518.567093px;}
.yb{bottom:520.864502px;}
.y5d{bottom:521.672516px;}
.ya7{bottom:522.797516px;}
.y8a{bottom:522.797562px;}
.y1d5{bottom:524.639087px;}
.y191{bottom:527.064734px;}
.y130{bottom:531.937180px;}
.y20c{bottom:532.051085px;}
.y27d{bottom:532.699084px;}
.y244{bottom:532.703516px;}
.y1b7{bottom:534.182714px;}
.yf4{bottom:536.297516px;}
.y33{bottom:536.567093px;}
.ya{bottom:538.864499px;}
.y1d4{bottom:538.883087px;}
.y5c{bottom:539.672516px;}
.ya6{bottom:540.797516px;}
.yca{bottom:540.797562px;}
.y190{bottom:545.208734px;}
.y20b{bottom:546.295085px;}
.y27c{bottom:546.943084px;}
.y243{bottom:546.947516px;}
.y12f{bottom:549.937180px;}
.y1b6{bottom:552.326714px;}
.yd7{bottom:552.912003px;}
.y1d3{bottom:553.127087px;}
.yf3{bottom:554.297516px;}
.y32{bottom:554.567093px;}
.yd9{bottom:555.746979px;}
.y172{bottom:555.995522px;}
.y9{bottom:556.864499px;}
.y5b{bottom:557.672516px;}
.ya5{bottom:558.797516px;}
.y89{bottom:558.797562px;}
.y20a{bottom:560.539085px;}
.y27b{bottom:561.187084px;}
.y242{bottom:561.191516px;}
.y18f{bottom:563.352734px;}
.y1d2{bottom:567.371087px;}
.y12e{bottom:567.937180px;}
.y1b5{bottom:570.470714px;}
.yf2{bottom:572.297516px;}
.y31{bottom:572.567093px;}
.yd5{bottom:572.854523px;}
.y209{bottom:574.783085px;}
.y27a{bottom:575.431084px;}
.y241{bottom:575.435516px;}
.y5a{bottom:575.672516px;}
.ya4{bottom:576.797516px;}
.yc9{bottom:576.797562px;}
.y17c{bottom:581.412734px;}
.y18e{bottom:581.496734px;}
.y1d1{bottom:581.615087px;}
.y12d{bottom:585.937180px;}
.y208{bottom:589.027085px;}
.y279{bottom:589.675084px;}
.y240{bottom:589.679516px;}
.y1b4{bottom:590.089222px;}
.yf1{bottom:590.297516px;}
.y30{bottom:590.567093px;}
.y59{bottom:593.672516px;}
.ya3{bottom:594.797516px;}
.yc8{bottom:594.797562px;}
.y1d0{bottom:595.859087px;}
.y17b{bottom:599.640734px;}
.y207{bottom:603.271085px;}
.ydf{bottom:603.796509px;}
.y278{bottom:603.919084px;}
.y23f{bottom:603.923516px;}
.y12c{bottom:603.937180px;}
.y1b3{bottom:604.333222px;}
.ye5{bottom:605.992218px;}
.yf0{bottom:608.297516px;}
.y2f{bottom:608.567093px;}
.y1cf{bottom:610.103087px;}
.y58{bottom:611.672516px;}
.y88{bottom:612.797516px;}
.yc7{bottom:612.797562px;}
.y206{bottom:617.515085px;}
.y17a{bottom:617.784734px;}
.y277{bottom:618.163084px;}
.y23e{bottom:618.167516px;}
.ye1{bottom:618.749084px;}
.yde{bottom:620.672562px;}
.y12b{bottom:621.937180px;}
.ye6{bottom:622.502563px;}
.y1ce{bottom:624.347087px;}
.yef{bottom:626.297516px;}
.y2e{bottom:626.567093px;}
.y57{bottom:629.672516px;}
.y87{bottom:630.797516px;}
.yc6{bottom:630.797562px;}
.y205{bottom:631.759085px;}
.y276{bottom:632.407084px;}
.y23d{bottom:632.411516px;}
.y179{bottom:635.928734px;}
.ye3{bottom:636.177750px;}
.y1cd{bottom:638.591087px;}
.y12a{bottom:639.937180px;}
.yee{bottom:644.297516px;}
.y2d{bottom:644.567093px;}
.y8{bottom:645.510000px;}
.y204{bottom:646.003085px;}
.y275{bottom:646.651084px;}
.y23c{bottom:646.655516px;}
.y56{bottom:647.672516px;}
.y86{bottom:648.797516px;}
.yc5{bottom:648.797562px;}
.y1cc{bottom:652.835087px;}
.y178{bottom:654.072734px;}
.y129{bottom:657.937180px;}
.y203{bottom:660.247085px;}
.y1b2{bottom:660.889219px;}
.y274{bottom:660.895084px;}
.y23b{bottom:660.899516px;}
.yed{bottom:662.297516px;}
.y2c{bottom:662.567093px;}
.y55{bottom:665.672516px;}
.y7{bottom:666.771000px;}
.y85{bottom:666.797516px;}
.yc4{bottom:666.797562px;}
.y1cb{bottom:667.079087px;}
.y177{bottom:672.216734px;}
.y202{bottom:674.491085px;}
.y273{bottom:675.139084px;}
.y23a{bottom:675.143516px;}
.y128{bottom:675.937180px;}
.y1b1{bottom:679.117219px;}
.yec{bottom:680.297516px;}
.y2b{bottom:680.567093px;}
.y1ca{bottom:681.323087px;}
.y54{bottom:683.672516px;}
.y84{bottom:684.797516px;}
.yc3{bottom:684.797562px;}
.y201{bottom:688.735085px;}
.y272{bottom:689.383084px;}
.y239{bottom:689.387516px;}
.y176{bottom:690.360734px;}
.y1c9{bottom:695.567087px;}
.y1b0{bottom:697.261219px;}
.yeb{bottom:698.297516px;}
.y53{bottom:701.672516px;}
.y83{bottom:702.797516px;}
.y200{bottom:702.979085px;}
.y271{bottom:703.627084px;}
.y238{bottom:703.631516px;}
.y175{bottom:708.504734px;}
.y1c8{bottom:709.811087px;}
.y1af{bottom:715.405219px;}
.yea{bottom:716.297516px;}
.y1ff{bottom:717.223085px;}
.y270{bottom:717.871084px;}
.y237{bottom:717.875516px;}
.y14a{bottom:719.495522px;}
.y52{bottom:719.672516px;}
.y82{bottom:720.797516px;}
.yc2{bottom:720.797562px;}
.y1c7{bottom:724.055087px;}
.y6{bottom:726.298500px;}
.y174{bottom:726.648734px;}
.y2a{bottom:729.059696px;}
.y1fe{bottom:731.467085px;}
.y26f{bottom:732.115084px;}
.y236{bottom:732.119516px;}
.y1ae{bottom:733.549219px;}
.ye9{bottom:734.297516px;}
.y51{bottom:737.672516px;}
.y1c6{bottom:738.299087px;}
.y81{bottom:738.797516px;}
.y29{bottom:743.303696px;}
.y152{bottom:744.708734px;}
.y173{bottom:744.792734px;}
.y1fd{bottom:745.711085px;}
.y26e{bottom:746.359084px;}
.y235{bottom:746.363516px;}
.y1ad{bottom:751.693219px;}
.y110{bottom:752.297516px;}
.y1c5{bottom:752.543087px;}
.y3{bottom:752.599495px;}
.y50{bottom:755.672516px;}
.y80{bottom:756.797516px;}
.y1fc{bottom:759.955085px;}
.y26d{bottom:760.603084px;}
.y234{bottom:760.607516px;}
.y151{bottom:762.936734px;}
.y1c4{bottom:766.787087px;}
.y1ac{bottom:769.837219px;}
.ye8{bottom:770.297516px;}
.y4f{bottom:773.672516px;}
.y1fb{bottom:774.199085px;}
.y7f{bottom:774.797516px;}
.y26c{bottom:774.847084px;}
.y233{bottom:774.851516px;}
.y1c3{bottom:781.031087px;}
.y150{bottom:781.080734px;}
.y28{bottom:781.152191px;}
.y1ab{bottom:787.993219px;}
.y10f{bottom:788.297516px;}
.y1fa{bottom:788.443085px;}
.y26b{bottom:789.091084px;}
.y232{bottom:789.095516px;}
.y4e{bottom:791.672516px;}
.y7e{bottom:792.797516px;}
.y1c2{bottom:795.275087px;}
.y14f{bottom:799.224734px;}
.y1f9{bottom:802.687085px;}
.y26a{bottom:803.335084px;}
.y231{bottom:803.339516px;}
.y1aa{bottom:806.137219px;}
.y10e{bottom:806.297516px;}
.y1c1{bottom:809.519087px;}
.y4d{bottom:809.672516px;}
.y7d{bottom:810.797516px;}
.y1f8{bottom:816.931085px;}
.y14e{bottom:817.368734px;}
.y269{bottom:817.579084px;}
.y230{bottom:817.583516px;}
.y1c0{bottom:823.763087px;}
.y27{bottom:823.895529px;}
.y1a9{bottom:824.281219px;}
.y4c{bottom:827.672516px;}
.y7c{bottom:828.797516px;}
.y1f7{bottom:831.175085px;}
.y268{bottom:831.823084px;}
.y22f{bottom:831.827516px;}
.y14d{bottom:835.512734px;}
.y1bf{bottom:838.007087px;}
.y10d{bottom:842.297516px;}
.y1f6{bottom:845.419085px;}
.y4b{bottom:845.672516px;}
.y267{bottom:846.067084px;}
.y22e{bottom:846.071516px;}
.y26{bottom:846.398529px;}
.y7b{bottom:846.797516px;}
.y1a8{bottom:848.707035px;}
.y1be{bottom:852.251087px;}
.y14c{bottom:853.656734px;}
.y1f5{bottom:859.663085px;}
.y266{bottom:860.311084px;}
.y22d{bottom:860.315516px;}
.y4a{bottom:863.672516px;}
.y7a{bottom:864.797516px;}
.y1bd{bottom:866.495087px;}
.y1f4{bottom:873.907085px;}
.y265{bottom:874.555084px;}
.y22c{bottom:874.559516px;}
.y2{bottom:879.369000px;}
.y14b{bottom:881.664734px;}
.y79{bottom:882.797516px;}
.y1f3{bottom:888.151085px;}
.y264{bottom:888.799084px;}
.y22b{bottom:888.803516px;}
.y1bc{bottom:899.045105px;}
.y49{bottom:899.672516px;}
.y78{bottom:900.797516px;}
.y1f2{bottom:902.395085px;}
.y263{bottom:903.043084px;}
.y149{bottom:903.047516px;}
.y24{bottom:925.867084px;}
.y47{bottom:939.670349px;}
.yc1{bottom:940.110892px;}
.y76{bottom:940.111075px;}
.y23{bottom:940.111084px;}
.yc0{bottom:940.626892px;}
.y75{bottom:940.627075px;}
.y1{bottom:966.726000px;}
.h24{height:3.960990px;}
.h1c{height:10.350000px;}
.h27{height:10.479000px;}
.h1e{height:10.650000px;}
.h19{height:13.200000px;}
.h15{height:13.801500px;}
.h17{height:15.900000px;}
.h1d{height:25.686419px;}
.h1f{height:26.466614px;}
.h25{height:28.398895px;}
.h23{height:28.692967px;}
.h12{height:31.046400px;}
.h7{height:32.130000px;}
.h28{height:32.448000px;}
.ha{height:33.840000px;}
.h16{height:39.249808px;}
.h18{height:40.150033px;}
.h1a{height:40.570138px;}
.h21{height:40.990243px;}
.hb{height:42.048000px;}
.h11{height:44.352000px;}
.h20{height:45.001499px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h29{height:49.104000px;}
.h14{height:53.640000px;}
.hc{height:54.862258px;}
.h2{height:55.080000px;}
.h22{height:55.103934px;}
.h10{height:55.440000px;}
.hf{height:59.340000px;}
.h1b{height:61.380000px;}
.he{height:64.866000px;}
.h13{height:65.274000px;}
.hd{height:69.108000px;}
.h2a{height:77.909969px;}
.h26{height:78.027600px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:9.135000px;}
.w8{width:11.340000px;}
.wa{width:11.880000px;}
.wc{width:13.530000px;}
.w6{width:19.710000px;}
.w5{width:23.640000px;}
.w7{width:71.024998px;}
.wb{width:207.674995px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.868843px;}
.x6{left:76.535402px;}
.xb{left:77.598450px;}
.x7{left:78.746550px;}
.x5{left:88.228352px;}
.xa{left:93.545404px;}
.x1d{left:99.916649px;}
.x1{left:102.045000px;}
.x1b{left:105.181938px;}
.x2{left:106.297500px;}
.xe{left:110.524498px;}
.x13{left:118.456500px;}
.xf{left:130.370098px;}
.x10{left:139.995003px;}
.x25{left:192.935543px;}
.x20{left:201.652473px;}
.x4{left:203.484001px;}
.x12{left:211.154846px;}
.x26{left:217.355552px;}
.x19{left:225.690010px;}
.xc{left:240.755997px;}
.x1a{left:243.324142px;}
.x22{left:250.871401px;}
.xd{left:264.531303px;}
.x28{left:314.375576px;}
.x1c{left:323.608658px;}
.x21{left:325.414650px;}
.x1e{left:335.731659px;}
.x1f{left:345.492302px;}
.x23{left:387.935989px;}
.x16{left:402.021011px;}
.x17{left:414.035568px;}
.x27{left:422.519566px;}
.x24{left:452.825088px;}
.x3{left:454.959000px;}
.x9{left:521.631592px;}
.x29{left:525.683567px;}
.x8{left:559.720184px;}
.x18{left:565.025597px;}
.x14{left:573.384018px;}
.x15{left:582.519608px;}
@media print{
.v2{vertical-align:-17.066648pt;}
.v3{vertical-align:-13.344076pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.345703pt;}
.v1{vertical-align:21.333333pt;}
.v5{vertical-align:29.933867pt;}
.ls19{letter-spacing:-2.517333pt;}
.ls1c{letter-spacing:-1.365333pt;}
.ls1b{letter-spacing:-1.333333pt;}
.ls1a{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.800000pt;}
.ls1f{letter-spacing:-0.746667pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.004050pt;}
.lse{letter-spacing:0.004294pt;}
.ls13{letter-spacing:0.037342pt;}
.ls1d{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.474659pt;}
.lsd{letter-spacing:0.479991pt;}
.ls6{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.533333pt;}
.ls2e{letter-spacing:0.567432pt;}
.ls25{letter-spacing:0.597333pt;}
.ls2{letter-spacing:0.746667pt;}
.ls21{letter-spacing:1.160533pt;}
.ls2b{letter-spacing:1.194590pt;}
.ls7{letter-spacing:1.426279pt;}
.ls16{letter-spacing:1.473764pt;}
.ls34{letter-spacing:1.501854pt;}
.ls32{letter-spacing:2.606933pt;}
.ls15{letter-spacing:2.675372pt;}
.ls31{letter-spacing:2.777662pt;}
.ls27{letter-spacing:2.862924pt;}
.lsb{letter-spacing:2.934067pt;}
.ls24{letter-spacing:3.456000pt;}
.ls1e{letter-spacing:3.840000pt;}
.ls2d{letter-spacing:4.223962pt;}
.ls2c{letter-spacing:4.735967pt;}
.ls2a{letter-spacing:4.778633pt;}
.ls23{letter-spacing:5.508267pt;}
.ls33{letter-spacing:7.082667pt;}
.ls35{letter-spacing:8.789333pt;}
.lsa{letter-spacing:8.855546pt;}
.ls9{letter-spacing:8.908893pt;}
.ls26{letter-spacing:10.120593pt;}
.ls30{letter-spacing:10.286933pt;}
.ls22{letter-spacing:10.879990pt;}
.ls29{letter-spacing:11.268229pt;}
.ls11{letter-spacing:11.842960pt;}
.ls2f{letter-spacing:12.181333pt;}
.ls10{letter-spacing:13.976826pt;}
.ls17{letter-spacing:14.530759pt;}
.ls8{letter-spacing:14.830373pt;}
.ls12{letter-spacing:15.251951pt;}
.ls28{letter-spacing:18.867189pt;}
.ws1a{word-spacing:-53.333333pt;}
.wsc4{word-spacing:-13.386667pt;}
.wsb3{word-spacing:-13.333333pt;}
.ws19{word-spacing:-11.850667pt;}
.ws110{word-spacing:-11.264000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.wsf0{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.240000pt;}
.wsa9{word-spacing:-10.080000pt;}
.wsb9{word-spacing:-9.301333pt;}
.ws2{word-spacing:-8.362667pt;}
.wsfe{word-spacing:-8.192000pt;}
.wsd0{word-spacing:-8.149333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws7{word-spacing:-7.466667pt;}
.ws9f{word-spacing:-6.666667pt;}
.wse1{word-spacing:-5.333333pt;}
.ws8{word-spacing:-1.680000pt;}
.ws52{word-spacing:-1.013333pt;}
.wsb6{word-spacing:-0.906667pt;}
.wsf3{word-spacing:-0.800000pt;}
.ws3a{word-spacing:-0.746667pt;}
.ws38{word-spacing:-0.640000pt;}
.ws120{word-spacing:-0.597333pt;}
.wsa3{word-spacing:-0.586667pt;}
.ws60{word-spacing:-0.533333pt;}
.ws13e{word-spacing:-0.512000pt;}
.ws8f{word-spacing:-0.480000pt;}
.ws63{word-spacing:-0.426667pt;}
.ws5e{word-spacing:-0.373333pt;}
.wsca{word-spacing:-0.320000pt;}
.ws95{word-spacing:-0.266667pt;}
.ws118{word-spacing:-0.256000pt;}
.ws48{word-spacing:-0.213333pt;}
.ws135{word-spacing:-0.170667pt;}
.ws17{word-spacing:-0.160000pt;}
.ws12a{word-spacing:-0.128000pt;}
.ws65{word-spacing:-0.106667pt;}
.ws151{word-spacing:-0.085333pt;}
.ws99{word-spacing:-0.053347pt;}
.ws53{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws124{word-spacing:0.042667pt;}
.ws46{word-spacing:0.053333pt;}
.ws12d{word-spacing:0.085333pt;}
.wsa7{word-spacing:0.106667pt;}
.wsd{word-spacing:0.160000pt;}
.ws12f{word-spacing:0.170667pt;}
.ws16{word-spacing:0.213333pt;}
.wsf{word-spacing:0.266667pt;}
.ws111{word-spacing:0.298667pt;}
.wsb{word-spacing:0.320000pt;}
.ws8c{word-spacing:0.373333pt;}
.ws109{word-spacing:0.384000pt;}
.ws30{word-spacing:0.426667pt;}
.ws28{word-spacing:0.480000pt;}
.ws130{word-spacing:0.512000pt;}
.ws73{word-spacing:0.533333pt;}
.ws69{word-spacing:0.586667pt;}
.ws140{word-spacing:0.597333pt;}
.ws147{word-spacing:0.640000pt;}
.ws156{word-spacing:0.682667pt;}
.ws81{word-spacing:0.693333pt;}
.ws2b{word-spacing:0.746667pt;}
.ws136{word-spacing:0.768000pt;}
.ws36{word-spacing:0.800000pt;}
.ws139{word-spacing:0.810667pt;}
.ws8d{word-spacing:0.853333pt;}
.ws13f{word-spacing:0.896000pt;}
.ws6f{word-spacing:0.906667pt;}
.ws31{word-spacing:0.960000pt;}
.ws71{word-spacing:1.013333pt;}
.wsbf{word-spacing:1.066667pt;}
.ws112{word-spacing:1.109333pt;}
.ws7e{word-spacing:1.120000pt;}
.ws125{word-spacing:1.152000pt;}
.ws94{word-spacing:1.173333pt;}
.ws10d{word-spacing:1.194667pt;}
.ws25{word-spacing:1.226667pt;}
.ws152{word-spacing:1.280000pt;}
.ws5f{word-spacing:1.333333pt;}
.ws13c{word-spacing:1.365333pt;}
.wsa1{word-spacing:1.386667pt;}
.ws10f{word-spacing:1.408000pt;}
.ws7b{word-spacing:1.440000pt;}
.ws143{word-spacing:1.450667pt;}
.ws1b{word-spacing:1.493333pt;}
.ws8a{word-spacing:1.600000pt;}
.ws15d{word-spacing:1.621333pt;}
.ws84{word-spacing:1.653333pt;}
.ws145{word-spacing:1.749333pt;}
.ws26{word-spacing:1.760000pt;}
.ws59{word-spacing:1.813333pt;}
.ws134{word-spacing:1.834667pt;}
.ws47{word-spacing:1.866667pt;}
.wsa6{word-spacing:1.920000pt;}
.wsf2{word-spacing:1.973333pt;}
.wscc{word-spacing:2.026667pt;}
.ws113{word-spacing:2.048000pt;}
.ws32{word-spacing:2.080000pt;}
.ws15e{word-spacing:2.090667pt;}
.ws24{word-spacing:2.133333pt;}
.ws6a{word-spacing:2.186667pt;}
.ws68{word-spacing:2.240000pt;}
.ws122{word-spacing:2.261333pt;}
.ws39{word-spacing:2.293333pt;}
.ws14f{word-spacing:2.304000pt;}
.ws1e{word-spacing:2.346667pt;}
.ws15b{word-spacing:2.389333pt;}
.ws56{word-spacing:2.400000pt;}
.ws146{word-spacing:2.432000pt;}
.ws79{word-spacing:2.453333pt;}
.ws4e{word-spacing:2.506667pt;}
.ws13a{word-spacing:2.517333pt;}
.ws8e{word-spacing:2.560000pt;}
.ws14b{word-spacing:2.602667pt;}
.wsfc{word-spacing:2.613333pt;}
.ws1c{word-spacing:2.666667pt;}
.ws12c{word-spacing:2.688000pt;}
.ws137{word-spacing:2.730667pt;}
.ws89{word-spacing:2.773333pt;}
.ws97{word-spacing:2.826667pt;}
.ws10e{word-spacing:2.858667pt;}
.wsc0{word-spacing:2.880000pt;}
.ws121{word-spacing:2.901333pt;}
.wsbe{word-spacing:2.933333pt;}
.ws78{word-spacing:2.986667pt;}
.ws11d{word-spacing:3.029333pt;}
.ws27{word-spacing:3.040000pt;}
.ws10b{word-spacing:3.072000pt;}
.wsa2{word-spacing:3.093333pt;}
.ws117{word-spacing:3.114667pt;}
.ws4f{word-spacing:3.146667pt;}
.ws126{word-spacing:3.157333pt;}
.ws55{word-spacing:3.200000pt;}
.ws14e{word-spacing:3.285333pt;}
.wscb{word-spacing:3.306667pt;}
.ws11c{word-spacing:3.328000pt;}
.ws8b{word-spacing:3.360000pt;}
.ws66{word-spacing:3.413333pt;}
.ws149{word-spacing:3.456000pt;}
.wsa{word-spacing:3.466667pt;}
.ws93{word-spacing:3.520000pt;}
.ws138{word-spacing:3.541333pt;}
.ws12{word-spacing:3.573333pt;}
.ws10a{word-spacing:3.584000pt;}
.ws6d{word-spacing:3.626667pt;}
.ws158{word-spacing:3.669333pt;}
.wsf4{word-spacing:3.680000pt;}
.ws159{word-spacing:3.712000pt;}
.wsc1{word-spacing:3.733333pt;}
.ws9d{word-spacing:3.786667pt;}
.ws14d{word-spacing:3.797333pt;}
.ws61{word-spacing:3.840000pt;}
.ws10c{word-spacing:3.882667pt;}
.wsc9{word-spacing:3.893333pt;}
.ws43{word-spacing:3.946667pt;}
.ws11e{word-spacing:3.968000pt;}
.wsa0{word-spacing:4.000000pt;}
.wsce{word-spacing:4.053333pt;}
.ws7f{word-spacing:4.106667pt;}
.wsb7{word-spacing:4.138667pt;}
.ws57{word-spacing:4.160000pt;}
.ws129{word-spacing:4.181333pt;}
.ws5c{word-spacing:4.213333pt;}
.ws9{word-spacing:4.266667pt;}
.ws77{word-spacing:4.320000pt;}
.ws58{word-spacing:4.373333pt;}
.ws11b{word-spacing:4.394667pt;}
.ws3e{word-spacing:4.426667pt;}
.ws86{word-spacing:4.480000pt;}
.ws29{word-spacing:4.533333pt;}
.ws80{word-spacing:4.586667pt;}
.ws14c{word-spacing:4.608000pt;}
.ws9e{word-spacing:4.640000pt;}
.ws150{word-spacing:4.650667pt;}
.ws1f{word-spacing:4.693333pt;}
.ws49{word-spacing:4.746667pt;}
.ws72{word-spacing:4.800000pt;}
.wsc8{word-spacing:4.853333pt;}
.ws12b{word-spacing:4.864000pt;}
.ws54{word-spacing:4.906667pt;}
.wsdc{word-spacing:4.960000pt;}
.ws148{word-spacing:4.992000pt;}
.ws5d{word-spacing:5.013333pt;}
.ws4b{word-spacing:5.066667pt;}
.ws115{word-spacing:5.120000pt;}
.wsb4{word-spacing:5.173333pt;}
.ws131{word-spacing:5.205333pt;}
.ws4c{word-spacing:5.226667pt;}
.ws5a{word-spacing:5.280000pt;}
.ws132{word-spacing:5.290667pt;}
.wsbd{word-spacing:5.333333pt;}
.ws141{word-spacing:5.376000pt;}
.ws14{word-spacing:5.386667pt;}
.ws119{word-spacing:5.418667pt;}
.ws64{word-spacing:5.440000pt;}
.ws45{word-spacing:5.493333pt;}
.wsb2{word-spacing:5.546667pt;}
.wsa5{word-spacing:5.600000pt;}
.ws42{word-spacing:5.653333pt;}
.ws11a{word-spacing:5.674667pt;}
.ws20{word-spacing:5.706667pt;}
.ws35{word-spacing:5.760000pt;}
.ws11{word-spacing:5.813333pt;}
.ws155{word-spacing:5.845333pt;}
.wsa8{word-spacing:5.920000pt;}
.ws5b{word-spacing:5.973333pt;}
.ws15c{word-spacing:6.016000pt;}
.ws2f{word-spacing:6.080000pt;}
.wsfa{word-spacing:6.133333pt;}
.wsde{word-spacing:6.186667pt;}
.ws22{word-spacing:6.240000pt;}
.ws10{word-spacing:6.293333pt;}
.ws6b{word-spacing:6.346667pt;}
.ws114{word-spacing:6.357333pt;}
.ws6e{word-spacing:6.400000pt;}
.ws51{word-spacing:6.453333pt;}
.ws50{word-spacing:6.506667pt;}
.ws15{word-spacing:6.560000pt;}
.ws3f{word-spacing:6.613333pt;}
.ws90{word-spacing:6.666667pt;}
.wsf1{word-spacing:6.720000pt;}
.ws82{word-spacing:6.773333pt;}
.ws37{word-spacing:6.826667pt;}
.ws2a{word-spacing:6.880000pt;}
.ws157{word-spacing:6.912000pt;}
.ws40{word-spacing:6.933333pt;}
.ws153{word-spacing:6.954667pt;}
.ws2d{word-spacing:6.986667pt;}
.ws2c{word-spacing:7.040000pt;}
.wsc6{word-spacing:7.093333pt;}
.ws154{word-spacing:7.125333pt;}
.ws3d{word-spacing:7.146667pt;}
.ws85{word-spacing:7.200000pt;}
.wsc{word-spacing:7.253333pt;}
.ws2e{word-spacing:7.306667pt;}
.ws44{word-spacing:7.360000pt;}
.ws7c{word-spacing:7.413333pt;}
.ws92{word-spacing:7.466667pt;}
.ws4a{word-spacing:7.520000pt;}
.ws12e{word-spacing:7.552000pt;}
.ws6c{word-spacing:7.573333pt;}
.wsf8{word-spacing:7.626667pt;}
.ws9c{word-spacing:7.680000pt;}
.ws87{word-spacing:7.733333pt;}
.wse0{word-spacing:7.786667pt;}
.wsfd{word-spacing:7.893333pt;}
.ws7d{word-spacing:8.000000pt;}
.ws14a{word-spacing:8.064000pt;}
.wsf6{word-spacing:8.106667pt;}
.ws98{word-spacing:8.213333pt;}
.ws13d{word-spacing:8.277333pt;}
.ws83{word-spacing:8.320000pt;}
.ws91{word-spacing:8.373333pt;}
.ws70{word-spacing:8.426667pt;}
.ws21{word-spacing:8.480000pt;}
.wsb5{word-spacing:8.533333pt;}
.ws127{word-spacing:8.618667pt;}
.ws67{word-spacing:8.640000pt;}
.ws13{word-spacing:8.693333pt;}
.ws15a{word-spacing:8.704000pt;}
.ws1d{word-spacing:8.746667pt;}
.ws96{word-spacing:8.853333pt;}
.ws74{word-spacing:8.960000pt;}
.ws41{word-spacing:9.066667pt;}
.ws13b{word-spacing:9.216000pt;}
.wsb1{word-spacing:9.226667pt;}
.ws11f{word-spacing:9.514667pt;}
.wsc2{word-spacing:9.600000pt;}
.wse{word-spacing:9.813333pt;}
.wsf5{word-spacing:9.866667pt;}
.ws3b{word-spacing:10.080000pt;}
.ws144{word-spacing:10.368000pt;}
.wsdd{word-spacing:10.400000pt;}
.ws4d{word-spacing:10.453333pt;}
.ws7a{word-spacing:10.613333pt;}
.wsc3{word-spacing:10.666667pt;}
.ws128{word-spacing:10.794667pt;}
.ws75{word-spacing:10.826667pt;}
.wsdf{word-spacing:10.880000pt;}
.ws116{word-spacing:10.965333pt;}
.ws62{word-spacing:11.093333pt;}
.wsf9{word-spacing:11.626667pt;}
.wsfb{word-spacing:12.000000pt;}
.ws142{word-spacing:12.202667pt;}
.ws33{word-spacing:12.266667pt;}
.wsc7{word-spacing:12.640000pt;}
.ws76{word-spacing:12.960000pt;}
.wscd{word-spacing:13.173333pt;}
.ws88{word-spacing:13.226667pt;}
.ws133{word-spacing:14.592000pt;}
.ws23{word-spacing:14.666667pt;}
.ws9b{word-spacing:15.138025pt;}
.ws3c{word-spacing:15.840000pt;}
.wsa4{word-spacing:17.013333pt;}
.wsf7{word-spacing:17.866667pt;}
.ws9a{word-spacing:18.081387pt;}
.ws123{word-spacing:18.218667pt;}
.ws34{word-spacing:21.173333pt;}
.wsaa{word-spacing:33.578667pt;}
.wsae{word-spacing:38.314667pt;}
.wsad{word-spacing:44.245333pt;}
.wsab{word-spacing:54.912000pt;}
.ws18{word-spacing:64.938667pt;}
.wsbb{word-spacing:78.677327pt;}
.wsb8{word-spacing:78.677333pt;}
.wsaf{word-spacing:108.245333pt;}
.wse9{word-spacing:131.285319pt;}
.wse2{word-spacing:131.285333pt;}
.wsc5{word-spacing:141.013326pt;}
.wse8{word-spacing:145.535986pt;}
.wsac{word-spacing:148.266667pt;}
.wse6{word-spacing:152.618652pt;}
.wsd6{word-spacing:167.295980pt;}
.wsd3{word-spacing:167.295992pt;}
.wscf{word-spacing:167.296000pt;}
.wsea{word-spacing:173.951986pt;}
.wsda{word-spacing:178.052259pt;}
.wsd5{word-spacing:181.546646pt;}
.wseb{word-spacing:188.202652pt;}
.wsd4{word-spacing:188.629313pt;}
.wsb0{word-spacing:189.482667pt;}
.wse7{word-spacing:196.138667pt;}
.wsd8{word-spacing:202.879980pt;}
.wse5{word-spacing:209.535986pt;}
.wsd9{word-spacing:209.962646pt;}
.wsd2{word-spacing:224.213313pt;}
.wsff{word-spacing:228.181333pt;}
.wsdb{word-spacing:230.869325pt;}
.wsbc{word-spacing:234.581333pt;}
.wsd1{word-spacing:249.856000pt;}
.ws100{word-spacing:249.898667pt;}
.wsba{word-spacing:264.746667pt;}
.wse4{word-spacing:277.845333pt;}
.ws104{word-spacing:288.512000pt;}
.ws103{word-spacing:320.128000pt;}
.wsd7{word-spacing:343.935992pt;}
.wse3{word-spacing:350.079992pt;}
.wsec{word-spacing:370.175992pt;}
.ws108{word-spacing:371.370658pt;}
.ws107{word-spacing:371.370667pt;}
.ws106{word-spacing:377.301333pt;}
.ws102{word-spacing:396.074667pt;}
.ws101{word-spacing:467.285333pt;}
.ws105{word-spacing:511.295910pt;}
.wsee{word-spacing:615.210667pt;}
.wsed{word-spacing:924.245297pt;}
.wsef{word-spacing:1402.325302pt;}
._67{margin-left:-17.237345pt;}
._3a{margin-left:-15.466667pt;}
._6{margin-left:-13.866667pt;}
._39{margin-left:-12.800000pt;}
._80{margin-left:-11.752533pt;}
._81{margin-left:-4.835200pt;}
._4{margin-left:-3.909333pt;}
._3{margin-left:-2.506667pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.173333pt;}
._d{width:2.922667pt;}
._f{width:3.973333pt;}
._e{width:5.045333pt;}
._a{width:6.186667pt;}
._b{width:7.632000pt;}
._5{width:9.557333pt;}
._3b{width:11.210646pt;}
._10{width:12.538667pt;}
._7f{width:18.816000pt;}
._7{width:19.840000pt;}
._13{width:33.045324pt;}
._2{width:36.373352pt;}
._26{width:44.245333pt;}
._21{width:48.981333pt;}
._9{width:50.005325pt;}
._24{width:54.912000pt;}
._15{width:56.885324pt;}
._1a{width:62.762657pt;}
._8{width:64.938667pt;}
._14{width:66.037324pt;}
._22{width:71.744000pt;}
._23{width:76.245333pt;}
._1e{width:77.696000pt;}
._29{width:86.912000pt;}
._2c{width:104.746667pt;}
._2b{width:108.618667pt;}
._1f{width:111.786667pt;}
._1d{width:117.760000pt;}
._28{width:118.912000pt;}
._31{width:121.343994pt;}
._3c{width:123.589886pt;}
._30{width:126.207988pt;}
._25{width:130.773333pt;}
._33{width:133.578673pt;}
._1c{width:135.984000pt;}
._27{width:140.288000pt;}
._58{width:141.952000pt;}
._34{width:149.845333pt;}
._2a{width:161.146667pt;}
._2f{width:164.485333pt;}
._56{width:166.912000pt;}
._37{width:168.746667pt;}
._46{width:178.336000pt;}
._32{width:185.386667pt;}
._55{width:187.391986pt;}
._5a{width:200.512010pt;}
._6a{width:202.880000pt;}
._2e{width:204.330667pt;}
._5c{width:206.122675pt;}
._40{width:209.919980pt;}
._3d{width:211.157333pt;}
._18{width:216.639990pt;}
._2d{width:220.885333pt;}
._5e{width:224.512000pt;}
._35{width:228.874661pt;}
._20{width:230.314667pt;}
._54{width:235.136000pt;}
._48{width:236.069341pt;}
._49{width:238.463992pt;}
._5f{width:241.109325pt;}
._47{width:242.816000pt;}
._59{width:246.527992pt;}
._38{width:249.429333pt;}
._3e{width:253.103992pt;}
._4b{width:257.834675pt;}
._4d{width:260.522667pt;}
._50{width:262.143992pt;}
._42{width:263.295980pt;}
._57{width:265.077325pt;}
._36{width:265.984000pt;}
._64{width:270.805333pt;}
._41{width:274.005325pt;}
._45{width:278.400000pt;}
._17{width:280.922657pt;}
._4f{width:281.856000pt;}
._63{width:287.701319pt;}
._53{width:294.783986pt;}
._44{width:296.106667pt;}
._6d{width:298.410667pt;}
._4e{width:301.482659pt;}
._66{width:302.805333pt;}
._43{width:306.816000pt;}
._65{width:319.919995pt;}
._60{width:323.285319pt;}
._4a{width:324.522667pt;}
._4c{width:338.047992pt;}
._52{width:339.845325pt;}
._62{width:345.472000pt;}
._70{width:346.709333pt;}
._51{width:356.518400pt;}
._61{width:363.178667pt;}
._3f{width:370.688000pt;}
._78{width:377.045333pt;}
._6c{width:378.496000pt;}
._72{width:379.434667pt;}
._5d{width:388.223992pt;}
._75{width:391.253333pt;}
._6f{width:400.768000pt;}
._74{width:403.157333pt;}
._6e{width:405.418667pt;}
._12{width:440.405324pt;}
._5b{width:441.343992pt;}
._7b{width:442.538658pt;}
._16{width:448.767990pt;}
._73{width:456.405333pt;}
._1b{width:458.581324pt;}
._6b{width:467.328000pt;}
._79{width:474.031992pt;}
._7a{width:478.079992pt;}
._7d{width:491.349325pt;}
._71{width:493.120000pt;}
._19{width:504.533324pt;}
._68{width:508.544000pt;}
._77{width:520.362667pt;}
._69{width:532.224000pt;}
._7e{width:542.122658pt;}
._76{width:544.085333pt;}
._7c{width:558.677325pt;}
._11{width:605.658657pt;}
._c{width:858.197311pt;}
.fs8{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:37.342400pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:53.346664pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:1.951742pt;}
.y157{bottom:2.154531pt;}
.yda{bottom:2.706136pt;}
.ydc{bottom:3.506429pt;}
.yd6{bottom:3.507731pt;}
.yd8{bottom:5.239583pt;}
.ye7{bottom:13.291178pt;}
.ye0{bottom:16.627604pt;}
.ye2{bottom:33.667196pt;}
.y77{bottom:44.111465pt;}
.y48{bottom:44.112000pt;}
.y25{bottom:47.324666pt;}
.y22{bottom:47.604268pt;}
.y5{bottom:59.133337pt;}
.ybf{bottom:80.708903pt;}
.yd4{bottom:80.708923pt;}
.y199{bottom:80.708933pt;}
.ya2{bottom:80.708944pt;}
.y119{bottom:80.865871pt;}
.y171{bottom:82.832926pt;}
.y46{bottom:84.266667pt;}
.y4{bottom:86.333337pt;}
.y159{bottom:88.435995pt;}
.y148{bottom:88.833049pt;}
.y22a{bottom:93.094298pt;}
.y10c{bottom:93.412400pt;}
.y118{bottom:93.527204pt;}
.y262{bottom:93.674236pt;}
.y18c{bottom:94.166260pt;}
.y74{bottom:95.708903pt;}
.ybe{bottom:96.708903pt;}
.yd3{bottom:96.708923pt;}
.y198{bottom:96.708933pt;}
.ya1{bottom:96.708944pt;}
.y170{bottom:98.832926pt;}
.y156{bottom:102.454671pt;}
.y45{bottom:103.641998pt;}
.y155{bottom:104.635067pt;}
.y158{bottom:104.638662pt;}
.y147{bottom:104.833049pt;}
.y229{bottom:105.755631pt;}
.y10b{bottom:106.073733pt;}
.y261{bottom:106.335570pt;}
.y18b{bottom:110.166260pt;}
.y73{bottom:111.708903pt;}
.y1f1{bottom:111.828521pt;}
.y1a7{bottom:112.315596pt;}
.ybd{bottom:112.708903pt;}
.yd2{bottom:112.708923pt;}
.y197{bottom:112.708933pt;}
.ya0{bottom:112.708944pt;}
.y16f{bottom:114.832926pt;}
.y127{bottom:115.666673pt;}
.y228{bottom:118.416965pt;}
.y260{bottom:118.996903pt;}
.y146{bottom:120.833049pt;}
.y154{bottom:122.047600pt;}
.y10a{bottom:122.276400pt;}
.y44{bottom:123.017333pt;}
.y21{bottom:123.790666pt;}
.y1f0{bottom:124.489855pt;}
.y1a6{bottom:124.976929pt;}
.y18a{bottom:126.166260pt;}
.y72{bottom:127.708903pt;}
.ybc{bottom:128.708903pt;}
.yd1{bottom:128.708923pt;}
.y9f{bottom:128.708944pt;}
.y16e{bottom:130.832926pt;}
.y227{bottom:131.078298pt;}
.y25f{bottom:131.658236pt;}
.y126{bottom:131.869340pt;}
.y153{bottom:134.708933pt;}
.y109{bottom:134.937733pt;}
.y145{bottom:136.833049pt;}
.y1ef{bottom:137.151188pt;}
.y1a5{bottom:137.638262pt;}
.y189{bottom:142.166260pt;}
.y71{bottom:143.708903pt;}
.y226{bottom:143.739631pt;}
.y43{bottom:144.242664pt;}
.y25e{bottom:144.319570pt;}
.ybb{bottom:144.708903pt;}
.yd0{bottom:144.708923pt;}
.y196{bottom:144.708933pt;}
.y9e{bottom:144.708944pt;}
.y16d{bottom:146.832926pt;}
.y125{bottom:147.997340pt;}
.y1ee{bottom:149.812521pt;}
.y1a4{bottom:150.299596pt;}
.y108{bottom:151.065733pt;}
.y144{bottom:152.833049pt;}
.y225{bottom:156.400965pt;}
.y42{bottom:156.903997pt;}
.y25d{bottom:156.980903pt;}
.y188{bottom:158.166260pt;}
.y70{bottom:159.708903pt;}
.yba{bottom:160.708903pt;}
.ycf{bottom:160.708923pt;}
.y9d{bottom:160.708944pt;}
.y1ed{bottom:162.473855pt;}
.y16c{bottom:162.832926pt;}
.y1a3{bottom:162.960929pt;}
.y107{bottom:163.727066pt;}
.y124{bottom:164.125340pt;}
.y143{bottom:168.833049pt;}
.y224{bottom:169.062298pt;}
.y25c{bottom:169.642236pt;}
.y187{bottom:174.166260pt;}
.y18{bottom:175.052000pt;}
.y1ec{bottom:175.135188pt;}
.y1a2{bottom:175.622262pt;}
.y6f{bottom:175.708903pt;}
.y41{bottom:176.274664pt;}
.yb9{bottom:176.708903pt;}
.yce{bottom:176.708923pt;}
.y9c{bottom:176.708944pt;}
.y16b{bottom:178.832926pt;}
.y106{bottom:179.855066pt;}
.y123{bottom:180.253340pt;}
.y223{bottom:181.723631pt;}
.y25b{bottom:182.303570pt;}
.y142{bottom:184.833049pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1eb{bottom:187.796521pt;}
.y1a1{bottom:188.283596pt;}
.y40{bottom:188.935997pt;}
.y186{bottom:190.166260pt;}
.y6e{bottom:191.708903pt;}
.yb8{bottom:192.708903pt;}
.ycd{bottom:192.708923pt;}
.y9b{bottom:192.708944pt;}
.y222{bottom:194.384965pt;}
.y16a{bottom:194.832926pt;}
.y25a{bottom:194.964903pt;}
.y105{bottom:195.983066pt;}
.y122{bottom:196.381340pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1ea{bottom:200.457855pt;}
.y141{bottom:200.833049pt;}
.y1a0{bottom:200.944929pt;}
.y185{bottom:206.166260pt;}
.y221{bottom:207.046298pt;}
.y259{bottom:207.626236pt;}
.y6d{bottom:207.708903pt;}
.y3f{bottom:208.306664pt;}
.y1e{bottom:208.638670pt;}
.y104{bottom:208.644400pt;}
.y15{bottom:208.651996pt;}
.yb7{bottom:208.708903pt;}
.y9a{bottom:208.708944pt;}
.y169{bottom:210.832926pt;}
.y121{bottom:212.509340pt;}
.y1e9{bottom:213.119188pt;}
.y19f{bottom:213.606262pt;}
.y140{bottom:216.833049pt;}
.y220{bottom:219.707631pt;}
.y258{bottom:220.287570pt;}
.y3e{bottom:220.967997pt;}
.y184{bottom:222.166260pt;}
.y6c{bottom:223.708903pt;}
.yb6{bottom:224.708903pt;}
.ycc{bottom:224.708923pt;}
.y99{bottom:224.708944pt;}
.y103{bottom:224.772400pt;}
.y1e8{bottom:225.780521pt;}
.y168{bottom:226.832926pt;}
.y120{bottom:228.637340pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y21f{bottom:232.368965pt;}
.y13f{bottom:232.833049pt;}
.y257{bottom:232.948903pt;}
.y102{bottom:237.433733pt;}
.y183{bottom:238.166260pt;}
.y1e7{bottom:238.441855pt;}
.y19e{bottom:238.939596pt;}
.y6b{bottom:239.708903pt;}
.yb5{bottom:240.708903pt;}
.y98{bottom:240.708944pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y167{bottom:242.832926pt;}
.y11f{bottom:244.765340pt;}
.y21e{bottom:245.030298pt;}
.y256{bottom:245.610236pt;}
.y13e{bottom:248.833049pt;}
.y101{bottom:250.095066pt;}
.y1e6{bottom:251.103188pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y182{bottom:254.166260pt;}
.y6a{bottom:255.708903pt;}
.yb4{bottom:256.708903pt;}
.ycb{bottom:256.708923pt;}
.y97{bottom:256.708944pt;}
.y21d{bottom:257.691631pt;}
.y255{bottom:258.271570pt;}
.y166{bottom:258.832926pt;}
.y11e{bottom:260.893340pt;}
.y100{bottom:262.756400pt;}
.y1e5{bottom:263.764521pt;}
.y19d{bottom:264.272929pt;}
.y13d{bottom:264.833049pt;}
.y181{bottom:270.166260pt;}
.y21c{bottom:270.352965pt;}
.y254{bottom:270.932903pt;}
.y69{bottom:271.708903pt;}
.yb3{bottom:272.708903pt;}
.y96{bottom:272.708944pt;}
.y165{bottom:274.832926pt;}
.yff{bottom:275.417733pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1e4{bottom:276.425855pt;}
.y11d{bottom:277.021340pt;}
.y13c{bottom:280.833049pt;}
.y21b{bottom:283.014298pt;}
.y253{bottom:283.594236pt;}
.y180{bottom:286.166260pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y68{bottom:287.708903pt;}
.yb2{bottom:288.708903pt;}
.y95{bottom:288.708944pt;}
.y1e3{bottom:289.087188pt;}
.y164{bottom:290.832926pt;}
.yfe{bottom:291.545733pt;}
.y19c{bottom:292.943570pt;}
.y11c{bottom:293.149340pt;}
.y21a{bottom:295.675631pt;}
.y252{bottom:296.255570pt;}
.y13b{bottom:296.833049pt;}
.y3d{bottom:300.281860pt;}
.y1e2{bottom:301.748521pt;}
.y17f{bottom:302.166260pt;}
.y67{bottom:303.708903pt;}
.yfd{bottom:304.207066pt;}
.yb1{bottom:304.708903pt;}
.y94{bottom:304.708944pt;}
.y163{bottom:306.832926pt;}
.y219{bottom:308.336965pt;}
.y251{bottom:308.916903pt;}
.y11b{bottom:309.277340pt;}
.yf{bottom:309.452000pt;}
.y13a{bottom:312.833049pt;}
.y1e1{bottom:314.409855pt;}
.y3c{bottom:316.281860pt;}
.y17e{bottom:318.166260pt;}
.y19b{bottom:318.276903pt;}
.y66{bottom:319.708903pt;}
.yfc{bottom:320.335066pt;}
.yb0{bottom:320.708903pt;}
.y93{bottom:320.708944pt;}
.y218{bottom:320.998298pt;}
.y250{bottom:321.578236pt;}
.y162{bottom:322.832926pt;}
.y117{bottom:326.689863pt;}
.y1e0{bottom:327.071188pt;}
.y139{bottom:328.833049pt;}
.y19a{bottom:330.938236pt;}
.yfb{bottom:332.996400pt;}
.y217{bottom:333.659631pt;}
.y17d{bottom:334.166260pt;}
.y11a{bottom:334.173340pt;}
.y24f{bottom:334.239570pt;}
.y65{bottom:335.708903pt;}
.yaf{bottom:336.708903pt;}
.y92{bottom:336.708944pt;}
.y161{bottom:338.832926pt;}
.y116{bottom:339.351196pt;}
.y1df{bottom:339.732521pt;}
.ye{bottom:343.809333pt;}
.y138{bottom:344.833049pt;}
.y216{bottom:346.320965pt;}
.y24e{bottom:346.900903pt;}
.y3b{bottom:348.948527pt;}
.yfa{bottom:349.124400pt;}
.y64{bottom:351.708903pt;}
.y1de{bottom:352.393855pt;}
.yae{bottom:352.708903pt;}
.y91{bottom:352.708944pt;}
.y160{bottom:354.832926pt;}
.y215{bottom:358.982298pt;}
.y24d{bottom:359.562236pt;}
.y137{bottom:360.833049pt;}
.yf9{bottom:361.785733pt;}
.yd{bottom:362.706666pt;}
.y3a{bottom:364.948527pt;}
.y1dd{bottom:365.055188pt;}
.y63{bottom:367.708903pt;}
.yad{bottom:368.708903pt;}
.y90{bottom:368.708944pt;}
.y15f{bottom:370.832926pt;}
.y214{bottom:371.643631pt;}
.y24c{bottom:372.223570pt;}
.y136{bottom:376.833049pt;}
.y1dc{bottom:377.716521pt;}
.yf8{bottom:377.913733pt;}
.y115{bottom:380.708903pt;}
.y18d{bottom:380.884888pt;}
.y39{bottom:380.948527pt;}
.y62{bottom:383.708903pt;}
.y213{bottom:384.304965pt;}
.yac{bottom:384.708903pt;}
.y8f{bottom:384.708944pt;}
.y283{bottom:384.870297pt;}
.y24b{bottom:384.884903pt;}
.y15e{bottom:386.832926pt;}
.y1db{bottom:390.377855pt;}
.y135{bottom:392.833049pt;}
.y114{bottom:396.708903pt;}
.y38{bottom:396.948527pt;}
.y212{bottom:396.966298pt;}
.y282{bottom:397.531630pt;}
.y24a{bottom:397.546236pt;}
.y61{bottom:399.708903pt;}
.yab{bottom:400.708903pt;}
.y8e{bottom:400.708944pt;}
.yf7{bottom:402.809733pt;}
.y15d{bottom:402.832926pt;}
.y1da{bottom:403.039188pt;}
.y195{bottom:403.915319pt;}
.y134{bottom:408.833049pt;}
.y211{bottom:409.627631pt;}
.y249{bottom:410.207570pt;}
.y1bb{bottom:410.242412pt;}
.y113{bottom:412.708903pt;}
.y37{bottom:412.948527pt;}
.ydd{bottom:413.204020pt;}
.y1d9{bottom:415.700521pt;}
.y60{bottom:415.708903pt;}
.yaa{bottom:416.708903pt;}
.y8d{bottom:416.708944pt;}
.y15c{bottom:418.832926pt;}
.y194{bottom:420.117986pt;}
.yf6{bottom:421.816528pt;}
.y210{bottom:422.288965pt;}
.y281{bottom:422.864964pt;}
.y248{bottom:422.868903pt;}
.y133{bottom:424.833049pt;}
.y1ba{bottom:426.445079pt;}
.y1d8{bottom:428.361855pt;}
.y112{bottom:428.708903pt;}
.y36{bottom:428.948527pt;}
.ydb{bottom:429.205322pt;}
.y5f{bottom:431.708903pt;}
.ya9{bottom:432.708903pt;}
.y8c{bottom:432.708944pt;}
.y15b{bottom:434.832926pt;}
.y20f{bottom:434.950298pt;}
.y280{bottom:435.526297pt;}
.y247{bottom:435.530236pt;}
.y193{bottom:436.245986pt;}
.y132{bottom:440.833049pt;}
.y1d7{bottom:441.023188pt;}
.y1b9{bottom:442.573079pt;}
.y111{bottom:444.708903pt;}
.y35{bottom:444.948527pt;}
.yc{bottom:446.990669pt;}
.y20e{bottom:447.611631pt;}
.y5e{bottom:447.708903pt;}
.y27f{bottom:448.187630pt;}
.y246{bottom:448.191570pt;}
.ya8{bottom:448.708903pt;}
.y8b{bottom:448.708944pt;}
.y15a{bottom:450.832926pt;}
.y192{bottom:452.373986pt;}
.y1d6{bottom:453.684521pt;}
.y131{bottom:456.833049pt;}
.y1b8{bottom:458.701079pt;}
.y20d{bottom:460.272965pt;}
.yf5{bottom:460.708903pt;}
.y27e{bottom:460.848964pt;}
.y245{bottom:460.852903pt;}
.y34{bottom:460.948527pt;}
.yb{bottom:462.990669pt;}
.y5d{bottom:463.708903pt;}
.ya7{bottom:464.708903pt;}
.y8a{bottom:464.708944pt;}
.y1d5{bottom:466.345855pt;}
.y191{bottom:468.501986pt;}
.y130{bottom:472.833049pt;}
.y20c{bottom:472.934298pt;}
.y27d{bottom:473.510297pt;}
.y244{bottom:473.514236pt;}
.y1b7{bottom:474.829079pt;}
.yf4{bottom:476.708903pt;}
.y33{bottom:476.948527pt;}
.ya{bottom:478.990666pt;}
.y1d4{bottom:479.007188pt;}
.y5c{bottom:479.708903pt;}
.ya6{bottom:480.708903pt;}
.yca{bottom:480.708944pt;}
.y190{bottom:484.629986pt;}
.y20b{bottom:485.595631pt;}
.y27c{bottom:486.171630pt;}
.y243{bottom:486.175570pt;}
.y12f{bottom:488.833049pt;}
.y1b6{bottom:490.957079pt;}
.yd7{bottom:491.477336pt;}
.y1d3{bottom:491.668521pt;}
.yf3{bottom:492.708903pt;}
.y32{bottom:492.948527pt;}
.yd9{bottom:493.997314pt;}
.y172{bottom:494.218241pt;}
.y9{bottom:494.990666pt;}
.y5b{bottom:495.708903pt;}
.ya5{bottom:496.708903pt;}
.y89{bottom:496.708944pt;}
.y20a{bottom:498.256965pt;}
.y27b{bottom:498.832964pt;}
.y242{bottom:498.836903pt;}
.y18f{bottom:500.757986pt;}
.y1d2{bottom:504.329855pt;}
.y12e{bottom:504.833049pt;}
.y1b5{bottom:507.085079pt;}
.yf2{bottom:508.708903pt;}
.y31{bottom:508.948527pt;}
.yd5{bottom:509.204020pt;}
.y209{bottom:510.918298pt;}
.y27a{bottom:511.494297pt;}
.y241{bottom:511.498236pt;}
.y5a{bottom:511.708903pt;}
.ya4{bottom:512.708903pt;}
.yc9{bottom:512.708944pt;}
.y17c{bottom:516.811319pt;}
.y18e{bottom:516.885986pt;}
.y1d1{bottom:516.991188pt;}
.y12d{bottom:520.833049pt;}
.y208{bottom:523.579631pt;}
.y279{bottom:524.155630pt;}
.y240{bottom:524.159570pt;}
.y1b4{bottom:524.523753pt;}
.yf1{bottom:524.708903pt;}
.y30{bottom:524.948527pt;}
.y59{bottom:527.708903pt;}
.ya3{bottom:528.708903pt;}
.yc8{bottom:528.708944pt;}
.y1d0{bottom:529.652521pt;}
.y17b{bottom:533.013986pt;}
.y207{bottom:536.240965pt;}
.ydf{bottom:536.708008pt;}
.y278{bottom:536.816964pt;}
.y23f{bottom:536.820903pt;}
.y12c{bottom:536.833049pt;}
.y1b3{bottom:537.185086pt;}
.ye5{bottom:538.659749pt;}
.yf0{bottom:540.708903pt;}
.y2f{bottom:540.948527pt;}
.y1cf{bottom:542.313855pt;}
.y58{bottom:543.708903pt;}
.y88{bottom:544.708903pt;}
.yc7{bottom:544.708944pt;}
.y206{bottom:548.902298pt;}
.y17a{bottom:549.141986pt;}
.y277{bottom:549.478297pt;}
.y23e{bottom:549.482236pt;}
.ye1{bottom:549.999186pt;}
.yde{bottom:551.708944pt;}
.y12b{bottom:552.833049pt;}
.ye6{bottom:553.335612pt;}
.y1ce{bottom:554.975188pt;}
.yef{bottom:556.708903pt;}
.y2e{bottom:556.948527pt;}
.y57{bottom:559.708903pt;}
.y87{bottom:560.708903pt;}
.yc6{bottom:560.708944pt;}
.y205{bottom:561.563631pt;}
.y276{bottom:562.139630pt;}
.y23d{bottom:562.143570pt;}
.y179{bottom:565.269986pt;}
.ye3{bottom:565.491333pt;}
.y1cd{bottom:567.636521pt;}
.y12a{bottom:568.833049pt;}
.yee{bottom:572.708903pt;}
.y2d{bottom:572.948527pt;}
.y8{bottom:573.786667pt;}
.y204{bottom:574.224965pt;}
.y275{bottom:574.800964pt;}
.y23c{bottom:574.804903pt;}
.y56{bottom:575.708903pt;}
.y86{bottom:576.708903pt;}
.yc5{bottom:576.708944pt;}
.y1cc{bottom:580.297855pt;}
.y178{bottom:581.397986pt;}
.y129{bottom:584.833049pt;}
.y203{bottom:586.886298pt;}
.y1b2{bottom:587.457084pt;}
.y274{bottom:587.462297pt;}
.y23b{bottom:587.466236pt;}
.yed{bottom:588.708903pt;}
.y2c{bottom:588.948527pt;}
.y55{bottom:591.708903pt;}
.y7{bottom:592.685334pt;}
.y85{bottom:592.708903pt;}
.yc4{bottom:592.708944pt;}
.y1cb{bottom:592.959188pt;}
.y177{bottom:597.525986pt;}
.y202{bottom:599.547631pt;}
.y273{bottom:600.123630pt;}
.y23a{bottom:600.127570pt;}
.y128{bottom:600.833049pt;}
.y1b1{bottom:603.659751pt;}
.yec{bottom:604.708903pt;}
.y2b{bottom:604.948527pt;}
.y1ca{bottom:605.620521pt;}
.y54{bottom:607.708903pt;}
.y84{bottom:608.708903pt;}
.yc3{bottom:608.708944pt;}
.y201{bottom:612.208965pt;}
.y272{bottom:612.784964pt;}
.y239{bottom:612.788903pt;}
.y176{bottom:613.653986pt;}
.y1c9{bottom:618.281855pt;}
.y1b0{bottom:619.787751pt;}
.yeb{bottom:620.708903pt;}
.y53{bottom:623.708903pt;}
.y83{bottom:624.708903pt;}
.y200{bottom:624.870298pt;}
.y271{bottom:625.446297pt;}
.y238{bottom:625.450236pt;}
.y175{bottom:629.781986pt;}
.y1c8{bottom:630.943188pt;}
.y1af{bottom:635.915751pt;}
.yea{bottom:636.708903pt;}
.y1ff{bottom:637.531631pt;}
.y270{bottom:638.107630pt;}
.y237{bottom:638.111570pt;}
.y14a{bottom:639.551575pt;}
.y52{bottom:639.708903pt;}
.y82{bottom:640.708903pt;}
.yc2{bottom:640.708944pt;}
.y1c7{bottom:643.604521pt;}
.y6{bottom:645.598667pt;}
.y174{bottom:645.909986pt;}
.y2a{bottom:648.053063pt;}
.y1fe{bottom:650.192965pt;}
.y26f{bottom:650.768964pt;}
.y236{bottom:650.772903pt;}
.y1ae{bottom:652.043751pt;}
.ye9{bottom:652.708903pt;}
.y51{bottom:655.708903pt;}
.y1c6{bottom:656.265855pt;}
.y81{bottom:656.708903pt;}
.y29{bottom:660.714396pt;}
.y152{bottom:661.963319pt;}
.y173{bottom:662.037986pt;}
.y1fd{bottom:662.854298pt;}
.y26e{bottom:663.430297pt;}
.y235{bottom:663.434236pt;}
.y1ad{bottom:668.171751pt;}
.y110{bottom:668.708903pt;}
.y1c5{bottom:668.927188pt;}
.y3{bottom:668.977329pt;}
.y50{bottom:671.708903pt;}
.y80{bottom:672.708903pt;}
.y1fc{bottom:675.515631pt;}
.y26d{bottom:676.091630pt;}
.y234{bottom:676.095570pt;}
.y151{bottom:678.165986pt;}
.y1c4{bottom:681.588521pt;}
.y1ac{bottom:684.299751pt;}
.ye8{bottom:684.708903pt;}
.y4f{bottom:687.708903pt;}
.y1fb{bottom:688.176965pt;}
.y7f{bottom:688.708903pt;}
.y26c{bottom:688.752964pt;}
.y233{bottom:688.756903pt;}
.y1c3{bottom:694.249855pt;}
.y150{bottom:694.293986pt;}
.y28{bottom:694.357503pt;}
.y1ab{bottom:700.438417pt;}
.y10f{bottom:700.708903pt;}
.y1fa{bottom:700.838298pt;}
.y26b{bottom:701.414297pt;}
.y232{bottom:701.418236pt;}
.y4e{bottom:703.708903pt;}
.y7e{bottom:704.708903pt;}
.y1c2{bottom:706.911188pt;}
.y14f{bottom:710.421986pt;}
.y1f9{bottom:713.499631pt;}
.y26a{bottom:714.075630pt;}
.y231{bottom:714.079570pt;}
.y1aa{bottom:716.566417pt;}
.y10e{bottom:716.708903pt;}
.y1c1{bottom:719.572521pt;}
.y4d{bottom:719.708903pt;}
.y7d{bottom:720.708903pt;}
.y1f8{bottom:726.160965pt;}
.y14e{bottom:726.549986pt;}
.y269{bottom:726.736964pt;}
.y230{bottom:726.740903pt;}
.y1c0{bottom:732.233855pt;}
.y27{bottom:732.351581pt;}
.y1a9{bottom:732.694417pt;}
.y4c{bottom:735.708903pt;}
.y7c{bottom:736.708903pt;}
.y1f7{bottom:738.822298pt;}
.y268{bottom:739.398297pt;}
.y22f{bottom:739.402236pt;}
.y14d{bottom:742.677986pt;}
.y1bf{bottom:744.895188pt;}
.y10d{bottom:748.708903pt;}
.y1f6{bottom:751.483631pt;}
.y4b{bottom:751.708903pt;}
.y267{bottom:752.059630pt;}
.y22e{bottom:752.063570pt;}
.y26{bottom:752.354248pt;}
.y7b{bottom:752.708903pt;}
.y1a8{bottom:754.406253pt;}
.y1be{bottom:757.556521pt;}
.y14c{bottom:758.805986pt;}
.y1f5{bottom:764.144965pt;}
.y266{bottom:764.720964pt;}
.y22d{bottom:764.724903pt;}
.y4a{bottom:767.708903pt;}
.y7a{bottom:768.708903pt;}
.y1bd{bottom:770.217855pt;}
.y1f4{bottom:776.806298pt;}
.y265{bottom:777.382297pt;}
.y22c{bottom:777.386236pt;}
.y2{bottom:781.661334pt;}
.y14b{bottom:783.701986pt;}
.y79{bottom:784.708903pt;}
.y1f3{bottom:789.467631pt;}
.y264{bottom:790.043630pt;}
.y22b{bottom:790.047570pt;}
.y1bc{bottom:799.151204pt;}
.y49{bottom:799.708903pt;}
.y78{bottom:800.708903pt;}
.y1f2{bottom:802.128965pt;}
.y263{bottom:802.704964pt;}
.y149{bottom:802.708903pt;}
.y24{bottom:822.992964pt;}
.y47{bottom:835.262533pt;}
.yc1{bottom:835.654126pt;}
.y76{bottom:835.654289pt;}
.y23{bottom:835.654297pt;}
.yc0{bottom:836.112793pt;}
.y75{bottom:836.112956pt;}
.y1{bottom:859.312000pt;}
.h24{height:3.520880pt;}
.h1c{height:9.200000pt;}
.h27{height:9.314667pt;}
.h1e{height:9.466667pt;}
.h19{height:11.733333pt;}
.h15{height:12.268000pt;}
.h17{height:14.133333pt;}
.h1d{height:22.832372pt;}
.h1f{height:23.525879pt;}
.h25{height:25.243462pt;}
.h23{height:25.504859pt;}
.h12{height:27.596800pt;}
.h7{height:28.560000pt;}
.h28{height:28.842667pt;}
.ha{height:30.080000pt;}
.h16{height:34.888719pt;}
.h18{height:35.688919pt;}
.h1a{height:36.062345pt;}
.h21{height:36.435772pt;}
.hb{height:37.376000pt;}
.h11{height:39.424000pt;}
.h20{height:40.001333pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h29{height:43.648000pt;}
.h14{height:47.680000pt;}
.hc{height:48.766452pt;}
.h2{height:48.960000pt;}
.h22{height:48.981275pt;}
.h10{height:49.280000pt;}
.hf{height:52.746667pt;}
.h1b{height:54.560000pt;}
.he{height:57.658667pt;}
.h13{height:58.021333pt;}
.hd{height:61.429333pt;}
.h2a{height:69.253306pt;}
.h26{height:69.357867pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:8.120000pt;}
.w8{width:10.080000pt;}
.wa{width:10.560000pt;}
.wc{width:12.026667pt;}
.w6{width:17.520000pt;}
.w5{width:21.013333pt;}
.w7{width:63.133331pt;}
.wb{width:184.599996pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.661194pt;}
.x6{left:68.031469pt;}
.xb{left:68.976400pt;}
.x7{left:69.996933pt;}
.x5{left:78.425201pt;}
.xa{left:83.151470pt;}
.x1d{left:88.814799pt;}
.x1{left:90.706667pt;}
.x1b{left:93.495056pt;}
.x2{left:94.486667pt;}
.xe{left:98.243998pt;}
.x13{left:105.294667pt;}
.xf{left:115.884532pt;}
.x10{left:124.440002pt;}
.x25{left:171.498260pt;}
.x20{left:179.246643pt;}
.x4{left:180.874667pt;}
.x12{left:187.693197pt;}
.x26{left:193.204935pt;}
.x19{left:200.613342pt;}
.xc{left:214.005330pt;}
.x1a{left:216.288127pt;}
.x22{left:222.996801pt;}
.xd{left:235.138936pt;}
.x28{left:279.444957pt;}
.x1c{left:287.652140pt;}
.x21{left:289.257467pt;}
.x1e{left:298.428141pt;}
.x1f{left:307.104268pt;}
.x23{left:344.831991pt;}
.x16{left:357.352010pt;}
.x17{left:368.031616pt;}
.x27{left:375.572947pt;}
.x24{left:402.511190pt;}
.x3{left:404.408000pt;}
.x9{left:463.672526pt;}
.x29{left:467.274282pt;}
.x8{left:497.529053pt;}
.x18{left:502.244975pt;}
.x14{left:509.674683pt;}
.x15{left:517.795207pt;}
}




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