
    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_0d5ca1816e4361435ac50101.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_c43f23838748c5a8546fe828.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.185000;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_07da623e635415eff75fde2c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.355000;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_072924d2b1ed93b1cce8c10d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202000;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_bac6cdd01e141731eb89572a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.381000;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_63f5f395786f123e718c7f59.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_461a646465dba4acede89953.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;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_edce2302d0dc0a447a803da8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;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_f497620e8ead8b2511ce063f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.954000;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_e703d6c87b104dd434d32203.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_dc970594fda0583d59e9d7ee.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.222000;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_a9799f595c615b54648a145b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939000;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_3cb25160414dd0030a99ce1e.woff2')format("woff");}.fff{font-family:fff;line-height:1.070000;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_7fa5a432d5704b489cc76f01.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_fab699c4bfb50b578a3cabea.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.203000;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_11d4d04849f36fbf8b0a95a2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.735000;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_680596255873c3b0e37a76d6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.858000;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_1e92952fbe3295f70d7b4795.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.896000;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_1dbd7ef1f981c559998a76fc.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.871000;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_42cd70253d4d55dc271693be.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.873000;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_645937b2d6a7f24c8d41ba20.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.858000;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_a9799f595c615b54648a145b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.939000;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_09023927a0415c1899577596.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_dbda48f237c993dbfdaabeae.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.384000;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_596e852bb5521ea8b3241a11.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.732000;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_22e6efad1dd5751f26f3c382.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.930000;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_a06b1c74424dc9dcdfda31dc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.711000;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;}
.m6{transform:matrix(0.000000,0.224999,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.224999,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.224999,-0.250000,0.000000,0,0);}
.m5{transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.225002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225002,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-63.802368px;}
.v2{vertical-align:-19.979919px;}
.v4{vertical-align:-10.116669px;}
.v5{vertical-align:-5.058380px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.686127px;}
.v7{vertical-align:3.934204px;}
.v6{vertical-align:6.744415px;}
.v1{vertical-align:19.979736px;}
.v3{vertical-align:31.476013px;}
.ls23{letter-spacing:-5.520000px;}
.ls3f{letter-spacing:-4.899312px;}
.ls5e{letter-spacing:-4.874415px;}
.ls41{letter-spacing:-4.627128px;}
.ls1c{letter-spacing:-3.452011px;}
.ls53{letter-spacing:-3.424358px;}
.ls1e{letter-spacing:-3.119278px;}
.ls68{letter-spacing:-3.110930px;}
.ls67{letter-spacing:-3.068901px;}
.ls54{letter-spacing:-3.028935px;}
.ls6b{letter-spacing:-2.690534px;}
.ls5f{letter-spacing:-2.675280px;}
.ls1b{letter-spacing:-2.565684px;}
.ls6e{letter-spacing:-2.312178px;}
.ls6a{letter-spacing:-2.270138px;}
.ls1d{letter-spacing:-1.978350px;}
.ls73{letter-spacing:-1.808501px;}
.ls20{letter-spacing:-1.726006px;}
.ls76{letter-spacing:-1.674000px;}
.ls6c{letter-spacing:-1.555465px;}
.ls1f{letter-spacing:-1.539410px;}
.ls4e{letter-spacing:-1.320000px;}
.ls46{letter-spacing:-1.307938px;}
.ls64{letter-spacing:-1.230629px;}
.ls47{letter-spacing:-1.144445px;}
.ls3d{letter-spacing:-1.143173px;}
.lse{letter-spacing:-1.020000px;}
.ls39{letter-spacing:-0.979862px;}
.ls5c{letter-spacing:-0.964170px;}
.ls4f{letter-spacing:-0.960000px;}
.ls60{letter-spacing:-0.909595px;}
.ls6f{letter-spacing:-0.900000px;}
.ls58{letter-spacing:-0.857153px;}
.ls71{letter-spacing:-0.840000px;}
.ls5a{letter-spacing:-0.831474px;}
.ls44{letter-spacing:-0.817461px;}
.ls51{letter-spacing:-0.792000px;}
.ls55{letter-spacing:-0.772083px;}
.ls3a{letter-spacing:-0.762115px;}
.ls6d{letter-spacing:-0.756713px;}
.ls66{letter-spacing:-0.749078px;}
.lsd{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.707678px;}
.ls74{letter-spacing:-0.702000px;}
.ls5b{letter-spacing:-0.653301px;}
.ls33{letter-spacing:-0.653242px;}
.ls61{letter-spacing:-0.642067px;}
.lsf{letter-spacing:-0.600000px;}
.ls75{letter-spacing:-0.540000px;}
.ls45{letter-spacing:-0.490477px;}
.ls40{letter-spacing:-0.489931px;}
.ls72{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.420000px;}
.ls77{letter-spacing:-0.378000px;}
.ls35{letter-spacing:-0.326621px;}
.ls22{letter-spacing:-0.300000px;}
.ls42{letter-spacing:-0.272184px;}
.ls7{letter-spacing:-0.240000px;}
.ls63{letter-spacing:-0.214022px;}
.lsc{letter-spacing:-0.180000px;}
.ls2e{letter-spacing:-0.163310px;}
.ls8{letter-spacing:-0.120000px;}
.ls50{letter-spacing:-0.108000px;}
.ls57{letter-spacing:-0.095239px;}
.ls69{letter-spacing:-0.084079px;}
.ls48{letter-spacing:-0.066000px;}
.lsa{letter-spacing:-0.060000px;}
.ls56{letter-spacing:-0.059391px;}
.ls31{letter-spacing:-0.054437px;}
.ls5d{letter-spacing:-0.053565px;}
.ls52{letter-spacing:-0.053506px;}
.ls59{letter-spacing:-0.047620px;}
.ls2b{letter-spacing:-0.042461px;}
.ls28{letter-spacing:-0.021230px;}
.ls0{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000110px;}
.ls2a{letter-spacing:0.021230px;}
.ls25{letter-spacing:0.042461px;}
.ls4c{letter-spacing:0.053506px;}
.ls26{letter-spacing:0.054437px;}
.ls49{letter-spacing:0.059391px;}
.ls2{letter-spacing:0.060000px;}
.ls11{letter-spacing:0.066000px;}
.ls29{letter-spacing:0.084922px;}
.ls1{letter-spacing:0.120000px;}
.ls27{letter-spacing:0.163310px;}
.ls4{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.360000px;}
.ls70{letter-spacing:0.391025px;}
.ls13{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.599849px;}
.ls12{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.600030px;}
.ls19{letter-spacing:0.600033px;}
.ls15{letter-spacing:0.660000px;}
.ls37{letter-spacing:0.707678px;}
.ls4d{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.780000px;}
.ls18{letter-spacing:0.900000px;}
.ls21{letter-spacing:0.960000px;}
.ls65{letter-spacing:11.878243px;}
.ls3c{letter-spacing:12.357153px;}
.ls3b{letter-spacing:12.466027px;}
.ls34{letter-spacing:12.738211px;}
.ls36{letter-spacing:12.792648px;}
.ls3e{letter-spacing:12.847084px;}
.ls62{letter-spacing:12.948355px;}
.ls2f{letter-spacing:230.049900px;}
.ls30{letter-spacing:230.104346px;}
.ls4a{letter-spacing:319.596188px;}
.ls4b{letter-spacing:415.419143px;}
.ls38{letter-spacing:623.682384px;}
.ls1a{letter-spacing:883.225849px;}
.ls32{letter-spacing:1287.484661px;}
.ls43{letter-spacing:1363.696229px;}
.ls2d{letter-spacing:1425.699742px;}
.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;}
}
.wsde{word-spacing:-1425.699742px;}
.wse2{word-spacing:-1363.696229px;}
.wsdf{word-spacing:-1287.484661px;}
.wse0{word-spacing:-623.682384px;}
.wsb4{word-spacing:-230.158782px;}
.wsb2{word-spacing:-230.104336px;}
.ws1{word-spacing:-56.700000px;}
.wsc6{word-spacing:-25.149801px;}
.wsbb{word-spacing:-25.095364px;}
.wsb9{word-spacing:-25.040927px;}
.wsc2{word-spacing:-24.768743px;}
.wsc3{word-spacing:-24.659870px;}
.ws2c{word-spacing:-15.525000px;}
.ws110{word-spacing:-15.511899px;}
.ws55{word-spacing:-14.340000px;}
.ws8{word-spacing:-13.740000px;}
.ws5{word-spacing:-13.620000px;}
.ws76{word-spacing:-13.560000px;}
.ws54{word-spacing:-13.500000px;}
.wse3{word-spacing:-13.440000px;}
.wse4{word-spacing:-13.320000px;}
.ws6{word-spacing:-13.140000px;}
.ws131{word-spacing:-13.020000px;}
.wsbc{word-spacing:-13.010395px;}
.wsfe{word-spacing:-13.001860px;}
.ws57{word-spacing:-12.968366px;}
.ws103{word-spacing:-12.870000px;}
.wse5{word-spacing:-12.780000px;}
.wsc4{word-spacing:-12.466027px;}
.ws10f{word-spacing:-12.442998px;}
.ws77{word-spacing:-12.420000px;}
.wsbd{word-spacing:-12.357153px;}
.wsb8{word-spacing:-12.302716px;}
.ws13c{word-spacing:-12.258000px;}
.wsb6{word-spacing:-12.248280px;}
.ws101{word-spacing:-11.931748px;}
.wscd{word-spacing:-11.825936px;}
.wsc8{word-spacing:-11.812785px;}
.ws112{word-spacing:-11.687009px;}
.ws13b{word-spacing:-11.664000px;}
.wsb7{word-spacing:-11.649475px;}
.wsbf{word-spacing:-11.540601px;}
.wscc{word-spacing:-11.498951px;}
.wsbe{word-spacing:-11.322854px;}
.ws60{word-spacing:-11.242361px;}
.ws2b{word-spacing:-11.178000px;}
.wscf{word-spacing:-11.171967px;}
.wsc5{word-spacing:-11.159544px;}
.wse6{word-spacing:-11.070000px;}
.wsce{word-spacing:-11.008475px;}
.ws116{word-spacing:-10.930296px;}
.ws56{word-spacing:-10.402682px;}
.ws115{word-spacing:-10.131544px;}
.ws59{word-spacing:-9.999660px;}
.ws3{word-spacing:-9.996000px;}
.ws113{word-spacing:-9.416870px;}
.ws117{word-spacing:-9.374831px;}
.ws114{word-spacing:-8.996474px;}
.ws111{word-spacing:-8.576078px;}
.ws75{word-spacing:-8.220000px;}
.ws58{word-spacing:-8.021310px;}
.ws9{word-spacing:-8.010420px;}
.ws5d{word-spacing:-7.812245px;}
.ws7{word-spacing:-7.660620px;}
.wsc7{word-spacing:-7.403405px;}
.wsac{word-spacing:-5.604826px;}
.wsab{word-spacing:-5.519904px;}
.wsaa{word-spacing:-5.498674px;}
.wsad{word-spacing:-5.477443px;}
.ws5a{word-spacing:-4.692967px;}
.ws6f{word-spacing:-3.600000px;}
.ws94{word-spacing:-3.540000px;}
.wse{word-spacing:-3.420000px;}
.wsb{word-spacing:-3.360000px;}
.ws65{word-spacing:-3.300000px;}
.ws4c{word-spacing:-3.240000px;}
.ws3a{word-spacing:-3.180000px;}
.ws4d{word-spacing:-3.120000px;}
.ws11b{word-spacing:-3.060000px;}
.ws12d{word-spacing:-3.000000px;}
.ws7e{word-spacing:-2.940000px;}
.ws72{word-spacing:-2.880000px;}
.ws3f{word-spacing:-2.820000px;}
.wsf{word-spacing:-2.700000px;}
.ws16{word-spacing:-2.640000px;}
.ws3c{word-spacing:-2.580000px;}
.ws67{word-spacing:-2.520000px;}
.wsd1{word-spacing:-2.400000px;}
.ws89{word-spacing:-2.340000px;}
.ws121{word-spacing:-2.220000px;}
.ws30{word-spacing:-2.160000px;}
.ws3d{word-spacing:-2.100000px;}
.ws96{word-spacing:-2.040000px;}
.ws4{word-spacing:-1.989000px;}
.ws23{word-spacing:-1.980000px;}
.ws13{word-spacing:-1.920000px;}
.ws3e{word-spacing:-1.860000px;}
.ws8c{word-spacing:-1.800000px;}
.ws79{word-spacing:-1.740000px;}
.ws132{word-spacing:-1.680000px;}
.ws21{word-spacing:-1.620000px;}
.wsa9{word-spacing:-1.500000px;}
.ws22{word-spacing:-1.440000px;}
.ws37{word-spacing:-1.380000px;}
.ws8d{word-spacing:-1.320000px;}
.ws45{word-spacing:-1.200000px;}
.ws136{word-spacing:-1.140000px;}
.ws1e{word-spacing:-1.080000px;}
.ws120{word-spacing:-1.020000px;}
.ws64{word-spacing:-0.960000px;}
.wsda{word-spacing:-0.900000px;}
.ws7a{word-spacing:-0.840000px;}
.ws44{word-spacing:-0.780000px;}
.ws7c{word-spacing:-0.720000px;}
.ws35{word-spacing:-0.660000px;}
.ws71{word-spacing:-0.600000px;}
.ws36{word-spacing:-0.540000px;}
.ws32{word-spacing:-0.480000px;}
.ws10b{word-spacing:-0.432000px;}
.ws138{word-spacing:-0.423610px;}
.ws106{word-spacing:-0.420000px;}
.ws41{word-spacing:-0.360000px;}
.ws39{word-spacing:-0.300000px;}
.ws66{word-spacing:-0.240000px;}
.ws86{word-spacing:-0.180000px;}
.ws11e{word-spacing:-0.120000px;}
.wsfd{word-spacing:-0.107011px;}
.ws13a{word-spacing:-0.060000px;}
.wse9{word-spacing:-0.059391px;}
.wsaf{word-spacing:-0.054437px;}
.wsf5{word-spacing:-0.053565px;}
.wsf4{word-spacing:-0.053506px;}
.ws139{word-spacing:-0.032585px;}
.wsdd{word-spacing:-0.021230px;}
.ws0{word-spacing:0.000000px;}
.wsc0{word-spacing:0.000116px;}
.wsdc{word-spacing:0.021230px;}
.ws10d{word-spacing:0.047620px;}
.ws10c{word-spacing:0.053506px;}
.ws17{word-spacing:0.060000px;}
.ws11d{word-spacing:0.084079px;}
.ws91{word-spacing:0.120000px;}
.wsff{word-spacing:0.160517px;}
.ws26{word-spacing:0.180000px;}
.ws18{word-spacing:0.240000px;}
.wse1{word-spacing:0.272184px;}
.wscb{word-spacing:0.272232px;}
.ws2d{word-spacing:0.300000px;}
.wsb5{word-spacing:0.326662px;}
.ws61{word-spacing:0.360000px;}
.ws13f{word-spacing:0.378000px;}
.ws88{word-spacing:0.420000px;}
.ws105{word-spacing:0.480000px;}
.ws2f{word-spacing:0.540000px;}
.wsfc{word-spacing:0.588562px;}
.wsf3{word-spacing:0.593910px;}
.ws2a{word-spacing:0.600000px;}
.wsb0{word-spacing:0.653242px;}
.ws20{word-spacing:0.660000px;}
.ws102{word-spacing:0.695573px;}
.ws140{word-spacing:0.702000px;}
.wsea{word-spacing:0.712692px;}
.wsd2{word-spacing:0.720000px;}
.wsf2{word-spacing:0.772083px;}
.ws12f{word-spacing:0.780000px;}
.wsee{word-spacing:0.809533px;}
.ws4a{word-spacing:0.840000px;}
.wsfb{word-spacing:0.856090px;}
.ws108{word-spacing:0.900000px;}
.wsf6{word-spacing:0.910605px;}
.ws42{word-spacing:0.960000px;}
.ws27{word-spacing:1.020000px;}
.ws7d{word-spacing:1.080000px;}
.ws129{word-spacing:1.200000px;}
.ws10e{word-spacing:1.230629px;}
.ws9f{word-spacing:1.260000px;}
.ws109{word-spacing:1.320000px;}
.ws95{word-spacing:1.380000px;}
.wsa0{word-spacing:1.440000px;}
.ws6c{word-spacing:1.500000px;}
.ws74{word-spacing:1.539410px;}
.ws3b{word-spacing:1.560000px;}
.ws13e{word-spacing:1.674000px;}
.ws133{word-spacing:1.740000px;}
.ws80{word-spacing:1.800000px;}
.ws13d{word-spacing:1.808501px;}
.ws78{word-spacing:1.860000px;}
.ws99{word-spacing:1.920000px;}
.ws50{word-spacing:1.980000px;}
.ws40{word-spacing:2.040000px;}
.wsdb{word-spacing:2.100000px;}
.ws49{word-spacing:2.160000px;}
.wsba{word-spacing:2.177487px;}
.wsd5{word-spacing:2.220000px;}
.ws29{word-spacing:2.280000px;}
.wsa3{word-spacing:2.340000px;}
.ws62{word-spacing:2.400000px;}
.ws128{word-spacing:2.460000px;}
.ws7f{word-spacing:2.520000px;}
.ws87{word-spacing:2.580000px;}
.wsfa{word-spacing:2.621774px;}
.ws68{word-spacing:2.640000px;}
.wsd8{word-spacing:2.700000px;}
.ws6a{word-spacing:2.760000px;}
.wsa{word-spacing:2.820000px;}
.ws9d{word-spacing:2.880000px;}
.wse8{word-spacing:2.969544px;}
.ws11a{word-spacing:3.000000px;}
.ws12a{word-spacing:3.060000px;}
.ws15{word-spacing:3.180000px;}
.ws6e{word-spacing:3.240000px;}
.ws31{word-spacing:3.300000px;}
.ws28{word-spacing:3.360000px;}
.wse7{word-spacing:3.370853px;}
.ws10{word-spacing:3.420000px;}
.ws73{word-spacing:3.452011px;}
.wsd{word-spacing:3.480000px;}
.ws24{word-spacing:3.540000px;}
.wsa5{word-spacing:3.660000px;}
.ws81{word-spacing:3.720000px;}
.ws25{word-spacing:3.780000px;}
.ws69{word-spacing:3.840000px;}
.ws127{word-spacing:3.900000px;}
.ws70{word-spacing:3.960000px;}
.ws93{word-spacing:4.020000px;}
.wsc{word-spacing:4.080000px;}
.ws14{word-spacing:4.140000px;}
.ws84{word-spacing:4.200000px;}
.ws1d{word-spacing:4.320000px;}
.ws63{word-spacing:4.440000px;}
.ws12b{word-spacing:4.500000px;}
.wsd6{word-spacing:4.560000px;}
.ws6d{word-spacing:4.620000px;}
.ws6b{word-spacing:4.680000px;}
.ws19{word-spacing:4.740000px;}
.ws1b{word-spacing:4.800000px;}
.wsf9{word-spacing:4.820850px;}
.ws9e{word-spacing:4.860000px;}
.ws2e{word-spacing:4.920000px;}
.ws7b{word-spacing:4.980000px;}
.ws11c{word-spacing:5.040000px;}
.ws33{word-spacing:5.100000px;}
.wsd9{word-spacing:5.159994px;}
.ws48{word-spacing:5.160000px;}
.ws11{word-spacing:5.220000px;}
.ws97{word-spacing:5.280000px;}
.ws46{word-spacing:5.340000px;}
.ws8f{word-spacing:5.400000px;}
.ws10a{word-spacing:5.460000px;}
.ws52{word-spacing:5.520000px;}
.ws1a{word-spacing:5.580000px;}
.ws123{word-spacing:5.700000px;}
.ws1c{word-spacing:5.820000px;}
.ws38{word-spacing:5.880000px;}
.ws11f{word-spacing:5.940000px;}
.ws47{word-spacing:6.000000px;}
.ws8a{word-spacing:6.060000px;}
.ws9b{word-spacing:6.120000px;}
.ws4b{word-spacing:6.180000px;}
.ws8e{word-spacing:6.300000px;}
.ws118{word-spacing:6.360000px;}
.ws82{word-spacing:6.420000px;}
.wsa6{word-spacing:6.540000px;}
.ws98{word-spacing:6.600000px;}
.ws53{word-spacing:6.720000px;}
.ws134{word-spacing:6.780000px;}
.ws9a{word-spacing:7.080000px;}
.ws104{word-spacing:7.320000px;}
.wsd3{word-spacing:7.380000px;}
.wsa8{word-spacing:7.560000px;}
.wsa4{word-spacing:7.620000px;}
.wsa7{word-spacing:7.680000px;}
.ws124{word-spacing:7.740000px;}
.ws12e{word-spacing:7.860000px;}
.wsa1{word-spacing:7.980000px;}
.ws125{word-spacing:8.100000px;}
.ws85{word-spacing:8.220000px;}
.ws130{word-spacing:8.280000px;}
.ws9c{word-spacing:8.340000px;}
.ws12c{word-spacing:8.400000px;}
.wsa2{word-spacing:8.520000px;}
.ws34{word-spacing:8.580000px;}
.ws43{word-spacing:8.640000px;}
.ws135{word-spacing:8.760000px;}
.ws122{word-spacing:8.940000px;}
.ws4f{word-spacing:9.120000px;}
.ws92{word-spacing:9.480000px;}
.ws8b{word-spacing:9.600000px;}
.wsc9{word-spacing:9.689836px;}
.ws119{word-spacing:9.720000px;}
.ws83{word-spacing:9.780000px;}
.wsd7{word-spacing:9.960000px;}
.ws126{word-spacing:10.140000px;}
.ws51{word-spacing:10.260000px;}
.ws4e{word-spacing:10.320000px;}
.ws12{word-spacing:10.680000px;}
.ws137{word-spacing:10.800000px;}
.ws107{word-spacing:10.980000px;}
.ws1f{word-spacing:11.460000px;}
.ws100{word-spacing:11.878350px;}
.wsd4{word-spacing:11.940000px;}
.wsb1{word-spacing:11.976009px;}
.wsb3{word-spacing:11.976192px;}
.wsf8{word-spacing:12.587944px;}
.wseb{word-spacing:13.541182px;}
.ws90{word-spacing:14.280000px;}
.ws2{word-spacing:16.860000px;}
.wsae{word-spacing:80.250658px;}
.wsed{word-spacing:201.083359px;}
.wsec{word-spacing:217.128259px;}
.wsef{word-spacing:229.195866px;}
.ws5c{word-spacing:259.321671px;}
.wsf1{word-spacing:327.160065px;}
.wsf0{word-spacing:365.945805px;}
.ws5b{word-spacing:370.547767px;}
.wsf7{word-spacing:401.833093px;}
.ws5f{word-spacing:506.868709px;}
.ws5e{word-spacing:507.571064px;}
.wsca{word-spacing:861.244552px;}
.wsc1{word-spacing:1090.260305px;}
.wsd0{word-spacing:1809.586189px;}
._0{margin-left:-2976.360064px;}
._10{margin-left:-1580.694498px;}
._17{margin-left:-313.010500px;}
._18{margin-left:-230.049874px;}
._3{margin-left:-20.664000px;}
._1b{margin-left:-15.788582px;}
._1a{margin-left:-13.921409px;}
._19{margin-left:-12.464179px;}
._c{margin-left:-8.892000px;}
._b{margin-left:-7.300800px;}
._a{margin-left:-5.781600px;}
._8{margin-left:-4.776000px;}
._7{margin-left:-3.036000px;}
._4{margin-left:-2.016000px;}
._5{margin-left:-1.008000px;}
._1{width:1.020000px;}
._6{width:2.520000px;}
._e{width:3.718413px;}
._13{width:4.884000px;}
._d{width:6.186827px;}
._9{width:7.786800px;}
._16{width:12.893963px;}
._1c{width:16.776000px;}
._2{width:47.399988px;}
._12{width:53.064000px;}
._f{width:62.947611px;}
._11{width:195.708496px;}
._14{width:300.848978px;}
._15{width:425.162978px;}
.fc8{color:transparent;}
.fc5{color:rgb(216,132,52);}
.fc4{color:rgb(62,62,61);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(217,112,0);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(1,1,1);}
.fc1{color:rgb(103,103,103);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:21.230400px;}
.fsf{font-size:28.101600px;}
.fs1d{font-size:32.585400px;}
.fs8{font-size:34.980000px;}
.fse{font-size:35.969999px;}
.fs12{font-size:36.291000px;}
.fs4{font-size:42.000000px;}
.fs1b{font-size:42.039600px;}
.fsd{font-size:46.648799px;}
.fs18{font-size:47.619600px;}
.fs1c{font-size:48.878400px;}
.fs7{font-size:51.000000px;}
.fs16{font-size:53.505598px;}
.fs19{font-size:53.564999px;}
.fs9{font-size:54.000000px;}
.fs10{font-size:54.436798px;}
.fs15{font-size:54.497400px;}
.fs1a{font-size:55.798199px;}
.fs17{font-size:59.391000px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:61.823399px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs13{font-size:72.582000px;}
.fsa{font-size:75.000000px;}
.fsb{font-size:90.000000px;}
.fs14{font-size:96.715800px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y141{bottom:3.786449px;}
.y1ff{bottom:8.545497px;}
.y2c8{bottom:13.617600px;}
.y23{bottom:27.042449px;}
.y13a{bottom:34.934554px;}
.y1f3{bottom:35.844155px;}
.y21f{bottom:38.180069px;}
.y21e{bottom:49.646370px;}
.y1f1{bottom:60.050858px;}
.y21d{bottom:61.301849px;}
.y1f2{bottom:61.551155px;}
.y1f0{bottom:61.551476px;}
.y13f{bottom:65.610455px;}
.y5{bottom:66.525004px;}
.y140{bottom:67.109344px;}
.y21c{bottom:72.768150px;}
.y13c{bottom:73.996799px;}
.y13d{bottom:79.522202px;}
.y13e{bottom:81.022349px;}
.y222{bottom:81.176366px;}
.y2c7{bottom:85.039500px;}
.y24c{bottom:85.092407px;}
.ye9{bottom:85.092448px;}
.y278{bottom:85.092453px;}
.y6c{bottom:85.092471px;}
.y295{bottom:85.092590px;}
.ybb{bottom:85.092618px;}
.y2c1{bottom:85.092636px;}
.y166{bottom:85.092645px;}
.y3e{bottom:85.116453px;}
.y2e9{bottom:85.171928px;}
.y21b{bottom:87.098858px;}
.y1ef{bottom:87.272885px;}
.y2c9{bottom:90.112947px;}
.y221{bottom:92.831845px;}
.y1d7{bottom:93.741009px;}
.y1dc{bottom:96.295200px;}
.y101{bottom:96.295350px;}
.y4{bottom:97.125005px;}
.y104{bottom:97.795498px;}
.y21a{bottom:98.565159px;}
.y2c6{bottom:98.657100px;}
.y135{bottom:99.287887px;}
.y3d{bottom:100.110453px;}
.y2e8{bottom:103.666928px;}
.y220{bottom:104.298146px;}
.y133{bottom:106.172767px;}
.y24b{bottom:107.442407px;}
.ye8{bottom:107.442448px;}
.y277{bottom:107.442453px;}
.y6b{bottom:107.442471px;}
.y294{bottom:107.442590px;}
.yba{bottom:107.442618px;}
.y2c0{bottom:107.442636px;}
.y165{bottom:107.442645px;}
.y1d6{bottom:108.735009px;}
.y1ee{bottom:112.994259px;}
.y134{bottom:114.743751px;}
.y3c{bottom:115.104453px;}
.y132{bottom:116.008346px;}
.y9b{bottom:117.411303px;}
.y1fe{bottom:122.229011px;}
.y2e7{bottom:128.547428px;}
.y236{bottom:129.720411px;}
.y24a{bottom:129.792407px;}
.ye7{bottom:129.792448px;}
.y276{bottom:129.792453px;}
.y6a{bottom:129.792471px;}
.y293{bottom:129.792590px;}
.yb9{bottom:129.792618px;}
.y2bf{bottom:129.792636px;}
.y164{bottom:129.792645px;}
.y3b{bottom:130.098453px;}
.y1d5{bottom:135.306009px;}
.y1ed{bottom:137.215359px;}
.y1ec{bottom:138.715657px;}
.y22{bottom:139.264499px;}
.y235{bottom:142.332291px;}
.y9a{bottom:142.401295px;}
.y10f{bottom:143.874149px;}
.y3a{bottom:145.092453px;}
.y2e6{bottom:147.042428px;}
.y1d4{bottom:150.300009px;}
.y200{bottom:151.016852px;}
.y23f{bottom:151.129082px;}
.y249{bottom:152.142407px;}
.ye6{bottom:152.142448px;}
.y275{bottom:152.142453px;}
.y69{bottom:152.142471px;}
.y292{bottom:152.142590px;}
.yb8{bottom:152.142618px;}
.y163{bottom:152.142645px;}
.y138{bottom:153.383468px;}
.y12f{bottom:153.523955px;}
.y137{bottom:153.945487px;}
.y234{bottom:157.235329px;}
.y10d{bottom:157.784855px;}
.y10e{bottom:159.284705px;}
.y131{bottom:161.532920px;}
.y136{bottom:162.094939px;}
.y1eb{bottom:162.937351px;}
.y23e{bottom:163.740962px;}
.y1ea{bottom:164.435269px;}
.y12e{bottom:164.624106px;}
.y2e5{bottom:165.537428px;}
.y99{bottom:168.040194px;}
.y233{bottom:169.847209px;}
.y130{bottom:170.103904px;}
.y10c{bottom:171.697872px;}
.y248{bottom:174.492407px;}
.y274{bottom:174.492453px;}
.y68{bottom:174.492471px;}
.y291{bottom:174.492590px;}
.ye5{bottom:174.492599px;}
.yb7{bottom:174.492618px;}
.y2be{bottom:174.492636px;}
.y162{bottom:174.492645px;}
.y23d{bottom:176.352842px;}
.y1d3{bottom:176.871009px;}
.y225{bottom:179.013875px;}
.y2e4{bottom:184.032428px;}
.y219{bottom:184.937695px;}
.y1e9{bottom:188.656345px;}
.y1e8{bottom:190.156643px;}
.y224{bottom:190.669354px;}
.y98{bottom:193.030197px;}
.y218{bottom:196.403996px;}
.y232{bottom:196.594905px;}
.y18e{bottom:196.836604px;}
.y247{bottom:196.842407px;}
.y273{bottom:196.842453px;}
.y67{bottom:196.842471px;}
.y290{bottom:196.842590px;}
.ye4{bottom:196.842599px;}
.yb6{bottom:196.842618px;}
.y161{bottom:196.842645px;}
.y19{bottom:196.933500px;}
.y239{bottom:201.765776px;}
.y223{bottom:202.135655px;}
.y2e3{bottom:202.527428px;}
.y1d2{bottom:203.442009px;}
.y231{bottom:209.206785px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y38{bottom:212.574440px;}
.y238{bottom:214.377656px;}
.y1e0{bottom:214.848805px;}
.y1fd{bottom:217.156493px;}
.y2bd{bottom:218.592636px;}
.y97{bottom:218.678109px;}
.y246{bottom:219.192407px;}
.y272{bottom:219.192453px;}
.y66{bottom:219.192471px;}
.y28f{bottom:219.192590px;}
.ye3{bottom:219.192599px;}
.y18d{bottom:219.192604px;}
.yb5{bottom:219.192618px;}
.y160{bottom:219.192645px;}
.y1e3{bottom:221.187000px;}
.y1df{bottom:221.201992px;}
.y1e1{bottom:221.277157px;}
.y1e4{bottom:221.746502px;}
.y230{bottom:221.818665px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y237{bottom:226.989536px;}
.y2e2{bottom:227.407928px;}
.y1d1{bottom:230.012260px;}
.y20f{bottom:234.628897px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y2bc{bottom:236.592636px;}
.y1e2{bottom:237.714009px;}
.y96{bottom:238.673109px;}
.y245{bottom:241.542407px;}
.y271{bottom:241.542453px;}
.y65{bottom:241.542471px;}
.y28e{bottom:241.542590px;}
.ye2{bottom:241.542599px;}
.yb4{bottom:241.542618px;}
.y15f{bottom:241.542645px;}
.y2e1{bottom:245.902928px;}
.y115{bottom:249.637023px;}
.y11b{bottom:249.645995px;}
.y121{bottom:249.654990px;}
.y127{bottom:249.663985px;}
.y12d{bottom:249.672980px;}
.y20e{bottom:250.098947px;}
.y22f{bottom:251.813920px;}
.y2bb{bottom:254.592636px;}
.y37{bottom:256.184235px;}
.y95{bottom:258.668109px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y114{bottom:260.454986px;}
.y11a{bottom:260.463981px;}
.y120{bottom:260.472976px;}
.y126{bottom:260.481971px;}
.y12c{bottom:260.490966px;}
.y244{bottom:263.892407px;}
.y270{bottom:263.892453px;}
.y64{bottom:263.892471px;}
.y28d{bottom:263.892590px;}
.ye1{bottom:263.892599px;}
.yb3{bottom:263.892618px;}
.y15e{bottom:263.892645px;}
.y18c{bottom:263.892691px;}
.y2e0{bottom:264.397928px;}
.y22e{bottom:264.425800px;}
.y20d{bottom:265.387654px;}
.y242{bottom:268.461606px;}
.y113{bottom:271.272971px;}
.y119{bottom:271.281966px;}
.y11f{bottom:271.290938px;}
.y125{bottom:271.299956px;}
.y12b{bottom:271.308929px;}
.y314{bottom:271.917477px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y2ba{bottom:272.592636px;}
.y10b{bottom:274.406857px;}
.y13b{bottom:276.186904px;}
.y22d{bottom:277.037680px;}
.y241{bottom:281.073486px;}
.y112{bottom:282.090934px;}
.y118{bottom:282.099952px;}
.y11e{bottom:282.108924px;}
.y124{bottom:282.117919px;}
.y12a{bottom:282.126914px;}
.y2df{bottom:282.892928px;}
.y36{bottom:283.184235px;}
.y94{bottom:283.658089px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1b0{bottom:286.242407px;}
.y1d0{bottom:286.242426px;}
.y26f{bottom:286.242453px;}
.y63{bottom:286.242471px;}
.y28c{bottom:286.242590px;}
.ye0{bottom:286.242599px;}
.yb2{bottom:286.242618px;}
.y15d{bottom:286.242645px;}
.y18b{bottom:286.242691px;}
.y203{bottom:289.062881px;}
.y313{bottom:289.912977px;}
.y111{bottom:292.908919px;}
.y117{bottom:292.917937px;}
.y11d{bottom:292.926910px;}
.y123{bottom:292.935882px;}
.y129{bottom:292.944900px;}
.y240{bottom:293.685366px;}
.y1fc{bottom:296.820739px;}
.y1e5{bottom:299.031292px;}
.y217{bottom:299.973874px;}
.y110{bottom:303.726882px;}
.y116{bottom:303.735900px;}
.y11c{bottom:303.744872px;}
.y122{bottom:303.753890px;}
.y128{bottom:303.762862px;}
.y202{bottom:305.114547px;}
.y2de{bottom:307.773428px;}
.y312{bottom:307.908477px;}
.y1af{bottom:308.592407px;}
.y1cf{bottom:308.592426px;}
.y26e{bottom:308.592453px;}
.y62{bottom:308.592471px;}
.y28b{bottom:308.592590px;}
.ydf{bottom:308.592599px;}
.yb1{bottom:308.592618px;}
.y2b9{bottom:308.592636px;}
.y15c{bottom:308.592645px;}
.y18a{bottom:308.592691px;}
.y35{bottom:310.184235px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y226{bottom:311.439160px;}
.y216{bottom:311.629353px;}
.y1fb{bottom:312.872405px;}
.y139{bottom:313.468357px;}
.y22c{bottom:313.538562px;}
.y93{bottom:321.053102px;}
.y201{bottom:321.180312px;}
.y23c{bottom:321.200279px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y215{bottom:323.095654px;}
.y311{bottom:325.903977px;}
.y22b{bottom:326.150442px;}
.y2dd{bottom:326.268428px;}
.y1ae{bottom:330.942407px;}
.y1ce{bottom:330.942426px;}
.y26d{bottom:330.942453px;}
.y61{bottom:330.942471px;}
.y28a{bottom:330.942590px;}
.yde{bottom:330.942599px;}
.yb0{bottom:330.942618px;}
.y2b8{bottom:330.942636px;}
.y15b{bottom:330.942645px;}
.y189{bottom:330.942691px;}
.y23b{bottom:333.812159px;}
.y34{bottom:337.184235px;}
.y22a{bottom:338.762322px;}
.y92{bottom:341.048102px;}
.y2dc{bottom:344.763428px;}
.y23a{bottom:346.424039px;}
.y10{bottom:348.133500px;}
.y310{bottom:350.284977px;}
.y229{bottom:352.141425px;}
.y1ad{bottom:353.292407px;}
.y1cd{bottom:353.292426px;}
.y26c{bottom:353.292453px;}
.y60{bottom:353.292471px;}
.y289{bottom:353.292590px;}
.ydd{bottom:353.292599px;}
.yaf{bottom:353.292618px;}
.y2b7{bottom:353.292636px;}
.y15a{bottom:353.292645px;}
.y188{bottom:353.292691px;}
.y1de{bottom:360.846920px;}
.y91{bottom:361.043102px;}
.y2db{bottom:363.258428px;}
.y33{bottom:364.184235px;}
.y228{bottom:364.753305px;}
.y30f{bottom:368.280477px;}
.y109{bottom:368.641479px;}
.y107{bottom:369.062713px;}
.y103{bottom:369.203246px;}
.y1ac{bottom:375.642407px;}
.y1cc{bottom:375.642426px;}
.y26b{bottom:375.642453px;}
.y5f{bottom:375.642471px;}
.y288{bottom:375.642590px;}
.ydc{bottom:375.642599px;}
.yae{bottom:375.642618px;}
.y2b6{bottom:375.642636px;}
.y159{bottom:375.642645px;}
.y187{bottom:375.642691px;}
.y227{bottom:377.365185px;}
.y105{bottom:377.819721px;}
.y106{bottom:379.319869px;}
.y90{bottom:381.038102px;}
.y30e{bottom:386.275977px;}
.y10a{bottom:386.766906px;}
.yf{bottom:386.785499px;}
.y108{bottom:386.907622px;}
.y102{bottom:387.469344px;}
.y2da{bottom:388.138928px;}
.y32{bottom:391.184235px;}
.y1ab{bottom:397.992407px;}
.y1cb{bottom:397.992426px;}
.y26a{bottom:397.992453px;}
.y5e{bottom:397.992471px;}
.y287{bottom:397.992590px;}
.ydb{bottom:397.992599px;}
.yad{bottom:397.992618px;}
.y2b5{bottom:397.992636px;}
.y158{bottom:397.992645px;}
.y186{bottom:397.992691px;}
.y8f{bottom:401.033102px;}
.y214{bottom:403.543217px;}
.y30d{bottom:404.271477px;}
.y1e7{bottom:406.314663px;}
.y2d9{bottom:406.633928px;}
.ye{bottom:408.044999px;}
.y1e6{bottom:412.667828px;}
.y1dd{bottom:414.013928px;}
.y213{bottom:415.009518px;}
.y31{bottom:418.184235px;}
.y1aa{bottom:420.342407px;}
.y1ca{bottom:420.342426px;}
.y269{bottom:420.342453px;}
.y5d{bottom:420.342471px;}
.y286{bottom:420.342590px;}
.yda{bottom:420.342599px;}
.yac{bottom:420.342618px;}
.y2b4{bottom:420.342636px;}
.y157{bottom:420.342645px;}
.y185{bottom:420.342691px;}
.y8e{bottom:421.028102px;}
.y2d8{bottom:425.128928px;}
.y30c{bottom:428.652477px;}
.y212{bottom:435.074216px;}
.y8d{bottom:441.023102px;}
.y1a9{bottom:442.692407px;}
.y1c9{bottom:442.692426px;}
.y268{bottom:442.692453px;}
.y5c{bottom:442.692471px;}
.y285{bottom:442.692581px;}
.yd9{bottom:442.692599px;}
.yab{bottom:442.692618px;}
.y2b3{bottom:442.692636px;}
.y156{bottom:442.692645px;}
.y184{bottom:442.692691px;}
.y2d7{bottom:443.623928px;}
.y30{bottom:445.184235px;}
.y30b{bottom:446.647977px;}
.y211{bottom:446.729695px;}
.y210{bottom:458.195996px;}
.y8c{bottom:461.018102px;}
.y30a{bottom:464.643477px;}
.y1a8{bottom:465.042407px;}
.y1c8{bottom:465.042426px;}
.y267{bottom:465.042453px;}
.y5b{bottom:465.042471px;}
.yd8{bottom:465.042599px;}
.yaa{bottom:465.042618px;}
.y2b2{bottom:465.042636px;}
.y155{bottom:465.042645px;}
.y183{bottom:465.042691px;}
.y2d6{bottom:468.504428px;}
.y2f{bottom:472.184235px;}
.y8b{bottom:481.013102px;}
.yd{bottom:484.864502px;}
.y2d5{bottom:486.999428px;}
.y1a7{bottom:487.392407px;}
.y1c7{bottom:487.392426px;}
.y266{bottom:487.392453px;}
.y5a{bottom:487.392471px;}
.y284{bottom:487.392480px;}
.yd7{bottom:487.392599px;}
.ya9{bottom:487.392618px;}
.y2b1{bottom:487.392636px;}
.y154{bottom:487.392645px;}
.y182{bottom:487.392691px;}
.y309{bottom:489.024477px;}
.y2e{bottom:499.184235px;}
.y8a{bottom:501.008102px;}
.yc{bottom:502.864502px;}
.y205{bottom:505.130859px;}
.y2d4{bottom:505.494428px;}
.y308{bottom:507.019977px;}
.y1a6{bottom:509.742407px;}
.y1c6{bottom:509.742426px;}
.y265{bottom:509.742453px;}
.y59{bottom:509.742471px;}
.y283{bottom:509.742480px;}
.yd6{bottom:509.742599px;}
.ya8{bottom:509.742618px;}
.y2b0{bottom:509.742636px;}
.y153{bottom:509.742645px;}
.y181{bottom:509.742691px;}
.yb{bottom:520.864502px;}
.y89{bottom:521.011047px;}
.y2d3{bottom:523.989428px;}
.y307{bottom:525.015477px;}
.y2d{bottom:526.184235px;}
.y204{bottom:527.488358px;}
.y1a5{bottom:532.092407px;}
.y1c5{bottom:532.092426px;}
.y264{bottom:532.092453px;}
.y58{bottom:532.092471px;}
.y282{bottom:532.092480px;}
.yd5{bottom:532.092599px;}
.ya7{bottom:532.092618px;}
.y2af{bottom:532.092636px;}
.y152{bottom:532.092645px;}
.y180{bottom:532.092691px;}
.ya{bottom:538.864499px;}
.y2d2{bottom:548.869928px;}
.y306{bottom:549.396477px;}
.y88{bottom:549.511047px;}
.y2c{bottom:553.184235px;}
.y1a4{bottom:554.442407px;}
.y1c4{bottom:554.442426px;}
.y263{bottom:554.442453px;}
.y57{bottom:554.442471px;}
.y281{bottom:554.442480px;}
.yd4{bottom:554.442599px;}
.ya6{bottom:554.442618px;}
.y2ae{bottom:554.442636px;}
.y151{bottom:554.442645px;}
.y17f{bottom:554.442691px;}
.y9{bottom:556.864499px;}
.y2d1{bottom:567.364928px;}
.y305{bottom:567.391977px;}
.y87{bottom:569.519537px;}
.y1a3{bottom:576.792407px;}
.y1c3{bottom:576.792426px;}
.y262{bottom:576.792453px;}
.y56{bottom:576.792471px;}
.y280{bottom:576.792480px;}
.yd3{bottom:576.792599px;}
.ya5{bottom:576.792618px;}
.y2ad{bottom:576.792636px;}
.y150{bottom:576.792645px;}
.y17e{bottom:576.792691px;}
.y2b{bottom:580.184235px;}
.y304{bottom:585.387477px;}
.y2d0{bottom:585.859928px;}
.y86{bottom:589.514537px;}
.y1a2{bottom:599.142407px;}
.y1c2{bottom:599.142426px;}
.y261{bottom:599.142453px;}
.y55{bottom:599.142471px;}
.y27f{bottom:599.142480px;}
.yd2{bottom:599.142599px;}
.ya4{bottom:599.142618px;}
.y2ac{bottom:599.142636px;}
.y14f{bottom:599.142645px;}
.y17d{bottom:599.142691px;}
.y303{bottom:603.382977px;}
.y2cf{bottom:604.354928px;}
.y2a{bottom:607.184235px;}
.y85{bottom:609.509537px;}
.y1a1{bottom:621.492407px;}
.y1c1{bottom:621.492426px;}
.y260{bottom:621.492453px;}
.y1fa{bottom:621.492462px;}
.y27e{bottom:621.492480px;}
.y54{bottom:621.492599px;}
.ya3{bottom:621.492618px;}
.y2ab{bottom:621.492636px;}
.y14e{bottom:621.492645px;}
.yd1{bottom:621.492664px;}
.y17c{bottom:621.492691px;}
.y142{bottom:623.408386px;}
.y1f4{bottom:626.175888px;}
.y302{bottom:627.763977px;}
.y2ce{bottom:629.235428px;}
.y84{bottom:629.509048px;}
.y29{bottom:634.184235px;}
.y1a0{bottom:643.842407px;}
.y1c0{bottom:643.842426px;}
.y1f9{bottom:643.842453px;}
.y27d{bottom:643.842480px;}
.y53{bottom:643.842599px;}
.ya2{bottom:643.842618px;}
.y2aa{bottom:643.842636px;}
.y14d{bottom:643.842645px;}
.yd0{bottom:643.842664px;}
.y17b{bottom:643.842691px;}
.y8{bottom:645.510000px;}
.y301{bottom:645.759477px;}
.y2cd{bottom:647.730428px;}
.y83{bottom:649.531027px;}
.y300{bottom:663.754977px;}
.y19f{bottom:666.192407px;}
.y1bf{bottom:666.192426px;}
.y1f8{bottom:666.192444px;}
.y25f{bottom:666.192453px;}
.y27c{bottom:666.192480px;}
.y52{bottom:666.192599px;}
.ya1{bottom:666.192618px;}
.y2a9{bottom:666.192636px;}
.y14c{bottom:666.192645px;}
.ycf{bottom:666.192664px;}
.y17a{bottom:666.192691px;}
.y2cc{bottom:666.225428px;}
.y7{bottom:666.771000px;}
.y82{bottom:669.526027px;}
.y243{bottom:683.708542px;}
.y2cb{bottom:684.720428px;}
.y2ff{bottom:688.135977px;}
.y19e{bottom:688.542407px;}
.y1be{bottom:688.542426px;}
.y1da{bottom:688.542435px;}
.y25e{bottom:688.542453px;}
.y27b{bottom:688.542480px;}
.y51{bottom:688.542599px;}
.ya0{bottom:688.542618px;}
.y2a8{bottom:688.542636px;}
.y14b{bottom:688.542645px;}
.yce{bottom:688.542664px;}
.y179{bottom:688.542691px;}
.y81{bottom:689.521027px;}
.y2ca{bottom:703.221771px;}
.y2fe{bottom:706.131477px;}
.y80{bottom:709.516027px;}
.y19d{bottom:710.892407px;}
.y1bd{bottom:710.892426px;}
.y25d{bottom:710.892453px;}
.y9f{bottom:710.892471px;}
.y27a{bottom:710.892480px;}
.y50{bottom:710.892599px;}
.y2a7{bottom:710.892636px;}
.y14a{bottom:710.892645px;}
.ycd{bottom:710.892664px;}
.y178{bottom:710.892691px;}
.y2fd{bottom:724.126977px;}
.y6{bottom:726.298500px;}
.y7f{bottom:729.511027px;}
.yfd{bottom:733.236603px;}
.y19c{bottom:733.242407px;}
.y1bc{bottom:733.242426px;}
.y25c{bottom:733.242453px;}
.y1d9{bottom:733.242462px;}
.y20c{bottom:733.242480px;}
.y4f{bottom:733.242599px;}
.y2a6{bottom:733.242636px;}
.y149{bottom:733.242645px;}
.ycc{bottom:733.242664px;}
.y177{bottom:733.242691px;}
.y28{bottom:733.431773px;}
.y2fc{bottom:742.122477px;}
.y7e{bottom:749.506027px;}
.y3{bottom:752.599495px;}
.y19b{bottom:755.592407px;}
.y1bb{bottom:755.592426px;}
.y100{bottom:755.592453px;}
.y9e{bottom:755.592480px;}
.y4e{bottom:755.592590px;}
.y2a5{bottom:755.592636px;}
.y148{bottom:755.592645px;}
.ycb{bottom:755.592664px;}
.y176{bottom:755.592691px;}
.y2fb{bottom:766.503477px;}
.y7d{bottom:769.572045px;}
.y19a{bottom:777.942407px;}
.y4d{bottom:777.942426px;}
.yff{bottom:777.942444px;}
.y25b{bottom:777.942453px;}
.y9d{bottom:777.942480px;}
.y2a4{bottom:777.942636px;}
.y147{bottom:777.942645px;}
.yca{bottom:777.942664px;}
.y175{bottom:777.942691px;}
.y2fa{bottom:784.498977px;}
.y7c{bottom:798.072045px;}
.y199{bottom:800.292407px;}
.y4c{bottom:800.292426px;}
.y25a{bottom:800.292453px;}
.y9c{bottom:800.292480px;}
.yfc{bottom:800.292572px;}
.y2a3{bottom:800.292636px;}
.y146{bottom:800.292645px;}
.yc9{bottom:800.292664px;}
.y174{bottom:800.292691px;}
.y2f9{bottom:802.494477px;}
.y27{bottom:805.440773px;}
.y7b{bottom:818.067045px;}
.y2f8{bottom:820.489977px;}
.y198{bottom:822.642407px;}
.y4b{bottom:822.642426px;}
.y259{bottom:822.642453px;}
.yfb{bottom:822.642609px;}
.y2a2{bottom:822.642636px;}
.y145{bottom:822.642645px;}
.yc8{bottom:822.642664px;}
.y173{bottom:822.642691px;}
.y7a{bottom:838.062045px;}
.y2f7{bottom:844.870977px;}
.y197{bottom:844.992407px;}
.y1ba{bottom:844.992426px;}
.y258{bottom:844.992453px;}
.y1d8{bottom:844.992462px;}
.y2c5{bottom:844.992590px;}
.y2a1{bottom:844.992636px;}
.y4a{bottom:844.992645px;}
.yc7{bottom:844.992664px;}
.y172{bottom:844.992691px;}
.y79{bottom:858.057045px;}
.y2f6{bottom:862.866477px;}
.y196{bottom:867.342407px;}
.y1b9{bottom:867.342426px;}
.y257{bottom:867.342453px;}
.y144{bottom:867.342480px;}
.y49{bottom:867.342590px;}
.y2a0{bottom:867.342636px;}
.yc6{bottom:867.342664px;}
.y171{bottom:867.342691px;}
.yf3{bottom:873.291486px;}
.y26{bottom:877.449773px;}
.y78{bottom:878.052045px;}
.y2{bottom:879.369000px;}
.y2f5{bottom:880.861977px;}
.y195{bottom:889.692407px;}
.y48{bottom:889.692426px;}
.yfa{bottom:889.692444px;}
.y256{bottom:889.692453px;}
.y143{bottom:889.692480px;}
.yfe{bottom:889.692627px;}
.y29f{bottom:889.692636px;}
.yc5{bottom:889.692664px;}
.y170{bottom:889.692691px;}
.yf2{bottom:895.641486px;}
.y77{bottom:898.047045px;}
.y2f4{bottom:898.857477px;}
.y194{bottom:912.042407px;}
.y47{bottom:912.042426px;}
.y255{bottom:912.042453px;}
.yf9{bottom:912.042480px;}
.y29e{bottom:912.042636px;}
.y2c4{bottom:912.042645px;}
.yc4{bottom:912.042664px;}
.y16f{bottom:912.042691px;}
.y2f3{bottom:916.852977px;}
.yf1{bottom:917.991486px;}
.y76{bottom:918.042045px;}
.y1b8{bottom:934.392398px;}
.y193{bottom:934.392407px;}
.y46{bottom:934.392426px;}
.y254{bottom:934.392453px;}
.y29d{bottom:934.392636px;}
.y2c3{bottom:934.392645px;}
.yc3{bottom:934.392664px;}
.y16e{bottom:934.392691px;}
.y2f2{bottom:934.848477px;}
.y75{bottom:938.037045px;}
.yf0{bottom:940.341412px;}
.y25{bottom:949.458773px;}
.y1b7{bottom:956.742398px;}
.y45{bottom:956.742407px;}
.y20b{bottom:956.742426px;}
.y253{bottom:956.742453px;}
.yf8{bottom:956.742462px;}
.y29c{bottom:956.742636px;}
.y2c2{bottom:956.742645px;}
.yc2{bottom:956.742664px;}
.y16d{bottom:956.742691px;}
.y74{bottom:958.032045px;}
.y2f1{bottom:959.229477px;}
.yef{bottom:962.691412px;}
.y1{bottom:966.726000px;}
.y2f0{bottom:977.224977px;}
.y73{bottom:978.027045px;}
.y1b6{bottom:979.092398px;}
.y44{bottom:979.092407px;}
.y20a{bottom:979.092426px;}
.y252{bottom:979.092453px;}
.y29b{bottom:979.092636px;}
.yc1{bottom:979.092664px;}
.y16c{bottom:979.092691px;}
.yee{bottom:985.041412px;}
.y2ef{bottom:995.220477px;}
.y72{bottom:998.022045px;}
.y1b5{bottom:1001.442398px;}
.y192{bottom:1001.442407px;}
.y209{bottom:1001.442426px;}
.y1db{bottom:1001.442444px;}
.y251{bottom:1001.442453px;}
.y43{bottom:1001.442572px;}
.yf7{bottom:1001.442627px;}
.y29a{bottom:1001.442636px;}
.yc0{bottom:1001.442664px;}
.y16b{bottom:1001.442691px;}
.yed{bottom:1007.391431px;}
.y1f6{bottom:1007.391449px;}
.y2ee{bottom:1013.215977px;}
.y71{bottom:1018.017045px;}
.y24{bottom:1021.467773px;}
.y1b4{bottom:1023.792398px;}
.y191{bottom:1023.792407px;}
.y208{bottom:1023.792426px;}
.y250{bottom:1023.792453px;}
.yf6{bottom:1023.792480px;}
.y42{bottom:1023.792572px;}
.y299{bottom:1023.792636px;}
.ybf{bottom:1023.792664px;}
.y16a{bottom:1023.792691px;}
.yec{bottom:1029.741431px;}
.y1f5{bottom:1029.741486px;}
.y2ed{bottom:1031.211477px;}
.y70{bottom:1038.012045px;}
.y1b3{bottom:1046.142398px;}
.y190{bottom:1046.142407px;}
.y41{bottom:1046.142426px;}
.y24f{bottom:1046.142453px;}
.y298{bottom:1046.142636px;}
.ybe{bottom:1046.142664px;}
.y169{bottom:1046.142691px;}
.yeb{bottom:1052.091431px;}
.y2ec{bottom:1055.592477px;}
.y6f{bottom:1058.007045px;}
.y1b2{bottom:1068.492398px;}
.y40{bottom:1068.492407px;}
.y207{bottom:1068.492426px;}
.y24e{bottom:1068.492453px;}
.yf5{bottom:1068.492462px;}
.y297{bottom:1068.492636px;}
.ybd{bottom:1068.492664px;}
.y168{bottom:1068.492691px;}
.y2eb{bottom:1073.587977px;}
.yea{bottom:1074.441467px;}
.y6e{bottom:1078.002045px;}
.y1b1{bottom:1090.842398px;}
.y3f{bottom:1090.842407px;}
.y206{bottom:1090.842426px;}
.y24d{bottom:1090.842453px;}
.y296{bottom:1090.842636px;}
.ybc{bottom:1090.842664px;}
.y167{bottom:1090.842691px;}
.y2ea{bottom:1091.583477px;}
.y1f7{bottom:1147.431427px;}
.y18f{bottom:1147.431431px;}
.yf4{bottom:1147.431472px;}
.y39{bottom:1147.436279px;}
.y279{bottom:1147.437424px;}
.y6d{bottom:1147.437442px;}
.h32{height:15.392040px;}
.h48{height:23.494073px;}
.h26{height:24.167376px;}
.h29{height:25.853503px;}
.h33{height:26.310975px;}
.h47{height:27.493500px;}
.h28{height:28.101580px;}
.h43{height:30.604829px;}
.h42{height:30.646868px;}
.h27{height:30.911791px;}
.h25{height:30.934199px;}
.h7{height:32.130000px;}
.h3c{height:32.381328px;}
.h22{height:34.006974px;}
.h46{height:35.241326px;}
.h35{height:37.017023px;}
.h3a{height:37.079379px;}
.h3f{height:37.120544px;}
.h3e{height:37.648264px;}
.h37{height:39.085621px;}
.h38{height:39.129133px;}
.h31{height:39.466679px;}
.h2a{height:40.117967px;}
.h18{height:40.139989px;}
.h19{height:40.140035px;}
.h17{height:40.140081px;}
.h41{height:40.676887px;}
.h3b{height:41.276745px;}
.h49{height:42.000000px;}
.h15{height:44.549696px;}
.he{height:44.676000px;}
.h16{height:44.801987px;}
.h14{height:44.815536px;}
.h21{height:45.069258px;}
.h6{height:45.900000px;}
.h3d{height:47.270748px;}
.h3{height:48.195000px;}
.h2f{height:48.603000px;}
.h2e{height:50.439000px;}
.h45{height:52.560000px;}
.h34{height:52.621950px;}
.h4a{height:53.406000px;}
.h4b{height:54.108000px;}
.h2{height:55.080000px;}
.ha{height:56.100000px;}
.h2c{height:58.320000px;}
.hf{height:59.340000px;}
.h2d{height:59.340110px;}
.h11{height:59.340220px;}
.h1d{height:59.340366px;}
.h1f{height:59.340549px;}
.h1e{height:59.340732px;}
.h12{height:59.340806px;}
.h10{height:59.340952px;}
.h13{height:60.120000px;}
.h44{height:61.440000px;}
.h2b{height:64.152000px;}
.hd{height:67.386000px;}
.hc{height:68.544000px;}
.h1a{height:69.984000px;}
.h1b{height:72.900000px;}
.h24{height:76.545271px;}
.h5{height:78.030000px;}
.h1c{height:89.010000px;}
.h4{height:119.055004px;}
.hb{height:250.740000px;}
.h39{height:351.877650px;}
.h23{height:434.296509px;}
.h36{height:437.065521px;}
.h20{height:447.796650px;}
.h30{height:450.564300px;}
.h40{height:508.098300px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wa{width:361.417511px;}
.w9{width:537.237000px;}
.w8{width:580.513350px;}
.w2{width:637.794021px;}
.w7{width:701.575516px;}
.w5{width:701.693985px;}
.w6{width:728.574750px;}
.w4{width:728.694300px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x52{left:1.454550px;}
.x61{left:19.329450px;}
.x20{left:24.970197px;}
.x16{left:33.903603px;}
.x47{left:36.250798px;}
.x6e{left:46.554296px;}
.x83{left:56.473986px;}
.x84{left:58.602261px;}
.x9{left:68.031452px;}
.x55{left:74.409450px;}
.x12{left:75.731700px;}
.x62{left:77.756103px;}
.xa{left:80.787300px;}
.x54{left:82.913400px;}
.x15{left:89.231998px;}
.xc{left:93.537449px;}
.x6d{left:96.850347px;}
.xf{left:99.520798px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x10{left:112.276794px;}
.x14{left:115.310704px;}
.x6b{left:121.808515px;}
.x53{left:122.811000px;}
.x64{left:130.558502px;}
.x6a{left:132.014699px;}
.x82{left:134.477132px;}
.x68{left:135.566998px;}
.x89{left:137.802764px;}
.x13{left:139.190244px;}
.x46{left:140.837094px;}
.x85{left:142.806892px;}
.x6{left:144.566849px;}
.x69{left:149.821650px;}
.x59{left:159.684760px;}
.x58{left:166.745993px;}
.x8a{left:171.694361px;}
.x8b{left:177.634613px;}
.x72{left:184.216500px;}
.x4{left:203.484001px;}
.x67{left:207.946655px;}
.x22{left:208.954526px;}
.x17{left:209.998799px;}
.x21{left:214.020894px;}
.x6c{left:215.856153px;}
.x34{left:218.239644px;}
.x49{left:222.829183px;}
.x48{left:228.601949px;}
.x88{left:229.923963px;}
.x75{left:231.474448px;}
.x74{left:232.566692px;}
.x73{left:236.320503px;}
.x56{left:240.235944px;}
.x77{left:243.581569px;}
.x78{left:245.076091px;}
.x5f{left:248.294989px;}
.x81{left:253.824155px;}
.x76{left:260.437507px;}
.x5a{left:275.922011px;}
.x8c{left:277.494781px;}
.x5b{left:279.371947px;}
.x36{left:295.396787px;}
.x37{left:297.084950px;}
.x23{left:303.054761px;}
.x25{left:305.976415px;}
.x24{left:309.505086px;}
.x19{left:312.589040px;}
.x26{left:314.045369px;}
.x4b{left:321.617055px;}
.x87{left:323.416719px;}
.x4a{left:327.389821px;}
.x18{left:337.253255px;}
.x86{left:343.677897px;}
.x35{left:353.933248px;}
.x79{left:356.938484px;}
.x7f{left:360.170982px;}
.x80{left:363.727566px;}
.x7a{left:371.060771px;}
.x5d{left:386.247016px;}
.x71{left:391.750402px;}
.x65{left:392.953194px;}
.x3c{left:394.848119px;}
.x3d{left:396.536260px;}
.x70{left:397.729665px;}
.x28{left:403.378682px;}
.x29{left:405.879491px;}
.x6f{left:407.582983px;}
.x27{left:408.857793px;}
.x1b{left:410.822698px;}
.x5e{left:418.696509px;}
.x4d{left:420.257985px;}
.x4c{left:426.030750px;}
.x7b{left:427.992011px;}
.x7d{left:434.849786px;}
.x1a{left:435.890569px;}
.x7c{left:440.695448px;}
.x5c{left:443.466010px;}
.x7e{left:446.453986px;}
.x3a{left:447.637151px;}
.x60{left:449.592398px;}
.x11{left:450.708618px;}
.x3b{left:452.866094px;}
.x3{left:454.959000px;}
.x63{left:459.882010px;}
.xd{left:463.467436px;}
.xe{left:476.217436px;}
.x3f{left:493.787282px;}
.x40{left:495.475469px;}
.x1d{left:498.218572px;}
.x2d{left:499.955419px;}
.x2a{left:502.642400px;}
.x2c{left:505.912068px;}
.x2e{left:507.911076px;}
.x2b{left:513.964864px;}
.x4f{left:518.856938px;}
.x4e{left:524.629704px;}
.x8{left:527.910736px;}
.x45{left:532.665883px;}
.x1c{left:534.496205px;}
.x3e{left:551.805303px;}
.xb{left:562.910385px;}
.x42{left:592.562062px;}
.x43{left:594.250249px;}
.x1f{left:599.284642px;}
.x38{left:600.832295px;}
.x30{left:603.484258px;}
.x32{left:605.005818px;}
.x31{left:606.511174px;}
.x33{left:609.287145px;}
.x51{left:611.704137px;}
.x2f{left:613.430867px;}
.x50{left:625.737203px;}
.x1e{left:633.235372px;}
.x39{left:642.461598px;}
.x41{left:653.602376px;}
.x66{left:662.950507px;}
.x44{left:691.688656px;}
.x7{left:751.090668px;}
.x57{left:802.922424px;}
.x5{left:810.242065px;}
@media print{
.v9{vertical-align:-56.713216pt;}
.v2{vertical-align:-17.759928pt;}
.v4{vertical-align:-8.992594pt;}
.v5{vertical-align:-4.496338pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.498779pt;}
.v7{vertical-align:3.497070pt;}
.v6{vertical-align:5.995036pt;}
.v1{vertical-align:17.759766pt;}
.v3{vertical-align:27.978678pt;}
.ls23{letter-spacing:-4.906667pt;}
.ls3f{letter-spacing:-4.354944pt;}
.ls5e{letter-spacing:-4.332813pt;}
.ls41{letter-spacing:-4.113003pt;}
.ls1c{letter-spacing:-3.068454pt;}
.ls53{letter-spacing:-3.043874pt;}
.ls1e{letter-spacing:-2.772691pt;}
.ls68{letter-spacing:-2.765271pt;}
.ls67{letter-spacing:-2.727912pt;}
.ls54{letter-spacing:-2.692387pt;}
.ls6b{letter-spacing:-2.391586pt;}
.ls5f{letter-spacing:-2.378027pt;}
.ls1b{letter-spacing:-2.280608pt;}
.ls6e{letter-spacing:-2.055269pt;}
.ls6a{letter-spacing:-2.017901pt;}
.ls1d{letter-spacing:-1.758533pt;}
.ls73{letter-spacing:-1.607556pt;}
.ls20{letter-spacing:-1.534227pt;}
.ls76{letter-spacing:-1.488000pt;}
.ls6c{letter-spacing:-1.382636pt;}
.ls1f{letter-spacing:-1.368365pt;}
.ls4e{letter-spacing:-1.173333pt;}
.ls46{letter-spacing:-1.162611pt;}
.ls64{letter-spacing:-1.093892pt;}
.ls47{letter-spacing:-1.017285pt;}
.ls3d{letter-spacing:-1.016154pt;}
.lse{letter-spacing:-0.906667pt;}
.ls39{letter-spacing:-0.870989pt;}
.ls5c{letter-spacing:-0.857040pt;}
.ls4f{letter-spacing:-0.853333pt;}
.ls60{letter-spacing:-0.808529pt;}
.ls6f{letter-spacing:-0.800000pt;}
.ls58{letter-spacing:-0.761914pt;}
.ls71{letter-spacing:-0.746667pt;}
.ls5a{letter-spacing:-0.739088pt;}
.ls44{letter-spacing:-0.726632pt;}
.ls51{letter-spacing:-0.704000pt;}
.ls55{letter-spacing:-0.686296pt;}
.ls3a{letter-spacing:-0.677436pt;}
.ls6d{letter-spacing:-0.672634pt;}
.ls66{letter-spacing:-0.665847pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.629047pt;}
.ls74{letter-spacing:-0.624000pt;}
.ls5b{letter-spacing:-0.580712pt;}
.ls33{letter-spacing:-0.580659pt;}
.ls61{letter-spacing:-0.570726pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls75{letter-spacing:-0.480000pt;}
.ls45{letter-spacing:-0.435979pt;}
.ls40{letter-spacing:-0.435494pt;}
.ls72{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls77{letter-spacing:-0.336000pt;}
.ls35{letter-spacing:-0.290330pt;}
.ls22{letter-spacing:-0.266667pt;}
.ls42{letter-spacing:-0.241941pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls63{letter-spacing:-0.190242pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls2e{letter-spacing:-0.145165pt;}
.ls8{letter-spacing:-0.106667pt;}
.ls50{letter-spacing:-0.096000pt;}
.ls57{letter-spacing:-0.084657pt;}
.ls69{letter-spacing:-0.074737pt;}
.ls48{letter-spacing:-0.058667pt;}
.lsa{letter-spacing:-0.053333pt;}
.ls56{letter-spacing:-0.052792pt;}
.ls31{letter-spacing:-0.048388pt;}
.ls5d{letter-spacing:-0.047613pt;}
.ls52{letter-spacing:-0.047561pt;}
.ls59{letter-spacing:-0.042329pt;}
.ls2b{letter-spacing:-0.037743pt;}
.ls28{letter-spacing:-0.018871pt;}
.ls0{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000098pt;}
.ls2a{letter-spacing:0.018871pt;}
.ls25{letter-spacing:0.037743pt;}
.ls4c{letter-spacing:0.047561pt;}
.ls26{letter-spacing:0.048388pt;}
.ls49{letter-spacing:0.052792pt;}
.ls2{letter-spacing:0.053333pt;}
.ls11{letter-spacing:0.058667pt;}
.ls29{letter-spacing:0.075486pt;}
.ls1{letter-spacing:0.106667pt;}
.ls27{letter-spacing:0.145165pt;}
.ls4{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.320000pt;}
.ls70{letter-spacing:0.347578pt;}
.ls13{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.533199pt;}
.ls12{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.533360pt;}
.ls19{letter-spacing:0.533363pt;}
.ls15{letter-spacing:0.586667pt;}
.ls37{letter-spacing:0.629047pt;}
.ls4d{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.693333pt;}
.ls18{letter-spacing:0.800000pt;}
.ls21{letter-spacing:0.853333pt;}
.ls65{letter-spacing:10.558438pt;}
.ls3c{letter-spacing:10.984136pt;}
.ls3b{letter-spacing:11.080913pt;}
.ls34{letter-spacing:11.322854pt;}
.ls36{letter-spacing:11.371242pt;}
.ls3e{letter-spacing:11.419631pt;}
.ls62{letter-spacing:11.509649pt;}
.ls2f{letter-spacing:204.488800pt;}
.ls30{letter-spacing:204.537196pt;}
.ls4a{letter-spacing:284.085500pt;}
.ls4b{letter-spacing:369.261460pt;}
.ls38{letter-spacing:554.384341pt;}
.ls1a{letter-spacing:785.089644pt;}
.ls32{letter-spacing:1144.430810pt;}
.ls43{letter-spacing:1212.174426pt;}
.ls2d{letter-spacing:1267.288660pt;}
.wsde{word-spacing:-1267.288660pt;}
.wse2{word-spacing:-1212.174426pt;}
.wsdf{word-spacing:-1144.430810pt;}
.wse0{word-spacing:-554.384341pt;}
.wsb4{word-spacing:-204.585584pt;}
.wsb2{word-spacing:-204.537188pt;}
.ws1{word-spacing:-50.400000pt;}
.wsc6{word-spacing:-22.355378pt;}
.wsbb{word-spacing:-22.306990pt;}
.wsb9{word-spacing:-22.258602pt;}
.wsc2{word-spacing:-22.016661pt;}
.wsc3{word-spacing:-21.919884pt;}
.ws2c{word-spacing:-13.800000pt;}
.ws110{word-spacing:-13.788355pt;}
.ws55{word-spacing:-12.746667pt;}
.ws8{word-spacing:-12.213333pt;}
.ws5{word-spacing:-12.106667pt;}
.ws76{word-spacing:-12.053333pt;}
.ws54{word-spacing:-12.000000pt;}
.wse3{word-spacing:-11.946667pt;}
.wse4{word-spacing:-11.840000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws131{word-spacing:-11.573333pt;}
.wsbc{word-spacing:-11.564795pt;}
.wsfe{word-spacing:-11.557209pt;}
.ws57{word-spacing:-11.527437pt;}
.ws103{word-spacing:-11.440000pt;}
.wse5{word-spacing:-11.360000pt;}
.wsc4{word-spacing:-11.080913pt;}
.ws10f{word-spacing:-11.060443pt;}
.ws77{word-spacing:-11.040000pt;}
.wsbd{word-spacing:-10.984136pt;}
.wsb8{word-spacing:-10.935748pt;}
.ws13c{word-spacing:-10.896000pt;}
.wsb6{word-spacing:-10.887360pt;}
.ws101{word-spacing:-10.605999pt;}
.wscd{word-spacing:-10.511943pt;}
.wsc8{word-spacing:-10.500253pt;}
.ws112{word-spacing:-10.388452pt;}
.ws13b{word-spacing:-10.368000pt;}
.wsb7{word-spacing:-10.355089pt;}
.wsbf{word-spacing:-10.258312pt;}
.wscc{word-spacing:-10.221290pt;}
.wsbe{word-spacing:-10.064759pt;}
.ws60{word-spacing:-9.993209pt;}
.ws2b{word-spacing:-9.936000pt;}
.wscf{word-spacing:-9.930637pt;}
.wsc5{word-spacing:-9.919594pt;}
.wse6{word-spacing:-9.840000pt;}
.wsce{word-spacing:-9.785311pt;}
.ws116{word-spacing:-9.715819pt;}
.ws56{word-spacing:-9.246829pt;}
.ws115{word-spacing:-9.005817pt;}
.ws59{word-spacing:-8.888586pt;}
.ws3{word-spacing:-8.885333pt;}
.ws113{word-spacing:-8.370551pt;}
.ws117{word-spacing:-8.333183pt;}
.ws114{word-spacing:-7.996866pt;}
.ws111{word-spacing:-7.623181pt;}
.ws75{word-spacing:-7.306667pt;}
.ws58{word-spacing:-7.130053pt;}
.ws9{word-spacing:-7.120373pt;}
.ws5d{word-spacing:-6.944218pt;}
.ws7{word-spacing:-6.809440pt;}
.wsc7{word-spacing:-6.580804pt;}
.wsac{word-spacing:-4.982067pt;}
.wsab{word-spacing:-4.906581pt;}
.wsaa{word-spacing:-4.887710pt;}
.wsad{word-spacing:-4.868838pt;}
.ws5a{word-spacing:-4.171526pt;}
.ws6f{word-spacing:-3.200000pt;}
.ws94{word-spacing:-3.146667pt;}
.wse{word-spacing:-3.040000pt;}
.wsb{word-spacing:-2.986667pt;}
.ws65{word-spacing:-2.933333pt;}
.ws4c{word-spacing:-2.880000pt;}
.ws3a{word-spacing:-2.826667pt;}
.ws4d{word-spacing:-2.773333pt;}
.ws11b{word-spacing:-2.720000pt;}
.ws12d{word-spacing:-2.666667pt;}
.ws7e{word-spacing:-2.613333pt;}
.ws72{word-spacing:-2.560000pt;}
.ws3f{word-spacing:-2.506667pt;}
.wsf{word-spacing:-2.400000pt;}
.ws16{word-spacing:-2.346667pt;}
.ws3c{word-spacing:-2.293333pt;}
.ws67{word-spacing:-2.240000pt;}
.wsd1{word-spacing:-2.133333pt;}
.ws89{word-spacing:-2.080000pt;}
.ws121{word-spacing:-1.973333pt;}
.ws30{word-spacing:-1.920000pt;}
.ws3d{word-spacing:-1.866667pt;}
.ws96{word-spacing:-1.813333pt;}
.ws4{word-spacing:-1.768000pt;}
.ws23{word-spacing:-1.760000pt;}
.ws13{word-spacing:-1.706667pt;}
.ws3e{word-spacing:-1.653333pt;}
.ws8c{word-spacing:-1.600000pt;}
.ws79{word-spacing:-1.546667pt;}
.ws132{word-spacing:-1.493333pt;}
.ws21{word-spacing:-1.440000pt;}
.wsa9{word-spacing:-1.333333pt;}
.ws22{word-spacing:-1.280000pt;}
.ws37{word-spacing:-1.226667pt;}
.ws8d{word-spacing:-1.173333pt;}
.ws45{word-spacing:-1.066667pt;}
.ws136{word-spacing:-1.013333pt;}
.ws1e{word-spacing:-0.960000pt;}
.ws120{word-spacing:-0.906667pt;}
.ws64{word-spacing:-0.853333pt;}
.wsda{word-spacing:-0.800000pt;}
.ws7a{word-spacing:-0.746667pt;}
.ws44{word-spacing:-0.693333pt;}
.ws7c{word-spacing:-0.640000pt;}
.ws35{word-spacing:-0.586667pt;}
.ws71{word-spacing:-0.533333pt;}
.ws36{word-spacing:-0.480000pt;}
.ws32{word-spacing:-0.426667pt;}
.ws10b{word-spacing:-0.384000pt;}
.ws138{word-spacing:-0.376542pt;}
.ws106{word-spacing:-0.373333pt;}
.ws41{word-spacing:-0.320000pt;}
.ws39{word-spacing:-0.266667pt;}
.ws66{word-spacing:-0.213333pt;}
.ws86{word-spacing:-0.160000pt;}
.ws11e{word-spacing:-0.106667pt;}
.wsfd{word-spacing:-0.095121pt;}
.ws13a{word-spacing:-0.053333pt;}
.wse9{word-spacing:-0.052792pt;}
.wsaf{word-spacing:-0.048388pt;}
.wsf5{word-spacing:-0.047613pt;}
.wsf4{word-spacing:-0.047561pt;}
.ws139{word-spacing:-0.028965pt;}
.wsdd{word-spacing:-0.018871pt;}
.ws0{word-spacing:0.000000pt;}
.wsc0{word-spacing:0.000103pt;}
.wsdc{word-spacing:0.018871pt;}
.ws10d{word-spacing:0.042329pt;}
.ws10c{word-spacing:0.047561pt;}
.ws17{word-spacing:0.053333pt;}
.ws11d{word-spacing:0.074737pt;}
.ws91{word-spacing:0.106667pt;}
.wsff{word-spacing:0.142682pt;}
.ws26{word-spacing:0.160000pt;}
.ws18{word-spacing:0.213333pt;}
.wse1{word-spacing:0.241941pt;}
.wscb{word-spacing:0.241984pt;}
.ws2d{word-spacing:0.266667pt;}
.wsb5{word-spacing:0.290367pt;}
.ws61{word-spacing:0.320000pt;}
.ws13f{word-spacing:0.336000pt;}
.ws88{word-spacing:0.373333pt;}
.ws105{word-spacing:0.426667pt;}
.ws2f{word-spacing:0.480000pt;}
.wsfc{word-spacing:0.523166pt;}
.wsf3{word-spacing:0.527920pt;}
.ws2a{word-spacing:0.533333pt;}
.wsb0{word-spacing:0.580659pt;}
.ws20{word-spacing:0.586667pt;}
.ws102{word-spacing:0.618287pt;}
.ws140{word-spacing:0.624000pt;}
.wsea{word-spacing:0.633504pt;}
.wsd2{word-spacing:0.640000pt;}
.wsf2{word-spacing:0.686296pt;}
.ws12f{word-spacing:0.693333pt;}
.wsee{word-spacing:0.719585pt;}
.ws4a{word-spacing:0.746667pt;}
.wsfb{word-spacing:0.760969pt;}
.ws108{word-spacing:0.800000pt;}
.wsf6{word-spacing:0.809427pt;}
.ws42{word-spacing:0.853333pt;}
.ws27{word-spacing:0.906667pt;}
.ws7d{word-spacing:0.960000pt;}
.ws129{word-spacing:1.066667pt;}
.ws10e{word-spacing:1.093892pt;}
.ws9f{word-spacing:1.120000pt;}
.ws109{word-spacing:1.173333pt;}
.ws95{word-spacing:1.226667pt;}
.wsa0{word-spacing:1.280000pt;}
.ws6c{word-spacing:1.333333pt;}
.ws74{word-spacing:1.368365pt;}
.ws3b{word-spacing:1.386667pt;}
.ws13e{word-spacing:1.488000pt;}
.ws133{word-spacing:1.546667pt;}
.ws80{word-spacing:1.600000pt;}
.ws13d{word-spacing:1.607556pt;}
.ws78{word-spacing:1.653333pt;}
.ws99{word-spacing:1.706667pt;}
.ws50{word-spacing:1.760000pt;}
.ws40{word-spacing:1.813333pt;}
.wsdb{word-spacing:1.866667pt;}
.ws49{word-spacing:1.920000pt;}
.wsba{word-spacing:1.935544pt;}
.wsd5{word-spacing:1.973333pt;}
.ws29{word-spacing:2.026667pt;}
.wsa3{word-spacing:2.080000pt;}
.ws62{word-spacing:2.133333pt;}
.ws128{word-spacing:2.186667pt;}
.ws7f{word-spacing:2.240000pt;}
.ws87{word-spacing:2.293333pt;}
.wsfa{word-spacing:2.330466pt;}
.ws68{word-spacing:2.346667pt;}
.wsd8{word-spacing:2.400000pt;}
.ws6a{word-spacing:2.453333pt;}
.wsa{word-spacing:2.506667pt;}
.ws9d{word-spacing:2.560000pt;}
.wse8{word-spacing:2.639595pt;}
.ws11a{word-spacing:2.666667pt;}
.ws12a{word-spacing:2.720000pt;}
.ws15{word-spacing:2.826667pt;}
.ws6e{word-spacing:2.880000pt;}
.ws31{word-spacing:2.933333pt;}
.ws28{word-spacing:2.986667pt;}
.wse7{word-spacing:2.996313pt;}
.ws10{word-spacing:3.040000pt;}
.ws73{word-spacing:3.068454pt;}
.wsd{word-spacing:3.093333pt;}
.ws24{word-spacing:3.146667pt;}
.wsa5{word-spacing:3.253333pt;}
.ws81{word-spacing:3.306667pt;}
.ws25{word-spacing:3.360000pt;}
.ws69{word-spacing:3.413333pt;}
.ws127{word-spacing:3.466667pt;}
.ws70{word-spacing:3.520000pt;}
.ws93{word-spacing:3.573333pt;}
.wsc{word-spacing:3.626667pt;}
.ws14{word-spacing:3.680000pt;}
.ws84{word-spacing:3.733333pt;}
.ws1d{word-spacing:3.840000pt;}
.ws63{word-spacing:3.946667pt;}
.ws12b{word-spacing:4.000000pt;}
.wsd6{word-spacing:4.053333pt;}
.ws6d{word-spacing:4.106667pt;}
.ws6b{word-spacing:4.160000pt;}
.ws19{word-spacing:4.213333pt;}
.ws1b{word-spacing:4.266667pt;}
.wsf9{word-spacing:4.285200pt;}
.ws9e{word-spacing:4.320000pt;}
.ws2e{word-spacing:4.373333pt;}
.ws7b{word-spacing:4.426667pt;}
.ws11c{word-spacing:4.480000pt;}
.ws33{word-spacing:4.533333pt;}
.wsd9{word-spacing:4.586661pt;}
.ws48{word-spacing:4.586667pt;}
.ws11{word-spacing:4.640000pt;}
.ws97{word-spacing:4.693333pt;}
.ws46{word-spacing:4.746667pt;}
.ws8f{word-spacing:4.800000pt;}
.ws10a{word-spacing:4.853333pt;}
.ws52{word-spacing:4.906667pt;}
.ws1a{word-spacing:4.960000pt;}
.ws123{word-spacing:5.066667pt;}
.ws1c{word-spacing:5.173333pt;}
.ws38{word-spacing:5.226667pt;}
.ws11f{word-spacing:5.280000pt;}
.ws47{word-spacing:5.333333pt;}
.ws8a{word-spacing:5.386667pt;}
.ws9b{word-spacing:5.440000pt;}
.ws4b{word-spacing:5.493333pt;}
.ws8e{word-spacing:5.600000pt;}
.ws118{word-spacing:5.653333pt;}
.ws82{word-spacing:5.706667pt;}
.wsa6{word-spacing:5.813333pt;}
.ws98{word-spacing:5.866667pt;}
.ws53{word-spacing:5.973333pt;}
.ws134{word-spacing:6.026667pt;}
.ws9a{word-spacing:6.293333pt;}
.ws104{word-spacing:6.506667pt;}
.wsd3{word-spacing:6.560000pt;}
.wsa8{word-spacing:6.720000pt;}
.wsa4{word-spacing:6.773333pt;}
.wsa7{word-spacing:6.826667pt;}
.ws124{word-spacing:6.880000pt;}
.ws12e{word-spacing:6.986667pt;}
.wsa1{word-spacing:7.093333pt;}
.ws125{word-spacing:7.200000pt;}
.ws85{word-spacing:7.306667pt;}
.ws130{word-spacing:7.360000pt;}
.ws9c{word-spacing:7.413333pt;}
.ws12c{word-spacing:7.466667pt;}
.wsa2{word-spacing:7.573333pt;}
.ws34{word-spacing:7.626667pt;}
.ws43{word-spacing:7.680000pt;}
.ws135{word-spacing:7.786667pt;}
.ws122{word-spacing:7.946667pt;}
.ws4f{word-spacing:8.106667pt;}
.ws92{word-spacing:8.426667pt;}
.ws8b{word-spacing:8.533333pt;}
.wsc9{word-spacing:8.613188pt;}
.ws119{word-spacing:8.640000pt;}
.ws83{word-spacing:8.693333pt;}
.wsd7{word-spacing:8.853333pt;}
.ws126{word-spacing:9.013333pt;}
.ws51{word-spacing:9.120000pt;}
.ws4e{word-spacing:9.173333pt;}
.ws12{word-spacing:9.493333pt;}
.ws137{word-spacing:9.600000pt;}
.ws107{word-spacing:9.760000pt;}
.ws1f{word-spacing:10.186667pt;}
.ws100{word-spacing:10.558533pt;}
.wsd4{word-spacing:10.613333pt;}
.wsb1{word-spacing:10.645341pt;}
.wsb3{word-spacing:10.645504pt;}
.wsf8{word-spacing:11.189283pt;}
.wseb{word-spacing:12.036607pt;}
.ws90{word-spacing:12.693333pt;}
.ws2{word-spacing:14.986667pt;}
.wsae{word-spacing:71.333918pt;}
.wsed{word-spacing:178.740764pt;}
.wsec{word-spacing:193.002896pt;}
.wsef{word-spacing:203.729659pt;}
.ws5c{word-spacing:230.508152pt;}
.wsf1{word-spacing:290.808947pt;}
.wsf0{word-spacing:325.285160pt;}
.ws5b{word-spacing:329.375793pt;}
.wsf7{word-spacing:357.184971pt;}
.ws5f{word-spacing:450.549963pt;}
.ws5e{word-spacing:451.174279pt;}
.wsca{word-spacing:765.550713pt;}
.wsc1{word-spacing:969.120271pt;}
.wsd0{word-spacing:1608.521057pt;}
._0{margin-left:-2645.653390pt;}
._10{margin-left:-1405.061776pt;}
._17{margin-left:-278.231555pt;}
._18{margin-left:-204.488777pt;}
._3{margin-left:-18.368000pt;}
._1b{margin-left:-14.034295pt;}
._1a{margin-left:-12.374586pt;}
._19{margin-left:-11.079270pt;}
._c{margin-left:-7.904000pt;}
._b{margin-left:-6.489600pt;}
._a{margin-left:-5.139200pt;}
._8{margin-left:-4.245333pt;}
._7{margin-left:-2.698667pt;}
._4{margin-left:-1.792000pt;}
._5{margin-left:-0.896000pt;}
._1{width:0.906667pt;}
._6{width:2.240000pt;}
._e{width:3.305256pt;}
._13{width:4.341333pt;}
._d{width:5.499402pt;}
._9{width:6.921600pt;}
._16{width:11.461301pt;}
._1c{width:14.912000pt;}
._2{width:42.133323pt;}
._12{width:47.168000pt;}
._f{width:55.953432pt;}
._11{width:173.963107pt;}
._14{width:267.421314pt;}
._15{width:377.922647pt;}
.fs11{font-size:18.871467pt;}
.fsf{font-size:24.979200pt;}
.fs1d{font-size:28.964800pt;}
.fs8{font-size:31.093333pt;}
.fse{font-size:31.973333pt;}
.fs12{font-size:32.258667pt;}
.fs4{font-size:37.333333pt;}
.fs1b{font-size:37.368533pt;}
.fsd{font-size:41.465599pt;}
.fs18{font-size:42.328533pt;}
.fs1c{font-size:43.447467pt;}
.fs7{font-size:45.333333pt;}
.fs16{font-size:47.560532pt;}
.fs19{font-size:47.613332pt;}
.fs9{font-size:48.000000pt;}
.fs10{font-size:48.388265pt;}
.fs15{font-size:48.442133pt;}
.fs1a{font-size:49.598399pt;}
.fs17{font-size:52.792000pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:54.954132pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs13{font-size:64.517333pt;}
.fsa{font-size:66.666667pt;}
.fsb{font-size:80.000000pt;}
.fs14{font-size:85.969600pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y141{bottom:3.365733pt;}
.y1ff{bottom:7.595997pt;}
.y2c8{bottom:12.104533pt;}
.y23{bottom:24.037732pt;}
.y13a{bottom:31.052937pt;}
.y1f3{bottom:31.861471pt;}
.y21f{bottom:33.937839pt;}
.y21e{bottom:44.130107pt;}
.y1f1{bottom:53.378540pt;}
.y21d{bottom:54.490533pt;}
.y1f2{bottom:54.712138pt;}
.y1f0{bottom:54.712423pt;}
.y13f{bottom:58.320404pt;}
.y5{bottom:59.133337pt;}
.y140{bottom:59.652750pt;}
.y21c{bottom:64.682800pt;}
.y13c{bottom:65.774932pt;}
.y13d{bottom:70.686401pt;}
.y13e{bottom:72.019866pt;}
.y222{bottom:72.156769pt;}
.y2c7{bottom:75.590667pt;}
.y24c{bottom:75.637695pt;}
.ye9{bottom:75.637732pt;}
.y278{bottom:75.637736pt;}
.y6c{bottom:75.637752pt;}
.y295{bottom:75.637858pt;}
.ybb{bottom:75.637882pt;}
.y2c1{bottom:75.637899pt;}
.y166{bottom:75.637907pt;}
.y3e{bottom:75.659069pt;}
.y2e9{bottom:75.708381pt;}
.y21b{bottom:77.421207pt;}
.y1ef{bottom:77.575898pt;}
.y2c9{bottom:80.100398pt;}
.y221{bottom:82.517195pt;}
.y1d7{bottom:83.325341pt;}
.y1dc{bottom:85.595733pt;}
.y101{bottom:85.595867pt;}
.y4{bottom:86.333337pt;}
.y104{bottom:86.929331pt;}
.y21a{bottom:87.613475pt;}
.y2c6{bottom:87.695200pt;}
.y135{bottom:88.255899pt;}
.y3d{bottom:88.987069pt;}
.y2e8{bottom:92.148381pt;}
.y220{bottom:92.709463pt;}
.y133{bottom:94.375793pt;}
.y24b{bottom:95.504362pt;}
.ye8{bottom:95.504399pt;}
.y277{bottom:95.504403pt;}
.y6b{bottom:95.504419pt;}
.y294{bottom:95.504525pt;}
.yba{bottom:95.504549pt;}
.y2c0{bottom:95.504565pt;}
.y165{bottom:95.504574pt;}
.y1d6{bottom:96.653341pt;}
.y1ee{bottom:100.439342pt;}
.y134{bottom:101.994445pt;}
.y3c{bottom:102.315069pt;}
.y132{bottom:103.118529pt;}
.y9b{bottom:104.365603pt;}
.y1fe{bottom:108.648009pt;}
.y2e7{bottom:114.264381pt;}
.y236{bottom:115.307032pt;}
.y24a{bottom:115.371029pt;}
.ye7{bottom:115.371065pt;}
.y276{bottom:115.371069pt;}
.y6a{bottom:115.371086pt;}
.y293{bottom:115.371191pt;}
.yb9{bottom:115.371216pt;}
.y2bf{bottom:115.371232pt;}
.y164{bottom:115.371240pt;}
.y3b{bottom:115.643069pt;}
.y1d5{bottom:120.272008pt;}
.y1ed{bottom:121.969208pt;}
.y1ec{bottom:123.302806pt;}
.y22{bottom:123.790666pt;}
.y235{bottom:126.517592pt;}
.y9a{bottom:126.578929pt;}
.y10f{bottom:127.888133pt;}
.y3a{bottom:128.971069pt;}
.y2e6{bottom:130.704381pt;}
.y1d4{bottom:133.600008pt;}
.y200{bottom:134.237202pt;}
.y23f{bottom:134.336962pt;}
.y249{bottom:135.237695pt;}
.ye6{bottom:135.237732pt;}
.y275{bottom:135.237736pt;}
.y69{bottom:135.237752pt;}
.y292{bottom:135.237858pt;}
.yb8{bottom:135.237882pt;}
.y163{bottom:135.237907pt;}
.y138{bottom:136.340860pt;}
.y12f{bottom:136.465738pt;}
.y137{bottom:136.840433pt;}
.y234{bottom:139.764737pt;}
.y10d{bottom:140.253204pt;}
.y10e{bottom:141.586405pt;}
.y131{bottom:143.584818pt;}
.y136{bottom:144.084390pt;}
.y1eb{bottom:144.833201pt;}
.y23e{bottom:145.547522pt;}
.y1ea{bottom:146.164683pt;}
.y12e{bottom:146.332539pt;}
.y2e5{bottom:147.144381pt;}
.y99{bottom:149.369062pt;}
.y233{bottom:150.975297pt;}
.y130{bottom:151.203470pt;}
.y10c{bottom:152.620331pt;}
.y248{bottom:155.104362pt;}
.y274{bottom:155.104403pt;}
.y68{bottom:155.104419pt;}
.y291{bottom:155.104525pt;}
.ye5{bottom:155.104533pt;}
.yb7{bottom:155.104549pt;}
.y2be{bottom:155.104565pt;}
.y162{bottom:155.104574pt;}
.y23d{bottom:156.758082pt;}
.y1d3{bottom:157.218675pt;}
.y225{bottom:159.123444pt;}
.y2e4{bottom:163.584381pt;}
.y219{bottom:164.389062pt;}
.y1e9{bottom:167.694529pt;}
.y1e8{bottom:169.028127pt;}
.y224{bottom:169.483870pt;}
.y98{bottom:171.582397pt;}
.y218{bottom:174.581330pt;}
.y232{bottom:174.751027pt;}
.y18e{bottom:174.965870pt;}
.y247{bottom:174.971029pt;}
.y273{bottom:174.971069pt;}
.y67{bottom:174.971086pt;}
.y290{bottom:174.971191pt;}
.ye4{bottom:174.971200pt;}
.yb6{bottom:174.971216pt;}
.y161{bottom:174.971240pt;}
.y19{bottom:175.052000pt;}
.y239{bottom:179.347356pt;}
.y223{bottom:179.676138pt;}
.y2e3{bottom:180.024381pt;}
.y1d2{bottom:180.837341pt;}
.y231{bottom:185.961587pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y38{bottom:188.955058pt;}
.y238{bottom:190.557916pt;}
.y1e0{bottom:190.976715pt;}
.y1fd{bottom:193.027994pt;}
.y2bd{bottom:194.304565pt;}
.y97{bottom:194.380541pt;}
.y246{bottom:194.837695pt;}
.y272{bottom:194.837736pt;}
.y66{bottom:194.837752pt;}
.y28f{bottom:194.837858pt;}
.ye3{bottom:194.837866pt;}
.y18d{bottom:194.837870pt;}
.yb5{bottom:194.837882pt;}
.y160{bottom:194.837907pt;}
.y1e3{bottom:196.610667pt;}
.y1df{bottom:196.623993pt;}
.y1e1{bottom:196.690806pt;}
.y1e4{bottom:197.108002pt;}
.y230{bottom:197.172147pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y237{bottom:201.768476pt;}
.y2e2{bottom:202.140381pt;}
.y1d1{bottom:204.455343pt;}
.y20f{bottom:208.559019pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y2bc{bottom:210.304565pt;}
.y1e2{bottom:211.301341pt;}
.y96{bottom:212.153875pt;}
.y245{bottom:214.704362pt;}
.y271{bottom:214.704403pt;}
.y65{bottom:214.704419pt;}
.y28e{bottom:214.704525pt;}
.ye2{bottom:214.704533pt;}
.yb4{bottom:214.704549pt;}
.y15f{bottom:214.704574pt;}
.y2e1{bottom:218.580381pt;}
.y115{bottom:221.899576pt;}
.y11b{bottom:221.907551pt;}
.y121{bottom:221.915547pt;}
.y127{bottom:221.923543pt;}
.y12d{bottom:221.931538pt;}
.y20e{bottom:222.310175pt;}
.y22f{bottom:223.834595pt;}
.y2bb{bottom:226.304565pt;}
.y37{bottom:227.719320pt;}
.y95{bottom:229.927208pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y114{bottom:231.515543pt;}
.y11a{bottom:231.523538pt;}
.y120{bottom:231.531534pt;}
.y126{bottom:231.539530pt;}
.y12c{bottom:231.547525pt;}
.y244{bottom:234.571029pt;}
.y270{bottom:234.571069pt;}
.y64{bottom:234.571086pt;}
.y28d{bottom:234.571191pt;}
.ye1{bottom:234.571200pt;}
.yb3{bottom:234.571216pt;}
.y15e{bottom:234.571240pt;}
.y18c{bottom:234.571281pt;}
.y2e0{bottom:235.020381pt;}
.y22e{bottom:235.045155pt;}
.y20d{bottom:235.900137pt;}
.y242{bottom:238.632538pt;}
.y113{bottom:241.131530pt;}
.y119{bottom:241.139526pt;}
.y11f{bottom:241.147501pt;}
.y125{bottom:241.155517pt;}
.y12b{bottom:241.163492pt;}
.y314{bottom:241.704424pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y2ba{bottom:242.304565pt;}
.y10b{bottom:243.917206pt;}
.y13b{bottom:245.499470pt;}
.y22d{bottom:246.255715pt;}
.y241{bottom:249.843098pt;}
.y112{bottom:250.747497pt;}
.y118{bottom:250.755513pt;}
.y11e{bottom:250.763488pt;}
.y124{bottom:250.771484pt;}
.y12a{bottom:250.779479pt;}
.y2df{bottom:251.460381pt;}
.y36{bottom:251.719320pt;}
.y94{bottom:252.140523pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1b0{bottom:254.437695pt;}
.y1d0{bottom:254.437712pt;}
.y26f{bottom:254.437736pt;}
.y63{bottom:254.437752pt;}
.y28c{bottom:254.437858pt;}
.ye0{bottom:254.437866pt;}
.yb2{bottom:254.437882pt;}
.y15d{bottom:254.437907pt;}
.y18b{bottom:254.437948pt;}
.y203{bottom:256.944783pt;}
.y313{bottom:257.700424pt;}
.y111{bottom:260.363484pt;}
.y117{bottom:260.371500pt;}
.y11d{bottom:260.379475pt;}
.y123{bottom:260.387450pt;}
.y129{bottom:260.395466pt;}
.y240{bottom:261.053658pt;}
.y1fc{bottom:263.840657pt;}
.y1e5{bottom:265.805593pt;}
.y217{bottom:266.643443pt;}
.y110{bottom:269.979451pt;}
.y116{bottom:269.987467pt;}
.y11c{bottom:269.995442pt;}
.y122{bottom:270.003458pt;}
.y128{bottom:270.011433pt;}
.y202{bottom:271.212931pt;}
.y2de{bottom:273.576381pt;}
.y312{bottom:273.696424pt;}
.y1af{bottom:274.304362pt;}
.y1cf{bottom:274.304378pt;}
.y26e{bottom:274.304403pt;}
.y62{bottom:274.304419pt;}
.y28b{bottom:274.304525pt;}
.ydf{bottom:274.304533pt;}
.yb1{bottom:274.304549pt;}
.y2b9{bottom:274.304565pt;}
.y15c{bottom:274.304574pt;}
.y18a{bottom:274.304614pt;}
.y35{bottom:275.719320pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y226{bottom:276.834809pt;}
.y216{bottom:277.003869pt;}
.y1fb{bottom:278.108805pt;}
.y139{bottom:278.638540pt;}
.y22c{bottom:278.700944pt;}
.y93{bottom:285.380535pt;}
.y201{bottom:285.493611pt;}
.y23c{bottom:285.511359pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y215{bottom:287.196137pt;}
.y311{bottom:289.692424pt;}
.y22b{bottom:289.911504pt;}
.y2dd{bottom:290.016381pt;}
.y1ae{bottom:294.171029pt;}
.y1ce{bottom:294.171045pt;}
.y26d{bottom:294.171069pt;}
.y61{bottom:294.171086pt;}
.y28a{bottom:294.171191pt;}
.yde{bottom:294.171200pt;}
.yb0{bottom:294.171216pt;}
.y2b8{bottom:294.171232pt;}
.y15b{bottom:294.171240pt;}
.y189{bottom:294.171281pt;}
.y23b{bottom:296.721919pt;}
.y34{bottom:299.719320pt;}
.y22a{bottom:301.122064pt;}
.y92{bottom:303.153869pt;}
.y2dc{bottom:306.456381pt;}
.y23a{bottom:307.932479pt;}
.y10{bottom:309.452000pt;}
.y310{bottom:311.364424pt;}
.y229{bottom:313.014600pt;}
.y1ad{bottom:314.037695pt;}
.y1cd{bottom:314.037712pt;}
.y26c{bottom:314.037736pt;}
.y60{bottom:314.037752pt;}
.y289{bottom:314.037858pt;}
.ydd{bottom:314.037866pt;}
.yaf{bottom:314.037882pt;}
.y2b7{bottom:314.037899pt;}
.y15a{bottom:314.037907pt;}
.y188{bottom:314.037948pt;}
.y1de{bottom:320.752818pt;}
.y91{bottom:320.927202pt;}
.y2db{bottom:322.896381pt;}
.y33{bottom:323.719320pt;}
.y228{bottom:324.225160pt;}
.y30f{bottom:327.360424pt;}
.y109{bottom:327.681314pt;}
.y107{bottom:328.055745pt;}
.y103{bottom:328.180663pt;}
.y1ac{bottom:333.904362pt;}
.y1cc{bottom:333.904378pt;}
.y26b{bottom:333.904403pt;}
.y5f{bottom:333.904419pt;}
.y288{bottom:333.904525pt;}
.ydc{bottom:333.904533pt;}
.yae{bottom:333.904549pt;}
.y2b6{bottom:333.904565pt;}
.y159{bottom:333.904574pt;}
.y187{bottom:333.904614pt;}
.y227{bottom:335.435720pt;}
.y105{bottom:335.839752pt;}
.y106{bottom:337.173217pt;}
.y90{bottom:338.700535pt;}
.y30e{bottom:343.356424pt;}
.y10a{bottom:343.792805pt;}
.yf{bottom:343.809333pt;}
.y108{bottom:343.917887pt;}
.y102{bottom:344.417195pt;}
.y2da{bottom:345.012381pt;}
.y32{bottom:347.719320pt;}
.y1ab{bottom:353.771029pt;}
.y1cb{bottom:353.771045pt;}
.y26a{bottom:353.771069pt;}
.y5e{bottom:353.771086pt;}
.y287{bottom:353.771191pt;}
.ydb{bottom:353.771200pt;}
.yad{bottom:353.771216pt;}
.y2b5{bottom:353.771232pt;}
.y158{bottom:353.771240pt;}
.y186{bottom:353.771281pt;}
.y8f{bottom:356.473869pt;}
.y214{bottom:358.705082pt;}
.y30d{bottom:359.352424pt;}
.y1e7{bottom:361.168590pt;}
.y2d9{bottom:361.452381pt;}
.ye{bottom:362.706666pt;}
.y1e6{bottom:366.815847pt;}
.y1dd{bottom:368.012380pt;}
.y213{bottom:368.897349pt;}
.y31{bottom:371.719320pt;}
.y1aa{bottom:373.637695pt;}
.y1ca{bottom:373.637712pt;}
.y269{bottom:373.637736pt;}
.y5d{bottom:373.637752pt;}
.y286{bottom:373.637858pt;}
.yda{bottom:373.637866pt;}
.yac{bottom:373.637882pt;}
.y2b4{bottom:373.637899pt;}
.y157{bottom:373.637907pt;}
.y185{bottom:373.637948pt;}
.y8e{bottom:374.247202pt;}
.y2d8{bottom:377.892381pt;}
.y30c{bottom:381.024424pt;}
.y212{bottom:386.732636pt;}
.y8d{bottom:392.020535pt;}
.y1a9{bottom:393.504362pt;}
.y1c9{bottom:393.504378pt;}
.y268{bottom:393.504403pt;}
.y5c{bottom:393.504419pt;}
.y285{bottom:393.504517pt;}
.yd9{bottom:393.504533pt;}
.yab{bottom:393.504549pt;}
.y2b3{bottom:393.504565pt;}
.y156{bottom:393.504574pt;}
.y184{bottom:393.504614pt;}
.y2d7{bottom:394.332381pt;}
.y30{bottom:395.719320pt;}
.y30b{bottom:397.020424pt;}
.y211{bottom:397.093062pt;}
.y210{bottom:407.285329pt;}
.y8c{bottom:409.793869pt;}
.y30a{bottom:413.016424pt;}
.y1a8{bottom:413.371029pt;}
.y1c8{bottom:413.371045pt;}
.y267{bottom:413.371069pt;}
.y5b{bottom:413.371086pt;}
.yd8{bottom:413.371200pt;}
.yaa{bottom:413.371216pt;}
.y2b2{bottom:413.371232pt;}
.y155{bottom:413.371240pt;}
.y183{bottom:413.371281pt;}
.y2d6{bottom:416.448381pt;}
.y2f{bottom:419.719320pt;}
.y8b{bottom:427.567202pt;}
.yd{bottom:430.990669pt;}
.y2d5{bottom:432.888381pt;}
.y1a7{bottom:433.237695pt;}
.y1c7{bottom:433.237712pt;}
.y266{bottom:433.237736pt;}
.y5a{bottom:433.237752pt;}
.y284{bottom:433.237760pt;}
.yd7{bottom:433.237866pt;}
.ya9{bottom:433.237882pt;}
.y2b1{bottom:433.237899pt;}
.y154{bottom:433.237907pt;}
.y182{bottom:433.237948pt;}
.y309{bottom:434.688424pt;}
.y2e{bottom:443.719320pt;}
.y8a{bottom:445.340535pt;}
.yc{bottom:446.990669pt;}
.y205{bottom:449.005208pt;}
.y2d4{bottom:449.328381pt;}
.y308{bottom:450.684424pt;}
.y1a6{bottom:453.104362pt;}
.y1c6{bottom:453.104378pt;}
.y265{bottom:453.104403pt;}
.y59{bottom:453.104419pt;}
.y283{bottom:453.104427pt;}
.yd6{bottom:453.104533pt;}
.ya8{bottom:453.104549pt;}
.y2b0{bottom:453.104565pt;}
.y153{bottom:453.104574pt;}
.y181{bottom:453.104614pt;}
.yb{bottom:462.990669pt;}
.y89{bottom:463.120931pt;}
.y2d3{bottom:465.768381pt;}
.y307{bottom:466.680424pt;}
.y2d{bottom:467.719320pt;}
.y204{bottom:468.878540pt;}
.y1a5{bottom:472.971029pt;}
.y1c5{bottom:472.971045pt;}
.y264{bottom:472.971069pt;}
.y58{bottom:472.971086pt;}
.y282{bottom:472.971094pt;}
.yd5{bottom:472.971200pt;}
.ya7{bottom:472.971216pt;}
.y2af{bottom:472.971232pt;}
.y152{bottom:472.971240pt;}
.y180{bottom:472.971281pt;}
.ya{bottom:478.990666pt;}
.y2d2{bottom:487.884381pt;}
.y306{bottom:488.352424pt;}
.y88{bottom:488.454264pt;}
.y2c{bottom:491.719320pt;}
.y1a4{bottom:492.837695pt;}
.y1c4{bottom:492.837712pt;}
.y263{bottom:492.837736pt;}
.y57{bottom:492.837752pt;}
.y281{bottom:492.837760pt;}
.yd4{bottom:492.837866pt;}
.ya6{bottom:492.837882pt;}
.y2ae{bottom:492.837899pt;}
.y151{bottom:492.837907pt;}
.y17f{bottom:492.837948pt;}
.y9{bottom:494.990666pt;}
.y2d1{bottom:504.324381pt;}
.y305{bottom:504.348424pt;}
.y87{bottom:506.239588pt;}
.y1a3{bottom:512.704362pt;}
.y1c3{bottom:512.704378pt;}
.y262{bottom:512.704403pt;}
.y56{bottom:512.704419pt;}
.y280{bottom:512.704427pt;}
.yd3{bottom:512.704533pt;}
.ya5{bottom:512.704549pt;}
.y2ad{bottom:512.704565pt;}
.y150{bottom:512.704574pt;}
.y17e{bottom:512.704614pt;}
.y2b{bottom:515.719320pt;}
.y304{bottom:520.344424pt;}
.y2d0{bottom:520.764381pt;}
.y86{bottom:524.012922pt;}
.y1a2{bottom:532.571029pt;}
.y1c2{bottom:532.571045pt;}
.y261{bottom:532.571069pt;}
.y55{bottom:532.571086pt;}
.y27f{bottom:532.571094pt;}
.yd2{bottom:532.571200pt;}
.ya4{bottom:532.571216pt;}
.y2ac{bottom:532.571232pt;}
.y14f{bottom:532.571240pt;}
.y17d{bottom:532.571281pt;}
.y303{bottom:536.340424pt;}
.y2cf{bottom:537.204381pt;}
.y2a{bottom:539.719320pt;}
.y85{bottom:541.786255pt;}
.y1a1{bottom:552.437695pt;}
.y1c1{bottom:552.437712pt;}
.y260{bottom:552.437736pt;}
.y1fa{bottom:552.437744pt;}
.y27e{bottom:552.437760pt;}
.y54{bottom:552.437866pt;}
.ya3{bottom:552.437882pt;}
.y2ab{bottom:552.437899pt;}
.y14e{bottom:552.437907pt;}
.yd1{bottom:552.437923pt;}
.y17c{bottom:552.437948pt;}
.y142{bottom:554.140788pt;}
.y1f4{bottom:556.600789pt;}
.y302{bottom:558.012424pt;}
.y2ce{bottom:559.320381pt;}
.y84{bottom:559.563599pt;}
.y29{bottom:563.719320pt;}
.y1a0{bottom:572.304362pt;}
.y1c0{bottom:572.304378pt;}
.y1f9{bottom:572.304403pt;}
.y27d{bottom:572.304427pt;}
.y53{bottom:572.304533pt;}
.ya2{bottom:572.304549pt;}
.y2aa{bottom:572.304565pt;}
.y14d{bottom:572.304574pt;}
.yd0{bottom:572.304590pt;}
.y17b{bottom:572.304614pt;}
.y8{bottom:573.786667pt;}
.y301{bottom:574.008424pt;}
.y2cd{bottom:575.760381pt;}
.y83{bottom:577.360913pt;}
.y300{bottom:590.004424pt;}
.y19f{bottom:592.171029pt;}
.y1bf{bottom:592.171045pt;}
.y1f8{bottom:592.171061pt;}
.y25f{bottom:592.171069pt;}
.y27c{bottom:592.171094pt;}
.y52{bottom:592.171200pt;}
.ya1{bottom:592.171216pt;}
.y2a9{bottom:592.171232pt;}
.y14c{bottom:592.171240pt;}
.ycf{bottom:592.171257pt;}
.y17a{bottom:592.171281pt;}
.y2cc{bottom:592.200381pt;}
.y7{bottom:592.685334pt;}
.y82{bottom:595.134246pt;}
.y243{bottom:607.740926pt;}
.y2cb{bottom:608.640381pt;}
.y2ff{bottom:611.676424pt;}
.y19e{bottom:612.037695pt;}
.y1be{bottom:612.037712pt;}
.y1da{bottom:612.037720pt;}
.y25e{bottom:612.037736pt;}
.y27b{bottom:612.037760pt;}
.y51{bottom:612.037866pt;}
.ya0{bottom:612.037882pt;}
.y2a8{bottom:612.037899pt;}
.y14b{bottom:612.037907pt;}
.yce{bottom:612.037923pt;}
.y179{bottom:612.037948pt;}
.y81{bottom:612.907580pt;}
.y2ca{bottom:625.086019pt;}
.y2fe{bottom:627.672424pt;}
.y80{bottom:630.680913pt;}
.y19d{bottom:631.904362pt;}
.y1bd{bottom:631.904378pt;}
.y25d{bottom:631.904403pt;}
.y9f{bottom:631.904419pt;}
.y27a{bottom:631.904427pt;}
.y50{bottom:631.904533pt;}
.y2a7{bottom:631.904565pt;}
.y14a{bottom:631.904574pt;}
.ycd{bottom:631.904590pt;}
.y178{bottom:631.904614pt;}
.y2fd{bottom:643.668424pt;}
.y6{bottom:645.598667pt;}
.y7f{bottom:648.454246pt;}
.yfd{bottom:651.765869pt;}
.y19c{bottom:651.771029pt;}
.y1bc{bottom:651.771045pt;}
.y25c{bottom:651.771069pt;}
.y1d9{bottom:651.771077pt;}
.y20c{bottom:651.771094pt;}
.y4f{bottom:651.771200pt;}
.y2a6{bottom:651.771232pt;}
.y149{bottom:651.771240pt;}
.ycc{bottom:651.771257pt;}
.y177{bottom:651.771281pt;}
.y28{bottom:651.939354pt;}
.y2fc{bottom:659.664424pt;}
.y7e{bottom:666.227580pt;}
.y3{bottom:668.977329pt;}
.y19b{bottom:671.637695pt;}
.y1bb{bottom:671.637712pt;}
.y100{bottom:671.637736pt;}
.y9e{bottom:671.637760pt;}
.y4e{bottom:671.637858pt;}
.y2a5{bottom:671.637899pt;}
.y148{bottom:671.637907pt;}
.ycb{bottom:671.637923pt;}
.y176{bottom:671.637948pt;}
.y2fb{bottom:681.336424pt;}
.y7d{bottom:684.064040pt;}
.y19a{bottom:691.504362pt;}
.y4d{bottom:691.504378pt;}
.yff{bottom:691.504395pt;}
.y25b{bottom:691.504403pt;}
.y9d{bottom:691.504427pt;}
.y2a4{bottom:691.504565pt;}
.y147{bottom:691.504574pt;}
.yca{bottom:691.504590pt;}
.y175{bottom:691.504614pt;}
.y2fa{bottom:697.332424pt;}
.y7c{bottom:709.397373pt;}
.y199{bottom:711.371029pt;}
.y4c{bottom:711.371045pt;}
.y25a{bottom:711.371069pt;}
.y9c{bottom:711.371094pt;}
.yfc{bottom:711.371175pt;}
.y2a3{bottom:711.371232pt;}
.y146{bottom:711.371240pt;}
.yc9{bottom:711.371257pt;}
.y174{bottom:711.371281pt;}
.y2f9{bottom:713.328424pt;}
.y27{bottom:715.947354pt;}
.y7b{bottom:727.170706pt;}
.y2f8{bottom:729.324424pt;}
.y198{bottom:731.237695pt;}
.y4b{bottom:731.237712pt;}
.y259{bottom:731.237736pt;}
.yfb{bottom:731.237874pt;}
.y2a2{bottom:731.237899pt;}
.y145{bottom:731.237907pt;}
.yc8{bottom:731.237923pt;}
.y173{bottom:731.237948pt;}
.y7a{bottom:744.944040pt;}
.y2f7{bottom:750.996424pt;}
.y197{bottom:751.104362pt;}
.y1ba{bottom:751.104378pt;}
.y258{bottom:751.104403pt;}
.y1d8{bottom:751.104411pt;}
.y2c5{bottom:751.104525pt;}
.y2a1{bottom:751.104565pt;}
.y4a{bottom:751.104574pt;}
.yc7{bottom:751.104590pt;}
.y172{bottom:751.104614pt;}
.y79{bottom:762.717373pt;}
.y2f6{bottom:766.992424pt;}
.y196{bottom:770.971029pt;}
.y1b9{bottom:770.971045pt;}
.y257{bottom:770.971069pt;}
.y144{bottom:770.971094pt;}
.y49{bottom:770.971191pt;}
.y2a0{bottom:770.971232pt;}
.yc6{bottom:770.971257pt;}
.y171{bottom:770.971281pt;}
.yf3{bottom:776.259098pt;}
.y26{bottom:779.955354pt;}
.y78{bottom:780.490706pt;}
.y2{bottom:781.661334pt;}
.y2f5{bottom:782.988424pt;}
.y195{bottom:790.837695pt;}
.y48{bottom:790.837712pt;}
.yfa{bottom:790.837728pt;}
.y256{bottom:790.837736pt;}
.y143{bottom:790.837760pt;}
.yfe{bottom:790.837891pt;}
.y29f{bottom:790.837899pt;}
.yc5{bottom:790.837923pt;}
.y170{bottom:790.837948pt;}
.yf2{bottom:796.125765pt;}
.y77{bottom:798.264040pt;}
.y2f4{bottom:798.984424pt;}
.y194{bottom:810.704362pt;}
.y47{bottom:810.704378pt;}
.y255{bottom:810.704403pt;}
.yf9{bottom:810.704427pt;}
.y29e{bottom:810.704565pt;}
.y2c4{bottom:810.704574pt;}
.yc4{bottom:810.704590pt;}
.y16f{bottom:810.704614pt;}
.y2f3{bottom:814.980424pt;}
.yf1{bottom:815.992432pt;}
.y76{bottom:816.037373pt;}
.y1b8{bottom:830.571020pt;}
.y193{bottom:830.571029pt;}
.y46{bottom:830.571045pt;}
.y254{bottom:830.571069pt;}
.y29d{bottom:830.571232pt;}
.y2c3{bottom:830.571240pt;}
.yc3{bottom:830.571257pt;}
.y16e{bottom:830.571281pt;}
.y2f2{bottom:830.976424pt;}
.y75{bottom:833.810706pt;}
.yf0{bottom:835.859033pt;}
.y25{bottom:843.963354pt;}
.y1b7{bottom:850.437687pt;}
.y45{bottom:850.437695pt;}
.y20b{bottom:850.437712pt;}
.y253{bottom:850.437736pt;}
.yf8{bottom:850.437744pt;}
.y29c{bottom:850.437899pt;}
.y2c2{bottom:850.437907pt;}
.yc2{bottom:850.437923pt;}
.y16d{bottom:850.437948pt;}
.y74{bottom:851.584040pt;}
.y2f1{bottom:852.648424pt;}
.yef{bottom:855.725700pt;}
.y1{bottom:859.312000pt;}
.y2f0{bottom:868.644424pt;}
.y73{bottom:869.357373pt;}
.y1b6{bottom:870.304354pt;}
.y44{bottom:870.304362pt;}
.y20a{bottom:870.304378pt;}
.y252{bottom:870.304403pt;}
.y29b{bottom:870.304565pt;}
.yc1{bottom:870.304590pt;}
.y16c{bottom:870.304614pt;}
.yee{bottom:875.592367pt;}
.y2ef{bottom:884.640424pt;}
.y72{bottom:887.130706pt;}
.y1b5{bottom:890.171020pt;}
.y192{bottom:890.171029pt;}
.y209{bottom:890.171045pt;}
.y1db{bottom:890.171061pt;}
.y251{bottom:890.171069pt;}
.y43{bottom:890.171175pt;}
.yf7{bottom:890.171224pt;}
.y29a{bottom:890.171232pt;}
.yc0{bottom:890.171257pt;}
.y16b{bottom:890.171281pt;}
.yed{bottom:895.459049pt;}
.y1f6{bottom:895.459066pt;}
.y2ee{bottom:900.636424pt;}
.y71{bottom:904.904040pt;}
.y24{bottom:907.971354pt;}
.y1b4{bottom:910.037687pt;}
.y191{bottom:910.037695pt;}
.y208{bottom:910.037712pt;}
.y250{bottom:910.037736pt;}
.yf6{bottom:910.037760pt;}
.y42{bottom:910.037842pt;}
.y299{bottom:910.037899pt;}
.ybf{bottom:910.037923pt;}
.y16a{bottom:910.037948pt;}
.yec{bottom:915.325716pt;}
.y1f5{bottom:915.325765pt;}
.y2ed{bottom:916.632424pt;}
.y70{bottom:922.677373pt;}
.y1b3{bottom:929.904354pt;}
.y190{bottom:929.904362pt;}
.y41{bottom:929.904378pt;}
.y24f{bottom:929.904403pt;}
.y298{bottom:929.904565pt;}
.ybe{bottom:929.904590pt;}
.y169{bottom:929.904614pt;}
.yeb{bottom:935.192383pt;}
.y2ec{bottom:938.304424pt;}
.y6f{bottom:940.450706pt;}
.y1b2{bottom:949.771020pt;}
.y40{bottom:949.771029pt;}
.y207{bottom:949.771045pt;}
.y24e{bottom:949.771069pt;}
.yf5{bottom:949.771077pt;}
.y297{bottom:949.771232pt;}
.ybd{bottom:949.771256pt;}
.y168{bottom:949.771281pt;}
.y2eb{bottom:954.300424pt;}
.yea{bottom:955.059082pt;}
.y6e{bottom:958.224040pt;}
.y1b1{bottom:969.637687pt;}
.y3f{bottom:969.637695pt;}
.y206{bottom:969.637712pt;}
.y24d{bottom:969.637736pt;}
.y296{bottom:969.637899pt;}
.ybc{bottom:969.637923pt;}
.y167{bottom:969.637948pt;}
.y2ea{bottom:970.296424pt;}
.y1f7{bottom:1019.939046pt;}
.y18f{bottom:1019.939049pt;}
.yf4{bottom:1019.939086pt;}
.y39{bottom:1019.943359pt;}
.y279{bottom:1019.944377pt;}
.y6d{bottom:1019.944393pt;}
.h32{height:13.681813pt;}
.h48{height:20.883621pt;}
.h26{height:21.482112pt;}
.h29{height:22.980891pt;}
.h33{height:23.387533pt;}
.h47{height:24.438667pt;}
.h28{height:24.979182pt;}
.h43{height:27.204292pt;}
.h42{height:27.241661pt;}
.h27{height:27.477148pt;}
.h25{height:27.497066pt;}
.h7{height:28.560000pt;}
.h3c{height:28.783403pt;}
.h22{height:30.228422pt;}
.h46{height:31.325623pt;}
.h35{height:32.904020pt;}
.h3a{height:32.959448pt;}
.h3f{height:32.996039pt;}
.h3e{height:33.465124pt;}
.h37{height:34.742774pt;}
.h38{height:34.781452pt;}
.h31{height:35.081492pt;}
.h2a{height:35.660415pt;}
.h18{height:35.679990pt;}
.h19{height:35.680031pt;}
.h17{height:35.680072pt;}
.h41{height:36.157233pt;}
.h3b{height:36.690440pt;}
.h49{height:37.333333pt;}
.h15{height:39.599730pt;}
.he{height:39.712000pt;}
.h16{height:39.823988pt;}
.h14{height:39.836032pt;}
.h21{height:40.061562pt;}
.h6{height:40.800000pt;}
.h3d{height:42.018443pt;}
.h3{height:42.840000pt;}
.h2f{height:43.202667pt;}
.h2e{height:44.834667pt;}
.h45{height:46.720000pt;}
.h34{height:46.775067pt;}
.h4a{height:47.472000pt;}
.h4b{height:48.096000pt;}
.h2{height:48.960000pt;}
.ha{height:49.866667pt;}
.h2c{height:51.840000pt;}
.hf{height:52.746667pt;}
.h2d{height:52.746764pt;}
.h11{height:52.746862pt;}
.h1d{height:52.746992pt;}
.h1f{height:52.747155pt;}
.h1e{height:52.747318pt;}
.h12{height:52.747383pt;}
.h10{height:52.747513pt;}
.h13{height:53.440000pt;}
.h44{height:54.613333pt;}
.h2b{height:57.024000pt;}
.hd{height:59.898667pt;}
.hc{height:60.928000pt;}
.h1a{height:62.208000pt;}
.h1b{height:64.800000pt;}
.h24{height:68.040241pt;}
.h5{height:69.360000pt;}
.h1c{height:79.120000pt;}
.h4{height:105.826671pt;}
.hb{height:222.880000pt;}
.h39{height:312.780133pt;}
.h23{height:386.041341pt;}
.h36{height:388.502686pt;}
.h20{height:398.041467pt;}
.h30{height:400.501600pt;}
.h40{height:451.642933pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wa{width:321.260010pt;}
.w9{width:477.544000pt;}
.w8{width:516.011867pt;}
.w2{width:566.928019pt;}
.w7{width:623.622681pt;}
.w5{width:623.727987pt;}
.w6{width:647.622000pt;}
.w4{width:647.728267pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x52{left:1.292933pt;}
.x61{left:17.181733pt;}
.x20{left:22.195730pt;}
.x16{left:30.136536pt;}
.x47{left:32.222932pt;}
.x6e{left:41.381596pt;}
.x83{left:50.199098pt;}
.x84{left:52.090898pt;}
.x9{left:60.472402pt;}
.x55{left:66.141733pt;}
.x12{left:67.317067pt;}
.x62{left:69.116536pt;}
.xa{left:71.810933pt;}
.x54{left:73.700800pt;}
.x15{left:79.317332pt;}
.xc{left:83.144399pt;}
.x6d{left:86.089197pt;}
.xf{left:88.462931pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x10{left:99.801595pt;}
.x14{left:102.498404pt;}
.x6b{left:108.274236pt;}
.x53{left:109.165333pt;}
.x64{left:116.052002pt;}
.x6a{left:117.346400pt;}
.x82{left:119.535228pt;}
.x68{left:120.503998pt;}
.x89{left:122.491346pt;}
.x13{left:123.724661pt;}
.x46{left:125.188528pt;}
.x85{left:126.939459pt;}
.x6{left:128.503866pt;}
.x69{left:133.174800pt;}
.x59{left:141.942009pt;}
.x58{left:148.218661pt;}
.x8a{left:152.617210pt;}
.x8b{left:157.897434pt;}
.x72{left:163.748000pt;}
.x4{left:180.874667pt;}
.x67{left:184.841471pt;}
.x22{left:185.737356pt;}
.x17{left:186.665599pt;}
.x21{left:190.240795pt;}
.x6c{left:191.872136pt;}
.x34{left:193.990795pt;}
.x49{left:198.070385pt;}
.x48{left:203.201732pt;}
.x88{left:204.376856pt;}
.x75{left:205.755065pt;}
.x74{left:206.725949pt;}
.x73{left:210.062669pt;}
.x56{left:213.543062pt;}
.x77{left:216.516950pt;}
.x78{left:217.845414pt;}
.x5f{left:220.706657pt;}
.x81{left:225.621471pt;}
.x76{left:231.500006pt;}
.x5a{left:245.264010pt;}
.x8c{left:246.662028pt;}
.x5b{left:248.330620pt;}
.x36{left:262.574921pt;}
.x37{left:264.075511pt;}
.x23{left:269.382010pt;}
.x25{left:271.979035pt;}
.x24{left:275.115632pt;}
.x19{left:277.856924pt;}
.x26{left:279.151439pt;}
.x4b{left:285.881827pt;}
.x87{left:287.481528pt;}
.x4a{left:291.013174pt;}
.x18{left:299.780671pt;}
.x86{left:305.491464pt;}
.x35{left:314.607331pt;}
.x79{left:317.278652pt;}
.x7f{left:320.151984pt;}
.x80{left:323.313392pt;}
.x7a{left:329.831796pt;}
.x5d{left:343.330681pt;}
.x71{left:348.222580pt;}
.x65{left:349.291728pt;}
.x3c{left:350.976106pt;}
.x3d{left:352.476675pt;}
.x70{left:353.537480pt;}
.x28{left:358.558829pt;}
.x29{left:360.781770pt;}
.x6f{left:362.295985pt;}
.x27{left:363.429149pt;}
.x1b{left:365.175731pt;}
.x5e{left:372.174675pt;}
.x4d{left:373.562653pt;}
.x4c{left:378.694000pt;}
.x7b{left:380.437343pt;}
.x7d{left:386.533143pt;}
.x1a{left:387.458283pt;}
.x7c{left:391.729287pt;}
.x5c{left:394.192009pt;}
.x7e{left:396.847988pt;}
.x3a{left:397.899690pt;}
.x60{left:399.637688pt;}
.x11{left:400.629883pt;}
.x3b{left:402.547639pt;}
.x3{left:404.408000pt;}
.x63{left:408.784009pt;}
.xd{left:411.971054pt;}
.xe{left:423.304387pt;}
.x3f{left:438.922028pt;}
.x40{left:440.422639pt;}
.x1d{left:442.860953pt;}
.x2d{left:444.404816pt;}
.x2a{left:446.793244pt;}
.x2c{left:449.699616pt;}
.x2e{left:451.476512pt;}
.x2b{left:456.857657pt;}
.x4f{left:461.206167pt;}
.x4e{left:466.337515pt;}
.x8{left:469.253988pt;}
.x45{left:473.480785pt;}
.x1c{left:475.107738pt;}
.x3e{left:490.493602pt;}
.xb{left:500.364787pt;}
.x42{left:526.721833pt;}
.x43{left:528.222443pt;}
.x1f{left:532.697460pt;}
.x38{left:534.073151pt;}
.x30{left:536.430451pt;}
.x32{left:537.782950pt;}
.x31{left:539.121044pt;}
.x33{left:541.588573pt;}
.x51{left:543.737010pt;}
.x2f{left:545.271882pt;}
.x50{left:556.210847pt;}
.x1e{left:562.875886pt;}
.x39{left:571.076976pt;}
.x41{left:580.979890pt;}
.x66{left:589.289340pt;}
.x44{left:614.834361pt;}
.x7{left:667.636149pt;}
.x57{left:713.708822pt;}
.x5{left:720.215169pt;}
}




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