
    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_692807309735b3dea5e236cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f6c1614a9d9a0d700dd42c58.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_78d75e5e2b98379fc69a3ffd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_42a654e00180ec1a3af0f5bb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_48691ef59db096439c0870e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_abbb74ca7cca0b2d273534ca.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_eb2541d28d582bb6c5f49b36.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{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);}
.m18{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);}
.m16{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);}
.ma{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);}
.m13{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);}
.m28{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);}
.m22{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);}
.m25{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m21{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);}
.m1a{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);}
.m17{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);}
.m5{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);}
.m1d{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);}
.m23{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);}
.md{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);}
.m14{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);}
.m11{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);}
.mb{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);}
.m15{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);}
.m10{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);}
.m27{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);}
.m19{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);}
.m29{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);}
.m1b{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);}
.m1e{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);}
.mf{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);}
.m8{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);}
.m4{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);}
.m7{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);}
.m12{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);}
.m1f{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);}
.m6{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);}
.m26{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);}
.m2{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);}
.mc{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.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);}
.m1c{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls8{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000003px;}
.ls2a{letter-spacing:0.000017px;}
.ls25{letter-spacing:0.000088px;}
.ls19{letter-spacing:0.000091px;}
.ls6{letter-spacing:0.000150px;}
.ls1d{letter-spacing:0.000210px;}
.ls2f{letter-spacing:0.000292px;}
.lsb{letter-spacing:0.000435px;}
.ls21{letter-spacing:0.000721px;}
.ls23{letter-spacing:0.000800px;}
.lsa{letter-spacing:0.000840px;}
.ls1b{letter-spacing:0.000971px;}
.ls31{letter-spacing:0.001036px;}
.ls32{letter-spacing:0.001155px;}
.ls17{letter-spacing:0.001379px;}
.ls20{letter-spacing:0.001520px;}
.lsd{letter-spacing:0.001555px;}
.ls11{letter-spacing:0.001581px;}
.ls24{letter-spacing:0.001909px;}
.ls13{letter-spacing:0.001996px;}
.lse{letter-spacing:0.002170px;}
.ls12{letter-spacing:0.002517px;}
.ls33{letter-spacing:0.002544px;}
.ls18{letter-spacing:0.003078px;}
.ls36{letter-spacing:0.003090px;}
.ls1e{letter-spacing:0.003178px;}
.ls10{letter-spacing:0.003219px;}
.ls2b{letter-spacing:0.003986px;}
.ls1f{letter-spacing:0.004052px;}
.ls1c{letter-spacing:0.004494px;}
.ls22{letter-spacing:0.004614px;}
.ls29{letter-spacing:0.004800px;}
.ls15{letter-spacing:0.548815px;}
.ls16{letter-spacing:2.983200px;}
.ls1{letter-spacing:2.998354px;}
.ls0{letter-spacing:10.461300px;}
.ls4{letter-spacing:11.953933px;}
.ls7{letter-spacing:11.954850px;}
.ls39{letter-spacing:13.410101px;}
.ls30{letter-spacing:13.448400px;}
.ls26{letter-spacing:13.450090px;}
.ls28{letter-spacing:13.450800px;}
.ls34{letter-spacing:13.454400px;}
.ls38{letter-spacing:13.669182px;}
.ls9{letter-spacing:13.929988px;}
.ls27{letter-spacing:14.100088px;}
.ls37{letter-spacing:14.720988px;}
.ls35{letter-spacing:14.750400px;}
.lsc{letter-spacing:14.867488px;}
.ls1a{letter-spacing:15.087710px;}
.ls14{letter-spacing:15.663483px;}
.ls2d{letter-spacing:16.112565px;}
.ls2c{letter-spacing:16.117501px;}
.ls2e{letter-spacing:16.118447px;}
.ls2{letter-spacing:17.929200px;}
.ls3{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws54{word-spacing:-14.943900px;}
.ws10{word-spacing:-14.355754px;}
.ws1d{word-spacing:-13.449600px;}
.ws16{word-spacing:-11.955150px;}
.ws14{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws47{word-spacing:-2.869229px;}
.ws62{word-spacing:-2.809453px;}
.ws4f{word-spacing:-2.630126px;}
.wsa4{word-spacing:-2.510575px;}
.ws49{word-spacing:-2.450800px;}
.ws92{word-spacing:-2.331248px;}
.wsb1{word-spacing:-2.259533px;}
.wsa9{word-spacing:-2.211697px;}
.ws18{word-spacing:-2.205734px;}
.ws8a{word-spacing:-2.151922px;}
.ws7b{word-spacing:-2.098138px;}
.ws2a{word-spacing:-2.092146px;}
.ws7c{word-spacing:-1.882944px;}
.ws91{word-spacing:-1.793268px;}
.wsb2{word-spacing:-1.560154px;}
.ws4c{word-spacing:-1.315063px;}
.wsaf{word-spacing:-1.255288px;}
.ws2b{word-spacing:-1.195512px;}
.ws6{word-spacing:-1.171598px;}
.ws41{word-spacing:-1.135736px;}
.ws27{word-spacing:-1.075961px;}
.ws8{word-spacing:-1.046070px;}
.ws4d{word-spacing:-1.016185px;}
.wsc9{word-spacing:-0.968371px;}
.ws6e{word-spacing:-0.896634px;}
.wsb0{word-spacing:-0.836858px;}
.ws48{word-spacing:-0.777083px;}
.ws57{word-spacing:-0.717307px;}
.wsa0{word-spacing:-0.657532px;}
.ws78{word-spacing:-0.537980px;}
.ws3f{word-spacing:-0.478205px;}
.ws3c{word-spacing:-0.418429px;}
.ws5b{word-spacing:-0.358654px;}
.wsbc{word-spacing:-0.322790px;}
.ws37{word-spacing:-0.298878px;}
.ws85{word-spacing:-0.268992px;}
.ws23{word-spacing:-0.239102px;}
.ws7d{word-spacing:-0.215194px;}
.ws34{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.161395px;}
.ws29{word-spacing:-0.119551px;}
.ws1e{word-spacing:-0.107597px;}
.ws11{word-spacing:-0.059776px;}
.ws56{word-spacing:-0.053798px;}
.wsba{word-spacing:-0.005645px;}
.ws8f{word-spacing:-0.004944px;}
.ws3{word-spacing:-0.003506px;}
.wscc{word-spacing:-0.003466px;}
.ws15{word-spacing:-0.002142px;}
.ws35{word-spacing:-0.001643px;}
.wsbb{word-spacing:-0.001267px;}
.ws12{word-spacing:-0.000808px;}
.ws1{word-spacing:0.000000px;}
.wscf{word-spacing:0.000998px;}
.ws79{word-spacing:0.053798px;}
.ws28{word-spacing:0.059776px;}
.wsb3{word-spacing:0.107597px;}
.ws36{word-spacing:0.119551px;}
.ws1f{word-spacing:0.161395px;}
.ws2c{word-spacing:0.179327px;}
.ws8e{word-spacing:0.215194px;}
.ws26{word-spacing:0.239102px;}
.ws66{word-spacing:0.268992px;}
.ws31{word-spacing:0.298878px;}
.ws67{word-spacing:0.322790px;}
.ws4e{word-spacing:0.358654px;}
.ws1c{word-spacing:0.376589px;}
.ws61{word-spacing:0.418429px;}
.ws6a{word-spacing:0.478205px;}
.ws6d{word-spacing:0.537980px;}
.ws1b{word-spacing:0.537984px;}
.ws6b{word-spacing:0.597756px;}
.ws2d{word-spacing:0.657532px;}
.ws99{word-spacing:0.699379px;}
.ws58{word-spacing:0.717307px;}
.ws60{word-spacing:0.742800px;}
.wsb4{word-spacing:0.806976px;}
.wsc3{word-spacing:0.860774px;}
.ws6f{word-spacing:0.896634px;}
.ws72{word-spacing:0.968371px;}
.ws7{word-spacing:1.004227px;}
.ws6c{word-spacing:1.016185px;}
.ws59{word-spacing:1.075961px;}
.wsc2{word-spacing:1.129766px;}
.ws5a{word-spacing:1.135736px;}
.wscd{word-spacing:1.183565px;}
.ws21{word-spacing:1.195512px;}
.ws71{word-spacing:1.237363px;}
.ws24{word-spacing:1.255288px;}
.wsbf{word-spacing:1.291162px;}
.ws5f{word-spacing:1.315063px;}
.wsb6{word-spacing:1.344960px;}
.ws2e{word-spacing:1.374839px;}
.wsc4{word-spacing:1.398758px;}
.ws8b{word-spacing:1.434614px;}
.wscb{word-spacing:1.452557px;}
.ws44{word-spacing:1.477513px;}
.ws76{word-spacing:1.494390px;}
.ws5d{word-spacing:1.554166px;}
.ws9e{word-spacing:1.560154px;}
.ws53{word-spacing:1.613941px;}
.wsa2{word-spacing:1.673717px;}
.ws50{word-spacing:1.793268px;}
.wsa8{word-spacing:1.853044px;}
.wsbd{word-spacing:1.936742px;}
.ws40{word-spacing:1.972595px;}
.wsc0{word-spacing:1.990541px;}
.wsaa{word-spacing:2.032370px;}
.ws43{word-spacing:2.151922px;}
.ws51{word-spacing:2.211697px;}
.ws65{word-spacing:2.313331px;}
.ws3d{word-spacing:2.331248px;}
.wsb7{word-spacing:2.367130px;}
.ws3e{word-spacing:2.391024px;}
.ws39{word-spacing:2.450800px;}
.ws93{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws2{word-spacing:2.512810px;}
.ws77{word-spacing:2.570351px;}
.ws64{word-spacing:2.636122px;}
.ws9b{word-spacing:2.646478px;}
.ws9d{word-spacing:2.652075px;}
.ws9c{word-spacing:2.655323px;}
.ws70{word-spacing:2.689902px;}
.ws9a{word-spacing:2.689920px;}
.wsb5{word-spacing:2.743718px;}
.ws42{word-spacing:2.809453px;}
.ws75{word-spacing:2.869229px;}
.ws17{word-spacing:2.869236px;}
.ws5c{word-spacing:2.988780px;}
.ws2f{word-spacing:3.048556px;}
.ws30{word-spacing:3.108331px;}
.ws81{word-spacing:3.168107px;}
.wsc1{word-spacing:3.218986px;}
.wsce{word-spacing:3.220301px;}
.wsc7{word-spacing:3.223229px;}
.wsc8{word-spacing:3.224275px;}
.ws90{word-spacing:3.227882px;}
.wsca{word-spacing:3.227904px;}
.ws38{word-spacing:3.287658px;}
.wsb9{word-spacing:3.335501px;}
.wsa1{word-spacing:3.347434px;}
.wsb8{word-spacing:3.389299px;}
.ws7e{word-spacing:3.407209px;}
.wsab{word-spacing:3.466985px;}
.ws20{word-spacing:3.586536px;}
.ws52{word-spacing:3.706087px;}
.wsa3{word-spacing:3.765863px;}
.ws1a{word-spacing:3.819686px;}
.ws3b{word-spacing:3.885414px;}
.wsc6{word-spacing:3.981082px;}
.wsc5{word-spacing:4.088678px;}
.ws7f{word-spacing:4.124516px;}
.ws83{word-spacing:4.142477px;}
.wsa6{word-spacing:4.184292px;}
.ws84{word-spacing:4.196275px;}
.ws45{word-spacing:4.303843px;}
.ws88{word-spacing:4.411469px;}
.ws82{word-spacing:4.519066px;}
.ws33{word-spacing:4.602721px;}
.ws96{word-spacing:4.662497px;}
.ws55{word-spacing:4.722272px;}
.wse{word-spacing:4.770079px;}
.ws3a{word-spacing:4.841824px;}
.wsf{word-spacing:4.853765px;}
.ws25{word-spacing:5.021150px;}
.ws86{word-spacing:5.057050px;}
.ws95{word-spacing:5.080926px;}
.wsad{word-spacing:5.140702px;}
.wsa7{word-spacing:5.260253px;}
.ws9f{word-spacing:5.320028px;}
.ws32{word-spacing:5.379804px;}
.ws80{word-spacing:5.917784px;}
.wsae{word-spacing:5.977560px;}
.wsa5{word-spacing:6.037336px;}
.ws69{word-spacing:6.097111px;}
.wsac{word-spacing:6.156887px;}
.ws5e{word-spacing:6.336214px;}
.ws87{word-spacing:6.402010px;}
.ws94{word-spacing:6.575316px;}
.wsbe{word-spacing:6.671002px;}
.ws98{word-spacing:6.724800px;}
.ws46{word-spacing:6.874194px;}
.ws89{word-spacing:6.933970px;}
.ws97{word-spacing:7.101389px;}
.ws73{word-spacing:7.113296px;}
.ws74{word-spacing:7.173072px;}
.ws22{word-spacing:7.412174px;}
.ws8d{word-spacing:7.424179px;}
.wsc{word-spacing:7.782761px;}
.ws7a{word-spacing:7.830604px;}
.ws8c{word-spacing:7.854566px;}
.ws68{word-spacing:9.145667px;}
.ws4b{word-spacing:9.265218px;}
.ws4a{word-spacing:9.504320px;}
.wsa{word-spacing:12.176255px;}
.ws5{word-spacing:15.481836px;}
.wsb{word-spacing:16.109478px;}
.ws63{word-spacing:25.404630px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws13{word-spacing:40.042186px;}
._12{margin-left:-7.555728px;}
._17{margin-left:-6.515540px;}
._2{margin-left:-5.397721px;}
._1{margin-left:-3.849538px;}
._19{margin-left:-2.666209px;}
._0{margin-left:-1.506341px;}
._4{width:2.301354px;}
._7{width:3.608530px;}
._9{width:10.221696px;}
._5{width:11.582422px;}
._3{width:12.971268px;}
._11{width:14.178768px;}
._22{width:15.308833px;}
._a{width:16.354714px;}
._b{width:18.076234px;}
._c{width:19.152230px;}
._14{width:20.682358px;}
._10{width:21.830045px;}
._21{width:23.204884px;}
._e{width:24.209118px;}
._18{width:26.480591px;}
._13{width:28.273859px;}
._6{width:30.587087px;}
._1a{width:32.876580px;}
._f{width:34.191643px;}
._1e{width:36.702218px;}
._1b{width:38.136833px;}
._1f{width:39.344296px;}
._d{width:41.615768px;}
._1c{width:46.744519px;}
._8{width:54.472643px;}
._23{width:88.767360px;}
._1d{width:95.055155px;}
._15{width:903.980952px;}
._20{width:2494.970700px;}
._16{width:2518.880700px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(137,92,52);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:147.405960px;}
.y0{bottom:0.000000px;}
.y1b{bottom:15.837920px;}
.y49{bottom:31.890000px;}
.y12d{bottom:91.377000px;}
.ydb{bottom:91.665000px;}
.yc1{bottom:92.695500px;}
.ya6{bottom:102.853500px;}
.y48{bottom:103.621500px;}
.y1a6{bottom:104.503500px;}
.y19{bottom:104.646000px;}
.yda{bottom:110.494500px;}
.y12c{bottom:110.610000px;}
.yc0{bottom:111.525000px;}
.y16f{bottom:120.598500px;}
.ya5{bottom:121.683000px;}
.y1a5{bottom:121.762500px;}
.y47{bottom:122.449500px;}
.y18{bottom:122.535000px;}
.y10f{bottom:122.871000px;}
.y80{bottom:124.228500px;}
.y143{bottom:126.471000px;}
.yd9{bottom:129.324000px;}
.y12b{bottom:129.841500px;}
.ybe{bottom:130.354500px;}
.ye3{bottom:133.572000px;}
.yf7{bottom:134.142000px;}
.ybf{bottom:135.780000px;}
.y16e{bottom:137.859000px;}
.y1a4{bottom:139.023000px;}
.y17{bottom:140.422500px;}
.ya4{bottom:140.512500px;}
.y46{bottom:141.279000px;}
.y10e{bottom:141.700500px;}
.y7f{bottom:143.058000px;}
.y142{bottom:145.300500px;}
.yd8{bottom:148.153500px;}
.y12a{bottom:149.074500px;}
.ybd{bottom:149.184000px;}
.ye2{bottom:152.805000px;}
.yf6{bottom:152.971500px;}
.y16d{bottom:155.118000px;}
.y120{bottom:156.003000px;}
.y1a3{bottom:156.283500px;}
.y16{bottom:158.310000px;}
.y45{bottom:160.108500px;}
.y10d{bottom:160.530000px;}
.y7e{bottom:161.887500px;}
.ya3{bottom:163.825500px;}
.y141{bottom:164.130000px;}
.yd7{bottom:166.983000px;}
.ybc{bottom:168.013500px;}
.y129{bottom:168.307500px;}
.yf5{bottom:171.801000px;}
.ye1{bottom:172.038000px;}
.y16c{bottom:172.378500px;}
.y1a2{bottom:173.544000px;}
.y11f{bottom:174.832500px;}
.y15{bottom:176.199000px;}
.y44{bottom:178.938000px;}
.y10c{bottom:179.359500px;}
.y7d{bottom:180.717000px;}
.y140{bottom:182.959500px;}
.yd6{bottom:185.812500px;}
.ybb{bottom:186.843000px;}
.y16b{bottom:189.639000px;}
.yf4{bottom:190.630500px;}
.y1a1{bottom:190.804500px;}
.y11e{bottom:193.662000px;}
.y14{bottom:194.086500px;}
.ya2{bottom:197.449500px;}
.y43{bottom:197.767500px;}
.y10b{bottom:198.189000px;}
.y7c{bottom:199.546500px;}
.y13f{bottom:201.789000px;}
.yd5{bottom:204.642000px;}
.yba{bottom:205.672500px;}
.y1a0{bottom:208.065000px;}
.yf3{bottom:209.460000px;}
.y16a{bottom:211.383000px;}
.y13{bottom:211.974000px;}
.y11d{bottom:212.491500px;}
.ya1{bottom:216.279000px;}
.y42{bottom:216.597000px;}
.y10a{bottom:217.018500px;}
.y7b{bottom:218.376000px;}
.y13e{bottom:220.618500px;}
.yd4{bottom:223.471500px;}
.yb9{bottom:224.502000px;}
.y19f{bottom:225.325500px;}
.yf2{bottom:228.289500px;}
.y12{bottom:229.863000px;}
.y11c{bottom:231.321000px;}
.ya0{bottom:235.108500px;}
.y41{bottom:235.426500px;}
.y109{bottom:235.848000px;}
.y7a{bottom:237.205500px;}
.y13d{bottom:239.446500px;}
.yd3{bottom:242.301000px;}
.y19e{bottom:242.586000px;}
.yb8{bottom:243.331500px;}
.y169{bottom:245.007000px;}
.yf1{bottom:247.119000px;}
.y11b{bottom:250.150500px;}
.y9f{bottom:253.938000px;}
.y40{bottom:254.256000px;}
.y108{bottom:254.677500px;}
.y79{bottom:256.035000px;}
.y13c{bottom:258.276000px;}
.y19d{bottom:259.846500px;}
.yd2{bottom:261.130500px;}
.yb7{bottom:262.161000px;}
.yf0{bottom:265.948500px;}
.y11a{bottom:268.980000px;}
.y168{bottom:271.548000px;}
.y9e{bottom:272.766000px;}
.y3f{bottom:273.085500px;}
.y107{bottom:273.507000px;}
.y78{bottom:274.864500px;}
.y13b{bottom:277.105500px;}
.yd1{bottom:279.960000px;}
.yb6{bottom:280.990500px;}
.yef{bottom:284.778000px;}
.y119{bottom:287.809500px;}
.y9d{bottom:291.595500px;}
.y3e{bottom:291.915000px;}
.y106{bottom:292.336500px;}
.y77{bottom:293.694000px;}
.y19c{bottom:294.366000px;}
.y13a{bottom:295.935000px;}
.y167{bottom:298.087500px;}
.yd0{bottom:298.789500px;}
.yb5{bottom:299.820000px;}
.y11{bottom:300.154500px;}
.yee{bottom:303.607500px;}
.y118{bottom:306.637500px;}
.y9c{bottom:310.425000px;}
.y3d{bottom:310.744500px;}
.y105{bottom:311.166000px;}
.y19b{bottom:311.626500px;}
.y76{bottom:312.523500px;}
.y139{bottom:314.764500px;}
.y128{bottom:317.619000px;}
.y10{bottom:318.043500px;}
.yed{bottom:322.437000px;}
.yb4{bottom:323.133000px;}
.y166{bottom:324.628500px;}
.y117{bottom:325.467000px;}
.y19a{bottom:328.887000px;}
.y9b{bottom:329.254500px;}
.ycf{bottom:329.529000px;}
.y3c{bottom:329.574000px;}
.y104{bottom:329.994000px;}
.y138{bottom:333.594000px;}
.y75{bottom:335.836500px;}
.yf{bottom:335.931000px;}
.y127{bottom:336.448500px;}
.yec{bottom:341.266500px;}
.y116{bottom:344.296500px;}
.y199{bottom:346.147500px;}
.y9a{bottom:348.084000px;}
.y3b{bottom:348.403500px;}
.yce{bottom:348.762000px;}
.y103{bottom:348.823500px;}
.y165{bottom:351.169500px;}
.y137{bottom:352.423500px;}
.yb3{bottom:353.560500px;}
.ye{bottom:353.818500px;}
.y126{bottom:355.278000px;}
.yeb{bottom:360.096000px;}
.y115{bottom:363.126000px;}
.y198{bottom:363.408000px;}
.y99{bottom:366.913500px;}
.y3a{bottom:367.233000px;}
.y102{bottom:367.653000px;}
.ycd{bottom:367.995000px;}
.y164{bottom:368.743500px;}
.y74{bottom:369.460500px;}
.y136{bottom:371.253000px;}
.y125{bottom:374.107500px;}
.y197{bottom:378.045000px;}
.yea{bottom:378.925500px;}
.y196{bottom:380.668500px;}
.yd{bottom:380.673000px;}
.y98{bottom:385.743000px;}
.y39{bottom:386.062500px;}
.y163{bottom:386.317500px;}
.y101{bottom:386.482500px;}
.y73{bottom:388.290000px;}
.y135{bottom:390.082500px;}
.y124{bottom:392.937000px;}
.y114{bottom:396.693000px;}
.y195{bottom:397.929000px;}
.yc{bottom:398.562000px;}
.y72{bottom:404.389500px;}
.y97{bottom:404.572500px;}
.y38{bottom:404.892000px;}
.y100{bottom:405.312000px;}
.y71{bottom:407.119500px;}
.y134{bottom:408.912000px;}
.ye9{bottom:412.491000px;}
.y162{bottom:412.857000px;}
.y194{bottom:415.188000px;}
.y113{bottom:415.924500px;}
.yb{bottom:416.449500px;}
.y70{bottom:423.219000px;}
.y96{bottom:423.402000px;}
.y123{bottom:423.640500px;}
.y37{bottom:423.721500px;}
.y6f{bottom:425.949000px;}
.y133{bottom:427.741500px;}
.yff{bottom:428.625000px;}
.y161{bottom:430.431000px;}
.ye8{bottom:431.724000px;}
.y193{bottom:432.448500px;}
.y112{bottom:435.157500px;}
.y6e{bottom:442.048500px;}
.y95{bottom:442.231500px;}
.y36{bottom:442.551000px;}
.y122{bottom:442.872000px;}
.y6d{bottom:444.778500px;}
.ya{bottom:444.798000px;}
.y132{bottom:446.571000px;}
.y160{bottom:448.006500px;}
.y192{bottom:449.709000px;}
.y111{bottom:454.390500px;}
.y94{bottom:458.331000px;}
.y93{bottom:461.061000px;}
.y35{bottom:461.380500px;}
.y121{bottom:462.105000px;}
.yfe{bottom:462.249000px;}
.y9{bottom:462.685500px;}
.y131{bottom:465.400500px;}
.y15f{bottom:465.580500px;}
.y191{bottom:466.969500px;}
.y6c{bottom:468.090000px;}
.y110{bottom:473.623500px;}
.y92{bottom:479.890500px;}
.y34{bottom:480.210000px;}
.yfd{bottom:481.078500px;}
.y15e{bottom:483.154500px;}
.y130{bottom:484.230000px;}
.y6b{bottom:488.265000px;}
.y8{bottom:489.540000px;}
.y91{bottom:498.720000px;}
.y33{bottom:499.039500px;}
.yfc{bottom:499.908000px;}
.y12f{bottom:500.329500px;}
.y15d{bottom:500.728500px;}
.y190{bottom:501.490500px;}
.y12e{bottom:503.059500px;}
.y7{bottom:507.429000px;}
.y90{bottom:517.549500px;}
.y32{bottom:517.869000px;}
.yfb{bottom:518.737500px;}
.y18f{bottom:518.751000px;}
.y6a{bottom:521.889000px;}
.y6{bottom:525.316500px;}
.y18e{bottom:536.011500px;}
.y15c{bottom:536.235000px;}
.y8f{bottom:536.379000px;}
.y69{bottom:540.718500px;}
.y31{bottom:541.180500px;}
.y5{bottom:543.204000px;}
.yfa{bottom:552.303000px;}
.y18d{bottom:553.272000px;}
.y15b{bottom:555.064500px;}
.y68{bottom:559.548000px;}
.y8e{bottom:559.692000px;}
.y4{bottom:561.093000px;}
.y18c{bottom:570.531000px;}
.yf9{bottom:571.536000px;}
.y15a{bottom:573.894000px;}
.ye0{bottom:577.929000px;}
.y67{bottom:578.377500px;}
.y3{bottom:578.980500px;}
.y18b{bottom:587.791500px;}
.y8d{bottom:590.119500px;}
.yf8{bottom:590.769000px;}
.y159{bottom:592.723500px;}
.ydf{bottom:596.758500px;}
.y2{bottom:596.868000px;}
.y66{bottom:597.207000px;}
.y18a{bottom:605.052000px;}
.y8c{bottom:609.352500px;}
.y158{bottom:611.553000px;}
.y1{bottom:614.757000px;}
.yde{bottom:615.588000px;}
.y65{bottom:616.036500px;}
.y30{bottom:616.330500px;}
.y189{bottom:622.312500px;}
.y157{bottom:627.652500px;}
.y156{bottom:630.382500px;}
.yb2{bottom:634.417500px;}
.y64{bottom:634.866000px;}
.y2f{bottom:635.788500px;}
.y188{bottom:639.573000px;}
.y155{bottom:649.212000px;}
.yb1{bottom:653.247000px;}
.y63{bottom:653.695500px;}
.y187{bottom:656.833500px;}
.y154{bottom:668.041500px;}
.yb0{bottom:672.076500px;}
.y62{bottom:672.525000px;}
.y2e{bottom:673.177500px;}
.y186{bottom:674.094000px;}
.y153{bottom:686.871000px;}
.yaf{bottom:690.906000px;}
.y61{bottom:691.354500px;}
.y2d{bottom:692.635500px;}
.y152{bottom:705.700500px;}
.y185{bottom:708.613500px;}
.yae{bottom:709.735500px;}
.y60{bottom:710.184000px;}
.y2c{bottom:712.092000px;}
.y151{bottom:724.530000px;}
.y184{bottom:725.874000px;}
.yad{bottom:728.565000px;}
.y5f{bottom:729.013500px;}
.y2b{bottom:731.550000px;}
.y183{bottom:743.134500px;}
.y150{bottom:743.359500px;}
.yac{bottom:747.394500px;}
.y5e{bottom:747.843000px;}
.y2a{bottom:751.006500px;}
.y182{bottom:760.395000px;}
.y14f{bottom:762.189000px;}
.yab{bottom:766.224000px;}
.y5d{bottom:766.671000px;}
.y29{bottom:770.463000px;}
.y181{bottom:777.655500px;}
.y14e{bottom:781.018500px;}
.yaa{bottom:785.053500px;}
.y5c{bottom:785.500500px;}
.y28{bottom:789.921000px;}
.y180{bottom:794.916000px;}
.y14d{bottom:799.848000px;}
.ydd{bottom:803.883000px;}
.y5b{bottom:804.330000px;}
.ya9{bottom:808.365000px;}
.y27{bottom:809.377500px;}
.y17f{bottom:812.176500px;}
.y14c{bottom:818.677500px;}
.ye7{bottom:819.982500px;}
.ye6{bottom:822.712500px;}
.y5a{bottom:823.159500px;}
.ydc{bottom:827.194500px;}
.y26{bottom:828.834000px;}
.y17e{bottom:829.437000px;}
.y14b{bottom:837.507000px;}
.ye5{bottom:841.540500px;}
.y59{bottom:841.989000px;}
.y17d{bottom:846.697500px;}
.ycc{bottom:854.542500px;}
.y14a{bottom:856.335000px;}
.y8b{bottom:860.370000px;}
.y58{bottom:860.818500px;}
.y17c{bottom:863.956500px;}
.y25{bottom:865.939500px;}
.ycb{bottom:873.372000px;}
.y149{bottom:875.164500px;}
.y8a{bottom:879.199500px;}
.y57{bottom:879.648000px;}
.y17b{bottom:881.217000px;}
.ye4{bottom:883.683000px;}
.y24{bottom:886.417500px;}
.yca{bottom:892.201500px;}
.y148{bottom:893.994000px;}
.y89{bottom:898.029000px;}
.y23{bottom:898.218000px;}
.y56{bottom:898.477500px;}
.yc9{bottom:911.031000px;}
.y147{bottom:912.823500px;}
.y17a{bottom:915.738000px;}
.y88{bottom:916.858500px;}
.y55{bottom:917.307000px;}
.y22{bottom:918.697500px;}
.y146{bottom:931.653000px;}
.y179{bottom:932.998500px;}
.yc8{bottom:934.344000px;}
.y21{bottom:934.836000px;}
.y87{bottom:935.688000px;}
.y54{bottom:936.136500px;}
.y178{bottom:950.259000px;}
.y145{bottom:950.482500px;}
.y86{bottom:954.517500px;}
.y53{bottom:954.966000px;}
.ya8{bottom:960.391500px;}
.y177{bottom:967.519500px;}
.y144{bottom:969.312000px;}
.y85{bottom:973.347000px;}
.y52{bottom:973.795500px;}
.y20{bottom:978.031500px;}
.y176{bottom:984.780000px;}
.yc7{bottom:988.141500px;}
.y84{bottom:992.176500px;}
.y51{bottom:992.625000px;}
.y1f{bottom:996.861000px;}
.y175{bottom:1002.040500px;}
.yc6{bottom:1006.971000px;}
.y83{bottom:1011.006000px;}
.y50{bottom:1011.454500px;}
.y174{bottom:1019.299500px;}
.yc5{bottom:1025.800500px;}
.y82{bottom:1029.835500px;}
.y4f{bottom:1030.284000px;}
.y173{bottom:1036.560000px;}
.y1e{bottom:1036.780500px;}
.yc4{bottom:1044.630000px;}
.y4e{bottom:1049.113500px;}
.y81{bottom:1053.148500px;}
.y172{bottom:1053.820500px;}
.yc3{bottom:1063.459500px;}
.y1d{bottom:1065.024000px;}
.y4d{bottom:1067.943000px;}
.y171{bottom:1071.081000px;}
.ya7{bottom:1073.367000px;}
.yc2{bottom:1082.289000px;}
.y4c{bottom:1086.772500px;}
.y170{bottom:1088.341500px;}
.y1c{bottom:1093.269000px;}
.y4b{bottom:1105.602000px;}
.y1a{bottom:1136.755500px;}
.y4a{bottom:1168.366500px;}
.h11{height:31.526842px;}
.h8{height:32.565965px;}
.h12{height:37.334628px;}
.h2{height:37.993262px;}
.ha{height:38.734848px;}
.he{height:41.250077px;}
.h10{height:41.482876px;}
.hc{height:43.038432px;}
.h9{height:43.421105px;}
.h5{height:43.875290px;}
.hb{height:48.848947px;}
.h3{height:50.930649px;}
.hd{height:54.276245px;}
.h7{height:54.411312px;}
.hf{height:62.946077px;}
.h6{height:77.469696px;}
.h4{height:99.941241px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:198.822293px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:57.551633px;}
.x95{left:85.848000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x74{left:253.710000px;}
.x75{left:260.434500px;}
.x80{left:261.766500px;}
.x47{left:264.825000px;}
.x4{left:269.914500px;}
.x48{left:276.928500px;}
.x8{left:281.479500px;}
.x92{left:282.669000px;}
.xb{left:290.248500px;}
.x93{left:292.836000px;}
.xc{left:297.721500px;}
.xd{left:302.113500px;}
.x17{left:304.578000px;}
.x51{left:306.802500px;}
.x6{left:307.828500px;}
.xe{left:309.586500px;}
.x18{left:312.049500px;}
.x7d{left:314.653500px;}
.x39{left:316.017000px;}
.x5d{left:317.404500px;}
.x7{left:319.888500px;}
.x6f{left:321.786000px;}
.x49{left:323.200500px;}
.x19{left:327.573000px;}
.x3a{left:328.699500px;}
.x70{left:330.003000px;}
.x4a{left:335.064000px;}
.x66{left:336.580500px;}
.x3b{left:340.804500px;}
.x91{left:344.850000px;}
.x59{left:347.101500px;}
.x26{left:348.258000px;}
.x57{left:349.893000px;}
.x67{left:351.525000px;}
.x3c{left:353.470500px;}
.x58{left:357.966000px;}
.x3d{left:359.896500px;}
.x5a{left:362.046000px;}
.x27{left:363.202500px;}
.x7c{left:371.820000px;}
.x83{left:376.965000px;}
.x2a{left:380.664000px;}
.x76{left:382.794000px;}
.x1e{left:386.463000px;}
.x63{left:390.489000px;}
.x2b{left:392.769000px;}
.x8a{left:396.426000px;}
.x3e{left:398.592000px;}
.x1f{left:401.407500px;}
.x20{left:405.217500px;}
.x81{left:410.505000px;}
.x2c{left:417.556500px;}
.x21{left:420.162000px;}
.x2d{left:430.222500px;}
.x86{left:435.027000px;}
.x2e{left:436.648500px;}
.x87{left:438.837000px;}
.x79{left:440.059500px;}
.x4b{left:446.370000px;}
.x2f{left:448.629000px;}
.x88{left:453.781500px;}
.x30{left:455.055000px;}
.x4c{left:461.313000px;}
.x64{left:463.831500px;}
.x4d{left:465.124500px;}
.x73{left:467.839500px;}
.x9{left:469.836000px;}
.x5f{left:472.879500px;}
.xa{left:477.309000px;}
.x65{left:478.776000px;}
.x4e{left:480.069000px;}
.x60{left:481.096500px;}
.x4f{left:483.879000px;}
.x89{left:485.053500px;}
.x6c{left:488.205000px;}
.x50{left:498.823500px;}
.x84{left:499.866000px;}
.x1a{left:501.460500px;}
.x1b{left:508.932000px;}
.x5b{left:512.157000px;}
.x85{left:515.038500px;}
.x7b{left:525.595500px;}
.x5c{left:528.181500px;}
.x77{left:536.922000px;}
.x78{left:543.646500px;}
.x54{left:553.440000px;}
.x68{left:557.716500px;}
.x22{left:560.439000px;}
.x69{left:565.933500px;}
.x71{left:573.867000px;}
.x23{left:575.382000px;}
.x3f{left:578.473500px;}
.x55{left:580.824000px;}
.x56{left:587.250000px;}
.x15{left:588.922500px;}
.x40{left:590.577000px;}
.x72{left:592.662000px;}
.x16{left:596.395500px;}
.xf{left:599.956500px;}
.x41{left:603.259500px;}
.x10{left:607.428000px;}
.x8d{left:613.021500px;}
.x42{left:615.364500px;}
.x8e{left:627.966000px;}
.x43{left:630.699000px;}
.x61{left:633.426000px;}
.x44{left:637.125000px;}
.x62{left:639.397500px;}
.x7a{left:641.139000px;}
.x45{left:649.105500px;}
.x5e{left:651.094500px;}
.x6a{left:654.300000px;}
.x46{left:655.531500px;}
.x31{left:657.120000px;}
.x6b{left:660.271500px;}
.x32{left:669.223500px;}
.x98{left:670.273500px;}
.x33{left:681.906000px;}
.x6d{left:690.651000px;}
.x34{left:694.011000px;}
.x6e{left:697.375500px;}
.x8f{left:701.821500px;}
.x7e{left:703.782000px;}
.x35{left:706.677000px;}
.x7f{left:710.506500px;}
.x36{left:713.103000px;}
.x90{left:716.766000px;}
.x37{left:725.083500px;}
.x38{left:731.509500px;}
.x96{left:734.823000px;}
.x11{left:736.881000px;}
.x12{left:744.352500px;}
.x13{left:748.164000px;}
.x94{left:752.868000px;}
.x24{left:754.347000px;}
.x14{left:755.635500px;}
.x97{left:761.722500px;}
.x99{left:763.564500px;}
.x25{left:769.291500px;}
.x52{left:771.822000px;}
.x53{left:778.546500px;}
.x1c{left:782.407500px;}
.x82{left:784.734000px;}
.x28{left:785.833500px;}
.x1d{left:797.352000px;}
.x29{left:800.778000px;}
.x8b{left:817.950000px;}
.x8c{left:832.894500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls8{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000002pt;}
.ls2a{letter-spacing:0.000015pt;}
.ls25{letter-spacing:0.000078pt;}
.ls19{letter-spacing:0.000081pt;}
.ls6{letter-spacing:0.000133pt;}
.ls1d{letter-spacing:0.000187pt;}
.ls2f{letter-spacing:0.000260pt;}
.lsb{letter-spacing:0.000387pt;}
.ls21{letter-spacing:0.000641pt;}
.ls23{letter-spacing:0.000711pt;}
.lsa{letter-spacing:0.000747pt;}
.ls1b{letter-spacing:0.000863pt;}
.ls31{letter-spacing:0.000921pt;}
.ls32{letter-spacing:0.001026pt;}
.ls17{letter-spacing:0.001226pt;}
.ls20{letter-spacing:0.001351pt;}
.lsd{letter-spacing:0.001382pt;}
.ls11{letter-spacing:0.001405pt;}
.ls24{letter-spacing:0.001697pt;}
.ls13{letter-spacing:0.001774pt;}
.lse{letter-spacing:0.001929pt;}
.ls12{letter-spacing:0.002237pt;}
.ls33{letter-spacing:0.002262pt;}
.ls18{letter-spacing:0.002736pt;}
.ls36{letter-spacing:0.002746pt;}
.ls1e{letter-spacing:0.002825pt;}
.ls10{letter-spacing:0.002861pt;}
.ls2b{letter-spacing:0.003543pt;}
.ls1f{letter-spacing:0.003602pt;}
.ls1c{letter-spacing:0.003995pt;}
.ls22{letter-spacing:0.004101pt;}
.ls29{letter-spacing:0.004267pt;}
.ls15{letter-spacing:0.487835pt;}
.ls16{letter-spacing:2.651733pt;}
.ls1{letter-spacing:2.665203pt;}
.ls0{letter-spacing:9.298933pt;}
.ls4{letter-spacing:10.625718pt;}
.ls7{letter-spacing:10.626533pt;}
.ls39{letter-spacing:11.920090pt;}
.ls30{letter-spacing:11.954133pt;}
.ls26{letter-spacing:11.955635pt;}
.ls28{letter-spacing:11.956267pt;}
.ls34{letter-spacing:11.959467pt;}
.ls38{letter-spacing:12.150384pt;}
.ls9{letter-spacing:12.382211pt;}
.ls27{letter-spacing:12.533411pt;}
.ls37{letter-spacing:13.085323pt;}
.ls35{letter-spacing:13.111467pt;}
.lsc{letter-spacing:13.215545pt;}
.ls1a{letter-spacing:13.411298pt;}
.ls14{letter-spacing:13.923096pt;}
.ls2d{letter-spacing:14.322280pt;}
.ls2c{letter-spacing:14.326668pt;}
.ls2e{letter-spacing:14.327508pt;}
.ls2{letter-spacing:15.937067pt;}
.ls3{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ws54{word-spacing:-13.283467pt;}
.ws10{word-spacing:-12.760670pt;}
.ws1d{word-spacing:-11.955200pt;}
.ws16{word-spacing:-10.626800pt;}
.ws14{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws47{word-spacing:-2.550426pt;}
.ws62{word-spacing:-2.497292pt;}
.ws4f{word-spacing:-2.337890pt;}
.wsa4{word-spacing:-2.231622pt;}
.ws49{word-spacing:-2.178489pt;}
.ws92{word-spacing:-2.072221pt;}
.wsb1{word-spacing:-2.008474pt;}
.wsa9{word-spacing:-1.965953pt;}
.ws18{word-spacing:-1.960653pt;}
.ws8a{word-spacing:-1.912819pt;}
.ws7b{word-spacing:-1.865011pt;}
.ws2a{word-spacing:-1.859685pt;}
.ws7c{word-spacing:-1.673728pt;}
.ws91{word-spacing:-1.594016pt;}
.wsb2{word-spacing:-1.386803pt;}
.ws4c{word-spacing:-1.168945pt;}
.wsaf{word-spacing:-1.115811pt;}
.ws2b{word-spacing:-1.062677pt;}
.ws6{word-spacing:-1.041421pt;}
.ws41{word-spacing:-1.009543pt;}
.ws27{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.929840pt;}
.ws4d{word-spacing:-0.903276pt;}
.wsc9{word-spacing:-0.860774pt;}
.ws6e{word-spacing:-0.797008pt;}
.wsb0{word-spacing:-0.743874pt;}
.ws48{word-spacing:-0.690740pt;}
.ws57{word-spacing:-0.637606pt;}
.wsa0{word-spacing:-0.584473pt;}
.ws78{word-spacing:-0.478205pt;}
.ws3f{word-spacing:-0.425071pt;}
.ws3c{word-spacing:-0.371937pt;}
.ws5b{word-spacing:-0.318803pt;}
.wsbc{word-spacing:-0.286925pt;}
.ws37{word-spacing:-0.265669pt;}
.ws85{word-spacing:-0.239104pt;}
.ws23{word-spacing:-0.212535pt;}
.ws7d{word-spacing:-0.191283pt;}
.ws34{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.143462pt;}
.ws29{word-spacing:-0.106268pt;}
.ws1e{word-spacing:-0.095642pt;}
.ws11{word-spacing:-0.053134pt;}
.ws56{word-spacing:-0.047821pt;}
.wsba{word-spacing:-0.005018pt;}
.ws8f{word-spacing:-0.004395pt;}
.ws3{word-spacing:-0.003117pt;}
.wscc{word-spacing:-0.003081pt;}
.ws15{word-spacing:-0.001904pt;}
.ws35{word-spacing:-0.001460pt;}
.wsbb{word-spacing:-0.001126pt;}
.ws12{word-spacing:-0.000718pt;}
.ws1{word-spacing:0.000000pt;}
.wscf{word-spacing:0.000887pt;}
.ws79{word-spacing:0.047821pt;}
.ws28{word-spacing:0.053134pt;}
.wsb3{word-spacing:0.095642pt;}
.ws36{word-spacing:0.106268pt;}
.ws1f{word-spacing:0.143462pt;}
.ws2c{word-spacing:0.159402pt;}
.ws8e{word-spacing:0.191283pt;}
.ws26{word-spacing:0.212535pt;}
.ws66{word-spacing:0.239104pt;}
.ws31{word-spacing:0.265669pt;}
.ws67{word-spacing:0.286925pt;}
.ws4e{word-spacing:0.318803pt;}
.ws1c{word-spacing:0.334746pt;}
.ws61{word-spacing:0.371937pt;}
.ws6a{word-spacing:0.425071pt;}
.ws6d{word-spacing:0.478205pt;}
.ws1b{word-spacing:0.478208pt;}
.ws6b{word-spacing:0.531339pt;}
.ws2d{word-spacing:0.584473pt;}
.ws99{word-spacing:0.621670pt;}
.ws58{word-spacing:0.637606pt;}
.ws60{word-spacing:0.660267pt;}
.wsb4{word-spacing:0.717312pt;}
.wsc3{word-spacing:0.765133pt;}
.ws6f{word-spacing:0.797008pt;}
.ws72{word-spacing:0.860774pt;}
.ws7{word-spacing:0.892646pt;}
.ws6c{word-spacing:0.903276pt;}
.ws59{word-spacing:0.956410pt;}
.wsc2{word-spacing:1.004237pt;}
.ws5a{word-spacing:1.009543pt;}
.wscd{word-spacing:1.052058pt;}
.ws21{word-spacing:1.062677pt;}
.ws71{word-spacing:1.099878pt;}
.ws24{word-spacing:1.115811pt;}
.wsbf{word-spacing:1.147699pt;}
.ws5f{word-spacing:1.168945pt;}
.wsb6{word-spacing:1.195520pt;}
.ws2e{word-spacing:1.222079pt;}
.wsc4{word-spacing:1.243341pt;}
.ws8b{word-spacing:1.275213pt;}
.wscb{word-spacing:1.291162pt;}
.ws44{word-spacing:1.313345pt;}
.ws76{word-spacing:1.328347pt;}
.ws5d{word-spacing:1.381481pt;}
.ws9e{word-spacing:1.386803pt;}
.ws53{word-spacing:1.434614pt;}
.wsa2{word-spacing:1.487748pt;}
.ws50{word-spacing:1.594016pt;}
.wsa8{word-spacing:1.647150pt;}
.wsbd{word-spacing:1.721549pt;}
.ws40{word-spacing:1.753418pt;}
.wsc0{word-spacing:1.769370pt;}
.wsaa{word-spacing:1.806551pt;}
.ws43{word-spacing:1.912819pt;}
.ws51{word-spacing:1.965953pt;}
.ws65{word-spacing:2.056294pt;}
.ws3d{word-spacing:2.072221pt;}
.wsb7{word-spacing:2.104115pt;}
.ws3e{word-spacing:2.125355pt;}
.ws39{word-spacing:2.178489pt;}
.ws93{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws2{word-spacing:2.233609pt;}
.ws77{word-spacing:2.284756pt;}
.ws64{word-spacing:2.343219pt;}
.ws9b{word-spacing:2.352425pt;}
.ws9d{word-spacing:2.357400pt;}
.ws9c{word-spacing:2.360288pt;}
.ws70{word-spacing:2.391024pt;}
.ws9a{word-spacing:2.391040pt;}
.wsb5{word-spacing:2.438861pt;}
.ws42{word-spacing:2.497292pt;}
.ws75{word-spacing:2.550426pt;}
.ws17{word-spacing:2.550432pt;}
.ws5c{word-spacing:2.656693pt;}
.ws2f{word-spacing:2.709827pt;}
.ws30{word-spacing:2.762961pt;}
.ws81{word-spacing:2.816095pt;}
.wsc1{word-spacing:2.861321pt;}
.wsce{word-spacing:2.862490pt;}
.wsc7{word-spacing:2.865092pt;}
.wsc8{word-spacing:2.866022pt;}
.ws90{word-spacing:2.869229pt;}
.wsca{word-spacing:2.869248pt;}
.ws38{word-spacing:2.922363pt;}
.wsb9{word-spacing:2.964890pt;}
.wsa1{word-spacing:2.975497pt;}
.wsb8{word-spacing:3.012710pt;}
.ws7e{word-spacing:3.028630pt;}
.wsab{word-spacing:3.081764pt;}
.ws20{word-spacing:3.188032pt;}
.ws52{word-spacing:3.294300pt;}
.wsa3{word-spacing:3.347434pt;}
.ws1a{word-spacing:3.395277pt;}
.ws3b{word-spacing:3.453701pt;}
.wsc6{word-spacing:3.538739pt;}
.wsc5{word-spacing:3.634381pt;}
.ws7f{word-spacing:3.666237pt;}
.ws83{word-spacing:3.682202pt;}
.wsa6{word-spacing:3.719371pt;}
.ws84{word-spacing:3.730022pt;}
.ws45{word-spacing:3.825638pt;}
.ws88{word-spacing:3.921306pt;}
.ws82{word-spacing:4.016947pt;}
.ws33{word-spacing:4.091308pt;}
.ws96{word-spacing:4.144442pt;}
.ws55{word-spacing:4.197575pt;}
.wse{word-spacing:4.240070pt;}
.ws3a{word-spacing:4.303843pt;}
.wsf{word-spacing:4.314458pt;}
.ws25{word-spacing:4.463245pt;}
.ws86{word-spacing:4.495155pt;}
.ws95{word-spacing:4.516379pt;}
.wsad{word-spacing:4.569513pt;}
.wsa7{word-spacing:4.675780pt;}
.ws9f{word-spacing:4.728914pt;}
.ws32{word-spacing:4.782048pt;}
.ws80{word-spacing:5.260253pt;}
.wsae{word-spacing:5.313387pt;}
.wsa5{word-spacing:5.366521pt;}
.ws69{word-spacing:5.419654pt;}
.wsac{word-spacing:5.472788pt;}
.ws5e{word-spacing:5.632190pt;}
.ws87{word-spacing:5.690675pt;}
.ws94{word-spacing:5.844725pt;}
.wsbe{word-spacing:5.929779pt;}
.ws98{word-spacing:5.977600pt;}
.ws46{word-spacing:6.110395pt;}
.ws89{word-spacing:6.163529pt;}
.ws97{word-spacing:6.312346pt;}
.ws73{word-spacing:6.322930pt;}
.ws74{word-spacing:6.376064pt;}
.ws22{word-spacing:6.588599pt;}
.ws8d{word-spacing:6.599270pt;}
.wsc{word-spacing:6.918010pt;}
.ws7a{word-spacing:6.960537pt;}
.ws8c{word-spacing:6.981837pt;}
.ws68{word-spacing:8.129482pt;}
.ws4b{word-spacing:8.235749pt;}
.ws4a{word-spacing:8.448285pt;}
.wsa{word-spacing:10.823338pt;}
.ws5{word-spacing:13.761632pt;}
.wsb{word-spacing:14.319536pt;}
.ws63{word-spacing:22.581893pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws13{word-spacing:35.593054pt;}
._12{margin-left:-6.716203pt;}
._17{margin-left:-5.791591pt;}
._2{margin-left:-4.797974pt;}
._1{margin-left:-3.421811pt;}
._19{margin-left:-2.369964pt;}
._0{margin-left:-1.338970pt;}
._4{width:2.045648pt;}
._7{width:3.207582pt;}
._9{width:9.085952pt;}
._5{width:10.295486pt;}
._3{width:11.530016pt;}
._11{width:12.603349pt;}
._22{width:13.607852pt;}
._a{width:14.537523pt;}
._b{width:16.067763pt;}
._c{width:17.024205pt;}
._14{width:18.384318pt;}
._10{width:19.404484pt;}
._21{width:20.626563pt;}
._e{width:21.519216pt;}
._18{width:23.538303pt;}
._13{width:25.132319pt;}
._6{width:27.188522pt;}
._1a{width:29.223627pt;}
._f{width:30.392572pt;}
._1e{width:32.624194pt;}
._1b{width:33.899407pt;}
._1f{width:34.972707pt;}
._d{width:36.991794pt;}
._1c{width:41.550684pt;}
._8{width:48.420127pt;}
._23{width:78.904320pt;}
._1d{width:84.493471pt;}
._15{width:803.538624pt;}
._20{width:2217.751733pt;}
._16{width:2239.005067pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:131.027520pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:14.078151pt;}
.y49{bottom:28.346667pt;}
.y12d{bottom:81.224000pt;}
.ydb{bottom:81.480000pt;}
.yc1{bottom:82.396000pt;}
.ya6{bottom:91.425333pt;}
.y48{bottom:92.108000pt;}
.y1a6{bottom:92.892000pt;}
.y19{bottom:93.018667pt;}
.yda{bottom:98.217333pt;}
.y12c{bottom:98.320000pt;}
.yc0{bottom:99.133333pt;}
.y16f{bottom:107.198667pt;}
.ya5{bottom:108.162667pt;}
.y1a5{bottom:108.233333pt;}
.y47{bottom:108.844000pt;}
.y18{bottom:108.920000pt;}
.y10f{bottom:109.218667pt;}
.y80{bottom:110.425333pt;}
.y143{bottom:112.418667pt;}
.yd9{bottom:114.954667pt;}
.y12b{bottom:115.414667pt;}
.ybe{bottom:115.870667pt;}
.ye3{bottom:118.730667pt;}
.yf7{bottom:119.237333pt;}
.ybf{bottom:120.693333pt;}
.y16e{bottom:122.541333pt;}
.y1a4{bottom:123.576000pt;}
.y17{bottom:124.820000pt;}
.ya4{bottom:124.900000pt;}
.y46{bottom:125.581333pt;}
.y10e{bottom:125.956000pt;}
.y7f{bottom:127.162667pt;}
.y142{bottom:129.156000pt;}
.yd8{bottom:131.692000pt;}
.y12a{bottom:132.510667pt;}
.ybd{bottom:132.608000pt;}
.ye2{bottom:135.826667pt;}
.yf6{bottom:135.974667pt;}
.y16d{bottom:137.882667pt;}
.y120{bottom:138.669333pt;}
.y1a3{bottom:138.918667pt;}
.y16{bottom:140.720000pt;}
.y45{bottom:142.318667pt;}
.y10d{bottom:142.693333pt;}
.y7e{bottom:143.900000pt;}
.ya3{bottom:145.622667pt;}
.y141{bottom:145.893333pt;}
.yd7{bottom:148.429333pt;}
.ybc{bottom:149.345333pt;}
.y129{bottom:149.606667pt;}
.yf5{bottom:152.712000pt;}
.ye1{bottom:152.922667pt;}
.y16c{bottom:153.225333pt;}
.y1a2{bottom:154.261333pt;}
.y11f{bottom:155.406667pt;}
.y15{bottom:156.621333pt;}
.y44{bottom:159.056000pt;}
.y10c{bottom:159.430667pt;}
.y7d{bottom:160.637333pt;}
.y140{bottom:162.630667pt;}
.yd6{bottom:165.166667pt;}
.ybb{bottom:166.082667pt;}
.y16b{bottom:168.568000pt;}
.yf4{bottom:169.449333pt;}
.y1a1{bottom:169.604000pt;}
.y11e{bottom:172.144000pt;}
.y14{bottom:172.521333pt;}
.ya2{bottom:175.510667pt;}
.y43{bottom:175.793333pt;}
.y10b{bottom:176.168000pt;}
.y7c{bottom:177.374667pt;}
.y13f{bottom:179.368000pt;}
.yd5{bottom:181.904000pt;}
.yba{bottom:182.820000pt;}
.y1a0{bottom:184.946667pt;}
.yf3{bottom:186.186667pt;}
.y16a{bottom:187.896000pt;}
.y13{bottom:188.421333pt;}
.y11d{bottom:188.881333pt;}
.ya1{bottom:192.248000pt;}
.y42{bottom:192.530667pt;}
.y10a{bottom:192.905333pt;}
.y7b{bottom:194.112000pt;}
.y13e{bottom:196.105333pt;}
.yd4{bottom:198.641333pt;}
.yb9{bottom:199.557333pt;}
.y19f{bottom:200.289333pt;}
.yf2{bottom:202.924000pt;}
.y12{bottom:204.322667pt;}
.y11c{bottom:205.618667pt;}
.ya0{bottom:208.985333pt;}
.y41{bottom:209.268000pt;}
.y109{bottom:209.642667pt;}
.y7a{bottom:210.849333pt;}
.y13d{bottom:212.841333pt;}
.yd3{bottom:215.378667pt;}
.y19e{bottom:215.632000pt;}
.yb8{bottom:216.294667pt;}
.y169{bottom:217.784000pt;}
.yf1{bottom:219.661333pt;}
.y11b{bottom:222.356000pt;}
.y9f{bottom:225.722667pt;}
.y40{bottom:226.005333pt;}
.y108{bottom:226.380000pt;}
.y79{bottom:227.586667pt;}
.y13c{bottom:229.578667pt;}
.y19d{bottom:230.974667pt;}
.yd2{bottom:232.116000pt;}
.yb7{bottom:233.032000pt;}
.yf0{bottom:236.398667pt;}
.y11a{bottom:239.093333pt;}
.y168{bottom:241.376000pt;}
.y9e{bottom:242.458667pt;}
.y3f{bottom:242.742667pt;}
.y107{bottom:243.117333pt;}
.y78{bottom:244.324000pt;}
.y13b{bottom:246.316000pt;}
.yd1{bottom:248.853333pt;}
.yb6{bottom:249.769333pt;}
.yef{bottom:253.136000pt;}
.y119{bottom:255.830667pt;}
.y9d{bottom:259.196000pt;}
.y3e{bottom:259.480000pt;}
.y106{bottom:259.854667pt;}
.y77{bottom:261.061333pt;}
.y19c{bottom:261.658667pt;}
.y13a{bottom:263.053333pt;}
.y167{bottom:264.966667pt;}
.yd0{bottom:265.590667pt;}
.yb5{bottom:266.506667pt;}
.y11{bottom:266.804000pt;}
.yee{bottom:269.873333pt;}
.y118{bottom:272.566667pt;}
.y9c{bottom:275.933333pt;}
.y3d{bottom:276.217333pt;}
.y105{bottom:276.592000pt;}
.y19b{bottom:277.001333pt;}
.y76{bottom:277.798667pt;}
.y139{bottom:279.790667pt;}
.y128{bottom:282.328000pt;}
.y10{bottom:282.705333pt;}
.yed{bottom:286.610667pt;}
.yb4{bottom:287.229333pt;}
.y166{bottom:288.558667pt;}
.y117{bottom:289.304000pt;}
.y19a{bottom:292.344000pt;}
.y9b{bottom:292.670667pt;}
.ycf{bottom:292.914667pt;}
.y3c{bottom:292.954667pt;}
.y104{bottom:293.328000pt;}
.y138{bottom:296.528000pt;}
.y75{bottom:298.521333pt;}
.yf{bottom:298.605333pt;}
.y127{bottom:299.065333pt;}
.yec{bottom:303.348000pt;}
.y116{bottom:306.041333pt;}
.y199{bottom:307.686667pt;}
.y9a{bottom:309.408000pt;}
.y3b{bottom:309.692000pt;}
.yce{bottom:310.010667pt;}
.y103{bottom:310.065333pt;}
.y165{bottom:312.150667pt;}
.y137{bottom:313.265333pt;}
.yb3{bottom:314.276000pt;}
.ye{bottom:314.505333pt;}
.y126{bottom:315.802667pt;}
.yeb{bottom:320.085333pt;}
.y115{bottom:322.778667pt;}
.y198{bottom:323.029333pt;}
.y99{bottom:326.145333pt;}
.y3a{bottom:326.429333pt;}
.y102{bottom:326.802667pt;}
.ycd{bottom:327.106667pt;}
.y164{bottom:327.772000pt;}
.y74{bottom:328.409333pt;}
.y136{bottom:330.002667pt;}
.y125{bottom:332.540000pt;}
.y197{bottom:336.040000pt;}
.yea{bottom:336.822667pt;}
.y196{bottom:338.372000pt;}
.yd{bottom:338.376000pt;}
.y98{bottom:342.882667pt;}
.y39{bottom:343.166667pt;}
.y163{bottom:343.393333pt;}
.y101{bottom:343.540000pt;}
.y73{bottom:345.146667pt;}
.y135{bottom:346.740000pt;}
.y124{bottom:349.277333pt;}
.y114{bottom:352.616000pt;}
.y195{bottom:353.714667pt;}
.yc{bottom:354.277333pt;}
.y72{bottom:359.457333pt;}
.y97{bottom:359.620000pt;}
.y38{bottom:359.904000pt;}
.y100{bottom:360.277333pt;}
.y71{bottom:361.884000pt;}
.y134{bottom:363.477333pt;}
.ye9{bottom:366.658667pt;}
.y162{bottom:366.984000pt;}
.y194{bottom:369.056000pt;}
.y113{bottom:369.710667pt;}
.yb{bottom:370.177333pt;}
.y70{bottom:376.194667pt;}
.y96{bottom:376.357333pt;}
.y123{bottom:376.569333pt;}
.y37{bottom:376.641333pt;}
.y6f{bottom:378.621333pt;}
.y133{bottom:380.214667pt;}
.yff{bottom:381.000000pt;}
.y161{bottom:382.605333pt;}
.ye8{bottom:383.754667pt;}
.y193{bottom:384.398667pt;}
.y112{bottom:386.806667pt;}
.y6e{bottom:392.932000pt;}
.y95{bottom:393.094667pt;}
.y36{bottom:393.378667pt;}
.y122{bottom:393.664000pt;}
.y6d{bottom:395.358667pt;}
.ya{bottom:395.376000pt;}
.y132{bottom:396.952000pt;}
.y160{bottom:398.228000pt;}
.y192{bottom:399.741333pt;}
.y111{bottom:403.902667pt;}
.y94{bottom:407.405333pt;}
.y93{bottom:409.832000pt;}
.y35{bottom:410.116000pt;}
.y121{bottom:410.760000pt;}
.yfe{bottom:410.888000pt;}
.y9{bottom:411.276000pt;}
.y131{bottom:413.689333pt;}
.y15f{bottom:413.849333pt;}
.y191{bottom:415.084000pt;}
.y6c{bottom:416.080000pt;}
.y110{bottom:420.998667pt;}
.y92{bottom:426.569333pt;}
.y34{bottom:426.853333pt;}
.yfd{bottom:427.625333pt;}
.y15e{bottom:429.470667pt;}
.y130{bottom:430.426667pt;}
.y6b{bottom:434.013333pt;}
.y8{bottom:435.146667pt;}
.y91{bottom:443.306667pt;}
.y33{bottom:443.590667pt;}
.yfc{bottom:444.362667pt;}
.y12f{bottom:444.737333pt;}
.y15d{bottom:445.092000pt;}
.y190{bottom:445.769333pt;}
.y12e{bottom:447.164000pt;}
.y7{bottom:451.048000pt;}
.y90{bottom:460.044000pt;}
.y32{bottom:460.328000pt;}
.yfb{bottom:461.100000pt;}
.y18f{bottom:461.112000pt;}
.y6a{bottom:463.901333pt;}
.y6{bottom:466.948000pt;}
.y18e{bottom:476.454667pt;}
.y15c{bottom:476.653333pt;}
.y8f{bottom:476.781333pt;}
.y69{bottom:480.638667pt;}
.y31{bottom:481.049333pt;}
.y5{bottom:482.848000pt;}
.yfa{bottom:490.936000pt;}
.y18d{bottom:491.797333pt;}
.y15b{bottom:493.390667pt;}
.y68{bottom:497.376000pt;}
.y8e{bottom:497.504000pt;}
.y4{bottom:498.749333pt;}
.y18c{bottom:507.138667pt;}
.yf9{bottom:508.032000pt;}
.y15a{bottom:510.128000pt;}
.ye0{bottom:513.714667pt;}
.y67{bottom:514.113333pt;}
.y3{bottom:514.649333pt;}
.y18b{bottom:522.481333pt;}
.y8d{bottom:524.550667pt;}
.yf8{bottom:525.128000pt;}
.y159{bottom:526.865333pt;}
.ydf{bottom:530.452000pt;}
.y2{bottom:530.549333pt;}
.y66{bottom:530.850667pt;}
.y18a{bottom:537.824000pt;}
.y8c{bottom:541.646667pt;}
.y158{bottom:543.602667pt;}
.y1{bottom:546.450667pt;}
.yde{bottom:547.189333pt;}
.y65{bottom:547.588000pt;}
.y30{bottom:547.849333pt;}
.y189{bottom:553.166667pt;}
.y157{bottom:557.913333pt;}
.y156{bottom:560.340000pt;}
.yb2{bottom:563.926667pt;}
.y64{bottom:564.325333pt;}
.y2f{bottom:565.145333pt;}
.y188{bottom:568.509333pt;}
.y155{bottom:577.077333pt;}
.yb1{bottom:580.664000pt;}
.y63{bottom:581.062667pt;}
.y187{bottom:583.852000pt;}
.y154{bottom:593.814667pt;}
.yb0{bottom:597.401333pt;}
.y62{bottom:597.800000pt;}
.y2e{bottom:598.380000pt;}
.y186{bottom:599.194667pt;}
.y153{bottom:610.552000pt;}
.yaf{bottom:614.138667pt;}
.y61{bottom:614.537333pt;}
.y2d{bottom:615.676000pt;}
.y152{bottom:627.289333pt;}
.y185{bottom:629.878667pt;}
.yae{bottom:630.876000pt;}
.y60{bottom:631.274667pt;}
.y2c{bottom:632.970667pt;}
.y151{bottom:644.026667pt;}
.y184{bottom:645.221333pt;}
.yad{bottom:647.613333pt;}
.y5f{bottom:648.012000pt;}
.y2b{bottom:650.266667pt;}
.y183{bottom:660.564000pt;}
.y150{bottom:660.764000pt;}
.yac{bottom:664.350667pt;}
.y5e{bottom:664.749333pt;}
.y2a{bottom:667.561333pt;}
.y182{bottom:675.906667pt;}
.y14f{bottom:677.501333pt;}
.yab{bottom:681.088000pt;}
.y5d{bottom:681.485333pt;}
.y29{bottom:684.856000pt;}
.y181{bottom:691.249333pt;}
.y14e{bottom:694.238667pt;}
.yaa{bottom:697.825333pt;}
.y5c{bottom:698.222667pt;}
.y28{bottom:702.152000pt;}
.y180{bottom:706.592000pt;}
.y14d{bottom:710.976000pt;}
.ydd{bottom:714.562667pt;}
.y5b{bottom:714.960000pt;}
.ya9{bottom:718.546667pt;}
.y27{bottom:719.446667pt;}
.y17f{bottom:721.934667pt;}
.y14c{bottom:727.713333pt;}
.ye7{bottom:728.873333pt;}
.ye6{bottom:731.300000pt;}
.y5a{bottom:731.697333pt;}
.ydc{bottom:735.284000pt;}
.y26{bottom:736.741333pt;}
.y17e{bottom:737.277333pt;}
.y14b{bottom:744.450667pt;}
.ye5{bottom:748.036000pt;}
.y59{bottom:748.434667pt;}
.y17d{bottom:752.620000pt;}
.ycc{bottom:759.593333pt;}
.y14a{bottom:761.186667pt;}
.y8b{bottom:764.773333pt;}
.y58{bottom:765.172000pt;}
.y17c{bottom:767.961333pt;}
.y25{bottom:769.724000pt;}
.ycb{bottom:776.330667pt;}
.y149{bottom:777.924000pt;}
.y8a{bottom:781.510667pt;}
.y57{bottom:781.909333pt;}
.y17b{bottom:783.304000pt;}
.ye4{bottom:785.496000pt;}
.y24{bottom:787.926667pt;}
.yca{bottom:793.068000pt;}
.y148{bottom:794.661333pt;}
.y89{bottom:798.248000pt;}
.y23{bottom:798.416000pt;}
.y56{bottom:798.646667pt;}
.yc9{bottom:809.805333pt;}
.y147{bottom:811.398667pt;}
.y17a{bottom:813.989333pt;}
.y88{bottom:814.985333pt;}
.y55{bottom:815.384000pt;}
.y22{bottom:816.620000pt;}
.y146{bottom:828.136000pt;}
.y179{bottom:829.332000pt;}
.yc8{bottom:830.528000pt;}
.y21{bottom:830.965333pt;}
.y87{bottom:831.722667pt;}
.y54{bottom:832.121333pt;}
.y178{bottom:844.674667pt;}
.y145{bottom:844.873333pt;}
.y86{bottom:848.460000pt;}
.y53{bottom:848.858667pt;}
.ya8{bottom:853.681333pt;}
.y177{bottom:860.017333pt;}
.y144{bottom:861.610667pt;}
.y85{bottom:865.197333pt;}
.y52{bottom:865.596000pt;}
.y20{bottom:869.361333pt;}
.y176{bottom:875.360000pt;}
.yc7{bottom:878.348000pt;}
.y84{bottom:881.934667pt;}
.y51{bottom:882.333333pt;}
.y1f{bottom:886.098667pt;}
.y175{bottom:890.702667pt;}
.yc6{bottom:895.085333pt;}
.y83{bottom:898.672000pt;}
.y50{bottom:899.070667pt;}
.y174{bottom:906.044000pt;}
.yc5{bottom:911.822667pt;}
.y82{bottom:915.409333pt;}
.y4f{bottom:915.808000pt;}
.y173{bottom:921.386667pt;}
.y1e{bottom:921.582667pt;}
.yc4{bottom:928.560000pt;}
.y4e{bottom:932.545333pt;}
.y81{bottom:936.132000pt;}
.y172{bottom:936.729333pt;}
.yc3{bottom:945.297333pt;}
.y1d{bottom:946.688000pt;}
.y4d{bottom:949.282667pt;}
.y171{bottom:952.072000pt;}
.ya7{bottom:954.104000pt;}
.yc2{bottom:962.034667pt;}
.y4c{bottom:966.020000pt;}
.y170{bottom:967.414667pt;}
.y1c{bottom:971.794667pt;}
.y4b{bottom:982.757333pt;}
.y1a{bottom:1010.449333pt;}
.y4a{bottom:1038.548000pt;}
.h11{height:28.023859pt;}
.h8{height:28.947524pt;}
.h12{height:33.186336pt;}
.h2{height:33.771789pt;}
.ha{height:34.430976pt;}
.he{height:36.666735pt;}
.h10{height:36.873667pt;}
.hc{height:38.256384pt;}
.h9{height:38.596538pt;}
.h5{height:39.000258pt;}
.hb{height:43.421286pt;}
.h3{height:45.271688pt;}
.hd{height:48.245551pt;}
.h7{height:48.365611pt;}
.hf{height:55.952068pt;}
.h6{height:68.861952pt;}
.h4{height:88.836659pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:176.730927pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.157007pt;}
.x95{left:76.309333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x74{left:225.520000pt;}
.x75{left:231.497333pt;}
.x80{left:232.681333pt;}
.x47{left:235.400000pt;}
.x4{left:239.924000pt;}
.x48{left:246.158667pt;}
.x8{left:250.204000pt;}
.x92{left:251.261333pt;}
.xb{left:257.998667pt;}
.x93{left:260.298667pt;}
.xc{left:264.641333pt;}
.xd{left:268.545333pt;}
.x17{left:270.736000pt;}
.x51{left:272.713333pt;}
.x6{left:273.625333pt;}
.xe{left:275.188000pt;}
.x18{left:277.377333pt;}
.x7d{left:279.692000pt;}
.x39{left:280.904000pt;}
.x5d{left:282.137333pt;}
.x7{left:284.345333pt;}
.x6f{left:286.032000pt;}
.x49{left:287.289333pt;}
.x19{left:291.176000pt;}
.x3a{left:292.177333pt;}
.x70{left:293.336000pt;}
.x4a{left:297.834667pt;}
.x66{left:299.182667pt;}
.x3b{left:302.937333pt;}
.x91{left:306.533333pt;}
.x59{left:308.534667pt;}
.x26{left:309.562667pt;}
.x57{left:311.016000pt;}
.x67{left:312.466667pt;}
.x3c{left:314.196000pt;}
.x58{left:318.192000pt;}
.x3d{left:319.908000pt;}
.x5a{left:321.818667pt;}
.x27{left:322.846667pt;}
.x7c{left:330.506667pt;}
.x83{left:335.080000pt;}
.x2a{left:338.368000pt;}
.x76{left:340.261333pt;}
.x1e{left:343.522667pt;}
.x63{left:347.101333pt;}
.x2b{left:349.128000pt;}
.x8a{left:352.378667pt;}
.x3e{left:354.304000pt;}
.x1f{left:356.806667pt;}
.x20{left:360.193333pt;}
.x81{left:364.893333pt;}
.x2c{left:371.161333pt;}
.x21{left:373.477333pt;}
.x2d{left:382.420000pt;}
.x86{left:386.690667pt;}
.x2e{left:388.132000pt;}
.x87{left:390.077333pt;}
.x79{left:391.164000pt;}
.x4b{left:396.773333pt;}
.x2f{left:398.781333pt;}
.x88{left:403.361333pt;}
.x30{left:404.493333pt;}
.x4c{left:410.056000pt;}
.x64{left:412.294667pt;}
.x4d{left:413.444000pt;}
.x73{left:415.857333pt;}
.x9{left:417.632000pt;}
.x5f{left:420.337333pt;}
.xa{left:424.274667pt;}
.x65{left:425.578667pt;}
.x4e{left:426.728000pt;}
.x60{left:427.641333pt;}
.x4f{left:430.114667pt;}
.x89{left:431.158667pt;}
.x6c{left:433.960000pt;}
.x50{left:443.398667pt;}
.x84{left:444.325333pt;}
.x1a{left:445.742667pt;}
.x1b{left:452.384000pt;}
.x5b{left:455.250667pt;}
.x85{left:457.812000pt;}
.x7b{left:467.196000pt;}
.x5c{left:469.494667pt;}
.x77{left:477.264000pt;}
.x78{left:483.241333pt;}
.x54{left:491.946667pt;}
.x68{left:495.748000pt;}
.x22{left:498.168000pt;}
.x69{left:503.052000pt;}
.x71{left:510.104000pt;}
.x23{left:511.450667pt;}
.x3f{left:514.198667pt;}
.x55{left:516.288000pt;}
.x56{left:522.000000pt;}
.x15{left:523.486667pt;}
.x40{left:524.957333pt;}
.x72{left:526.810667pt;}
.x16{left:530.129333pt;}
.xf{left:533.294667pt;}
.x41{left:536.230667pt;}
.x10{left:539.936000pt;}
.x8d{left:544.908000pt;}
.x42{left:546.990667pt;}
.x8e{left:558.192000pt;}
.x43{left:560.621333pt;}
.x61{left:563.045333pt;}
.x44{left:566.333333pt;}
.x62{left:568.353333pt;}
.x7a{left:569.901333pt;}
.x45{left:576.982667pt;}
.x5e{left:578.750667pt;}
.x6a{left:581.600000pt;}
.x46{left:582.694667pt;}
.x31{left:584.106667pt;}
.x6b{left:586.908000pt;}
.x32{left:594.865333pt;}
.x98{left:595.798667pt;}
.x33{left:606.138667pt;}
.x6d{left:613.912000pt;}
.x34{left:616.898667pt;}
.x6e{left:619.889333pt;}
.x8f{left:623.841333pt;}
.x7e{left:625.584000pt;}
.x35{left:628.157333pt;}
.x7f{left:631.561333pt;}
.x36{left:633.869333pt;}
.x90{left:637.125333pt;}
.x37{left:644.518667pt;}
.x38{left:650.230667pt;}
.x96{left:653.176000pt;}
.x11{left:655.005333pt;}
.x12{left:661.646667pt;}
.x13{left:665.034667pt;}
.x94{left:669.216000pt;}
.x24{left:670.530667pt;}
.x14{left:671.676000pt;}
.x97{left:677.086667pt;}
.x99{left:678.724000pt;}
.x25{left:683.814667pt;}
.x52{left:686.064000pt;}
.x53{left:692.041333pt;}
.x1c{left:695.473333pt;}
.x82{left:697.541333pt;}
.x28{left:698.518667pt;}
.x1d{left:708.757333pt;}
.x29{left:711.802667pt;}
.x8b{left:727.066667pt;}
.x8c{left:740.350667pt;}
}




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