
    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_fa602342eb2456e3197c6196.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_56cba936d029d735ecefa654.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_0feda5b57e6a841f2b8ba8ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_583e9f3784326be735191376.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899000;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_2ae1a2ea3a288566449f3bbb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854000;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_238a7a39195f3a6f05bcdb4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m23{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);}
.m2a{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m6{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);}
.m27{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);}
.m24{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);}
.m1c{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);}
.me{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);}
.m2e{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);}
.m3{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);}
.m21{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);}
.m7{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);}
.m22{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);}
.ma{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);}
.m2b{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);}
.m2{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);}
.m20{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);}
.m13{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);}
.m9{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);}
.m15{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);}
.m1f{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);}
.m29{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);}
.mb{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);}
.m2c{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);}
.m12{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);}
.m11{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);}
.m16{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);}
.m14{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);}
.m28{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);}
.m18{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);}
.m26{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);}
.m1e{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);}
.m4{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);}
.md{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);}
.m17{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);}
.m2d{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);}
.m1b{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);}
.mc{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);}
.m1d{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.702000px;}
.v4{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.702000px;}
.v1{vertical-align:26.034000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000060px;}
.ls12{letter-spacing:0.000159px;}
.ls19{letter-spacing:0.000441px;}
.ls6{letter-spacing:2.963550px;}
.ls1{letter-spacing:2.987100px;}
.ls3{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.993100px;}
.ls7{letter-spacing:2.996100px;}
.ls5{letter-spacing:3.008100px;}
.ls13{letter-spacing:12.919365px;}
.lsf{letter-spacing:13.210408px;}
.ls17{letter-spacing:14.100998px;}
.ls1e{letter-spacing:14.730646px;}
.lsd{letter-spacing:14.884347px;}
.ls1d{letter-spacing:14.906400px;}
.ls11{letter-spacing:14.930352px;}
.ls15{letter-spacing:14.942100px;}
.ls8{letter-spacing:14.943900px;}
.ls16{letter-spacing:14.948100px;}
.ls1c{letter-spacing:14.966011px;}
.ls9{letter-spacing:15.122797px;}
.lse{letter-spacing:15.183002px;}
.ls14{letter-spacing:15.184410px;}
.lsb{letter-spacing:15.242473px;}
.lsa{letter-spacing:15.601621px;}
.ls18{letter-spacing:17.685518px;}
.ls2{letter-spacing:17.933100px;}
.ls10{letter-spacing:18.020812px;}
.ls1a{letter-spacing:21.426695px;}
.ls1b{letter-spacing:22.473754px;}
.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;}
}
.ws53{word-spacing:-15.242778px;}
.ws24{word-spacing:-15.003676px;}
.ws55{word-spacing:-13.270183px;}
.ws4{word-spacing:-0.071731px;}
.ws18{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws43{word-spacing:-0.044234px;}
.ws33{word-spacing:-0.035866px;}
.ws1e{word-spacing:0.000000px;}
.ws1b{word-spacing:11.536691px;}
.ws1d{word-spacing:11.907329px;}
.ws1c{word-spacing:12.050791px;}
.ws9e{word-spacing:12.253998px;}
.ws4b{word-spacing:12.552876px;}
.ws41{word-spacing:12.612652px;}
.ws26{word-spacing:12.732203px;}
.ws22{word-spacing:12.851754px;}
.ws69{word-spacing:12.971305px;}
.ws93{word-spacing:13.031081px;}
.ws54{word-spacing:13.150406px;}
.ws56{word-spacing:13.150632px;}
.ws45{word-spacing:13.210408px;}
.ws52{word-spacing:13.329959px;}
.ws57{word-spacing:13.389734px;}
.ws2{word-spacing:13.395802px;}
.ws8c{word-spacing:13.449510px;}
.ws2c{word-spacing:13.509286px;}
.wsbd{word-spacing:13.569061px;}
.ws2d{word-spacing:13.628837px;}
.ws65{word-spacing:13.688612px;}
.wsa9{word-spacing:13.748388px;}
.ws4e{word-spacing:13.808164px;}
.ws23{word-spacing:13.867939px;}
.ws15{word-spacing:13.927715px;}
.wsba{word-spacing:14.047266px;}
.ws5e{word-spacing:14.226593px;}
.ws83{word-spacing:14.256576px;}
.ws20{word-spacing:14.286368px;}
.ws78{word-spacing:14.336415px;}
.ws77{word-spacing:14.338544px;}
.ws59{word-spacing:14.346144px;}
.ws49{word-spacing:14.405920px;}
.ws48{word-spacing:14.465695px;}
.ws91{word-spacing:14.525471px;}
.ws17{word-spacing:14.585246px;}
.ws81{word-spacing:14.633165px;}
.ws19{word-spacing:14.645022px;}
.ws9{word-spacing:14.686963px;}
.ws25{word-spacing:14.704798px;}
.ws8f{word-spacing:14.704945px;}
.ws16{word-spacing:14.764573px;}
.ws8e{word-spacing:14.764691px;}
.ws36{word-spacing:14.823719px;}
.ws14{word-spacing:14.824349px;}
.wsa{word-spacing:14.848358px;}
.ws7f{word-spacing:14.878313px;}
.ws63{word-spacing:14.881769px;}
.ws87{word-spacing:14.883858px;}
.ws12{word-spacing:14.884124px;}
.ws86{word-spacing:14.884458px;}
.ws80{word-spacing:14.885024px;}
.ws84{word-spacing:14.898557px;}
.wsc{word-spacing:14.902157px;}
.ws7d{word-spacing:14.903645px;}
.ws7b{word-spacing:14.904557px;}
.ws21{word-spacing:14.943900px;}
.wse{word-spacing:15.003676px;}
.ws8{word-spacing:15.009754px;}
.ws11{word-spacing:15.063451px;}
.ws7{word-spacing:15.063552px;}
.wsb{word-spacing:15.117350px;}
.ws1a{word-spacing:15.123227px;}
.ws27{word-spacing:15.183002px;}
.ws79{word-spacing:15.211473px;}
.ws7a{word-spacing:15.214054px;}
.ws5d{word-spacing:15.242778px;}
.ws2b{word-spacing:15.302554px;}
.ws3d{word-spacing:15.362329px;}
.ws38{word-spacing:15.481880px;}
.ws34{word-spacing:15.541656px;}
.ws9d{word-spacing:15.587096px;}
.ws35{word-spacing:15.601432px;}
.ws97{word-spacing:15.661207px;}
.ws6e{word-spacing:15.720983px;}
.ws85{word-spacing:15.840534px;}
.wsb3{word-spacing:15.900310px;}
.wsb4{word-spacing:15.960085px;}
.ws66{word-spacing:16.019861px;}
.ws6{word-spacing:16.031923px;}
.ws8b{word-spacing:16.079636px;}
.ws2e{word-spacing:16.139412px;}
.ws92{word-spacing:16.199188px;}
.ws67{word-spacing:16.258963px;}
.ws82{word-spacing:16.318739px;}
.ws4d{word-spacing:16.378514px;}
.ws2a{word-spacing:16.498066px;}
.ws5{word-spacing:16.557841px;}
.ws46{word-spacing:16.677392px;}
.ws28{word-spacing:16.796944px;}
.ws4f{word-spacing:16.916495px;}
.ws5a{word-spacing:16.976270px;}
.ws3b{word-spacing:17.036046px;}
.ws61{word-spacing:17.095822px;}
.ws1f{word-spacing:17.155597px;}
.ws50{word-spacing:17.275148px;}
.ws4a{word-spacing:17.394700px;}
.ws96{word-spacing:17.395014px;}
.ws95{word-spacing:17.454402px;}
.ws30{word-spacing:17.454475px;}
.ws44{word-spacing:17.514251px;}
.ws31{word-spacing:17.574026px;}
.ws94{word-spacing:17.633802px;}
.ws5f{word-spacing:17.693578px;}
.ws13{word-spacing:17.753353px;}
.ws99{word-spacing:17.813129px;}
.ws3c{word-spacing:17.872904px;}
.ws6a{word-spacing:17.887966px;}
.ws42{word-spacing:17.893966px;}
.ws73{word-spacing:17.932472px;}
.ws74{word-spacing:17.932680px;}
.ws39{word-spacing:17.992456px;}
.ws5c{word-spacing:18.052231px;}
.ws64{word-spacing:18.171782px;}
.ws3e{word-spacing:18.231558px;}
.ws47{word-spacing:18.291334px;}
.ws2f{word-spacing:18.351109px;}
.ws10{word-spacing:18.410885px;}
.ws9a{word-spacing:18.470660px;}
.ws6d{word-spacing:18.530436px;}
.ws6f{word-spacing:18.590212px;}
.ws88{word-spacing:18.709685px;}
.ws89{word-spacing:18.709763px;}
.ws75{word-spacing:18.769538px;}
.ws8d{word-spacing:18.948865px;}
.ws58{word-spacing:19.008641px;}
.ws29{word-spacing:19.068416px;}
.ws5b{word-spacing:19.128192px;}
.ws3f{word-spacing:19.187968px;}
.ws7e{word-spacing:19.247743px;}
.ws3a{word-spacing:19.427070px;}
.ws40{word-spacing:19.546621px;}
.wsbc{word-spacing:19.606397px;}
.ws8a{word-spacing:19.725948px;}
.ws1{word-spacing:19.869542px;}
.wsab{word-spacing:20.024826px;}
.wsbb{word-spacing:20.084602px;}
.ws6b{word-spacing:20.144377px;}
.ws68{word-spacing:20.383480px;}
.wsa0{word-spacing:20.443255px;}
.ws62{word-spacing:20.503031px;}
.ws60{word-spacing:20.682358px;}
.ws90{word-spacing:20.742133px;}
.ws37{word-spacing:20.801909px;}
.wsae{word-spacing:20.861684px;}
.wsa4{word-spacing:20.981236px;}
.ws71{word-spacing:21.100787px;}
.ws51{word-spacing:21.160562px;}
.wsad{word-spacing:21.220338px;}
.ws9b{word-spacing:21.371827px;}
.ws98{word-spacing:21.399665px;}
.wsa8{word-spacing:21.454124px;}
.wsa7{word-spacing:21.455603px;}
.wsbf{word-spacing:21.457859px;}
.wsa3{word-spacing:21.459440px;}
.wsb9{word-spacing:21.519216px;}
.ws6c{word-spacing:21.638767px;}
.ws4c{word-spacing:21.698543px;}
.wsaf{word-spacing:22.415850px;}
.wsa6{word-spacing:22.714728px;}
.ws76{word-spacing:22.774504px;}
.ws70{word-spacing:22.894055px;}
.wsb6{word-spacing:23.252708px;}
.wsc0{word-spacing:24.589281px;}
.ws72{word-spacing:24.848963px;}
.wsb0{word-spacing:24.926425px;}
.ws32{word-spacing:27.022475px;}
.ws0{word-spacing:33.115849px;}
.wsf{word-spacing:35.793922px;}
.wsaa{word-spacing:36.404144px;}
.wsbe{word-spacing:36.405344px;}
.wsb7{word-spacing:36.405824px;}
.wsa2{word-spacing:36.406304px;}
.wsac{word-spacing:36.407264px;}
.wsa1{word-spacing:36.408224px;}
.ws9f{word-spacing:36.408704px;}
.wsb5{word-spacing:36.408944px;}
.ws9c{word-spacing:36.409184px;}
.wsb2{word-spacing:36.409424px;}
.wsa5{word-spacing:36.410144px;}
.wsb1{word-spacing:36.410864px;}
.wsb8{word-spacing:43.166199px;}
.wsd{word-spacing:75.244428px;}
.ws7c{word-spacing:880.213776px;}
._d{margin-left:-14.944150px;}
._17{margin-left:-13.262951px;}
._24{margin-left:-7.823477px;}
._16{margin-left:-6.455808px;}
._8{margin-left:-5.260290px;}
._3{margin-left:-3.586536px;}
._2{margin-left:-2.398070px;}
._1{margin-left:-1.195518px;}
._7{width:1.344960px;}
._0{width:2.391036px;}
._14{width:3.606684px;}
._21{width:8.069749px;}
._23{width:9.159766px;}
._a{width:12.612652px;}
._c{width:13.808170px;}
._5{width:15.075505px;}
._f{width:16.512158px;}
._6{width:18.041452px;}
._e{width:19.135238px;}
._4{width:20.562806px;}
._12{width:22.415850px;}
._26{width:23.558633px;}
._9{width:24.567772px;}
._b{width:26.199979px;}
._10{width:27.331542px;}
._13{width:29.887716px;}
._27{width:31.413780px;}
._18{width:33.055907px;}
._15{width:35.865653px;}
._11{width:37.247245px;}
._22{width:39.272610px;}
._25{width:41.610864px;}
._29{width:43.130279px;}
._28{width:46.667053px;}
._19{width:59.694704px;}
._1a{width:60.802139px;}
._1d{width:171.805267px;}
._1c{width:315.737155px;}
._1e{width:550.865270px;}
._1f{width:637.843045px;}
._1b{width:647.430355px;}
._20{width:703.971533px;}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(191,0,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs3{font-size:44.233800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.y30{bottom:50.838000px;}
.y1bc{bottom:95.670000px;}
.y142{bottom:100.009500px;}
.y6c{bottom:100.315500px;}
.y15d{bottom:102.732000px;}
.y1b1{bottom:102.841500px;}
.y2f{bottom:104.301000px;}
.yee{bottom:104.505000px;}
.y194{bottom:104.790000px;}
.y1c7{bottom:108.562500px;}
.y1f9{bottom:109.018500px;}
.y6b{bottom:110.653500px;}
.yfd{bottom:110.697000px;}
.y17d{bottom:112.005000px;}
.ybd{bottom:113.415000px;}
.y1bb{bottom:113.602500px;}
.y141{bottom:114.687000px;}
.y1b0{bottom:117.520500px;}
.y2e{bottom:118.498500px;}
.yed{bottom:119.182500px;}
.y15c{bottom:120.664500px;}
.y193{bottom:122.722500px;}
.y2d{bottom:122.838000px;}
.y1c6{bottom:123.240000px;}
.yfc{bottom:125.374500px;}
.y1f6{bottom:125.604000px;}
.y1f8{bottom:126.951000px;}
.ybc{bottom:128.092500px;}
.y6a{bottom:129.189000px;}
.y140{bottom:129.364500px;}
.y17c{bottom:129.937500px;}
.y1ba{bottom:131.535000px;}
.y10d{bottom:131.557500px;}
.yec{bottom:133.860000px;}
.y2c{bottom:137.515500px;}
.y9f{bottom:139.249500px;}
.yfb{bottom:140.052000px;}
.y1f5{bottom:140.281500px;}
.y1af{bottom:140.284500px;}
.y192{bottom:140.655000px;}
.ybb{bottom:142.770000px;}
.y69{bottom:143.866500px;}
.y13f{bottom:144.042000px;}
.y1f7{bottom:144.883500px;}
.y1c5{bottom:146.004000px;}
.y17b{bottom:147.870000px;}
.yeb{bottom:148.537500px;}
.y15b{bottom:148.684500px;}
.y9e{bottom:149.587500px;}
.y10c{bottom:151.234500px;}
.y68{bottom:154.206000px;}
.y1b9{bottom:156.939000px;}
.yba{bottom:157.449000px;}
.y1ad{bottom:158.217000px;}
.y191{bottom:158.587500px;}
.y13e{bottom:158.719500px;}
.y2b{bottom:160.279500px;}
.yfa{bottom:162.816000px;}
.y1f4{bottom:163.045500px;}
.yea{bottom:163.215000px;}
.y1ae{bottom:163.641000px;}
.y1c4{bottom:163.936500px;}
.y17a{bottom:165.804000px;}
.y15a{bottom:166.617000px;}
.y9d{bottom:168.124500px;}
.y10b{bottom:169.167000px;}
.yb9{bottom:172.126500px;}
.y67{bottom:172.741500px;}
.y13d{bottom:173.397000px;}
.y1ac{bottom:176.149500px;}
.y190{bottom:176.520000px;}
.y2a{bottom:178.212000px;}
.yf9{bottom:180.748500px;}
.y1f3{bottom:180.978000px;}
.y1c3{bottom:181.870500px;}
.y9c{bottom:182.802000px;}
.y179{bottom:183.736500px;}
.y159{bottom:184.549500px;}
.ye9{bottom:185.979000px;}
.yb8{bottom:186.804000px;}
.y66{bottom:187.177500px;}
.y1ab{bottom:194.082000px;}
.y18f{bottom:194.454000px;}
.y13c{bottom:195.870000px;}
.y29{bottom:196.144500px;}
.y1b8{bottom:196.725000px;}
.y9b{bottom:197.479500px;}
.yf8{bottom:198.682500px;}
.y1f2{bottom:198.910500px;}
.y1c2{bottom:199.803000px;}
.yb7{bottom:201.481500px;}
.y178{bottom:201.669000px;}
.y65{bottom:201.855000px;}
.y10a{bottom:202.044000px;}
.y158{bottom:202.483500px;}
.ye8{bottom:203.913000px;}
.y1aa{bottom:212.014500px;}
.y9a{bottom:212.157000px;}
.y18e{bottom:212.386500px;}
.y13b{bottom:213.802500px;}
.y28{bottom:214.077000px;}
.y1b7{bottom:214.657500px;}
.yb6{bottom:216.159000px;}
.y64{bottom:216.532500px;}
.yf7{bottom:216.615000px;}
.y1f1{bottom:216.843000px;}
.y1c1{bottom:217.735500px;}
.y177{bottom:219.601500px;}
.y157{bottom:220.416000px;}
.ye7{bottom:221.845500px;}
.y63{bottom:226.870500px;}
.y1a9{bottom:229.947000px;}
.y18d{bottom:230.319000px;}
.yb5{bottom:230.836500px;}
.y13a{bottom:231.735000px;}
.y109{bottom:231.933000px;}
.y27{bottom:232.009500px;}
.y1b6{bottom:232.590000px;}
.yf6{bottom:234.547500px;}
.y1f0{bottom:234.775500px;}
.y99{bottom:234.921000px;}
.y1c0{bottom:235.668000px;}
.y176{bottom:237.534000px;}
.y156{bottom:238.348500px;}
.ye6{bottom:239.778000px;}
.y62{bottom:241.068000px;}
.y1a8{bottom:247.881000px;}
.y18c{bottom:248.251500px;}
.y139{bottom:249.667500px;}
.y26{bottom:249.943500px;}
.y1b5{bottom:250.522500px;}
.yf5{bottom:252.480000px;}
.y1ef{bottom:252.709500px;}
.y98{bottom:252.853500px;}
.yb3{bottom:253.600500px;}
.y175{bottom:255.466500px;}
.y155{bottom:256.281000px;}
.ye5{bottom:257.710500px;}
.yb4{bottom:259.026000px;}
.y61{bottom:259.603500px;}
.y108{bottom:261.820500px;}
.y1a7{bottom:265.813500px;}
.y18b{bottom:266.184000px;}
.y138{bottom:267.600000px;}
.y25{bottom:267.876000px;}
.yf4{bottom:270.412500px;}
.y1ee{bottom:270.642000px;}
.y97{bottom:270.786000px;}
.yb2{bottom:271.534500px;}
.y174{bottom:273.400500px;}
.y154{bottom:274.213500px;}
.ye4{bottom:275.643000px;}
.y60{bottom:282.367500px;}
.y1a6{bottom:283.746000px;}
.y137{bottom:285.532500px;}
.y24{bottom:285.808500px;}
.yf3{bottom:288.345000px;}
.y1ed{bottom:288.574500px;}
.y96{bottom:288.720000px;}
.yb1{bottom:289.467000px;}
.y173{bottom:291.333000px;}
.y107{bottom:291.708000px;}
.y153{bottom:292.146000px;}
.ye3{bottom:293.575500px;}
.y18a{bottom:294.204000px;}
.y1b4{bottom:298.987500px;}
.y1a5{bottom:301.678500px;}
.y136{bottom:303.466500px;}
.y23{bottom:303.741000px;}
.yf2{bottom:306.279000px;}
.y1ec{bottom:306.507000px;}
.y95{bottom:306.652500px;}
.yb0{bottom:307.399500px;}
.y172{bottom:309.265500px;}
.y152{bottom:310.080000px;}
.ye2{bottom:311.509500px;}
.y189{bottom:312.136500px;}
.y5f{bottom:312.256500px;}
.y1a4{bottom:319.611000px;}
.y135{bottom:321.399000px;}
.y106{bottom:321.595500px;}
.y22{bottom:321.673500px;}
.yf1{bottom:324.211500px;}
.y1eb{bottom:324.439500px;}
.y94{bottom:324.585000px;}
.yaf{bottom:325.332000px;}
.y171{bottom:327.198000px;}
.y151{bottom:328.012500px;}
.ye1{bottom:329.442000px;}
.y188{bottom:330.070500px;}
.y1b3{bottom:331.416000px;}
.y1a3{bottom:337.543500px;}
.y134{bottom:339.331500px;}
.y105{bottom:339.529500px;}
.y21{bottom:339.606000px;}
.y5e{bottom:342.144000px;}
.y1ea{bottom:342.372000px;}
.y93{bottom:342.517500px;}
.yae{bottom:343.264500px;}
.y170{bottom:345.130500px;}
.y150{bottom:345.945000px;}
.ye0{bottom:347.374500px;}
.y187{bottom:348.003000px;}
.y1a2{bottom:355.477500px;}
.y133{bottom:357.264000px;}
.y20{bottom:357.540000px;}
.y5d{bottom:360.076500px;}
.y1e9{bottom:360.306000px;}
.y92{bottom:360.450000px;}
.yad{bottom:361.197000px;}
.y16f{bottom:363.063000px;}
.y14f{bottom:363.877500px;}
.ydf{bottom:365.307000px;}
.y186{bottom:365.935500px;}
.y104{bottom:369.417000px;}
.y1a1{bottom:373.410000px;}
.y132{bottom:375.196500px;}
.y1f{bottom:375.472500px;}
.y5c{bottom:378.009000px;}
.y1e8{bottom:378.238500px;}
.y90{bottom:378.382500px;}
.yac{bottom:379.131000px;}
.y14e{bottom:381.810000px;}
.ydd{bottom:383.239500px;}
.y91{bottom:383.808000px;}
.y185{bottom:383.868000px;}
.yde{bottom:388.665000px;}
.y16e{bottom:391.083000px;}
.y1a0{bottom:391.342500px;}
.y131{bottom:393.129000px;}
.y1d{bottom:393.405000px;}
.y5b{bottom:395.941500px;}
.y1e7{bottom:396.171000px;}
.y8f{bottom:396.316500px;}
.yab{bottom:397.063500px;}
.y1e{bottom:398.829000px;}
.y14d{bottom:399.742500px;}
.ydc{bottom:401.172000px;}
.y184{bottom:401.800500px;}
.y103{bottom:402.294000px;}
.y16d{bottom:409.017000px;}
.y19f{bottom:409.275000px;}
.y130{bottom:411.063000px;}
.y1c{bottom:411.337500px;}
.y5a{bottom:413.875500px;}
.y1e6{bottom:414.103500px;}
.y8e{bottom:414.249000px;}
.yaa{bottom:414.996000px;}
.y14c{bottom:417.676500px;}
.ydb{bottom:419.106000px;}
.y183{bottom:419.733000px;}
.y102{bottom:420.226500px;}
.y16c{bottom:426.949500px;}
.y19e{bottom:427.207500px;}
.y12f{bottom:428.995500px;}
.y1b{bottom:429.270000px;}
.y58{bottom:431.808000px;}
.y1e5{bottom:432.036000px;}
.y8d{bottom:432.181500px;}
.ya9{bottom:432.928500px;}
.yda{bottom:437.038500px;}
.y59{bottom:437.232000px;}
.y182{bottom:437.667000px;}
.y101{bottom:438.159000px;}
.y16b{bottom:444.882000px;}
.y19d{bottom:445.140000px;}
.y14b{bottom:445.696500px;}
.y12e{bottom:446.928000px;}
.y1a{bottom:447.202500px;}
.y57{bottom:449.740500px;}
.y1e4{bottom:449.968500px;}
.y8c{bottom:450.114000px;}
.ya8{bottom:450.861000px;}
.yd9{bottom:454.971000px;}
.y181{bottom:455.599500px;}
.y100{bottom:456.091500px;}
.y16a{bottom:462.814500px;}
.y19c{bottom:463.074000px;}
.y12d{bottom:464.860500px;}
.y19{bottom:465.136500px;}
.y56{bottom:467.673000px;}
.y1e3{bottom:467.902500px;}
.y8b{bottom:468.046500px;}
.ya6{bottom:468.793500px;}
.y14a{bottom:471.100500px;}
.yd8{bottom:472.903500px;}
.yff{bottom:474.024000px;}
.ya7{bottom:474.219000px;}
.y169{bottom:480.747000px;}
.y19b{bottom:481.006500px;}
.y12c{bottom:482.793000px;}
.y18{bottom:483.069000px;}
.y55{bottom:485.605500px;}
.y1e2{bottom:485.835000px;}
.y89{bottom:485.979000px;}
.ya5{bottom:486.727500px;}
.yd7{bottom:490.836000px;}
.y8a{bottom:491.404500px;}
.y168{bottom:498.679500px;}
.y19a{bottom:498.939000px;}
.y12b{bottom:500.725500px;}
.y17{bottom:501.001500px;}
.y54{bottom:503.538000px;}
.y1e1{bottom:503.767500px;}
.y88{bottom:503.913000px;}
.ya4{bottom:504.660000px;}
.y180{bottom:505.810500px;}
.yd6{bottom:508.768500px;}
.y149{bottom:512.196000px;}
.y167{bottom:516.613500px;}
.y199{bottom:516.871500px;}
.y12a{bottom:518.659500px;}
.y16{bottom:518.934000px;}
.y53{bottom:521.472000px;}
.y1e0{bottom:521.700000px;}
.y87{bottom:521.845500px;}
.y1bf{bottom:522.592500px;}
.yd5{bottom:526.702500px;}
.y148{bottom:530.128500px;}
.y166{bottom:534.546000px;}
.y129{bottom:536.592000px;}
.y52{bottom:539.404500px;}
.y1df{bottom:539.632500px;}
.y86{bottom:539.778000px;}
.y1be{bottom:540.525000px;}
.y15{bottom:544.339500px;}
.yd4{bottom:544.635000px;}
.y147{bottom:548.062500px;}
.y165{bottom:552.478500px;}
.y128{bottom:554.524500px;}
.y51{bottom:557.337000px;}
.y1de{bottom:557.565000px;}
.y85{bottom:557.710500px;}
.yd3{bottom:562.567500px;}
.y146{bottom:565.995000px;}
.y198{bottom:567.084000px;}
.y164{bottom:570.411000px;}
.y50{bottom:575.269500px;}
.y1dd{bottom:575.499000px;}
.y84{bottom:575.643000px;}
.yd2{bottom:580.500000px;}
.y163{bottom:588.343500px;}
.y127{bottom:588.976500px;}
.y4f{bottom:593.202000px;}
.y1dc{bottom:593.431500px;}
.y83{bottom:593.575500px;}
.yd1{bottom:598.432500px;}
.y197{bottom:599.511000px;}
.y14{bottom:602.826000px;}
.y162{bottom:606.276000px;}
.y126{bottom:606.910500px;}
.y4e{bottom:611.134500px;}
.y1db{bottom:611.364000px;}
.y82{bottom:611.509500px;}
.y145{bottom:616.206000px;}
.yd0{bottom:616.365000px;}
.y124{bottom:624.843000px;}
.y4d{bottom:629.068500px;}
.y1da{bottom:629.296500px;}
.y81{bottom:629.442000px;}
.y125{bottom:630.267000px;}
.yce{bottom:634.299000px;}
.ycf{bottom:639.723000px;}
.y4c{bottom:647.001000px;}
.y1d9{bottom:647.229000px;}
.y80{bottom:647.374500px;}
.y144{bottom:648.634500px;}
.y13{bottom:648.829500px;}
.ycc{bottom:652.231500px;}
.yf0{bottom:652.425000px;}
.y123{bottom:654.438000px;}
.y161{bottom:656.488500px;}
.ycd{bottom:657.655500px;}
.y4b{bottom:664.933500px;}
.y1d8{bottom:665.161500px;}
.y12{bottom:665.268000px;}
.y7f{bottom:665.307000px;}
.ycb{bottom:670.164000px;}
.ya3{bottom:670.357500px;}
.y122{bottom:672.370500px;}
.y11{bottom:681.706500px;}
.y49{bottom:682.866000px;}
.y1d7{bottom:683.095500px;}
.y7e{bottom:683.239500px;}
.yca{bottom:688.096500px;}
.y4a{bottom:688.290000px;}
.y160{bottom:688.917000px;}
.y121{bottom:690.304500px;}
.y10{bottom:698.145000px;}
.y1b2{bottom:699.727500px;}
.y48{bottom:700.798500px;}
.y1d6{bottom:701.028000px;}
.y7d{bottom:701.172000px;}
.yc9{bottom:706.029000px;}
.y11f{bottom:708.237000px;}
.y120{bottom:713.661000px;}
.yf{bottom:714.583500px;}
.y47{bottom:718.731000px;}
.y1d5{bottom:718.960500px;}
.y7c{bottom:719.106000px;}
.yc8{bottom:723.961500px;}
.ye{bottom:731.022000px;}
.y46{bottom:736.665000px;}
.y1d4{bottom:736.893000px;}
.y7b{bottom:737.038500px;}
.y11e{bottom:737.832000px;}
.yc7{bottom:741.895500px;}
.yd{bottom:747.460500px;}
.y45{bottom:754.597500px;}
.y1d3{bottom:754.825500px;}
.y7a{bottom:754.971000px;}
.y11d{bottom:755.766000px;}
.yc6{bottom:759.828000px;}
.yc{bottom:763.899000px;}
.y43{bottom:772.530000px;}
.y1d2{bottom:772.758000px;}
.y11c{bottom:773.698500px;}
.yc5{bottom:777.760500px;}
.y44{bottom:777.954000px;}
.yb{bottom:780.336000px;}
.y79{bottom:789.715500px;}
.y41{bottom:790.462500px;}
.y1d1{bottom:790.692000px;}
.y11b{bottom:791.631000px;}
.yc4{bottom:795.693000px;}
.y42{bottom:795.886500px;}
.yfe{bottom:803.164500px;}
.y78{bottom:807.648000px;}
.y40{bottom:808.395000px;}
.y1d0{bottom:808.624500px;}
.y119{bottom:809.563500px;}
.yc3{bottom:813.625500px;}
.y11a{bottom:814.987500px;}
.y196{bottom:816.139500px;}
.ya{bottom:818.409000px;}
.y77{bottom:825.580500px;}
.y3f{bottom:826.327500px;}
.y1cf{bottom:826.557000px;}
.yc2{bottom:831.558000px;}
.yef{bottom:831.753000px;}
.y195{bottom:834.072000px;}
.y118{bottom:839.160000px;}
.y76{bottom:843.514500px;}
.y3e{bottom:844.261500px;}
.y1ce{bottom:844.489500px;}
.yc1{bottom:849.492000px;}
.y117{bottom:857.092500px;}
.y75{bottom:861.447000px;}
.y3d{bottom:862.194000px;}
.y1cd{bottom:862.422000px;}
.y143{bottom:865.035000px;}
.y17f{bottom:866.814000px;}
.yc0{bottom:867.424500px;}
.y1bd{bottom:867.618000px;}
.y9{bottom:871.357500px;}
.y116{bottom:875.025000px;}
.y74{bottom:879.379500px;}
.y3c{bottom:880.126500px;}
.y1cc{bottom:887.827500px;}
.y15f{bottom:887.850000px;}
.y8{bottom:889.290000px;}
.ybf{bottom:892.828500px;}
.y114{bottom:892.957500px;}
.y3b{bottom:898.059000px;}
.y115{bottom:898.381500px;}
.y17e{bottom:899.242500px;}
.y7{bottom:901.798500px;}
.y73{bottom:904.783500px;}
.y3a{bottom:915.991500px;}
.y15e{bottom:920.278500px;}
.y113{bottom:922.554000px;}
.y6{bottom:925.156500px;}
.y39{bottom:933.924000px;}
.y112{bottom:940.486500px;}
.y72{bottom:945.880500px;}
.y38{bottom:951.858000px;}
.y5{bottom:952.608000px;}
.ya2{bottom:957.282000px;}
.y111{bottom:958.419000px;}
.y71{bottom:963.813000px;}
.y37{bottom:969.790500px;}
.y4{bottom:973.530000px;}
.y110{bottom:976.351500px;}
.y70{bottom:981.745500px;}
.y36{bottom:987.723000px;}
.y10e{bottom:994.284000px;}
.y3{bottom:994.452000px;}
.y6f{bottom:999.678000px;}
.y10f{bottom:999.709500px;}
.y35{bottom:1005.655500px;}
.ya1{bottom:1011.079500px;}
.y1cb{bottom:1013.356500px;}
.y6e{bottom:1017.610500px;}
.y34{bottom:1023.588000px;}
.y1ca{bottom:1031.289000px;}
.y2{bottom:1033.167000px;}
.y33{bottom:1041.520500px;}
.y6d{bottom:1047.499500px;}
.y1c8{bottom:1049.221500px;}
.y1c9{bottom:1054.647000px;}
.y32{bottom:1059.454500px;}
.ybe{bottom:1064.878500px;}
.y1{bottom:1070.527500px;}
.y31{bottom:1077.387000px;}
.ya0{bottom:1082.811000px;}
.ha{height:25.859098px;}
.h4{height:31.892570px;}
.hc{height:31.944161px;}
.hb{height:34.478653px;}
.h7{height:39.864614px;}
.hf{height:39.930101px;}
.hd{height:40.026010px;}
.h8{height:43.098208px;}
.h5{height:44.473046px;}
.h6{height:53.368013px;}
.he{height:53.588570px;}
.h9{height:53.594570px;}
.h2{height:64.822646px;}
.h3{height:64.828646px;}
.h1{height:88.946539px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:209.011500px;}
.x2{left:211.492500px;}
.x1{left:212.598000px;}
.x3{left:217.081500px;}
.x61{left:223.059000px;}
.x15{left:224.404500px;}
.x5d{left:227.004000px;}
.x7{left:228.888000px;}
.x39{left:231.279000px;}
.x8{left:233.746500px;}
.x4{left:235.014000px;}
.x3c{left:237.256500px;}
.x23{left:244.333500px;}
.x34{left:247.636500px;}
.x5{left:249.733500px;}
.xa{left:253.281000px;}
.x4a{left:254.419500px;}
.x6{left:256.009500px;}
.x24{left:259.803000px;}
.xb{left:262.693500px;}
.x4d{left:280.488000px;}
.x58{left:281.938500px;}
.x4b{left:283.789500px;}
.x56{left:308.328000px;}
.x4f{left:315.813000px;}
.x2b{left:318.391500px;}
.x49{left:320.775000px;}
.x55{left:328.038000px;}
.x2c{left:330.196500px;}
.x1b{left:332.431500px;}
.x4c{left:334.257000px;}
.x50{left:336.984000px;}
.x48{left:338.179500px;}
.x1c{left:347.982000px;}
.x47{left:350.955000px;}
.x27{left:354.492000px;}
.x25{left:355.941000px;}
.x46{left:361.917000px;}
.x28{left:366.298500px;}
.x26{left:371.410500px;}
.x29{left:374.188500px;}
.x2a{left:385.993500px;}
.xe{left:387.546000px;}
.x3f{left:390.513000px;}
.xf{left:393.823500px;}
.x40{left:402.318000px;}
.x60{left:404.368500px;}
.x4e{left:417.874500px;}
.x57{left:454.557000px;}
.x35{left:455.643000px;}
.x51{left:458.085000px;}
.x1d{left:467.665500px;}
.x36{left:471.084000px;}
.x52{left:473.644500px;}
.x1e{left:479.472000px;}
.x67{left:483.271500px;}
.x44{left:492.967500px;}
.x41{left:494.272500px;}
.x45{left:504.772500px;}
.x42{left:506.077500px;}
.x9{left:519.043500px;}
.x65{left:520.930500px;}
.x37{left:537.075000px;}
.x5e{left:538.863000px;}
.x3d{left:546.676500px;}
.x5f{left:547.830000px;}
.x38{left:548.881500px;}
.x3e{left:558.481500px;}
.x66{left:563.970000px;}
.x19{left:585.304500px;}
.x2d{left:592.698000px;}
.x59{left:595.719000px;}
.x1a{left:597.111000px;}
.x2e{left:604.504500px;}
.x5a{left:607.524000px;}
.x10{left:611.017500px;}
.x12{left:615.531000px;}
.x11{left:617.295000px;}
.x64{left:619.561500px;}
.x13{left:627.337500px;}
.x2f{left:629.593500px;}
.x30{left:641.400000px;}
.x21{left:660.981000px;}
.x63{left:662.599500px;}
.x5b{left:675.264000px;}
.x22{left:677.266500px;}
.x5c{left:687.070500px;}
.x31{left:689.446500px;}
.x62{left:691.291500px;}
.xc{left:698.592000px;}
.x32{left:701.253000px;}
.xd{left:704.868000px;}
.x53{left:749.956500px;}
.x3a{left:761.808000px;}
.x43{left:763.023000px;}
.x54{left:765.516000px;}
.x3b{left:773.613000px;}
.x17{left:779.424000px;}
.x18{left:791.230500px;}
.x33{left:794.869500px;}
.x1f{left:799.957500px;}
.x16{left:806.788500px;}
.x20{left:811.764000px;}
@media print{
.v2{vertical-align:-19.290667pt;}
.v4{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.290667pt;}
.v1{vertical-align:23.141333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000053pt;}
.ls12{letter-spacing:0.000141pt;}
.ls19{letter-spacing:0.000392pt;}
.ls6{letter-spacing:2.634267pt;}
.ls1{letter-spacing:2.655200pt;}
.ls3{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.660533pt;}
.ls7{letter-spacing:2.663200pt;}
.ls5{letter-spacing:2.673867pt;}
.ls13{letter-spacing:11.483880pt;}
.lsf{letter-spacing:11.742585pt;}
.ls17{letter-spacing:12.534220pt;}
.ls1e{letter-spacing:13.093907pt;}
.lsd{letter-spacing:13.230531pt;}
.ls1d{letter-spacing:13.250133pt;}
.ls11{letter-spacing:13.271424pt;}
.ls15{letter-spacing:13.281867pt;}
.ls8{letter-spacing:13.283467pt;}
.ls16{letter-spacing:13.287200pt;}
.ls1c{letter-spacing:13.303121pt;}
.ls9{letter-spacing:13.442486pt;}
.lse{letter-spacing:13.496002pt;}
.ls14{letter-spacing:13.497254pt;}
.lsb{letter-spacing:13.548865pt;}
.lsa{letter-spacing:13.868107pt;}
.ls18{letter-spacing:15.720461pt;}
.ls2{letter-spacing:15.940533pt;}
.ls10{letter-spacing:16.018500pt;}
.ls1a{letter-spacing:19.045951pt;}
.ls1b{letter-spacing:19.976671pt;}
.ws53{word-spacing:-13.549136pt;}
.ws24{word-spacing:-13.336601pt;}
.ws55{word-spacing:-11.795718pt;}
.ws4{word-spacing:-0.063761pt;}
.ws18{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws43{word-spacing:-0.039319pt;}
.ws33{word-spacing:-0.031881pt;}
.ws1e{word-spacing:0.000000pt;}
.ws1b{word-spacing:10.254836pt;}
.ws1d{word-spacing:10.584293pt;}
.ws1c{word-spacing:10.711814pt;}
.ws9e{word-spacing:10.892443pt;}
.ws4b{word-spacing:11.158112pt;}
.ws41{word-spacing:11.211246pt;}
.ws26{word-spacing:11.317514pt;}
.ws22{word-spacing:11.423781pt;}
.ws69{word-spacing:11.530049pt;}
.ws93{word-spacing:11.583183pt;}
.ws54{word-spacing:11.689250pt;}
.ws56{word-spacing:11.689451pt;}
.ws45{word-spacing:11.742585pt;}
.ws52{word-spacing:11.848852pt;}
.ws57{word-spacing:11.901986pt;}
.ws2{word-spacing:11.907379pt;}
.ws8c{word-spacing:11.955120pt;}
.ws2c{word-spacing:12.008254pt;}
.wsbd{word-spacing:12.061388pt;}
.ws2d{word-spacing:12.114522pt;}
.ws65{word-spacing:12.167655pt;}
.wsa9{word-spacing:12.220789pt;}
.ws4e{word-spacing:12.273923pt;}
.ws23{word-spacing:12.327057pt;}
.ws15{word-spacing:12.380191pt;}
.wsba{word-spacing:12.486459pt;}
.ws5e{word-spacing:12.645860pt;}
.ws83{word-spacing:12.672512pt;}
.ws20{word-spacing:12.698994pt;}
.ws78{word-spacing:12.743480pt;}
.ws77{word-spacing:12.745372pt;}
.ws59{word-spacing:12.752128pt;}
.ws49{word-spacing:12.805262pt;}
.ws48{word-spacing:12.858396pt;}
.ws91{word-spacing:12.911530pt;}
.ws17{word-spacing:12.964663pt;}
.ws81{word-spacing:13.007258pt;}
.ws19{word-spacing:13.017797pt;}
.ws9{word-spacing:13.055078pt;}
.ws25{word-spacing:13.070931pt;}
.ws8f{word-spacing:13.071062pt;}
.ws16{word-spacing:13.124065pt;}
.ws8e{word-spacing:13.124170pt;}
.ws36{word-spacing:13.176639pt;}
.ws14{word-spacing:13.177199pt;}
.wsa{word-spacing:13.198541pt;}
.ws7f{word-spacing:13.225167pt;}
.ws63{word-spacing:13.228239pt;}
.ws87{word-spacing:13.230096pt;}
.ws12{word-spacing:13.230333pt;}
.ws86{word-spacing:13.230629pt;}
.ws80{word-spacing:13.231133pt;}
.ws84{word-spacing:13.243162pt;}
.wsc{word-spacing:13.246362pt;}
.ws7d{word-spacing:13.247684pt;}
.ws7b{word-spacing:13.248495pt;}
.ws21{word-spacing:13.283467pt;}
.wse{word-spacing:13.336601pt;}
.ws8{word-spacing:13.342003pt;}
.ws11{word-spacing:13.389734pt;}
.ws7{word-spacing:13.389824pt;}
.wsb{word-spacing:13.437645pt;}
.ws1a{word-spacing:13.442868pt;}
.ws27{word-spacing:13.496002pt;}
.ws79{word-spacing:13.521310pt;}
.ws7a{word-spacing:13.523603pt;}
.ws5d{word-spacing:13.549136pt;}
.ws2b{word-spacing:13.602270pt;}
.ws3d{word-spacing:13.655404pt;}
.ws38{word-spacing:13.761671pt;}
.ws34{word-spacing:13.814805pt;}
.ws9d{word-spacing:13.855197pt;}
.ws35{word-spacing:13.867939pt;}
.ws97{word-spacing:13.921073pt;}
.ws6e{word-spacing:13.974207pt;}
.ws85{word-spacing:14.080475pt;}
.wsb3{word-spacing:14.133609pt;}
.wsb4{word-spacing:14.186742pt;}
.ws66{word-spacing:14.239876pt;}
.ws6{word-spacing:14.250598pt;}
.ws8b{word-spacing:14.293010pt;}
.ws2e{word-spacing:14.346144pt;}
.ws92{word-spacing:14.399278pt;}
.ws67{word-spacing:14.452412pt;}
.ws82{word-spacing:14.505546pt;}
.ws4d{word-spacing:14.558679pt;}
.ws2a{word-spacing:14.664947pt;}
.ws5{word-spacing:14.718081pt;}
.ws46{word-spacing:14.824349pt;}
.ws28{word-spacing:14.930617pt;}
.ws4f{word-spacing:15.036884pt;}
.ws5a{word-spacing:15.090018pt;}
.ws3b{word-spacing:15.143152pt;}
.ws61{word-spacing:15.196286pt;}
.ws1f{word-spacing:15.249420pt;}
.ws50{word-spacing:15.355687pt;}
.ws4a{word-spacing:15.461955pt;}
.ws96{word-spacing:15.462234pt;}
.ws95{word-spacing:15.515024pt;}
.ws30{word-spacing:15.515089pt;}
.ws44{word-spacing:15.568223pt;}
.ws31{word-spacing:15.621357pt;}
.ws94{word-spacing:15.674491pt;}
.ws5f{word-spacing:15.727625pt;}
.ws13{word-spacing:15.780758pt;}
.ws99{word-spacing:15.833892pt;}
.ws3c{word-spacing:15.887026pt;}
.ws6a{word-spacing:15.900414pt;}
.ws42{word-spacing:15.905748pt;}
.ws73{word-spacing:15.939975pt;}
.ws74{word-spacing:15.940160pt;}
.ws39{word-spacing:15.993294pt;}
.ws5c{word-spacing:16.046428pt;}
.ws64{word-spacing:16.152695pt;}
.ws3e{word-spacing:16.205829pt;}
.ws47{word-spacing:16.258963pt;}
.ws2f{word-spacing:16.312097pt;}
.ws10{word-spacing:16.365231pt;}
.ws9a{word-spacing:16.418365pt;}
.ws6d{word-spacing:16.471499pt;}
.ws6f{word-spacing:16.524633pt;}
.ws88{word-spacing:16.630831pt;}
.ws89{word-spacing:16.630900pt;}
.ws75{word-spacing:16.684034pt;}
.ws8d{word-spacing:16.843436pt;}
.ws58{word-spacing:16.896570pt;}
.ws29{word-spacing:16.949703pt;}
.ws5b{word-spacing:17.002837pt;}
.ws3f{word-spacing:17.055971pt;}
.ws7e{word-spacing:17.109105pt;}
.ws3a{word-spacing:17.268507pt;}
.ws40{word-spacing:17.374774pt;}
.wsbc{word-spacing:17.427908pt;}
.ws8a{word-spacing:17.534176pt;}
.ws1{word-spacing:17.661815pt;}
.wsab{word-spacing:17.799845pt;}
.wsbb{word-spacing:17.852979pt;}
.ws6b{word-spacing:17.906113pt;}
.ws68{word-spacing:18.118649pt;}
.wsa0{word-spacing:18.171782pt;}
.ws62{word-spacing:18.224916pt;}
.ws60{word-spacing:18.384318pt;}
.ws90{word-spacing:18.437452pt;}
.ws37{word-spacing:18.490586pt;}
.wsae{word-spacing:18.543719pt;}
.wsa4{word-spacing:18.649987pt;}
.ws71{word-spacing:18.756255pt;}
.ws51{word-spacing:18.809389pt;}
.wsad{word-spacing:18.862523pt;}
.ws9b{word-spacing:18.997180pt;}
.ws98{word-spacing:19.021924pt;}
.wsa8{word-spacing:19.070333pt;}
.wsa7{word-spacing:19.071647pt;}
.wsbf{word-spacing:19.073652pt;}
.wsa3{word-spacing:19.075058pt;}
.wsb9{word-spacing:19.128192pt;}
.ws6c{word-spacing:19.234460pt;}
.ws4c{word-spacing:19.287594pt;}
.wsaf{word-spacing:19.925200pt;}
.wsa6{word-spacing:20.190869pt;}
.ws76{word-spacing:20.244003pt;}
.ws70{word-spacing:20.350271pt;}
.wsb6{word-spacing:20.669074pt;}
.wsc0{word-spacing:21.857139pt;}
.ws72{word-spacing:22.087967pt;}
.wsb0{word-spacing:22.156822pt;}
.ws32{word-spacing:24.019978pt;}
.ws0{word-spacing:29.436310pt;}
.wsf{word-spacing:31.816819pt;}
.wsaa{word-spacing:32.359239pt;}
.wsbe{word-spacing:32.360306pt;}
.wsb7{word-spacing:32.360733pt;}
.wsa2{word-spacing:32.361159pt;}
.wsac{word-spacing:32.362013pt;}
.wsa1{word-spacing:32.362866pt;}
.ws9f{word-spacing:32.363293pt;}
.wsb5{word-spacing:32.363506pt;}
.ws9c{word-spacing:32.363719pt;}
.wsb2{word-spacing:32.363933pt;}
.wsa5{word-spacing:32.364573pt;}
.wsb1{word-spacing:32.365213pt;}
.wsb8{word-spacing:38.369955pt;}
.wsd{word-spacing:66.883936pt;}
.ws7c{word-spacing:782.412245pt;}
._d{margin-left:-13.283689pt;}
._17{margin-left:-11.789290pt;}
._24{margin-left:-6.954202pt;}
._16{margin-left:-5.738496pt;}
._8{margin-left:-4.675813pt;}
._3{margin-left:-3.188032pt;}
._2{margin-left:-2.131618pt;}
._1{margin-left:-1.062683pt;}
._7{width:1.195520pt;}
._0{width:2.125365pt;}
._14{width:3.205941pt;}
._21{width:7.173110pt;}
._23{width:8.142014pt;}
._a{width:11.211246pt;}
._c{width:12.273929pt;}
._5{width:13.400449pt;}
._f{width:14.677474pt;}
._6{width:16.036846pt;}
._e{width:17.009101pt;}
._4{width:18.278050pt;}
._12{width:19.925200pt;}
._26{width:20.941007pt;}
._9{width:21.838019pt;}
._b{width:23.288870pt;}
._10{width:24.294704pt;}
._13{width:26.566859pt;}
._27{width:27.923360pt;}
._18{width:29.383028pt;}
._15{width:31.880580pt;}
._11{width:33.108662pt;}
._22{width:34.908987pt;}
._25{width:36.987435pt;}
._29{width:38.338026pt;}
._28{width:41.481825pt;}
._19{width:53.061959pt;}
._1a{width:54.046346pt;}
._1d{width:152.715793pt;}
._1c{width:280.655249pt;}
._1e{width:489.658018pt;}
._1f{width:566.971596pt;}
._1b{width:575.493649pt;}
._20{width:625.752474pt;}
.fs5{font-size:31.880533pt;}
.fs3{font-size:39.318933pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:45.189333pt;}
.y1bc{bottom:85.040000pt;}
.y142{bottom:88.897333pt;}
.y6c{bottom:89.169333pt;}
.y15d{bottom:91.317333pt;}
.y1b1{bottom:91.414667pt;}
.y2f{bottom:92.712000pt;}
.yee{bottom:92.893333pt;}
.y194{bottom:93.146667pt;}
.y1c7{bottom:96.500000pt;}
.y1f9{bottom:96.905333pt;}
.y6b{bottom:98.358667pt;}
.yfd{bottom:98.397333pt;}
.y17d{bottom:99.560000pt;}
.ybd{bottom:100.813333pt;}
.y1bb{bottom:100.980000pt;}
.y141{bottom:101.944000pt;}
.y1b0{bottom:104.462667pt;}
.y2e{bottom:105.332000pt;}
.yed{bottom:105.940000pt;}
.y15c{bottom:107.257333pt;}
.y193{bottom:109.086667pt;}
.y2d{bottom:109.189333pt;}
.y1c6{bottom:109.546667pt;}
.yfc{bottom:111.444000pt;}
.y1f6{bottom:111.648000pt;}
.y1f8{bottom:112.845333pt;}
.ybc{bottom:113.860000pt;}
.y6a{bottom:114.834667pt;}
.y140{bottom:114.990667pt;}
.y17c{bottom:115.500000pt;}
.y1ba{bottom:116.920000pt;}
.y10d{bottom:116.940000pt;}
.yec{bottom:118.986667pt;}
.y2c{bottom:122.236000pt;}
.y9f{bottom:123.777333pt;}
.yfb{bottom:124.490667pt;}
.y1f5{bottom:124.694667pt;}
.y1af{bottom:124.697333pt;}
.y192{bottom:125.026667pt;}
.ybb{bottom:126.906667pt;}
.y69{bottom:127.881333pt;}
.y13f{bottom:128.037333pt;}
.y1f7{bottom:128.785333pt;}
.y1c5{bottom:129.781333pt;}
.y17b{bottom:131.440000pt;}
.yeb{bottom:132.033333pt;}
.y15b{bottom:132.164000pt;}
.y9e{bottom:132.966667pt;}
.y10c{bottom:134.430667pt;}
.y68{bottom:137.072000pt;}
.y1b9{bottom:139.501333pt;}
.yba{bottom:139.954667pt;}
.y1ad{bottom:140.637333pt;}
.y191{bottom:140.966667pt;}
.y13e{bottom:141.084000pt;}
.y2b{bottom:142.470667pt;}
.yfa{bottom:144.725333pt;}
.y1f4{bottom:144.929333pt;}
.yea{bottom:145.080000pt;}
.y1ae{bottom:145.458667pt;}
.y1c4{bottom:145.721333pt;}
.y17a{bottom:147.381333pt;}
.y15a{bottom:148.104000pt;}
.y9d{bottom:149.444000pt;}
.y10b{bottom:150.370667pt;}
.yb9{bottom:153.001333pt;}
.y67{bottom:153.548000pt;}
.y13d{bottom:154.130667pt;}
.y1ac{bottom:156.577333pt;}
.y190{bottom:156.906667pt;}
.y2a{bottom:158.410667pt;}
.yf9{bottom:160.665333pt;}
.y1f3{bottom:160.869333pt;}
.y1c3{bottom:161.662667pt;}
.y9c{bottom:162.490667pt;}
.y179{bottom:163.321333pt;}
.y159{bottom:164.044000pt;}
.ye9{bottom:165.314667pt;}
.yb8{bottom:166.048000pt;}
.y66{bottom:166.380000pt;}
.y1ab{bottom:172.517333pt;}
.y18f{bottom:172.848000pt;}
.y13c{bottom:174.106667pt;}
.y29{bottom:174.350667pt;}
.y1b8{bottom:174.866667pt;}
.y9b{bottom:175.537333pt;}
.yf8{bottom:176.606667pt;}
.y1f2{bottom:176.809333pt;}
.y1c2{bottom:177.602667pt;}
.yb7{bottom:179.094667pt;}
.y178{bottom:179.261333pt;}
.y65{bottom:179.426667pt;}
.y10a{bottom:179.594667pt;}
.y158{bottom:179.985333pt;}
.ye8{bottom:181.256000pt;}
.y1aa{bottom:188.457333pt;}
.y9a{bottom:188.584000pt;}
.y18e{bottom:188.788000pt;}
.y13b{bottom:190.046667pt;}
.y28{bottom:190.290667pt;}
.y1b7{bottom:190.806667pt;}
.yb6{bottom:192.141333pt;}
.y64{bottom:192.473333pt;}
.yf7{bottom:192.546667pt;}
.y1f1{bottom:192.749333pt;}
.y1c1{bottom:193.542667pt;}
.y177{bottom:195.201333pt;}
.y157{bottom:195.925333pt;}
.ye7{bottom:197.196000pt;}
.y63{bottom:201.662667pt;}
.y1a9{bottom:204.397333pt;}
.y18d{bottom:204.728000pt;}
.yb5{bottom:205.188000pt;}
.y13a{bottom:205.986667pt;}
.y109{bottom:206.162667pt;}
.y27{bottom:206.230667pt;}
.y1b6{bottom:206.746667pt;}
.yf6{bottom:208.486667pt;}
.y1f0{bottom:208.689333pt;}
.y99{bottom:208.818667pt;}
.y1c0{bottom:209.482667pt;}
.y176{bottom:211.141333pt;}
.y156{bottom:211.865333pt;}
.ye6{bottom:213.136000pt;}
.y62{bottom:214.282667pt;}
.y1a8{bottom:220.338667pt;}
.y18c{bottom:220.668000pt;}
.y139{bottom:221.926667pt;}
.y26{bottom:222.172000pt;}
.y1b5{bottom:222.686667pt;}
.yf5{bottom:224.426667pt;}
.y1ef{bottom:224.630667pt;}
.y98{bottom:224.758667pt;}
.yb3{bottom:225.422667pt;}
.y175{bottom:227.081333pt;}
.y155{bottom:227.805333pt;}
.ye5{bottom:229.076000pt;}
.yb4{bottom:230.245333pt;}
.y61{bottom:230.758667pt;}
.y108{bottom:232.729333pt;}
.y1a7{bottom:236.278667pt;}
.y18b{bottom:236.608000pt;}
.y138{bottom:237.866667pt;}
.y25{bottom:238.112000pt;}
.yf4{bottom:240.366667pt;}
.y1ee{bottom:240.570667pt;}
.y97{bottom:240.698667pt;}
.yb2{bottom:241.364000pt;}
.y174{bottom:243.022667pt;}
.y154{bottom:243.745333pt;}
.ye4{bottom:245.016000pt;}
.y60{bottom:250.993333pt;}
.y1a6{bottom:252.218667pt;}
.y137{bottom:253.806667pt;}
.y24{bottom:254.052000pt;}
.yf3{bottom:256.306667pt;}
.y1ed{bottom:256.510667pt;}
.y96{bottom:256.640000pt;}
.yb1{bottom:257.304000pt;}
.y173{bottom:258.962667pt;}
.y107{bottom:259.296000pt;}
.y153{bottom:259.685333pt;}
.ye3{bottom:260.956000pt;}
.y18a{bottom:261.514667pt;}
.y1b4{bottom:265.766667pt;}
.y1a5{bottom:268.158667pt;}
.y136{bottom:269.748000pt;}
.y23{bottom:269.992000pt;}
.yf2{bottom:272.248000pt;}
.y1ec{bottom:272.450667pt;}
.y95{bottom:272.580000pt;}
.yb0{bottom:273.244000pt;}
.y172{bottom:274.902667pt;}
.y152{bottom:275.626667pt;}
.ye2{bottom:276.897333pt;}
.y189{bottom:277.454667pt;}
.y5f{bottom:277.561333pt;}
.y1a4{bottom:284.098667pt;}
.y135{bottom:285.688000pt;}
.y106{bottom:285.862667pt;}
.y22{bottom:285.932000pt;}
.yf1{bottom:288.188000pt;}
.y1eb{bottom:288.390667pt;}
.y94{bottom:288.520000pt;}
.yaf{bottom:289.184000pt;}
.y171{bottom:290.842667pt;}
.y151{bottom:291.566667pt;}
.ye1{bottom:292.837333pt;}
.y188{bottom:293.396000pt;}
.y1b3{bottom:294.592000pt;}
.y1a3{bottom:300.038667pt;}
.y134{bottom:301.628000pt;}
.y105{bottom:301.804000pt;}
.y21{bottom:301.872000pt;}
.y5e{bottom:304.128000pt;}
.y1ea{bottom:304.330667pt;}
.y93{bottom:304.460000pt;}
.yae{bottom:305.124000pt;}
.y170{bottom:306.782667pt;}
.y150{bottom:307.506667pt;}
.ye0{bottom:308.777333pt;}
.y187{bottom:309.336000pt;}
.y1a2{bottom:315.980000pt;}
.y133{bottom:317.568000pt;}
.y20{bottom:317.813333pt;}
.y5d{bottom:320.068000pt;}
.y1e9{bottom:320.272000pt;}
.y92{bottom:320.400000pt;}
.yad{bottom:321.064000pt;}
.y16f{bottom:322.722667pt;}
.y14f{bottom:323.446667pt;}
.ydf{bottom:324.717333pt;}
.y186{bottom:325.276000pt;}
.y104{bottom:328.370667pt;}
.y1a1{bottom:331.920000pt;}
.y132{bottom:333.508000pt;}
.y1f{bottom:333.753333pt;}
.y5c{bottom:336.008000pt;}
.y1e8{bottom:336.212000pt;}
.y90{bottom:336.340000pt;}
.yac{bottom:337.005333pt;}
.y14e{bottom:339.386667pt;}
.ydd{bottom:340.657333pt;}
.y91{bottom:341.162667pt;}
.y185{bottom:341.216000pt;}
.yde{bottom:345.480000pt;}
.y16e{bottom:347.629333pt;}
.y1a0{bottom:347.860000pt;}
.y131{bottom:349.448000pt;}
.y1d{bottom:349.693333pt;}
.y5b{bottom:351.948000pt;}
.y1e7{bottom:352.152000pt;}
.y8f{bottom:352.281333pt;}
.yab{bottom:352.945333pt;}
.y1e{bottom:354.514667pt;}
.y14d{bottom:355.326667pt;}
.ydc{bottom:356.597333pt;}
.y184{bottom:357.156000pt;}
.y103{bottom:357.594667pt;}
.y16d{bottom:363.570667pt;}
.y19f{bottom:363.800000pt;}
.y130{bottom:365.389333pt;}
.y1c{bottom:365.633333pt;}
.y5a{bottom:367.889333pt;}
.y1e6{bottom:368.092000pt;}
.y8e{bottom:368.221333pt;}
.yaa{bottom:368.885333pt;}
.y14c{bottom:371.268000pt;}
.ydb{bottom:372.538667pt;}
.y183{bottom:373.096000pt;}
.y102{bottom:373.534667pt;}
.y16c{bottom:379.510667pt;}
.y19e{bottom:379.740000pt;}
.y12f{bottom:381.329333pt;}
.y1b{bottom:381.573333pt;}
.y58{bottom:383.829333pt;}
.y1e5{bottom:384.032000pt;}
.y8d{bottom:384.161333pt;}
.ya9{bottom:384.825333pt;}
.yda{bottom:388.478667pt;}
.y59{bottom:388.650667pt;}
.y182{bottom:389.037333pt;}
.y101{bottom:389.474667pt;}
.y16b{bottom:395.450667pt;}
.y19d{bottom:395.680000pt;}
.y14b{bottom:396.174667pt;}
.y12e{bottom:397.269333pt;}
.y1a{bottom:397.513333pt;}
.y57{bottom:399.769333pt;}
.y1e4{bottom:399.972000pt;}
.y8c{bottom:400.101333pt;}
.ya8{bottom:400.765333pt;}
.yd9{bottom:404.418667pt;}
.y181{bottom:404.977333pt;}
.y100{bottom:405.414667pt;}
.y16a{bottom:411.390667pt;}
.y19c{bottom:411.621333pt;}
.y12d{bottom:413.209333pt;}
.y19{bottom:413.454667pt;}
.y56{bottom:415.709333pt;}
.y1e3{bottom:415.913333pt;}
.y8b{bottom:416.041333pt;}
.ya6{bottom:416.705333pt;}
.y14a{bottom:418.756000pt;}
.yd8{bottom:420.358667pt;}
.yff{bottom:421.354667pt;}
.ya7{bottom:421.528000pt;}
.y169{bottom:427.330667pt;}
.y19b{bottom:427.561333pt;}
.y12c{bottom:429.149333pt;}
.y18{bottom:429.394667pt;}
.y55{bottom:431.649333pt;}
.y1e2{bottom:431.853333pt;}
.y89{bottom:431.981333pt;}
.ya5{bottom:432.646667pt;}
.yd7{bottom:436.298667pt;}
.y8a{bottom:436.804000pt;}
.y168{bottom:443.270667pt;}
.y19a{bottom:443.501333pt;}
.y12b{bottom:445.089333pt;}
.y17{bottom:445.334667pt;}
.y54{bottom:447.589333pt;}
.y1e1{bottom:447.793333pt;}
.y88{bottom:447.922667pt;}
.ya4{bottom:448.586667pt;}
.y180{bottom:449.609333pt;}
.yd6{bottom:452.238667pt;}
.y149{bottom:455.285333pt;}
.y167{bottom:459.212000pt;}
.y199{bottom:459.441333pt;}
.y12a{bottom:461.030667pt;}
.y16{bottom:461.274667pt;}
.y53{bottom:463.530667pt;}
.y1e0{bottom:463.733333pt;}
.y87{bottom:463.862667pt;}
.y1bf{bottom:464.526667pt;}
.yd5{bottom:468.180000pt;}
.y148{bottom:471.225333pt;}
.y166{bottom:475.152000pt;}
.y129{bottom:476.970667pt;}
.y52{bottom:479.470667pt;}
.y1df{bottom:479.673333pt;}
.y86{bottom:479.802667pt;}
.y1be{bottom:480.466667pt;}
.y15{bottom:483.857333pt;}
.yd4{bottom:484.120000pt;}
.y147{bottom:487.166667pt;}
.y165{bottom:491.092000pt;}
.y128{bottom:492.910667pt;}
.y51{bottom:495.410667pt;}
.y1de{bottom:495.613333pt;}
.y85{bottom:495.742667pt;}
.yd3{bottom:500.060000pt;}
.y146{bottom:503.106667pt;}
.y198{bottom:504.074667pt;}
.y164{bottom:507.032000pt;}
.y50{bottom:511.350667pt;}
.y1dd{bottom:511.554667pt;}
.y84{bottom:511.682667pt;}
.yd2{bottom:516.000000pt;}
.y163{bottom:522.972000pt;}
.y127{bottom:523.534667pt;}
.y4f{bottom:527.290667pt;}
.y1dc{bottom:527.494667pt;}
.y83{bottom:527.622667pt;}
.yd1{bottom:531.940000pt;}
.y197{bottom:532.898667pt;}
.y14{bottom:535.845333pt;}
.y162{bottom:538.912000pt;}
.y126{bottom:539.476000pt;}
.y4e{bottom:543.230667pt;}
.y1db{bottom:543.434667pt;}
.y82{bottom:543.564000pt;}
.y145{bottom:547.738667pt;}
.yd0{bottom:547.880000pt;}
.y124{bottom:555.416000pt;}
.y4d{bottom:559.172000pt;}
.y1da{bottom:559.374667pt;}
.y81{bottom:559.504000pt;}
.y125{bottom:560.237333pt;}
.yce{bottom:563.821333pt;}
.ycf{bottom:568.642667pt;}
.y4c{bottom:575.112000pt;}
.y1d9{bottom:575.314667pt;}
.y80{bottom:575.444000pt;}
.y144{bottom:576.564000pt;}
.y13{bottom:576.737333pt;}
.ycc{bottom:579.761333pt;}
.yf0{bottom:579.933333pt;}
.y123{bottom:581.722667pt;}
.y161{bottom:583.545333pt;}
.ycd{bottom:584.582667pt;}
.y4b{bottom:591.052000pt;}
.y1d8{bottom:591.254667pt;}
.y12{bottom:591.349333pt;}
.y7f{bottom:591.384000pt;}
.ycb{bottom:595.701333pt;}
.ya3{bottom:595.873333pt;}
.y122{bottom:597.662667pt;}
.y11{bottom:605.961333pt;}
.y49{bottom:606.992000pt;}
.y1d7{bottom:607.196000pt;}
.y7e{bottom:607.324000pt;}
.yca{bottom:611.641333pt;}
.y4a{bottom:611.813333pt;}
.y160{bottom:612.370667pt;}
.y121{bottom:613.604000pt;}
.y10{bottom:620.573333pt;}
.y1b2{bottom:621.980000pt;}
.y48{bottom:622.932000pt;}
.y1d6{bottom:623.136000pt;}
.y7d{bottom:623.264000pt;}
.yc9{bottom:627.581333pt;}
.y11f{bottom:629.544000pt;}
.y120{bottom:634.365333pt;}
.yf{bottom:635.185333pt;}
.y47{bottom:638.872000pt;}
.y1d5{bottom:639.076000pt;}
.y7c{bottom:639.205333pt;}
.yc8{bottom:643.521333pt;}
.ye{bottom:649.797333pt;}
.y46{bottom:654.813333pt;}
.y1d4{bottom:655.016000pt;}
.y7b{bottom:655.145333pt;}
.y11e{bottom:655.850667pt;}
.yc7{bottom:659.462667pt;}
.yd{bottom:664.409333pt;}
.y45{bottom:670.753333pt;}
.y1d3{bottom:670.956000pt;}
.y7a{bottom:671.085333pt;}
.y11d{bottom:671.792000pt;}
.yc6{bottom:675.402667pt;}
.yc{bottom:679.021333pt;}
.y43{bottom:686.693333pt;}
.y1d2{bottom:686.896000pt;}
.y11c{bottom:687.732000pt;}
.yc5{bottom:691.342667pt;}
.y44{bottom:691.514667pt;}
.yb{bottom:693.632000pt;}
.y79{bottom:701.969333pt;}
.y41{bottom:702.633333pt;}
.y1d1{bottom:702.837333pt;}
.y11b{bottom:703.672000pt;}
.yc4{bottom:707.282667pt;}
.y42{bottom:707.454667pt;}
.yfe{bottom:713.924000pt;}
.y78{bottom:717.909333pt;}
.y40{bottom:718.573333pt;}
.y1d0{bottom:718.777333pt;}
.y119{bottom:719.612000pt;}
.yc3{bottom:723.222667pt;}
.y11a{bottom:724.433333pt;}
.y196{bottom:725.457333pt;}
.ya{bottom:727.474667pt;}
.y77{bottom:733.849333pt;}
.y3f{bottom:734.513333pt;}
.y1cf{bottom:734.717333pt;}
.yc2{bottom:739.162667pt;}
.yef{bottom:739.336000pt;}
.y195{bottom:741.397333pt;}
.y118{bottom:745.920000pt;}
.y76{bottom:749.790667pt;}
.y3e{bottom:750.454667pt;}
.y1ce{bottom:750.657333pt;}
.yc1{bottom:755.104000pt;}
.y117{bottom:761.860000pt;}
.y75{bottom:765.730667pt;}
.y3d{bottom:766.394667pt;}
.y1cd{bottom:766.597333pt;}
.y143{bottom:768.920000pt;}
.y17f{bottom:770.501333pt;}
.yc0{bottom:771.044000pt;}
.y1bd{bottom:771.216000pt;}
.y9{bottom:774.540000pt;}
.y116{bottom:777.800000pt;}
.y74{bottom:781.670667pt;}
.y3c{bottom:782.334667pt;}
.y1cc{bottom:789.180000pt;}
.y15f{bottom:789.200000pt;}
.y8{bottom:790.480000pt;}
.ybf{bottom:793.625333pt;}
.y114{bottom:793.740000pt;}
.y3b{bottom:798.274667pt;}
.y115{bottom:798.561333pt;}
.y17e{bottom:799.326667pt;}
.y7{bottom:801.598667pt;}
.y73{bottom:804.252000pt;}
.y3a{bottom:814.214667pt;}
.y15e{bottom:818.025333pt;}
.y113{bottom:820.048000pt;}
.y6{bottom:822.361333pt;}
.y39{bottom:830.154667pt;}
.y112{bottom:835.988000pt;}
.y72{bottom:840.782667pt;}
.y38{bottom:846.096000pt;}
.y5{bottom:846.762667pt;}
.ya2{bottom:850.917333pt;}
.y111{bottom:851.928000pt;}
.y71{bottom:856.722667pt;}
.y37{bottom:862.036000pt;}
.y4{bottom:865.360000pt;}
.y110{bottom:867.868000pt;}
.y70{bottom:872.662667pt;}
.y36{bottom:877.976000pt;}
.y10e{bottom:883.808000pt;}
.y3{bottom:883.957333pt;}
.y6f{bottom:888.602667pt;}
.y10f{bottom:888.630667pt;}
.y35{bottom:893.916000pt;}
.ya1{bottom:898.737333pt;}
.y1cb{bottom:900.761333pt;}
.y6e{bottom:904.542667pt;}
.y34{bottom:909.856000pt;}
.y1ca{bottom:916.701333pt;}
.y2{bottom:918.370667pt;}
.y33{bottom:925.796000pt;}
.y6d{bottom:931.110667pt;}
.y1c8{bottom:932.641333pt;}
.y1c9{bottom:937.464000pt;}
.y32{bottom:941.737333pt;}
.ybe{bottom:946.558667pt;}
.y1{bottom:951.580000pt;}
.y31{bottom:957.677333pt;}
.ya0{bottom:962.498667pt;}
.ha{height:22.985865pt;}
.h4{height:28.348951pt;}
.hc{height:28.394810pt;}
.hb{height:30.647691pt;}
.h7{height:35.435213pt;}
.hf{height:35.493423pt;}
.hd{height:35.578675pt;}
.h8{height:38.309518pt;}
.h5{height:39.531597pt;}
.h6{height:47.438234pt;}
.he{height:47.634284pt;}
.h9{height:47.639618pt;}
.h2{height:57.620130pt;}
.h3{height:57.625463pt;}
.h1{height:79.063590pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:185.788000pt;}
.x2{left:187.993333pt;}
.x1{left:188.976000pt;}
.x3{left:192.961333pt;}
.x61{left:198.274667pt;}
.x15{left:199.470667pt;}
.x5d{left:201.781333pt;}
.x7{left:203.456000pt;}
.x39{left:205.581333pt;}
.x8{left:207.774667pt;}
.x4{left:208.901333pt;}
.x3c{left:210.894667pt;}
.x23{left:217.185333pt;}
.x34{left:220.121333pt;}
.x5{left:221.985333pt;}
.xa{left:225.138667pt;}
.x4a{left:226.150667pt;}
.x6{left:227.564000pt;}
.x24{left:230.936000pt;}
.xb{left:233.505333pt;}
.x4d{left:249.322667pt;}
.x58{left:250.612000pt;}
.x4b{left:252.257333pt;}
.x56{left:274.069333pt;}
.x4f{left:280.722667pt;}
.x2b{left:283.014667pt;}
.x49{left:285.133333pt;}
.x55{left:291.589333pt;}
.x2c{left:293.508000pt;}
.x1b{left:295.494667pt;}
.x4c{left:297.117333pt;}
.x50{left:299.541333pt;}
.x48{left:300.604000pt;}
.x1c{left:309.317333pt;}
.x47{left:311.960000pt;}
.x27{left:315.104000pt;}
.x25{left:316.392000pt;}
.x46{left:321.704000pt;}
.x28{left:325.598667pt;}
.x26{left:330.142667pt;}
.x29{left:332.612000pt;}
.x2a{left:343.105333pt;}
.xe{left:344.485333pt;}
.x3f{left:347.122667pt;}
.xf{left:350.065333pt;}
.x40{left:357.616000pt;}
.x60{left:359.438667pt;}
.x4e{left:371.444000pt;}
.x57{left:404.050667pt;}
.x35{left:405.016000pt;}
.x51{left:407.186667pt;}
.x1d{left:415.702667pt;}
.x36{left:418.741333pt;}
.x52{left:421.017333pt;}
.x1e{left:426.197333pt;}
.x67{left:429.574667pt;}
.x44{left:438.193333pt;}
.x41{left:439.353333pt;}
.x45{left:448.686667pt;}
.x42{left:449.846667pt;}
.x9{left:461.372000pt;}
.x65{left:463.049333pt;}
.x37{left:477.400000pt;}
.x5e{left:478.989333pt;}
.x3d{left:485.934667pt;}
.x5f{left:486.960000pt;}
.x38{left:487.894667pt;}
.x3e{left:496.428000pt;}
.x66{left:501.306667pt;}
.x19{left:520.270667pt;}
.x2d{left:526.842667pt;}
.x59{left:529.528000pt;}
.x1a{left:530.765333pt;}
.x2e{left:537.337333pt;}
.x5a{left:540.021333pt;}
.x10{left:543.126667pt;}
.x12{left:547.138667pt;}
.x11{left:548.706667pt;}
.x64{left:550.721333pt;}
.x13{left:557.633333pt;}
.x2f{left:559.638667pt;}
.x30{left:570.133333pt;}
.x21{left:587.538667pt;}
.x63{left:588.977333pt;}
.x5b{left:600.234667pt;}
.x22{left:602.014667pt;}
.x5c{left:610.729333pt;}
.x31{left:612.841333pt;}
.x62{left:614.481333pt;}
.xc{left:620.970667pt;}
.x32{left:623.336000pt;}
.xd{left:626.549333pt;}
.x53{left:666.628000pt;}
.x3a{left:677.162667pt;}
.x43{left:678.242667pt;}
.x54{left:680.458667pt;}
.x3b{left:687.656000pt;}
.x17{left:692.821333pt;}
.x18{left:703.316000pt;}
.x33{left:706.550667pt;}
.x1f{left:711.073333pt;}
.x16{left:717.145333pt;}
.x20{left:721.568000pt;}
}




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