
    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_ecfeeabfba2815843914ff57.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_5cad1da7795b6d547a024895.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_841d5daf197bcaa6b068c5bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_90e217d71d41dce56ee6d7ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_53fba28cffe2b005bf8aa8c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7270a3ee488aa50f46ba49a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_c2b31dd43a6e5e6830f18c70.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_14e84072e6253a8151ca7043.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_c0bfc9280abc53f43974f942.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.697266;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_f4ed149c32076aba2af8a2ac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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_938f5f3658947f81ab4238ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.691406;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_657c681a3976a1e2c44111ef.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_b54470add1d8bc63f67d6f55.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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_6e97502ca0710184b15de78f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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_75197e0508558830ba149a24.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_06fe562ea0a748374fa754e2.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_f82e07eb6b7d0ebcd653e47a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.783691;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_c7e43cb71bad50e1e267f574.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.861328;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_092e2719c8895557d26b73de.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.862793;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;}
.m2e{transform:matrix(0.000000,-0.244886,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.244886,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.244886,0.250000,0.000000,0,0);}
.m34{transform:matrix(0.000000,-0.245977,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.245977,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.245977,0.250000,0.000000,0,0);}
.m30{transform:matrix(0.000000,-0.248384,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248384,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248384,0.250000,0.000000,0,0);}
.m38{transform:matrix(0.000000,-0.248877,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248877,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248877,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249605,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249605,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249605,0.250000,0.000000,0,0);}
.m28{transform:matrix(0.000000,-0.249613,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249613,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249613,0.250000,0.000000,0,0);}
.m2a{transform:matrix(0.000000,-0.249796,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249796,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249796,0.250000,0.000000,0,0);}
.m2c{transform:matrix(0.000000,-0.250507,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250507,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250507,0.250000,0.000000,0,0);}
.m36{transform:matrix(0.000000,-0.251023,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251023,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251023,0.250000,0.000000,0,0);}
.m32{transform:matrix(0.000000,-0.252661,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252661,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252661,0.250000,0.000000,0,0);}
.m1e{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.201403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201403,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.233629,0.000000,-0.077868,0.237564,0,0);-ms-transform:matrix(0.233629,0.000000,-0.077868,0.237564,0,0);-webkit-transform:matrix(0.233629,0.000000,-0.077868,0.237564,0,0);}
.m15{transform:matrix(0.233651,0.000000,-0.077876,0.237561,0,0);-ms-transform:matrix(0.233651,0.000000,-0.077876,0.237561,0,0);-webkit-transform:matrix(0.233651,0.000000,-0.077876,0.237561,0,0);}
.md{transform:matrix(0.233717,0.000000,-0.077898,0.237554,0,0);-ms-transform:matrix(0.233717,0.000000,-0.077898,0.237554,0,0);-webkit-transform:matrix(0.233717,0.000000,-0.077898,0.237554,0,0);}
.mf{transform:matrix(0.233717,0.000000,-0.077898,0.237554,0,0);-ms-transform:matrix(0.233717,0.000000,-0.077898,0.237554,0,0);-webkit-transform:matrix(0.233717,0.000000,-0.077898,0.237554,0,0);}
.m16{transform:matrix(0.233782,0.000000,-0.077920,0.237547,0,0);-ms-transform:matrix(0.233782,0.000000,-0.077920,0.237547,0,0);-webkit-transform:matrix(0.233782,0.000000,-0.077920,0.237547,0,0);}
.m10{transform:matrix(0.233792,0.000000,-0.077923,0.237546,0,0);-ms-transform:matrix(0.233792,0.000000,-0.077923,0.237546,0,0);-webkit-transform:matrix(0.233792,0.000000,-0.077923,0.237546,0,0);}
.m12{transform:matrix(0.233793,0.000000,-0.077923,0.237546,0,0);-ms-transform:matrix(0.233793,0.000000,-0.077923,0.237546,0,0);-webkit-transform:matrix(0.233793,0.000000,-0.077923,0.237546,0,0);}
.m7{transform:matrix(0.236010,0.000000,-0.078662,0.237302,0,0);-ms-transform:matrix(0.236010,0.000000,-0.078662,0.237302,0,0);-webkit-transform:matrix(0.236010,0.000000,-0.078662,0.237302,0,0);}
.m6{transform:matrix(0.236032,0.000000,-0.078669,0.237300,0,0);-ms-transform:matrix(0.236032,0.000000,-0.078669,0.237300,0,0);-webkit-transform:matrix(0.236032,0.000000,-0.078669,0.237300,0,0);}
.mb{transform:matrix(0.236103,0.000000,-0.078693,0.237292,0,0);-ms-transform:matrix(0.236103,0.000000,-0.078693,0.237292,0,0);-webkit-transform:matrix(0.236103,0.000000,-0.078693,0.237292,0,0);}
.m8{transform:matrix(0.236115,0.000000,-0.078697,0.237290,0,0);-ms-transform:matrix(0.236115,0.000000,-0.078697,0.237290,0,0);-webkit-transform:matrix(0.236115,0.000000,-0.078697,0.237290,0,0);}
.m4{transform:matrix(0.238533,0.000000,-0.079503,0.237022,0,0);-ms-transform:matrix(0.238533,0.000000,-0.079503,0.237022,0,0);-webkit-transform:matrix(0.238533,0.000000,-0.079503,0.237022,0,0);}
.m26{transform:matrix(0.243552,0.000000,-0.081176,0.236454,0,0);-ms-transform:matrix(0.243552,0.000000,-0.081176,0.236454,0,0);-webkit-transform:matrix(0.243552,0.000000,-0.081176,0.236454,0,0);}
.m24{transform:matrix(0.243734,0.000000,-0.081237,0.236433,0,0);-ms-transform:matrix(0.243734,0.000000,-0.081237,0.236433,0,0);-webkit-transform:matrix(0.243734,0.000000,-0.081237,0.236433,0,0);}
.m22{transform:matrix(0.244242,0.000000,-0.081406,0.236375,0,0);-ms-transform:matrix(0.244242,0.000000,-0.081406,0.236375,0,0);-webkit-transform:matrix(0.244242,0.000000,-0.081406,0.236375,0,0);}
.m14{transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245962,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246038,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246049,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246051,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248748,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250204,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251237,0.000000,-0.083737,0.235559,0,0);-ms-transform:matrix(0.251237,0.000000,-0.083737,0.235559,0,0);-webkit-transform:matrix(0.251237,0.000000,-0.083737,0.235559,0,0);}
.m3{transform:matrix(0.251594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251594,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252453,0.000000,-0.084142,0.235415,0,0);-ms-transform:matrix(0.252453,0.000000,-0.084142,0.235415,0,0);-webkit-transform:matrix(0.252453,0.000000,-0.084142,0.235415,0,0);}
.m1a{transform:matrix(0.253590,0.000000,-0.084521,0.235279,0,0);-ms-transform:matrix(0.253590,0.000000,-0.084521,0.235279,0,0);-webkit-transform:matrix(0.253590,0.000000,-0.084521,0.235279,0,0);}
.m33{transform:matrix(0.254089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254089,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.255221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255221,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.257505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257505,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258321,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.266639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266639,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.268094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268094,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.269457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269457,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-115.242067px;}
.v5{vertical-align:-65.969498px;}
.v1f{vertical-align:-60.780000px;}
.v15{vertical-align:-57.949046px;}
.v16{vertical-align:-56.165652px;}
.v4{vertical-align:-49.190828px;}
.v1d{vertical-align:-36.885272px;}
.v9{vertical-align:-33.991411px;}
.v22{vertical-align:-31.785122px;}
.v23{vertical-align:-29.618503px;}
.v19{vertical-align:-28.326481px;}
.v8{vertical-align:-23.181882px;}
.v1c{vertical-align:-20.160000px;}
.v14{vertical-align:-17.280000px;}
.v7{vertical-align:-14.401547px;}
.v6{vertical-align:-13.186959px;}
.v1{vertical-align:-10.160414px;}
.v20{vertical-align:-6.962882px;}
.v18{vertical-align:-5.932085px;}
.v0{vertical-align:0.000000px;}
.v1b{vertical-align:4.952182px;}
.v21{vertical-align:6.917863px;}
.v1a{vertical-align:7.923491px;}
.v10{vertical-align:10.505647px;}
.v13{vertical-align:15.237529px;}
.vf{vertical-align:21.315176px;}
.v12{vertical-align:26.047058px;}
.vb{vertical-align:37.290705px;}
.va{vertical-align:48.100235px;}
.v1e{vertical-align:51.318639px;}
.v2{vertical-align:55.071302px;}
.v17{vertical-align:57.600000px;}
.v11{vertical-align:58.605881px;}
.vd{vertical-align:81.483881px;}
.vc{vertical-align:92.293410px;}
.ve{vertical-align:129.584116px;}
.ls1a{letter-spacing:-2.169771px;}
.ls30{letter-spacing:-0.373200px;}
.ls2f{letter-spacing:-0.269400px;}
.ls3{letter-spacing:-0.234000px;}
.ls31{letter-spacing:-0.223800px;}
.ls19{letter-spacing:-0.209836px;}
.ls18{letter-spacing:-0.156449px;}
.ls17{letter-spacing:-0.082358px;}
.ls44{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000693px;}
.ls34{letter-spacing:0.000713px;}
.ls9{letter-spacing:0.001388px;}
.ls10{letter-spacing:0.003126px;}
.ls33{letter-spacing:0.003414px;}
.ls4{letter-spacing:0.005847px;}
.ls12{letter-spacing:0.007118px;}
.lsf{letter-spacing:0.008682px;}
.lsb{letter-spacing:0.011019px;}
.lsd{letter-spacing:0.015291px;}
.ls11{letter-spacing:0.015800px;}
.lse{letter-spacing:0.017365px;}
.ls3e{letter-spacing:0.019261px;}
.ls3f{letter-spacing:0.032736px;}
.ls3b{letter-spacing:0.032818px;}
.ls0{letter-spacing:0.037440px;}
.lsa{letter-spacing:0.068247px;}
.ls38{letter-spacing:0.142800px;}
.ls25{letter-spacing:0.229248px;}
.ls2e{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.289440px;}
.ls32{letter-spacing:0.360000px;}
.ls39{letter-spacing:2.094669px;}
.ls3a{letter-spacing:2.119375px;}
.ls40{letter-spacing:3.123592px;}
.ls3c{letter-spacing:3.131364px;}
.ls41{letter-spacing:12.772626px;}
.ls3d{letter-spacing:12.804409px;}
.ls43{letter-spacing:59.979456px;}
.ls42{letter-spacing:60.092640px;}
.ls2{letter-spacing:65.844000px;}
.ls7{letter-spacing:102.359129px;}
.ls37{letter-spacing:107.333332px;}
.ls36{letter-spacing:107.390666px;}
.ls15{letter-spacing:164.497755px;}
.ls14{letter-spacing:177.293959px;}
.ls24{letter-spacing:177.400844px;}
.ls21{letter-spacing:178.501505px;}
.ls16{letter-spacing:194.216489px;}
.ls29{letter-spacing:211.694640px;}
.ls2a{letter-spacing:215.430720px;}
.ls2c{letter-spacing:235.194624px;}
.ls2b{letter-spacing:235.322640px;}
.ls2d{letter-spacing:239.058720px;}
.ls5{letter-spacing:257.063737px;}
.ls13{letter-spacing:275.146816px;}
.ls1c{letter-spacing:288.092107px;}
.ls1e{letter-spacing:289.334707px;}
.ls23{letter-spacing:292.505529px;}
.ls20{letter-spacing:294.320342px;}
.ls1b{letter-spacing:294.974201px;}
.ls1d{letter-spacing:296.407971px;}
.ls22{letter-spacing:298.860453px;}
.ls1f{letter-spacing:300.714695px;}
.ls28{letter-spacing:310.320000px;}
.ls26{letter-spacing:310.392000px;}
.ls6{letter-spacing:439.551040px;}
.ls35{letter-spacing:2084.340006px;}
.ls8{letter-spacing:2801.241179px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6f{word-spacing:-40.072032px;}
.ws0{word-spacing:-40.032000px;}
.ws3{word-spacing:-37.913760px;}
.wsa{word-spacing:-34.293691px;}
.ws95{word-spacing:-30.035326px;}
.ws13{word-spacing:-28.957775px;}
.ws11{word-spacing:-28.943177px;}
.ws12{word-spacing:-28.942484px;}
.ws1{word-spacing:-26.621280px;}
.wsf{word-spacing:-26.530465px;}
.ws1a{word-spacing:-24.408000px;}
.wsd{word-spacing:-24.118447px;}
.ws77{word-spacing:-23.925329px;}
.ws7f{word-spacing:-23.912556px;}
.wse{word-spacing:-21.944331px;}
.ws14{word-spacing:-21.723247px;}
.ws6c{word-spacing:-20.021453px;}
.ws8b{word-spacing:-19.646215px;}
.ws8a{word-spacing:-19.244297px;}
.ws10{word-spacing:-18.808186px;}
.ws1b{word-spacing:-18.000000px;}
.ws98{word-spacing:-16.583376px;}
.ws87{word-spacing:-16.447344px;}
.wsa3{word-spacing:-16.434952px;}
.wsab{word-spacing:-15.452978px;}
.ws9f{word-spacing:-15.260880px;}
.ws8c{word-spacing:-15.235285px;}
.ws94{word-spacing:-14.920313px;}
.ws91{word-spacing:-14.823843px;}
.ws9{word-spacing:-14.690553px;}
.ws16{word-spacing:-14.118372px;}
.ws9a{word-spacing:-13.128692px;}
.wsa5{word-spacing:-13.011188px;}
.ws88{word-spacing:-12.692160px;}
.ws99{word-spacing:-12.437656px;}
.ws24{word-spacing:-12.384000px;}
.wsa4{word-spacing:-12.326337px;}
.ws9d{word-spacing:-12.306672px;}
.wsa8{word-spacing:-12.276125px;}
.wsac{word-spacing:-12.233781px;}
.wsa0{word-spacing:-12.081702px;}
.ws78{word-spacing:-11.894815px;}
.ws75{word-spacing:-11.885831px;}
.ws71{word-spacing:-11.885118px;}
.ws7c{word-spacing:-11.879486px;}
.ws7d{word-spacing:-11.878772px;}
.ws80{word-spacing:-11.854738px;}
.wsc{word-spacing:-11.745637px;}
.wsb{word-spacing:-10.686847px;}
.ws76{word-spacing:-9.409185px;}
.ws7e{word-spacing:-9.404162px;}
.ws6b{word-spacing:-8.576974px;}
.ws7a{word-spacing:-8.418670px;}
.ws85{word-spacing:-8.414175px;}
.ws9b{word-spacing:-7.998353px;}
.wsa7{word-spacing:-7.978499px;}
.ws6e{word-spacing:-6.857606px;}
.ws6d{word-spacing:-6.239438px;}
.ws1c{word-spacing:-0.888000px;}
.ws19{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.077190px;}
.ws21{word-spacing:-0.074979px;}
.ws7{word-spacing:-0.074880px;}
.ws22{word-spacing:-0.074516px;}
.ws23{word-spacing:-0.072671px;}
.ws59{word-spacing:-0.048384px;}
.ws2f{word-spacing:-0.048240px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.689760px;}
.ws4{word-spacing:0.779040px;}
.ws6{word-spacing:1.305840px;}
.ws1d{word-spacing:1.584000px;}
.wsa1{word-spacing:5.173920px;}
.ws96{word-spacing:56.751033px;}
.ws93{word-spacing:59.221698px;}
.ws6a{word-spacing:69.637582px;}
.ws86{word-spacing:92.919340px;}
.ws84{word-spacing:92.939138px;}
.ws79{word-spacing:92.968975px;}
.ws8e{word-spacing:106.069019px;}
.ws18{word-spacing:111.163166px;}
.ws17{word-spacing:112.315923px;}
.ws8{word-spacing:119.274540px;}
.ws74{word-spacing:128.657567px;}
.ws26{word-spacing:130.074480px;}
.ws27{word-spacing:148.086240px;}
.ws30{word-spacing:149.276040px;}
.ws7b{word-spacing:152.346661px;}
.ws47{word-spacing:153.596040px;}
.ws35{word-spacing:153.715344px;}
.ws2b{word-spacing:156.476040px;}
.ws9e{word-spacing:156.680392px;}
.ws29{word-spacing:159.514560px;}
.ws90{word-spacing:160.273440px;}
.ws31{word-spacing:162.185280px;}
.ws9c{word-spacing:164.730345px;}
.ws36{word-spacing:166.130880px;}
.ws48{word-spacing:166.359120px;}
.ws97{word-spacing:167.494268px;}
.ws60{word-spacing:169.943280px;}
.ws53{word-spacing:175.145280px;}
.ws65{word-spacing:178.025280px;}
.ws44{word-spacing:178.745280px;}
.ws56{word-spacing:179.810880px;}
.ws67{word-spacing:182.690880px;}
.ws61{word-spacing:182.919120px;}
.ws2c{word-spacing:186.503280px;}
.ws51{word-spacing:187.223280px;}
.ws42{word-spacing:187.943280px;}
.ws28{word-spacing:197.173680px;}
.ws25{word-spacing:205.624080px;}
.wsaa{word-spacing:207.561784px;}
.ws8d{word-spacing:211.528822px;}
.ws4a{word-spacing:211.646400px;}
.wsa6{word-spacing:212.533935px;}
.wsa2{word-spacing:212.561327px;}
.ws4d{word-spacing:215.382480px;}
.ws68{word-spacing:231.629400px;}
.ws3a{word-spacing:234.104040px;}
.ws69{word-spacing:235.949400px;}
.ws3e{word-spacing:238.424040px;}
.ws41{word-spacing:241.485120px;}
.ws2a{word-spacing:244.146240px;}
.ws46{word-spacing:247.496040px;}
.ws89{word-spacing:253.225216px;}
.ws52{word-spacing:258.746400px;}
.ws58{word-spacing:258.984720px;}
.ws34{word-spacing:259.466400px;}
.ws2e{word-spacing:261.176040px;}
.ws62{word-spacing:262.135200px;}
.ws3f{word-spacing:262.855200px;}
.ws3d{word-spacing:264.776040px;}
.ws49{word-spacing:268.106400px;}
.ws5b{word-spacing:268.241400px;}
.ws33{word-spacing:270.536040px;}
.ws4e{word-spacing:271.495200px;}
.ws45{word-spacing:271.706400px;}
.ws43{word-spacing:271.842480px;}
.ws5c{word-spacing:272.426400px;}
.ws5d{word-spacing:272.561400px;}
.ws38{word-spacing:274.975344px;}
.ws4f{word-spacing:275.622480px;}
.ws63{word-spacing:275.815200px;}
.ws54{word-spacing:276.162480px;}
.ws40{word-spacing:276.746400px;}
.ws3c{word-spacing:277.917120px;}
.ws3b{word-spacing:278.695200px;}
.ws39{word-spacing:278.938368px;}
.ws5e{word-spacing:279.042480px;}
.ws4b{word-spacing:280.135200px;}
.ws37{word-spacing:281.916768px;}
.ws32{word-spacing:282.762480px;}
.ws5a{word-spacing:289.056000px;}
.ws57{word-spacing:293.239488px;}
.ws64{word-spacing:294.503760px;}
.ws66{word-spacing:294.575616px;}
.ws2d{word-spacing:299.291520px;}
.ws50{word-spacing:307.463760px;}
.ws55{word-spacing:307.535616px;}
.ws5f{word-spacing:311.783760px;}
.ws4c{word-spacing:314.663760px;}
.ws1f{word-spacing:481.234011px;}
.ws20{word-spacing:482.786288px;}
.ws15{word-spacing:614.151126px;}
.ws81{word-spacing:1046.467238px;}
.ws70{word-spacing:1047.026231px;}
.ws82{word-spacing:1047.793714px;}
.ws72{word-spacing:1048.353416px;}
.ws83{word-spacing:1058.068955px;}
.ws73{word-spacing:1058.653955px;}
.ws92{word-spacing:1242.641204px;}
.wsa9{word-spacing:1380.325514px;}
.ws8f{word-spacing:1776.132126px;}
._5{margin-left:-3261.577008px;}
._8{margin-left:-3241.117008px;}
._32{margin-left:-10.767360px;}
._3{margin-left:-6.306720px;}
._1{margin-left:-4.891104px;}
._4{margin-left:-3.113280px;}
._0{margin-left:-1.584000px;}
._2{width:1.150848px;}
._22{width:2.249280px;}
._2f{width:3.306384px;}
._31{width:4.889088px;}
._30{width:28.182288px;}
._29{width:73.502187px;}
._28{width:77.239825px;}
._1f{width:89.244289px;}
._20{width:90.422188px;}
._21{width:141.881773px;}
._6{width:152.856708px;}
._7{width:154.874202px;}
._24{width:166.193528px;}
._23{width:177.878714px;}
._2c{width:182.341223px;}
._2a{width:188.801190px;}
._2b{width:191.598778px;}
._1e{width:222.048240px;}
._b{width:224.522880px;}
._2e{width:227.426631px;}
._27{width:230.982303px;}
._26{width:234.190872px;}
._2d{width:236.389341px;}
._a{width:245.245440px;}
._1c{width:249.002640px;}
._15{width:250.893360px;}
._1d{width:252.738720px;}
._17{width:255.213360px;}
._c{width:265.169472px;}
._25{width:268.981005px;}
._14{width:281.190720px;}
._1a{width:285.030720px;}
._16{width:286.073280px;}
._f{width:287.325360px;}
._1b{width:290.152080px;}
._12{width:291.645360px;}
._e{width:300.275760px;}
._18{width:305.757120px;}
._13{width:309.986400px;}
._19{width:312.734352px;}
._d{width:316.611840px;}
._11{width:317.727552px;}
._10{width:327.672000px;}
._9{width:693.816864px;}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs50{font-size:23.758258px;}
.fs46{font-size:23.770949px;}
.fs43{font-size:27.608135px;}
.fs44{font-size:30.343387px;}
.fs3f{font-size:30.852424px;}
.fs67{font-size:31.913998px;}
.fs5f{font-size:31.993410px;}
.fs22{font-size:32.608436px;}
.fs27{font-size:32.625369px;}
.fs24{font-size:32.669986px;}
.fs4f{font-size:33.656700px;}
.fs4a{font-size:33.674678px;}
.fs1f{font-size:35.056475px;}
.fs40{font-size:36.412502px;}
.fs41{font-size:36.468949px;}
.fs4d{font-size:37.616647px;}
.fs48{font-size:37.636741px;}
.fs3b{font-size:41.982830px;}
.fs42{font-size:42.479431px;}
.fs38{font-size:43.048794px;}
.fs35{font-size:43.315885px;}
.fs4e{font-size:43.556568px;}
.fs49{font-size:43.579835px;}
.fs2d{font-size:44.516087px;}
.fs9{font-size:47.286932px;}
.fs31{font-size:47.372704px;}
.fs4c{font-size:47.418952px;}
.fs4b{font-size:47.515090px;}
.fs45{font-size:47.540471px;}
.fs47{font-size:47.579259px;}
.fs2b{font-size:48.240000px;}
.fs62{font-size:48.326807px;}
.fs3e{font-size:48.384000px;}
.fs6a{font-size:48.935125px;}
.fs65{font-size:49.104501px;}
.fs5d{font-size:49.226690px;}
.fs64{font-size:49.305348px;}
.fs5c{font-size:49.750625px;}
.fs1d{font-size:50.785513px;}
.fsa{font-size:51.971844px;}
.fs66{font-size:52.044753px;}
.fs5e{font-size:52.514770px;}
.fs5{font-size:52.843717px;}
.fs59{font-size:54.355426px;}
.fs58{font-size:54.709156px;}
.fs18{font-size:55.267372px;}
.fs52{font-size:56.160000px;}
.fs1b{font-size:56.382371px;}
.fs21{font-size:59.241540px;}
.fs26{font-size:59.265533px;}
.fs56{font-size:59.295373px;}
.fs23{font-size:59.350412px;}
.fs57{font-size:59.681250px;}
.fs55{font-size:60.941140px;}
.fs60{font-size:61.043520px;}
.fs68{font-size:61.811910px;}
.fs13{font-size:62.020420px;}
.fs61{font-size:62.041938px;}
.fs69{font-size:62.090933px;}
.fs6{font-size:62.366962px;}
.fs7{font-size:62.465739px;}
.fs25{font-size:63.810158px;}
.fs20{font-size:63.812089px;}
.fs63{font-size:65.739807px;}
.fs5b{font-size:66.333503px;}
.fs14{font-size:67.655347px;}
.fs2a{font-size:72.000000px;}
.fs3{font-size:72.144000px;}
.fs3a{font-size:72.671252px;}
.fs8{font-size:72.758337px;}
.fs1e{font-size:72.873816px;}
.fs28{font-size:72.897000px;}
.fs37{font-size:74.516410px;}
.fs34{font-size:74.978738px;}
.fs3c{font-size:76.834465px;}
.fs53{font-size:76.977189px;}
.fs2c{font-size:77.190200px;}
.fs1c{font-size:78.141175px;}
.fs54{font-size:78.584860px;}
.fs39{font-size:78.792277px;}
.fs11{font-size:78.936443px;}
.fs36{font-size:79.300675px;}
.fs2e{font-size:82.019916px;}
.fs30{font-size:82.143528px;}
.fs51{font-size:84.240000px;}
.fs5a{font-size:84.384000px;}
.fsc{font-size:85.787082px;}
.fse{font-size:86.757004px;}
.fs33{font-size:87.179342px;}
.fs32{font-size:87.232822px;}
.fs19{font-size:95.369679px;}
.fs12{font-size:95.433329px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:95.904000px;}
.fs16{font-size:100.407577px;}
.fs1a{font-size:100.477241px;}
.fs15{font-size:100.522025px;}
.fs17{font-size:100.538900px;}
.fsf{font-size:104.109654px;}
.fs2f{font-size:107.351110px;}
.fs29{font-size:108.000000px;}
.fs6b{font-size:120.240000px;}
.fs10{font-size:121.456058px;}
.fs0{font-size:144.000000px;}
.fs3d{font-size:144.144000px;}
.fsb{font-size:147.821700px;}
.fsd{font-size:155.915785px;}
.fs4{font-size:167.760000px;}
.fs6c{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:3.237017px;}
.y6c{bottom:3.248912px;}
.y6a{bottom:3.249806px;}
.y73{bottom:3.250347px;}
.yc6{bottom:3.313396px;}
.yd7{bottom:4.489450px;}
.y147{bottom:4.496556px;}
.y2a{bottom:4.703655px;}
.y47{bottom:4.872901px;}
.y1a{bottom:5.675150px;}
.y1d3{bottom:5.765618px;}
.y206{bottom:5.838193px;}
.y183{bottom:5.847706px;}
.y9d{bottom:6.223097px;}
.y97{bottom:6.381105px;}
.y90{bottom:6.420696px;}
.y42{bottom:6.493567px;}
.y67{bottom:6.495361px;}
.y77{bottom:6.496808px;}
.y44{bottom:6.500180px;}
.y86{bottom:7.005573px;}
.y17f{bottom:7.276502px;}
.y1ec{bottom:7.453325px;}
.y8a{bottom:7.455124px;}
.y1b9{bottom:7.520636px;}
.yce{bottom:9.234936px;}
.y6d{bottom:9.577412px;}
.y70{bottom:9.577911px;}
.y74{bottom:9.582203px;}
.y69{bottom:10.054674px;}
.y48{bottom:10.826612px;}
.y40{bottom:10.832796px;}
.y94{bottom:11.180639px;}
.y88{bottom:11.240993px;}
.y85{bottom:11.986137px;}
.y89{bottom:12.755292px;}
.ybd{bottom:13.816751px;}
.y2c{bottom:14.257911px;}
.y22{bottom:15.817504px;}
.yee{bottom:19.122850px;}
.yc8{bottom:19.156386px;}
.y4e{bottom:19.672861px;}
.y12f{bottom:20.140660px;}
.y9c{bottom:20.265165px;}
.ybe{bottom:20.343561px;}
.y96{bottom:20.779707px;}
.y8f{bottom:20.908632px;}
.y18a{bottom:21.992660px;}
.y193{bottom:22.120494px;}
.y1c9{bottom:22.298276px;}
.y1fc{bottom:22.578958px;}
.y33{bottom:23.061996px;}
.y11{bottom:23.665190px;}
.y1e5{bottom:24.024716px;}
.y1b2{bottom:24.241683px;}
.y9e{bottom:24.945200px;}
.y98{bottom:25.578570px;}
.y91{bottom:25.737269px;}
.y5c{bottom:25.945041px;}
.y1ba{bottom:31.237865px;}
.y8{bottom:31.392000px;}
.y9b{bottom:31.594489px;}
.y162{bottom:31.663600px;}
.y1d5{bottom:31.836422px;}
.y1ed{bottom:31.887549px;}
.ye6{bottom:31.998523px;}
.y208{bottom:32.237165px;}
.y1ca{bottom:32.472298px;}
.y175{bottom:32.532008px;}
.y95{bottom:32.560036px;}
.y8e{bottom:32.762051px;}
.y1c{bottom:32.810862px;}
.y1fd{bottom:32.881046px;}
.y127{bottom:33.009459px;}
.y12{bottom:34.844244px;}
.y1e6{bottom:34.981460px;}
.y1b3{bottom:35.297377px;}
.y9a{bottom:36.275396px;}
.y53{bottom:36.747804px;}
.y93{bottom:37.359794px;}
.y8d{bottom:37.591588px;}
.y184{bottom:38.051977px;}
.y18c{bottom:38.179811px;}
.y134{bottom:38.413364px;}
.yf0{bottom:39.426796px;}
.ye7{bottom:39.922014px;}
.y131{bottom:40.433766px;}
.y128{bottom:40.928720px;}
.y29{bottom:43.068428px;}
.y1f3{bottom:43.883814px;}
.y1bf{bottom:44.280129px;}
.yf3{bottom:46.131060px;}
.y185{bottom:47.934637px;}
.y18d{bottom:48.062472px;}
.y32{bottom:49.088889px;}
.y181{bottom:49.860000px;}
.y1e7{bottom:52.101372px;}
.y15a{bottom:52.511797px;}
.y1b4{bottom:52.571900px;}
.y16d{bottom:53.380205px;}
.yc7{bottom:54.186788px;}
.y54{bottom:55.980000px;}
.ye8{bottom:56.761909px;}
.y129{bottom:57.756159px;}
.y133{bottom:58.251113px;}
.ybf{bottom:58.315731px;}
.yf2{bottom:58.435746px;}
.y1cb{bottom:59.179105px;}
.y1fe{bottom:59.924027px;}
.y136{bottom:60.131937px;}
.y1f4{bottom:60.318930px;}
.y1c0{bottom:60.863671px;}
.y3b{bottom:60.954983px;}
.y35{bottom:62.063295px;}
.y164{bottom:64.539603px;}
.y15b{bottom:65.341457px;}
.y177{bottom:65.408011px;}
.y16e{bottom:66.209865px;}
.y2b{bottom:66.388700px;}
.yef{bottom:67.518048px;}
.y52{bottom:67.980076px;}
.y1f8{bottom:68.347484px;}
.y130{bottom:68.511505px;}
.y1e8{bottom:68.534434px;}
.y82{bottom:68.685000px;}
.y7d{bottom:68.790000px;}
.y7f{bottom:68.835000px;}
.y1c4{bottom:68.964731px;}
.y1b5{bottom:69.153369px;}
.y165{bottom:70.919953px;}
.ye9{bottom:73.104109px;}
.y12a{bottom:74.089634px;}
.y31{bottom:75.115782px;}
.y1f5{bottom:76.751992px;}
.y1c1{bottom:77.445140px;}
.y65{bottom:77.701631px;}
.y132{bottom:78.544219px;}
.yf1{bottom:78.739692px;}
.y63{bottom:79.782140px;}
.y1d9{bottom:79.848000px;}
.y1d4{bottom:80.298466px;}
.y207{bottom:81.309230px;}
.y135{bottom:81.414951px;}
.y81{bottom:82.260000px;}
.y1cc{bottom:85.251943px;}
.y1e9{bottom:85.654346px;}
.yd4{bottom:86.040000px;}
.y1ff{bottom:86.325060px;}
.y1b6{bottom:86.427891px;}
.y4c{bottom:87.929689px;}
.y18e{bottom:89.444261px;}
.yea{bottom:89.446310px;}
.y3a{bottom:89.584566px;}
.y12b{bottom:90.423110px;}
.y1b{bottom:92.810577px;}
.y34{bottom:93.297736px;}
.y16c{bottom:93.407941px;}
.y1f6{bottom:93.871904px;}
.y1c2{bottom:94.719662px;}
.yc0{bottom:96.286384px;}
.y28{bottom:96.300000px;}
.y4b{bottom:97.845935px;}
.y186{bottom:99.203412px;}
.y51{bottom:99.212347px;}
.y13{bottom:99.882589px;}
.y30{bottom:101.142675px;}
.y10{bottom:101.340000px;}
.y1ea{bottom:102.089462px;}
.y194{bottom:103.008212px;}
.y1b7{bottom:103.011433px;}
.y1c8{bottom:104.220000px;}
.y2d{bottom:105.300000px;}
.yeb{bottom:105.788510px;}
.yf5{bottom:105.951932px;}
.y1fb{bottom:106.200000px;}
.y12c{bottom:106.756585px;}
.y38{bottom:106.764484px;}
.y1fa{bottom:109.635920px;}
.y15c{bottom:110.246870px;}
.y1f7{bottom:110.307020px;}
.y1c7{bottom:110.626042px;}
.y16f{bottom:111.112872px;}
.y1c3{bottom:111.303204px;}
.y1cd{bottom:111.958750px;}
.y200{bottom:113.368041px;}
.y4a{bottom:113.462071px;}
.y1eb{bottom:118.524578px;}
.y1b8{bottom:119.594975px;}
.yec{bottom:122.130710px;}
.y12d{bottom:123.090061px;}
.y5a{bottom:123.213439px;}
.y99{bottom:125.820000px;}
.y64{bottom:125.926674px;}
.y16b{bottom:126.283944px;}
.y62{bottom:127.109645px;}
.y2f{bottom:127.169568px;}
.yf4{bottom:127.246314px;}
.y18f{bottom:130.210237px;}
.y50{bottom:130.444619px;}
.ybb{bottom:131.616000px;}
.y166{bottom:131.896920px;}
.y180{bottom:132.480000px;}
.y178{bottom:132.762922px;}
.y37{bottom:132.791377px;}
.y158{bottom:134.172000px;}
.yc1{bottom:134.260829px;}
.y4d{bottom:136.619499px;}
.y169{bottom:137.509897px;}
.y1ce{bottom:138.029681px;}
.yed{bottom:138.472910px;}
.y84{bottom:138.600000px;}
.y12e{bottom:139.423536px;}
.y201{bottom:139.767142px;}
.y7e{bottom:140.220000px;}
.y17b{bottom:141.575295px;}
.y18b{bottom:141.853270px;}
.y1e0{bottom:143.725089px;}
.y1ad{bottom:145.023072px;}
.y39{bottom:145.559737px;}
.yba{bottom:146.556000px;}
.y16a{bottom:149.537703px;}
.y187{bottom:150.469717px;}
.y83{bottom:150.945000px;}
.y2e{bottom:153.196461px;}
.y15d{bottom:154.348825px;}
.y170{bottom:155.214827px;}
.y36{bottom:158.818270px;}
.y1db{bottom:160.297165px;}
.yb9{bottom:161.535000px;}
.y4f{bottom:161.676890px;}
.y1a7{bottom:161.744810px;}
.y146{bottom:162.622021px;}
.y7{bottom:162.690000px;}
.yd6{bottom:162.698984px;}
.y21d{bottom:162.900000px;}
.y1cf{bottom:164.100611px;}
.y14{bottom:164.918336px;}
.y202{bottom:166.166242px;}
.y79{bottom:168.375000px;}
.y49{bottom:168.878076px;}
.y1e2{bottom:170.569112px;}
.y190{bottom:170.976214px;}
.y1dc{bottom:171.253909px;}
.y1af{bottom:172.109523px;}
.yc2{bottom:172.235275px;}
.y1f2{bottom:172.459151px;}
.y1a8{bottom:172.800504px;}
.y1ae{bottom:175.212027px;}
.y1e1{bottom:175.979005px;}
.yb8{bottom:176.475000px;}
.y1be{bottom:176.635448px;}
.yfe{bottom:177.436678px;}
.ye1{bottom:177.723904px;}
.y217{bottom:178.020000px;}
.y122{bottom:178.267510px;}
.y75{bottom:178.550424px;}
.y72{bottom:178.582982px;}
.y59{bottom:180.484409px;}
.y92{bottom:180.720000px;}
.y8c{bottom:180.900000px;}
.y159{bottom:183.240000px;}
.y1c5{bottom:184.415893px;}
.y1ee{bottom:188.373821px;}
.y1bb{bottom:190.075027px;}
.yf6{bottom:190.312351px;}
.yd8{bottom:190.599577px;}
.y6{bottom:190.770000px;}
.y1d0{bottom:190.807418px;}
.y11a{bottom:191.136309px;}
.yb7{bottom:191.415000px;}
.y163{bottom:191.426542px;}
.y176{bottom:192.292544px;}
.y1e4{bottom:193.167397px;}
.y203{bottom:193.209224px;}
.y1a9{bottom:194.220912px;}
.y7c{bottom:195.120000px;}
.y57{bottom:196.687850px;}
.y100{bottom:197.740624px;}
.ye3{bottom:198.027850px;}
.yf7{bottom:198.235842px;}
.y15e{bottom:198.450780px;}
.yda{bottom:198.523068px;}
.y124{bottom:198.560616px;}
.y11b{bottom:199.055570px;}
.y171{bottom:199.316782px;}
.y1dd{bottom:199.330565px;}
.y78{bottom:200.775000px;}
.y188{bottom:201.736020px;}
.yd0{bottom:202.252230px;}
.y1ef{bottom:204.808937px;}
.y21c{bottom:205.770000px;}
.yb6{bottom:206.355000px;}
.y1bc{bottom:206.658568px;}
.y216{bottom:206.820000px;}
.y80{bottom:209.055000px;}
.y1d7{bottom:209.247833px;}
.yc3{bottom:210.209720px;}
.ycf{bottom:211.355174px;}
.y191{bottom:211.742191px;}
.y20a{bottom:211.881758px;}
.y1e3{bottom:213.026495px;}
.y43{bottom:213.875192px;}
.y1aa{bottom:214.950339px;}
.yf8{bottom:215.073260px;}
.ydb{bottom:215.360487px;}
.y11c{bottom:215.883999px;}
.ye5{bottom:216.598532px;}
.y1d1{bottom:216.878349px;}
.y5{bottom:219.570000px;}
.y204{bottom:219.608324px;}
.y1b1{bottom:220.478186px;}
.yb5{bottom:221.295000px;}
.y1f0{bottom:221.928850px;}
.y1bd{bottom:223.933091px;}
.y20b{bottom:224.855950px;}
.yff{bottom:225.834351px;}
.ye2{bottom:226.121578px;}
.y1d8{bottom:226.276601px;}
.yd1{bottom:226.412959px;}
.y123{bottom:226.634395px;}
.y1de{bottom:227.407222px;}
.y1d6{bottom:227.688247px;}
.y15{bottom:229.960579px;}
.y209{bottom:231.352705px;}
.yf9{bottom:231.415460px;}
.ydc{bottom:231.702687px;}
.y11d{bottom:232.217474px;}
.yf{bottom:234.795000px;}
.yb4{bottom:236.235000px;}
.y1ab{bottom:236.370747px;}
.ye4{bottom:236.902478px;}
.y58{bottom:238.222055px;}
.y1f1{bottom:238.363966px;}
.y1b0{bottom:240.516633px;}
.y15f{bottom:242.552736px;}
.y1d2{bottom:242.949280px;}
.y172{bottom:243.418738px;}
.ycd{bottom:243.905782px;}
.y215{bottom:244.650000px;}
.y205{bottom:246.007425px;}
.y66{bottom:246.253014px;}
.y1f9{bottom:246.581524px;}
.y46{bottom:246.835127px;}
.yfa{bottom:247.757661px;}
.ydd{bottom:248.044887px;}
.yc4{bottom:248.176580px;}
.y4{bottom:248.370000px;}
.y11e{bottom:248.550950px;}
.y21b{bottom:248.610000px;}
.y1c6{bottom:248.808403px;}
.y45{bottom:250.640347px;}
.yb3{bottom:251.175000px;}
.y189{bottom:252.384658px;}
.y192{bottom:252.508168px;}
.y87{bottom:252.540000px;}
.y8b{bottom:253.620000px;}
.ycc{bottom:254.654841px;}
.y1df{bottom:254.799082px;}
.y17e{bottom:255.446544px;}
.y5f{bottom:255.499937px;}
.y61{bottom:256.672055px;}
.y1a4{bottom:256.830000px;}
.y1ac{bottom:257.100174px;}
.yd3{bottom:257.173322px;}
.yfb{bottom:264.099861px;}
.yde{bottom:264.387088px;}
.y101{bottom:264.595079px;}
.y11f{bottom:264.884425px;}
.ycb{bottom:265.411486px;}
.y167{bottom:265.806494px;}
.y138{bottom:265.874333px;}
.yb2{bottom:266.115000px;}
.yd2{bottom:266.276266px;}
.y126{bottom:266.369287px;}
.y179{bottom:266.672496px;}
.yca{bottom:274.666145px;}
.y3{bottom:277.200000px;}
.y76{bottom:278.470521px;}
.yfc{bottom:280.442061px;}
.ydf{bottom:280.729288px;}
.yb1{bottom:281.055000px;}
.y120{bottom:281.217901px;}
.y182{bottom:282.242646px;}
.y214{bottom:282.450000px;}
.y1a6{bottom:283.320000px;}
.y1da{bottom:283.860000px;}
.ye{bottom:285.195000px;}
.yc9{bottom:285.559334px;}
.yc5{bottom:286.151025px;}
.y137{bottom:286.167439px;}
.y160{bottom:286.654691px;}
.y125{bottom:286.662392px;}
.y173{bottom:287.520693px;}
.y17d{bottom:288.322547px;}
.y21a{bottom:291.450000px;}
.y5d{bottom:293.409260px;}
.y16{bottom:295.002822px;}
.yb0{bottom:295.995000px;}
.ye0{bottom:297.071488px;}
.y121{bottom:297.551376px;}
.yfd{bottom:297.863837px;}
.y19d{bottom:298.629332px;}
.yd9{bottom:299.052361px;}
.ybc{bottom:301.500000px;}
.y3c{bottom:306.705245px;}
.yaf{bottom:310.965000px;}
.y213{bottom:311.250000px;}
.y17c{bottom:311.576305px;}
.y195{bottom:314.688649px;}
.yd5{bottom:320.549783px;}
.y145{bottom:322.155529px;}
.y19f{bottom:323.953644px;}
.y196{bottom:324.571309px;}
.yae{bottom:325.905000px;}
.y60{bottom:327.075083px;}
.y161{bottom:330.756646px;}
.y168{bottom:331.558500px;}
.y174{bottom:331.622648px;}
.y17a{bottom:332.424502px;}
.y219{bottom:334.290000px;}
.y55{bottom:335.583789px;}
.yd{bottom:335.595000px;}
.y109{bottom:337.392153px;}
.y140{bottom:337.796069px;}
.y152{bottom:338.370216px;}
.yad{bottom:340.845000px;}
.y3d{bottom:343.598366px;}
.y56{bottom:343.994818px;}
.y24{bottom:346.415557px;}
.y212{bottom:349.050000px;}
.y102{bottom:350.267826px;}
.y5e{bottom:350.506583px;}
.y139{bottom:350.664868px;}
.y148{bottom:351.239015px;}
.yac{bottom:355.785000px;}
.y10b{bottom:357.696099px;}
.y142{bottom:358.089175px;}
.y103{bottom:358.191317px;}
.y13a{bottom:358.584129px;}
.y154{bottom:358.663322px;}
.y149{bottom:359.158275px;}
.y197{bottom:359.160622px;}
.y17{bottom:360.045065px;}
.y23{bottom:362.006986px;}
.y218{bottom:366.915000px;}
.y115{bottom:367.407328px;}
.y68{bottom:369.318516px;}
.y153{bottom:369.379071px;}
.y10e{bottom:370.571772px;}
.yab{bottom:370.725000px;}
.y71{bottom:370.848780px;}
.y14a{bottom:371.532120px;}
.y6e{bottom:372.364936px;}
.y6b{bottom:374.390020px;}
.y5b{bottom:374.762906px;}
.y3e{bottom:377.411638px;}
.y10a{bottom:377.970332px;}
.y104{bottom:378.000045px;}
.y141{bottom:378.352584px;}
.y13b{bottom:378.382281px;}
.y10f{bottom:382.952227px;}
.y14b{bottom:383.905965px;}
.yaa{bottom:385.665000px;}
.yc{bottom:386.025000px;}
.y211{bottom:386.895000px;}
.y25{bottom:387.797808px;}
.y198{bottom:393.132270px;}
.y110{bottom:395.332682px;}
.y14c{bottom:396.279810px;}
.y105{bottom:397.808773px;}
.y13c{bottom:398.180433px;}
.ya9{bottom:400.605000px;}
.y19e{bottom:402.953164px;}
.y2{bottom:406.440000px;}
.y111{bottom:407.713136px;}
.y14d{bottom:408.653655px;}
.ya8{bottom:415.545000px;}
.y210{bottom:415.695000px;}
.y106{bottom:417.617500px;}
.y21{bottom:417.759336px;}
.y13d{bottom:417.978585px;}
.y112{bottom:420.093591px;}
.y14e{bottom:421.027500px;}
.y10d{bottom:424.357420px;}
.y18{bottom:425.074315px;}
.y144{bottom:425.402892px;}
.y199{bottom:427.103917px;}
.ya7{bottom:430.485000px;}
.y113{bottom:432.474046px;}
.y14f{bottom:433.401345px;}
.y20{bottom:436.170215px;}
.yb{bottom:436.425000px;}
.y107{bottom:437.426228px;}
.y13e{bottom:437.776737px;}
.y27{bottom:440.483843px;}
.y10c{bottom:444.661366px;}
.y114{bottom:444.854501px;}
.y118{bottom:445.196201px;}
.ya6{bottom:445.425000px;}
.y143{bottom:445.695998px;}
.y150{bottom:445.775190px;}
.y117{bottom:446.434247px;}
.y156{bottom:448.150969px;}
.y1{bottom:448.560000px;}
.y155{bottom:449.388353px;}
.y20f{bottom:453.495000px;}
.y1f{bottom:454.594086px;}
.y116{bottom:455.694827px;}
.y26{bottom:456.075272px;}
.y108{bottom:456.739737px;}
.y13f{bottom:457.079935px;}
.y151{bottom:457.654082px;}
.ya5{bottom:460.410000px;}
.y19a{bottom:461.075564px;}
.y1e{bottom:470.445372px;}
.ya4{bottom:475.350000px;}
.y20e{bottom:482.295000px;}
.ya{bottom:486.825000px;}
.y1d{bottom:489.103115px;}
.y19{bottom:490.116558px;}
.ya3{bottom:490.290000px;}
.y1a2{bottom:494.429559px;}
.y7a{bottom:494.460000px;}
.y19b{bottom:495.047212px;}
.y21f{bottom:496.080000px;}
.y3f{bottom:504.141963px;}
.ya2{bottom:505.770000px;}
.y1a1{bottom:513.577215px;}
.y20d{bottom:520.095000px;}
.ya1{bottom:520.170000px;}
.y19c{bottom:529.018859px;}
.y1a0{bottom:529.018879px;}
.y41{bottom:542.311624px;}
.ya0{bottom:542.595000px;}
.y20c{bottom:548.925000px;}
.y7b{bottom:565.590000px;}
.y157{bottom:572.250000px;}
.y119{bottom:572.940000px;}
.y1a3{bottom:573.450000px;}
.y21e{bottom:585.900000px;}
.y1a5{bottom:601.485000px;}
.y9{bottom:608.970000px;}
.y9f{bottom:617.145000px;}
.h6f{height:17.062155px;}
.h2c{height:17.319924px;}
.h31{height:18.410967px;}
.h38{height:18.419255px;}
.h34{height:18.427568px;}
.h2e{height:19.500027px;}
.h3b{height:20.574869px;}
.h6b{height:21.779677px;}
.h33{height:22.083936px;}
.h3a{height:22.095403px;}
.h36{height:22.125620px;}
.h2f{height:23.741861px;}
.h1c{height:23.837339px;}
.h7b{height:23.943869px;}
.h74{height:23.956659px;}
.h1a{height:28.136362px;}
.h78{height:30.242890px;}
.h71{height:30.259045px;}
.h6a{height:30.490608px;}
.h67{height:32.178114px;}
.h18{height:32.499363px;}
.h40{height:33.660345px;}
.h1e{height:34.649654px;}
.h46{height:35.820344px;}
.hb{height:37.304009px;}
.h1f{height:37.429612px;}
.h68{height:37.977101px;}
.h69{height:38.035974px;}
.h32{height:41.133530px;}
.h39{height:41.150190px;}
.h5c{height:41.183352px;}
.h35{height:41.209124px;}
.h79{height:41.838904px;}
.h72{height:41.861253px;}
.h56{height:42.229017px;}
.h50{height:42.491022px;}
.h42{height:43.668369px;}
.h37{height:44.305686px;}
.h30{height:44.307026px;}
.h49{height:46.470587px;}
.h7a{height:46.788442px;}
.h73{height:46.813435px;}
.h64{height:47.344922px;}
.h61{height:47.462625px;}
.h65{height:47.486250px;}
.h77{height:47.789412px;}
.h76{height:47.886301px;}
.h6e{height:47.911881px;}
.h70{height:47.950972px;}
.h62{height:48.616875px;}
.h8f{height:49.488130px;}
.h88{height:49.611273px;}
.h8e{height:49.690546px;}
.h87{height:50.139302px;}
.h5f{height:50.458262px;}
.h2d{height:50.598909px;}
.h3c{height:50.615007px;}
.h59{height:51.739421px;}
.h4{height:51.783047px;}
.h53{height:52.060432px;}
.ha{height:52.224002px;}
.h5e{height:53.348930px;}
.h45{height:53.595930px;}
.h58{height:54.708309px;}
.h52{height:55.061308px;}
.h7{height:55.114346px;}
.h5a{height:56.698992px;}
.h44{height:56.949376px;}
.h4c{height:57.035204px;}
.h54{height:58.138607px;}
.h6d{height:58.232228px;}
.h4e{height:58.499320px;}
.h23{height:58.805051px;}
.h82{height:59.758618px;}
.h83{height:60.147510px;}
.h7c{height:60.465234px;}
.h4d{height:60.531750px;}
.h84{height:60.568594px;}
.h4b{height:60.568883px;}
.h8a{height:61.520422px;}
.h91{height:62.294816px;}
.h8b{height:62.526641px;}
.h92{height:62.576019px;}
.h20{height:64.588743px;}
.h8{height:65.046792px;}
.h9{height:65.149813px;}
.h8d{height:66.253399px;}
.h86{height:66.851734px;}
.h1b{height:69.716589px;}
.h21{height:69.764959px;}
.h19{height:69.796055px;}
.h1d{height:69.807771px;}
.h22{height:70.562412px;}
.h5d{height:71.287376px;}
.h5b{height:71.322860px;}
.h3f{height:72.562500px;}
.h57{height:73.097396px;}
.h55{height:73.133781px;}
.h51{height:73.550920px;}
.h4f{height:73.587531px;}
.h47{height:74.537734px;}
.h43{height:75.720269px;}
.h41{height:75.757960px;}
.h3d{height:77.519531px;}
.h7e{height:77.578573px;}
.h7f{height:79.198804px;}
.h4a{height:80.579272px;}
.h48{height:80.619381px;}
.h25{height:81.498804px;}
.h93{height:82.136602px;}
.he{height:84.153441px;}
.h27{height:90.214996px;}
.h2a{height:90.245384px;}
.h26{height:90.258408px;}
.h13{height:90.484844px;}
.h17{height:93.332678px;}
.h16{height:99.533980px;}
.h3{height:99.874688px;}
.h2{height:100.024875px;}
.hc{height:100.441403px;}
.h11{height:102.637918px;}
.h63{height:106.216875px;}
.h10{height:108.257932px;}
.h14{height:108.583116px;}
.h29{height:111.573584px;}
.h2b{height:116.305466px;}
.h15{height:126.674873px;}
.h80{height:128.897212px;}
.hf{height:145.006736px;}
.hd{height:145.078914px;}
.h1{height:150.187500px;}
.h60{height:150.337688px;}
.h5{height:150.394219px;}
.h3e{height:151.200000px;}
.h94{height:181.148906px;}
.h28{height:182.551818px;}
.h89{height:257.396390px;}
.h90{height:260.636390px;}
.h8c{height:278.643696px;}
.h85{height:281.160129px;}
.h66{height:293.949214px;}
.h7d{height:350.650637px;}
.h24{height:390.955494px;}
.h6c{height:467.996047px;}
.h75{height:468.904382px;}
.h12{height:480.586579px;}
.h6{height:503.473215px;}
.h81{height:543.058447px;}
.h0{height:810.000000px;}
.wf{width:16.005794px;}
.wb{width:16.013991px;}
.w11{width:16.014291px;}
.wc{width:18.107370px;}
.w10{width:19.223250px;}
.we{width:20.108289px;}
.wd{width:20.282836px;}
.w6{width:21.533984px;}
.w8{width:23.684167px;}
.w7{width:23.736684px;}
.w5{width:25.858153px;}
.w9{width:32.363586px;}
.w15{width:89.637490px;}
.w1a{width:107.997644px;}
.w17{width:132.660358px;}
.w16{width:133.383980px;}
.w19{width:147.777233px;}
.w18{width:149.040840px;}
.w3{width:170.100645px;}
.w12{width:201.060000px;}
.w13{width:209.700000px;}
.w14{width:251.460000px;}
.wa{width:314.633060px;}
.w21{width:333.187927px;}
.w23{width:335.333201px;}
.w1b{width:337.847666px;}
.w1d{width:547.556065px;}
.w1c{width:565.569401px;}
.w2{width:578.681441px;}
.w1f{width:665.632885px;}
.w22{width:731.520669px;}
.w20{width:737.456833px;}
.w1e{width:956.338191px;}
.w4{width:1358.606079px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x45{left:1.053020px;}
.x30{left:2.492566px;}
.x1c{left:4.099425px;}
.x58{left:8.205000px;}
.x76{left:9.757528px;}
.x4c{left:11.083372px;}
.x34{left:12.111087px;}
.x4e{left:13.196939px;}
.x74{left:15.597002px;}
.x10{left:16.713155px;}
.x94{left:17.976902px;}
.x20{left:19.007363px;}
.x46{left:20.182778px;}
.x73{left:21.653006px;}
.x48{left:22.655033px;}
.x3d{left:24.300000px;}
.xe{left:26.715281px;}
.x72{left:27.975683px;}
.x77{left:29.482276px;}
.xa4{left:31.420309px;}
.x80{left:33.060481px;}
.x60{left:34.410099px;}
.x6f{left:35.639979px;}
.xd{left:37.088291px;}
.x1e{left:39.418827px;}
.x21{left:40.605816px;}
.x5d{left:42.248408px;}
.x1f{left:43.603503px;}
.xa3{left:44.921015px;}
.x47{left:46.116351px;}
.xc{left:47.918071px;}
.x67{left:49.221401px;}
.x11{left:50.498636px;}
.x1a{left:51.811277px;}
.x91{left:52.892805px;}
.x4d{left:54.434803px;}
.x7b{left:55.692290px;}
.x22{left:58.013550px;}
.x6c{left:59.322618px;}
.x9{left:60.515979px;}
.x61{left:63.500317px;}
.x68{left:66.397450px;}
.x5e{left:68.426156px;}
.x6b{left:70.132048px;}
.x55{left:76.967979px;}
.x23{left:79.005991px;}
.xd0{left:81.792773px;}
.x62{left:83.521624px;}
.x40{left:85.185443px;}
.xa{left:86.759979px;}
.x17{left:88.398965px;}
.x65{left:91.730504px;}
.x16{left:94.612880px;}
.x97{left:96.063854px;}
.x1d{left:101.101885px;}
.x50{left:106.956589px;}
.x69{left:110.945379px;}
.xd6{left:115.811979px;}
.x15{left:117.982407px;}
.x3f{left:121.199192px;}
.x98{left:123.008955px;}
.x70{left:126.107979px;}
.x42{left:129.016428px;}
.x4a{left:133.324808px;}
.x43{left:139.749108px;}
.xa2{left:141.581564px;}
.x52{left:143.598279px;}
.x82{left:145.242096px;}
.x18{left:147.077846px;}
.x44{left:148.228459px;}
.x1b{left:150.590748px;}
.x75{left:158.074538px;}
.xcf{left:160.360625px;}
.x7d{left:162.797035px;}
.x7c{left:165.612170px;}
.x49{left:170.505445px;}
.xa5{left:172.641288px;}
.x93{left:174.779979px;}
.x4f{left:179.459314px;}
.x3e{left:184.196287px;}
.xc5{left:185.762383px;}
.xb3{left:186.812814px;}
.xbe{left:191.696850px;}
.x92{left:195.270204px;}
.xb6{left:197.438249px;}
.x29{left:201.343556px;}
.x4b{left:208.368136px;}
.x6e{left:209.879979px;}
.xbd{left:211.876774px;}
.xbf{left:215.320914px;}
.x99{left:225.286730px;}
.x51{left:230.538329px;}
.x31{left:233.202503px;}
.x83{left:248.688369px;}
.x37{left:251.512188px;}
.x7f{left:253.327393px;}
.x7e{left:258.650376px;}
.x96{left:260.199282px;}
.xa8{left:262.409979px;}
.xf{left:270.757535px;}
.x81{left:282.876391px;}
.x3{left:284.909979px;}
.xa0{left:288.463236px;}
.x27{left:290.380684px;}
.x9f{left:294.435120px;}
.x41{left:297.151072px;}
.xd5{left:299.701140px;}
.x9b{left:301.444304px;}
.xc6{left:304.699535px;}
.x79{left:305.763231px;}
.x7a{left:307.070008px;}
.x1{left:309.989979px;}
.x2c{left:315.199545px;}
.x8d{left:316.306110px;}
.xd3{left:317.828885px;}
.x2d{left:319.364798px;}
.x26{left:320.379134px;}
.x9a{left:323.039901px;}
.x88{left:324.275716px;}
.x9c{left:325.781336px;}
.xce{left:328.020679px;}
.x86{left:329.127857px;}
.x78{left:332.673738px;}
.x85{left:337.375011px;}
.xb8{left:339.005325px;}
.x28{left:343.190905px;}
.x8c{left:344.625965px;}
.x84{left:345.944320px;}
.x8f{left:347.376668px;}
.x89{left:348.695023px;}
.xbc{left:351.339574px;}
.xa1{left:355.033195px;}
.x2e{left:357.437093px;}
.xb9{left:358.594648px;}
.x2f{left:360.026887px;}
.xba{left:363.195124px;}
.x9e{left:369.338055px;}
.xd7{left:373.289979px;}
.x35{left:378.500753px;}
.x90{left:379.666457px;}
.xc9{left:384.494631px;}
.xc1{left:387.956874px;}
.x56{left:389.309979px;}
.xd1{left:390.960492px;}
.x5{left:397.949979px;}
.xca{left:399.337845px;}
.x95{left:401.464716px;}
.xcb{left:404.397255px;}
.xc7{left:411.979533px;}
.xb4{left:414.850349px;}
.x53{left:417.164979px;}
.x8e{left:423.315907px;}
.x87{left:424.634262px;}
.x54{left:434.984979px;}
.x8b{left:439.359199px;}
.x71{left:440.564979px;}
.xb5{left:457.221109px;}
.xbb{left:482.819926px;}
.xc0{left:485.623730px;}
.x33{left:500.846951px;}
.xab{left:505.133795px;}
.x19{left:513.180000px;}
.x13{left:523.725703px;}
.x14{left:525.964014px;}
.x25{left:529.181298px;}
.x9d{left:537.583167px;}
.xa9{left:540.923008px;}
.x24{left:542.842463px;}
.xac{left:545.466241px;}
.xd2{left:547.290128px;}
.xc8{left:551.646590px;}
.xcc{left:554.210481px;}
.x4{left:559.979979px;}
.x8a{left:561.212881px;}
.x12{left:569.819291px;}
.x39{left:587.818557px;}
.x6{left:590.759979px;}
.xc4{left:594.000000px;}
.x7{left:628.739979px;}
.x2{left:651.134979px;}
.xc3{left:657.794979px;}
.x5a{left:659.160000px;}
.xaa{left:676.622409px;}
.x38{left:680.274212px;}
.xd4{left:683.937043px;}
.xcd{left:689.515507px;}
.x36{left:690.654971px;}
.xb1{left:697.603139px;}
.xb2{left:698.921086px;}
.xc2{left:728.789979px;}
.x32{left:745.560929px;}
.x2a{left:757.104776px;}
.xb7{left:766.469979px;}
.x5b{left:780.089979px;}
.xa6{left:801.149979px;}
.x2b{left:818.396574px;}
.xb{left:822.600000px;}
.xad{left:901.385541px;}
.xae{left:903.382926px;}
.xaf{left:904.488037px;}
.x57{left:910.620000px;}
.x64{left:941.940000px;}
.xb0{left:948.913485px;}
.x6a{left:956.700000px;}
.x5f{left:984.240000px;}
.x59{left:1111.680000px;}
.x3c{left:1116.007100px;}
.x3b{left:1123.193779px;}
.x66{left:1127.880000px;}
.x3a{left:1154.163403px;}
.x5c{left:1160.460000px;}
.x63{left:1188.000000px;}
.xa7{left:1306.724979px;}
.x6d{left:1315.904979px;}
.x8{left:1321.019979px;}
@media print{
.v3{vertical-align:-102.437393pt;}
.v5{vertical-align:-58.639554pt;}
.v1f{vertical-align:-54.026667pt;}
.v15{vertical-align:-51.510263pt;}
.v16{vertical-align:-49.925024pt;}
.v4{vertical-align:-43.725180pt;}
.v1d{vertical-align:-32.786908pt;}
.v9{vertical-align:-30.214588pt;}
.v22{vertical-align:-28.253441pt;}
.v23{vertical-align:-26.327558pt;}
.v19{vertical-align:-25.179094pt;}
.v8{vertical-align:-20.606117pt;}
.v1c{vertical-align:-17.920000pt;}
.v14{vertical-align:-15.360000pt;}
.v7{vertical-align:-12.801376pt;}
.v6{vertical-align:-11.721741pt;}
.v1{vertical-align:-9.031479pt;}
.v20{vertical-align:-6.189229pt;}
.v18{vertical-align:-5.272964pt;}
.v0{vertical-align:0.000000pt;}
.v1b{vertical-align:4.401939pt;}
.v21{vertical-align:6.149211pt;}
.v1a{vertical-align:7.043103pt;}
.v10{vertical-align:9.338353pt;}
.v13{vertical-align:13.544470pt;}
.vf{vertical-align:18.946823pt;}
.v12{vertical-align:23.152941pt;}
.vb{vertical-align:33.147294pt;}
.va{vertical-align:42.755764pt;}
.v1e{vertical-align:45.616568pt;}
.v2{vertical-align:48.952269pt;}
.v17{vertical-align:51.200000pt;}
.v11{vertical-align:52.094117pt;}
.vd{vertical-align:72.430116pt;}
.vc{vertical-align:82.038587pt;}
.ve{vertical-align:115.185880pt;}
.ls1a{letter-spacing:-1.928686pt;}
.ls30{letter-spacing:-0.331733pt;}
.ls2f{letter-spacing:-0.239467pt;}
.ls3{letter-spacing:-0.208000pt;}
.ls31{letter-spacing:-0.198933pt;}
.ls19{letter-spacing:-0.186521pt;}
.ls18{letter-spacing:-0.139066pt;}
.ls17{letter-spacing:-0.073207pt;}
.ls44{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000616pt;}
.ls34{letter-spacing:0.000634pt;}
.ls9{letter-spacing:0.001234pt;}
.ls10{letter-spacing:0.002778pt;}
.ls33{letter-spacing:0.003035pt;}
.ls4{letter-spacing:0.005198pt;}
.ls12{letter-spacing:0.006327pt;}
.lsf{letter-spacing:0.007718pt;}
.lsb{letter-spacing:0.009794pt;}
.lsd{letter-spacing:0.013592pt;}
.ls11{letter-spacing:0.014045pt;}
.lse{letter-spacing:0.015435pt;}
.ls3e{letter-spacing:0.017121pt;}
.ls3f{letter-spacing:0.029099pt;}
.ls3b{letter-spacing:0.029171pt;}
.ls0{letter-spacing:0.033280pt;}
.lsa{letter-spacing:0.060664pt;}
.ls38{letter-spacing:0.126933pt;}
.ls25{letter-spacing:0.203776pt;}
.ls2e{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.257280pt;}
.ls32{letter-spacing:0.320000pt;}
.ls39{letter-spacing:1.861928pt;}
.ls3a{letter-spacing:1.883889pt;}
.ls40{letter-spacing:2.776526pt;}
.ls3c{letter-spacing:2.783435pt;}
.ls41{letter-spacing:11.353446pt;}
.ls3d{letter-spacing:11.381697pt;}
.ls43{letter-spacing:53.315072pt;}
.ls42{letter-spacing:53.415680pt;}
.ls2{letter-spacing:58.528000pt;}
.ls7{letter-spacing:90.985893pt;}
.ls37{letter-spacing:95.407406pt;}
.ls36{letter-spacing:95.458370pt;}
.ls15{letter-spacing:146.220226pt;}
.ls14{letter-spacing:157.594630pt;}
.ls24{letter-spacing:157.689639pt;}
.ls21{letter-spacing:158.668004pt;}
.ls16{letter-spacing:172.636879pt;}
.ls29{letter-spacing:188.173013pt;}
.ls2a{letter-spacing:191.493973pt;}
.ls2c{letter-spacing:209.061888pt;}
.ls2b{letter-spacing:209.175680pt;}
.ls2d{letter-spacing:212.496640pt;}
.ls5{letter-spacing:228.501099pt;}
.ls13{letter-spacing:244.574947pt;}
.ls1c{letter-spacing:256.081873pt;}
.ls1e{letter-spacing:257.186406pt;}
.ls23{letter-spacing:260.004915pt;}
.ls20{letter-spacing:261.618082pt;}
.ls1b{letter-spacing:262.199290pt;}
.ls1d{letter-spacing:263.473752pt;}
.ls22{letter-spacing:265.653736pt;}
.ls1f{letter-spacing:267.301951pt;}
.ls28{letter-spacing:275.840000pt;}
.ls26{letter-spacing:275.904000pt;}
.ls6{letter-spacing:390.712035pt;}
.ls35{letter-spacing:1852.746672pt;}
.ls8{letter-spacing:2489.992159pt;}
.ws6f{word-spacing:-35.619584pt;}
.ws0{word-spacing:-35.584000pt;}
.ws3{word-spacing:-33.701120pt;}
.wsa{word-spacing:-30.483280pt;}
.ws95{word-spacing:-26.698068pt;}
.ws13{word-spacing:-25.740245pt;}
.ws11{word-spacing:-25.727269pt;}
.ws12{word-spacing:-25.726652pt;}
.ws1{word-spacing:-23.663360pt;}
.wsf{word-spacing:-23.582636pt;}
.ws1a{word-spacing:-21.696000pt;}
.wsd{word-spacing:-21.438620pt;}
.ws77{word-spacing:-21.266959pt;}
.ws7f{word-spacing:-21.255605pt;}
.wse{word-spacing:-19.506072pt;}
.ws14{word-spacing:-19.309553pt;}
.ws6c{word-spacing:-17.796847pt;}
.ws8b{word-spacing:-17.463302pt;}
.ws8a{word-spacing:-17.106042pt;}
.ws10{word-spacing:-16.718388pt;}
.ws1b{word-spacing:-16.000000pt;}
.ws98{word-spacing:-14.740779pt;}
.ws87{word-spacing:-14.619861pt;}
.wsa3{word-spacing:-14.608846pt;}
.wsab{word-spacing:-13.735980pt;}
.ws9f{word-spacing:-13.565227pt;}
.ws8c{word-spacing:-13.542476pt;}
.ws94{word-spacing:-13.262500pt;}
.ws91{word-spacing:-13.176750pt;}
.ws9{word-spacing:-13.058270pt;}
.ws16{word-spacing:-12.549664pt;}
.ws9a{word-spacing:-11.669949pt;}
.wsa5{word-spacing:-11.565501pt;}
.ws88{word-spacing:-11.281920pt;}
.ws99{word-spacing:-11.055694pt;}
.ws24{word-spacing:-11.008000pt;}
.wsa4{word-spacing:-10.956744pt;}
.ws9d{word-spacing:-10.939264pt;}
.wsa8{word-spacing:-10.912111pt;}
.wsac{word-spacing:-10.874472pt;}
.wsa0{word-spacing:-10.739290pt;}
.ws78{word-spacing:-10.573169pt;}
.ws75{word-spacing:-10.565183pt;}
.ws71{word-spacing:-10.564549pt;}
.ws7c{word-spacing:-10.559543pt;}
.ws7d{word-spacing:-10.558909pt;}
.ws80{word-spacing:-10.537545pt;}
.wsc{word-spacing:-10.440566pt;}
.wsb{word-spacing:-9.499419pt;}
.ws76{word-spacing:-8.363720pt;}
.ws7e{word-spacing:-8.359255pt;}
.ws6b{word-spacing:-7.623977pt;}
.ws7a{word-spacing:-7.483262pt;}
.ws85{word-spacing:-7.479267pt;}
.ws9b{word-spacing:-7.109647pt;}
.wsa7{word-spacing:-7.091999pt;}
.ws6e{word-spacing:-6.095649pt;}
.ws6d{word-spacing:-5.546168pt;}
.ws1c{word-spacing:-0.789333pt;}
.ws19{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.068614pt;}
.ws21{word-spacing:-0.066648pt;}
.ws7{word-spacing:-0.066560pt;}
.ws22{word-spacing:-0.066237pt;}
.ws23{word-spacing:-0.064597pt;}
.ws59{word-spacing:-0.043008pt;}
.ws2f{word-spacing:-0.042880pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.613120pt;}
.ws4{word-spacing:0.692480pt;}
.ws6{word-spacing:1.160747pt;}
.ws1d{word-spacing:1.408000pt;}
.wsa1{word-spacing:4.599040pt;}
.ws96{word-spacing:50.445363pt;}
.ws93{word-spacing:52.641509pt;}
.ws6a{word-spacing:61.900073pt;}
.ws86{word-spacing:82.594969pt;}
.ws84{word-spacing:82.612567pt;}
.ws79{word-spacing:82.639089pt;}
.ws8e{word-spacing:94.283573pt;}
.ws18{word-spacing:98.811703pt;}
.ws17{word-spacing:99.836376pt;}
.ws8{word-spacing:106.021813pt;}
.ws74{word-spacing:114.362282pt;}
.ws26{word-spacing:115.621760pt;}
.ws27{word-spacing:131.632213pt;}
.ws30{word-spacing:132.689813pt;}
.ws7b{word-spacing:135.419254pt;}
.ws47{word-spacing:136.529813pt;}
.ws35{word-spacing:136.635861pt;}
.ws2b{word-spacing:139.089813pt;}
.ws9e{word-spacing:139.271460pt;}
.ws29{word-spacing:141.790720pt;}
.ws90{word-spacing:142.465280pt;}
.ws31{word-spacing:144.164693pt;}
.ws9c{word-spacing:146.426973pt;}
.ws36{word-spacing:147.671893pt;}
.ws48{word-spacing:147.874773pt;}
.ws97{word-spacing:148.883794pt;}
.ws60{word-spacing:151.060693pt;}
.ws53{word-spacing:155.684693pt;}
.ws65{word-spacing:158.244693pt;}
.ws44{word-spacing:158.884693pt;}
.ws56{word-spacing:159.831893pt;}
.ws67{word-spacing:162.391893pt;}
.ws61{word-spacing:162.594773pt;}
.ws2c{word-spacing:165.780693pt;}
.ws51{word-spacing:166.420693pt;}
.ws42{word-spacing:167.060693pt;}
.ws28{word-spacing:175.265493pt;}
.ws25{word-spacing:182.776960pt;}
.wsaa{word-spacing:184.499363pt;}
.ws8d{word-spacing:188.025620pt;}
.ws4a{word-spacing:188.130133pt;}
.wsa6{word-spacing:188.919053pt;}
.wsa2{word-spacing:188.943401pt;}
.ws4d{word-spacing:191.451093pt;}
.ws68{word-spacing:205.892800pt;}
.ws3a{word-spacing:208.092480pt;}
.ws69{word-spacing:209.732800pt;}
.ws3e{word-spacing:211.932480pt;}
.ws41{word-spacing:214.653440pt;}
.ws2a{word-spacing:217.018880pt;}
.ws46{word-spacing:219.996480pt;}
.ws89{word-spacing:225.089081pt;}
.ws52{word-spacing:229.996800pt;}
.ws58{word-spacing:230.208640pt;}
.ws34{word-spacing:230.636800pt;}
.ws2e{word-spacing:232.156480pt;}
.ws62{word-spacing:233.009067pt;}
.ws3f{word-spacing:233.649067pt;}
.ws3d{word-spacing:235.356480pt;}
.ws49{word-spacing:238.316800pt;}
.ws5b{word-spacing:238.436800pt;}
.ws33{word-spacing:240.476480pt;}
.ws4e{word-spacing:241.329067pt;}
.ws45{word-spacing:241.516800pt;}
.ws43{word-spacing:241.637760pt;}
.ws5c{word-spacing:242.156800pt;}
.ws5d{word-spacing:242.276800pt;}
.ws38{word-spacing:244.422528pt;}
.ws4f{word-spacing:244.997760pt;}
.ws63{word-spacing:245.169067pt;}
.ws54{word-spacing:245.477760pt;}
.ws40{word-spacing:245.996800pt;}
.ws3c{word-spacing:247.037440pt;}
.ws3b{word-spacing:247.729067pt;}
.ws39{word-spacing:247.945216pt;}
.ws5e{word-spacing:248.037760pt;}
.ws4b{word-spacing:249.009067pt;}
.ws37{word-spacing:250.592683pt;}
.ws32{word-spacing:251.344427pt;}
.ws5a{word-spacing:256.938667pt;}
.ws57{word-spacing:260.657323pt;}
.ws64{word-spacing:261.781120pt;}
.ws66{word-spacing:261.844992pt;}
.ws2d{word-spacing:266.036907pt;}
.ws50{word-spacing:273.301120pt;}
.ws55{word-spacing:273.364992pt;}
.ws5f{word-spacing:277.141120pt;}
.ws4c{word-spacing:279.701120pt;}
.ws1f{word-spacing:427.763566pt;}
.ws20{word-spacing:429.143368pt;}
.ws15{word-spacing:545.912112pt;}
.ws81{word-spacing:930.193100pt;}
.ws70{word-spacing:930.689984pt;}
.ws82{word-spacing:931.372190pt;}
.ws72{word-spacing:931.869703pt;}
.ws83{word-spacing:940.505738pt;}
.ws73{word-spacing:941.025737pt;}
.ws92{word-spacing:1104.569959pt;}
.wsa9{word-spacing:1226.956012pt;}
.ws8f{word-spacing:1578.784112pt;}
._5{margin-left:-2899.179563pt;}
._8{margin-left:-2880.992896pt;}
._32{margin-left:-9.570987pt;}
._3{margin-left:-5.605973pt;}
._1{margin-left:-4.347648pt;}
._4{margin-left:-2.767360pt;}
._0{margin-left:-1.408000pt;}
._2{width:1.022976pt;}
._22{width:1.999360pt;}
._2f{width:2.939008pt;}
._31{width:4.345856pt;}
._30{width:25.050923pt;}
._29{width:65.335278pt;}
._28{width:68.657622pt;}
._1f{width:79.328257pt;}
._20{width:80.375279pt;}
._21{width:126.117131pt;}
._6{width:135.872629pt;}
._7{width:137.665957pt;}
._24{width:147.727580pt;}
._23{width:158.114412pt;}
._2c{width:162.081087pt;}
._2a{width:167.823280pt;}
._2b{width:170.310025pt;}
._1e{width:197.376213pt;}
._b{width:199.575893pt;}
._2e{width:202.157005pt;}
._27{width:205.317602pt;}
._26{width:208.169664pt;}
._2d{width:210.123859pt;}
._a{width:217.995947pt;}
._1c{width:221.335680pt;}
._15{width:223.016320pt;}
._1d{width:224.656640pt;}
._17{width:226.856320pt;}
._c{width:235.706197pt;}
._25{width:239.094227pt;}
._14{width:249.947307pt;}
._1a{width:253.360640pt;}
._16{width:254.287360pt;}
._f{width:255.400320pt;}
._1b{width:257.912960pt;}
._12{width:259.240320pt;}
._e{width:266.911787pt;}
._18{width:271.784107pt;}
._13{width:275.543467pt;}
._19{width:277.986091pt;}
._d{width:281.432747pt;}
._11{width:282.424491pt;}
._10{width:291.264000pt;}
._9{width:616.726101pt;}
.fs50{font-size:21.118451pt;}
.fs46{font-size:21.129732pt;}
.fs43{font-size:24.540564pt;}
.fs44{font-size:26.971900pt;}
.fs3f{font-size:27.424377pt;}
.fs67{font-size:28.367998pt;}
.fs5f{font-size:28.438587pt;}
.fs22{font-size:28.985276pt;}
.fs27{font-size:29.000328pt;}
.fs24{font-size:29.039988pt;}
.fs4f{font-size:29.917067pt;}
.fs4a{font-size:29.933048pt;}
.fs1f{font-size:31.161311pt;}
.fs40{font-size:32.366668pt;}
.fs41{font-size:32.416844pt;}
.fs4d{font-size:33.437020pt;}
.fs48{font-size:33.454881pt;}
.fs3b{font-size:37.318071pt;}
.fs42{font-size:37.759495pt;}
.fs38{font-size:38.265595pt;}
.fs35{font-size:38.503009pt;}
.fs4e{font-size:38.716949pt;}
.fs49{font-size:38.737631pt;}
.fs2d{font-size:39.569855pt;}
.fs9{font-size:42.032828pt;}
.fs31{font-size:42.109070pt;}
.fs4c{font-size:42.150179pt;}
.fs4b{font-size:42.235635pt;}
.fs45{font-size:42.258196pt;}
.fs47{font-size:42.292674pt;}
.fs2b{font-size:42.880000pt;}
.fs62{font-size:42.957161pt;}
.fs3e{font-size:43.008000pt;}
.fs6a{font-size:43.497888pt;}
.fs65{font-size:43.648446pt;}
.fs5d{font-size:43.757057pt;}
.fs64{font-size:43.826976pt;}
.fs5c{font-size:44.222778pt;}
.fs1d{font-size:45.142678pt;}
.fsa{font-size:46.197195pt;}
.fs66{font-size:46.262003pt;}
.fs5e{font-size:46.679795pt;}
.fs5{font-size:46.972193pt;}
.fs59{font-size:48.315935pt;}
.fs58{font-size:48.630361pt;}
.fs18{font-size:49.126553pt;}
.fs52{font-size:49.920000pt;}
.fs1b{font-size:50.117663pt;}
.fs21{font-size:52.659147pt;}
.fs26{font-size:52.680474pt;}
.fs56{font-size:52.706999pt;}
.fs23{font-size:52.755921pt;}
.fs57{font-size:53.050000pt;}
.fs55{font-size:54.169902pt;}
.fs60{font-size:54.260906pt;}
.fs68{font-size:54.943920pt;}
.fs13{font-size:55.129262pt;}
.fs61{font-size:55.148389pt;}
.fs69{font-size:55.191941pt;}
.fs6{font-size:55.437299pt;}
.fs7{font-size:55.525101pt;}
.fs25{font-size:56.720141pt;}
.fs20{font-size:56.721857pt;}
.fs63{font-size:58.435384pt;}
.fs5b{font-size:58.963114pt;}
.fs14{font-size:60.138086pt;}
.fs2a{font-size:64.000000pt;}
.fs3{font-size:64.128000pt;}
.fs3a{font-size:64.596669pt;}
.fs8{font-size:64.674077pt;}
.fs1e{font-size:64.776725pt;}
.fs28{font-size:64.797333pt;}
.fs37{font-size:66.236809pt;}
.fs34{font-size:66.647767pt;}
.fs3c{font-size:68.297302pt;}
.fs53{font-size:68.424168pt;}
.fs2c{font-size:68.613511pt;}
.fs1c{font-size:69.458822pt;}
.fs54{font-size:69.853209pt;}
.fs39{font-size:70.037579pt;}
.fs11{font-size:70.165727pt;}
.fs36{font-size:70.489489pt;}
.fs2e{font-size:72.906592pt;}
.fs30{font-size:73.016470pt;}
.fs51{font-size:74.880000pt;}
.fs5a{font-size:75.008000pt;}
.fsc{font-size:76.255184pt;}
.fse{font-size:77.117337pt;}
.fs33{font-size:77.492749pt;}
.fs32{font-size:77.540286pt;}
.fs19{font-size:84.773048pt;}
.fs12{font-size:84.829626pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:85.248000pt;}
.fs16{font-size:89.251180pt;}
.fs1a{font-size:89.313103pt;}
.fs15{font-size:89.352911pt;}
.fs17{font-size:89.367911pt;}
.fsf{font-size:92.541915pt;}
.fs2f{font-size:95.423209pt;}
.fs29{font-size:96.000000pt;}
.fs6b{font-size:106.880000pt;}
.fs10{font-size:107.960940pt;}
.fs0{font-size:128.000000pt;}
.fs3d{font-size:128.128000pt;}
.fsb{font-size:131.397066pt;}
.fsd{font-size:138.591809pt;}
.fs4{font-size:149.120000pt;}
.fs6c{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:2.877348pt;}
.y6c{bottom:2.887922pt;}
.y6a{bottom:2.888717pt;}
.y73{bottom:2.889197pt;}
.yc6{bottom:2.945240pt;}
.yd7{bottom:3.990622pt;}
.y147{bottom:3.996939pt;}
.y2a{bottom:4.181027pt;}
.y47{bottom:4.331467pt;}
.y1a{bottom:5.044578pt;}
.y1d3{bottom:5.124994pt;}
.y206{bottom:5.189505pt;}
.y183{bottom:5.197961pt;}
.y9d{bottom:5.531642pt;}
.y97{bottom:5.672093pt;}
.y90{bottom:5.707285pt;}
.y42{bottom:5.772059pt;}
.y67{bottom:5.773655pt;}
.y77{bottom:5.774941pt;}
.y44{bottom:5.777938pt;}
.y86{bottom:6.227176pt;}
.y17f{bottom:6.468002pt;}
.y1ec{bottom:6.625178pt;}
.y8a{bottom:6.626777pt;}
.y1b9{bottom:6.685010pt;}
.yce{bottom:8.208832pt;}
.y6d{bottom:8.513255pt;}
.y70{bottom:8.513698pt;}
.y74{bottom:8.517514pt;}
.y69{bottom:8.937488pt;}
.y48{bottom:9.623655pt;}
.y40{bottom:9.629152pt;}
.y94{bottom:9.938346pt;}
.y88{bottom:9.991994pt;}
.y85{bottom:10.654344pt;}
.y89{bottom:11.338038pt;}
.ybd{bottom:12.281556pt;}
.y2c{bottom:12.673699pt;}
.y22{bottom:14.060004pt;}
.yee{bottom:16.998089pt;}
.yc8{bottom:17.027898pt;}
.y4e{bottom:17.486987pt;}
.y12f{bottom:17.902809pt;}
.y9c{bottom:18.013480pt;}
.ybe{bottom:18.083166pt;}
.y96{bottom:18.470851pt;}
.y8f{bottom:18.585451pt;}
.y18a{bottom:19.549031pt;}
.y193{bottom:19.662661pt;}
.y1c9{bottom:19.820690pt;}
.y1fc{bottom:20.070185pt;}
.y33{bottom:20.499552pt;}
.y11{bottom:21.035724pt;}
.y1e5{bottom:21.355303pt;}
.y1b2{bottom:21.548163pt;}
.y9e{bottom:22.173511pt;}
.y98{bottom:22.736507pt;}
.y91{bottom:22.877573pt;}
.y5c{bottom:23.062258pt;}
.y1ba{bottom:27.766991pt;}
.y8{bottom:27.904000pt;}
.y9b{bottom:28.083990pt;}
.y162{bottom:28.145422pt;}
.y1d5{bottom:28.299041pt;}
.y1ed{bottom:28.344488pt;}
.ye6{bottom:28.443132pt;}
.y208{bottom:28.655258pt;}
.y1ca{bottom:28.864265pt;}
.y175{bottom:28.917340pt;}
.y95{bottom:28.942255pt;}
.y8e{bottom:29.121823pt;}
.y1c{bottom:29.165211pt;}
.y1fd{bottom:29.227596pt;}
.y127{bottom:29.341741pt;}
.y12{bottom:30.972662pt;}
.y1e6{bottom:31.094631pt;}
.y1b3{bottom:31.375447pt;}
.y9a{bottom:32.244797pt;}
.y53{bottom:32.664715pt;}
.y93{bottom:33.208706pt;}
.y8d{bottom:33.414745pt;}
.y184{bottom:33.823980pt;}
.y18c{bottom:33.937610pt;}
.y134{bottom:34.145213pt;}
.yf0{bottom:35.046041pt;}
.ye7{bottom:35.486235pt;}
.y131{bottom:35.941125pt;}
.y128{bottom:36.381084pt;}
.y29{bottom:38.283047pt;}
.y1f3{bottom:39.007835pt;}
.y1bf{bottom:39.360115pt;}
.yf3{bottom:41.005387pt;}
.y185{bottom:42.608566pt;}
.y18d{bottom:42.722197pt;}
.y32{bottom:43.634568pt;}
.y181{bottom:44.320000pt;}
.y1e7{bottom:46.312331pt;}
.y15a{bottom:46.677153pt;}
.y1b4{bottom:46.730578pt;}
.y16d{bottom:47.449071pt;}
.yc7{bottom:48.166033pt;}
.y54{bottom:49.760000pt;}
.ye8{bottom:50.455030pt;}
.y129{bottom:51.338808pt;}
.y133{bottom:51.778767pt;}
.ybf{bottom:51.836205pt;}
.yf2{bottom:51.942886pt;}
.y1cb{bottom:52.603649pt;}
.y1fe{bottom:53.265802pt;}
.y136{bottom:53.450611pt;}
.y1f4{bottom:53.616827pt;}
.y1c0{bottom:54.101041pt;}
.y3b{bottom:54.182207pt;}
.y35{bottom:55.167374pt;}
.y164{bottom:57.368536pt;}
.y15b{bottom:58.081295pt;}
.y177{bottom:58.140454pt;}
.y16e{bottom:58.853213pt;}
.y2b{bottom:59.012178pt;}
.yef{bottom:60.016043pt;}
.y52{bottom:60.426734pt;}
.y1f8{bottom:60.753319pt;}
.y130{bottom:60.899116pt;}
.y1e8{bottom:60.919497pt;}
.y82{bottom:61.053333pt;}
.y7d{bottom:61.146667pt;}
.y7f{bottom:61.186667pt;}
.y1c4{bottom:61.301983pt;}
.y1b5{bottom:61.469661pt;}
.y165{bottom:63.039959pt;}
.ye9{bottom:64.981430pt;}
.y12a{bottom:65.857453pt;}
.y31{bottom:66.769584pt;}
.y1f5{bottom:68.223993pt;}
.y1c1{bottom:68.840124pt;}
.y65{bottom:69.068117pt;}
.y132{bottom:69.817083pt;}
.yf1{bottom:69.990838pt;}
.y63{bottom:70.917458pt;}
.y1d9{bottom:70.976000pt;}
.y1d4{bottom:71.376414pt;}
.y207{bottom:72.274871pt;}
.y135{bottom:72.368845pt;}
.y81{bottom:73.120000pt;}
.y1cc{bottom:75.779505pt;}
.y1e9{bottom:76.137197pt;}
.yd4{bottom:76.480000pt;}
.y1ff{bottom:76.733386pt;}
.y1b6{bottom:76.824792pt;}
.y4c{bottom:78.159724pt;}
.y18e{bottom:79.506009pt;}
.yea{bottom:79.507831pt;}
.y3a{bottom:79.630725pt;}
.y12b{bottom:80.376098pt;}
.y1b{bottom:82.498291pt;}
.y34{bottom:82.931321pt;}
.y16c{bottom:83.029281pt;}
.y1f6{bottom:83.441693pt;}
.y1c2{bottom:84.195255pt;}
.yc0{bottom:85.587897pt;}
.y28{bottom:85.600000pt;}
.y4b{bottom:86.974165pt;}
.y186{bottom:88.180810pt;}
.y51{bottom:88.188753pt;}
.y13{bottom:88.784524pt;}
.y30{bottom:89.904600pt;}
.y10{bottom:90.080000pt;}
.y1ea{bottom:90.746189pt;}
.y194{bottom:91.562855pt;}
.y1b7{bottom:91.565718pt;}
.y1c8{bottom:92.640000pt;}
.y2d{bottom:93.600000pt;}
.yeb{bottom:94.034231pt;}
.yf5{bottom:94.179495pt;}
.y1fb{bottom:94.400000pt;}
.y12c{bottom:94.894742pt;}
.y38{bottom:94.901764pt;}
.y1fa{bottom:97.454151pt;}
.y15c{bottom:97.997217pt;}
.y1f7{bottom:98.050685pt;}
.y1c7{bottom:98.334260pt;}
.y16f{bottom:98.766997pt;}
.y1c3{bottom:98.936181pt;}
.y1cd{bottom:99.518889pt;}
.y200{bottom:100.771592pt;}
.y4a{bottom:100.855174pt;}
.y1eb{bottom:105.355181pt;}
.y1b8{bottom:106.306644pt;}
.yec{bottom:108.560631pt;}
.y12d{bottom:109.413387pt;}
.y5a{bottom:109.523057pt;}
.y99{bottom:111.840000pt;}
.y64{bottom:111.934822pt;}
.y16b{bottom:112.252395pt;}
.y62{bottom:112.986351pt;}
.y2f{bottom:113.039616pt;}
.yf4{bottom:113.107835pt;}
.y18f{bottom:115.742433pt;}
.y50{bottom:115.950772pt;}
.ybb{bottom:116.992000pt;}
.y166{bottom:117.241707pt;}
.y180{bottom:117.760000pt;}
.y178{bottom:118.011487pt;}
.y37{bottom:118.036780pt;}
.y158{bottom:119.264000pt;}
.yc1{bottom:119.342959pt;}
.y4d{bottom:121.439555pt;}
.y169{bottom:122.231019pt;}
.y1ce{bottom:122.693050pt;}
.yed{bottom:123.087032pt;}
.y84{bottom:123.200000pt;}
.y12e{bottom:123.932032pt;}
.y201{bottom:124.237459pt;}
.y7e{bottom:124.640000pt;}
.y17b{bottom:125.844707pt;}
.y18b{bottom:126.091796pt;}
.y1e0{bottom:127.755635pt;}
.y1ad{bottom:128.909397pt;}
.y39{bottom:129.386433pt;}
.yba{bottom:130.272000pt;}
.y16a{bottom:132.922402pt;}
.y187{bottom:133.750859pt;}
.y83{bottom:134.173333pt;}
.y2e{bottom:136.174632pt;}
.y15d{bottom:137.198956pt;}
.y170{bottom:137.968735pt;}
.y36{bottom:141.171796pt;}
.y1db{bottom:142.486369pt;}
.yb9{bottom:143.586667pt;}
.y4f{bottom:143.712791pt;}
.y1a7{bottom:143.773164pt;}
.y146{bottom:144.552907pt;}
.y7{bottom:144.613333pt;}
.yd6{bottom:144.621319pt;}
.y21d{bottom:144.800000pt;}
.y1cf{bottom:145.867210pt;}
.y14{bottom:146.594076pt;}
.y202{bottom:147.703326pt;}
.y79{bottom:149.666667pt;}
.y49{bottom:150.113845pt;}
.y1e2{bottom:151.616989pt;}
.y190{bottom:151.978857pt;}
.y1dc{bottom:152.225697pt;}
.y1af{bottom:152.986243pt;}
.yc2{bottom:153.098022pt;}
.y1f2{bottom:153.297023pt;}
.y1a8{bottom:153.600448pt;}
.y1ae{bottom:155.744024pt;}
.y1e1{bottom:156.425782pt;}
.yb8{bottom:156.866667pt;}
.y1be{bottom:157.009287pt;}
.yfe{bottom:157.721491pt;}
.ye1{bottom:157.976804pt;}
.y217{bottom:158.240000pt;}
.y122{bottom:158.460009pt;}
.y75{bottom:158.711488pt;}
.y72{bottom:158.740429pt;}
.y59{bottom:160.430586pt;}
.y92{bottom:160.640000pt;}
.y8c{bottom:160.800000pt;}
.y159{bottom:162.880000pt;}
.y1c5{bottom:163.925238pt;}
.y1ee{bottom:167.443397pt;}
.y1bb{bottom:168.955579pt;}
.yf6{bottom:169.166534pt;}
.yd8{bottom:169.421846pt;}
.y6{bottom:169.573333pt;}
.y1d0{bottom:169.606594pt;}
.y11a{bottom:169.898941pt;}
.yb7{bottom:170.146667pt;}
.y163{bottom:170.156926pt;}
.y176{bottom:170.926705pt;}
.y1e4{bottom:171.704353pt;}
.y203{bottom:171.741532pt;}
.y1a9{bottom:172.640811pt;}
.y7c{bottom:173.440000pt;}
.y57{bottom:174.833644pt;}
.y100{bottom:175.769443pt;}
.ye3{bottom:176.024756pt;}
.yf7{bottom:176.209637pt;}
.y15e{bottom:176.400694pt;}
.yda{bottom:176.464950pt;}
.y124{bottom:176.498325pt;}
.y11b{bottom:176.938284pt;}
.y171{bottom:177.170473pt;}
.y1dd{bottom:177.182725pt;}
.y78{bottom:178.466667pt;}
.y188{bottom:179.320907pt;}
.yd0{bottom:179.779760pt;}
.y1ef{bottom:182.052389pt;}
.y21c{bottom:182.906667pt;}
.yb6{bottom:183.426667pt;}
.y1bc{bottom:183.696505pt;}
.y216{bottom:183.840000pt;}
.y80{bottom:185.826667pt;}
.y1d7{bottom:185.998073pt;}
.yc3{bottom:186.853085pt;}
.ycf{bottom:187.871266pt;}
.y191{bottom:188.215281pt;}
.y20a{bottom:188.339341pt;}
.y1e3{bottom:189.356885pt;}
.y43{bottom:190.111281pt;}
.y1aa{bottom:191.066968pt;}
.yf8{bottom:191.176231pt;}
.ydb{bottom:191.431544pt;}
.y11c{bottom:191.896888pt;}
.ye5{bottom:192.532029pt;}
.y1d1{bottom:192.780755pt;}
.y5{bottom:195.173333pt;}
.y204{bottom:195.207399pt;}
.y1b1{bottom:195.980610pt;}
.yb5{bottom:196.706667pt;}
.y1f0{bottom:197.270089pt;}
.y1bd{bottom:199.051636pt;}
.y20b{bottom:199.871956pt;}
.yff{bottom:200.741646pt;}
.ye2{bottom:200.996958pt;}
.y1d8{bottom:201.134757pt;}
.yd1{bottom:201.255964pt;}
.y123{bottom:201.452796pt;}
.y1de{bottom:202.139753pt;}
.y1d6{bottom:202.389553pt;}
.y15{bottom:204.409403pt;}
.y209{bottom:205.646849pt;}
.yf9{bottom:205.702632pt;}
.ydc{bottom:205.957944pt;}
.y11d{bottom:206.415533pt;}
.yf{bottom:208.706667pt;}
.yb4{bottom:209.986667pt;}
.y1ab{bottom:210.107331pt;}
.ye4{bottom:210.579980pt;}
.y58{bottom:211.752938pt;}
.y1f1{bottom:211.879081pt;}
.y1b0{bottom:213.792562pt;}
.y15f{bottom:215.602432pt;}
.y1d2{bottom:215.954915pt;}
.y172{bottom:216.372211pt;}
.ycd{bottom:216.805140pt;}
.y215{bottom:217.466667pt;}
.y205{bottom:218.673267pt;}
.y66{bottom:218.891568pt;}
.y1f9{bottom:219.183577pt;}
.y46{bottom:219.409002pt;}
.yfa{bottom:220.229032pt;}
.ydd{bottom:220.484344pt;}
.yc4{bottom:220.601404pt;}
.y4{bottom:220.773333pt;}
.y11e{bottom:220.934178pt;}
.y21b{bottom:220.986667pt;}
.y1c6{bottom:221.163025pt;}
.y45{bottom:222.791419pt;}
.yb3{bottom:223.266667pt;}
.y189{bottom:224.341918pt;}
.y192{bottom:224.451705pt;}
.y87{bottom:224.480000pt;}
.y8b{bottom:225.440000pt;}
.ycc{bottom:226.359859pt;}
.y1df{bottom:226.488073pt;}
.y17e{bottom:227.063594pt;}
.y5f{bottom:227.111055pt;}
.y61{bottom:228.152937pt;}
.y1a4{bottom:228.293333pt;}
.y1ac{bottom:228.533488pt;}
.yd3{bottom:228.598509pt;}
.yfb{bottom:234.755432pt;}
.yde{bottom:235.010745pt;}
.y101{bottom:235.195626pt;}
.y11f{bottom:235.452822pt;}
.ycb{bottom:235.921321pt;}
.y167{bottom:236.272439pt;}
.y138{bottom:236.332740pt;}
.yb2{bottom:236.546667pt;}
.yd2{bottom:236.690014pt;}
.y126{bottom:236.772699pt;}
.y179{bottom:237.042219pt;}
.yca{bottom:244.147685pt;}
.y3{bottom:246.400000pt;}
.y76{bottom:247.529352pt;}
.yfc{bottom:249.281832pt;}
.ydf{bottom:249.537145pt;}
.yb1{bottom:249.826667pt;}
.y120{bottom:249.971467pt;}
.y182{bottom:250.882352pt;}
.y214{bottom:251.066667pt;}
.y1a6{bottom:251.840000pt;}
.y1da{bottom:252.320000pt;}
.ye{bottom:253.506667pt;}
.yc9{bottom:253.830519pt;}
.yc5{bottom:254.356467pt;}
.y137{bottom:254.371056pt;}
.y160{bottom:254.804170pt;}
.y125{bottom:254.811015pt;}
.y173{bottom:255.573949pt;}
.y17d{bottom:256.286708pt;}
.y21a{bottom:259.066667pt;}
.y5d{bottom:260.808231pt;}
.y16{bottom:262.224730pt;}
.yb0{bottom:263.106667pt;}
.ye0{bottom:264.063545pt;}
.y121{bottom:264.490112pt;}
.yfd{bottom:264.767855pt;}
.y19d{bottom:265.448295pt;}
.yd9{bottom:265.824321pt;}
.ybc{bottom:268.000000pt;}
.y3c{bottom:272.626884pt;}
.yaf{bottom:276.413333pt;}
.y213{bottom:276.666667pt;}
.y17c{bottom:276.956715pt;}
.y195{bottom:279.723244pt;}
.yd5{bottom:284.933140pt;}
.y145{bottom:286.360471pt;}
.y19f{bottom:287.958795pt;}
.y196{bottom:288.507831pt;}
.yae{bottom:289.693333pt;}
.y60{bottom:290.733407pt;}
.y161{bottom:294.005908pt;}
.y168{bottom:294.718667pt;}
.y174{bottom:294.775687pt;}
.y17a{bottom:295.488446pt;}
.y219{bottom:297.146667pt;}
.y55{bottom:298.296701pt;}
.yd{bottom:298.306667pt;}
.y109{bottom:299.904136pt;}
.y140{bottom:300.263173pt;}
.y152{bottom:300.773525pt;}
.yad{bottom:302.973333pt;}
.y3d{bottom:305.420770pt;}
.y56{bottom:305.773171pt;}
.y24{bottom:307.924940pt;}
.y212{bottom:310.266667pt;}
.y102{bottom:311.349179pt;}
.y5e{bottom:311.561407pt;}
.y139{bottom:311.702105pt;}
.y148{bottom:312.212457pt;}
.yac{bottom:316.253333pt;}
.y10b{bottom:317.952088pt;}
.y142{bottom:318.301489pt;}
.y103{bottom:318.392282pt;}
.y13a{bottom:318.741448pt;}
.y154{bottom:318.811841pt;}
.y149{bottom:319.251800pt;}
.y197{bottom:319.253886pt;}
.y17{bottom:320.040057pt;}
.y23{bottom:321.783988pt;}
.y218{bottom:326.146667pt;}
.y115{bottom:326.584291pt;}
.y68{bottom:328.283125pt;}
.y153{bottom:328.336952pt;}
.y10e{bottom:329.397131pt;}
.yab{bottom:329.533333pt;}
.y71{bottom:329.643360pt;}
.y14a{bottom:330.250774pt;}
.y6e{bottom:330.991054pt;}
.y6b{bottom:332.791128pt;}
.y5b{bottom:333.122583pt;}
.y3e{bottom:335.477011pt;}
.y10a{bottom:335.973628pt;}
.y104{bottom:336.000040pt;}
.y141{bottom:336.313408pt;}
.y13b{bottom:336.339805pt;}
.y10f{bottom:340.401979pt;}
.y14b{bottom:341.249747pt;}
.yaa{bottom:342.813333pt;}
.yc{bottom:343.133333pt;}
.y211{bottom:343.906667pt;}
.y25{bottom:344.709162pt;}
.y198{bottom:349.450906pt;}
.y110{bottom:351.406828pt;}
.y14c{bottom:352.248720pt;}
.y105{bottom:353.607798pt;}
.y13c{bottom:353.938163pt;}
.ya9{bottom:356.093333pt;}
.y19e{bottom:358.180590pt;}
.y2{bottom:361.280000pt;}
.y111{bottom:362.411677pt;}
.y14d{bottom:363.247694pt;}
.ya8{bottom:369.373333pt;}
.y210{bottom:369.506667pt;}
.y106{bottom:371.215556pt;}
.y21{bottom:371.341632pt;}
.y13d{bottom:371.536520pt;}
.y112{bottom:373.416525pt;}
.y14e{bottom:374.246667pt;}
.y10d{bottom:377.206595pt;}
.y18{bottom:377.843835pt;}
.y144{bottom:378.135904pt;}
.y199{bottom:379.647926pt;}
.ya7{bottom:382.653333pt;}
.y113{bottom:384.421374pt;}
.y14f{bottom:385.245640pt;}
.y20{bottom:387.706858pt;}
.yb{bottom:387.933333pt;}
.y107{bottom:388.823314pt;}
.y13e{bottom:389.134877pt;}
.y27{bottom:391.541194pt;}
.y10c{bottom:395.254547pt;}
.y114{bottom:395.426223pt;}
.y118{bottom:395.729957pt;}
.ya6{bottom:395.933333pt;}
.y143{bottom:396.174220pt;}
.y150{bottom:396.244614pt;}
.y117{bottom:396.830441pt;}
.y156{bottom:398.356417pt;}
.y1{bottom:398.720000pt;}
.y155{bottom:399.456314pt;}
.y20f{bottom:403.106667pt;}
.y1f{bottom:404.083632pt;}
.y116{bottom:405.062068pt;}
.y26{bottom:405.400242pt;}
.y108{bottom:405.990878pt;}
.y13f{bottom:406.293276pt;}
.y151{bottom:406.803628pt;}
.ya5{bottom:409.253333pt;}
.y19a{bottom:409.844946pt;}
.y1e{bottom:418.173664pt;}
.ya4{bottom:422.533333pt;}
.y20e{bottom:428.706667pt;}
.ya{bottom:432.733333pt;}
.y1d{bottom:434.758324pt;}
.y19{bottom:435.659162pt;}
.ya3{bottom:435.813333pt;}
.y1a2{bottom:439.492941pt;}
.y7a{bottom:439.520000pt;}
.y19b{bottom:440.041967pt;}
.y21f{bottom:440.960000pt;}
.y3f{bottom:448.126189pt;}
.ya2{bottom:449.573333pt;}
.y1a1{bottom:456.513080pt;}
.y20d{bottom:462.306667pt;}
.ya1{bottom:462.373333pt;}
.y19c{bottom:470.238986pt;}
.y1a0{bottom:470.239004pt;}
.y41{bottom:482.054777pt;}
.ya0{bottom:482.306667pt;}
.y20c{bottom:487.933333pt;}
.y7b{bottom:502.746667pt;}
.y157{bottom:508.666667pt;}
.y119{bottom:509.280000pt;}
.y1a3{bottom:509.733333pt;}
.y21e{bottom:520.800000pt;}
.y1a5{bottom:534.653333pt;}
.y9{bottom:541.306667pt;}
.y9f{bottom:548.573333pt;}
.h6f{height:15.166360pt;}
.h2c{height:15.395488pt;}
.h31{height:16.365304pt;}
.h38{height:16.372671pt;}
.h34{height:16.380061pt;}
.h2e{height:17.333358pt;}
.h3b{height:18.288772pt;}
.h6b{height:19.359713pt;}
.h33{height:19.630165pt;}
.h3a{height:19.640359pt;}
.h36{height:19.667218pt;}
.h2f{height:21.103876pt;}
.h1c{height:21.188746pt;}
.h7b{height:21.283439pt;}
.h74{height:21.294808pt;}
.h1a{height:25.010099pt;}
.h78{height:26.882569pt;}
.h71{height:26.896929pt;}
.h6a{height:27.102762pt;}
.h67{height:28.602768pt;}
.h18{height:28.888322pt;}
.h40{height:29.920307pt;}
.h1e{height:30.799693pt;}
.h46{height:31.840306pt;}
.hb{height:33.159119pt;}
.h1f{height:33.270766pt;}
.h68{height:33.757424pt;}
.h69{height:33.809755pt;}
.h32{height:36.563138pt;}
.h39{height:36.577946pt;}
.h5c{height:36.607424pt;}
.h35{height:36.630332pt;}
.h79{height:37.190137pt;}
.h72{height:37.210003pt;}
.h56{height:37.536904pt;}
.h50{height:37.769797pt;}
.h42{height:38.816328pt;}
.h37{height:39.382832pt;}
.h30{height:39.384023pt;}
.h49{height:41.307188pt;}
.h7a{height:41.589726pt;}
.h73{height:41.611942pt;}
.h64{height:42.084375pt;}
.h61{height:42.189000pt;}
.h65{height:42.210000pt;}
.h77{height:42.479478pt;}
.h76{height:42.565601pt;}
.h6e{height:42.588339pt;}
.h70{height:42.623086pt;}
.h62{height:43.215000pt;}
.h8f{height:43.989449pt;}
.h88{height:44.098909pt;}
.h8e{height:44.169374pt;}
.h87{height:44.568268pt;}
.h5f{height:44.851789pt;}
.h2d{height:44.976808pt;}
.h3c{height:44.991117pt;}
.h59{height:45.990597pt;}
.h4{height:46.029375pt;}
.h53{height:46.275940pt;}
.ha{height:46.421335pt;}
.h5e{height:47.421271pt;}
.h45{height:47.640826pt;}
.h58{height:48.629608pt;}
.h52{height:48.943385pt;}
.h7{height:48.990529pt;}
.h5a{height:50.399104pt;}
.h44{height:50.621667pt;}
.h4c{height:50.697959pt;}
.h54{height:51.678761pt;}
.h6d{height:51.761980pt;}
.h4e{height:51.999396pt;}
.h23{height:52.271156pt;}
.h82{height:53.118772pt;}
.h83{height:53.464453pt;}
.h7c{height:53.746875pt;}
.h4d{height:53.806000pt;}
.h84{height:53.838750pt;}
.h4b{height:53.839007pt;}
.h8a{height:54.684820pt;}
.h91{height:55.373170pt;}
.h8b{height:55.579236pt;}
.h92{height:55.623128pt;}
.h20{height:57.412216pt;}
.h8{height:57.819371pt;}
.h9{height:57.910945pt;}
.h8d{height:58.891910pt;}
.h86{height:59.423763pt;}
.h1b{height:61.970301pt;}
.h21{height:62.013297pt;}
.h19{height:62.040937pt;}
.h1d{height:62.051352pt;}
.h22{height:62.722144pt;}
.h5d{height:63.366556pt;}
.h5b{height:63.398098pt;}
.h3f{height:64.500000pt;}
.h57{height:64.975463pt;}
.h55{height:65.007806pt;}
.h51{height:65.378595pt;}
.h4f{height:65.411138pt;}
.h47{height:66.255763pt;}
.h43{height:67.306906pt;}
.h41{height:67.340409pt;}
.h3d{height:68.906250pt;}
.h7e{height:68.958731pt;}
.h7f{height:70.398937pt;}
.h4a{height:71.626019pt;}
.h48{height:71.661672pt;}
.h25{height:72.443381pt;}
.h93{height:73.010312pt;}
.he{height:74.803059pt;}
.h27{height:80.191108pt;}
.h2a{height:80.218119pt;}
.h26{height:80.229696pt;}
.h13{height:80.430973pt;}
.h17{height:82.962381pt;}
.h16{height:88.474649pt;}
.h3{height:88.777500pt;}
.h2{height:88.911000pt;}
.hc{height:89.281247pt;}
.h11{height:91.233705pt;}
.h63{height:94.415000pt;}
.h10{height:96.229273pt;}
.h14{height:96.518325pt;}
.h29{height:99.176519pt;}
.h2b{height:103.382637pt;}
.h15{height:112.599887pt;}
.h80{height:114.575299pt;}
.hf{height:128.894876pt;}
.hd{height:128.959035pt;}
.h1{height:133.500000pt;}
.h60{height:133.633500pt;}
.h5{height:133.683750pt;}
.h3e{height:134.400000pt;}
.h94{height:161.021250pt;}
.h28{height:162.268283pt;}
.h89{height:228.796791pt;}
.h90{height:231.676791pt;}
.h8c{height:247.683285pt;}
.h85{height:249.920115pt;}
.h66{height:261.288190pt;}
.h7d{height:311.689455pt;}
.h24{height:347.515994pt;}
.h6c{height:415.996486pt;}
.h75{height:416.803895pt;}
.h12{height:427.188070pt;}
.h6{height:447.531746pt;}
.h81{height:482.718620pt;}
.h0{height:720.000000pt;}
.wf{width:14.227372pt;}
.wb{width:14.234658pt;}
.w11{width:14.234925pt;}
.wc{width:16.095440pt;}
.w10{width:17.087334pt;}
.we{width:17.874035pt;}
.wd{width:18.029188pt;}
.w6{width:19.141319pt;}
.w8{width:21.052593pt;}
.w7{width:21.099275pt;}
.w5{width:22.985025pt;}
.w9{width:28.767632pt;}
.w15{width:79.677769pt;}
.w1a{width:95.997906pt;}
.w17{width:117.920318pt;}
.w16{width:118.563538pt;}
.w19{width:131.357540pt;}
.w18{width:132.480746pt;}
.w3{width:151.200573pt;}
.w12{width:178.720000pt;}
.w13{width:186.400000pt;}
.w14{width:223.520000pt;}
.wa{width:279.673831pt;}
.w21{width:296.167046pt;}
.w23{width:298.073956pt;}
.w1b{width:300.309037pt;}
.w1d{width:486.716502pt;}
.w1c{width:502.728356pt;}
.w2{width:514.383503pt;}
.w1f{width:591.673675pt;}
.w22{width:650.240595pt;}
.w20{width:655.517185pt;}
.w1e{width:850.078392pt;}
.w4{width:1207.649848pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x45{left:0.936018pt;}
.x30{left:2.215614pt;}
.x1c{left:3.643933pt;}
.x58{left:7.293333pt;}
.x76{left:8.673358pt;}
.x4c{left:9.851886pt;}
.x34{left:10.765411pt;}
.x4e{left:11.730612pt;}
.x74{left:13.864002pt;}
.x10{left:14.856138pt;}
.x94{left:15.979468pt;}
.x20{left:16.895434pt;}
.x46{left:17.940248pt;}
.x73{left:19.247116pt;}
.x48{left:20.137807pt;}
.x3d{left:21.600000pt;}
.xe{left:23.746917pt;}
.x72{left:24.867274pt;}
.x77{left:26.206468pt;}
.xa4{left:27.929164pt;}
.x80{left:29.387094pt;}
.x60{left:30.586755pt;}
.x6f{left:31.679981pt;}
.xd{left:32.967369pt;}
.x1e{left:35.038957pt;}
.x21{left:36.094059pt;}
.x5d{left:37.554140pt;}
.x1f{left:38.758669pt;}
.xa3{left:39.929791pt;}
.x47{left:40.992312pt;}
.xc{left:42.593841pt;}
.x67{left:43.752356pt;}
.x11{left:44.887676pt;}
.x1a{left:46.054469pt;}
.x91{left:47.015827pt;}
.x4d{left:48.386492pt;}
.x7b{left:49.504258pt;}
.x22{left:51.567600pt;}
.x6c{left:52.731216pt;}
.x9{left:53.791981pt;}
.x61{left:56.444727pt;}
.x68{left:59.019956pt;}
.x5e{left:60.823250pt;}
.x6b{left:62.339598pt;}
.x55{left:68.415981pt;}
.x23{left:70.227547pt;}
.xd0{left:72.704687pt;}
.x62{left:74.241444pt;}
.x40{left:75.720394pt;}
.xa{left:77.119981pt;}
.x17{left:78.576857pt;}
.x65{left:81.538226pt;}
.x16{left:84.100338pt;}
.x97{left:85.390092pt;}
.x1d{left:89.868342pt;}
.x50{left:95.072523pt;}
.x69{left:98.618114pt;}
.xd6{left:102.943981pt;}
.x15{left:104.873251pt;}
.x3f{left:107.732615pt;}
.x98{left:109.341293pt;}
.x70{left:112.095981pt;}
.x42{left:114.681269pt;}
.x4a{left:118.510941pt;}
.x43{left:124.221429pt;}
.xa2{left:125.850279pt;}
.x52{left:127.642915pt;}
.x82{left:129.104085pt;}
.x18{left:130.735863pt;}
.x44{left:131.758630pt;}
.x1b{left:133.858443pt;}
.x75{left:140.510700pt;}
.xcf{left:142.542778pt;}
.x7d{left:144.708476pt;}
.x7c{left:147.210818pt;}
.x49{left:151.560396pt;}
.xa5{left:153.458922pt;}
.x93{left:155.359981pt;}
.x4f{left:159.519391pt;}
.x3e{left:163.730033pt;}
.xc5{left:165.122118pt;}
.xb3{left:166.055835pt;}
.xbe{left:170.397200pt;}
.x92{left:173.573515pt;}
.xb6{left:175.500665pt;}
.x29{left:178.972050pt;}
.x4b{left:185.216121pt;}
.x6e{left:186.559981pt;}
.xbd{left:188.334910pt;}
.xbf{left:191.396368pt;}
.x99{left:200.254871pt;}
.x51{left:204.922959pt;}
.x31{left:207.291114pt;}
.x83{left:221.056328pt;}
.x37{left:223.566389pt;}
.x7f{left:225.179905pt;}
.x7e{left:229.911445pt;}
.x96{left:231.288251pt;}
.xa8{left:233.253314pt;}
.xf{left:240.673364pt;}
.x81{left:251.445680pt;}
.x3{left:253.253314pt;}
.xa0{left:256.411765pt;}
.x27{left:258.116163pt;}
.x9f{left:261.720106pt;}
.x41{left:264.134286pt;}
.xd5{left:266.401013pt;}
.x9b{left:267.950492pt;}
.xc6{left:270.844031pt;}
.x79{left:271.789538pt;}
.x7a{left:272.951119pt;}
.x1{left:275.546648pt;}
.x2c{left:280.177374pt;}
.x8d{left:281.160987pt;}
.xd3{left:282.514565pt;}
.x2d{left:283.879820pt;}
.x26{left:284.781452pt;}
.x9a{left:287.146578pt;}
.x88{left:288.245081pt;}
.x9c{left:289.583410pt;}
.xce{left:291.573937pt;}
.x86{left:292.558096pt;}
.x78{left:295.709989pt;}
.x85{left:299.888899pt;}
.xb8{left:301.338067pt;}
.x28{left:305.058583pt;}
.x8c{left:306.334191pt;}
.x84{left:307.506062pt;}
.x8f{left:308.779261pt;}
.x89{left:309.951132pt;}
.xbc{left:312.301843pt;}
.xa1{left:315.585062pt;}
.x2e{left:317.721860pt;}
.xb9{left:318.750799pt;}
.x2f{left:320.023900pt;}
.xba{left:322.840110pt;}
.x9e{left:328.300493pt;}
.xd7{left:331.813314pt;}
.x35{left:336.445114pt;}
.x90{left:337.481295pt;}
.xc9{left:341.773005pt;}
.xc1{left:344.850555pt;}
.x56{left:346.053314pt;}
.xd1{left:347.520437pt;}
.x5{left:353.733314pt;}
.xca{left:354.966974pt;}
.x95{left:356.857525pt;}
.xcb{left:359.464227pt;}
.xc7{left:366.204029pt;}
.xb4{left:368.755866pt;}
.x53{left:370.813314pt;}
.x8e{left:376.280806pt;}
.x87{left:377.452677pt;}
.x54{left:386.653314pt;}
.x8b{left:390.541510pt;}
.x71{left:391.613314pt;}
.xb5{left:406.418764pt;}
.xbb{left:429.173268pt;}
.xc0{left:431.665538pt;}
.x33{left:445.197290pt;}
.xab{left:449.007818pt;}
.x19{left:456.160000pt;}
.x13{left:465.533959pt;}
.x14{left:467.523568pt;}
.x25{left:470.383376pt;}
.x9d{left:477.851704pt;}
.xa9{left:480.820451pt;}
.x24{left:482.526634pt;}
.xac{left:484.858880pt;}
.xd2{left:486.480114pt;}
.xc8{left:490.352525pt;}
.xcc{left:492.631538pt;}
.x4{left:497.759981pt;}
.x8a{left:498.855895pt;}
.x12{left:506.506037pt;}
.x39{left:522.505384pt;}
.x6{left:525.119981pt;}
.xc4{left:528.000000pt;}
.x7{left:558.879981pt;}
.x2{left:578.786648pt;}
.xc3{left:584.706648pt;}
.x5a{left:585.920000pt;}
.xaa{left:601.442141pt;}
.x38{left:604.688189pt;}
.xd4{left:607.944039pt;}
.xcd{left:612.902673pt;}
.x36{left:613.915530pt;}
.xb1{left:620.091679pt;}
.xb2{left:621.263187pt;}
.xc2{left:647.813314pt;}
.x32{left:662.720826pt;}
.x2a{left:672.982023pt;}
.xb7{left:681.306648pt;}
.x5b{left:693.413314pt;}
.xa6{left:712.133314pt;}
.x2b{left:727.463621pt;}
.xb{left:731.200000pt;}
.xad{left:801.231592pt;}
.xae{left:803.007046pt;}
.xaf{left:803.989366pt;}
.x57{left:809.440000pt;}
.x64{left:837.280000pt;}
.xb0{left:843.478653pt;}
.x6a{left:850.400000pt;}
.x5f{left:874.880000pt;}
.x59{left:988.160000pt;}
.x3c{left:992.006311pt;}
.x3b{left:998.394470pt;}
.x66{left:1002.560000pt;}
.x3a{left:1025.923024pt;}
.x5c{left:1031.520000pt;}
.x63{left:1056.000000pt;}
.xa7{left:1161.533314pt;}
.x6d{left:1169.693314pt;}
.x8{left:1174.239981pt;}
}




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