
    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_048d698695705b37f45595b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.638000;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_b29c74e2638a343438aefc28.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_e0141ab5ab8bba3ca179ef8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_c738d26b3b3edbdbffd21e3d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;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_ed0bca75544932de21b464b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_821fd7d9f055f67ff471d36e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_a3452630cfb0fb4059ff4edc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.988000;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_cd26254519a3859b9d81afee.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.999000;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_b4a7e6f69ad99a1016768fba.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_1e15d15b490161f03f84a572.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4664bf1a7b12a017cf505517.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m12{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v24{vertical-align:-102.246000px;}
.v12{vertical-align:-75.882000px;}
.v19{vertical-align:-49.554000px;}
.v2{vertical-align:-19.524000px;}
.v6{vertical-align:-17.934000px;}
.v21{vertical-align:-12.510000px;}
.v17{vertical-align:-11.442000px;}
.v3{vertical-align:-8.964000px;}
.v10{vertical-align:-6.276000px;}
.v0{vertical-align:0.000000px;}
.v1b{vertical-align:1.104000px;}
.v9{vertical-align:6.816000px;}
.va{vertical-align:8.970000px;}
.v18{vertical-align:11.442000px;}
.v8{vertical-align:15.786000px;}
.v1e{vertical-align:16.794000px;}
.ve{vertical-align:17.934000px;}
.v16{vertical-align:20.244000px;}
.v1{vertical-align:21.702000px;}
.v7{vertical-align:24.684000px;}
.v1c{vertical-align:29.028000px;}
.v13{vertical-align:38.088000px;}
.v4{vertical-align:40.470000px;}
.v1f{vertical-align:43.458000px;}
.v1d{vertical-align:45.774000px;}
.v1a{vertical-align:48.450000px;}
.v14{vertical-align:49.782000px;}
.vc{vertical-align:65.688000px;}
.vd{vertical-align:81.474000px;}
.v22{vertical-align:84.684000px;}
.v20{vertical-align:92.532000px;}
.v11{vertical-align:94.446000px;}
.v15{vertical-align:96.126000px;}
.v23{vertical-align:100.344000px;}
.v5{vertical-align:102.246000px;}
.vb{vertical-align:125.316000px;}
.vf{vertical-align:140.478000px;}
.ls4{letter-spacing:0.000000px;}
.ls77{letter-spacing:0.003178px;}
.ls23{letter-spacing:0.503764px;}
.ls19{letter-spacing:0.542815px;}
.ls10{letter-spacing:0.548815px;}
.ls30{letter-spacing:0.564600px;}
.ls4c{letter-spacing:0.724893px;}
.ls55{letter-spacing:0.741762px;}
.ls62{letter-spacing:0.742115px;}
.ls40{letter-spacing:0.747762px;}
.ls65{letter-spacing:0.748115px;}
.ls25{letter-spacing:0.894600px;}
.ls1f{letter-spacing:0.896591px;}
.ls2f{letter-spacing:1.021200px;}
.ls28{letter-spacing:1.025764px;}
.ls63{letter-spacing:1.135092px;}
.ls22{letter-spacing:1.299204px;}
.ls76{letter-spacing:1.310725px;}
.ls9{letter-spacing:1.312200px;}
.ls4d{letter-spacing:1.312483px;}
.ls2e{letter-spacing:1.318200px;}
.ls26{letter-spacing:1.356600px;}
.ls29{letter-spacing:1.404600px;}
.ls3d{letter-spacing:1.414741px;}
.ls36{letter-spacing:1.420741px;}
.ls27{letter-spacing:1.466302px;}
.lse{letter-spacing:1.474893px;}
.lsf{letter-spacing:1.485181px;}
.ls18{letter-spacing:1.491181px;}
.ls37{letter-spacing:1.491762px;}
.ls41{letter-spacing:1.492200px;}
.ls35{letter-spacing:1.493108px;}
.ls39{letter-spacing:1.493675px;}
.ls3e{letter-spacing:1.497762px;}
.ls4e{letter-spacing:1.497986px;}
.ls57{letter-spacing:1.498200px;}
.ls13{letter-spacing:1.942200px;}
.ls43{letter-spacing:1.996483px;}
.ls6e{letter-spacing:1.997510px;}
.ls69{letter-spacing:2.003510px;}
.ls8{letter-spacing:2.086200px;}
.lsc{letter-spacing:2.088172px;}
.ls68{letter-spacing:2.211634px;}
.ls49{letter-spacing:2.614741px;}
.ls56{letter-spacing:2.620741px;}
.ls64{letter-spacing:2.678012px;}
.ls78{letter-spacing:2.691986px;}
.ls4a{letter-spacing:2.914741px;}
.ls52{letter-spacing:2.985586px;}
.ls0{letter-spacing:2.989200px;}
.ls42{letter-spacing:2.991586px;}
.ls38{letter-spacing:3.108583px;}
.ls31{letter-spacing:3.507900px;}
.ls4f{letter-spacing:3.586483px;}
.ls3f{letter-spacing:3.688741px;}
.ls54{letter-spacing:3.694741px;}
.ls2a{letter-spacing:4.184100px;}
.ls3a{letter-spacing:4.303142px;}
.ls4b{letter-spacing:4.309142px;}
.ls12{letter-spacing:4.759200px;}
.ls48{letter-spacing:5.299829px;}
.ls3c{letter-spacing:5.305829px;}
.ls58{letter-spacing:6.165943px;}
.ls2b{letter-spacing:8.370049px;}
.ls66{letter-spacing:8.654012px;}
.ls1b{letter-spacing:8.663108px;}
.ls16{letter-spacing:8.669108px;}
.ls61{letter-spacing:9.844893px;}
.ls46{letter-spacing:11.434893px;}
.ls53{letter-spacing:11.440893px;}
.ls21{letter-spacing:11.781088px;}
.ls3{letter-spacing:11.954850px;}
.ls45{letter-spacing:13.086783px;}
.ls15{letter-spacing:13.089483px;}
.lsd{letter-spacing:13.092783px;}
.ls17{letter-spacing:13.107181px;}
.ls7b{letter-spacing:13.448400px;}
.ls7a{letter-spacing:13.454400px;}
.ls79{letter-spacing:13.529209px;}
.ls1a{letter-spacing:13.710583px;}
.ls14{letter-spacing:13.716583px;}
.ls33{letter-spacing:14.121178px;}
.ls32{letter-spacing:14.126400px;}
.ls5{letter-spacing:14.525471px;}
.ls34{letter-spacing:14.658845px;}
.ls6{letter-spacing:14.704798px;}
.ls7{letter-spacing:14.884124px;}
.ls5d{letter-spacing:15.242778px;}
.ls72{letter-spacing:16.260088px;}
.ls75{letter-spacing:16.266088px;}
.ls74{letter-spacing:16.290088px;}
.ls71{letter-spacing:16.559510px;}
.ls73{letter-spacing:16.583510px;}
.ls44{letter-spacing:16.927829px;}
.ls60{letter-spacing:17.325483px;}
.ls6d{letter-spacing:17.562088px;}
.ls5f{letter-spacing:17.633802px;}
.ls70{letter-spacing:17.838088px;}
.ls6c{letter-spacing:17.849510px;}
.ls1e{letter-spacing:18.069483px;}
.ls1d{letter-spacing:18.100200px;}
.ls6f{letter-spacing:18.131510px;}
.lsa{letter-spacing:18.694200px;}
.ls51{letter-spacing:20.262783px;}
.ls6b{letter-spacing:20.430088px;}
.ls6a{letter-spacing:20.723510px;}
.ls20{letter-spacing:21.668100px;}
.ls5b{letter-spacing:23.256783px;}
.ls3b{letter-spacing:24.720267px;}
.ls47{letter-spacing:24.726267px;}
.ls50{letter-spacing:25.245483px;}
.ls5a{letter-spacing:26.433483px;}
.lsb{letter-spacing:43.431483px;}
.ls1{letter-spacing:70.236600px;}
.ls2{letter-spacing:72.353510px;}
.ls2c{letter-spacing:72.363204px;}
.ls2d{letter-spacing:82.821204px;}
.ls11{letter-spacing:88.135200px;}
.ls5e{letter-spacing:93.544200px;}
.ls24{letter-spacing:97.476600px;}
.ls1c{letter-spacing:481.078893px;}
.ls67{letter-spacing:516.862893px;}
.ls59{letter-spacing:659.854893px;}
.ls5c{letter-spacing:753.915762px;}
.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;}
}
.ws4c{word-spacing:-62.286600px;}
.ws3{word-spacing:-14.943900px;}
.ws4{word-spacing:-13.449600px;}
.ws1d{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws50{word-spacing:-5.200477px;}
.ws4b{word-spacing:-4.961375px;}
.ws49{word-spacing:-4.782048px;}
.ws27{word-spacing:-3.048556px;}
.ws56{word-spacing:-2.988780px;}
.ws48{word-spacing:-2.630126px;}
.wsb0{word-spacing:-2.582323px;}
.ws73{word-spacing:-2.575500px;}
.wsa1{word-spacing:-2.570351px;}
.ws3c{word-spacing:-2.510575px;}
.ws78{word-spacing:-2.450800px;}
.ws25{word-spacing:-2.391024px;}
.ws83{word-spacing:-2.211697px;}
.ws7d{word-spacing:-2.151936px;}
.ws97{word-spacing:-2.151922px;}
.ws76{word-spacing:-2.098138px;}
.ws54{word-spacing:-2.032370px;}
.ws8b{word-spacing:-1.972595px;}
.ws7e{word-spacing:-1.936742px;}
.ws77{word-spacing:-1.882944px;}
.ws47{word-spacing:-1.853044px;}
.ws84{word-spacing:-1.793268px;}
.ws10{word-spacing:-1.673717px;}
.wsa3{word-spacing:-1.613941px;}
.ws87{word-spacing:-1.554166px;}
.ws2f{word-spacing:-1.494390px;}
.ws64{word-spacing:-1.374839px;}
.ws19{word-spacing:-1.315063px;}
.ws4a{word-spacing:-1.075961px;}
.ws11{word-spacing:-0.777083px;}
.ws4e{word-spacing:-0.717307px;}
.ws7f{word-spacing:-0.699379px;}
.ws4d{word-spacing:-0.657532px;}
.ws59{word-spacing:-0.591782px;}
.ws37{word-spacing:-0.537984px;}
.ws63{word-spacing:-0.537980px;}
.ws38{word-spacing:-0.519429px;}
.ws3a{word-spacing:-0.478205px;}
.ws41{word-spacing:-0.418429px;}
.wsbe{word-spacing:-0.376589px;}
.ws2d{word-spacing:-0.358654px;}
.ws99{word-spacing:-0.322790px;}
.ws3b{word-spacing:-0.298878px;}
.wsa7{word-spacing:-0.268992px;}
.ws5b{word-spacing:-0.248053px;}
.wsa{word-spacing:-0.239102px;}
.wsb2{word-spacing:-0.215194px;}
.ws1{word-spacing:-0.179327px;}
.ws34{word-spacing:-0.161395px;}
.ws24{word-spacing:-0.119551px;}
.ws39{word-spacing:-0.107597px;}
.ws93{word-spacing:-0.100198px;}
.ws23{word-spacing:-0.059776px;}
.ws33{word-spacing:-0.053798px;}
.ws1e{word-spacing:-0.047821px;}
.ws8a{word-spacing:-0.045430px;}
.ws3e{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws58{word-spacing:0.053798px;}
.ws1a{word-spacing:0.059776px;}
.ws36{word-spacing:0.105745px;}
.ws35{word-spacing:0.107597px;}
.ws1b{word-spacing:0.119551px;}
.ws75{word-spacing:0.161395px;}
.ws17{word-spacing:0.179327px;}
.ws6e{word-spacing:0.215194px;}
.ws16{word-spacing:0.239102px;}
.ws45{word-spacing:0.268992px;}
.ws26{word-spacing:0.298878px;}
.wsc1{word-spacing:0.322790px;}
.wse{word-spacing:0.358654px;}
.ws8d{word-spacing:0.430387px;}
.ws5a{word-spacing:0.537980px;}
.ws8e{word-spacing:0.537984px;}
.ws8f{word-spacing:0.591782px;}
.ws2b{word-spacing:0.657532px;}
.ws20{word-spacing:0.717307px;}
.ws95{word-spacing:0.777083px;}
.ws6d{word-spacing:0.914573px;}
.ws9f{word-spacing:1.016185px;}
.ws57{word-spacing:1.135736px;}
.ws94{word-spacing:1.183565px;}
.wsa2{word-spacing:1.195512px;}
.ws67{word-spacing:1.315063px;}
.ws68{word-spacing:1.374839px;}
.ws53{word-spacing:1.434614px;}
.wsa0{word-spacing:1.494390px;}
.wsb{word-spacing:1.554166px;}
.ws7{word-spacing:1.613941px;}
.wsa8{word-spacing:1.667750px;}
.ws65{word-spacing:1.673717px;}
.ws66{word-spacing:1.721549px;}
.ws21{word-spacing:1.733492px;}
.ws46{word-spacing:1.747709px;}
.ws18{word-spacing:1.853044px;}
.wsb7{word-spacing:1.882944px;}
.ws8c{word-spacing:1.936742px;}
.ws9d{word-spacing:2.032370px;}
.ws51{word-spacing:2.092146px;}
.ws70{word-spacing:2.211697px;}
.ws6f{word-spacing:2.271473px;}
.wsae{word-spacing:2.313331px;}
.ws74{word-spacing:2.338200px;}
.ws81{word-spacing:2.367130px;}
.ws29{word-spacing:2.391024px;}
.wsd{word-spacing:2.450800px;}
.ws7c{word-spacing:2.474726px;}
.wsf{word-spacing:2.510575px;}
.ws22{word-spacing:2.570351px;}
.ws4f{word-spacing:2.630126px;}
.ws2c{word-spacing:2.689902px;}
.ws80{word-spacing:2.689920px;}
.ws92{word-spacing:2.749678px;}
.ws7b{word-spacing:2.797517px;}
.ws9{word-spacing:2.809453px;}
.ws5f{word-spacing:2.869229px;}
.ws62{word-spacing:2.891303px;}
.ws8{word-spacing:2.929004px;}
.ws3d{word-spacing:2.988780px;}
.ws2e{word-spacing:3.048556px;}
.wsb5{word-spacing:3.224362px;}
.wsbc{word-spacing:3.226618px;}
.ws5{word-spacing:3.227904px;}
.ws31{word-spacing:3.287658px;}
.wsa9{word-spacing:3.389299px;}
.ws9e{word-spacing:3.407209px;}
.ws15{word-spacing:3.586536px;}
.ws5d{word-spacing:3.646312px;}
.ws61{word-spacing:3.688671px;}
.ws60{word-spacing:3.694553px;}
.ws13{word-spacing:3.706087px;}
.wsb3{word-spacing:4.034880px;}
.ws7a{word-spacing:4.088678px;}
.ws9b{word-spacing:4.124516px;}
.ws1f{word-spacing:4.184292px;}
.ws79{word-spacing:4.465267px;}
.ws6c{word-spacing:4.572864px;}
.wsa4{word-spacing:4.722272px;}
.ws9c{word-spacing:5.021150px;}
.ws3f{word-spacing:5.200477px;}
.wsab{word-spacing:5.218445px;}
.ws40{word-spacing:5.260253px;}
.ws32{word-spacing:5.320028px;}
.ws90{word-spacing:5.379804px;}
.ws69{word-spacing:5.439580px;}
.ws2a{word-spacing:5.858009px;}
.ws91{word-spacing:5.977560px;}
.wsc{word-spacing:6.037336px;}
.ws44{word-spacing:6.156887px;}
.ws82{word-spacing:6.276438px;}
.ws71{word-spacing:6.336214px;}
.ws89{word-spacing:6.455765px;}
.wsa6{word-spacing:6.455808px;}
.ws96{word-spacing:6.575316px;}
.ws6{word-spacing:6.754643px;}
.ws5c{word-spacing:6.933970px;}
.wsa5{word-spacing:7.053521px;}
.ws85{word-spacing:7.651277px;}
.ws42{word-spacing:7.770828px;}
.ws6b{word-spacing:7.830604px;}
.ws86{word-spacing:7.950155px;}
.ws30{word-spacing:8.069706px;}
.ws12{word-spacing:8.129482px;}
.ws14{word-spacing:8.368584px;}
.ws6a{word-spacing:9.145667px;}
.ws88{word-spacing:10.042301px;}
.ws52{word-spacing:10.460730px;}
.wsb6{word-spacing:10.544486px;}
.wsbf{word-spacing:11.620454px;}
.ws1c{word-spacing:11.904472px;}
.wsb4{word-spacing:11.943245px;}
.wsba{word-spacing:12.750221px;}
.ws43{word-spacing:13.150632px;}
.wsac{word-spacing:13.288205px;}
.wsb9{word-spacing:13.389581px;}
.wsad{word-spacing:13.395802px;}
.wsbb{word-spacing:13.396714px;}
.ws5e{word-spacing:14.884124px;}
.wsb1{word-spacing:16.569907px;}
.wsaf{word-spacing:16.623475px;}
.wsc0{word-spacing:16.623706px;}
.wsaa{word-spacing:16.785101px;}
.ws98{word-spacing:17.693578px;}
.wsbd{word-spacing:17.914867px;}
.wsb8{word-spacing:18.022464px;}
.ws55{word-spacing:18.041875px;}
.ws28{word-spacing:18.231558px;}
.ws72{word-spacing:20.859953px;}
.ws9a{word-spacing:22.356074px;}
._3{margin-left:-6.939994px;}
._4{margin-left:-4.949453px;}
._2{margin-left:-3.227882px;}
._19{margin-left:-2.092146px;}
._8{margin-left:-1.075961px;}
._17{width:1.494390px;}
._0{width:3.043738px;}
._1{width:4.127434px;}
._1c{width:5.911950px;}
._5{width:12.481229px;}
._1b{width:13.748388px;}
._14{width:15.607344px;}
._7{width:16.677504px;}
._e{width:17.992456px;}
._a{width:19.014665px;}
._d{width:20.030850px;}
._16{width:21.758318px;}
._1f{width:22.774504px;}
._1a{width:23.790689px;}
._15{width:25.165528px;}
._b{width:26.241488px;}
._9{width:27.735878px;}
._11{width:29.708473px;}
._30{width:31.317240px;}
._20{width:33.235234px;}
._31{width:36.044928px;}
._12{width:37.778179px;}
._13{width:39.332345px;}
._1d{width:40.707184px;}
._c{width:43.337310px;}
._33{width:52.722432px;}
._18{width:58.696722px;}
._6{width:63.858701px;}
._32{width:70.906284px;}
._26{width:72.143654px;}
._27{width:74.833574px;}
._2f{width:88.767360px;}
._2d{width:107.327808px;}
._2a{width:110.717107px;}
._21{width:112.707648px;}
._29{width:115.774157px;}
._28{width:117.818496px;}
._23{width:123.305933px;}
._2e{width:125.457869px;}
._25{width:130.945306px;}
._22{width:132.666854px;}
._24{width:133.904218px;}
._2b{width:137.992896px;}
._2c{width:152.034278px;}
._f{width:997.781019px;}
._1e{width:2045.288700px;}
._10{width:2069.198700px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,121,123);}
.fsb{font-size:29.887800px;}
.fs4{font-size:41.842800px;}
.fs8{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fsa{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs7{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y2{bottom:16.015847px;}
.y2e{bottom:63.780000px;}
.y2d{bottom:108.612000px;}
.y17a{bottom:113.832000px;}
.y103{bottom:114.381000px;}
.ya2{bottom:119.547000px;}
.y1b7{bottom:119.844000px;}
.yed{bottom:123.306000px;}
.y2c{bottom:128.875500px;}
.yba{bottom:132.828000px;}
.y102{bottom:133.614000px;}
.y179{bottom:134.097000px;}
.y1b6{bottom:139.210500px;}
.ya1{bottom:139.810500px;}
.y140{bottom:141.795000px;}
.y60{bottom:143.386500px;}
.yec{bottom:143.571000px;}
.y2b{bottom:149.139000px;}
.yb9{bottom:153.093000px;}
.y178{bottom:154.360500px;}
.y1b5{bottom:158.578500px;}
.y13f{bottom:162.058500px;}
.y5f{bottom:163.650000px;}
.yeb{bottom:163.834500px;}
.ya0{bottom:167.865000px;}
.y9e{bottom:169.057500px;}
.y2a{bottom:169.404000px;}
.yb8{bottom:173.356500px;}
.y177{bottom:174.624000px;}
.y1b4{bottom:177.946500px;}
.y9f{bottom:179.308500px;}
.y13e{bottom:182.323500px;}
.y5e{bottom:183.913500px;}
.yea{bottom:184.099500px;}
.y9d{bottom:189.426000px;}
.y29{bottom:189.667500px;}
.y122{bottom:193.114500px;}
.yb6{bottom:193.621500px;}
.y176{bottom:194.889000px;}
.y10f{bottom:195.759000px;}
.y1b3{bottom:197.313000px;}
.yb7{bottom:199.045500px;}
.y13d{bottom:202.587000px;}
.y159{bottom:203.716500px;}
.y5d{bottom:204.178500px;}
.y28{bottom:209.932500px;}
.y121{bottom:212.347500px;}
.ye9{bottom:213.330000px;}
.yb5{bottom:213.885000px;}
.y175{bottom:215.152500px;}
.y1b2{bottom:216.681000px;}
.y11c{bottom:218.430000px;}
.y82{bottom:219.121500px;}
.y13c{bottom:222.852000px;}
.y158{bottom:223.980000px;}
.y5c{bottom:224.442000px;}
.y9c{bottom:225.598500px;}
.y27{bottom:230.196000px;}
.y120{bottom:231.580500px;}
.y169{bottom:232.101000px;}
.y174{bottom:235.417500px;}
.y1b1{bottom:236.047500px;}
.y11b{bottom:237.663000px;}
.y81{bottom:239.385000px;}
.y13b{bottom:243.115500px;}
.y157{bottom:244.245000px;}
.y5b{bottom:244.707000px;}
.y9b{bottom:245.863500px;}
.y26{bottom:250.459500px;}
.y168{bottom:252.364500px;}
.ye8{bottom:253.918500px;}
.y185{bottom:254.434500px;}
.y1b0{bottom:255.415500px;}
.y173{bottom:255.681000px;}
.y11a{bottom:256.896000px;}
.yb4{bottom:257.851500px;}
.y80{bottom:259.650000px;}
.y13a{bottom:263.379000px;}
.y156{bottom:264.508500px;}
.y5a{bottom:264.970500px;}
.y9a{bottom:266.127000px;}
.y184{bottom:269.632500px;}
.y167{bottom:274.123500px;}
.yda{bottom:274.255500px;}
.y1af{bottom:274.783500px;}
.y172{bottom:275.944500px;}
.yb3{bottom:277.084500px;}
.y25{bottom:279.690000px;}
.y7f{bottom:279.913500px;}
.y139{bottom:283.644000px;}
.y155{bottom:284.773500px;}
.y183{bottom:284.830500px;}
.y59{bottom:285.234000px;}
.y99{bottom:286.392000px;}
.y1ae{bottom:294.150000px;}
.y166{bottom:294.387000px;}
.yd9{bottom:296.013000px;}
.y171{bottom:296.209500px;}
.yb2{bottom:296.317500px;}
.y7e{bottom:300.177000px;}
.y138{bottom:303.907500px;}
.y154{bottom:305.037000px;}
.y58{bottom:305.499000px;}
.y98{bottom:306.655500px;}
.y182{bottom:308.995500px;}
.y1ad{bottom:313.518000px;}
.y165{bottom:316.146000px;}
.yd8{bottom:317.772000px;}
.y7d{bottom:320.442000px;}
.y137{bottom:324.172500px;}
.y181{bottom:324.193500px;}
.y153{bottom:325.300500px;}
.y170{bottom:325.440000px;}
.y57{bottom:325.762500px;}
.y97{bottom:326.919000px;}
.y1ac{bottom:332.884500px;}
.y164{bottom:336.409500px;}
.y180{bottom:339.391500px;}
.y136{bottom:344.436000px;}
.y152{bottom:345.565500px;}
.y56{bottom:346.027500px;}
.y96{bottom:347.184000px;}
.yd7{bottom:349.990500px;}
.y7c{bottom:351.358500px;}
.y7b{bottom:351.778500px;}
.y1ab{bottom:352.252500px;}
.y24{bottom:355.015500px;}
.y76{bottom:359.055000px;}
.y7a{bottom:361.717500px;}
.y75{bottom:363.538500px;}
.y17f{bottom:363.556500px;}
.y135{bottom:364.699500px;}
.y150{bottom:365.829000px;}
.y16f{bottom:366.028500px;}
.y55{bottom:366.291000px;}
.y95{bottom:367.447500px;}
.yd6{bottom:370.255500px;}
.y151{bottom:371.254500px;}
.y163{bottom:371.617500px;}
.y1aa{bottom:371.620500px;}
.y72{bottom:373.251000px;}
.y23{bottom:375.279000px;}
.y17e{bottom:378.754500px;}
.y134{bottom:384.964500px;}
.y79{bottom:385.024500px;}
.y16e{bottom:385.261500px;}
.y78{bottom:385.444500px;}
.y14f{bottom:386.094000px;}
.y54{bottom:386.554500px;}
.y94{bottom:387.711000px;}
.y74{bottom:390.436500px;}
.yd5{bottom:390.519000px;}
.y1a9{bottom:390.987000px;}
.y17d{bottom:393.952500px;}
.y73{bottom:394.920000px;}
.y77{bottom:395.383500px;}
.y162{bottom:400.848000px;}
.y16d{bottom:404.494500px;}
.y133{bottom:405.228000px;}
.y14e{bottom:406.357500px;}
.y53{bottom:406.819500px;}
.y93{bottom:407.976000px;}
.y1a8{bottom:410.355000px;}
.yd4{bottom:410.784000px;}
.y101{bottom:412.758000px;}
.y22{bottom:413.476500px;}
.y132{bottom:425.493000px;}
.y14d{bottom:426.621000px;}
.y52{bottom:427.083000px;}
.y92{bottom:428.239500px;}
.y1a7{bottom:429.721500px;}
.yd3{bottom:431.047500px;}
.y71{bottom:431.920500px;}
.y100{bottom:433.021500px;}
.y21{bottom:433.740000px;}
.y161{bottom:441.438000px;}
.y70{bottom:442.171500px;}
.y131{bottom:445.756500px;}
.y14c{bottom:446.886000px;}
.y51{bottom:447.348000px;}
.y91{bottom:448.504500px;}
.y1a6{bottom:449.089500px;}
.yd1{bottom:451.311000px;}
.yff{bottom:453.286500px;}
.y20{bottom:454.005000px;}
.yd2{bottom:456.736500px;}
.y12f{bottom:466.020000px;}
.y50{bottom:467.611500px;}
.y1a5{bottom:468.457500px;}
.y8f{bottom:468.768000px;}
.y130{bottom:471.445500px;}
.yd0{bottom:471.576000px;}
.yfe{bottom:473.550000px;}
.y1f{bottom:474.268500px;}
.y90{bottom:481.156500px;}
.y12e{bottom:486.285000px;}
.y1a4{bottom:487.824000px;}
.y4f{bottom:487.875000px;}
.y14b{bottom:490.852500px;}
.y6f{bottom:491.046000px;}
.yfd{bottom:493.813500px;}
.y1e{bottom:494.533500px;}
.ye7{bottom:496.900500px;}
.ycf{bottom:500.806500px;}
.y12d{bottom:506.548500px;}
.y1a3{bottom:507.192000px;}
.y4e{bottom:508.140000px;}
.y14a{bottom:510.085500px;}
.y6e{bottom:511.309500px;}
.y8e{bottom:512.734500px;}
.yfc{bottom:514.078500px;}
.y1d{bottom:514.797000px;}
.ye6{bottom:518.659500px;}
.y1a2{bottom:526.558500px;}
.y12c{bottom:526.813500px;}
.y4d{bottom:528.403500px;}
.y149{bottom:529.318500px;}
.y6d{bottom:531.573000px;}
.yfb{bottom:534.342000px;}
.y1c{bottom:535.060500px;}
.yce{bottom:535.626000px;}
.ye5{bottom:540.417000px;}
.y1a1{bottom:545.926500px;}
.y10e{bottom:546.925500px;}
.y12b{bottom:547.077000px;}
.y148{bottom:548.551500px;}
.y4c{bottom:548.667000px;}
.y6c{bottom:551.838000px;}
.yfa{bottom:554.607000px;}
.y1b{bottom:555.325500px;}
.ycd{bottom:555.889500px;}
.ye4{bottom:562.176000px;}
.y1a0{bottom:565.294500px;}
.y10d{bottom:566.158500px;}
.y129{bottom:567.340500px;}
.y147{bottom:567.784500px;}
.y4b{bottom:568.932000px;}
.y12a{bottom:572.766000px;}
.yf9{bottom:574.870500px;}
.y1a{bottom:575.589000px;}
.ycc{bottom:576.154500px;}
.y6b{bottom:581.068500px;}
.ye3{bottom:583.935000px;}
.y19f{bottom:584.661000px;}
.y146{bottom:587.016000px;}
.y128{bottom:587.605500px;}
.y4a{bottom:589.195500px;}
.y19{bottom:595.854000px;}
.ycb{bottom:596.418000px;}
.y19e{bottom:604.029000px;}
.yf8{bottom:604.101000px;}
.y145{bottom:606.249000px;}
.y127{bottom:607.869000px;}
.y49{bottom:609.460500px;}
.y6a{bottom:615.888000px;}
.y18{bottom:616.117500px;}
.ye2{bottom:616.153500px;}
.yca{bottom:616.681500px;}
.y19d{bottom:623.395500px;}
.y144{bottom:625.482000px;}
.y48{bottom:629.724000px;}
.y69{bottom:636.151500px;}
.y17{bottom:636.381000px;}
.ye1{bottom:636.418500px;}
.yc9{bottom:636.946500px;}
.y126{bottom:637.099500px;}
.yf7{bottom:641.703000px;}
.y19c{bottom:642.763500px;}
.y143{bottom:644.715000px;}
.y47{bottom:649.987500px;}
.y68{bottom:656.416500px;}
.y16{bottom:656.646000px;}
.ye0{bottom:656.682000px;}
.yc8{bottom:657.210000px;}
.y8d{bottom:659.064000px;}
.yf6{bottom:660.936000px;}
.y19b{bottom:662.131500px;}
.y142{bottom:663.948000px;}
.y46{bottom:670.252500px;}
.y11f{bottom:671.460000px;}
.y67{bottom:676.680000px;}
.y15{bottom:676.909500px;}
.ydf{bottom:676.945500px;}
.yc7{bottom:677.475000px;}
.y125{bottom:677.689500px;}
.y8c{bottom:679.327500px;}
.yf5{bottom:680.167500px;}
.y19a{bottom:681.498000px;}
.y141{bottom:683.181000px;}
.y45{bottom:690.516000px;}
.y11e{bottom:690.693000px;}
.y119{bottom:696.919500px;}
.y124{bottom:696.922500px;}
.y14{bottom:697.174500px;}
.yc6{bottom:697.738500px;}
.yf4{bottom:699.400500px;}
.y8b{bottom:699.592500px;}
.y199{bottom:700.866000px;}
.yb1{bottom:705.588000px;}
.y11d{bottom:709.926000px;}
.y44{bottom:710.781000px;}
.y123{bottom:716.155500px;}
.y118{bottom:717.183000px;}
.y13{bottom:717.438000px;}
.yc4{bottom:718.002000px;}
.yf3{bottom:718.633500px;}
.y8a{bottom:719.856000px;}
.y66{bottom:720.646500px;}
.yde{bottom:720.912000px;}
.yc5{bottom:723.427500px;}
.yb0{bottom:725.851500px;}
.y160{bottom:728.557500px;}
.y198{bottom:729.199500px;}
.y43{bottom:731.044500px;}
.y117{bottom:737.448000px;}
.y12{bottom:737.701500px;}
.yc3{bottom:738.267000px;}
.y64{bottom:739.879500px;}
.y89{bottom:740.121000px;}
.ydd{bottom:740.145000px;}
.y65{bottom:744.762000px;}
.y16c{bottom:745.596000px;}
.yaf{bottom:746.116500px;}
.y15f{bottom:748.821000px;}
.y42{bottom:751.308000px;}
.y116{bottom:757.711500px;}
.y62{bottom:759.112500px;}
.ydc{bottom:759.378000px;}
.y88{bottom:760.384500px;}
.y63{bottom:763.995000px;}
.y197{bottom:764.997000px;}
.yae{bottom:766.380000px;}
.yc2{bottom:767.497500px;}
.y15e{bottom:769.086000px;}
.y11{bottom:769.648500px;}
.y41{bottom:771.573000px;}
.y17c{bottom:776.997000px;}
.y115{bottom:777.975000px;}
.y61{bottom:778.345500px;}
.ydb{bottom:778.611000px;}
.y87{bottom:780.648000px;}
.y196{bottom:783.571500px;}
.y15d{bottom:789.349500px;}
.y16b{bottom:789.562500px;}
.y40{bottom:791.836500px;}
.yad{bottom:795.610500px;}
.y10{bottom:796.771500px;}
.y17b{bottom:797.262000px;}
.y114{bottom:798.240000px;}
.y86{bottom:800.913000px;}
.y195{bottom:802.147500px;}
.yc1{bottom:802.317000px;}
.y16a{bottom:808.795500px;}
.y15c{bottom:809.613000px;}
.y3f{bottom:812.101500px;}
.yf{bottom:814.929000px;}
.y113{bottom:818.503500px;}
.y194{bottom:820.722000px;}
.yc0{bottom:822.580500px;}
.yac{bottom:830.430000px;}
.y1c6{bottom:832.303500px;}
.y3e{bottom:832.365000px;}
.ye{bottom:833.085000px;}
.y112{bottom:838.768500px;}
.y193{bottom:839.298000px;}
.ybf{bottom:842.845500px;}
.y85{bottom:844.879500px;}
.yab{bottom:850.695000px;}
.y1c5{bottom:851.671500px;}
.y3d{bottom:852.628500px;}
.y15b{bottom:853.581000px;}
.yd{bottom:856.125000px;}
.y192{bottom:857.874000px;}
.ybd{bottom:863.109000px;}
.y84{bottom:864.112500px;}
.y111{bottom:867.999000px;}
.ybe{bottom:868.533000px;}
.y10c{bottom:868.644000px;}
.yc{bottom:869.400000px;}
.yaa{bottom:870.958500px;}
.y1c4{bottom:871.039500px;}
.y1c3{bottom:871.444500px;}
.y10b{bottom:872.070000px;}
.y15a{bottom:872.814000px;}
.y3c{bottom:872.893500px;}
.y191{bottom:876.448500px;}
.y108{bottom:879.090000px;}
.y83{bottom:883.345500px;}
.ybc{bottom:883.372500px;}
.y107{bottom:889.341000px;}
.ya9{bottom:891.222000px;}
.yb{bottom:892.438500px;}
.y3b{bottom:893.157000px;}
.y190{bottom:895.024500px;}
.y10a{bottom:900.885000px;}
.y1c2{bottom:903.021000px;}
.y109{bottom:904.311000px;}
.ya{bottom:905.713500px;}
.y110{bottom:908.587500px;}
.ya8{bottom:911.487000px;}
.y3a{bottom:913.422000px;}
.y18f{bottom:913.599000px;}
.y1c1{bottom:922.389000px;}
.ybb{bottom:927.340500px;}
.y9{bottom:928.752000px;}
.ya7{bottom:931.750500px;}
.y18e{bottom:932.175000px;}
.y39{bottom:933.685500px;}
.y1c0{bottom:941.755500px;}
.y106{bottom:944.983500px;}
.y8{bottom:947.508000px;}
.y18d{bottom:950.751000px;}
.y38{bottom:953.949000px;}
.ya5{bottom:959.599500px;}
.y1bf{bottom:961.123500px;}
.y105{bottom:965.247000px;}
.y7{bottom:967.771500px;}
.ya4{bottom:969.103500px;}
.y18c{bottom:969.325500px;}
.ya3{bottom:969.850500px;}
.ya6{bottom:971.494500px;}
.y37{bottom:974.214000px;}
.y1be{bottom:980.490000px;}
.y104{bottom:985.512000px;}
.y18b{bottom:987.901500px;}
.y36{bottom:994.477500px;}
.y1bd{bottom:999.858000px;}
.yf2{bottom:1005.775500px;}
.y18a{bottom:1006.476000px;}
.y6{bottom:1010.451000px;}
.y35{bottom:1014.742500px;}
.y1bc{bottom:1019.226000px;}
.y189{bottom:1025.052000px;}
.yf1{bottom:1026.039000px;}
.y34{bottom:1035.006000px;}
.y1bb{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y188{bottom:1043.628000px;}
.yf0{bottom:1046.304000px;}
.y33{bottom:1055.269500px;}
.y1ba{bottom:1057.960500px;}
.y187{bottom:1062.202500px;}
.yef{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y32{bottom:1075.534500px;}
.y1b9{bottom:1077.327000px;}
.yee{bottom:1086.832500px;}
.y186{bottom:1091.898000px;}
.y31{bottom:1095.798000px;}
.y1b8{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y30{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y2f{bottom:1168.366500px;}
.h16{height:2.391024px;}
.h1e{height:2.491464px;}
.h8{height:30.461558px;}
.hf{height:32.700150px;}
.h2e{height:33.072749px;}
.hc{height:35.052500px;}
.h27{height:35.503200px;}
.h26{height:36.940637px;}
.h1b{height:38.250662px;}
.h2f{height:38.519654px;}
.hd{height:38.734848px;}
.h9{height:39.165235px;}
.h2d{height:39.434227px;}
.he{height:42.043500px;}
.h11{height:42.500452px;}
.ha{height:43.038432px;}
.hb{height:43.516637px;}
.h4{height:43.815515px;}
.h28{height:44.831700px;}
.h1d{height:46.714950px;}
.h2{height:50.930649px;}
.h1f{height:52.045464px;}
.h1c{height:52.230150px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h29{height:61.980749px;}
.h2b{height:61.986749px;}
.h23{height:63.508950px;}
.h5{height:77.469696px;}
.h20{height:82.970452px;}
.h10{height:83.986637px;}
.h2a{height:87.075024px;}
.h24{height:87.273515px;}
.h22{height:89.290637px;}
.h3{height:94.491000px;}
.h25{height:95.023464px;}
.h19{height:96.591936px;}
.h17{height:96.597936px;}
.h21{height:97.819464px;}
.h1a{height:98.271936px;}
.h18{height:98.277936px;}
.h12{height:104.637024px;}
.h13{height:127.707024px;}
.h15{height:142.869024px;}
.h14{height:145.641024px;}
.h2c{height:187.425024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:58.555600px;}
.x1{left:114.802500px;}
.x87{left:119.871000px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x9c{left:131.074500px;}
.x4e{left:143.599500px;}
.x4{left:146.170500px;}
.x58{left:147.679500px;}
.x88{left:149.161500px;}
.x85{left:150.817500px;}
.x4f{left:157.261500px;}
.x61{left:165.243000px;}
.x50{left:166.875000px;}
.x67{left:176.814000px;}
.x59{left:178.659000px;}
.x6f{left:182.412000px;}
.x70{left:189.217500px;}
.x6{left:191.953500px;}
.x62{left:193.285500px;}
.x14{left:199.389000px;}
.x5d{left:200.655000px;}
.x22{left:203.904000px;}
.x7{left:205.825500px;}
.x15{left:206.860500px;}
.x90{left:210.676500px;}
.xb4{left:211.845000px;}
.x23{left:213.489000px;}
.x12{left:215.320500px;}
.x5a{left:218.961000px;}
.x1c{left:221.260500px;}
.x13{left:222.792000px;}
.x86{left:223.908000px;}
.x16{left:227.553000px;}
.x68{left:229.372500px;}
.x21{left:230.973000px;}
.x24{left:236.595000px;}
.x5b{left:237.922500px;}
.x89{left:239.245500px;}
.xbe{left:241.032000px;}
.x17{left:242.497500px;}
.x25{left:250.266000px;}
.x37{left:252.756000px;}
.x69{left:254.514000px;}
.xbf{left:255.883500px;}
.xaa{left:260.661000px;}
.x8c{left:261.970500px;}
.x5c{left:267.324000px;}
.xc1{left:270.195000px;}
.x26{left:272.035500px;}
.x27{left:278.013000px;}
.x8{left:279.844500px;}
.xa8{left:281.709000px;}
.x38{left:284.071500px;}
.x3c{left:285.744000px;}
.x9{left:287.317500px;}
.x51{left:294.106500px;}
.x5e{left:296.745000px;}
.x71{left:300.256500px;}
.x7b{left:303.931500px;}
.x39{left:304.962000px;}
.x92{left:307.780500px;}
.x72{left:313.092000px;}
.x3d{left:314.370000px;}
.x7c{left:316.453500px;}
.x6a{left:319.435500px;}
.x42{left:322.315500px;}
.x93{left:324.288000px;}
.xb7{left:328.384500px;}
.x5f{left:332.166000px;}
.x6e{left:333.166500px;}
.x54{left:334.192500px;}
.x1d{left:335.472000px;}
.x3f{left:339.240000px;}
.x3e{left:341.779500px;}
.xb8{left:343.680000px;}
.x55{left:346.306500px;}
.x1e{left:350.416500px;}
.x83{left:355.248000px;}
.xb2{left:356.460000px;}
.x7d{left:360.237000px;}
.x84{left:361.972500px;}
.xb9{left:363.177000px;}
.x3a{left:371.799000px;}
.xa2{left:377.722500px;}
.xb3{left:379.927500px;}
.x60{left:381.037500px;}
.x6b{left:391.356000px;}
.xa3{left:394.344000px;}
.xaf{left:397.479000px;}
.x73{left:400.944000px;}
.x1f{left:402.082500px;}
.x40{left:404.517000px;}
.x8a{left:405.753000px;}
.x74{left:407.751000px;}
.x8b{left:409.437000px;}
.x9d{left:410.659500px;}
.x20{left:417.027000px;}
.x94{left:420.180000px;}
.x6c{left:424.783500px;}
.x81{left:426.045000px;}
.x98{left:427.371000px;}
.x6d{left:434.175000px;}
.x8d{left:436.320000px;}
.xae{left:438.057000px;}
.x9e{left:440.667000px;}
.x82{left:441.748500px;}
.x99{left:443.394000px;}
.x8e{left:446.461500px;}
.x7e{left:453.423000px;}
.x2d{left:454.654500px;}
.xa4{left:456.316500px;}
.x8f{left:458.251500px;}
.x7f{left:460.230000px;}
.x2e{left:462.462000px;}
.x4c{left:468.891000px;}
.x2f{left:471.250500px;}
.x63{left:474.216000px;}
.x75{left:476.802000px;}
.x30{left:478.909500px;}
.x64{left:486.178500px;}
.x52{left:501.058500px;}
.x4d{left:504.198000px;}
.x29{left:519.568500px;}
.x18{left:525.390000px;}
.x2a{left:533.067000px;}
.x3b{left:535.971000px;}
.x19{left:540.334500px;}
.x53{left:541.384500px;}
.x1a{left:544.144500px;}
.x46{left:546.000000px;}
.x95{left:551.509500px;}
.x9f{left:557.448000px;}
.x1b{left:559.089000px;}
.x96{left:561.234000px;}
.xa0{left:564.345000px;}
.x2b{left:572.692500px;}
.xa6{left:575.554500px;}
.x2c{left:578.670000px;}
.xa7{left:583.773000px;}
.xb0{left:585.099000px;}
.xa9{left:591.385500px;}
.xb1{left:594.417000px;}
.x80{left:596.236500px;}
.xb5{left:598.503000px;}
.xa{left:600.283500px;}
.xb{left:607.755000px;}
.xc{left:611.487000px;}
.x47{left:614.302500px;}
.xd{left:618.958500px;}
.xba{left:622.305000px;}
.xb6{left:628.557000px;}
.x48{left:630.454500px;}
.xbb{left:637.495500px;}
.x76{left:651.507000px;}
.xbc{left:652.791000px;}
.x10{left:654.573000px;}
.x56{left:657.504000px;}
.x43{left:660.664500px;}
.x11{left:662.044500px;}
.x9a{left:670.584000px;}
.xbd{left:672.288000px;}
.x4a{left:677.682000px;}
.x44{left:680.488500px;}
.x77{left:682.260000px;}
.x9b{left:686.607000px;}
.x4b{left:688.512000px;}
.x65{left:693.577500px;}
.x31{left:696.265500px;}
.x97{left:698.115000px;}
.x66{left:702.805500px;}
.xa1{left:707.857500px;}
.xab{left:709.141500px;}
.x32{left:710.941500px;}
.x78{left:713.014500px;}
.xac{left:715.113000px;}
.x33{left:719.730000px;}
.x79{left:724.369500px;}
.x49{left:727.365000px;}
.x45{left:731.146500px;}
.xa5{left:733.044000px;}
.x34{left:734.098500px;}
.xad{left:736.585500px;}
.x91{left:738.537000px;}
.x28{left:739.893000px;}
.x35{left:743.185500px;}
.xc0{left:749.463000px;}
.x36{left:755.148000px;}
.x41{left:760.686000px;}
.xe{left:763.803000px;}
.x7a{left:770.109000px;}
.xf{left:771.274500px;}
.x57{left:776.914500px;}
@media print{
.v24{vertical-align:-90.885333pt;}
.v12{vertical-align:-67.450667pt;}
.v19{vertical-align:-44.048000pt;}
.v2{vertical-align:-17.354667pt;}
.v6{vertical-align:-15.941333pt;}
.v21{vertical-align:-11.120000pt;}
.v17{vertical-align:-10.170667pt;}
.v3{vertical-align:-7.968000pt;}
.v10{vertical-align:-5.578667pt;}
.v0{vertical-align:0.000000pt;}
.v1b{vertical-align:0.981333pt;}
.v9{vertical-align:6.058667pt;}
.va{vertical-align:7.973333pt;}
.v18{vertical-align:10.170667pt;}
.v8{vertical-align:14.032000pt;}
.v1e{vertical-align:14.928000pt;}
.ve{vertical-align:15.941333pt;}
.v16{vertical-align:17.994667pt;}
.v1{vertical-align:19.290667pt;}
.v7{vertical-align:21.941333pt;}
.v1c{vertical-align:25.802667pt;}
.v13{vertical-align:33.856000pt;}
.v4{vertical-align:35.973333pt;}
.v1f{vertical-align:38.629333pt;}
.v1d{vertical-align:40.688000pt;}
.v1a{vertical-align:43.066667pt;}
.v14{vertical-align:44.250667pt;}
.vc{vertical-align:58.389333pt;}
.vd{vertical-align:72.421333pt;}
.v22{vertical-align:75.274667pt;}
.v20{vertical-align:82.250667pt;}
.v11{vertical-align:83.952000pt;}
.v15{vertical-align:85.445333pt;}
.v23{vertical-align:89.194667pt;}
.v5{vertical-align:90.885333pt;}
.vb{vertical-align:111.392000pt;}
.vf{vertical-align:124.869333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls77{letter-spacing:0.002825pt;}
.ls23{letter-spacing:0.447791pt;}
.ls19{letter-spacing:0.482502pt;}
.ls10{letter-spacing:0.487835pt;}
.ls30{letter-spacing:0.501867pt;}
.ls4c{letter-spacing:0.644349pt;}
.ls55{letter-spacing:0.659344pt;}
.ls62{letter-spacing:0.659658pt;}
.ls40{letter-spacing:0.664677pt;}
.ls65{letter-spacing:0.664991pt;}
.ls25{letter-spacing:0.795200pt;}
.ls1f{letter-spacing:0.796970pt;}
.ls2f{letter-spacing:0.907733pt;}
.ls28{letter-spacing:0.911791pt;}
.ls63{letter-spacing:1.008971pt;}
.ls22{letter-spacing:1.154848pt;}
.ls76{letter-spacing:1.165089pt;}
.ls9{letter-spacing:1.166400pt;}
.ls4d{letter-spacing:1.166652pt;}
.ls2e{letter-spacing:1.171733pt;}
.ls26{letter-spacing:1.205867pt;}
.ls29{letter-spacing:1.248533pt;}
.ls3d{letter-spacing:1.257548pt;}
.ls36{letter-spacing:1.262881pt;}
.ls27{letter-spacing:1.303379pt;}
.lse{letter-spacing:1.311016pt;}
.lsf{letter-spacing:1.320161pt;}
.ls18{letter-spacing:1.325494pt;}
.ls37{letter-spacing:1.326011pt;}
.ls41{letter-spacing:1.326400pt;}
.ls35{letter-spacing:1.327207pt;}
.ls39{letter-spacing:1.327711pt;}
.ls3e{letter-spacing:1.331344pt;}
.ls4e{letter-spacing:1.331543pt;}
.ls57{letter-spacing:1.331733pt;}
.ls13{letter-spacing:1.726400pt;}
.ls43{letter-spacing:1.774652pt;}
.ls6e{letter-spacing:1.775565pt;}
.ls69{letter-spacing:1.780898pt;}
.ls8{letter-spacing:1.854400pt;}
.lsc{letter-spacing:1.856153pt;}
.ls68{letter-spacing:1.965897pt;}
.ls49{letter-spacing:2.324214pt;}
.ls56{letter-spacing:2.329548pt;}
.ls64{letter-spacing:2.380455pt;}
.ls78{letter-spacing:2.392877pt;}
.ls4a{letter-spacing:2.590881pt;}
.ls52{letter-spacing:2.653854pt;}
.ls0{letter-spacing:2.657067pt;}
.ls42{letter-spacing:2.659187pt;}
.ls38{letter-spacing:2.763185pt;}
.ls31{letter-spacing:3.118133pt;}
.ls4f{letter-spacing:3.187985pt;}
.ls3f{letter-spacing:3.278881pt;}
.ls54{letter-spacing:3.284214pt;}
.ls2a{letter-spacing:3.719200pt;}
.ls3a{letter-spacing:3.825015pt;}
.ls4b{letter-spacing:3.830349pt;}
.ls12{letter-spacing:4.230400pt;}
.ls48{letter-spacing:4.710959pt;}
.ls3c{letter-spacing:4.716292pt;}
.ls58{letter-spacing:5.480838pt;}
.ls2b{letter-spacing:7.440044pt;}
.ls66{letter-spacing:7.692455pt;}
.ls1b{letter-spacing:7.700541pt;}
.ls16{letter-spacing:7.705874pt;}
.ls61{letter-spacing:8.751016pt;}
.ls46{letter-spacing:10.164349pt;}
.ls53{letter-spacing:10.169682pt;}
.ls21{letter-spacing:10.472078pt;}
.ls3{letter-spacing:10.626533pt;}
.ls45{letter-spacing:11.632696pt;}
.ls15{letter-spacing:11.635096pt;}
.lsd{letter-spacing:11.638029pt;}
.ls17{letter-spacing:11.650827pt;}
.ls7b{letter-spacing:11.954133pt;}
.ls7a{letter-spacing:11.959467pt;}
.ls79{letter-spacing:12.025964pt;}
.ls1a{letter-spacing:12.187185pt;}
.ls14{letter-spacing:12.192518pt;}
.ls33{letter-spacing:12.552158pt;}
.ls32{letter-spacing:12.556800pt;}
.ls5{letter-spacing:12.911530pt;}
.ls34{letter-spacing:13.030084pt;}
.ls6{letter-spacing:13.070931pt;}
.ls7{letter-spacing:13.230333pt;}
.ls5d{letter-spacing:13.549136pt;}
.ls72{letter-spacing:14.453411pt;}
.ls75{letter-spacing:14.458745pt;}
.ls74{letter-spacing:14.480078pt;}
.ls71{letter-spacing:14.719565pt;}
.ls73{letter-spacing:14.740898pt;}
.ls44{letter-spacing:15.046959pt;}
.ls60{letter-spacing:15.400429pt;}
.ls6d{letter-spacing:15.610745pt;}
.ls5f{letter-spacing:15.674491pt;}
.ls70{letter-spacing:15.856078pt;}
.ls6c{letter-spacing:15.866231pt;}
.ls1e{letter-spacing:16.061762pt;}
.ls1d{letter-spacing:16.089067pt;}
.ls6f{letter-spacing:16.116898pt;}
.lsa{letter-spacing:16.617067pt;}
.ls51{letter-spacing:18.011362pt;}
.ls6b{letter-spacing:18.160078pt;}
.ls6a{letter-spacing:18.420898pt;}
.ls20{letter-spacing:19.260533pt;}
.ls5b{letter-spacing:20.672696pt;}
.ls3b{letter-spacing:21.973571pt;}
.ls47{letter-spacing:21.978904pt;}
.ls50{letter-spacing:22.440429pt;}
.ls5a{letter-spacing:23.496429pt;}
.lsb{letter-spacing:38.605762pt;}
.ls1{letter-spacing:62.432533pt;}
.ls2{letter-spacing:64.314231pt;}
.ls2c{letter-spacing:64.322848pt;}
.ls2d{letter-spacing:73.618848pt;}
.ls11{letter-spacing:78.342400pt;}
.ls5e{letter-spacing:83.150400pt;}
.ls24{letter-spacing:86.645867pt;}
.ls1c{letter-spacing:427.625682pt;}
.ls67{letter-spacing:459.433682pt;}
.ls59{letter-spacing:586.537682pt;}
.ls5c{letter-spacing:670.147344pt;}
.ws4c{word-spacing:-55.365867pt;}
.ws3{word-spacing:-13.283467pt;}
.ws4{word-spacing:-11.955200pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws50{word-spacing:-4.622646pt;}
.ws4b{word-spacing:-4.410111pt;}
.ws49{word-spacing:-4.250709pt;}
.ws27{word-spacing:-2.709827pt;}
.ws56{word-spacing:-2.656693pt;}
.ws48{word-spacing:-2.337890pt;}
.wsb0{word-spacing:-2.295398pt;}
.ws73{word-spacing:-2.289333pt;}
.wsa1{word-spacing:-2.284756pt;}
.ws3c{word-spacing:-2.231622pt;}
.ws78{word-spacing:-2.178489pt;}
.ws25{word-spacing:-2.125355pt;}
.ws83{word-spacing:-1.965953pt;}
.ws7d{word-spacing:-1.912832pt;}
.ws97{word-spacing:-1.912819pt;}
.ws76{word-spacing:-1.865011pt;}
.ws54{word-spacing:-1.806551pt;}
.ws8b{word-spacing:-1.753418pt;}
.ws7e{word-spacing:-1.721549pt;}
.ws77{word-spacing:-1.673728pt;}
.ws47{word-spacing:-1.647150pt;}
.ws84{word-spacing:-1.594016pt;}
.ws10{word-spacing:-1.487748pt;}
.wsa3{word-spacing:-1.434614pt;}
.ws87{word-spacing:-1.381481pt;}
.ws2f{word-spacing:-1.328347pt;}
.ws64{word-spacing:-1.222079pt;}
.ws19{word-spacing:-1.168945pt;}
.ws4a{word-spacing:-0.956410pt;}
.ws11{word-spacing:-0.690740pt;}
.ws4e{word-spacing:-0.637606pt;}
.ws7f{word-spacing:-0.621670pt;}
.ws4d{word-spacing:-0.584473pt;}
.ws59{word-spacing:-0.526029pt;}
.ws37{word-spacing:-0.478208pt;}
.ws63{word-spacing:-0.478205pt;}
.ws38{word-spacing:-0.461714pt;}
.ws3a{word-spacing:-0.425071pt;}
.ws41{word-spacing:-0.371937pt;}
.wsbe{word-spacing:-0.334746pt;}
.ws2d{word-spacing:-0.318803pt;}
.ws99{word-spacing:-0.286925pt;}
.ws3b{word-spacing:-0.265669pt;}
.wsa7{word-spacing:-0.239104pt;}
.ws5b{word-spacing:-0.220491pt;}
.wsa{word-spacing:-0.212535pt;}
.wsb2{word-spacing:-0.191283pt;}
.ws1{word-spacing:-0.159402pt;}
.ws34{word-spacing:-0.143462pt;}
.ws24{word-spacing:-0.106268pt;}
.ws39{word-spacing:-0.095642pt;}
.ws93{word-spacing:-0.089065pt;}
.ws23{word-spacing:-0.053134pt;}
.ws33{word-spacing:-0.047821pt;}
.ws1e{word-spacing:-0.042507pt;}
.ws8a{word-spacing:-0.040382pt;}
.ws3e{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws58{word-spacing:0.047821pt;}
.ws1a{word-spacing:0.053134pt;}
.ws36{word-spacing:0.093996pt;}
.ws35{word-spacing:0.095642pt;}
.ws1b{word-spacing:0.106268pt;}
.ws75{word-spacing:0.143462pt;}
.ws17{word-spacing:0.159402pt;}
.ws6e{word-spacing:0.191283pt;}
.ws16{word-spacing:0.212535pt;}
.ws45{word-spacing:0.239104pt;}
.ws26{word-spacing:0.265669pt;}
.wsc1{word-spacing:0.286925pt;}
.wse{word-spacing:0.318803pt;}
.ws8d{word-spacing:0.382566pt;}
.ws5a{word-spacing:0.478205pt;}
.ws8e{word-spacing:0.478208pt;}
.ws8f{word-spacing:0.526029pt;}
.ws2b{word-spacing:0.584473pt;}
.ws20{word-spacing:0.637606pt;}
.ws95{word-spacing:0.690740pt;}
.ws6d{word-spacing:0.812954pt;}
.ws9f{word-spacing:0.903276pt;}
.ws57{word-spacing:1.009543pt;}
.ws94{word-spacing:1.052058pt;}
.wsa2{word-spacing:1.062677pt;}
.ws67{word-spacing:1.168945pt;}
.ws68{word-spacing:1.222079pt;}
.ws53{word-spacing:1.275213pt;}
.wsa0{word-spacing:1.328347pt;}
.wsb{word-spacing:1.381481pt;}
.ws7{word-spacing:1.434614pt;}
.wsa8{word-spacing:1.482445pt;}
.ws65{word-spacing:1.487748pt;}
.ws66{word-spacing:1.530266pt;}
.ws21{word-spacing:1.540882pt;}
.ws46{word-spacing:1.553519pt;}
.ws18{word-spacing:1.647150pt;}
.wsb7{word-spacing:1.673728pt;}
.ws8c{word-spacing:1.721549pt;}
.ws9d{word-spacing:1.806551pt;}
.ws51{word-spacing:1.859685pt;}
.ws70{word-spacing:1.965953pt;}
.ws6f{word-spacing:2.019087pt;}
.wsae{word-spacing:2.056294pt;}
.ws74{word-spacing:2.078400pt;}
.ws81{word-spacing:2.104115pt;}
.ws29{word-spacing:2.125355pt;}
.wsd{word-spacing:2.178489pt;}
.ws7c{word-spacing:2.199757pt;}
.wsf{word-spacing:2.231622pt;}
.ws22{word-spacing:2.284756pt;}
.ws4f{word-spacing:2.337890pt;}
.ws2c{word-spacing:2.391024pt;}
.ws80{word-spacing:2.391040pt;}
.ws92{word-spacing:2.444158pt;}
.ws7b{word-spacing:2.486682pt;}
.ws9{word-spacing:2.497292pt;}
.ws5f{word-spacing:2.550426pt;}
.ws62{word-spacing:2.570047pt;}
.ws8{word-spacing:2.603559pt;}
.ws3d{word-spacing:2.656693pt;}
.ws2e{word-spacing:2.709827pt;}
.wsb5{word-spacing:2.866099pt;}
.wsbc{word-spacing:2.868105pt;}
.ws5{word-spacing:2.869248pt;}
.ws31{word-spacing:2.922363pt;}
.wsa9{word-spacing:3.012710pt;}
.ws9e{word-spacing:3.028630pt;}
.ws15{word-spacing:3.188032pt;}
.ws5d{word-spacing:3.241166pt;}
.ws61{word-spacing:3.278818pt;}
.ws60{word-spacing:3.284047pt;}
.ws13{word-spacing:3.294300pt;}
.wsb3{word-spacing:3.586560pt;}
.ws7a{word-spacing:3.634381pt;}
.ws9b{word-spacing:3.666237pt;}
.ws1f{word-spacing:3.719371pt;}
.ws79{word-spacing:3.969126pt;}
.ws6c{word-spacing:4.064768pt;}
.wsa4{word-spacing:4.197575pt;}
.ws9c{word-spacing:4.463245pt;}
.ws3f{word-spacing:4.622646pt;}
.wsab{word-spacing:4.638618pt;}
.ws40{word-spacing:4.675780pt;}
.ws32{word-spacing:4.728914pt;}
.ws90{word-spacing:4.782048pt;}
.ws69{word-spacing:4.835182pt;}
.ws2a{word-spacing:5.207119pt;}
.ws91{word-spacing:5.313387pt;}
.wsc{word-spacing:5.366521pt;}
.ws44{word-spacing:5.472788pt;}
.ws82{word-spacing:5.579056pt;}
.ws71{word-spacing:5.632190pt;}
.ws89{word-spacing:5.738458pt;}
.wsa6{word-spacing:5.738496pt;}
.ws96{word-spacing:5.844725pt;}
.ws6{word-spacing:6.004127pt;}
.ws5c{word-spacing:6.163529pt;}
.wsa5{word-spacing:6.269796pt;}
.ws85{word-spacing:6.801135pt;}
.ws42{word-spacing:6.907403pt;}
.ws6b{word-spacing:6.960537pt;}
.ws86{word-spacing:7.066804pt;}
.ws30{word-spacing:7.173072pt;}
.ws12{word-spacing:7.226206pt;}
.ws14{word-spacing:7.438741pt;}
.ws6a{word-spacing:8.129482pt;}
.ws88{word-spacing:8.926490pt;}
.ws52{word-spacing:9.298427pt;}
.wsb6{word-spacing:9.372877pt;}
.wsbf{word-spacing:10.329293pt;}
.ws1c{word-spacing:10.581753pt;}
.wsb4{word-spacing:10.616218pt;}
.wsba{word-spacing:11.333530pt;}
.ws43{word-spacing:11.689451pt;}
.wsac{word-spacing:11.811738pt;}
.wsb9{word-spacing:11.901850pt;}
.wsad{word-spacing:11.907379pt;}
.wsbb{word-spacing:11.908190pt;}
.ws5e{word-spacing:13.230333pt;}
.wsb1{word-spacing:14.728806pt;}
.wsaf{word-spacing:14.776422pt;}
.wsc0{word-spacing:14.776627pt;}
.wsaa{word-spacing:14.920090pt;}
.ws98{word-spacing:15.727625pt;}
.wsbd{word-spacing:15.924326pt;}
.wsb8{word-spacing:16.019968pt;}
.ws55{word-spacing:16.037222pt;}
.ws28{word-spacing:16.205829pt;}
.ws72{word-spacing:18.542180pt;}
.ws9a{word-spacing:19.872066pt;}
._3{margin-left:-6.168883pt;}
._4{margin-left:-4.399514pt;}
._2{margin-left:-2.869229pt;}
._19{margin-left:-1.859685pt;}
._8{margin-left:-0.956410pt;}
._17{width:1.328347pt;}
._0{width:2.705545pt;}
._1{width:3.668830pt;}
._1c{width:5.255067pt;}
._5{width:11.094426pt;}
._1b{width:12.220789pt;}
._14{width:13.873195pt;}
._7{width:14.824448pt;}
._e{width:15.993294pt;}
._a{width:16.901924pt;}
._d{width:17.805200pt;}
._16{width:19.340727pt;}
._1f{width:20.244003pt;}
._1a{width:21.147279pt;}
._15{width:22.369358pt;}
._b{width:23.325767pt;}
._9{width:24.654114pt;}
._11{width:26.407532pt;}
._30{width:27.837547pt;}
._20{width:29.542430pt;}
._31{width:32.039936pt;}
._12{width:33.580604pt;}
._13{width:34.962084pt;}
._1d{width:36.184163pt;}
._c{width:38.522053pt;}
._33{width:46.864384pt;}
._18{width:52.174864pt;}
._6{width:56.763290pt;}
._32{width:63.027808pt;}
._26{width:64.127693pt;}
._27{width:66.518733pt;}
._2f{width:78.904320pt;}
._2d{width:95.402496pt;}
._2a{width:98.415206pt;}
._21{width:100.184576pt;}
._29{width:102.910362pt;}
._28{width:104.727552pt;}
._23{width:109.605274pt;}
._2e{width:111.518106pt;}
._25{width:116.395827pt;}
._22{width:117.926093pt;}
._24{width:119.025971pt;}
._2b{width:122.660352pt;}
._2c{width:135.141581pt;}
._f{width:886.916461pt;}
._1e{width:1818.034400pt;}
._10{width:1839.287733pt;}
.fsb{font-size:26.566933pt;}
.fs4{font-size:37.193600pt;}
.fs8{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fsa{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs7{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:14.236308pt;}
.y2e{bottom:56.693333pt;}
.y2d{bottom:96.544000pt;}
.y17a{bottom:101.184000pt;}
.y103{bottom:101.672000pt;}
.ya2{bottom:106.264000pt;}
.y1b7{bottom:106.528000pt;}
.yed{bottom:109.605333pt;}
.y2c{bottom:114.556000pt;}
.yba{bottom:118.069333pt;}
.y102{bottom:118.768000pt;}
.y179{bottom:119.197333pt;}
.y1b6{bottom:123.742667pt;}
.ya1{bottom:124.276000pt;}
.y140{bottom:126.040000pt;}
.y60{bottom:127.454667pt;}
.yec{bottom:127.618667pt;}
.y2b{bottom:132.568000pt;}
.yb9{bottom:136.082667pt;}
.y178{bottom:137.209333pt;}
.y1b5{bottom:140.958667pt;}
.y13f{bottom:144.052000pt;}
.y5f{bottom:145.466667pt;}
.yeb{bottom:145.630667pt;}
.ya0{bottom:149.213333pt;}
.y9e{bottom:150.273333pt;}
.y2a{bottom:150.581333pt;}
.yb8{bottom:154.094667pt;}
.y177{bottom:155.221333pt;}
.y1b4{bottom:158.174667pt;}
.y9f{bottom:159.385333pt;}
.y13e{bottom:162.065333pt;}
.y5e{bottom:163.478667pt;}
.yea{bottom:163.644000pt;}
.y9d{bottom:168.378667pt;}
.y29{bottom:168.593333pt;}
.y122{bottom:171.657333pt;}
.yb6{bottom:172.108000pt;}
.y176{bottom:173.234667pt;}
.y10f{bottom:174.008000pt;}
.y1b3{bottom:175.389333pt;}
.yb7{bottom:176.929333pt;}
.y13d{bottom:180.077333pt;}
.y159{bottom:181.081333pt;}
.y5d{bottom:181.492000pt;}
.y28{bottom:186.606667pt;}
.y121{bottom:188.753333pt;}
.ye9{bottom:189.626667pt;}
.yb5{bottom:190.120000pt;}
.y175{bottom:191.246667pt;}
.y1b2{bottom:192.605333pt;}
.y11c{bottom:194.160000pt;}
.y82{bottom:194.774667pt;}
.y13c{bottom:198.090667pt;}
.y158{bottom:199.093333pt;}
.y5c{bottom:199.504000pt;}
.y9c{bottom:200.532000pt;}
.y27{bottom:204.618667pt;}
.y120{bottom:205.849333pt;}
.y169{bottom:206.312000pt;}
.y174{bottom:209.260000pt;}
.y1b1{bottom:209.820000pt;}
.y11b{bottom:211.256000pt;}
.y81{bottom:212.786667pt;}
.y13b{bottom:216.102667pt;}
.y157{bottom:217.106667pt;}
.y5b{bottom:217.517333pt;}
.y9b{bottom:218.545333pt;}
.y26{bottom:222.630667pt;}
.y168{bottom:224.324000pt;}
.ye8{bottom:225.705333pt;}
.y185{bottom:226.164000pt;}
.y1b0{bottom:227.036000pt;}
.y173{bottom:227.272000pt;}
.y11a{bottom:228.352000pt;}
.yb4{bottom:229.201333pt;}
.y80{bottom:230.800000pt;}
.y13a{bottom:234.114667pt;}
.y156{bottom:235.118667pt;}
.y5a{bottom:235.529333pt;}
.y9a{bottom:236.557333pt;}
.y184{bottom:239.673333pt;}
.y167{bottom:243.665333pt;}
.yda{bottom:243.782667pt;}
.y1af{bottom:244.252000pt;}
.y172{bottom:245.284000pt;}
.yb3{bottom:246.297333pt;}
.y25{bottom:248.613333pt;}
.y7f{bottom:248.812000pt;}
.y139{bottom:252.128000pt;}
.y155{bottom:253.132000pt;}
.y183{bottom:253.182667pt;}
.y59{bottom:253.541333pt;}
.y99{bottom:254.570667pt;}
.y1ae{bottom:261.466667pt;}
.y166{bottom:261.677333pt;}
.yd9{bottom:263.122667pt;}
.y171{bottom:263.297333pt;}
.yb2{bottom:263.393333pt;}
.y7e{bottom:266.824000pt;}
.y138{bottom:270.140000pt;}
.y154{bottom:271.144000pt;}
.y58{bottom:271.554667pt;}
.y98{bottom:272.582667pt;}
.y182{bottom:274.662667pt;}
.y1ad{bottom:278.682667pt;}
.y165{bottom:281.018667pt;}
.yd8{bottom:282.464000pt;}
.y7d{bottom:284.837333pt;}
.y137{bottom:288.153333pt;}
.y181{bottom:288.172000pt;}
.y153{bottom:289.156000pt;}
.y170{bottom:289.280000pt;}
.y57{bottom:289.566667pt;}
.y97{bottom:290.594667pt;}
.y1ac{bottom:295.897333pt;}
.y164{bottom:299.030667pt;}
.y180{bottom:301.681333pt;}
.y136{bottom:306.165333pt;}
.y152{bottom:307.169333pt;}
.y56{bottom:307.580000pt;}
.y96{bottom:308.608000pt;}
.yd7{bottom:311.102667pt;}
.y7c{bottom:312.318667pt;}
.y7b{bottom:312.692000pt;}
.y1ab{bottom:313.113333pt;}
.y24{bottom:315.569333pt;}
.y76{bottom:319.160000pt;}
.y7a{bottom:321.526667pt;}
.y75{bottom:323.145333pt;}
.y17f{bottom:323.161333pt;}
.y135{bottom:324.177333pt;}
.y150{bottom:325.181333pt;}
.y16f{bottom:325.358667pt;}
.y55{bottom:325.592000pt;}
.y95{bottom:326.620000pt;}
.yd6{bottom:329.116000pt;}
.y151{bottom:330.004000pt;}
.y163{bottom:330.326667pt;}
.y1aa{bottom:330.329333pt;}
.y72{bottom:331.778667pt;}
.y23{bottom:333.581333pt;}
.y17e{bottom:336.670667pt;}
.y134{bottom:342.190667pt;}
.y79{bottom:342.244000pt;}
.y16e{bottom:342.454667pt;}
.y78{bottom:342.617333pt;}
.y14f{bottom:343.194667pt;}
.y54{bottom:343.604000pt;}
.y94{bottom:344.632000pt;}
.y74{bottom:347.054667pt;}
.yd5{bottom:347.128000pt;}
.y1a9{bottom:347.544000pt;}
.y17d{bottom:350.180000pt;}
.y73{bottom:351.040000pt;}
.y77{bottom:351.452000pt;}
.y162{bottom:356.309333pt;}
.y16d{bottom:359.550667pt;}
.y133{bottom:360.202667pt;}
.y14e{bottom:361.206667pt;}
.y53{bottom:361.617333pt;}
.y93{bottom:362.645333pt;}
.y1a8{bottom:364.760000pt;}
.yd4{bottom:365.141333pt;}
.y101{bottom:366.896000pt;}
.y22{bottom:367.534667pt;}
.y132{bottom:378.216000pt;}
.y14d{bottom:379.218667pt;}
.y52{bottom:379.629333pt;}
.y92{bottom:380.657333pt;}
.y1a7{bottom:381.974667pt;}
.yd3{bottom:383.153333pt;}
.y71{bottom:383.929333pt;}
.y100{bottom:384.908000pt;}
.y21{bottom:385.546667pt;}
.y161{bottom:392.389333pt;}
.y70{bottom:393.041333pt;}
.y131{bottom:396.228000pt;}
.y14c{bottom:397.232000pt;}
.y51{bottom:397.642667pt;}
.y91{bottom:398.670667pt;}
.y1a6{bottom:399.190667pt;}
.yd1{bottom:401.165333pt;}
.yff{bottom:402.921333pt;}
.y20{bottom:403.560000pt;}
.yd2{bottom:405.988000pt;}
.y12f{bottom:414.240000pt;}
.y50{bottom:415.654667pt;}
.y1a5{bottom:416.406667pt;}
.y8f{bottom:416.682667pt;}
.y130{bottom:419.062667pt;}
.yd0{bottom:419.178667pt;}
.yfe{bottom:420.933333pt;}
.y1f{bottom:421.572000pt;}
.y90{bottom:427.694667pt;}
.y12e{bottom:432.253333pt;}
.y1a4{bottom:433.621333pt;}
.y4f{bottom:433.666667pt;}
.y14b{bottom:436.313333pt;}
.y6f{bottom:436.485333pt;}
.yfd{bottom:438.945333pt;}
.y1e{bottom:439.585333pt;}
.ye7{bottom:441.689333pt;}
.ycf{bottom:445.161333pt;}
.y12d{bottom:450.265333pt;}
.y1a3{bottom:450.837333pt;}
.y4e{bottom:451.680000pt;}
.y14a{bottom:453.409333pt;}
.y6e{bottom:454.497333pt;}
.y8e{bottom:455.764000pt;}
.yfc{bottom:456.958667pt;}
.y1d{bottom:457.597333pt;}
.ye6{bottom:461.030667pt;}
.y1a2{bottom:468.052000pt;}
.y12c{bottom:468.278667pt;}
.y4d{bottom:469.692000pt;}
.y149{bottom:470.505333pt;}
.y6d{bottom:472.509333pt;}
.yfb{bottom:474.970667pt;}
.y1c{bottom:475.609333pt;}
.yce{bottom:476.112000pt;}
.ye5{bottom:480.370667pt;}
.y1a1{bottom:485.268000pt;}
.y10e{bottom:486.156000pt;}
.y12b{bottom:486.290667pt;}
.y148{bottom:487.601333pt;}
.y4c{bottom:487.704000pt;}
.y6c{bottom:490.522667pt;}
.yfa{bottom:492.984000pt;}
.y1b{bottom:493.622667pt;}
.ycd{bottom:494.124000pt;}
.ye4{bottom:499.712000pt;}
.y1a0{bottom:502.484000pt;}
.y10d{bottom:503.252000pt;}
.y129{bottom:504.302667pt;}
.y147{bottom:504.697333pt;}
.y4b{bottom:505.717333pt;}
.y12a{bottom:509.125333pt;}
.yf9{bottom:510.996000pt;}
.y1a{bottom:511.634667pt;}
.ycc{bottom:512.137333pt;}
.y6b{bottom:516.505333pt;}
.ye3{bottom:519.053333pt;}
.y19f{bottom:519.698667pt;}
.y146{bottom:521.792000pt;}
.y128{bottom:522.316000pt;}
.y4a{bottom:523.729333pt;}
.y19{bottom:529.648000pt;}
.ycb{bottom:530.149333pt;}
.y19e{bottom:536.914667pt;}
.yf8{bottom:536.978667pt;}
.y145{bottom:538.888000pt;}
.y127{bottom:540.328000pt;}
.y49{bottom:541.742667pt;}
.y6a{bottom:547.456000pt;}
.y18{bottom:547.660000pt;}
.ye2{bottom:547.692000pt;}
.yca{bottom:548.161333pt;}
.y19d{bottom:554.129333pt;}
.y144{bottom:555.984000pt;}
.y48{bottom:559.754667pt;}
.y69{bottom:565.468000pt;}
.y17{bottom:565.672000pt;}
.ye1{bottom:565.705333pt;}
.yc9{bottom:566.174667pt;}
.y126{bottom:566.310667pt;}
.yf7{bottom:570.402667pt;}
.y19c{bottom:571.345333pt;}
.y143{bottom:573.080000pt;}
.y47{bottom:577.766667pt;}
.y68{bottom:583.481333pt;}
.y16{bottom:583.685333pt;}
.ye0{bottom:583.717333pt;}
.yc8{bottom:584.186667pt;}
.y8d{bottom:585.834667pt;}
.yf6{bottom:587.498667pt;}
.y19b{bottom:588.561333pt;}
.y142{bottom:590.176000pt;}
.y46{bottom:595.780000pt;}
.y11f{bottom:596.853333pt;}
.y67{bottom:601.493333pt;}
.y15{bottom:601.697333pt;}
.ydf{bottom:601.729333pt;}
.yc7{bottom:602.200000pt;}
.y125{bottom:602.390667pt;}
.y8c{bottom:603.846667pt;}
.yf5{bottom:604.593333pt;}
.y19a{bottom:605.776000pt;}
.y141{bottom:607.272000pt;}
.y45{bottom:613.792000pt;}
.y11e{bottom:613.949333pt;}
.y119{bottom:619.484000pt;}
.y124{bottom:619.486667pt;}
.y14{bottom:619.710667pt;}
.yc6{bottom:620.212000pt;}
.yf4{bottom:621.689333pt;}
.y8b{bottom:621.860000pt;}
.y199{bottom:622.992000pt;}
.yb1{bottom:627.189333pt;}
.y11d{bottom:631.045333pt;}
.y44{bottom:631.805333pt;}
.y123{bottom:636.582667pt;}
.y118{bottom:637.496000pt;}
.y13{bottom:637.722667pt;}
.yc4{bottom:638.224000pt;}
.yf3{bottom:638.785333pt;}
.y8a{bottom:639.872000pt;}
.y66{bottom:640.574667pt;}
.yde{bottom:640.810667pt;}
.yc5{bottom:643.046667pt;}
.yb0{bottom:645.201333pt;}
.y160{bottom:647.606667pt;}
.y198{bottom:648.177333pt;}
.y43{bottom:649.817333pt;}
.y117{bottom:655.509333pt;}
.y12{bottom:655.734667pt;}
.yc3{bottom:656.237333pt;}
.y64{bottom:657.670667pt;}
.y89{bottom:657.885333pt;}
.ydd{bottom:657.906667pt;}
.y65{bottom:662.010667pt;}
.y16c{bottom:662.752000pt;}
.yaf{bottom:663.214667pt;}
.y15f{bottom:665.618667pt;}
.y42{bottom:667.829333pt;}
.y116{bottom:673.521333pt;}
.y62{bottom:674.766667pt;}
.ydc{bottom:675.002667pt;}
.y88{bottom:675.897333pt;}
.y63{bottom:679.106667pt;}
.y197{bottom:679.997333pt;}
.yae{bottom:681.226667pt;}
.yc2{bottom:682.220000pt;}
.y15e{bottom:683.632000pt;}
.y11{bottom:684.132000pt;}
.y41{bottom:685.842667pt;}
.y17c{bottom:690.664000pt;}
.y115{bottom:691.533333pt;}
.y61{bottom:691.862667pt;}
.ydb{bottom:692.098667pt;}
.y87{bottom:693.909333pt;}
.y196{bottom:696.508000pt;}
.y15d{bottom:701.644000pt;}
.y16b{bottom:701.833333pt;}
.y40{bottom:703.854667pt;}
.yad{bottom:707.209333pt;}
.y10{bottom:708.241333pt;}
.y17b{bottom:708.677333pt;}
.y114{bottom:709.546667pt;}
.y86{bottom:711.922667pt;}
.y195{bottom:713.020000pt;}
.yc1{bottom:713.170667pt;}
.y16a{bottom:718.929333pt;}
.y15c{bottom:719.656000pt;}
.y3f{bottom:721.868000pt;}
.yf{bottom:724.381333pt;}
.y113{bottom:727.558667pt;}
.y194{bottom:729.530667pt;}
.yc0{bottom:731.182667pt;}
.yac{bottom:738.160000pt;}
.y1c6{bottom:739.825333pt;}
.y3e{bottom:739.880000pt;}
.ye{bottom:740.520000pt;}
.y112{bottom:745.572000pt;}
.y193{bottom:746.042667pt;}
.ybf{bottom:749.196000pt;}
.y85{bottom:751.004000pt;}
.yab{bottom:756.173333pt;}
.y1c5{bottom:757.041333pt;}
.y3d{bottom:757.892000pt;}
.y15b{bottom:758.738667pt;}
.yd{bottom:761.000000pt;}
.y192{bottom:762.554667pt;}
.ybd{bottom:767.208000pt;}
.y84{bottom:768.100000pt;}
.y111{bottom:771.554667pt;}
.ybe{bottom:772.029333pt;}
.y10c{bottom:772.128000pt;}
.yc{bottom:772.800000pt;}
.yaa{bottom:774.185333pt;}
.y1c4{bottom:774.257333pt;}
.y1c3{bottom:774.617333pt;}
.y10b{bottom:775.173333pt;}
.y15a{bottom:775.834667pt;}
.y3c{bottom:775.905333pt;}
.y191{bottom:779.065333pt;}
.y108{bottom:781.413333pt;}
.y83{bottom:785.196000pt;}
.ybc{bottom:785.220000pt;}
.y107{bottom:790.525333pt;}
.ya9{bottom:792.197333pt;}
.yb{bottom:793.278667pt;}
.y3b{bottom:793.917333pt;}
.y190{bottom:795.577333pt;}
.y10a{bottom:800.786667pt;}
.y1c2{bottom:802.685333pt;}
.y109{bottom:803.832000pt;}
.ya{bottom:805.078667pt;}
.y110{bottom:807.633333pt;}
.ya8{bottom:810.210667pt;}
.y3a{bottom:811.930667pt;}
.y18f{bottom:812.088000pt;}
.y1c1{bottom:819.901333pt;}
.ybb{bottom:824.302667pt;}
.y9{bottom:825.557333pt;}
.ya7{bottom:828.222667pt;}
.y18e{bottom:828.600000pt;}
.y39{bottom:829.942667pt;}
.y1c0{bottom:837.116000pt;}
.y106{bottom:839.985333pt;}
.y8{bottom:842.229333pt;}
.y18d{bottom:845.112000pt;}
.y38{bottom:847.954667pt;}
.ya5{bottom:852.977333pt;}
.y1bf{bottom:854.332000pt;}
.y105{bottom:857.997333pt;}
.y7{bottom:860.241333pt;}
.ya4{bottom:861.425333pt;}
.y18c{bottom:861.622667pt;}
.ya3{bottom:862.089333pt;}
.ya6{bottom:863.550667pt;}
.y37{bottom:865.968000pt;}
.y1be{bottom:871.546667pt;}
.y104{bottom:876.010667pt;}
.y18b{bottom:878.134667pt;}
.y36{bottom:883.980000pt;}
.y1bd{bottom:888.762667pt;}
.yf2{bottom:894.022667pt;}
.y18a{bottom:894.645333pt;}
.y6{bottom:898.178667pt;}
.y35{bottom:901.993333pt;}
.y1bc{bottom:905.978667pt;}
.y189{bottom:911.157333pt;}
.yf1{bottom:912.034667pt;}
.y34{bottom:920.005333pt;}
.y1bb{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y188{bottom:927.669333pt;}
.yf0{bottom:930.048000pt;}
.y33{bottom:938.017333pt;}
.y1ba{bottom:940.409333pt;}
.y187{bottom:944.180000pt;}
.yef{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y32{bottom:956.030667pt;}
.y1b9{bottom:957.624000pt;}
.yee{bottom:966.073333pt;}
.y186{bottom:970.576000pt;}
.y31{bottom:974.042667pt;}
.y1b8{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y30{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y2f{bottom:1038.548000pt;}
.h16{height:2.125355pt;}
.h1e{height:2.214635pt;}
.h8{height:27.076941pt;}
.hf{height:29.066800pt;}
.h2e{height:29.397999pt;}
.hc{height:31.157778pt;}
.h27{height:31.558400pt;}
.h26{height:32.836122pt;}
.h1b{height:34.000589pt;}
.h2f{height:34.239693pt;}
.hd{height:34.430976pt;}
.h9{height:34.813542pt;}
.h2d{height:35.052646pt;}
.he{height:37.372000pt;}
.h11{height:37.778179pt;}
.ha{height:38.256384pt;}
.hb{height:38.681455pt;}
.h4{height:38.947124pt;}
.h28{height:39.850400pt;}
.h1d{height:41.524400pt;}
.h2{height:45.271688pt;}
.h1f{height:46.262635pt;}
.h1c{height:46.426800pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h29{height:55.093999pt;}
.h2b{height:55.099332pt;}
.h23{height:56.452400pt;}
.h5{height:68.861952pt;}
.h20{height:73.751513pt;}
.h10{height:74.654788pt;}
.h2a{height:77.400021pt;}
.h24{height:77.576458pt;}
.h22{height:79.369455pt;}
.h3{height:83.992000pt;}
.h25{height:84.465301pt;}
.h19{height:85.859499pt;}
.h17{height:85.864832pt;}
.h21{height:86.950635pt;}
.h1a{height:87.352832pt;}
.h18{height:87.358165pt;}
.h12{height:93.010688pt;}
.h13{height:113.517355pt;}
.h15{height:126.994688pt;}
.h14{height:129.458688pt;}
.h2c{height:166.600021pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:52.049422pt;}
.x1{left:102.046667pt;}
.x87{left:106.552000pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x9c{left:116.510667pt;}
.x4e{left:127.644000pt;}
.x4{left:129.929333pt;}
.x58{left:131.270667pt;}
.x88{left:132.588000pt;}
.x85{left:134.060000pt;}
.x4f{left:139.788000pt;}
.x61{left:146.882667pt;}
.x50{left:148.333333pt;}
.x67{left:157.168000pt;}
.x59{left:158.808000pt;}
.x6f{left:162.144000pt;}
.x70{left:168.193333pt;}
.x6{left:170.625333pt;}
.x62{left:171.809333pt;}
.x14{left:177.234667pt;}
.x5d{left:178.360000pt;}
.x22{left:181.248000pt;}
.x7{left:182.956000pt;}
.x15{left:183.876000pt;}
.x90{left:187.268000pt;}
.xb4{left:188.306667pt;}
.x23{left:189.768000pt;}
.x12{left:191.396000pt;}
.x5a{left:194.632000pt;}
.x1c{left:196.676000pt;}
.x13{left:198.037333pt;}
.x86{left:199.029333pt;}
.x16{left:202.269333pt;}
.x68{left:203.886667pt;}
.x21{left:205.309333pt;}
.x24{left:210.306667pt;}
.x5b{left:211.486667pt;}
.x89{left:212.662667pt;}
.xbe{left:214.250667pt;}
.x17{left:215.553333pt;}
.x25{left:222.458667pt;}
.x37{left:224.672000pt;}
.x69{left:226.234667pt;}
.xbf{left:227.452000pt;}
.xaa{left:231.698667pt;}
.x8c{left:232.862667pt;}
.x5c{left:237.621333pt;}
.xc1{left:240.173333pt;}
.x26{left:241.809333pt;}
.x27{left:247.122667pt;}
.x8{left:248.750667pt;}
.xa8{left:250.408000pt;}
.x38{left:252.508000pt;}
.x3c{left:253.994667pt;}
.x9{left:255.393333pt;}
.x51{left:261.428000pt;}
.x5e{left:263.773333pt;}
.x71{left:266.894667pt;}
.x7b{left:270.161333pt;}
.x39{left:271.077333pt;}
.x92{left:273.582667pt;}
.x72{left:278.304000pt;}
.x3d{left:279.440000pt;}
.x7c{left:281.292000pt;}
.x6a{left:283.942667pt;}
.x42{left:286.502667pt;}
.x93{left:288.256000pt;}
.xb7{left:291.897333pt;}
.x5f{left:295.258667pt;}
.x6e{left:296.148000pt;}
.x54{left:297.060000pt;}
.x1d{left:298.197333pt;}
.x3f{left:301.546667pt;}
.x3e{left:303.804000pt;}
.xb8{left:305.493333pt;}
.x55{left:307.828000pt;}
.x1e{left:311.481333pt;}
.x83{left:315.776000pt;}
.xb2{left:316.853333pt;}
.x7d{left:320.210667pt;}
.x84{left:321.753333pt;}
.xb9{left:322.824000pt;}
.x3a{left:330.488000pt;}
.xa2{left:335.753333pt;}
.xb3{left:337.713333pt;}
.x60{left:338.700000pt;}
.x6b{left:347.872000pt;}
.xa3{left:350.528000pt;}
.xaf{left:353.314667pt;}
.x73{left:356.394667pt;}
.x1f{left:357.406667pt;}
.x40{left:359.570667pt;}
.x8a{left:360.669333pt;}
.x74{left:362.445333pt;}
.x8b{left:363.944000pt;}
.x9d{left:365.030667pt;}
.x20{left:370.690667pt;}
.x94{left:373.493333pt;}
.x6c{left:377.585333pt;}
.x81{left:378.706667pt;}
.x98{left:379.885333pt;}
.x6d{left:385.933333pt;}
.x8d{left:387.840000pt;}
.xae{left:389.384000pt;}
.x9e{left:391.704000pt;}
.x82{left:392.665333pt;}
.x99{left:394.128000pt;}
.x8e{left:396.854667pt;}
.x7e{left:403.042667pt;}
.x2d{left:404.137333pt;}
.xa4{left:405.614667pt;}
.x8f{left:407.334667pt;}
.x7f{left:409.093333pt;}
.x2e{left:411.077333pt;}
.x4c{left:416.792000pt;}
.x2f{left:418.889333pt;}
.x63{left:421.525333pt;}
.x75{left:423.824000pt;}
.x30{left:425.697333pt;}
.x64{left:432.158667pt;}
.x52{left:445.385333pt;}
.x4d{left:448.176000pt;}
.x29{left:461.838667pt;}
.x18{left:467.013333pt;}
.x2a{left:473.837333pt;}
.x3b{left:476.418667pt;}
.x19{left:480.297333pt;}
.x53{left:481.230667pt;}
.x1a{left:483.684000pt;}
.x46{left:485.333333pt;}
.x95{left:490.230667pt;}
.x9f{left:495.509333pt;}
.x1b{left:496.968000pt;}
.x96{left:498.874667pt;}
.xa0{left:501.640000pt;}
.x2b{left:509.060000pt;}
.xa6{left:511.604000pt;}
.x2c{left:514.373333pt;}
.xa7{left:518.909333pt;}
.xb0{left:520.088000pt;}
.xa9{left:525.676000pt;}
.xb1{left:528.370667pt;}
.x80{left:529.988000pt;}
.xb5{left:532.002667pt;}
.xa{left:533.585333pt;}
.xb{left:540.226667pt;}
.xc{left:543.544000pt;}
.x47{left:546.046667pt;}
.xd{left:550.185333pt;}
.xba{left:553.160000pt;}
.xb6{left:558.717333pt;}
.x48{left:560.404000pt;}
.xbb{left:566.662667pt;}
.x76{left:579.117333pt;}
.xbc{left:580.258667pt;}
.x10{left:581.842667pt;}
.x56{left:584.448000pt;}
.x43{left:587.257333pt;}
.x11{left:588.484000pt;}
.x9a{left:596.074667pt;}
.xbd{left:597.589333pt;}
.x4a{left:602.384000pt;}
.x44{left:604.878667pt;}
.x77{left:606.453333pt;}
.x9b{left:610.317333pt;}
.x4b{left:612.010667pt;}
.x65{left:616.513333pt;}
.x31{left:618.902667pt;}
.x97{left:620.546667pt;}
.x66{left:624.716000pt;}
.xa1{left:629.206667pt;}
.xab{left:630.348000pt;}
.x32{left:631.948000pt;}
.x78{left:633.790667pt;}
.xac{left:635.656000pt;}
.x33{left:639.760000pt;}
.x79{left:643.884000pt;}
.x49{left:646.546667pt;}
.x45{left:649.908000pt;}
.xa5{left:651.594667pt;}
.x34{left:652.532000pt;}
.xad{left:654.742667pt;}
.x91{left:656.477333pt;}
.x28{left:657.682667pt;}
.x35{left:660.609333pt;}
.xc0{left:666.189333pt;}
.x36{left:671.242667pt;}
.x41{left:676.165333pt;}
.xe{left:678.936000pt;}
.x7a{left:684.541333pt;}
.xf{left:685.577333pt;}
.x57{left:690.590667pt;}
}




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