
    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_037424a6e29d051c33203983.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3728e8bbc44f3d9b50164eb6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dbcd04f11cd3219c4c03506f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_644e74e41f82ae47703c0777.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.795000;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_650467fc44d05ec25b3046c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.716000;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_b04b80fd22928ba52493410e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_56d8d7c00a76e17e2e69805e.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_14c9a935d8383e3087572936.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.663000;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_05c8c54d743baf37a6810433.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.726000;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;}
.m8{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);}
.m1a{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);}
.ma{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);}
.m13{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);}
.m28{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);}
.m23{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);}
.m3{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);}
.m12{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);}
.m17{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);}
.m1e{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);}
.m24{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);}
.m20{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);}
.m1c{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);}
.m2a{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);}
.mc{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);}
.m26{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);}
.m14{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);}
.m7{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);}
.mf{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);}
.m25{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);}
.m19{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);}
.m1b{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);}
.m22{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);}
.m15{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);}
.me{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);}
.md{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);}
.m6{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);}
.m9{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);}
.m21{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);}
.m16{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);}
.m1d{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);}
.m4{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);}
.m18{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);}
.mb{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);}
.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);}
.m11{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);}
.m27{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);}
.m5{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);}
.m29{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);}
.m2{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(0.451025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.v4{vertical-align:-17.358000px;}
.v1{vertical-align:-9.648400px;}
.v2{vertical-align:-2.313518px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.702000px;}
.v5{vertical-align:32.880000px;}
.ls16{letter-spacing:0.000000px;}
.ls5c{letter-spacing:0.000089px;}
.ls1c{letter-spacing:0.000273px;}
.ls4e{letter-spacing:0.000422px;}
.ls50{letter-spacing:0.000676px;}
.ls4a{letter-spacing:0.000741px;}
.ls52{letter-spacing:0.000800px;}
.ls1b{letter-spacing:0.001029px;}
.ls4f{letter-spacing:0.001036px;}
.ls4b{letter-spacing:0.001155px;}
.ls48{letter-spacing:0.001226px;}
.ls53{letter-spacing:0.001746px;}
.ls51{letter-spacing:0.002045px;}
.ls4d{letter-spacing:0.002074px;}
.ls5b{letter-spacing:0.002090px;}
.ls59{letter-spacing:0.002220px;}
.ls57{letter-spacing:0.002382px;}
.ls49{letter-spacing:0.002522px;}
.ls4c{letter-spacing:0.002544px;}
.ls56{letter-spacing:0.002868px;}
.lsf{letter-spacing:0.003226px;}
.ls58{letter-spacing:0.003284px;}
.ls5d{letter-spacing:0.003306px;}
.ls20{letter-spacing:0.003389px;}
.ls7{letter-spacing:0.003449px;}
.ls1e{letter-spacing:0.004403px;}
.ls5a{letter-spacing:0.004981px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:11.571746px;}
.ls15{letter-spacing:11.954850px;}
.lsc{letter-spacing:12.014896px;}
.ls3d{letter-spacing:12.957098px;}
.ls3c{letter-spacing:13.055057px;}
.ls54{letter-spacing:13.446566px;}
.ls55{letter-spacing:13.557197px;}
.lsd{letter-spacing:14.107042px;}
.ls3e{letter-spacing:14.114241px;}
.ls1f{letter-spacing:14.645022px;}
.ls27{letter-spacing:14.661758px;}
.ls19{letter-spacing:14.704798px;}
.ls2f{letter-spacing:14.708863px;}
.ls3f{letter-spacing:14.720896px;}
.ls43{letter-spacing:14.734990px;}
.ls6{letter-spacing:14.764573px;}
.ls2e{letter-spacing:14.799955px;}
.ls26{letter-spacing:14.800435px;}
.ls5{letter-spacing:14.824349px;}
.ls46{letter-spacing:14.837846px;}
.lsa{letter-spacing:14.884124px;}
.ls25{letter-spacing:14.914595px;}
.lsb{letter-spacing:14.943900px;}
.ls23{letter-spacing:14.944200px;}
.ls1a{letter-spacing:15.063451px;}
.ls40{letter-spacing:15.072846px;}
.ls42{letter-spacing:15.176906px;}
.ls8{letter-spacing:15.183002px;}
.ls21{letter-spacing:15.185371px;}
.ls22{letter-spacing:15.212912px;}
.ls47{letter-spacing:15.215859px;}
.ls9{letter-spacing:15.242778px;}
.ls3b{letter-spacing:15.335729px;}
.ls3a{letter-spacing:15.341612px;}
.ls24{letter-spacing:15.441612px;}
.ls39{letter-spacing:15.509041px;}
.ls36{letter-spacing:16.247494px;}
.ls34{letter-spacing:17.153376px;}
.ls35{letter-spacing:17.159259px;}
.ls1{letter-spacing:17.739501px;}
.ls33{letter-spacing:17.785512px;}
.ls28{letter-spacing:17.929200px;}
.ls29{letter-spacing:17.935200px;}
.ls45{letter-spacing:18.229847px;}
.ls41{letter-spacing:18.512200px;}
.ls38{letter-spacing:18.700435px;}
.ls2d{letter-spacing:20.700435px;}
.ls17{letter-spacing:20.801909px;}
.ls18{letter-spacing:20.861684px;}
.ls30{letter-spacing:20.865141px;}
.ls10{letter-spacing:21.041011px;}
.lse{letter-spacing:21.100787px;}
.ls11{letter-spacing:21.160562px;}
.ls12{letter-spacing:21.220338px;}
.ls44{letter-spacing:21.741612px;}
.ls13{letter-spacing:22.475626px;}
.ls14{letter-spacing:22.535401px;}
.ls37{letter-spacing:22.541612px;}
.ls32{letter-spacing:22.806318px;}
.ls31{letter-spacing:22.812200px;}
.ls2a{letter-spacing:23.523965px;}
.ls1d{letter-spacing:24.149342px;}
.ls2c{letter-spacing:24.759259px;}
.ls2b{letter-spacing:24.765141px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.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;}
}
.wsbf{word-spacing:-27.006797px;}
.ws25{word-spacing:-14.943900px;}
.wsa9{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws10{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws28{word-spacing:-4.004965px;}
.ws9b{word-spacing:-3.048556px;}
.ws54{word-spacing:-2.988780px;}
.wsbc{word-spacing:-2.528525px;}
.wsa2{word-spacing:-2.474726px;}
.ws21{word-spacing:-2.450800px;}
.ws52{word-spacing:-2.331248px;}
.ws98{word-spacing:-2.271473px;}
.wsa3{word-spacing:-2.259533px;}
.wsad{word-spacing:-2.151936px;}
.ws4c{word-spacing:-2.151922px;}
.wsbe{word-spacing:-2.098138px;}
.ws97{word-spacing:-2.032370px;}
.wsa4{word-spacing:-1.990541px;}
.ws82{word-spacing:-1.972595px;}
.ws81{word-spacing:-1.912819px;}
.ws8a{word-spacing:-1.793268px;}
.wsa5{word-spacing:-1.775347px;}
.ws9d{word-spacing:-1.733492px;}
.wsac{word-spacing:-1.667750px;}
.ws35{word-spacing:-1.613941px;}
.ws92{word-spacing:-1.315063px;}
.ws91{word-spacing:-1.255288px;}
.ws74{word-spacing:-1.195515px;}
.ws49{word-spacing:-1.195512px;}
.ws6{word-spacing:-1.171598px;}
.ws2b{word-spacing:-1.135736px;}
.ws2a{word-spacing:-1.075961px;}
.ws8{word-spacing:-1.046070px;}
.ws29{word-spacing:-1.016185px;}
.wsb8{word-spacing:-0.860774px;}
.ws83{word-spacing:-0.836858px;}
.ws84{word-spacing:-0.777083px;}
.wsb2{word-spacing:-0.753178px;}
.ws4a{word-spacing:-0.717307px;}
.ws9f{word-spacing:-0.645581px;}
.ws96{word-spacing:-0.418429px;}
.ws6d{word-spacing:-0.358654px;}
.wsaf{word-spacing:-0.322790px;}
.ws1f{word-spacing:-0.298878px;}
.ws17{word-spacing:-0.268992px;}
.wsa8{word-spacing:-0.243652px;}
.ws26{word-spacing:-0.239102px;}
.ws6a{word-spacing:-0.215194px;}
.ws23{word-spacing:-0.179327px;}
.wsb3{word-spacing:-0.168986px;}
.ws16{word-spacing:-0.161395px;}
.ws24{word-spacing:-0.119551px;}
.ws1c{word-spacing:-0.107597px;}
.ws2f{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.wsbb{word-spacing:-0.011386px;}
.wsb0{word-spacing:-0.010886px;}
.wsb4{word-spacing:-0.009542px;}
.wsc6{word-spacing:-0.009533px;}
.wscb{word-spacing:-0.007306px;}
.wsb5{word-spacing:-0.006816px;}
.wsd3{word-spacing:-0.006682px;}
.wsc3{word-spacing:-0.006029px;}
.wsae{word-spacing:-0.005683px;}
.wscf{word-spacing:-0.005194px;}
.wsdc{word-spacing:-0.003955px;}
.ws3{word-spacing:-0.003098px;}
.ws30{word-spacing:-0.000785px;}
.ws1{word-spacing:0.000000px;}
.ws6b{word-spacing:0.053798px;}
.ws20{word-spacing:0.059776px;}
.ws69{word-spacing:0.107597px;}
.ws39{word-spacing:0.119551px;}
.ws6c{word-spacing:0.161395px;}
.ws22{word-spacing:0.179327px;}
.ws15{word-spacing:0.215194px;}
.ws33{word-spacing:0.239102px;}
.ws68{word-spacing:0.268992px;}
.ws42{word-spacing:0.298878px;}
.wsce{word-spacing:0.322790px;}
.ws41{word-spacing:0.358654px;}
.wsa0{word-spacing:0.376589px;}
.ws1e{word-spacing:0.418429px;}
.ws77{word-spacing:0.478205px;}
.ws1b{word-spacing:0.484186px;}
.ws47{word-spacing:0.537980px;}
.ws8f{word-spacing:0.597756px;}
.ws3b{word-spacing:0.777083px;}
.ws14{word-spacing:0.806976px;}
.wsc8{word-spacing:0.860774px;}
.ws36{word-spacing:0.896634px;}
.wsc7{word-spacing:0.914573px;}
.ws53{word-spacing:0.956410px;}
.ws7{word-spacing:0.962384px;}
.wsd5{word-spacing:0.968371px;}
.ws8c{word-spacing:1.016185px;}
.wsd4{word-spacing:1.022170px;}
.ws8d{word-spacing:1.075961px;}
.wsbd{word-spacing:1.129766px;}
.wsb1{word-spacing:1.183565px;}
.ws93{word-spacing:1.195512px;}
.ws51{word-spacing:1.255288px;}
.ws80{word-spacing:1.315063px;}
.ws38{word-spacing:1.494390px;}
.ws19{word-spacing:1.560154px;}
.ws27{word-spacing:1.613941px;}
.wsdb{word-spacing:1.613952px;}
.wsd0{word-spacing:1.667750px;}
.ws3a{word-spacing:1.673717px;}
.ws76{word-spacing:1.793268px;}
.ws5e{word-spacing:1.853044px;}
.ws13{word-spacing:1.936742px;}
.ws89{word-spacing:2.151922px;}
.wsb9{word-spacing:2.151936px;}
.ws57{word-spacing:2.211697px;}
.ws8e{word-spacing:2.331248px;}
.wscd{word-spacing:2.367130px;}
.wsba{word-spacing:2.420928px;}
.ws63{word-spacing:2.450800px;}
.ws2{word-spacing:2.510568px;}
.ws64{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws9e{word-spacing:2.570351px;}
.wsc9{word-spacing:2.582323px;}
.ws59{word-spacing:2.630126px;}
.ws4e{word-spacing:2.689902px;}
.ws5a{word-spacing:2.749678px;}
.wsab{word-spacing:2.851315px;}
.ws58{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.wsaa{word-spacing:2.905114px;}
.ws86{word-spacing:2.988780px;}
.wsa1{word-spacing:3.012710px;}
.ws34{word-spacing:3.048556px;}
.wsc0{word-spacing:3.120307px;}
.wsd7{word-spacing:3.174106px;}
.wsd8{word-spacing:3.219590px;}
.wsca{word-spacing:3.222288px;}
.wsd2{word-spacing:3.225216px;}
.ws8b{word-spacing:3.227882px;}
.ws67{word-spacing:3.227904px;}
.ws4f{word-spacing:3.287658px;}
.ws65{word-spacing:3.347434px;}
.wsc4{word-spacing:3.389299px;}
.ws3d{word-spacing:3.407209px;}
.wsc5{word-spacing:3.443098px;}
.wsa7{word-spacing:3.496896px;}
.ws85{word-spacing:3.526760px;}
.ws1d{word-spacing:3.586536px;}
.ws45{word-spacing:3.646312px;}
.ws3e{word-spacing:3.706087px;}
.ws75{word-spacing:3.765863px;}
.wsa6{word-spacing:3.819686px;}
.ws32{word-spacing:3.825638px;}
.ws43{word-spacing:3.885414px;}
.ws2c{word-spacing:4.004965px;}
.ws1a{word-spacing:4.034880px;}
.ws5d{word-spacing:4.064741px;}
.wsc1{word-spacing:4.088678px;}
.wsc2{word-spacing:4.142477px;}
.ws90{word-spacing:4.244068px;}
.ws4b{word-spacing:4.483170px;}
.wse{word-spacing:4.770079px;}
.ws46{word-spacing:4.782048px;}
.ws55{word-spacing:4.841824px;}
.wsf{word-spacing:4.853765px;}
.ws2d{word-spacing:4.901599px;}
.ws2e{word-spacing:4.961375px;}
.ws99{word-spacing:5.021150px;}
.ws37{word-spacing:5.140702px;}
.wsd1{word-spacing:5.164646px;}
.ws44{word-spacing:5.200477px;}
.ws9a{word-spacing:5.320028px;}
.wsd6{word-spacing:5.433638px;}
.ws3c{word-spacing:5.559131px;}
.ws12{word-spacing:5.595034px;}
.ws79{word-spacing:5.618906px;}
.ws61{word-spacing:5.738458px;}
.ws5c{word-spacing:5.798233px;}
.ws5f{word-spacing:5.858009px;}
.ws48{word-spacing:5.917784px;}
.ws4d{word-spacing:6.037336px;}
.ws60{word-spacing:6.097111px;}
.ws56{word-spacing:6.156887px;}
.ws5b{word-spacing:6.276438px;}
.ws78{word-spacing:6.395989px;}
.ws6e{word-spacing:6.635092px;}
.ws88{word-spacing:6.754643px;}
.ws87{word-spacing:6.814418px;}
.ws94{word-spacing:6.933970px;}
.ws9c{word-spacing:7.053521px;}
.ws62{word-spacing:7.232848px;}
.ws3f{word-spacing:7.292623px;}
.ws40{word-spacing:7.352399px;}
.ws7a{word-spacing:7.412174px;}
.ws50{word-spacing:7.591501px;}
.wsda{word-spacing:7.639373px;}
.wsc{word-spacing:7.782761px;}
.ws7f{word-spacing:7.830604px;}
.ws7e{word-spacing:7.890379px;}
.ws95{word-spacing:8.428360px;}
.ws7b{word-spacing:8.547911px;}
.ws7c{word-spacing:8.607686px;}
.wsd9{word-spacing:9.629914px;}
.ws7d{word-spacing:9.803198px;}
.wsb7{word-spacing:10.114099px;}
.wscc{word-spacing:10.813478px;}
.wsa{word-spacing:12.176255px;}
.wsb6{word-spacing:12.696422px;}
.ws4{word-spacing:15.481836px;}
.wsb{word-spacing:16.109478px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws73{word-spacing:230.902733px;}
.ws70{word-spacing:244.352333px;}
.ws6f{word-spacing:247.687834px;}
.ws71{word-spacing:257.801933px;}
.ws66{word-spacing:328.062643px;}
.ws72{word-spacing:343.341389px;}
._77{margin-left:-14.243838px;}
._7{margin-left:-11.943245px;}
._5{margin-left:-7.962163px;}
._10{margin-left:-6.868310px;}
._a{margin-left:-5.308087px;}
._0{margin-left:-3.849538px;}
._3{margin-left:-2.301354px;}
._d{margin-left:-1.201396px;}
._2{width:2.301354px;}
._8{width:3.676631px;}
._1b{width:5.080926px;}
._1{width:12.971268px;}
._12{width:14.824386px;}
._c{width:16.569907px;}
._1a{width:17.579910px;}
._11{width:18.590212px;}
._17{width:19.845499px;}
._e{width:21.238391px;}
._b{width:22.529552px;}
._15{width:24.149342px;}
._73{width:25.763284px;}
._19{width:27.311566px;}
._f{width:28.596794px;}
._4{width:30.587087px;}
._78{width:31.866778px;}
._6{width:33.355008px;}
._18{width:34.550297px;}
._16{width:35.865360px;}
._1c{width:37.479301px;}
._74{width:40.109428px;}
._76{width:47.873086px;}
._9{width:69.369634px;}
._50{width:219.975804px;}
._45{width:244.352333px;}
._36{width:245.428301px;}
._57{width:257.102554px;}
._44{width:258.555110px;}
._41{width:266.033088px;}
._3c{width:270.874944px;}
._52{width:271.950912px;}
._3d{width:279.106099px;}
._3f{width:285.077722px;}
._55{width:286.207488px;}
._3e{width:288.090432px;}
._42{width:290.672755px;}
._29{width:292.555699px;}
._4e{width:293.746387px;}
._59{width:298.688717px;}
._68{width:300.625459px;}
._38{width:304.222829px;}
._21{width:305.521114px;}
._5c{width:310.954752px;}
._61{width:312.461107px;}
._49{width:314.021261px;}
._6d{width:335.002637px;}
._48{width:336.024806px;}
._25{width:339.137990px;}
._4a{width:356.844787px;}
._2a{width:361.679520px;}
._35{width:366.259507px;}
._6b{width:378.848333px;}
._27{width:381.369734px;}
._28{width:389.285222px;}
._3a{width:397.563053px;}
._2e{width:400.582886px;}
._37{width:405.030199px;}
._2b{width:412.088621px;}
._33{width:427.259770px;}
._2c{width:432.047827px;}
._34{width:438.779750px;}
._1d{width:442.592314px;}
._30{width:444.589978px;}
._4b{width:447.710285px;}
._1e{width:455.934317px;}
._6e{width:459.868723px;}
._32{width:469.114925px;}
._53{width:480.419712px;}
._2d{width:482.571648px;}
._2f{width:484.985453px;}
._22{width:486.552730px;}
._3b{width:491.979245px;}
._51{width:494.783885px;}
._23{width:503.499226px;}
._5a{width:505.866355px;}
._20{width:517.594406px;}
._39{width:521.145101px;}
._26{width:534.487104px;}
._31{width:537.284621px;}
._24{width:539.974541px;}
._58{width:544.923994px;}
._5b{width:552.079181px;}
._70{width:553.316544px;}
._63{width:556.221658px;}
._6c{width:560.668970px;}
._72{width:561.816691px;}
._56{width:563.484442px;}
._5d{width:567.842112px;}
._1f{width:573.483821px;}
._6a{width:580.861325px;}
._69{width:582.905664px;}
._40{width:584.788608px;}
._5e{width:587.693722px;}
._65{width:600.228749px;}
._67{width:624.760819px;}
._4c{width:628.741901px;}
._60{width:638.210419px;}
._64{width:640.738944px;}
._71{width:647.732736px;}
._62{width:655.694899px;}
._47{width:659.675981px;}
._6f{width:676.783872px;}
._66{width:692.815795px;}
._4f{width:695.613312px;}
._54{width:696.850675px;}
._4d{width:701.907725px;}
._5f{width:714.012365px;}
._46{width:715.680115px;}
._13{width:964.730984px;}
._43{width:1016.951155px;}
._75{width:2540.781000px;}
._14{width:2564.691000px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(4,6,6);}
.fc2{color:rgb(24,71,104);}
.fc1{color:rgb(109,164,194);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs3{font-size:39.779955px;}
.fs2{font-size:41.124751px;}
.fs0{font-size:41.842800px;}
.fs1{font-size:45.033277px;}
.fs8{font-size:45.429600px;}
.fs4{font-size:47.095448px;}
.fsa{font-size:47.820600px;}
.fsb{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs7{font-size:107.596800px;}
.fs5{font-size:136.067040px;}
.y0{bottom:0.000000px;}
.y1d{bottom:4.281255px;}
.y1c{bottom:7.959393px;}
.y1b{bottom:12.228458px;}
.y1e{bottom:16.129519px;}
.y4b{bottom:31.890000px;}
.y1db{bottom:104.503500px;}
.y19{bottom:104.646000px;}
.yac{bottom:104.952000px;}
.y4a{bottom:107.266500px;}
.y82{bottom:107.641500px;}
.y1a6{bottom:111.766500px;}
.y151{bottom:117.210000px;}
.y1da{bottom:121.762500px;}
.y18{bottom:122.535000px;}
.yab{bottom:123.781500px;}
.y15f{bottom:126.022500px;}
.y49{bottom:126.096000px;}
.y81{bottom:126.471000px;}
.y1a5{bottom:129.027000px;}
.y105{bottom:129.048000px;}
.yd1{bottom:131.574000px;}
.y171{bottom:135.885000px;}
.y150{bottom:136.039500px;}
.y1d9{bottom:139.023000px;}
.y17{bottom:140.422500px;}
.yaa{bottom:142.611000px;}
.y15e{bottom:144.852000px;}
.y48{bottom:144.925500px;}
.y80{bottom:145.300500px;}
.y1a4{bottom:146.286000px;}
.y104{bottom:152.689500px;}
.y170{bottom:154.714500px;}
.y14f{bottom:154.869000px;}
.yd0{bottom:155.214000px;}
.y1d8{bottom:156.283500px;}
.y12b{bottom:156.859500px;}
.y16{bottom:158.310000px;}
.y1a3{bottom:163.546500px;}
.y15d{bottom:163.681500px;}
.y47{bottom:163.755000px;}
.y7f{bottom:164.130000px;}
.ya9{bottom:165.922500px;}
.y16f{bottom:173.544000px;}
.y14e{bottom:173.698500px;}
.y15{bottom:176.199000px;}
.y103{bottom:176.329500px;}
.ycf{bottom:178.855500px;}
.y12a{bottom:180.501000px;}
.y1a2{bottom:180.807000px;}
.y15c{bottom:182.511000px;}
.y46{bottom:182.584500px;}
.y7e{bottom:182.959500px;}
.yce{bottom:187.074000px;}
.y1d7{bottom:190.804500px;}
.y16e{bottom:192.373500px;}
.y14d{bottom:192.528000px;}
.y14{bottom:194.086500px;}
.y1a1{bottom:198.067500px;}
.ya8{bottom:199.546500px;}
.y102{bottom:199.971000px;}
.y15b{bottom:201.340500px;}
.y45{bottom:201.414000px;}
.y7d{bottom:201.789000px;}
.y129{bottom:204.141000px;}
.y1d6{bottom:208.065000px;}
.y101{bottom:208.189500px;}
.y16d{bottom:211.203000px;}
.y13{bottom:211.974000px;}
.y1a0{bottom:215.328000px;}
.ya7{bottom:218.376000px;}
.ycd{bottom:218.934000px;}
.y15a{bottom:220.170000px;}
.y44{bottom:220.243500px;}
.y7c{bottom:220.618500px;}
.y1d5{bottom:225.325500px;}
.ycc{bottom:227.154000px;}
.y128{bottom:227.782500px;}
.y12{bottom:229.863000px;}
.y16c{bottom:230.032500px;}
.y19f{bottom:232.588500px;}
.y14c{bottom:232.660500px;}
.ya6{bottom:237.205500px;}
.y159{bottom:238.999500px;}
.y43{bottom:239.073000px;}
.y7b{bottom:239.446500px;}
.y100{bottom:240.049500px;}
.y1d4{bottom:242.586000px;}
.y14b{bottom:246.858000px;}
.y16b{bottom:248.862000px;}
.y19e{bottom:249.849000px;}
.y127{bottom:251.422500px;}
.ya5{bottom:256.035000px;}
.y158{bottom:257.829000px;}
.y42{bottom:257.901000px;}
.y7a{bottom:258.276000px;}
.ycb{bottom:259.014000px;}
.y1d3{bottom:259.846500px;}
.yff{bottom:263.691000px;}
.y19d{bottom:267.109500px;}
.yca{bottom:267.232500px;}
.y14a{bottom:268.690500px;}
.yfe{bottom:271.909500px;}
.y16a{bottom:272.175000px;}
.ya4{bottom:274.864500px;}
.y126{bottom:275.064000px;}
.y157{bottom:276.658500px;}
.y41{bottom:276.730500px;}
.y79{bottom:277.105500px;}
.y19c{bottom:284.370000px;}
.y169{bottom:291.004500px;}
.y149{bottom:292.330500px;}
.ya3{bottom:293.694000px;}
.y1d2{bottom:294.366000px;}
.y156{bottom:295.488000px;}
.y40{bottom:295.560000px;}
.y78{bottom:295.935000px;}
.y125{bottom:298.704000px;}
.yc9{bottom:299.092500px;}
.y11{bottom:300.154500px;}
.y19b{bottom:301.629000px;}
.yfd{bottom:303.769500px;}
.y168{bottom:309.834000px;}
.y1d1{bottom:311.626500px;}
.yfb{bottom:311.989500px;}
.ya2{bottom:312.523500px;}
.y155{bottom:314.317500px;}
.y3f{bottom:314.389500px;}
.y77{bottom:314.764500px;}
.y148{bottom:315.972000px;}
.y10{bottom:318.043500px;}
.y19a{bottom:318.889500px;}
.yfc{bottom:320.208000px;}
.y124{bottom:322.344000px;}
.y167{bottom:328.663500px;}
.y1d0{bottom:328.887000px;}
.ya1{bottom:331.353000px;}
.y154{bottom:333.145500px;}
.y3e{bottom:333.219000px;}
.y76{bottom:333.594000px;}
.yc8{bottom:333.700500px;}
.yf{bottom:335.931000px;}
.y199{bottom:336.150000px;}
.y147{bottom:339.612000px;}
.yfa{bottom:343.849500px;}
.y123{bottom:345.985500px;}
.y1cf{bottom:346.147500px;}
.y166{bottom:347.493000px;}
.ya0{bottom:350.182500px;}
.y153{bottom:351.975000px;}
.y3d{bottom:352.048500px;}
.y75{bottom:352.423500px;}
.y198{bottom:353.410500px;}
.ye{bottom:353.818500px;}
.y146{bottom:363.253500px;}
.y1ce{bottom:363.408000px;}
.y165{bottom:366.322500px;}
.yf9{bottom:367.489500px;}
.y9f{bottom:369.012000px;}
.y122{bottom:369.625500px;}
.y197{bottom:370.671000px;}
.yc7{bottom:370.804500px;}
.y3c{bottom:370.878000px;}
.y74{bottom:371.253000px;}
.y1cd{bottom:380.668500px;}
.yd{bottom:380.673000px;}
.yf8{bottom:383.928000px;}
.y164{bottom:385.152000px;}
.y145{bottom:386.893500px;}
.y9e{bottom:387.841500px;}
.y196{bottom:387.931500px;}
.yc6{bottom:389.634000px;}
.y3b{bottom:389.707500px;}
.y73{bottom:390.082500px;}
.yf5{bottom:392.146500px;}
.y121{bottom:393.267000px;}
.y1cc{bottom:397.929000px;}
.yc{bottom:398.562000px;}
.yf7{bottom:400.366500px;}
.y163{bottom:403.981500px;}
.y195{bottom:405.192000px;}
.y9d{bottom:406.671000px;}
.yc5{bottom:408.463500px;}
.y3a{bottom:408.537000px;}
.y72{bottom:408.912000px;}
.y144{bottom:410.535000px;}
.y1cb{bottom:415.188000px;}
.yb{bottom:416.449500px;}
.yf6{bottom:416.805000px;}
.y120{bottom:416.907000px;}
.y194{bottom:422.452500px;}
.y162{bottom:422.811000px;}
.y9c{bottom:425.500500px;}
.yc4{bottom:427.293000px;}
.y39{bottom:427.366500px;}
.y71{bottom:427.741500px;}
.y1ca{bottom:432.448500px;}
.y143{bottom:434.175000px;}
.y193{bottom:439.713000px;}
.yf4{bottom:440.445000px;}
.y161{bottom:441.639000px;}
.y9b{bottom:444.330000px;}
.ya{bottom:444.798000px;}
.yc3{bottom:446.122500px;}
.y70{bottom:446.571000px;}
.yf3{bottom:448.665000px;}
.y1c9{bottom:449.709000px;}
.y38{bottom:450.679500px;}
.y11f{bottom:451.516500px;}
.y192{bottom:456.972000px;}
.y142{bottom:457.816500px;}
.y9a{bottom:463.159500px;}
.yc2{bottom:464.952000px;}
.y6f{bottom:465.400500px;}
.y1c8{bottom:466.969500px;}
.y9{bottom:471.652500px;}
.y191{bottom:474.232500px;}
.yf2{bottom:480.525000px;}
.y141{bottom:481.456500px;}
.y99{bottom:481.989000px;}
.yc1{bottom:483.781500px;}
.y6e{bottom:484.230000px;}
.y11e{bottom:488.620500px;}
.yf1{bottom:488.743500px;}
.y8{bottom:489.540000px;}
.y190{bottom:491.493000px;}
.y98{bottom:500.818500px;}
.y1c7{bottom:501.490500px;}
.yc0{bottom:502.611000px;}
.y6d{bottom:503.059500px;}
.y140{bottom:505.096500px;}
.y7{bottom:507.429000px;}
.y11d{bottom:507.450000px;}
.y18f{bottom:508.753500px;}
.y1c6{bottom:518.751000px;}
.yf0{bottom:520.603500px;}
.ybf{bottom:521.440500px;}
.y6c{bottom:521.889000px;}
.y97{bottom:524.130000px;}
.y6{bottom:525.316500px;}
.y37{bottom:525.829500px;}
.y160{bottom:525.924000px;}
.y18e{bottom:526.014000px;}
.y11c{bottom:526.279500px;}
.y13f{bottom:528.738000px;}
.yef{bottom:528.822000px;}
.y1c5{bottom:536.011500px;}
.ybe{bottom:540.270000px;}
.y6b{bottom:540.718500px;}
.y5{bottom:543.204000px;}
.y18d{bottom:543.274500px;}
.y11b{bottom:545.109000px;}
.y36{bottom:545.286000px;}
.y13e{bottom:552.378000px;}
.y1c4{bottom:553.272000px;}
.y96{bottom:557.754000px;}
.ybd{bottom:559.099500px;}
.y6a{bottom:559.548000px;}
.y18c{bottom:560.535000px;}
.yee{bottom:560.682000px;}
.y4{bottom:561.093000px;}
.y1c3{bottom:570.531000px;}
.y13d{bottom:576.019500px;}
.y95{bottom:576.583500px;}
.y18b{bottom:577.795500px;}
.ybc{bottom:577.929000px;}
.y69{bottom:578.377500px;}
.y3{bottom:578.980500px;}
.y35{bottom:582.676500px;}
.yed{bottom:584.323500px;}
.y1c2{bottom:587.791500px;}
.yeb{bottom:592.542000px;}
.y11a{bottom:593.559000px;}
.y18a{bottom:595.054500px;}
.y94{bottom:595.413000px;}
.ybb{bottom:596.758500px;}
.y2{bottom:596.868000px;}
.y68{bottom:597.207000px;}
.y13c{bottom:599.659500px;}
.yec{bottom:600.762000px;}
.y34{bottom:602.133000px;}
.y1c1{bottom:605.052000px;}
.y118{bottom:609.997500px;}
.y189{bottom:612.315000px;}
.y93{bottom:614.242500px;}
.y1{bottom:614.757000px;}
.yba{bottom:615.588000px;}
.y67{bottom:616.036500px;}
.y33{bottom:621.591000px;}
.y1c0{bottom:622.312500px;}
.y13b{bottom:623.301000px;}
.yea{bottom:624.402000px;}
.y119{bottom:626.436000px;}
.y188{bottom:629.575500px;}
.y92{bottom:633.072000px;}
.yb9{bottom:634.417500px;}
.y66{bottom:634.866000px;}
.y1bf{bottom:639.573000px;}
.ye8{bottom:640.840500px;}
.y32{bottom:641.047500px;}
.y187{bottom:646.836000px;}
.y13a{bottom:646.941000px;}
.y117{bottom:650.076000px;}
.y91{bottom:651.901500px;}
.yb8{bottom:653.247000px;}
.y65{bottom:653.695500px;}
.y1be{bottom:656.833500px;}
.ye9{bottom:657.279000px;}
.y31{bottom:660.504000px;}
.y186{bottom:664.096500px;}
.y139{bottom:670.582500px;}
.y90{bottom:670.731000px;}
.yb7{bottom:672.076500px;}
.y64{bottom:672.525000px;}
.y116{bottom:673.717500px;}
.y1bd{bottom:674.094000px;}
.y30{bottom:679.962000px;}
.ye7{bottom:680.919000px;}
.y185{bottom:681.357000px;}
.y115{bottom:681.936000px;}
.y8f{bottom:689.560500px;}
.yb6{bottom:690.906000px;}
.y63{bottom:691.354500px;}
.y138{bottom:694.222500px;}
.y184{bottom:698.617500px;}
.y2f{bottom:699.418500px;}
.ye6{bottom:704.560500px;}
.y8e{bottom:708.390000px;}
.y1bc{bottom:708.613500px;}
.yb5{bottom:709.735500px;}
.y62{bottom:710.184000px;}
.ye5{bottom:712.779000px;}
.y114{bottom:713.796000px;}
.y183{bottom:715.878000px;}
.y137{bottom:717.864000px;}
.y2e{bottom:718.876500px;}
.y112{bottom:722.016000px;}
.y1bb{bottom:725.874000px;}
.y8d{bottom:727.219500px;}
.yb4{bottom:728.565000px;}
.y61{bottom:729.013500px;}
.y113{bottom:730.234500px;}
.y182{bottom:733.138500px;}
.y2d{bottom:738.333000px;}
.y136{bottom:741.504000px;}
.y1ba{bottom:743.134500px;}
.ye4{bottom:744.639000px;}
.y8c{bottom:746.049000px;}
.yb3{bottom:747.394500px;}
.y60{bottom:747.843000px;}
.y181{bottom:750.397500px;}
.y111{bottom:753.876000px;}
.y2c{bottom:757.789500px;}
.y1b9{bottom:760.395000px;}
.ye2{bottom:761.077500px;}
.y110{bottom:762.094500px;}
.y8b{bottom:764.878500px;}
.y135{bottom:765.145500px;}
.yb2{bottom:766.224000px;}
.y5f{bottom:766.671000px;}
.y152{bottom:770.706000px;}
.y180{bottom:772.141500px;}
.y2b{bottom:777.247500px;}
.ye3{bottom:777.516000px;}
.y1b8{bottom:777.655500px;}
.y8a{bottom:783.708000px;}
.yb1{bottom:785.053500px;}
.y5e{bottom:785.500500px;}
.y134{bottom:788.785500px;}
.y10f{bottom:793.954500px;}
.y1b7{bottom:794.916000px;}
.y2a{bottom:796.704000px;}
.ye1{bottom:801.157500px;}
.y10e{bottom:802.173000px;}
.y89{bottom:802.537500px;}
.yb0{bottom:803.883000px;}
.y5d{bottom:804.330000px;}
.y17f{bottom:805.765500px;}
.y1b6{bottom:812.176500px;}
.y133{bottom:812.427000px;}
.y29{bottom:816.160500px;}
.y88{bottom:821.367000px;}
.yaf{bottom:822.712500px;}
.y5c{bottom:823.159500px;}
.ye0{bottom:824.797500px;}
.y1b5{bottom:829.437000px;}
.y17e{bottom:832.306500px;}
.ydf{bottom:833.017500px;}
.y10d{bottom:834.033000px;}
.y132{bottom:836.067000px;}
.y87{bottom:840.196500px;}
.yae{bottom:841.540500px;}
.y5b{bottom:841.989000px;}
.y1b4{bottom:846.697500px;}
.y17d{bottom:849.880500px;}
.y28{bottom:854.746500px;}
.y10c{bottom:857.674500px;}
.y86{bottom:859.026000px;}
.y131{bottom:859.708500px;}
.y5a{bottom:860.818500px;}
.y1b3{bottom:863.956500px;}
.yad{bottom:864.853500px;}
.yde{bottom:864.876000px;}
.y10b{bottom:865.893000px;}
.y27{bottom:870.886500px;}
.ydd{bottom:873.096000px;}
.y17c{bottom:876.420000px;}
.y85{bottom:877.855500px;}
.y59{bottom:879.648000px;}
.y1b2{bottom:881.217000px;}
.y130{bottom:883.348500px;}
.y26{bottom:891.366000px;}
.y17b{bottom:893.995500px;}
.y10a{bottom:897.753000px;}
.y58{bottom:898.477500px;}
.y84{bottom:901.168500px;}
.y25{bottom:903.165000px;}
.ydc{bottom:904.956000px;}
.y12f{bottom:906.990000px;}
.yda{bottom:913.174500px;}
.y1b1{bottom:915.738000px;}
.y57{bottom:917.307000px;}
.y17a{bottom:920.535000px;}
.y83{bottom:921.342000px;}
.ydb{bottom:921.394500px;}
.y24{bottom:923.644500px;}
.y12e{bottom:930.630000px;}
.y1b0{bottom:932.998500px;}
.y56{bottom:936.136500px;}
.yd9{bottom:945.034500px;}
.y179{bottom:947.076000px;}
.y1af{bottom:950.259000px;}
.y12d{bottom:954.271500px;}
.y55{bottom:954.966000px;}
.y178{bottom:964.650000px;}
.y1ae{bottom:967.519500px;}
.y23{bottom:968.320500px;}
.yd8{bottom:968.676000px;}
.y54{bottom:973.795500px;}
.y12c{bottom:977.911500px;}
.y1ad{bottom:984.780000px;}
.yd6{bottom:985.114500px;}
.y177{bottom:991.191000px;}
.y109{bottom:992.316000px;}
.y53{bottom:992.625000px;}
.y108{bottom:1000.536000px;}
.yd7{bottom:1001.553000px;}
.y1ac{bottom:1002.040500px;}
.y22{bottom:1008.240000px;}
.y176{bottom:1008.765000px;}
.y52{bottom:1011.454500px;}
.y1ab{bottom:1019.299500px;}
.yd5{bottom:1025.193000px;}
.y51{bottom:1030.284000px;}
.y107{bottom:1032.396000px;}
.y175{bottom:1035.304500px;}
.y21{bottom:1036.485000px;}
.y1aa{bottom:1036.560000px;}
.y106{bottom:1040.614500px;}
.yd4{bottom:1048.833000px;}
.y50{bottom:1049.113500px;}
.y174{bottom:1052.880000px;}
.y1a9{bottom:1053.820500px;}
.y20{bottom:1064.728500px;}
.y4f{bottom:1067.943000px;}
.y173{bottom:1070.454000px;}
.y1a8{bottom:1071.081000px;}
.yd3{bottom:1072.474500px;}
.y4e{bottom:1086.772500px;}
.y172{bottom:1088.028000px;}
.y1a7{bottom:1088.341500px;}
.y1f{bottom:1092.972000px;}
.y4d{bottom:1105.602000px;}
.yd2{bottom:1107.082500px;}
.y1a{bottom:1136.460000px;}
.y4c{bottom:1168.366500px;}
.hb{height:26.110157px;}
.h17{height:27.855430px;}
.h6{height:29.527571px;}
.h2{height:30.461558px;}
.h3{height:30.712615px;}
.h5{height:32.333893px;}
.hc{height:34.813397px;}
.h11{height:35.100320px;}
.hd{height:38.734848px;}
.he{height:39.165235px;}
.h14{height:39.488026px;}
.hf{height:43.038432px;}
.h10{height:43.516637px;}
.h8{height:43.875290px;}
.h4{height:50.887467px;}
.ha{height:54.411312px;}
.h15{height:54.768749px;}
.h16{height:54.774749px;}
.h13{height:72.039235px;}
.h12{height:72.045235px;}
.h9{height:77.469696px;}
.h7{height:89.939935px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:283.414416px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:28.390860px;}
.x2{left:32.479391px;}
.x3{left:43.285382px;}
.x5{left:51.307857px;}
.x6{left:52.525500px;}
.x1{left:53.574000px;}
.x18{left:62.541000px;}
.x6e{left:85.848000px;}
.xf{left:247.348500px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x16{left:254.173500px;}
.x8{left:269.914500px;}
.x53{left:272.899500px;}
.x2c{left:275.530500px;}
.xc{left:281.479500px;}
.x19{left:283.161000px;}
.x2f{left:286.543500px;}
.x12{left:289.759500px;}
.x10{left:290.938500px;}
.x24{left:293.650500px;}
.x35{left:297.520500px;}
.x5b{left:299.742000px;}
.x3c{left:302.331000px;}
.x4c{left:305.037000px;}
.x30{left:306.864000px;}
.x1a{left:308.895000px;}
.xa{left:311.133000px;}
.x25{left:312.466500px;}
.x40{left:316.803000px;}
.xb{left:319.891500px;}
.x44{left:321.352500px;}
.x3d{left:322.695000px;}
.x50{left:334.879500px;}
.x41{left:337.662000px;}
.x68{left:342.022500px;}
.x51{left:353.097000px;}
.x61{left:356.917500px;}
.x64{left:362.436000px;}
.x48{left:365.980500px;}
.x5f{left:373.141500px;}
.x20{left:374.314500px;}
.x49{left:379.366500px;}
.x65{left:381.210000px;}
.x6b{left:390.703500px;}
.x21{left:393.295500px;}
.x1b{left:405.459000px;}
.x4d{left:412.057500px;}
.x57{left:420.087000px;}
.x17{left:422.380500px;}
.x1c{left:424.242000px;}
.x36{left:426.211500px;}
.x31{left:427.777500px;}
.x6d{left:431.814000px;}
.x37{left:433.521000px;}
.x58{left:439.851000px;}
.x5c{left:440.980500px;}
.x15{left:448.089000px;}
.x45{left:450.043500px;}
.x32{left:485.401500px;}
.x6c{left:486.903000px;}
.x11{left:488.539500px;}
.x38{left:491.145000px;}
.x22{left:502.108500px;}
.x23{left:520.887000px;}
.x54{left:530.370000px;}
.x2d{left:546.348000px;}
.x55{left:549.136500px;}
.x69{left:555.364500px;}
.x39{left:558.976500px;}
.x2e{left:567.705000px;}
.x6a{left:574.149000px;}
.x2a{left:575.965500px;}
.x33{left:578.079000px;}
.x26{left:582.049500px;}
.x2b{left:597.007500px;}
.x34{left:598.399500px;}
.x27{left:600.865500px;}
.x3e{left:611.769000px;}
.x52{left:615.403500px;}
.x46{left:616.779000px;}
.x3a{left:620.515500px;}
.x42{left:624.532500px;}
.x60{left:626.577000px;}
.x3f{left:632.133000px;}
.x62{left:633.285000px;}
.x47{left:635.964000px;}
.x3b{left:639.304500px;}
.x43{left:645.391500px;}
.x4a{left:647.622000px;}
.x63{left:652.977000px;}
.x28{left:655.518000px;}
.x66{left:657.387000px;}
.x1d{left:659.860500px;}
.x4e{left:666.093000px;}
.x4b{left:667.435500px;}
.x29{left:674.296500px;}
.x67{left:676.161000px;}
.x1e{left:678.643500px;}
.xd{left:694.527000px;}
.x56{left:713.404500px;}
.x59{left:714.817500px;}
.x5d{left:718.431000px;}
.x13{left:728.263500px;}
.x5a{left:734.581500px;}
.x5e{left:737.344500px;}
.x4f{left:774.619500px;}
.x1f{left:782.065500px;}
.x6f{left:797.488500px;}
.x14{left:832.990500px;}
.xe{left:836.967000px;}
@media print{
.v4{vertical-align:-15.429333pt;}
.v1{vertical-align:-8.576356pt;}
.v2{vertical-align:-2.056460pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.290667pt;}
.v5{vertical-align:29.226667pt;}
.ls16{letter-spacing:0.000000pt;}
.ls5c{letter-spacing:0.000079pt;}
.ls1c{letter-spacing:0.000243pt;}
.ls4e{letter-spacing:0.000375pt;}
.ls50{letter-spacing:0.000600pt;}
.ls4a{letter-spacing:0.000659pt;}
.ls52{letter-spacing:0.000711pt;}
.ls1b{letter-spacing:0.000915pt;}
.ls4f{letter-spacing:0.000921pt;}
.ls4b{letter-spacing:0.001026pt;}
.ls48{letter-spacing:0.001089pt;}
.ls53{letter-spacing:0.001552pt;}
.ls51{letter-spacing:0.001818pt;}
.ls4d{letter-spacing:0.001843pt;}
.ls5b{letter-spacing:0.001858pt;}
.ls59{letter-spacing:0.001974pt;}
.ls57{letter-spacing:0.002117pt;}
.ls49{letter-spacing:0.002242pt;}
.ls4c{letter-spacing:0.002262pt;}
.ls56{letter-spacing:0.002550pt;}
.lsf{letter-spacing:0.002868pt;}
.ls58{letter-spacing:0.002919pt;}
.ls5d{letter-spacing:0.002939pt;}
.ls20{letter-spacing:0.003012pt;}
.ls7{letter-spacing:0.003065pt;}
.ls1e{letter-spacing:0.003914pt;}
.ls5a{letter-spacing:0.004428pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:10.285996pt;}
.ls15{letter-spacing:10.626533pt;}
.lsc{letter-spacing:10.679907pt;}
.ls3d{letter-spacing:11.517420pt;}
.ls3c{letter-spacing:11.604495pt;}
.ls54{letter-spacing:11.952503pt;}
.ls55{letter-spacing:12.050842pt;}
.lsd{letter-spacing:12.539593pt;}
.ls3e{letter-spacing:12.545992pt;}
.ls1f{letter-spacing:13.017797pt;}
.ls27{letter-spacing:13.032674pt;}
.ls19{letter-spacing:13.070931pt;}
.ls2f{letter-spacing:13.074545pt;}
.ls3f{letter-spacing:13.085241pt;}
.ls43{letter-spacing:13.097769pt;}
.ls6{letter-spacing:13.124065pt;}
.ls2e{letter-spacing:13.155516pt;}
.ls26{letter-spacing:13.155942pt;}
.ls5{letter-spacing:13.177199pt;}
.ls46{letter-spacing:13.189197pt;}
.lsa{letter-spacing:13.230333pt;}
.ls25{letter-spacing:13.257418pt;}
.lsb{letter-spacing:13.283467pt;}
.ls23{letter-spacing:13.283733pt;}
.ls1a{letter-spacing:13.389734pt;}
.ls40{letter-spacing:13.398085pt;}
.ls42{letter-spacing:13.490583pt;}
.ls8{letter-spacing:13.496002pt;}
.ls21{letter-spacing:13.498107pt;}
.ls22{letter-spacing:13.522589pt;}
.ls47{letter-spacing:13.525208pt;}
.ls9{letter-spacing:13.549136pt;}
.ls3b{letter-spacing:13.631759pt;}
.ls3a{letter-spacing:13.636988pt;}
.ls24{letter-spacing:13.725877pt;}
.ls39{letter-spacing:13.785814pt;}
.ls36{letter-spacing:14.442217pt;}
.ls34{letter-spacing:15.247446pt;}
.ls35{letter-spacing:15.252675pt;}
.ls1{letter-spacing:15.768445pt;}
.ls33{letter-spacing:15.809344pt;}
.ls28{letter-spacing:15.937067pt;}
.ls29{letter-spacing:15.942400pt;}
.ls45{letter-spacing:16.204308pt;}
.ls41{letter-spacing:16.455289pt;}
.ls38{letter-spacing:16.622609pt;}
.ls2d{letter-spacing:18.400387pt;}
.ls17{letter-spacing:18.490586pt;}
.ls18{letter-spacing:18.543719pt;}
.ls30{letter-spacing:18.546792pt;}
.ls10{letter-spacing:18.703121pt;}
.lse{letter-spacing:18.756255pt;}
.ls11{letter-spacing:18.809389pt;}
.ls12{letter-spacing:18.862523pt;}
.ls44{letter-spacing:19.325877pt;}
.ls13{letter-spacing:19.978334pt;}
.ls14{letter-spacing:20.031468pt;}
.ls37{letter-spacing:20.036988pt;}
.ls32{letter-spacing:20.272282pt;}
.ls31{letter-spacing:20.277511pt;}
.ls2a{letter-spacing:20.910191pt;}
.ls1d{letter-spacing:21.466082pt;}
.ls2c{letter-spacing:22.008230pt;}
.ls2b{letter-spacing:22.013459pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.wsbf{word-spacing:-24.006042pt;}
.ws25{word-spacing:-13.283467pt;}
.wsa9{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws10{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws28{word-spacing:-3.559969pt;}
.ws9b{word-spacing:-2.709827pt;}
.ws54{word-spacing:-2.656693pt;}
.wsbc{word-spacing:-2.247578pt;}
.wsa2{word-spacing:-2.199757pt;}
.ws21{word-spacing:-2.178489pt;}
.ws52{word-spacing:-2.072221pt;}
.ws98{word-spacing:-2.019087pt;}
.wsa3{word-spacing:-2.008474pt;}
.wsad{word-spacing:-1.912832pt;}
.ws4c{word-spacing:-1.912819pt;}
.wsbe{word-spacing:-1.865011pt;}
.ws97{word-spacing:-1.806551pt;}
.wsa4{word-spacing:-1.769370pt;}
.ws82{word-spacing:-1.753418pt;}
.ws81{word-spacing:-1.700284pt;}
.ws8a{word-spacing:-1.594016pt;}
.wsa5{word-spacing:-1.578086pt;}
.ws9d{word-spacing:-1.540882pt;}
.wsac{word-spacing:-1.482445pt;}
.ws35{word-spacing:-1.434614pt;}
.ws92{word-spacing:-1.168945pt;}
.ws91{word-spacing:-1.115811pt;}
.ws74{word-spacing:-1.062680pt;}
.ws49{word-spacing:-1.062677pt;}
.ws6{word-spacing:-1.041421pt;}
.ws2b{word-spacing:-1.009543pt;}
.ws2a{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.929840pt;}
.ws29{word-spacing:-0.903276pt;}
.wsb8{word-spacing:-0.765133pt;}
.ws83{word-spacing:-0.743874pt;}
.ws84{word-spacing:-0.690740pt;}
.wsb2{word-spacing:-0.669491pt;}
.ws4a{word-spacing:-0.637606pt;}
.ws9f{word-spacing:-0.573850pt;}
.ws96{word-spacing:-0.371937pt;}
.ws6d{word-spacing:-0.318803pt;}
.wsaf{word-spacing:-0.286925pt;}
.ws1f{word-spacing:-0.265669pt;}
.ws17{word-spacing:-0.239104pt;}
.wsa8{word-spacing:-0.216579pt;}
.ws26{word-spacing:-0.212535pt;}
.ws6a{word-spacing:-0.191283pt;}
.ws23{word-spacing:-0.159402pt;}
.wsb3{word-spacing:-0.150210pt;}
.ws16{word-spacing:-0.143462pt;}
.ws24{word-spacing:-0.106268pt;}
.ws1c{word-spacing:-0.095642pt;}
.ws2f{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.wsbb{word-spacing:-0.010121pt;}
.wsb0{word-spacing:-0.009677pt;}
.wsb4{word-spacing:-0.008482pt;}
.wsc6{word-spacing:-0.008474pt;}
.wscb{word-spacing:-0.006494pt;}
.wsb5{word-spacing:-0.006059pt;}
.wsd3{word-spacing:-0.005939pt;}
.wsc3{word-spacing:-0.005359pt;}
.wsae{word-spacing:-0.005052pt;}
.wscf{word-spacing:-0.004617pt;}
.wsdc{word-spacing:-0.003516pt;}
.ws3{word-spacing:-0.002754pt;}
.ws30{word-spacing:-0.000698pt;}
.ws1{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.047821pt;}
.ws20{word-spacing:0.053134pt;}
.ws69{word-spacing:0.095642pt;}
.ws39{word-spacing:0.106268pt;}
.ws6c{word-spacing:0.143462pt;}
.ws22{word-spacing:0.159402pt;}
.ws15{word-spacing:0.191283pt;}
.ws33{word-spacing:0.212535pt;}
.ws68{word-spacing:0.239104pt;}
.ws42{word-spacing:0.265669pt;}
.wsce{word-spacing:0.286925pt;}
.ws41{word-spacing:0.318803pt;}
.wsa0{word-spacing:0.334746pt;}
.ws1e{word-spacing:0.371937pt;}
.ws77{word-spacing:0.425071pt;}
.ws1b{word-spacing:0.430387pt;}
.ws47{word-spacing:0.478205pt;}
.ws8f{word-spacing:0.531339pt;}
.ws3b{word-spacing:0.690740pt;}
.ws14{word-spacing:0.717312pt;}
.wsc8{word-spacing:0.765133pt;}
.ws36{word-spacing:0.797008pt;}
.wsc7{word-spacing:0.812954pt;}
.ws53{word-spacing:0.850142pt;}
.ws7{word-spacing:0.855453pt;}
.wsd5{word-spacing:0.860774pt;}
.ws8c{word-spacing:0.903276pt;}
.wsd4{word-spacing:0.908595pt;}
.ws8d{word-spacing:0.956410pt;}
.wsbd{word-spacing:1.004237pt;}
.wsb1{word-spacing:1.052058pt;}
.ws93{word-spacing:1.062677pt;}
.ws51{word-spacing:1.115811pt;}
.ws80{word-spacing:1.168945pt;}
.ws38{word-spacing:1.328347pt;}
.ws19{word-spacing:1.386803pt;}
.ws27{word-spacing:1.434614pt;}
.wsdb{word-spacing:1.434624pt;}
.wsd0{word-spacing:1.482445pt;}
.ws3a{word-spacing:1.487748pt;}
.ws76{word-spacing:1.594016pt;}
.ws5e{word-spacing:1.647150pt;}
.ws13{word-spacing:1.721549pt;}
.ws89{word-spacing:1.912819pt;}
.wsb9{word-spacing:1.912832pt;}
.ws57{word-spacing:1.965953pt;}
.ws8e{word-spacing:2.072221pt;}
.wscd{word-spacing:2.104115pt;}
.wsba{word-spacing:2.151936pt;}
.ws63{word-spacing:2.178489pt;}
.ws2{word-spacing:2.231616pt;}
.ws64{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws9e{word-spacing:2.284756pt;}
.wsc9{word-spacing:2.295398pt;}
.ws59{word-spacing:2.337890pt;}
.ws4e{word-spacing:2.391024pt;}
.ws5a{word-spacing:2.444158pt;}
.wsab{word-spacing:2.534502pt;}
.ws58{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.wsaa{word-spacing:2.582323pt;}
.ws86{word-spacing:2.656693pt;}
.wsa1{word-spacing:2.677965pt;}
.ws34{word-spacing:2.709827pt;}
.wsc0{word-spacing:2.773606pt;}
.wsd7{word-spacing:2.821427pt;}
.wsd8{word-spacing:2.861858pt;}
.wsca{word-spacing:2.864256pt;}
.wsd2{word-spacing:2.866859pt;}
.ws8b{word-spacing:2.869229pt;}
.ws67{word-spacing:2.869248pt;}
.ws4f{word-spacing:2.922363pt;}
.ws65{word-spacing:2.975497pt;}
.wsc4{word-spacing:3.012710pt;}
.ws3d{word-spacing:3.028630pt;}
.wsc5{word-spacing:3.060531pt;}
.wsa7{word-spacing:3.108352pt;}
.ws85{word-spacing:3.134898pt;}
.ws1d{word-spacing:3.188032pt;}
.ws45{word-spacing:3.241166pt;}
.ws3e{word-spacing:3.294300pt;}
.ws75{word-spacing:3.347434pt;}
.wsa6{word-spacing:3.395277pt;}
.ws32{word-spacing:3.400567pt;}
.ws43{word-spacing:3.453701pt;}
.ws2c{word-spacing:3.559969pt;}
.ws1a{word-spacing:3.586560pt;}
.ws5d{word-spacing:3.613103pt;}
.wsc1{word-spacing:3.634381pt;}
.wsc2{word-spacing:3.682202pt;}
.ws90{word-spacing:3.772505pt;}
.ws4b{word-spacing:3.985040pt;}
.wse{word-spacing:4.240070pt;}
.ws46{word-spacing:4.250709pt;}
.ws55{word-spacing:4.303843pt;}
.wsf{word-spacing:4.314458pt;}
.ws2d{word-spacing:4.356977pt;}
.ws2e{word-spacing:4.410111pt;}
.ws99{word-spacing:4.463245pt;}
.ws37{word-spacing:4.569513pt;}
.wsd1{word-spacing:4.590797pt;}
.ws44{word-spacing:4.622646pt;}
.ws9a{word-spacing:4.728914pt;}
.wsd6{word-spacing:4.829901pt;}
.ws3c{word-spacing:4.941450pt;}
.ws12{word-spacing:4.973363pt;}
.ws79{word-spacing:4.994583pt;}
.ws61{word-spacing:5.100851pt;}
.ws5c{word-spacing:5.153985pt;}
.ws5f{word-spacing:5.207119pt;}
.ws48{word-spacing:5.260253pt;}
.ws4d{word-spacing:5.366521pt;}
.ws60{word-spacing:5.419654pt;}
.ws56{word-spacing:5.472788pt;}
.ws5b{word-spacing:5.579056pt;}
.ws78{word-spacing:5.685324pt;}
.ws6e{word-spacing:5.897859pt;}
.ws88{word-spacing:6.004127pt;}
.ws87{word-spacing:6.057261pt;}
.ws94{word-spacing:6.163529pt;}
.ws9c{word-spacing:6.269796pt;}
.ws62{word-spacing:6.429198pt;}
.ws3f{word-spacing:6.482332pt;}
.ws40{word-spacing:6.535466pt;}
.ws7a{word-spacing:6.588599pt;}
.ws50{word-spacing:6.748001pt;}
.wsda{word-spacing:6.790554pt;}
.wsc{word-spacing:6.918010pt;}
.ws7f{word-spacing:6.960537pt;}
.ws7e{word-spacing:7.013670pt;}
.ws95{word-spacing:7.491875pt;}
.ws7b{word-spacing:7.598143pt;}
.ws7c{word-spacing:7.651277pt;}
.wsd9{word-spacing:8.559923pt;}
.ws7d{word-spacing:8.713954pt;}
.wsb7{word-spacing:8.990310pt;}
.wscc{word-spacing:9.611981pt;}
.wsa{word-spacing:10.823338pt;}
.wsb6{word-spacing:11.285709pt;}
.ws4{word-spacing:13.761632pt;}
.wsb{word-spacing:14.319536pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws73{word-spacing:205.246874pt;}
.ws70{word-spacing:217.202074pt;}
.ws6f{word-spacing:220.166963pt;}
.ws71{word-spacing:229.157274pt;}
.ws66{word-spacing:291.611238pt;}
.ws72{word-spacing:305.192346pt;}
._77{margin-left:-12.661189pt;}
._7{margin-left:-10.616218pt;}
._5{margin-left:-7.077478pt;}
._10{margin-left:-6.105165pt;}
._a{margin-left:-4.718299pt;}
._0{margin-left:-3.421811pt;}
._3{margin-left:-2.045648pt;}
._d{margin-left:-1.067907pt;}
._2{width:2.045648pt;}
._8{width:3.268116pt;}
._1b{width:4.516379pt;}
._1{width:11.530016pt;}
._12{width:13.177232pt;}
._c{width:14.728806pt;}
._1a{width:15.626587pt;}
._11{width:16.524633pt;}
._17{width:17.640444pt;}
._e{width:18.878570pt;}
._b{width:20.026269pt;}
._15{width:21.466082pt;}
._73{width:22.900697pt;}
._19{width:24.276947pt;}
._f{width:25.419373pt;}
._4{width:27.188522pt;}
._78{width:28.326025pt;}
._6{width:29.648896pt;}
._18{width:30.711375pt;}
._16{width:31.880320pt;}
._1c{width:33.314934pt;}
._74{width:35.652825pt;}
._76{width:42.553854pt;}
._9{width:61.661897pt;}
._50{width:195.534048pt;}
._45{width:217.202074pt;}
._36{width:218.158490pt;}
._57{width:228.535603pt;}
._44{width:229.826765pt;}
._41{width:236.473856pt;}
._3c{width:240.777728pt;}
._52{width:241.734144pt;}
._3d{width:248.094310pt;}
._3f{width:253.402419pt;}
._55{width:254.406656pt;}
._3e{width:256.080384pt;}
._42{width:258.375782pt;}
._29{width:260.049510pt;}
._4e{width:261.107900pt;}
._59{width:265.501082pt;}
._68{width:267.222630pt;}
._38{width:270.420292pt;}
._21{width:271.574323pt;}
._5c{width:276.404224pt;}
._61{width:277.743206pt;}
._49{width:279.130010pt;}
._6d{width:297.780122pt;}
._48{width:298.688717pt;}
._25{width:301.455991pt;}
._4a{width:317.195366pt;}
._2a{width:321.492907pt;}
._35{width:325.564006pt;}
._6b{width:336.754074pt;}
._27{width:338.995319pt;}
._28{width:346.031309pt;}
._3a{width:353.389380pt;}
._2e{width:356.073677pt;}
._37{width:360.026843pt;}
._2b{width:366.300996pt;}
._33{width:379.786462pt;}
._2c{width:384.042513pt;}
._34{width:390.026445pt;}
._1d{width:393.415390pt;}
._30{width:395.191091pt;}
._4b{width:397.964698pt;}
._1e{width:405.274948pt;}
._6e{width:408.772198pt;}
._32{width:416.991044pt;}
._53{width:427.039744pt;}
._2d{width:428.952576pt;}
._2f{width:431.098180pt;}
._22{width:432.491315pt;}
._3b{width:437.314884pt;}
._51{width:439.807898pt;}
._23{width:447.554867pt;}
._5a{width:449.658982pt;}
._20{width:460.083917pt;}
._39{width:463.240090pt;}
._26{width:475.099648pt;}
._31{width:477.586330pt;}
._24{width:479.977370pt;}
._58{width:484.376883pt;}
._5b{width:490.737050pt;}
._70{width:491.836928pt;}
._63{width:494.419251pt;}
._6c{width:498.372418pt;}
._72{width:499.392614pt;}
._56{width:500.875059pt;}
._5d{width:504.748544pt;}
._1f{width:509.763396pt;}
._6a{width:516.321178pt;}
._69{width:518.138368pt;}
._40{width:519.812096pt;}
._5e{width:522.394419pt;}
._65{width:533.536666pt;}
._67{width:555.342950pt;}
._4c{width:558.881690pt;}
._60{width:567.298150pt;}
._64{width:569.545728pt;}
._71{width:575.762432pt;}
._62{width:582.839910pt;}
._47{width:586.378650pt;}
._6f{width:601.585664pt;}
._66{width:615.836262pt;}
._4f{width:618.322944pt;}
._54{width:619.422822pt;}
._4d{width:623.917978pt;}
._5f{width:634.677658pt;}
._46{width:636.160102pt;}
._13{width:857.538653pt;}
._43{width:903.956582pt;}
._75{width:2258.472000pt;}
._14{width:2279.725333pt;}
.fs9{font-size:31.880533pt;}
.fs3{font-size:35.359960pt;}
.fs2{font-size:36.555334pt;}
.fs0{font-size:37.193600pt;}
.fs1{font-size:40.029579pt;}
.fs8{font-size:40.381867pt;}
.fs4{font-size:41.862621pt;}
.fsa{font-size:42.507200pt;}
.fsb{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs7{font-size:95.641600pt;}
.fs5{font-size:120.948480pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:3.805560pt;}
.y1c{bottom:7.075016pt;}
.y1b{bottom:10.869741pt;}
.y1e{bottom:14.337350pt;}
.y4b{bottom:28.346667pt;}
.y1db{bottom:92.892000pt;}
.y19{bottom:93.018667pt;}
.yac{bottom:93.290667pt;}
.y4a{bottom:95.348000pt;}
.y82{bottom:95.681333pt;}
.y1a6{bottom:99.348000pt;}
.y151{bottom:104.186667pt;}
.y1da{bottom:108.233333pt;}
.y18{bottom:108.920000pt;}
.yab{bottom:110.028000pt;}
.y15f{bottom:112.020000pt;}
.y49{bottom:112.085333pt;}
.y81{bottom:112.418667pt;}
.y1a5{bottom:114.690667pt;}
.y105{bottom:114.709333pt;}
.yd1{bottom:116.954667pt;}
.y171{bottom:120.786667pt;}
.y150{bottom:120.924000pt;}
.y1d9{bottom:123.576000pt;}
.y17{bottom:124.820000pt;}
.yaa{bottom:126.765333pt;}
.y15e{bottom:128.757333pt;}
.y48{bottom:128.822667pt;}
.y80{bottom:129.156000pt;}
.y1a4{bottom:130.032000pt;}
.y104{bottom:135.724000pt;}
.y170{bottom:137.524000pt;}
.y14f{bottom:137.661333pt;}
.yd0{bottom:137.968000pt;}
.y1d8{bottom:138.918667pt;}
.y12b{bottom:139.430667pt;}
.y16{bottom:140.720000pt;}
.y1a3{bottom:145.374667pt;}
.y15d{bottom:145.494667pt;}
.y47{bottom:145.560000pt;}
.y7f{bottom:145.893333pt;}
.ya9{bottom:147.486667pt;}
.y16f{bottom:154.261333pt;}
.y14e{bottom:154.398667pt;}
.y15{bottom:156.621333pt;}
.y103{bottom:156.737333pt;}
.ycf{bottom:158.982667pt;}
.y12a{bottom:160.445333pt;}
.y1a2{bottom:160.717333pt;}
.y15c{bottom:162.232000pt;}
.y46{bottom:162.297333pt;}
.y7e{bottom:162.630667pt;}
.yce{bottom:166.288000pt;}
.y1d7{bottom:169.604000pt;}
.y16e{bottom:170.998667pt;}
.y14d{bottom:171.136000pt;}
.y14{bottom:172.521333pt;}
.y1a1{bottom:176.060000pt;}
.ya8{bottom:177.374667pt;}
.y102{bottom:177.752000pt;}
.y15b{bottom:178.969333pt;}
.y45{bottom:179.034667pt;}
.y7d{bottom:179.368000pt;}
.y129{bottom:181.458667pt;}
.y1d6{bottom:184.946667pt;}
.y101{bottom:185.057333pt;}
.y16d{bottom:187.736000pt;}
.y13{bottom:188.421333pt;}
.y1a0{bottom:191.402667pt;}
.ya7{bottom:194.112000pt;}
.ycd{bottom:194.608000pt;}
.y15a{bottom:195.706667pt;}
.y44{bottom:195.772000pt;}
.y7c{bottom:196.105333pt;}
.y1d5{bottom:200.289333pt;}
.ycc{bottom:201.914667pt;}
.y128{bottom:202.473333pt;}
.y12{bottom:204.322667pt;}
.y16c{bottom:204.473333pt;}
.y19f{bottom:206.745333pt;}
.y14c{bottom:206.809333pt;}
.ya6{bottom:210.849333pt;}
.y159{bottom:212.444000pt;}
.y43{bottom:212.509333pt;}
.y7b{bottom:212.841333pt;}
.y100{bottom:213.377333pt;}
.y1d4{bottom:215.632000pt;}
.y14b{bottom:219.429333pt;}
.y16b{bottom:221.210667pt;}
.y19e{bottom:222.088000pt;}
.y127{bottom:223.486667pt;}
.ya5{bottom:227.586667pt;}
.y158{bottom:229.181333pt;}
.y42{bottom:229.245333pt;}
.y7a{bottom:229.578667pt;}
.ycb{bottom:230.234667pt;}
.y1d3{bottom:230.974667pt;}
.yff{bottom:234.392000pt;}
.y19d{bottom:237.430667pt;}
.yca{bottom:237.540000pt;}
.y14a{bottom:238.836000pt;}
.yfe{bottom:241.697333pt;}
.y16a{bottom:241.933333pt;}
.ya4{bottom:244.324000pt;}
.y126{bottom:244.501333pt;}
.y157{bottom:245.918667pt;}
.y41{bottom:245.982667pt;}
.y79{bottom:246.316000pt;}
.y19c{bottom:252.773333pt;}
.y169{bottom:258.670667pt;}
.y149{bottom:259.849333pt;}
.ya3{bottom:261.061333pt;}
.y1d2{bottom:261.658667pt;}
.y156{bottom:262.656000pt;}
.y40{bottom:262.720000pt;}
.y78{bottom:263.053333pt;}
.y125{bottom:265.514667pt;}
.yc9{bottom:265.860000pt;}
.y11{bottom:266.804000pt;}
.y19b{bottom:268.114667pt;}
.yfd{bottom:270.017333pt;}
.y168{bottom:275.408000pt;}
.y1d1{bottom:277.001333pt;}
.yfb{bottom:277.324000pt;}
.ya2{bottom:277.798667pt;}
.y155{bottom:279.393333pt;}
.y3f{bottom:279.457333pt;}
.y77{bottom:279.790667pt;}
.y148{bottom:280.864000pt;}
.y10{bottom:282.705333pt;}
.y19a{bottom:283.457333pt;}
.yfc{bottom:284.629333pt;}
.y124{bottom:286.528000pt;}
.y167{bottom:292.145333pt;}
.y1d0{bottom:292.344000pt;}
.ya1{bottom:294.536000pt;}
.y154{bottom:296.129333pt;}
.y3e{bottom:296.194667pt;}
.y76{bottom:296.528000pt;}
.yc8{bottom:296.622667pt;}
.yf{bottom:298.605333pt;}
.y199{bottom:298.800000pt;}
.y147{bottom:301.877333pt;}
.yfa{bottom:305.644000pt;}
.y123{bottom:307.542667pt;}
.y1cf{bottom:307.686667pt;}
.y166{bottom:308.882667pt;}
.ya0{bottom:311.273333pt;}
.y153{bottom:312.866667pt;}
.y3d{bottom:312.932000pt;}
.y75{bottom:313.265333pt;}
.y198{bottom:314.142667pt;}
.ye{bottom:314.505333pt;}
.y146{bottom:322.892000pt;}
.y1ce{bottom:323.029333pt;}
.y165{bottom:325.620000pt;}
.yf9{bottom:326.657333pt;}
.y9f{bottom:328.010667pt;}
.y122{bottom:328.556000pt;}
.y197{bottom:329.485333pt;}
.yc7{bottom:329.604000pt;}
.y3c{bottom:329.669333pt;}
.y74{bottom:330.002667pt;}
.y1cd{bottom:338.372000pt;}
.yd{bottom:338.376000pt;}
.yf8{bottom:341.269333pt;}
.y164{bottom:342.357333pt;}
.y145{bottom:343.905333pt;}
.y9e{bottom:344.748000pt;}
.y196{bottom:344.828000pt;}
.yc6{bottom:346.341333pt;}
.y3b{bottom:346.406667pt;}
.y73{bottom:346.740000pt;}
.yf5{bottom:348.574667pt;}
.y121{bottom:349.570667pt;}
.y1cc{bottom:353.714667pt;}
.yc{bottom:354.277333pt;}
.yf7{bottom:355.881333pt;}
.y163{bottom:359.094667pt;}
.y195{bottom:360.170667pt;}
.y9d{bottom:361.485333pt;}
.yc5{bottom:363.078667pt;}
.y3a{bottom:363.144000pt;}
.y72{bottom:363.477333pt;}
.y144{bottom:364.920000pt;}
.y1cb{bottom:369.056000pt;}
.yb{bottom:370.177333pt;}
.yf6{bottom:370.493333pt;}
.y120{bottom:370.584000pt;}
.y194{bottom:375.513333pt;}
.y162{bottom:375.832000pt;}
.y9c{bottom:378.222667pt;}
.yc4{bottom:379.816000pt;}
.y39{bottom:379.881333pt;}
.y71{bottom:380.214667pt;}
.y1ca{bottom:384.398667pt;}
.y143{bottom:385.933333pt;}
.y193{bottom:390.856000pt;}
.yf4{bottom:391.506667pt;}
.y161{bottom:392.568000pt;}
.y9b{bottom:394.960000pt;}
.ya{bottom:395.376000pt;}
.yc3{bottom:396.553333pt;}
.y70{bottom:396.952000pt;}
.yf3{bottom:398.813333pt;}
.y1c9{bottom:399.741333pt;}
.y38{bottom:400.604000pt;}
.y11f{bottom:401.348000pt;}
.y192{bottom:406.197333pt;}
.y142{bottom:406.948000pt;}
.y9a{bottom:411.697333pt;}
.yc2{bottom:413.290667pt;}
.y6f{bottom:413.689333pt;}
.y1c8{bottom:415.084000pt;}
.y9{bottom:419.246667pt;}
.y191{bottom:421.540000pt;}
.yf2{bottom:427.133333pt;}
.y141{bottom:427.961333pt;}
.y99{bottom:428.434667pt;}
.yc1{bottom:430.028000pt;}
.y6e{bottom:430.426667pt;}
.y11e{bottom:434.329333pt;}
.yf1{bottom:434.438667pt;}
.y8{bottom:435.146667pt;}
.y190{bottom:436.882667pt;}
.y98{bottom:445.172000pt;}
.y1c7{bottom:445.769333pt;}
.yc0{bottom:446.765333pt;}
.y6d{bottom:447.164000pt;}
.y140{bottom:448.974667pt;}
.y7{bottom:451.048000pt;}
.y11d{bottom:451.066667pt;}
.y18f{bottom:452.225333pt;}
.y1c6{bottom:461.112000pt;}
.yf0{bottom:462.758667pt;}
.ybf{bottom:463.502667pt;}
.y6c{bottom:463.901333pt;}
.y97{bottom:465.893333pt;}
.y6{bottom:466.948000pt;}
.y37{bottom:467.404000pt;}
.y160{bottom:467.488000pt;}
.y18e{bottom:467.568000pt;}
.y11c{bottom:467.804000pt;}
.y13f{bottom:469.989333pt;}
.yef{bottom:470.064000pt;}
.y1c5{bottom:476.454667pt;}
.ybe{bottom:480.240000pt;}
.y6b{bottom:480.638667pt;}
.y5{bottom:482.848000pt;}
.y18d{bottom:482.910667pt;}
.y11b{bottom:484.541333pt;}
.y36{bottom:484.698667pt;}
.y13e{bottom:491.002667pt;}
.y1c4{bottom:491.797333pt;}
.y96{bottom:495.781333pt;}
.ybd{bottom:496.977333pt;}
.y6a{bottom:497.376000pt;}
.y18c{bottom:498.253333pt;}
.yee{bottom:498.384000pt;}
.y4{bottom:498.749333pt;}
.y1c3{bottom:507.138667pt;}
.y13d{bottom:512.017333pt;}
.y95{bottom:512.518667pt;}
.y18b{bottom:513.596000pt;}
.ybc{bottom:513.714667pt;}
.y69{bottom:514.113333pt;}
.y3{bottom:514.649333pt;}
.y35{bottom:517.934667pt;}
.yed{bottom:519.398667pt;}
.y1c2{bottom:522.481333pt;}
.yeb{bottom:526.704000pt;}
.y11a{bottom:527.608000pt;}
.y18a{bottom:528.937333pt;}
.y94{bottom:529.256000pt;}
.ybb{bottom:530.452000pt;}
.y2{bottom:530.549333pt;}
.y68{bottom:530.850667pt;}
.y13c{bottom:533.030667pt;}
.yec{bottom:534.010667pt;}
.y34{bottom:535.229333pt;}
.y1c1{bottom:537.824000pt;}
.y118{bottom:542.220000pt;}
.y189{bottom:544.280000pt;}
.y93{bottom:545.993333pt;}
.y1{bottom:546.450667pt;}
.yba{bottom:547.189333pt;}
.y67{bottom:547.588000pt;}
.y33{bottom:552.525333pt;}
.y1c0{bottom:553.166667pt;}
.y13b{bottom:554.045333pt;}
.yea{bottom:555.024000pt;}
.y119{bottom:556.832000pt;}
.y188{bottom:559.622667pt;}
.y92{bottom:562.730667pt;}
.yb9{bottom:563.926667pt;}
.y66{bottom:564.325333pt;}
.y1bf{bottom:568.509333pt;}
.ye8{bottom:569.636000pt;}
.y32{bottom:569.820000pt;}
.y187{bottom:574.965333pt;}
.y13a{bottom:575.058667pt;}
.y117{bottom:577.845333pt;}
.y91{bottom:579.468000pt;}
.yb8{bottom:580.664000pt;}
.y65{bottom:581.062667pt;}
.y1be{bottom:583.852000pt;}
.ye9{bottom:584.248000pt;}
.y31{bottom:587.114667pt;}
.y186{bottom:590.308000pt;}
.y139{bottom:596.073333pt;}
.y90{bottom:596.205333pt;}
.yb7{bottom:597.401333pt;}
.y64{bottom:597.800000pt;}
.y116{bottom:598.860000pt;}
.y1bd{bottom:599.194667pt;}
.y30{bottom:604.410667pt;}
.ye7{bottom:605.261333pt;}
.y185{bottom:605.650667pt;}
.y115{bottom:606.165333pt;}
.y8f{bottom:612.942667pt;}
.yb6{bottom:614.138667pt;}
.y63{bottom:614.537333pt;}
.y138{bottom:617.086667pt;}
.y184{bottom:620.993333pt;}
.y2f{bottom:621.705333pt;}
.ye6{bottom:626.276000pt;}
.y8e{bottom:629.680000pt;}
.y1bc{bottom:629.878667pt;}
.yb5{bottom:630.876000pt;}
.y62{bottom:631.274667pt;}
.ye5{bottom:633.581333pt;}
.y114{bottom:634.485333pt;}
.y183{bottom:636.336000pt;}
.y137{bottom:638.101333pt;}
.y2e{bottom:639.001333pt;}
.y112{bottom:641.792000pt;}
.y1bb{bottom:645.221333pt;}
.y8d{bottom:646.417333pt;}
.yb4{bottom:647.613333pt;}
.y61{bottom:648.012000pt;}
.y113{bottom:649.097333pt;}
.y182{bottom:651.678667pt;}
.y2d{bottom:656.296000pt;}
.y136{bottom:659.114667pt;}
.y1ba{bottom:660.564000pt;}
.ye4{bottom:661.901333pt;}
.y8c{bottom:663.154667pt;}
.yb3{bottom:664.350667pt;}
.y60{bottom:664.749333pt;}
.y181{bottom:667.020000pt;}
.y111{bottom:670.112000pt;}
.y2c{bottom:673.590667pt;}
.y1b9{bottom:675.906667pt;}
.ye2{bottom:676.513333pt;}
.y110{bottom:677.417333pt;}
.y8b{bottom:679.892000pt;}
.y135{bottom:680.129333pt;}
.yb2{bottom:681.088000pt;}
.y5f{bottom:681.485333pt;}
.y152{bottom:685.072000pt;}
.y180{bottom:686.348000pt;}
.y2b{bottom:690.886667pt;}
.ye3{bottom:691.125333pt;}
.y1b8{bottom:691.249333pt;}
.y8a{bottom:696.629333pt;}
.yb1{bottom:697.825333pt;}
.y5e{bottom:698.222667pt;}
.y134{bottom:701.142667pt;}
.y10f{bottom:705.737333pt;}
.y1b7{bottom:706.592000pt;}
.y2a{bottom:708.181333pt;}
.ye1{bottom:712.140000pt;}
.y10e{bottom:713.042667pt;}
.y89{bottom:713.366667pt;}
.yb0{bottom:714.562667pt;}
.y5d{bottom:714.960000pt;}
.y17f{bottom:716.236000pt;}
.y1b6{bottom:721.934667pt;}
.y133{bottom:722.157333pt;}
.y29{bottom:725.476000pt;}
.y88{bottom:730.104000pt;}
.yaf{bottom:731.300000pt;}
.y5c{bottom:731.697333pt;}
.ye0{bottom:733.153333pt;}
.y1b5{bottom:737.277333pt;}
.y17e{bottom:739.828000pt;}
.ydf{bottom:740.460000pt;}
.y10d{bottom:741.362667pt;}
.y132{bottom:743.170667pt;}
.y87{bottom:746.841333pt;}
.yae{bottom:748.036000pt;}
.y5b{bottom:748.434667pt;}
.y1b4{bottom:752.620000pt;}
.y17d{bottom:755.449333pt;}
.y28{bottom:759.774667pt;}
.y10c{bottom:762.377333pt;}
.y86{bottom:763.578667pt;}
.y131{bottom:764.185333pt;}
.y5a{bottom:765.172000pt;}
.y1b3{bottom:767.961333pt;}
.yad{bottom:768.758667pt;}
.yde{bottom:768.778667pt;}
.y10b{bottom:769.682667pt;}
.y27{bottom:774.121333pt;}
.ydd{bottom:776.085333pt;}
.y17c{bottom:779.040000pt;}
.y85{bottom:780.316000pt;}
.y59{bottom:781.909333pt;}
.y1b2{bottom:783.304000pt;}
.y130{bottom:785.198667pt;}
.y26{bottom:792.325333pt;}
.y17b{bottom:794.662667pt;}
.y10a{bottom:798.002667pt;}
.y58{bottom:798.646667pt;}
.y84{bottom:801.038667pt;}
.y25{bottom:802.813333pt;}
.ydc{bottom:804.405333pt;}
.y12f{bottom:806.213333pt;}
.yda{bottom:811.710667pt;}
.y1b1{bottom:813.989333pt;}
.y57{bottom:815.384000pt;}
.y17a{bottom:818.253333pt;}
.y83{bottom:818.970667pt;}
.ydb{bottom:819.017333pt;}
.y24{bottom:821.017333pt;}
.y12e{bottom:827.226667pt;}
.y1b0{bottom:829.332000pt;}
.y56{bottom:832.121333pt;}
.yd9{bottom:840.030667pt;}
.y179{bottom:841.845333pt;}
.y1af{bottom:844.674667pt;}
.y12d{bottom:848.241333pt;}
.y55{bottom:848.858667pt;}
.y178{bottom:857.466667pt;}
.y1ae{bottom:860.017333pt;}
.y23{bottom:860.729333pt;}
.yd8{bottom:861.045333pt;}
.y54{bottom:865.596000pt;}
.y12c{bottom:869.254667pt;}
.y1ad{bottom:875.360000pt;}
.yd6{bottom:875.657333pt;}
.y177{bottom:881.058667pt;}
.y109{bottom:882.058667pt;}
.y53{bottom:882.333333pt;}
.y108{bottom:889.365333pt;}
.yd7{bottom:890.269333pt;}
.y1ac{bottom:890.702667pt;}
.y22{bottom:896.213333pt;}
.y176{bottom:896.680000pt;}
.y52{bottom:899.070667pt;}
.y1ab{bottom:906.044000pt;}
.yd5{bottom:911.282667pt;}
.y51{bottom:915.808000pt;}
.y107{bottom:917.685333pt;}
.y175{bottom:920.270667pt;}
.y21{bottom:921.320000pt;}
.y1aa{bottom:921.386667pt;}
.y106{bottom:924.990667pt;}
.yd4{bottom:932.296000pt;}
.y50{bottom:932.545333pt;}
.y174{bottom:935.893333pt;}
.y1a9{bottom:936.729333pt;}
.y20{bottom:946.425333pt;}
.y4f{bottom:949.282667pt;}
.y173{bottom:951.514667pt;}
.y1a8{bottom:952.072000pt;}
.yd3{bottom:953.310667pt;}
.y4e{bottom:966.020000pt;}
.y172{bottom:967.136000pt;}
.y1a7{bottom:967.414667pt;}
.y1f{bottom:971.530667pt;}
.y4d{bottom:982.757333pt;}
.yd2{bottom:984.073333pt;}
.y1a{bottom:1010.186667pt;}
.y4c{bottom:1038.548000pt;}
.hb{height:23.209028pt;}
.h17{height:24.760382pt;}
.h6{height:26.246730pt;}
.h2{height:27.076941pt;}
.h3{height:27.300102pt;}
.h5{height:28.741238pt;}
.hc{height:30.945242pt;}
.h11{height:31.200285pt;}
.hd{height:34.430976pt;}
.he{height:34.813542pt;}
.h14{height:35.100467pt;}
.hf{height:38.256384pt;}
.h10{height:38.681455pt;}
.h8{height:39.000258pt;}
.h4{height:45.233304pt;}
.ha{height:48.365611pt;}
.h15{height:48.683332pt;}
.h16{height:48.688666pt;}
.h13{height:64.034876pt;}
.h12{height:64.040209pt;}
.h9{height:68.861952pt;}
.h7{height:79.946609pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:251.923925pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:25.236320pt;}
.x2{left:28.870570pt;}
.x3{left:38.475895pt;}
.x5{left:45.606984pt;}
.x6{left:46.689333pt;}
.x1{left:47.621333pt;}
.x18{left:55.592000pt;}
.x6e{left:76.309333pt;}
.xf{left:219.865333pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x16{left:225.932000pt;}
.x8{left:239.924000pt;}
.x53{left:242.577333pt;}
.x2c{left:244.916000pt;}
.xc{left:250.204000pt;}
.x19{left:251.698667pt;}
.x2f{left:254.705333pt;}
.x12{left:257.564000pt;}
.x10{left:258.612000pt;}
.x24{left:261.022667pt;}
.x35{left:264.462667pt;}
.x5b{left:266.437333pt;}
.x3c{left:268.738667pt;}
.x4c{left:271.144000pt;}
.x30{left:272.768000pt;}
.x1a{left:274.573333pt;}
.xa{left:276.562667pt;}
.x25{left:277.748000pt;}
.x40{left:281.602667pt;}
.xb{left:284.348000pt;}
.x44{left:285.646667pt;}
.x3d{left:286.840000pt;}
.x50{left:297.670667pt;}
.x41{left:300.144000pt;}
.x68{left:304.020000pt;}
.x51{left:313.864000pt;}
.x61{left:317.260000pt;}
.x64{left:322.165333pt;}
.x48{left:325.316000pt;}
.x5f{left:331.681333pt;}
.x20{left:332.724000pt;}
.x49{left:337.214667pt;}
.x65{left:338.853333pt;}
.x6b{left:347.292000pt;}
.x21{left:349.596000pt;}
.x1b{left:360.408000pt;}
.x4d{left:366.273333pt;}
.x57{left:373.410667pt;}
.x17{left:375.449333pt;}
.x1c{left:377.104000pt;}
.x36{left:378.854667pt;}
.x31{left:380.246667pt;}
.x6d{left:383.834667pt;}
.x37{left:385.352000pt;}
.x58{left:390.978667pt;}
.x5c{left:391.982667pt;}
.x15{left:398.301333pt;}
.x45{left:400.038667pt;}
.x32{left:431.468000pt;}
.x6c{left:432.802667pt;}
.x11{left:434.257333pt;}
.x38{left:436.573333pt;}
.x22{left:446.318667pt;}
.x23{left:463.010667pt;}
.x54{left:471.440000pt;}
.x2d{left:485.642667pt;}
.x55{left:488.121333pt;}
.x69{left:493.657333pt;}
.x39{left:496.868000pt;}
.x2e{left:504.626667pt;}
.x6a{left:510.354667pt;}
.x2a{left:511.969333pt;}
.x33{left:513.848000pt;}
.x26{left:517.377333pt;}
.x2b{left:530.673333pt;}
.x34{left:531.910667pt;}
.x27{left:534.102667pt;}
.x3e{left:543.794667pt;}
.x52{left:547.025333pt;}
.x46{left:548.248000pt;}
.x3a{left:551.569333pt;}
.x42{left:555.140000pt;}
.x60{left:556.957333pt;}
.x3f{left:561.896000pt;}
.x62{left:562.920000pt;}
.x47{left:565.301333pt;}
.x3b{left:568.270667pt;}
.x43{left:573.681333pt;}
.x4a{left:575.664000pt;}
.x63{left:580.424000pt;}
.x28{left:582.682667pt;}
.x66{left:584.344000pt;}
.x1d{left:586.542667pt;}
.x4e{left:592.082667pt;}
.x4b{left:593.276000pt;}
.x29{left:599.374667pt;}
.x67{left:601.032000pt;}
.x1e{left:603.238667pt;}
.xd{left:617.357333pt;}
.x56{left:634.137333pt;}
.x59{left:635.393333pt;}
.x5d{left:638.605333pt;}
.x13{left:647.345333pt;}
.x5a{left:652.961333pt;}
.x5e{left:655.417333pt;}
.x4f{left:688.550667pt;}
.x1f{left:695.169333pt;}
.x6f{left:708.878667pt;}
.x14{left:740.436000pt;}
.xe{left:743.970667pt;}
}




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