
    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_46e38dcfb7e88319d1cb8d10.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_76647e93181a6283821c3386.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_4ff9e0fe67a503a2cbf80546.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_addf25f368e2246c20441bb5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_6e5117e147614ead0b5e75c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_682d42597efca9d8e9990881.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740000;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_f39d7f3fc869679f921a8492.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.040000;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_0752da9fdadf9c0bc3cc01c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734000;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;}
.m5{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);}
.m24{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);}
.m19{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);}
.m1a{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);}
.m27{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);}
.m13{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);}
.m9{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);}
.m1e{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);}
.m20{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);}
.m4{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);}
.m22{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);}
.m7{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);}
.md{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);}
.me{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);}
.m2{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);}
.m21{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);}
.ma{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);}
.m10{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);}
.m14{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);}
.m8{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);}
.m6{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);}
.m15{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);}
.m1d{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m11{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);}
.m17{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);}
.mb{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);}
.m18{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);}
.m1c{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);}
.m25{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);}
.m1b{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);}
.m16{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);}
.m1f{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);}
.mc{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);}
.m28{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);}
.m23{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);}
.m12{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);}
.m3{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-19.530000px;}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.696000px;}
.v3{vertical-align:28.392000px;}
.v4{vertical-align:56.784000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.003746px;}
.ls6{letter-spacing:0.572693px;}
.ls7{letter-spacing:0.578693px;}
.lsb{letter-spacing:0.587865px;}
.lsc{letter-spacing:0.593865px;}
.lse{letter-spacing:0.642088px;}
.lsd{letter-spacing:0.648088px;}
.ls1{letter-spacing:11.954850px;}
.ls4{letter-spacing:12.791978px;}
.ls9{letter-spacing:13.509286px;}
.ls2{letter-spacing:14.585246px;}
.ls3{letter-spacing:14.943900px;}
.ls8{letter-spacing:15.003676px;}
.lsa{letter-spacing:19.247743px;}
.lsf{letter-spacing:109.824600px;}
.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;}
}
.ws69{word-spacing:-14.943900px;}
.wsbd{word-spacing:-13.449600px;}
.ws90{word-spacing:-12.254100px;}
.ws27{word-spacing:-11.955150px;}
.ws4{word-spacing:-10.460700px;}
.wsf{word-spacing:-2.528525px;}
.ws52{word-spacing:-2.211697px;}
.ws51{word-spacing:-2.151922px;}
.ws53{word-spacing:-1.972595px;}
.ws44{word-spacing:-1.853044px;}
.wsb2{word-spacing:-1.817183px;}
.ws83{word-spacing:-1.793268px;}
.ws43{word-spacing:-1.733492px;}
.wsa6{word-spacing:-1.494390px;}
.ws81{word-spacing:-1.434614px;}
.ws86{word-spacing:-1.315063px;}
.ws3b{word-spacing:-1.255288px;}
.ws36{word-spacing:-1.016185px;}
.ws4c{word-spacing:-0.956410px;}
.ws7f{word-spacing:-0.836858px;}
.wsa8{word-spacing:-0.753178px;}
.ws11{word-spacing:-0.645581px;}
.ws9d{word-spacing:-0.537980px;}
.ws4b{word-spacing:-0.418429px;}
.ws10{word-spacing:-0.376589px;}
.ws3c{word-spacing:-0.358654px;}
.ws14{word-spacing:-0.322790px;}
.ws2c{word-spacing:-0.298878px;}
.wsb5{word-spacing:-0.286924px;}
.wsd{word-spacing:-0.268992px;}
.ws2a{word-spacing:-0.239102px;}
.wsb9{word-spacing:-0.215194px;}
.wsb4{word-spacing:-0.191282px;}
.ws20{word-spacing:-0.179327px;}
.wsc{word-spacing:-0.122414px;}
.ws28{word-spacing:-0.119551px;}
.ws1e{word-spacing:-0.059776px;}
.wsa9{word-spacing:-0.053798px;}
.wsc8{word-spacing:-0.015994px;}
.wsbf{word-spacing:-0.011770px;}
.wsbb{word-spacing:-0.007853px;}
.wsc4{word-spacing:-0.006682px;}
.wscc{word-spacing:-0.005443px;}
.ws2{word-spacing:-0.005369px;}
.wsc7{word-spacing:-0.003840px;}
.ws26{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.041843px;}
.ws88{word-spacing:0.053798px;}
.ws24{word-spacing:0.059776px;}
.ws64{word-spacing:0.095641px;}
.wse{word-spacing:0.107597px;}
.ws18{word-spacing:0.119551px;}
.ws66{word-spacing:0.143462px;}
.wsbe{word-spacing:0.161395px;}
.ws22{word-spacing:0.179327px;}
.ws65{word-spacing:0.191282px;}
.wsab{word-spacing:0.215194px;}
.ws1a{word-spacing:0.239102px;}
.wsaa{word-spacing:0.268992px;}
.ws19{word-spacing:0.298878px;}
.ws48{word-spacing:0.358654px;}
.ws9c{word-spacing:0.418429px;}
.ws1b{word-spacing:0.478205px;}
.ws6a{word-spacing:0.484186px;}
.ws1c{word-spacing:0.537980px;}
.wscd{word-spacing:0.537984px;}
.ws25{word-spacing:0.597756px;}
.ws4a{word-spacing:0.777083px;}
.wsb7{word-spacing:0.806976px;}
.ws9a{word-spacing:0.860771px;}
.wsb8{word-spacing:0.860774px;}
.ws46{word-spacing:0.896634px;}
.ws49{word-spacing:0.956410px;}
.ws29{word-spacing:1.075961px;}
.ws76{word-spacing:1.099874px;}
.ws35{word-spacing:1.195512px;}
.ws80{word-spacing:1.255288px;}
.ws74{word-spacing:1.291156px;}
.wsb{word-spacing:1.380812px;}
.wsa1{word-spacing:1.554166px;}
.wsa4{word-spacing:1.613941px;}
.wsa5{word-spacing:1.673717px;}
.ws1d{word-spacing:1.853044px;}
.ws78{word-spacing:1.960645px;}
.ws85{word-spacing:1.972595px;}
.wsca{word-spacing:2.151936px;}
.ws12{word-spacing:2.205734px;}
.ws45{word-spacing:2.271473px;}
.wsb3{word-spacing:2.295389px;}
.ws41{word-spacing:2.391024px;}
.ws33{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws3d{word-spacing:2.570351px;}
.ws3e{word-spacing:2.630126px;}
.ws7c{word-spacing:2.689902px;}
.wsc9{word-spacing:2.743718px;}
.ws31{word-spacing:2.749678px;}
.ws77{word-spacing:2.773595px;}
.ws7d{word-spacing:2.809453px;}
.ws67{word-spacing:2.867093px;}
.ws17{word-spacing:2.929004px;}
.wsc2{word-spacing:2.958912px;}
.ws3a{word-spacing:2.988780px;}
.ws13{word-spacing:3.012710px;}
.ws50{word-spacing:3.048556px;}
.ws15{word-spacing:3.219667px;}
.wsc6{word-spacing:3.220435px;}
.wsc3{word-spacing:3.221971px;}
.wsba{word-spacing:3.224160px;}
.wsa7{word-spacing:3.224822px;}
.ws4d{word-spacing:3.227882px;}
.wsbc{word-spacing:3.227904px;}
.ws7b{word-spacing:3.347434px;}
.wsc0{word-spacing:3.496896px;}
.wsc1{word-spacing:3.550694px;}
.ws16{word-spacing:3.586536px;}
.ws32{word-spacing:3.765863px;}
.wscb{word-spacing:3.819686px;}
.wsc5{word-spacing:3.927283px;}
.ws1f{word-spacing:4.004965px;}
.ws75{word-spacing:4.160392px;}
.ws30{word-spacing:4.184292px;}
.ws84{word-spacing:4.303843px;}
.ws42{word-spacing:4.363619px;}
.ws4e{word-spacing:4.423394px;}
.ws7a{word-spacing:4.483170px;}
.ws47{word-spacing:4.722272px;}
.ws39{word-spacing:4.782048px;}
.ws9b{word-spacing:4.829881px;}
.ws9e{word-spacing:5.080926px;}
.ws9f{word-spacing:5.140702px;}
.wsa0{word-spacing:5.200477px;}
.ws21{word-spacing:5.260253px;}
.ws87{word-spacing:5.439580px;}
.ws9{word-spacing:5.481407px;}
.ws82{word-spacing:5.499355px;}
.ws3f{word-spacing:5.798233px;}
.ws2e{word-spacing:5.858009px;}
.ws23{word-spacing:6.156887px;}
.ws40{word-spacing:6.216662px;}
.ws2d{word-spacing:6.395989px;}
.wsb6{word-spacing:6.832397px;}
.ws34{word-spacing:7.173072px;}
.ws38{word-spacing:7.292623px;}
.ws37{word-spacing:7.770828px;}
.ws2b{word-spacing:7.890379px;}
.ws79{word-spacing:8.009930px;}
.wsa2{word-spacing:8.069706px;}
.ws4f{word-spacing:8.368584px;}
.ws68{word-spacing:8.428360px;}
.wsa3{word-spacing:9.085891px;}
.ws2f{word-spacing:9.205442px;}
.ws7e{word-spacing:9.623872px;}
.ws8{word-spacing:11.841512px;}
.ws7{word-spacing:13.306010px;}
.ws3{word-spacing:15.481836px;}
.wsa{word-spacing:22.720640px;}
.ws6{word-spacing:29.262958px;}
.ws98{word-spacing:130.484160px;}
.ws54{word-spacing:135.666172px;}
.ws56{word-spacing:135.672172px;}
.ws96{word-spacing:141.729620px;}
.ws5b{word-spacing:146.188318px;}
.ws5d{word-spacing:146.194318px;}
.ws8b{word-spacing:151.269000px;}
.ws8e{word-spacing:160.797000px;}
.ws94{word-spacing:170.331000px;}
.ws97{word-spacing:171.707401px;}
.ws59{word-spacing:179.422891px;}
.ws55{word-spacing:179.451004px;}
.ws60{word-spacing:179.977259px;}
.ws58{word-spacing:179.983259px;}
.wsac{word-spacing:181.354406px;}
.ws8d{word-spacing:185.991000px;}
.ws92{word-spacing:185.997000px;}
.ws5c{word-spacing:186.913967px;}
.ws61{word-spacing:187.408931px;}
.ws57{word-spacing:191.378041px;}
.ws8c{word-spacing:193.663796px;}
.ws5a{word-spacing:199.364081px;}
.ws8f{word-spacing:205.819864px;}
.ws99{word-spacing:205.868880px;}
.ws6b{word-spacing:209.741152px;}
.ws93{word-spacing:209.985000px;}
.ws95{word-spacing:209.991000px;}
.ws5e{word-spacing:211.319231px;}
.ws91{word-spacing:222.067163px;}
.ws73{word-spacing:253.414500px;}
.ws6f{word-spacing:264.075508px;}
.ws72{word-spacing:264.092509px;}
.wsae{word-spacing:266.571072px;}
.ws71{word-spacing:277.996500px;}
.ws8a{word-spacing:279.442496px;}
.wsb1{word-spacing:279.913075px;}
.wsaf{word-spacing:280.574918px;}
.ws6d{word-spacing:285.488982px;}
.ws6e{word-spacing:297.348491px;}
.ws70{word-spacing:297.955916px;}
.wsb0{word-spacing:302.400806px;}
.wsad{word-spacing:360.718272px;}
.ws63{word-spacing:367.100640px;}
.ws6c{word-spacing:369.175032px;}
.ws62{word-spacing:379.944368px;}
.ws5f{word-spacing:449.928368px;}
.ws89{word-spacing:464.871538px;}
._e{margin-left:-6.933962px;}
._3{margin-left:-5.917824px;}
._4{margin-left:-4.554887px;}
._26{margin-left:-3.323657px;}
._0{margin-left:-2.301354px;}
._5{margin-left:-1.075968px;}
._6b{width:2.905114px;}
._69{width:9.133735px;}
._6a{width:10.950917px;}
._1e{width:11.955150px;}
._1{width:12.971268px;}
._42{width:14.107077px;}
._7{width:15.171149px;}
._6{width:16.300915px;}
._d{width:17.514251px;}
._a{width:18.530436px;}
._b{width:19.725948px;}
._f{width:20.861684px;}
._12{width:22.236523px;}
._8{width:23.886490px;}
._2{width:25.314894px;}
._9{width:27.078347px;}
._18{width:28.752064px;}
._52{width:29.887800px;}
._c{width:31.143088px;}
._17{width:33.026012px;}
._43{width:35.446931px;}
._15{width:36.582674px;}
._14{width:38.615038px;}
._16{width:40.408306px;}
._13{width:42.679778px;}
._27{width:44.413271px;}
._44{width:128.794861px;}
._49{width:138.334241px;}
._4f{width:153.988861px;}
._4e{width:158.169923px;}
._45{width:163.516861px;}
._51{width:166.138559px;}
._46{width:183.376352px;}
._4c{width:193.476968px;}
._25{width:199.364081px;}
._50{width:202.437732px;}
._1b{width:203.895191px;}
._48{width:209.155692px;}
._24{width:211.319231px;}
._4d{width:213.368389px;}
._4a{width:218.705609px;}
._2b{width:222.189860px;}
._1a{width:223.274381px;}
._47{width:229.053637px;}
._31{width:231.486073px;}
._41{width:234.138807px;}
._68{width:237.214973px;}
._4b{width:238.562819px;}
._58{width:239.618074px;}
._3b{width:241.225271px;}
._1f{width:243.311213px;}
._57{width:250.054963px;}
._2c{width:256.065860px;}
._39{width:260.144984px;}
._34{width:274.958678px;}
._2e{width:276.050929px;}
._59{width:277.707341px;}
._30{width:285.354478px;}
._2a{width:288.010706px;}
._61{width:293.362675px;}
._66{width:294.599836px;}
._3d{width:303.624920px;}
._36{width:304.712863px;}
._3e{width:309.934041px;}
._5c{width:315.796608px;}
._5e{width:320.907456px;}
._37{width:329.283809px;}
._65{width:331.974043px;}
._64{width:336.560582px;}
._56{width:344.847744px;}
._67{width:352.379520px;}
._5b{width:359.050522px;}
._20{width:362.007907px;}
._5a{width:375.297638px;}
._5f{width:378.352170px;}
._5d{width:381.430656px;}
._33{width:383.186468px;}
._63{width:386.918093px;}
._40{width:390.550840px;}
._22{width:406.577162px;}
._2d{width:410.922416px;}
._32{width:412.667872px;}
._2f{width:416.373964px;}
._3c{width:421.251665px;}
._3a{width:424.073081px;}
._1d{width:425.944049px;}
._55{width:459.330739px;}
._62{width:468.584064px;}
._21{width:470.675482px;}
._29{width:485.618193px;}
._19{width:490.065509px;}
._38{width:493.843336px;}
._3f{width:513.497603px;}
._23{width:559.573243px;}
._60{width:570.370637px;}
._1c{width:578.964004px;}
._35{width:584.319911px;}
._54{width:633.368563px;}
._28{width:640.317834px;}
._10{width:724.587827px;}
._53{width:2503.239000px;}
._11{width:2527.149000px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:45.429600px;}
.fs9{font-size:47.820600px;}
.fsd{font-size:49.016400px;}
.fsc{font-size:49.829400px;}
.fse{font-size:51.075000px;}
.fsa{font-size:53.798400px;}
.fsf{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:128.507760px;}
.y0{bottom:0.000000px;}
.y36{bottom:16.704213px;}
.y62{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y34{bottom:104.646000px;}
.y16d{bottom:106.992000px;}
.y198{bottom:109.554000px;}
.y61{bottom:110.763000px;}
.y1ff{bottom:112.495500px;}
.y99{bottom:119.596500px;}
.y16c{bottom:121.189500px;}
.y33{bottom:122.535000px;}
.y127{bottom:128.542500px;}
.y60{bottom:129.592500px;}
.y1fe{bottom:129.756000px;}
.y16b{bottom:135.385500px;}
.y197{bottom:136.095000px;}
.y98{bottom:138.426000px;}
.y20{bottom:139.264499px;}
.y32{bottom:140.422500px;}
.y1c7{bottom:142.081500px;}
.y126{bottom:142.740000px;}
.y1fd{bottom:147.016500px;}
.y5f{bottom:148.422000px;}
.y16a{bottom:149.583000px;}
.yf3{bottom:152.712000px;}
.y1c6{bottom:156.279000px;}
.y125{bottom:156.936000px;}
.y97{bottom:157.255500px;}
.y31{bottom:158.310000px;}
.y169{bottom:163.779000px;}
.yf2{bottom:166.908000px;}
.y5e{bottom:167.251500px;}
.y1c5{bottom:170.475000px;}
.y124{bottom:171.133500px;}
.y196{bottom:171.601500px;}
.y96{bottom:176.085000px;}
.y30{bottom:176.199000px;}
.y168{bottom:177.976500px;}
.yf1{bottom:181.105500px;}
.y1c4{bottom:184.672500px;}
.y123{bottom:185.329500px;}
.y5d{bottom:186.081000px;}
.y1fc{bottom:186.094500px;}
.y195{bottom:190.431000px;}
.y167{bottom:192.172500px;}
.y2f{bottom:194.086500px;}
.y95{bottom:194.914500px;}
.yf0{bottom:195.301500px;}
.y17{bottom:196.933500px;}
.y1c3{bottom:198.868500px;}
.y122{bottom:199.527000px;}
.y1fb{bottom:203.355000px;}
.y5c{bottom:204.910500px;}
.y166{bottom:206.370000px;}
.y194{bottom:209.260500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y2e{bottom:211.974000px;}
.y1c2{bottom:213.066000px;}
.ybc{bottom:213.295500px;}
.y121{bottom:213.723000px;}
.y94{bottom:213.744000px;}
.yef{bottom:216.462000px;}
.y1fa{bottom:220.615500px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y5b{bottom:223.740000px;}
.y165{bottom:226.947000px;}
.y1c1{bottom:227.262000px;}
.y120{bottom:227.920500px;}
.y193{bottom:228.090000px;}
.y2d{bottom:229.863000px;}
.ybb{bottom:232.125000px;}
.y93{bottom:232.573500px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.yee{bottom:237.861000px;}
.y1f9{bottom:237.876000px;}
.y1c0{bottom:241.459500px;}
.y5a{bottom:242.569500px;}
.y163{bottom:246.691500px;}
.y192{bottom:246.919500px;}
.y11f{bottom:249.079500px;}
.yba{bottom:250.954500px;}
.y92{bottom:251.403000px;}
.y164{bottom:252.961500px;}
.y1f8{bottom:255.135000px;}
.y162{bottom:258.945000px;}
.yed{bottom:259.260000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y59{bottom:261.399000px;}
.y1bf{bottom:263.292000px;}
.y191{bottom:265.749000px;}
.yb9{bottom:269.784000px;}
.y91{bottom:270.232500px;}
.y11e{bottom:270.478500px;}
.y1f7{bottom:272.395500px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y161{bottom:278.689500px;}
.y58{bottom:280.228500px;}
.yec{bottom:280.659000px;}
.y190{bottom:284.578500px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y1be{bottom:286.932000px;}
.yb8{bottom:288.613500px;}
.y90{bottom:289.062000px;}
.y1f6{bottom:289.656000px;}
.y11d{bottom:291.879000px;}
.y160{bottom:298.434000px;}
.y57{bottom:299.058000px;}
.y2c{bottom:299.892000px;}
.yeb{bottom:302.058000px;}
.y18f{bottom:303.408000px;}
.y1f5{bottom:306.916500px;}
.yb7{bottom:307.443000px;}
.y8f{bottom:307.891500px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y1bd{bottom:310.573500px;}
.y11c{bottom:313.278000px;}
.y2b{bottom:317.779500px;}
.y56{bottom:317.887500px;}
.y15f{bottom:317.890500px;}
.y18e{bottom:322.237500px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.yea{bottom:323.457000px;}
.y1f4{bottom:324.177000px;}
.yb6{bottom:326.272500px;}
.y8e{bottom:326.719500px;}
.y1bc{bottom:334.213500px;}
.y11b{bottom:334.677000px;}
.y2a{bottom:335.667000px;}
.y55{bottom:336.717000px;}
.y15d{bottom:337.633500px;}
.ye9{bottom:337.654500px;}
.y18d{bottom:341.067000px;}
.y1f3{bottom:341.437500px;}
.yb5{bottom:345.102000px;}
.y8d{bottom:345.549000px;}
.ye{bottom:348.133500px;}
.ye6{bottom:349.062000px;}
.y15c{bottom:349.888500px;}
.y15e{bottom:350.032500px;}
.y29{bottom:353.556000px;}
.y54{bottom:355.546500px;}
.y11a{bottom:356.076000px;}
.y1bb{bottom:357.853500px;}
.y1f2{bottom:358.698000px;}
.ye8{bottom:359.053500px;}
.y18c{bottom:359.896500px;}
.y15b{bottom:362.142000px;}
.yb4{bottom:363.931500px;}
.y8c{bottom:364.378500px;}
.ye7{bottom:373.249500px;}
.y53{bottom:374.376000px;}
.y1f1{bottom:375.958500px;}
.y119{bottom:377.475000px;}
.y18b{bottom:378.726000px;}
.y1ba{bottom:381.495000px;}
.y15a{bottom:381.886500px;}
.y28{bottom:381.904500px;}
.yb3{bottom:382.761000px;}
.y8b{bottom:383.208000px;}
.yd{bottom:386.785499px;}
.y52{bottom:393.205500px;}
.y1f0{bottom:393.217500px;}
.ye5{bottom:394.648500px;}
.y18a{bottom:397.555500px;}
.y118{bottom:398.874000px;}
.y27{bottom:399.792000px;}
.yb2{bottom:401.589000px;}
.y158{bottom:401.631000px;}
.y8a{bottom:402.037500px;}
.y1b9{bottom:405.135000px;}
.y159{bottom:407.902500px;}
.yc{bottom:408.044999px;}
.y1ef{bottom:410.478000px;}
.y51{bottom:412.035000px;}
.y157{bottom:413.884500px;}
.ye4{bottom:416.047500px;}
.y189{bottom:416.383500px;}
.y117{bottom:420.273000px;}
.yb1{bottom:420.418500px;}
.y89{bottom:420.867000px;}
.y26{bottom:426.646500px;}
.y1ee{bottom:427.738500px;}
.y1b8{bottom:428.776500px;}
.y50{bottom:430.863000px;}
.y156{bottom:433.773000px;}
.y188{bottom:435.213000px;}
.ye3{bottom:437.446500px;}
.yb0{bottom:439.248000px;}
.y88{bottom:439.696500px;}
.y116{bottom:441.672000px;}
.y25{bottom:444.534000px;}
.y1ed{bottom:444.999000px;}
.y4f{bottom:449.692500px;}
.y1b7{bottom:452.416500px;}
.y154{bottom:453.373500px;}
.y187{bottom:454.042500px;}
.yaf{bottom:458.077500px;}
.y87{bottom:458.526000px;}
.ye2{bottom:458.845500px;}
.y155{bottom:459.645000px;}
.y1ec{bottom:462.259500px;}
.y24{bottom:462.423000px;}
.y115{bottom:463.071000px;}
.y153{bottom:465.627000px;}
.y4e{bottom:468.522000px;}
.y186{bottom:472.872000px;}
.y1b6{bottom:476.058000px;}
.yae{bottom:476.907000px;}
.y86{bottom:477.355500px;}
.y1eb{bottom:479.520000px;}
.ye1{bottom:480.246000px;}
.y23{bottom:480.310500px;}
.y114{bottom:484.470000px;}
.y152{bottom:485.371500px;}
.y4d{bottom:487.351500px;}
.y185{bottom:491.701500px;}
.yad{bottom:495.736500px;}
.y85{bottom:496.185000px;}
.y1ea{bottom:496.780500px;}
.y22{bottom:498.198000px;}
.y1b5{bottom:499.698000px;}
.ye0{bottom:501.645000px;}
.y150{bottom:505.116000px;}
.y113{bottom:505.869000px;}
.y4c{bottom:506.181000px;}
.y184{bottom:510.531000px;}
.y151{bottom:511.387500px;}
.y1e9{bottom:514.041000px;}
.yac{bottom:514.566000px;}
.y84{bottom:515.014500px;}
.ydf{bottom:515.841000px;}
.y21{bottom:516.087000px;}
.y14f{bottom:517.371000px;}
.yb{bottom:520.864502px;}
.y1b4{bottom:523.339500px;}
.y4b{bottom:525.010500px;}
.ydc{bottom:527.248500px;}
.y112{bottom:527.268000px;}
.y183{bottom:529.360500px;}
.y1e8{bottom:531.301500px;}
.yab{bottom:533.395500px;}
.y83{bottom:533.844000px;}
.y14e{bottom:537.114000px;}
.yde{bottom:537.240000px;}
.ya{bottom:538.864499px;}
.y4a{bottom:543.840000px;}
.y1b3{bottom:546.979500px;}
.y182{bottom:548.190000px;}
.y1e7{bottom:548.560500px;}
.y111{bottom:548.667000px;}
.ydd{bottom:551.437500px;}
.yaa{bottom:552.225000px;}
.y82{bottom:552.673500px;}
.y14d{bottom:556.858500px;}
.y9{bottom:556.864499px;}
.y49{bottom:562.669500px;}
.y1e6{bottom:565.821000px;}
.y181{bottom:567.019500px;}
.y110{bottom:570.066000px;}
.y1b2{bottom:570.621000px;}
.ya9{bottom:571.054500px;}
.y81{bottom:571.503000px;}
.ydb{bottom:572.836500px;}
.y14c{bottom:576.603000px;}
.y48{bottom:581.499000px;}
.y1e5{bottom:583.081500px;}
.y180{bottom:585.849000px;}
.ya8{bottom:589.884000px;}
.y80{bottom:590.332500px;}
.y10f{bottom:591.465000px;}
.yda{bottom:594.235500px;}
.y1b1{bottom:594.261000px;}
.y14a{bottom:596.347500px;}
.y47{bottom:600.328500px;}
.y1e4{bottom:600.342000px;}
.y14b{bottom:602.475000px;}
.y17f{bottom:604.678500px;}
.y149{bottom:608.601000px;}
.ya7{bottom:608.713500px;}
.y7f{bottom:609.162000px;}
.y10e{bottom:612.865500px;}
.yd9{bottom:615.634500px;}
.y1e3{bottom:617.602500px;}
.y1b0{bottom:617.902500px;}
.y17e{bottom:623.508000px;}
.y46{bottom:623.641500px;}
.ya6{bottom:627.543000px;}
.y7e{bottom:627.991500px;}
.y148{bottom:628.057500px;}
.y10d{bottom:634.264500px;}
.y1e2{bottom:634.863000px;}
.yd8{bottom:637.033500px;}
.y1af{bottom:641.542500px;}
.y17d{bottom:642.337500px;}
.y8{bottom:645.510000px;}
.ya5{bottom:646.372500px;}
.y7d{bottom:646.821000px;}
.y146{bottom:647.802000px;}
.y1e1{bottom:652.123500px;}
.y147{bottom:653.929500px;}
.y10c{bottom:655.663500px;}
.yd7{bottom:658.432500px;}
.y145{bottom:660.057000px;}
.y17c{bottom:661.167000px;}
.y1ae{bottom:665.184000px;}
.ya4{bottom:665.202000px;}
.y7c{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y1e0{bottom:669.384000px;}
.y10b{bottom:677.062500px;}
.y144{bottom:679.512000px;}
.yd6{bottom:679.831500px;}
.y17b{bottom:679.996500px;}
.ya3{bottom:684.031500px;}
.y7b{bottom:684.480000px;}
.y1df{bottom:686.644500px;}
.y1ad{bottom:688.824000px;}
.yd5{bottom:694.029000px;}
.y45{bottom:697.984500px;}
.y10a{bottom:698.461500px;}
.y17a{bottom:698.826000px;}
.y142{bottom:699.256500px;}
.ya2{bottom:702.861000px;}
.y7a{bottom:703.309500px;}
.y1de{bottom:703.903500px;}
.y143{bottom:705.384000px;}
.yd2{bottom:705.436500px;}
.y141{bottom:711.511500px;}
.y1ac{bottom:712.465500px;}
.yd4{bottom:715.428000px;}
.y179{bottom:717.655500px;}
.y109{bottom:719.860500px;}
.y1dd{bottom:721.164000px;}
.ya1{bottom:721.690500px;}
.y79{bottom:722.139000px;}
.y6{bottom:726.298500px;}
.yd3{bottom:729.624000px;}
.y140{bottom:730.968000px;}
.y44{bottom:735.373500px;}
.y1ab{bottom:736.105500px;}
.y178{bottom:736.485000px;}
.y1dc{bottom:738.424500px;}
.ya0{bottom:740.520000px;}
.y78{bottom:740.968500px;}
.y108{bottom:741.259500px;}
.y13e{bottom:750.711000px;}
.yd1{bottom:751.023000px;}
.y3{bottom:752.599495px;}
.y177{bottom:755.314500px;}
.y1db{bottom:755.685000px;}
.y13f{bottom:757.764000px;}
.y9f{bottom:759.349500px;}
.y1aa{bottom:759.747000px;}
.y77{bottom:759.798000px;}
.y107{bottom:762.658500px;}
.y13d{bottom:764.527500px;}
.yd0{bottom:772.422000px;}
.y43{bottom:772.764000px;}
.y1da{bottom:772.945500px;}
.y176{bottom:774.144000px;}
.y9e{bottom:778.179000px;}
.y76{bottom:778.627500px;}
.y1a9{bottom:783.387000px;}
.y106{bottom:784.057500px;}
.y13c{bottom:784.272000px;}
.y1d9{bottom:790.206000px;}
.y42{bottom:792.220500px;}
.y175{bottom:792.973500px;}
.ycf{bottom:793.821000px;}
.y9d{bottom:797.008500px;}
.y75{bottom:797.457000px;}
.y13a{bottom:804.016500px;}
.y105{bottom:805.456500px;}
.y1a8{bottom:807.028500px;}
.y1d8{bottom:807.466500px;}
.y13b{bottom:810.286500px;}
.y41{bottom:811.678500px;}
.y174{bottom:811.803000px;}
.yce{bottom:815.220000px;}
.y9c{bottom:815.838000px;}
.y139{bottom:816.270000px;}
.y74{bottom:816.286500px;}
.y1d7{bottom:824.727000px;}
.y102{bottom:827.139000px;}
.y104{bottom:829.845000px;}
.y173{bottom:830.632500px;}
.y1a7{bottom:830.668500px;}
.y40{bottom:831.135000px;}
.y9b{bottom:834.667500px;}
.y73{bottom:835.114500px;}
.y138{bottom:836.014500px;}
.ycd{bottom:836.620500px;}
.y101{bottom:841.336500px;}
.yff{bottom:841.491000px;}
.y1d6{bottom:841.986000px;}
.y172{bottom:849.462000px;}
.y3f{bottom:850.593000px;}
.y72{bottom:853.944000px;}
.y103{bottom:854.232000px;}
.y1a6{bottom:854.310000px;}
.y100{bottom:855.532500px;}
.y136{bottom:855.759000px;}
.y9a{bottom:857.979000px;}
.ycc{bottom:858.019500px;}
.y1d5{bottom:859.246500px;}
.y137{bottom:862.810500px;}
.y171{bottom:868.291500px;}
.y135{bottom:869.574000px;}
.y3e{bottom:870.049500px;}
.ycb{bottom:872.215500px;}
.y71{bottom:872.773500px;}
.y1d4{bottom:876.507000px;}
.y1a5{bottom:877.950000px;}
.y2{bottom:879.369000px;}
.yc8{bottom:883.623000px;}
.y170{bottom:887.121000px;}
.yfe{bottom:887.271000px;}
.y134{bottom:889.318500px;}
.y3d{bottom:889.506000px;}
.y70{bottom:891.603000px;}
.yca{bottom:893.614500px;}
.y1d3{bottom:893.767500px;}
.y1a2{bottom:900.121500px;}
.y1a4{bottom:904.579500px;}
.y16f{bottom:905.950500px;}
.yfd{bottom:906.504000px;}
.yc9{bottom:907.812000px;}
.y3c{bottom:908.964000px;}
.y133{bottom:909.063000px;}
.y6f{bottom:910.432500px;}
.y1d2{bottom:911.028000px;}
.y130{bottom:915.190500px;}
.y1a1{bottom:916.560000px;}
.y19f{bottom:917.389500px;}
.y132{bottom:921.316500px;}
.y16e{bottom:924.778500px;}
.y12f{bottom:927.444000px;}
.y1d1{bottom:928.288500px;}
.yc7{bottom:929.211000px;}
.y6e{bottom:929.262000px;}
.y1a3{bottom:931.209000px;}
.y1a0{bottom:932.998500px;}
.y131{bottom:933.571500px;}
.yfc{bottom:943.608000px;}
.y1d0{bottom:945.549000px;}
.y12b{bottom:946.560000px;}
.y3b{bottom:947.548500px;}
.y6d{bottom:948.091500px;}
.yc6{bottom:950.610000px;}
.y12e{bottom:953.028000px;}
.y12a{bottom:958.813500px;}
.yfb{bottom:962.437500px;}
.y1cf{bottom:962.809500px;}
.y19e{bottom:965.817000px;}
.y1{bottom:966.726000px;}
.y6c{bottom:966.921000px;}
.yc5{bottom:972.009000px;}
.y12d{bottom:972.484500px;}
.y1ce{bottom:980.070000px;}
.yfa{bottom:981.267000px;}
.y19d{bottom:985.050000px;}
.y6b{bottom:985.750500px;}
.y12c{bottom:991.939500px;}
.yc4{bottom:993.408000px;}
.y3a{bottom:996.565500px;}
.y1cd{bottom:997.329000px;}
.yf9{bottom:1000.096500px;}
.y6a{bottom:1004.580000px;}
.yc3{bottom:1014.807000px;}
.yf8{bottom:1018.926000px;}
.y1cc{bottom:1019.073000px;}
.y19c{bottom:1019.106000px;}
.y69{bottom:1023.409500px;}
.y129{bottom:1023.895500px;}
.yc2{bottom:1036.206000px;}
.y39{bottom:1036.485000px;}
.yf7{bottom:1037.755500px;}
.y68{bottom:1042.239000px;}
.y128{bottom:1043.128500px;}
.yc1{bottom:1050.403500px;}
.y1cb{bottom:1052.697000px;}
.y19b{bottom:1055.868000px;}
.yf6{bottom:1056.585000px;}
.y67{bottom:1061.068500px;}
.ybe{bottom:1061.709000px;}
.y38{bottom:1064.728500px;}
.y1ca{bottom:1069.957500px;}
.yc0{bottom:1071.802500px;}
.y1c9{bottom:1074.840000px;}
.yf5{bottom:1075.414500px;}
.y66{bottom:1079.898000px;}
.y19a{bottom:1082.409000px;}
.ybf{bottom:1085.998500px;}
.y37{bottom:1092.972000px;}
.yf4{bottom:1094.244000px;}
.y1c8{bottom:1095.469500px;}
.y65{bottom:1098.727500px;}
.y199{bottom:1099.983000px;}
.y64{bottom:1117.557000px;}
.ybd{bottom:1119.037500px;}
.y35{bottom:1136.460000px;}
.y63{bottom:1177.662000px;}
.h9{height:30.461558px;}
.ha{height:30.712615px;}
.h7{height:32.130000px;}
.h15{height:34.574294px;}
.h10{height:34.813397px;}
.h13{height:35.100320px;}
.h1c{height:35.438857px;}
.h1d{height:35.683939px;}
.h1e{height:36.259939px;}
.h1f{height:38.896243px;}
.h11{height:39.165235px;}
.h20{height:39.488026px;}
.hf{height:43.217759px;}
.h12{height:43.516637px;}
.hd{height:43.875290px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.h14{height:54.768749px;}
.h2{height:55.080000px;}
.h17{height:62.966294px;}
.h1a{height:63.205397px;}
.h19{height:63.492320px;}
.he{height:77.792486px;}
.h5{height:78.030000px;}
.hc{height:87.128261px;}
.h16{height:91.364294px;}
.h18{height:91.597397px;}
.h1b{height:91.603397px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.x56{left:62.541000px;}
.x54{left:64.383000px;}
.x55{left:66.472500px;}
.x52{left:68.163000px;}
.x57{left:69.475500px;}
.x3b{left:72.225000px;}
.x59{left:73.752000px;}
.x5b{left:74.896500px;}
.x3a{left:78.799500px;}
.x58{left:82.335000px;}
.x53{left:84.565500px;}
.x68{left:85.890000px;}
.x1a{left:88.204500px;}
.x51{left:90.037500px;}
.x67{left:91.393500px;}
.x62{left:97.123500px;}
.x63{left:98.656500px;}
.x65{left:100.815000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x35{left:108.307500px;}
.x39{left:110.059500px;}
.x5c{left:112.939500px;}
.x33{left:115.152000px;}
.x34{left:116.514000px;}
.x1b{left:117.517500px;}
.x64{left:120.444000px;}
.x66{left:126.207000px;}
.x2b{left:129.210000px;}
.x19{left:130.740000px;}
.x37{left:135.882000px;}
.x38{left:141.004500px;}
.x17{left:146.682000px;}
.x60{left:154.342500px;}
.x3f{left:156.828000px;}
.x36{left:158.500500px;}
.x31{left:166.014000px;}
.x9{left:167.656500px;}
.x18{left:169.122000px;}
.x5a{left:170.607000px;}
.x3d{left:200.428500px;}
.x4{left:203.484001px;}
.x42{left:244.041000px;}
.x7{left:249.591000px;}
.x41{left:255.033000px;}
.x40{left:258.328500px;}
.x8{left:281.479500px;}
.x5f{left:289.882500px;}
.x5e{left:303.219000px;}
.x2e{left:305.829000px;}
.x5d{left:310.609500px;}
.x2d{left:317.683500px;}
.x2c{left:324.252000px;}
.x44{left:331.252500px;}
.x43{left:342.484500px;}
.x11{left:378.069000px;}
.x22{left:379.330500px;}
.x2a{left:385.350000px;}
.x10{left:389.013000px;}
.x1d{left:405.943500px;}
.x25{left:410.331000px;}
.x1c{left:415.495500px;}
.x27{left:416.977500px;}
.x46{left:418.465500px;}
.xb{left:426.225000px;}
.xa{left:427.551000px;}
.x30{left:429.322500px;}
.x45{left:432.754500px;}
.x61{left:436.612500px;}
.x32{left:438.792000px;}
.x3c{left:447.091500px;}
.x3{left:454.959000px;}
.x13{left:457.798500px;}
.x3e{left:460.026000px;}
.x12{left:468.744000px;}
.x48{left:505.678500px;}
.x47{left:516.909000px;}
.x15{left:537.529500px;}
.x23{left:538.791000px;}
.x14{left:548.473500px;}
.xc{left:559.617000px;}
.x1e{left:569.337000px;}
.x1f{left:570.753000px;}
.x26{left:572.265000px;}
.x28{left:574.956000px;}
.x2f{left:580.036500px;}
.xd{left:587.011500px;}
.x4b{left:592.891500px;}
.x4a{left:603.882000px;}
.x49{left:607.179000px;}
.x4d{left:680.103000px;}
.x4c{left:691.333500px;}
.x16{left:696.988500px;}
.x24{left:698.250000px;}
.x21{left:726.757500px;}
.xe{left:729.436500px;}
.x20{left:734.619000px;}
.x29{left:737.016000px;}
.xf{left:738.169500px;}
.x50{left:767.316000px;}
.x4f{left:778.308000px;}
.x4e{left:781.603500px;}
@media print{
.v5{vertical-align:-17.360000pt;}
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.285333pt;}
.v3{vertical-align:25.237333pt;}
.v4{vertical-align:50.474667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.003330pt;}
.ls6{letter-spacing:0.509060pt;}
.ls7{letter-spacing:0.514393pt;}
.lsb{letter-spacing:0.522547pt;}
.lsc{letter-spacing:0.527880pt;}
.lse{letter-spacing:0.570745pt;}
.lsd{letter-spacing:0.576078pt;}
.ls1{letter-spacing:10.626533pt;}
.ls4{letter-spacing:11.370647pt;}
.ls9{letter-spacing:12.008254pt;}
.ls2{letter-spacing:12.964663pt;}
.ls3{letter-spacing:13.283467pt;}
.ls8{letter-spacing:13.336601pt;}
.lsa{letter-spacing:17.109105pt;}
.lsf{letter-spacing:97.621867pt;}
.ws69{word-spacing:-13.283467pt;}
.wsbd{word-spacing:-11.955200pt;}
.ws90{word-spacing:-10.892533pt;}
.ws27{word-spacing:-10.626800pt;}
.ws4{word-spacing:-9.298400pt;}
.wsf{word-spacing:-2.247578pt;}
.ws52{word-spacing:-1.965953pt;}
.ws51{word-spacing:-1.912819pt;}
.ws53{word-spacing:-1.753418pt;}
.ws44{word-spacing:-1.647150pt;}
.wsb2{word-spacing:-1.615274pt;}
.ws83{word-spacing:-1.594016pt;}
.ws43{word-spacing:-1.540882pt;}
.wsa6{word-spacing:-1.328347pt;}
.ws81{word-spacing:-1.275213pt;}
.ws86{word-spacing:-1.168945pt;}
.ws3b{word-spacing:-1.115811pt;}
.ws36{word-spacing:-0.903276pt;}
.ws4c{word-spacing:-0.850142pt;}
.ws7f{word-spacing:-0.743874pt;}
.wsa8{word-spacing:-0.669491pt;}
.ws11{word-spacing:-0.573850pt;}
.ws9d{word-spacing:-0.478205pt;}
.ws4b{word-spacing:-0.371937pt;}
.ws10{word-spacing:-0.334746pt;}
.ws3c{word-spacing:-0.318803pt;}
.ws14{word-spacing:-0.286925pt;}
.ws2c{word-spacing:-0.265669pt;}
.wsb5{word-spacing:-0.255043pt;}
.wsd{word-spacing:-0.239104pt;}
.ws2a{word-spacing:-0.212535pt;}
.wsb9{word-spacing:-0.191283pt;}
.wsb4{word-spacing:-0.170029pt;}
.ws20{word-spacing:-0.159402pt;}
.wsc{word-spacing:-0.108812pt;}
.ws28{word-spacing:-0.106268pt;}
.ws1e{word-spacing:-0.053134pt;}
.wsa9{word-spacing:-0.047821pt;}
.wsc8{word-spacing:-0.014217pt;}
.wsbf{word-spacing:-0.010462pt;}
.wsbb{word-spacing:-0.006980pt;}
.wsc4{word-spacing:-0.005939pt;}
.wscc{word-spacing:-0.004838pt;}
.ws2{word-spacing:-0.004772pt;}
.wsc7{word-spacing:-0.003413pt;}
.ws26{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.037194pt;}
.ws88{word-spacing:0.047821pt;}
.ws24{word-spacing:0.053134pt;}
.ws64{word-spacing:0.085014pt;}
.wse{word-spacing:0.095642pt;}
.ws18{word-spacing:0.106268pt;}
.ws66{word-spacing:0.127522pt;}
.wsbe{word-spacing:0.143462pt;}
.ws22{word-spacing:0.159402pt;}
.ws65{word-spacing:0.170029pt;}
.wsab{word-spacing:0.191283pt;}
.ws1a{word-spacing:0.212535pt;}
.wsaa{word-spacing:0.239104pt;}
.ws19{word-spacing:0.265669pt;}
.ws48{word-spacing:0.318803pt;}
.ws9c{word-spacing:0.371937pt;}
.ws1b{word-spacing:0.425071pt;}
.ws6a{word-spacing:0.430387pt;}
.ws1c{word-spacing:0.478205pt;}
.wscd{word-spacing:0.478208pt;}
.ws25{word-spacing:0.531339pt;}
.ws4a{word-spacing:0.690740pt;}
.wsb7{word-spacing:0.717312pt;}
.ws9a{word-spacing:0.765130pt;}
.wsb8{word-spacing:0.765133pt;}
.ws46{word-spacing:0.797008pt;}
.ws49{word-spacing:0.850142pt;}
.ws29{word-spacing:0.956410pt;}
.ws76{word-spacing:0.977666pt;}
.ws35{word-spacing:1.062677pt;}
.ws80{word-spacing:1.115811pt;}
.ws74{word-spacing:1.147694pt;}
.wsb{word-spacing:1.227389pt;}
.wsa1{word-spacing:1.381481pt;}
.wsa4{word-spacing:1.434614pt;}
.wsa5{word-spacing:1.487748pt;}
.ws1d{word-spacing:1.647150pt;}
.ws78{word-spacing:1.742795pt;}
.ws85{word-spacing:1.753418pt;}
.wsca{word-spacing:1.912832pt;}
.ws12{word-spacing:1.960653pt;}
.ws45{word-spacing:2.019087pt;}
.wsb3{word-spacing:2.040346pt;}
.ws41{word-spacing:2.125355pt;}
.ws33{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws3d{word-spacing:2.284756pt;}
.ws3e{word-spacing:2.337890pt;}
.ws7c{word-spacing:2.391024pt;}
.wsc9{word-spacing:2.438861pt;}
.ws31{word-spacing:2.444158pt;}
.ws77{word-spacing:2.465418pt;}
.ws7d{word-spacing:2.497292pt;}
.ws67{word-spacing:2.548527pt;}
.ws17{word-spacing:2.603559pt;}
.wsc2{word-spacing:2.630144pt;}
.ws3a{word-spacing:2.656693pt;}
.ws13{word-spacing:2.677965pt;}
.ws50{word-spacing:2.709827pt;}
.ws15{word-spacing:2.861926pt;}
.wsc6{word-spacing:2.862609pt;}
.wsc3{word-spacing:2.863974pt;}
.wsba{word-spacing:2.865920pt;}
.wsa7{word-spacing:2.866509pt;}
.ws4d{word-spacing:2.869229pt;}
.wsbc{word-spacing:2.869248pt;}
.ws7b{word-spacing:2.975497pt;}
.wsc0{word-spacing:3.108352pt;}
.wsc1{word-spacing:3.156173pt;}
.ws16{word-spacing:3.188032pt;}
.ws32{word-spacing:3.347434pt;}
.wscb{word-spacing:3.395277pt;}
.wsc5{word-spacing:3.490918pt;}
.ws1f{word-spacing:3.559969pt;}
.ws75{word-spacing:3.698126pt;}
.ws30{word-spacing:3.719371pt;}
.ws84{word-spacing:3.825638pt;}
.ws42{word-spacing:3.878772pt;}
.ws4e{word-spacing:3.931906pt;}
.ws7a{word-spacing:3.985040pt;}
.ws47{word-spacing:4.197575pt;}
.ws39{word-spacing:4.250709pt;}
.ws9b{word-spacing:4.293227pt;}
.ws9e{word-spacing:4.516379pt;}
.ws9f{word-spacing:4.569513pt;}
.wsa0{word-spacing:4.622646pt;}
.ws21{word-spacing:4.675780pt;}
.ws87{word-spacing:4.835182pt;}
.ws9{word-spacing:4.872362pt;}
.ws82{word-spacing:4.888316pt;}
.ws3f{word-spacing:5.153985pt;}
.ws2e{word-spacing:5.207119pt;}
.ws23{word-spacing:5.472788pt;}
.ws40{word-spacing:5.525922pt;}
.ws2d{word-spacing:5.685324pt;}
.wsb6{word-spacing:6.073242pt;}
.ws34{word-spacing:6.376064pt;}
.ws38{word-spacing:6.482332pt;}
.ws37{word-spacing:6.907403pt;}
.ws2b{word-spacing:7.013670pt;}
.ws79{word-spacing:7.119938pt;}
.wsa2{word-spacing:7.173072pt;}
.ws4f{word-spacing:7.438741pt;}
.ws68{word-spacing:7.491875pt;}
.wsa3{word-spacing:8.076348pt;}
.ws2f{word-spacing:8.182615pt;}
.ws7e{word-spacing:8.554553pt;}
.ws8{word-spacing:10.525789pt;}
.ws7{word-spacing:11.827565pt;}
.ws3{word-spacing:13.761632pt;}
.wsa{word-spacing:20.196125pt;}
.ws6{word-spacing:26.011518pt;}
.ws98{word-spacing:115.985920pt;}
.ws54{word-spacing:120.592153pt;}
.ws56{word-spacing:120.597486pt;}
.ws96{word-spacing:125.981885pt;}
.ws5b{word-spacing:129.945172pt;}
.ws5d{word-spacing:129.950505pt;}
.ws8b{word-spacing:134.461333pt;}
.ws8e{word-spacing:142.930667pt;}
.ws94{word-spacing:151.405333pt;}
.ws97{word-spacing:152.628801pt;}
.ws59{word-spacing:159.487014pt;}
.ws55{word-spacing:159.512003pt;}
.ws60{word-spacing:159.979786pt;}
.ws58{word-spacing:159.985119pt;}
.wsac{word-spacing:161.203917pt;}
.ws8d{word-spacing:165.325333pt;}
.ws92{word-spacing:165.330667pt;}
.ws5c{word-spacing:166.145749pt;}
.ws61{word-spacing:166.585717pt;}
.ws57{word-spacing:170.113814pt;}
.ws8c{word-spacing:172.145597pt;}
.ws5a{word-spacing:177.212517pt;}
.ws8f{word-spacing:182.950990pt;}
.ws99{word-spacing:182.994560pt;}
.ws6b{word-spacing:186.436579pt;}
.ws93{word-spacing:186.653333pt;}
.ws95{word-spacing:186.658667pt;}
.ws5e{word-spacing:187.839317pt;}
.ws91{word-spacing:197.393034pt;}
.ws73{word-spacing:225.257333pt;}
.ws6f{word-spacing:234.733785pt;}
.ws72{word-spacing:234.748897pt;}
.wsae{word-spacing:236.952064pt;}
.ws71{word-spacing:247.108000pt;}
.ws8a{word-spacing:248.393330pt;}
.wsb1{word-spacing:248.811622pt;}
.wsaf{word-spacing:249.399927pt;}
.ws6d{word-spacing:253.767984pt;}
.ws6e{word-spacing:264.309770pt;}
.ws70{word-spacing:264.849703pt;}
.wsb0{word-spacing:268.800717pt;}
.wsad{word-spacing:320.638464pt;}
.ws63{word-spacing:326.311680pt;}
.ws6c{word-spacing:328.155584pt;}
.ws62{word-spacing:337.728327pt;}
.ws5f{word-spacing:399.936327pt;}
.ws89{word-spacing:413.219145pt;}
._e{margin-left:-6.163522pt;}
._3{margin-left:-5.260288pt;}
._4{margin-left:-4.048789pt;}
._26{margin-left:-2.954362pt;}
._0{margin-left:-2.045648pt;}
._5{margin-left:-0.956416pt;}
._6b{width:2.582323pt;}
._69{width:8.118875pt;}
._6a{width:9.734149pt;}
._1e{width:10.626800pt;}
._1{width:11.530016pt;}
._42{width:12.539624pt;}
._7{width:13.485466pt;}
._6{width:14.489702pt;}
._d{width:15.568223pt;}
._a{width:16.471499pt;}
._b{width:17.534176pt;}
._f{width:18.543719pt;}
._12{width:19.765798pt;}
._8{width:21.232435pt;}
._2{width:22.502128pt;}
._9{width:24.069642pt;}
._18{width:25.557390pt;}
._52{width:26.566933pt;}
._c{width:27.682745pt;}
._17{width:29.356455pt;}
._43{width:31.508383pt;}
._15{width:32.517933pt;}
._14{width:34.324478pt;}
._16{width:35.918494pt;}
._13{width:37.937581pt;}
._27{width:39.478463pt;}
._44{width:114.484321pt;}
._49{width:122.963770pt;}
._4f{width:136.878988pt;}
._4e{width:140.595487pt;}
._45{width:145.348321pt;}
._51{width:147.678719pt;}
._46{width:163.001202pt;}
._4c{width:171.979527pt;}
._25{width:177.212517pt;}
._50{width:179.944651pt;}
._1b{width:181.240170pt;}
._48{width:185.916171pt;}
._24{width:187.839317pt;}
._4d{width:189.660790pt;}
._4a{width:194.404986pt;}
._2b{width:197.502098pt;}
._1a{width:198.466117pt;}
._47{width:203.603233pt;}
._31{width:205.765398pt;}
._41{width:208.123384pt;}
._68{width:210.857754pt;}
._4b{width:212.055839pt;}
._58{width:212.993843pt;}
._3b{width:214.422463pt;}
._1f{width:216.276634pt;}
._57{width:222.271078pt;}
._2c{width:227.614098pt;}
._39{width:231.239986pt;}
._34{width:244.407714pt;}
._2e{width:245.378604pt;}
._59{width:246.850970pt;}
._30{width:253.648425pt;}
._2a{width:256.009517pt;}
._61{width:260.766822pt;}
._66{width:261.866521pt;}
._3d{width:269.888818pt;}
._36{width:270.855878pt;}
._3e{width:275.496925pt;}
._5c{width:280.708096pt;}
._5e{width:285.251072pt;}
._37{width:292.696719pt;}
._65{width:295.088038pt;}
._64{width:299.164962pt;}
._56{width:306.531328pt;}
._67{width:313.226240pt;}
._5b{width:319.156019pt;}
._20{width:321.784806pt;}
._5a{width:333.597901pt;}
._5f{width:336.313040pt;}
._5d{width:339.049472pt;}
._33{width:340.610194pt;}
._63{width:343.927194pt;}
._40{width:347.156302pt;}
._22{width:361.401922pt;}
._2d{width:365.264370pt;}
._32{width:366.815886pt;}
._2f{width:370.110190pt;}
._3c{width:374.445925pt;}
._3a{width:376.953850pt;}
._1d{width:378.616933pt;}
._55{width:408.293990pt;}
._62{width:416.519168pt;}
._21{width:418.378206pt;}
._29{width:431.660616pt;}
._19{width:435.613786pt;}
._38{width:438.971854pt;}
._3f{width:456.442314pt;}
._23{width:497.398438pt;}
._60{width:506.996122pt;}
._1c{width:514.634670pt;}
._35{width:519.395477pt;}
._54{width:562.994278pt;}
._28{width:569.171408pt;}
._10{width:644.078069pt;}
._53{width:2225.101333pt;}
._11{width:2246.354667pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:40.381867pt;}
.fs9{font-size:42.507200pt;}
.fsd{font-size:43.570133pt;}
.fsc{font-size:44.292800pt;}
.fse{font-size:45.400000pt;}
.fsa{font-size:47.820800pt;}
.fsf{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:114.229120pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:14.848190pt;}
.y62{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y34{bottom:93.018667pt;}
.y16d{bottom:95.104000pt;}
.y198{bottom:97.381333pt;}
.y61{bottom:98.456000pt;}
.y1ff{bottom:99.996000pt;}
.y99{bottom:106.308000pt;}
.y16c{bottom:107.724000pt;}
.y33{bottom:108.920000pt;}
.y127{bottom:114.260000pt;}
.y60{bottom:115.193333pt;}
.y1fe{bottom:115.338667pt;}
.y16b{bottom:120.342667pt;}
.y197{bottom:120.973333pt;}
.y98{bottom:123.045333pt;}
.y20{bottom:123.790666pt;}
.y32{bottom:124.820000pt;}
.y1c7{bottom:126.294667pt;}
.y126{bottom:126.880000pt;}
.y1fd{bottom:130.681333pt;}
.y5f{bottom:131.930667pt;}
.y16a{bottom:132.962667pt;}
.yf3{bottom:135.744000pt;}
.y1c6{bottom:138.914667pt;}
.y125{bottom:139.498667pt;}
.y97{bottom:139.782667pt;}
.y31{bottom:140.720000pt;}
.y169{bottom:145.581333pt;}
.yf2{bottom:148.362667pt;}
.y5e{bottom:148.668000pt;}
.y1c5{bottom:151.533333pt;}
.y124{bottom:152.118667pt;}
.y196{bottom:152.534667pt;}
.y96{bottom:156.520000pt;}
.y30{bottom:156.621333pt;}
.y168{bottom:158.201333pt;}
.yf1{bottom:160.982667pt;}
.y1c4{bottom:164.153333pt;}
.y123{bottom:164.737333pt;}
.y5d{bottom:165.405333pt;}
.y1fc{bottom:165.417333pt;}
.y195{bottom:169.272000pt;}
.y167{bottom:170.820000pt;}
.y2f{bottom:172.521333pt;}
.y95{bottom:173.257333pt;}
.yf0{bottom:173.601333pt;}
.y17{bottom:175.052000pt;}
.y1c3{bottom:176.772000pt;}
.y122{bottom:177.357333pt;}
.y1fb{bottom:180.760000pt;}
.y5c{bottom:182.142667pt;}
.y166{bottom:183.440000pt;}
.y194{bottom:186.009333pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y2e{bottom:188.421333pt;}
.y1c2{bottom:189.392000pt;}
.ybc{bottom:189.596000pt;}
.y121{bottom:189.976000pt;}
.y94{bottom:189.994667pt;}
.yef{bottom:192.410667pt;}
.y1fa{bottom:196.102667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y5b{bottom:198.880000pt;}
.y165{bottom:201.730667pt;}
.y1c1{bottom:202.010667pt;}
.y120{bottom:202.596000pt;}
.y193{bottom:202.746667pt;}
.y2d{bottom:204.322667pt;}
.ybb{bottom:206.333333pt;}
.y93{bottom:206.732000pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.yee{bottom:211.432000pt;}
.y1f9{bottom:211.445333pt;}
.y1c0{bottom:214.630667pt;}
.y5a{bottom:215.617333pt;}
.y163{bottom:219.281333pt;}
.y192{bottom:219.484000pt;}
.y11f{bottom:221.404000pt;}
.yba{bottom:223.070667pt;}
.y92{bottom:223.469333pt;}
.y164{bottom:224.854667pt;}
.y1f8{bottom:226.786667pt;}
.y162{bottom:230.173333pt;}
.yed{bottom:230.453333pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y59{bottom:232.354667pt;}
.y1bf{bottom:234.037333pt;}
.y191{bottom:236.221333pt;}
.yb9{bottom:239.808000pt;}
.y91{bottom:240.206667pt;}
.y11e{bottom:240.425333pt;}
.y1f7{bottom:242.129333pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y161{bottom:247.724000pt;}
.y58{bottom:249.092000pt;}
.yec{bottom:249.474667pt;}
.y190{bottom:252.958667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y1be{bottom:255.050667pt;}
.yb8{bottom:256.545333pt;}
.y90{bottom:256.944000pt;}
.y1f6{bottom:257.472000pt;}
.y11d{bottom:259.448000pt;}
.y160{bottom:265.274667pt;}
.y57{bottom:265.829333pt;}
.y2c{bottom:266.570667pt;}
.yeb{bottom:268.496000pt;}
.y18f{bottom:269.696000pt;}
.y1f5{bottom:272.814667pt;}
.yb7{bottom:273.282667pt;}
.y8f{bottom:273.681333pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y1bd{bottom:276.065333pt;}
.y11c{bottom:278.469333pt;}
.y2b{bottom:282.470667pt;}
.y56{bottom:282.566667pt;}
.y15f{bottom:282.569333pt;}
.y18e{bottom:286.433333pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.yea{bottom:287.517333pt;}
.y1f4{bottom:288.157333pt;}
.yb6{bottom:290.020000pt;}
.y8e{bottom:290.417333pt;}
.y1bc{bottom:297.078667pt;}
.y11b{bottom:297.490667pt;}
.y2a{bottom:298.370667pt;}
.y55{bottom:299.304000pt;}
.y15d{bottom:300.118667pt;}
.ye9{bottom:300.137333pt;}
.y18d{bottom:303.170667pt;}
.y1f3{bottom:303.500000pt;}
.yb5{bottom:306.757333pt;}
.y8d{bottom:307.154667pt;}
.ye{bottom:309.452000pt;}
.ye6{bottom:310.277333pt;}
.y15c{bottom:311.012000pt;}
.y15e{bottom:311.140000pt;}
.y29{bottom:314.272000pt;}
.y54{bottom:316.041333pt;}
.y11a{bottom:316.512000pt;}
.y1bb{bottom:318.092000pt;}
.y1f2{bottom:318.842667pt;}
.ye8{bottom:319.158667pt;}
.y18c{bottom:319.908000pt;}
.y15b{bottom:321.904000pt;}
.yb4{bottom:323.494667pt;}
.y8c{bottom:323.892000pt;}
.ye7{bottom:331.777333pt;}
.y53{bottom:332.778667pt;}
.y1f1{bottom:334.185333pt;}
.y119{bottom:335.533333pt;}
.y18b{bottom:336.645333pt;}
.y1ba{bottom:339.106667pt;}
.y15a{bottom:339.454667pt;}
.y28{bottom:339.470667pt;}
.yb3{bottom:340.232000pt;}
.y8b{bottom:340.629333pt;}
.yd{bottom:343.809333pt;}
.y52{bottom:349.516000pt;}
.y1f0{bottom:349.526667pt;}
.ye5{bottom:350.798667pt;}
.y18a{bottom:353.382667pt;}
.y118{bottom:354.554667pt;}
.y27{bottom:355.370667pt;}
.yb2{bottom:356.968000pt;}
.y158{bottom:357.005333pt;}
.y8a{bottom:357.366667pt;}
.y1b9{bottom:360.120000pt;}
.y159{bottom:362.580000pt;}
.yc{bottom:362.706666pt;}
.y1ef{bottom:364.869333pt;}
.y51{bottom:366.253333pt;}
.y157{bottom:367.897333pt;}
.ye4{bottom:369.820000pt;}
.y189{bottom:370.118667pt;}
.y117{bottom:373.576000pt;}
.yb1{bottom:373.705333pt;}
.y89{bottom:374.104000pt;}
.y26{bottom:379.241333pt;}
.y1ee{bottom:380.212000pt;}
.y1b8{bottom:381.134667pt;}
.y50{bottom:382.989333pt;}
.y156{bottom:385.576000pt;}
.y188{bottom:386.856000pt;}
.ye3{bottom:388.841333pt;}
.yb0{bottom:390.442667pt;}
.y88{bottom:390.841333pt;}
.y116{bottom:392.597333pt;}
.y25{bottom:395.141333pt;}
.y1ed{bottom:395.554667pt;}
.y4f{bottom:399.726667pt;}
.y1b7{bottom:402.148000pt;}
.y154{bottom:402.998667pt;}
.y187{bottom:403.593333pt;}
.yaf{bottom:407.180000pt;}
.y87{bottom:407.578667pt;}
.ye2{bottom:407.862667pt;}
.y155{bottom:408.573333pt;}
.y1ec{bottom:410.897333pt;}
.y24{bottom:411.042667pt;}
.y115{bottom:411.618667pt;}
.y153{bottom:413.890667pt;}
.y4e{bottom:416.464000pt;}
.y186{bottom:420.330667pt;}
.y1b6{bottom:423.162667pt;}
.yae{bottom:423.917333pt;}
.y86{bottom:424.316000pt;}
.y1eb{bottom:426.240000pt;}
.ye1{bottom:426.885333pt;}
.y23{bottom:426.942667pt;}
.y114{bottom:430.640000pt;}
.y152{bottom:431.441333pt;}
.y4d{bottom:433.201333pt;}
.y185{bottom:437.068000pt;}
.yad{bottom:440.654667pt;}
.y85{bottom:441.053333pt;}
.y1ea{bottom:441.582667pt;}
.y22{bottom:442.842667pt;}
.y1b5{bottom:444.176000pt;}
.ye0{bottom:445.906667pt;}
.y150{bottom:448.992000pt;}
.y113{bottom:449.661333pt;}
.y4c{bottom:449.938667pt;}
.y184{bottom:453.805333pt;}
.y151{bottom:454.566667pt;}
.y1e9{bottom:456.925333pt;}
.yac{bottom:457.392000pt;}
.y84{bottom:457.790667pt;}
.ydf{bottom:458.525333pt;}
.y21{bottom:458.744000pt;}
.y14f{bottom:459.885333pt;}
.yb{bottom:462.990669pt;}
.y1b4{bottom:465.190667pt;}
.y4b{bottom:466.676000pt;}
.ydc{bottom:468.665333pt;}
.y112{bottom:468.682667pt;}
.y183{bottom:470.542667pt;}
.y1e8{bottom:472.268000pt;}
.yab{bottom:474.129333pt;}
.y83{bottom:474.528000pt;}
.y14e{bottom:477.434667pt;}
.yde{bottom:477.546667pt;}
.ya{bottom:478.990666pt;}
.y4a{bottom:483.413333pt;}
.y1b3{bottom:486.204000pt;}
.y182{bottom:487.280000pt;}
.y1e7{bottom:487.609333pt;}
.y111{bottom:487.704000pt;}
.ydd{bottom:490.166667pt;}
.yaa{bottom:490.866667pt;}
.y82{bottom:491.265333pt;}
.y14d{bottom:494.985333pt;}
.y9{bottom:494.990666pt;}
.y49{bottom:500.150667pt;}
.y1e6{bottom:502.952000pt;}
.y181{bottom:504.017333pt;}
.y110{bottom:506.725333pt;}
.y1b2{bottom:507.218667pt;}
.ya9{bottom:507.604000pt;}
.y81{bottom:508.002667pt;}
.ydb{bottom:509.188000pt;}
.y14c{bottom:512.536000pt;}
.y48{bottom:516.888000pt;}
.y1e5{bottom:518.294667pt;}
.y180{bottom:520.754667pt;}
.ya8{bottom:524.341333pt;}
.y80{bottom:524.740000pt;}
.y10f{bottom:525.746667pt;}
.yda{bottom:528.209333pt;}
.y1b1{bottom:528.232000pt;}
.y14a{bottom:530.086667pt;}
.y47{bottom:533.625333pt;}
.y1e4{bottom:533.637333pt;}
.y14b{bottom:535.533333pt;}
.y17f{bottom:537.492000pt;}
.y149{bottom:540.978667pt;}
.ya7{bottom:541.078667pt;}
.y7f{bottom:541.477333pt;}
.y10e{bottom:544.769333pt;}
.yd9{bottom:547.230667pt;}
.y1e3{bottom:548.980000pt;}
.y1b0{bottom:549.246667pt;}
.y17e{bottom:554.229333pt;}
.y46{bottom:554.348000pt;}
.ya6{bottom:557.816000pt;}
.y7e{bottom:558.214667pt;}
.y148{bottom:558.273333pt;}
.y10d{bottom:563.790667pt;}
.y1e2{bottom:564.322667pt;}
.yd8{bottom:566.252000pt;}
.y1af{bottom:570.260000pt;}
.y17d{bottom:570.966667pt;}
.y8{bottom:573.786667pt;}
.ya5{bottom:574.553333pt;}
.y7d{bottom:574.952000pt;}
.y146{bottom:575.824000pt;}
.y1e1{bottom:579.665333pt;}
.y147{bottom:581.270667pt;}
.y10c{bottom:582.812000pt;}
.yd7{bottom:585.273333pt;}
.y145{bottom:586.717333pt;}
.y17c{bottom:587.704000pt;}
.y1ae{bottom:591.274667pt;}
.ya4{bottom:591.290667pt;}
.y7c{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y1e0{bottom:595.008000pt;}
.y10b{bottom:601.833333pt;}
.y144{bottom:604.010667pt;}
.yd6{bottom:604.294667pt;}
.y17b{bottom:604.441333pt;}
.ya3{bottom:608.028000pt;}
.y7b{bottom:608.426667pt;}
.y1df{bottom:610.350667pt;}
.y1ad{bottom:612.288000pt;}
.yd5{bottom:616.914667pt;}
.y45{bottom:620.430667pt;}
.y10a{bottom:620.854667pt;}
.y17a{bottom:621.178667pt;}
.y142{bottom:621.561333pt;}
.ya2{bottom:624.765333pt;}
.y7a{bottom:625.164000pt;}
.y1de{bottom:625.692000pt;}
.y143{bottom:627.008000pt;}
.yd2{bottom:627.054667pt;}
.y141{bottom:632.454667pt;}
.y1ac{bottom:633.302667pt;}
.yd4{bottom:635.936000pt;}
.y179{bottom:637.916000pt;}
.y109{bottom:639.876000pt;}
.y1dd{bottom:641.034667pt;}
.ya1{bottom:641.502667pt;}
.y79{bottom:641.901333pt;}
.y6{bottom:645.598667pt;}
.yd3{bottom:648.554667pt;}
.y140{bottom:649.749333pt;}
.y44{bottom:653.665333pt;}
.y1ab{bottom:654.316000pt;}
.y178{bottom:654.653333pt;}
.y1dc{bottom:656.377333pt;}
.ya0{bottom:658.240000pt;}
.y78{bottom:658.638667pt;}
.y108{bottom:658.897333pt;}
.y13e{bottom:667.298667pt;}
.yd1{bottom:667.576000pt;}
.y3{bottom:668.977329pt;}
.y177{bottom:671.390667pt;}
.y1db{bottom:671.720000pt;}
.y13f{bottom:673.568000pt;}
.y9f{bottom:674.977333pt;}
.y1aa{bottom:675.330667pt;}
.y77{bottom:675.376000pt;}
.y107{bottom:677.918667pt;}
.y13d{bottom:679.580000pt;}
.yd0{bottom:686.597333pt;}
.y43{bottom:686.901333pt;}
.y1da{bottom:687.062667pt;}
.y176{bottom:688.128000pt;}
.y9e{bottom:691.714667pt;}
.y76{bottom:692.113333pt;}
.y1a9{bottom:696.344000pt;}
.y106{bottom:696.940000pt;}
.y13c{bottom:697.130667pt;}
.y1d9{bottom:702.405333pt;}
.y42{bottom:704.196000pt;}
.y175{bottom:704.865333pt;}
.ycf{bottom:705.618667pt;}
.y9d{bottom:708.452000pt;}
.y75{bottom:708.850667pt;}
.y13a{bottom:714.681333pt;}
.y105{bottom:715.961333pt;}
.y1a8{bottom:717.358667pt;}
.y1d8{bottom:717.748000pt;}
.y13b{bottom:720.254667pt;}
.y41{bottom:721.492000pt;}
.y174{bottom:721.602667pt;}
.yce{bottom:724.640000pt;}
.y9c{bottom:725.189333pt;}
.y139{bottom:725.573333pt;}
.y74{bottom:725.588000pt;}
.y1d7{bottom:733.090667pt;}
.y102{bottom:735.234667pt;}
.y104{bottom:737.640000pt;}
.y173{bottom:738.340000pt;}
.y1a7{bottom:738.372000pt;}
.y40{bottom:738.786667pt;}
.y9b{bottom:741.926667pt;}
.y73{bottom:742.324000pt;}
.y138{bottom:743.124000pt;}
.ycd{bottom:743.662667pt;}
.y101{bottom:747.854667pt;}
.yff{bottom:747.992000pt;}
.y1d6{bottom:748.432000pt;}
.y172{bottom:755.077333pt;}
.y3f{bottom:756.082667pt;}
.y72{bottom:759.061333pt;}
.y103{bottom:759.317333pt;}
.y1a6{bottom:759.386667pt;}
.y100{bottom:760.473333pt;}
.y136{bottom:760.674667pt;}
.y9a{bottom:762.648000pt;}
.ycc{bottom:762.684000pt;}
.y1d5{bottom:763.774667pt;}
.y137{bottom:766.942667pt;}
.y171{bottom:771.814667pt;}
.y135{bottom:772.954667pt;}
.y3e{bottom:773.377333pt;}
.ycb{bottom:775.302667pt;}
.y71{bottom:775.798667pt;}
.y1d4{bottom:779.117333pt;}
.y1a5{bottom:780.400000pt;}
.y2{bottom:781.661334pt;}
.yc8{bottom:785.442667pt;}
.y170{bottom:788.552000pt;}
.yfe{bottom:788.685333pt;}
.y134{bottom:790.505333pt;}
.y3d{bottom:790.672000pt;}
.y70{bottom:792.536000pt;}
.yca{bottom:794.324000pt;}
.y1d3{bottom:794.460000pt;}
.y1a2{bottom:800.108000pt;}
.y1a4{bottom:804.070667pt;}
.y16f{bottom:805.289333pt;}
.yfd{bottom:805.781333pt;}
.yc9{bottom:806.944000pt;}
.y3c{bottom:807.968000pt;}
.y133{bottom:808.056000pt;}
.y6f{bottom:809.273333pt;}
.y1d2{bottom:809.802667pt;}
.y130{bottom:813.502667pt;}
.y1a1{bottom:814.720000pt;}
.y19f{bottom:815.457333pt;}
.y132{bottom:818.948000pt;}
.y16e{bottom:822.025333pt;}
.y12f{bottom:824.394667pt;}
.y1d1{bottom:825.145333pt;}
.yc7{bottom:825.965333pt;}
.y6e{bottom:826.010667pt;}
.y1a3{bottom:827.741333pt;}
.y1a0{bottom:829.332000pt;}
.y131{bottom:829.841333pt;}
.yfc{bottom:838.762667pt;}
.y1d0{bottom:840.488000pt;}
.y12b{bottom:841.386667pt;}
.y3b{bottom:842.265333pt;}
.y6d{bottom:842.748000pt;}
.yc6{bottom:844.986667pt;}
.y12e{bottom:847.136000pt;}
.y12a{bottom:852.278667pt;}
.yfb{bottom:855.500000pt;}
.y1cf{bottom:855.830667pt;}
.y19e{bottom:858.504000pt;}
.y1{bottom:859.312000pt;}
.y6c{bottom:859.485333pt;}
.yc5{bottom:864.008000pt;}
.y12d{bottom:864.430667pt;}
.y1ce{bottom:871.173333pt;}
.yfa{bottom:872.237333pt;}
.y19d{bottom:875.600000pt;}
.y6b{bottom:876.222667pt;}
.y12c{bottom:881.724000pt;}
.yc4{bottom:883.029333pt;}
.y3a{bottom:885.836000pt;}
.y1cd{bottom:886.514667pt;}
.yf9{bottom:888.974667pt;}
.y6a{bottom:892.960000pt;}
.yc3{bottom:902.050667pt;}
.yf8{bottom:905.712000pt;}
.y1cc{bottom:905.842667pt;}
.y19c{bottom:905.872000pt;}
.y69{bottom:909.697333pt;}
.y129{bottom:910.129333pt;}
.yc2{bottom:921.072000pt;}
.y39{bottom:921.320000pt;}
.yf7{bottom:922.449333pt;}
.y68{bottom:926.434667pt;}
.y128{bottom:927.225333pt;}
.yc1{bottom:933.692000pt;}
.y1cb{bottom:935.730667pt;}
.y19b{bottom:938.549333pt;}
.yf6{bottom:939.186667pt;}
.y67{bottom:943.172000pt;}
.ybe{bottom:943.741333pt;}
.y38{bottom:946.425333pt;}
.y1ca{bottom:951.073333pt;}
.yc0{bottom:952.713333pt;}
.y1c9{bottom:955.413333pt;}
.yf5{bottom:955.924000pt;}
.y66{bottom:959.909333pt;}
.y19a{bottom:962.141333pt;}
.ybf{bottom:965.332000pt;}
.y37{bottom:971.530667pt;}
.yf4{bottom:972.661333pt;}
.y1c8{bottom:973.750667pt;}
.y65{bottom:976.646667pt;}
.y199{bottom:977.762667pt;}
.y64{bottom:993.384000pt;}
.ybd{bottom:994.700000pt;}
.y35{bottom:1010.186667pt;}
.y63{bottom:1046.810667pt;}
.h9{height:27.076941pt;}
.ha{height:27.300102pt;}
.h7{height:28.560000pt;}
.h15{height:30.732706pt;}
.h10{height:30.945242pt;}
.h13{height:31.200285pt;}
.h1c{height:31.501206pt;}
.h1d{height:31.719057pt;}
.h1e{height:32.231057pt;}
.h1f{height:34.574438pt;}
.h11{height:34.813542pt;}
.h20{height:35.100467pt;}
.hf{height:38.415786pt;}
.h12{height:38.681455pt;}
.hd{height:39.000258pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.h14{height:48.683332pt;}
.h2{height:48.960000pt;}
.h17{height:55.970039pt;}
.h1a{height:56.182575pt;}
.h19{height:56.437618pt;}
.he{height:69.148877pt;}
.h5{height:69.360000pt;}
.hc{height:77.447343pt;}
.h16{height:81.212706pt;}
.h18{height:81.419908pt;}
.h1b{height:81.425242pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.x56{left:55.592000pt;}
.x54{left:57.229333pt;}
.x55{left:59.086667pt;}
.x52{left:60.589333pt;}
.x57{left:61.756000pt;}
.x3b{left:64.200000pt;}
.x59{left:65.557333pt;}
.x5b{left:66.574667pt;}
.x3a{left:70.044000pt;}
.x58{left:73.186667pt;}
.x53{left:75.169333pt;}
.x68{left:76.346667pt;}
.x1a{left:78.404000pt;}
.x51{left:80.033333pt;}
.x67{left:81.238667pt;}
.x62{left:86.332000pt;}
.x63{left:87.694667pt;}
.x65{left:89.613333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x35{left:96.273333pt;}
.x39{left:97.830667pt;}
.x5c{left:100.390667pt;}
.x33{left:102.357333pt;}
.x34{left:103.568000pt;}
.x1b{left:104.460000pt;}
.x64{left:107.061333pt;}
.x66{left:112.184000pt;}
.x2b{left:114.853333pt;}
.x19{left:116.213333pt;}
.x37{left:120.784000pt;}
.x38{left:125.337333pt;}
.x17{left:130.384000pt;}
.x60{left:137.193333pt;}
.x3f{left:139.402667pt;}
.x36{left:140.889333pt;}
.x31{left:147.568000pt;}
.x9{left:149.028000pt;}
.x18{left:150.330667pt;}
.x5a{left:151.650667pt;}
.x3d{left:178.158667pt;}
.x4{left:180.874667pt;}
.x42{left:216.925333pt;}
.x7{left:221.858667pt;}
.x41{left:226.696000pt;}
.x40{left:229.625333pt;}
.x8{left:250.204000pt;}
.x5f{left:257.673333pt;}
.x5e{left:269.528000pt;}
.x2e{left:271.848000pt;}
.x5d{left:276.097333pt;}
.x2d{left:282.385333pt;}
.x2c{left:288.224000pt;}
.x44{left:294.446667pt;}
.x43{left:304.430667pt;}
.x11{left:336.061333pt;}
.x22{left:337.182667pt;}
.x2a{left:342.533333pt;}
.x10{left:345.789333pt;}
.x1d{left:360.838667pt;}
.x25{left:364.738667pt;}
.x1c{left:369.329333pt;}
.x27{left:370.646667pt;}
.x46{left:371.969333pt;}
.xb{left:378.866667pt;}
.xa{left:380.045333pt;}
.x30{left:381.620000pt;}
.x45{left:384.670667pt;}
.x61{left:388.100000pt;}
.x32{left:390.037333pt;}
.x3c{left:397.414667pt;}
.x3{left:404.408000pt;}
.x13{left:406.932000pt;}
.x3e{left:408.912000pt;}
.x12{left:416.661333pt;}
.x48{left:449.492000pt;}
.x47{left:459.474667pt;}
.x15{left:477.804000pt;}
.x23{left:478.925333pt;}
.x14{left:487.532000pt;}
.xc{left:497.437333pt;}
.x1e{left:506.077333pt;}
.x1f{left:507.336000pt;}
.x26{left:508.680000pt;}
.x28{left:511.072000pt;}
.x2f{left:515.588000pt;}
.xd{left:521.788000pt;}
.x4b{left:527.014667pt;}
.x4a{left:536.784000pt;}
.x49{left:539.714667pt;}
.x4d{left:604.536000pt;}
.x4c{left:614.518667pt;}
.x16{left:619.545333pt;}
.x24{left:620.666667pt;}
.x21{left:646.006667pt;}
.xe{left:648.388000pt;}
.x20{left:652.994667pt;}
.x29{left:655.125333pt;}
.xf{left:656.150667pt;}
.x50{left:682.058667pt;}
.x4f{left:691.829333pt;}
.x4e{left:694.758667pt;}
}




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