
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_b24af8c905e695dcb1820e69.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_41ad59d7413351af91284430.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_c665fe41808ca9fd05c8b1e4.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_8f707b72320426ea50ef9068.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_84dd7a58c89a302b5f6be0c6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e0f18eb982aa5a4d9bfa62a3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708000;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_097139392742bbc11201d2b2.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.m1f{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);}
.m10{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.mb{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);}
.m15{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);}
.m26{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);}
.m2{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);}
.m1c{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);}
.m28{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);}
.m13{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);}
.m23{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);}
.m3{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);}
.m20{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);}
.m16{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);}
.m22{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);}
.me{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);}
.m1e{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);}
.m1b{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);}
.ma{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);}
.m19{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);}
.m1a{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);}
.m14{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);}
.m11{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);}
.m21{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);}
.m6{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);}
.m8{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);}
.m4{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);}
.m18{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);}
.m7{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);}
.mf{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);}
.m12{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);}
.m17{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);}
.m24{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.230000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:28.392000px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls49{letter-spacing:0.000639px;}
.ls44{letter-spacing:0.000658px;}
.ls35{letter-spacing:0.000800px;}
.ls37{letter-spacing:0.001036px;}
.ls2e{letter-spacing:0.001362px;}
.ls48{letter-spacing:0.001391px;}
.ls4a{letter-spacing:0.001584px;}
.ls38{letter-spacing:0.002045px;}
.ls41{letter-spacing:0.002074px;}
.ls3f{letter-spacing:0.002544px;}
.ls2f{letter-spacing:0.002724px;}
.ls47{letter-spacing:0.002744px;}
.ls3b{letter-spacing:0.002841px;}
.ls40{letter-spacing:0.002856px;}
.ls43{letter-spacing:0.003294px;}
.lsc{letter-spacing:0.003699px;}
.ls3d{letter-spacing:0.004078px;}
.ls42{letter-spacing:0.004800px;}
.ls30{letter-spacing:0.004957px;}
.ls29{letter-spacing:0.593999px;}
.ls1c{letter-spacing:0.599999px;}
.ls11{letter-spacing:0.747089px;}
.ls9{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls1{letter-spacing:10.461300px;}
.ls20{letter-spacing:11.591792px;}
.ls8{letter-spacing:11.954850px;}
.ls1b{letter-spacing:11.955746px;}
.ls1e{letter-spacing:11.957700px;}
.ls4b{letter-spacing:13.418663px;}
.ls39{letter-spacing:13.445510px;}
.ls31{letter-spacing:13.448400px;}
.ls36{letter-spacing:13.454400px;}
.ls33{letter-spacing:13.517100px;}
.ls34{letter-spacing:13.517234px;}
.ls3e{letter-spacing:13.529209px;}
.ls32{letter-spacing:13.544376px;}
.ls46{letter-spacing:13.755293px;}
.ls3a{letter-spacing:13.758563px;}
.ls21{letter-spacing:14.066807px;}
.ls22{letter-spacing:14.507624px;}
.ls45{letter-spacing:14.632753px;}
.ls17{letter-spacing:14.670278px;}
.ls18{letter-spacing:14.676184px;}
.ls25{letter-spacing:14.714752px;}
.ls26{letter-spacing:14.717661px;}
.ls1a{letter-spacing:14.854141px;}
.lse{letter-spacing:14.860289px;}
.lsf{letter-spacing:14.944766px;}
.ls27{letter-spacing:14.956383px;}
.ls28{letter-spacing:14.956511px;}
.ls16{letter-spacing:14.964758px;}
.ls23{letter-spacing:14.980766px;}
.ls13{letter-spacing:15.035579px;}
.ls12{letter-spacing:15.036974px;}
.ls15{letter-spacing:15.091050px;}
.ls7{letter-spacing:15.146913px;}
.ls19{letter-spacing:15.771024px;}
.ls2d{letter-spacing:15.840534px;}
.ls14{letter-spacing:16.235355px;}
.ls6{letter-spacing:17.258678px;}
.ls1f{letter-spacing:17.947119px;}
.ls24{letter-spacing:17.971200px;}
.ls10{letter-spacing:23.873747px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.361200px;}
.ls2a{letter-spacing:261.283200px;}
.ls2c{letter-spacing:285.193200px;}
.ls2b{letter-spacing:297.817200px;}
.ls1d{letter-spacing:450.409200px;}
.lsb{letter-spacing:2833.151700px;}
.ls3c{letter-spacing:2834.351700px;}
.lsd{letter-spacing:2835.545700px;}
.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;}
}
.ws58{word-spacing:-14.943900px;}
.ws98{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws12{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws6c{word-spacing:-3.359790px;}
.ws6b{word-spacing:-3.347434px;}
.ws71{word-spacing:-3.108331px;}
.ws4e{word-spacing:-2.988780px;}
.ws46{word-spacing:-2.450800px;}
.ws2c{word-spacing:-2.391024px;}
.ws88{word-spacing:-2.331248px;}
.ws86{word-spacing:-2.271473px;}
.ws4b{word-spacing:-2.211697px;}
.ws4f{word-spacing:-2.151922px;}
.ws20{word-spacing:-2.092146px;}
.ws90{word-spacing:-2.032370px;}
.ws1{word-spacing:-1.908367px;}
.ws94{word-spacing:-1.829146px;}
.ws8a{word-spacing:-1.554166px;}
.ws51{word-spacing:-1.434614px;}
.ws57{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws87{word-spacing:-1.315063px;}
.ws23{word-spacing:-1.195512px;}
.ws7{word-spacing:-1.171598px;}
.wsc7{word-spacing:-1.129766px;}
.wsc8{word-spacing:-1.075968px;}
.ws82{word-spacing:-1.075961px;}
.ws9{word-spacing:-1.046070px;}
.ws22{word-spacing:-0.956410px;}
.ws24{word-spacing:-0.896634px;}
.wsc6{word-spacing:-0.860774px;}
.ws81{word-spacing:-0.777083px;}
.ws4{word-spacing:-0.753170px;}
.ws40{word-spacing:-0.717307px;}
.ws7e{word-spacing:-0.657532px;}
.ws3c{word-spacing:-0.597756px;}
.ws1d{word-spacing:-0.537984px;}
.ws6e{word-spacing:-0.478205px;}
.ws6d{word-spacing:-0.418429px;}
.ws48{word-spacing:-0.358654px;}
.ws93{word-spacing:-0.322790px;}
.ws3e{word-spacing:-0.298878px;}
.ws9e{word-spacing:-0.268992px;}
.ws43{word-spacing:-0.239102px;}
.ws6f{word-spacing:-0.228521px;}
.ws95{word-spacing:-0.215194px;}
.ws21{word-spacing:-0.179327px;}
.ws17{word-spacing:-0.161395px;}
.ws3a{word-spacing:-0.119551px;}
.wsb1{word-spacing:-0.107597px;}
.ws63{word-spacing:-0.090913px;}
.ws36{word-spacing:-0.059776px;}
.ws14{word-spacing:-0.053798px;}
.wsae{word-spacing:-0.013200px;}
.wsb7{word-spacing:-0.010675px;}
.wsb4{word-spacing:-0.010282px;}
.wsb0{word-spacing:-0.008928px;}
.ws76{word-spacing:-0.007662px;}
.wsb8{word-spacing:-0.007622px;}
.wsa7{word-spacing:-0.007210px;}
.wsc9{word-spacing:-0.005904px;}
.ws64{word-spacing:-0.005832px;}
.ws65{word-spacing:-0.005636px;}
.ws69{word-spacing:-0.005449px;}
.ws68{word-spacing:-0.005438px;}
.wsc3{word-spacing:-0.004733px;}
.ws67{word-spacing:-0.003023px;}
.ws66{word-spacing:-0.002982px;}
.ws11{word-spacing:-0.002232px;}
.ws70{word-spacing:-0.002117px;}
.ws5{word-spacing:-0.001244px;}
.wsa5{word-spacing:-0.001046px;}
.ws77{word-spacing:-0.000784px;}
.ws30{word-spacing:-0.000344px;}
.ws3{word-spacing:0.000000px;}
.ws60{word-spacing:0.018266px;}
.wsa0{word-spacing:0.053798px;}
.ws32{word-spacing:0.059776px;}
.ws5d{word-spacing:0.085038px;}
.ws5e{word-spacing:0.090483px;}
.ws5c{word-spacing:0.094931px;}
.ws16{word-spacing:0.107597px;}
.ws3b{word-spacing:0.119551px;}
.ws9a{word-spacing:0.159420px;}
.ws9b{word-spacing:0.161395px;}
.ws3d{word-spacing:0.179327px;}
.ws1c{word-spacing:0.215194px;}
.ws2b{word-spacing:0.239102px;}
.wsb9{word-spacing:0.266669px;}
.wsaf{word-spacing:0.268992px;}
.ws26{word-spacing:0.298878px;}
.wsab{word-spacing:0.322790px;}
.ws29{word-spacing:0.358654px;}
.ws42{word-spacing:0.478205px;}
.wsa3{word-spacing:0.699379px;}
.ws7b{word-spacing:0.717307px;}
.wsbb{word-spacing:0.753178px;}
.ws6a{word-spacing:0.777083px;}
.ws15{word-spacing:0.806976px;}
.ws62{word-spacing:0.823883px;}
.ws45{word-spacing:0.836858px;}
.ws4a{word-spacing:0.896634px;}
.wsc0{word-spacing:0.914573px;}
.ws7c{word-spacing:0.956410px;}
.ws8{word-spacing:1.004227px;}
.ws1b{word-spacing:1.022170px;}
.ws54{word-spacing:1.075961px;}
.wsc1{word-spacing:1.183565px;}
.ws2d{word-spacing:1.195512px;}
.ws2e{word-spacing:1.255288px;}
.ws5f{word-spacing:1.315063px;}
.ws18{word-spacing:1.344960px;}
.ws61{word-spacing:1.374839px;}
.wsc2{word-spacing:1.398758px;}
.ws28{word-spacing:1.434614px;}
.wsbf{word-spacing:1.452557px;}
.ws50{word-spacing:1.494390px;}
.wsa9{word-spacing:1.506355px;}
.ws8f{word-spacing:1.554166px;}
.ws80{word-spacing:1.673717px;}
.ws1a{word-spacing:1.721549px;}
.ws7f{word-spacing:1.733492px;}
.wsad{word-spacing:1.775347px;}
.ws7d{word-spacing:1.793268px;}
.ws4c{word-spacing:1.912819px;}
.wsa8{word-spacing:1.936742px;}
.ws41{word-spacing:2.211697px;}
.ws5b{word-spacing:2.271473px;}
.ws44{word-spacing:2.331248px;}
.ws39{word-spacing:2.450800px;}
.ws2{word-spacing:2.511541px;}
.ws83{word-spacing:2.570351px;}
.ws49{word-spacing:2.630126px;}
.ws13{word-spacing:2.869236px;}
.ws7a{word-spacing:2.929004px;}
.ws2a{word-spacing:2.988780px;}
.ws85{word-spacing:3.048556px;}
.ws91{word-spacing:3.108331px;}
.ws25{word-spacing:3.168107px;}
.wsbc{word-spacing:3.217507px;}
.wsbd{word-spacing:3.218266px;}
.wsa1{word-spacing:3.218870px;}
.wsc5{word-spacing:3.219091px;}
.ws1e{word-spacing:3.219667px;}
.wsbe{word-spacing:3.221482px;}
.ws9f{word-spacing:3.221491px;}
.ws9c{word-spacing:3.223200px;}
.wsaa{word-spacing:3.224093px;}
.ws9d{word-spacing:3.227904px;}
.wsa4{word-spacing:3.335501px;}
.ws35{word-spacing:3.347434px;}
.wsa2{word-spacing:3.389299px;}
.ws99{word-spacing:3.496896px;}
.ws1f{word-spacing:3.586536px;}
.ws47{word-spacing:3.646312px;}
.wsac{word-spacing:3.658291px;}
.ws19{word-spacing:3.819686px;}
.ws84{word-spacing:3.825638px;}
.wsa6{word-spacing:3.873485px;}
.ws34{word-spacing:3.945190px;}
.ws55{word-spacing:4.064741px;}
.ws8d{word-spacing:4.124516px;}
.ws4d{word-spacing:4.184292px;}
.wsc4{word-spacing:4.303872px;}
.ws37{word-spacing:4.363619px;}
.ws97{word-spacing:4.465267px;}
.ws8e{word-spacing:4.662497px;}
.wsf{word-spacing:4.770079px;}
.ws53{word-spacing:4.782048px;}
.ws79{word-spacing:4.841824px;}
.ws96{word-spacing:4.841856px;}
.ws10{word-spacing:4.853765px;}
.wsb6{word-spacing:4.949453px;}
.ws33{word-spacing:5.080926px;}
.ws56{word-spacing:5.140702px;}
.wsb2{word-spacing:5.164646px;}
.ws2f{word-spacing:5.200477px;}
.ws8c{word-spacing:5.559131px;}
.ws3f{word-spacing:5.618906px;}
.ws27{word-spacing:5.738458px;}
.ws92{word-spacing:5.971622px;}
.ws89{word-spacing:5.977560px;}
.wsb5{word-spacing:6.294413px;}
.ws52{word-spacing:6.754643px;}
.wsba{word-spacing:6.993792px;}
.ws38{word-spacing:7.053521px;}
.ws5a{word-spacing:7.089222px;}
.ws59{word-spacing:7.113296px;}
.ws78{word-spacing:7.531726px;}
.wsd{word-spacing:7.782761px;}
.ws8b{word-spacing:8.129482px;}
.wsb{word-spacing:12.176255px;}
.wsc{word-spacing:16.109478px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.wsb3{word-spacing:48.418560px;}
.ws75{word-spacing:218.638976px;}
.ws74{word-spacing:218.644976px;}
.ws73{word-spacing:352.868207px;}
.ws72{word-spacing:1132.439629px;}
._17{margin-left:-8.069706px;}
._4b{margin-left:-6.993792px;}
._7{margin-left:-5.917824px;}
._49{margin-left:-4.895654px;}
._2{margin-left:-3.849538px;}
._1b{margin-left:-2.630133px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._9{width:3.678678px;}
._3{width:11.615959px;}
._4{width:12.971268px;}
._1a{width:14.174384px;}
._b{width:15.762931px;}
._e{width:17.000294px;}
._f{width:18.410885px;}
._d{width:19.582618px;}
._c{width:21.452371px;}
._19{width:22.875719px;}
._11{width:23.917682px;}
._16{width:25.583957px;}
._18{width:27.078347px;}
._10{width:28.879182px;}
._6{width:30.587087px;}
._14{width:32.278824px;}
._8{width:33.355008px;}
._12{width:34.624709px;}
._15{width:36.171347px;}
._48{width:43.397086px;}
._a{width:54.429634px;}
._4a{width:61.868160px;}
._44{width:151.926046px;}
._3e{width:157.483021px;}
._3f{width:203.285371px;}
._39{width:212.514746px;}
._26{width:221.218096px;}
._37{width:224.469896px;}
._2c{width:232.503757px;}
._41{width:233.603631px;}
._46{width:239.007359px;}
._2f{width:245.032754px;}
._27{width:250.962509px;}
._29{width:256.940084px;}
._2d{width:262.965479px;}
._40{width:264.160994px;}
._28{width:276.259606px;}
._45{width:282.093719px;}
._2e{width:288.166936px;}
._31{width:291.753481px;}
._30{width:294.144511px;}
._33{width:303.708631px;}
._38{width:306.195302px;}
._47{width:315.663781px;}
._2a{width:318.102631px;}
._2b{width:324.032386px;}
._34{width:334.983303px;}
._3a{width:340.243569px;}
._32{width:346.938453px;}
._35{width:356.215649px;}
._20{width:360.184759px;}
._3b{width:364.201690px;}
._3c{width:371.518241px;}
._43{width:382.803903px;}
._22{width:384.095059px;}
._3d{width:396.218981px;}
._36{width:407.884408px;}
._42{width:420.008330px;}
._1f{width:474.954199px;}
._1d{width:498.816679px;}
._24{width:509.432852px;}
._23{width:522.726979px;}
._25{width:558.592429px;}
._21{width:594.792623px;}
._1e{width:631.136279px;}
._1c{width:632.427435px;}
._13{width:1048.179752px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs6{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs5{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs7{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs4{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y48{bottom:31.890000px;}
.yfc{bottom:96.090000px;}
.y47{bottom:103.621500px;}
.y160{bottom:104.503500px;}
.y1a{bottom:104.646000px;}
.y9c{bottom:107.193000px;}
.y7f{bottom:107.641500px;}
.yfb{bottom:114.919500px;}
.yce{bottom:118.960500px;}
.y15f{bottom:121.762500px;}
.y46{bottom:122.449500px;}
.y19{bottom:122.535000px;}
.y129{bottom:123.198000px;}
.y9b{bottom:126.022500px;}
.y7e{bottom:126.471000px;}
.yfa{bottom:133.749000px;}
.y15e{bottom:139.023000px;}
.ycd{bottom:140.121000px;}
.y18{bottom:140.422500px;}
.y128{bottom:140.458500px;}
.y45{bottom:141.279000px;}
.y9a{bottom:144.852000px;}
.y7d{bottom:145.300500px;}
.yf9{bottom:152.578500px;}
.ycc{bottom:154.317000px;}
.y15d{bottom:156.283500px;}
.y127{bottom:157.719000px;}
.y17{bottom:158.310000px;}
.y44{bottom:160.108500px;}
.y99{bottom:163.681500px;}
.y7c{bottom:164.130000px;}
.ycb{bottom:168.514500px;}
.yf8{bottom:171.408000px;}
.y15c{bottom:173.544000px;}
.y126{bottom:174.979500px;}
.y16{bottom:176.199000px;}
.y43{bottom:178.938000px;}
.y98{bottom:182.511000px;}
.yca{bottom:182.710500px;}
.y7b{bottom:182.959500px;}
.y15b{bottom:190.804500px;}
.y125{bottom:192.240000px;}
.y15{bottom:194.086500px;}
.yf7{bottom:194.719500px;}
.yc9{bottom:196.908000px;}
.y42{bottom:197.767500px;}
.y97{bottom:201.340500px;}
.y7a{bottom:201.789000px;}
.y15a{bottom:208.065000px;}
.y124{bottom:209.500500px;}
.yc8{bottom:211.104000px;}
.y14{bottom:211.974000px;}
.y41{bottom:216.597000px;}
.y96{bottom:220.170000px;}
.y79{bottom:220.618500px;}
.y159{bottom:225.325500px;}
.y123{bottom:226.759500px;}
.yf6{bottom:228.343500px;}
.y13{bottom:229.863000px;}
.yc7{bottom:232.503000px;}
.y40{bottom:235.426500px;}
.y95{bottom:238.999500px;}
.y78{bottom:239.446500px;}
.y158{bottom:242.586000px;}
.y122{bottom:244.020000px;}
.yc6{bottom:246.700500px;}
.yf5{bottom:247.173000px;}
.y3f{bottom:254.256000px;}
.y94{bottom:257.829000px;}
.y77{bottom:258.276000px;}
.y157{bottom:259.846500px;}
.y121{bottom:261.280500px;}
.yf4{bottom:266.002500px;}
.yc5{bottom:268.714500px;}
.y3e{bottom:273.085500px;}
.y93{bottom:276.658500px;}
.y76{bottom:277.105500px;}
.y120{bottom:278.541000px;}
.yc4{bottom:282.912000px;}
.yf3{bottom:284.832000px;}
.y3d{bottom:291.915000px;}
.y156{bottom:294.366000px;}
.y92{bottom:295.488000px;}
.y11f{bottom:295.801500px;}
.y75{bottom:295.935000px;}
.yc3{bottom:297.108000px;}
.y12{bottom:300.154500px;}
.yf2{bottom:303.661500px;}
.y3c{bottom:310.744500px;}
.yc2{bottom:311.305500px;}
.y155{bottom:311.626500px;}
.y11e{bottom:313.062000px;}
.y91{bottom:314.317500px;}
.y74{bottom:314.764500px;}
.y11{bottom:318.043500px;}
.yf1{bottom:322.491000px;}
.yc1{bottom:325.501500px;}
.y154{bottom:328.887000px;}
.y3b{bottom:329.574000px;}
.y11d{bottom:330.322500px;}
.y90{bottom:333.145500px;}
.y73{bottom:333.594000px;}
.y10{bottom:335.931000px;}
.yc0{bottom:339.699000px;}
.y153{bottom:346.147500px;}
.y11c{bottom:347.583000px;}
.y3a{bottom:348.403500px;}
.y8f{bottom:351.975000px;}
.y72{bottom:352.423500px;}
.yf{bottom:353.818500px;}
.ybf{bottom:361.098000px;}
.yf0{bottom:362.553000px;}
.y152{bottom:363.408000px;}
.y11b{bottom:364.843500px;}
.y39{bottom:367.233000px;}
.y8e{bottom:370.804500px;}
.y71{bottom:371.253000px;}
.ybe{bottom:375.294000px;}
.y151{bottom:380.668500px;}
.ye{bottom:380.673000px;}
.y11a{bottom:382.102500px;}
.yef{bottom:383.712000px;}
.y38{bottom:386.062500px;}
.y8d{bottom:389.634000px;}
.y70{bottom:390.082500px;}
.ybd{bottom:397.314000px;}
.yee{bottom:397.909500px;}
.y150{bottom:397.929000px;}
.yd{bottom:398.562000px;}
.y119{bottom:399.363000px;}
.y37{bottom:404.892000px;}
.y8c{bottom:408.463500px;}
.y6f{bottom:408.912000px;}
.yed{bottom:412.722000px;}
.y14f{bottom:415.188000px;}
.yc{bottom:416.449500px;}
.y118{bottom:416.623500px;}
.ybc{bottom:418.713000px;}
.y36{bottom:423.721500px;}
.yec{bottom:426.918000px;}
.y8b{bottom:427.293000px;}
.y6e{bottom:427.741500px;}
.y14e{bottom:432.448500px;}
.ybb{bottom:432.909000px;}
.y117{bottom:433.884000px;}
.yeb{bottom:441.115500px;}
.y35{bottom:442.551000px;}
.yb{bottom:444.798000px;}
.y8a{bottom:446.122500px;}
.y6d{bottom:446.571000px;}
.yba{bottom:447.106500px;}
.y14d{bottom:449.709000px;}
.y116{bottom:451.144500px;}
.yea{bottom:455.311500px;}
.yb9{bottom:461.302500px;}
.y34{bottom:461.380500px;}
.y89{bottom:464.952000px;}
.y6c{bottom:465.400500px;}
.y14c{bottom:466.969500px;}
.y115{bottom:468.405000px;}
.ye9{bottom:469.509000px;}
.ya{bottom:471.652500px;}
.yb8{bottom:475.500000px;}
.y33{bottom:480.210000px;}
.y88{bottom:483.781500px;}
.y6b{bottom:484.230000px;}
.ye8{bottom:484.321500px;}
.y114{bottom:485.665500px;}
.y9{bottom:489.540000px;}
.yb7{bottom:489.696000px;}
.ye7{bottom:498.517500px;}
.y14b{bottom:501.490500px;}
.y87{bottom:502.611000px;}
.y113{bottom:502.926000px;}
.y6a{bottom:503.059500px;}
.y32{bottom:503.523000px;}
.y8{bottom:507.429000px;}
.yb6{bottom:511.095000px;}
.ye6{bottom:512.715000px;}
.y14a{bottom:518.751000px;}
.y112{bottom:520.185000px;}
.y86{bottom:521.440500px;}
.y69{bottom:521.889000px;}
.yb5{bottom:525.292500px;}
.y7{bottom:525.316500px;}
.ye5{bottom:534.114000px;}
.y149{bottom:536.011500px;}
.y111{bottom:537.445500px;}
.y85{bottom:540.270000px;}
.y68{bottom:540.718500px;}
.y6{bottom:543.204000px;}
.yb4{bottom:547.306500px;}
.ye4{bottom:548.310000px;}
.y148{bottom:553.272000px;}
.y110{bottom:554.706000px;}
.y84{bottom:559.099500px;}
.y67{bottom:559.548000px;}
.y5{bottom:561.093000px;}
.yb3{bottom:561.504000px;}
.ye3{bottom:569.709000px;}
.y147{bottom:570.531000px;}
.y10f{bottom:571.966500px;}
.yb2{bottom:575.700000px;}
.y83{bottom:577.929000px;}
.y66{bottom:578.377500px;}
.y31{bottom:578.673000px;}
.y4{bottom:578.980500px;}
.ye2{bottom:583.906500px;}
.y146{bottom:587.791500px;}
.yb1{bottom:589.897500px;}
.y10e{bottom:593.710500px;}
.y82{bottom:596.758500px;}
.y1{bottom:596.868055px;}
.y65{bottom:597.207000px;}
.ye1{bottom:598.719000px;}
.yb0{bottom:604.093500px;}
.y145{bottom:605.052000px;}
.ye0{bottom:612.915000px;}
.y81{bottom:615.588000px;}
.y64{bottom:616.036500px;}
.y30{bottom:616.062000px;}
.yaf{bottom:618.291000px;}
.y144{bottom:622.312500px;}
.ydf{bottom:627.112500px;}
.y10d{bottom:627.334500px;}
.y100{bottom:634.417500px;}
.y63{bottom:634.866000px;}
.y2f{bottom:635.518500px;}
.y80{bottom:638.901000px;}
.y143{bottom:639.573000px;}
.yae{bottom:639.690000px;}
.yde{bottom:641.308500px;}
.yff{bottom:653.247000px;}
.y62{bottom:653.695500px;}
.y10c{bottom:653.874000px;}
.yad{bottom:653.886000px;}
.y2e{bottom:654.976500px;}
.ydd{bottom:655.506000px;}
.y142{bottom:656.833500px;}
.ydc{bottom:670.318500px;}
.y10b{bottom:671.449500px;}
.yfe{bottom:672.076500px;}
.y61{bottom:672.525000px;}
.y141{bottom:674.094000px;}
.y2d{bottom:674.433000px;}
.yac{bottom:675.906000px;}
.ydb{bottom:684.514500px;}
.y60{bottom:691.354500px;}
.y2c{bottom:693.891000px;}
.yfd{bottom:695.389500px;}
.y10a{bottom:697.989000px;}
.yda{bottom:698.712000px;}
.y140{bottom:708.613500px;}
.yab{bottom:708.945000px;}
.y5f{bottom:710.184000px;}
.y2b{bottom:713.347500px;}
.y109{bottom:715.563000px;}
.yd9{bottom:720.111000px;}
.y13f{bottom:725.874000px;}
.y5e{bottom:729.013500px;}
.y2a{bottom:732.804000px;}
.yd8{bottom:734.307000px;}
.yd6{bottom:740.098500px;}
.y108{bottom:742.104000px;}
.y13e{bottom:743.134500px;}
.yaa{bottom:746.049000px;}
.y5d{bottom:747.843000px;}
.y29{bottom:752.262000px;}
.yd5{bottom:754.296000px;}
.yd7{bottom:755.706000px;}
.y107{bottom:759.678000px;}
.y13d{bottom:760.395000px;}
.ya9{bottom:764.878500px;}
.y5c{bottom:766.671000px;}
.y28{bottom:771.718500px;}
.y106{bottom:777.252000px;}
.y13c{bottom:777.655500px;}
.ya8{bottom:783.708000px;}
.y5b{bottom:785.500500px;}
.yd4{bottom:788.746500px;}
.y27{bottom:791.175000px;}
.y13b{bottom:794.916000px;}
.ya7{bottom:802.537500px;}
.y105{bottom:803.793000px;}
.y5a{bottom:804.330000px;}
.y26{bottom:810.633000px;}
.y13a{bottom:812.176500px;}
.ya6{bottom:821.367000px;}
.y59{bottom:823.159500px;}
.yd3{bottom:825.850500px;}
.y139{bottom:829.437000px;}
.y25{bottom:830.089500px;}
.ya5{bottom:840.196500px;}
.y58{bottom:841.989000px;}
.yd2{bottom:844.680000px;}
.y138{bottom:846.697500px;}
.y104{bottom:847.908000px;}
.y24{bottom:849.547500px;}
.ya4{bottom:859.026000px;}
.y57{bottom:860.818500px;}
.yd1{bottom:863.509500px;}
.y137{bottom:863.956500px;}
.y103{bottom:865.482000px;}
.y23{bottom:869.004000px;}
.ya3{bottom:877.855500px;}
.y56{bottom:879.648000px;}
.y136{bottom:881.217000px;}
.y102{bottom:883.056000px;}
.yd0{bottom:886.821000px;}
.ya2{bottom:896.685000px;}
.y55{bottom:898.477500px;}
.y101{bottom:900.630000px;}
.ycf{bottom:902.512500px;}
.y22{bottom:905.179500px;}
.ya1{bottom:915.514500px;}
.y135{bottom:915.738000px;}
.y54{bottom:917.307000px;}
.y21{bottom:921.319500px;}
.y134{bottom:932.998500px;}
.ya0{bottom:934.344000px;}
.y53{bottom:936.136500px;}
.y20{bottom:941.797500px;}
.y133{bottom:950.259000px;}
.y9f{bottom:953.173500px;}
.y52{bottom:954.966000px;}
.y1f{bottom:957.937500px;}
.y132{bottom:967.519500px;}
.y51{bottom:973.795500px;}
.y9e{bottom:976.485000px;}
.y131{bottom:984.780000px;}
.y50{bottom:992.625000px;}
.y9d{bottom:996.660000px;}
.y1e{bottom:1000.204500px;}
.y12f{bottom:1002.039000px;}
.y130{bottom:1002.040500px;}
.y4f{bottom:1011.454500px;}
.y12e{bottom:1019.299500px;}
.y4e{bottom:1030.284000px;}
.y12d{bottom:1036.560000px;}
.y1d{bottom:1036.966500px;}
.y4d{bottom:1049.113500px;}
.y12c{bottom:1053.820500px;}
.y1c{bottom:1065.210000px;}
.y4c{bottom:1067.943000px;}
.y12b{bottom:1071.081000px;}
.y4b{bottom:1086.772500px;}
.y12a{bottom:1088.341500px;}
.y1b{bottom:1093.455000px;}
.y4a{bottom:1105.602000px;}
.y49{bottom:1168.366500px;}
.h12{height:16.817382px;}
.h2{height:25.508090px;}
.ha{height:26.110157px;}
.h5{height:30.461558px;}
.h6{height:30.712615px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h14{height:34.574294px;}
.hb{height:34.813397px;}
.h11{height:35.100320px;}
.hc{height:38.896243px;}
.hd{height:39.165235px;}
.he{height:39.488026px;}
.hf{height:43.217759px;}
.h16{height:43.468157px;}
.h10{height:43.516637px;}
.h15{height:43.683350px;}
.h7{height:43.875290px;}
.h9{height:54.541601px;}
.h13{height:54.768749px;}
.h17{height:54.774749px;}
.h19{height:63.205397px;}
.h8{height:77.792486px;}
.h18{height:91.597397px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x54{left:62.541000px;}
.x6c{left:69.298500px;}
.x70{left:73.225500px;}
.x5b{left:77.925000px;}
.x5a{left:80.244000px;}
.x6b{left:83.896500px;}
.x68{left:86.065500px;}
.x6a{left:90.639000px;}
.x69{left:92.626500px;}
.x5d{left:161.151000px;}
.x6d{left:162.627000px;}
.x6e{left:166.722000px;}
.x5e{left:169.417500px;}
.x55{left:241.123500px;}
.x48{left:247.348500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x5f{left:252.354000px;}
.x6f{left:254.248500px;}
.x4{left:269.914500px;}
.x7{left:281.479500px;}
.x14{left:286.612500px;}
.x5c{left:288.391500px;}
.x89{left:290.049000px;}
.x2c{left:292.657500px;}
.x15{left:301.557000px;}
.x49{left:304.902000px;}
.x6{left:308.235000px;}
.x4a{left:317.193000px;}
.x16{left:324.121500px;}
.x36{left:336.529500px;}
.x7e{left:346.689000px;}
.x44{left:348.237000px;}
.x37{left:351.472500px;}
.x7f{left:361.633500px;}
.x45{left:363.181500px;}
.x3a{left:371.209500px;}
.x46{left:382.758000px;}
.x3b{left:386.154000px;}
.x96{left:390.696000px;}
.x3c{left:393.745500px;}
.x47{left:397.702500px;}
.x85{left:399.969000px;}
.x60{left:401.526000px;}
.x4c{left:404.758500px;}
.x61{left:407.467500px;}
.x3d{left:408.690000px;}
.x86{left:414.913500px;}
.x26{left:417.880500px;}
.x56{left:419.706000px;}
.xe{left:420.933000px;}
.x53{left:422.119500px;}
.x34{left:423.631500px;}
.x80{left:424.632000px;}
.xf{left:428.404500px;}
.x99{left:431.814000px;}
.x27{left:432.825000px;}
.x1b{left:435.402000px;}
.x35{left:438.576000px;}
.x98{left:439.785000px;}
.x4d{left:446.482500px;}
.x1c{left:450.346500px;}
.x94{left:454.315500px;}
.x8{left:459.859500px;}
.x33{left:463.254000px;}
.x82{left:464.626500px;}
.x4e{left:465.822000px;}
.x9{left:467.331000px;}
.x95{left:469.258500px;}
.xa{left:471.115500px;}
.xb{left:478.588500px;}
.x8c{left:481.099500px;}
.x83{left:483.381000px;}
.x97{left:489.091500px;}
.x8d{left:496.042500px;}
.x84{left:498.325500px;}
.x8e{left:499.704000px;}
.x62{left:508.342500px;}
.x63{left:513.619500px;}
.x1e{left:515.616000px;}
.x8f{left:518.310000px;}
.x78{left:527.013000px;}
.x1f{left:530.560500px;}
.x90{left:533.253000px;}
.x20{left:534.267000px;}
.x2a{left:540.721500px;}
.x79{left:541.957500px;}
.x7a{left:545.712000px;}
.x21{left:549.210000px;}
.x22{left:552.916500px;}
.x2b{left:555.666000px;}
.x30{left:559.611000px;}
.x7b{left:560.656500px;}
.x88{left:563.230500px;}
.x81{left:564.904500px;}
.x23{left:567.861000px;}
.x24{left:575.272500px;}
.x17{left:579.039000px;}
.x25{left:590.217000px;}
.x18{left:593.982000px;}
.x76{left:596.731500px;}
.x19{left:597.793500px;}
.x2d{left:602.445000px;}
.x40{left:603.453000px;}
.x64{left:610.344000px;}
.x77{left:611.674500px;}
.x1a{left:612.738000px;}
.x2e{left:617.389500px;}
.x41{left:618.397500px;}
.x71{left:621.369000px;}
.x72{left:628.842000px;}
.x28{left:632.965500px;}
.x57{left:637.813500px;}
.xc{left:638.979000px;}
.x73{left:640.123500px;}
.x65{left:644.022000px;}
.xd{left:646.452000px;}
.x29{left:647.910000px;}
.x2f{left:654.040500px;}
.x3e{left:659.721000px;}
.x91{left:662.115000px;}
.x3f{left:667.192500px;}
.x9c{left:668.800500px;}
.x8a{left:674.472000px;}
.xa0{left:677.728500px;}
.x9b{left:682.849500px;}
.x8b{left:689.415000px;}
.x9d{left:695.700000px;}
.xa1{left:704.628000px;}
.x51{left:710.233500px;}
.x58{left:713.419500px;}
.x87{left:728.269500px;}
.x52{left:729.864000px;}
.x59{left:732.774000px;}
.x7c{left:733.917000px;}
.x38{left:736.060500px;}
.x9a{left:737.296500px;}
.x7d{left:748.861500px;}
.x39{left:751.003500px;}
.x66{left:759.516000px;}
.x12{left:764.370000px;}
.x67{left:765.457500px;}
.x92{left:767.425500px;}
.x4f{left:770.560500px;}
.x4b{left:777.141000px;}
.x10{left:779.433000px;}
.x93{left:782.370000px;}
.x11{left:786.904500px;}
.x50{left:789.895500px;}
.x9e{left:797.145000px;}
.x74{left:798.943500px;}
.x75{left:813.886500px;}
.x42{left:816.951000px;}
.x1d{left:818.046000px;}
.x31{left:819.093000px;}
.x9f{left:824.043000px;}
.x43{left:831.894000px;}
.x13{left:832.947000px;}
.x32{left:834.036000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.093333pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:25.237333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls49{letter-spacing:0.000568pt;}
.ls44{letter-spacing:0.000585pt;}
.ls35{letter-spacing:0.000711pt;}
.ls37{letter-spacing:0.000921pt;}
.ls2e{letter-spacing:0.001211pt;}
.ls48{letter-spacing:0.001237pt;}
.ls4a{letter-spacing:0.001408pt;}
.ls38{letter-spacing:0.001818pt;}
.ls41{letter-spacing:0.001843pt;}
.ls3f{letter-spacing:0.002262pt;}
.ls2f{letter-spacing:0.002421pt;}
.ls47{letter-spacing:0.002439pt;}
.ls3b{letter-spacing:0.002525pt;}
.ls40{letter-spacing:0.002538pt;}
.ls43{letter-spacing:0.002928pt;}
.lsc{letter-spacing:0.003288pt;}
.ls3d{letter-spacing:0.003625pt;}
.ls42{letter-spacing:0.004267pt;}
.ls30{letter-spacing:0.004406pt;}
.ls29{letter-spacing:0.527999pt;}
.ls1c{letter-spacing:0.533332pt;}
.ls11{letter-spacing:0.664079pt;}
.ls9{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1{letter-spacing:9.298933pt;}
.ls20{letter-spacing:10.303815pt;}
.ls8{letter-spacing:10.626533pt;}
.ls1b{letter-spacing:10.627330pt;}
.ls1e{letter-spacing:10.629067pt;}
.ls4b{letter-spacing:11.927701pt;}
.ls39{letter-spacing:11.951565pt;}
.ls31{letter-spacing:11.954133pt;}
.ls36{letter-spacing:11.959467pt;}
.ls33{letter-spacing:12.015200pt;}
.ls34{letter-spacing:12.015319pt;}
.ls3e{letter-spacing:12.025964pt;}
.ls32{letter-spacing:12.039445pt;}
.ls46{letter-spacing:12.226927pt;}
.ls3a{letter-spacing:12.229834pt;}
.ls21{letter-spacing:12.503829pt;}
.ls22{letter-spacing:12.895665pt;}
.ls45{letter-spacing:13.006892pt;}
.ls17{letter-spacing:13.040247pt;}
.ls18{letter-spacing:13.045497pt;}
.ls25{letter-spacing:13.079779pt;}
.ls26{letter-spacing:13.082366pt;}
.ls1a{letter-spacing:13.203681pt;}
.lse{letter-spacing:13.209146pt;}
.lsf{letter-spacing:13.284237pt;}
.ls27{letter-spacing:13.294563pt;}
.ls28{letter-spacing:13.294677pt;}
.ls16{letter-spacing:13.302007pt;}
.ls23{letter-spacing:13.316237pt;}
.ls13{letter-spacing:13.364959pt;}
.ls12{letter-spacing:13.366199pt;}
.ls15{letter-spacing:13.414267pt;}
.ls7{letter-spacing:13.463923pt;}
.ls19{letter-spacing:14.018688pt;}
.ls2d{letter-spacing:14.080475pt;}
.ls14{letter-spacing:14.431426pt;}
.ls6{letter-spacing:15.341047pt;}
.ls1f{letter-spacing:15.952995pt;}
.ls24{letter-spacing:15.974400pt;}
.ls10{letter-spacing:21.221108pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.321067pt;}
.ls2a{letter-spacing:232.251733pt;}
.ls2c{letter-spacing:253.505067pt;}
.ls2b{letter-spacing:264.726400pt;}
.ls1d{letter-spacing:400.363733pt;}
.lsb{letter-spacing:2518.357067pt;}
.ls3c{letter-spacing:2519.423733pt;}
.lsd{letter-spacing:2520.485067pt;}
.ws58{word-spacing:-13.283467pt;}
.ws98{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws12{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws6c{word-spacing:-2.986480pt;}
.ws6b{word-spacing:-2.975497pt;}
.ws71{word-spacing:-2.762961pt;}
.ws4e{word-spacing:-2.656693pt;}
.ws46{word-spacing:-2.178489pt;}
.ws2c{word-spacing:-2.125355pt;}
.ws88{word-spacing:-2.072221pt;}
.ws86{word-spacing:-2.019087pt;}
.ws4b{word-spacing:-1.965953pt;}
.ws4f{word-spacing:-1.912819pt;}
.ws20{word-spacing:-1.859685pt;}
.ws90{word-spacing:-1.806551pt;}
.ws1{word-spacing:-1.696326pt;}
.ws94{word-spacing:-1.625907pt;}
.ws8a{word-spacing:-1.381481pt;}
.ws51{word-spacing:-1.275213pt;}
.ws57{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws87{word-spacing:-1.168945pt;}
.ws23{word-spacing:-1.062677pt;}
.ws7{word-spacing:-1.041421pt;}
.wsc7{word-spacing:-1.004237pt;}
.wsc8{word-spacing:-0.956416pt;}
.ws82{word-spacing:-0.956410pt;}
.ws9{word-spacing:-0.929840pt;}
.ws22{word-spacing:-0.850142pt;}
.ws24{word-spacing:-0.797008pt;}
.wsc6{word-spacing:-0.765133pt;}
.ws81{word-spacing:-0.690740pt;}
.ws4{word-spacing:-0.669485pt;}
.ws40{word-spacing:-0.637606pt;}
.ws7e{word-spacing:-0.584473pt;}
.ws3c{word-spacing:-0.531339pt;}
.ws1d{word-spacing:-0.478208pt;}
.ws6e{word-spacing:-0.425071pt;}
.ws6d{word-spacing:-0.371937pt;}
.ws48{word-spacing:-0.318803pt;}
.ws93{word-spacing:-0.286925pt;}
.ws3e{word-spacing:-0.265669pt;}
.ws9e{word-spacing:-0.239104pt;}
.ws43{word-spacing:-0.212535pt;}
.ws6f{word-spacing:-0.203130pt;}
.ws95{word-spacing:-0.191283pt;}
.ws21{word-spacing:-0.159402pt;}
.ws17{word-spacing:-0.143462pt;}
.ws3a{word-spacing:-0.106268pt;}
.wsb1{word-spacing:-0.095642pt;}
.ws63{word-spacing:-0.080812pt;}
.ws36{word-spacing:-0.053134pt;}
.ws14{word-spacing:-0.047821pt;}
.wsae{word-spacing:-0.011733pt;}
.wsb7{word-spacing:-0.009489pt;}
.wsb4{word-spacing:-0.009139pt;}
.wsb0{word-spacing:-0.007936pt;}
.ws76{word-spacing:-0.006811pt;}
.wsb8{word-spacing:-0.006775pt;}
.wsa7{word-spacing:-0.006409pt;}
.wsc9{word-spacing:-0.005248pt;}
.ws64{word-spacing:-0.005184pt;}
.ws65{word-spacing:-0.005010pt;}
.ws69{word-spacing:-0.004843pt;}
.ws68{word-spacing:-0.004834pt;}
.wsc3{word-spacing:-0.004207pt;}
.ws67{word-spacing:-0.002687pt;}
.ws66{word-spacing:-0.002651pt;}
.ws11{word-spacing:-0.001984pt;}
.ws70{word-spacing:-0.001882pt;}
.ws5{word-spacing:-0.001106pt;}
.wsa5{word-spacing:-0.000930pt;}
.ws77{word-spacing:-0.000697pt;}
.ws30{word-spacing:-0.000306pt;}
.ws3{word-spacing:0.000000pt;}
.ws60{word-spacing:0.016237pt;}
.wsa0{word-spacing:0.047821pt;}
.ws32{word-spacing:0.053134pt;}
.ws5d{word-spacing:0.075589pt;}
.ws5e{word-spacing:0.080429pt;}
.ws5c{word-spacing:0.084383pt;}
.ws16{word-spacing:0.095642pt;}
.ws3b{word-spacing:0.106268pt;}
.ws9a{word-spacing:0.141707pt;}
.ws9b{word-spacing:0.143462pt;}
.ws3d{word-spacing:0.159402pt;}
.ws1c{word-spacing:0.191283pt;}
.ws2b{word-spacing:0.212535pt;}
.wsb9{word-spacing:0.237039pt;}
.wsaf{word-spacing:0.239104pt;}
.ws26{word-spacing:0.265669pt;}
.wsab{word-spacing:0.286925pt;}
.ws29{word-spacing:0.318803pt;}
.ws42{word-spacing:0.425071pt;}
.wsa3{word-spacing:0.621670pt;}
.ws7b{word-spacing:0.637606pt;}
.wsbb{word-spacing:0.669491pt;}
.ws6a{word-spacing:0.690740pt;}
.ws15{word-spacing:0.717312pt;}
.ws62{word-spacing:0.732341pt;}
.ws45{word-spacing:0.743874pt;}
.ws4a{word-spacing:0.797008pt;}
.wsc0{word-spacing:0.812954pt;}
.ws7c{word-spacing:0.850142pt;}
.ws8{word-spacing:0.892646pt;}
.ws1b{word-spacing:0.908595pt;}
.ws54{word-spacing:0.956410pt;}
.wsc1{word-spacing:1.052058pt;}
.ws2d{word-spacing:1.062677pt;}
.ws2e{word-spacing:1.115811pt;}
.ws5f{word-spacing:1.168945pt;}
.ws18{word-spacing:1.195520pt;}
.ws61{word-spacing:1.222079pt;}
.wsc2{word-spacing:1.243341pt;}
.ws28{word-spacing:1.275213pt;}
.wsbf{word-spacing:1.291162pt;}
.ws50{word-spacing:1.328347pt;}
.wsa9{word-spacing:1.338982pt;}
.ws8f{word-spacing:1.381481pt;}
.ws80{word-spacing:1.487748pt;}
.ws1a{word-spacing:1.530266pt;}
.ws7f{word-spacing:1.540882pt;}
.wsad{word-spacing:1.578086pt;}
.ws7d{word-spacing:1.594016pt;}
.ws4c{word-spacing:1.700284pt;}
.wsa8{word-spacing:1.721549pt;}
.ws41{word-spacing:1.965953pt;}
.ws5b{word-spacing:2.019087pt;}
.ws44{word-spacing:2.072221pt;}
.ws39{word-spacing:2.178489pt;}
.ws2{word-spacing:2.232481pt;}
.ws83{word-spacing:2.284756pt;}
.ws49{word-spacing:2.337890pt;}
.ws13{word-spacing:2.550432pt;}
.ws7a{word-spacing:2.603559pt;}
.ws2a{word-spacing:2.656693pt;}
.ws85{word-spacing:2.709827pt;}
.ws91{word-spacing:2.762961pt;}
.ws25{word-spacing:2.816095pt;}
.wsbc{word-spacing:2.860006pt;}
.wsbd{word-spacing:2.860681pt;}
.wsa1{word-spacing:2.861218pt;}
.wsc5{word-spacing:2.861414pt;}
.ws1e{word-spacing:2.861926pt;}
.wsbe{word-spacing:2.863539pt;}
.ws9f{word-spacing:2.863548pt;}
.ws9c{word-spacing:2.865067pt;}
.wsaa{word-spacing:2.865860pt;}
.ws9d{word-spacing:2.869248pt;}
.wsa4{word-spacing:2.964890pt;}
.ws35{word-spacing:2.975497pt;}
.wsa2{word-spacing:3.012710pt;}
.ws99{word-spacing:3.108352pt;}
.ws1f{word-spacing:3.188032pt;}
.ws47{word-spacing:3.241166pt;}
.wsac{word-spacing:3.251814pt;}
.ws19{word-spacing:3.395277pt;}
.ws84{word-spacing:3.400567pt;}
.wsa6{word-spacing:3.443098pt;}
.ws34{word-spacing:3.506835pt;}
.ws55{word-spacing:3.613103pt;}
.ws8d{word-spacing:3.666237pt;}
.ws4d{word-spacing:3.719371pt;}
.wsc4{word-spacing:3.825664pt;}
.ws37{word-spacing:3.878772pt;}
.ws97{word-spacing:3.969126pt;}
.ws8e{word-spacing:4.144442pt;}
.wsf{word-spacing:4.240070pt;}
.ws53{word-spacing:4.250709pt;}
.ws79{word-spacing:4.303843pt;}
.ws96{word-spacing:4.303872pt;}
.ws10{word-spacing:4.314458pt;}
.wsb6{word-spacing:4.399514pt;}
.ws33{word-spacing:4.516379pt;}
.ws56{word-spacing:4.569513pt;}
.wsb2{word-spacing:4.590797pt;}
.ws2f{word-spacing:4.622646pt;}
.ws8c{word-spacing:4.941450pt;}
.ws3f{word-spacing:4.994583pt;}
.ws27{word-spacing:5.100851pt;}
.ws92{word-spacing:5.308109pt;}
.ws89{word-spacing:5.313387pt;}
.wsb5{word-spacing:5.595034pt;}
.ws52{word-spacing:6.004127pt;}
.wsba{word-spacing:6.216704pt;}
.ws38{word-spacing:6.269796pt;}
.ws5a{word-spacing:6.301531pt;}
.ws59{word-spacing:6.322930pt;}
.ws78{word-spacing:6.694867pt;}
.wsd{word-spacing:6.918010pt;}
.ws8b{word-spacing:7.226206pt;}
.wsb{word-spacing:10.823338pt;}
.wsc{word-spacing:14.319536pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.wsb3{word-spacing:43.038720pt;}
.ws75{word-spacing:194.345757pt;}
.ws74{word-spacing:194.351090pt;}
.ws73{word-spacing:313.660629pt;}
.ws72{word-spacing:1006.613003pt;}
._17{margin-left:-7.173072pt;}
._4b{margin-left:-6.216704pt;}
._7{margin-left:-5.260288pt;}
._49{margin-left:-4.351693pt;}
._2{margin-left:-3.421811pt;}
._1b{margin-left:-2.337896pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._9{width:3.269936pt;}
._3{width:10.325297pt;}
._4{width:11.530016pt;}
._1a{width:12.599453pt;}
._b{width:14.011494pt;}
._e{width:15.111373pt;}
._f{width:16.365231pt;}
._d{width:17.406771pt;}
._c{width:19.068774pt;}
._19{width:20.333972pt;}
._11{width:21.260162pt;}
._16{width:22.741295pt;}
._18{width:24.069642pt;}
._10{width:25.670384pt;}
._6{width:27.188522pt;}
._14{width:28.692288pt;}
._8{width:29.648896pt;}
._12{width:30.777519pt;}
._15{width:32.152308pt;}
._48{width:38.575187pt;}
._a{width:48.381897pt;}
._4a{width:54.993920pt;}
._44{width:135.045374pt;}
._3e{width:139.984908pt;}
._3f{width:180.698107pt;}
._39{width:188.901997pt;}
._26{width:196.638307pt;}
._37{width:199.528797pt;}
._2c{width:206.670006pt;}
._41{width:207.647672pt;}
._46{width:212.450986pt;}
._2f{width:217.806893pt;}
._27{width:223.077786pt;}
._29{width:228.391186pt;}
._2d{width:233.747093pt;}
._40{width:234.809773pt;}
._28{width:245.564094pt;}
._45{width:250.749973pt;}
._2e{width:256.148387pt;}
._31{width:259.336427pt;}
._30{width:261.461787pt;}
._33{width:269.963227pt;}
._38{width:272.173602pt;}
._47{width:280.590027pt;}
._2a{width:282.757894pt;}
._2b{width:288.028787pt;}
._34{width:297.762936pt;}
._3a{width:302.438728pt;}
._32{width:308.389736pt;}
._35{width:316.636133pt;}
._20{width:320.164230pt;}
._3b{width:323.734835pt;}
._3c{width:330.238437pt;}
._43{width:340.270136pt;}
._22{width:341.417830pt;}
._3d{width:352.194650pt;}
._36{width:362.563918pt;}
._42{width:373.340738pt;}
._1f{width:422.181510pt;}
._1d{width:443.392603pt;}
._24{width:452.829202pt;}
._23{width:464.646203pt;}
._25{width:496.526603pt;}
._21{width:528.704554pt;}
._1e{width:561.010026pt;}
._1c{width:562.157720pt;}
._13{width:931.715335pt;}
.fs6{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs5{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs7{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs4{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y48{bottom:28.346667pt;}
.yfc{bottom:85.413333pt;}
.y47{bottom:92.108000pt;}
.y160{bottom:92.892000pt;}
.y1a{bottom:93.018667pt;}
.y9c{bottom:95.282667pt;}
.y7f{bottom:95.681333pt;}
.yfb{bottom:102.150667pt;}
.yce{bottom:105.742667pt;}
.y15f{bottom:108.233333pt;}
.y46{bottom:108.844000pt;}
.y19{bottom:108.920000pt;}
.y129{bottom:109.509333pt;}
.y9b{bottom:112.020000pt;}
.y7e{bottom:112.418667pt;}
.yfa{bottom:118.888000pt;}
.y15e{bottom:123.576000pt;}
.ycd{bottom:124.552000pt;}
.y18{bottom:124.820000pt;}
.y128{bottom:124.852000pt;}
.y45{bottom:125.581333pt;}
.y9a{bottom:128.757333pt;}
.y7d{bottom:129.156000pt;}
.yf9{bottom:135.625333pt;}
.ycc{bottom:137.170667pt;}
.y15d{bottom:138.918667pt;}
.y127{bottom:140.194667pt;}
.y17{bottom:140.720000pt;}
.y44{bottom:142.318667pt;}
.y99{bottom:145.494667pt;}
.y7c{bottom:145.893333pt;}
.ycb{bottom:149.790667pt;}
.yf8{bottom:152.362667pt;}
.y15c{bottom:154.261333pt;}
.y126{bottom:155.537333pt;}
.y16{bottom:156.621333pt;}
.y43{bottom:159.056000pt;}
.y98{bottom:162.232000pt;}
.yca{bottom:162.409333pt;}
.y7b{bottom:162.630667pt;}
.y15b{bottom:169.604000pt;}
.y125{bottom:170.880000pt;}
.y15{bottom:172.521333pt;}
.yf7{bottom:173.084000pt;}
.yc9{bottom:175.029333pt;}
.y42{bottom:175.793333pt;}
.y97{bottom:178.969333pt;}
.y7a{bottom:179.368000pt;}
.y15a{bottom:184.946667pt;}
.y124{bottom:186.222667pt;}
.yc8{bottom:187.648000pt;}
.y14{bottom:188.421333pt;}
.y41{bottom:192.530667pt;}
.y96{bottom:195.706667pt;}
.y79{bottom:196.105333pt;}
.y159{bottom:200.289333pt;}
.y123{bottom:201.564000pt;}
.yf6{bottom:202.972000pt;}
.y13{bottom:204.322667pt;}
.yc7{bottom:206.669333pt;}
.y40{bottom:209.268000pt;}
.y95{bottom:212.444000pt;}
.y78{bottom:212.841333pt;}
.y158{bottom:215.632000pt;}
.y122{bottom:216.906667pt;}
.yc6{bottom:219.289333pt;}
.yf5{bottom:219.709333pt;}
.y3f{bottom:226.005333pt;}
.y94{bottom:229.181333pt;}
.y77{bottom:229.578667pt;}
.y157{bottom:230.974667pt;}
.y121{bottom:232.249333pt;}
.yf4{bottom:236.446667pt;}
.yc5{bottom:238.857333pt;}
.y3e{bottom:242.742667pt;}
.y93{bottom:245.918667pt;}
.y76{bottom:246.316000pt;}
.y120{bottom:247.592000pt;}
.yc4{bottom:251.477333pt;}
.yf3{bottom:253.184000pt;}
.y3d{bottom:259.480000pt;}
.y156{bottom:261.658667pt;}
.y92{bottom:262.656000pt;}
.y11f{bottom:262.934667pt;}
.y75{bottom:263.053333pt;}
.yc3{bottom:264.096000pt;}
.y12{bottom:266.804000pt;}
.yf2{bottom:269.921333pt;}
.y3c{bottom:276.217333pt;}
.yc2{bottom:276.716000pt;}
.y155{bottom:277.001333pt;}
.y11e{bottom:278.277333pt;}
.y91{bottom:279.393333pt;}
.y74{bottom:279.790667pt;}
.y11{bottom:282.705333pt;}
.yf1{bottom:286.658667pt;}
.yc1{bottom:289.334667pt;}
.y154{bottom:292.344000pt;}
.y3b{bottom:292.954667pt;}
.y11d{bottom:293.620000pt;}
.y90{bottom:296.129333pt;}
.y73{bottom:296.528000pt;}
.y10{bottom:298.605333pt;}
.yc0{bottom:301.954667pt;}
.y153{bottom:307.686667pt;}
.y11c{bottom:308.962667pt;}
.y3a{bottom:309.692000pt;}
.y8f{bottom:312.866667pt;}
.y72{bottom:313.265333pt;}
.yf{bottom:314.505333pt;}
.ybf{bottom:320.976000pt;}
.yf0{bottom:322.269333pt;}
.y152{bottom:323.029333pt;}
.y11b{bottom:324.305333pt;}
.y39{bottom:326.429333pt;}
.y8e{bottom:329.604000pt;}
.y71{bottom:330.002667pt;}
.ybe{bottom:333.594667pt;}
.y151{bottom:338.372000pt;}
.ye{bottom:338.376000pt;}
.y11a{bottom:339.646667pt;}
.yef{bottom:341.077333pt;}
.y38{bottom:343.166667pt;}
.y8d{bottom:346.341333pt;}
.y70{bottom:346.740000pt;}
.ybd{bottom:353.168000pt;}
.yee{bottom:353.697333pt;}
.y150{bottom:353.714667pt;}
.yd{bottom:354.277333pt;}
.y119{bottom:354.989333pt;}
.y37{bottom:359.904000pt;}
.y8c{bottom:363.078667pt;}
.y6f{bottom:363.477333pt;}
.yed{bottom:366.864000pt;}
.y14f{bottom:369.056000pt;}
.yc{bottom:370.177333pt;}
.y118{bottom:370.332000pt;}
.ybc{bottom:372.189333pt;}
.y36{bottom:376.641333pt;}
.yec{bottom:379.482667pt;}
.y8b{bottom:379.816000pt;}
.y6e{bottom:380.214667pt;}
.y14e{bottom:384.398667pt;}
.ybb{bottom:384.808000pt;}
.y117{bottom:385.674667pt;}
.yeb{bottom:392.102667pt;}
.y35{bottom:393.378667pt;}
.yb{bottom:395.376000pt;}
.y8a{bottom:396.553333pt;}
.y6d{bottom:396.952000pt;}
.yba{bottom:397.428000pt;}
.y14d{bottom:399.741333pt;}
.y116{bottom:401.017333pt;}
.yea{bottom:404.721333pt;}
.yb9{bottom:410.046667pt;}
.y34{bottom:410.116000pt;}
.y89{bottom:413.290667pt;}
.y6c{bottom:413.689333pt;}
.y14c{bottom:415.084000pt;}
.y115{bottom:416.360000pt;}
.ye9{bottom:417.341333pt;}
.ya{bottom:419.246667pt;}
.yb8{bottom:422.666667pt;}
.y33{bottom:426.853333pt;}
.y88{bottom:430.028000pt;}
.y6b{bottom:430.426667pt;}
.ye8{bottom:430.508000pt;}
.y114{bottom:431.702667pt;}
.y9{bottom:435.146667pt;}
.yb7{bottom:435.285333pt;}
.ye7{bottom:443.126667pt;}
.y14b{bottom:445.769333pt;}
.y87{bottom:446.765333pt;}
.y113{bottom:447.045333pt;}
.y6a{bottom:447.164000pt;}
.y32{bottom:447.576000pt;}
.y8{bottom:451.048000pt;}
.yb6{bottom:454.306667pt;}
.ye6{bottom:455.746667pt;}
.y14a{bottom:461.112000pt;}
.y112{bottom:462.386667pt;}
.y86{bottom:463.502667pt;}
.y69{bottom:463.901333pt;}
.yb5{bottom:466.926667pt;}
.y7{bottom:466.948000pt;}
.ye5{bottom:474.768000pt;}
.y149{bottom:476.454667pt;}
.y111{bottom:477.729333pt;}
.y85{bottom:480.240000pt;}
.y68{bottom:480.638667pt;}
.y6{bottom:482.848000pt;}
.yb4{bottom:486.494667pt;}
.ye4{bottom:487.386667pt;}
.y148{bottom:491.797333pt;}
.y110{bottom:493.072000pt;}
.y84{bottom:496.977333pt;}
.y67{bottom:497.376000pt;}
.y5{bottom:498.749333pt;}
.yb3{bottom:499.114667pt;}
.ye3{bottom:506.408000pt;}
.y147{bottom:507.138667pt;}
.y10f{bottom:508.414667pt;}
.yb2{bottom:511.733333pt;}
.y83{bottom:513.714667pt;}
.y66{bottom:514.113333pt;}
.y31{bottom:514.376000pt;}
.y4{bottom:514.649333pt;}
.ye2{bottom:519.028000pt;}
.y146{bottom:522.481333pt;}
.yb1{bottom:524.353333pt;}
.y10e{bottom:527.742667pt;}
.y82{bottom:530.452000pt;}
.y1{bottom:530.549382pt;}
.y65{bottom:530.850667pt;}
.ye1{bottom:532.194667pt;}
.yb0{bottom:536.972000pt;}
.y145{bottom:537.824000pt;}
.ye0{bottom:544.813333pt;}
.y81{bottom:547.189333pt;}
.y64{bottom:547.588000pt;}
.y30{bottom:547.610667pt;}
.yaf{bottom:549.592000pt;}
.y144{bottom:553.166667pt;}
.ydf{bottom:557.433333pt;}
.y10d{bottom:557.630667pt;}
.y100{bottom:563.926667pt;}
.y63{bottom:564.325333pt;}
.y2f{bottom:564.905333pt;}
.y80{bottom:567.912000pt;}
.y143{bottom:568.509333pt;}
.yae{bottom:568.613333pt;}
.yde{bottom:570.052000pt;}
.yff{bottom:580.664000pt;}
.y62{bottom:581.062667pt;}
.y10c{bottom:581.221333pt;}
.yad{bottom:581.232000pt;}
.y2e{bottom:582.201333pt;}
.ydd{bottom:582.672000pt;}
.y142{bottom:583.852000pt;}
.ydc{bottom:595.838667pt;}
.y10b{bottom:596.844000pt;}
.yfe{bottom:597.401333pt;}
.y61{bottom:597.800000pt;}
.y141{bottom:599.194667pt;}
.y2d{bottom:599.496000pt;}
.yac{bottom:600.805333pt;}
.ydb{bottom:608.457333pt;}
.y60{bottom:614.537333pt;}
.y2c{bottom:616.792000pt;}
.yfd{bottom:618.124000pt;}
.y10a{bottom:620.434667pt;}
.yda{bottom:621.077333pt;}
.y140{bottom:629.878667pt;}
.yab{bottom:630.173333pt;}
.y5f{bottom:631.274667pt;}
.y2b{bottom:634.086667pt;}
.y109{bottom:636.056000pt;}
.yd9{bottom:640.098667pt;}
.y13f{bottom:645.221333pt;}
.y5e{bottom:648.012000pt;}
.y2a{bottom:651.381333pt;}
.yd8{bottom:652.717333pt;}
.yd6{bottom:657.865333pt;}
.y108{bottom:659.648000pt;}
.y13e{bottom:660.564000pt;}
.yaa{bottom:663.154667pt;}
.y5d{bottom:664.749333pt;}
.y29{bottom:668.677333pt;}
.yd5{bottom:670.485333pt;}
.yd7{bottom:671.738667pt;}
.y107{bottom:675.269333pt;}
.y13d{bottom:675.906667pt;}
.ya9{bottom:679.892000pt;}
.y5c{bottom:681.485333pt;}
.y28{bottom:685.972000pt;}
.y106{bottom:690.890667pt;}
.y13c{bottom:691.249333pt;}
.ya8{bottom:696.629333pt;}
.y5b{bottom:698.222667pt;}
.yd4{bottom:701.108000pt;}
.y27{bottom:703.266667pt;}
.y13b{bottom:706.592000pt;}
.ya7{bottom:713.366667pt;}
.y105{bottom:714.482667pt;}
.y5a{bottom:714.960000pt;}
.y26{bottom:720.562667pt;}
.y13a{bottom:721.934667pt;}
.ya6{bottom:730.104000pt;}
.y59{bottom:731.697333pt;}
.yd3{bottom:734.089333pt;}
.y139{bottom:737.277333pt;}
.y25{bottom:737.857333pt;}
.ya5{bottom:746.841333pt;}
.y58{bottom:748.434667pt;}
.yd2{bottom:750.826667pt;}
.y138{bottom:752.620000pt;}
.y104{bottom:753.696000pt;}
.y24{bottom:755.153333pt;}
.ya4{bottom:763.578667pt;}
.y57{bottom:765.172000pt;}
.yd1{bottom:767.564000pt;}
.y137{bottom:767.961333pt;}
.y103{bottom:769.317333pt;}
.y23{bottom:772.448000pt;}
.ya3{bottom:780.316000pt;}
.y56{bottom:781.909333pt;}
.y136{bottom:783.304000pt;}
.y102{bottom:784.938667pt;}
.yd0{bottom:788.285333pt;}
.ya2{bottom:797.053333pt;}
.y55{bottom:798.646667pt;}
.y101{bottom:800.560000pt;}
.ycf{bottom:802.233333pt;}
.y22{bottom:804.604000pt;}
.ya1{bottom:813.790667pt;}
.y135{bottom:813.989333pt;}
.y54{bottom:815.384000pt;}
.y21{bottom:818.950667pt;}
.y134{bottom:829.332000pt;}
.ya0{bottom:830.528000pt;}
.y53{bottom:832.121333pt;}
.y20{bottom:837.153333pt;}
.y133{bottom:844.674667pt;}
.y9f{bottom:847.265333pt;}
.y52{bottom:848.858667pt;}
.y1f{bottom:851.500000pt;}
.y132{bottom:860.017333pt;}
.y51{bottom:865.596000pt;}
.y9e{bottom:867.986667pt;}
.y131{bottom:875.360000pt;}
.y50{bottom:882.333333pt;}
.y9d{bottom:885.920000pt;}
.y1e{bottom:889.070667pt;}
.y12f{bottom:890.701333pt;}
.y130{bottom:890.702667pt;}
.y4f{bottom:899.070667pt;}
.y12e{bottom:906.044000pt;}
.y4e{bottom:915.808000pt;}
.y12d{bottom:921.386667pt;}
.y1d{bottom:921.748000pt;}
.y4d{bottom:932.545333pt;}
.y12c{bottom:936.729333pt;}
.y1c{bottom:946.853333pt;}
.y4c{bottom:949.282667pt;}
.y12b{bottom:952.072000pt;}
.y4b{bottom:966.020000pt;}
.y12a{bottom:967.414667pt;}
.y1b{bottom:971.960000pt;}
.y4a{bottom:982.757333pt;}
.y49{bottom:1038.548000pt;}
.h12{height:14.948784pt;}
.h2{height:22.673858pt;}
.ha{height:23.209028pt;}
.h5{height:27.076941pt;}
.h6{height:27.300102pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h14{height:30.732706pt;}
.hb{height:30.945242pt;}
.h11{height:31.200285pt;}
.hc{height:34.574438pt;}
.hd{height:34.813542pt;}
.he{height:35.100467pt;}
.hf{height:38.415786pt;}
.h16{height:38.638362pt;}
.h10{height:38.681455pt;}
.h15{height:38.829645pt;}
.h7{height:39.000258pt;}
.h9{height:48.481423pt;}
.h13{height:48.683332pt;}
.h17{height:48.688666pt;}
.h19{height:56.182575pt;}
.h8{height:69.148877pt;}
.h18{height:81.419908pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x54{left:55.592000pt;}
.x6c{left:61.598667pt;}
.x70{left:65.089333pt;}
.x5b{left:69.266667pt;}
.x5a{left:71.328000pt;}
.x6b{left:74.574667pt;}
.x68{left:76.502667pt;}
.x6a{left:80.568000pt;}
.x69{left:82.334667pt;}
.x5d{left:143.245333pt;}
.x6d{left:144.557333pt;}
.x6e{left:148.197333pt;}
.x5e{left:150.593333pt;}
.x55{left:214.332000pt;}
.x48{left:219.865333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x5f{left:224.314667pt;}
.x6f{left:225.998667pt;}
.x4{left:239.924000pt;}
.x7{left:250.204000pt;}
.x14{left:254.766667pt;}
.x5c{left:256.348000pt;}
.x89{left:257.821333pt;}
.x2c{left:260.140000pt;}
.x15{left:268.050667pt;}
.x49{left:271.024000pt;}
.x6{left:273.986667pt;}
.x4a{left:281.949333pt;}
.x16{left:288.108000pt;}
.x36{left:299.137333pt;}
.x7e{left:308.168000pt;}
.x44{left:309.544000pt;}
.x37{left:312.420000pt;}
.x7f{left:321.452000pt;}
.x45{left:322.828000pt;}
.x3a{left:329.964000pt;}
.x46{left:340.229333pt;}
.x3b{left:343.248000pt;}
.x96{left:347.285333pt;}
.x3c{left:349.996000pt;}
.x47{left:353.513333pt;}
.x85{left:355.528000pt;}
.x60{left:356.912000pt;}
.x4c{left:359.785333pt;}
.x61{left:362.193333pt;}
.x3d{left:363.280000pt;}
.x86{left:368.812000pt;}
.x26{left:371.449333pt;}
.x56{left:373.072000pt;}
.xe{left:374.162667pt;}
.x53{left:375.217333pt;}
.x34{left:376.561333pt;}
.x80{left:377.450667pt;}
.xf{left:380.804000pt;}
.x99{left:383.834667pt;}
.x27{left:384.733333pt;}
.x1b{left:387.024000pt;}
.x35{left:389.845333pt;}
.x98{left:390.920000pt;}
.x4d{left:396.873333pt;}
.x1c{left:400.308000pt;}
.x94{left:403.836000pt;}
.x8{left:408.764000pt;}
.x33{left:411.781333pt;}
.x82{left:413.001333pt;}
.x4e{left:414.064000pt;}
.x9{left:415.405333pt;}
.x95{left:417.118667pt;}
.xa{left:418.769333pt;}
.xb{left:425.412000pt;}
.x8c{left:427.644000pt;}
.x83{left:429.672000pt;}
.x97{left:434.748000pt;}
.x8d{left:440.926667pt;}
.x84{left:442.956000pt;}
.x8e{left:444.181333pt;}
.x62{left:451.860000pt;}
.x63{left:456.550667pt;}
.x1e{left:458.325333pt;}
.x8f{left:460.720000pt;}
.x78{left:468.456000pt;}
.x1f{left:471.609333pt;}
.x90{left:474.002667pt;}
.x20{left:474.904000pt;}
.x2a{left:480.641333pt;}
.x79{left:481.740000pt;}
.x7a{left:485.077333pt;}
.x21{left:488.186667pt;}
.x22{left:491.481333pt;}
.x2b{left:493.925333pt;}
.x30{left:497.432000pt;}
.x7b{left:498.361333pt;}
.x88{left:500.649333pt;}
.x81{left:502.137333pt;}
.x23{left:504.765333pt;}
.x24{left:511.353333pt;}
.x17{left:514.701333pt;}
.x25{left:524.637333pt;}
.x18{left:527.984000pt;}
.x76{left:530.428000pt;}
.x19{left:531.372000pt;}
.x2d{left:535.506667pt;}
.x40{left:536.402667pt;}
.x64{left:542.528000pt;}
.x77{left:543.710667pt;}
.x1a{left:544.656000pt;}
.x2e{left:548.790667pt;}
.x41{left:549.686667pt;}
.x71{left:552.328000pt;}
.x72{left:558.970667pt;}
.x28{left:562.636000pt;}
.x57{left:566.945333pt;}
.xc{left:567.981333pt;}
.x73{left:568.998667pt;}
.x65{left:572.464000pt;}
.xd{left:574.624000pt;}
.x29{left:575.920000pt;}
.x2f{left:581.369333pt;}
.x3e{left:586.418667pt;}
.x91{left:588.546667pt;}
.x3f{left:593.060000pt;}
.x9c{left:594.489333pt;}
.x8a{left:599.530667pt;}
.xa0{left:602.425333pt;}
.x9b{left:606.977333pt;}
.x8b{left:612.813333pt;}
.x9d{left:618.400000pt;}
.xa1{left:626.336000pt;}
.x51{left:631.318667pt;}
.x58{left:634.150667pt;}
.x87{left:647.350667pt;}
.x52{left:648.768000pt;}
.x59{left:651.354667pt;}
.x7c{left:652.370667pt;}
.x38{left:654.276000pt;}
.x9a{left:655.374667pt;}
.x7d{left:665.654667pt;}
.x39{left:667.558667pt;}
.x66{left:675.125333pt;}
.x12{left:679.440000pt;}
.x67{left:680.406667pt;}
.x92{left:682.156000pt;}
.x4f{left:684.942667pt;}
.x4b{left:690.792000pt;}
.x10{left:692.829333pt;}
.x93{left:695.440000pt;}
.x11{left:699.470667pt;}
.x50{left:702.129333pt;}
.x9e{left:708.573333pt;}
.x74{left:710.172000pt;}
.x75{left:723.454667pt;}
.x42{left:726.178667pt;}
.x1d{left:727.152000pt;}
.x31{left:728.082667pt;}
.x9f{left:732.482667pt;}
.x43{left:739.461333pt;}
.x13{left:740.397333pt;}
.x32{left:741.365333pt;}
}




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