
    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_11a7afce3f9d260a0a510250.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.693000;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_6ec2d7370be8bc4a2171b382.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710000;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_4841d747dc5722abfefd8102.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f282636758280595a49a8dd8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994000;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_3ed42dade1ba516629e1d017.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e065816c860de5bf57ea65b3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0d4f9f2a63611f370fe45e2c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_2fdeb891a716a039f6e8a197.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.663000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bb4eaf554ebc04e14921b4be.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;}
.m6{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);}
.m19{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);}
.m1c{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);}
.m14{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);}
.m7{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m21{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);}
.m1f{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m22{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);}
.m1{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);}
.m17{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);}
.m13{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);}
.m3{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);}
.m8{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);}
.m23{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);}
.m1e{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);}
.mf{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);}
.m1a{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);}
.m4{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);}
.m1b{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);}
.me{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);}
.m15{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m20{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);}
.m11{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);}
.m2{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.md{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:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:31.230300px;}
.v4{vertical-align:32.880000px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.001076px;}
.ls15{letter-spacing:0.001133px;}
.ls21{letter-spacing:0.001155px;}
.ls17{letter-spacing:0.003389px;}
.ls8{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.lsc{letter-spacing:11.836079px;}
.ls6{letter-spacing:11.954850px;}
.lse{letter-spacing:12.402797px;}
.lsd{letter-spacing:12.408077px;}
.ls12{letter-spacing:12.771885px;}
.ls13{letter-spacing:12.777585px;}
.ls22{letter-spacing:13.394711px;}
.ls20{letter-spacing:13.443044px;}
.ls19{letter-spacing:13.448400px;}
.ls1e{letter-spacing:13.454400px;}
.ls1f{letter-spacing:13.457307px;}
.ls1d{letter-spacing:13.589994px;}
.ls1c{letter-spacing:13.668047px;}
.ls1b{letter-spacing:14.615106px;}
.ls14{letter-spacing:14.645022px;}
.lsa{letter-spacing:14.672672px;}
.ls5{letter-spacing:14.942100px;}
.lsb{letter-spacing:14.944200px;}
.ls18{letter-spacing:15.003676px;}
.lsf{letter-spacing:15.063451px;}
.ls1a{letter-spacing:17.668047px;}
.ls10{letter-spacing:18.828785px;}
.ls9{letter-spacing:20.383480px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.ls16{letter-spacing:142.981133px;}
.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;}
}
.ws7{word-spacing:-14.943900px;}
.ws6{word-spacing:-14.355754px;}
.ws8{word-spacing:-13.449600px;}
.ws5f{word-spacing:-12.777120px;}
.ws29{word-spacing:-11.955150px;}
.ws45{word-spacing:-11.835648px;}
.ws5{word-spacing:-11.357400px;}
.wsb3{word-spacing:-2.988780px;}
.ws2b{word-spacing:-2.331248px;}
.wsa7{word-spacing:-1.972595px;}
.wsb{word-spacing:-1.908367px;}
.wsb5{word-spacing:-1.853044px;}
.ws10a{word-spacing:-1.829146px;}
.wsb4{word-spacing:-1.733492px;}
.ws91{word-spacing:-1.494390px;}
.ws92{word-spacing:-1.434614px;}
.wsa{word-spacing:-1.322630px;}
.wsa9{word-spacing:-1.255288px;}
.wsc6{word-spacing:-1.135736px;}
.ws104{word-spacing:-1.075968px;}
.wsc4{word-spacing:-1.075961px;}
.ws32{word-spacing:-0.717307px;}
.wsed{word-spacing:-0.645581px;}
.wse8{word-spacing:-0.537984px;}
.wsa8{word-spacing:-0.418429px;}
.wsd3{word-spacing:-0.376589px;}
.ws66{word-spacing:-0.358654px;}
.ws95{word-spacing:-0.320986px;}
.wsd{word-spacing:-0.320241px;}
.wsf{word-spacing:-0.310985px;}
.ws84{word-spacing:-0.307256px;}
.ws86{word-spacing:-0.307025px;}
.ws11{word-spacing:-0.298878px;}
.ws57{word-spacing:-0.268992px;}
.ws59{word-spacing:-0.243454px;}
.ws6a{word-spacing:-0.242887px;}
.ws37{word-spacing:-0.239102px;}
.ws68{word-spacing:-0.238386px;}
.ws5b{word-spacing:-0.215194px;}
.ws63{word-spacing:-0.190706px;}
.ws7a{word-spacing:-0.179327px;}
.wsd5{word-spacing:-0.161395px;}
.ws34{word-spacing:-0.125032px;}
.ws33{word-spacing:-0.119551px;}
.wsce{word-spacing:-0.107597px;}
.ws35{word-spacing:-0.101592px;}
.wsc{word-spacing:-0.059776px;}
.ws14{word-spacing:-0.058589px;}
.ws16{word-spacing:-0.055060px;}
.ws74{word-spacing:-0.053798px;}
.ws60{word-spacing:-0.051108px;}
.ws2a{word-spacing:-0.047821px;}
.ws13{word-spacing:-0.027273px;}
.ws6c{word-spacing:-0.003008px;}
.ws1{word-spacing:-0.002890px;}
.ws49{word-spacing:-0.002661px;}
.ws4{word-spacing:-0.002333px;}
.ws3{word-spacing:0.000000px;}
.ws72{word-spacing:0.001709px;}
.ws6e{word-spacing:0.004009px;}
.wsd0{word-spacing:0.053798px;}
.ws39{word-spacing:0.059776px;}
.wsd6{word-spacing:0.107597px;}
.ws1b{word-spacing:0.119551px;}
.wsfc{word-spacing:0.161395px;}
.ws1c{word-spacing:0.179327px;}
.wsa4{word-spacing:0.188133px;}
.wse4{word-spacing:0.215194px;}
.ws54{word-spacing:0.239102px;}
.ws10b{word-spacing:0.268992px;}
.ws4f{word-spacing:0.298878px;}
.ws55{word-spacing:0.358654px;}
.ws1e{word-spacing:0.478205px;}
.ws24{word-spacing:0.537980px;}
.ws46{word-spacing:0.575081px;}
.ws47{word-spacing:0.607597px;}
.wsea{word-spacing:0.645581px;}
.ws8f{word-spacing:0.717307px;}
.ws10d{word-spacing:0.753178px;}
.ws26{word-spacing:0.777083px;}
.ws10c{word-spacing:0.806976px;}
.ws9e{word-spacing:0.836858px;}
.wse5{word-spacing:0.860774px;}
.ws53{word-spacing:0.896634px;}
.ws27{word-spacing:0.956410px;}
.ws3f{word-spacing:0.995568px;}
.ws2e{word-spacing:1.016185px;}
.ws112{word-spacing:1.075968px;}
.wse7{word-spacing:1.183565px;}
.ws7f{word-spacing:1.374839px;}
.ws8c{word-spacing:1.434614px;}
.ws89{word-spacing:1.613941px;}
.ws10f{word-spacing:1.650573px;}
.ws10e{word-spacing:1.667750px;}
.ws25{word-spacing:1.673717px;}
.ws18{word-spacing:1.733492px;}
.ws43{word-spacing:2.092146px;}
.ws2c{word-spacing:2.151922px;}
.ws98{word-spacing:2.510575px;}
.wsa0{word-spacing:2.689902px;}
.ws23{word-spacing:3.048556px;}
.ws3a{word-spacing:3.108331px;}
.ws3e{word-spacing:3.126597px;}
.ws3c{word-spacing:3.130862px;}
.wscf{word-spacing:3.224822px;}
.wse1{word-spacing:3.226368px;}
.ws9{word-spacing:3.227904px;}
.wsdb{word-spacing:3.228394px;}
.wsd9{word-spacing:3.335501px;}
.ws77{word-spacing:3.407209px;}
.wsfa{word-spacing:3.449625px;}
.ws2f{word-spacing:3.545555px;}
.wsc3{word-spacing:3.562043px;}
.ws21{word-spacing:3.583475px;}
.ws22{word-spacing:3.586536px;}
.ws114{word-spacing:3.658291px;}
.ws44{word-spacing:3.765863px;}
.wse0{word-spacing:3.819686px;}
.wsb1{word-spacing:3.825638px;}
.wsb0{word-spacing:3.885414px;}
.wsac{word-spacing:3.915275px;}
.wsae{word-spacing:3.920715px;}
.wscd{word-spacing:3.981082px;}
.ws51{word-spacing:4.303843px;}
.wsf8{word-spacing:4.303872px;}
.wsca{word-spacing:4.411469px;}
.wsbb{word-spacing:4.542946px;}
.wsb9{word-spacing:4.556009px;}
.ws1a{word-spacing:4.722272px;}
.wsc9{word-spacing:4.734259px;}
.ws7c{word-spacing:4.897186px;}
.ws7e{word-spacing:4.901599px;}
.ws100{word-spacing:5.003251px;}
.ws108{word-spacing:5.110848px;}
.wsa2{word-spacing:5.260253px;}
.wsf7{word-spacing:5.433638px;}
.ws42{word-spacing:5.439580px;}
.wse3{word-spacing:5.541235px;}
.ws101{word-spacing:5.864026px;}
.wsc1{word-spacing:5.977560px;}
.wsfd{word-spacing:6.240614px;}
.ws106{word-spacing:6.455808px;}
.wscb{word-spacing:6.563405px;}
.ws2d{word-spacing:7.292623px;}
.ws8d{word-spacing:7.890379px;}
.wsf3{word-spacing:8.876736px;}
.wsb6{word-spacing:9.026116px;}
.wscc{word-spacing:9.091930px;}
.wsc0{word-spacing:9.504320px;}
.wsbe{word-spacing:9.508950px;}
.wsde{word-spacing:9.898906px;}
.wsd2{word-spacing:11.728051px;}
.ws105{word-spacing:12.316255px;}
.wsdd{word-spacing:12.696422px;}
.ws5d{word-spacing:12.698560px;}
.ws5e{word-spacing:12.725674px;}
.ws61{word-spacing:12.727954px;}
.wsbc{word-spacing:12.732203px;}
.wsee{word-spacing:12.750948px;}
.ws58{word-spacing:13.156344px;}
.wsf2{word-spacing:13.179551px;}
.ws62{word-spacing:13.205706px;}
.ws5a{word-spacing:13.257633px;}
.wsf4{word-spacing:13.288205px;}
.ws64{word-spacing:13.295789px;}
.ws111{word-spacing:13.386653px;}
.wse2{word-spacing:13.387498px;}
.ws109{word-spacing:13.389158px;}
.wsec{word-spacing:13.389936px;}
.ws103{word-spacing:13.391578px;}
.ws71{word-spacing:13.391846px;}
.wsdf{word-spacing:13.393114px;}
.ws73{word-spacing:13.393469px;}
.wsd4{word-spacing:13.393498px;}
.wsd1{word-spacing:13.395802px;}
.ws107{word-spacing:13.397578px;}
.ws93{word-spacing:13.449510px;}
.wsd7{word-spacing:13.449600px;}
.wse9{word-spacing:13.470040px;}
.ws75{word-spacing:13.500979px;}
.wsf6{word-spacing:13.503398px;}
.wsf9{word-spacing:13.518181px;}
.wsf5{word-spacing:13.519376px;}
.wsf0{word-spacing:13.610995px;}
.wsc7{word-spacing:13.748388px;}
.wsc5{word-spacing:13.761221px;}
.wseb{word-spacing:13.987584px;}
.ws31{word-spacing:14.179346px;}
.ws96{word-spacing:14.513237px;}
.ws97{word-spacing:14.560746px;}
.wse{word-spacing:14.566282px;}
.ws85{word-spacing:14.571671px;}
.ws83{word-spacing:14.573314px;}
.ws67{word-spacing:14.585246px;}
.ws6b{word-spacing:14.642804px;}
.ws38{word-spacing:14.645022px;}
.ws10{word-spacing:14.683232px;}
.ws79{word-spacing:14.704798px;}
.ws9c{word-spacing:14.725450px;}
.ws90{word-spacing:14.731194px;}
.ws69{word-spacing:14.750627px;}
.ws9d{word-spacing:14.757285px;}
.ws52{word-spacing:14.759659px;}
.wsc8{word-spacing:14.764573px;}
.ws9a{word-spacing:14.766862px;}
.ws8a{word-spacing:14.766885px;}
.ws28{word-spacing:14.776565px;}
.wsc2{word-spacing:14.784524px;}
.ws36{word-spacing:14.788605px;}
.ws102{word-spacing:14.794560px;}
.ws30{word-spacing:14.802682px;}
.wsb2{word-spacing:14.812075px;}
.ws81{word-spacing:14.826701px;}
.ws41{word-spacing:14.827386px;}
.ws17{word-spacing:14.828961px;}
.ws82{word-spacing:14.847487px;}
.ws12{word-spacing:14.863219px;}
.ws6f{word-spacing:14.881099px;}
.ws70{word-spacing:14.882008px;}
.ws87{word-spacing:14.882616px;}
.ws20{word-spacing:14.884124px;}
.wsa6{word-spacing:14.933098px;}
.ws65{word-spacing:14.943900px;}
.wsaa{word-spacing:14.949184px;}
.ws15{word-spacing:14.973339px;}
.ws4e{word-spacing:14.996321px;}
.ws6d{word-spacing:15.004733px;}
.ws110{word-spacing:15.060552px;}
.wsa5{word-spacing:15.072713px;}
.ws94{word-spacing:15.150312px;}
.wsa3{word-spacing:15.195898px;}
.ws56{word-spacing:15.219952px;}
.ws1d{word-spacing:15.373584px;}
.ws1f{word-spacing:15.392614px;}
.ws8e{word-spacing:15.591231px;}
.ws9f{word-spacing:15.720983px;}
.ws40{word-spacing:15.884478px;}
.ws80{word-spacing:16.248982px;}
.ws88{word-spacing:16.519570px;}
.wsff{word-spacing:16.613942px;}
.wsf1{word-spacing:16.616832px;}
.ws113{word-spacing:16.617542px;}
.wsef{word-spacing:16.618608px;}
.wsd8{word-spacing:16.618714px;}
.wsdc{word-spacing:16.623706px;}
.wsfb{word-spacing:16.838899px;}
.ws9b{word-spacing:17.036046px;}
.ws99{word-spacing:17.420643px;}
.wsa1{word-spacing:17.584478px;}
.ws3b{word-spacing:18.013687px;}
.ws3d{word-spacing:18.014761px;}
.ws78{word-spacing:18.266526px;}
.wsab{word-spacing:18.470660px;}
.ws8b{word-spacing:18.649987px;}
.wsad{word-spacing:18.769722px;}
.wsaf{word-spacing:18.774592px;}
.ws50{word-spacing:19.208878px;}
.wsba{word-spacing:19.427070px;}
.ws19{word-spacing:19.631537px;}
.wse6{word-spacing:19.744013px;}
.ws7b{word-spacing:19.784276px;}
.ws7d{word-spacing:19.907663px;}
.ws4c{word-spacing:21.456009px;}
.ws4a{word-spacing:21.459440px;}
.wsb8{word-spacing:23.910240px;}
.wsbd{word-spacing:24.396040px;}
.wsbf{word-spacing:24.519428px;}
.ws0{word-spacing:26.792938px;}
.wsda{word-spacing:27.060595px;}
.wsb7{word-spacing:31.236337px;}
.ws2{word-spacing:31.522714px;}
.wsfe{word-spacing:35.829734px;}
.ws4b{word-spacing:36.332003px;}
.ws4d{word-spacing:36.343565px;}
.ws76{word-spacing:128.911622px;}
.ws5c{word-spacing:181.628494px;}
.ws48{word-spacing:189.891137px;}
._0{margin-left:-35.544868px;}
._69{margin-left:-20.915554px;}
._2{margin-left:-11.943245px;}
._7{margin-left:-6.939994px;}
._1{margin-left:-5.917824px;}
._d{margin-left:-4.638574px;}
._3{margin-left:-3.287658px;}
._6{margin-left:-1.936742px;}
._a{width:1.091170px;}
._4{width:3.000686px;}
._5{width:4.101960px;}
._11{width:11.955150px;}
._67{width:12.995228px;}
._f{width:14.465695px;}
._6d{width:15.531929px;}
._9{width:16.677504px;}
._b{width:18.590212px;}
._66{width:19.596052px;}
._e{width:20.622582px;}
._14{width:22.116972px;}
._10{width:24.149342px;}
._68{width:26.361040px;}
._65{width:27.437000px;}
._6b{width:29.116846px;}
._63{width:30.767890px;}
._6a{width:31.860564px;}
._c{width:33.378708px;}
._15{width:35.590445px;}
._64{width:42.739554px;}
._6c{width:46.697011px;}
._8{width:63.858701px;}
._16{width:76.311426px;}
._17{width:78.830434px;}
._46{width:89.388732px;}
._48{width:97.310546px;}
._47{width:99.814861px;}
._18{width:101.147651px;}
._61{width:105.797244px;}
._3e{width:107.787784px;}
._41{width:110.087666px;}
._42{width:112.643090px;}
._40{width:115.128576px;}
._4d{width:116.863397px;}
._56{width:118.625472px;}
._36{width:120.513796px;}
._38{width:122.864786px;}
._37{width:125.369101px;}
._4f{width:127.720092px;}
._52{width:131.786340px;}
._4c{width:133.802001px;}
._35{width:135.641906px;}
._60{width:136.707690px;}
._3f{width:138.146221px;}
._34{width:140.497212px;}
._55{width:148.085476px;}
._3d{width:154.807586px;}
._5e{width:159.431558px;}
._31{width:162.412654px;}
._30{width:167.584706px;}
._43{width:169.884588px;}
._4b{width:172.337795px;}
._4a{width:174.791002px;}
._5f{width:180.493632px;}
._3c{width:185.166023px;}
._39{width:187.976989px;}
._32{width:189.254701px;}
._45{width:190.430196px;}
._58{width:193.943232px;}
._1f{width:197.655322px;}
._59{width:199.161677px;}
._5b{width:206.424461px;}
._3b{width:213.122362px;}
._33{width:215.984436px;}
._5c{width:220.842432px;}
._54{width:227.190643px;}
._5d{width:239.510477px;}
._62{width:240.640243px;}
._2e{width:249.559397px;}
._5a{width:253.121472px;}
._57{width:265.226112px;}
._1e{width:289.310580px;}
._1b{width:297.406163px;}
._19{width:300.312157px;}
._53{width:311.923123px;}
._44{width:333.476367px;}
._24{width:344.038616px;}
._51{width:345.442216px;}
._1a{width:352.739558px;}
._1d{width:355.874264px;}
._22{width:367.709912px;}
._26{width:379.545560px;}
._4e{width:380.901533px;}
._2c{width:391.381208px;}
._28{width:403.169513px;}
._2d{width:412.895764px;}
._2b{width:415.052504px;}
._25{width:425.136476px;}
._2a{width:442.132467px;}
._21{width:465.709078px;}
._20{width:472.573753px;}
._23{width:494.493373px;}
._1c{width:495.582253px;}
._29{width:518.448725px;}
._27{width:520.484456px;}
._2f{width:576.297889px;}
._3a{width:748.068356px;}
._49{width:760.545291px;}
._50{width:773.322411px;}
._12{width:844.078421px;}
._13{width:1937.785511px;}
.fc6{color:rgb(8,117,183);}
.fc5{color:rgb(12,11,11);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(53,30,58);}
.fc7{color:transparent;}
.fc2{color:rgb(90,40,100);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(72,62,33);}
.fs6{font-size:41.842800px;}
.fs9{font-size:41.936104px;}
.fs5{font-size:45.429600px;}
.fs8{font-size:47.236800px;}
.fsf{font-size:47.337600px;}
.fsb{font-size:47.342592px;}
.fsa{font-size:47.820600px;}
.fsc{font-size:49.331040px;}
.fsd{font-size:51.108480px;}
.fs0{font-size:52.914960px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:56.694600px;}
.fs3{font-size:59.775600px;}
.fse{font-size:62.286600px;}
.fs2{font-size:68.033520px;}
.fs4{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y18{bottom:3.425340px;}
.y4{bottom:9.473101px;}
.y17{bottom:14.151273px;}
.y3{bottom:28.937869px;}
.y2{bottom:32.769195px;}
.y33{bottom:63.780000px;}
.y32{bottom:108.612000px;}
.y65{bottom:112.498500px;}
.yf7{bottom:119.058000px;}
.ye1{bottom:120.579000px;}
.y158{bottom:128.325000px;}
.y31{bottom:128.875500px;}
.y64{bottom:132.763500px;}
.yf6{bottom:139.321500px;}
.ye0{bottom:140.842500px;}
.y125{bottom:143.536500px;}
.y92{bottom:143.593500px;}
.yc0{bottom:146.551500px;}
.y157{bottom:147.691500px;}
.y30{bottom:149.139000px;}
.y63{bottom:153.027000px;}
.yf5{bottom:159.585000px;}
.ydf{bottom:161.107500px;}
.y124{bottom:162.904500px;}
.y91{bottom:163.858500px;}
.y156{bottom:167.059500px;}
.y2f{bottom:169.404000px;}
.ybf{bottom:170.268000px;}
.y62{bottom:173.292000px;}
.yf4{bottom:179.850000px;}
.yde{bottom:181.371000px;}
.y123{bottom:182.272500px;}
.y90{bottom:184.122000px;}
.y155{bottom:186.427500px;}
.ybe{bottom:186.780000px;}
.y2e{bottom:189.667500px;}
.y61{bottom:193.555500px;}
.yf3{bottom:200.113500px;}
.ydd{bottom:201.636000px;}
.y121{bottom:201.639000px;}
.y122{bottom:201.847500px;}
.y8f{bottom:204.385500px;}
.y154{bottom:205.794000px;}
.y2d{bottom:209.932500px;}
.ybd{bottom:210.496500px;}
.y60{bottom:213.819000px;}
.y120{bottom:221.007000px;}
.ydc{bottom:221.899500px;}
.y153{bottom:225.162000px;}
.ybc{bottom:227.008500px;}
.yf2{bottom:229.344000px;}
.y2c{bottom:230.196000px;}
.y8e{bottom:233.616000px;}
.y11f{bottom:240.373500px;}
.ydb{bottom:242.163000px;}
.y5f{bottom:243.049500px;}
.y152{bottom:244.528500px;}
.y2b{bottom:250.459500px;}
.ybb{bottom:250.650000px;}
.y11e{bottom:259.741500px;}
.yda{bottom:262.428000px;}
.y151{bottom:263.896500px;}
.yf1{bottom:264.163500px;}
.yba{bottom:267.088500px;}
.y2a{bottom:270.724500px;}
.y8d{bottom:273.367500px;}
.y11d{bottom:279.109500px;}
.yd9{bottom:282.691500px;}
.y150{bottom:283.264500px;}
.yf0{bottom:284.428500px;}
.y5e{bottom:288.712500px;}
.yb9{bottom:290.803500px;}
.y29{bottom:290.988000px;}
.y8c{bottom:294.704700px;}
.y11c{bottom:298.476000px;}
.y14f{bottom:302.631000px;}
.yd8{bottom:302.956500px;}
.yee{bottom:304.692000px;}
.y5d{bottom:309.436920px;}
.yef{bottom:310.116000px;}
.y8b{bottom:310.391100px;}
.y28{bottom:311.253000px;}
.yb8{bottom:314.518500px;}
.y11b{bottom:317.844000px;}
.y14e{bottom:321.999000px;}
.yd7{bottom:323.220000px;}
.y5c{bottom:323.967480px;}
.yec{bottom:324.955500px;}
.y8a{bottom:326.078925px;}
.yed{bottom:330.381000px;}
.yb7{bottom:331.032000px;}
.y27{bottom:331.516500px;}
.y11a{bottom:337.210500px;}
.y5b{bottom:338.499360px;}
.y14d{bottom:341.367000px;}
.y89{bottom:341.766750px;}
.yd6{bottom:343.483500px;}
.yeb{bottom:345.220500px;}
.y5a{bottom:353.031240px;}
.yb6{bottom:354.748500px;}
.y119{bottom:356.578500px;}
.y88{bottom:357.454575px;}
.y14c{bottom:360.733500px;}
.y26{bottom:360.747000px;}
.yd5{bottom:363.748500px;}
.y59{bottom:367.563120px;}
.yb5{bottom:371.260500px;}
.yea{bottom:374.451000px;}
.y118{bottom:375.946500px;}
.y87{bottom:379.983825px;}
.y14b{bottom:380.101500px;}
.y58{bottom:382.093680px;}
.yd4{bottom:384.012000px;}
.yb4{bottom:394.902000px;}
.y117{bottom:395.313000px;}
.y57{bottom:396.625560px;}
.y14a{bottom:399.468000px;}
.y86{bottom:402.513075px;}
.yd3{bottom:404.277000px;}
.ye9{bottom:409.270500px;}
.y56{bottom:411.157440px;}
.yb3{bottom:411.340500px;}
.y116{bottom:414.681000px;}
.y85{bottom:418.200900px;}
.y149{bottom:418.836000px;}
.yd2{bottom:424.540500px;}
.y55{bottom:425.689320px;}
.ye8{bottom:429.534000px;}
.y84{bottom:433.888725px;}
.y115{bottom:434.049000px;}
.yb2{bottom:435.055500px;}
.y25{bottom:437.155500px;}
.y148{bottom:438.204000px;}
.y54{bottom:440.219880px;}
.yd1{bottom:444.804000px;}
.y83{bottom:449.576550px;}
.ye7{bottom:449.799000px;}
.y114{bottom:453.415500px;}
.y53{bottom:454.751760px;}
.y147{bottom:457.570500px;}
.yd0{bottom:465.069000px;}
.y82{bottom:465.262950px;}
.yb1{bottom:466.675500px;}
.y52{bottom:469.283640px;}
.ye6{bottom:470.062500px;}
.y113{bottom:472.783500px;}
.y24{bottom:475.351500px;}
.y146{bottom:476.938500px;}
.y51{bottom:483.815520px;}
.ycf{bottom:485.332500px;}
.y81{bottom:487.793625px;}
.ye5{bottom:490.326000px;}
.y112{bottom:492.150000px;}
.y23{bottom:495.616500px;}
.y145{bottom:496.305000px;}
.y50{bottom:504.684720px;}
.yce{bottom:505.597500px;}
.y80{bottom:510.322875px;}
.yb0{bottom:510.408000px;}
.ye4{bottom:510.591000px;}
.y111{bottom:511.518000px;}
.y144{bottom:515.673000px;}
.y22{bottom:515.880000px;}
.y7d{bottom:525.115800px;}
.ycd{bottom:525.861000px;}
.ye3{bottom:530.854500px;}
.y110{bottom:530.886000px;}
.yaf{bottom:532.183500px;}
.y7f{bottom:532.780875px;}
.y4f{bottom:534.279000px;}
.y143{bottom:535.041000px;}
.y21{bottom:536.145000px;}
.y7c{bottom:540.732375px;}
.ycc{bottom:546.124500px;}
.y7e{bottom:548.397450px;}
.yae{bottom:548.697000px;}
.y10f{bottom:550.252500px;}
.ye2{bottom:551.119500px;}
.y142{bottom:554.407500px;}
.y20{bottom:556.408500px;}
.ycb{bottom:566.389500px;}
.y10e{bottom:569.620500px;}
.y4e{bottom:571.383000px;}
.yad{bottom:572.413500px;}
.y141{bottom:573.775500px;}
.y1f{bottom:576.672000px;}
.y7b{bottom:579.172500px;}
.yca{bottom:586.653000px;}
.yac{bottom:588.925500px;}
.y10d{bottom:588.987000px;}
.y4d{bottom:591.646500px;}
.y140{bottom:593.142000px;}
.y1e{bottom:596.937000px;}
.y7a{bottom:598.405500px;}
.yc9{bottom:606.918000px;}
.y10c{bottom:608.355000px;}
.y4c{bottom:611.911500px;}
.y13f{bottom:612.510000px;}
.yab{bottom:612.567000px;}
.y1d{bottom:617.200500px;}
.yc8{bottom:627.181500px;}
.y10b{bottom:627.723000px;}
.yaa{bottom:629.005500px;}
.y13e{bottom:631.878000px;}
.y4b{bottom:632.175000px;}
.y1c{bottom:637.465500px;}
.y10a{bottom:647.089500px;}
.yc7{bottom:647.445000px;}
.y13d{bottom:651.244500px;}
.y4a{bottom:652.438500px;}
.y79{bottom:652.599000px;}
.ya9{bottom:652.720500px;}
.y1b{bottom:657.729000px;}
.y109{bottom:666.457500px;}
.yc6{bottom:667.710000px;}
.y13c{bottom:670.612500px;}
.y49{bottom:672.703500px;}
.y78{bottom:673.936275px;}
.ya8{bottom:676.435500px;}
.y1a{bottom:677.992500px;}
.y108{bottom:685.824000px;}
.yc5{bottom:687.973500px;}
.y77{bottom:689.624100px;}
.y13b{bottom:689.979000px;}
.ya7{bottom:692.949000px;}
.y48{bottom:692.967000px;}
.y19{bottom:698.257500px;}
.y106{bottom:705.192000px;}
.y76{bottom:705.311925px;}
.y107{bottom:705.400500px;}
.yc4{bottom:708.238500px;}
.y13a{bottom:709.347000px;}
.y47{bottom:713.232000px;}
.ya6{bottom:716.664000px;}
.y75{bottom:720.998325px;}
.yc3{bottom:728.502000px;}
.y139{bottom:728.715000px;}
.y16{bottom:730.513464px;}
.y15{bottom:730.906500px;}
.ya5{bottom:733.177500px;}
.y105{bottom:733.525500px;}
.y74{bottom:736.686150px;}
.y46{bottom:742.462500px;}
.y138{bottom:748.081500px;}
.ya4{bottom:756.819000px;}
.yc2{bottom:757.732500px;}
.y73{bottom:759.215400px;}
.y137{bottom:767.449500px;}
.y14{bottom:770.278500px;}
.y104{bottom:772.978500px;}
.ya3{bottom:773.257500px;}
.y45{bottom:777.282000px;}
.y72{bottom:781.746075px;}
.y136{bottom:786.816000px;}
.y13{bottom:788.436000px;}
.ya2{bottom:796.972500px;}
.y103{bottom:797.142000px;}
.y71{bottom:797.432475px;}
.yc1{bottom:798.912000px;}
.y135{bottom:806.184000px;}
.y12{bottom:806.593500px;}
.y44{bottom:812.101500px;}
.y70{bottom:813.120300px;}
.ya1{bottom:820.687500px;}
.y102{bottom:821.307000px;}
.y134{bottom:825.552000px;}
.y6f{bottom:828.808125px;}
.y11{bottom:829.632000px;}
.y43{bottom:832.365000px;}
.y101{bottom:836.505000px;}
.ya0{bottom:837.201000px;}
.y10{bottom:842.907000px;}
.y6e{bottom:844.495950px;}
.y133{bottom:844.918500px;}
.y100{bottom:851.703000px;}
.y42{bottom:852.628500px;}
.y9f{bottom:860.916000px;}
.y132{bottom:864.286500px;}
.yf{bottom:865.947000px;}
.yff{bottom:866.901000px;}
.y6d{bottom:867.025200px;}
.y41{bottom:872.893500px;}
.y9e{bottom:877.429500px;}
.ye{bottom:879.220500px;}
.yfe{bottom:882.099000px;}
.y131{bottom:883.653000px;}
.y15c{bottom:889.438500px;}
.y6c{bottom:889.554450px;}
.y40{bottom:893.157000px;}
.yfd{bottom:897.297000px;}
.yd{bottom:897.378000px;}
.y9d{bottom:901.069500px;}
.y130{bottom:903.021000px;}
.y69{bottom:904.348800px;}
.y15b{bottom:908.805000px;}
.y6b{bottom:912.013875px;}
.y3f{bottom:913.422000px;}
.yc{bottom:915.535500px;}
.y9c{bottom:917.508000px;}
.y68{bottom:919.965375px;}
.y12f{bottom:922.389000px;}
.y6a{bottom:927.630450px;}
.y15a{bottom:928.173000px;}
.yfc{bottom:930.427500px;}
.y3e{bottom:933.685500px;}
.yb{bottom:938.574000px;}
.y9b{bottom:941.224500px;}
.y12e{bottom:941.755500px;}
.yfb{bottom:950.692500px;}
.y3d{bottom:953.949000px;}
.ya{bottom:957.639000px;}
.y67{bottom:958.405500px;}
.y12d{bottom:961.123500px;}
.y9a{bottom:964.939500px;}
.yfa{bottom:970.956000px;}
.y3c{bottom:974.214000px;}
.y66{bottom:977.638500px;}
.y9{bottom:977.904000px;}
.y12c{bottom:980.490000px;}
.y99{bottom:981.453000px;}
.yf9{bottom:991.219500px;}
.y3b{bottom:994.477500px;}
.y8{bottom:998.167500px;}
.y12b{bottom:999.858000px;}
.y98{bottom:1005.168000px;}
.y3a{bottom:1014.742500px;}
.y12a{bottom:1019.226000px;}
.yf8{bottom:1020.450000px;}
.y97{bottom:1021.681500px;}
.y39{bottom:1035.006000px;}
.y129{bottom:1038.592500px;}
.y7{bottom:1040.848500px;}
.y96{bottom:1045.321500px;}
.y38{bottom:1055.269500px;}
.y128{bottom:1057.960500px;}
.y95{bottom:1061.760000px;}
.y6{bottom:1071.244500px;}
.y37{bottom:1075.534500px;}
.y127{bottom:1077.327000px;}
.y94{bottom:1085.476500px;}
.y36{bottom:1095.798000px;}
.y126{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y35{bottom:1116.063000px;}
.y159{bottom:1116.271500px;}
.y93{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y34{bottom:1168.366500px;}
.hc{height:25.508090px;}
.ha{height:30.461558px;}
.h20{height:31.526842px;}
.h21{height:33.072749px;}
.he{height:33.112997px;}
.hd{height:34.199443px;}
.h12{height:34.228694px;}
.h13{height:34.465407px;}
.h14{height:34.702120px;}
.h15{height:34.813397px;}
.h11{height:35.052500px;}
.h3{height:35.876343px;}
.h18{height:36.951431px;}
.h1b{height:37.206973px;}
.h1a{height:37.462516px;}
.h16{height:38.896243px;}
.hb{height:39.165235px;}
.h4{height:39.402747px;}
.h17{height:39.434227px;}
.h1f{height:41.482876px;}
.hf{height:43.217759px;}
.h10{height:43.516637px;}
.h6{height:43.815515px;}
.h5{height:46.126727px;}
.h2{height:50.931027px;}
.h9{height:54.541601px;}
.h8{height:54.547601px;}
.h22{height:54.768749px;}
.h19{height:68.181731px;}
.h1c{height:68.187431px;}
.h1e{height:71.770243px;}
.h1d{height:71.776243px;}
.h7{height:77.792486px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:29.274117px;}
.x3{left:60.027581px;}
.x4{left:113.161500px;}
.x1{left:114.802500px;}
.x7{left:122.110500px;}
.x5{left:123.307500px;}
.x2b{left:125.139240px;}
.x30{left:131.761275px;}
.x2f{left:141.197625px;}
.x6{left:145.794000px;}
.x68{left:147.075000px;}
.x34{left:151.450500px;}
.x33{left:152.677425px;}
.x32{left:156.593325px;}
.x2d{left:160.384560px;}
.x27{left:164.955000px;}
.x28{left:172.433520px;}
.x2c{left:174.534960px;}
.x51{left:177.583500px;}
.x3b{left:179.347500px;}
.x2{left:181.274369px;}
.x3a{left:184.801500px;}
.x3f{left:186.342000px;}
.xa{left:188.344500px;}
.x2a{left:189.351960px;}
.x52{left:192.528000px;}
.x46{left:193.980000px;}
.x29{left:195.104520px;}
.xd{left:198.063000px;}
.x3e{left:201.042000px;}
.xe{left:205.536000px;}
.xf{left:209.346000px;}
.x6a{left:212.545500px;}
.x69{left:214.086000px;}
.x5b{left:215.545500px;}
.x10{left:216.819000px;}
.x2e{left:226.872000px;}
.x47{left:231.408000px;}
.x4d{left:241.662000px;}
.x41{left:252.603000px;}
.x79{left:254.101500px;}
.x38{left:255.601500px;}
.x4e{left:256.606500px;}
.x11{left:258.517500px;}
.x12{left:265.990500px;}
.x4f{left:268.153500px;}
.x60{left:272.211000px;}
.x13{left:273.357000px;}
.x3c{left:275.128500px;}
.x3d{left:278.269500px;}
.x14{left:280.830000px;}
.x43{left:281.853000px;}
.x50{left:283.098000px;}
.x61{left:284.502000px;}
.x15{left:295.729500px;}
.x21{left:297.229500px;}
.x36{left:303.157500px;}
.x62{left:306.003000px;}
.x16{left:310.674000px;}
.x22{left:312.172500px;}
.x53{left:315.418500px;}
.x37{left:318.100500px;}
.xb{left:324.427500px;}
.x54{left:330.361500px;}
.xc{left:331.899000px;}
.x55{left:350.850000px;}
.x19{left:366.285000px;}
.x48{left:368.301000px;}
.x71{left:370.318500px;}
.x70{left:371.859000px;}
.x40{left:373.621500px;}
.x1a{left:381.229500px;}
.x49{left:383.244000px;}
.x1b{left:385.039500px;}
.x31{left:386.655300px;}
.x35{left:390.193575px;}
.x67{left:391.783500px;}
.x1c{left:399.984000px;}
.x39{left:404.058000px;}
.x45{left:405.483000px;}
.x23{left:413.310000px;}
.x44{left:418.072500px;}
.x42{left:421.804500px;}
.x24{left:428.254500px;}
.x4a{left:443.136000px;}
.x4b{left:446.946000px;}
.x4c{left:461.890500px;}
.x58{left:485.020500px;}
.x59{left:499.965000px;}
.x5c{left:504.403500px;}
.x5e{left:506.712000px;}
.x5d{left:519.348000px;}
.x5f{left:521.655000px;}
.x6c{left:550.944000px;}
.x6b{left:552.484500px;}
.x1f{left:570.790500px;}
.x20{left:585.733500px;}
.x17{left:589.924500px;}
.x56{left:591.315000px;}
.x18{left:597.396000px;}
.x57{left:606.259500px;}
.x63{left:607.663500px;}
.x5a{left:611.821500px;}
.x64{left:622.606500px;}
.x1d{left:643.276500px;}
.x1e{left:658.219500px;}
.x74{left:662.866500px;}
.x72{left:664.072500px;}
.x6f{left:674.089500px;}
.x76{left:675.768000px;}
.x75{left:689.766000px;}
.x73{left:690.972000px;}
.x8{left:701.339982px;}
.x77{left:702.667500px;}
.x65{left:724.474500px;}
.x6d{left:727.809000px;}
.x78{left:729.322500px;}
.x66{left:738.678000px;}
.x6e{left:754.708500px;}
.x25{left:757.131000px;}
.x26{left:772.074000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:27.760267pt;}
.v4{vertical-align:29.226667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000957pt;}
.ls15{letter-spacing:0.001007pt;}
.ls21{letter-spacing:0.001026pt;}
.ls17{letter-spacing:0.003012pt;}
.ls8{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.lsc{letter-spacing:10.520959pt;}
.ls6{letter-spacing:10.626533pt;}
.lse{letter-spacing:11.024709pt;}
.lsd{letter-spacing:11.029402pt;}
.ls12{letter-spacing:11.352787pt;}
.ls13{letter-spacing:11.357853pt;}
.ls22{letter-spacing:11.906410pt;}
.ls20{letter-spacing:11.949373pt;}
.ls19{letter-spacing:11.954133pt;}
.ls1e{letter-spacing:11.959467pt;}
.ls1f{letter-spacing:11.962051pt;}
.ls1d{letter-spacing:12.079995pt;}
.ls1c{letter-spacing:12.149375pt;}
.ls1b{letter-spacing:12.991205pt;}
.ls14{letter-spacing:13.017797pt;}
.lsa{letter-spacing:13.042375pt;}
.ls5{letter-spacing:13.281867pt;}
.lsb{letter-spacing:13.283733pt;}
.ls18{letter-spacing:13.336601pt;}
.lsf{letter-spacing:13.389734pt;}
.ls1a{letter-spacing:15.704931pt;}
.ls10{letter-spacing:16.736698pt;}
.ls9{letter-spacing:18.118649pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ls16{letter-spacing:127.094340pt;}
.ws7{word-spacing:-13.283467pt;}
.ws6{word-spacing:-12.760670pt;}
.ws8{word-spacing:-11.955200pt;}
.ws5f{word-spacing:-11.357440pt;}
.ws29{word-spacing:-10.626800pt;}
.ws45{word-spacing:-10.520576pt;}
.ws5{word-spacing:-10.095467pt;}
.wsb3{word-spacing:-2.656693pt;}
.ws2b{word-spacing:-2.072221pt;}
.wsa7{word-spacing:-1.753418pt;}
.wsb{word-spacing:-1.696326pt;}
.wsb5{word-spacing:-1.647150pt;}
.ws10a{word-spacing:-1.625907pt;}
.wsb4{word-spacing:-1.540882pt;}
.ws91{word-spacing:-1.328347pt;}
.ws92{word-spacing:-1.275213pt;}
.wsa{word-spacing:-1.175671pt;}
.wsa9{word-spacing:-1.115811pt;}
.wsc6{word-spacing:-1.009543pt;}
.ws104{word-spacing:-0.956416pt;}
.wsc4{word-spacing:-0.956410pt;}
.ws32{word-spacing:-0.637606pt;}
.wsed{word-spacing:-0.573850pt;}
.wse8{word-spacing:-0.478208pt;}
.wsa8{word-spacing:-0.371937pt;}
.wsd3{word-spacing:-0.334746pt;}
.ws66{word-spacing:-0.318803pt;}
.ws95{word-spacing:-0.285321pt;}
.wsd{word-spacing:-0.284658pt;}
.wsf{word-spacing:-0.276431pt;}
.ws84{word-spacing:-0.273117pt;}
.ws86{word-spacing:-0.272911pt;}
.ws11{word-spacing:-0.265669pt;}
.ws57{word-spacing:-0.239104pt;}
.ws59{word-spacing:-0.216404pt;}
.ws6a{word-spacing:-0.215900pt;}
.ws37{word-spacing:-0.212535pt;}
.ws68{word-spacing:-0.211899pt;}
.ws5b{word-spacing:-0.191283pt;}
.ws63{word-spacing:-0.169516pt;}
.ws7a{word-spacing:-0.159402pt;}
.wsd5{word-spacing:-0.143462pt;}
.ws34{word-spacing:-0.111139pt;}
.ws33{word-spacing:-0.106268pt;}
.wsce{word-spacing:-0.095642pt;}
.ws35{word-spacing:-0.090304pt;}
.wsc{word-spacing:-0.053134pt;}
.ws14{word-spacing:-0.052079pt;}
.ws16{word-spacing:-0.048942pt;}
.ws74{word-spacing:-0.047821pt;}
.ws60{word-spacing:-0.045430pt;}
.ws2a{word-spacing:-0.042507pt;}
.ws13{word-spacing:-0.024242pt;}
.ws6c{word-spacing:-0.002674pt;}
.ws1{word-spacing:-0.002569pt;}
.ws49{word-spacing:-0.002365pt;}
.ws4{word-spacing:-0.002074pt;}
.ws3{word-spacing:0.000000pt;}
.ws72{word-spacing:0.001519pt;}
.ws6e{word-spacing:0.003564pt;}
.wsd0{word-spacing:0.047821pt;}
.ws39{word-spacing:0.053134pt;}
.wsd6{word-spacing:0.095642pt;}
.ws1b{word-spacing:0.106268pt;}
.wsfc{word-spacing:0.143462pt;}
.ws1c{word-spacing:0.159402pt;}
.wsa4{word-spacing:0.167229pt;}
.wse4{word-spacing:0.191283pt;}
.ws54{word-spacing:0.212535pt;}
.ws10b{word-spacing:0.239104pt;}
.ws4f{word-spacing:0.265669pt;}
.ws55{word-spacing:0.318803pt;}
.ws1e{word-spacing:0.425071pt;}
.ws24{word-spacing:0.478205pt;}
.ws46{word-spacing:0.511183pt;}
.ws47{word-spacing:0.540086pt;}
.wsea{word-spacing:0.573850pt;}
.ws8f{word-spacing:0.637606pt;}
.ws10d{word-spacing:0.669491pt;}
.ws26{word-spacing:0.690740pt;}
.ws10c{word-spacing:0.717312pt;}
.ws9e{word-spacing:0.743874pt;}
.wse5{word-spacing:0.765133pt;}
.ws53{word-spacing:0.797008pt;}
.ws27{word-spacing:0.850142pt;}
.ws3f{word-spacing:0.884949pt;}
.ws2e{word-spacing:0.903276pt;}
.ws112{word-spacing:0.956416pt;}
.wse7{word-spacing:1.052058pt;}
.ws7f{word-spacing:1.222079pt;}
.ws8c{word-spacing:1.275213pt;}
.ws89{word-spacing:1.434614pt;}
.ws10f{word-spacing:1.467176pt;}
.ws10e{word-spacing:1.482445pt;}
.ws25{word-spacing:1.487748pt;}
.ws18{word-spacing:1.540882pt;}
.ws43{word-spacing:1.859685pt;}
.ws2c{word-spacing:1.912819pt;}
.ws98{word-spacing:2.231622pt;}
.wsa0{word-spacing:2.391024pt;}
.ws23{word-spacing:2.709827pt;}
.ws3a{word-spacing:2.762961pt;}
.ws3e{word-spacing:2.779198pt;}
.ws3c{word-spacing:2.782988pt;}
.wscf{word-spacing:2.866509pt;}
.wse1{word-spacing:2.867883pt;}
.ws9{word-spacing:2.869248pt;}
.wsdb{word-spacing:2.869683pt;}
.wsd9{word-spacing:2.964890pt;}
.ws77{word-spacing:3.028630pt;}
.wsfa{word-spacing:3.066334pt;}
.ws2f{word-spacing:3.151604pt;}
.wsc3{word-spacing:3.166261pt;}
.ws21{word-spacing:3.185311pt;}
.ws22{word-spacing:3.188032pt;}
.ws114{word-spacing:3.251814pt;}
.ws44{word-spacing:3.347434pt;}
.wse0{word-spacing:3.395277pt;}
.wsb1{word-spacing:3.400567pt;}
.wsb0{word-spacing:3.453701pt;}
.wsac{word-spacing:3.480244pt;}
.wsae{word-spacing:3.485080pt;}
.wscd{word-spacing:3.538739pt;}
.ws51{word-spacing:3.825638pt;}
.wsf8{word-spacing:3.825664pt;}
.wsca{word-spacing:3.921306pt;}
.wsbb{word-spacing:4.038174pt;}
.wsb9{word-spacing:4.049786pt;}
.ws1a{word-spacing:4.197575pt;}
.wsc9{word-spacing:4.208230pt;}
.ws7c{word-spacing:4.353054pt;}
.ws7e{word-spacing:4.356977pt;}
.ws100{word-spacing:4.447334pt;}
.ws108{word-spacing:4.542976pt;}
.wsa2{word-spacing:4.675780pt;}
.wsf7{word-spacing:4.829901pt;}
.ws42{word-spacing:4.835182pt;}
.wse3{word-spacing:4.925542pt;}
.ws101{word-spacing:5.212467pt;}
.wsc1{word-spacing:5.313387pt;}
.wsfd{word-spacing:5.547213pt;}
.ws106{word-spacing:5.738496pt;}
.wscb{word-spacing:5.834138pt;}
.ws2d{word-spacing:6.482332pt;}
.ws8d{word-spacing:7.013670pt;}
.wsf3{word-spacing:7.890432pt;}
.wsb6{word-spacing:8.023214pt;}
.wscc{word-spacing:8.081715pt;}
.wsc0{word-spacing:8.448285pt;}
.wsbe{word-spacing:8.452400pt;}
.wsde{word-spacing:8.799027pt;}
.wsd2{word-spacing:10.424934pt;}
.ws105{word-spacing:10.947782pt;}
.wsdd{word-spacing:11.285709pt;}
.ws5d{word-spacing:11.287609pt;}
.ws5e{word-spacing:11.311710pt;}
.ws61{word-spacing:11.313737pt;}
.wsbc{word-spacing:11.317514pt;}
.wsee{word-spacing:11.334176pt;}
.ws58{word-spacing:11.694528pt;}
.wsf2{word-spacing:11.715156pt;}
.ws62{word-spacing:11.738406pt;}
.ws5a{word-spacing:11.784562pt;}
.wsf4{word-spacing:11.811738pt;}
.ws64{word-spacing:11.818479pt;}
.ws111{word-spacing:11.899247pt;}
.wse2{word-spacing:11.899998pt;}
.ws109{word-spacing:11.901474pt;}
.wsec{word-spacing:11.902165pt;}
.ws103{word-spacing:11.903625pt;}
.ws71{word-spacing:11.903863pt;}
.wsdf{word-spacing:11.904990pt;}
.ws73{word-spacing:11.905306pt;}
.wsd4{word-spacing:11.905331pt;}
.wsd1{word-spacing:11.907379pt;}
.ws107{word-spacing:11.908958pt;}
.ws93{word-spacing:11.955120pt;}
.wsd7{word-spacing:11.955200pt;}
.wse9{word-spacing:11.973369pt;}
.ws75{word-spacing:12.000870pt;}
.wsf6{word-spacing:12.003021pt;}
.wsf9{word-spacing:12.016161pt;}
.wsf5{word-spacing:12.017223pt;}
.wsf0{word-spacing:12.098662pt;}
.wsc7{word-spacing:12.220789pt;}
.wsc5{word-spacing:12.232196pt;}
.wseb{word-spacing:12.433408pt;}
.ws31{word-spacing:12.603863pt;}
.ws96{word-spacing:12.900655pt;}
.ws97{word-spacing:12.942886pt;}
.wse{word-spacing:12.947806pt;}
.ws85{word-spacing:12.952596pt;}
.ws83{word-spacing:12.954057pt;}
.ws67{word-spacing:12.964663pt;}
.ws6b{word-spacing:13.015826pt;}
.ws38{word-spacing:13.017797pt;}
.ws10{word-spacing:13.051762pt;}
.ws79{word-spacing:13.070931pt;}
.ws9c{word-spacing:13.089289pt;}
.ws90{word-spacing:13.094395pt;}
.ws69{word-spacing:13.111668pt;}
.ws9d{word-spacing:13.117587pt;}
.ws52{word-spacing:13.119697pt;}
.wsc8{word-spacing:13.124065pt;}
.ws9a{word-spacing:13.126099pt;}
.ws8a{word-spacing:13.126120pt;}
.ws28{word-spacing:13.134725pt;}
.wsc2{word-spacing:13.141799pt;}
.ws36{word-spacing:13.145426pt;}
.ws102{word-spacing:13.150720pt;}
.ws30{word-spacing:13.157940pt;}
.wsb2{word-spacing:13.166289pt;}
.ws81{word-spacing:13.179290pt;}
.ws41{word-spacing:13.179899pt;}
.ws17{word-spacing:13.181299pt;}
.ws82{word-spacing:13.197766pt;}
.ws12{word-spacing:13.211751pt;}
.ws6f{word-spacing:13.227644pt;}
.ws70{word-spacing:13.228451pt;}
.ws87{word-spacing:13.228992pt;}
.ws20{word-spacing:13.230333pt;}
.wsa6{word-spacing:13.273865pt;}
.ws65{word-spacing:13.283467pt;}
.wsaa{word-spacing:13.288164pt;}
.ws15{word-spacing:13.309634pt;}
.ws4e{word-spacing:13.330063pt;}
.ws6d{word-spacing:13.337540pt;}
.ws110{word-spacing:13.387158pt;}
.wsa5{word-spacing:13.397968pt;}
.ws94{word-spacing:13.466944pt;}
.wsa3{word-spacing:13.507465pt;}
.ws56{word-spacing:13.528846pt;}
.ws1d{word-spacing:13.665408pt;}
.ws1f{word-spacing:13.682323pt;}
.ws8e{word-spacing:13.858872pt;}
.ws9f{word-spacing:13.974207pt;}
.ws40{word-spacing:14.119536pt;}
.ws80{word-spacing:14.443539pt;}
.ws88{word-spacing:14.684062pt;}
.wsff{word-spacing:14.767949pt;}
.wsf1{word-spacing:14.770517pt;}
.ws113{word-spacing:14.771149pt;}
.wsef{word-spacing:14.772096pt;}
.wsd8{word-spacing:14.772190pt;}
.wsdc{word-spacing:14.776627pt;}
.wsfb{word-spacing:14.967910pt;}
.ws9b{word-spacing:15.143152pt;}
.ws99{word-spacing:15.485016pt;}
.wsa1{word-spacing:15.630647pt;}
.ws3b{word-spacing:16.012167pt;}
.ws3d{word-spacing:16.013120pt;}
.ws78{word-spacing:16.236912pt;}
.wsab{word-spacing:16.418365pt;}
.ws8b{word-spacing:16.577766pt;}
.wsad{word-spacing:16.684198pt;}
.wsaf{word-spacing:16.688526pt;}
.ws50{word-spacing:17.074558pt;}
.wsba{word-spacing:17.268507pt;}
.ws19{word-spacing:17.450255pt;}
.wse6{word-spacing:17.550234pt;}
.ws7b{word-spacing:17.586023pt;}
.ws7d{word-spacing:17.695701pt;}
.ws4c{word-spacing:19.072008pt;}
.ws4a{word-spacing:19.075058pt;}
.wsb8{word-spacing:21.253547pt;}
.wsbd{word-spacing:21.685369pt;}
.wsbf{word-spacing:21.795047pt;}
.ws0{word-spacing:23.815945pt;}
.wsda{word-spacing:24.053862pt;}
.wsb7{word-spacing:27.765633pt;}
.ws2{word-spacing:28.020190pt;}
.wsfe{word-spacing:31.848653pt;}
.ws4b{word-spacing:32.295113pt;}
.ws4d{word-spacing:32.305391pt;}
.ws76{word-spacing:114.588109pt;}
.ws5c{word-spacing:161.447550pt;}
.ws48{word-spacing:168.792121pt;}
._0{margin-left:-31.595439pt;}
._69{margin-left:-18.591603pt;}
._2{margin-left:-10.616218pt;}
._7{margin-left:-6.168883pt;}
._1{margin-left:-5.260288pt;}
._d{margin-left:-4.123177pt;}
._3{margin-left:-2.922363pt;}
._6{margin-left:-1.721549pt;}
._a{width:0.969929pt;}
._4{width:2.667277pt;}
._5{width:3.646187pt;}
._11{width:10.626800pt;}
._67{width:11.551314pt;}
._f{width:12.858396pt;}
._6d{width:13.806159pt;}
._9{width:14.824448pt;}
._b{width:16.524633pt;}
._66{width:17.418713pt;}
._e{width:18.331184pt;}
._14{width:19.659531pt;}
._10{width:21.466082pt;}
._68{width:23.432035pt;}
._65{width:24.388445pt;}
._6b{width:25.881641pt;}
._63{width:27.349236pt;}
._6a{width:28.320501pt;}
._c{width:29.669963pt;}
._15{width:31.635951pt;}
._64{width:37.990715pt;}
._6c{width:41.508454pt;}
._8{width:56.763290pt;}
._16{width:67.832379pt;}
._17{width:70.071497pt;}
._46{width:79.456650pt;}
._48{width:86.498263pt;}
._47{width:88.724321pt;}
._18{width:89.909023pt;}
._61{width:94.041994pt;}
._3e{width:95.811364pt;}
._41{width:97.855703pt;}
._42{width:100.127191pt;}
._40{width:102.336512pt;}
._4d{width:103.878575pt;}
._56{width:105.444864pt;}
._36{width:107.123374pt;}
._38{width:109.213143pt;}
._37{width:111.439201pt;}
._4f{width:113.528970pt;}
._52{width:117.143414pt;}
._4c{width:118.935112pt;}
._35{width:120.570583pt;}
._60{width:121.517947pt;}
._3f{width:122.796641pt;}
._34{width:124.886410pt;}
._55{width:131.631534pt;}
._3d{width:137.606743pt;}
._5e{width:141.716941pt;}
._31{width:144.366803pt;}
._30{width:148.964183pt;}
._43{width:151.008522pt;}
._4b{width:153.189151pt;}
._4a{width:155.369779pt;}
._5f{width:160.438784pt;}
._3c{width:164.592020pt;}
._39{width:167.090657pt;}
._32{width:168.226401pt;}
._45{width:169.271286pt;}
._58{width:172.393984pt;}
._1f{width:175.693619pt;}
._59{width:177.032602pt;}
._5b{width:183.488410pt;}
._3b{width:189.442099pt;}
._33{width:191.986166pt;}
._5c{width:196.304384pt;}
._54{width:201.947238pt;}
._5d{width:212.898202pt;}
._62{width:213.902438pt;}
._2e{width:221.830575pt;}
._5a{width:224.996864pt;}
._57{width:235.756544pt;}
._1e{width:257.164960pt;}
._1b{width:264.361034pt;}
._19{width:266.944139pt;}
._53{width:277.264998pt;}
._44{width:296.423437pt;}
._24{width:305.812103pt;}
._51{width:307.059748pt;}
._1a{width:313.546273pt;}
._1d{width:316.332679pt;}
._22{width:326.853255pt;}
._26{width:337.373831pt;}
._4e{width:338.579141pt;}
._2c{width:347.894407pt;}
._28{width:358.372901pt;}
._2d{width:367.018457pt;}
._2b{width:368.935559pt;}
._25{width:377.899090pt;}
._2a{width:393.006637pt;}
._21{width:413.963624pt;}
._20{width:420.065559pt;}
._23{width:439.549665pt;}
._1c{width:440.517558pt;}
._29{width:460.843311pt;}
._27{width:462.652850pt;}
._2f{width:512.264790pt;}
._3a{width:664.949650pt;}
._49{width:676.040259pt;}
._50{width:687.397699pt;}
._12{width:750.291930pt;}
._13{width:1722.476010pt;}
.fs6{font-size:37.193600pt;}
.fs9{font-size:37.276537pt;}
.fs5{font-size:40.381867pt;}
.fs8{font-size:41.988267pt;}
.fsf{font-size:42.077867pt;}
.fsb{font-size:42.082304pt;}
.fsa{font-size:42.507200pt;}
.fsc{font-size:43.849813pt;}
.fsd{font-size:45.429760pt;}
.fs0{font-size:47.035520pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:50.395200pt;}
.fs3{font-size:53.133867pt;}
.fse{font-size:55.365867pt;}
.fs2{font-size:60.474240pt;}
.fs4{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:3.044747pt;}
.y4{bottom:8.420534pt;}
.y17{bottom:12.578910pt;}
.y3{bottom:25.722550pt;}
.y2{bottom:29.128174pt;}
.y33{bottom:56.693333pt;}
.y32{bottom:96.544000pt;}
.y65{bottom:99.998667pt;}
.yf7{bottom:105.829333pt;}
.ye1{bottom:107.181333pt;}
.y158{bottom:114.066667pt;}
.y31{bottom:114.556000pt;}
.y64{bottom:118.012000pt;}
.yf6{bottom:123.841333pt;}
.ye0{bottom:125.193333pt;}
.y125{bottom:127.588000pt;}
.y92{bottom:127.638667pt;}
.yc0{bottom:130.268000pt;}
.y157{bottom:131.281333pt;}
.y30{bottom:132.568000pt;}
.y63{bottom:136.024000pt;}
.yf5{bottom:141.853333pt;}
.ydf{bottom:143.206667pt;}
.y124{bottom:144.804000pt;}
.y91{bottom:145.652000pt;}
.y156{bottom:148.497333pt;}
.y2f{bottom:150.581333pt;}
.ybf{bottom:151.349333pt;}
.y62{bottom:154.037333pt;}
.yf4{bottom:159.866667pt;}
.yde{bottom:161.218667pt;}
.y123{bottom:162.020000pt;}
.y90{bottom:163.664000pt;}
.y155{bottom:165.713333pt;}
.ybe{bottom:166.026667pt;}
.y2e{bottom:168.593333pt;}
.y61{bottom:172.049333pt;}
.yf3{bottom:177.878667pt;}
.ydd{bottom:179.232000pt;}
.y121{bottom:179.234667pt;}
.y122{bottom:179.420000pt;}
.y8f{bottom:181.676000pt;}
.y154{bottom:182.928000pt;}
.y2d{bottom:186.606667pt;}
.ybd{bottom:187.108000pt;}
.y60{bottom:190.061333pt;}
.y120{bottom:196.450667pt;}
.ydc{bottom:197.244000pt;}
.y153{bottom:200.144000pt;}
.ybc{bottom:201.785333pt;}
.yf2{bottom:203.861333pt;}
.y2c{bottom:204.618667pt;}
.y8e{bottom:207.658667pt;}
.y11f{bottom:213.665333pt;}
.ydb{bottom:215.256000pt;}
.y5f{bottom:216.044000pt;}
.y152{bottom:217.358667pt;}
.y2b{bottom:222.630667pt;}
.ybb{bottom:222.800000pt;}
.y11e{bottom:230.881333pt;}
.yda{bottom:233.269333pt;}
.y151{bottom:234.574667pt;}
.yf1{bottom:234.812000pt;}
.yba{bottom:237.412000pt;}
.y2a{bottom:240.644000pt;}
.y8d{bottom:242.993333pt;}
.y11d{bottom:248.097333pt;}
.yd9{bottom:251.281333pt;}
.y150{bottom:251.790667pt;}
.yf0{bottom:252.825333pt;}
.y5e{bottom:256.633333pt;}
.yb9{bottom:258.492000pt;}
.y29{bottom:258.656000pt;}
.y8c{bottom:261.959733pt;}
.y11c{bottom:265.312000pt;}
.y14f{bottom:269.005333pt;}
.yd8{bottom:269.294667pt;}
.yee{bottom:270.837333pt;}
.y5d{bottom:275.055040pt;}
.yef{bottom:275.658667pt;}
.y8b{bottom:275.903200pt;}
.y28{bottom:276.669333pt;}
.yb8{bottom:279.572000pt;}
.y11b{bottom:282.528000pt;}
.y14e{bottom:286.221333pt;}
.yd7{bottom:287.306667pt;}
.y5c{bottom:287.971093pt;}
.yec{bottom:288.849333pt;}
.y8a{bottom:289.847933pt;}
.yed{bottom:293.672000pt;}
.yb7{bottom:294.250667pt;}
.y27{bottom:294.681333pt;}
.y11a{bottom:299.742667pt;}
.y5b{bottom:300.888320pt;}
.y14d{bottom:303.437333pt;}
.y89{bottom:303.792667pt;}
.yd6{bottom:305.318667pt;}
.yeb{bottom:306.862667pt;}
.y5a{bottom:313.805547pt;}
.yb6{bottom:315.332000pt;}
.y119{bottom:316.958667pt;}
.y88{bottom:317.737400pt;}
.y14c{bottom:320.652000pt;}
.y26{bottom:320.664000pt;}
.yd5{bottom:323.332000pt;}
.y59{bottom:326.722773pt;}
.yb5{bottom:330.009333pt;}
.yea{bottom:332.845333pt;}
.y118{bottom:334.174667pt;}
.y87{bottom:337.763400pt;}
.y14b{bottom:337.868000pt;}
.y58{bottom:339.638827pt;}
.yd4{bottom:341.344000pt;}
.yb4{bottom:351.024000pt;}
.y117{bottom:351.389333pt;}
.y57{bottom:352.556053pt;}
.y14a{bottom:355.082667pt;}
.y86{bottom:357.789400pt;}
.yd3{bottom:359.357333pt;}
.ye9{bottom:363.796000pt;}
.y56{bottom:365.473280pt;}
.yb3{bottom:365.636000pt;}
.y116{bottom:368.605333pt;}
.y85{bottom:371.734133pt;}
.y149{bottom:372.298667pt;}
.yd2{bottom:377.369333pt;}
.y55{bottom:378.390507pt;}
.ye8{bottom:381.808000pt;}
.y84{bottom:385.678867pt;}
.y115{bottom:385.821333pt;}
.yb2{bottom:386.716000pt;}
.y25{bottom:388.582667pt;}
.y148{bottom:389.514667pt;}
.y54{bottom:391.306560pt;}
.yd1{bottom:395.381333pt;}
.y83{bottom:399.623600pt;}
.ye7{bottom:399.821333pt;}
.y114{bottom:403.036000pt;}
.y53{bottom:404.223787pt;}
.y147{bottom:406.729333pt;}
.yd0{bottom:413.394667pt;}
.y82{bottom:413.567067pt;}
.yb1{bottom:414.822667pt;}
.y52{bottom:417.141013pt;}
.ye6{bottom:417.833333pt;}
.y113{bottom:420.252000pt;}
.y24{bottom:422.534667pt;}
.y146{bottom:423.945333pt;}
.y51{bottom:430.058240pt;}
.ycf{bottom:431.406667pt;}
.y81{bottom:433.594333pt;}
.ye5{bottom:435.845333pt;}
.y112{bottom:437.466667pt;}
.y23{bottom:440.548000pt;}
.y145{bottom:441.160000pt;}
.y50{bottom:448.608640pt;}
.yce{bottom:449.420000pt;}
.y80{bottom:453.620333pt;}
.yb0{bottom:453.696000pt;}
.ye4{bottom:453.858667pt;}
.y111{bottom:454.682667pt;}
.y144{bottom:458.376000pt;}
.y22{bottom:458.560000pt;}
.y7d{bottom:466.769600pt;}
.ycd{bottom:467.432000pt;}
.ye3{bottom:471.870667pt;}
.y110{bottom:471.898667pt;}
.yaf{bottom:473.052000pt;}
.y7f{bottom:473.583000pt;}
.y4f{bottom:474.914667pt;}
.y143{bottom:475.592000pt;}
.y21{bottom:476.573333pt;}
.y7c{bottom:480.651000pt;}
.ycc{bottom:485.444000pt;}
.y7e{bottom:487.464400pt;}
.yae{bottom:487.730667pt;}
.y10f{bottom:489.113333pt;}
.ye2{bottom:489.884000pt;}
.y142{bottom:492.806667pt;}
.y20{bottom:494.585333pt;}
.ycb{bottom:503.457333pt;}
.y10e{bottom:506.329333pt;}
.y4e{bottom:507.896000pt;}
.yad{bottom:508.812000pt;}
.y141{bottom:510.022667pt;}
.y1f{bottom:512.597333pt;}
.y7b{bottom:514.820000pt;}
.yca{bottom:521.469333pt;}
.yac{bottom:523.489333pt;}
.y10d{bottom:523.544000pt;}
.y4d{bottom:525.908000pt;}
.y140{bottom:527.237333pt;}
.y1e{bottom:530.610667pt;}
.y7a{bottom:531.916000pt;}
.yc9{bottom:539.482667pt;}
.y10c{bottom:540.760000pt;}
.y4c{bottom:543.921333pt;}
.y13f{bottom:544.453333pt;}
.yab{bottom:544.504000pt;}
.y1d{bottom:548.622667pt;}
.yc8{bottom:557.494667pt;}
.y10b{bottom:557.976000pt;}
.yaa{bottom:559.116000pt;}
.y13e{bottom:561.669333pt;}
.y4b{bottom:561.933333pt;}
.y1c{bottom:566.636000pt;}
.y10a{bottom:575.190667pt;}
.yc7{bottom:575.506667pt;}
.y13d{bottom:578.884000pt;}
.y4a{bottom:579.945333pt;}
.y79{bottom:580.088000pt;}
.ya9{bottom:580.196000pt;}
.y1b{bottom:584.648000pt;}
.y109{bottom:592.406667pt;}
.yc6{bottom:593.520000pt;}
.y13c{bottom:596.100000pt;}
.y49{bottom:597.958667pt;}
.y78{bottom:599.054467pt;}
.ya8{bottom:601.276000pt;}
.y1a{bottom:602.660000pt;}
.y108{bottom:609.621333pt;}
.yc5{bottom:611.532000pt;}
.y77{bottom:612.999200pt;}
.y13b{bottom:613.314667pt;}
.ya7{bottom:615.954667pt;}
.y48{bottom:615.970667pt;}
.y19{bottom:620.673333pt;}
.y106{bottom:626.837333pt;}
.y76{bottom:626.943933pt;}
.y107{bottom:627.022667pt;}
.yc4{bottom:629.545333pt;}
.y13a{bottom:630.530667pt;}
.y47{bottom:633.984000pt;}
.ya6{bottom:637.034667pt;}
.y75{bottom:640.887400pt;}
.yc3{bottom:647.557333pt;}
.y139{bottom:647.746667pt;}
.y16{bottom:649.345301pt;}
.y15{bottom:649.694667pt;}
.ya5{bottom:651.713333pt;}
.y105{bottom:652.022667pt;}
.y74{bottom:654.832133pt;}
.y46{bottom:659.966667pt;}
.y138{bottom:664.961333pt;}
.ya4{bottom:672.728000pt;}
.yc2{bottom:673.540000pt;}
.y73{bottom:674.858133pt;}
.y137{bottom:682.177333pt;}
.y14{bottom:684.692000pt;}
.y104{bottom:687.092000pt;}
.ya3{bottom:687.340000pt;}
.y45{bottom:690.917333pt;}
.y72{bottom:694.885400pt;}
.y136{bottom:699.392000pt;}
.y13{bottom:700.832000pt;}
.ya2{bottom:708.420000pt;}
.y103{bottom:708.570667pt;}
.y71{bottom:708.828867pt;}
.yc1{bottom:710.144000pt;}
.y135{bottom:716.608000pt;}
.y12{bottom:716.972000pt;}
.y44{bottom:721.868000pt;}
.y70{bottom:722.773600pt;}
.ya1{bottom:729.500000pt;}
.y102{bottom:730.050667pt;}
.y134{bottom:733.824000pt;}
.y6f{bottom:736.718333pt;}
.y11{bottom:737.450667pt;}
.y43{bottom:739.880000pt;}
.y101{bottom:743.560000pt;}
.ya0{bottom:744.178667pt;}
.y10{bottom:749.250667pt;}
.y6e{bottom:750.663067pt;}
.y133{bottom:751.038667pt;}
.y100{bottom:757.069333pt;}
.y42{bottom:757.892000pt;}
.y9f{bottom:765.258667pt;}
.y132{bottom:768.254667pt;}
.yf{bottom:769.730667pt;}
.yff{bottom:770.578667pt;}
.y6d{bottom:770.689067pt;}
.y41{bottom:775.905333pt;}
.y9e{bottom:779.937333pt;}
.ye{bottom:781.529333pt;}
.yfe{bottom:784.088000pt;}
.y131{bottom:785.469333pt;}
.y15c{bottom:790.612000pt;}
.y6c{bottom:790.715067pt;}
.y40{bottom:793.917333pt;}
.yfd{bottom:797.597333pt;}
.yd{bottom:797.669333pt;}
.y9d{bottom:800.950667pt;}
.y130{bottom:802.685333pt;}
.y69{bottom:803.865600pt;}
.y15b{bottom:807.826667pt;}
.y6b{bottom:810.679000pt;}
.y3f{bottom:811.930667pt;}
.yc{bottom:813.809333pt;}
.y9c{bottom:815.562667pt;}
.y68{bottom:817.747000pt;}
.y12f{bottom:819.901333pt;}
.y6a{bottom:824.560400pt;}
.y15a{bottom:825.042667pt;}
.yfc{bottom:827.046667pt;}
.y3e{bottom:829.942667pt;}
.yb{bottom:834.288000pt;}
.y9b{bottom:836.644000pt;}
.y12e{bottom:837.116000pt;}
.yfb{bottom:845.060000pt;}
.y3d{bottom:847.954667pt;}
.ya{bottom:851.234667pt;}
.y67{bottom:851.916000pt;}
.y12d{bottom:854.332000pt;}
.y9a{bottom:857.724000pt;}
.yfa{bottom:863.072000pt;}
.y3c{bottom:865.968000pt;}
.y66{bottom:869.012000pt;}
.y9{bottom:869.248000pt;}
.y12c{bottom:871.546667pt;}
.y99{bottom:872.402667pt;}
.yf9{bottom:881.084000pt;}
.y3b{bottom:883.980000pt;}
.y8{bottom:887.260000pt;}
.y12b{bottom:888.762667pt;}
.y98{bottom:893.482667pt;}
.y3a{bottom:901.993333pt;}
.y12a{bottom:905.978667pt;}
.yf8{bottom:907.066667pt;}
.y97{bottom:908.161333pt;}
.y39{bottom:920.005333pt;}
.y129{bottom:923.193333pt;}
.y7{bottom:925.198667pt;}
.y96{bottom:929.174667pt;}
.y38{bottom:938.017333pt;}
.y128{bottom:940.409333pt;}
.y95{bottom:943.786667pt;}
.y6{bottom:952.217333pt;}
.y37{bottom:956.030667pt;}
.y127{bottom:957.624000pt;}
.y94{bottom:964.868000pt;}
.y36{bottom:974.042667pt;}
.y126{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y35{bottom:992.056000pt;}
.y159{bottom:992.241333pt;}
.y93{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y34{bottom:1038.548000pt;}
.hc{height:22.673858pt;}
.ha{height:27.076941pt;}
.h20{height:28.023859pt;}
.h21{height:29.397999pt;}
.he{height:29.433775pt;}
.hd{height:30.399505pt;}
.h12{height:30.425506pt;}
.h13{height:30.635917pt;}
.h14{height:30.846329pt;}
.h15{height:30.945242pt;}
.h11{height:31.157778pt;}
.h3{height:31.890083pt;}
.h18{height:32.845716pt;}
.h1b{height:33.072865pt;}
.h1a{height:33.300014pt;}
.h16{height:34.574438pt;}
.hb{height:34.813542pt;}
.h4{height:35.024664pt;}
.h17{height:35.052646pt;}
.h1f{height:36.873667pt;}
.hf{height:38.415786pt;}
.h10{height:38.681455pt;}
.h6{height:38.947124pt;}
.h5{height:41.001535pt;}
.h2{height:45.272024pt;}
.h9{height:48.481423pt;}
.h8{height:48.486756pt;}
.h22{height:48.683332pt;}
.h19{height:60.605983pt;}
.h1c{height:60.611050pt;}
.h1e{height:63.795772pt;}
.h1d{height:63.801105pt;}
.h7{height:69.148877pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:26.021437pt;}
.x3{left:53.357850pt;}
.x4{left:100.588000pt;}
.x1{left:102.046667pt;}
.x7{left:108.542667pt;}
.x5{left:109.606667pt;}
.x2b{left:111.234880pt;}
.x30{left:117.121133pt;}
.x2f{left:125.509000pt;}
.x6{left:129.594667pt;}
.x68{left:130.733333pt;}
.x34{left:134.622667pt;}
.x33{left:135.713267pt;}
.x32{left:139.194067pt;}
.x2d{left:142.564053pt;}
.x27{left:146.626667pt;}
.x28{left:153.274240pt;}
.x2c{left:155.142187pt;}
.x51{left:157.852000pt;}
.x3b{left:159.420000pt;}
.x2{left:161.132773pt;}
.x3a{left:164.268000pt;}
.x3f{left:165.637333pt;}
.xa{left:167.417333pt;}
.x2a{left:168.312853pt;}
.x52{left:171.136000pt;}
.x46{left:172.426667pt;}
.x29{left:173.426240pt;}
.xd{left:176.056000pt;}
.x3e{left:178.704000pt;}
.xe{left:182.698667pt;}
.xf{left:186.085333pt;}
.x6a{left:188.929333pt;}
.x69{left:190.298667pt;}
.x5b{left:191.596000pt;}
.x10{left:192.728000pt;}
.x2e{left:201.664000pt;}
.x47{left:205.696000pt;}
.x4d{left:214.810667pt;}
.x41{left:224.536000pt;}
.x79{left:225.868000pt;}
.x38{left:227.201333pt;}
.x4e{left:228.094667pt;}
.x11{left:229.793333pt;}
.x12{left:236.436000pt;}
.x4f{left:238.358667pt;}
.x60{left:241.965333pt;}
.x13{left:242.984000pt;}
.x3c{left:244.558667pt;}
.x3d{left:247.350667pt;}
.x14{left:249.626667pt;}
.x43{left:250.536000pt;}
.x50{left:251.642667pt;}
.x61{left:252.890667pt;}
.x15{left:262.870667pt;}
.x21{left:264.204000pt;}
.x36{left:269.473333pt;}
.x62{left:272.002667pt;}
.x16{left:276.154667pt;}
.x22{left:277.486667pt;}
.x53{left:280.372000pt;}
.x37{left:282.756000pt;}
.xb{left:288.380000pt;}
.x54{left:293.654667pt;}
.xc{left:295.021333pt;}
.x55{left:311.866667pt;}
.x19{left:325.586667pt;}
.x48{left:327.378667pt;}
.x71{left:329.172000pt;}
.x70{left:330.541333pt;}
.x40{left:332.108000pt;}
.x1a{left:338.870667pt;}
.x49{left:340.661333pt;}
.x1b{left:342.257333pt;}
.x31{left:343.693600pt;}
.x35{left:346.838733pt;}
.x67{left:348.252000pt;}
.x1c{left:355.541333pt;}
.x39{left:359.162667pt;}
.x45{left:360.429333pt;}
.x23{left:367.386667pt;}
.x44{left:371.620000pt;}
.x42{left:374.937333pt;}
.x24{left:380.670667pt;}
.x4a{left:393.898667pt;}
.x4b{left:397.285333pt;}
.x4c{left:410.569333pt;}
.x58{left:431.129333pt;}
.x59{left:444.413333pt;}
.x5c{left:448.358667pt;}
.x5e{left:450.410667pt;}
.x5d{left:461.642667pt;}
.x5f{left:463.693333pt;}
.x6c{left:489.728000pt;}
.x6b{left:491.097333pt;}
.x1f{left:507.369333pt;}
.x20{left:520.652000pt;}
.x17{left:524.377333pt;}
.x56{left:525.613333pt;}
.x18{left:531.018667pt;}
.x57{left:538.897333pt;}
.x63{left:540.145333pt;}
.x5a{left:543.841333pt;}
.x64{left:553.428000pt;}
.x1d{left:571.801333pt;}
.x1e{left:585.084000pt;}
.x74{left:589.214667pt;}
.x72{left:590.286667pt;}
.x6f{left:599.190667pt;}
.x76{left:600.682667pt;}
.x75{left:613.125333pt;}
.x73{left:614.197333pt;}
.x8{left:623.413317pt;}
.x77{left:624.593333pt;}
.x65{left:643.977333pt;}
.x6d{left:646.941333pt;}
.x78{left:648.286667pt;}
.x66{left:656.602667pt;}
.x6e{left:670.852000pt;}
.x25{left:673.005333pt;}
.x26{left:686.288000pt;}
}




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