
    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_70aff7a0aaf8b7eec5f0bf11.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cb49a1b527d564c339b377c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3efad7c589bf56582a9d24ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_66ba35d0303d88c13eb569bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.765625;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_94f7a22445d86873bd59d9be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_3de7fa1c93816368af4f2d1e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_d453b6aca1c621a8ce39d264.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_56ae9b936a12d8168a1a4cf3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.677246;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_e1e2413b540fc50c52961a04.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.961914;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_6ea3d6f188a86653b8bad7e1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.055176;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;}
.mc{transform:matrix(0.000000,-0.249569,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249569,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249569,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249572,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249572,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249572,0.250000,0.000000,0,0);}
.m30{transform:matrix(0.000000,-0.249582,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249582,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249582,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249619,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249619,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249619,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249621,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249621,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249621,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.249644,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249644,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249644,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.249646,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249646,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249646,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.249670,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249670,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249670,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.249674,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249674,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249674,0.250000,0.000000,0,0);}
.m26{transform:matrix(0.000000,-0.249674,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249674,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249674,0.250000,0.000000,0,0);}
.m2a{transform:matrix(0.000000,-0.249679,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249679,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249679,0.250000,0.000000,0,0);}
.m22{transform:matrix(0.000000,-0.249692,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249692,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249692,0.250000,0.000000,0,0);}
.m23{transform:matrix(0.000000,-0.249695,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249695,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249695,0.250000,0.000000,0,0);}
.m2c{transform:matrix(0.000000,-0.249703,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249703,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249703,0.250000,0.000000,0,0);}
.m1c{transform:matrix(0.000000,-0.249724,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249724,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249724,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.250591,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250591,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250591,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249646,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249701,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249727,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);}
.m1a{transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);}
.v11{vertical-align:-109.449968px;}
.va{vertical-align:-41.023232px;}
.v14{vertical-align:-38.870622px;}
.vd{vertical-align:-36.013296px;}
.v10{vertical-align:-31.002795px;}
.vb{vertical-align:-28.098749px;}
.v8{vertical-align:-25.898820px;}
.v3{vertical-align:-22.315622px;}
.v6{vertical-align:-20.146508px;}
.v13{vertical-align:-17.971381px;}
.v15{vertical-align:-15.119821px;}
.v7{vertical-align:-9.393048px;}
.vc{vertical-align:-4.306611px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.134644px;}
.v16{vertical-align:15.119821px;}
.v12{vertical-align:20.182493px;}
.v4{vertical-align:22.346350px;}
.v5{vertical-align:25.202592px;}
.vf{vertical-align:26.635184px;}
.v2{vertical-align:28.050916px;}
.v1{vertical-align:31.657657px;}
.ve{vertical-align:36.013296px;}
.v17{vertical-align:58.307745px;}
.ls17{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.013780px;}
.ls30{letter-spacing:0.030892px;}
.ls1f{letter-spacing:0.042544px;}
.ls0{letter-spacing:0.044409px;}
.ls1c{letter-spacing:0.044560px;}
.ls45{letter-spacing:0.051807px;}
.ls42{letter-spacing:0.051815px;}
.ls5c{letter-spacing:0.067822px;}
.ls27{letter-spacing:0.071585px;}
.ls44{letter-spacing:0.072297px;}
.ls2a{letter-spacing:0.087232px;}
.ls36{letter-spacing:0.093862px;}
.ls22{letter-spacing:0.114838px;}
.ls12{letter-spacing:0.131428px;}
.ls10{letter-spacing:0.139145px;}
.lse{letter-spacing:0.139605px;}
.ls34{letter-spacing:0.140207px;}
.lsf{letter-spacing:0.152008px;}
.ls33{letter-spacing:0.154186px;}
.ls14{letter-spacing:0.156473px;}
.ls15{letter-spacing:0.161425px;}
.ls58{letter-spacing:0.176001px;}
.ls4f{letter-spacing:0.181317px;}
.ls11{letter-spacing:0.184433px;}
.ls59{letter-spacing:0.189339px;}
.ls5a{letter-spacing:0.193105px;}
.ls26{letter-spacing:0.202053px;}
.ls6b{letter-spacing:0.221315px;}
.ls66{letter-spacing:0.246759px;}
.ls3a{letter-spacing:0.253635px;}
.ls2e{letter-spacing:0.267041px;}
.ls6a{letter-spacing:0.268221px;}
.lsb{letter-spacing:0.288928px;}
.ls4{letter-spacing:0.292299px;}
.ls8{letter-spacing:0.294884px;}
.ls7{letter-spacing:0.300805px;}
.ls2{letter-spacing:0.305461px;}
.ls2d{letter-spacing:0.309469px;}
.ls5{letter-spacing:0.310686px;}
.ls1{letter-spacing:0.317490px;}
.ls6{letter-spacing:0.319657px;}
.lsa{letter-spacing:0.323545px;}
.ls3e{letter-spacing:0.330574px;}
.ls3{letter-spacing:0.332896px;}
.ls25{letter-spacing:0.334326px;}
.ls9{letter-spacing:0.338549px;}
.ls4d{letter-spacing:0.344870px;}
.lsc{letter-spacing:0.350343px;}
.ls2b{letter-spacing:0.361321px;}
.ls37{letter-spacing:0.371655px;}
.ls43{letter-spacing:0.392471px;}
.ls1d{letter-spacing:0.399726px;}
.ls20{letter-spacing:0.401742px;}
.ls46{letter-spacing:0.413709px;}
.ls31{letter-spacing:0.417661px;}
.ls16{letter-spacing:14.522947px;}
.ls41{letter-spacing:18.019448px;}
.lsd{letter-spacing:19.764159px;}
.ls5f{letter-spacing:20.731966px;}
.ls57{letter-spacing:21.764278px;}
.ls28{letter-spacing:21.929140px;}
.ls56{letter-spacing:23.773225px;}
.ls6c{letter-spacing:23.821127px;}
.ls5e{letter-spacing:24.544442px;}
.ls3f{letter-spacing:24.927484px;}
.ls3b{letter-spacing:24.974658px;}
.ls65{letter-spacing:25.246016px;}
.ls3d{letter-spacing:28.103013px;}
.ls13{letter-spacing:28.229080px;}
.ls54{letter-spacing:28.484929px;}
.ls47{letter-spacing:28.858881px;}
.ls1e{letter-spacing:28.866598px;}
.ls32{letter-spacing:29.567254px;}
.ls2c{letter-spacing:29.572293px;}
.ls21{letter-spacing:29.583251px;}
.ls38{letter-spacing:29.606759px;}
.ls69{letter-spacing:34.040465px;}
.ls4c{letter-spacing:34.589379px;}
.ls5b{letter-spacing:34.640718px;}
.ls4e{letter-spacing:34.640757px;}
.ls40{letter-spacing:41.326086px;}
.ls3c{letter-spacing:41.350834px;}
.ls64{letter-spacing:42.595670px;}
.ls39{letter-spacing:42.642086px;}
.ls63{letter-spacing:42.642122px;}
.ls5d{letter-spacing:43.273405px;}
.ls48{letter-spacing:60.481338px;}
.ls2f{letter-spacing:70.014787px;}
.ls35{letter-spacing:70.066009px;}
.ls29{letter-spacing:70.066087px;}
.ls67{letter-spacing:70.066126px;}
.ls68{letter-spacing:73.535055px;}
.ls61{letter-spacing:74.670539px;}
.ls60{letter-spacing:74.676204px;}
.ls55{letter-spacing:74.980595px;}
.ls19{letter-spacing:79.553627px;}
.ls1a{letter-spacing:79.579281px;}
.ls1b{letter-spacing:79.594752px;}
.ls51{letter-spacing:84.229327px;}
.ls18{letter-spacing:84.290817px;}
.ls4b{letter-spacing:84.290841px;}
.ls4a{letter-spacing:88.535939px;}
.ls52{letter-spacing:88.597475px;}
.ls53{letter-spacing:93.779674px;}
.ls50{letter-spacing:96.237417px;}
.ls49{letter-spacing:96.293009px;}
.ls23{letter-spacing:98.430470px;}
.ls62{letter-spacing:101.296017px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws60{word-spacing:-75.914771px;}
.ws42{word-spacing:-69.357715px;}
.ws3f{word-spacing:-64.219857px;}
.ws10{word-spacing:-54.786583px;}
.wsf{word-spacing:-54.125618px;}
.wsd{word-spacing:-53.391214px;}
.wsa{word-spacing:-53.309183px;}
.wsb{word-spacing:-52.583369px;}
.ws2{word-spacing:-50.380155px;}
.ws3{word-spacing:-49.645750px;}
.wse{word-spacing:-48.959815px;}
.ws5{word-spacing:-48.250382px;}
.ws4{word-spacing:-47.943783px;}
.ws12{word-spacing:-46.669036px;}
.ws21{word-spacing:-40.885340px;}
.wsc{word-spacing:-34.457796px;}
.ws8{word-spacing:-33.562290px;}
.ws7{word-spacing:-33.470775px;}
.ws67{word-spacing:-33.357714px;}
.ws6{word-spacing:-33.042427px;}
.ws9{word-spacing:-32.827885px;}
.ws14{word-spacing:-29.118214px;}
.ws2a{word-spacing:-28.475926px;}
.ws1a{word-spacing:-26.326028px;}
.ws49{word-spacing:-23.757099px;}
.ws41{word-spacing:-23.334518px;}
.ws1d{word-spacing:-21.740187px;}
.ws25{word-spacing:-21.654550px;}
.ws0{word-spacing:-21.478998px;}
.ws5d{word-spacing:-20.960997px;}
.ws43{word-spacing:-20.343007px;}
.ws30{word-spacing:-20.037076px;}
.ws34{word-spacing:-19.603707px;}
.ws6b{word-spacing:-18.532830px;}
.ws3b{word-spacing:-18.388151px;}
.ws38{word-spacing:-18.084670px;}
.ws27{word-spacing:-17.999303px;}
.ws23{word-spacing:-17.652935px;}
.ws1b{word-spacing:-17.470765px;}
.ws5b{word-spacing:-17.334803px;}
.ws1f{word-spacing:-17.324947px;}
.ws5f{word-spacing:-17.142777px;}
.ws5c{word-spacing:-17.088044px;}
.ws2f{word-spacing:-16.334448px;}
.ws4b{word-spacing:-16.156901px;}
.ws52{word-spacing:-15.027807px;}
.ws1{word-spacing:-14.319443px;}
.ws61{word-spacing:-14.285648px;}
.ws44{word-spacing:-13.561869px;}
.ws29{word-spacing:-13.017766px;}
.ws39{word-spacing:-12.297298px;}
.ws28{word-spacing:-12.239706px;}
.ws24{word-spacing:-12.004028px;}
.ws1c{word-spacing:-11.880267px;}
.ws20{word-spacing:-11.781013px;}
.ws4d{word-spacing:-11.721661px;}
.ws59{word-spacing:-5.037110px;}
.ws64{word-spacing:-2.952010px;}
.ws63{word-spacing:-2.656809px;}
.ws50{word-spacing:-2.566075px;}
.ws16{word-spacing:-2.522878px;}
.ws65{word-spacing:-2.066407px;}
.ws4a{word-spacing:-1.689131px;}
.ws6d{word-spacing:-1.615677px;}
.ws69{word-spacing:-1.476005px;}
.ws17{word-spacing:-1.471679px;}
.ws4e{word-spacing:-1.235518px;}
.ws15{word-spacing:-0.630719px;}
.ws72{word-spacing:-0.570239px;}
.ws36{word-spacing:-0.420480px;}
.ws31{word-spacing:-0.315360px;}
.ws57{word-spacing:-0.298623px;}
.ws48{word-spacing:-0.285119px;}
.ws2b{word-spacing:-0.251999px;}
.ws6a{word-spacing:-0.147601px;}
.ws11{word-spacing:0.000000px;}
.ws2d{word-spacing:0.525600px;}
.ws2c{word-spacing:0.629998px;}
.ws35{word-spacing:0.735839px;}
.ws3c{word-spacing:1.576799px;}
.ws6c{word-spacing:3.453846px;}
.ws6e{word-spacing:7.318066px;}
.ws66{word-spacing:8.708430px;}
.ws51{word-spacing:9.060086px;}
.ws40{word-spacing:10.196631px;}
.ws19{word-spacing:10.240336px;}
.ws32{word-spacing:10.596407px;}
.ws4f{word-spacing:13.020454px;}
.ws3d{word-spacing:13.214916px;}
.ws45{word-spacing:13.350228px;}
.ws4c{word-spacing:14.253988px;}
.ws46{word-spacing:14.401427px;}
.ws56{word-spacing:19.673241px;}
.ws62{word-spacing:23.468480px;}
.ws53{word-spacing:23.474834px;}
.ws47{word-spacing:24.425232px;}
.ws2e{word-spacing:25.769509px;}
.ws70{word-spacing:28.226825px;}
.ws68{word-spacing:30.110503px;}
.ws18{word-spacing:31.220612px;}
.ws71{word-spacing:32.028417px;}
.ws55{word-spacing:40.582000px;}
.ws58{word-spacing:51.036380px;}
.ws54{word-spacing:74.796333px;}
.ws6f{word-spacing:79.453284px;}
.ws3e{word-spacing:84.158152px;}
.ws1e{word-spacing:114.895047px;}
.ws22{word-spacing:118.982057px;}
.ws5a{word-spacing:140.467426px;}
.ws5e{word-spacing:198.472513px;}
.ws26{word-spacing:216.836372px;}
.ws33{word-spacing:226.964219px;}
.ws37{word-spacing:228.310797px;}
.ws3a{word-spacing:333.044591px;}
.ws13{word-spacing:2183.613846px;}
._32{margin-left:-18.532830px;}
._3{margin-left:-14.405063px;}
._17{margin-left:-12.561154px;}
._3a{margin-left:-10.454380px;}
._4{margin-left:-9.040312px;}
._1f{margin-left:-7.270298px;}
._6{margin-left:-6.011604px;}
._7{margin-left:-4.283115px;}
._5{margin-left:-2.598621px;}
._1{margin-left:-1.516322px;}
._0{width:1.010882px;}
._2{width:2.274484px;}
._1e{width:3.598141px;}
._1c{width:18.338369px;}
._c{width:19.446862px;}
._d{width:20.791728px;}
._b{width:22.390698px;}
._14{width:24.416508px;}
._8{width:25.851042px;}
._9{width:27.045761px;}
._3e{width:28.572722px;}
._e{width:29.681909px;}
._18{width:30.985440px;}
._1b{width:32.148637px;}
._19{width:33.413016px;}
._46{width:35.061776px;}
._37{width:37.753160px;}
._27{width:39.726857px;}
._a{width:41.059987px;}
._39{width:42.430454px;}
._38{width:43.595384px;}
._15{width:45.600531px;}
._1a{width:48.460276px;}
._3b{width:51.889728px;}
._3d{width:52.968921px;}
._40{width:54.667068px;}
._48{width:55.719258px;}
._10{width:58.396145px;}
._16{width:62.555213px;}
._47{width:65.379061px;}
._41{width:69.132588px;}
._31{width:74.755979px;}
._13{width:78.119798px;}
._3f{width:84.307624px;}
._12{width:86.309777px;}
._2e{width:95.764234px;}
._30{width:107.559689px;}
._11{width:117.935696px;}
._2a{width:135.487869px;}
._22{width:136.598139px;}
._21{width:143.165358px;}
._f{width:149.561614px;}
._29{width:153.841824px;}
._42{width:156.176341px;}
._23{width:171.060399px;}
._28{width:172.323236px;}
._44{width:173.594790px;}
._43{width:191.484800px;}
._24{width:214.591674px;}
._45{width:216.914923px;}
._25{width:223.535600px;}
._2d{width:235.875346px;}
._33{width:248.266442px;}
._2c{width:253.029917px;}
._35{width:264.023124px;}
._1d{width:268.899901px;}
._2b{width:271.224158px;}
._34{width:282.956533px;}
._36{width:353.424238px;}
._2f{width:860.472341px;}
._3c{width:922.615331px;}
._20{width:1599.809363px;}
._26{width:2100.474921px;}
.fca{color:rgb(191,144,0);}
.fc9{color:rgb(84,130,53);}
.fc8{color:rgb(5,99,193);}
.fc7{color:rgb(112,48,160);}
.fc6{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(81,164,175);}
.fc4{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs12{font-size:42.530733px;}
.fse{font-size:42.889051px;}
.fs18{font-size:43.335843px;}
.fs1c{font-size:44.186664px;}
.fs26{font-size:44.394577px;}
.fs2b{font-size:45.140704px;}
.fs6{font-size:48.959815px;}
.fs38{font-size:51.572735px;}
.fs14{font-size:52.121271px;}
.fs10{font-size:52.559216px;}
.fs1a{font-size:53.107752px;}
.fs2f{font-size:53.280275px;}
.fs1e{font-size:54.150266px;}
.fs30{font-size:54.252010px;}
.fs29{font-size:54.405365px;}
.fs2d{font-size:55.319592px;}
.fsa{font-size:56.160091px;}
.fs1f{font-size:57.600736px;}
.fs20{font-size:58.969128px;}
.fs32{font-size:61.689691px;}
.fs35{font-size:61.887282px;}
.fs11{font-size:62.544936px;}
.fsd{font-size:63.071354px;}
.fs4{font-size:63.360367px;}
.fs17{font-size:63.729007px;}
.fs1b{font-size:64.979434px;}
.fs25{font-size:65.287617px;}
.fs2a{font-size:66.383215px;}
.fs31{font-size:66.549840px;}
.fs33{font-size:66.625043px;}
.fs36{font-size:68.487412px;}
.fs2{font-size:69.839584px;}
.fs22{font-size:70.771506px;}
.fs27{font-size:72.250489px;}
.fs21{font-size:72.336014px;}
.fs7{font-size:73.440459px;}
.fs2e{font-size:73.464052px;}
.fs34{font-size:75.671468px;}
.fs37{font-size:75.914771px;}
.fs13{font-size:76.721355px;}
.fsf{font-size:77.367212px;}
.fs19{font-size:78.175271px;}
.fs24{font-size:78.319778px;}
.fs1d{font-size:79.708814px;}
.fs28{font-size:80.084826px;}
.fs2c{font-size:81.431100px;}
.fs9{font-size:84.240136px;}
.fs23{font-size:86.813244px;}
.fs3{font-size:95.039814px;}
.fs16{font-size:97.919629px;}
.fs1{font-size:105.119906px;}
.fsc{font-size:112.320182px;}
.fs5{font-size:125.999675px;}
.fs15{font-size:147.600504px;}
.fs8{font-size:168.480273px;}
.fsb{font-size:231.840640px;}
.fs0{font-size:252.720409px;}
.y0{bottom:0.000000px;}
.yba{bottom:3.964697px;}
.yf{bottom:4.314323px;}
.ye{bottom:91.444100px;}
.y11{bottom:99.179697px;}
.y8e{bottom:112.668299px;}
.y6{bottom:118.448047px;}
.yca{bottom:134.286828px;}
.y32{bottom:134.448626px;}
.y123{bottom:137.698018px;}
.y24{bottom:138.243066px;}
.y3d{bottom:138.419644px;}
.y1a{bottom:139.856284px;}
.y10c{bottom:140.035548px;}
.y40{bottom:140.946650px;}
.y159{bottom:142.918711px;}
.y131{bottom:144.898209px;}
.ybe{bottom:144.898934px;}
.y10e{bottom:145.449254px;}
.y73{bottom:146.156446px;}
.y154{bottom:147.054538px;}
.y105{bottom:147.054704px;}
.y91{bottom:149.937628px;}
.yec{bottom:150.669947px;}
.y1f{bottom:151.733390px;}
.yad{bottom:154.977494px;}
.y9b{bottom:155.346666px;}
.yef{bottom:156.607857px;}
.y31{bottom:157.318427px;}
.y23{bottom:163.436955px;}
.yaa{bottom:164.519286px;}
.y19{bottom:165.062977px;}
.y149{bottom:166.862540px;}
.y158{bottom:171.364222px;}
.y153{bottom:171.714935px;}
.ye5{bottom:171.896797px;}
.y3f{bottom:172.436398px;}
.yd8{bottom:173.162383px;}
.y114{bottom:173.336498px;}
.yc4{bottom:174.958607px;}
.y1e{bottom:177.113625px;}
.ya8{bottom:177.295079px;}
.y72{bottom:177.659040px;}
.y104{bottom:178.557297px;}
.y18{bottom:190.443274px;}
.yf8{bottom:190.619427px;}
.y9a{bottom:193.137305px;}
.y39{bottom:199.799608px;}
.y113{bottom:201.783426px;}
.y1d{bottom:202.320381px;}
.yd9{bottom:203.227029px;}
.ycb{bottom:203.936431px;}
.y144{bottom:206.270797px;}
.ybf{bottom:208.261153px;}
.y13a{bottom:208.442794px;}
.y155{bottom:210.237591px;}
.y3c{bottom:213.477799px;}
.y22{bottom:213.837600px;}
.y145{bottom:214.010335px;}
.y17{bottom:215.637163px;}
.yf7{bottom:222.122021px;}
.ycc{bottom:223.377459px;}
.y167{bottom:225.903073px;}
.y107{bottom:226.796415px;}
.y89{bottom:227.162822px;}
.y1c{bottom:227.520734px;}
.y38{bottom:228.246607px;}
.ycd{bottom:230.048722px;}
.y58{bottom:231.847818px;}
.y7d{bottom:236.155532px;}
.y132{bottom:237.592923px;}
.y13c{bottom:237.769562px;}
.y6f{bottom:238.865354px;}
.y16{bottom:240.837454px;}
.y12f{bottom:244.442312px;}
.yb8{bottom:244.614841px;}
.yc0{bottom:247.498876px;}
.y1b{bottom:252.715879px;}
.yf6{bottom:253.804281px;}
.y166{bottom:254.338459px;}
.y133{bottom:257.040397px;}
.y7f{bottom:257.949183px;}
.y41{bottom:259.918224px;}
.y120{bottom:261.535378px;}
.y15{bottom:266.042954px;}
.y75{bottom:266.221333px;}
.y42{bottom:266.391220px;}
.yda{bottom:266.408382px;}
.y59{bottom:268.380003px;}
.y93{bottom:268.921604px;}
.yb0{bottom:272.524644px;}
.ydb{bottom:273.242389px;}
.yf5{bottom:285.306875px;}
.ya6{bottom:286.384759px;}
.y115{bottom:287.102675px;}
.yb1{bottom:291.060473px;}
.y138{bottom:300.236114px;}
.y12e{bottom:301.324661px;}
.y8a{bottom:302.218002px;}
.y152{bottom:308.343608px;}
.y3b{bottom:309.596564px;}
.y7e{bottom:309.776428px;}
.y165{bottom:311.220773px;}
.y70{bottom:313.738323px;}
.y137{bottom:320.573527px;}
.y2f{bottom:322.198932px;}
.y43{bottom:322.560342px;}
.y116{bottom:323.100436px;}
.y44{bottom:329.030491px;}
.y12d{bottom:329.760047px;}
.y5a{bottom:330.838111px;}
.yf4{bottom:336.245489px;}
.y5b{bottom:337.317813px;}
.y124{bottom:338.936869px;}
.y164{bottom:339.482143px;}
.y136{bottom:340.916053px;}
.y13d{bottom:342.174143px;}
.y9c{bottom:343.623901px;}
.y111{bottom:347.394111px;}
.ya5{bottom:349.556808px;}
.yce{bottom:351.534914px;}
.y151{bottom:352.432775px;}
.ydc{bottom:353.347930px;}
.y2e{bottom:353.881193px;}
.yb2{bottom:355.859381px;}
.ycf{bottom:358.207440px;}
.y110{bottom:359.640195px;}
.ydd{bottom:360.185222px;}
.y117{bottom:360.724855px;}
.y163{bottom:367.917529px;}
.y45{bottom:368.822569px;}
.y28{bottom:370.065008px;}
.y97{bottom:372.785310px;}
.y148{bottom:374.936446px;}
.y46{bottom:375.289204px;}
.y5c{bottom:375.478300px;}
.ya4{bottom:381.059401px;}
.y5d{bottom:381.957049px;}
.y76{bottom:383.223781px;}
.y2d{bottom:385.383786px;}
.y12c{bottom:386.456767px;}
.y162{bottom:396.364492px;}
.y150{bottom:396.720165px;}
.y118{bottom:398.163015px;}
.yf3{bottom:398.705508px;}
.yc3{bottom:407.703441px;}
.y14{bottom:407.884306px;}
.yd6{bottom:410.222521px;}
.y143{bottom:411.117739px;}
.ye4{bottom:412.922656px;}
.y12b{bottom:414.903766px;}
.y47{bottom:415.256080px;}
.y10f{bottom:415.437724px;}
.y11f{bottom:418.853812px;}
.y5e{bottom:420.296966px;}
.yb3{bottom:420.838249px;}
.yc1{bottom:421.198781px;}
.y48{bottom:421.734468px;}
.y9{bottom:422.098638px;}
.y96{bottom:423.188241px;}
.y161{bottom:424.799878px;}
.yd7{bottom:425.697338px;}
.y5f{bottom:426.596284px;}
.y80{bottom:426.606593px;}
.y139{bottom:430.744384px;}
.yb7{bottom:431.101490px;}
.y30{bottom:431.285135px;}
.y27{bottom:432.525027px;}
.y81{bottom:433.252876px;}
.y101{bottom:433.803389px;}
.y119{bottom:435.783311px;}
.ybb{bottom:436.865473px;}
.y134{bottom:438.658623px;}
.yde{bottom:440.104181px;}
.y100{bottom:440.281805px;}
.y14f{bottom:440.827340px;}
.y12a{bottom:443.339116px;}
.y8{bottom:443.695079px;}
.ya3{bottom:444.244255px;}
.y13{bottom:445.674992px;}
.ydf{bottom:446.945532px;}
.y160{bottom:453.235228px;}
.y9e{bottom:456.665657px;}
.yf2{bottom:461.165483px;}
.y49{bottom:461.520186px;}
.y13e{bottom:463.674742px;}
.y60{bottom:465.121317px;}
.y102{bottom:465.835613px;}
.y6d{bottom:466.021861px;}
.y7b{bottom:467.462548px;}
.y4a{bottom:467.996472px;}
.y61{bottom:471.417219px;}
.y7{bottom:471.417298px;}
.y129{bottom:471.786115px;}
.y11a{bottom:473.399443px;}
.ya2{bottom:475.734043px;}
.yd0{bottom:479.513022px;}
.y6e{bottom:480.959495px;}
.y157{bottom:481.145884px;}
.y15f{bottom:481.496598px;}
.y7c{bottom:482.578682px;}
.y12{bottom:483.665636px;}
.y14e{bottom:485.096667px;}
.yb4{bottom:485.818039px;}
.y8d{bottom:486.353275px;}
.yd1{bottom:486.366159px;}
.y13b{bottom:491.945242px;}
.y128{bottom:500.221465px;}
.y56{bottom:501.660500px;}
.y87{bottom:504.185473px;}
.y4b{bottom:507.961428px;}
.y62{bottom:509.762484px;}
.y15e{bottom:509.943562px;}
.y11b{bottom:511.023862px;}
.y4c{bottom:514.435186px;}
.y63{bottom:516.234920px;}
.y57{bottom:516.596523px;}
.yff{bottom:519.475377px;}
.y88{bottom:519.659691px;}
.yd{bottom:521.456299px;}
.y5{bottom:523.436158px;}
.ye0{bottom:527.045781px;}
.y127{bottom:528.482835px;}
.y14d{bottom:529.203870px;}
.ye1{bottom:533.881471px;}
.y142{bottom:535.678360px;}
.y2c{bottom:536.583500px;}
.y15d{bottom:538.378948px;}
.yfe{bottom:544.677075px;}
.y11c{bottom:548.639995px;}
.y10d{bottom:550.435684px;}
.yb5{bottom:550.617870px;}
.y4d{bottom:554.217850px;}
.y4{bottom:554.400671px;}
.y64{bottom:554.579216px;}
.y126{bottom:556.918186px;}
.y141{bottom:556.921834px;}
.yf1{bottom:559.086455px;}
.yc{bottom:559.446919px;}
.ye7{bottom:560.526469px;}
.y4e{bottom:560.693899px;}
.y98{bottom:560.885928px;}
.y65{bottom:561.055854px;}
.yd5{bottom:564.660083px;}
.y15c{bottom:566.825911px;}
.ya1{bottom:567.354678px;}
.y2b{bottom:568.086093px;}
.yfd{bottom:569.881226px;}
.y77{bottom:570.779762px;}
.y14c{bottom:573.473197px;}
.ye8{bottom:577.975009px;}
.y140{bottom:577.981382px;}
.ye9{bottom:580.144492px;}
.y15b{bottom:580.315006px;}
.yc6{bottom:580.685631px;}
.y3{bottom:582.663269px;}
.ye6{bottom:583.205993px;}
.y13f{bottom:584.994083px;}
.y11d{bottom:586.262757px;}
.y10b{bottom:586.618135px;}
.yd4{bottom:586.806213px;}
.y122{bottom:586.982332px;}
.y8c{bottom:591.660751px;}
.yc2{bottom:594.896497px;}
.yfc{bottom:595.260236px;}
.y7a{bottom:596.699436px;}
.y9f{bottom:597.603927px;}
.y55{bottom:598.140280px;}
.ya0{bottom:598.857271px;}
.y66{bottom:599.220360px;}
.y2a{bottom:599.575881px;}
.y4f{bottom:600.481980px;}
.y79{bottom:601.922170px;}
.y26{bottom:602.471678px;}
.y6c{bottom:604.263460px;}
.yc5{bottom:604.978915px;}
.y82{bottom:605.339715px;}
.y37{bottom:605.522870px;}
.y67{bottom:605.700255px;}
.y86{bottom:606.595695px;}
.y36{bottom:607.137343px;}
.y50{bottom:607.138524px;}
.y121{bottom:607.316102px;}
.yd2{bottom:607.856731px;}
.y85{bottom:611.994761px;}
.y83{bottom:612.179997px;}
.ye2{bottom:613.800994px;}
.yd3{bottom:614.522165px;}
.y10a{bottom:615.065116px;}
.yb6{bottom:615.417679px;}
.y14b{bottom:617.580372px;}
.y135{bottom:620.278735px;}
.yfb{bottom:620.464387px;}
.ye3{bottom:620.642471px;}
.y54{bottom:621.002743px;}
.y11e{bottom:623.878910px;}
.y78{bottom:625.855701px;}
.y53{bottom:626.218016px;}
.y6b{bottom:626.755601px;}
.y90{bottom:629.641294px;}
.y6a{bottom:631.985050px;}
.y95{bottom:632.515674px;}
.y156{bottom:632.527199px;}
.yb{bottom:635.043664px;}
.y84{bottom:636.475646px;}
.ya7{bottom:640.445853px;}
.y68{bottom:644.037115px;}
.yfa{bottom:645.658292px;}
.y2{bottom:646.923116px;}
.y51{bottom:646.923198px;}
.yb9{bottom:648.713503px;}
.yc9{bottom:649.261464px;}
.y69{bottom:650.520556px;}
.y15a{bottom:651.958017px;}
.y52{bottom:653.399218px;}
.y109{bottom:654.661178px;}
.y34{bottom:658.080424px;}
.yae{bottom:658.436351px;}
.yaf{bottom:660.606579px;}
.y8f{bottom:661.143907px;}
.y29{bottom:662.760735px;}
.y94{bottom:664.018287px;}
.yab{bottom:664.559461px;}
.y146{bottom:667.803729px;}
.y130{bottom:668.342672px;}
.y112{bottom:670.682902px;}
.yf9{bottom:670.862458px;}
.ya{bottom:673.018912px;}
.yf0{bottom:674.280127px;}
.y106{bottom:674.639031px;}
.yeb{bottom:675.541436px;}
.yed{bottom:677.156333px;}
.ybd{bottom:678.954758px;}
.y74{bottom:679.494224px;}
.yc8{bottom:680.764057px;}
.y35{bottom:682.564768px;}
.y3e{bottom:682.924141px;}
.y108{bottom:683.096546px;}
.y20{bottom:686.166346px;}
.y14a{bottom:703.449148px;}
.y1{bottom:715.131716px;}
.y21{bottom:741.960641px;}
.y25{bottom:742.310267px;}
.y125{bottom:743.037208px;}
.y99{bottom:743.397569px;}
.ya9{bottom:743.585392px;}
.y9d{bottom:744.118264px;}
.y33{bottom:744.293626px;}
.y10{bottom:744.469749px;}
.yc7{bottom:745.559768px;}
.y8b{bottom:745.929964px;}
.yea{bottom:746.649787px;}
.y92{bottom:747.001097px;}
.yee{bottom:747.719250px;}
.y103{bottom:748.089447px;}
.yac{bottom:748.624163px;}
.y3a{bottom:748.973805px;}
.y71{bottom:749.163209px;}
.ybc{bottom:749.344001px;}
.y147{bottom:752.406389px;}
.h34{height:0.362036px;}
.hb{height:25.552420px;}
.h7{height:36.122207px;}
.h20{height:38.128138px;}
.h1c{height:38.449364px;}
.h2a{height:39.612654px;}
.h39{height:39.799045px;}
.h3e{height:40.467936px;}
.h4e{height:46.234151px;}
.h22{height:46.725905px;}
.h1e{height:47.118515px;}
.h28{height:47.610270px;}
.h1a{height:48.386530px;}
.h2c{height:48.544867px;}
.h46{height:48.636080px;}
.h3c{height:48.773559px;}
.h32{height:52.864902px;}
.h42{height:55.223783px;}
.h48{height:55.303844px;}
.h4b{height:55.480981px;}
.h1f{height:56.070558px;}
.h1b{height:56.542483px;}
.h24{height:57.132059px;}
.h29{height:58.253047px;}
.h9{height:58.463551px;}
.h8{height:58.468557px;}
.h38{height:58.529329px;}
.h2d{height:58.978879px;}
.h3d{height:59.511515px;}
.h47{height:59.660892px;}
.h49{height:59.728310px;}
.h4c{height:61.397895px;}
.h45{height:61.893668px;}
.h18{height:63.344634px;}
.h35{height:63.445549px;}
.h4f{height:64.331823px;}
.h3a{height:64.771435px;}
.h33{height:64.848106px;}
.h25{height:65.485090px;}
.h26{height:65.494490px;}
.h43{height:65.838224px;}
.h40{height:65.859375px;}
.h4a{height:67.838289px;}
.h4d{height:68.056406px;}
.h21{height:68.779496px;}
.h1d{height:69.358497px;}
.h27{height:70.082909px;}
.h37{height:70.212457px;}
.h2b{height:71.457706px;}
.h51{height:71.465485px;}
.h3b{height:71.794796px;}
.h2e{height:72.579233px;}
.h3f{height:73.001709px;}
.h17{height:73.046004px;}
.hf{height:75.519966px;}
.h10{height:75.549236px;}
.h12{height:75.557856px;}
.h19{height:76.483073px;}
.h36{height:77.826716px;}
.h11{height:79.045242px;}
.he{height:83.787675px;}
.hc{height:85.201708px;}
.h14{height:94.238353px;}
.h15{height:94.268915px;}
.h3{height:94.524295px;}
.h4{height:94.529346px;}
.h16{height:99.448359px;}
.h31{height:104.555297px;}
.h5{height:104.584601px;}
.h6{height:112.956740px;}
.h44{height:120.201413px;}
.h41{height:125.265079px;}
.ha{height:125.322919px;}
.h30{height:125.361844px;}
.h2f{height:129.014315px;}
.h23{height:132.321545px;}
.h50{height:146.807728px;}
.hd{height:151.039932px;}
.h13{height:207.841511px;}
.h2{height:226.559898px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w2{width:13.138829px;}
.w4{width:24.479221px;}
.w3{width:26.277516px;}
.w5{width:341.276411px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x7{left:9.717854px;}
.x4{left:24.479250px;}
.x3e{left:38.523056px;}
.x5e{left:40.496592px;}
.xe{left:43.024993px;}
.x5f{left:45.900814px;}
.x6f{left:49.864616px;}
.x39{left:52.743526px;}
.x57{left:55.081939px;}
.x79{left:56.524514px;}
.x3{left:58.501179px;}
.x7a{left:61.015710px;}
.x9c{left:65.522291px;}
.x75{left:66.598949px;}
.xab{left:68.936349px;}
.xc4{left:70.737252px;}
.x58{left:73.079144px;}
.x19{left:76.863802px;}
.xf{left:78.481535px;}
.x78{left:82.254920px;}
.x8{left:84.594510px;}
.x20{left:88.559093px;}
.x13{left:91.078479px;}
.xc0{left:92.159567px;}
.x56{left:93.601274px;}
.x9b{left:97.557346px;}
.x2a{left:98.819389px;}
.x8b{left:103.862373px;}
.x2c{left:107.639538px;}
.x17{left:108.901708px;}
.x4c{left:110.881490px;}
.x1a{left:112.318669px;}
.xb8{left:115.560018px;}
.xc5{left:118.087614px;}
.x9{left:120.062677px;}
.x95{left:123.482690px;}
.x2d{left:125.101662px;}
.x14{left:126.545303px;}
.x2b{left:128.345860px;}
.x9d{left:130.495267px;}
.x69{left:131.758689px;}
.x1{left:133.208833px;}
.xa{left:137.873670px;}
.x64{left:139.862845px;}
.x65{left:142.381631px;}
.x5{left:145.262881px;}
.x16{left:147.419180px;}
.x4b{left:149.402268px;}
.xb7{left:150.843284px;}
.xa6{left:154.803587px;}
.x6b{left:157.676534px;}
.xc1{left:158.933601px;}
.x6c{left:165.597222px;}
.x1d{left:167.035703px;}
.xa8{left:173.704150px;}
.x2e{left:176.042376px;}
.x63{left:178.928028px;}
.x72{left:181.436815px;}
.x74{left:186.115609px;}
.xa5{left:189.534353px;}
.x2f{left:193.496700px;}
.x6d{left:196.013174px;}
.x29{left:209.517532px;}
.x25{left:210.785439px;}
.x62{left:225.898096px;}
.xb3{left:229.861318px;}
.x30{left:244.445226px;}
.x15{left:246.961815px;}
.x6a{left:250.733485px;}
.x3a{left:255.416632px;}
.x59{left:257.761609px;}
.x12{left:261.003279px;}
.xa9{left:262.617783px;}
.x2{left:268.392042px;}
.x18{left:271.263739px;}
.x60{left:293.575581px;}
.x98{left:296.280134px;}
.x3f{left:302.037764px;}
.x3b{left:309.784618px;}
.x8c{left:311.574274px;}
.x31{left:312.840380px;}
.x3c{left:317.163235px;}
.x5a{left:319.319340px;}
.xb9{left:322.199453px;}
.x5b{left:326.882782px;}
.xa4{left:328.857363px;}
.x32{left:330.298533px;}
.x3d{left:332.103797px;}
.x1c{left:338.938984px;}
.x5c{left:342.362645px;}
.x71{left:348.298683px;}
.x5d{left:349.919961px;}
.xa7{left:351.725676px;}
.x88{left:356.935857px;}
.xaa{left:360.362086px;}
.xba{left:363.597677px;}
.x87{left:366.661387px;}
.x6{left:373.492455px;}
.x86{left:376.378254px;}
.x33{left:381.243206px;}
.x34{left:398.698820px;}
.x84{left:406.804189px;}
.x67{left:416.334905px;}
.x76{left:417.951196px;}
.x6e{left:426.417839px;}
.xc8{left:434.692277px;}
.x85{left:440.633951px;}
.x9e{left:444.790407px;}
.x68{left:445.861356px;}
.x35{left:451.444914px;}
.x9f{left:457.377058px;}
.xc6{left:459.011655px;}
.x99{left:462.950577px;}
.x36{left:468.895986px;}
.x4a{left:471.416972px;}
.x96{left:474.305632px;}
.x61{left:482.577648px;}
.xc2{left:484.201856px;}
.x77{left:487.794809px;}
.xa0{left:492.843874px;}
.xa1{left:504.723870px;}
.xc7{left:508.849471px;}
.x37{left:519.848725px;}
.xd{left:521.277002px;}
.xa3{left:529.925194px;}
.x38{left:537.296241px;}
.xc{left:556.568989px;}
.x23{left:610.554268px;}
.x89{left:627.483817px;}
.x24{left:646.020185px;}
.x47{left:651.773306px;}
.x48{left:657.007487px;}
.x41{left:663.472467px;}
.x22{left:666.898952px;}
.x4f{left:669.785109px;}
.x92{left:671.933643px;}
.x93{left:677.331679px;}
.xbd{left:680.048017px;}
.x8f{left:684.172921px;}
.xbc{left:688.683570px;}
.x8e{left:690.481085px;}
.x42{left:698.589603px;}
.x90{left:702.349138px;}
.x1f{left:704.696187px;}
.x4e{left:707.582919px;}
.x40{left:709.193371px;}
.x7c{left:713.516286px;}
.x80{left:717.660651px;}
.x7d{left:721.800524px;}
.x8d{left:722.877351px;}
.xb0{left:724.324586px;}
.x7f{left:725.940441px;}
.xae{left:731.345872px;}
.x7e{left:734.039800px;}
.xaf{left:738.728845px;}
.xac{left:743.404930px;}
.xbb{left:744.847902px;}
.x7b{left:749.701936px;}
.xad{left:757.624486px;}
.x8a{left:770.578025px;}
.xb4{left:775.794994px;}
.x73{left:779.404082px;}
.xc3{left:783.542827px;}
.x70{left:788.940975px;}
.x10{left:791.100969px;}
.x82{left:799.197444px;}
.x27{left:801.725788px;}
.x26{left:808.025522px;}
.x4d{left:811.430536px;}
.x11{left:826.565211px;}
.xb5{left:844.918405px;}
.x50{left:871.192654px;}
.x43{left:872.998358px;}
.xb6{left:874.444339px;}
.xb1{left:886.689510px;}
.xa2{left:895.321378px;}
.x97{left:898.735063px;}
.x1b{left:903.229863px;}
.x81{left:908.816616px;}
.x49{left:910.799092px;}
.x9a{left:913.319024px;}
.xb2{left:919.629570px;}
.x94{left:923.752290px;}
.x51{left:925.918960px;}
.x44{left:932.036039px;}
.x52{left:933.473068px;}
.x45{left:939.413993px;}
.x53{left:948.599662px;}
.x21{left:954.006467px;}
.x54{left:955.970497px;}
.x83{left:957.605585px;}
.x46{left:961.554516px;}
.xbf{left:972.363116px;}
.xbe{left:1027.084342px;}
.x91{left:1066.855151px;}
.x55{left:1100.336323px;}
.x1e{left:1203.297227px;}
.x28{left:1205.095522px;}
.x66{left:1210.875885px;}
.xb{left:1216.435914px;}
@media print{
.v11{vertical-align:-97.288860pt;}
.va{vertical-align:-36.465095pt;}
.v14{vertical-align:-34.551664pt;}
.vd{vertical-align:-32.011819pt;}
.v10{vertical-align:-27.558040pt;}
.vb{vertical-align:-24.976666pt;}
.v8{vertical-align:-23.021174pt;}
.v3{vertical-align:-19.836108pt;}
.v6{vertical-align:-17.908007pt;}
.v13{vertical-align:-15.974561pt;}
.v15{vertical-align:-13.439841pt;}
.v7{vertical-align:-8.349376pt;}
.vc{vertical-align:-3.828098pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.897461pt;}
.v16{vertical-align:13.439841pt;}
.v12{vertical-align:17.939994pt;}
.v4{vertical-align:19.863422pt;}
.v5{vertical-align:22.402304pt;}
.vf{vertical-align:23.675719pt;}
.v2{vertical-align:24.934148pt;}
.v1{vertical-align:28.140139pt;}
.ve{vertical-align:32.011819pt;}
.v17{vertical-align:51.829106pt;}
.ls17{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.012249pt;}
.ls30{letter-spacing:0.027460pt;}
.ls1f{letter-spacing:0.037817pt;}
.ls0{letter-spacing:0.039475pt;}
.ls1c{letter-spacing:0.039609pt;}
.ls45{letter-spacing:0.046051pt;}
.ls42{letter-spacing:0.046058pt;}
.ls5c{letter-spacing:0.060286pt;}
.ls27{letter-spacing:0.063631pt;}
.ls44{letter-spacing:0.064264pt;}
.ls2a{letter-spacing:0.077539pt;}
.ls36{letter-spacing:0.083432pt;}
.ls22{letter-spacing:0.102078pt;}
.ls12{letter-spacing:0.116825pt;}
.ls10{letter-spacing:0.123685pt;}
.lse{letter-spacing:0.124093pt;}
.ls34{letter-spacing:0.124628pt;}
.lsf{letter-spacing:0.135118pt;}
.ls33{letter-spacing:0.137054pt;}
.ls14{letter-spacing:0.139087pt;}
.ls15{letter-spacing:0.143489pt;}
.ls58{letter-spacing:0.156445pt;}
.ls4f{letter-spacing:0.161170pt;}
.ls11{letter-spacing:0.163941pt;}
.ls59{letter-spacing:0.168301pt;}
.ls5a{letter-spacing:0.171649pt;}
.ls26{letter-spacing:0.179603pt;}
.ls6b{letter-spacing:0.196724pt;}
.ls66{letter-spacing:0.219341pt;}
.ls3a{letter-spacing:0.225453pt;}
.ls2e{letter-spacing:0.237370pt;}
.ls6a{letter-spacing:0.238419pt;}
.lsb{letter-spacing:0.256825pt;}
.ls4{letter-spacing:0.259821pt;}
.ls8{letter-spacing:0.262119pt;}
.ls7{letter-spacing:0.267382pt;}
.ls2{letter-spacing:0.271520pt;}
.ls2d{letter-spacing:0.275083pt;}
.ls5{letter-spacing:0.276165pt;}
.ls1{letter-spacing:0.282214pt;}
.ls6{letter-spacing:0.284140pt;}
.lsa{letter-spacing:0.287595pt;}
.ls3e{letter-spacing:0.293843pt;}
.ls3{letter-spacing:0.295908pt;}
.ls25{letter-spacing:0.297178pt;}
.ls9{letter-spacing:0.300933pt;}
.ls4d{letter-spacing:0.306551pt;}
.lsc{letter-spacing:0.311416pt;}
.ls2b{letter-spacing:0.321174pt;}
.ls37{letter-spacing:0.330360pt;}
.ls43{letter-spacing:0.348863pt;}
.ls1d{letter-spacing:0.355312pt;}
.ls20{letter-spacing:0.357104pt;}
.ls46{letter-spacing:0.367742pt;}
.ls31{letter-spacing:0.371254pt;}
.ls16{letter-spacing:12.909286pt;}
.ls41{letter-spacing:16.017287pt;}
.lsd{letter-spacing:17.568141pt;}
.ls5f{letter-spacing:18.428414pt;}
.ls57{letter-spacing:19.346025pt;}
.ls28{letter-spacing:19.492569pt;}
.ls56{letter-spacing:21.131756pt;}
.ls6c{letter-spacing:21.174335pt;}
.ls5e{letter-spacing:21.817282pt;}
.ls3f{letter-spacing:22.157764pt;}
.ls3b{letter-spacing:22.199696pt;}
.ls65{letter-spacing:22.440903pt;}
.ls3d{letter-spacing:24.980456pt;}
.ls13{letter-spacing:25.092515pt;}
.ls54{letter-spacing:25.319937pt;}
.ls47{letter-spacing:25.652339pt;}
.ls1e{letter-spacing:25.659199pt;}
.ls32{letter-spacing:26.282004pt;}
.ls2c{letter-spacing:26.286483pt;}
.ls21{letter-spacing:26.296223pt;}
.ls38{letter-spacing:26.317119pt;}
.ls69{letter-spacing:30.258191pt;}
.ls4c{letter-spacing:30.746115pt;}
.ls5b{letter-spacing:30.791749pt;}
.ls4e{letter-spacing:30.791784pt;}
.ls40{letter-spacing:36.734298pt;}
.ls3c{letter-spacing:36.756297pt;}
.ls64{letter-spacing:37.862818pt;}
.ls39{letter-spacing:37.904077pt;}
.ls63{letter-spacing:37.904108pt;}
.ls5d{letter-spacing:38.465249pt;}
.ls48{letter-spacing:53.761189pt;}
.ls2f{letter-spacing:62.235366pt;}
.ls35{letter-spacing:62.280897pt;}
.ls29{letter-spacing:62.280966pt;}
.ls67{letter-spacing:62.281001pt;}
.ls68{letter-spacing:65.364493pt;}
.ls61{letter-spacing:66.373812pt;}
.ls60{letter-spacing:66.378848pt;}
.ls55{letter-spacing:66.649417pt;}
.ls19{letter-spacing:70.714335pt;}
.ls1a{letter-spacing:70.737139pt;}
.ls1b{letter-spacing:70.750891pt;}
.ls51{letter-spacing:74.870513pt;}
.ls18{letter-spacing:74.925171pt;}
.ls4b{letter-spacing:74.925192pt;}
.ls4a{letter-spacing:78.698612pt;}
.ls52{letter-spacing:78.753311pt;}
.ls53{letter-spacing:83.359710pt;}
.ls50{letter-spacing:85.544370pt;}
.ls49{letter-spacing:85.593786pt;}
.ls23{letter-spacing:87.493751pt;}
.ls62{letter-spacing:90.040904pt;}
.ws60{word-spacing:-67.479796pt;}
.ws42{word-spacing:-61.651302pt;}
.ws3f{word-spacing:-57.084318pt;}
.ws10{word-spacing:-48.699185pt;}
.wsf{word-spacing:-48.111661pt;}
.wsd{word-spacing:-47.458857pt;}
.wsa{word-spacing:-47.385940pt;}
.wsb{word-spacing:-46.740772pt;}
.ws2{word-spacing:-44.782360pt;}
.ws3{word-spacing:-44.129556pt;}
.wse{word-spacing:-43.519835pt;}
.ws5{word-spacing:-42.889228pt;}
.ws4{word-spacing:-42.616696pt;}
.ws12{word-spacing:-41.483587pt;}
.ws21{word-spacing:-36.342524pt;}
.wsc{word-spacing:-30.629152pt;}
.ws8{word-spacing:-29.833147pt;}
.ws7{word-spacing:-29.751800pt;}
.ws67{word-spacing:-29.651301pt;}
.ws6{word-spacing:-29.371047pt;}
.ws9{word-spacing:-29.180342pt;}
.ws14{word-spacing:-25.882857pt;}
.ws2a{word-spacing:-25.311935pt;}
.ws1a{word-spacing:-23.400914pt;}
.ws49{word-spacing:-21.117421pt;}
.ws41{word-spacing:-20.741794pt;}
.ws1d{word-spacing:-19.324610pt;}
.ws25{word-spacing:-19.248489pt;}
.ws0{word-spacing:-19.092443pt;}
.ws5d{word-spacing:-18.631997pt;}
.ws43{word-spacing:-18.082673pt;}
.ws30{word-spacing:-17.810734pt;}
.ws34{word-spacing:-17.425517pt;}
.ws6b{word-spacing:-16.473627pt;}
.ws3b{word-spacing:-16.345023pt;}
.ws38{word-spacing:-16.075262pt;}
.ws27{word-spacing:-15.999381pt;}
.ws23{word-spacing:-15.691498pt;}
.ws1b{word-spacing:-15.529569pt;}
.ws5b{word-spacing:-15.408714pt;}
.ws1f{word-spacing:-15.399953pt;}
.ws5f{word-spacing:-15.238024pt;}
.ws5c{word-spacing:-15.189373pt;}
.ws2f{word-spacing:-14.519510pt;}
.ws4b{word-spacing:-14.361690pt;}
.ws52{word-spacing:-13.358051pt;}
.ws1{word-spacing:-12.728394pt;}
.ws61{word-spacing:-12.698353pt;}
.ws44{word-spacing:-12.054994pt;}
.ws29{word-spacing:-11.571348pt;}
.ws39{word-spacing:-10.930931pt;}
.ws28{word-spacing:-10.879739pt;}
.ws24{word-spacing:-10.670248pt;}
.ws1c{word-spacing:-10.560238pt;}
.ws20{word-spacing:-10.472012pt;}
.ws4d{word-spacing:-10.419254pt;}
.ws59{word-spacing:-4.477431pt;}
.ws64{word-spacing:-2.624009pt;}
.ws63{word-spacing:-2.361608pt;}
.ws50{word-spacing:-2.280956pt;}
.ws16{word-spacing:-2.242558pt;}
.ws65{word-spacing:-1.836806pt;}
.ws4a{word-spacing:-1.501449pt;}
.ws6d{word-spacing:-1.436157pt;}
.ws69{word-spacing:-1.312004pt;}
.ws17{word-spacing:-1.308159pt;}
.ws4e{word-spacing:-1.098238pt;}
.ws15{word-spacing:-0.560639pt;}
.ws72{word-spacing:-0.506879pt;}
.ws36{word-spacing:-0.373760pt;}
.ws31{word-spacing:-0.280320pt;}
.ws57{word-spacing:-0.265442pt;}
.ws48{word-spacing:-0.253440pt;}
.ws2b{word-spacing:-0.223999pt;}
.ws6a{word-spacing:-0.131200pt;}
.ws11{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.467200pt;}
.ws2c{word-spacing:0.559999pt;}
.ws35{word-spacing:0.654079pt;}
.ws3c{word-spacing:1.401599pt;}
.ws6c{word-spacing:3.070085pt;}
.ws6e{word-spacing:6.504947pt;}
.ws66{word-spacing:7.740826pt;}
.ws51{word-spacing:8.053410pt;}
.ws40{word-spacing:9.063672pt;}
.ws19{word-spacing:9.102521pt;}
.ws32{word-spacing:9.419029pt;}
.ws4f{word-spacing:11.573737pt;}
.ws3d{word-spacing:11.746592pt;}
.ws45{word-spacing:11.866869pt;}
.ws4c{word-spacing:12.670211pt;}
.ws46{word-spacing:12.801269pt;}
.ws56{word-spacing:17.487326pt;}
.ws62{word-spacing:20.860871pt;}
.ws53{word-spacing:20.866519pt;}
.ws47{word-spacing:21.711317pt;}
.ws2e{word-spacing:22.906230pt;}
.ws70{word-spacing:25.090511pt;}
.ws68{word-spacing:26.764891pt;}
.ws18{word-spacing:27.751655pt;}
.ws71{word-spacing:28.469704pt;}
.ws55{word-spacing:36.072889pt;}
.ws58{word-spacing:45.365671pt;}
.ws54{word-spacing:66.485630pt;}
.ws6f{word-spacing:70.625142pt;}
.ws3e{word-spacing:74.807247pt;}
.ws1e{word-spacing:102.128930pt;}
.ws22{word-spacing:105.761828pt;}
.ws5a{word-spacing:124.859934pt;}
.ws5e{word-spacing:176.420012pt;}
.ws26{word-spacing:192.743442pt;}
.ws33{word-spacing:201.745972pt;}
.ws37{word-spacing:202.942931pt;}
.ws3a{word-spacing:296.039636pt;}
.ws13{word-spacing:1940.990085pt;}
._32{margin-left:-16.473627pt;}
._3{margin-left:-12.804501pt;}
._17{margin-left:-11.165470pt;}
._3a{margin-left:-9.292782pt;}
._4{margin-left:-8.035833pt;}
._1f{margin-left:-6.462487pt;}
._6{margin-left:-5.343648pt;}
._7{margin-left:-3.807213pt;}
._5{margin-left:-2.309885pt;}
._1{margin-left:-1.347842pt;}
._0{width:0.898561pt;}
._2{width:2.021763pt;}
._1e{width:3.198348pt;}
._1c{width:16.300773pt;}
._c{width:17.286099pt;}
._d{width:18.481536pt;}
._b{width:19.902842pt;}
._14{width:21.703562pt;}
._8{width:22.978704pt;}
._9{width:24.040677pt;}
._3e{width:25.397975pt;}
._e{width:26.383919pt;}
._18{width:27.542613pt;}
._1b{width:28.576566pt;}
._19{width:29.700458pt;}
._46{width:31.166023pt;}
._37{width:33.558365pt;}
._27{width:35.312762pt;}
._a{width:36.497767pt;}
._39{width:37.715959pt;}
._38{width:38.751453pt;}
._15{width:40.533805pt;}
._1a{width:43.075801pt;}
._3b{width:46.124203pt;}
._3d{width:47.083485pt;}
._40{width:48.592949pt;}
._48{width:49.528229pt;}
._10{width:51.907685pt;}
._16{width:55.604634pt;}
._47{width:58.114720pt;}
._41{width:61.451189pt;}
._31{width:66.449759pt;}
._13{width:69.439821pt;}
._3f{width:74.940110pt;}
._12{width:76.719802pt;}
._2e{width:85.123764pt;}
._30{width:95.608612pt;}
._11{width:104.831729pt;}
._2a{width:120.433662pt;}
._22{width:121.420568pt;}
._21{width:127.258096pt;}
._f{width:132.943657pt;}
._29{width:136.748288pt;}
._42{width:138.823414pt;}
._23{width:152.053688pt;}
._28{width:153.176209pt;}
._44{width:154.306480pt;}
._43{width:170.208711pt;}
._24{width:190.748155pt;}
._45{width:192.813265pt;}
._25{width:198.698311pt;}
._2d{width:209.666974pt;}
._33{width:220.681282pt;}
._2c{width:224.915481pt;}
._35{width:234.687221pt;}
._1d{width:239.022134pt;}
._2b{width:241.088141pt;}
._34{width:251.516918pt;}
._36{width:314.154878pt;}
._2f{width:764.864303pt;}
._3c{width:820.102516pt;}
._20{width:1422.052767pt;}
._26{width:1867.088819pt;}
.fs12{font-size:37.805096pt;}
.fse{font-size:38.123601pt;}
.fs18{font-size:38.520749pt;}
.fs1c{font-size:39.277035pt;}
.fs26{font-size:39.461846pt;}
.fs2b{font-size:40.125071pt;}
.fs6{font-size:43.519835pt;}
.fs38{font-size:45.842431pt;}
.fs14{font-size:46.330019pt;}
.fs10{font-size:46.719303pt;}
.fs1a{font-size:47.206891pt;}
.fs2f{font-size:47.360245pt;}
.fs1e{font-size:48.133570pt;}
.fs30{font-size:48.224009pt;}
.fs29{font-size:48.360324pt;}
.fs2d{font-size:49.172970pt;}
.fsa{font-size:49.920081pt;}
.fs1f{font-size:51.200654pt;}
.fs20{font-size:52.417002pt;}
.fs32{font-size:54.835281pt;}
.fs35{font-size:55.010917pt;}
.fs11{font-size:55.595498pt;}
.fsd{font-size:56.063425pt;}
.fs4{font-size:56.320326pt;}
.fs17{font-size:56.648006pt;}
.fs1b{font-size:57.759497pt;}
.fs25{font-size:58.033437pt;}
.fs2a{font-size:59.007302pt;}
.fs31{font-size:59.155414pt;}
.fs33{font-size:59.222260pt;}
.fs36{font-size:60.877700pt;}
.fs2{font-size:62.079630pt;}
.fs22{font-size:62.908005pt;}
.fs27{font-size:64.222657pt;}
.fs21{font-size:64.298679pt;}
.fs7{font-size:65.280408pt;}
.fs2e{font-size:65.301380pt;}
.fs34{font-size:67.263528pt;}
.fs37{font-size:67.479796pt;}
.fs13{font-size:68.196760pt;}
.fsf{font-size:68.770855pt;}
.fs19{font-size:69.489130pt;}
.fs24{font-size:69.617581pt;}
.fs1d{font-size:70.852279pt;}
.fs28{font-size:71.186512pt;}
.fs2c{font-size:72.383200pt;}
.fs9{font-size:74.880121pt;}
.fs23{font-size:77.167328pt;}
.fs3{font-size:84.479834pt;}
.fs16{font-size:87.039670pt;}
.fs1{font-size:93.439916pt;}
.fsc{font-size:99.840162pt;}
.fs5{font-size:111.999711pt;}
.fs15{font-size:131.200448pt;}
.fs8{font-size:149.760243pt;}
.fsb{font-size:206.080569pt;}
.fs0{font-size:224.640364pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:3.524175pt;}
.yf{bottom:3.834953pt;}
.ye{bottom:81.283644pt;}
.y11{bottom:88.159730pt;}
.y8e{bottom:100.149599pt;}
.y6{bottom:105.287152pt;}
.yca{bottom:119.366069pt;}
.y32{bottom:119.509890pt;}
.y123{bottom:122.398238pt;}
.y24{bottom:122.882725pt;}
.y3d{bottom:123.039684pt;}
.y1a{bottom:124.316697pt;}
.y10c{bottom:124.476043pt;}
.y40{bottom:125.285911pt;}
.y159{bottom:127.038854pt;}
.y131{bottom:128.798408pt;}
.ybe{bottom:128.799052pt;}
.y10e{bottom:129.288226pt;}
.y73{bottom:129.916841pt;}
.y154{bottom:130.715145pt;}
.y105{bottom:130.715292pt;}
.y91{bottom:133.277892pt;}
.yec{bottom:133.928842pt;}
.y1f{bottom:134.874125pt;}
.yad{bottom:137.757772pt;}
.y9b{bottom:138.085925pt;}
.yef{bottom:139.206984pt;}
.y31{bottom:139.838601pt;}
.y23{bottom:145.277293pt;}
.yaa{bottom:146.239365pt;}
.y19{bottom:146.722646pt;}
.y149{bottom:148.322258pt;}
.y158{bottom:152.323753pt;}
.y153{bottom:152.635497pt;}
.ye5{bottom:152.797153pt;}
.y3f{bottom:153.276799pt;}
.yd8{bottom:153.922118pt;}
.y114{bottom:154.076888pt;}
.yc4{bottom:155.518762pt;}
.y1e{bottom:157.434333pt;}
.ya8{bottom:157.595626pt;}
.y72{bottom:157.919147pt;}
.y104{bottom:158.717597pt;}
.y18{bottom:169.282910pt;}
.yf8{bottom:169.439491pt;}
.y9a{bottom:171.677604pt;}
.y39{bottom:177.599652pt;}
.y113{bottom:179.363046pt;}
.y1d{bottom:179.840338pt;}
.yd9{bottom:180.646248pt;}
.ycb{bottom:181.276827pt;}
.y144{bottom:183.351820pt;}
.ybf{bottom:185.121025pt;}
.y13a{bottom:185.282483pt;}
.y155{bottom:186.877859pt;}
.y3c{bottom:189.758043pt;}
.y22{bottom:190.077866pt;}
.y145{bottom:190.231409pt;}
.y17{bottom:191.677478pt;}
.yf7{bottom:197.441796pt;}
.ycc{bottom:198.557741pt;}
.y167{bottom:200.802732pt;}
.y107{bottom:201.596813pt;}
.y89{bottom:201.922509pt;}
.y1c{bottom:202.240653pt;}
.y38{bottom:202.885873pt;}
.ycd{bottom:204.487753pt;}
.y58{bottom:206.086949pt;}
.y7d{bottom:209.916028pt;}
.y132{bottom:211.193709pt;}
.y13c{bottom:211.350722pt;}
.y6f{bottom:212.324759pt;}
.y16{bottom:214.077737pt;}
.y12f{bottom:217.282055pt;}
.yb8{bottom:217.435414pt;}
.yc0{bottom:219.999001pt;}
.y1b{bottom:224.636337pt;}
.yf6{bottom:225.603805pt;}
.y166{bottom:226.078630pt;}
.y133{bottom:228.480353pt;}
.y7f{bottom:229.288162pt;}
.y41{bottom:231.038421pt;}
.y120{bottom:232.475891pt;}
.y15{bottom:236.482626pt;}
.y75{bottom:236.641185pt;}
.y42{bottom:236.792195pt;}
.yda{bottom:236.807451pt;}
.y59{bottom:238.560002pt;}
.y93{bottom:239.041425pt;}
.yb0{bottom:242.244128pt;}
.ydb{bottom:242.882124pt;}
.yf5{bottom:253.606111pt;}
.ya6{bottom:254.564231pt;}
.y115{bottom:255.202378pt;}
.yb1{bottom:258.720420pt;}
.y138{bottom:266.876546pt;}
.y12e{bottom:267.844143pt;}
.y8a{bottom:268.638224pt;}
.y152{bottom:274.083207pt;}
.y3b{bottom:275.196946pt;}
.y7e{bottom:275.356825pt;}
.y165{bottom:276.640687pt;}
.y70{bottom:278.878509pt;}
.y137{bottom:284.954246pt;}
.y2f{bottom:286.399051pt;}
.y43{bottom:286.720304pt;}
.y116{bottom:287.200388pt;}
.y44{bottom:292.471548pt;}
.y12d{bottom:293.120041pt;}
.y5a{bottom:294.078321pt;}
.yf4{bottom:298.884879pt;}
.y5b{bottom:299.838056pt;}
.y124{bottom:301.277217pt;}
.y164{bottom:301.761905pt;}
.y136{bottom:303.036492pt;}
.y13d{bottom:304.154794pt;}
.y9c{bottom:305.443468pt;}
.y111{bottom:308.794765pt;}
.ya5{bottom:310.717163pt;}
.yce{bottom:312.475479pt;}
.y151{bottom:313.273578pt;}
.ydc{bottom:314.087049pt;}
.y2e{bottom:314.561060pt;}
.yb2{bottom:316.319450pt;}
.ycf{bottom:318.406614pt;}
.y110{bottom:319.680173pt;}
.ydd{bottom:320.164642pt;}
.y117{bottom:320.644316pt;}
.y163{bottom:327.037803pt;}
.y45{bottom:327.842283pt;}
.y28{bottom:328.946674pt;}
.y97{bottom:331.364720pt;}
.y148{bottom:333.276841pt;}
.y46{bottom:333.590403pt;}
.y5c{bottom:333.758489pt;}
.ya4{bottom:338.719468pt;}
.y5d{bottom:339.517377pt;}
.y76{bottom:340.643361pt;}
.y2d{bottom:342.563365pt;}
.y12c{bottom:343.517126pt;}
.y162{bottom:352.323993pt;}
.y150{bottom:352.640147pt;}
.y118{bottom:353.922680pt;}
.yf3{bottom:354.404896pt;}
.yc3{bottom:362.403058pt;}
.y14{bottom:362.563828pt;}
.yd6{bottom:364.642241pt;}
.y143{bottom:365.437990pt;}
.ye4{bottom:367.042361pt;}
.y12b{bottom:368.803347pt;}
.y47{bottom:369.116516pt;}
.y10f{bottom:369.277977pt;}
.y11f{bottom:372.314500pt;}
.y5e{bottom:373.597303pt;}
.yb3{bottom:374.078443pt;}
.yc1{bottom:374.398916pt;}
.y48{bottom:374.875083pt;}
.y9{bottom:375.198789pt;}
.y96{bottom:376.167325pt;}
.y161{bottom:377.599892pt;}
.yd7{bottom:378.397634pt;}
.y5f{bottom:379.196697pt;}
.y80{bottom:379.205861pt;}
.y139{bottom:382.883897pt;}
.yb7{bottom:383.201325pt;}
.y30{bottom:383.364564pt;}
.y27{bottom:384.466691pt;}
.y81{bottom:385.113667pt;}
.y101{bottom:385.603013pt;}
.y119{bottom:387.362943pt;}
.ybb{bottom:388.324864pt;}
.y134{bottom:389.918776pt;}
.yde{bottom:391.203716pt;}
.y100{bottom:391.361605pt;}
.y14f{bottom:391.846525pt;}
.y12a{bottom:394.079214pt;}
.y8{bottom:394.395626pt;}
.ya3{bottom:394.883783pt;}
.y13{bottom:396.155548pt;}
.ydf{bottom:397.284918pt;}
.y160{bottom:402.875759pt;}
.y9e{bottom:405.925028pt;}
.yf2{bottom:409.924874pt;}
.y49{bottom:410.240165pt;}
.y13e{bottom:412.155326pt;}
.y60{bottom:413.441170pt;}
.y102{bottom:414.076101pt;}
.y6d{bottom:414.241655pt;}
.y7b{bottom:415.522265pt;}
.y4a{bottom:415.996864pt;}
.y61{bottom:419.037528pt;}
.y7{bottom:419.037598pt;}
.y129{bottom:419.365436pt;}
.y11a{bottom:420.799505pt;}
.ya2{bottom:422.874705pt;}
.yd0{bottom:426.233797pt;}
.y6e{bottom:427.519551pt;}
.y157{bottom:427.685230pt;}
.y15f{bottom:427.996976pt;}
.y7c{bottom:428.958828pt;}
.y12{bottom:429.925010pt;}
.y14e{bottom:431.197038pt;}
.yb4{bottom:431.838257pt;}
.y8d{bottom:432.314022pt;}
.yd1{bottom:432.325474pt;}
.y13b{bottom:437.284659pt;}
.y128{bottom:444.641303pt;}
.y56{bottom:445.920444pt;}
.y87{bottom:448.164865pt;}
.y4b{bottom:451.521269pt;}
.y62{bottom:453.122208pt;}
.y15e{bottom:453.283166pt;}
.y11b{bottom:454.243433pt;}
.y4c{bottom:457.275721pt;}
.y63{bottom:458.875485pt;}
.y57{bottom:459.196909pt;}
.yff{bottom:461.755891pt;}
.y88{bottom:461.919726pt;}
.yd{bottom:463.516710pt;}
.y5{bottom:465.276585pt;}
.ye0{bottom:468.485139pt;}
.y127{bottom:469.762520pt;}
.y14d{bottom:470.403440pt;}
.ye1{bottom:474.561308pt;}
.y142{bottom:476.158542pt;}
.y2c{bottom:476.963111pt;}
.y15d{bottom:478.559064pt;}
.yfe{bottom:484.157400pt;}
.y11c{bottom:487.679996pt;}
.y10d{bottom:489.276164pt;}
.yb5{bottom:489.438107pt;}
.y4d{bottom:492.638089pt;}
.y4{bottom:492.800597pt;}
.y64{bottom:492.959303pt;}
.y126{bottom:495.038387pt;}
.y141{bottom:495.041630pt;}
.yf1{bottom:496.965737pt;}
.yc{bottom:497.286151pt;}
.ye7{bottom:498.245750pt;}
.y4e{bottom:498.394577pt;}
.y98{bottom:498.565269pt;}
.y65{bottom:498.716315pt;}
.yd5{bottom:501.920074pt;}
.y15c{bottom:503.845254pt;}
.ya1{bottom:504.315269pt;}
.y2b{bottom:504.965416pt;}
.yfd{bottom:506.561089pt;}
.y77{bottom:507.359788pt;}
.y14c{bottom:509.753953pt;}
.ye8{bottom:513.755564pt;}
.y140{bottom:513.761228pt;}
.ye9{bottom:515.683992pt;}
.y15b{bottom:515.835561pt;}
.yc6{bottom:516.165005pt;}
.y3{bottom:517.922905pt;}
.ye6{bottom:518.405327pt;}
.y13f{bottom:519.994741pt;}
.y11d{bottom:521.122451pt;}
.y10b{bottom:521.438342pt;}
.yd4{bottom:521.605523pt;}
.y122{bottom:521.762073pt;}
.y8c{bottom:525.920667pt;}
.yc2{bottom:528.796886pt;}
.yfc{bottom:529.120210pt;}
.y7a{bottom:530.399499pt;}
.y9f{bottom:531.203491pt;}
.y55{bottom:531.680249pt;}
.ya0{bottom:532.317575pt;}
.y66{bottom:532.640320pt;}
.y2a{bottom:532.956339pt;}
.y4f{bottom:533.761760pt;}
.y79{bottom:535.041929pt;}
.y26{bottom:535.530381pt;}
.y6c{bottom:537.123076pt;}
.yc5{bottom:537.759036pt;}
.y82{bottom:538.079747pt;}
.y37{bottom:538.242551pt;}
.y67{bottom:538.400227pt;}
.y86{bottom:539.196173pt;}
.y36{bottom:539.677638pt;}
.y50{bottom:539.678688pt;}
.y121{bottom:539.836535pt;}
.yd2{bottom:540.317094pt;}
.y85{bottom:543.995344pt;}
.y83{bottom:544.159997pt;}
.ye2{bottom:545.600883pt;}
.yd3{bottom:546.241924pt;}
.y10a{bottom:546.724548pt;}
.yb6{bottom:547.037937pt;}
.y14b{bottom:548.960331pt;}
.y135{bottom:551.358875pt;}
.yfb{bottom:551.523900pt;}
.ye3{bottom:551.682196pt;}
.y54{bottom:552.002439pt;}
.y11e{bottom:554.559031pt;}
.y78{bottom:556.316178pt;}
.y53{bottom:556.638236pt;}
.y6b{bottom:557.116090pt;}
.y90{bottom:559.681151pt;}
.y6a{bottom:561.764489pt;}
.y95{bottom:562.236155pt;}
.y156{bottom:562.246400pt;}
.yb{bottom:564.483257pt;}
.y84{bottom:565.756130pt;}
.ya7{bottom:569.285203pt;}
.y68{bottom:572.477436pt;}
.yfa{bottom:573.918482pt;}
.y2{bottom:575.042770pt;}
.y51{bottom:575.042843pt;}
.yb9{bottom:576.634225pt;}
.yc9{bottom:577.121301pt;}
.y69{bottom:578.240494pt;}
.y15a{bottom:579.518237pt;}
.y52{bottom:580.799305pt;}
.y109{bottom:581.921047pt;}
.y34{bottom:584.960376pt;}
.yae{bottom:585.276756pt;}
.yaf{bottom:587.205848pt;}
.y8f{bottom:587.683473pt;}
.y29{bottom:589.120653pt;}
.y94{bottom:590.238477pt;}
.yab{bottom:590.719521pt;}
.y146{bottom:593.603315pt;}
.y130{bottom:594.082375pt;}
.y112{bottom:596.162579pt;}
.yf9{bottom:596.322185pt;}
.ya{bottom:598.239033pt;}
.yf0{bottom:599.360113pt;}
.y106{bottom:599.679139pt;}
.yeb{bottom:600.481276pt;}
.yed{bottom:601.916740pt;}
.ybd{bottom:603.515340pt;}
.y74{bottom:603.994866pt;}
.yc8{bottom:605.123607pt;}
.y35{bottom:606.724238pt;}
.y3e{bottom:607.043680pt;}
.y108{bottom:607.196930pt;}
.y20{bottom:609.925641pt;}
.y14a{bottom:625.288131pt;}
.y1{bottom:635.672636pt;}
.y21{bottom:659.520570pt;}
.y25{bottom:659.831348pt;}
.y125{bottom:660.477518pt;}
.y99{bottom:660.797839pt;}
.ya9{bottom:660.964793pt;}
.y9d{bottom:661.438457pt;}
.y33{bottom:661.594335pt;}
.y10{bottom:661.750888pt;}
.yc7{bottom:662.719794pt;}
.y8b{bottom:663.048857pt;}
.yea{bottom:663.688699pt;}
.y92{bottom:664.000975pt;}
.yee{bottom:664.639334pt;}
.y103{bottom:664.968397pt;}
.yac{bottom:665.443701pt;}
.y3a{bottom:665.754493pt;}
.y71{bottom:665.922852pt;}
.ybc{bottom:666.083557pt;}
.y147{bottom:668.805679pt;}
.h34{height:0.321810pt;}
.hb{height:22.713262pt;}
.h7{height:32.108628pt;}
.h20{height:33.891678pt;}
.h1c{height:34.177213pt;}
.h2a{height:35.211248pt;}
.h39{height:35.376929pt;}
.h3e{height:35.971499pt;}
.h4e{height:41.097023pt;}
.h22{height:41.534138pt;}
.h1e{height:41.883125pt;}
.h28{height:42.320240pt;}
.h1a{height:43.010249pt;}
.h2c{height:43.150993pt;}
.h46{height:43.232071pt;}
.h3c{height:43.354275pt;}
.h32{height:46.991024pt;}
.h42{height:49.087807pt;}
.h48{height:49.158972pt;}
.h4b{height:49.316428pt;}
.h1f{height:49.840496pt;}
.h1b{height:50.259985pt;}
.h24{height:50.784053pt;}
.h29{height:51.780487pt;}
.h9{height:51.967601pt;}
.h8{height:51.972051pt;}
.h38{height:52.026070pt;}
.h2d{height:52.425670pt;}
.h3d{height:52.899125pt;}
.h47{height:53.031904pt;}
.h49{height:53.091831pt;}
.h4c{height:54.575907pt;}
.h45{height:55.016594pt;}
.h18{height:56.306341pt;}
.h35{height:56.396044pt;}
.h4f{height:57.183843pt;}
.h3a{height:57.574609pt;}
.h33{height:57.642761pt;}
.h25{height:58.208969pt;}
.h26{height:58.217324pt;}
.h43{height:58.522866pt;}
.h40{height:58.541667pt;}
.h4a{height:60.300701pt;}
.h4d{height:60.494583pt;}
.h21{height:61.137330pt;}
.h1d{height:61.651997pt;}
.h27{height:62.295919pt;}
.h37{height:62.411073pt;}
.h2b{height:63.517961pt;}
.h51{height:63.524875pt;}
.h3b{height:63.817596pt;}
.h2e{height:64.514874pt;}
.h3f{height:64.890408pt;}
.h17{height:64.929781pt;}
.hf{height:67.128859pt;}
.h10{height:67.154877pt;}
.h12{height:67.162538pt;}
.h19{height:67.984954pt;}
.h36{height:69.179303pt;}
.h11{height:70.262437pt;}
.he{height:74.477933pt;}
.hc{height:75.734852pt;}
.h14{height:83.767425pt;}
.h15{height:83.794591pt;}
.h3{height:84.021596pt;}
.h4{height:84.026085pt;}
.h16{height:88.398541pt;}
.h31{height:92.938042pt;}
.h5{height:92.964090pt;}
.h6{height:100.405991pt;}
.h44{height:106.845701pt;}
.h41{height:111.346737pt;}
.ha{height:111.398150pt;}
.h30{height:111.432751pt;}
.h2f{height:114.679391pt;}
.h23{height:117.619151pt;}
.h50{height:130.495758pt;}
.hd{height:134.257717pt;}
.h13{height:184.748010pt;}
.h2{height:201.386576pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w2{width:11.678959pt;}
.w4{width:21.759308pt;}
.w3{width:23.357792pt;}
.w5{width:303.356810pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7{left:8.638093pt;}
.x4{left:21.759333pt;}
.x3e{left:34.242716pt;}
.x5e{left:35.996971pt;}
.xe{left:38.244438pt;}
.x5f{left:40.800723pt;}
.x6f{left:44.324103pt;}
.x39{left:46.883135pt;}
.x57{left:48.961724pt;}
.x79{left:50.244012pt;}
.x3{left:52.001048pt;}
.x7a{left:54.236187pt;}
.x9c{left:58.242036pt;}
.x75{left:59.199066pt;}
.xab{left:61.276754pt;}
.xc4{left:62.877557pt;}
.x58{left:64.959239pt;}
.x19{left:68.323379pt;}
.xf{left:69.761364pt;}
.x78{left:73.115485pt;}
.x8{left:75.195120pt;}
.x20{left:78.719194pt;}
.x13{left:80.958648pt;}
.xc0{left:81.919615pt;}
.x56{left:83.201132pt;}
.x9b{left:86.717641pt;}
.x2a{left:87.839457pt;}
.x8b{left:92.322109pt;}
.x2c{left:95.679589pt;}
.x17{left:96.801518pt;}
.x4c{left:98.561324pt;}
.x1a{left:99.838817pt;}
.xb8{left:102.720016pt;}
.xc5{left:104.966768pt;}
.x9{left:106.722380pt;}
.x95{left:109.762391pt;}
.x2d{left:111.201477pt;}
.x14{left:112.484714pt;}
.x2b{left:114.085209pt;}
.x9d{left:115.995793pt;}
.x69{left:117.118835pt;}
.x1{left:118.407851pt;}
.xa{left:122.554373pt;}
.x64{left:124.322529pt;}
.x65{left:126.561449pt;}
.x5{left:129.122561pt;}
.x16{left:131.039271pt;}
.x4b{left:132.802016pt;}
.xb7{left:134.082919pt;}
.xa6{left:137.603188pt;}
.x6b{left:140.156919pt;}
.xc1{left:141.274312pt;}
.x6c{left:147.197531pt;}
.x1d{left:148.476180pt;}
.xa8{left:154.403689pt;}
.x2e{left:156.482112pt;}
.x63{left:159.047136pt;}
.x72{left:161.277169pt;}
.x74{left:165.436097pt;}
.xa5{left:168.474981pt;}
.x2f{left:171.997067pt;}
.x6d{left:174.233932pt;}
.x29{left:186.237806pt;}
.x25{left:187.364835pt;}
.x62{left:200.798307pt;}
.xb3{left:204.321171pt;}
.x30{left:217.284645pt;}
.x15{left:219.521614pt;}
.x6a{left:222.874209pt;}
.x3a{left:227.037007pt;}
.x59{left:229.121430pt;}
.x12{left:232.002915pt;}
.xa9{left:233.438029pt;}
.x2{left:238.570704pt;}
.x18{left:241.123323pt;}
.x60{left:260.956072pt;}
.x98{left:263.360119pt;}
.x3f{left:268.478012pt;}
.x3b{left:275.364105pt;}
.x8c{left:276.954911pt;}
.x31{left:278.080338pt;}
.x3c{left:281.922876pt;}
.x5a{left:283.839413pt;}
.xb9{left:286.399514pt;}
.x5b{left:290.562473pt;}
.xa4{left:292.317656pt;}
.x32{left:293.598696pt;}
.x3d{left:295.203375pt;}
.x1c{left:301.279097pt;}
.x5c{left:304.322351pt;}
.x71{left:309.598829pt;}
.x5d{left:311.039966pt;}
.xa7{left:312.645045pt;}
.x88{left:317.276317pt;}
.xaa{left:320.321855pt;}
.xba{left:323.197935pt;}
.x87{left:325.921233pt;}
.x6{left:331.993293pt;}
.x86{left:334.558448pt;}
.x33{left:338.882850pt;}
.x34{left:354.398951pt;}
.x84{left:361.603724pt;}
.x67{left:370.075471pt;}
.x76{left:371.512174pt;}
.x6e{left:379.038079pt;}
.xc8{left:386.393135pt;}
.x85{left:391.674623pt;}
.x9e{left:395.369250pt;}
.x68{left:396.321205pt;}
.x35{left:401.284368pt;}
.x9f{left:406.557385pt;}
.xc6{left:408.010360pt;}
.x99{left:411.511624pt;}
.x36{left:416.796432pt;}
.x4a{left:419.037309pt;}
.x96{left:421.605007pt;}
.x61{left:428.957909pt;}
.xc2{left:430.401650pt;}
.x77{left:433.595386pt;}
.xa0{left:438.083443pt;}
.xa1{left:448.643440pt;}
.xc7{left:452.310641pt;}
.x37{left:462.087756pt;}
.xd{left:463.357335pt;}
.xa3{left:471.044617pt;}
.x38{left:477.596658pt;}
.xc{left:494.727990pt;}
.x23{left:542.714905pt;}
.x89{left:557.763393pt;}
.x24{left:574.240164pt;}
.x47{left:579.354050pt;}
.x48{left:584.006655pt;}
.x41{left:589.753304pt;}
.x22{left:592.799069pt;}
.x4f{left:595.364541pt;}
.x92{left:597.274350pt;}
.x93{left:602.072603pt;}
.xbd{left:604.487126pt;}
.x8f{left:608.153707pt;}
.xbc{left:612.163174pt;}
.x8e{left:613.760965pt;}
.x42{left:620.968536pt;}
.x90{left:624.310345pt;}
.x1f{left:626.396611pt;}
.x4e{left:628.962595pt;}
.x40{left:630.394107pt;}
.x7c{left:634.236699pt;}
.x80{left:637.920579pt;}
.x7d{left:641.600466pt;}
.x8d{left:642.557645pt;}
.xb0{left:643.844077pt;}
.x7f{left:645.280392pt;}
.xae{left:650.085220pt;}
.x7e{left:652.479822pt;}
.xaf{left:656.647862pt;}
.xac{left:660.804383pt;}
.xbb{left:662.087024pt;}
.x7b{left:666.401721pt;}
.xad{left:673.443988pt;}
.x8a{left:684.958245pt;}
.xb4{left:689.595550pt;}
.x73{left:692.803628pt;}
.xc3{left:696.482513pt;}
.x70{left:701.280867pt;}
.x10{left:703.200861pt;}
.x82{left:710.397728pt;}
.x27{left:712.645145pt;}
.x26{left:718.244909pt;}
.x4d{left:721.271588pt;}
.x11{left:734.724632pt;}
.xb5{left:751.038583pt;}
.x50{left:774.393470pt;}
.x43{left:775.998540pt;}
.xb6{left:777.283857pt;}
.xb1{left:788.168454pt;}
.xa2{left:795.841225pt;}
.x97{left:798.875612pt;}
.x1b{left:802.870990pt;}
.x81{left:807.836992pt;}
.x49{left:809.599193pt;}
.x9a{left:811.839132pt;}
.xb2{left:817.448507pt;}
.x94{left:821.113147pt;}
.x51{left:823.039075pt;}
.x44{left:828.476479pt;}
.x52{left:829.753839pt;}
.x45{left:835.034660pt;}
.x53{left:843.199700pt;}
.x21{left:848.005748pt;}
.x54{left:849.751553pt;}
.x83{left:851.204965pt;}
.x46{left:854.715126pt;}
.xbf{left:864.322770pt;}
.xbe{left:912.963860pt;}
.x91{left:948.315689pt;}
.x55{left:978.076732pt;}
.x1e{left:1069.597535pt;}
.x28{left:1071.196020pt;}
.x66{left:1076.334120pt;}
.xb{left:1081.276368pt;}
}




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