
    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_a296fbb5ea54435d7f26ede0.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_962228377f9043660b3d7512.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_d243387cfc651ffd19a8e2a5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6201079f4216f6b9fa17e8b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.142090;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_b7f92a5801e287edcef81aa9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915039;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_2b702b20f54b69eca09513a0.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_5d1e6faad376238f5304221c.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_601080a7f30051af22184526.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_938ffa2cd12b9e7bdd07503c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.915039;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_e7d5d1f81906c1616c3c7c8e.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m35{transform:matrix(0.137444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137444,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.138087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138087,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.138249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138249,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.139644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139644,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.139957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139957,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.141444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141444,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.141582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141582,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.141582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141582,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.145618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145618,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.145689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145689,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.145835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145835,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.145886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145886,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.146979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146979,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.147581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147581,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.151048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151048,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.152751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152751,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.153093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153093,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.155473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155473,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.157176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157176,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.160774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160774,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.179696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179696,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.228990,0.000000,-0.076322,0.238065,0,0);-ms-transform:matrix(0.228990,0.000000,-0.076322,0.238065,0,0);-webkit-transform:matrix(0.228990,0.000000,-0.076322,0.238065,0,0);}
.m13{transform:matrix(0.233852,0.000000,-0.077942,0.237539,0,0);-ms-transform:matrix(0.233852,0.000000,-0.077942,0.237539,0,0);-webkit-transform:matrix(0.233852,0.000000,-0.077942,0.237539,0,0);}
.m31{transform:matrix(0.234099,0.000000,-0.078025,0.237512,0,0);-ms-transform:matrix(0.234099,0.000000,-0.078025,0.237512,0,0);-webkit-transform:matrix(0.234099,0.000000,-0.078025,0.237512,0,0);}
.mf{transform:matrix(0.236228,0.000000,-0.078735,0.237278,0,0);-ms-transform:matrix(0.236228,0.000000,-0.078735,0.237278,0,0);-webkit-transform:matrix(0.236228,0.000000,-0.078735,0.237278,0,0);}
.m3d{transform:matrix(0.236596,0.000000,-0.078857,0.237237,0,0);-ms-transform:matrix(0.236596,0.000000,-0.078857,0.237237,0,0);-webkit-transform:matrix(0.236596,0.000000,-0.078857,0.237237,0,0);}
.mc{transform:matrix(0.236704,0.000000,-0.078893,0.237225,0,0);-ms-transform:matrix(0.236704,0.000000,-0.078893,0.237225,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.078893,0.237225,0,0);}
.m43{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m46{transform:matrix(0.237413,0.000000,-0.079130,0.237147,0,0);-ms-transform:matrix(0.237413,0.000000,-0.079130,0.237147,0,0);-webkit-transform:matrix(0.237413,0.000000,-0.079130,0.237147,0,0);}
.m44{transform:matrix(0.237566,0.000000,-0.079181,0.237130,0,0);-ms-transform:matrix(0.237566,0.000000,-0.079181,0.237130,0,0);-webkit-transform:matrix(0.237566,0.000000,-0.079181,0.237130,0,0);}
.m1f{transform:matrix(0.238965,0.000000,-0.079647,0.236973,0,0);-ms-transform:matrix(0.238965,0.000000,-0.079647,0.236973,0,0);-webkit-transform:matrix(0.238965,0.000000,-0.079647,0.236973,0,0);}
.m4{transform:matrix(0.239174,0.000000,-0.079717,0.236950,0,0);-ms-transform:matrix(0.239174,0.000000,-0.079717,0.236950,0,0);-webkit-transform:matrix(0.239174,0.000000,-0.079717,0.236950,0,0);}
.m39{transform:matrix(0.240010,0.000000,-0.079995,0.236856,0,0);-ms-transform:matrix(0.240010,0.000000,-0.079995,0.236856,0,0);-webkit-transform:matrix(0.240010,0.000000,-0.079995,0.236856,0,0);}
.m3b{transform:matrix(0.240333,0.000000,-0.080103,0.236820,0,0);-ms-transform:matrix(0.240333,0.000000,-0.080103,0.236820,0,0);-webkit-transform:matrix(0.240333,0.000000,-0.080103,0.236820,0,0);}
.m17{transform:matrix(0.240470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240470,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.241575,0.000000,-0.080517,0.236679,0,0);-ms-transform:matrix(0.241575,0.000000,-0.080517,0.236679,0,0);-webkit-transform:matrix(0.241575,0.000000,-0.080517,0.236679,0,0);}
.m40{transform:matrix(0.242366,0.000000,-0.080781,0.236589,0,0);-ms-transform:matrix(0.242366,0.000000,-0.080781,0.236589,0,0);-webkit-transform:matrix(0.242366,0.000000,-0.080781,0.236589,0,0);}
.m33{transform:matrix(0.244395,0.000000,-0.081457,0.236357,0,0);-ms-transform:matrix(0.244395,0.000000,-0.081457,0.236357,0,0);-webkit-transform:matrix(0.244395,0.000000,-0.081457,0.236357,0,0);}
.m25{transform:matrix(0.244621,0.000000,-0.081532,0.236331,0,0);-ms-transform:matrix(0.244621,0.000000,-0.081532,0.236331,0,0);-webkit-transform:matrix(0.244621,0.000000,-0.081532,0.236331,0,0);}
.m28{transform:matrix(0.245272,0.000000,-0.081749,0.236256,0,0);-ms-transform:matrix(0.245272,0.000000,-0.081749,0.236256,0,0);-webkit-transform:matrix(0.245272,0.000000,-0.081749,0.236256,0,0);}
.m2b{transform:matrix(0.245379,0.000000,-0.081784,0.236244,0,0);-ms-transform:matrix(0.245379,0.000000,-0.081784,0.236244,0,0);-webkit-transform:matrix(0.245379,0.000000,-0.081784,0.236244,0,0);}
.m2e{transform:matrix(0.245599,0.000000,-0.081858,0.236219,0,0);-ms-transform:matrix(0.245599,0.000000,-0.081858,0.236219,0,0);-webkit-transform:matrix(0.245599,0.000000,-0.081858,0.236219,0,0);}
.m1a{transform:matrix(0.245676,0.000000,-0.081884,0.236210,0,0);-ms-transform:matrix(0.245676,0.000000,-0.081884,0.236210,0,0);-webkit-transform:matrix(0.245676,0.000000,-0.081884,0.236210,0,0);}
.m14{transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246119,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246172,0.000000,-0.082049,0.236152,0,0);-ms-transform:matrix(0.246172,0.000000,-0.082049,0.236152,0,0);-webkit-transform:matrix(0.246172,0.000000,-0.082049,0.236152,0,0);}
.m30{transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246407,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247317,0.000000,-0.082430,0.236020,0,0);-ms-transform:matrix(0.247317,0.000000,-0.082430,0.236020,0,0);-webkit-transform:matrix(0.247317,0.000000,-0.082430,0.236020,0,0);}
.m10{transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249324,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249451,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);}
.m47{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.253709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253709,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.255171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255171,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.256105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256105,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.256708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256708,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.258502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258502,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.258769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258769,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.259667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259667,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.259927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259927,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.260019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260019,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.260607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260607,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.261966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261966,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-44.716343px;}
.va{vertical-align:-40.170077px;}
.vc{vertical-align:-38.052252px;}
.v9{vertical-align:-34.359938px;}
.vf{vertical-align:-29.200236px;}
.v12{vertical-align:-26.623277px;}
.v10{vertical-align:-25.264136px;}
.v6{vertical-align:-22.455686px;}
.ve{vertical-align:-20.967327px;}
.vd{vertical-align:-19.523945px;}
.v4{vertical-align:-17.251832px;}
.v2{vertical-align:-15.120000px;}
.v11{vertical-align:-5.840646px;}
.v7{vertical-align:-2.908490px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:2.880000px;}
.v14{vertical-align:5.760000px;}
.v5{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.v8{vertical-align:30.479278px;}
.v3{vertical-align:82.032943px;}
.ls5f{letter-spacing:-1.080000px;}
.ls6b{letter-spacing:-0.990000px;}
.ls6{letter-spacing:-0.672000px;}
.ls7{letter-spacing:-0.630000px;}
.ls5e{letter-spacing:-0.612000px;}
.ls23{letter-spacing:-0.504000px;}
.ls63{letter-spacing:-0.496200px;}
.ls67{letter-spacing:-0.450600px;}
.ls29{letter-spacing:-0.360000px;}
.ls66{letter-spacing:-0.269400px;}
.ls64{letter-spacing:-0.223800px;}
.ls4{letter-spacing:-0.181200px;}
.ls6a{letter-spacing:-0.090600px;}
.ls5{letter-spacing:-0.089400px;}
.ls24{letter-spacing:-0.036000px;}
.ls1c{letter-spacing:-0.025920px;}
.ls1b{letter-spacing:-0.018000px;}
.ls1a{letter-spacing:-0.017280px;}
.ls2{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.017280px;}
.ls3f{letter-spacing:0.018000px;}
.ls1d{letter-spacing:0.025920px;}
.ls1{letter-spacing:0.037440px;}
.ls68{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.216000px;}
.ls65{letter-spacing:0.223800px;}
.ls5d{letter-spacing:0.252000px;}
.ls61{letter-spacing:0.269280px;}
.ls8{letter-spacing:0.269400px;}
.ls62{letter-spacing:0.449280px;}
.ls3{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.630720px;}
.lsd{letter-spacing:0.702000px;}
.ls40{letter-spacing:0.972000px;}
.ls69{letter-spacing:1.260000px;}
.ls5b{letter-spacing:9.625613px;}
.ls18{letter-spacing:10.149181px;}
.ls17{letter-spacing:10.286728px;}
.ls19{letter-spacing:10.292107px;}
.lse{letter-spacing:10.658068px;}
.ls10{letter-spacing:10.737691px;}
.ls11{letter-spacing:10.879184px;}
.ls3c{letter-spacing:11.685685px;}
.ls59{letter-spacing:14.582515px;}
.ls58{letter-spacing:16.138752px;}
.ls16{letter-spacing:20.433082px;}
.ls13{letter-spacing:26.584628px;}
.ls5c{letter-spacing:33.743069px;}
.ls25{letter-spacing:39.349015px;}
.ls28{letter-spacing:39.497966px;}
.ls49{letter-spacing:42.947966px;}
.ls2c{letter-spacing:43.390908px;}
.ls34{letter-spacing:49.453747px;}
.ls20{letter-spacing:50.285902px;}
.ls50{letter-spacing:52.301613px;}
.ls2f{letter-spacing:63.170612px;}
.ls26{letter-spacing:64.872229px;}
.ls36{letter-spacing:69.860207px;}
.ls38{letter-spacing:87.561446px;}
.ls37{letter-spacing:87.702434px;}
.ls3b{letter-spacing:107.118879px;}
.ls46{letter-spacing:116.299806px;}
.ls30{letter-spacing:116.976473px;}
.ls1f{letter-spacing:119.502622px;}
.ls4a{letter-spacing:120.183609px;}
.ls4b{letter-spacing:121.361880px;}
.ls39{letter-spacing:127.092336px;}
.ls47{letter-spacing:127.556632px;}
.ls1e{letter-spacing:129.994011px;}
.ls4f{letter-spacing:138.261740px;}
.ls56{letter-spacing:141.355267px;}
.ls2b{letter-spacing:144.114467px;}
.ls4c{letter-spacing:144.922798px;}
.ls45{letter-spacing:145.779008px;}
.ls4d{letter-spacing:147.319206px;}
.ls42{letter-spacing:151.209574px;}
.ls2d{letter-spacing:151.249351px;}
.ls41{letter-spacing:155.657776px;}
.ls5a{letter-spacing:163.001395px;}
.ls51{letter-spacing:187.698688px;}
.ls4e{letter-spacing:190.394647px;}
.ls43{letter-spacing:194.680858px;}
.ls44{letter-spacing:200.144141px;}
.ls27{letter-spacing:203.057989px;}
.ls57{letter-spacing:209.917938px;}
.ls54{letter-spacing:212.569533px;}
.ls53{letter-spacing:213.453398px;}
.ls55{letter-spacing:221.029384px;}
.ls22{letter-spacing:237.229371px;}
.ls35{letter-spacing:245.941957px;}
.ls48{letter-spacing:247.201189px;}
.ls31{letter-spacing:260.047177px;}
.ls3e{letter-spacing:262.380000px;}
.ls12{letter-spacing:286.337308px;}
.ls21{letter-spacing:295.593131px;}
.ls3a{letter-spacing:326.797203px;}
.lsa{letter-spacing:328.720394px;}
.ls2a{letter-spacing:329.477361px;}
.lsb{letter-spacing:330.390352px;}
.ls32{letter-spacing:389.605907px;}
.ls2e{letter-spacing:410.324937px;}
.ls33{letter-spacing:484.330206px;}
.ls52{letter-spacing:506.061544px;}
.ls15{letter-spacing:508.549038px;}
.ls3d{letter-spacing:783.678903px;}
.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;}
}
.ws4b{word-spacing:-155.217619px;}
.wsd{word-spacing:-45.110381px;}
.ws8{word-spacing:-21.643200px;}
.ws5e{word-spacing:-21.634560px;}
.ws7{word-spacing:-21.600000px;}
.ws3d{word-spacing:-15.714000px;}
.ws5b{word-spacing:-15.264000px;}
.ws9{word-spacing:-15.228000px;}
.ws20{word-spacing:-15.120000px;}
.ws17{word-spacing:-15.012000px;}
.ws4a{word-spacing:-14.994000px;}
.ws1d{word-spacing:-14.976000px;}
.ws66{word-spacing:-14.670720px;}
.ws5c{word-spacing:-14.652000px;}
.ws1c{word-spacing:-14.508000px;}
.ws64{word-spacing:-13.680120px;}
.ws62{word-spacing:-13.634520px;}
.ws65{word-spacing:-13.456080px;}
.ws1{word-spacing:-13.410720px;}
.ws67{word-spacing:-13.320120px;}
.ws2{word-spacing:-13.229520px;}
.ws60{word-spacing:-13.186920px;}
.ws63{word-spacing:-13.141320px;}
.ws61{word-spacing:-13.050720px;}
.ws5f{word-spacing:-12.914520px;}
.ws5{word-spacing:-12.780720px;}
.ws4{word-spacing:-12.738720px;}
.ws58{word-spacing:-12.723586px;}
.ws68{word-spacing:-12.420720px;}
.ws0{word-spacing:-11.609280px;}
.ws13{word-spacing:-10.008000px;}
.ws18{word-spacing:-9.650562px;}
.ws21{word-spacing:-9.029803px;}
.ws5d{word-spacing:-8.406720px;}
.wsf{word-spacing:-7.922425px;}
.ws33{word-spacing:-7.835615px;}
.ws3a{word-spacing:-7.835347px;}
.ws14{word-spacing:-7.669531px;}
.ws3{word-spacing:-7.606080px;}
.ws10{word-spacing:-4.924127px;}
.wsb{word-spacing:-4.672438px;}
.wsa{word-spacing:-4.183407px;}
.ws54{word-spacing:-2.357183px;}
.ws6{word-spacing:0.000000px;}
.ws1a{word-spacing:2.871573px;}
.ws25{word-spacing:4.277813px;}
.ws28{word-spacing:4.351300px;}
.ws23{word-spacing:4.473555px;}
.ws1e{word-spacing:5.005950px;}
.ws57{word-spacing:6.475396px;}
.ws5a{word-spacing:6.487375px;}
.ws2a{word-spacing:7.375085px;}
.ws56{word-spacing:7.579416px;}
.ws2e{word-spacing:7.905832px;}
.ws2c{word-spacing:7.935467px;}
.ws59{word-spacing:8.331982px;}
.ws47{word-spacing:10.729037px;}
.ws36{word-spacing:11.804599px;}
.ws3b{word-spacing:11.966637px;}
.ws48{word-spacing:14.021546px;}
.ws4c{word-spacing:14.153955px;}
.ws52{word-spacing:22.313908px;}
.ws35{word-spacing:22.834715px;}
.ws32{word-spacing:23.079871px;}
.ws2b{word-spacing:23.124588px;}
.ws19{word-spacing:23.214976px;}
.ws30{word-spacing:23.335242px;}
.ws38{word-spacing:23.856629px;}
.ws15{word-spacing:24.121483px;}
.ws22{word-spacing:24.824885px;}
.ws27{word-spacing:25.821139px;}
.ws2d{word-spacing:26.175570px;}
.ws24{word-spacing:26.322815px;}
.ws2f{word-spacing:26.349422px;}
.ws26{word-spacing:26.425085px;}
.ws3e{word-spacing:26.803067px;}
.ws3f{word-spacing:29.322112px;}
.ws45{word-spacing:34.327835px;}
.ws4e{word-spacing:35.680430px;}
.ws4d{word-spacing:36.116888px;}
.ws51{word-spacing:37.971834px;}
.ws46{word-spacing:40.076516px;}
.ws1b{word-spacing:44.315216px;}
.ws31{word-spacing:45.896922px;}
.ws37{word-spacing:46.018860px;}
.ws3c{word-spacing:46.333938px;}
.ws1f{word-spacing:48.323137px;}
.ws29{word-spacing:49.599406px;}
.ws16{word-spacing:49.852844px;}
.wsc{word-spacing:50.022470px;}
.ws39{word-spacing:51.812802px;}
.ws11{word-spacing:52.975189px;}
.ws40{word-spacing:54.329458px;}
.ws34{word-spacing:75.066293px;}
.ws55{word-spacing:88.341680px;}
.wse{word-spacing:88.697250px;}
.ws12{word-spacing:92.865796px;}
.ws43{word-spacing:98.207590px;}
.ws4f{word-spacing:106.648146px;}
.ws50{word-spacing:110.787588px;}
.ws44{word-spacing:119.021314px;}
.ws49{word-spacing:123.119503px;}
.ws53{word-spacing:125.218146px;}
.ws41{word-spacing:179.296821px;}
.ws42{word-spacing:179.526548px;}
._84{margin-left:-455.476748px;}
._8a{margin-left:-59.280364px;}
._5f{margin-left:-32.176915px;}
._3{margin-left:-13.572000px;}
._29{margin-left:-12.171436px;}
._6{margin-left:-10.169280px;}
._76{margin-left:-5.892169px;}
._77{margin-left:-4.274593px;}
._a{margin-left:-1.477440px;}
._0{width:1.127520px;}
._c{width:2.262960px;}
._d{width:3.425040px;}
._e{width:4.780080px;}
._11{width:6.117120px;}
._f{width:7.477200px;}
._10{width:8.572080px;}
._16{width:9.928080px;}
._19{width:11.142000px;}
._1a{width:12.753840px;}
._50{width:13.878000px;}
._8d{width:14.915520px;}
._1b{width:16.749360px;}
._14{width:18.620640px;}
._15{width:19.852320px;}
._23{width:20.910000px;}
._20{width:22.086000px;}
._21{width:23.220000px;}
._12{width:24.843600px;}
._13{width:26.240160px;}
._1e{width:27.756000px;}
._1f{width:28.941840px;}
._73{width:30.030240px;}
._3f{width:31.536000px;}
._3e{width:32.544000px;}
._36{width:34.200480px;}
._51{width:35.887266px;}
._43{width:37.332882px;}
._49{width:38.407397px;}
._42{width:40.528278px;}
._48{width:41.695142px;}
._1d{width:43.052880px;}
._1c{width:44.064000px;}
._82{width:45.584006px;}
._38{width:49.897952px;}
._25{width:53.838661px;}
._22{width:55.350000px;}
._89{width:57.817309px;}
._31{width:58.968000px;}
._32{width:60.006000px;}
._3a{width:62.112492px;}
._8c{width:63.726948px;}
._18{width:64.892160px;}
._45{width:66.011289px;}
._33{width:67.093680px;}
._8{width:73.771680px;}
._7a{width:75.776965px;}
._2e{width:77.513866px;}
._6f{width:78.842961px;}
._24{width:80.990643px;}
._4b{width:82.363901px;}
._5c{width:87.840176px;}
._7b{width:89.146518px;}
._41{width:91.807211px;}
._88{width:92.928805px;}
._27{width:94.953853px;}
._4e{width:96.115228px;}
._2c{width:97.375211px;}
._58{width:98.860605px;}
._69{width:100.800227px;}
._4d{width:102.577667px;}
._34{width:104.107968px;}
._54{width:105.733436px;}
._55{width:110.005090px;}
._70{width:117.394969px;}
._2a{width:119.150745px;}
._3b{width:123.097823px;}
._62{width:124.359808px;}
._46{width:126.146596px;}
._65{width:129.175494px;}
._5b{width:130.241826px;}
._26{width:132.078059px;}
._67{width:135.909066px;}
._7f{width:143.584077px;}
._39{width:148.702429px;}
._2d{width:149.738274px;}
._5a{width:157.141950px;}
._4a{width:158.321721px;}
._87{width:173.565741px;}
._6c{width:181.839613px;}
._2f{width:185.066867px;}
._28{width:186.166884px;}
._6d{width:187.271675px;}
._81{width:189.592914px;}
._52{width:195.830475px;}
._9{width:201.510720px;}
._83{width:210.717085px;}
._44{width:217.563058px;}
._40{width:225.095976px;}
._53{width:235.198491px;}
._6b{width:241.053669px;}
._37{width:245.111509px;}
._64{width:259.695798px;}
._74{width:280.188000px;}
._59{width:286.149774px;}
._6e{width:313.713711px;}
._85{width:358.078745px;}
._80{width:425.040291px;}
._7e{width:441.080632px;}
._1{width:444.846720px;}
._4{width:469.083360px;}
._5e{width:504.615669px;}
._7c{width:506.018334px;}
._56{width:510.708000px;}
._71{width:574.088648px;}
._72{width:578.293449px;}
._86{width:609.348000px;}
._75{width:618.768000px;}
._8b{width:637.428000px;}
._7d{width:644.335666px;}
._61{width:665.290105px;}
._2b{width:702.288000px;}
._78{width:718.825749px;}
._79{width:734.118691px;}
._47{width:741.828000px;}
._3c{width:752.688000px;}
._30{width:756.288000px;}
._63{width:766.308000px;}
._57{width:798.708000px;}
._68{width:852.708000px;}
._60{width:856.308000px;}
._5d{width:892.488000px;}
._4c{width:918.408000px;}
._6a{width:985.968000px;}
._66{width:1011.288000px;}
._17{width:1017.588000px;}
._4f{width:1026.408000px;}
._3d{width:1058.808000px;}
._35{width:1065.864000px;}
._7{width:1094.610720px;}
._b{width:1131.433680px;}
._2{width:1260.408000px;}
._5{width:1263.810720px;}
.fc6{color:rgb(23,55,94);}
.fc5{color:rgb(46,67,92);}
.fc4{color:rgb(48,117,186);}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(10,129,174);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:27.360000px;}
.fs5d{font-size:30.240000px;}
.fs54{font-size:31.098799px;}
.fs47{font-size:31.122502px;}
.fs3e{font-size:31.341387px;}
.fs37{font-size:31.342461px;}
.fs4f{font-size:31.593649px;}
.fsd{font-size:31.746431px;}
.fs24{font-size:32.733283px;}
.fs30{font-size:32.760633px;}
.fs4d{font-size:32.797167px;}
.fs4b{font-size:32.849603px;}
.fs56{font-size:32.861582px;}
.fs59{font-size:32.922374px;}
.fs28{font-size:33.106463px;}
.fs40{font-size:33.150422px;}
.fs32{font-size:33.155199px;}
.fs35{font-size:33.165718px;}
.fs38{font-size:33.167447px;}
.fs3a{font-size:33.171009px;}
.fs52{font-size:33.293301px;}
.fse{font-size:33.494875px;}
.fs10{font-size:33.494878px;}
.fs1d{font-size:34.364140px;}
.fs1b{font-size:34.402016px;}
.fs2a{font-size:34.446224px;}
.fs3c{font-size:34.520716px;}
.fs15{font-size:34.562498px;}
.fs11{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs45{font-size:42.116432px;}
.fs2{font-size:48.240000px;}
.fs60{font-size:48.946072px;}
.fs5f{font-size:49.006425px;}
.fs5c{font-size:50.848916px;}
.fs5e{font-size:51.666298px;}
.fs22{font-size:53.256607px;}
.fs2e{font-size:53.258166px;}
.fs4c{font-size:53.649610px;}
.fs55{font-size:53.754725px;}
.fs48{font-size:53.782790px;}
.fs0{font-size:54.000000px;}
.fs3f{font-size:54.147678px;}
.fs26{font-size:54.149535px;}
.fs50{font-size:54.557233px;}
.fsb{font-size:54.874167px;}
.fs1a{font-size:56.305350px;}
.fs25{font-size:56.365771px;}
.fs31{font-size:56.412867px;}
.fs14{font-size:56.450383px;}
.fs4e{font-size:56.635518px;}
.fs49{font-size:56.767393px;}
.fs57{font-size:56.801722px;}
.fs5a{font-size:56.906800px;}
.fs5b{font-size:56.920429px;}
.fs29{font-size:57.197153px;}
.fs41{font-size:57.273100px;}
.fs33{font-size:57.281353px;}
.fs36{font-size:57.299528px;}
.fs39{font-size:57.302514px;}
.fs3b{font-size:57.308667px;}
.fs51{font-size:57.492262px;}
.fs20{font-size:57.621525px;}
.fsa{font-size:57.896377px;}
.fsf{font-size:57.896382px;}
.fs1c{font-size:59.258936px;}
.fs19{font-size:59.324252px;}
.fs2b{font-size:59.400486px;}
.fs3d{font-size:59.418351px;}
.fs16{font-size:59.490267px;}
.fs6{font-size:59.760000px;}
.fs44{font-size:60.165513px;}
.fs1f{font-size:60.510261px;}
.fs62{font-size:62.918378px;}
.fs63{font-size:62.995864px;}
.fs3{font-size:66.240000px;}
.fs61{font-size:66.328558px;}
.fs7{font-size:77.760000px;}
.fs23{font-size:79.886899px;}
.fs2f{font-size:79.889237px;}
.fs58{font-size:80.492026px;}
.fs4a{font-size:80.603985px;}
.fs27{font-size:81.152949px;}
.fsc{font-size:82.168272px;}
.fs42{font-size:84.511398px;}
.fs2c{font-size:85.297368px;}
.fs53{font-size:85.979201px;}
.fs46{font-size:86.055519px;}
.fs8{font-size:87.769718px;}
.fs17{font-size:90.264977px;}
.fs12{font-size:90.407632px;}
.fs1e{font-size:92.283266px;}
.fs21{font-size:93.338664px;}
.fs2d{font-size:93.341396px;}
.fs34{font-size:94.867569px;}
.fs5{font-size:95.760000px;}
.fs9{font-size:96.101281px;}
.fs18{font-size:98.824279px;}
.fs13{font-size:98.972878px;}
.fs43{font-size:110.679785px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.060000px;}
.y197{bottom:3.125875px;}
.y1a6{bottom:3.125938px;}
.y1aa{bottom:3.125940px;}
.yec{bottom:3.177917px;}
.ycb{bottom:3.177972px;}
.y7f{bottom:3.190971px;}
.y75{bottom:3.191011px;}
.y10{bottom:3.225000px;}
.y10f{bottom:4.155651px;}
.y15e{bottom:4.307919px;}
.y12f{bottom:4.331301px;}
.y13d{bottom:4.331303px;}
.ybf{bottom:4.361537px;}
.ydf{bottom:4.361624px;}
.y1e8{bottom:4.387647px;}
.y1e6{bottom:4.405752px;}
.y1ea{bottom:4.538529px;}
.y1df{bottom:4.858399px;}
.ye9{bottom:5.098709px;}
.yc8{bottom:5.098789px;}
.y97{bottom:5.324170px;}
.yd2{bottom:5.324232px;}
.y1f0{bottom:5.424003px;}
.y1e2{bottom:5.537337px;}
.y1a{bottom:5.580000px;}
.yea{bottom:5.657352px;}
.yc9{bottom:5.657409px;}
.y1e4{bottom:5.763690px;}
.y1f2{bottom:5.873420px;}
.y1ec{bottom:6.179489px;}
.yc2{bottom:7.546101px;}
.ye3{bottom:7.546285px;}
.yf0{bottom:8.206707px;}
.y133{bottom:8.376325px;}
.y87{bottom:8.511466px;}
.y103{bottom:8.511473px;}
.y93{bottom:8.547722px;}
.ya5{bottom:8.547740px;}
.yd0{bottom:8.547771px;}
.y86{bottom:8.909887px;}
.y92{bottom:8.946126px;}
.ya4{bottom:8.946185px;}
.y116{bottom:9.044946px;}
.yb1{bottom:9.168795px;}
.ybe{bottom:9.449822px;}
.yde{bottom:9.450065px;}
.yc0{bottom:10.003691px;}
.ye0{bottom:10.003946px;}
.y10e{bottom:10.476309px;}
.ye8{bottom:10.476668px;}
.yc7{bottom:10.476731px;}
.ycc{bottom:10.476744px;}
.y115{bottom:10.581485px;}
.y105{bottom:10.901979px;}
.y107{bottom:10.901984px;}
.y89{bottom:10.901995px;}
.y8b{bottom:10.902003px;}
.y99{bottom:10.938239px;}
.y96{bottom:10.938241px;}
.y94{bottom:10.938243px;}
.yaa{bottom:10.938268px;}
.ya8{bottom:10.938282px;}
.ya6{bottom:10.938299px;}
.y185{bottom:10.988362px;}
.yb5{bottom:11.202050px;}
.yb4{bottom:11.202066px;}
.yb2{bottom:11.202085px;}
.y10d{bottom:11.244542px;}
.ye7{bottom:11.244927px;}
.yc6{bottom:11.245007px;}
.y19d{bottom:11.344246px;}
.y104{bottom:11.698765px;}
.y88{bottom:11.698778px;}
.y1f5{bottom:11.700000px;}
.y95{bottom:11.735028px;}
.ya7{bottom:11.735060px;}
.yd1{bottom:11.735090px;}
.y15d{bottom:11.738830px;}
.y4f{bottom:11.880000px;}
.y117{bottom:11.978405px;}
.y119{bottom:11.978445px;}
.yb3{bottom:12.015526px;}
.y10c{bottom:12.187426px;}
.yba{bottom:12.495888px;}
.yd9{bottom:12.496226px;}
.y19c{bottom:12.538369px;}
.y1ad{bottom:12.538449px;}
.ybd{bottom:12.703705px;}
.ydd{bottom:12.704037px;}
.yd8{bottom:12.842484px;}
.y184{bottom:13.032648px;}
.y19e{bottom:13.065184px;}
.y1ae{bottom:13.065250px;}
.ye{bottom:13.140000px;}
.y183{bottom:13.251738px;}
.y7c{bottom:13.337267px;}
.y72{bottom:13.337307px;}
.y139{bottom:14.246868px;}
.y13c{bottom:14.497411px;}
.ybc{bottom:15.472725px;}
.ydc{bottom:15.473144px;}
.y7a{bottom:15.918816px;}
.y6f{bottom:15.918833px;}
.y195{bottom:15.980246px;}
.y79{bottom:16.313035px;}
.y6e{bottom:16.313073px;}
.ydb{bottom:16.407612px;}
.y110{bottom:16.552399px;}
.yf2{bottom:16.552967px;}
.y12b{bottom:17.074249px;}
.y8a{bottom:17.240462px;}
.y98{bottom:17.240465px;}
.ya9{bottom:17.240469px;}
.y106{bottom:17.240472px;}
.yd3{bottom:17.240501px;}
.y19{bottom:17.460000px;}
.y198{bottom:17.876550px;}
.y1a7{bottom:17.876577px;}
.y1ac{bottom:17.876620px;}
.y1a9{bottom:17.876628px;}
.y7b{bottom:18.248829px;}
.y71{bottom:18.248848px;}
.y76{bottom:18.248854px;}
.y70{bottom:18.248866px;}
.y19b{bottom:18.648904px;}
.y1ab{bottom:18.648984px;}
.y118{bottom:18.753772px;}
.y135{bottom:18.971707px;}
.y137{bottom:18.971728px;}
.y13f{bottom:18.971731px;}
.y19a{bottom:19.843460px;}
.y2b{bottom:20.175000px;}
.y10b{bottom:20.429383px;}
.yf1{bottom:20.430083px;}
.y1ee{bottom:20.533711px;}
.ybb{bottom:20.561172px;}
.yda{bottom:20.561734px;}
.yeb{bottom:20.743863px;}
.yca{bottom:20.743898px;}
.y32{bottom:22.500000px;}
.y7{bottom:24.135000px;}
.y15c{bottom:24.338667px;}
.y182{bottom:24.386532px;}
.yc1{bottom:24.852879px;}
.ye2{bottom:24.853579px;}
.y181{bottom:24.897235px;}
.ye1{bottom:25.442936px;}
.y14d{bottom:26.780630px;}
.y15b{bottom:26.780632px;}
.y132{bottom:27.563169px;}
.y1a8{bottom:27.745734px;}
.y4b{bottom:28.245000px;}
.y7e{bottom:28.467644px;}
.y74{bottom:28.467676px;}
.y199{bottom:28.974824px;}
.y7d{bottom:29.328160px;}
.y73{bottom:29.328169px;}
.y37{bottom:32.040000px;}
.y11{bottom:32.205000px;}
.y18{bottom:32.760000px;}
.y196{bottom:33.155049px;}
.y1a5{bottom:33.155114px;}
.y31{bottom:33.345000px;}
.y2a{bottom:34.035000px;}
.y12e{bottom:34.149959px;}
.y3c{bottom:35.445000px;}
.y15a{bottom:36.903451px;}
.y180{bottom:37.162384px;}
.y17f{bottom:37.710531px;}
.y6{bottom:39.075000px;}
.y16b{bottom:40.120399px;}
.y188{bottom:40.120446px;}
.yd{bottom:40.500000px;}
.y34{bottom:40.680000px;}
.y4a{bottom:42.105000px;}
.y148{bottom:42.395661px;}
.y17{bottom:44.640000px;}
.y16f{bottom:44.646634px;}
.y18f{bottom:44.646649px;}
.y173{bottom:44.646665px;}
.y14c{bottom:46.848054px;}
.y159{bottom:46.848055px;}
.y4{bottom:48.420000px;}
.y30{bottom:48.465000px;}
.y51{bottom:49.500000px;}
.y158{bottom:49.503583px;}
.y17e{bottom:49.977178px;}
.y3b{bottom:50.385000px;}
.y17d{bottom:50.487881px;}
.y18e{bottom:54.320656px;}
.y12d{bottom:54.660768px;}
.y13b{bottom:54.660769px;}
.y29{bottom:56.715000px;}
.y1f7{bottom:57.960000px;}
.y131{bottom:58.705351px;}
.y16{bottom:59.940000px;}
.y3{bottom:60.480000px;}
.y16a{bottom:60.563259px;}
.y187{bottom:60.563307px;}
.y157{bottom:61.638305px;}
.y17c{bottom:62.790474px;}
.y17b{bottom:63.301177px;}
.y2f{bottom:63.405000px;}
.y138{bottom:64.575454px;}
.y13a{bottom:64.861831px;}
.y49{bottom:64.965000px;}
.y16e{bottom:65.126939px;}
.y18d{bottom:65.126955px;}
.y17a{bottom:65.126963px;}
.y172{bottom:65.126970px;}
.y3a{bottom:65.550000px;}
.y145{bottom:66.986174px;}
.y156{bottom:66.986176px;}
.y14b{bottom:66.986180px;}
.y12a{bottom:67.404009px;}
.y155{bottom:67.704926px;}
.y134{bottom:69.301468px;}
.y136{bottom:69.301489px;}
.y13e{bottom:69.301491px;}
.y28{bottom:70.605000px;}
.y169{bottom:71.222783px;}
.y15{bottom:71.820000px;}
.y147{bottom:71.976140px;}
.y2{bottom:72.540000px;}
.y179{bottom:72.939264px;}
.y16d{bottom:73.815438px;}
.y154{bottom:74.668499px;}
.y178{bottom:76.114505px;}
.y130{bottom:77.891461px;}
.y2d{bottom:78.510000px;}
.y48{bottom:78.645000px;}
.y39{bottom:80.670000px;}
.y186{bottom:81.043612px;}
.y168{bottom:81.991644px;}
.y12c{bottom:84.513498px;}
.y18c{bottom:85.569816px;}
.y171{bottom:85.569832px;}
.y14a{bottom:85.976949px;}
.y153{bottom:85.976951px;}
.y170{bottom:86.519357px;}
.y18b{bottom:86.519360px;}
.y16c{bottom:86.519377px;}
.y14{bottom:86.940000px;}
.y152{bottom:87.270104px;}
.y177{bottom:88.927801px;}
.y167{bottom:92.615221px;}
.y27{bottom:93.465000px;}
.y166{bottom:95.134423px;}
.y144{bottom:96.566652px;}
.y18a{bottom:99.660641px;}
.y151{bottom:99.870236px;}
.y1cb{bottom:100.800000px;}
.y47{bottom:101.505000px;}
.y146{bottom:101.593453px;}
.y176{bottom:101.742595px;}
.y13{bottom:102.060000px;}
.y149{bottom:106.044372px;}
.y150{bottom:106.044374px;}
.ya0{bottom:111.816000px;}
.y14f{bottom:112.435020px;}
.y175{bottom:114.555891px;}
.y10a{bottom:115.440000px;}
.y165{bottom:115.577284px;}
.y26{bottom:116.145000px;}
.y1ca{bottom:117.576000px;}
.y189{bottom:120.105000px;}
.y174{bottom:120.870355px;}
.y46{bottom:124.185000px;}
.y14e{bottom:125.035152px;}
.y111{bottom:125.856000px;}
.y9f{bottom:128.556000px;}
.y25{bottom:139.005000px;}
.y1dd{bottom:142.236000px;}
.y233{bottom:142.596000px;}
.y1c9{bottom:143.316000px;}
.y4c{bottom:144.885000px;}
.y9e{bottom:145.656000px;}
.y45{bottom:147.045000px;}
.y3d{bottom:150.165000px;}
.y109{bottom:150.870000px;}
.y24{bottom:152.865000px;}
.y232{bottom:156.270000px;}
.y1c8{bottom:160.050000px;}
.y44{bottom:160.905000px;}
.y1dc{bottom:165.990000px;}
.y23{bottom:166.545000px;}
.y231{bottom:170.310000px;}
.y9d{bottom:171.210000px;}
.y102{bottom:173.939980px;}
.y43{bottom:174.585000px;}
.y1c7{bottom:176.790000px;}
.y230{bottom:183.990000px;}
.y108{bottom:184.350000px;}
.y21{bottom:189.390000px;}
.y1db{bottom:189.930000px;}
.y1c6{bottom:193.530000px;}
.y9c{bottom:196.950000px;}
.y42{bottom:197.445000px;}
.y22f{bottom:197.670000px;}
.y163{bottom:198.390000px;}
.y20{bottom:203.250000px;}
.y41{bottom:211.305000px;}
.y22e{bottom:211.530000px;}
.y1da{bottom:212.430000px;}
.y1d9{bottom:213.870000px;}
.y162{bottom:215.130000px;}
.y101{bottom:216.570000px;}
.y1f{bottom:216.930000px;}
.y1c5{bottom:219.270000px;}
.y9b{bottom:222.690000px;}
.y40{bottom:225.030000px;}
.y22d{bottom:225.390000px;}
.y1e{bottom:230.790000px;}
.y1c4{bottom:236.010000px;}
.y3f{bottom:238.890000px;}
.y22c{bottom:239.250000px;}
.y161{bottom:240.870000px;}
.y100{bottom:242.310000px;}
.y1d{bottom:244.650000px;}
.y91{bottom:245.789980px;}
.y3e{bottom:252.750000px;}
.y22b{bottom:252.930000px;}
.y9a{bottom:256.170000px;}
.y160{bottom:257.790000px;}
.y1c{bottom:258.330000px;}
.y22a{bottom:266.790000px;}
.yff{bottom:268.050000px;}
.y1c3{bottom:278.490000px;}
.y229{bottom:280.470000px;}
.y143{bottom:280.514980px;}
.y90{bottom:288.390000px;}
.yfe{bottom:293.790000px;}
.y228{bottom:294.510000px;}
.y1c2{bottom:295.410000px;}
.y8f{bottom:305.130000px;}
.y227{bottom:308.010000px;}
.y1c1{bottom:312.150000px;}
.y38{bottom:314.685000px;}
.yfc{bottom:316.890000px;}
.y8e{bottom:321.870000px;}
.yfd{bottom:327.270000px;}
.y1c0{bottom:328.890000px;}
.y226{bottom:335.730000px;}
.y8d{bottom:338.790000px;}
.y1bf{bottom:345.630000px;}
.y15f{bottom:347.970000px;}
.y225{bottom:349.590000px;}
.yfb{bottom:361.470000px;}
.y85{bottom:361.739959px;}
.y1be{bottom:362.370000px;}
.y224{bottom:363.270000px;}
.y8c{bottom:372.135000px;}
.y223{bottom:377.355000px;}
.yfa{bottom:378.075000px;}
.y1bd{bottom:379.155000px;}
.y222{bottom:390.855000px;}
.yf9{bottom:394.995000px;}
.y1bc{bottom:395.895000px;}
.y84{bottom:404.355000px;}
.y221{bottom:404.715000px;}
.yf8{bottom:411.555000px;}
.y1bb{bottom:412.635000px;}
.y220{bottom:418.755000px;}
.y83{bottom:421.095000px;}
.y35{bottom:423.615000px;}
.y1ba{bottom:429.375000px;}
.y21f{bottom:432.255000px;}
.yf6{bottom:434.640000px;}
.y142{bottom:434.955000px;}
.y82{bottom:437.835000px;}
.yf7{bottom:445.035000px;}
.y21e{bottom:446.115000px;}
.y141{bottom:451.875000px;}
.y81{bottom:454.755000px;}
.y21d{bottom:459.975000px;}
.y1b9{bottom:461.775000px;}
.y21c{bottom:473.835000px;}
.y129{bottom:474.764959px;}
.y78{bottom:477.615000px;}
.y33{bottom:478.515000px;}
.yf5{bottom:479.235000px;}
.y1b8{bottom:485.895000px;}
.y21b{bottom:487.515000px;}
.y80{bottom:495.615000px;}
.yf4{bottom:495.795000px;}
.y21a{bottom:501.555000px;}
.y1d8{bottom:506.595000px;}
.y1b7{bottom:510.015000px;}
.y219{bottom:515.055000px;}
.yef{bottom:518.865000px;}
.y140{bottom:524.235000px;}
.y218{bottom:528.915000px;}
.y1d7{bottom:529.095000px;}
.yf3{bottom:529.275000px;}
.y1d6{bottom:530.535000px;}
.y6d{bottom:531.989959px;}
.y217{bottom:542.775000px;}
.y77{bottom:549.975000px;}
.y1d5{bottom:552.675000px;}
.y216{bottom:556.455000px;}
.y1b6{bottom:559.155000px;}
.yee{bottom:563.295000px;}
.y22{bottom:565.260000px;}
.y1b{bottom:565.275000px;}
.y215{bottom:570.315000px;}
.y128{bottom:583.095000px;}
.y214{bottom:584.355000px;}
.y1b5{bottom:585.075000px;}
.ye6{bottom:586.365000px;}
.y6c{bottom:589.035000px;}
.yed{bottom:596.775000px;}
.y213{bottom:597.855000px;}
.y127{bottom:600.015000px;}
.y1b4{bottom:601.815000px;}
.y6b{bottom:605.775000px;}
.y2e{bottom:607.200000px;}
.y2c{bottom:607.215000px;}
.y212{bottom:611.715000px;}
.y126{bottom:616.575000px;}
.y1b3{bottom:618.555000px;}
.y6a{bottom:622.515000px;}
.y211{bottom:625.785000px;}
.ye5{bottom:630.825000px;}
.y125{bottom:633.345000px;}
.y210{bottom:639.285000px;}
.y1b2{bottom:644.325000px;}
.y69{bottom:649.365000px;}
.y20f{bottom:653.145000px;}
.yd7{bottom:653.864959px;}
.y124{bottom:659.085000px;}
.y1b1{bottom:661.065000px;}
.y20e{bottom:667.185000px;}
.ye4{bottom:668.805000px;}
.y123{bottom:675.825000px;}
.y1b0{bottom:677.805000px;}
.y20d{bottom:680.685000px;}
.y68{bottom:685.725000px;}
.y122{bottom:692.565000px;}
.y20c{bottom:694.725000px;}
.yd6{bottom:703.725000px;}
.y20b{bottom:708.405000px;}
.y12{bottom:713.985000px;}
.y121{bottom:718.125000px;}
.yd5{bottom:720.465000px;}
.y20a{bottom:722.265000px;}
.y1a4{bottom:732.539919px;}
.y120{bottom:733.245000px;}
.y67{bottom:735.045000px;}
.y209{bottom:735.945000px;}
.ycf{bottom:743.489919px;}
.y208{bottom:749.805000px;}
.y1af{bottom:750.525000px;}
.y66{bottom:751.785000px;}
.yd4{bottom:753.945000px;}
.y11f{bottom:754.305000px;}
.y207{bottom:763.485000px;}
.y65{bottom:768.525000px;}
.y206{bottom:777.345000px;}
.y64{bottom:785.265000px;}
.yce{bottom:786.165000px;}
.y1a3{bottom:788.685000px;}
.y205{bottom:791.205000px;}
.y63{bottom:802.005000px;}
.y204{bottom:804.885000px;}
.yc5{bottom:809.189919px;}
.y1a2{bottom:814.785000px;}
.y62{bottom:818.745000px;}
.ycd{bottom:819.645000px;}
.y203{bottom:827.925000px;}
.y1d4{bottom:828.105000px;}
.yf{bottom:844.320000px;}
.y61{bottom:844.485000px;}
.y1a1{bottom:846.285000px;}
.y1d3{bottom:846.645000px;}
.yc4{bottom:853.665000px;}
.y202{bottom:855.645000px;}
.y1cd{bottom:857.445000px;}
.y60{bottom:861.225000px;}
.y1a0{bottom:863.385000px;}
.y1d2{bottom:870.765000px;}
.yb9{bottom:876.539919px;}
.y5f{bottom:877.965000px;}
.y1cc{bottom:878.505000px;}
.y1e1{bottom:879.036437px;}
.y194{bottom:886.215000px;}
.y1d1{bottom:887.010000px;}
.y1d0{bottom:887.730000px;}
.yc3{bottom:891.510000px;}
.y5e{bottom:894.750000px;}
.yc{bottom:899.430000px;}
.y19f{bottom:904.290000px;}
.y201{bottom:904.830000px;}
.y5d{bottom:911.490000px;}
.y1cf{bottom:914.370000px;}
.y200{bottom:921.570000px;}
.yb8{bottom:926.610000px;}
.y5c{bottom:928.230000px;}
.y1ce{bottom:935.610000px;}
.y1ff{bottom:938.310000px;}
.y1ed{bottom:938.939873px;}
.y193{bottom:942.450000px;}
.yb7{bottom:943.350000px;}
.y5b{bottom:944.970000px;}
.y1fe{bottom:955.050000px;}
.y1ef{bottom:956.374081px;}
.y192{bottom:959.190000px;}
.y5a{bottom:961.710000px;}
.yb0{bottom:966.164919px;}
.y11e{bottom:970.710000px;}
.yb6{bottom:976.650000px;}
.y59{bottom:978.450000px;}
.y1e7{bottom:978.620646px;}
.y191{bottom:985.290000px;}
.y1e3{bottom:987.220902px;}
.y11d{bottom:987.450000px;}
.y1e5{bottom:988.126219px;}
.y1e0{bottom:989.031545px;}
.yb{bottom:989.430000px;}
.y1de{bottom:989.484117px;}
.y58{bottom:995.370000px;}
.ya{bottom:1002.390000px;}
.y11c{bottom:1004.370000px;}
.y1eb{bottom:1005.190072px;}
.yaf{bottom:1008.330000px;}
.y57{bottom:1012.110000px;}
.y164{bottom:1015.664919px;}
.y9{bottom:1019.310000px;}
.yae{bottom:1024.890000px;}
.y11b{bottom:1031.190000px;}
.y8{bottom:1034.790000px;}
.y1fd{bottom:1036.590000px;}
.y56{bottom:1037.850000px;}
.yad{bottom:1041.630000px;}
.y1e9{bottom:1050.591305px;}
.y1fc{bottom:1053.330000px;}
.y55{bottom:1054.590000px;}
.yac{bottom:1058.550000px;}
.y114{bottom:1062.614919px;}
.y1fb{bottom:1070.070000px;}
.y54{bottom:1071.330000px;}
.y5{bottom:1074.015000px;}
.y11a{bottom:1074.750000px;}
.y190{bottom:1080.150000px;}
.ya3{bottom:1081.364919px;}
.y1fa{bottom:1086.810000px;}
.y1f1{bottom:1087.130477px;}
.y53{bottom:1088.070000px;}
.yab{bottom:1091.850000px;}
.y1f9{bottom:1103.550000px;}
.y113{bottom:1107.330000px;}
.y52{bottom:1120.470000px;}
.y112{bottom:1124.070000px;}
.ya2{bottom:1124.250000px;}
.y1f8{bottom:1135.770000px;}
.ya1{bottom:1140.810000px;}
.y50{bottom:1165.320000px;}
.y1f6{bottom:1167.120000px;}
.y4e{bottom:1186.920000px;}
.y1f4{bottom:1188.720000px;}
.y4d{bottom:1230.660000px;}
.y1f3{bottom:1232.280000px;}
.y1{bottom:1241.280000px;}
.h92{height:18.105826px;}
.h8f{height:19.463763px;}
.h41{height:22.871742px;}
.h4f{height:22.890853px;}
.h74{height:22.916380px;}
.h70{height:22.953019px;}
.h83{height:22.961389px;}
.h89{height:23.003866px;}
.h46{height:23.132494px;}
.h61{height:23.163210px;}
.h52{height:23.166548px;}
.h55{height:23.173898px;}
.h58{height:23.175106px;}
.h5a{height:23.177594px;}
.h98{height:23.245714px;}
.h7c{height:23.263044px;}
.h21{height:23.403890px;}
.h25{height:23.403892px;}
.h36{height:24.011271px;}
.h32{height:24.037737px;}
.h48{height:24.068627px;}
.h5c{height:24.120676px;}
.h2b{height:24.149870px;}
.h94{height:24.989142px;}
.h7{height:28.535625px;}
.h38{height:28.799923px;}
.h85{height:28.805870px;}
.h6d{height:28.827825px;}
.h2d{height:29.699016px;}
.h27{height:29.699037px;}
.h34{height:29.699078px;}
.h81{height:30.521770px;}
.h6a{height:30.545034px;}
.h5f{height:30.759857px;}
.h57{height:30.760912px;}
.h78{height:31.007439px;}
.h5e{height:31.498701px;}
.h51{height:31.499781px;}
.h43{height:31.499862px;}
.h9a{height:31.680000px;}
.h18{height:31.860000px;}
.h3d{height:36.898706px;}
.h4a{height:36.899745px;}
.h82{height:37.560064px;}
.h96{height:38.355422px;}
.h75{height:39.572962px;}
.h71{height:39.665107px;}
.h47{height:39.965394px;}
.h62{height:40.018460px;}
.h53{height:40.024227px;}
.h56{height:40.036926px;}
.h59{height:40.039012px;}
.h5b{height:40.043312px;}
.h7d{height:40.171595px;}
.h22{height:40.453963px;}
.h26{height:40.453966px;}
.h12{height:41.205000px;}
.h66{height:41.314410px;}
.h37{height:41.406024px;}
.h33{height:41.451662px;}
.h49{height:41.504930px;}
.h5d{height:41.517412px;}
.h2c{height:41.567662px;}
.h3c{height:42.280363px;}
.h7f{height:43.199981px;}
.h88{height:43.200062px;}
.h3{height:43.554375px;}
.h23{height:44.099620px;}
.h1b{height:44.099661px;}
.h8d{height:47.099802px;}
.h90{height:47.856917px;}
.h3f{height:49.329972px;}
.h4d{height:49.331416px;}
.h76{height:49.693999px;}
.h86{height:49.791364px;}
.h6e{height:49.817360px;}
.h4{height:50.040000px;}
.h60{height:50.155345px;}
.h44{height:50.157064px;}
.h5{height:50.312812px;}
.h7b{height:50.534702px;}
.h1f{height:50.828269px;}
.h93{height:51.049224px;}
.h91{height:51.112170px;}
.h31{height:52.153930px;}
.h2a{height:52.288269px;}
.h6c{height:52.581907px;}
.h84{height:52.613704px;}
.h73{height:52.654158px;}
.h8a{height:52.711035px;}
.h8b{height:52.723659px;}
.h6b{height:52.784867px;}
.h7a{height:53.253330px;}
.h3b{height:53.373063px;}
.h79{height:53.544940px;}
.h1e{height:53.627650px;}
.h24{height:53.627654px;}
.h14{height:54.885000px;}
.h35{height:54.889746px;}
.h30{height:54.950247px;}
.ha{height:55.101000px;}
.h65{height:55.729481px;}
.h3a{height:56.048811px;}
.h8e{height:56.072813px;}
.h2{height:56.320312px;}
.h7e{height:58.651172px;}
.h67{height:59.019783px;}
.h8c{height:59.200313px;}
.h95{height:61.438123px;}
.hb{height:62.327813px;}
.h97{height:65.621902px;}
.h99{height:65.702717px;}
.h6{height:69.086250px;}
.h42{height:69.863759px;}
.h50{height:69.922133px;}
.h40{height:73.996800px;}
.h4e{height:73.998966px;}
.h87{height:74.557311px;}
.h6f{height:74.661015px;}
.h45{height:75.169504px;}
.h63{height:78.280333px;}
.h4b{height:79.008354px;}
.h80{height:79.639914px;}
.h69{height:79.710605px;}
.h19{height:81.101250px;}
.h1c{height:81.298416px;}
.h2e{height:83.609698px;}
.h28{height:83.741835px;}
.h39{height:85.479177px;}
.h3e{height:86.456761px;}
.h4c{height:86.459291px;}
.h8{height:86.565000px;}
.h13{height:86.745000px;}
.h54{height:87.872938px;}
.h1d{height:89.015688px;}
.h2f{height:91.537919px;}
.h29{height:91.675561px;}
.h68{height:95.396011px;}
.h9{height:99.874688px;}
.h64{height:102.519313px;}
.h20{height:104.215142px;}
.h10{height:106.056000px;}
.h11{height:106.065000px;}
.h15{height:108.202500px;}
.hc{height:129.595500px;}
.hd{height:129.600000px;}
.h77{height:137.700704px;}
.h72{height:141.296767px;}
.h17{height:163.605000px;}
.h16{height:272.730000px;}
.he{height:278.310000px;}
.hf{height:278.325000px;}
.h1a{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:18.139135px;}
.w22{width:19.953049px;}
.w20{width:20.860006px;}
.w1f{width:22.220441px;}
.w24{width:23.271777px;}
.w25{width:25.598950px;}
.w23{width:28.507922px;}
.w8{width:48.060000px;}
.we{width:77.402738px;}
.wb{width:84.598431px;}
.wd{width:86.397170px;}
.w17{width:90.896570px;}
.w11{width:94.497265px;}
.w19{width:97.196815px;}
.w1b{width:115.204478px;}
.w14{width:120.603391px;}
.w10{width:121.500923px;}
.w15{width:129.600207px;}
.w18{width:130.497441px;}
.w13{width:143.996093px;}
.w16{width:152.096227px;}
.wa{width:162.003805px;}
.wc{width:162.898507px;}
.wf{width:165.594794px;}
.w4{width:178.770000px;}
.w6{width:178.785000px;}
.w1e{width:190.961784px;}
.w1d{width:197.995458px;}
.w1a{width:215.994450px;}
.w12{width:215.994486px;}
.w1c{width:278.098224px;}
.w2{width:530.550000px;}
.w5{width:582.615000px;}
.w7{width:724.320000px;}
.w3{width:761.400000px;}
.w9{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x1{left:-106.416000px;}
.x12{left:-74.520000px;}
.x0{left:0.000000px;}
.x28{left:1.486264px;}
.x25{left:3.008752px;}
.x2e{left:6.660706px;}
.xe{left:8.085000px;}
.x22{left:9.352452px;}
.x4{left:10.785000px;}
.x3a{left:12.729751px;}
.x10{left:15.120000px;}
.x51{left:17.593177px;}
.x4b{left:18.675265px;}
.x55{left:19.893069px;}
.xf{left:20.910000px;}
.xa{left:23.220000px;}
.x48{left:24.294733px;}
.x16{left:25.380000px;}
.x3c{left:27.098693px;}
.x50{left:30.215385px;}
.x4a{left:31.464744px;}
.x27{left:33.567795px;}
.x54{left:34.685459px;}
.x2b{left:36.068156px;}
.x3d{left:37.274226px;}
.x31{left:38.466300px;}
.x36{left:40.250828px;}
.x39{left:42.083325px;}
.x5e{left:43.534248px;}
.x53{left:45.030496px;}
.x6a{left:46.167484px;}
.x5b{left:48.468536px;}
.x5c{left:49.885286px;}
.x60{left:51.197505px;}
.x17{left:53.100000px;}
.x9{left:55.260000px;}
.x33{left:56.395595px;}
.x2c{left:58.027976px;}
.x13{left:60.300000px;}
.x5f{left:62.217830px;}
.x2{left:63.720000px;}
.x49{left:67.396982px;}
.x46{left:68.540326px;}
.x3e{left:69.551306px;}
.x2d{left:71.602333px;}
.x34{left:73.110907px;}
.x72{left:74.775965px;}
.xc{left:77.436000px;}
.x59{left:78.950926px;}
.x5d{left:80.756430px;}
.x5a{left:81.784424px;}
.x24{left:85.295872px;}
.x4d{left:89.978092px;}
.x30{left:91.669059px;}
.x23{left:94.357454px;}
.x18{left:95.953500px;}
.x38{left:98.989088px;}
.x19{left:103.536000px;}
.x58{left:106.745667px;}
.x6d{left:109.694803px;}
.x69{left:115.128899px;}
.x4e{left:117.218356px;}
.x7{left:119.736000px;}
.x41{left:120.878935px;}
.x26{left:124.734465px;}
.x2a{left:127.635715px;}
.x62{left:133.393500px;}
.x2f{left:137.736000px;}
.x63{left:140.976000px;}
.x1e{left:142.393500px;}
.x64{left:144.733500px;}
.x1f{left:149.976000px;}
.x65{left:152.310000px;}
.x43{left:155.172551px;}
.x61{left:168.330000px;}
.x57{left:171.930000px;}
.x6f{left:175.854023px;}
.x68{left:178.662204px;}
.x44{left:181.766318px;}
.x67{left:184.009655px;}
.x6b{left:186.787950px;}
.x42{left:189.981086px;}
.x96{left:213.631340px;}
.xb{left:216.075000px;}
.x14{left:219.315000px;}
.x3{left:220.725000px;}
.x93{left:223.154389px;}
.x29{left:228.630000px;}
.xd{left:234.045000px;}
.x1a{left:236.527500px;}
.x11{left:241.455000px;}
.x1b{left:244.110000px;}
.x6c{left:248.239005px;}
.x6e{left:255.378920px;}
.x66{left:262.130472px;}
.x20{left:269.692500px;}
.x5{left:273.315000px;}
.x21{left:277.275000px;}
.x6{left:280.515000px;}
.x95{left:289.815708px;}
.x1c{left:291.112500px;}
.x1d{left:298.695000px;}
.x8c{left:309.675000px;}
.x8f{left:316.875000px;}
.x94{left:335.163545px;}
.x92{left:390.941385px;}
.x83{left:430.485000px;}
.x56{left:433.545000px;}
.x91{left:446.505000px;}
.x8{left:457.125000px;}
.x32{left:462.525000px;}
.x9b{left:467.745000px;}
.x74{left:494.925000px;}
.x85{left:501.045000px;}
.x9a{left:508.319960px;}
.x98{left:518.792286px;}
.x37{left:539.925000px;}
.x35{left:548.925000px;}
.x52{left:553.425000px;}
.x40{left:557.025000px;}
.x90{left:561.885000px;}
.x8d{left:569.085000px;}
.x8e{left:576.285000px;}
.x3f{left:584.025000px;}
.x4c{left:592.170000px;}
.x47{left:606.570000px;}
.x4f{left:614.670000px;}
.x77{left:618.247500px;}
.x78{left:625.830000px;}
.x3b{left:628.170000px;}
.x8a{left:651.210000px;}
.x73{left:653.550000px;}
.x79{left:656.947500px;}
.x71{left:660.570000px;}
.x7a{left:672.090000px;}
.x45{left:678.570000px;}
.x86{left:716.730000px;}
.x87{left:724.650000px;}
.x97{left:737.546893px;}
.x70{left:740.670000px;}
.x7f{left:746.947500px;}
.x80{left:762.120000px;}
.x99{left:764.891232px;}
.x81{left:766.597500px;}
.x82{left:781.740000px;}
.x15{left:784.620000px;}
.x7b{left:787.477500px;}
.x84{left:793.980000px;}
.x7c{left:802.620000px;}
.x7d{left:806.377500px;}
.x88{left:808.200000px;}
.x89{left:816.120000px;}
.x7e{left:821.520000px;}
.x75{left:825.097500px;}
.x76{left:832.680000px;}
.x8b{left:842.940000px;}
@media print{
.vb{vertical-align:-39.747860pt;}
.va{vertical-align:-35.706735pt;}
.vc{vertical-align:-33.824224pt;}
.v9{vertical-align:-30.542167pt;}
.vf{vertical-align:-25.955766pt;}
.v12{vertical-align:-23.665135pt;}
.v10{vertical-align:-22.457009pt;}
.v6{vertical-align:-19.960610pt;}
.ve{vertical-align:-18.637624pt;}
.vd{vertical-align:-17.354618pt;}
.v4{vertical-align:-15.334962pt;}
.v2{vertical-align:-13.440000pt;}
.v11{vertical-align:-5.191686pt;}
.v7{vertical-align:-2.585324pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:2.560000pt;}
.v14{vertical-align:5.120000pt;}
.v5{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.v8{vertical-align:27.092691pt;}
.v3{vertical-align:72.918172pt;}
.ls5f{letter-spacing:-0.960000pt;}
.ls6b{letter-spacing:-0.880000pt;}
.ls6{letter-spacing:-0.597333pt;}
.ls7{letter-spacing:-0.560000pt;}
.ls5e{letter-spacing:-0.544000pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls63{letter-spacing:-0.441067pt;}
.ls67{letter-spacing:-0.400533pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls66{letter-spacing:-0.239467pt;}
.ls64{letter-spacing:-0.198933pt;}
.ls4{letter-spacing:-0.161067pt;}
.ls6a{letter-spacing:-0.080533pt;}
.ls5{letter-spacing:-0.079467pt;}
.ls24{letter-spacing:-0.032000pt;}
.ls1c{letter-spacing:-0.023040pt;}
.ls1b{letter-spacing:-0.016000pt;}
.ls1a{letter-spacing:-0.015360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.015360pt;}
.ls3f{letter-spacing:0.016000pt;}
.ls1d{letter-spacing:0.023040pt;}
.ls1{letter-spacing:0.033280pt;}
.ls68{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls65{letter-spacing:0.198933pt;}
.ls5d{letter-spacing:0.224000pt;}
.ls61{letter-spacing:0.239360pt;}
.ls8{letter-spacing:0.239467pt;}
.ls62{letter-spacing:0.399360pt;}
.ls3{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.560640pt;}
.lsd{letter-spacing:0.624000pt;}
.ls40{letter-spacing:0.864000pt;}
.ls69{letter-spacing:1.120000pt;}
.ls5b{letter-spacing:8.556100pt;}
.ls18{letter-spacing:9.021494pt;}
.ls17{letter-spacing:9.143759pt;}
.ls19{letter-spacing:9.148539pt;}
.lse{letter-spacing:9.473838pt;}
.ls10{letter-spacing:9.544614pt;}
.ls11{letter-spacing:9.670386pt;}
.ls3c{letter-spacing:10.387276pt;}
.ls59{letter-spacing:12.962236pt;}
.ls58{letter-spacing:14.345557pt;}
.ls16{letter-spacing:18.162740pt;}
.ls13{letter-spacing:23.630781pt;}
.ls5c{letter-spacing:29.993839pt;}
.ls25{letter-spacing:34.976902pt;}
.ls28{letter-spacing:35.109303pt;}
.ls49{letter-spacing:38.175970pt;}
.ls2c{letter-spacing:38.569696pt;}
.ls34{letter-spacing:43.958886pt;}
.ls20{letter-spacing:44.698579pt;}
.ls50{letter-spacing:46.490323pt;}
.ls2f{letter-spacing:56.151655pt;}
.ls26{letter-spacing:57.664203pt;}
.ls36{letter-spacing:62.097962pt;}
.ls38{letter-spacing:77.832397pt;}
.ls37{letter-spacing:77.957719pt;}
.ls3b{letter-spacing:95.216782pt;}
.ls46{letter-spacing:103.377605pt;}
.ls30{letter-spacing:103.979087pt;}
.ls1f{letter-spacing:106.224553pt;}
.ls4a{letter-spacing:106.829875pt;}
.ls4b{letter-spacing:107.877227pt;}
.ls39{letter-spacing:112.970965pt;}
.ls47{letter-spacing:113.383673pt;}
.ls1e{letter-spacing:115.550232pt;}
.ls4f{letter-spacing:122.899324pt;}
.ls56{letter-spacing:125.649126pt;}
.ls2b{letter-spacing:128.101748pt;}
.ls4c{letter-spacing:128.820265pt;}
.ls45{letter-spacing:129.581341pt;}
.ls4d{letter-spacing:130.950406pt;}
.ls42{letter-spacing:134.408510pt;}
.ls2d{letter-spacing:134.443867pt;}
.ls41{letter-spacing:138.362467pt;}
.ls5a{letter-spacing:144.890129pt;}
.ls51{letter-spacing:166.843278pt;}
.ls4e{letter-spacing:169.239687pt;}
.ls43{letter-spacing:173.049652pt;}
.ls44{letter-spacing:177.905903pt;}
.ls27{letter-spacing:180.495990pt;}
.ls57{letter-spacing:186.593723pt;}
.ls54{letter-spacing:188.950696pt;}
.ls53{letter-spacing:189.736354pt;}
.ls55{letter-spacing:196.470564pt;}
.ls22{letter-spacing:210.870552pt;}
.ls35{letter-spacing:218.615073pt;}
.ls48{letter-spacing:219.734390pt;}
.ls31{letter-spacing:231.153046pt;}
.ls3e{letter-spacing:233.226667pt;}
.ls12{letter-spacing:254.522051pt;}
.ls21{letter-spacing:262.749450pt;}
.ls3a{letter-spacing:290.486403pt;}
.lsa{letter-spacing:292.195906pt;}
.ls2a{letter-spacing:292.868765pt;}
.lsb{letter-spacing:293.680313pt;}
.ls32{letter-spacing:346.316362pt;}
.ls2e{letter-spacing:364.733277pt;}
.ls33{letter-spacing:430.515739pt;}
.ls52{letter-spacing:449.832483pt;}
.ls15{letter-spacing:452.043589pt;}
.ls3d{letter-spacing:696.603469pt;}
.ws4b{word-spacing:-137.971217pt;}
.wsd{word-spacing:-40.098117pt;}
.ws8{word-spacing:-19.238400pt;}
.ws5e{word-spacing:-19.230720pt;}
.ws7{word-spacing:-19.200000pt;}
.ws3d{word-spacing:-13.968000pt;}
.ws5b{word-spacing:-13.568000pt;}
.ws9{word-spacing:-13.536000pt;}
.ws20{word-spacing:-13.440000pt;}
.ws17{word-spacing:-13.344000pt;}
.ws4a{word-spacing:-13.328000pt;}
.ws1d{word-spacing:-13.312000pt;}
.ws66{word-spacing:-13.040640pt;}
.ws5c{word-spacing:-13.024000pt;}
.ws1c{word-spacing:-12.896000pt;}
.ws64{word-spacing:-12.160107pt;}
.ws62{word-spacing:-12.119573pt;}
.ws65{word-spacing:-11.960960pt;}
.ws1{word-spacing:-11.920640pt;}
.ws67{word-spacing:-11.840107pt;}
.ws2{word-spacing:-11.759573pt;}
.ws60{word-spacing:-11.721707pt;}
.ws63{word-spacing:-11.681173pt;}
.ws61{word-spacing:-11.600640pt;}
.ws5f{word-spacing:-11.479573pt;}
.ws5{word-spacing:-11.360640pt;}
.ws4{word-spacing:-11.323307pt;}
.ws58{word-spacing:-11.309854pt;}
.ws68{word-spacing:-11.040640pt;}
.ws0{word-spacing:-10.319360pt;}
.ws13{word-spacing:-8.896000pt;}
.ws18{word-spacing:-8.578278pt;}
.ws21{word-spacing:-8.026491pt;}
.ws5d{word-spacing:-7.472640pt;}
.wsf{word-spacing:-7.042156pt;}
.ws33{word-spacing:-6.964991pt;}
.ws3a{word-spacing:-6.964753pt;}
.ws14{word-spacing:-6.817361pt;}
.ws3{word-spacing:-6.760960pt;}
.ws10{word-spacing:-4.377002pt;}
.wsb{word-spacing:-4.153278pt;}
.wsa{word-spacing:-3.718584pt;}
.ws54{word-spacing:-2.095274pt;}
.ws6{word-spacing:0.000000pt;}
.ws1a{word-spacing:2.552509pt;}
.ws25{word-spacing:3.802501pt;}
.ws28{word-spacing:3.867822pt;}
.ws23{word-spacing:3.976493pt;}
.ws1e{word-spacing:4.449733pt;}
.ws57{word-spacing:5.755908pt;}
.ws5a{word-spacing:5.766556pt;}
.ws2a{word-spacing:6.555631pt;}
.ws56{word-spacing:6.737259pt;}
.ws2e{word-spacing:7.027406pt;}
.ws2c{word-spacing:7.053748pt;}
.ws59{word-spacing:7.406207pt;}
.ws47{word-spacing:9.536922pt;}
.ws36{word-spacing:10.492977pt;}
.ws3b{word-spacing:10.637011pt;}
.ws48{word-spacing:12.463597pt;}
.ws4c{word-spacing:12.581293pt;}
.ws52{word-spacing:19.834585pt;}
.ws35{word-spacing:20.297524pt;}
.ws32{word-spacing:20.515441pt;}
.ws2b{word-spacing:20.555189pt;}
.ws19{word-spacing:20.635534pt;}
.ws30{word-spacing:20.742438pt;}
.ws38{word-spacing:21.205893pt;}
.ws15{word-spacing:21.441319pt;}
.ws22{word-spacing:22.066564pt;}
.ws27{word-spacing:22.952124pt;}
.ws2d{word-spacing:23.267174pt;}
.ws24{word-spacing:23.398058pt;}
.ws2f{word-spacing:23.421709pt;}
.ws26{word-spacing:23.488964pt;}
.ws3e{word-spacing:23.824949pt;}
.ws3f{word-spacing:26.064100pt;}
.ws45{word-spacing:30.513631pt;}
.ws4e{word-spacing:31.715938pt;}
.ws4d{word-spacing:32.103901pt;}
.ws51{word-spacing:33.752741pt;}
.ws46{word-spacing:35.623570pt;}
.ws1b{word-spacing:39.391303pt;}
.ws31{word-spacing:40.797264pt;}
.ws37{word-spacing:40.905653pt;}
.ws3c{word-spacing:41.185722pt;}
.ws1f{word-spacing:42.953900pt;}
.ws29{word-spacing:44.088361pt;}
.ws16{word-spacing:44.313639pt;}
.wsc{word-spacing:44.464418pt;}
.ws39{word-spacing:46.055824pt;}
.ws11{word-spacing:47.089057pt;}
.ws40{word-spacing:48.292852pt;}
.ws34{word-spacing:66.725594pt;}
.ws55{word-spacing:78.525938pt;}
.wse{word-spacing:78.842000pt;}
.ws12{word-spacing:82.547375pt;}
.ws43{word-spacing:87.295636pt;}
.ws4f{word-spacing:94.798352pt;}
.ws50{word-spacing:98.477856pt;}
.ws44{word-spacing:105.796724pt;}
.ws49{word-spacing:109.439559pt;}
.ws53{word-spacing:111.305019pt;}
.ws41{word-spacing:159.374952pt;}
.ws42{word-spacing:159.579154pt;}
._84{margin-left:-404.868221pt;}
._8a{margin-left:-52.693657pt;}
._5f{margin-left:-28.601702pt;}
._3{margin-left:-12.064000pt;}
._29{margin-left:-10.819055pt;}
._6{margin-left:-9.039360pt;}
._76{margin-left:-5.237484pt;}
._77{margin-left:-3.799639pt;}
._a{margin-left:-1.313280pt;}
._0{width:1.002240pt;}
._c{width:2.011520pt;}
._d{width:3.044480pt;}
._e{width:4.248960pt;}
._11{width:5.437440pt;}
._f{width:6.646400pt;}
._10{width:7.619627pt;}
._16{width:8.824960pt;}
._19{width:9.904000pt;}
._1a{width:11.336747pt;}
._50{width:12.336000pt;}
._8d{width:13.258240pt;}
._1b{width:14.888320pt;}
._14{width:16.551680pt;}
._15{width:17.646507pt;}
._23{width:18.586667pt;}
._20{width:19.632000pt;}
._21{width:20.640000pt;}
._12{width:22.083200pt;}
._13{width:23.324587pt;}
._1e{width:24.672000pt;}
._1f{width:25.726080pt;}
._73{width:26.693547pt;}
._3f{width:28.032000pt;}
._3e{width:28.928000pt;}
._36{width:30.400427pt;}
._51{width:31.899792pt;}
._43{width:33.184784pt;}
._49{width:34.139908pt;}
._42{width:36.025136pt;}
._48{width:37.062348pt;}
._1d{width:38.269227pt;}
._1c{width:39.168000pt;}
._82{width:40.519117pt;}
._38{width:44.353735pt;}
._25{width:47.856588pt;}
._22{width:49.200000pt;}
._89{width:51.393164pt;}
._31{width:52.416000pt;}
._32{width:53.338667pt;}
._3a{width:55.211104pt;}
._8c{width:56.646176pt;}
._18{width:57.681920pt;}
._45{width:58.676701pt;}
._33{width:59.638827pt;}
._8{width:65.574827pt;}
._7a{width:67.357302pt;}
._2e{width:68.901215pt;}
._6f{width:70.082632pt;}
._24{width:71.991682pt;}
._4b{width:73.212356pt;}
._5c{width:78.080156pt;}
._7b{width:79.241350pt;}
._41{width:81.606410pt;}
._88{width:82.603382pt;}
._27{width:84.403425pt;}
._4e{width:85.435759pt;}
._2c{width:86.555743pt;}
._58{width:87.876093pt;}
._69{width:89.600202pt;}
._4d{width:91.180148pt;}
._34{width:92.540416pt;}
._54{width:93.985277pt;}
._55{width:97.782303pt;}
._70{width:104.351084pt;}
._2a{width:105.911773pt;}
._3b{width:109.420287pt;}
._62{width:110.542052pt;}
._46{width:112.130307pt;}
._65{width:114.822661pt;}
._5b{width:115.770512pt;}
._26{width:117.402719pt;}
._67{width:120.808058pt;}
._7f{width:127.630291pt;}
._39{width:132.179937pt;}
._2d{width:133.100688pt;}
._5a{width:139.681733pt;}
._4a{width:140.730418pt;}
._87{width:154.280659pt;}
._6c{width:161.635212pt;}
._2f{width:164.503881pt;}
._28{width:165.481675pt;}
._6d{width:166.463711pt;}
._81{width:168.527034pt;}
._52{width:174.071533pt;}
._9{width:179.120640pt;}
._83{width:187.304075pt;}
._44{width:193.389385pt;}
._40{width:200.085312pt;}
._53{width:209.065325pt;}
._6b{width:214.269928pt;}
._37{width:217.876897pt;}
._64{width:230.840709pt;}
._74{width:249.056000pt;}
._59{width:254.355354pt;}
._6e{width:278.856632pt;}
._85{width:318.292218pt;}
._80{width:377.813592pt;}
._7e{width:392.071673pt;}
._1{width:395.419307pt;}
._4{width:416.962987pt;}
._5e{width:448.547261pt;}
._7c{width:449.794074pt;}
._56{width:453.962667pt;}
._71{width:510.301020pt;}
._72{width:514.038621pt;}
._86{width:541.642667pt;}
._75{width:550.016000pt;}
._8b{width:566.602667pt;}
._7d{width:572.742814pt;}
._61{width:591.368982pt;}
._2b{width:624.256000pt;}
._78{width:638.956222pt;}
._79{width:652.549947pt;}
._47{width:659.402667pt;}
._3c{width:669.056000pt;}
._30{width:672.256000pt;}
._63{width:681.162667pt;}
._57{width:709.962667pt;}
._68{width:757.962667pt;}
._60{width:761.162667pt;}
._5d{width:793.322667pt;}
._4c{width:816.362667pt;}
._6a{width:876.416000pt;}
._66{width:898.922667pt;}
._17{width:904.522667pt;}
._4f{width:912.362667pt;}
._3d{width:941.162667pt;}
._35{width:947.434667pt;}
._7{width:972.987307pt;}
._b{width:1005.718827pt;}
._2{width:1120.362667pt;}
._5{width:1123.387307pt;}
.fs4{font-size:24.320000pt;}
.fs5d{font-size:26.880000pt;}
.fs54{font-size:27.643377pt;}
.fs47{font-size:27.664446pt;}
.fs3e{font-size:27.859010pt;}
.fs37{font-size:27.859965pt;}
.fs4f{font-size:28.083244pt;}
.fsd{font-size:28.219050pt;}
.fs24{font-size:29.096252pt;}
.fs30{font-size:29.120563pt;}
.fs4d{font-size:29.153038pt;}
.fs4b{font-size:29.199647pt;}
.fs56{font-size:29.210295pt;}
.fs59{font-size:29.264332pt;}
.fs28{font-size:29.427967pt;}
.fs40{font-size:29.467041pt;}
.fs32{font-size:29.471288pt;}
.fs35{font-size:29.480638pt;}
.fs38{font-size:29.482175pt;}
.fs3a{font-size:29.485341pt;}
.fs52{font-size:29.594045pt;}
.fse{font-size:29.773222pt;}
.fs10{font-size:29.773225pt;}
.fs1d{font-size:30.545902pt;}
.fs1b{font-size:30.579570pt;}
.fs2a{font-size:30.618866pt;}
.fs3c{font-size:30.685081pt;}
.fs15{font-size:30.722220pt;}
.fs11{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs45{font-size:37.436829pt;}
.fs2{font-size:42.880000pt;}
.fs60{font-size:43.507620pt;}
.fs5f{font-size:43.561267pt;}
.fs5c{font-size:45.199037pt;}
.fs5e{font-size:45.925598pt;}
.fs22{font-size:47.339206pt;}
.fs2e{font-size:47.340592pt;}
.fs4c{font-size:47.688542pt;}
.fs55{font-size:47.781977pt;}
.fs48{font-size:47.806924pt;}
.fs0{font-size:48.000000pt;}
.fs3f{font-size:48.131270pt;}
.fs26{font-size:48.132920pt;}
.fs50{font-size:48.495318pt;}
.fsb{font-size:48.777037pt;}
.fs1a{font-size:50.049200pt;}
.fs25{font-size:50.102908pt;}
.fs31{font-size:50.144771pt;}
.fs14{font-size:50.178118pt;}
.fs4e{font-size:50.342683pt;}
.fs49{font-size:50.459905pt;}
.fs57{font-size:50.490419pt;}
.fs5a{font-size:50.583822pt;}
.fs5b{font-size:50.595937pt;}
.fs29{font-size:50.841914pt;}
.fs41{font-size:50.909422pt;}
.fs33{font-size:50.916758pt;}
.fs36{font-size:50.932913pt;}
.fs39{font-size:50.935568pt;}
.fs3b{font-size:50.941038pt;}
.fs51{font-size:51.104233pt;}
.fs20{font-size:51.219134pt;}
.fsa{font-size:51.463447pt;}
.fsf{font-size:51.463450pt;}
.fs1c{font-size:52.674609pt;}
.fs19{font-size:52.732668pt;}
.fs2b{font-size:52.800432pt;}
.fs3d{font-size:52.816312pt;}
.fs16{font-size:52.880238pt;}
.fs6{font-size:53.120000pt;}
.fs44{font-size:53.480456pt;}
.fs1f{font-size:53.786899pt;}
.fs62{font-size:55.927447pt;}
.fs63{font-size:55.996324pt;}
.fs3{font-size:58.880000pt;}
.fs61{font-size:58.958719pt;}
.fs7{font-size:69.120000pt;}
.fs23{font-size:71.010577pt;}
.fs2f{font-size:71.012655pt;}
.fs58{font-size:71.548467pt;}
.fs4a{font-size:71.647986pt;}
.fs27{font-size:72.135955pt;}
.fsc{font-size:73.038464pt;}
.fs42{font-size:75.121242pt;}
.fs2c{font-size:75.819883pt;}
.fs53{font-size:76.425957pt;}
.fs46{font-size:76.493794pt;}
.fs8{font-size:78.017527pt;}
.fs17{font-size:80.235535pt;}
.fs12{font-size:80.362339pt;}
.fs1e{font-size:82.029569pt;}
.fs21{font-size:82.967701pt;}
.fs2d{font-size:82.970130pt;}
.fs34{font-size:84.326728pt;}
.fs5{font-size:85.120000pt;}
.fs9{font-size:85.423361pt;}
.fs18{font-size:87.843804pt;}
.fs13{font-size:87.975892pt;}
.fs43{font-size:98.382031pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.720000pt;}
.y197{bottom:2.778555pt;}
.y1a6{bottom:2.778612pt;}
.y1aa{bottom:2.778614pt;}
.yec{bottom:2.824815pt;}
.ycb{bottom:2.824864pt;}
.y7f{bottom:2.836419pt;}
.y75{bottom:2.836454pt;}
.y10{bottom:2.866667pt;}
.y10f{bottom:3.693912pt;}
.y15e{bottom:3.829261pt;}
.y12f{bottom:3.850046pt;}
.y13d{bottom:3.850047pt;}
.ybf{bottom:3.876922pt;}
.ydf{bottom:3.877000pt;}
.y1e8{bottom:3.900131pt;}
.y1e6{bottom:3.916224pt;}
.y1ea{bottom:4.034248pt;}
.y1df{bottom:4.318577pt;}
.ye9{bottom:4.532186pt;}
.yc8{bottom:4.532257pt;}
.y97{bottom:4.732595pt;}
.yd2{bottom:4.732651pt;}
.y1f0{bottom:4.821336pt;}
.y1e2{bottom:4.922077pt;}
.y1a{bottom:4.960000pt;}
.yea{bottom:5.028757pt;}
.yc9{bottom:5.028808pt;}
.y1e4{bottom:5.123280pt;}
.y1f2{bottom:5.220818pt;}
.y1ec{bottom:5.492879pt;}
.yc2{bottom:6.707645pt;}
.ye3{bottom:6.707809pt;}
.yf0{bottom:7.294850pt;}
.y133{bottom:7.445622pt;}
.y87{bottom:7.565748pt;}
.y103{bottom:7.565754pt;}
.y93{bottom:7.597975pt;}
.ya5{bottom:7.597991pt;}
.yd0{bottom:7.598019pt;}
.y86{bottom:7.919900pt;}
.y92{bottom:7.952112pt;}
.ya4{bottom:7.952165pt;}
.y116{bottom:8.039952pt;}
.yb1{bottom:8.150040pt;}
.ybe{bottom:8.399842pt;}
.yde{bottom:8.400058pt;}
.yc0{bottom:8.892170pt;}
.ye0{bottom:8.892396pt;}
.y10e{bottom:9.312275pt;}
.ye8{bottom:9.312594pt;}
.yc7{bottom:9.312650pt;}
.ycc{bottom:9.312661pt;}
.y115{bottom:9.405764pt;}
.y105{bottom:9.690648pt;}
.y107{bottom:9.690653pt;}
.y89{bottom:9.690662pt;}
.y8b{bottom:9.690669pt;}
.y99{bottom:9.722879pt;}
.y96{bottom:9.722881pt;}
.y94{bottom:9.722883pt;}
.yaa{bottom:9.722905pt;}
.ya8{bottom:9.722917pt;}
.ya6{bottom:9.722932pt;}
.y185{bottom:9.767433pt;}
.yb5{bottom:9.957378pt;}
.yb4{bottom:9.957392pt;}
.yb2{bottom:9.957409pt;}
.y10d{bottom:9.995148pt;}
.ye7{bottom:9.995491pt;}
.yc6{bottom:9.995562pt;}
.y19d{bottom:10.083774pt;}
.y104{bottom:10.398902pt;}
.y88{bottom:10.398914pt;}
.y1f5{bottom:10.400000pt;}
.y95{bottom:10.431136pt;}
.ya7{bottom:10.431164pt;}
.yd1{bottom:10.431192pt;}
.y15d{bottom:10.434515pt;}
.y4f{bottom:10.560000pt;}
.y117{bottom:10.647471pt;}
.y119{bottom:10.647507pt;}
.yb3{bottom:10.680467pt;}
.y10c{bottom:10.833267pt;}
.yba{bottom:11.107456pt;}
.yd9{bottom:11.107756pt;}
.y19c{bottom:11.145217pt;}
.y1ad{bottom:11.145288pt;}
.ybd{bottom:11.292182pt;}
.ydd{bottom:11.292477pt;}
.yd8{bottom:11.415541pt;}
.y184{bottom:11.584576pt;}
.y19e{bottom:11.613497pt;}
.y1ae{bottom:11.613555pt;}
.ye{bottom:11.680000pt;}
.y183{bottom:11.779323pt;}
.y7c{bottom:11.855348pt;}
.y72{bottom:11.855384pt;}
.y139{bottom:12.663883pt;}
.y13c{bottom:12.886587pt;}
.ybc{bottom:13.753534pt;}
.ydc{bottom:13.753906pt;}
.y7a{bottom:14.150058pt;}
.y6f{bottom:14.150073pt;}
.y195{bottom:14.204663pt;}
.y79{bottom:14.500476pt;}
.y6e{bottom:14.500510pt;}
.ydb{bottom:14.584544pt;}
.y110{bottom:14.713244pt;}
.yf2{bottom:14.713748pt;}
.y12b{bottom:15.177110pt;}
.y8a{bottom:15.324855pt;}
.y98{bottom:15.324858pt;}
.ya9{bottom:15.324861pt;}
.y106{bottom:15.324864pt;}
.yd3{bottom:15.324889pt;}
.y19{bottom:15.520000pt;}
.y198{bottom:15.890266pt;}
.y1a7{bottom:15.890291pt;}
.y1ac{bottom:15.890329pt;}
.y1a9{bottom:15.890336pt;}
.y7b{bottom:16.221181pt;}
.y71{bottom:16.221198pt;}
.y76{bottom:16.221203pt;}
.y70{bottom:16.221214pt;}
.y19b{bottom:16.576804pt;}
.y1ab{bottom:16.576875pt;}
.y118{bottom:16.670020pt;}
.y135{bottom:16.863740pt;}
.y137{bottom:16.863759pt;}
.y13f{bottom:16.863761pt;}
.y19a{bottom:17.638631pt;}
.y2b{bottom:17.933333pt;}
.y10b{bottom:18.159451pt;}
.yf1{bottom:18.160074pt;}
.y1ee{bottom:18.252188pt;}
.ybb{bottom:18.276597pt;}
.yda{bottom:18.277097pt;}
.yeb{bottom:18.438989pt;}
.yca{bottom:18.439020pt;}
.y32{bottom:20.000000pt;}
.y7{bottom:21.453333pt;}
.y15c{bottom:21.634371pt;}
.y182{bottom:21.676917pt;}
.yc1{bottom:22.091448pt;}
.ye2{bottom:22.092070pt;}
.y181{bottom:22.130875pt;}
.ye1{bottom:22.615943pt;}
.y14d{bottom:23.805005pt;}
.y15b{bottom:23.805006pt;}
.y132{bottom:24.500595pt;}
.y1a8{bottom:24.662875pt;}
.y4b{bottom:25.106667pt;}
.y7e{bottom:25.304572pt;}
.y74{bottom:25.304601pt;}
.y199{bottom:25.755399pt;}
.y7d{bottom:26.069475pt;}
.y73{bottom:26.069484pt;}
.y37{bottom:28.480000pt;}
.y11{bottom:28.626667pt;}
.y18{bottom:29.120000pt;}
.y196{bottom:29.471154pt;}
.y1a5{bottom:29.471212pt;}
.y31{bottom:29.640000pt;}
.y2a{bottom:30.253333pt;}
.y12e{bottom:30.355519pt;}
.y3c{bottom:31.506667pt;}
.y15a{bottom:32.803068pt;}
.y180{bottom:33.033230pt;}
.y17f{bottom:33.520472pt;}
.y6{bottom:34.733333pt;}
.y16b{bottom:35.662577pt;}
.y188{bottom:35.662619pt;}
.yd{bottom:36.000000pt;}
.y34{bottom:36.160000pt;}
.y4a{bottom:37.426667pt;}
.y148{bottom:37.685032pt;}
.y17{bottom:39.680000pt;}
.y16f{bottom:39.685897pt;}
.y18f{bottom:39.685911pt;}
.y173{bottom:39.685924pt;}
.y14c{bottom:41.642714pt;}
.y159{bottom:41.642715pt;}
.y4{bottom:43.040000pt;}
.y30{bottom:43.080000pt;}
.y51{bottom:44.000000pt;}
.y158{bottom:44.003185pt;}
.y17e{bottom:44.424158pt;}
.y3b{bottom:44.786667pt;}
.y17d{bottom:44.878116pt;}
.y18e{bottom:48.285027pt;}
.y12d{bottom:48.587349pt;}
.y13b{bottom:48.587351pt;}
.y29{bottom:50.413333pt;}
.y1f7{bottom:51.520000pt;}
.y131{bottom:52.182534pt;}
.y16{bottom:53.280000pt;}
.y3{bottom:53.760000pt;}
.y16a{bottom:53.834008pt;}
.y187{bottom:53.834051pt;}
.y157{bottom:54.789604pt;}
.y17c{bottom:55.813755pt;}
.y17b{bottom:56.267713pt;}
.y2f{bottom:56.360000pt;}
.y138{bottom:57.400403pt;}
.y13a{bottom:57.654961pt;}
.y49{bottom:57.746667pt;}
.y16e{bottom:57.890613pt;}
.y18d{bottom:57.890627pt;}
.y17a{bottom:57.890633pt;}
.y172{bottom:57.890640pt;}
.y3a{bottom:58.266667pt;}
.y145{bottom:59.543265pt;}
.y156{bottom:59.543268pt;}
.y14b{bottom:59.543271pt;}
.y12a{bottom:59.914675pt;}
.y155{bottom:60.182156pt;}
.y134{bottom:61.601305pt;}
.y136{bottom:61.601323pt;}
.y13e{bottom:61.601325pt;}
.y28{bottom:62.760000pt;}
.y169{bottom:63.309140pt;}
.y15{bottom:63.840000pt;}
.y147{bottom:63.978791pt;}
.y2{bottom:64.480000pt;}
.y179{bottom:64.834901pt;}
.y16d{bottom:65.613722pt;}
.y154{bottom:66.371999pt;}
.y178{bottom:67.657337pt;}
.y130{bottom:69.236854pt;}
.y2d{bottom:69.786667pt;}
.y48{bottom:69.906667pt;}
.y39{bottom:71.706667pt;}
.y186{bottom:72.038767pt;}
.y168{bottom:72.881461pt;}
.y12c{bottom:75.123109pt;}
.y18c{bottom:76.062059pt;}
.y171{bottom:76.062073pt;}
.y14a{bottom:76.423955pt;}
.y153{bottom:76.423956pt;}
.y170{bottom:76.906095pt;}
.y18b{bottom:76.906098pt;}
.y16c{bottom:76.906113pt;}
.y14{bottom:77.280000pt;}
.y152{bottom:77.573426pt;}
.y177{bottom:79.046934pt;}
.y167{bottom:82.324641pt;}
.y27{bottom:83.080000pt;}
.y166{bottom:84.563931pt;}
.y144{bottom:85.837024pt;}
.y18a{bottom:88.587237pt;}
.y151{bottom:88.773543pt;}
.y1cb{bottom:89.600000pt;}
.y47{bottom:90.226667pt;}
.y146{bottom:90.305292pt;}
.y176{bottom:90.437862pt;}
.y13{bottom:90.720000pt;}
.y149{bottom:94.261664pt;}
.y150{bottom:94.261665pt;}
.ya0{bottom:99.392000pt;}
.y14f{bottom:99.942240pt;}
.y175{bottom:101.827459pt;}
.y10a{bottom:102.613333pt;}
.y165{bottom:102.735364pt;}
.y26{bottom:103.240000pt;}
.y1ca{bottom:104.512000pt;}
.y189{bottom:106.760000pt;}
.y174{bottom:107.440316pt;}
.y46{bottom:110.386667pt;}
.y14e{bottom:111.142358pt;}
.y111{bottom:111.872000pt;}
.y9f{bottom:114.272000pt;}
.y25{bottom:123.560000pt;}
.y1dd{bottom:126.432000pt;}
.y233{bottom:126.752000pt;}
.y1c9{bottom:127.392000pt;}
.y4c{bottom:128.786667pt;}
.y9e{bottom:129.472000pt;}
.y45{bottom:130.706667pt;}
.y3d{bottom:133.480000pt;}
.y109{bottom:134.106667pt;}
.y24{bottom:135.880000pt;}
.y232{bottom:138.906667pt;}
.y1c8{bottom:142.266667pt;}
.y44{bottom:143.026667pt;}
.y1dc{bottom:147.546667pt;}
.y23{bottom:148.040000pt;}
.y231{bottom:151.386667pt;}
.y9d{bottom:152.186667pt;}
.y102{bottom:154.613315pt;}
.y43{bottom:155.186667pt;}
.y1c7{bottom:157.146667pt;}
.y230{bottom:163.546667pt;}
.y108{bottom:163.866667pt;}
.y21{bottom:168.346667pt;}
.y1db{bottom:168.826667pt;}
.y1c6{bottom:172.026667pt;}
.y9c{bottom:175.066667pt;}
.y42{bottom:175.506667pt;}
.y22f{bottom:175.706667pt;}
.y163{bottom:176.346667pt;}
.y20{bottom:180.666667pt;}
.y41{bottom:187.826667pt;}
.y22e{bottom:188.026667pt;}
.y1da{bottom:188.826667pt;}
.y1d9{bottom:190.106667pt;}
.y162{bottom:191.226667pt;}
.y101{bottom:192.506667pt;}
.y1f{bottom:192.826667pt;}
.y1c5{bottom:194.906667pt;}
.y9b{bottom:197.946667pt;}
.y40{bottom:200.026667pt;}
.y22d{bottom:200.346667pt;}
.y1e{bottom:205.146667pt;}
.y1c4{bottom:209.786667pt;}
.y3f{bottom:212.346667pt;}
.y22c{bottom:212.666667pt;}
.y161{bottom:214.106667pt;}
.y100{bottom:215.386667pt;}
.y1d{bottom:217.466667pt;}
.y91{bottom:218.479982pt;}
.y3e{bottom:224.666667pt;}
.y22b{bottom:224.826667pt;}
.y9a{bottom:227.706667pt;}
.y160{bottom:229.146667pt;}
.y1c{bottom:229.626667pt;}
.y22a{bottom:237.146667pt;}
.yff{bottom:238.266667pt;}
.y1c3{bottom:247.546667pt;}
.y229{bottom:249.306667pt;}
.y143{bottom:249.346649pt;}
.y90{bottom:256.346667pt;}
.yfe{bottom:261.146667pt;}
.y228{bottom:261.786667pt;}
.y1c2{bottom:262.586667pt;}
.y8f{bottom:271.226667pt;}
.y227{bottom:273.786667pt;}
.y1c1{bottom:277.466667pt;}
.y38{bottom:279.720000pt;}
.yfc{bottom:281.680000pt;}
.y8e{bottom:286.106667pt;}
.yfd{bottom:290.906667pt;}
.y1c0{bottom:292.346667pt;}
.y226{bottom:298.426667pt;}
.y8d{bottom:301.146667pt;}
.y1bf{bottom:307.226667pt;}
.y15f{bottom:309.306667pt;}
.y225{bottom:310.746667pt;}
.yfb{bottom:321.306667pt;}
.y85{bottom:321.546630pt;}
.y1be{bottom:322.106667pt;}
.y224{bottom:322.906667pt;}
.y8c{bottom:330.786667pt;}
.y223{bottom:335.426667pt;}
.yfa{bottom:336.066667pt;}
.y1bd{bottom:337.026667pt;}
.y222{bottom:347.426667pt;}
.yf9{bottom:351.106667pt;}
.y1bc{bottom:351.906667pt;}
.y84{bottom:359.426667pt;}
.y221{bottom:359.746667pt;}
.yf8{bottom:365.826667pt;}
.y1bb{bottom:366.786667pt;}
.y220{bottom:372.226667pt;}
.y83{bottom:374.306667pt;}
.y35{bottom:376.546667pt;}
.y1ba{bottom:381.666667pt;}
.y21f{bottom:384.226667pt;}
.yf6{bottom:386.346667pt;}
.y142{bottom:386.626667pt;}
.y82{bottom:389.186667pt;}
.yf7{bottom:395.586667pt;}
.y21e{bottom:396.546667pt;}
.y141{bottom:401.666667pt;}
.y81{bottom:404.226667pt;}
.y21d{bottom:408.866667pt;}
.y1b9{bottom:410.466667pt;}
.y21c{bottom:421.186667pt;}
.y129{bottom:422.013297pt;}
.y78{bottom:424.546667pt;}
.y33{bottom:425.346667pt;}
.yf5{bottom:425.986667pt;}
.y1b8{bottom:431.906667pt;}
.y21b{bottom:433.346667pt;}
.y80{bottom:440.546667pt;}
.yf4{bottom:440.706667pt;}
.y21a{bottom:445.826667pt;}
.y1d8{bottom:450.306667pt;}
.y1b7{bottom:453.346667pt;}
.y219{bottom:457.826667pt;}
.yef{bottom:461.213333pt;}
.y140{bottom:465.986667pt;}
.y218{bottom:470.146667pt;}
.y1d7{bottom:470.306667pt;}
.yf3{bottom:470.466667pt;}
.y1d6{bottom:471.586667pt;}
.y6d{bottom:472.879964pt;}
.y217{bottom:482.466667pt;}
.y77{bottom:488.866667pt;}
.y1d5{bottom:491.266667pt;}
.y216{bottom:494.626667pt;}
.y1b6{bottom:497.026667pt;}
.yee{bottom:500.706667pt;}
.y22{bottom:502.453333pt;}
.y1b{bottom:502.466667pt;}
.y215{bottom:506.946667pt;}
.y128{bottom:518.306667pt;}
.y214{bottom:519.426667pt;}
.y1b5{bottom:520.066667pt;}
.ye6{bottom:521.213333pt;}
.y6c{bottom:523.586667pt;}
.yed{bottom:530.466667pt;}
.y213{bottom:531.426667pt;}
.y127{bottom:533.346667pt;}
.y1b4{bottom:534.946667pt;}
.y6b{bottom:538.466667pt;}
.y2e{bottom:539.733333pt;}
.y2c{bottom:539.746667pt;}
.y212{bottom:543.746667pt;}
.y126{bottom:548.066667pt;}
.y1b3{bottom:549.826667pt;}
.y6a{bottom:553.346667pt;}
.y211{bottom:556.253333pt;}
.ye5{bottom:560.733333pt;}
.y125{bottom:562.973333pt;}
.y210{bottom:568.253333pt;}
.y1b2{bottom:572.733333pt;}
.y69{bottom:577.213333pt;}
.y20f{bottom:580.573333pt;}
.yd7{bottom:581.213297pt;}
.y124{bottom:585.853333pt;}
.y1b1{bottom:587.613333pt;}
.y20e{bottom:593.053333pt;}
.ye4{bottom:594.493333pt;}
.y123{bottom:600.733333pt;}
.y1b0{bottom:602.493333pt;}
.y20d{bottom:605.053333pt;}
.y68{bottom:609.533333pt;}
.y122{bottom:615.613333pt;}
.y20c{bottom:617.533333pt;}
.yd6{bottom:625.533333pt;}
.y20b{bottom:629.693333pt;}
.y12{bottom:634.653333pt;}
.y121{bottom:638.333333pt;}
.yd5{bottom:640.413333pt;}
.y20a{bottom:642.013333pt;}
.y1a4{bottom:651.146594pt;}
.y120{bottom:651.773333pt;}
.y67{bottom:653.373333pt;}
.y209{bottom:654.173333pt;}
.ycf{bottom:660.879928pt;}
.y208{bottom:666.493333pt;}
.y1af{bottom:667.133333pt;}
.y66{bottom:668.253333pt;}
.yd4{bottom:670.173333pt;}
.y11f{bottom:670.493333pt;}
.y207{bottom:678.653333pt;}
.y65{bottom:683.133333pt;}
.y206{bottom:690.973333pt;}
.y64{bottom:698.013333pt;}
.yce{bottom:698.813333pt;}
.y1a3{bottom:701.053333pt;}
.y205{bottom:703.293333pt;}
.y63{bottom:712.893333pt;}
.y204{bottom:715.453333pt;}
.yc5{bottom:719.279928pt;}
.y1a2{bottom:724.253333pt;}
.y62{bottom:727.773333pt;}
.ycd{bottom:728.573333pt;}
.y203{bottom:735.933333pt;}
.y1d4{bottom:736.093333pt;}
.yf{bottom:750.506667pt;}
.y61{bottom:750.653333pt;}
.y1a1{bottom:752.253333pt;}
.y1d3{bottom:752.573333pt;}
.yc4{bottom:758.813333pt;}
.y202{bottom:760.573333pt;}
.y1cd{bottom:762.173333pt;}
.y60{bottom:765.533333pt;}
.y1a0{bottom:767.453333pt;}
.y1d2{bottom:774.013333pt;}
.yb9{bottom:779.146594pt;}
.y5f{bottom:780.413333pt;}
.y1cc{bottom:780.893333pt;}
.y1e1{bottom:781.365722pt;}
.y194{bottom:787.746667pt;}
.y1d1{bottom:788.453333pt;}
.y1d0{bottom:789.093333pt;}
.yc3{bottom:792.453333pt;}
.y5e{bottom:795.333333pt;}
.yc{bottom:799.493333pt;}
.y19f{bottom:803.813333pt;}
.y201{bottom:804.293333pt;}
.y5d{bottom:810.213333pt;}
.y1cf{bottom:812.773333pt;}
.y200{bottom:819.173333pt;}
.yb8{bottom:823.653333pt;}
.y5c{bottom:825.093333pt;}
.y1ce{bottom:831.653333pt;}
.y1ff{bottom:834.053333pt;}
.y1ed{bottom:834.613220pt;}
.y193{bottom:837.733333pt;}
.yb7{bottom:838.533333pt;}
.y5b{bottom:839.973333pt;}
.y1fe{bottom:848.933333pt;}
.y1ef{bottom:850.110295pt;}
.y192{bottom:852.613333pt;}
.y5a{bottom:854.853333pt;}
.yb0{bottom:858.813261pt;}
.y11e{bottom:862.853333pt;}
.yb6{bottom:868.133333pt;}
.y59{bottom:869.733333pt;}
.y1e7{bottom:869.885019pt;}
.y191{bottom:875.813333pt;}
.y1e3{bottom:877.529690pt;}
.y11d{bottom:877.733333pt;}
.y1e5{bottom:878.334417pt;}
.y1e0{bottom:879.139151pt;}
.yb{bottom:879.493333pt;}
.y1de{bottom:879.541438pt;}
.y58{bottom:884.773333pt;}
.ya{bottom:891.013333pt;}
.y11c{bottom:892.773333pt;}
.y1eb{bottom:893.502286pt;}
.yaf{bottom:896.293333pt;}
.y57{bottom:899.653333pt;}
.y164{bottom:902.813261pt;}
.y9{bottom:906.053333pt;}
.yae{bottom:911.013333pt;}
.y11b{bottom:916.613333pt;}
.y8{bottom:919.813333pt;}
.y1fd{bottom:921.413333pt;}
.y56{bottom:922.533333pt;}
.yad{bottom:925.893333pt;}
.y1e9{bottom:933.858938pt;}
.y1fc{bottom:936.293333pt;}
.y55{bottom:937.413333pt;}
.yac{bottom:940.933333pt;}
.y114{bottom:944.546594pt;}
.y1fb{bottom:951.173333pt;}
.y54{bottom:952.293333pt;}
.y5{bottom:954.680000pt;}
.y11a{bottom:955.333333pt;}
.y190{bottom:960.133333pt;}
.ya3{bottom:961.213261pt;}
.y1fa{bottom:966.053333pt;}
.y1f1{bottom:966.338202pt;}
.y53{bottom:967.173333pt;}
.yab{bottom:970.533333pt;}
.y1f9{bottom:980.933333pt;}
.y113{bottom:984.293333pt;}
.y52{bottom:995.973333pt;}
.y112{bottom:999.173333pt;}
.ya2{bottom:999.333333pt;}
.y1f8{bottom:1009.573333pt;}
.ya1{bottom:1014.053333pt;}
.y50{bottom:1035.840000pt;}
.y1f6{bottom:1037.440000pt;}
.y4e{bottom:1055.040000pt;}
.y1f4{bottom:1056.640000pt;}
.y4d{bottom:1093.920000pt;}
.y1f3{bottom:1095.360000pt;}
.y1{bottom:1103.360000pt;}
.h92{height:16.094067pt;}
.h8f{height:17.301123pt;}
.h41{height:20.330438pt;}
.h4f{height:20.347425pt;}
.h74{height:20.370116pt;}
.h70{height:20.402683pt;}
.h83{height:20.410123pt;}
.h89{height:20.447880pt;}
.h46{height:20.562217pt;}
.h61{height:20.589520pt;}
.h52{height:20.592487pt;}
.h55{height:20.599020pt;}
.h58{height:20.600094pt;}
.h5a{height:20.602306pt;}
.h98{height:20.662856pt;}
.h7c{height:20.678261pt;}
.h21{height:20.803458pt;}
.h25{height:20.803459pt;}
.h36{height:21.343352pt;}
.h32{height:21.366877pt;}
.h48{height:21.394335pt;}
.h5c{height:21.440601pt;}
.h2b{height:21.466551pt;}
.h94{height:22.212571pt;}
.h7{height:25.365000pt;}
.h38{height:25.599932pt;}
.h85{height:25.605218pt;}
.h6d{height:25.624734pt;}
.h2d{height:26.399126pt;}
.h27{height:26.399144pt;}
.h34{height:26.399180pt;}
.h81{height:27.130462pt;}
.h6a{height:27.151141pt;}
.h5f{height:27.342095pt;}
.h57{height:27.343033pt;}
.h78{height:27.562168pt;}
.h5e{height:27.998845pt;}
.h51{height:27.999805pt;}
.h43{height:27.999878pt;}
.h9a{height:28.160000pt;}
.h18{height:28.320000pt;}
.h3d{height:32.798849pt;}
.h4a{height:32.799773pt;}
.h82{height:33.386723pt;}
.h96{height:34.093708pt;}
.h75{height:35.175966pt;}
.h71{height:35.257873pt;}
.h47{height:35.524794pt;}
.h62{height:35.571964pt;}
.h53{height:35.577090pt;}
.h56{height:35.588378pt;}
.h59{height:35.590233pt;}
.h5b{height:35.594055pt;}
.h7d{height:35.708084pt;}
.h22{height:35.959078pt;}
.h26{height:35.959081pt;}
.h12{height:36.626667pt;}
.h66{height:36.723920pt;}
.h37{height:36.805354pt;}
.h33{height:36.845922pt;}
.h49{height:36.893271pt;}
.h5d{height:36.904366pt;}
.h2c{height:36.949033pt;}
.h3c{height:37.582545pt;}
.h7f{height:38.399983pt;}
.h88{height:38.400055pt;}
.h3{height:38.715000pt;}
.h23{height:39.199663pt;}
.h1b{height:39.199699pt;}
.h8d{height:41.866491pt;}
.h90{height:42.539482pt;}
.h3f{height:43.848864pt;}
.h4d{height:43.850148pt;}
.h76{height:44.172443pt;}
.h86{height:44.258990pt;}
.h6e{height:44.282097pt;}
.h4{height:44.480000pt;}
.h60{height:44.582528pt;}
.h44{height:44.584057pt;}
.h5{height:44.722500pt;}
.h7b{height:44.919735pt;}
.h1f{height:45.180683pt;}
.h93{height:45.377088pt;}
.h91{height:45.433040pt;}
.h31{height:46.359049pt;}
.h2a{height:46.478462pt;}
.h6c{height:46.739473pt;}
.h84{height:46.767737pt;}
.h73{height:46.803696pt;}
.h8a{height:46.854254pt;}
.h8b{height:46.865474pt;}
.h6b{height:46.919882pt;}
.h7a{height:47.336294pt;}
.h3b{height:47.442723pt;}
.h79{height:47.595503pt;}
.h1e{height:47.669023pt;}
.h24{height:47.669026pt;}
.h14{height:48.786667pt;}
.h35{height:48.790886pt;}
.h30{height:48.844664pt;}
.ha{height:48.978667pt;}
.h65{height:49.537317pt;}
.h3a{height:49.821166pt;}
.h8e{height:49.842500pt;}
.h2{height:50.062500pt;}
.h7e{height:52.134375pt;}
.h67{height:52.462029pt;}
.h8c{height:52.622500pt;}
.h95{height:54.611665pt;}
.hb{height:55.402500pt;}
.h97{height:58.330580pt;}
.h99{height:58.402416pt;}
.h6{height:61.410000pt;}
.h42{height:62.101120pt;}
.h50{height:62.153007pt;}
.h40{height:65.774934pt;}
.h4e{height:65.776859pt;}
.h87{height:66.273165pt;}
.h6f{height:66.365347pt;}
.h45{height:66.817337pt;}
.h63{height:69.582518pt;}
.h4b{height:70.229648pt;}
.h80{height:70.791035pt;}
.h69{height:70.853871pt;}
.h19{height:72.090000pt;}
.h1c{height:72.265258pt;}
.h2e{height:74.319731pt;}
.h28{height:74.437186pt;}
.h39{height:75.981491pt;}
.h3e{height:76.850454pt;}
.h4c{height:76.852703pt;}
.h8{height:76.946667pt;}
.h13{height:77.106667pt;}
.h54{height:78.109279pt;}
.h1d{height:79.125056pt;}
.h2f{height:81.367039pt;}
.h29{height:81.489388pt;}
.h68{height:84.796454pt;}
.h9{height:88.777500pt;}
.h64{height:91.128278pt;}
.h20{height:92.635682pt;}
.h10{height:94.272000pt;}
.h11{height:94.280000pt;}
.h15{height:96.180000pt;}
.hc{height:115.196000pt;}
.hd{height:115.200000pt;}
.h77{height:122.400625pt;}
.h72{height:125.597127pt;}
.h17{height:145.426667pt;}
.h16{height:242.426667pt;}
.he{height:247.386667pt;}
.hf{height:247.400000pt;}
.h1a{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:16.123676pt;}
.w22{width:17.736043pt;}
.w20{width:18.542227pt;}
.w1f{width:19.751503pt;}
.w24{width:20.686024pt;}
.w25{width:22.754622pt;}
.w23{width:25.340375pt;}
.w8{width:42.720000pt;}
.we{width:68.802434pt;}
.wb{width:75.198605pt;}
.wd{width:76.797485pt;}
.w17{width:80.796951pt;}
.w11{width:83.997569pt;}
.w19{width:86.397169pt;}
.w1b{width:102.403980pt;}
.w14{width:107.203014pt;}
.w10{width:108.000820pt;}
.w15{width:115.200184pt;}
.w18{width:115.997726pt;}
.w13{width:127.996527pt;}
.w16{width:135.196647pt;}
.wa{width:144.003383pt;}
.wc{width:144.798673pt;}
.wf{width:147.195373pt;}
.w4{width:158.906667pt;}
.w6{width:158.920000pt;}
.w1e{width:169.743808pt;}
.w1d{width:175.995963pt;}
.w1a{width:191.995067pt;}
.w12{width:191.995099pt;}
.w1c{width:247.198421pt;}
.w2{width:471.600000pt;}
.w5{width:517.880000pt;}
.w7{width:643.840000pt;}
.w3{width:676.800000pt;}
.w9{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x1{left:-94.592000pt;}
.x12{left:-66.240000pt;}
.x0{left:0.000000pt;}
.x28{left:1.321124pt;}
.x25{left:2.674446pt;}
.x2e{left:5.920627pt;}
.xe{left:7.186667pt;}
.x22{left:8.313291pt;}
.x4{left:9.586667pt;}
.x3a{left:11.315334pt;}
.x10{left:13.440000pt;}
.x51{left:15.638380pt;}
.x4b{left:16.600236pt;}
.x55{left:17.682728pt;}
.xf{left:18.586667pt;}
.xa{left:20.640000pt;}
.x48{left:21.595318pt;}
.x16{left:22.560000pt;}
.x3c{left:24.087727pt;}
.x50{left:26.858120pt;}
.x4a{left:27.968661pt;}
.x27{left:29.838040pt;}
.x54{left:30.831519pt;}
.x2b{left:32.060583pt;}
.x3d{left:33.132646pt;}
.x31{left:34.192267pt;}
.x36{left:35.778514pt;}
.x39{left:37.407400pt;}
.x5e{left:38.697109pt;}
.x53{left:40.027107pt;}
.x6a{left:41.037764pt;}
.x5b{left:43.083143pt;}
.x5c{left:44.342477pt;}
.x60{left:45.508893pt;}
.x17{left:47.200000pt;}
.x9{left:49.120000pt;}
.x33{left:50.129418pt;}
.x2c{left:51.580423pt;}
.x13{left:53.600000pt;}
.x5f{left:55.304738pt;}
.x2{left:56.640000pt;}
.x49{left:59.908428pt;}
.x46{left:60.924734pt;}
.x3e{left:61.823383pt;}
.x2d{left:63.646518pt;}
.x34{left:64.987473pt;}
.x72{left:66.467524pt;}
.xc{left:68.832000pt;}
.x59{left:70.178601pt;}
.x5d{left:71.783493pt;}
.x5a{left:72.697266pt;}
.x24{left:75.818553pt;}
.x4d{left:79.980527pt;}
.x30{left:81.483608pt;}
.x23{left:83.873293pt;}
.x18{left:85.292000pt;}
.x38{left:87.990300pt;}
.x19{left:92.032000pt;}
.x58{left:94.885038pt;}
.x6d{left:97.506492pt;}
.x69{left:102.336799pt;}
.x4e{left:104.194094pt;}
.x7{left:106.432000pt;}
.x41{left:107.447942pt;}
.x26{left:110.875080pt;}
.x2a{left:113.453969pt;}
.x62{left:118.572000pt;}
.x2f{left:122.432000pt;}
.x63{left:125.312000pt;}
.x1e{left:126.572000pt;}
.x64{left:128.652000pt;}
.x1f{left:133.312000pt;}
.x65{left:135.386667pt;}
.x43{left:137.931157pt;}
.x61{left:149.626667pt;}
.x57{left:152.826667pt;}
.x6f{left:156.314687pt;}
.x68{left:158.810848pt;}
.x44{left:161.570060pt;}
.x67{left:163.564138pt;}
.x6b{left:166.033734pt;}
.x42{left:168.872076pt;}
.x96{left:189.894524pt;}
.xb{left:192.066667pt;}
.x14{left:194.946667pt;}
.x3{left:196.200000pt;}
.x93{left:198.359457pt;}
.x29{left:203.226667pt;}
.xd{left:208.040000pt;}
.x1a{left:210.246667pt;}
.x11{left:214.626667pt;}
.x1b{left:216.986667pt;}
.x6c{left:220.656893pt;}
.x6e{left:227.003484pt;}
.x66{left:233.004864pt;}
.x20{left:239.726667pt;}
.x5{left:242.946667pt;}
.x21{left:246.466667pt;}
.x6{left:249.346667pt;}
.x95{left:257.613963pt;}
.x1c{left:258.766667pt;}
.x1d{left:265.506667pt;}
.x8c{left:275.266667pt;}
.x8f{left:281.666667pt;}
.x94{left:297.923151pt;}
.x92{left:347.503453pt;}
.x83{left:382.653333pt;}
.x56{left:385.373333pt;}
.x91{left:396.893333pt;}
.x8{left:406.333333pt;}
.x32{left:411.133333pt;}
.x9b{left:415.773333pt;}
.x74{left:439.933333pt;}
.x85{left:445.373333pt;}
.x9a{left:451.839964pt;}
.x98{left:461.148699pt;}
.x37{left:479.933333pt;}
.x35{left:487.933333pt;}
.x52{left:491.933333pt;}
.x40{left:495.133333pt;}
.x90{left:499.453333pt;}
.x8d{left:505.853333pt;}
.x8e{left:512.253333pt;}
.x3f{left:519.133333pt;}
.x4c{left:526.373333pt;}
.x47{left:539.173333pt;}
.x4f{left:546.373333pt;}
.x77{left:549.553333pt;}
.x78{left:556.293333pt;}
.x3b{left:558.373333pt;}
.x8a{left:578.853333pt;}
.x73{left:580.933333pt;}
.x79{left:583.953333pt;}
.x71{left:587.173333pt;}
.x7a{left:597.413333pt;}
.x45{left:603.173333pt;}
.x86{left:637.093333pt;}
.x87{left:644.133333pt;}
.x97{left:655.597238pt;}
.x70{left:658.373333pt;}
.x7f{left:663.953333pt;}
.x80{left:677.440000pt;}
.x99{left:679.903317pt;}
.x81{left:681.420000pt;}
.x82{left:694.880000pt;}
.x15{left:697.440000pt;}
.x7b{left:699.980000pt;}
.x84{left:705.760000pt;}
.x7c{left:713.440000pt;}
.x7d{left:716.780000pt;}
.x88{left:718.400000pt;}
.x89{left:725.440000pt;}
.x7e{left:730.240000pt;}
.x75{left:733.420000pt;}
.x76{left:740.160000pt;}
.x8b{left:749.280000pt;}
}




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