
    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_9c1e73983e7d4fae39b22013.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_88b0a16f67ab267b174fd03e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5391c2f7b692e95597cccf53.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.754395;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_3e0ef6442617daa9ce2710a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_4d1200573fc9d2f066b946ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936035;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_acaa78cb83ed80c9633261de.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966797;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_9025578a095e7a9fbc726e80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0767ddaa742ce64f223447fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5ddcdd5944f9481159cc2761.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fcc19cfbd6b3403dc0abeae6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959961;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_75033461b024d4bb8a4778a0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_db42cb0b3a5b4297399c0bcf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700195;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_81899f7ed8cc8724499b9da3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.765137;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_8cdae5ce97d723120c2ea070.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_86de06cf01488a84499c70f1.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;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_0000c242ddf62d1fd9830d7b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_dc3b2f3f1999c34984809ae1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921387;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_367fd565bff360c0767ce8eb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.776855;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_6527b18e42cde705e0befcfb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.971191;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_6d7e067d9893eff04ee9b383.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.948242;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_8972520399566accfc66f4ef.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.130371;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_4535262b5a804b001c85d59a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.758789;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_98104736deccd17e86f05d0c.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.109375;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_f88486b60a04bbca6dff9712.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.948242;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_7135232f850de5af50398a34.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.937012;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_c121e794714989a947a10c39.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.900391;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_b6d49f90ffbab2121bc12fdb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.929688;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_91ed91c469386ed8169eed24.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910156;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_aafa7bad15c75afcd1bc2169.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_65d82a2ff993babf34050387.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.966797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_de12e636a686f71e790a0109.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.774902;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;}
.m4{transform:matrix(0.000000,-0.248557,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248557,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248557,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(0.251451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251451,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258638,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);}
.v11{vertical-align:-122.820000px;}
.v8{vertical-align:-85.440000px;}
.v14{vertical-align:-60.300000px;}
.v7{vertical-align:-49.500000px;}
.v15{vertical-align:-40.500000px;}
.vd{vertical-align:-36.180000px;}
.v5{vertical-align:-27.000000px;}
.vb{vertical-align:-22.500000px;}
.v12{vertical-align:-20.250000px;}
.v1{vertical-align:-17.940000px;}
.v10{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.500000px;}
.vc{vertical-align:22.500000px;}
.v3{vertical-align:27.000000px;}
.ve{vertical-align:31.500000px;}
.v9{vertical-align:35.940000px;}
.v13{vertical-align:39.000000px;}
.v2{vertical-align:44.940000px;}
.v6{vertical-align:49.500000px;}
.vf{vertical-align:54.000000px;}
.va{vertical-align:85.440000px;}
.lsae{letter-spacing:-9.000000px;}
.ls6b{letter-spacing:-8.640000px;}
.lsc7{letter-spacing:-7.620000px;}
.lsc5{letter-spacing:-7.560000px;}
.ls64{letter-spacing:-4.314000px;}
.ls1c{letter-spacing:-2.928000px;}
.lsac{letter-spacing:-2.316000px;}
.ls59{letter-spacing:-2.124000px;}
.ls7e{letter-spacing:-2.016000px;}
.ls5a{letter-spacing:-1.974000px;}
.ls7d{letter-spacing:-1.908000px;}
.ls57{letter-spacing:-1.902000px;}
.ls62{letter-spacing:-1.866000px;}
.ls49{letter-spacing:-1.710000px;}
.ls47{letter-spacing:-1.668000px;}
.ls70{letter-spacing:-1.632000px;}
.ls6f{letter-spacing:-1.584000px;}
.ls4a{letter-spacing:-1.560000px;}
.lsb4{letter-spacing:-1.524000px;}
.ls1b{letter-spacing:-1.500000px;}
.lsa0{letter-spacing:-1.488000px;}
.ls7c{letter-spacing:-1.482000px;}
.ls93{letter-spacing:-1.476000px;}
.ls3{letter-spacing:-1.470000px;}
.ls46{letter-spacing:-1.404000px;}
.ls58{letter-spacing:-1.398000px;}
.ls6a{letter-spacing:-1.350000px;}
.lsb8{letter-spacing:-1.326000px;}
.ls5{letter-spacing:-1.320000px;}
.ls89{letter-spacing:-1.272000px;}
.ls8{letter-spacing:-1.266000px;}
.ls44{letter-spacing:-1.254000px;}
.lsc{letter-spacing:-1.200000px;}
.lsa1{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-1.008000px;}
.lsb1{letter-spacing:-0.960000px;}
.ls38{letter-spacing:-0.840000px;}
.ls87{letter-spacing:-0.834000px;}
.ls4{letter-spacing:-0.738000px;}
.ls45{letter-spacing:-0.702000px;}
.ls34{letter-spacing:-0.690000px;}
.ls48{letter-spacing:-0.586200px;}
.ls9f{letter-spacing:-0.506400px;}
.ls92{letter-spacing:-0.185135px;}
.ls69{letter-spacing:-0.140400px;}
.lsab{letter-spacing:-0.137400px;}
.ls36{letter-spacing:-0.131400px;}
.lsa6{letter-spacing:-0.119400px;}
.lsa5{letter-spacing:-0.105600px;}
.ls8e{letter-spacing:-0.088813px;}
.lsa8{letter-spacing:-0.075000px;}
.ls8f{letter-spacing:-0.042034px;}
.ls88{letter-spacing:-0.037500px;}
.lsa7{letter-spacing:-0.036000px;}
.ls37{letter-spacing:-0.031500px;}
.ls98{letter-spacing:-0.018480px;}
.lsa9{letter-spacing:-0.018000px;}
.lsbf{letter-spacing:-0.013920px;}
.lsad{letter-spacing:-0.009420px;}
.ls0{letter-spacing:0.000000px;}
.lsaa{letter-spacing:0.012600px;}
.ls9d{letter-spacing:0.014700px;}
.lsa4{letter-spacing:0.018000px;}
.ls1f{letter-spacing:0.018420px;}
.ls9b{letter-spacing:0.031500px;}
.lsb2{letter-spacing:0.046050px;}
.ls42{letter-spacing:0.047100px;}
.lsbb{letter-spacing:0.048600px;}
.ls8c{letter-spacing:0.068176px;}
.ls77{letter-spacing:0.084000px;}
.ls9{letter-spacing:0.091800px;}
.ls60{letter-spacing:0.099600px;}
.ls14{letter-spacing:0.108600px;}
.ls35{letter-spacing:0.118200px;}
.lsc4{letter-spacing:0.131400px;}
.lsc1{letter-spacing:0.138600px;}
.ls54{letter-spacing:0.139200px;}
.lsa2{letter-spacing:0.154050px;}
.ls5e{letter-spacing:0.168000px;}
.ls10{letter-spacing:0.168600px;}
.ls90{letter-spacing:0.182407px;}
.ls7{letter-spacing:0.183600px;}
.ls76{letter-spacing:0.204000px;}
.ls43{letter-spacing:0.216300px;}
.ls1e{letter-spacing:0.222000px;}
.ls9e{letter-spacing:0.222300px;}
.ls91{letter-spacing:0.235595px;}
.ls23{letter-spacing:0.252000px;}
.ls4d{letter-spacing:0.253800px;}
.lse{letter-spacing:0.284550px;}
.ls27{letter-spacing:0.288600px;}
.ls3f{letter-spacing:0.303000px;}
.ls18{letter-spacing:0.303600px;}
.ls97{letter-spacing:0.315600px;}
.ls8a{letter-spacing:0.332025px;}
.ls2{letter-spacing:0.333600px;}
.ls4f{letter-spacing:0.343800px;}
.ls56{letter-spacing:0.348000px;}
.ls21{letter-spacing:0.348600px;}
.ls20{letter-spacing:0.372000px;}
.lsd{letter-spacing:0.384600px;}
.ls16{letter-spacing:0.426000px;}
.ls71{letter-spacing:0.432000px;}
.ls5d{letter-spacing:0.439200px;}
.ls7a{letter-spacing:0.468000px;}
.ls6{letter-spacing:0.499950px;}
.ls96{letter-spacing:0.501000px;}
.ls3d{letter-spacing:0.509100px;}
.ls7b{letter-spacing:0.534600px;}
.ls84{letter-spacing:0.549600px;}
.ls50{letter-spacing:0.567600px;}
.ls2a{letter-spacing:0.567900px;}
.ls78{letter-spacing:0.576000px;}
.ls52{letter-spacing:0.589200px;}
.ls6d{letter-spacing:0.602700px;}
.ls79{letter-spacing:0.618000px;}
.lsc6{letter-spacing:0.620400px;}
.lsc0{letter-spacing:0.624600px;}
.ls2f{letter-spacing:0.648000px;}
.ls7f{letter-spacing:0.654600px;}
.ls22{letter-spacing:0.662700px;}
.ls2c{letter-spacing:0.687300px;}
.ls26{letter-spacing:0.690000px;}
.lsbc{letter-spacing:0.701550px;}
.ls28{letter-spacing:0.708000px;}
.ls81{letter-spacing:0.729000px;}
.ls33{letter-spacing:0.732000px;}
.lsbd{letter-spacing:0.761550px;}
.ls12{letter-spacing:0.762000px;}
.ls2d{letter-spacing:0.768000px;}
.ls17{letter-spacing:0.771600px;}
.ls25{letter-spacing:0.774600px;}
.ls6c{letter-spacing:0.782700px;}
.ls83{letter-spacing:0.810000px;}
.ls9c{letter-spacing:0.820950px;}
.ls1d{letter-spacing:0.840000px;}
.ls6e{letter-spacing:0.842700px;}
.ls1{letter-spacing:0.852000px;}
.ls99{letter-spacing:0.858000px;}
.ls32{letter-spacing:0.876000px;}
.ls29{letter-spacing:0.888000px;}
.ls1a{letter-spacing:0.900000px;}
.ls5b{letter-spacing:0.954000px;}
.ls39{letter-spacing:0.972000px;}
.lsf{letter-spacing:1.002000px;}
.ls5c{letter-spacing:1.034400px;}
.ls51{letter-spacing:1.182450px;}
.lsb5{letter-spacing:1.242600px;}
.lsbe{letter-spacing:1.297800px;}
.ls4e{letter-spacing:1.302450px;}
.lsc3{letter-spacing:1.325100px;}
.ls53{letter-spacing:1.326000px;}
.lsc2{letter-spacing:1.362300px;}
.ls30{letter-spacing:1.374000px;}
.ls31{letter-spacing:1.419750px;}
.lsaf{letter-spacing:1.434000px;}
.ls82{letter-spacing:1.458000px;}
.ls24{letter-spacing:1.482300px;}
.ls40{letter-spacing:1.512000px;}
.ls95{letter-spacing:1.524000px;}
.ls2b{letter-spacing:1.542300px;}
.lsb3{letter-spacing:1.584000px;}
.ls3e{letter-spacing:1.590000px;}
.ls9a{letter-spacing:1.608000px;}
.ls13{letter-spacing:1.662000px;}
.lsb6{letter-spacing:1.666500px;}
.lsb0{letter-spacing:1.920000px;}
.ls63{letter-spacing:1.974000px;}
.lsb7{letter-spacing:1.992000px;}
.ls66{letter-spacing:2.124000px;}
.ls67{letter-spacing:2.196000px;}
.ls3c{letter-spacing:2.304000px;}
.ls41{letter-spacing:2.340000px;}
.ls68{letter-spacing:2.346000px;}
.ls72{letter-spacing:2.376000px;}
.ls65{letter-spacing:2.490000px;}
.lsa3{letter-spacing:2.520000px;}
.ls3b{letter-spacing:3.012000px;}
.ls3a{letter-spacing:3.126000px;}
.ls19{letter-spacing:3.318000px;}
.ls74{letter-spacing:4.753710px;}
.ls55{letter-spacing:21.027150px;}
.ls8b{letter-spacing:22.258307px;}
.ls86{letter-spacing:24.562500px;}
.ls5f{letter-spacing:24.841800px;}
.ls11{letter-spacing:27.384300px;}
.ls15{letter-spacing:27.666000px;}
.ls2e{letter-spacing:27.807300px;}
.ls80{letter-spacing:30.035550px;}
.ls73{letter-spacing:32.181300px;}
.ls75{letter-spacing:34.042607px;}
.ls61{letter-spacing:49.561800px;}
.ls94{letter-spacing:65.122500px;}
.ls4c{letter-spacing:76.770000px;}
.ls4b{letter-spacing:76.822500px;}
.lsb9{letter-spacing:92.542500px;}
.lsba{letter-spacing:97.297500px;}
.lsa{letter-spacing:101.722500px;}
.ls85{letter-spacing:119.302500px;}
.ls8d{letter-spacing:160.818951px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,0),0 0.015em rgb(255,255,0),0.015em 0 rgb(255,255,0),0 -0.015em  rgb(255,255,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7e{word-spacing:-180.150000px;}
.ws9{word-spacing:-146.006700px;}
.ws68{word-spacing:-108.150000px;}
.ws6b{word-spacing:-81.150000px;}
.ws6a{word-spacing:-77.879700px;}
.ws76{word-spacing:-59.382603px;}
.ws57{word-spacing:-55.275600px;}
.ws79{word-spacing:-53.876400px;}
.ws5c{word-spacing:-53.834700px;}
.ws7c{word-spacing:-50.081700px;}
.ws8c{word-spacing:-48.320700px;}
.ws8e{word-spacing:-47.995200px;}
.ws8d{word-spacing:-46.328700px;}
.ws77{word-spacing:-43.826700px;}
.wse{word-spacing:-40.925700px;}
.wsf{word-spacing:-40.073700px;}
.ws3f{word-spacing:-38.619600px;}
.ws19{word-spacing:-38.573700px;}
.ws69{word-spacing:-38.353650px;}
.ws18{word-spacing:-38.030400px;}
.ws12{word-spacing:-36.075000px;}
.ws13{word-spacing:-36.037500px;}
.ws14{word-spacing:-35.637000px;}
.ws89{word-spacing:-34.786200px;}
.wsc{word-spacing:-34.463250px;}
.ws86{word-spacing:-33.831300px;}
.ws7d{word-spacing:-33.818700px;}
.ws85{word-spacing:-33.681300px;}
.ws55{word-spacing:-32.866200px;}
.ws16{word-spacing:-32.370300px;}
.wsa{word-spacing:-31.872300px;}
.ws8a{word-spacing:-31.649700px;}
.ws0{word-spacing:-30.282000px;}
.ws8{word-spacing:-30.065700px;}
.ws90{word-spacing:-30.051780px;}
.ws30{word-spacing:-30.024000px;}
.ws5{word-spacing:-29.957550px;}
.ws36{word-spacing:-29.324700px;}
.ws6{word-spacing:-28.691550px;}
.ws5f{word-spacing:-28.583700px;}
.ws5a{word-spacing:-28.481700px;}
.ws5b{word-spacing:-28.433700px;}
.ws7b{word-spacing:-27.879000px;}
.ws78{word-spacing:-27.836700px;}
.ws4{word-spacing:-27.736200px;}
.ws88{word-spacing:-27.732450px;}
.ws6d{word-spacing:-27.729000px;}
.ws3a{word-spacing:-27.702000px;}
.ws37{word-spacing:-27.686700px;}
.ws93{word-spacing:-27.002700px;}
.ws3c{word-spacing:-26.416200px;}
.ws22{word-spacing:-26.331120px;}
.ws10{word-spacing:-26.312700px;}
.ws3b{word-spacing:-26.298000px;}
.ws7a{word-spacing:-26.294220px;}
.ws1b{word-spacing:-26.271000px;}
.ws3{word-spacing:-26.266200px;}
.ws2a{word-spacing:-26.239500px;}
.ws27{word-spacing:-26.181300px;}
.ws40{word-spacing:-25.684200px;}
.ws5e{word-spacing:-25.672542px;}
.ws1f{word-spacing:-25.622700px;}
.ws2e{word-spacing:-25.472700px;}
.ws81{word-spacing:-25.061700px;}
.ws4a{word-spacing:-24.991800px;}
.ws41{word-spacing:-24.876000px;}
.ws3e{word-spacing:-24.874500px;}
.ws39{word-spacing:-24.841800px;}
.ws87{word-spacing:-24.818700px;}
.ws7{word-spacing:-24.658200px;}
.ws42{word-spacing:-24.624000px;}
.ws82{word-spacing:-23.981700px;}
.ws44{word-spacing:-23.818200px;}
.ws6f{word-spacing:-23.607900px;}
.ws11{word-spacing:-23.052900px;}
.ws38{word-spacing:-22.947000px;}
.ws83{word-spacing:-22.577700px;}
.ws17{word-spacing:-22.497300px;}
.ws8f{word-spacing:-22.440300px;}
.ws43{word-spacing:-21.546000px;}
.ws62{word-spacing:-20.634000px;}
.ws71{word-spacing:-20.606713px;}
.ws64{word-spacing:-20.592300px;}
.ws70{word-spacing:-20.517900px;}
.ws63{word-spacing:-20.484000px;}
.wsd{word-spacing:-20.442300px;}
.ws7f{word-spacing:-20.346300px;}
.ws48{word-spacing:-20.344200px;}
.ws61{word-spacing:-20.057700px;}
.ws60{word-spacing:-20.016000px;}
.ws95{word-spacing:-18.711000px;}
.ws98{word-spacing:-18.692700px;}
.ws8b{word-spacing:-18.533700px;}
.ws2f{word-spacing:-18.486000px;}
.ws2c{word-spacing:-18.443700px;}
.ws73{word-spacing:-16.839784px;}
.ws74{word-spacing:-16.419054px;}
.ws53{word-spacing:-16.018200px;}
.ws6c{word-spacing:-15.300300px;}
.ws47{word-spacing:-15.052200px;}
.ws80{word-spacing:-13.802700px;}
.ws72{word-spacing:-11.915667px;}
.ws4f{word-spacing:-11.320200px;}
.ws50{word-spacing:-11.179800px;}
.ws9a{word-spacing:-8.122200px;}
.ws4e{word-spacing:-6.818250px;}
.ws52{word-spacing:-6.488250px;}
.ws4d{word-spacing:-6.308250px;}
.ws67{word-spacing:-4.454850px;}
.ws24{word-spacing:-2.950500px;}
.ws91{word-spacing:-2.784900px;}
.ws5d{word-spacing:-2.308682px;}
.ws2{word-spacing:-1.000800px;}
.ws1d{word-spacing:-0.613500px;}
.ws1c{word-spacing:-0.460800px;}
.ws1a{word-spacing:-0.291000px;}
.wsb{word-spacing:-0.166650px;}
.ws1{word-spacing:0.000000px;}
.ws45{word-spacing:0.050400px;}
.ws54{word-spacing:0.178200px;}
.ws6e{word-spacing:0.725850px;}
.ws32{word-spacing:1.412550px;}
.ws56{word-spacing:1.515300px;}
.ws65{word-spacing:1.937790px;}
.ws25{word-spacing:1.971900px;}
.ws21{word-spacing:2.003250px;}
.ws33{word-spacing:2.045400px;}
.ws1e{word-spacing:2.073150px;}
.ws23{word-spacing:2.083350px;}
.ws20{word-spacing:2.087790px;}
.ws99{word-spacing:2.092500px;}
.ws96{word-spacing:2.152500px;}
.ws58{word-spacing:2.158500px;}
.ws97{word-spacing:2.295000px;}
.ws94{word-spacing:2.311590px;}
.ws34{word-spacing:2.661450px;}
.ws49{word-spacing:2.733900px;}
.ws2b{word-spacing:2.830500px;}
.ws28{word-spacing:2.837820px;}
.ws26{word-spacing:2.841600px;}
.ws29{word-spacing:2.857500px;}
.ws4b{word-spacing:2.883900px;}
.ws59{word-spacing:2.964000px;}
.ws35{word-spacing:3.598350px;}
.ws31{word-spacing:3.717750px;}
.ws51{word-spacing:4.383900px;}
.ws66{word-spacing:4.557300px;}
.ws4c{word-spacing:4.683900px;}
.ws84{word-spacing:25.937400px;}
.ws2d{word-spacing:30.317100px;}
.ws92{word-spacing:52.477200px;}
.ws75{word-spacing:58.473343px;}
.ws46{word-spacing:62.516400px;}
.ws3d{word-spacing:359.976000px;}
.ws15{word-spacing:483.925650px;}
._2c{margin-left:-72.842550px;}
._31{margin-left:-32.796900px;}
._23{margin-left:-24.750000px;}
._10{margin-left:-21.501600px;}
._a{margin-left:-20.396400px;}
._b{margin-left:-17.200200px;}
._15{margin-left:-15.692850px;}
._1f{margin-left:-13.608000px;}
._9{margin-left:-12.515700px;}
._c{margin-left:-11.176200px;}
._d{margin-left:-9.508350px;}
._13{margin-left:-7.992000px;}
._6{margin-left:-6.919200px;}
._8{margin-left:-5.630250px;}
._f{margin-left:-4.623900px;}
._7{margin-left:-3.604650px;}
._0{margin-left:-2.595600px;}
._4{margin-left:-1.514100px;}
._1{width:1.297800px;}
._3{width:2.595600px;}
._2{width:3.677100px;}
._5{width:4.758600px;}
._e{width:6.009000px;}
._12{width:7.231050px;}
._1e{width:8.266650px;}
._11{width:9.649350px;}
._29{width:11.201847px;}
._2a{width:14.377224px;}
._25{width:22.584000px;}
._14{width:23.757900px;}
._1c{width:25.005600px;}
._1b{width:26.440050px;}
._1a{width:27.549000px;}
._2b{width:28.550550px;}
._18{width:29.911500px;}
._28{width:31.220850px;}
._2d{width:33.152550px;}
._20{width:39.527550px;}
._22{width:49.279350px;}
._24{width:50.913900px;}
._33{width:57.542250px;}
._21{width:76.990050px;}
._32{width:83.259750px;}
._2f{width:99.065166px;}
._2e{width:119.912466px;}
._19{width:135.932550px;}
._30{width:207.252300px;}
._1d{width:631.635150px;}
._17{width:644.009250px;}
._27{width:863.580000px;}
._16{width:1651.505250px;}
._26{width:1913.932800px;}
.fc22{color:rgb(3,7,13);}
.fc20{color:rgb(149,71,6);}
.fc1f{color:rgb(151,56,53);}
.fc1e{color:rgb(112,48,160);}
.fc1d{color:rgb(174,64,189);}
.fc11{color:rgb(150,218,242);}
.fc9{color:rgb(0,0,255);}
.fc17{color:rgb(101,29,50);}
.fcb{color:rgb(18,10,182);}
.fc8{color:rgb(51,51,204);}
.fc6{color:rgb(255,255,0);}
.fc7{color:rgb(255,51,0);}
.fc5{color:rgb(105,100,100);}
.fcd{color:rgb(102,255,51);}
.fcc{color:rgb(102,51,0);}
.fc2{color:rgb(255,0,0);}
.fca{color:rgb(191,191,191);}
.fc4{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc1b{color:rgb(17,24,217);}
.fc1{color:rgb(221,223,229);}
.fc0{color:rgb(255,255,255);}
.fc19{color:rgb(194,252,228);}
.fce{color:rgb(181,125,153);}
.fc1c{color:rgb(55,55,204);}
.fcf{color:rgb(255,255,102);}
.fc10{color:rgb(45,45,185);}
.fc16{color:rgb(0,176,80);}
.fc21{color:rgb(115,55,84);}
.fc12{color:rgb(0,176,240);}
.fc14{color:rgb(147,209,82);}
.fc13{color:rgb(146,208,80);}
.fc1a{color:rgb(192,0,0);}
.fc15{color:rgb(17,5,103);}
.fc18{color:rgb(204,255,0);}
.fs1b{font-size:30.783174px;}
.fs22{font-size:42.205972px;}
.fs1a{font-size:49.650000px;}
.fs20{font-size:52.348758px;}
.fs2{font-size:58.650000px;}
.fs23{font-size:59.382603px;}
.fs21{font-size:59.727298px;}
.fs1d{font-size:59.988764px;}
.fs12{font-size:63.000000px;}
.fs11{font-size:63.150000px;}
.fse{font-size:72.000000px;}
.fsf{font-size:72.150000px;}
.fs1f{font-size:74.124865px;}
.fs25{font-size:76.052017px;}
.fs28{font-size:81.000000px;}
.fs1e{font-size:81.150000px;}
.fs27{font-size:85.650000px;}
.fs26{font-size:90.150000px;}
.fs1c{font-size:92.347272px;}
.fs10{font-size:94.500000px;}
.fsb{font-size:94.650000px;}
.fsa{font-size:108.000000px;}
.fs3{font-size:108.150000px;}
.fs19{font-size:112.650000px;}
.fs18{font-size:121.500000px;}
.fs9{font-size:121.650000px;}
.fs1{font-size:144.150000px;}
.fs5{font-size:144.300000px;}
.fs6{font-size:157.650000px;}
.fs7{font-size:157.800000px;}
.fs4{font-size:166.650000px;}
.fsc{font-size:166.800000px;}
.fs24{font-size:180.150000px;}
.fs14{font-size:193.650000px;}
.fs15{font-size:193.800000px;}
.fs13{font-size:216.150000px;}
.fs0{font-size:216.300000px;}
.fs16{font-size:238.650000px;}
.fs8{font-size:238.800000px;}
.fs17{font-size:324.450000px;}
.fsd{font-size:527.100000px;}
.y170{bottom:-14.630404px;}
.y0{bottom:0.000000px;}
.y16f{bottom:2.225151px;}
.y146{bottom:3.692738px;}
.y1d4{bottom:4.125000px;}
.y78{bottom:11.587500px;}
.y171{bottom:14.495652px;}
.y147{bottom:15.069251px;}
.y15a{bottom:16.575000px;}
.y245{bottom:18.487500px;}
.y5f{bottom:19.612500px;}
.y195{bottom:22.237500px;}
.y200{bottom:22.350000px;}
.yc4{bottom:22.837500px;}
.y22c{bottom:23.100000px;}
.y13e{bottom:27.487500px;}
.y2{bottom:28.912500px;}
.y1a3{bottom:29.362500px;}
.y192{bottom:32.437500px;}
.yd8{bottom:35.925000px;}
.y1d3{bottom:36.787500px;}
.ycf{bottom:39.000000px;}
.y172{bottom:42.742050px;}
.y19f{bottom:43.687500px;}
.y15{bottom:44.062500px;}
.y77{bottom:44.250000px;}
.y19{bottom:45.337500px;}
.y6d{bottom:49.725000px;}
.y244{bottom:50.025000px;}
.y73{bottom:51.000000px;}
.y194{bottom:51.525000px;}
.ycd{bottom:52.687500px;}
.y186{bottom:53.737500px;}
.y4f{bottom:53.925000px;}
.y1ff{bottom:54.225000px;}
.y47{bottom:54.375000px;}
.y137{bottom:57.450000px;}
.y1a2{bottom:57.525000px;}
.y154{bottom:58.350000px;}
.y13d{bottom:60.150000px;}
.y191{bottom:61.687500px;}
.yb1{bottom:61.837500px;}
.y1be{bottom:64.800000px;}
.y18b{bottom:66.412500px;}
.y25f{bottom:67.425000px;}
.y1d2{bottom:69.450000px;}
.y153{bottom:69.525000px;}
.y19e{bottom:72.975000px;}
.y101{bottom:74.025000px;}
.y173{bottom:74.401981px;}
.yc3{bottom:76.162500px;}
.ycc{bottom:77.475000px;}
.y266{bottom:77.625000px;}
.y243{bottom:79.275000px;}
.y216{bottom:79.387500px;}
.y32{bottom:79.500000px;}
.y193{bottom:79.687500px;}
.y9e{bottom:81.262500px;}
.y164{bottom:83.025000px;}
.y72{bottom:83.662500px;}
.y6{bottom:83.775000px;}
.y1ea{bottom:84.112500px;}
.y199{bottom:85.462500px;}
.y8c{bottom:85.875000px;}
.y136{bottom:86.737500px;}
.y152{bottom:90.900000px;}
.y190{bottom:90.975000px;}
.yb0{bottom:91.087500px;}
.y68{bottom:93.000000px;}
.y182{bottom:94.350000px;}
.y18a{bottom:94.575000px;}
.yf5{bottom:98.100000px;}
.y25e{bottom:100.087500px;}
.y19d{bottom:101.137500px;}
.ycb{bottom:103.387500px;}
.y1d0{bottom:104.475000px;}
.yc2{bottom:105.450000px;}
.y174{bottom:106.083946px;}
.y143{bottom:106.162500px;}
.y100{bottom:106.687500px;}
.y242{bottom:108.562500px;}
.y9d{bottom:110.550000px;}
.y5a{bottom:111.825000px;}
.y1af{bottom:112.575000px;}
.y1a5{bottom:113.475000px;}
.y135{bottom:114.862500px;}
.y8b{bottom:115.162500px;}
.y46{bottom:115.425000px;}
.y163{bottom:115.687500px;}
.y122{bottom:116.137500px;}
.y71{bottom:116.325000px;}
.y5{bottom:116.437500px;}
.y198{bottom:118.125000px;}
.y18f{bottom:119.137500px;}
.y23{bottom:119.887500px;}
.y1e9{bottom:120.187500px;}
.yaf{bottom:120.375000px;}
.y185{bottom:121.575000px;}
.y1f5{bottom:122.775000px;}
.y158{bottom:122.887500px;}
.y1fe{bottom:126.337500px;}
.yca{bottom:128.175000px;}
.y25d{bottom:128.250000px;}
.y157{bottom:128.400000px;}
.y134{bottom:128.737500px;}
.y1e{bottom:130.950000px;}
.yb{bottom:132.937500px;}
.yc1{bottom:133.612500px;}
.y165{bottom:134.031000px;}
.y11e{bottom:135.075000px;}
.y145{bottom:135.539715px;}
.y5c{bottom:135.637500px;}
.y241{bottom:136.725000px;}
.y175{bottom:137.787097px;}
.y9c{bottom:138.712500px;}
.y142{bottom:138.825000px;}
.yff{bottom:139.350000px;}
.y1cf{bottom:140.512500px;}
.y224{bottom:142.275000px;}
.y67{bottom:143.400000px;}
.y121{bottom:144.300000px;}
.y8a{bottom:144.450000px;}
.y215{bottom:144.712500px;}
.y36{bottom:145.200000px;}
.yd7{bottom:147.450000px;}
.y162{bottom:148.350000px;}
.yae{bottom:148.537500px;}
.ye3{bottom:149.812500px;}
.y1b0{bottom:151.470000px;}
.y1b1{bottom:152.670000px;}
.y249{bottom:152.850000px;}
.yea{bottom:154.620000px;}
.y16e{bottom:155.524252px;}
.y1e8{bottom:156.225000px;}
.yc9{bottom:157.455000px;}
.y25c{bottom:157.530000px;}
.y116{bottom:157.875000px;}
.y1f4{bottom:158.805000px;}
.y2b{bottom:158.925000px;}
.y17a{bottom:159.375000px;}
.y16a{bottom:160.253029px;}
.y139{bottom:161.370000px;}
.y133{bottom:161.400000px;}
.y1fd{bottom:162.375000px;}
.y56{bottom:163.875000px;}
.y240{bottom:166.005000px;}
.y9b{bottom:167.955000px;}
.y159{bottom:168.675000px;}
.y11d{bottom:169.995000px;}
.y11{bottom:171.750000px;}
.yfe{bottom:172.005000px;}
.y89{bottom:172.605000px;}
.yf4{bottom:174.255000px;}
.y223{bottom:174.930000px;}
.y1d{bottom:175.980000px;}
.y1ce{bottom:176.550000px;}
.yc0{bottom:176.970000px;}
.y214{bottom:177.375000px;}
.yad{bottom:177.825000px;}
.y20b{bottom:180.075000px;}
.y248{bottom:185.505000px;}
.y25b{bottom:185.700000px;}
.y115{bottom:190.530000px;}
.ye9{bottom:190.650000px;}
.y1e7{bottom:192.255000px;}
.y23f{bottom:194.175000px;}
.y1f3{bottom:194.850000px;}
.y179{bottom:195.405000px;}
.y9a{bottom:196.125000px;}
.y1fc{bottom:198.420000px;}
.y16b{bottom:198.422233px;}
.y55{bottom:198.780000px;}
.yc8{bottom:199.125000px;}
.y88{bottom:201.900000px;}
.y2a{bottom:202.845000px;}
.yd6{bottom:203.775000px;}
.yac{bottom:205.995000px;}
.ybf{bottom:206.250000px;}
.y222{bottom:207.600000px;}
.y1cd{bottom:212.595000px;}
.y25a{bottom:214.950000px;}
.ye2{bottom:215.130000px;}
.y247{bottom:218.175000px;}
.y1aa{bottom:220.080000px;}
.y114{bottom:223.200000px;}
.y23e{bottom:223.455000px;}
.y1ae{bottom:225.330000px;}
.y99{bottom:225.420000px;}
.y45{bottom:228.030000px;}
.y1e6{bottom:228.300000px;}
.y213{bottom:229.095000px;}
.y87{bottom:230.070000px;}
.ybe{bottom:234.405000px;}
.y1fb{bottom:234.450000px;}
.y54{bottom:234.825000px;}
.yab{bottom:235.275000px;}
.y16c{bottom:240.091411px;}
.y221{bottom:240.255000px;}
.y1a{bottom:241.320000px;}
.y1a9{bottom:241.470000px;}
.y259{bottom:244.245000px;}
.y178{bottom:246.525000px;}
.y1cc{bottom:248.625000px;}
.y23d{bottom:252.750000px;}
.y66{bottom:253.530000px;}
.y64{bottom:253.725000px;}
.y98{bottom:254.700000px;}
.yf3{bottom:255.570000px;}
.y113{bottom:255.870000px;}
.y86{bottom:259.350000px;}
.yd5{bottom:260.070000px;}
.ye8{bottom:262.725000px;}
.y151{bottom:263.595000px;}
.yfd{bottom:263.925000px;}
.y42{bottom:264.300000px;}
.y1e5{bottom:264.345000px;}
.yaa{bottom:264.570000px;}
.y1f2{bottom:266.925000px;}
.y4c{bottom:267.525000px;}
.y220{bottom:271.800000px;}
.y53{bottom:271.980000px;}
.y258{bottom:272.400000px;}
.ybd{bottom:279.780000px;}
.ye1{bottom:280.470000px;}
.y23c{bottom:280.920000px;}
.y16d{bottom:281.760589px;}
.y65{bottom:282.825000px;}
.y97{bottom:282.870000px;}
.y63{bottom:283.020000px;}
.y10{bottom:283.245000px;}
.y5e{bottom:283.575000px;}
.y1cb{bottom:284.670000px;}
.y11c{bottom:285.780000px;}
.y150{bottom:286.125000px;}
.y20a{bottom:287.070000px;}
.y112{bottom:288.525000px;}
.y85{bottom:288.630000px;}
.y4b{bottom:288.900000px;}
.y75{bottom:289.575000px;}
.y148{bottom:291.811797px;}
.y12d{bottom:292.350000px;}
.ya9{bottom:292.725000px;}
.y181{bottom:294.645000px;}
.y41{bottom:295.830000px;}
.y1e4{bottom:300.375000px;}
.y1f{bottom:301.005000px;}
.y257{bottom:301.695000px;}
.y1f1{bottom:302.955000px;}
.y21f{bottom:304.455000px;}
.y166{bottom:306.031591px;}
.y1fa{bottom:306.525000px;}
.yfc{bottom:306.720000px;}
.ybc{bottom:309.075000px;}
.y31{bottom:309.300000px;}
.y23b{bottom:310.200000px;}
.y4a{bottom:310.320000px;}
.y35{bottom:311.445000px;}
.y96{bottom:312.150000px;}
.y1bd{bottom:312.855000px;}
.y15c{bottom:313.845000px;}
.yd4{bottom:316.380000px;}
.y84{bottom:316.770000px;}
.y11b{bottom:318.450000px;}
.y209{bottom:318.600000px;}
.y111{bottom:320.070000px;}
.y1ca{bottom:320.700000px;}
.y12c{bottom:321.600000px;}
.y5b{bottom:321.675000px;}
.ya8{bottom:322.020000px;}
.y74{bottom:322.245000px;}
.y40{bottom:327.375000px;}
.y29{bottom:328.725000px;}
.y256{bottom:329.850000px;}
.y212{bottom:330.450000px;}
.y180{bottom:330.675000px;}
.yf2{bottom:331.005000px;}
.y49{bottom:331.725000px;}
.ye7{bottom:334.800000px;}
.y21e{bottom:336.000000px;}
.y1e3{bottom:336.405000px;}
.y1bc{bottom:336.525000px;}
.ybb{bottom:337.245000px;}
.y23a{bottom:338.325000px;}
.y1f0{bottom:339.000000px;}
.yf{bottom:339.570000px;}
.y95{bottom:340.320000px;}
.y1f9{bottom:342.570000px;}
.y34{bottom:344.100000px;}
.y167{bottom:344.200796px;}
.ye0{bottom:344.655000px;}
.y83{bottom:346.050000px;}
.y20{bottom:346.095000px;}
.y12b{bottom:349.755000px;}
.ya7{bottom:350.130000px;}
.y14f{bottom:350.400000px;}
.yfb{bottom:350.655000px;}
.y208{bottom:351.255000px;}
.y110{bottom:352.725000px;}
.y48{bottom:353.100000px;}
.y11a{bottom:353.355000px;}
.y1c9{bottom:356.775000px;}
.y132{bottom:358.050000px;}
.y3f{bottom:358.920000px;}
.y255{bottom:359.145000px;}
.y1bb{bottom:361.320000px;}
.y4{bottom:365.070000px;}
.y21d{bottom:366.405000px;}
.yba{bottom:366.525000px;}
.y17f{bottom:366.705000px;}
.y239{bottom:367.620000px;}
.y94{bottom:369.600000px;}
.y6c{bottom:371.400000px;}
.y14e{bottom:371.820000px;}
.y1e2{bottom:372.450000px;}
.y265{bottom:372.900000px;}
.y82{bottom:374.220000px;}
.y1ef{bottom:375.030000px;}
.y13c{bottom:375.570000px;}
.y33{bottom:376.755000px;}
.y1a7{bottom:378.345000px;}
.y12a{bottom:379.050000px;}
.ya6{bottom:379.425000px;}
.y211{bottom:381.150000px;}
.y70{bottom:381.750000px;}
.y207{bottom:383.925000px;}
.y10f{bottom:385.380000px;}
.y168{bottom:385.869974px;}
.y1ba{bottom:386.070000px;}
.y254{bottom:388.425000px;}
.y3e{bottom:390.450000px;}
.y131{bottom:390.720000px;}
.y1c8{bottom:392.820000px;}
.ya{bottom:393.105000px;}
.y14d{bottom:393.225000px;}
.yfa{bottom:393.450000px;}
.ydb{bottom:393.975000px;}
.y62{bottom:394.350000px;}
.ye{bottom:394.725000px;}
.yb9{bottom:395.775000px;}
.y238{bottom:396.900000px;}
.y3{bottom:397.725000px;}
.y177{bottom:397.845000px;}
.y21c{bottom:397.950000px;}
.y93{bottom:398.880000px;}
.y28{bottom:401.505000px;}
.y264{bottom:402.195000px;}
.y59{bottom:402.750000px;}
.y81{bottom:403.500000px;}
.yf1{bottom:406.470000px;}
.ye6{bottom:406.875000px;}
.y129{bottom:408.345000px;}
.y1e1{bottom:408.495000px;}
.ya5{bottom:408.720000px;}
.y1b9{bottom:409.725000px;}
.ydf{bottom:409.980000px;}
.y1a6{bottom:411.000000px;}
.y1ee{bottom:411.075000px;}
.y14c{bottom:414.600000px;}
.y1f8{bottom:414.630000px;}
.y6b{bottom:415.350000px;}
.y206{bottom:416.595000px;}
.y188{bottom:417.780000px;}
.y10e{bottom:418.050000px;}
.y3d{bottom:421.995000px;}
.yb8{bottom:423.945000px;}
.y237{bottom:425.070000px;}
.yd3{bottom:426.750000px;}
.y92{bottom:427.005000px;}
.y169{bottom:427.539151px;}
.y1c7{bottom:428.850000px;}
.y21b{bottom:430.620000px;}
.y210{bottom:430.695000px;}
.y263{bottom:431.475000px;}
.y80{bottom:432.780000px;}
.y27{bottom:434.175000px;}
.y1b8{bottom:434.505000px;}
.y9{bottom:435.945000px;}
.y128{bottom:436.500000px;}
.ya4{bottom:436.875000px;}
.y30{bottom:439.125000px;}
.y17{bottom:443.505000px;}
.y1e0{bottom:444.570000px;}
.y58{bottom:445.575000px;}
.y253{bottom:445.875000px;}
.y1ed{bottom:447.150000px;}
.y10d{bottom:450.705000px;}
.y106{bottom:450.945000px;}
.y44{bottom:451.050000px;}
.yb7{bottom:453.225000px;}
.y236{bottom:454.350000px;}
.y91{bottom:456.300000px;}
.y1b7{bottom:458.175000px;}
.y262{bottom:459.630000px;}
.y7a{bottom:459.870000px;}
.y7f{bottom:460.950000px;}
.y119{bottom:462.225000px;}
.y17e{bottom:464.400000px;}
.y1c6{bottom:464.880000px;}
.y21a{bottom:465.525000px;}
.y127{bottom:465.780000px;}
.ya3{bottom:466.155000px;}
.y26{bottom:466.830000px;}
.y141{bottom:469.455000px;}
.y2f{bottom:471.780000px;}
.y252{bottom:474.000000px;}
.yde{bottom:474.195000px;}
.yf9{bottom:480.195000px;}
.y105{bottom:480.225000px;}
.y1df{bottom:480.600000px;}
.y205{bottom:480.795000px;}
.yb6{bottom:481.380000px;}
.y10c{bottom:482.250000px;}
.y235{bottom:482.505000px;}
.y1b6{bottom:482.925000px;}
.yd2{bottom:483.075000px;}
.y1ec{bottom:483.195000px;}
.y90{bottom:484.455000px;}
.y3c{bottom:486.195000px;}
.y1f7{bottom:486.750000px;}
.y261{bottom:487.800000px;}
.y7e{bottom:490.245000px;}
.y79{bottom:492.525000px;}
.y126{bottom:493.950000px;}
.ya2{bottom:494.325000px;}
.y52{bottom:494.400000px;}
.y118{bottom:494.880000px;}
.y25{bottom:499.500000px;}
.y17d{bottom:500.445000px;}
.y1c5{bottom:500.925000px;}
.y61{bottom:502.380000px;}
.y251{bottom:503.280000px;}
.y1{bottom:503.550000px;}
.y2e{bottom:504.450000px;}
.y21{bottom:506.580000px;}
.yd{bottom:507.375000px;}
.y1b5{bottom:507.720000px;}
.y104{bottom:509.505000px;}
.yb5{bottom:510.675000px;}
.y260{bottom:511.425000px;}
.y234{bottom:511.800000px;}
.y204{bottom:513.450000px;}
.y8f{bottom:513.750000px;}
.y10b{bottom:514.905000px;}
.y1de{bottom:516.630000px;}
.y3b{bottom:517.725000px;}
.y7d{bottom:518.400000px;}
.yc7{bottom:519.225000px;}
.y5d{bottom:521.775000px;}
.y1f6{bottom:522.795000px;}
.yf8{bottom:522.975000px;}
.y125{bottom:523.245000px;}
.ya1{bottom:523.620000px;}
.y16{bottom:524.595000px;}
.y13b{bottom:527.880000px;}
.y1ad{bottom:528.300000px;}
.y117{bottom:529.800000px;}
.y219{bottom:530.505000px;}
.y1b4{bottom:531.375000px;}
.y20f{bottom:532.050000px;}
.y250{bottom:532.575000px;}
.yed{bottom:533.655000px;}
.y17c{bottom:536.475000px;}
.y1c4{bottom:536.955000px;}
.y2d{bottom:537.120000px;}
.yd1{bottom:539.400000px;}
.ydd{bottom:539.505000px;}
.yb4{bottom:539.970000px;}
.y233{bottom:541.080000px;}
.y103{bottom:542.175000px;}
.y51{bottom:542.655000px;}
.y8e{bottom:543.045000px;}
.y176{bottom:543.375000px;}
.y203{bottom:546.120000px;}
.y10a{bottom:547.575000px;}
.y7c{bottom:547.695000px;}
.y3a{bottom:549.255000px;}
.y124{bottom:552.525000px;}
.y1dd{bottom:552.675000px;}
.ya0{bottom:552.900000px;}
.y1ac{bottom:555.330000px;}
.y1b3{bottom:556.155000px;}
.yf0{bottom:558.525000px;}
.y13a{bottom:560.550000px;}
.y24f{bottom:560.745000px;}
.y22{bottom:562.320000px;}
.y1d5{bottom:562.500000px;}
.yc{bottom:562.545000px;}
.y218{bottom:566.550000px;}
.yf7{bottom:566.880000px;}
.yb3{bottom:568.125000px;}
.y232{bottom:569.220000px;}
.y2c{bottom:569.775000px;}
.y8d{bottom:571.200000px;}
.y160{bottom:572.280000px;}
.y1c3{bottom:573.000000px;}
.y102{bottom:574.830000px;}
.y1a0{bottom:575.445000px;}
.y229{bottom:576.450000px;}
.yec{bottom:576.750000px;}
.y7b{bottom:576.945000px;}
.y202{bottom:578.775000px;}
.y1b2{bottom:579.780000px;}
.y109{bottom:580.245000px;}
.y123{bottom:580.650000px;}
.y39{bottom:580.800000px;}
.y9f{bottom:581.025000px;}
.y20e{bottom:582.750000px;}
.y69{bottom:588.255000px;}
.y1dc{bottom:588.720000px;}
.y18e{bottom:589.500000px;}
.y4d{bottom:589.650000px;}
.y24e{bottom:590.025000px;}
.y1eb{bottom:592.425000px;}
.y14b{bottom:593.880000px;}
.y1c{bottom:594.225000px;}
.yd0{bottom:594.570000px;}
.y231{bottom:598.500000px;}
.y217{bottom:602.595000px;}
.ydc{bottom:604.845000px;}
.y1c0{bottom:608.220000px;}
.y1c2{bottom:609.030000px;}
.y8{bottom:609.375000px;}
.y38{bottom:610.095000px;}
.y130{bottom:610.920000px;}
.y201{bottom:611.445000px;}
.y108{bottom:612.900000px;}
.y50{bottom:612.945000px;}
.y140{bottom:615.030000px;}
.y24d{bottom:618.195000px;}
.y156{bottom:618.450000px;}
.yeb{bottom:619.845000px;}
.y187{bottom:622.155000px;}
.y1db{bottom:624.750000px;}
.y19b{bottom:624.870000px;}
.y15f{bottom:626.370000px;}
.y14a{bottom:626.550000px;}
.y230{bottom:626.655000px;}
.yef{bottom:633.975000px;}
.y120{bottom:636.675000px;}
.y15d{bottom:638.025000px;}
.y1b{bottom:639.255000px;}
.y37{bottom:640.500000px;}
.y228{bottom:643.755000px;}
.y144{bottom:644.100000px;}
.y1c1{bottom:645.075000px;}
.y18d{bottom:646.905000px;}
.y24c{bottom:647.475000px;}
.y1d8{bottom:650.100000px;}
.y155{bottom:651.120000px;}
.y1a4{bottom:652.425000px;}
.y197{bottom:654.750000px;}
.y22f{bottom:655.950000px;}
.y60{bottom:659.400000px;}
.y13{bottom:659.595000px;}
.y1da{bottom:660.780000px;}
.y22a{bottom:662.175000px;}
.yda{bottom:663.345000px;}
.y11f{bottom:669.345000px;}
.y227{bottom:671.925000px;}
.y12f{bottom:674.280000px;}
.y1d1{bottom:674.850000px;}
.ye4{bottom:675.300000px;}
.y24b{bottom:676.755000px;}
.y13f{bottom:677.400000px;}
.y15e{bottom:680.400000px;}
.y20d{bottom:682.995000px;}
.y19a{bottom:683.400000px;}
.y22e{bottom:685.245000px;}
.y1d7{bottom:686.130000px;}
.y7{bottom:688.005000px;}
.yf6{bottom:688.380000px;}
.y149{bottom:691.875000px;}
.y138{bottom:693.405000px;}
.y184{bottom:695.775000px;}
.y107{bottom:699.450000px;}
.y226{bottom:701.220000px;}
.yb2{bottom:702.000000px;}
.y17b{bottom:702.600000px;}
.y24a{bottom:704.880000px;}
.yce{bottom:705.300000px;}
.y18c{bottom:705.495000px;}
.y43{bottom:710.625000px;}
.y196{bottom:713.280000px;}
.y22d{bottom:713.400000px;}
.y12{bottom:713.655000px;}
.y14{bottom:719.070000px;}
.y12e{bottom:719.325000px;}
.y1bf{bottom:723.120000px;}
.y1d6{bottom:725.595000px;}
.y15b{bottom:727.695000px;}
.y6a{bottom:729.195000px;}
.ye5{bottom:732.150000px;}
.y18{bottom:733.530000px;}
.y1d9{bottom:733.995000px;}
.yc6{bottom:734.025000px;}
.y22b{bottom:734.595000px;}
.y24{bottom:735.255000px;}
.yd9{bottom:735.405000px;}
.y20c{bottom:735.945000px;}
.y225{bottom:736.125000px;}
.y6f{bottom:739.005000px;}
.y161{bottom:739.155000px;}
.y1ab{bottom:739.245000px;}
.y19c{bottom:739.530000px;}
.y4e{bottom:741.720000px;}
.y189{bottom:742.005000px;}
.y1a8{bottom:744.345000px;}
.yee{bottom:751.125000px;}
.y57{bottom:752.655000px;}
.yc5{bottom:752.745000px;}
.y183{bottom:754.320000px;}
.y1a1{bottom:755.655000px;}
.y6e{bottom:756.450000px;}
.y246{bottom:758.025000px;}
.y76{bottom:778.755000px;}
.h45{height:26.469321px;}
.h4e{height:43.313514px;}
.h2{height:50.430981px;}
.h58{height:53.121094px;}
.h4b{height:53.964929px;}
.h57{height:54.300366px;}
.h1c{height:61.910156px;}
.h1d{height:62.039136px;}
.h4d{height:66.782354px;}
.h59{height:67.770963px;}
.h3c{height:68.798584px;}
.h40{height:68.907788px;}
.h5c{height:69.648926px;}
.h5d{height:69.777905px;}
.h19{height:70.987500px;}
.h26{height:72.259277px;}
.h27{height:72.373975px;}
.h5b{height:73.647290px;}
.h25{height:75.514893px;}
.h5a{height:77.516675px;}
.h13{height:78.626953px;}
.he{height:78.736157px;}
.h4{height:79.633887px;}
.h5e{height:79.792310px;}
.h3{height:81.112500px;}
.h52{height:81.210938px;}
.h1e{height:81.257080px;}
.h42{height:81.323730px;}
.h14{height:81.386060px;}
.h51{height:82.483874px;}
.h50{height:82.500823px;}
.h4f{height:82.504213px;}
.h4c{height:82.517772px;}
.h28{height:82.696729px;}
.h35{height:82.756157px;}
.h3f{height:83.967173px;}
.h3d{height:84.027173px;}
.h3e{height:84.087173px;}
.h46{height:88.094751px;}
.h33{height:88.455322px;}
.h10{height:88.564526px;}
.h2e{height:89.978027px;}
.h2d{height:90.120850px;}
.h18{height:91.237500px;}
.h1b{height:92.865234px;}
.hd{height:92.994214px;}
.h5f{height:93.539136px;}
.h1f{height:94.141626px;}
.h47{height:96.373901px;}
.h2a{height:97.494214px;}
.h23{height:100.651611px;}
.h22{height:100.756348px;}
.h12{height:104.602368px;}
.h39{height:104.945142px;}
.h3a{height:105.054346px;}
.h61{height:105.897905px;}
.h3b{height:106.775171px;}
.h30{height:107.569116px;}
.h16{height:108.112500px;}
.h55{height:108.394043px;}
.h1a{height:114.083643px;}
.h8{height:118.237500px;}
.h9{height:118.350000px;}
.h48{height:118.423901px;}
.h20{height:120.996606px;}
.h11{height:121.325757px;}
.h29{height:121.434961px;}
.h6{height:123.949292px;}
.h7{height:124.078271px;}
.hb{height:124.987500px;}
.h15{height:125.100000px;}
.hc{height:125.312988px;}
.h37{height:131.512280px;}
.h56{height:135.464355px;}
.h53{height:135.557446px;}
.h49{height:140.982495px;}
.h2f{height:141.091699px;}
.h5{height:143.296216px;}
.h36{height:143.425195px;}
.h41{height:145.615723px;}
.h60{height:145.728516px;}
.h21{height:150.925049px;}
.h24{height:152.614014px;}
.h43{height:156.803247px;}
.h34{height:157.363110px;}
.h38{height:157.472314px;}
.h1{height:162.225000px;}
.h2c{height:166.512524px;}
.h54{height:166.641504px;}
.h31{height:178.987500px;}
.ha{height:179.100000px;}
.h2b{height:185.859448px;}
.hf{height:185.988428px;}
.h32{height:243.971191px;}
.h44{height:314.541285px;}
.h17{height:395.325000px;}
.h4a{height:484.767534px;}
.h0{height:810.000000px;}
.w2{width:333.765594px;}
.w3{width:709.871088px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6e{left:3.375000px;}
.x19{left:7.049984px;}
.x6d{left:10.837484px;}
.x1a{left:12.299984px;}
.xa8{left:13.987484px;}
.x8e{left:15.187484px;}
.x75{left:16.574984px;}
.x71{left:18.299984px;}
.x61{left:19.987484px;}
.xd{left:22.387484px;}
.x5a{left:24.337484px;}
.x43{left:26.362484px;}
.x68{left:28.574984px;}
.x72{left:30.637484px;}
.x1b{left:31.649984px;}
.x91{left:35.174984px;}
.x18{left:36.974984px;}
.x9b{left:39.487484px;}
.x56{left:43.574984px;}
.x1d{left:44.587484px;}
.x7a{left:45.680218px;}
.x9d{left:47.962484px;}
.x89{left:49.349984px;}
.x23{left:51.899984px;}
.x4b{left:53.212484px;}
.x5f{left:55.312484px;}
.x64{left:56.699984px;}
.x5b{left:58.124984px;}
.x62{left:60.599984px;}
.x1e{left:63.149984px;}
.x28{left:64.874984px;}
.x51{left:68.737484px;}
.x6{left:70.837484px;}
.x7{left:73.799984px;}
.x7b{left:76.197635px;}
.x1c{left:79.874984px;}
.x1{left:86.662484px;}
.x3c{left:88.312484px;}
.x84{left:90.149984px;}
.x79{left:91.697990px;}
.x7c{left:101.849721px;}
.x57{left:106.049984px;}
.x41{left:109.987484px;}
.x21{left:116.962484px;}
.x8{left:118.762484px;}
.xa1{left:129.637484px;}
.x24{left:139.762484px;}
.x50{left:142.387484px;}
.x34{left:143.699984px;}
.x7e{left:146.549984px;}
.x22{left:150.674984px;}
.x87{left:154.949984px;}
.x5e{left:160.199984px;}
.x54{left:162.974984px;}
.x3{left:167.954984px;}
.x77{left:169.679984px;}
.x12{left:174.299984px;}
.x8f{left:187.619984px;}
.x8a{left:198.224984px;}
.x33{left:199.994984px;}
.x16{left:202.799984px;}
.x97{left:207.494984px;}
.x55{left:208.619984px;}
.x90{left:230.249984px;}
.xa4{left:237.749984px;}
.x11{left:262.199984px;}
.x20{left:264.329984px;}
.x85{left:267.869984px;}
.x4c{left:270.824984px;}
.xb{left:272.549984px;}
.x5d{left:278.399984px;}
.x49{left:279.869984px;}
.x46{left:281.279984px;}
.x6c{left:294.374984px;}
.x39{left:297.224984px;}
.x38{left:300.674984px;}
.x9{left:303.644984px;}
.x4a{left:315.074984px;}
.x78{left:330.119984px;}
.x3f{left:353.549984px;}
.x86{left:356.144984px;}
.x5c{left:359.474984px;}
.x73{left:363.344984px;}
.x40{left:370.799984px;}
.x96{left:374.249984px;}
.x7d{left:375.366854px;}
.x27{left:376.499984px;}
.x2c{left:379.469984px;}
.x2b{left:386.069984px;}
.x37{left:397.724984px;}
.x45{left:398.999984px;}
.x83{left:403.229984px;}
.x42{left:408.119984px;}
.x1f{left:412.619984px;}
.x70{left:419.024984px;}
.x59{left:441.644984px;}
.x15{left:456.749984px;}
.x8b{left:460.574984px;}
.x8c{left:466.619984px;}
.xa2{left:475.499984px;}
.x88{left:482.444984px;}
.x4e{left:487.274984px;}
.x60{left:488.504984px;}
.x4d{left:497.369984px;}
.x98{left:510.824984px;}
.x9f{left:525.254984px;}
.xe{left:529.799984px;}
.x7f{left:533.549984px;}
.x80{left:538.199984px;}
.xa0{left:542.774984px;}
.x8d{left:551.744984px;}
.x74{left:574.379984px;}
.x9a{left:582.149984px;}
.x99{left:597.629984px;}
.x17{left:603.449984px;}
.x9c{left:615.044984px;}
.x95{left:637.394984px;}
.x9e{left:648.254984px;}
.xa6{left:649.424984px;}
.x44{left:655.844984px;}
.x35{left:669.524984px;}
.xa7{left:671.279984px;}
.xa9{left:679.169984px;}
.x3a{left:683.594984px;}
.xa5{left:685.574984px;}
.xa{left:693.404984px;}
.xf{left:694.574984px;}
.x10{left:696.644984px;}
.x81{left:699.524984px;}
.x3d{left:704.024984px;}
.x82{left:705.854984px;}
.x25{left:707.279984px;}
.x66{left:714.299984px;}
.x3b{left:720.194984px;}
.x13{left:723.044984px;}
.x6f{left:725.099984px;}
.x53{left:742.199984px;}
.xc{left:752.504984px;}
.x52{left:754.469984px;}
.x30{left:756.944984px;}
.x2f{left:760.394984px;}
.x65{left:761.879984px;}
.x3e{left:767.294984px;}
.x29{left:768.494984px;}
.x94{left:769.799984px;}
.x2e{left:772.274984px;}
.x2a{left:775.649984px;}
.x26{left:777.524984px;}
.x2d{left:792.374984px;}
.x4f{left:797.474984px;}
.xaa{left:803.399984px;}
.x58{left:805.454984px;}
.x6a{left:808.124984px;}
.x76{left:822.749984px;}
.x14{left:824.549984px;}
.x63{left:825.629984px;}
.x69{left:831.299984px;}
.x93{left:832.499984px;}
.x6b{left:855.149984px;}
.x48{left:867.569984px;}
.x67{left:869.579984px;}
.x2{left:893.579984px;}
.x4{left:910.604984px;}
.x47{left:912.524984px;}
.x32{left:919.124984px;}
.x31{left:927.674984px;}
.x92{left:932.024984px;}
.x36{left:935.099984px;}
.x5{left:938.354984px;}
.xa3{left:956.744984px;}
@media print{
.v11{vertical-align:-109.173333pt;}
.v8{vertical-align:-75.946667pt;}
.v14{vertical-align:-53.600000pt;}
.v7{vertical-align:-44.000000pt;}
.v15{vertical-align:-36.000000pt;}
.vd{vertical-align:-32.160000pt;}
.v5{vertical-align:-24.000000pt;}
.vb{vertical-align:-20.000000pt;}
.v12{vertical-align:-18.000000pt;}
.v1{vertical-align:-15.946667pt;}
.v10{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.000000pt;}
.vc{vertical-align:20.000000pt;}
.v3{vertical-align:24.000000pt;}
.ve{vertical-align:28.000000pt;}
.v9{vertical-align:31.946667pt;}
.v13{vertical-align:34.666667pt;}
.v2{vertical-align:39.946667pt;}
.v6{vertical-align:44.000000pt;}
.vf{vertical-align:48.000000pt;}
.va{vertical-align:75.946667pt;}
.lsae{letter-spacing:-8.000000pt;}
.ls6b{letter-spacing:-7.680000pt;}
.lsc7{letter-spacing:-6.773333pt;}
.lsc5{letter-spacing:-6.720000pt;}
.ls64{letter-spacing:-3.834667pt;}
.ls1c{letter-spacing:-2.602667pt;}
.lsac{letter-spacing:-2.058667pt;}
.ls59{letter-spacing:-1.888000pt;}
.ls7e{letter-spacing:-1.792000pt;}
.ls5a{letter-spacing:-1.754667pt;}
.ls7d{letter-spacing:-1.696000pt;}
.ls57{letter-spacing:-1.690667pt;}
.ls62{letter-spacing:-1.658667pt;}
.ls49{letter-spacing:-1.520000pt;}
.ls47{letter-spacing:-1.482667pt;}
.ls70{letter-spacing:-1.450667pt;}
.ls6f{letter-spacing:-1.408000pt;}
.ls4a{letter-spacing:-1.386667pt;}
.lsb4{letter-spacing:-1.354667pt;}
.ls1b{letter-spacing:-1.333333pt;}
.lsa0{letter-spacing:-1.322667pt;}
.ls7c{letter-spacing:-1.317333pt;}
.ls93{letter-spacing:-1.312000pt;}
.ls3{letter-spacing:-1.306667pt;}
.ls46{letter-spacing:-1.248000pt;}
.ls58{letter-spacing:-1.242667pt;}
.ls6a{letter-spacing:-1.200000pt;}
.lsb8{letter-spacing:-1.178667pt;}
.ls5{letter-spacing:-1.173333pt;}
.ls89{letter-spacing:-1.130667pt;}
.ls8{letter-spacing:-1.125333pt;}
.ls44{letter-spacing:-1.114667pt;}
.lsc{letter-spacing:-1.066667pt;}
.lsa1{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.896000pt;}
.lsb1{letter-spacing:-0.853333pt;}
.ls38{letter-spacing:-0.746667pt;}
.ls87{letter-spacing:-0.741333pt;}
.ls4{letter-spacing:-0.656000pt;}
.ls45{letter-spacing:-0.624000pt;}
.ls34{letter-spacing:-0.613333pt;}
.ls48{letter-spacing:-0.521067pt;}
.ls9f{letter-spacing:-0.450133pt;}
.ls92{letter-spacing:-0.164564pt;}
.ls69{letter-spacing:-0.124800pt;}
.lsab{letter-spacing:-0.122133pt;}
.ls36{letter-spacing:-0.116800pt;}
.lsa6{letter-spacing:-0.106133pt;}
.lsa5{letter-spacing:-0.093867pt;}
.ls8e{letter-spacing:-0.078945pt;}
.lsa8{letter-spacing:-0.066667pt;}
.ls8f{letter-spacing:-0.037363pt;}
.ls88{letter-spacing:-0.033333pt;}
.lsa7{letter-spacing:-0.032000pt;}
.ls37{letter-spacing:-0.028000pt;}
.ls98{letter-spacing:-0.016427pt;}
.lsa9{letter-spacing:-0.016000pt;}
.lsbf{letter-spacing:-0.012373pt;}
.lsad{letter-spacing:-0.008373pt;}
.ls0{letter-spacing:0.000000pt;}
.lsaa{letter-spacing:0.011200pt;}
.ls9d{letter-spacing:0.013067pt;}
.lsa4{letter-spacing:0.016000pt;}
.ls1f{letter-spacing:0.016373pt;}
.ls9b{letter-spacing:0.028000pt;}
.lsb2{letter-spacing:0.040933pt;}
.ls42{letter-spacing:0.041867pt;}
.lsbb{letter-spacing:0.043200pt;}
.ls8c{letter-spacing:0.060601pt;}
.ls77{letter-spacing:0.074667pt;}
.ls9{letter-spacing:0.081600pt;}
.ls60{letter-spacing:0.088533pt;}
.ls14{letter-spacing:0.096533pt;}
.ls35{letter-spacing:0.105067pt;}
.lsc4{letter-spacing:0.116800pt;}
.lsc1{letter-spacing:0.123200pt;}
.ls54{letter-spacing:0.123733pt;}
.lsa2{letter-spacing:0.136933pt;}
.ls5e{letter-spacing:0.149333pt;}
.ls10{letter-spacing:0.149867pt;}
.ls90{letter-spacing:0.162140pt;}
.ls7{letter-spacing:0.163200pt;}
.ls76{letter-spacing:0.181333pt;}
.ls43{letter-spacing:0.192267pt;}
.ls1e{letter-spacing:0.197333pt;}
.ls9e{letter-spacing:0.197600pt;}
.ls91{letter-spacing:0.209418pt;}
.ls23{letter-spacing:0.224000pt;}
.ls4d{letter-spacing:0.225600pt;}
.lse{letter-spacing:0.252933pt;}
.ls27{letter-spacing:0.256533pt;}
.ls3f{letter-spacing:0.269333pt;}
.ls18{letter-spacing:0.269867pt;}
.ls97{letter-spacing:0.280533pt;}
.ls8a{letter-spacing:0.295133pt;}
.ls2{letter-spacing:0.296533pt;}
.ls4f{letter-spacing:0.305600pt;}
.ls56{letter-spacing:0.309333pt;}
.ls21{letter-spacing:0.309867pt;}
.ls20{letter-spacing:0.330667pt;}
.lsd{letter-spacing:0.341867pt;}
.ls16{letter-spacing:0.378667pt;}
.ls71{letter-spacing:0.384000pt;}
.ls5d{letter-spacing:0.390400pt;}
.ls7a{letter-spacing:0.416000pt;}
.ls6{letter-spacing:0.444400pt;}
.ls96{letter-spacing:0.445333pt;}
.ls3d{letter-spacing:0.452533pt;}
.ls7b{letter-spacing:0.475200pt;}
.ls84{letter-spacing:0.488533pt;}
.ls50{letter-spacing:0.504533pt;}
.ls2a{letter-spacing:0.504800pt;}
.ls78{letter-spacing:0.512000pt;}
.ls52{letter-spacing:0.523733pt;}
.ls6d{letter-spacing:0.535733pt;}
.ls79{letter-spacing:0.549333pt;}
.lsc6{letter-spacing:0.551467pt;}
.lsc0{letter-spacing:0.555200pt;}
.ls2f{letter-spacing:0.576000pt;}
.ls7f{letter-spacing:0.581867pt;}
.ls22{letter-spacing:0.589067pt;}
.ls2c{letter-spacing:0.610933pt;}
.ls26{letter-spacing:0.613333pt;}
.lsbc{letter-spacing:0.623600pt;}
.ls28{letter-spacing:0.629333pt;}
.ls81{letter-spacing:0.648000pt;}
.ls33{letter-spacing:0.650667pt;}
.lsbd{letter-spacing:0.676933pt;}
.ls12{letter-spacing:0.677333pt;}
.ls2d{letter-spacing:0.682667pt;}
.ls17{letter-spacing:0.685867pt;}
.ls25{letter-spacing:0.688533pt;}
.ls6c{letter-spacing:0.695733pt;}
.ls83{letter-spacing:0.720000pt;}
.ls9c{letter-spacing:0.729733pt;}
.ls1d{letter-spacing:0.746667pt;}
.ls6e{letter-spacing:0.749067pt;}
.ls1{letter-spacing:0.757333pt;}
.ls99{letter-spacing:0.762667pt;}
.ls32{letter-spacing:0.778667pt;}
.ls29{letter-spacing:0.789333pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls5b{letter-spacing:0.848000pt;}
.ls39{letter-spacing:0.864000pt;}
.lsf{letter-spacing:0.890667pt;}
.ls5c{letter-spacing:0.919467pt;}
.ls51{letter-spacing:1.051067pt;}
.lsb5{letter-spacing:1.104533pt;}
.lsbe{letter-spacing:1.153600pt;}
.ls4e{letter-spacing:1.157733pt;}
.lsc3{letter-spacing:1.177867pt;}
.ls53{letter-spacing:1.178667pt;}
.lsc2{letter-spacing:1.210933pt;}
.ls30{letter-spacing:1.221333pt;}
.ls31{letter-spacing:1.262000pt;}
.lsaf{letter-spacing:1.274667pt;}
.ls82{letter-spacing:1.296000pt;}
.ls24{letter-spacing:1.317600pt;}
.ls40{letter-spacing:1.344000pt;}
.ls95{letter-spacing:1.354667pt;}
.ls2b{letter-spacing:1.370933pt;}
.lsb3{letter-spacing:1.408000pt;}
.ls3e{letter-spacing:1.413333pt;}
.ls9a{letter-spacing:1.429333pt;}
.ls13{letter-spacing:1.477333pt;}
.lsb6{letter-spacing:1.481333pt;}
.lsb0{letter-spacing:1.706667pt;}
.ls63{letter-spacing:1.754667pt;}
.lsb7{letter-spacing:1.770667pt;}
.ls66{letter-spacing:1.888000pt;}
.ls67{letter-spacing:1.952000pt;}
.ls3c{letter-spacing:2.048000pt;}
.ls41{letter-spacing:2.080000pt;}
.ls68{letter-spacing:2.085333pt;}
.ls72{letter-spacing:2.112000pt;}
.ls65{letter-spacing:2.213333pt;}
.lsa3{letter-spacing:2.240000pt;}
.ls3b{letter-spacing:2.677333pt;}
.ls3a{letter-spacing:2.778667pt;}
.ls19{letter-spacing:2.949333pt;}
.ls74{letter-spacing:4.225520pt;}
.ls55{letter-spacing:18.690800pt;}
.ls8b{letter-spacing:19.785162pt;}
.ls86{letter-spacing:21.833333pt;}
.ls5f{letter-spacing:22.081600pt;}
.ls11{letter-spacing:24.341600pt;}
.ls15{letter-spacing:24.592000pt;}
.ls2e{letter-spacing:24.717600pt;}
.ls80{letter-spacing:26.698267pt;}
.ls73{letter-spacing:28.605600pt;}
.ls75{letter-spacing:30.260095pt;}
.ls61{letter-spacing:44.054933pt;}
.ls94{letter-spacing:57.886667pt;}
.ls4c{letter-spacing:68.240000pt;}
.ls4b{letter-spacing:68.286667pt;}
.lsb9{letter-spacing:82.260000pt;}
.lsba{letter-spacing:86.486667pt;}
.lsa{letter-spacing:90.420000pt;}
.ls85{letter-spacing:106.046667pt;}
.ls8d{letter-spacing:142.950179pt;}
.ws7e{word-spacing:-160.133333pt;}
.ws9{word-spacing:-129.783733pt;}
.ws68{word-spacing:-96.133333pt;}
.ws6b{word-spacing:-72.133333pt;}
.ws6a{word-spacing:-69.226400pt;}
.ws76{word-spacing:-52.784536pt;}
.ws57{word-spacing:-49.133867pt;}
.ws79{word-spacing:-47.890133pt;}
.ws5c{word-spacing:-47.853067pt;}
.ws7c{word-spacing:-44.517067pt;}
.ws8c{word-spacing:-42.951733pt;}
.ws8e{word-spacing:-42.662400pt;}
.ws8d{word-spacing:-41.181067pt;}
.ws77{word-spacing:-38.957067pt;}
.wse{word-spacing:-36.378400pt;}
.wsf{word-spacing:-35.621067pt;}
.ws3f{word-spacing:-34.328533pt;}
.ws19{word-spacing:-34.287733pt;}
.ws69{word-spacing:-34.092133pt;}
.ws18{word-spacing:-33.804800pt;}
.ws12{word-spacing:-32.066667pt;}
.ws13{word-spacing:-32.033333pt;}
.ws14{word-spacing:-31.677333pt;}
.ws89{word-spacing:-30.921067pt;}
.wsc{word-spacing:-30.634000pt;}
.ws86{word-spacing:-30.072267pt;}
.ws7d{word-spacing:-30.061067pt;}
.ws85{word-spacing:-29.938933pt;}
.ws55{word-spacing:-29.214400pt;}
.ws16{word-spacing:-28.773600pt;}
.wsa{word-spacing:-28.330933pt;}
.ws8a{word-spacing:-28.133067pt;}
.ws0{word-spacing:-26.917333pt;}
.ws8{word-spacing:-26.725067pt;}
.ws90{word-spacing:-26.712693pt;}
.ws30{word-spacing:-26.688000pt;}
.ws5{word-spacing:-26.628933pt;}
.ws36{word-spacing:-26.066400pt;}
.ws6{word-spacing:-25.503600pt;}
.ws5f{word-spacing:-25.407733pt;}
.ws5a{word-spacing:-25.317067pt;}
.ws5b{word-spacing:-25.274400pt;}
.ws7b{word-spacing:-24.781333pt;}
.ws78{word-spacing:-24.743733pt;}
.ws4{word-spacing:-24.654400pt;}
.ws88{word-spacing:-24.651067pt;}
.ws6d{word-spacing:-24.648000pt;}
.ws3a{word-spacing:-24.624000pt;}
.ws37{word-spacing:-24.610400pt;}
.ws93{word-spacing:-24.002400pt;}
.ws3c{word-spacing:-23.481067pt;}
.ws22{word-spacing:-23.405440pt;}
.ws10{word-spacing:-23.389067pt;}
.ws3b{word-spacing:-23.376000pt;}
.ws7a{word-spacing:-23.372640pt;}
.ws1b{word-spacing:-23.352000pt;}
.ws3{word-spacing:-23.347733pt;}
.ws2a{word-spacing:-23.324000pt;}
.ws27{word-spacing:-23.272267pt;}
.ws40{word-spacing:-22.830400pt;}
.ws5e{word-spacing:-22.820037pt;}
.ws1f{word-spacing:-22.775733pt;}
.ws2e{word-spacing:-22.642400pt;}
.ws81{word-spacing:-22.277067pt;}
.ws4a{word-spacing:-22.214933pt;}
.ws41{word-spacing:-22.112000pt;}
.ws3e{word-spacing:-22.110667pt;}
.ws39{word-spacing:-22.081600pt;}
.ws87{word-spacing:-22.061067pt;}
.ws7{word-spacing:-21.918400pt;}
.ws42{word-spacing:-21.888000pt;}
.ws82{word-spacing:-21.317067pt;}
.ws44{word-spacing:-21.171733pt;}
.ws6f{word-spacing:-20.984800pt;}
.ws11{word-spacing:-20.491467pt;}
.ws38{word-spacing:-20.397333pt;}
.ws83{word-spacing:-20.069067pt;}
.ws17{word-spacing:-19.997600pt;}
.ws8f{word-spacing:-19.946933pt;}
.ws43{word-spacing:-19.152000pt;}
.ws62{word-spacing:-18.341333pt;}
.ws71{word-spacing:-18.317078pt;}
.ws64{word-spacing:-18.304267pt;}
.ws70{word-spacing:-18.238133pt;}
.ws63{word-spacing:-18.208000pt;}
.wsd{word-spacing:-18.170933pt;}
.ws7f{word-spacing:-18.085600pt;}
.ws48{word-spacing:-18.083733pt;}
.ws61{word-spacing:-17.829067pt;}
.ws60{word-spacing:-17.792000pt;}
.ws95{word-spacing:-16.632000pt;}
.ws98{word-spacing:-16.615733pt;}
.ws8b{word-spacing:-16.474400pt;}
.ws2f{word-spacing:-16.432000pt;}
.ws2c{word-spacing:-16.394400pt;}
.ws73{word-spacing:-14.968697pt;}
.ws74{word-spacing:-14.594715pt;}
.ws53{word-spacing:-14.238400pt;}
.ws6c{word-spacing:-13.600267pt;}
.ws47{word-spacing:-13.379733pt;}
.ws80{word-spacing:-12.269067pt;}
.ws72{word-spacing:-10.591704pt;}
.ws4f{word-spacing:-10.062400pt;}
.ws50{word-spacing:-9.937600pt;}
.ws9a{word-spacing:-7.219733pt;}
.ws4e{word-spacing:-6.060667pt;}
.ws52{word-spacing:-5.767333pt;}
.ws4d{word-spacing:-5.607333pt;}
.ws67{word-spacing:-3.959867pt;}
.ws24{word-spacing:-2.622667pt;}
.ws91{word-spacing:-2.475467pt;}
.ws5d{word-spacing:-2.052162pt;}
.ws2{word-spacing:-0.889600pt;}
.ws1d{word-spacing:-0.545333pt;}
.ws1c{word-spacing:-0.409600pt;}
.ws1a{word-spacing:-0.258667pt;}
.wsb{word-spacing:-0.148133pt;}
.ws1{word-spacing:0.000000pt;}
.ws45{word-spacing:0.044800pt;}
.ws54{word-spacing:0.158400pt;}
.ws6e{word-spacing:0.645200pt;}
.ws32{word-spacing:1.255600pt;}
.ws56{word-spacing:1.346933pt;}
.ws65{word-spacing:1.722480pt;}
.ws25{word-spacing:1.752800pt;}
.ws21{word-spacing:1.780667pt;}
.ws33{word-spacing:1.818133pt;}
.ws1e{word-spacing:1.842800pt;}
.ws23{word-spacing:1.851867pt;}
.ws20{word-spacing:1.855813pt;}
.ws99{word-spacing:1.860000pt;}
.ws96{word-spacing:1.913333pt;}
.ws58{word-spacing:1.918667pt;}
.ws97{word-spacing:2.040000pt;}
.ws94{word-spacing:2.054747pt;}
.ws34{word-spacing:2.365733pt;}
.ws49{word-spacing:2.430133pt;}
.ws2b{word-spacing:2.516000pt;}
.ws28{word-spacing:2.522507pt;}
.ws26{word-spacing:2.525867pt;}
.ws29{word-spacing:2.540000pt;}
.ws4b{word-spacing:2.563467pt;}
.ws59{word-spacing:2.634667pt;}
.ws35{word-spacing:3.198533pt;}
.ws31{word-spacing:3.304667pt;}
.ws51{word-spacing:3.896800pt;}
.ws66{word-spacing:4.050933pt;}
.ws4c{word-spacing:4.163467pt;}
.ws84{word-spacing:23.055467pt;}
.ws2d{word-spacing:26.948533pt;}
.ws92{word-spacing:46.646400pt;}
.ws75{word-spacing:51.976304pt;}
.ws46{word-spacing:55.570133pt;}
.ws3d{word-spacing:319.978667pt;}
.ws15{word-spacing:430.156133pt;}
._2c{margin-left:-64.748933pt;}
._31{margin-left:-29.152800pt;}
._23{margin-left:-22.000000pt;}
._10{margin-left:-19.112533pt;}
._a{margin-left:-18.130133pt;}
._b{margin-left:-15.289067pt;}
._15{margin-left:-13.949200pt;}
._1f{margin-left:-12.096000pt;}
._9{margin-left:-11.125067pt;}
._c{margin-left:-9.934400pt;}
._d{margin-left:-8.451867pt;}
._13{margin-left:-7.104000pt;}
._6{margin-left:-6.150400pt;}
._8{margin-left:-5.004667pt;}
._f{margin-left:-4.110133pt;}
._7{margin-left:-3.204133pt;}
._0{margin-left:-2.307200pt;}
._4{margin-left:-1.345867pt;}
._1{width:1.153600pt;}
._3{width:2.307200pt;}
._2{width:3.268533pt;}
._5{width:4.229867pt;}
._e{width:5.341333pt;}
._12{width:6.427600pt;}
._1e{width:7.348133pt;}
._11{width:8.577200pt;}
._29{width:9.957197pt;}
._2a{width:12.779755pt;}
._25{width:20.074667pt;}
._14{width:21.118133pt;}
._1c{width:22.227200pt;}
._1b{width:23.502267pt;}
._1a{width:24.488000pt;}
._2b{width:25.378267pt;}
._18{width:26.588000pt;}
._28{width:27.751867pt;}
._2d{width:29.468933pt;}
._20{width:35.135600pt;}
._22{width:43.803867pt;}
._24{width:45.256800pt;}
._33{width:51.148667pt;}
._21{width:68.435600pt;}
._32{width:74.008667pt;}
._2f{width:88.057925pt;}
._2e{width:106.588859pt;}
._19{width:120.828933pt;}
._30{width:184.224267pt;}
._1d{width:561.453467pt;}
._17{width:572.452667pt;}
._27{width:767.626667pt;}
._16{width:1468.004667pt;}
._26{width:1701.273600pt;}
.fs1b{font-size:27.362822pt;}
.fs22{font-size:37.516420pt;}
.fs1a{font-size:44.133333pt;}
.fs20{font-size:46.532229pt;}
.fs2{font-size:52.133333pt;}
.fs23{font-size:52.784536pt;}
.fs21{font-size:53.090931pt;}
.fs1d{font-size:53.323346pt;}
.fs12{font-size:56.000000pt;}
.fs11{font-size:56.133333pt;}
.fse{font-size:64.000000pt;}
.fsf{font-size:64.133333pt;}
.fs1f{font-size:65.888769pt;}
.fs25{font-size:67.601793pt;}
.fs28{font-size:72.000000pt;}
.fs1e{font-size:72.133333pt;}
.fs27{font-size:76.133333pt;}
.fs26{font-size:80.133333pt;}
.fs1c{font-size:82.086464pt;}
.fs10{font-size:84.000000pt;}
.fsb{font-size:84.133333pt;}
.fsa{font-size:96.000000pt;}
.fs3{font-size:96.133333pt;}
.fs19{font-size:100.133333pt;}
.fs18{font-size:108.000000pt;}
.fs9{font-size:108.133333pt;}
.fs1{font-size:128.133333pt;}
.fs5{font-size:128.266667pt;}
.fs6{font-size:140.133333pt;}
.fs7{font-size:140.266667pt;}
.fs4{font-size:148.133333pt;}
.fsc{font-size:148.266667pt;}
.fs24{font-size:160.133333pt;}
.fs14{font-size:172.133333pt;}
.fs15{font-size:172.266667pt;}
.fs13{font-size:192.133333pt;}
.fs0{font-size:192.266667pt;}
.fs16{font-size:212.133333pt;}
.fs8{font-size:212.266667pt;}
.fs17{font-size:288.400000pt;}
.fsd{font-size:468.533333pt;}
.y170{bottom:-13.004803pt;}
.y0{bottom:0.000000pt;}
.y16f{bottom:1.977912pt;}
.y146{bottom:3.282433pt;}
.y1d4{bottom:3.666667pt;}
.y78{bottom:10.300000pt;}
.y171{bottom:12.885024pt;}
.y147{bottom:13.394889pt;}
.y15a{bottom:14.733333pt;}
.y245{bottom:16.433333pt;}
.y5f{bottom:17.433333pt;}
.y195{bottom:19.766667pt;}
.y200{bottom:19.866667pt;}
.yc4{bottom:20.300000pt;}
.y22c{bottom:20.533333pt;}
.y13e{bottom:24.433333pt;}
.y2{bottom:25.700000pt;}
.y1a3{bottom:26.100000pt;}
.y192{bottom:28.833333pt;}
.yd8{bottom:31.933333pt;}
.y1d3{bottom:32.700000pt;}
.ycf{bottom:34.666667pt;}
.y172{bottom:37.992934pt;}
.y19f{bottom:38.833333pt;}
.y15{bottom:39.166667pt;}
.y77{bottom:39.333333pt;}
.y19{bottom:40.300000pt;}
.y6d{bottom:44.200000pt;}
.y244{bottom:44.466667pt;}
.y73{bottom:45.333333pt;}
.y194{bottom:45.800000pt;}
.ycd{bottom:46.833333pt;}
.y186{bottom:47.766667pt;}
.y4f{bottom:47.933333pt;}
.y1ff{bottom:48.200000pt;}
.y47{bottom:48.333333pt;}
.y137{bottom:51.066667pt;}
.y1a2{bottom:51.133333pt;}
.y154{bottom:51.866667pt;}
.y13d{bottom:53.466667pt;}
.y191{bottom:54.833333pt;}
.yb1{bottom:54.966667pt;}
.y1be{bottom:57.600000pt;}
.y18b{bottom:59.033333pt;}
.y25f{bottom:59.933333pt;}
.y1d2{bottom:61.733333pt;}
.y153{bottom:61.800000pt;}
.y19e{bottom:64.866667pt;}
.y101{bottom:65.800000pt;}
.y173{bottom:66.135094pt;}
.yc3{bottom:67.700000pt;}
.ycc{bottom:68.866667pt;}
.y266{bottom:69.000000pt;}
.y243{bottom:70.466667pt;}
.y216{bottom:70.566667pt;}
.y32{bottom:70.666667pt;}
.y193{bottom:70.833333pt;}
.y9e{bottom:72.233333pt;}
.y164{bottom:73.800000pt;}
.y72{bottom:74.366667pt;}
.y6{bottom:74.466667pt;}
.y1ea{bottom:74.766667pt;}
.y199{bottom:75.966667pt;}
.y8c{bottom:76.333333pt;}
.y136{bottom:77.100000pt;}
.y152{bottom:80.800000pt;}
.y190{bottom:80.866667pt;}
.yb0{bottom:80.966667pt;}
.y68{bottom:82.666667pt;}
.y182{bottom:83.866667pt;}
.y18a{bottom:84.066667pt;}
.yf5{bottom:87.200000pt;}
.y25e{bottom:88.966667pt;}
.y19d{bottom:89.900000pt;}
.ycb{bottom:91.900000pt;}
.y1d0{bottom:92.866667pt;}
.yc2{bottom:93.733333pt;}
.y174{bottom:94.296841pt;}
.y143{bottom:94.366667pt;}
.y100{bottom:94.833333pt;}
.y242{bottom:96.500000pt;}
.y9d{bottom:98.266667pt;}
.y5a{bottom:99.400000pt;}
.y1af{bottom:100.066667pt;}
.y1a5{bottom:100.866667pt;}
.y135{bottom:102.100000pt;}
.y8b{bottom:102.366667pt;}
.y46{bottom:102.600000pt;}
.y163{bottom:102.833333pt;}
.y122{bottom:103.233333pt;}
.y71{bottom:103.400000pt;}
.y5{bottom:103.500000pt;}
.y198{bottom:105.000000pt;}
.y18f{bottom:105.900000pt;}
.y23{bottom:106.566667pt;}
.y1e9{bottom:106.833333pt;}
.yaf{bottom:107.000000pt;}
.y185{bottom:108.066667pt;}
.y1f5{bottom:109.133333pt;}
.y158{bottom:109.233333pt;}
.y1fe{bottom:112.300000pt;}
.yca{bottom:113.933333pt;}
.y25d{bottom:114.000000pt;}
.y157{bottom:114.133333pt;}
.y134{bottom:114.433333pt;}
.y1e{bottom:116.400000pt;}
.yb{bottom:118.166667pt;}
.yc1{bottom:118.766667pt;}
.y165{bottom:119.138667pt;}
.y11e{bottom:120.066667pt;}
.y145{bottom:120.479747pt;}
.y5c{bottom:120.566667pt;}
.y241{bottom:121.533333pt;}
.y175{bottom:122.477420pt;}
.y9c{bottom:123.300000pt;}
.y142{bottom:123.400000pt;}
.yff{bottom:123.866667pt;}
.y1cf{bottom:124.900000pt;}
.y224{bottom:126.466667pt;}
.y67{bottom:127.466667pt;}
.y121{bottom:128.266667pt;}
.y8a{bottom:128.400000pt;}
.y215{bottom:128.633333pt;}
.y36{bottom:129.066667pt;}
.yd7{bottom:131.066667pt;}
.y162{bottom:131.866667pt;}
.yae{bottom:132.033333pt;}
.ye3{bottom:133.166667pt;}
.y1b0{bottom:134.640000pt;}
.y1b1{bottom:135.706667pt;}
.y249{bottom:135.866667pt;}
.yea{bottom:137.440000pt;}
.y16e{bottom:138.243779pt;}
.y1e8{bottom:138.866667pt;}
.yc9{bottom:139.960000pt;}
.y25c{bottom:140.026667pt;}
.y116{bottom:140.333333pt;}
.y1f4{bottom:141.160000pt;}
.y2b{bottom:141.266667pt;}
.y17a{bottom:141.666667pt;}
.y16a{bottom:142.447137pt;}
.y139{bottom:143.440000pt;}
.y133{bottom:143.466667pt;}
.y1fd{bottom:144.333333pt;}
.y56{bottom:145.666667pt;}
.y240{bottom:147.560000pt;}
.y9b{bottom:149.293333pt;}
.y159{bottom:149.933333pt;}
.y11d{bottom:151.106667pt;}
.y11{bottom:152.666667pt;}
.yfe{bottom:152.893333pt;}
.y89{bottom:153.426667pt;}
.yf4{bottom:154.893333pt;}
.y223{bottom:155.493333pt;}
.y1d{bottom:156.426667pt;}
.y1ce{bottom:156.933333pt;}
.yc0{bottom:157.306667pt;}
.y214{bottom:157.666667pt;}
.yad{bottom:158.066667pt;}
.y20b{bottom:160.066667pt;}
.y248{bottom:164.893333pt;}
.y25b{bottom:165.066667pt;}
.y115{bottom:169.360000pt;}
.ye9{bottom:169.466667pt;}
.y1e7{bottom:170.893333pt;}
.y23f{bottom:172.600000pt;}
.y1f3{bottom:173.200000pt;}
.y179{bottom:173.693333pt;}
.y9a{bottom:174.333333pt;}
.y1fc{bottom:176.373333pt;}
.y16b{bottom:176.375319pt;}
.y55{bottom:176.693333pt;}
.yc8{bottom:177.000000pt;}
.y88{bottom:179.466667pt;}
.y2a{bottom:180.306667pt;}
.yd6{bottom:181.133333pt;}
.yac{bottom:183.106667pt;}
.ybf{bottom:183.333333pt;}
.y222{bottom:184.533333pt;}
.y1cd{bottom:188.973333pt;}
.y25a{bottom:191.066667pt;}
.ye2{bottom:191.226667pt;}
.y247{bottom:193.933333pt;}
.y1aa{bottom:195.626667pt;}
.y114{bottom:198.400000pt;}
.y23e{bottom:198.626667pt;}
.y1ae{bottom:200.293333pt;}
.y99{bottom:200.373333pt;}
.y45{bottom:202.693333pt;}
.y1e6{bottom:202.933333pt;}
.y213{bottom:203.640000pt;}
.y87{bottom:204.506667pt;}
.ybe{bottom:208.360000pt;}
.y1fb{bottom:208.400000pt;}
.y54{bottom:208.733333pt;}
.yab{bottom:209.133333pt;}
.y16c{bottom:213.414588pt;}
.y221{bottom:213.560000pt;}
.y1a{bottom:214.506667pt;}
.y1a9{bottom:214.640000pt;}
.y259{bottom:217.106667pt;}
.y178{bottom:219.133333pt;}
.y1cc{bottom:221.000000pt;}
.y23d{bottom:224.666667pt;}
.y66{bottom:225.360000pt;}
.y64{bottom:225.533333pt;}
.y98{bottom:226.400000pt;}
.yf3{bottom:227.173333pt;}
.y113{bottom:227.440000pt;}
.y86{bottom:230.533333pt;}
.yd5{bottom:231.173333pt;}
.ye8{bottom:233.533333pt;}
.y151{bottom:234.306667pt;}
.yfd{bottom:234.600000pt;}
.y42{bottom:234.933333pt;}
.y1e5{bottom:234.973333pt;}
.yaa{bottom:235.173333pt;}
.y1f2{bottom:237.266667pt;}
.y4c{bottom:237.800000pt;}
.y220{bottom:241.600000pt;}
.y53{bottom:241.760000pt;}
.y258{bottom:242.133333pt;}
.ybd{bottom:248.693333pt;}
.ye1{bottom:249.306667pt;}
.y23c{bottom:249.706667pt;}
.y16d{bottom:250.453857pt;}
.y65{bottom:251.400000pt;}
.y97{bottom:251.440000pt;}
.y63{bottom:251.573333pt;}
.y10{bottom:251.773333pt;}
.y5e{bottom:252.066667pt;}
.y1cb{bottom:253.040000pt;}
.y11c{bottom:254.026667pt;}
.y150{bottom:254.333333pt;}
.y20a{bottom:255.173333pt;}
.y112{bottom:256.466667pt;}
.y85{bottom:256.560000pt;}
.y4b{bottom:256.800000pt;}
.y75{bottom:257.400000pt;}
.y148{bottom:259.388264pt;}
.y12d{bottom:259.866667pt;}
.ya9{bottom:260.200000pt;}
.y181{bottom:261.906667pt;}
.y41{bottom:262.960000pt;}
.y1e4{bottom:267.000000pt;}
.y1f{bottom:267.560000pt;}
.y257{bottom:268.173333pt;}
.y1f1{bottom:269.293333pt;}
.y21f{bottom:270.626667pt;}
.y166{bottom:272.028081pt;}
.y1fa{bottom:272.466667pt;}
.yfc{bottom:272.640000pt;}
.ybc{bottom:274.733333pt;}
.y31{bottom:274.933333pt;}
.y23b{bottom:275.733333pt;}
.y4a{bottom:275.840000pt;}
.y35{bottom:276.840000pt;}
.y96{bottom:277.466667pt;}
.y1bd{bottom:278.093333pt;}
.y15c{bottom:278.973333pt;}
.yd4{bottom:281.226667pt;}
.y84{bottom:281.573333pt;}
.y11b{bottom:283.066667pt;}
.y209{bottom:283.200000pt;}
.y111{bottom:284.506667pt;}
.y1ca{bottom:285.066667pt;}
.y12c{bottom:285.866667pt;}
.y5b{bottom:285.933333pt;}
.ya8{bottom:286.240000pt;}
.y74{bottom:286.440000pt;}
.y40{bottom:291.000000pt;}
.y29{bottom:292.200000pt;}
.y256{bottom:293.200000pt;}
.y212{bottom:293.733333pt;}
.y180{bottom:293.933333pt;}
.yf2{bottom:294.226667pt;}
.y49{bottom:294.866667pt;}
.ye7{bottom:297.600000pt;}
.y21e{bottom:298.666667pt;}
.y1e3{bottom:299.026667pt;}
.y1bc{bottom:299.133333pt;}
.ybb{bottom:299.773333pt;}
.y23a{bottom:300.733333pt;}
.y1f0{bottom:301.333333pt;}
.yf{bottom:301.840000pt;}
.y95{bottom:302.506667pt;}
.y1f9{bottom:304.506667pt;}
.y34{bottom:305.866667pt;}
.y167{bottom:305.956263pt;}
.ye0{bottom:306.360000pt;}
.y83{bottom:307.600000pt;}
.y20{bottom:307.640000pt;}
.y12b{bottom:310.893333pt;}
.ya7{bottom:311.226667pt;}
.y14f{bottom:311.466667pt;}
.yfb{bottom:311.693333pt;}
.y208{bottom:312.226667pt;}
.y110{bottom:313.533333pt;}
.y48{bottom:313.866667pt;}
.y11a{bottom:314.093333pt;}
.y1c9{bottom:317.133333pt;}
.y132{bottom:318.266667pt;}
.y3f{bottom:319.040000pt;}
.y255{bottom:319.240000pt;}
.y1bb{bottom:321.173333pt;}
.y4{bottom:324.506667pt;}
.y21d{bottom:325.693333pt;}
.yba{bottom:325.800000pt;}
.y17f{bottom:325.960000pt;}
.y239{bottom:326.773333pt;}
.y94{bottom:328.533333pt;}
.y6c{bottom:330.133333pt;}
.y14e{bottom:330.506667pt;}
.y1e2{bottom:331.066667pt;}
.y265{bottom:331.466667pt;}
.y82{bottom:332.640000pt;}
.y1ef{bottom:333.360000pt;}
.y13c{bottom:333.840000pt;}
.y33{bottom:334.893333pt;}
.y1a7{bottom:336.306667pt;}
.y12a{bottom:336.933333pt;}
.ya6{bottom:337.266667pt;}
.y211{bottom:338.800000pt;}
.y70{bottom:339.333333pt;}
.y207{bottom:341.266667pt;}
.y10f{bottom:342.560000pt;}
.y168{bottom:342.995532pt;}
.y1ba{bottom:343.173333pt;}
.y254{bottom:345.266667pt;}
.y3e{bottom:347.066667pt;}
.y131{bottom:347.306667pt;}
.y1c8{bottom:349.173333pt;}
.ya{bottom:349.426667pt;}
.y14d{bottom:349.533333pt;}
.yfa{bottom:349.733333pt;}
.ydb{bottom:350.200000pt;}
.y62{bottom:350.533333pt;}
.ye{bottom:350.866667pt;}
.yb9{bottom:351.800000pt;}
.y238{bottom:352.800000pt;}
.y3{bottom:353.533333pt;}
.y177{bottom:353.640000pt;}
.y21c{bottom:353.733333pt;}
.y93{bottom:354.560000pt;}
.y28{bottom:356.893333pt;}
.y264{bottom:357.506667pt;}
.y59{bottom:358.000000pt;}
.y81{bottom:358.666667pt;}
.yf1{bottom:361.306667pt;}
.ye6{bottom:361.666667pt;}
.y129{bottom:362.973333pt;}
.y1e1{bottom:363.106667pt;}
.ya5{bottom:363.306667pt;}
.y1b9{bottom:364.200000pt;}
.ydf{bottom:364.426667pt;}
.y1a6{bottom:365.333333pt;}
.y1ee{bottom:365.400000pt;}
.y14c{bottom:368.533333pt;}
.y1f8{bottom:368.560000pt;}
.y6b{bottom:369.200000pt;}
.y206{bottom:370.306667pt;}
.y188{bottom:371.360000pt;}
.y10e{bottom:371.600000pt;}
.y3d{bottom:375.106667pt;}
.yb8{bottom:376.840000pt;}
.y237{bottom:377.840000pt;}
.yd3{bottom:379.333333pt;}
.y92{bottom:379.560000pt;}
.y169{bottom:380.034801pt;}
.y1c7{bottom:381.200000pt;}
.y21b{bottom:382.773333pt;}
.y210{bottom:382.840000pt;}
.y263{bottom:383.533333pt;}
.y80{bottom:384.693333pt;}
.y27{bottom:385.933333pt;}
.y1b8{bottom:386.226667pt;}
.y9{bottom:387.506667pt;}
.y128{bottom:388.000000pt;}
.ya4{bottom:388.333333pt;}
.y30{bottom:390.333333pt;}
.y17{bottom:394.226667pt;}
.y1e0{bottom:395.173333pt;}
.y58{bottom:396.066667pt;}
.y253{bottom:396.333333pt;}
.y1ed{bottom:397.466667pt;}
.y10d{bottom:400.626667pt;}
.y106{bottom:400.840000pt;}
.y44{bottom:400.933333pt;}
.yb7{bottom:402.866667pt;}
.y236{bottom:403.866667pt;}
.y91{bottom:405.600000pt;}
.y1b7{bottom:407.266667pt;}
.y262{bottom:408.560000pt;}
.y7a{bottom:408.773333pt;}
.y7f{bottom:409.733333pt;}
.y119{bottom:410.866667pt;}
.y17e{bottom:412.800000pt;}
.y1c6{bottom:413.226667pt;}
.y21a{bottom:413.800000pt;}
.y127{bottom:414.026667pt;}
.ya3{bottom:414.360000pt;}
.y26{bottom:414.960000pt;}
.y141{bottom:417.293333pt;}
.y2f{bottom:419.360000pt;}
.y252{bottom:421.333333pt;}
.yde{bottom:421.506667pt;}
.yf9{bottom:426.840000pt;}
.y105{bottom:426.866667pt;}
.y1df{bottom:427.200000pt;}
.y205{bottom:427.373333pt;}
.yb6{bottom:427.893333pt;}
.y10c{bottom:428.666667pt;}
.y235{bottom:428.893333pt;}
.y1b6{bottom:429.266667pt;}
.yd2{bottom:429.400000pt;}
.y1ec{bottom:429.506667pt;}
.y90{bottom:430.626667pt;}
.y3c{bottom:432.173333pt;}
.y1f7{bottom:432.666667pt;}
.y261{bottom:433.600000pt;}
.y7e{bottom:435.773333pt;}
.y79{bottom:437.800000pt;}
.y126{bottom:439.066667pt;}
.ya2{bottom:439.400000pt;}
.y52{bottom:439.466667pt;}
.y118{bottom:439.893333pt;}
.y25{bottom:444.000000pt;}
.y17d{bottom:444.840000pt;}
.y1c5{bottom:445.266667pt;}
.y61{bottom:446.560000pt;}
.y251{bottom:447.360000pt;}
.y1{bottom:447.600000pt;}
.y2e{bottom:448.400000pt;}
.y21{bottom:450.293333pt;}
.yd{bottom:451.000000pt;}
.y1b5{bottom:451.306667pt;}
.y104{bottom:452.893333pt;}
.yb5{bottom:453.933333pt;}
.y260{bottom:454.600000pt;}
.y234{bottom:454.933333pt;}
.y204{bottom:456.400000pt;}
.y8f{bottom:456.666667pt;}
.y10b{bottom:457.693333pt;}
.y1de{bottom:459.226667pt;}
.y3b{bottom:460.200000pt;}
.y7d{bottom:460.800000pt;}
.yc7{bottom:461.533333pt;}
.y5d{bottom:463.800000pt;}
.y1f6{bottom:464.706667pt;}
.yf8{bottom:464.866667pt;}
.y125{bottom:465.106667pt;}
.ya1{bottom:465.440000pt;}
.y16{bottom:466.306667pt;}
.y13b{bottom:469.226667pt;}
.y1ad{bottom:469.600000pt;}
.y117{bottom:470.933333pt;}
.y219{bottom:471.560000pt;}
.y1b4{bottom:472.333333pt;}
.y20f{bottom:472.933333pt;}
.y250{bottom:473.400000pt;}
.yed{bottom:474.360000pt;}
.y17c{bottom:476.866667pt;}
.y1c4{bottom:477.293333pt;}
.y2d{bottom:477.440000pt;}
.yd1{bottom:479.466667pt;}
.ydd{bottom:479.560000pt;}
.yb4{bottom:479.973333pt;}
.y233{bottom:480.960000pt;}
.y103{bottom:481.933333pt;}
.y51{bottom:482.360000pt;}
.y8e{bottom:482.706667pt;}
.y176{bottom:483.000000pt;}
.y203{bottom:485.440000pt;}
.y10a{bottom:486.733333pt;}
.y7c{bottom:486.840000pt;}
.y3a{bottom:488.226667pt;}
.y124{bottom:491.133333pt;}
.y1dd{bottom:491.266667pt;}
.ya0{bottom:491.466667pt;}
.y1ac{bottom:493.626667pt;}
.y1b3{bottom:494.360000pt;}
.yf0{bottom:496.466667pt;}
.y13a{bottom:498.266667pt;}
.y24f{bottom:498.440000pt;}
.y22{bottom:499.840000pt;}
.y1d5{bottom:500.000000pt;}
.yc{bottom:500.040000pt;}
.y218{bottom:503.600000pt;}
.yf7{bottom:503.893333pt;}
.yb3{bottom:505.000000pt;}
.y232{bottom:505.973333pt;}
.y2c{bottom:506.466667pt;}
.y8d{bottom:507.733333pt;}
.y160{bottom:508.693333pt;}
.y1c3{bottom:509.333333pt;}
.y102{bottom:510.960000pt;}
.y1a0{bottom:511.506667pt;}
.y229{bottom:512.400000pt;}
.yec{bottom:512.666667pt;}
.y7b{bottom:512.840000pt;}
.y202{bottom:514.466667pt;}
.y1b2{bottom:515.360000pt;}
.y109{bottom:515.773333pt;}
.y123{bottom:516.133333pt;}
.y39{bottom:516.266667pt;}
.y9f{bottom:516.466667pt;}
.y20e{bottom:518.000000pt;}
.y69{bottom:522.893333pt;}
.y1dc{bottom:523.306667pt;}
.y18e{bottom:524.000000pt;}
.y4d{bottom:524.133333pt;}
.y24e{bottom:524.466667pt;}
.y1eb{bottom:526.600000pt;}
.y14b{bottom:527.893333pt;}
.y1c{bottom:528.200000pt;}
.yd0{bottom:528.506667pt;}
.y231{bottom:532.000000pt;}
.y217{bottom:535.640000pt;}
.ydc{bottom:537.640000pt;}
.y1c0{bottom:540.640000pt;}
.y1c2{bottom:541.360000pt;}
.y8{bottom:541.666667pt;}
.y38{bottom:542.306667pt;}
.y130{bottom:543.040000pt;}
.y201{bottom:543.506667pt;}
.y108{bottom:544.800000pt;}
.y50{bottom:544.840000pt;}
.y140{bottom:546.693333pt;}
.y24d{bottom:549.506667pt;}
.y156{bottom:549.733333pt;}
.yeb{bottom:550.973333pt;}
.y187{bottom:553.026667pt;}
.y1db{bottom:555.333333pt;}
.y19b{bottom:555.440000pt;}
.y15f{bottom:556.773333pt;}
.y14a{bottom:556.933333pt;}
.y230{bottom:557.026667pt;}
.yef{bottom:563.533333pt;}
.y120{bottom:565.933333pt;}
.y15d{bottom:567.133333pt;}
.y1b{bottom:568.226667pt;}
.y37{bottom:569.333333pt;}
.y228{bottom:572.226667pt;}
.y144{bottom:572.533333pt;}
.y1c1{bottom:573.400000pt;}
.y18d{bottom:575.026667pt;}
.y24c{bottom:575.533333pt;}
.y1d8{bottom:577.866667pt;}
.y155{bottom:578.773333pt;}
.y1a4{bottom:579.933333pt;}
.y197{bottom:582.000000pt;}
.y22f{bottom:583.066667pt;}
.y60{bottom:586.133333pt;}
.y13{bottom:586.306667pt;}
.y1da{bottom:587.360000pt;}
.y22a{bottom:588.600000pt;}
.yda{bottom:589.640000pt;}
.y11f{bottom:594.973333pt;}
.y227{bottom:597.266667pt;}
.y12f{bottom:599.360000pt;}
.y1d1{bottom:599.866667pt;}
.ye4{bottom:600.266667pt;}
.y24b{bottom:601.560000pt;}
.y13f{bottom:602.133333pt;}
.y15e{bottom:604.800000pt;}
.y20d{bottom:607.106667pt;}
.y19a{bottom:607.466667pt;}
.y22e{bottom:609.106667pt;}
.y1d7{bottom:609.893333pt;}
.y7{bottom:611.560000pt;}
.yf6{bottom:611.893333pt;}
.y149{bottom:615.000000pt;}
.y138{bottom:616.360000pt;}
.y184{bottom:618.466667pt;}
.y107{bottom:621.733333pt;}
.y226{bottom:623.306667pt;}
.yb2{bottom:624.000000pt;}
.y17b{bottom:624.533333pt;}
.y24a{bottom:626.560000pt;}
.yce{bottom:626.933333pt;}
.y18c{bottom:627.106667pt;}
.y43{bottom:631.666667pt;}
.y196{bottom:634.026667pt;}
.y22d{bottom:634.133333pt;}
.y12{bottom:634.360000pt;}
.y14{bottom:639.173333pt;}
.y12e{bottom:639.400000pt;}
.y1bf{bottom:642.773333pt;}
.y1d6{bottom:644.973333pt;}
.y15b{bottom:646.840000pt;}
.y6a{bottom:648.173333pt;}
.ye5{bottom:650.800000pt;}
.y18{bottom:652.026667pt;}
.y1d9{bottom:652.440000pt;}
.yc6{bottom:652.466667pt;}
.y22b{bottom:652.973333pt;}
.y24{bottom:653.560000pt;}
.yd9{bottom:653.693333pt;}
.y20c{bottom:654.173333pt;}
.y225{bottom:654.333333pt;}
.y6f{bottom:656.893333pt;}
.y161{bottom:657.026667pt;}
.y1ab{bottom:657.106667pt;}
.y19c{bottom:657.360000pt;}
.y4e{bottom:659.306667pt;}
.y189{bottom:659.560000pt;}
.y1a8{bottom:661.640000pt;}
.yee{bottom:667.666667pt;}
.y57{bottom:669.026667pt;}
.yc5{bottom:669.106667pt;}
.y183{bottom:670.506667pt;}
.y1a1{bottom:671.693333pt;}
.y6e{bottom:672.400000pt;}
.y246{bottom:673.800000pt;}
.y76{bottom:692.226667pt;}
.h45{height:23.528286pt;}
.h4e{height:38.500902pt;}
.h2{height:44.827539pt;}
.h58{height:47.218750pt;}
.h4b{height:47.968826pt;}
.h57{height:48.266992pt;}
.h1c{height:55.031250pt;}
.h1d{height:55.145898pt;}
.h4d{height:59.362093pt;}
.h59{height:60.240856pt;}
.h3c{height:61.154297pt;}
.h40{height:61.251367pt;}
.h5c{height:61.910156pt;}
.h5d{height:62.024805pt;}
.h19{height:63.100000pt;}
.h26{height:64.230469pt;}
.h27{height:64.332422pt;}
.h5b{height:65.464258pt;}
.h25{height:67.124349pt;}
.h5a{height:68.903711pt;}
.h13{height:69.890625pt;}
.he{height:69.987695pt;}
.h4{height:70.785677pt;}
.h5e{height:70.926497pt;}
.h3{height:72.100000pt;}
.h52{height:72.187500pt;}
.h1e{height:72.228516pt;}
.h42{height:72.287760pt;}
.h14{height:72.343164pt;}
.h51{height:73.318999pt;}
.h50{height:73.334065pt;}
.h4f{height:73.337078pt;}
.h4c{height:73.349131pt;}
.h28{height:73.508203pt;}
.h35{height:73.561029pt;}
.h3f{height:74.637487pt;}
.h3d{height:74.690820pt;}
.h3e{height:74.744154pt;}
.h46{height:78.306445pt;}
.h33{height:78.626953pt;}
.h10{height:78.724023pt;}
.h2e{height:79.980469pt;}
.h2d{height:80.107422pt;}
.h18{height:81.100000pt;}
.h1b{height:82.546875pt;}
.hd{height:82.661523pt;}
.h5f{height:83.145898pt;}
.h1f{height:83.681445pt;}
.h47{height:85.665690pt;}
.h2a{height:86.661523pt;}
.h23{height:89.468099pt;}
.h22{height:89.561198pt;}
.h12{height:92.979883pt;}
.h39{height:93.284570pt;}
.h3a{height:93.381641pt;}
.h61{height:94.131471pt;}
.h3b{height:94.911263pt;}
.h30{height:95.616992pt;}
.h16{height:96.100000pt;}
.h55{height:96.350260pt;}
.h1a{height:101.407682pt;}
.h8{height:105.100000pt;}
.h9{height:105.200000pt;}
.h48{height:105.265690pt;}
.h20{height:107.552539pt;}
.h11{height:107.845117pt;}
.h29{height:107.942188pt;}
.h6{height:110.177148pt;}
.h7{height:110.291797pt;}
.hb{height:111.100000pt;}
.h15{height:111.200000pt;}
.hc{height:111.389323pt;}
.h37{height:116.899805pt;}
.h56{height:120.412760pt;}
.h53{height:120.495508pt;}
.h49{height:125.317773pt;}
.h2f{height:125.414844pt;}
.h5{height:127.374414pt;}
.h36{height:127.489063pt;}
.h41{height:129.436198pt;}
.h60{height:129.536458pt;}
.h21{height:134.155599pt;}
.h24{height:135.656901pt;}
.h43{height:139.380664pt;}
.h34{height:139.878320pt;}
.h38{height:139.975391pt;}
.h1{height:144.200000pt;}
.h2c{height:148.011133pt;}
.h54{height:148.125781pt;}
.h31{height:159.100000pt;}
.ha{height:159.200000pt;}
.h2b{height:165.208398pt;}
.hf{height:165.323047pt;}
.h32{height:216.863281pt;}
.h44{height:279.592253pt;}
.h17{height:351.400000pt;}
.h4a{height:430.904475pt;}
.h0{height:720.000000pt;}
.w2{width:296.680528pt;}
.w3{width:630.996523pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6e{left:3.000000pt;}
.x19{left:6.266652pt;}
.x6d{left:9.633319pt;}
.x1a{left:10.933319pt;}
.xa8{left:12.433319pt;}
.x8e{left:13.499986pt;}
.x75{left:14.733319pt;}
.x71{left:16.266652pt;}
.x61{left:17.766652pt;}
.xd{left:19.899986pt;}
.x5a{left:21.633319pt;}
.x43{left:23.433319pt;}
.x68{left:25.399986pt;}
.x72{left:27.233319pt;}
.x1b{left:28.133319pt;}
.x91{left:31.266652pt;}
.x18{left:32.866652pt;}
.x9b{left:35.099986pt;}
.x56{left:38.733319pt;}
.x1d{left:39.633319pt;}
.x7a{left:40.604638pt;}
.x9d{left:42.633319pt;}
.x89{left:43.866652pt;}
.x23{left:46.133319pt;}
.x4b{left:47.299986pt;}
.x5f{left:49.166652pt;}
.x64{left:50.399986pt;}
.x5b{left:51.666652pt;}
.x62{left:53.866652pt;}
.x1e{left:56.133319pt;}
.x28{left:57.666652pt;}
.x51{left:61.099986pt;}
.x6{left:62.966652pt;}
.x7{left:65.599986pt;}
.x7b{left:67.731231pt;}
.x1c{left:70.999986pt;}
.x1{left:77.033319pt;}
.x3c{left:78.499986pt;}
.x84{left:80.133319pt;}
.x79{left:81.509324pt;}
.x7c{left:90.533086pt;}
.x57{left:94.266652pt;}
.x41{left:97.766652pt;}
.x21{left:103.966652pt;}
.x8{left:105.566652pt;}
.xa1{left:115.233319pt;}
.x24{left:124.233319pt;}
.x50{left:126.566652pt;}
.x34{left:127.733319pt;}
.x7e{left:130.266652pt;}
.x22{left:133.933319pt;}
.x87{left:137.733319pt;}
.x5e{left:142.399986pt;}
.x54{left:144.866652pt;}
.x3{left:149.293319pt;}
.x77{left:150.826652pt;}
.x12{left:154.933319pt;}
.x8f{left:166.773319pt;}
.x8a{left:176.199986pt;}
.x33{left:177.773319pt;}
.x16{left:180.266652pt;}
.x97{left:184.439986pt;}
.x55{left:185.439986pt;}
.x90{left:204.666652pt;}
.xa4{left:211.333319pt;}
.x11{left:233.066652pt;}
.x20{left:234.959986pt;}
.x85{left:238.106652pt;}
.x4c{left:240.733319pt;}
.xb{left:242.266652pt;}
.x5d{left:247.466652pt;}
.x49{left:248.773319pt;}
.x46{left:250.026652pt;}
.x6c{left:261.666652pt;}
.x39{left:264.199986pt;}
.x38{left:267.266652pt;}
.x9{left:269.906652pt;}
.x4a{left:280.066652pt;}
.x78{left:293.439986pt;}
.x3f{left:314.266652pt;}
.x86{left:316.573319pt;}
.x5c{left:319.533319pt;}
.x73{left:322.973319pt;}
.x40{left:329.599986pt;}
.x96{left:332.666652pt;}
.x7d{left:333.659426pt;}
.x27{left:334.666652pt;}
.x2c{left:337.306652pt;}
.x2b{left:343.173319pt;}
.x37{left:353.533319pt;}
.x45{left:354.666652pt;}
.x83{left:358.426652pt;}
.x42{left:362.773319pt;}
.x1f{left:366.773319pt;}
.x70{left:372.466652pt;}
.x59{left:392.573319pt;}
.x15{left:405.999986pt;}
.x8b{left:409.399986pt;}
.x8c{left:414.773319pt;}
.xa2{left:422.666652pt;}
.x88{left:428.839986pt;}
.x4e{left:433.133319pt;}
.x60{left:434.226652pt;}
.x4d{left:442.106652pt;}
.x98{left:454.066652pt;}
.x9f{left:466.893319pt;}
.xe{left:470.933319pt;}
.x7f{left:474.266652pt;}
.x80{left:478.399986pt;}
.xa0{left:482.466652pt;}
.x8d{left:490.439986pt;}
.x74{left:510.559986pt;}
.x9a{left:517.466652pt;}
.x99{left:531.226652pt;}
.x17{left:536.399986pt;}
.x9c{left:546.706652pt;}
.x95{left:566.573319pt;}
.x9e{left:576.226652pt;}
.xa6{left:577.266652pt;}
.x44{left:582.973319pt;}
.x35{left:595.133319pt;}
.xa7{left:596.693319pt;}
.xa9{left:603.706652pt;}
.x3a{left:607.639986pt;}
.xa5{left:609.399986pt;}
.xa{left:616.359986pt;}
.xf{left:617.399986pt;}
.x10{left:619.239986pt;}
.x81{left:621.799986pt;}
.x3d{left:625.799986pt;}
.x82{left:627.426652pt;}
.x25{left:628.693319pt;}
.x66{left:634.933319pt;}
.x3b{left:640.173319pt;}
.x13{left:642.706652pt;}
.x6f{left:644.533319pt;}
.x53{left:659.733319pt;}
.xc{left:668.893319pt;}
.x52{left:670.639986pt;}
.x30{left:672.839986pt;}
.x2f{left:675.906652pt;}
.x65{left:677.226652pt;}
.x3e{left:682.039986pt;}
.x29{left:683.106652pt;}
.x94{left:684.266652pt;}
.x2e{left:686.466652pt;}
.x2a{left:689.466652pt;}
.x26{left:691.133319pt;}
.x2d{left:704.333319pt;}
.x4f{left:708.866652pt;}
.xaa{left:714.133319pt;}
.x58{left:715.959986pt;}
.x6a{left:718.333319pt;}
.x76{left:731.333319pt;}
.x14{left:732.933319pt;}
.x63{left:733.893319pt;}
.x69{left:738.933319pt;}
.x93{left:739.999986pt;}
.x6b{left:760.133319pt;}
.x48{left:771.173319pt;}
.x67{left:772.959986pt;}
.x2{left:794.293319pt;}
.x4{left:809.426652pt;}
.x47{left:811.133319pt;}
.x32{left:816.999986pt;}
.x31{left:824.599986pt;}
.x92{left:828.466652pt;}
.x36{left:831.199986pt;}
.x5{left:834.093319pt;}
.xa3{left:850.439986pt;}
}




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