
    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_c3f76e6d0a499cb416f8e88c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4f855a6ba0a95ef3efd4927e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_345eb0ceaf41125a41f81c57.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_da289505624572f7aadbfa9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b96457bdf0999b3186047d4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897000;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_e2888d9db57403f3c73cade5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a88f1b7b11b63824a1cdd883.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5aa41359aad38fadfd514ba4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d1a8dbe2ca20a2112fffd16d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.538000;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_18c8bdaab73cf02cdd60a703.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.755000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2b668d1696492f99858e9747.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_fb6959be73cffb70a832f820.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_964c6592c24b6ce2327084c5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m15{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);}
.m14{transform:matrix(0.245267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245267,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m8{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);}
.m1e{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);}
.m1f{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);}
.m21{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);}
.m19{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);}
.m5{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);}
.md{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);}
.m13{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);}
.m18{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);}
.m3{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);}
.m6{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);}
.ma{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);}
.mf{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);}
.m16{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);}
.m2{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);}
.m1b{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);}
.m22{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);}
.m23{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);}
.m12{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);}
.m20{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);}
.mc{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);}
.m11{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);}
.m1a{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);}
.m10{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);}
.m1d{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);}
.m7{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);}
.m9{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);}
.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);}
.mb{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);}
.v7{vertical-align:-50.046000px;}
.v8{vertical-align:-45.041400px;}
.v2{vertical-align:-19.524000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.859000px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:24.655500px;}
.v3{vertical-align:28.116000px;}
.v9{vertical-align:29.586600px;}
.v6{vertical-align:32.874000px;}
.ls19{letter-spacing:0.000000px;}
.ls1a{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls1d{letter-spacing:10.085517px;}
.ls1e{letter-spacing:10.087857px;}
.ls1c{letter-spacing:10.088568px;}
.ls1f{letter-spacing:10.092357px;}
.ls20{letter-spacing:10.096875px;}
.ls4a{letter-spacing:11.919000px;}
.ls21{letter-spacing:11.952420px;}
.ls18{letter-spacing:11.955000px;}
.ls29{letter-spacing:11.958420px;}
.ls28{letter-spacing:13.445424px;}
.ls4b{letter-spacing:13.449000px;}
.ls27{letter-spacing:13.450476px;}
.ls26{letter-spacing:13.451424px;}
.ls49{letter-spacing:13.455000px;}
.ls17{letter-spacing:14.662518px;}
.ls16{letter-spacing:14.668926px;}
.ls38{letter-spacing:14.681389px;}
.ls33{letter-spacing:14.764242px;}
.ls39{letter-spacing:14.770518px;}
.ls42{letter-spacing:14.842896px;}
.ls48{letter-spacing:14.846191px;}
.ls46{letter-spacing:14.848308px;}
.ls47{letter-spacing:14.851086px;}
.ls34{letter-spacing:14.860518px;}
.ls40{letter-spacing:14.885358px;}
.ls41{letter-spacing:14.896518px;}
.ls5{letter-spacing:14.926837px;}
.ls14{letter-spacing:14.927934px;}
.ls25{letter-spacing:14.937000px;}
.lsc{letter-spacing:14.938518px;}
.lsd{letter-spacing:14.938926px;}
.ls2a{letter-spacing:14.939676px;}
.lsb{letter-spacing:14.943000px;}
.ls3{letter-spacing:14.943432px;}
.ls4{letter-spacing:14.944518px;}
.ls15{letter-spacing:14.968518px;}
.ls37{letter-spacing:14.971739px;}
.ls2b{letter-spacing:14.972898px;}
.ls12{letter-spacing:14.973036px;}
.ls13{letter-spacing:14.974518px;}
.ls6{letter-spacing:14.986518px;}
.ls36{letter-spacing:15.010518px;}
.ls35{letter-spacing:15.016680px;}
.ls3c{letter-spacing:15.072660px;}
.ls3a{letter-spacing:15.077328px;}
.ls3e{letter-spacing:15.095418px;}
.ls3b{letter-spacing:15.106518px;}
.ls3d{letter-spacing:15.112518px;}
.lse{letter-spacing:15.167737px;}
.ls10{letter-spacing:15.168583px;}
.ls3f{letter-spacing:15.172518px;}
.lsf{letter-spacing:15.190518px;}
.ls11{letter-spacing:15.196518px;}
.ls9{letter-spacing:15.604103px;}
.lsa{letter-spacing:15.630444px;}
.ls8{letter-spacing:15.634518px;}
.ls7{letter-spacing:15.635358px;}
.ls1b{letter-spacing:16.780344px;}
.ls23{letter-spacing:16.816518px;}
.ls31{letter-spacing:17.604757px;}
.ls2f{letter-spacing:17.630784px;}
.ls32{letter-spacing:17.631066px;}
.ls30{letter-spacing:17.638518px;}
.ls45{letter-spacing:18.238926px;}
.ls44{letter-spacing:18.244518px;}
.ls43{letter-spacing:18.244926px;}
.ls2c{letter-spacing:19.797000px;}
.ls2e{letter-spacing:19.798518px;}
.ls2d{letter-spacing:19.804518px;}
.ls24{letter-spacing:24.742518px;}
.ls22{letter-spacing:25.762518px;}
.ls0{letter-spacing:70.236000px;}
.ls1{letter-spacing:72.354576px;}
.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;}
}
.ws0{word-spacing:-103.960555px;}
.ws48{word-spacing:-14.944500px;}
.ws6c{word-spacing:-13.449000px;}
.ws71{word-spacing:-12.104100px;}
.ws3{word-spacing:-11.358000px;}
.ws36{word-spacing:-10.086750px;}
.ws25{word-spacing:-3.527261px;}
.ws10{word-spacing:-3.287850px;}
.ws9a{word-spacing:-3.012468px;}
.wsae{word-spacing:-2.851080px;}
.ws83{word-spacing:-2.749609px;}
.ws88{word-spacing:-2.510796px;}
.ws87{word-spacing:-2.450778px;}
.ws29{word-spacing:-2.211965px;}
.ws2a{word-spacing:-2.211368px;}
.wsa4{word-spacing:-1.990721px;}
.wsb{word-spacing:-1.908367px;}
.ws1d{word-spacing:-1.793161px;}
.wsb1{word-spacing:-1.775322px;}
.ws32{word-spacing:-1.554348px;}
.wsa6{word-spacing:-1.506557px;}
.ws35{word-spacing:-1.494390px;}
.wsb8{word-spacing:-1.452546px;}
.ws30{word-spacing:-1.434971px;}
.ws31{word-spacing:-1.434373px;}
.wsa{word-spacing:-1.322630px;}
.ws56{word-spacing:-1.255577px;}
.ws34{word-spacing:-1.135543px;}
.ws74{word-spacing:-1.016793px;}
.wsaa{word-spacing:-0.806940px;}
.ws95{word-spacing:-0.717336px;}
.ws57{word-spacing:-0.657319px;}
.wsc3{word-spacing:-0.591595px;}
.wsb6{word-spacing:-0.538175px;}
.ws94{word-spacing:-0.478523px;}
.ws93{word-spacing:-0.477925px;}
.wsbb{word-spacing:-0.430798px;}
.wsb4{word-spacing:-0.430207px;}
.ws68{word-spacing:-0.418506px;}
.ws67{word-spacing:-0.359086px;}
.ws69{word-spacing:-0.358489px;}
.ws19{word-spacing:-0.299129px;}
.ws18{word-spacing:-0.298531px;}
.wsb0{word-spacing:-0.268765px;}
.ws15{word-spacing:-0.239112px;}
.wsba{word-spacing:-0.215399px;}
.ws23{word-spacing:-0.179693px;}
.ws64{word-spacing:-0.179095px;}
.ws77{word-spacing:-0.143556px;}
.ws26{word-spacing:-0.119735px;}
.ws82{word-spacing:-0.119078px;}
.ws98{word-spacing:-0.107377px;}
.ws81{word-spacing:-0.084654px;}
.ws2f{word-spacing:-0.059718px;}
.ws99{word-spacing:-0.054011px;}
.wsa5{word-spacing:-0.053796px;}
.ws78{word-spacing:-0.047533px;}
.ws9{word-spacing:-0.025944px;}
.ws7{word-spacing:-0.019074px;}
.ws2{word-spacing:-0.017879px;}
.ws6{word-spacing:-0.016506px;}
.ws4{word-spacing:-0.015654px;}
.wse{word-spacing:-0.000299px;}
.ws21{word-spacing:-0.000143px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:0.000299px;}
.ws62{word-spacing:0.002497px;}
.ws79{word-spacing:0.003011px;}
.ws73{word-spacing:0.003996px;}
.ws43{word-spacing:0.004500px;}
.ws3c{word-spacing:0.005017px;}
.ws5c{word-spacing:0.005562px;}
.ws38{word-spacing:0.008400px;}
.ws5e{word-spacing:0.010398px;}
.ws3b{word-spacing:0.014562px;}
.ws3a{word-spacing:0.018000px;}
.ws40{word-spacing:0.020642px;}
.ws45{word-spacing:0.047868px;}
.wsb5{word-spacing:0.054011px;}
.ws13{word-spacing:0.059718px;}
.ws9b{word-spacing:0.107377px;}
.ws12{word-spacing:0.119676px;}
.ws2d{word-spacing:0.161346px;}
.wsac{word-spacing:0.161388px;}
.ws58{word-spacing:0.169452px;}
.ws24{word-spacing:0.179095px;}
.ws6e{word-spacing:0.191280px;}
.ws39{word-spacing:0.201574px;}
.wsb7{word-spacing:0.215399px;}
.ws16{word-spacing:0.239112px;}
.ws5d{word-spacing:0.268765px;}
.ws28{word-spacing:0.299129px;}
.wsb3{word-spacing:0.322776px;}
.ws27{word-spacing:0.358489px;}
.ws2e{word-spacing:0.418506px;}
.wsa3{word-spacing:0.430207px;}
.ws85{word-spacing:0.537942px;}
.ws1e{word-spacing:0.597900px;}
.wsbe{word-spacing:0.645552px;}
.ws14{word-spacing:0.717336px;}
.ws90{word-spacing:0.777353px;}
.wsc6{word-spacing:0.968382px;}
.ws6f{word-spacing:1.180297px;}
.ws70{word-spacing:1.195560px;}
.ws97{word-spacing:1.237147px;}
.ws8b{word-spacing:1.255577px;}
.wsa9{word-spacing:1.291158px;}
.wsd{word-spacing:1.314937px;}
.ws8a{word-spacing:1.434373px;}
.ws96{word-spacing:1.506557px;}
.ws7f{word-spacing:1.553750px;}
.ws7e{word-spacing:1.554348px;}
.ws17{word-spacing:1.673784px;}
.ws7b{word-spacing:1.793161px;}
.ws53{word-spacing:1.853178px;}
.ws2c{word-spacing:1.908402px;}
.ws2b{word-spacing:1.912597px;}
.ws5a{word-spacing:1.936710px;}
.ws76{word-spacing:2.104032px;}
.ws59{word-spacing:2.259486px;}
.ws84{word-spacing:2.271385px;}
.ws50{word-spacing:2.391419px;}
.ws6a{word-spacing:2.690189px;}
.ws7c{word-spacing:2.809626px;}
.ws7d{word-spacing:2.868985px;}
.ws86{word-spacing:2.989020px;}
.ws1c{word-spacing:3.168413px;}
.ws61{word-spacing:3.251808px;}
.ws80{word-spacing:3.287850px;}
.ws60{word-spacing:3.299245px;}
.wsf{word-spacing:3.407226px;}
.ws92{word-spacing:3.467244px;}
.ws91{word-spacing:3.526663px;}
.wscc{word-spacing:3.819408px;}
.ws11{word-spacing:3.826031px;}
.wsbd{word-spacing:3.980796px;}
.wsc{word-spacing:4.004887px;}
.ws6b{word-spacing:4.064844px;}
.wsc7{word-spacing:4.142238px;}
.ws47{word-spacing:4.722462px;}
.wsbf{word-spacing:4.787790px;}
.wsa2{word-spacing:4.841801px;}
.ws66{word-spacing:4.841898px;}
.wsc5{word-spacing:5.003189px;}
.ws4b{word-spacing:5.021292px;}
.wsa7{word-spacing:5.389836px;}
.wscd{word-spacing:5.390112px;}
.wsc8{word-spacing:5.394306px;}
.wscb{word-spacing:5.396238px;}
.wsc2{word-spacing:5.433342px;}
.wsca{word-spacing:5.594730px;}
.ws8f{word-spacing:5.618953px;}
.ws65{word-spacing:5.738927px;}
.ws9f{word-spacing:5.863549px;}
.ws1a{word-spacing:5.959074px;}
.ws1b{word-spacing:5.977740px;}
.ws9e{word-spacing:6.186325px;}
.ws1f{word-spacing:6.217151px;}
.ws7a{word-spacing:6.455964px;}
.ws8{word-spacing:6.554658px;}
.ws4f{word-spacing:6.635358px;}
.wsc1{word-spacing:6.993265px;}
.ws89{word-spacing:7.113582px;}
.ws8c{word-spacing:7.591806px;}
.ws8d{word-spacing:7.651823px;}
.ws4a{word-spacing:7.950594px;}
.ws63{word-spacing:8.070030px;}
.ws8e{word-spacing:8.966461px;}
.ws4e{word-spacing:9.444685px;}
.ws55{word-spacing:9.564659px;}
.ws54{word-spacing:9.803472px;}
.wsaf{word-spacing:10.544124px;}
.ws52{word-spacing:10.819938px;}
.ws20{word-spacing:11.907037px;}
.wsab{word-spacing:13.395204px;}
.wsa8{word-spacing:13.395942px;}
.wsc4{word-spacing:13.396656px;}
.wsb9{word-spacing:13.399284px;}
.wsbc{word-spacing:13.399806px;}
.ws9d{word-spacing:13.400712px;}
.wsad{word-spacing:13.403628px;}
.ws46{word-spacing:14.884423px;}
.ws33{word-spacing:14.885021px;}
.ws51{word-spacing:15.781512px;}
.wsb2{word-spacing:16.569437px;}
.ws9c{word-spacing:18.774589px;}
.wsc0{word-spacing:18.774804px;}
.wsa1{word-spacing:18.780366px;}
.wsa0{word-spacing:19.259345px;}
.ws49{word-spacing:20.862462px;}
.ws4c{word-spacing:33.236807px;}
.ws4d{word-spacing:33.296226px;}
.wsc9{word-spacing:34.698259px;}
.ws5f{word-spacing:70.473000px;}
.ws3d{word-spacing:105.305670px;}
.ws41{word-spacing:115.392420px;}
.ws37{word-spacing:130.038341px;}
.ws3e{word-spacing:154.084830px;}
.ws44{word-spacing:154.359576px;}
.ws42{word-spacing:158.821263px;}
.ws75{word-spacing:199.184682px;}
.ws5b{word-spacing:199.203000px;}
.ws72{word-spacing:251.396557px;}
.ws3f{word-spacing:270.765364px;}
.ws6d{word-spacing:279.329508px;}
.ws22{word-spacing:880.193365px;}
._0{margin-left:-11.943163px;}
._5{margin-left:-7.908281px;}
._2{margin-left:-6.786045px;}
._6{margin-left:-4.949178px;}
._3{margin-left:-3.450813px;}
._9{margin-left:-2.046488px;}
._4{margin-left:-1.022393px;}
._a{width:1.091170px;}
._1{width:3.016553px;}
._2d{width:4.420404px;}
._48{width:11.178991px;}
._13{width:13.763156px;}
._4c{width:15.024583px;}
._11{width:16.034839px;}
._7{width:17.860003px;}
._8{width:18.890939px;}
._d{width:20.818275px;}
._b{width:21.952323px;}
._10{width:23.432737px;}
._c{width:25.345633px;}
._f{width:27.273283px;}
._2b{width:28.479027px;}
._2a{width:29.609716px;}
._e{width:31.503066px;}
._35{width:33.986108px;}
._4b{width:36.015593px;}
._4a{width:37.650896px;}
._34{width:39.288780px;}
._49{width:42.800928px;}
._29{width:44.533893px;}
._2c{width:50.153025px;}
._4d{width:65.577647px;}
._1d{width:83.962188px;}
._31{width:86.450118px;}
._39{width:89.745043px;}
._17{width:91.426463px;}
._37{width:93.443437px;}
._23{width:96.329809px;}
._30{width:99.953129px;}
._24{width:104.135688px;}
._42{width:105.402745px;}
._25{width:112.245233px;}
._32{width:113.402129px;}
._1e{width:117.208035px;}
._3d{width:130.562569px;}
._21{width:137.502616px;}
._1b{width:139.075746px;}
._3f{width:140.760408px;}
._46{width:142.592787px;}
._41{width:145.858392px;}
._16{width:148.235080px;}
._43{width:152.125173px;}
._3c{width:157.461161px;}
._2f{width:161.549388px;}
._1f{width:164.171580px;}
._3a{width:169.188850px;}
._33{width:174.030006px;}
._26{width:177.999836px;}
._19{width:181.561500px;}
._3e{width:182.637850px;}
._38{width:187.962060px;}
._1a{width:189.671489px;}
._2e{width:206.415413px;}
._44{width:211.288782px;}
._3b{width:214.860060px;}
._22{width:216.160092px;}
._27{width:219.429306px;}
._20{width:234.279198px;}
._28{width:239.107064px;}
._18{width:247.673259px;}
._47{width:256.819378px;}
._45{width:268.923478px;}
._1c{width:285.388389px;}
._15{width:320.672682px;}
._14{width:449.552292px;}
._40{width:500.972018px;}
._36{width:556.635576px;}
._12{width:2097.702850px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(45,91,112);}
.fs9{font-size:40.347000px;}
.fs4{font-size:41.844000px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.432000px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820000px;}
.fsa{font-size:48.416400px;}
.fs5{font-size:53.796000px;}
.fs1{font-size:59.778000px;}
.fs2{font-size:107.598000px;}
.fs0{font-size:133.625393px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.508076px;}
.y16{bottom:3.425340px;}
.y15{bottom:14.151273px;}
.y2{bottom:26.788198px;}
.y31{bottom:63.780000px;}
.y10a{bottom:112.063500px;}
.y69{bottom:115.833000px;}
.y30{bottom:120.285000px;}
.yf0{bottom:123.828000px;}
.y109{bottom:127.261500px;}
.y68{bottom:130.030500px;}
.y2f{bottom:140.550000px;}
.yef{bottom:144.093000px;}
.y13a{bottom:149.260500px;}
.y67{bottom:149.824500px;}
.y108{bottom:160.392000px;}
.y2e{bottom:160.813500px;}
.y66{bottom:162.421125px;}
.yee{bottom:164.356500px;}
.y139{bottom:168.628500px;}
.ybe{bottom:170.830500px;}
.y65{bottom:175.017750px;}
.y107{bottom:180.657000px;}
.y2d{bottom:181.078500px;}
.yed{bottom:184.621500px;}
.y64{bottom:187.614375px;}
.y138{bottom:187.996500px;}
.ybd{bottom:191.094000px;}
.y63{bottom:199.943250px;}
.y2c{bottom:201.342000px;}
.yec{bottom:204.885000px;}
.y137{bottom:207.363000px;}
.y106{bottom:209.887500px;}
.ybc{bottom:211.357500px;}
.y62{bottom:212.272125px;}
.y2b{bottom:221.605500px;}
.y61{bottom:224.601000px;}
.yeb{bottom:225.148500px;}
.y136{bottom:226.731000px;}
.ybb{bottom:231.622500px;}
.y60{bottom:236.929875px;}
.y2a{bottom:241.870500px;}
.y105{bottom:244.707000px;}
.yea{bottom:245.413500px;}
.y135{bottom:246.097500px;}
.y93{bottom:246.231000px;}
.y5f{bottom:249.526500px;}
.yba{bottom:251.886000px;}
.y5e{bottom:261.855375px;}
.y104{bottom:264.970500px;}
.y134{bottom:265.465500px;}
.ye9{bottom:265.677000px;}
.y92{bottom:266.494500px;}
.y29{bottom:271.101000px;}
.yb9{bottom:272.151000px;}
.y5d{bottom:274.184250px;}
.y133{bottom:284.833500px;}
.y103{bottom:285.234000px;}
.ye8{bottom:285.942000px;}
.y91{bottom:286.759500px;}
.y5c{bottom:286.780875px;}
.yb8{bottom:292.414500px;}
.y5b{bottom:299.377500px;}
.y132{bottom:304.200000px;}
.y102{bottom:305.499000px;}
.ye7{bottom:306.205500px;}
.y90{bottom:307.023000px;}
.y5a{bottom:311.974125px;}
.yb7{bottom:312.678000px;}
.y131{bottom:323.568000px;}
.y59{bottom:324.570750px;}
.y101{bottom:325.762500px;}
.ye6{bottom:326.469000px;}
.y8f{bottom:327.288000px;}
.yb6{bottom:332.943000px;}
.y58{bottom:337.167375px;}
.y130{bottom:342.934500px;}
.y100{bottom:346.027500px;}
.ye5{bottom:346.734000px;}
.y28{bottom:347.517000px;}
.y57{bottom:349.764000px;}
.y8e{bottom:356.518500px;}
.yb5{bottom:362.173500px;}
.y12f{bottom:362.302500px;}
.y56{bottom:362.360625px;}
.yff{bottom:366.291000px;}
.y55{bottom:374.957250px;}
.ye4{bottom:375.964500px;}
.y12e{bottom:381.670500px;}
.y27{bottom:385.713000px;}
.yfe{bottom:386.554500px;}
.y8d{bottom:391.338000px;}
.y54{bottom:392.955000px;}
.yb4{bottom:396.993000px;}
.y53{bottom:398.522700px;}
.y12d{bottom:401.037000px;}
.y26{bottom:405.978000px;}
.yfd{bottom:406.819500px;}
.ye3{bottom:410.784000px;}
.y8c{bottom:411.601500px;}
.yb3{bottom:417.256500px;}
.y12c{bottom:420.405000px;}
.y25{bottom:426.241500px;}
.yfc{bottom:427.083000px;}
.ye2{bottom:431.047500px;}
.y8b{bottom:431.865000px;}
.y52{bottom:432.951000px;}
.yb2{bottom:437.520000px;}
.y12b{bottom:439.771500px;}
.y24{bottom:446.505000px;}
.yfb{bottom:447.348000px;}
.ye1{bottom:451.311000px;}
.y8a{bottom:452.130000px;}
.yb1{bottom:457.785000px;}
.y12a{bottom:459.139500px;}
.y23{bottom:466.770000px;}
.yfa{bottom:467.611500px;}
.y51{bottom:470.062500px;}
.y89{bottom:472.393500px;}
.yb0{bottom:478.048500px;}
.y129{bottom:478.507500px;}
.y22{bottom:487.033500px;}
.yf9{bottom:487.875000px;}
.y50{bottom:490.326000px;}
.y88{bottom:492.658500px;}
.ye0{bottom:494.440500px;}
.y128{bottom:497.874000px;}
.yaf{bottom:498.313500px;}
.y159{bottom:502.183500px;}
.y21{bottom:507.298500px;}
.yf8{bottom:508.140000px;}
.ydf{bottom:508.636500px;}
.y4f{bottom:510.591000px;}
.y87{bottom:512.922000px;}
.y127{bottom:517.242000px;}
.yae{bottom:518.577000px;}
.y158{bottom:521.551500px;}
.yde{bottom:522.834000px;}
.y20{bottom:527.562000px;}
.yf7{bottom:528.403500px;}
.y4e{bottom:530.854500px;}
.y86{bottom:533.185500px;}
.y126{bottom:536.608500px;}
.ydd{bottom:537.030000px;}
.y157{bottom:540.918000px;}
.yad{bottom:547.807500px;}
.y1f{bottom:547.825500px;}
.yf6{bottom:548.667000px;}
.y4d{bottom:551.119500px;}
.y85{bottom:553.450500px;}
.y125{bottom:555.976500px;}
.ydb{bottom:557.860800px;}
.ydc{bottom:565.258800px;}
.y1e{bottom:568.090500px;}
.yf5{bottom:568.932000px;}
.y4c{bottom:571.383000px;}
.yda{bottom:572.655450px;}
.y84{bottom:573.714000px;}
.y156{bottom:573.775500px;}
.y124{bottom:575.344500px;}
.yac{bottom:582.627000px;}
.yd9{bottom:587.450100px;}
.y1d{bottom:588.354000px;}
.yf4{bottom:589.195500px;}
.y155{bottom:593.142000px;}
.y83{bottom:593.979000px;}
.y123{bottom:594.711000px;}
.y4b{bottom:600.613500px;}
.yd8{bottom:602.244750px;}
.yab{bottom:602.890500px;}
.y1c{bottom:608.619000px;}
.yf3{bottom:609.460500px;}
.y154{bottom:612.510000px;}
.y122{bottom:614.079000px;}
.yd7{bottom:617.360700px;}
.yaa{bottom:623.155500px;}
.y82{bottom:623.209500px;}
.y1b{bottom:628.882500px;}
.yf2{bottom:629.724000px;}
.y153{bottom:631.878000px;}
.yd6{bottom:632.155350px;}
.y121{bottom:633.447000px;}
.y4a{bottom:635.433000px;}
.ya9{bottom:643.419000px;}
.yd5{bottom:646.950000px;}
.y1a{bottom:649.146000px;}
.yf1{bottom:649.987500px;}
.y152{bottom:651.244500px;}
.y120{bottom:652.813500px;}
.y81{bottom:658.029000px;}
.yd4{bottom:668.547300px;}
.y19{bottom:669.411000px;}
.y49{bottom:670.252500px;}
.y151{bottom:670.612500px;}
.y11f{bottom:672.181500px;}
.ya8{bottom:672.649500px;}
.yd2{bottom:677.354700px;}
.y80{bottom:678.292500px;}
.y18{bottom:689.674500px;}
.y150{bottom:689.979000px;}
.yd3{bottom:690.145950px;}
.y48{bottom:690.516000px;}
.y11e{bottom:691.548000px;}
.y7f{bottom:698.556000px;}
.ya7{bottom:707.469000px;}
.y14f{bottom:709.347000px;}
.y17{bottom:709.939500px;}
.y47{bottom:710.781000px;}
.y11d{bottom:710.916000px;}
.y7e{bottom:718.821000px;}
.yd1{bottom:720.076500px;}
.ya6{bottom:727.734000px;}
.y14e{bottom:728.715000px;}
.y11c{bottom:730.284000px;}
.y46{bottom:731.044500px;}
.y7d{bottom:739.084500px;}
.y14{bottom:747.595468px;}
.ya5{bottom:747.997500px;}
.y14d{bottom:748.081500px;}
.y11b{bottom:749.650500px;}
.y45{bottom:751.308000px;}
.y13{bottom:755.541000px;}
.yd0{bottom:757.188000px;}
.y7b{bottom:759.349500px;}
.y7c{bottom:764.773500px;}
.y14c{bottom:767.449500px;}
.ya4{bottom:768.261000px;}
.y11a{bottom:769.018500px;}
.y44{bottom:771.573000px;}
.ycf{bottom:777.451500px;}
.y79{bottom:779.613000px;}
.y7a{bottom:785.037000px;}
.y14b{bottom:786.816000px;}
.y12{bottom:787.368000px;}
.y119{bottom:788.385000px;}
.y43{bottom:791.836500px;}
.ya3{bottom:797.491500px;}
.yce{bottom:797.716500px;}
.y77{bottom:799.876500px;}
.y78{bottom:805.302000px;}
.y14a{bottom:806.184000px;}
.y118{bottom:807.753000px;}
.y11{bottom:810.406500px;}
.y42{bottom:812.101500px;}
.ycd{bottom:817.980000px;}
.y76{bottom:820.141500px;}
.y149{bottom:825.552000px;}
.y117{bottom:827.121000px;}
.y10{bottom:828.564000px;}
.y41{bottom:832.365000px;}
.ya2{bottom:837.243000px;}
.y75{bottom:840.405000px;}
.y148{bottom:844.918500px;}
.y116{bottom:846.487500px;}
.yf{bottom:846.720000px;}
.ycc{bottom:847.210500px;}
.ya1{bottom:851.440500px;}
.y40{bottom:852.628500px;}
.ye{bottom:859.995000px;}
.y74{bottom:860.668500px;}
.y147{bottom:864.286500px;}
.y115{bottom:865.855500px;}
.y3f{bottom:872.893500px;}
.ya0{bottom:873.141000px;}
.yd{bottom:883.035000px;}
.y146{bottom:883.653000px;}
.y114{bottom:885.222000px;}
.ycb{bottom:886.962000px;}
.y9f{bottom:889.579500px;}
.y73{bottom:889.899000px;}
.y3e{bottom:893.157000px;}
.yca{bottom:901.158000px;}
.yc{bottom:901.191000px;}
.y145{bottom:903.021000px;}
.y113{bottom:904.590000px;}
.y9e{bottom:913.219500px;}
.y3d{bottom:913.422000px;}
.yb{bottom:914.466000px;}
.y144{bottom:922.389000px;}
.yc9{bottom:922.860000px;}
.y112{bottom:923.958000px;}
.y72{bottom:924.718500px;}
.y9d{bottom:929.658000px;}
.ya{bottom:932.623500px;}
.y3c{bottom:933.685500px;}
.yc8{bottom:939.298500px;}
.y143{bottom:941.755500px;}
.y71{bottom:944.983500px;}
.y9c{bottom:946.096500px;}
.y111{bottom:952.291500px;}
.y3b{bottom:953.949000px;}
.y9{bottom:955.662000px;}
.yc7{bottom:955.737000px;}
.y142{bottom:961.123500px;}
.y70{bottom:965.247000px;}
.y9b{bottom:969.738000px;}
.yc6{bottom:972.174000px;}
.y3a{bottom:974.214000px;}
.y8{bottom:977.904000px;}
.y141{bottom:980.490000px;}
.y6f{bottom:985.512000px;}
.y9a{bottom:986.176500px;}
.yc5{bottom:988.612500px;}
.y110{bottom:991.743000px;}
.y39{bottom:994.477500px;}
.y7{bottom:998.167500px;}
.y140{bottom:999.858000px;}
.y99{bottom:1002.613500px;}
.yc4{bottom:1005.051000px;}
.y6e{bottom:1005.775500px;}
.y38{bottom:1014.742500px;}
.y10f{bottom:1015.908000px;}
.y13f{bottom:1019.226000px;}
.yc3{bottom:1021.489500px;}
.y6d{bottom:1026.039000px;}
.y98{bottom:1026.255000px;}
.y10e{bottom:1031.106000px;}
.y37{bottom:1035.006000px;}
.yc2{bottom:1037.928000px;}
.y13e{bottom:1038.592500px;}
.y6{bottom:1040.848500px;}
.y97{bottom:1042.693500px;}
.y6c{bottom:1046.304000px;}
.y36{bottom:1055.269500px;}
.y13d{bottom:1057.960500px;}
.yc1{bottom:1061.926500px;}
.y6b{bottom:1066.567500px;}
.y96{bottom:1066.690500px;}
.y10d{bottom:1070.467500px;}
.y5{bottom:1071.244500px;}
.ybf{bottom:1071.711000px;}
.y35{bottom:1075.534500px;}
.y13c{bottom:1077.327000px;}
.y10c{bottom:1085.667000px;}
.yc0{bottom:1085.923500px;}
.y6a{bottom:1086.832500px;}
.y34{bottom:1095.798000px;}
.y13b{bottom:1096.695000px;}
.y95{bottom:1098.310500px;}
.y4{bottom:1100.145000px;}
.y10b{bottom:1100.865000px;}
.y33{bottom:1116.063000px;}
.y94{bottom:1117.543500px;}
.y1{bottom:1137.953979px;}
.y32{bottom:1168.366500px;}
.ha{height:25.508090px;}
.h12{height:29.170881px;}
.h14{height:29.372616px;}
.h13{height:29.574351px;}
.h8{height:30.462432px;}
.h18{height:31.529808px;}
.hc{height:33.112997px;}
.h17{height:33.187080px;}
.hb{height:34.199443px;}
.h16{height:34.812960px;}
.h1d{height:35.005057px;}
.hf{height:35.052060px;}
.h1e{height:35.247139px;}
.h20{height:37.926180px;}
.h19{height:38.894508px;}
.h9{height:39.163488px;}
.h1b{height:39.432468px;}
.h10{height:41.485932px;}
.hd{height:43.219494px;}
.he{height:43.518384px;}
.h4{height:43.817274px;}
.h2{height:50.931027px;}
.h15{height:54.028116px;}
.h7{height:54.543336px;}
.h6{height:54.549336px;}
.h11{height:57.286581px;}
.h1f{height:64.833739px;}
.h1a{height:72.037488px;}
.h1c{height:72.043488px;}
.h5{height:77.793354px;}
.h3{height:90.598016px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:205.107834px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:58.055270px;}
.x1{left:114.802506px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.xb{left:127.875000px;}
.x63{left:137.988000px;}
.x68{left:140.506350px;}
.x4{left:146.170500px;}
.x64{left:154.497000px;}
.x62{left:157.120500px;}
.x60{left:165.640500px;}
.x59{left:172.714500px;}
.x7c{left:175.167000px;}
.x5c{left:178.672500px;}
.x7a{left:180.802500px;}
.x5b{left:183.541500px;}
.xc{left:186.439500px;}
.x8{left:191.157000px;}
.x49{left:192.388500px;}
.x41{left:193.963500px;}
.x31{left:195.544500px;}
.x4a{left:197.281500px;}
.x58{left:200.271000px;}
.x5a{left:202.390500px;}
.x42{left:204.945000px;}
.x6f{left:214.627500px;}
.x70{left:224.625000px;}
.x24{left:235.710000px;}
.x2f{left:239.050500px;}
.x25{left:245.707500px;}
.x80{left:251.667000px;}
.x30{left:253.995000px;}
.x7b{left:257.584500px;}
.x20{left:259.464000px;}
.x38{left:265.253700px;}
.x81{left:267.238500px;}
.x3e{left:268.345200px;}
.x3a{left:270.150825px;}
.x33{left:272.526750px;}
.x21{left:274.407000px;}
.x3f{left:280.127325px;}
.x3c{left:285.765825px;}
.x3d{left:287.338575px;}
.x3b{left:289.810200px;}
.x2d{left:293.214000px;}
.x39{left:294.339450px;}
.x40{left:295.399200px;}
.x36{left:297.682950px;}
.x5d{left:298.927500px;}
.x76{left:300.315000px;}
.x1e{left:306.504000px;}
.x2e{left:308.158500px;}
.x2b{left:310.087500px;}
.x77{left:315.258000px;}
.x37{left:319.320075px;}
.x1f{left:321.448500px;}
.x6d{left:323.356500px;}
.x2c{left:325.032000px;}
.x6e{left:333.354000px;}
.x56{left:344.109000px;}
.x67{left:348.446850px;}
.x57{left:359.053500px;}
.x61{left:381.927000px;}
.x78{left:384.492000px;}
.x53{left:391.570500px;}
.x79{left:394.489500px;}
.x71{left:397.872000px;}
.x54{left:402.679500px;}
.x72{left:412.521000px;}
.x32{left:415.978950px;}
.x55{left:422.482500px;}
.x5e{left:426.343500px;}
.x5f{left:432.321000px;}
.x4f{left:436.734000px;}
.x50{left:441.625500px;}
.x22{left:446.410500px;}
.x4b{left:454.969500px;}
.x23{left:461.355000px;}
.x75{left:462.507000px;}
.x4c{left:463.666500px;}
.x34{left:468.239700px;}
.x69{left:478.362000px;}
.x6a{left:484.339500px;}
.x18{left:491.604000px;}
.x19{left:499.075500px;}
.x1a{left:502.845000px;}
.x6c{left:505.842000px;}
.x4d{left:512.883000px;}
.x1b{left:517.789500px;}
.x1c{left:525.328500px;}
.x35{left:532.855200px;}
.x1d{left:540.273000px;}
.x65{left:543.510000px;}
.x45{left:545.409000px;}
.x66{left:549.487500px;}
.x47{left:550.812000px;}
.x73{left:556.458000px;}
.x46{left:560.353500px;}
.x48{left:565.756500px;}
.x27{left:567.130500px;}
.x74{left:571.107000px;}
.x14{left:578.643000px;}
.x28{left:580.873500px;}
.x15{left:593.587500px;}
.x16{left:597.307500px;}
.x7e{left:604.092000px;}
.x17{left:612.252000px;}
.x7f{left:630.991500px;}
.x29{left:645.885000px;}
.x2a{left:655.882500px;}
.x43{left:692.698500px;}
.x44{left:698.676000px;}
.x6{left:701.339978px;}
.x10{left:709.882500px;}
.x51{left:711.007500px;}
.x12{left:715.521000px;}
.x11{left:717.354000px;}
.x13{left:722.992500px;}
.x9{left:723.993000px;}
.x52{left:728.203500px;}
.x6b{left:734.394000px;}
.xd{left:749.274000px;}
.xe{left:756.745500px;}
.x26{left:761.841000px;}
.xf{left:764.367000px;}
.xa{left:772.188000px;}
.x4e{left:773.218500px;}
.x7d{left:776.362500px;}
@media print{
.v7{vertical-align:-44.485333pt;}
.v8{vertical-align:-40.036800pt;}
.v2{vertical-align:-17.354667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.208000pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:21.916000pt;}
.v3{vertical-align:24.992000pt;}
.v9{vertical-align:26.299200pt;}
.v6{vertical-align:29.221333pt;}
.ls19{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls1d{letter-spacing:8.964904pt;}
.ls1e{letter-spacing:8.966984pt;}
.ls1c{letter-spacing:8.967616pt;}
.ls1f{letter-spacing:8.970984pt;}
.ls20{letter-spacing:8.975000pt;}
.ls4a{letter-spacing:10.594667pt;}
.ls21{letter-spacing:10.624373pt;}
.ls18{letter-spacing:10.626667pt;}
.ls29{letter-spacing:10.629707pt;}
.ls28{letter-spacing:11.951488pt;}
.ls4b{letter-spacing:11.954667pt;}
.ls27{letter-spacing:11.955979pt;}
.ls26{letter-spacing:11.956821pt;}
.ls49{letter-spacing:11.960000pt;}
.ls17{letter-spacing:13.033349pt;}
.ls16{letter-spacing:13.039045pt;}
.ls38{letter-spacing:13.050124pt;}
.ls33{letter-spacing:13.123771pt;}
.ls39{letter-spacing:13.129349pt;}
.ls42{letter-spacing:13.193685pt;}
.ls48{letter-spacing:13.196615pt;}
.ls46{letter-spacing:13.198496pt;}
.ls47{letter-spacing:13.200965pt;}
.ls34{letter-spacing:13.209349pt;}
.ls40{letter-spacing:13.231429pt;}
.ls41{letter-spacing:13.241349pt;}
.ls5{letter-spacing:13.268300pt;}
.ls14{letter-spacing:13.269275pt;}
.ls25{letter-spacing:13.277333pt;}
.lsc{letter-spacing:13.278683pt;}
.lsd{letter-spacing:13.279045pt;}
.ls2a{letter-spacing:13.279712pt;}
.lsb{letter-spacing:13.282667pt;}
.ls3{letter-spacing:13.283051pt;}
.ls4{letter-spacing:13.284016pt;}
.ls15{letter-spacing:13.305349pt;}
.ls37{letter-spacing:13.308213pt;}
.ls2b{letter-spacing:13.309243pt;}
.ls12{letter-spacing:13.309365pt;}
.ls13{letter-spacing:13.310683pt;}
.ls6{letter-spacing:13.321349pt;}
.ls36{letter-spacing:13.342683pt;}
.ls35{letter-spacing:13.348160pt;}
.ls3c{letter-spacing:13.397920pt;}
.ls3a{letter-spacing:13.402070pt;}
.ls3e{letter-spacing:13.418149pt;}
.ls3b{letter-spacing:13.428016pt;}
.ls3d{letter-spacing:13.433349pt;}
.lse{letter-spacing:13.482433pt;}
.ls10{letter-spacing:13.483185pt;}
.ls3f{letter-spacing:13.486683pt;}
.lsf{letter-spacing:13.502683pt;}
.ls11{letter-spacing:13.508016pt;}
.ls9{letter-spacing:13.870314pt;}
.lsa{letter-spacing:13.893728pt;}
.ls8{letter-spacing:13.897349pt;}
.ls7{letter-spacing:13.898096pt;}
.ls1b{letter-spacing:14.915862pt;}
.ls23{letter-spacing:14.948016pt;}
.ls31{letter-spacing:15.648673pt;}
.ls2f{letter-spacing:15.671808pt;}
.ls32{letter-spacing:15.672058pt;}
.ls30{letter-spacing:15.678683pt;}
.ls45{letter-spacing:16.212379pt;}
.ls44{letter-spacing:16.217349pt;}
.ls43{letter-spacing:16.217712pt;}
.ls2c{letter-spacing:17.597333pt;}
.ls2e{letter-spacing:17.598683pt;}
.ls2d{letter-spacing:17.604016pt;}
.ls24{letter-spacing:21.993349pt;}
.ls22{letter-spacing:22.900016pt;}
.ls0{letter-spacing:62.432000pt;}
.ls1{letter-spacing:64.315179pt;}
.ws0{word-spacing:-92.409383pt;}
.ws48{word-spacing:-13.284000pt;}
.ws6c{word-spacing:-11.954667pt;}
.ws71{word-spacing:-10.759200pt;}
.ws3{word-spacing:-10.096000pt;}
.ws36{word-spacing:-8.966000pt;}
.ws25{word-spacing:-3.135343pt;}
.ws10{word-spacing:-2.922533pt;}
.ws9a{word-spacing:-2.677750pt;}
.wsae{word-spacing:-2.534294pt;}
.ws83{word-spacing:-2.444097pt;}
.ws88{word-spacing:-2.231818pt;}
.ws87{word-spacing:-2.178470pt;}
.ws29{word-spacing:-1.966191pt;}
.ws2a{word-spacing:-1.965660pt;}
.wsa4{word-spacing:-1.769530pt;}
.wsb{word-spacing:-1.696326pt;}
.ws1d{word-spacing:-1.593921pt;}
.wsb1{word-spacing:-1.578064pt;}
.ws32{word-spacing:-1.381642pt;}
.wsa6{word-spacing:-1.339162pt;}
.ws35{word-spacing:-1.328347pt;}
.wsb8{word-spacing:-1.291152pt;}
.ws30{word-spacing:-1.275530pt;}
.ws31{word-spacing:-1.274998pt;}
.wsa{word-spacing:-1.175671pt;}
.ws56{word-spacing:-1.116069pt;}
.ws34{word-spacing:-1.009371pt;}
.ws74{word-spacing:-0.903816pt;}
.wsaa{word-spacing:-0.717280pt;}
.ws95{word-spacing:-0.637632pt;}
.ws57{word-spacing:-0.584283pt;}
.wsc3{word-spacing:-0.525862pt;}
.wsb6{word-spacing:-0.478378pt;}
.ws94{word-spacing:-0.425354pt;}
.ws93{word-spacing:-0.424822pt;}
.wsbb{word-spacing:-0.382932pt;}
.wsb4{word-spacing:-0.382406pt;}
.ws68{word-spacing:-0.372005pt;}
.ws67{word-spacing:-0.319188pt;}
.ws69{word-spacing:-0.318657pt;}
.ws19{word-spacing:-0.265893pt;}
.ws18{word-spacing:-0.265361pt;}
.wsb0{word-spacing:-0.238902pt;}
.ws15{word-spacing:-0.212544pt;}
.wsba{word-spacing:-0.191466pt;}
.ws23{word-spacing:-0.159727pt;}
.ws64{word-spacing:-0.159195pt;}
.ws77{word-spacing:-0.127605pt;}
.ws26{word-spacing:-0.106431pt;}
.ws82{word-spacing:-0.105847pt;}
.ws98{word-spacing:-0.095446pt;}
.ws81{word-spacing:-0.075248pt;}
.ws2f{word-spacing:-0.053083pt;}
.ws99{word-spacing:-0.048010pt;}
.wsa5{word-spacing:-0.047819pt;}
.ws78{word-spacing:-0.042252pt;}
.ws9{word-spacing:-0.023061pt;}
.ws7{word-spacing:-0.016955pt;}
.ws2{word-spacing:-0.015892pt;}
.ws6{word-spacing:-0.014672pt;}
.ws4{word-spacing:-0.013915pt;}
.wse{word-spacing:-0.000266pt;}
.ws21{word-spacing:-0.000128pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:0.000266pt;}
.ws62{word-spacing:0.002219pt;}
.ws79{word-spacing:0.002677pt;}
.ws73{word-spacing:0.003552pt;}
.ws43{word-spacing:0.004000pt;}
.ws3c{word-spacing:0.004460pt;}
.ws5c{word-spacing:0.004944pt;}
.ws38{word-spacing:0.007467pt;}
.ws5e{word-spacing:0.009242pt;}
.ws3b{word-spacing:0.012944pt;}
.ws3a{word-spacing:0.016000pt;}
.ws40{word-spacing:0.018349pt;}
.ws45{word-spacing:0.042549pt;}
.wsb5{word-spacing:0.048010pt;}
.ws13{word-spacing:0.053083pt;}
.ws9b{word-spacing:0.095446pt;}
.ws12{word-spacing:0.106378pt;}
.ws2d{word-spacing:0.143419pt;}
.wsac{word-spacing:0.143456pt;}
.ws58{word-spacing:0.150624pt;}
.ws24{word-spacing:0.159195pt;}
.ws6e{word-spacing:0.170027pt;}
.ws39{word-spacing:0.179177pt;}
.wsb7{word-spacing:0.191466pt;}
.ws16{word-spacing:0.212544pt;}
.ws5d{word-spacing:0.238902pt;}
.ws28{word-spacing:0.265893pt;}
.wsb3{word-spacing:0.286912pt;}
.ws27{word-spacing:0.318657pt;}
.ws2e{word-spacing:0.372005pt;}
.wsa3{word-spacing:0.382406pt;}
.ws85{word-spacing:0.478171pt;}
.ws1e{word-spacing:0.531466pt;}
.wsbe{word-spacing:0.573824pt;}
.ws14{word-spacing:0.637632pt;}
.ws90{word-spacing:0.690981pt;}
.wsc6{word-spacing:0.860784pt;}
.ws6f{word-spacing:1.049153pt;}
.ws70{word-spacing:1.062720pt;}
.ws97{word-spacing:1.099686pt;}
.ws8b{word-spacing:1.116069pt;}
.wsa9{word-spacing:1.147696pt;}
.wsd{word-spacing:1.168833pt;}
.ws8a{word-spacing:1.274998pt;}
.ws96{word-spacing:1.339162pt;}
.ws7f{word-spacing:1.381111pt;}
.ws7e{word-spacing:1.381642pt;}
.ws17{word-spacing:1.487808pt;}
.ws7b{word-spacing:1.593921pt;}
.ws53{word-spacing:1.647269pt;}
.ws2c{word-spacing:1.696357pt;}
.ws2b{word-spacing:1.700086pt;}
.ws5a{word-spacing:1.721520pt;}
.ws76{word-spacing:1.870251pt;}
.ws59{word-spacing:2.008432pt;}
.ws84{word-spacing:2.019009pt;}
.ws50{word-spacing:2.125706pt;}
.ws6a{word-spacing:2.391279pt;}
.ws7c{word-spacing:2.497445pt;}
.ws7d{word-spacing:2.550209pt;}
.ws86{word-spacing:2.656906pt;}
.ws1c{word-spacing:2.816367pt;}
.ws61{word-spacing:2.890496pt;}
.ws80{word-spacing:2.922533pt;}
.ws60{word-spacing:2.932662pt;}
.wsf{word-spacing:3.028646pt;}
.ws92{word-spacing:3.081994pt;}
.ws91{word-spacing:3.134811pt;}
.wscc{word-spacing:3.395030pt;}
.ws11{word-spacing:3.400917pt;}
.wsbd{word-spacing:3.538486pt;}
.wsc{word-spacing:3.559899pt;}
.ws6b{word-spacing:3.613195pt;}
.wsc7{word-spacing:3.681990pt;}
.ws47{word-spacing:4.197744pt;}
.wsbf{word-spacing:4.255814pt;}
.wsa2{word-spacing:4.303823pt;}
.ws66{word-spacing:4.303910pt;}
.wsc5{word-spacing:4.447279pt;}
.ws4b{word-spacing:4.463371pt;}
.wsa7{word-spacing:4.790965pt;}
.wscd{word-spacing:4.791211pt;}
.wsc8{word-spacing:4.794938pt;}
.wscb{word-spacing:4.796656pt;}
.wsc2{word-spacing:4.829638pt;}
.wsca{word-spacing:4.973094pt;}
.ws8f{word-spacing:4.994625pt;}
.ws65{word-spacing:5.101269pt;}
.ws9f{word-spacing:5.212043pt;}
.ws1a{word-spacing:5.296955pt;}
.ws1b{word-spacing:5.313547pt;}
.ws9e{word-spacing:5.498955pt;}
.ws1f{word-spacing:5.526357pt;}
.ws7a{word-spacing:5.738635pt;}
.ws8{word-spacing:5.826363pt;}
.ws4f{word-spacing:5.898096pt;}
.wsc1{word-spacing:6.216235pt;}
.ws89{word-spacing:6.323184pt;}
.ws8c{word-spacing:6.748272pt;}
.ws8d{word-spacing:6.801621pt;}
.ws4a{word-spacing:7.067194pt;}
.ws63{word-spacing:7.173360pt;}
.ws8e{word-spacing:7.970187pt;}
.ws4e{word-spacing:8.395275pt;}
.ws55{word-spacing:8.501919pt;}
.ws54{word-spacing:8.714198pt;}
.wsaf{word-spacing:9.372554pt;}
.ws52{word-spacing:9.617722pt;}
.ws20{word-spacing:10.584032pt;}
.wsab{word-spacing:11.906848pt;}
.wsa8{word-spacing:11.907504pt;}
.wsc4{word-spacing:11.908139pt;}
.wsb9{word-spacing:11.910474pt;}
.wsbc{word-spacing:11.910938pt;}
.ws9d{word-spacing:11.911744pt;}
.wsad{word-spacing:11.914336pt;}
.ws46{word-spacing:13.230598pt;}
.ws33{word-spacing:13.231130pt;}
.ws51{word-spacing:14.028010pt;}
.wsb2{word-spacing:14.728388pt;}
.ws9c{word-spacing:16.688523pt;}
.wsc0{word-spacing:16.688715pt;}
.wsa1{word-spacing:16.693658pt;}
.wsa0{word-spacing:17.119417pt;}
.ws49{word-spacing:18.544411pt;}
.ws4c{word-spacing:29.543829pt;}
.ws4d{word-spacing:29.596646pt;}
.wsc9{word-spacing:30.842897pt;}
.ws5f{word-spacing:62.642667pt;}
.ws3d{word-spacing:93.605040pt;}
.ws41{word-spacing:102.571040pt;}
.ws37{word-spacing:115.589636pt;}
.ws3e{word-spacing:136.964293pt;}
.ws44{word-spacing:137.208512pt;}
.ws42{word-spacing:141.174456pt;}
.ws75{word-spacing:177.053051pt;}
.ws5b{word-spacing:177.069333pt;}
.ws72{word-spacing:223.463606pt;}
.ws3f{word-spacing:240.680324pt;}
.ws6d{word-spacing:248.292896pt;}
.ws22{word-spacing:782.394102pt;}
._0{margin-left:-10.616145pt;}
._5{margin-left:-7.029583pt;}
._2{margin-left:-6.032040pt;}
._6{margin-left:-4.399270pt;}
._3{margin-left:-3.067389pt;}
._9{margin-left:-1.819101pt;}
._4{margin-left:-0.908794pt;}
._a{width:0.969929pt;}
._1{width:2.681381pt;}
._2d{width:3.929248pt;}
._48{width:9.936881pt;}
._13{width:12.233916pt;}
._4c{width:13.355185pt;}
._11{width:14.253190pt;}
._7{width:15.875558pt;}
._8{width:16.791946pt;}
._d{width:18.505133pt;}
._b{width:19.513176pt;}
._10{width:20.829099pt;}
._c{width:22.529451pt;}
._f{width:24.242918pt;}
._2b{width:25.314690pt;}
._2a{width:26.319747pt;}
._e{width:28.002725pt;}
._35{width:30.209874pt;}
._4b{width:32.013860pt;}
._4a{width:33.467463pt;}
._34{width:34.923360pt;}
._49{width:38.045270pt;}
._29{width:39.585682pt;}
._2c{width:44.580466pt;}
._4d{width:58.291242pt;}
._1d{width:74.633056pt;}
._31{width:76.844550pt;}
._39{width:79.773371pt;}
._17{width:81.267967pt;}
._37{width:83.060833pt;}
._23{width:85.626497pt;}
._30{width:88.847226pt;}
._24{width:92.565056pt;}
._42{width:93.691329pt;}
._25{width:99.773540pt;}
._32{width:100.801893pt;}
._1e{width:104.184920pt;}
._3d{width:116.055617pt;}
._21{width:122.224548pt;}
._1b{width:123.622885pt;}
._3f{width:125.120363pt;}
._46{width:126.749144pt;}
._41{width:129.651904pt;}
._16{width:131.764515pt;}
._43{width:135.222376pt;}
._3c{width:139.965476pt;}
._2f{width:143.599456pt;}
._1f{width:145.930293pt;}
._3a{width:150.390089pt;}
._33{width:154.693339pt;}
._26{width:158.222077pt;}
._19{width:161.388000pt;}
._3e{width:162.344756pt;}
._38{width:167.077387pt;}
._1a{width:168.596879pt;}
._2e{width:183.480367pt;}
._44{width:187.812251pt;}
._3b{width:190.986720pt;}
._22{width:192.142304pt;}
._27{width:195.048272pt;}
._20{width:208.248176pt;}
._28{width:212.539613pt;}
._18{width:220.154008pt;}
._47{width:228.283891pt;}
._45{width:239.043091pt;}
._1c{width:253.678568pt;}
._15{width:285.042384pt;}
._14{width:399.602038pt;}
._40{width:445.308461pt;}
._36{width:494.787179pt;}
._12{width:1864.624756pt;}
.fs9{font-size:35.864000pt;}
.fs4{font-size:37.194667pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.384000pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.506667pt;}
.fsa{font-size:43.036800pt;}
.fs5{font-size:47.818667pt;}
.fs1{font-size:53.136000pt;}
.fs2{font-size:95.642667pt;}
.fs0{font-size:118.778127pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.340512pt;}
.y16{bottom:3.044747pt;}
.y15{bottom:12.578910pt;}
.y2{bottom:23.811732pt;}
.y31{bottom:56.693333pt;}
.y10a{bottom:99.612000pt;}
.y69{bottom:102.962667pt;}
.y30{bottom:106.920000pt;}
.yf0{bottom:110.069333pt;}
.y109{bottom:113.121333pt;}
.y68{bottom:115.582667pt;}
.y2f{bottom:124.933333pt;}
.yef{bottom:128.082667pt;}
.y13a{bottom:132.676000pt;}
.y67{bottom:133.177333pt;}
.y108{bottom:142.570667pt;}
.y2e{bottom:142.945333pt;}
.y66{bottom:144.374333pt;}
.yee{bottom:146.094667pt;}
.y139{bottom:149.892000pt;}
.ybe{bottom:151.849333pt;}
.y65{bottom:155.571333pt;}
.y107{bottom:160.584000pt;}
.y2d{bottom:160.958667pt;}
.yed{bottom:164.108000pt;}
.y64{bottom:166.768333pt;}
.y138{bottom:167.108000pt;}
.ybd{bottom:169.861333pt;}
.y63{bottom:177.727333pt;}
.y2c{bottom:178.970667pt;}
.yec{bottom:182.120000pt;}
.y137{bottom:184.322667pt;}
.y106{bottom:186.566667pt;}
.ybc{bottom:187.873333pt;}
.y62{bottom:188.686333pt;}
.y2b{bottom:196.982667pt;}
.y61{bottom:199.645333pt;}
.yeb{bottom:200.132000pt;}
.y136{bottom:201.538667pt;}
.ybb{bottom:205.886667pt;}
.y60{bottom:210.604333pt;}
.y2a{bottom:214.996000pt;}
.y105{bottom:217.517333pt;}
.yea{bottom:218.145333pt;}
.y135{bottom:218.753333pt;}
.y93{bottom:218.872000pt;}
.y5f{bottom:221.801333pt;}
.yba{bottom:223.898667pt;}
.y5e{bottom:232.760333pt;}
.y104{bottom:235.529333pt;}
.y134{bottom:235.969333pt;}
.ye9{bottom:236.157333pt;}
.y92{bottom:236.884000pt;}
.y29{bottom:240.978667pt;}
.yb9{bottom:241.912000pt;}
.y5d{bottom:243.719333pt;}
.y133{bottom:253.185333pt;}
.y103{bottom:253.541333pt;}
.ye8{bottom:254.170667pt;}
.y91{bottom:254.897333pt;}
.y5c{bottom:254.916333pt;}
.yb8{bottom:259.924000pt;}
.y5b{bottom:266.113333pt;}
.y132{bottom:270.400000pt;}
.y102{bottom:271.554667pt;}
.ye7{bottom:272.182667pt;}
.y90{bottom:272.909333pt;}
.y5a{bottom:277.310333pt;}
.yb7{bottom:277.936000pt;}
.y131{bottom:287.616000pt;}
.y59{bottom:288.507333pt;}
.y101{bottom:289.566667pt;}
.ye6{bottom:290.194667pt;}
.y8f{bottom:290.922667pt;}
.yb6{bottom:295.949333pt;}
.y58{bottom:299.704333pt;}
.y130{bottom:304.830667pt;}
.y100{bottom:307.580000pt;}
.ye5{bottom:308.208000pt;}
.y28{bottom:308.904000pt;}
.y57{bottom:310.901333pt;}
.y8e{bottom:316.905333pt;}
.yb5{bottom:321.932000pt;}
.y12f{bottom:322.046667pt;}
.y56{bottom:322.098333pt;}
.yff{bottom:325.592000pt;}
.y55{bottom:333.295333pt;}
.ye4{bottom:334.190667pt;}
.y12e{bottom:339.262667pt;}
.y27{bottom:342.856000pt;}
.yfe{bottom:343.604000pt;}
.y8d{bottom:347.856000pt;}
.y54{bottom:349.293333pt;}
.yb4{bottom:352.882667pt;}
.y53{bottom:354.242400pt;}
.y12d{bottom:356.477333pt;}
.y26{bottom:360.869333pt;}
.yfd{bottom:361.617333pt;}
.ye3{bottom:365.141333pt;}
.y8c{bottom:365.868000pt;}
.yb3{bottom:370.894667pt;}
.y12c{bottom:373.693333pt;}
.y25{bottom:378.881333pt;}
.yfc{bottom:379.629333pt;}
.ye2{bottom:383.153333pt;}
.y8b{bottom:383.880000pt;}
.y52{bottom:384.845333pt;}
.yb2{bottom:388.906667pt;}
.y12b{bottom:390.908000pt;}
.y24{bottom:396.893333pt;}
.yfb{bottom:397.642667pt;}
.ye1{bottom:401.165333pt;}
.y8a{bottom:401.893333pt;}
.yb1{bottom:406.920000pt;}
.y12a{bottom:408.124000pt;}
.y23{bottom:414.906667pt;}
.yfa{bottom:415.654667pt;}
.y51{bottom:417.833333pt;}
.y89{bottom:419.905333pt;}
.yb0{bottom:424.932000pt;}
.y129{bottom:425.340000pt;}
.y22{bottom:432.918667pt;}
.yf9{bottom:433.666667pt;}
.y50{bottom:435.845333pt;}
.y88{bottom:437.918667pt;}
.ye0{bottom:439.502667pt;}
.y128{bottom:442.554667pt;}
.yaf{bottom:442.945333pt;}
.y159{bottom:446.385333pt;}
.y21{bottom:450.932000pt;}
.yf8{bottom:451.680000pt;}
.ydf{bottom:452.121333pt;}
.y4f{bottom:453.858667pt;}
.y87{bottom:455.930667pt;}
.y127{bottom:459.770667pt;}
.yae{bottom:460.957333pt;}
.y158{bottom:463.601333pt;}
.yde{bottom:464.741333pt;}
.y20{bottom:468.944000pt;}
.yf7{bottom:469.692000pt;}
.y4e{bottom:471.870667pt;}
.y86{bottom:473.942667pt;}
.y126{bottom:476.985333pt;}
.ydd{bottom:477.360000pt;}
.y157{bottom:480.816000pt;}
.yad{bottom:486.940000pt;}
.y1f{bottom:486.956000pt;}
.yf6{bottom:487.704000pt;}
.y4d{bottom:489.884000pt;}
.y85{bottom:491.956000pt;}
.y125{bottom:494.201333pt;}
.ydb{bottom:495.876267pt;}
.ydc{bottom:502.452267pt;}
.y1e{bottom:504.969333pt;}
.yf5{bottom:505.717333pt;}
.y4c{bottom:507.896000pt;}
.yda{bottom:509.027067pt;}
.y84{bottom:509.968000pt;}
.y156{bottom:510.022667pt;}
.y124{bottom:511.417333pt;}
.yac{bottom:517.890667pt;}
.yd9{bottom:522.177867pt;}
.y1d{bottom:522.981333pt;}
.yf4{bottom:523.729333pt;}
.y155{bottom:527.237333pt;}
.y83{bottom:527.981333pt;}
.y123{bottom:528.632000pt;}
.y4b{bottom:533.878667pt;}
.yd8{bottom:535.328667pt;}
.yab{bottom:535.902667pt;}
.y1c{bottom:540.994667pt;}
.yf3{bottom:541.742667pt;}
.y154{bottom:544.453333pt;}
.y122{bottom:545.848000pt;}
.yd7{bottom:548.765067pt;}
.yaa{bottom:553.916000pt;}
.y82{bottom:553.964000pt;}
.y1b{bottom:559.006667pt;}
.yf2{bottom:559.754667pt;}
.y153{bottom:561.669333pt;}
.yd6{bottom:561.915867pt;}
.y121{bottom:563.064000pt;}
.y4a{bottom:564.829333pt;}
.ya9{bottom:571.928000pt;}
.yd5{bottom:575.066667pt;}
.y1a{bottom:577.018667pt;}
.yf1{bottom:577.766667pt;}
.y152{bottom:578.884000pt;}
.y120{bottom:580.278667pt;}
.y81{bottom:584.914667pt;}
.yd4{bottom:594.264267pt;}
.y19{bottom:595.032000pt;}
.y49{bottom:595.780000pt;}
.y151{bottom:596.100000pt;}
.y11f{bottom:597.494667pt;}
.ya8{bottom:597.910667pt;}
.yd2{bottom:602.093067pt;}
.y80{bottom:602.926667pt;}
.y18{bottom:613.044000pt;}
.y150{bottom:613.314667pt;}
.yd3{bottom:613.463067pt;}
.y48{bottom:613.792000pt;}
.y11e{bottom:614.709333pt;}
.y7f{bottom:620.938667pt;}
.ya7{bottom:628.861333pt;}
.y14f{bottom:630.530667pt;}
.y17{bottom:631.057333pt;}
.y47{bottom:631.805333pt;}
.y11d{bottom:631.925333pt;}
.y7e{bottom:638.952000pt;}
.yd1{bottom:640.068000pt;}
.ya6{bottom:646.874667pt;}
.y14e{bottom:647.746667pt;}
.y11c{bottom:649.141333pt;}
.y46{bottom:649.817333pt;}
.y7d{bottom:656.964000pt;}
.y14{bottom:664.529305pt;}
.ya5{bottom:664.886667pt;}
.y14d{bottom:664.961333pt;}
.y11b{bottom:666.356000pt;}
.y45{bottom:667.829333pt;}
.y13{bottom:671.592000pt;}
.yd0{bottom:673.056000pt;}
.y7b{bottom:674.977333pt;}
.y7c{bottom:679.798667pt;}
.y14c{bottom:682.177333pt;}
.ya4{bottom:682.898667pt;}
.y11a{bottom:683.572000pt;}
.y44{bottom:685.842667pt;}
.ycf{bottom:691.068000pt;}
.y79{bottom:692.989333pt;}
.y7a{bottom:697.810667pt;}
.y14b{bottom:699.392000pt;}
.y12{bottom:699.882667pt;}
.y119{bottom:700.786667pt;}
.y43{bottom:703.854667pt;}
.ya3{bottom:708.881333pt;}
.yce{bottom:709.081333pt;}
.y77{bottom:711.001333pt;}
.y78{bottom:715.824000pt;}
.y14a{bottom:716.608000pt;}
.y118{bottom:718.002667pt;}
.y11{bottom:720.361333pt;}
.y42{bottom:721.868000pt;}
.ycd{bottom:727.093333pt;}
.y76{bottom:729.014667pt;}
.y149{bottom:733.824000pt;}
.y117{bottom:735.218667pt;}
.y10{bottom:736.501333pt;}
.y41{bottom:739.880000pt;}
.ya2{bottom:744.216000pt;}
.y75{bottom:747.026667pt;}
.y148{bottom:751.038667pt;}
.y116{bottom:752.433333pt;}
.yf{bottom:752.640000pt;}
.ycc{bottom:753.076000pt;}
.ya1{bottom:756.836000pt;}
.y40{bottom:757.892000pt;}
.ye{bottom:764.440000pt;}
.y74{bottom:765.038667pt;}
.y147{bottom:768.254667pt;}
.y115{bottom:769.649333pt;}
.y3f{bottom:775.905333pt;}
.ya0{bottom:776.125333pt;}
.yd{bottom:784.920000pt;}
.y146{bottom:785.469333pt;}
.y114{bottom:786.864000pt;}
.ycb{bottom:788.410667pt;}
.y9f{bottom:790.737333pt;}
.y73{bottom:791.021333pt;}
.y3e{bottom:793.917333pt;}
.yca{bottom:801.029333pt;}
.yc{bottom:801.058667pt;}
.y145{bottom:802.685333pt;}
.y113{bottom:804.080000pt;}
.y9e{bottom:811.750667pt;}
.y3d{bottom:811.930667pt;}
.yb{bottom:812.858667pt;}
.y144{bottom:819.901333pt;}
.yc9{bottom:820.320000pt;}
.y112{bottom:821.296000pt;}
.y72{bottom:821.972000pt;}
.y9d{bottom:826.362667pt;}
.ya{bottom:828.998667pt;}
.y3c{bottom:829.942667pt;}
.yc8{bottom:834.932000pt;}
.y143{bottom:837.116000pt;}
.y71{bottom:839.985333pt;}
.y9c{bottom:840.974667pt;}
.y111{bottom:846.481333pt;}
.y3b{bottom:847.954667pt;}
.y9{bottom:849.477333pt;}
.yc7{bottom:849.544000pt;}
.y142{bottom:854.332000pt;}
.y70{bottom:857.997333pt;}
.y9b{bottom:861.989333pt;}
.yc6{bottom:864.154667pt;}
.y3a{bottom:865.968000pt;}
.y8{bottom:869.248000pt;}
.y141{bottom:871.546667pt;}
.y6f{bottom:876.010667pt;}
.y9a{bottom:876.601333pt;}
.yc5{bottom:878.766667pt;}
.y110{bottom:881.549333pt;}
.y39{bottom:883.980000pt;}
.y7{bottom:887.260000pt;}
.y140{bottom:888.762667pt;}
.y99{bottom:891.212000pt;}
.yc4{bottom:893.378667pt;}
.y6e{bottom:894.022667pt;}
.y38{bottom:901.993333pt;}
.y10f{bottom:903.029333pt;}
.y13f{bottom:905.978667pt;}
.yc3{bottom:907.990667pt;}
.y6d{bottom:912.034667pt;}
.y98{bottom:912.226667pt;}
.y10e{bottom:916.538667pt;}
.y37{bottom:920.005333pt;}
.yc2{bottom:922.602667pt;}
.y13e{bottom:923.193333pt;}
.y6{bottom:925.198667pt;}
.y97{bottom:926.838667pt;}
.y6c{bottom:930.048000pt;}
.y36{bottom:938.017333pt;}
.y13d{bottom:940.409333pt;}
.yc1{bottom:943.934667pt;}
.y6b{bottom:948.060000pt;}
.y96{bottom:948.169333pt;}
.y10d{bottom:951.526667pt;}
.y5{bottom:952.217333pt;}
.ybf{bottom:952.632000pt;}
.y35{bottom:956.030667pt;}
.y13c{bottom:957.624000pt;}
.y10c{bottom:965.037333pt;}
.yc0{bottom:965.265333pt;}
.y6a{bottom:966.073333pt;}
.y34{bottom:974.042667pt;}
.y13b{bottom:974.840000pt;}
.y95{bottom:976.276000pt;}
.y4{bottom:977.906667pt;}
.y10b{bottom:978.546667pt;}
.y33{bottom:992.056000pt;}
.y94{bottom:993.372000pt;}
.y1{bottom:1011.514648pt;}
.y32{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.h12{height:25.929672pt;}
.h14{height:26.108992pt;}
.h13{height:26.288312pt;}
.h8{height:27.077717pt;}
.h18{height:28.026496pt;}
.hc{height:29.433775pt;}
.h17{height:29.499627pt;}
.hb{height:30.399505pt;}
.h16{height:30.944853pt;}
.h1d{height:31.115606pt;}
.hf{height:31.157387pt;}
.h1e{height:31.330790pt;}
.h20{height:33.712160pt;}
.h19{height:34.572896pt;}
.h9{height:34.811989pt;}
.h1b{height:35.051083pt;}
.h10{height:36.876384pt;}
.hd{height:38.417328pt;}
.he{height:38.683008pt;}
.h4{height:38.948688pt;}
.h2{height:45.272024pt;}
.h15{height:48.024992pt;}
.h7{height:48.482965pt;}
.h6{height:48.488299pt;}
.h11{height:50.921405pt;}
.h1f{height:57.629990pt;}
.h1a{height:64.033323pt;}
.h1c{height:64.038656pt;}
.h5{height:69.149648pt;}
.h3{height:80.531570pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:182.318075pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:51.604685pt;}
.x1{left:102.046672pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.xb{left:113.666667pt;}
.x63{left:122.656000pt;}
.x68{left:124.894533pt;}
.x4{left:129.929333pt;}
.x64{left:137.330667pt;}
.x62{left:139.662667pt;}
.x60{left:147.236000pt;}
.x59{left:153.524000pt;}
.x7c{left:155.704000pt;}
.x5c{left:158.820000pt;}
.x7a{left:160.713333pt;}
.x5b{left:163.148000pt;}
.xc{left:165.724000pt;}
.x8{left:169.917333pt;}
.x49{left:171.012000pt;}
.x41{left:172.412000pt;}
.x31{left:173.817333pt;}
.x4a{left:175.361333pt;}
.x58{left:178.018667pt;}
.x5a{left:179.902667pt;}
.x42{left:182.173333pt;}
.x6f{left:190.780000pt;}
.x70{left:199.666667pt;}
.x24{left:209.520000pt;}
.x2f{left:212.489333pt;}
.x25{left:218.406667pt;}
.x80{left:223.704000pt;}
.x30{left:225.773333pt;}
.x7b{left:228.964000pt;}
.x20{left:230.634667pt;}
.x38{left:235.781067pt;}
.x81{left:237.545333pt;}
.x3e{left:238.529067pt;}
.x3a{left:240.134067pt;}
.x33{left:242.246000pt;}
.x21{left:243.917333pt;}
.x3f{left:249.002067pt;}
.x3c{left:254.014067pt;}
.x3d{left:255.412067pt;}
.x3b{left:257.609067pt;}
.x2d{left:260.634667pt;}
.x39{left:261.635067pt;}
.x40{left:262.577067pt;}
.x36{left:264.607067pt;}
.x5d{left:265.713333pt;}
.x76{left:266.946667pt;}
.x1e{left:272.448000pt;}
.x2e{left:273.918667pt;}
.x2b{left:275.633333pt;}
.x77{left:280.229333pt;}
.x37{left:283.840067pt;}
.x1f{left:285.732000pt;}
.x6d{left:287.428000pt;}
.x2c{left:288.917333pt;}
.x6e{left:296.314667pt;}
.x56{left:305.874667pt;}
.x67{left:309.730533pt;}
.x57{left:319.158667pt;}
.x61{left:339.490667pt;}
.x78{left:341.770667pt;}
.x53{left:348.062667pt;}
.x79{left:350.657333pt;}
.x71{left:353.664000pt;}
.x54{left:357.937333pt;}
.x72{left:366.685333pt;}
.x32{left:369.759067pt;}
.x55{left:375.540000pt;}
.x5e{left:378.972000pt;}
.x5f{left:384.285333pt;}
.x4f{left:388.208000pt;}
.x50{left:392.556000pt;}
.x22{left:396.809333pt;}
.x4b{left:404.417333pt;}
.x23{left:410.093333pt;}
.x75{left:411.117333pt;}
.x4c{left:412.148000pt;}
.x34{left:416.213067pt;}
.x69{left:425.210667pt;}
.x6a{left:430.524000pt;}
.x18{left:436.981333pt;}
.x19{left:443.622667pt;}
.x1a{left:446.973333pt;}
.x6c{left:449.637333pt;}
.x4d{left:455.896000pt;}
.x1b{left:460.257333pt;}
.x1c{left:466.958667pt;}
.x35{left:473.649067pt;}
.x1d{left:480.242667pt;}
.x65{left:483.120000pt;}
.x45{left:484.808000pt;}
.x66{left:488.433333pt;}
.x47{left:489.610667pt;}
.x73{left:494.629333pt;}
.x46{left:498.092000pt;}
.x48{left:502.894667pt;}
.x27{left:504.116000pt;}
.x74{left:507.650667pt;}
.x14{left:514.349333pt;}
.x28{left:516.332000pt;}
.x15{left:527.633333pt;}
.x16{left:530.940000pt;}
.x7e{left:536.970667pt;}
.x17{left:544.224000pt;}
.x7f{left:560.881333pt;}
.x29{left:574.120000pt;}
.x2a{left:583.006667pt;}
.x43{left:615.732000pt;}
.x44{left:621.045333pt;}
.x6{left:623.413314pt;}
.x10{left:631.006667pt;}
.x51{left:632.006667pt;}
.x12{left:636.018667pt;}
.x11{left:637.648000pt;}
.x13{left:642.660000pt;}
.x9{left:643.549333pt;}
.x52{left:647.292000pt;}
.x6b{left:652.794667pt;}
.xd{left:666.021333pt;}
.xe{left:672.662667pt;}
.x26{left:677.192000pt;}
.xf{left:679.437333pt;}
.xa{left:686.389333pt;}
.x4e{left:687.305333pt;}
.x7d{left:690.100000pt;}
}




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