
    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_61a0ddfdcbd8ae8fdd95c419.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_78590620149b120d49fc7e73.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_270eaae51849b57c675d5e7a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0d44fb0517f91c7a250123d8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.803000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m22{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);}
.mc{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);}
.mf{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);}
.m12{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);}
.m1f{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);}
.m1b{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);}
.m9{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);}
.m8{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);}
.md{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);}
.m0{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);}
.ma{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);}
.m21{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);}
.m24{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);}
.m2{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);}
.m10{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);}
.m3{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);}
.m1a{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);}
.m7{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);}
.m1{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);}
.m28{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);}
.m6{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);}
.m25{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);}
.m5{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);}
.m15{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);}
.m1d{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);}
.m18{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);}
.m14{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);}
.m26{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);}
.m1e{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);}
.m20{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);}
.me{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);}
.m1c{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);}
.m29{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);}
.m13{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);}
.m16{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m17{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);}
.mb{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);}
.m11{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;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:28.398000px;}
.v5{vertical-align:56.790000px;}
.ls7{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.004800px;}
.ls9{letter-spacing:0.542815px;}
.ls8{letter-spacing:0.548815px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.lsd{letter-spacing:11.955746px;}
.lse{letter-spacing:12.524693px;}
.lsc{letter-spacing:12.530693px;}
.ls1d{letter-spacing:13.175769px;}
.ls1c{letter-spacing:13.230873px;}
.ls10{letter-spacing:13.244156px;}
.ls11{letter-spacing:13.298174px;}
.ls1f{letter-spacing:13.335261px;}
.ls19{letter-spacing:13.440196px;}
.ls14{letter-spacing:13.448400px;}
.ls13{letter-spacing:13.454400px;}
.ls1e{letter-spacing:13.470808px;}
.ls18{letter-spacing:13.583835px;}
.lsa{letter-spacing:14.764573px;}
.ls1a{letter-spacing:15.115106px;}
.lsf{letter-spacing:15.247119px;}
.lsb{letter-spacing:15.302554px;}
.ls17{letter-spacing:15.662165px;}
.ls16{letter-spacing:16.437428px;}
.ls1b{letter-spacing:18.573929px;}
.ls12{letter-spacing:19.503341px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.355200px;}
.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;}
}
.ws15{word-spacing:-14.943900px;}
.ws92{word-spacing:-13.449600px;}
.ws23{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws80{word-spacing:-3.347434px;}
.ws81{word-spacing:-3.287658px;}
.ws3f{word-spacing:-3.227882px;}
.ws8a{word-spacing:-3.108331px;}
.ws83{word-spacing:-2.689902px;}
.ws4c{word-spacing:-2.450800px;}
.ws73{word-spacing:-2.391024px;}
.ws3e{word-spacing:-2.331248px;}
.ws8b{word-spacing:-2.151922px;}
.ws32{word-spacing:-2.092146px;}
.ws68{word-spacing:-1.972595px;}
.ws2c{word-spacing:-1.853044px;}
.ws31{word-spacing:-1.733492px;}
.wsaa{word-spacing:-1.721549px;}
.ws2e{word-spacing:-1.673717px;}
.ws6f{word-spacing:-1.613941px;}
.ws74{word-spacing:-1.554166px;}
.ws24{word-spacing:-1.494390px;}
.ws9{word-spacing:-1.434614px;}
.ws4a{word-spacing:-1.374839px;}
.ws64{word-spacing:-1.315063px;}
.wsf{word-spacing:-1.255288px;}
.ws7c{word-spacing:-1.195512px;}
.ws67{word-spacing:-1.135736px;}
.wsa{word-spacing:-1.075961px;}
.ws5b{word-spacing:-0.908591px;}
.ws60{word-spacing:-0.896634px;}
.ws6a{word-spacing:-0.836858px;}
.ws5c{word-spacing:-0.812950px;}
.ws37{word-spacing:-0.777083px;}
.wsbd{word-spacing:-0.753178px;}
.ws8f{word-spacing:-0.717307px;}
.wsa8{word-spacing:-0.699379px;}
.ws69{word-spacing:-0.657532px;}
.ws7a{word-spacing:-0.597756px;}
.wsa5{word-spacing:-0.537984px;}
.wsa6{word-spacing:-0.484186px;}
.wsb{word-spacing:-0.478205px;}
.ws40{word-spacing:-0.418429px;}
.ws34{word-spacing:-0.358654px;}
.ws27{word-spacing:-0.298878px;}
.ws96{word-spacing:-0.268992px;}
.ws1c{word-spacing:-0.239102px;}
.ws9f{word-spacing:-0.215194px;}
.ws5e{word-spacing:-0.191282px;}
.ws2d{word-spacing:-0.179327px;}
.ws9a{word-spacing:-0.161395px;}
.ws54{word-spacing:-0.143462px;}
.wsc{word-spacing:-0.119551px;}
.wsa0{word-spacing:-0.107597px;}
.wsd{word-spacing:-0.059776px;}
.wsaf{word-spacing:-0.053798px;}
.ws56{word-spacing:-0.047821px;}
.ws22{word-spacing:-0.002403px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:0.041843px;}
.ws4f{word-spacing:0.047821px;}
.ws9c{word-spacing:0.053798px;}
.ws17{word-spacing:0.059776px;}
.ws0{word-spacing:0.083686px;}
.ws53{word-spacing:0.095641px;}
.wsbe{word-spacing:0.107597px;}
.ws20{word-spacing:0.119551px;}
.wsb1{word-spacing:0.119669px;}
.ws5f{word-spacing:0.143462px;}
.wsa9{word-spacing:0.161395px;}
.wse{word-spacing:0.179327px;}
.ws59{word-spacing:0.191282px;}
.ws99{word-spacing:0.215194px;}
.ws10{word-spacing:0.239102px;}
.wsa4{word-spacing:0.268992px;}
.ws25{word-spacing:0.298878px;}
.wsb3{word-spacing:0.322790px;}
.ws2b{word-spacing:0.358654px;}
.ws71{word-spacing:0.418429px;}
.ws97{word-spacing:0.591782px;}
.ws5d{word-spacing:0.596343px;}
.ws87{word-spacing:0.597756px;}
.ws57{word-spacing:0.598500px;}
.ws50{word-spacing:0.598800px;}
.ws5a{word-spacing:0.602250px;}
.ws93{word-spacing:0.645581px;}
.ws18{word-spacing:0.657532px;}
.ws13{word-spacing:0.717307px;}
.ws79{word-spacing:0.777083px;}
.ws28{word-spacing:0.836858px;}
.ws39{word-spacing:1.135736px;}
.wsb6{word-spacing:1.291162px;}
.ws65{word-spacing:1.315063px;}
.ws66{word-spacing:1.494390px;}
.ws42{word-spacing:1.554166px;}
.ws29{word-spacing:1.613941px;}
.wsb8{word-spacing:1.667750px;}
.wsac{word-spacing:1.707232px;}
.wsab{word-spacing:1.721549px;}
.ws70{word-spacing:1.793268px;}
.ws3d{word-spacing:1.853044px;}
.ws41{word-spacing:1.912819px;}
.ws47{word-spacing:1.972595px;}
.ws82{word-spacing:2.092146px;}
.wsad{word-spacing:2.205734px;}
.ws43{word-spacing:2.211697px;}
.ws44{word-spacing:2.271473px;}
.ws94{word-spacing:2.367130px;}
.ws33{word-spacing:2.391024px;}
.ws7e{word-spacing:2.450800px;}
.ws6{word-spacing:2.510252px;}
.ws4{word-spacing:2.510438px;}
.ws85{word-spacing:2.510575px;}
.ws6e{word-spacing:2.630126px;}
.wsba{word-spacing:2.797517px;}
.ws8{word-spacing:2.869236px;}
.wsbf{word-spacing:2.928971px;}
.ws98{word-spacing:2.958912px;}
.ws95{word-spacing:3.066509px;}
.wsc1{word-spacing:3.174106px;}
.wsb0{word-spacing:3.221030px;}
.wsb9{word-spacing:3.223459px;}
.wsb2{word-spacing:3.227904px;}
.ws38{word-spacing:3.287658px;}
.ws45{word-spacing:3.347434px;}
.wsa7{word-spacing:3.389299px;}
.ws6d{word-spacing:3.407209px;}
.ws9b{word-spacing:3.444129px;}
.ws21{word-spacing:3.466985px;}
.wsc2{word-spacing:3.496896px;}
.ws46{word-spacing:3.526760px;}
.ws1d{word-spacing:3.583475px;}
.ws62{word-spacing:3.586536px;}
.ws6b{word-spacing:3.646312px;}
.wsb4{word-spacing:3.658291px;}
.ws12{word-spacing:3.685852px;}
.ws11{word-spacing:3.693556px;}
.ws88{word-spacing:3.706087px;}
.ws63{word-spacing:3.765863px;}
.ws16{word-spacing:3.885414px;}
.ws1a{word-spacing:3.908527px;}
.wsbb{word-spacing:4.034880px;}
.ws6c{word-spacing:4.064741px;}
.ws90{word-spacing:4.088678px;}
.ws3b{word-spacing:4.124516px;}
.ws91{word-spacing:4.142477px;}
.ws1e{word-spacing:4.303872px;}
.ws76{word-spacing:4.722272px;}
.wsa1{word-spacing:4.788058px;}
.ws89{word-spacing:4.841824px;}
.ws19{word-spacing:4.961375px;}
.ws75{word-spacing:5.021150px;}
.ws8c{word-spacing:5.080926px;}
.wsbc{word-spacing:5.110848px;}
.ws1f{word-spacing:5.200477px;}
.ws72{word-spacing:5.320028px;}
.ws3c{word-spacing:5.379804px;}
.ws7b{word-spacing:5.499355px;}
.ws3a{word-spacing:5.559131px;}
.ws86{word-spacing:5.618906px;}
.ws7d{word-spacing:5.678682px;}
.ws30{word-spacing:5.738458px;}
.ws14{word-spacing:5.798233px;}
.ws9d{word-spacing:5.864026px;}
.ws26{word-spacing:5.977560px;}
.wsa3{word-spacing:6.025421px;}
.ws9e{word-spacing:6.240614px;}
.ws8d{word-spacing:6.276438px;}
.ws7f{word-spacing:6.515540px;}
.ws1b{word-spacing:6.694867px;}
.ws78{word-spacing:6.754643px;}
.ws77{word-spacing:6.933970px;}
.wsc0{word-spacing:6.939994px;}
.ws48{word-spacing:6.993745px;}
.ws8e{word-spacing:7.232848px;}
.ws61{word-spacing:7.531726px;}
.wsb7{word-spacing:7.531776px;}
.ws35{word-spacing:7.711052px;}
.ws84{word-spacing:7.890379px;}
.ws2f{word-spacing:8.129482px;}
.ws4b{word-spacing:8.308808px;}
.wsb5{word-spacing:8.338752px;}
.ws36{word-spacing:8.787013px;}
.ws2a{word-spacing:8.846789px;}
.ws49{word-spacing:9.862974px;}
.wsae{word-spacing:9.952704px;}
.wsa2{word-spacing:18.076262px;}
.ws2{word-spacing:28.455541px;}
.ws51{word-spacing:144.355130px;}
.ws58{word-spacing:146.767130px;}
.ws4d{word-spacing:165.924230px;}
.ws52{word-spacing:219.125057px;}
.ws55{word-spacing:221.536938px;}
.ws4e{word-spacing:238.682308px;}
._1d{margin-left:-8.368577px;}
._e{margin-left:-6.694867px;}
._1{margin-left:-5.397721px;}
._2{margin-left:-3.849538px;}
._15{margin-left:-2.630133px;}
._4{margin-left:-1.506341px;}
._5{width:2.993046px;}
._21{width:10.640063px;}
._23{width:12.086622px;}
._0{width:13.096796px;}
._b{width:14.826789px;}
._9{width:16.616909px;}
._7{width:18.078470px;}
._8{width:19.248451px;}
._22{width:20.383480px;}
._10{width:21.519216px;}
._f{width:22.535401px;}
._a{width:24.115780px;}
._3{width:25.946266px;}
._13{width:27.317449px;}
._12{width:29.600873px;}
._24{width:31.836472px;}
._1c{width:32.912482px;}
._1f{width:34.442696px;}
._20{width:39.033467px;}
._1b{width:40.766959px;}
._14{width:48.597563px;}
._6{width:54.416034px;}
._17{width:102.216512px;}
._18{width:105.405691px;}
._19{width:150.873993px;}
._1a{width:153.312844px;}
._16{width:198.694593px;}
._11{width:319.691860px;}
._c{width:1782.014700px;}
._1e{width:2429.600700px;}
._d{width:2453.510700px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fsa{font-size:49.829400px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y40{bottom:45.921000px;}
.y15{bottom:100.260000px;}
.y3f{bottom:110.328000px;}
.y184{bottom:112.933500px;}
.y1a8{bottom:113.299500px;}
.y201{bottom:114.837000px;}
.y14{bottom:118.147500px;}
.y21f{bottom:120.277500px;}
.y1d3{bottom:121.278000px;}
.ybd{bottom:121.632000px;}
.y9c{bottom:122.557500px;}
.y3e{bottom:131.220000px;}
.y183{bottom:133.825500px;}
.y1a7{bottom:134.191500px;}
.y200{bottom:135.729000px;}
.y13{bottom:136.035000px;}
.y73{bottom:137.298000px;}
.yb6{bottom:140.064000px;}
.y21e{bottom:141.168000px;}
.y1d2{bottom:142.170000px;}
.ybc{bottom:142.522500px;}
.y9b{bottom:143.449500px;}
.y240{bottom:145.260000px;}
.y270{bottom:147.001500px;}
.y3d{bottom:152.110500px;}
.y12{bottom:153.924000px;}
.y182{bottom:154.716000px;}
.y1a6{bottom:155.083500px;}
.y1ff{bottom:156.621000px;}
.y72{bottom:158.190000px;}
.yb5{bottom:160.956000px;}
.y21d{bottom:162.060000px;}
.y1d1{bottom:163.062000px;}
.ybb{bottom:163.414500px;}
.y162{bottom:163.929000px;}
.y9a{bottom:164.341500px;}
.y23f{bottom:165.280500px;}
.y26f{bottom:166.152000px;}
.y11{bottom:171.811500px;}
.y3c{bottom:173.002500px;}
.y181{bottom:175.608000px;}
.y1a5{bottom:175.974000px;}
.y1fe{bottom:177.511500px;}
.y161{bottom:178.126500px;}
.y71{bottom:179.082000px;}
.y21c{bottom:182.952000px;}
.y1d0{bottom:183.952500px;}
.yba{bottom:184.306500px;}
.y23e{bottom:185.301000px;}
.y26e{bottom:185.302500px;}
.yb4{bottom:186.330000px;}
.y10{bottom:189.699000px;}
.y99{bottom:189.715500px;}
.y160{bottom:192.322500px;}
.y3b{bottom:193.894500px;}
.y180{bottom:196.500000px;}
.y1a4{bottom:196.866000px;}
.y166{bottom:199.422000px;}
.y70{bottom:199.972500px;}
.y1fd{bottom:202.887000px;}
.y21b{bottom:203.842500px;}
.y26d{bottom:204.453000px;}
.y1cf{bottom:204.844500px;}
.yb9{bottom:205.198500px;}
.y157{bottom:206.520000px;}
.yf{bottom:207.586500px;}
.yb3{bottom:210.762000px;}
.y165{bottom:213.618000px;}
.y29c{bottom:216.135000px;}
.y17f{bottom:217.390500px;}
.y1a3{bottom:217.758000px;}
.y3a{bottom:219.268500px;}
.y156{bottom:220.716000px;}
.y6f{bottom:220.864500px;}
.y23d{bottom:223.255500px;}
.y26c{bottom:223.603500px;}
.y21a{bottom:224.734500px;}
.y98{bottom:225.058500px;}
.ye{bottom:225.475500px;}
.y1ce{bottom:225.736500px;}
.yb8{bottom:226.089000px;}
.y104{bottom:226.650000px;}
.y15c{bottom:227.815500px;}
.y155{bottom:234.913500px;}
.y29b{bottom:235.285500px;}
.y1fc{bottom:238.230000px;}
.y17e{bottom:238.282500px;}
.y1a2{bottom:238.648500px;}
.yfb{bottom:240.847500px;}
.y6e{bottom:241.756500px;}
.y15a{bottom:242.011500px;}
.y26b{bottom:242.754000px;}
.y23c{bottom:244.147500px;}
.y219{bottom:245.626500px;}
.y97{bottom:245.949000px;}
.y1cd{bottom:246.627000px;}
.y102{bottom:247.945500px;}
.y154{bottom:249.109500px;}
.yb2{bottom:249.586500px;}
.yd{bottom:252.330000px;}
.y29a{bottom:254.436000px;}
.yfa{bottom:255.043500px;}
.y159{bottom:256.209000px;}
.y1fb{bottom:259.120500px;}
.y17d{bottom:259.174500px;}
.y1a1{bottom:259.540500px;}
.yb7{bottom:261.717000px;}
.y26a{bottom:261.904500px;}
.y101{bottom:262.141500px;}
.y6d{bottom:262.647000px;}
.y153{bottom:263.307000px;}
.y23b{bottom:265.038000px;}
.y218{bottom:266.518500px;}
.y96{bottom:266.841000px;}
.y1cc{bottom:267.519000px;}
.yf9{bottom:269.241000px;}
.yc{bottom:270.217500px;}
.y158{bottom:270.405000px;}
.yb1{bottom:270.478500px;}
.yfe{bottom:276.339000px;}
.y152{bottom:277.504500px;}
.y1fa{bottom:280.012500px;}
.y17c{bottom:280.065000px;}
.y1a0{bottom:280.432500px;}
.y269{bottom:281.055000px;}
.yf8{bottom:283.437000px;}
.y6c{bottom:283.539000px;}
.y15b{bottom:284.602500px;}
.y23a{bottom:285.930000px;}
.y95{bottom:287.733000px;}
.yb{bottom:288.105000px;}
.y1cb{bottom:288.411000px;}
.yfd{bottom:290.535000px;}
.y151{bottom:291.700500px;}
.y217{bottom:291.892500px;}
.yb0{bottom:295.852500px;}
.y299{bottom:297.466500px;}
.yf7{bottom:297.634500px;}
.y39{bottom:298.480500px;}
.y164{bottom:298.798500px;}
.y268{bottom:300.205500px;}
.y1f9{bottom:300.904500px;}
.y17b{bottom:300.957000px;}
.y19f{bottom:301.323000px;}
.y6b{bottom:304.431000px;}
.yfc{bottom:304.732500px;}
.y150{bottom:305.898000px;}
.ya{bottom:305.994000px;}
.y239{bottom:306.822000px;}
.y94{bottom:308.625000px;}
.y1ca{bottom:309.301500px;}
.yf6{bottom:311.830500px;}
.y163{bottom:312.996000px;}
.y216{bottom:313.785000px;}
.y298{bottom:316.617000px;}
.y100{bottom:318.928500px;}
.y267{bottom:319.356000px;}
.y15f{bottom:320.094000px;}
.y1f8{bottom:321.795000px;}
.y17a{bottom:321.849000px;}
.y19e{bottom:322.215000px;}
.y9{bottom:323.881500px;}
.y6a{bottom:325.323000px;}
.yf5{bottom:326.028000px;}
.y238{bottom:327.712500px;}
.y93{bottom:329.515500px;}
.y1c9{bottom:330.193500px;}
.yaf{bottom:331.195500px;}
.yff{bottom:333.126000px;}
.y15e{bottom:334.291500px;}
.y297{bottom:335.767500px;}
.y38{bottom:337.305000px;}
.y266{bottom:338.506500px;}
.yf4{bottom:340.224000px;}
.y8{bottom:341.769000px;}
.y1f7{bottom:342.687000px;}
.y179{bottom:342.739500px;}
.y19d{bottom:343.107000px;}
.y69{bottom:346.213500px;}
.y15d{bottom:348.487500px;}
.y237{bottom:348.604500px;}
.y215{bottom:349.128000px;}
.y92{bottom:350.407500px;}
.y1c8{bottom:351.085500px;}
.yae{bottom:352.086000px;}
.y103{bottom:354.421500px;}
.y296{bottom:354.918000px;}
.y265{bottom:357.658500px;}
.y37{bottom:358.195500px;}
.y7{bottom:359.658000px;}
.y1f6{bottom:363.579000px;}
.y178{bottom:363.631500px;}
.y19c{bottom:363.999000px;}
.y68{bottom:367.105500px;}
.y236{bottom:369.496500px;}
.y14f{bottom:369.886500px;}
.y214{bottom:370.018500px;}
.y1c7{bottom:371.976000px;}
.yad{bottom:372.978000px;}
.y295{bottom:374.070000px;}
.y91{bottom:375.781500px;}
.yf3{bottom:375.820500px;}
.y264{bottom:376.809000px;}
.y6{bottom:377.545500px;}
.y36{bottom:379.087500px;}
.y14e{bottom:384.084000px;}
.y1f5{bottom:384.469500px;}
.y177{bottom:384.523500px;}
.y19b{bottom:384.889500px;}
.y67{bottom:387.997500px;}
.yf2{bottom:390.016500px;}
.y235{bottom:390.387000px;}
.y213{bottom:390.910500px;}
.y1c6{bottom:392.868000px;}
.y294{bottom:393.220500px;}
.yac{bottom:393.870000px;}
.y263{bottom:395.959500px;}
.y148{bottom:398.280000px;}
.y35{bottom:399.979500px;}
.y5{bottom:401.410500px;}
.yef{bottom:404.214000px;}
.y1f4{bottom:405.361500px;}
.y176{bottom:405.415500px;}
.y19a{bottom:405.781500px;}
.y66{bottom:408.888000px;}
.y90{bottom:411.124500px;}
.y234{bottom:411.279000px;}
.ye6{bottom:411.312000px;}
.y212{bottom:411.802500px;}
.y293{bottom:412.371000px;}
.y147{bottom:412.477500px;}
.y1c5{bottom:413.760000px;}
.y262{bottom:415.110000px;}
.yee{bottom:418.410000px;}
.yab{bottom:419.244000px;}
.y4{bottom:419.299500px;}
.y34{bottom:420.871500px;}
.ye5{bottom:425.509500px;}
.y1f3{bottom:426.253500px;}
.y146{bottom:426.673500px;}
.y65{bottom:429.780000px;}
.y175{bottom:430.789500px;}
.y292{bottom:431.521500px;}
.y8f{bottom:432.016500px;}
.y233{bottom:432.171000px;}
.yed{bottom:432.607500px;}
.y211{bottom:432.694500px;}
.y14b{bottom:433.771500px;}
.y261{bottom:434.260500px;}
.y1c4{bottom:434.652000px;}
.y3{bottom:437.187000px;}
.ye4{bottom:439.705500px;}
.y145{bottom:440.871000px;}
.y33{bottom:441.762000px;}
.ye9{bottom:446.803500px;}
.y1f2{bottom:447.144000px;}
.y199{bottom:447.564000px;}
.y14a{bottom:447.969000px;}
.y64{bottom:450.672000px;}
.y8e{bottom:452.907000px;}
.y232{bottom:453.061500px;}
.y260{bottom:453.411000px;}
.y210{bottom:453.585000px;}
.ye3{bottom:453.903000px;}
.yaa{bottom:454.587000px;}
.y144{bottom:455.067000px;}
.y1c3{bottom:460.026000px;}
.ye8{bottom:461.001000px;}
.y2{bottom:461.052000px;}
.y149{bottom:462.165000px;}
.y32{bottom:462.654000px;}
.y1f1{bottom:468.036000px;}
.ye2{bottom:468.099000px;}
.y198{bottom:468.456000px;}
.y143{bottom:469.264500px;}
.y174{bottom:469.503000px;}
.y291{bottom:469.822500px;}
.y63{bottom:471.562500px;}
.y25f{bottom:472.561500px;}
.y8d{bottom:473.799000px;}
.y231{bottom:473.953500px;}
.y20f{bottom:474.477000px;}
.ye7{bottom:475.197000px;}
.ya9{bottom:475.477500px;}
.y1{bottom:478.941000px;}
.ye1{bottom:482.296500px;}
.y142{bottom:483.460500px;}
.y31{bottom:483.546000px;}
.y173{bottom:483.700500px;}
.y1f0{bottom:488.928000px;}
.y290{bottom:488.973000px;}
.y197{bottom:489.348000px;}
.yec{bottom:489.394500px;}
.y25e{bottom:491.712000px;}
.y62{bottom:492.454500px;}
.y8c{bottom:494.691000px;}
.y230{bottom:494.845500px;}
.y1c2{bottom:495.369000px;}
.ya8{bottom:496.369500px;}
.ye0{bottom:496.492500px;}
.y141{bottom:497.658000px;}
.y172{bottom:497.896500px;}
.yeb{bottom:503.590500px;}
.y30{bottom:504.436500px;}
.y28f{bottom:508.123500px;}
.y1ef{bottom:509.818500px;}
.y196{bottom:510.238500px;}
.ydf{bottom:510.690000px;}
.y25d{bottom:510.862500px;}
.y14d{bottom:511.854000px;}
.y171{bottom:512.094000px;}
.y61{bottom:513.346500px;}
.y8b{bottom:515.581500px;}
.y22f{bottom:515.737500px;}
.y1c1{bottom:516.259500px;}
.ya7{bottom:517.261500px;}
.yea{bottom:517.788000px;}
.y2f{bottom:525.328500px;}
.y14c{bottom:526.051500px;}
.y28e{bottom:527.274000px;}
.y25c{bottom:530.013000px;}
.y1ee{bottom:530.710500px;}
.y195{bottom:531.130500px;}
.yf1{bottom:531.984000px;}
.y170{bottom:533.253000px;}
.y60{bottom:534.237000px;}
.y8a{bottom:536.473500px;}
.y22e{bottom:536.628000px;}
.y1c0{bottom:537.151500px;}
.ya6{bottom:538.152000px;}
.yf0{bottom:546.181500px;}
.y2e{bottom:546.220500px;}
.y28d{bottom:546.424500px;}
.y140{bottom:547.450500px;}
.y25b{bottom:549.163500px;}
.y1ed{bottom:551.602500px;}
.y194{bottom:552.022500px;}
.y16e{bottom:554.548500px;}
.y5f{bottom:555.129000px;}
.y89{bottom:557.365500px;}
.y22d{bottom:557.520000px;}
.y1bf{bottom:558.043500px;}
.ya5{bottom:559.044000px;}
.y13f{bottom:561.646500px;}
.y28c{bottom:565.575000px;}
.y2d{bottom:567.111000px;}
.yd6{bottom:567.580500px;}
.y25a{bottom:568.314000px;}
.y16d{bottom:568.746000px;}
.y1ec{bottom:572.494500px;}
.y193{bottom:572.913000px;}
.yde{bottom:574.678500px;}
.y13c{bottom:575.844000px;}
.y5e{bottom:576.021000px;}
.y88{bottom:578.257500px;}
.y22c{bottom:578.412000px;}
.y1be{bottom:578.934000px;}
.ya4{bottom:579.936000px;}
.yd5{bottom:581.776500px;}
.y134{bottom:582.942000px;}
.y28b{bottom:584.725500px;}
.y259{bottom:587.464500px;}
.y2c{bottom:588.003000px;}
.ydd{bottom:588.876000px;}
.y13b{bottom:590.040000px;}
.y1eb{bottom:593.385000px;}
.y192{bottom:593.805000px;}
.yd4{bottom:595.974000px;}
.y5d{bottom:596.913000px;}
.y133{bottom:597.139500px;}
.y22b{bottom:599.302500px;}
.y1bd{bottom:599.826000px;}
.yda{bottom:603.072000px;}
.y87{bottom:603.631500px;}
.y28a{bottom:603.876000px;}
.y13a{bottom:604.237500px;}
.ya3{bottom:605.310000px;}
.y258{bottom:606.615000px;}
.y2b{bottom:608.895000px;}
.yd3{bottom:610.170000px;}
.y132{bottom:611.335500px;}
.y1ea{bottom:614.277000px;}
.y191{bottom:614.697000px;}
.yd9{bottom:617.269500px;}
.y5c{bottom:617.803500px;}
.y139{bottom:618.433500px;}
.y22a{bottom:620.194500px;}
.y1bc{bottom:620.718000px;}
.y289{bottom:623.026500px;}
.yd2{bottom:624.367500px;}
.y20e{bottom:625.201500px;}
.y131{bottom:625.533000px;}
.y257{bottom:625.765500px;}
.y2a{bottom:629.785500px;}
.yd8{bottom:631.465500px;}
.y138{bottom:632.631000px;}
.y1e9{bottom:635.169000px;}
.y190{bottom:635.589000px;}
.yd1{bottom:638.563500px;}
.y5b{bottom:638.695500px;}
.y86{bottom:638.974500px;}
.y130{bottom:639.729000px;}
.ya2{bottom:640.653000px;}
.y229{bottom:641.086500px;}
.y1bb{bottom:641.608500px;}
.y288{bottom:642.177000px;}
.y256{bottom:644.916000px;}
.yd7{bottom:645.663000px;}
.y137{bottom:646.827000px;}
.y29{bottom:650.677500px;}
.yd0{bottom:652.761000px;}
.y12f{bottom:653.926500px;}
.y1e8{bottom:656.059500px;}
.y18f{bottom:656.479500px;}
.y5a{bottom:659.587500px;}
.ydc{bottom:659.859000px;}
.y85{bottom:659.865000px;}
.y20d{bottom:660.543000px;}
.y136{bottom:661.024500px;}
.y287{bottom:661.327500px;}
.ya1{bottom:661.545000px;}
.y1ba{bottom:662.500500px;}
.y255{bottom:664.066500px;}
.y228{bottom:666.460500px;}
.ycf{bottom:666.957000px;}
.y12e{bottom:668.122500px;}
.y28{bottom:671.569500px;}
.ydb{bottom:674.056500px;}
.y135{bottom:675.220500px;}
.y1e7{bottom:676.951500px;}
.y18e{bottom:677.371500px;}
.y59{bottom:680.478000px;}
.yce{bottom:681.154500px;}
.y20c{bottom:681.435000px;}
.y16c{bottom:682.320000px;}
.ya0{bottom:682.435500px;}
.y254{bottom:683.217000px;}
.y1b9{bottom:683.392500px;}
.y84{bottom:685.240500px;}
.y13e{bottom:689.418000px;}
.y27{bottom:692.460000px;}
.y16b{bottom:696.516000px;}
.y1e6{bottom:697.843500px;}
.y18d{bottom:698.263500px;}
.y286{bottom:699.628500px;}
.y58{bottom:701.370000px;}
.y20b{bottom:702.325500px;}
.y253{bottom:702.367500px;}
.ycd{bottom:702.553500px;}
.y9f{bottom:703.327500px;}
.y13d{bottom:703.614000px;}
.y1b8{bottom:704.284500px;}
.y227{bottom:705.285000px;}
.ycc{bottom:709.651500px;}
.y26{bottom:713.352000px;}
.y16f{bottom:717.811500px;}
.y1e5{bottom:718.734000px;}
.y285{bottom:718.779000px;}
.y18c{bottom:719.154000px;}
.y252{bottom:721.518000px;}
.y56{bottom:722.262000px;}
.y20a{bottom:723.217500px;}
.y9e{bottom:724.219500px;}
.y12d{bottom:725.013000px;}
.y1b7{bottom:725.175000px;}
.y226{bottom:726.177000px;}
.y57{bottom:727.686000px;}
.y82{bottom:732.720000px;}
.y25{bottom:734.244000px;}
.y284{bottom:737.929500px;}
.y12c{bottom:739.210500px;}
.y1e4{bottom:739.626000px;}
.y18b{bottom:740.046000px;}
.y251{bottom:740.670000px;}
.y83{bottom:741.685500px;}
.y55{bottom:743.152500px;}
.y209{bottom:744.109500px;}
.y1b6{bottom:746.067000px;}
.y225{bottom:747.067500px;}
.y9d{bottom:749.593500px;}
.ycb{bottom:749.790000px;}
.y81{bottom:750.652500px;}
.y12b{bottom:753.406500px;}
.y24{bottom:755.136000px;}
.y283{bottom:757.081500px;}
.y250{bottom:759.820500px;}
.y1e3{bottom:760.518000px;}
.y18a{bottom:760.938000px;}
.y54{bottom:764.044500px;}
.y208{bottom:765.001500px;}
.y1b5{bottom:766.959000px;}
.y12a{bottom:767.604000px;}
.y224{bottom:767.959500px;}
.y16a{bottom:774.702000px;}
.y80{bottom:775.788000px;}
.y23{bottom:776.026500px;}
.y282{bottom:776.232000px;}
.y1e2{bottom:781.408500px;}
.y120{bottom:781.800000px;}
.y189{bottom:781.828500px;}
.y24f{bottom:783.453000px;}
.y53{bottom:784.936500px;}
.y207{bottom:785.892000px;}
.yca{bottom:786.894000px;}
.y1b4{bottom:787.849500px;}
.y223{bottom:788.851500px;}
.y125{bottom:788.899500px;}
.y7f{bottom:793.720500px;}
.y281{bottom:795.382500px;}
.y11f{bottom:795.997500px;}
.y22{bottom:796.918500px;}
.y1e1{bottom:802.300500px;}
.y123{bottom:803.095500px;}
.y52{bottom:805.827000px;}
.y206{bottom:806.784000px;}
.y188{bottom:807.204000px;}
.yc9{bottom:807.784500px;}
.y1b3{bottom:808.741500px;}
.y222{bottom:809.742000px;}
.y11e{bottom:810.193500px;}
.y280{bottom:814.533000px;}
.y122{bottom:817.293000px;}
.y24e{bottom:822.277500px;}
.y1e0{bottom:823.192500px;}
.y11d{bottom:824.391000px;}
.y51{bottom:826.719000px;}
.y21{bottom:826.776000px;}
.y205{bottom:827.676000px;}
.yc8{bottom:828.676500px;}
.y7e{bottom:829.374000px;}
.y221{bottom:830.634000px;}
.y121{bottom:831.489000px;}
.y187{bottom:831.636000px;}
.y27f{bottom:833.683500px;}
.y1b2{bottom:834.115500px;}
.y11c{bottom:838.587000px;}
.y1df{bottom:844.084500px;}
.y124{bottom:845.686500px;}
.y50{bottom:847.611000px;}
.y204{bottom:848.566500px;}
.yc7{bottom:849.568500px;}
.y24d{bottom:850.743000px;}
.y11b{bottom:852.784500px;}
.y27e{bottom:852.834000px;}
.y220{bottom:856.009500px;}
.y169{bottom:859.882500px;}
.y1de{bottom:864.975000px;}
.y7d{bottom:865.395000px;}
.y20{bottom:866.796000px;}
.y129{bottom:866.980500px;}
.y168{bottom:866.982000px;}
.y4f{bottom:868.503000px;}
.y1b1{bottom:869.458500px;}
.y24c{bottom:870.241500px;}
.yc6{bottom:870.460500px;}
.y27d{bottom:871.984500px;}
.y128{bottom:881.178000px;}
.y1f{bottom:882.936000px;}
.y7c{bottom:886.287000px;}
.y1e{bottom:887.275500px;}
.y4e{bottom:889.393500px;}
.y24b{bottom:889.740000px;}
.y1b0{bottom:890.350500px;}
.y27c{bottom:891.135000px;}
.yc5{bottom:891.351000px;}
.y127{bottom:895.375500px;}
.y1d{bottom:899.076000px;}
.y7b{bottom:907.177500px;}
.y126{bottom:909.571500px;}
.y4d{bottom:910.285500px;}
.y1af{bottom:911.241000px;}
.yc4{bottom:912.243000px;}
.y167{bottom:916.774500px;}
.y24a{bottom:918.205500px;}
.y1c{bottom:919.554000px;}
.y1dd{bottom:925.692000px;}
.y7a{bottom:928.069500px;}
.y27b{bottom:929.436000px;}
.y116{bottom:930.970500px;}
.y4c{bottom:931.177500px;}
.y1ae{bottom:932.133000px;}
.yc3{bottom:933.135000px;}
.y1b{bottom:935.694000px;}
.y114{bottom:945.168000px;}
.y1dc{bottom:946.584000px;}
.y249{bottom:946.671000px;}
.y27a{bottom:948.586500px;}
.y4b{bottom:952.068000px;}
.y11a{bottom:952.266000px;}
.y1ad{bottom:953.025000px;}
.y79{bottom:953.445000px;}
.yc2{bottom:954.025500px;}
.y203{bottom:957.508500px;}
.y10e{bottom:959.364000px;}
.y119{bottom:966.462000px;}
.y1db{bottom:967.476000px;}
.y279{bottom:967.737000px;}
.y4a{bottom:972.960000px;}
.y10d{bottom:973.561500px;}
.y1ac{bottom:973.915500px;}
.yc1{bottom:974.917500px;}
.y248{bottom:975.136500px;}
.y202{bottom:979.401000px;}
.y1a{bottom:980.370000px;}
.y112{bottom:980.659500px;}
.y278{bottom:986.887500px;}
.y10c{bottom:987.757500px;}
.y1da{bottom:988.366500px;}
.y78{bottom:988.786500px;}
.y49{bottom:993.852000px;}
.y247{bottom:994.635000px;}
.y1ab{bottom:994.807500px;}
.y111{bottom:994.855500px;}
.yc0{bottom:995.809500px;}
.y19{bottom:1001.262000px;}
.y10b{bottom:1001.955000px;}
.y277{bottom:1006.038000px;}
.y110{bottom:1009.053000px;}
.y1d9{bottom:1009.258500px;}
.y77{bottom:1009.678500px;}
.y48{bottom:1014.742500px;}
.y1aa{bottom:1015.699500px;}
.y10a{bottom:1016.151000px;}
.ybf{bottom:1016.700000px;}
.y246{bottom:1023.100500px;}
.y10f{bottom:1023.249000px;}
.y276{bottom:1025.188500px;}
.y1d8{bottom:1030.150500px;}
.y109{bottom:1030.348500px;}
.y76{bottom:1030.570500px;}
.y47{bottom:1035.634500px;}
.y118{bottom:1037.446500px;}
.y186{bottom:1037.592000px;}
.y18{bottom:1040.086500px;}
.y1a9{bottom:1041.073500px;}
.ybe{bottom:1042.075500px;}
.y245{bottom:1042.599000px;}
.y275{bottom:1044.339000px;}
.y108{bottom:1044.544500px;}
.y1d7{bottom:1051.041000px;}
.y117{bottom:1051.642500px;}
.y75{bottom:1055.944500px;}
.y46{bottom:1056.526500px;}
.y113{bottom:1058.742000px;}
.y244{bottom:1062.097500px;}
.y185{bottom:1062.967500px;}
.y274{bottom:1063.489500px;}
.y17{bottom:1071.424500px;}
.y1d6{bottom:1071.933000px;}
.y115{bottom:1072.938000px;}
.y45{bottom:1077.417000px;}
.y74{bottom:1080.376500px;}
.y243{bottom:1081.596000px;}
.y273{bottom:1082.640000px;}
.y1d5{bottom:1092.825000px;}
.y107{bottom:1094.337000px;}
.y44{bottom:1098.309000px;}
.y242{bottom:1101.094500px;}
.y106{bottom:1101.435000px;}
.y272{bottom:1101.790500px;}
.y16{bottom:1102.761000px;}
.y1d4{bottom:1118.199000px;}
.y43{bottom:1119.201000px;}
.y241{bottom:1120.593000px;}
.y271{bottom:1120.941000px;}
.y42{bottom:1140.091500px;}
.y105{bottom:1141.573500px;}
.y41{bottom:1200.196500px;}
.h6{height:32.565965px;}
.h14{height:33.186380px;}
.h10{height:34.574294px;}
.h2{height:37.993262px;}
.h13{height:39.434227px;}
.hc{height:41.250077px;}
.hb{height:41.482876px;}
.h8{height:43.217759px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.hd{height:48.848947px;}
.h16{height:50.200772px;}
.ha{height:51.861658px;}
.h9{height:54.276245px;}
.h5{height:54.547601px;}
.hf{height:62.966294px;}
.he{height:62.972294px;}
.h12{height:71.813105px;}
.h15{height:71.819105px;}
.h4{height:77.792486px;}
.h11{height:100.211105px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.x54{left:63.136500px;}
.xa6{left:64.260000px;}
.x55{left:65.455500px;}
.x72{left:67.482000px;}
.x56{left:69.298500px;}
.x74{left:71.020500px;}
.x36{left:73.213500px;}
.x71{left:74.679000px;}
.x73{left:76.095000px;}
.x70{left:77.140500px;}
.x57{left:79.531500px;}
.x9a{left:82.317000px;}
.xad{left:83.860500px;}
.x6f{left:85.533000px;}
.x35{left:87.970500px;}
.x52{left:90.853500px;}
.x4e{left:91.857000px;}
.x8b{left:93.418500px;}
.x53{left:94.822500px;}
.x83{left:100.728000px;}
.xa9{left:106.239000px;}
.x8c{left:108.984000px;}
.x99{left:112.068000px;}
.x2f{left:133.198500px;}
.x2e{left:157.923000px;}
.x59{left:207.541500px;}
.x85{left:209.700000px;}
.x84{left:213.070500px;}
.x96{left:215.587500px;}
.x58{left:217.195500px;}
.x8d{left:218.725500px;}
.xaa{left:223.053000px;}
.x9b{left:225.378000px;}
.x5a{left:227.236500px;}
.x93{left:229.353000px;}
.x38{left:247.348500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x4{left:269.914500px;}
.x37{left:280.390500px;}
.x6{left:281.479500px;}
.x26{left:283.716000px;}
.x2b{left:290.280000px;}
.x27{left:298.660500px;}
.x5b{left:300.003000px;}
.xb3{left:304.795500px;}
.x28{left:306.162000px;}
.xb4{left:308.377500px;}
.x8e{left:310.690500px;}
.x86{left:318.234000px;}
.x29{left:321.106500px;}
.x5c{left:323.124000px;}
.xb5{left:326.454000px;}
.x4c{left:329.890500px;}
.xd8{left:334.366500px;}
.xb6{left:340.950000px;}
.xc7{left:343.114500px;}
.x4d{left:344.833500px;}
.xb7{left:348.343500px;}
.xdf{left:356.403000px;}
.xc8{left:358.059000px;}
.xdd{left:361.659000px;}
.xb8{left:362.838000px;}
.x30{left:366.610500px;}
.xb9{left:369.975000px;}
.xb2{left:374.922000px;}
.xde{left:376.153500px;}
.x9{left:377.569500px;}
.xe7{left:380.571000px;}
.xd9{left:381.631500px;}
.xa{left:385.041000px;}
.xe9{left:386.776500px;}
.x4f{left:388.729500px;}
.xe3{left:391.023000px;}
.xb{left:392.662500px;}
.xe8{left:395.515500px;}
.x3b{left:398.539500px;}
.xc{left:400.134000px;}
.xea{left:401.719500px;}
.xe4{left:405.967500px;}
.xbd{left:409.513500px;}
.x41{left:411.717000px;}
.x3c{left:413.482500px;}
.x3d{left:420.940500px;}
.xbe{left:424.458000px;}
.x42{left:426.661500px;}
.xbf{left:428.118000px;}
.x43{left:430.471500px;}
.xda{left:433.140000px;}
.x3e{left:435.883500px;}
.xc0{left:443.062500px;}
.x44{left:445.416000px;}
.xc1{left:446.724000px;}
.xdb{left:448.084500px;}
.x45{left:449.226000px;}
.xc4{left:451.686000px;}
.xd1{left:452.889000px;}
.x63{left:457.086000px;}
.x60{left:459.298500px;}
.x75{left:460.894500px;}
.x5d{left:463.101000px;}
.x46{left:464.170500px;}
.x1b{left:466.221000px;}
.xa2{left:467.356500px;}
.x61{left:468.432000px;}
.x5e{left:469.651500px;}
.x76{left:471.181500px;}
.x9c{left:472.527000px;}
.xae{left:473.680500px;}
.x87{left:475.915500px;}
.xab{left:476.950500px;}
.x1c{left:478.512000px;}
.x5f{left:480.769500px;}
.x88{left:482.079000px;}
.x98{left:483.292500px;}
.x62{left:484.548000px;}
.xdc{left:485.593500px;}
.x64{left:488.869500px;}
.xaf{left:489.909000px;}
.xcb{left:491.814000px;}
.xa7{left:494.661000px;}
.x97{left:496.150500px;}
.xe0{left:498.268500px;}
.xb0{left:499.443000px;}
.x2c{left:501.733500px;}
.xba{left:504.675000px;}
.xcc{left:506.758500px;}
.xc5{left:511.714500px;}
.x32{left:513.196500px;}
.xeb{left:515.017500px;}
.x2d{left:516.678000px;}
.xe5{left:517.774500px;}
.x7{left:520.843500px;}
.xc9{left:522.489000px;}
.x39{left:524.307000px;}
.x8{left:528.315000px;}
.xe6{left:532.719000px;}
.xca{left:537.432000px;}
.x3a{left:539.251500px;}
.x1d{left:540.334500px;}
.x1e{left:544.839000px;}
.xbb{left:546.477000px;}
.x1f{left:553.722000px;}
.x31{left:554.949000px;}
.xd4{left:556.836000px;}
.xbc{left:558.769500px;}
.x20{left:569.490000px;}
.xd5{left:571.780500px;}
.xec{left:572.832000px;}
.x50{left:579.999000px;}
.x66{left:581.098500px;}
.xa3{left:582.114000px;}
.x8f{left:584.068500px;}
.x65{left:586.143000px;}
.x9d{left:587.823000px;}
.x89{left:589.138500px;}
.x78{left:590.292000px;}
.x67{left:591.846000px;}
.x94{left:593.400000px;}
.x21{left:595.041000px;}
.x77{left:597.459000px;}
.x7d{left:598.827000px;}
.x68{left:600.321000px;}
.xac{left:601.774500px;}
.x17{left:602.989500px;}
.x7a{left:604.524000px;}
.x9f{left:606.298500px;}
.x22{left:607.333500px;}
.x79{left:610.251000px;}
.x91{left:611.739000px;}
.x95{left:612.784500px;}
.x7b{left:614.262000px;}
.x7c{left:616.891500px;}
.x18{left:617.934000px;}
.x90{left:619.821000px;}
.x19{left:621.744000px;}
.x9e{left:627.495000px;}
.x1a{left:636.688500px;}
.xc2{left:646.008000px;}
.x3f{left:652.540500px;}
.xcf{left:655.659000px;}
.xc3{left:658.299000px;}
.x11{left:660.682500px;}
.x92{left:664.384500px;}
.x23{left:666.151500px;}
.x12{left:668.154000px;}
.xd0{left:670.603500px;}
.x13{left:671.935500px;}
.x24{left:675.034500px;}
.xe1{left:678.402000px;}
.x14{left:679.407000px;}
.x47{left:680.608500px;}
.x15{left:686.968500px;}
.xe2{left:693.346500px;}
.x25{left:694.540500px;}
.x48{left:695.551500px;}
.x49{left:699.363000px;}
.x16{left:701.913000px;}
.x34{left:709.420500px;}
.x4a{left:714.307500px;}
.xa8{left:724.525500px;}
.x6b{left:725.719500px;}
.x80{left:727.101000px;}
.x6c{left:728.643000px;}
.x7f{left:730.275000px;}
.x81{left:731.877000px;}
.x6d{left:734.130000px;}
.x8a{left:736.210500px;}
.xa4{left:737.484000px;}
.x33{left:739.548000px;}
.x7e{left:741.010500px;}
.x51{left:743.163000px;}
.x69{left:744.693000px;}
.x4b{left:746.217000px;}
.x6e{left:749.146500px;}
.xb1{left:750.312000px;}
.x82{left:752.487000px;}
.xa5{left:753.522000px;}
.x6a{left:755.482500px;}
.xa1{left:758.794500px;}
.xa0{left:765.531000px;}
.xc6{left:769.744500px;}
.xd2{left:772.459500px;}
.xd6{left:785.505000px;}
.xd3{left:787.404000px;}
.xd7{left:800.449500px;}
.xd{left:814.179000px;}
.x2a{left:818.046000px;}
.xcd{left:819.093000px;}
.xe{left:821.650500px;}
.xf{left:825.352500px;}
.x10{left:832.825500px;}
.xce{left:834.036000px;}
.x40{left:837.052500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:25.242667pt;}
.v5{vertical-align:50.480000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.004267pt;}
.ls9{letter-spacing:0.482502pt;}
.ls8{letter-spacing:0.487835pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.lsd{letter-spacing:10.627330pt;}
.lse{letter-spacing:11.133060pt;}
.lsc{letter-spacing:11.138393pt;}
.ls1d{letter-spacing:11.711794pt;}
.ls1c{letter-spacing:11.760776pt;}
.ls10{letter-spacing:11.772583pt;}
.ls11{letter-spacing:11.820600pt;}
.ls1f{letter-spacing:11.853565pt;}
.ls19{letter-spacing:11.946841pt;}
.ls14{letter-spacing:11.954133pt;}
.ls13{letter-spacing:11.959467pt;}
.ls1e{letter-spacing:11.974052pt;}
.ls18{letter-spacing:12.074520pt;}
.lsa{letter-spacing:13.124065pt;}
.ls1a{letter-spacing:13.435650pt;}
.lsf{letter-spacing:13.552995pt;}
.lsb{letter-spacing:13.602270pt;}
.ls17{letter-spacing:13.921924pt;}
.ls16{letter-spacing:14.611047pt;}
.ls1b{letter-spacing:16.510159pt;}
.ls12{letter-spacing:17.336303pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.315733pt;}
.ws15{word-spacing:-13.283467pt;}
.ws92{word-spacing:-11.955200pt;}
.ws23{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws80{word-spacing:-2.975497pt;}
.ws81{word-spacing:-2.922363pt;}
.ws3f{word-spacing:-2.869229pt;}
.ws8a{word-spacing:-2.762961pt;}
.ws83{word-spacing:-2.391024pt;}
.ws4c{word-spacing:-2.178489pt;}
.ws73{word-spacing:-2.125355pt;}
.ws3e{word-spacing:-2.072221pt;}
.ws8b{word-spacing:-1.912819pt;}
.ws32{word-spacing:-1.859685pt;}
.ws68{word-spacing:-1.753418pt;}
.ws2c{word-spacing:-1.647150pt;}
.ws31{word-spacing:-1.540882pt;}
.wsaa{word-spacing:-1.530266pt;}
.ws2e{word-spacing:-1.487748pt;}
.ws6f{word-spacing:-1.434614pt;}
.ws74{word-spacing:-1.381481pt;}
.ws24{word-spacing:-1.328347pt;}
.ws9{word-spacing:-1.275213pt;}
.ws4a{word-spacing:-1.222079pt;}
.ws64{word-spacing:-1.168945pt;}
.wsf{word-spacing:-1.115811pt;}
.ws7c{word-spacing:-1.062677pt;}
.ws67{word-spacing:-1.009543pt;}
.wsa{word-spacing:-0.956410pt;}
.ws5b{word-spacing:-0.807637pt;}
.ws60{word-spacing:-0.797008pt;}
.ws6a{word-spacing:-0.743874pt;}
.ws5c{word-spacing:-0.722622pt;}
.ws37{word-spacing:-0.690740pt;}
.wsbd{word-spacing:-0.669491pt;}
.ws8f{word-spacing:-0.637606pt;}
.wsa8{word-spacing:-0.621670pt;}
.ws69{word-spacing:-0.584473pt;}
.ws7a{word-spacing:-0.531339pt;}
.wsa5{word-spacing:-0.478208pt;}
.wsa6{word-spacing:-0.430387pt;}
.wsb{word-spacing:-0.425071pt;}
.ws40{word-spacing:-0.371937pt;}
.ws34{word-spacing:-0.318803pt;}
.ws27{word-spacing:-0.265669pt;}
.ws96{word-spacing:-0.239104pt;}
.ws1c{word-spacing:-0.212535pt;}
.ws9f{word-spacing:-0.191283pt;}
.ws5e{word-spacing:-0.170029pt;}
.ws2d{word-spacing:-0.159402pt;}
.ws9a{word-spacing:-0.143462pt;}
.ws54{word-spacing:-0.127522pt;}
.wsc{word-spacing:-0.106268pt;}
.wsa0{word-spacing:-0.095642pt;}
.wsd{word-spacing:-0.053134pt;}
.wsaf{word-spacing:-0.047821pt;}
.ws56{word-spacing:-0.042507pt;}
.ws22{word-spacing:-0.002136pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:0.037194pt;}
.ws4f{word-spacing:0.042507pt;}
.ws9c{word-spacing:0.047821pt;}
.ws17{word-spacing:0.053134pt;}
.ws0{word-spacing:0.074387pt;}
.ws53{word-spacing:0.085014pt;}
.wsbe{word-spacing:0.095642pt;}
.ws20{word-spacing:0.106268pt;}
.wsb1{word-spacing:0.106372pt;}
.ws5f{word-spacing:0.127522pt;}
.wsa9{word-spacing:0.143462pt;}
.wse{word-spacing:0.159402pt;}
.ws59{word-spacing:0.170029pt;}
.ws99{word-spacing:0.191283pt;}
.ws10{word-spacing:0.212535pt;}
.wsa4{word-spacing:0.239104pt;}
.ws25{word-spacing:0.265669pt;}
.wsb3{word-spacing:0.286925pt;}
.ws2b{word-spacing:0.318803pt;}
.ws71{word-spacing:0.371937pt;}
.ws97{word-spacing:0.526029pt;}
.ws5d{word-spacing:0.530083pt;}
.ws87{word-spacing:0.531339pt;}
.ws57{word-spacing:0.532000pt;}
.ws50{word-spacing:0.532267pt;}
.ws5a{word-spacing:0.535333pt;}
.ws93{word-spacing:0.573850pt;}
.ws18{word-spacing:0.584473pt;}
.ws13{word-spacing:0.637606pt;}
.ws79{word-spacing:0.690740pt;}
.ws28{word-spacing:0.743874pt;}
.ws39{word-spacing:1.009543pt;}
.wsb6{word-spacing:1.147699pt;}
.ws65{word-spacing:1.168945pt;}
.ws66{word-spacing:1.328347pt;}
.ws42{word-spacing:1.381481pt;}
.ws29{word-spacing:1.434614pt;}
.wsb8{word-spacing:1.482445pt;}
.wsac{word-spacing:1.517540pt;}
.wsab{word-spacing:1.530266pt;}
.ws70{word-spacing:1.594016pt;}
.ws3d{word-spacing:1.647150pt;}
.ws41{word-spacing:1.700284pt;}
.ws47{word-spacing:1.753418pt;}
.ws82{word-spacing:1.859685pt;}
.wsad{word-spacing:1.960653pt;}
.ws43{word-spacing:1.965953pt;}
.ws44{word-spacing:2.019087pt;}
.ws94{word-spacing:2.104115pt;}
.ws33{word-spacing:2.125355pt;}
.ws7e{word-spacing:2.178489pt;}
.ws6{word-spacing:2.231335pt;}
.ws4{word-spacing:2.231501pt;}
.ws85{word-spacing:2.231622pt;}
.ws6e{word-spacing:2.337890pt;}
.wsba{word-spacing:2.486682pt;}
.ws8{word-spacing:2.550432pt;}
.wsbf{word-spacing:2.603530pt;}
.ws98{word-spacing:2.630144pt;}
.ws95{word-spacing:2.725786pt;}
.wsc1{word-spacing:2.821427pt;}
.wsb0{word-spacing:2.863138pt;}
.wsb9{word-spacing:2.865297pt;}
.wsb2{word-spacing:2.869248pt;}
.ws38{word-spacing:2.922363pt;}
.ws45{word-spacing:2.975497pt;}
.wsa7{word-spacing:3.012710pt;}
.ws6d{word-spacing:3.028630pt;}
.ws9b{word-spacing:3.061448pt;}
.ws21{word-spacing:3.081764pt;}
.wsc2{word-spacing:3.108352pt;}
.ws46{word-spacing:3.134898pt;}
.ws1d{word-spacing:3.185311pt;}
.ws62{word-spacing:3.188032pt;}
.ws6b{word-spacing:3.241166pt;}
.wsb4{word-spacing:3.251814pt;}
.ws12{word-spacing:3.276313pt;}
.ws11{word-spacing:3.283161pt;}
.ws88{word-spacing:3.294300pt;}
.ws63{word-spacing:3.347434pt;}
.ws16{word-spacing:3.453701pt;}
.ws1a{word-spacing:3.474246pt;}
.wsbb{word-spacing:3.586560pt;}
.ws6c{word-spacing:3.613103pt;}
.ws90{word-spacing:3.634381pt;}
.ws3b{word-spacing:3.666237pt;}
.ws91{word-spacing:3.682202pt;}
.ws1e{word-spacing:3.825664pt;}
.ws76{word-spacing:4.197575pt;}
.wsa1{word-spacing:4.256051pt;}
.ws89{word-spacing:4.303843pt;}
.ws19{word-spacing:4.410111pt;}
.ws75{word-spacing:4.463245pt;}
.ws8c{word-spacing:4.516379pt;}
.wsbc{word-spacing:4.542976pt;}
.ws1f{word-spacing:4.622646pt;}
.ws72{word-spacing:4.728914pt;}
.ws3c{word-spacing:4.782048pt;}
.ws7b{word-spacing:4.888316pt;}
.ws3a{word-spacing:4.941450pt;}
.ws86{word-spacing:4.994583pt;}
.ws7d{word-spacing:5.047717pt;}
.ws30{word-spacing:5.100851pt;}
.ws14{word-spacing:5.153985pt;}
.ws9d{word-spacing:5.212467pt;}
.ws26{word-spacing:5.313387pt;}
.wsa3{word-spacing:5.355930pt;}
.ws9e{word-spacing:5.547213pt;}
.ws8d{word-spacing:5.579056pt;}
.ws7f{word-spacing:5.791591pt;}
.ws1b{word-spacing:5.950993pt;}
.ws78{word-spacing:6.004127pt;}
.ws77{word-spacing:6.163529pt;}
.wsc0{word-spacing:6.168883pt;}
.ws48{word-spacing:6.216662pt;}
.ws8e{word-spacing:6.429198pt;}
.ws61{word-spacing:6.694867pt;}
.wsb7{word-spacing:6.694912pt;}
.ws35{word-spacing:6.854269pt;}
.ws84{word-spacing:7.013670pt;}
.ws2f{word-spacing:7.226206pt;}
.ws4b{word-spacing:7.385607pt;}
.wsb5{word-spacing:7.412224pt;}
.ws36{word-spacing:7.810678pt;}
.ws2a{word-spacing:7.863812pt;}
.ws49{word-spacing:8.767088pt;}
.wsae{word-spacing:8.846848pt;}
.wsa2{word-spacing:16.067789pt;}
.ws2{word-spacing:25.293814pt;}
.ws51{word-spacing:128.315671pt;}
.ws58{word-spacing:130.459671pt;}
.ws4d{word-spacing:147.488205pt;}
.ws52{word-spacing:194.777829pt;}
.ws55{word-spacing:196.921723pt;}
.ws4e{word-spacing:212.162052pt;}
._1d{margin-left:-7.438735pt;}
._e{margin-left:-5.950993pt;}
._1{margin-left:-4.797974pt;}
._2{margin-left:-3.421811pt;}
._15{margin-left:-2.337896pt;}
._4{margin-left:-1.338970pt;}
._5{width:2.660485pt;}
._21{width:9.457834pt;}
._23{width:10.743664pt;}
._0{width:11.641597pt;}
._b{width:13.179368pt;}
._9{width:14.770586pt;}
._7{width:16.069751pt;}
._8{width:17.109734pt;}
._22{width:18.118649pt;}
._10{width:19.128192pt;}
._f{width:20.031468pt;}
._a{width:21.436249pt;}
._3{width:23.063347pt;}
._13{width:24.282177pt;}
._12{width:26.311887pt;}
._24{width:28.299087pt;}
._1c{width:29.255539pt;}
._1f{width:30.615730pt;}
._20{width:34.696415pt;}
._1b{width:36.237297pt;}
._14{width:43.197834pt;}
._6{width:48.369808pt;}
._17{width:90.859122pt;}
._18{width:93.693948pt;}
._19{width:134.110216pt;}
._1a{width:136.278083pt;}
._16{width:176.617416pt;}
._11{width:284.170542pt;}
._c{width:1584.013067pt;}
._1e{width:2159.645067pt;}
._d{width:2180.898400pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fsa{font-size:44.292800pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:40.818667pt;}
.y15{bottom:89.120000pt;}
.y3f{bottom:98.069333pt;}
.y184{bottom:100.385333pt;}
.y1a8{bottom:100.710667pt;}
.y201{bottom:102.077333pt;}
.y14{bottom:105.020000pt;}
.y21f{bottom:106.913333pt;}
.y1d3{bottom:107.802667pt;}
.ybd{bottom:108.117333pt;}
.y9c{bottom:108.940000pt;}
.y3e{bottom:116.640000pt;}
.y183{bottom:118.956000pt;}
.y1a7{bottom:119.281333pt;}
.y200{bottom:120.648000pt;}
.y13{bottom:120.920000pt;}
.y73{bottom:122.042667pt;}
.yb6{bottom:124.501333pt;}
.y21e{bottom:125.482667pt;}
.y1d2{bottom:126.373333pt;}
.ybc{bottom:126.686667pt;}
.y9b{bottom:127.510667pt;}
.y240{bottom:129.120000pt;}
.y270{bottom:130.668000pt;}
.y3d{bottom:135.209333pt;}
.y12{bottom:136.821333pt;}
.y182{bottom:137.525333pt;}
.y1a6{bottom:137.852000pt;}
.y1ff{bottom:139.218667pt;}
.y72{bottom:140.613333pt;}
.yb5{bottom:143.072000pt;}
.y21d{bottom:144.053333pt;}
.y1d1{bottom:144.944000pt;}
.ybb{bottom:145.257333pt;}
.y162{bottom:145.714667pt;}
.y9a{bottom:146.081333pt;}
.y23f{bottom:146.916000pt;}
.y26f{bottom:147.690667pt;}
.y11{bottom:152.721333pt;}
.y3c{bottom:153.780000pt;}
.y181{bottom:156.096000pt;}
.y1a5{bottom:156.421333pt;}
.y1fe{bottom:157.788000pt;}
.y161{bottom:158.334667pt;}
.y71{bottom:159.184000pt;}
.y21c{bottom:162.624000pt;}
.y1d0{bottom:163.513333pt;}
.yba{bottom:163.828000pt;}
.y23e{bottom:164.712000pt;}
.y26e{bottom:164.713333pt;}
.yb4{bottom:165.626667pt;}
.y10{bottom:168.621333pt;}
.y99{bottom:168.636000pt;}
.y160{bottom:170.953333pt;}
.y3b{bottom:172.350667pt;}
.y180{bottom:174.666667pt;}
.y1a4{bottom:174.992000pt;}
.y166{bottom:177.264000pt;}
.y70{bottom:177.753333pt;}
.y1fd{bottom:180.344000pt;}
.y21b{bottom:181.193333pt;}
.y26d{bottom:181.736000pt;}
.y1cf{bottom:182.084000pt;}
.yb9{bottom:182.398667pt;}
.y157{bottom:183.573333pt;}
.yf{bottom:184.521333pt;}
.yb3{bottom:187.344000pt;}
.y165{bottom:189.882667pt;}
.y29c{bottom:192.120000pt;}
.y17f{bottom:193.236000pt;}
.y1a3{bottom:193.562667pt;}
.y3a{bottom:194.905333pt;}
.y156{bottom:196.192000pt;}
.y6f{bottom:196.324000pt;}
.y23d{bottom:198.449333pt;}
.y26c{bottom:198.758667pt;}
.y21a{bottom:199.764000pt;}
.y98{bottom:200.052000pt;}
.ye{bottom:200.422667pt;}
.y1ce{bottom:200.654667pt;}
.yb8{bottom:200.968000pt;}
.y104{bottom:201.466667pt;}
.y15c{bottom:202.502667pt;}
.y155{bottom:208.812000pt;}
.y29b{bottom:209.142667pt;}
.y1fc{bottom:211.760000pt;}
.y17e{bottom:211.806667pt;}
.y1a2{bottom:212.132000pt;}
.yfb{bottom:214.086667pt;}
.y6e{bottom:214.894667pt;}
.y15a{bottom:215.121333pt;}
.y26b{bottom:215.781333pt;}
.y23c{bottom:217.020000pt;}
.y219{bottom:218.334667pt;}
.y97{bottom:218.621333pt;}
.y1cd{bottom:219.224000pt;}
.y102{bottom:220.396000pt;}
.y154{bottom:221.430667pt;}
.yb2{bottom:221.854667pt;}
.yd{bottom:224.293333pt;}
.y29a{bottom:226.165333pt;}
.yfa{bottom:226.705333pt;}
.y159{bottom:227.741333pt;}
.y1fb{bottom:230.329333pt;}
.y17d{bottom:230.377333pt;}
.y1a1{bottom:230.702667pt;}
.yb7{bottom:232.637333pt;}
.y26a{bottom:232.804000pt;}
.y101{bottom:233.014667pt;}
.y6d{bottom:233.464000pt;}
.y153{bottom:234.050667pt;}
.y23b{bottom:235.589333pt;}
.y218{bottom:236.905333pt;}
.y96{bottom:237.192000pt;}
.y1cc{bottom:237.794667pt;}
.yf9{bottom:239.325333pt;}
.yc{bottom:240.193333pt;}
.y158{bottom:240.360000pt;}
.yb1{bottom:240.425333pt;}
.yfe{bottom:245.634667pt;}
.y152{bottom:246.670667pt;}
.y1fa{bottom:248.900000pt;}
.y17c{bottom:248.946667pt;}
.y1a0{bottom:249.273333pt;}
.y269{bottom:249.826667pt;}
.yf8{bottom:251.944000pt;}
.y6c{bottom:252.034667pt;}
.y15b{bottom:252.980000pt;}
.y23a{bottom:254.160000pt;}
.y95{bottom:255.762667pt;}
.yb{bottom:256.093333pt;}
.y1cb{bottom:256.365333pt;}
.yfd{bottom:258.253333pt;}
.y151{bottom:259.289333pt;}
.y217{bottom:259.460000pt;}
.yb0{bottom:262.980000pt;}
.y299{bottom:264.414667pt;}
.yf7{bottom:264.564000pt;}
.y39{bottom:265.316000pt;}
.y164{bottom:265.598667pt;}
.y268{bottom:266.849333pt;}
.y1f9{bottom:267.470667pt;}
.y17b{bottom:267.517333pt;}
.y19f{bottom:267.842667pt;}
.y6b{bottom:270.605333pt;}
.yfc{bottom:270.873333pt;}
.y150{bottom:271.909333pt;}
.ya{bottom:271.994667pt;}
.y239{bottom:272.730667pt;}
.y94{bottom:274.333333pt;}
.y1ca{bottom:274.934667pt;}
.yf6{bottom:277.182667pt;}
.y163{bottom:278.218667pt;}
.y216{bottom:278.920000pt;}
.y298{bottom:281.437333pt;}
.y100{bottom:283.492000pt;}
.y267{bottom:283.872000pt;}
.y15f{bottom:284.528000pt;}
.y1f8{bottom:286.040000pt;}
.y17a{bottom:286.088000pt;}
.y19e{bottom:286.413333pt;}
.y9{bottom:287.894667pt;}
.y6a{bottom:289.176000pt;}
.yf5{bottom:289.802667pt;}
.y238{bottom:291.300000pt;}
.y93{bottom:292.902667pt;}
.y1c9{bottom:293.505333pt;}
.yaf{bottom:294.396000pt;}
.yff{bottom:296.112000pt;}
.y15e{bottom:297.148000pt;}
.y297{bottom:298.460000pt;}
.y38{bottom:299.826667pt;}
.y266{bottom:300.894667pt;}
.yf4{bottom:302.421333pt;}
.y8{bottom:303.794667pt;}
.y1f7{bottom:304.610667pt;}
.y179{bottom:304.657333pt;}
.y19d{bottom:304.984000pt;}
.y69{bottom:307.745333pt;}
.y15d{bottom:309.766667pt;}
.y237{bottom:309.870667pt;}
.y215{bottom:310.336000pt;}
.y92{bottom:311.473333pt;}
.y1c8{bottom:312.076000pt;}
.yae{bottom:312.965333pt;}
.y103{bottom:315.041333pt;}
.y296{bottom:315.482667pt;}
.y265{bottom:317.918667pt;}
.y37{bottom:318.396000pt;}
.y7{bottom:319.696000pt;}
.y1f6{bottom:323.181333pt;}
.y178{bottom:323.228000pt;}
.y19c{bottom:323.554667pt;}
.y68{bottom:326.316000pt;}
.y236{bottom:328.441333pt;}
.y14f{bottom:328.788000pt;}
.y214{bottom:328.905333pt;}
.y1c7{bottom:330.645333pt;}
.yad{bottom:331.536000pt;}
.y295{bottom:332.506667pt;}
.y91{bottom:334.028000pt;}
.yf3{bottom:334.062667pt;}
.y264{bottom:334.941333pt;}
.y6{bottom:335.596000pt;}
.y36{bottom:336.966667pt;}
.y14e{bottom:341.408000pt;}
.y1f5{bottom:341.750667pt;}
.y177{bottom:341.798667pt;}
.y19b{bottom:342.124000pt;}
.y67{bottom:344.886667pt;}
.yf2{bottom:346.681333pt;}
.y235{bottom:347.010667pt;}
.y213{bottom:347.476000pt;}
.y1c6{bottom:349.216000pt;}
.y294{bottom:349.529333pt;}
.yac{bottom:350.106667pt;}
.y263{bottom:351.964000pt;}
.y148{bottom:354.026667pt;}
.y35{bottom:355.537333pt;}
.y5{bottom:356.809333pt;}
.yef{bottom:359.301333pt;}
.y1f4{bottom:360.321333pt;}
.y176{bottom:360.369333pt;}
.y19a{bottom:360.694667pt;}
.y66{bottom:363.456000pt;}
.y90{bottom:365.444000pt;}
.y234{bottom:365.581333pt;}
.ye6{bottom:365.610667pt;}
.y212{bottom:366.046667pt;}
.y293{bottom:366.552000pt;}
.y147{bottom:366.646667pt;}
.y1c5{bottom:367.786667pt;}
.y262{bottom:368.986667pt;}
.yee{bottom:371.920000pt;}
.yab{bottom:372.661333pt;}
.y4{bottom:372.710667pt;}
.y34{bottom:374.108000pt;}
.ye5{bottom:378.230667pt;}
.y1f3{bottom:378.892000pt;}
.y146{bottom:379.265333pt;}
.y65{bottom:382.026667pt;}
.y175{bottom:382.924000pt;}
.y292{bottom:383.574667pt;}
.y8f{bottom:384.014667pt;}
.y233{bottom:384.152000pt;}
.yed{bottom:384.540000pt;}
.y211{bottom:384.617333pt;}
.y14b{bottom:385.574667pt;}
.y261{bottom:386.009333pt;}
.y1c4{bottom:386.357333pt;}
.y3{bottom:388.610667pt;}
.ye4{bottom:390.849333pt;}
.y145{bottom:391.885333pt;}
.y33{bottom:392.677333pt;}
.ye9{bottom:397.158667pt;}
.y1f2{bottom:397.461333pt;}
.y199{bottom:397.834667pt;}
.y14a{bottom:398.194667pt;}
.y64{bottom:400.597333pt;}
.y8e{bottom:402.584000pt;}
.y232{bottom:402.721333pt;}
.y260{bottom:403.032000pt;}
.y210{bottom:403.186667pt;}
.ye3{bottom:403.469333pt;}
.yaa{bottom:404.077333pt;}
.y144{bottom:404.504000pt;}
.y1c3{bottom:408.912000pt;}
.ye8{bottom:409.778667pt;}
.y2{bottom:409.824000pt;}
.y149{bottom:410.813333pt;}
.y32{bottom:411.248000pt;}
.y1f1{bottom:416.032000pt;}
.ye2{bottom:416.088000pt;}
.y198{bottom:416.405333pt;}
.y143{bottom:417.124000pt;}
.y174{bottom:417.336000pt;}
.y291{bottom:417.620000pt;}
.y63{bottom:419.166667pt;}
.y25f{bottom:420.054667pt;}
.y8d{bottom:421.154667pt;}
.y231{bottom:421.292000pt;}
.y20f{bottom:421.757333pt;}
.ye7{bottom:422.397333pt;}
.ya9{bottom:422.646667pt;}
.y1{bottom:425.725333pt;}
.ye1{bottom:428.708000pt;}
.y142{bottom:429.742667pt;}
.y31{bottom:429.818667pt;}
.y173{bottom:429.956000pt;}
.y1f0{bottom:434.602667pt;}
.y290{bottom:434.642667pt;}
.y197{bottom:434.976000pt;}
.yec{bottom:435.017333pt;}
.y25e{bottom:437.077333pt;}
.y62{bottom:437.737333pt;}
.y8c{bottom:439.725333pt;}
.y230{bottom:439.862667pt;}
.y1c2{bottom:440.328000pt;}
.ya8{bottom:441.217333pt;}
.ye0{bottom:441.326667pt;}
.y141{bottom:442.362667pt;}
.y172{bottom:442.574667pt;}
.yeb{bottom:447.636000pt;}
.y30{bottom:448.388000pt;}
.y28f{bottom:451.665333pt;}
.y1ef{bottom:453.172000pt;}
.y196{bottom:453.545333pt;}
.ydf{bottom:453.946667pt;}
.y25d{bottom:454.100000pt;}
.y14d{bottom:454.981333pt;}
.y171{bottom:455.194667pt;}
.y61{bottom:456.308000pt;}
.y8b{bottom:458.294667pt;}
.y22f{bottom:458.433333pt;}
.y1c1{bottom:458.897333pt;}
.ya7{bottom:459.788000pt;}
.yea{bottom:460.256000pt;}
.y2f{bottom:466.958667pt;}
.y14c{bottom:467.601333pt;}
.y28e{bottom:468.688000pt;}
.y25c{bottom:471.122667pt;}
.y1ee{bottom:471.742667pt;}
.y195{bottom:472.116000pt;}
.yf1{bottom:472.874667pt;}
.y170{bottom:474.002667pt;}
.y60{bottom:474.877333pt;}
.y8a{bottom:476.865333pt;}
.y22e{bottom:477.002667pt;}
.y1c0{bottom:477.468000pt;}
.ya6{bottom:478.357333pt;}
.yf0{bottom:485.494667pt;}
.y2e{bottom:485.529333pt;}
.y28d{bottom:485.710667pt;}
.y140{bottom:486.622667pt;}
.y25b{bottom:488.145333pt;}
.y1ed{bottom:490.313333pt;}
.y194{bottom:490.686667pt;}
.y16e{bottom:492.932000pt;}
.y5f{bottom:493.448000pt;}
.y89{bottom:495.436000pt;}
.y22d{bottom:495.573333pt;}
.y1bf{bottom:496.038667pt;}
.ya5{bottom:496.928000pt;}
.y13f{bottom:499.241333pt;}
.y28c{bottom:502.733333pt;}
.y2d{bottom:504.098667pt;}
.yd6{bottom:504.516000pt;}
.y25a{bottom:505.168000pt;}
.y16d{bottom:505.552000pt;}
.y1ec{bottom:508.884000pt;}
.y193{bottom:509.256000pt;}
.yde{bottom:510.825333pt;}
.y13c{bottom:511.861333pt;}
.y5e{bottom:512.018667pt;}
.y88{bottom:514.006667pt;}
.y22c{bottom:514.144000pt;}
.y1be{bottom:514.608000pt;}
.ya4{bottom:515.498667pt;}
.yd5{bottom:517.134667pt;}
.y134{bottom:518.170667pt;}
.y28b{bottom:519.756000pt;}
.y259{bottom:522.190667pt;}
.y2c{bottom:522.669333pt;}
.ydd{bottom:523.445333pt;}
.y13b{bottom:524.480000pt;}
.y1eb{bottom:527.453333pt;}
.y192{bottom:527.826667pt;}
.yd4{bottom:529.754667pt;}
.y5d{bottom:530.589333pt;}
.y133{bottom:530.790667pt;}
.y22b{bottom:532.713333pt;}
.y1bd{bottom:533.178667pt;}
.yda{bottom:536.064000pt;}
.y87{bottom:536.561333pt;}
.y28a{bottom:536.778667pt;}
.y13a{bottom:537.100000pt;}
.ya3{bottom:538.053333pt;}
.y258{bottom:539.213333pt;}
.y2b{bottom:541.240000pt;}
.yd3{bottom:542.373333pt;}
.y132{bottom:543.409333pt;}
.y1ea{bottom:546.024000pt;}
.y191{bottom:546.397333pt;}
.yd9{bottom:548.684000pt;}
.y5c{bottom:549.158667pt;}
.y139{bottom:549.718667pt;}
.y22a{bottom:551.284000pt;}
.y1bc{bottom:551.749333pt;}
.y289{bottom:553.801333pt;}
.yd2{bottom:554.993333pt;}
.y20e{bottom:555.734667pt;}
.y131{bottom:556.029333pt;}
.y257{bottom:556.236000pt;}
.y2a{bottom:559.809333pt;}
.yd8{bottom:561.302667pt;}
.y138{bottom:562.338667pt;}
.y1e9{bottom:564.594667pt;}
.y190{bottom:564.968000pt;}
.yd1{bottom:567.612000pt;}
.y5b{bottom:567.729333pt;}
.y86{bottom:567.977333pt;}
.y130{bottom:568.648000pt;}
.ya2{bottom:569.469333pt;}
.y229{bottom:569.854667pt;}
.y1bb{bottom:570.318667pt;}
.y288{bottom:570.824000pt;}
.y256{bottom:573.258667pt;}
.yd7{bottom:573.922667pt;}
.y137{bottom:574.957333pt;}
.y29{bottom:578.380000pt;}
.yd0{bottom:580.232000pt;}
.y12f{bottom:581.268000pt;}
.y1e8{bottom:583.164000pt;}
.y18f{bottom:583.537333pt;}
.y5a{bottom:586.300000pt;}
.ydc{bottom:586.541333pt;}
.y85{bottom:586.546667pt;}
.y20d{bottom:587.149333pt;}
.y136{bottom:587.577333pt;}
.y287{bottom:587.846667pt;}
.ya1{bottom:588.040000pt;}
.y1ba{bottom:588.889333pt;}
.y255{bottom:590.281333pt;}
.y228{bottom:592.409333pt;}
.ycf{bottom:592.850667pt;}
.y12e{bottom:593.886667pt;}
.y28{bottom:596.950667pt;}
.ydb{bottom:599.161333pt;}
.y135{bottom:600.196000pt;}
.y1e7{bottom:601.734667pt;}
.y18e{bottom:602.108000pt;}
.y59{bottom:604.869333pt;}
.yce{bottom:605.470667pt;}
.y20c{bottom:605.720000pt;}
.y16c{bottom:606.506667pt;}
.ya0{bottom:606.609333pt;}
.y254{bottom:607.304000pt;}
.y1b9{bottom:607.460000pt;}
.y84{bottom:609.102667pt;}
.y13e{bottom:612.816000pt;}
.y27{bottom:615.520000pt;}
.y16b{bottom:619.125333pt;}
.y1e6{bottom:620.305333pt;}
.y18d{bottom:620.678667pt;}
.y286{bottom:621.892000pt;}
.y58{bottom:623.440000pt;}
.y20b{bottom:624.289333pt;}
.y253{bottom:624.326667pt;}
.ycd{bottom:624.492000pt;}
.y9f{bottom:625.180000pt;}
.y13d{bottom:625.434667pt;}
.y1b8{bottom:626.030667pt;}
.y227{bottom:626.920000pt;}
.ycc{bottom:630.801333pt;}
.y26{bottom:634.090667pt;}
.y16f{bottom:638.054667pt;}
.y1e5{bottom:638.874667pt;}
.y285{bottom:638.914667pt;}
.y18c{bottom:639.248000pt;}
.y252{bottom:641.349333pt;}
.y56{bottom:642.010667pt;}
.y20a{bottom:642.860000pt;}
.y9e{bottom:643.750667pt;}
.y12d{bottom:644.456000pt;}
.y1b7{bottom:644.600000pt;}
.y226{bottom:645.490667pt;}
.y57{bottom:646.832000pt;}
.y82{bottom:651.306667pt;}
.y25{bottom:652.661333pt;}
.y284{bottom:655.937333pt;}
.y12c{bottom:657.076000pt;}
.y1e4{bottom:657.445333pt;}
.y18b{bottom:657.818667pt;}
.y251{bottom:658.373333pt;}
.y83{bottom:659.276000pt;}
.y55{bottom:660.580000pt;}
.y209{bottom:661.430667pt;}
.y1b6{bottom:663.170667pt;}
.y225{bottom:664.060000pt;}
.y9d{bottom:666.305333pt;}
.ycb{bottom:666.480000pt;}
.y81{bottom:667.246667pt;}
.y12b{bottom:669.694667pt;}
.y24{bottom:671.232000pt;}
.y283{bottom:672.961333pt;}
.y250{bottom:675.396000pt;}
.y1e3{bottom:676.016000pt;}
.y18a{bottom:676.389333pt;}
.y54{bottom:679.150667pt;}
.y208{bottom:680.001333pt;}
.y1b5{bottom:681.741333pt;}
.y12a{bottom:682.314667pt;}
.y224{bottom:682.630667pt;}
.y16a{bottom:688.624000pt;}
.y80{bottom:689.589333pt;}
.y23{bottom:689.801333pt;}
.y282{bottom:689.984000pt;}
.y1e2{bottom:694.585333pt;}
.y120{bottom:694.933333pt;}
.y189{bottom:694.958667pt;}
.y24f{bottom:696.402667pt;}
.y53{bottom:697.721333pt;}
.y207{bottom:698.570667pt;}
.yca{bottom:699.461333pt;}
.y1b4{bottom:700.310667pt;}
.y223{bottom:701.201333pt;}
.y125{bottom:701.244000pt;}
.y7f{bottom:705.529333pt;}
.y281{bottom:707.006667pt;}
.y11f{bottom:707.553333pt;}
.y22{bottom:708.372000pt;}
.y1e1{bottom:713.156000pt;}
.y123{bottom:713.862667pt;}
.y52{bottom:716.290667pt;}
.y206{bottom:717.141333pt;}
.y188{bottom:717.514667pt;}
.yc9{bottom:718.030667pt;}
.y1b3{bottom:718.881333pt;}
.y222{bottom:719.770667pt;}
.y11e{bottom:720.172000pt;}
.y280{bottom:724.029333pt;}
.y122{bottom:726.482667pt;}
.y24e{bottom:730.913333pt;}
.y1e0{bottom:731.726667pt;}
.y11d{bottom:732.792000pt;}
.y51{bottom:734.861333pt;}
.y21{bottom:734.912000pt;}
.y205{bottom:735.712000pt;}
.yc8{bottom:736.601333pt;}
.y7e{bottom:737.221333pt;}
.y221{bottom:738.341333pt;}
.y121{bottom:739.101333pt;}
.y187{bottom:739.232000pt;}
.y27f{bottom:741.052000pt;}
.y1b2{bottom:741.436000pt;}
.y11c{bottom:745.410667pt;}
.y1df{bottom:750.297333pt;}
.y124{bottom:751.721333pt;}
.y50{bottom:753.432000pt;}
.y204{bottom:754.281333pt;}
.yc7{bottom:755.172000pt;}
.y24d{bottom:756.216000pt;}
.y11b{bottom:758.030667pt;}
.y27e{bottom:758.074667pt;}
.y220{bottom:760.897333pt;}
.y169{bottom:764.340000pt;}
.y1de{bottom:768.866667pt;}
.y7d{bottom:769.240000pt;}
.y20{bottom:770.485333pt;}
.y129{bottom:770.649333pt;}
.y168{bottom:770.650667pt;}
.y4f{bottom:772.002667pt;}
.y1b1{bottom:772.852000pt;}
.y24c{bottom:773.548000pt;}
.yc6{bottom:773.742667pt;}
.y27d{bottom:775.097333pt;}
.y128{bottom:783.269333pt;}
.y1f{bottom:784.832000pt;}
.y7c{bottom:787.810667pt;}
.y1e{bottom:788.689333pt;}
.y4e{bottom:790.572000pt;}
.y24b{bottom:790.880000pt;}
.y1b0{bottom:791.422667pt;}
.y27c{bottom:792.120000pt;}
.yc5{bottom:792.312000pt;}
.y127{bottom:795.889333pt;}
.y1d{bottom:799.178667pt;}
.y7b{bottom:806.380000pt;}
.y126{bottom:808.508000pt;}
.y4d{bottom:809.142667pt;}
.y1af{bottom:809.992000pt;}
.yc4{bottom:810.882667pt;}
.y167{bottom:814.910667pt;}
.y24a{bottom:816.182667pt;}
.y1c{bottom:817.381333pt;}
.y1dd{bottom:822.837333pt;}
.y7a{bottom:824.950667pt;}
.y27b{bottom:826.165333pt;}
.y116{bottom:827.529333pt;}
.y4c{bottom:827.713333pt;}
.y1ae{bottom:828.562667pt;}
.yc3{bottom:829.453333pt;}
.y1b{bottom:831.728000pt;}
.y114{bottom:840.149333pt;}
.y1dc{bottom:841.408000pt;}
.y249{bottom:841.485333pt;}
.y27a{bottom:843.188000pt;}
.y4b{bottom:846.282667pt;}
.y11a{bottom:846.458667pt;}
.y1ad{bottom:847.133333pt;}
.y79{bottom:847.506667pt;}
.yc2{bottom:848.022667pt;}
.y203{bottom:851.118667pt;}
.y10e{bottom:852.768000pt;}
.y119{bottom:859.077333pt;}
.y1db{bottom:859.978667pt;}
.y279{bottom:860.210667pt;}
.y4a{bottom:864.853333pt;}
.y10d{bottom:865.388000pt;}
.y1ac{bottom:865.702667pt;}
.yc1{bottom:866.593333pt;}
.y248{bottom:866.788000pt;}
.y202{bottom:870.578667pt;}
.y1a{bottom:871.440000pt;}
.y112{bottom:871.697333pt;}
.y278{bottom:877.233333pt;}
.y10c{bottom:878.006667pt;}
.y1da{bottom:878.548000pt;}
.y78{bottom:878.921333pt;}
.y49{bottom:883.424000pt;}
.y247{bottom:884.120000pt;}
.y1ab{bottom:884.273333pt;}
.y111{bottom:884.316000pt;}
.yc0{bottom:885.164000pt;}
.y19{bottom:890.010667pt;}
.y10b{bottom:890.626667pt;}
.y277{bottom:894.256000pt;}
.y110{bottom:896.936000pt;}
.y1d9{bottom:897.118667pt;}
.y77{bottom:897.492000pt;}
.y48{bottom:901.993333pt;}
.y1aa{bottom:902.844000pt;}
.y10a{bottom:903.245333pt;}
.ybf{bottom:903.733333pt;}
.y246{bottom:909.422667pt;}
.y10f{bottom:909.554667pt;}
.y276{bottom:911.278667pt;}
.y1d8{bottom:915.689333pt;}
.y109{bottom:915.865333pt;}
.y76{bottom:916.062667pt;}
.y47{bottom:920.564000pt;}
.y118{bottom:922.174667pt;}
.y186{bottom:922.304000pt;}
.y18{bottom:924.521333pt;}
.y1a9{bottom:925.398667pt;}
.ybe{bottom:926.289333pt;}
.y245{bottom:926.754667pt;}
.y275{bottom:928.301333pt;}
.y108{bottom:928.484000pt;}
.y1d7{bottom:934.258667pt;}
.y117{bottom:934.793333pt;}
.y75{bottom:938.617333pt;}
.y46{bottom:939.134667pt;}
.y113{bottom:941.104000pt;}
.y244{bottom:944.086667pt;}
.y185{bottom:944.860000pt;}
.y274{bottom:945.324000pt;}
.y17{bottom:952.377333pt;}
.y1d6{bottom:952.829333pt;}
.y115{bottom:953.722667pt;}
.y45{bottom:957.704000pt;}
.y74{bottom:960.334667pt;}
.y243{bottom:961.418667pt;}
.y273{bottom:962.346667pt;}
.y1d5{bottom:971.400000pt;}
.y107{bottom:972.744000pt;}
.y44{bottom:976.274667pt;}
.y242{bottom:978.750667pt;}
.y106{bottom:979.053333pt;}
.y272{bottom:979.369333pt;}
.y16{bottom:980.232000pt;}
.y1d4{bottom:993.954667pt;}
.y43{bottom:994.845333pt;}
.y241{bottom:996.082667pt;}
.y271{bottom:996.392000pt;}
.y42{bottom:1013.414667pt;}
.y105{bottom:1014.732000pt;}
.y41{bottom:1066.841333pt;}
.h6{height:28.947524pt;}
.h14{height:29.499005pt;}
.h10{height:30.732706pt;}
.h2{height:33.771789pt;}
.h13{height:35.052646pt;}
.hc{height:36.666735pt;}
.hb{height:36.873667pt;}
.h8{height:38.415786pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.hd{height:43.421286pt;}
.h16{height:44.622909pt;}
.ha{height:46.099251pt;}
.h9{height:48.245551pt;}
.h5{height:48.486756pt;}
.hf{height:55.970039pt;}
.he{height:55.975372pt;}
.h12{height:63.833871pt;}
.h15{height:63.839204pt;}
.h4{height:69.148877pt;}
.h11{height:89.076538pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.x54{left:56.121333pt;}
.xa6{left:57.120000pt;}
.x55{left:58.182667pt;}
.x72{left:59.984000pt;}
.x56{left:61.598667pt;}
.x74{left:63.129333pt;}
.x36{left:65.078667pt;}
.x71{left:66.381333pt;}
.x73{left:67.640000pt;}
.x70{left:68.569333pt;}
.x57{left:70.694667pt;}
.x9a{left:73.170667pt;}
.xad{left:74.542667pt;}
.x6f{left:76.029333pt;}
.x35{left:78.196000pt;}
.x52{left:80.758667pt;}
.x4e{left:81.650667pt;}
.x8b{left:83.038667pt;}
.x53{left:84.286667pt;}
.x83{left:89.536000pt;}
.xa9{left:94.434667pt;}
.x8c{left:96.874667pt;}
.x99{left:99.616000pt;}
.x2f{left:118.398667pt;}
.x2e{left:140.376000pt;}
.x59{left:184.481333pt;}
.x85{left:186.400000pt;}
.x84{left:189.396000pt;}
.x96{left:191.633333pt;}
.x58{left:193.062667pt;}
.x8d{left:194.422667pt;}
.xaa{left:198.269333pt;}
.x9b{left:200.336000pt;}
.x5a{left:201.988000pt;}
.x93{left:203.869333pt;}
.x38{left:219.865333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x4{left:239.924000pt;}
.x37{left:249.236000pt;}
.x6{left:250.204000pt;}
.x26{left:252.192000pt;}
.x2b{left:258.026667pt;}
.x27{left:265.476000pt;}
.x5b{left:266.669333pt;}
.xb3{left:270.929333pt;}
.x28{left:272.144000pt;}
.xb4{left:274.113333pt;}
.x8e{left:276.169333pt;}
.x86{left:282.874667pt;}
.x29{left:285.428000pt;}
.x5c{left:287.221333pt;}
.xb5{left:290.181333pt;}
.x4c{left:293.236000pt;}
.xd8{left:297.214667pt;}
.xb6{left:303.066667pt;}
.xc7{left:304.990667pt;}
.x4d{left:306.518667pt;}
.xb7{left:309.638667pt;}
.xdf{left:316.802667pt;}
.xc8{left:318.274667pt;}
.xdd{left:321.474667pt;}
.xb8{left:322.522667pt;}
.x30{left:325.876000pt;}
.xb9{left:328.866667pt;}
.xb2{left:333.264000pt;}
.xde{left:334.358667pt;}
.x9{left:335.617333pt;}
.xe7{left:338.285333pt;}
.xd9{left:339.228000pt;}
.xa{left:342.258667pt;}
.xe9{left:343.801333pt;}
.x4f{left:345.537333pt;}
.xe3{left:347.576000pt;}
.xb{left:349.033333pt;}
.xe8{left:351.569333pt;}
.x3b{left:354.257333pt;}
.xc{left:355.674667pt;}
.xea{left:357.084000pt;}
.xe4{left:360.860000pt;}
.xbd{left:364.012000pt;}
.x41{left:365.970667pt;}
.x3c{left:367.540000pt;}
.x3d{left:374.169333pt;}
.xbe{left:377.296000pt;}
.x42{left:379.254667pt;}
.xbf{left:380.549333pt;}
.x43{left:382.641333pt;}
.xda{left:385.013333pt;}
.x3e{left:387.452000pt;}
.xc0{left:393.833333pt;}
.x44{left:395.925333pt;}
.xc1{left:397.088000pt;}
.xdb{left:398.297333pt;}
.x45{left:399.312000pt;}
.xc4{left:401.498667pt;}
.xd1{left:402.568000pt;}
.x63{left:406.298667pt;}
.x60{left:408.265333pt;}
.x75{left:409.684000pt;}
.x5d{left:411.645333pt;}
.x46{left:412.596000pt;}
.x1b{left:414.418667pt;}
.xa2{left:415.428000pt;}
.x61{left:416.384000pt;}
.x5e{left:417.468000pt;}
.x76{left:418.828000pt;}
.x9c{left:420.024000pt;}
.xae{left:421.049333pt;}
.x87{left:423.036000pt;}
.xab{left:423.956000pt;}
.x1c{left:425.344000pt;}
.x5f{left:427.350667pt;}
.x88{left:428.514667pt;}
.x98{left:429.593333pt;}
.x62{left:430.709333pt;}
.xdc{left:431.638667pt;}
.x64{left:434.550667pt;}
.xaf{left:435.474667pt;}
.xcb{left:437.168000pt;}
.xa7{left:439.698667pt;}
.x97{left:441.022667pt;}
.xe0{left:442.905333pt;}
.xb0{left:443.949333pt;}
.x2c{left:445.985333pt;}
.xba{left:448.600000pt;}
.xcc{left:450.452000pt;}
.xc5{left:454.857333pt;}
.x32{left:456.174667pt;}
.xeb{left:457.793333pt;}
.x2d{left:459.269333pt;}
.xe5{left:460.244000pt;}
.x7{left:462.972000pt;}
.xc9{left:464.434667pt;}
.x39{left:466.050667pt;}
.x8{left:469.613333pt;}
.xe6{left:473.528000pt;}
.xca{left:477.717333pt;}
.x3a{left:479.334667pt;}
.x1d{left:480.297333pt;}
.x1e{left:484.301333pt;}
.xbb{left:485.757333pt;}
.x1f{left:492.197333pt;}
.x31{left:493.288000pt;}
.xd4{left:494.965333pt;}
.xbc{left:496.684000pt;}
.x20{left:506.213333pt;}
.xd5{left:508.249333pt;}
.xec{left:509.184000pt;}
.x50{left:515.554667pt;}
.x66{left:516.532000pt;}
.xa3{left:517.434667pt;}
.x8f{left:519.172000pt;}
.x65{left:521.016000pt;}
.x9d{left:522.509333pt;}
.x89{left:523.678667pt;}
.x78{left:524.704000pt;}
.x67{left:526.085333pt;}
.x94{left:527.466667pt;}
.x21{left:528.925333pt;}
.x77{left:531.074667pt;}
.x7d{left:532.290667pt;}
.x68{left:533.618667pt;}
.xac{left:534.910667pt;}
.x17{left:535.990667pt;}
.x7a{left:537.354667pt;}
.x9f{left:538.932000pt;}
.x22{left:539.852000pt;}
.x79{left:542.445333pt;}
.x91{left:543.768000pt;}
.x95{left:544.697333pt;}
.x7b{left:546.010667pt;}
.x7c{left:548.348000pt;}
.x18{left:549.274667pt;}
.x90{left:550.952000pt;}
.x19{left:552.661333pt;}
.x9e{left:557.773333pt;}
.x1a{left:565.945333pt;}
.xc2{left:574.229333pt;}
.x3f{left:580.036000pt;}
.xcf{left:582.808000pt;}
.xc3{left:585.154667pt;}
.x11{left:587.273333pt;}
.x92{left:590.564000pt;}
.x23{left:592.134667pt;}
.x12{left:593.914667pt;}
.xd0{left:596.092000pt;}
.x13{left:597.276000pt;}
.x24{left:600.030667pt;}
.xe1{left:603.024000pt;}
.x14{left:603.917333pt;}
.x47{left:604.985333pt;}
.x15{left:610.638667pt;}
.xe2{left:616.308000pt;}
.x25{left:617.369333pt;}
.x48{left:618.268000pt;}
.x49{left:621.656000pt;}
.x16{left:623.922667pt;}
.x34{left:630.596000pt;}
.x4a{left:634.940000pt;}
.xa8{left:644.022667pt;}
.x6b{left:645.084000pt;}
.x80{left:646.312000pt;}
.x6c{left:647.682667pt;}
.x7f{left:649.133333pt;}
.x81{left:650.557333pt;}
.x6d{left:652.560000pt;}
.x8a{left:654.409333pt;}
.xa4{left:655.541333pt;}
.x33{left:657.376000pt;}
.x7e{left:658.676000pt;}
.x51{left:660.589333pt;}
.x69{left:661.949333pt;}
.x4b{left:663.304000pt;}
.x6e{left:665.908000pt;}
.xb1{left:666.944000pt;}
.x82{left:668.877333pt;}
.xa5{left:669.797333pt;}
.x6a{left:671.540000pt;}
.xa1{left:674.484000pt;}
.xa0{left:680.472000pt;}
.xc6{left:684.217333pt;}
.xd2{left:686.630667pt;}
.xd6{left:698.226667pt;}
.xd3{left:699.914667pt;}
.xd7{left:711.510667pt;}
.xd{left:723.714667pt;}
.x2a{left:727.152000pt;}
.xcd{left:728.082667pt;}
.xe{left:730.356000pt;}
.xf{left:733.646667pt;}
.x10{left:740.289333pt;}
.xce{left:741.365333pt;}
.x40{left:744.046667pt;}
}




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