
    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_b8f4490c38e049ae0ad42f50.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_4853ae0d1dd00cb22fb42c29.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_6fd4e6a246b0d3970f4019d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_fb473f080f3bd80b4c033cd8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_bf866ac3c57393e464f4c50c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_01e22e580427970cce207142.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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;}
.m2{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);}
.m26{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);}
.m27{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);}
.m6{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);}
.m20{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);}
.m14{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);}
.m16{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);}
.m21{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m10{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);}
.m8{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);}
.m9{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);}
.ma{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);}
.m12{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);}
.m1b{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);}
.m19{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);}
.m24{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);}
.m23{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);}
.m15{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);}
.m1c{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);}
.m1a{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);}
.md{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);}
.m5{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);}
.m18{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.me{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);}
.m11{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);}
.m22{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);}
.m1d{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.mf{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:8.705462px;}
.ls3{letter-spacing:23.236383px;}
.ls7{letter-spacing:29.061842px;}
.ls2{letter-spacing:30.305480px;}
.ls5{letter-spacing:31.090935px;}
.ls1{letter-spacing:32.727300px;}
.ls4{letter-spacing:35.214575px;}
.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;}
}
.ws5{word-spacing:-49.483678px;}
.wsc{word-spacing:-45.621856px;}
.wsb{word-spacing:-39.796397px;}
.ws14{word-spacing:-37.636395px;}
.ws20{word-spacing:-33.453846px;}
.wsd{word-spacing:-32.727300px;}
.wscf{word-spacing:-26.282700px;}
.wscd{word-spacing:-25.290900px;}
.ws4e{word-spacing:-22.811400px;}
.ws0{word-spacing:-22.687425px;}
.wsce{word-spacing:-21.943575px;}
.ws2b{word-spacing:-21.861836px;}
.ws85{word-spacing:-20.290926px;}
.ws39{word-spacing:-17.869106px;}
.ws98{word-spacing:-17.803651px;}
.ws64{word-spacing:-17.607287px;}
.ws37{word-spacing:-16.690923px;}
.wsaf{word-spacing:-16.625468px;}
.ws2e{word-spacing:-16.167286px;}
.ws6c{word-spacing:-16.101832px;}
.ws21{word-spacing:-16.036377px;}
.ws25{word-spacing:-15.840013px;}
.ws13{word-spacing:-15.838205px;}
.ws68{word-spacing:-15.752128px;}
.ws15{word-spacing:-15.578195px;}
.ws5a{word-spacing:-15.316376px;}
.ws43{word-spacing:-15.250922px;}
.wsc1{word-spacing:-15.120013px;}
.ws6e{word-spacing:-14.727285px;}
.ws9e{word-spacing:-14.661830px;}
.ws3e{word-spacing:-14.537467px;}
.wsbf{word-spacing:-14.465467px;}
.ws16{word-spacing:-14.400012px;}
.wsab{word-spacing:-14.334557px;}
.ws9f{word-spacing:-14.269103px;}
.ws1a{word-spacing:-14.203648px;}
.ws4b{word-spacing:-14.007284px;}
.ws5c{word-spacing:-13.941830px;}
.ws9a{word-spacing:-13.680011px;}
.ws52{word-spacing:-13.418193px;}
.ws67{word-spacing:-13.352738px;}
.ws5d{word-spacing:-13.198541px;}
.wsba{word-spacing:-13.162920px;}
.ws96{word-spacing:-13.156375px;}
.ws57{word-spacing:-13.126810px;}
.ws9d{word-spacing:-13.090920px;}
.ws33{word-spacing:-12.960011px;}
.ws8c{word-spacing:-12.632738px;}
.ws8a{word-spacing:-12.567283px;}
.ws86{word-spacing:-12.501829px;}
.ws59{word-spacing:-12.436374px;}
.wsad{word-spacing:-12.370919px;}
.ws84{word-spacing:-12.240010px;}
.ws6f{word-spacing:-12.174556px;}
.ws4{word-spacing:-12.043646px;}
.ws7{word-spacing:-11.978192px;}
.ws3d{word-spacing:-11.912737px;}
.ws5b{word-spacing:-11.847283px;}
.ws2d{word-spacing:-11.781828px;}
.ws99{word-spacing:-11.716373px;}
.ws4d{word-spacing:-11.585464px;}
.ws54{word-spacing:-11.520010px;}
.wsa1{word-spacing:-11.454555px;}
.ws44{word-spacing:-11.389100px;}
.ws30{word-spacing:-11.323646px;}
.ws34{word-spacing:-11.258191px;}
.ws41{word-spacing:-11.192737px;}
.ws22{word-spacing:-11.127282px;}
.ws1c{word-spacing:-11.061827px;}
.ws26{word-spacing:-10.996373px;}
.ws10{word-spacing:-10.930918px;}
.wsf{word-spacing:-10.865464px;}
.ws4c{word-spacing:-10.800009px;}
.wsc2{word-spacing:-10.741100px;}
.ws32{word-spacing:-10.734554px;}
.ws35{word-spacing:-10.669100px;}
.ws31{word-spacing:-10.603645px;}
.ws4a{word-spacing:-10.538191px;}
.wsc0{word-spacing:-10.479281px;}
.ws5f{word-spacing:-10.472736px;}
.wsae{word-spacing:-10.407281px;}
.wsc3{word-spacing:-10.348372px;}
.ws1d{word-spacing:-10.217463px;}
.ws3a{word-spacing:-10.145463px;}
.ws19{word-spacing:-10.086554px;}
.ws71{word-spacing:-10.080008px;}
.ws2a{word-spacing:-10.021099px;}
.wsa6{word-spacing:-10.014554px;}
.ws70{word-spacing:-9.949099px;}
.ws8d{word-spacing:-9.883645px;}
.wsb4{word-spacing:-9.824735px;}
.ws51{word-spacing:-9.687281px;}
.ws5e{word-spacing:-9.621826px;}
.ws8e{word-spacing:-9.490917px;}
.ws82{word-spacing:-9.425462px;}
.ws36{word-spacing:-9.360008px;}
.ws1b{word-spacing:-9.294553px;}
.ws27{word-spacing:-9.163644px;}
.ws1e{word-spacing:-9.104735px;}
.ws55{word-spacing:-9.098189px;}
.wsb0{word-spacing:-9.032735px;}
.ws49{word-spacing:-8.967280px;}
.wsb2{word-spacing:-8.901826px;}
.wsb7{word-spacing:-8.705462px;}
.ws63{word-spacing:-8.640007px;}
.ws29{word-spacing:-8.574553px;}
.ws28{word-spacing:-8.515643px;}
.wsb1{word-spacing:-8.509098px;}
.ws23{word-spacing:-8.450189px;}
.wsa3{word-spacing:-8.378189px;}
.ws6b{word-spacing:-8.312734px;}
.ws24{word-spacing:-8.253825px;}
.ws46{word-spacing:-8.247280px;}
.ws7c{word-spacing:-8.181825px;}
.wsb6{word-spacing:-8.057461px;}
.ws45{word-spacing:-8.050916px;}
.ws6d{word-spacing:-7.985461px;}
.ws58{word-spacing:-7.920007px;}
.wsbe{word-spacing:-7.854552px;}
.ws42{word-spacing:-7.592734px;}
.ws87{word-spacing:-7.527279px;}
.ws73{word-spacing:-7.461824px;}
.wsb5{word-spacing:-7.402915px;}
.ws89{word-spacing:-7.396370px;}
.wsb3{word-spacing:-7.330915px;}
.ws88{word-spacing:-7.134551px;}
.wsbb{word-spacing:-7.075642px;}
.ws79{word-spacing:-7.069097px;}
.ws8b{word-spacing:-7.003642px;}
.ws56{word-spacing:-6.872733px;}
.ws50{word-spacing:-6.807278px;}
.ws62{word-spacing:-6.741824px;}
.ws83{word-spacing:-6.676369px;}
.ws61{word-spacing:-6.545460px;}
.ws3f{word-spacing:-6.414551px;}
.ws94{word-spacing:-6.349096px;}
.ws65{word-spacing:-6.152732px;}
.ws2f{word-spacing:-6.021823px;}
.wscc{word-spacing:-5.956369px;}
.ws2c{word-spacing:-5.890914px;}
.ws38{word-spacing:-5.432732px;}
.ws66{word-spacing:-5.236368px;}
.ws92{word-spacing:-5.105459px;}
.ws1f{word-spacing:-4.909095px;}
.ws3b{word-spacing:-4.712731px;}
.ws9b{word-spacing:-4.647277px;}
.wsb8{word-spacing:-4.450913px;}
.wsc9{word-spacing:-4.320004px;}
.ws9c{word-spacing:-3.992731px;}
.wsb9{word-spacing:-3.927276px;}
.wsbd{word-spacing:-3.730912px;}
.wsa0{word-spacing:-3.665458px;}
.wsa9{word-spacing:-3.534548px;}
.wsac{word-spacing:-3.207275px;}
.ws7a{word-spacing:-2.880002px;}
.ws60{word-spacing:-2.814548px;}
.ws3c{word-spacing:-2.618184px;}
.ws40{word-spacing:-2.160002px;}
.wsa5{word-spacing:-2.094547px;}
.ws72{word-spacing:-1.767274px;}
.ws76{word-spacing:-1.374547px;}
.ws75{word-spacing:-1.309092px;}
.ws97{word-spacing:-1.178183px;}
.ws80{word-spacing:-0.981819px;}
.ws7b{word-spacing:-0.654546px;}
.ws2{word-spacing:0.000000px;}
.wsc7{word-spacing:0.196364px;}
.ws8f{word-spacing:0.589091px;}
.ws77{word-spacing:1.047274px;}
.wsbc{word-spacing:1.243637px;}
.wsca{word-spacing:1.374547px;}
.ws93{word-spacing:1.963638px;}
.ws81{word-spacing:2.290911px;}
.ws95{word-spacing:2.356366px;}
.ws90{word-spacing:2.421820px;}
.ws91{word-spacing:2.487275px;}
.ws69{word-spacing:2.814548px;}
.ws74{word-spacing:2.945457px;}
.ws7f{word-spacing:3.076366px;}
.wscb{word-spacing:3.665458px;}
.ws6a{word-spacing:3.796367px;}
.ws53{word-spacing:4.189094px;}
.wsa7{word-spacing:4.320004px;}
.wsa8{word-spacing:4.385458px;}
.wsc6{word-spacing:4.974550px;}
.wsa2{word-spacing:5.367277px;}
.wsa4{word-spacing:5.563641px;}
.wsc4{word-spacing:6.087278px;}
.ws6{word-spacing:6.218187px;}
.wsc5{word-spacing:7.069097px;}
.wsaa{word-spacing:7.527279px;}
.wsc8{word-spacing:9.032735px;}
.ws17{word-spacing:12.436374px;}
.ws18{word-spacing:17.345469px;}
.ws1{word-spacing:27.975090px;}
.ws4f{word-spacing:28.930933px;}
.ws7e{word-spacing:43.003672px;}
.ws7d{word-spacing:43.789127px;}
.ws11{word-spacing:58.516412px;}
.ws47{word-spacing:61.069142px;}
.wse{word-spacing:108.261908px;}
.ws78{word-spacing:118.407371px;}
.ws12{word-spacing:154.407401px;}
.ws48{word-spacing:193.483798px;}
.ws9{word-spacing:1883.194297px;}
.ws8{word-spacing:2004.743489px;}
.wsa{word-spacing:2058.481715px;}
.ws3{word-spacing:2137.971546px;}
._1d{margin-left:-34.494574px;}
._9{margin-left:-32.727300px;}
._1e{margin-left:-30.960026px;}
._23{margin-left:-11.258191px;}
._4{margin-left:-7.513016px;}
._2c{margin-left:-5.432732px;}
._0{margin-left:-3.843225px;}
._3{margin-left:-2.238007px;}
._21{margin-left:-1.034723px;}
._12{width:1.275919px;}
._5{width:2.324084px;}
._1{width:3.967200px;}
._60{width:5.014228px;}
._20{width:6.218187px;}
._18{width:9.098189px;}
._3b{width:10.153102px;}
._3c{width:11.250552px;}
._3a{width:13.856645px;}
._39{width:17.063920px;}
._40{width:18.773812px;}
._1a{width:20.160017px;}
._f{width:21.861836px;}
._38{width:23.085743px;}
._37{width:24.246464px;}
._19{width:25.592749px;}
._24{width:27.032750px;}
._3f{width:28.268315px;}
._a{width:29.454570px;}
._3d{width:30.894571px;}
._7{width:32.007299px;}
._51{width:33.852579px;}
._10{width:35.619853px;}
._25{width:36.980282px;}
._2b{width:38.160032px;}
._13{width:39.796397px;}
._6{width:42.218217px;}
._1b{width:43.357181px;}
._67{width:45.405762px;}
._36{width:47.342460px;}
._e{width:48.698222px;}
._63{width:51.362131px;}
._61{width:52.494589px;}
._5d{width:53.534683px;}
._3e{width:55.485770px;}
._52{width:57.299011px;}
._b{width:58.320049px;}
._5f{width:59.327861px;}
._32{width:60.623775px;}
._6a{width:61.863525px;}
._69{width:63.353548px;}
._26{width:66.657884px;}
._31{width:68.186250px;}
._62{width:69.210614px;}
._53{width:71.750792px;}
._2{width:73.363822px;}
._65{width:76.019918px;}
._68{width:77.191596px;}
._64{width:78.321354px;}
._66{width:80.882588px;}
._11{width:91.047349px;}
._46{width:105.329002px;}
._4f{width:119.585554px;}
._43{width:124.756468px;}
._44{width:136.211023px;}
._5e{width:137.663575px;}
._42{width:142.691028px;}
._4d{width:148.320124px;}
._45{width:153.687401px;}
._47{width:155.912857px;}
._2e{width:175.680146px;}
._30{width:195.512890px;}
._49{width:199.243802px;}
._50{width:202.254714px;}
._35{width:209.781993px;}
._2d{width:214.266079px;}
._57{width:215.509717px;}
._41{width:219.502447px;}
._5b{width:235.374742px;}
._4c{width:237.731107px;}
._2f{width:239.694745px;}
._5a{width:259.409131px;}
._5c{width:264.436584px;}
._48{width:265.876585px;}
._56{width:268.036587px;}
._55{width:275.171138px;}
._58{width:280.800234px;}
._59{width:295.540070px;}
._4b{width:310.385713px;}
._54{width:314.215253px;}
._4a{width:334.080278px;}
._4e{width:361.309392px;}
._33{width:587.598495px;}
._34{width:776.422465px;}
._29{width:908.490118px;}
._2a{width:964.368616px;}
._27{width:1001.370195px;}
._28{width:1083.343564px;}
._8{width:1410.886454px;}
._22{width:1415.652089px;}
._14{width:1477.453782px;}
._16{width:1667.632568px;}
._c{width:1858.203190px;}
._17{width:1871.249278px;}
._1f{width:1909.663057px;}
._1c{width:2022.821509px;}
._d{width:2041.672434px;}
._15{width:2085.940366px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:175.056000px;}
.ybd{bottom:246.190500px;}
.y6f{bottom:247.479000px;}
.y183{bottom:248.581500px;}
.y231{bottom:251.205000px;}
.y12a{bottom:259.242000px;}
.y1e{bottom:259.804500px;}
.y1f9{bottom:262.737000px;}
.y214{bottom:263.926500px;}
.ybc{bottom:266.514000px;}
.y6e{bottom:267.802500px;}
.y182{bottom:268.905000px;}
.y4a{bottom:269.311500px;}
.y230{bottom:271.528500px;}
.ye1{bottom:275.010000px;}
.y10b{bottom:278.097000px;}
.y129{bottom:279.565500px;}
.y1d{bottom:280.128000px;}
.y1f8{bottom:283.060500px;}
.y213{bottom:284.250000px;}
.y144{bottom:286.690500px;}
.ybb{bottom:286.837500px;}
.y6d{bottom:288.126000px;}
.y181{bottom:289.228500px;}
.y49{bottom:289.635000px;}
.ye0{bottom:295.333500px;}
.y10a{bottom:298.420500px;}
.y161{bottom:299.292000px;}
.y1c{bottom:300.451500px;}
.y22f{bottom:303.060000px;}
.ycb{bottom:303.609000px;}
.y143{bottom:307.014000px;}
.yba{bottom:307.161000px;}
.y6c{bottom:308.451000px;}
.y180{bottom:309.552000px;}
.y128{bottom:310.051500px;}
.y1f7{bottom:314.592000px;}
.y1de{bottom:315.619500px;}
.ydf{bottom:315.657000px;}
.y109{bottom:318.744000px;}
.y212{bottom:319.218000px;}
.y1b{bottom:320.775000px;}
.y1cb{bottom:321.298500px;}
.yca{bottom:323.932500px;}
.y142{bottom:327.337500px;}
.y17f{bottom:329.875500px;}
.y127{bottom:330.375000px;}
.y22e{bottom:334.591500px;}
.y1dd{bottom:335.943000px;}
.yde{bottom:335.980500px;}
.y48{bottom:336.325500px;}
.y6b{bottom:336.984000px;}
.y108{bottom:339.067500px;}
.y160{bottom:340.345500px;}
.y1ca{bottom:341.622000px;}
.yc9{bottom:344.256000px;}
.y1f6{bottom:346.123500px;}
.y141{bottom:347.662500px;}
.y19e{bottom:348.028500px;}
.yb9{bottom:348.214500px;}
.y211{bottom:349.704000px;}
.y126{bottom:350.700000px;}
.y22d{bottom:354.916500px;}
.y1dc{bottom:356.266500px;}
.y1a{bottom:357.462000px;}
.y107{bottom:359.391000px;}
.y17e{bottom:360.361500px;}
.y6a{bottom:363.187500px;}
.yc8{bottom:364.579500px;}
.y140{bottom:367.986000px;}
.y19d{bottom:368.352000px;}
.y125{bottom:371.023500px;}
.y1c9{bottom:372.108000px;}
.y1db{bottom:376.590000px;}
.ydd{bottom:377.034000px;}
.y106{bottom:379.716000px;}
.y210{bottom:380.190000px;}
.y17d{bottom:380.685000px;}
.y69{bottom:383.511000px;}
.yc7{bottom:384.903000px;}
.y22c{bottom:386.448000px;}
.y13f{bottom:388.309500px;}
.y9f{bottom:388.551000px;}
.y19c{bottom:388.675500px;}
.y124{bottom:391.347000px;}
.y1c8{bottom:392.431500px;}
.y1f5{bottom:392.814000px;}
.y15f{bottom:393.729000px;}
.y19{bottom:394.150500px;}
.y1da{bottom:396.915000px;}
.y47{bottom:398.044500px;}
.y17c{bottom:401.010000px;}
.yb8{bottom:401.185500px;}
.yc6{bottom:405.228000px;}
.y13e{bottom:408.633000px;}
.y9e{bottom:408.874500px;}
.y19b{bottom:408.999000px;}
.y105{bottom:410.200500px;}
.y20f{bottom:410.676000px;}
.y123{bottom:411.670500px;}
.y15e{bottom:414.052500px;}
.y46{bottom:418.369500px;}
.y17b{bottom:421.333500px;}
.yb7{bottom:421.510500px;}
.yc5{bottom:425.551500px;}
.y1c7{bottom:427.399500px;}
.y9d{bottom:429.198000px;}
.y19a{bottom:429.322500px;}
.y104{bottom:430.525500px;}
.y18{bottom:430.837500px;}
.y20e{bottom:430.999500px;}
.ydc{bottom:431.016000px;}
.y122{bottom:431.994000px;}
.y68{bottom:433.078500px;}
.y22b{bottom:433.137000px;}
.y15d{bottom:434.376000px;}
.y4{bottom:434.581500px;}
.y45{bottom:438.693000px;}
.ye2{bottom:441.121500px;}
.y17a{bottom:441.657000px;}
.yb6{bottom:441.834000px;}
.ye3{bottom:442.281000px;}
.y1d9{bottom:447.724500px;}
.y9c{bottom:449.521500px;}
.y199{bottom:449.646000px;}
.y103{bottom:450.849000px;}
.ydb{bottom:451.339500px;}
.y121{bottom:452.319000px;}
.y67{bottom:453.402000px;}
.y1f4{bottom:454.533000px;}
.y20d{bottom:461.485500px;}
.y1c6{bottom:462.369000px;}
.y15c{bottom:464.862000px;}
.yc4{bottom:466.605000px;}
.y13d{bottom:467.268000px;}
.y17{bottom:467.524500px;}
.y1d8{bottom:468.048000px;}
.y44{bottom:469.179000px;}
.y9b{bottom:469.845000px;}
.y198{bottom:469.971000px;}
.y102{bottom:471.172500px;}
.yda{bottom:471.663000px;}
.y1f3{bottom:474.856500px;}
.y179{bottom:476.625000px;}
.y20c{bottom:481.809000px;}
.y1c5{bottom:482.692500px;}
.yb5{bottom:482.887500px;}
.y66{bottom:483.888000px;}
.y15b{bottom:485.185500px;}
.y120{bottom:487.287000px;}
.y13c{bottom:487.591500px;}
.y1d7{bottom:488.371500px;}
.y43{bottom:489.502500px;}
.y9a{bottom:490.170000px;}
.y101{bottom:491.496000px;}
.yd9{bottom:491.986500px;}
.y22a{bottom:494.857500px;}
.y1f2{bottom:495.181500px;}
.y1c4{bottom:503.016000px;}
.y65{bottom:504.211500px;}
.y16{bottom:504.213000px;}
.y15a{bottom:505.510500px;}
.y178{bottom:507.111000px;}
.y13b{bottom:507.915000px;}
.y42{bottom:509.826000px;}
.y99{bottom:510.493500px;}
.y197{bottom:511.024500px;}
.y20b{bottom:512.295000px;}
.yd8{bottom:512.310000px;}
.y229{bottom:515.181000px;}
.y11f{bottom:517.773000px;}
.y1d6{bottom:518.857500px;}
.yc3{bottom:520.585500px;}
.y100{bottom:521.982000px;}
.y1c3{bottom:523.341000px;}
.y15{bottom:524.536500px;}
.y159{bottom:525.834000px;}
.y177{bottom:527.434500px;}
.y13a{bottom:528.240000px;}
.y1f1{bottom:530.149500px;}
.y98{bottom:530.817000px;}
.y228{bottom:535.504500px;}
.yb4{bottom:535.858500px;}
.y11e{bottom:538.096500px;}
.y1d5{bottom:539.181000px;}
.y41{bottom:540.312000px;}
.yc2{bottom:540.909000px;}
.y1c2{bottom:543.664500px;}
.y14{bottom:544.860000px;}
.y158{bottom:546.157500px;}
.y139{bottom:548.563500px;}
.y1f0{bottom:550.473000px;}
.y97{bottom:551.140500px;}
.yd7{bottom:553.365000px;}
.y1ac{bottom:556.015500px;}
.yb3{bottom:556.182000px;}
.y176{bottom:557.920500px;}
.y11d{bottom:558.420000px;}
.y20a{bottom:558.984000px;}
.y1d4{bottom:559.504500px;}
.y40{bottom:560.635500px;}
.yc1{bottom:561.232500px;}
.yff{bottom:563.035500px;}
.y196{bottom:564.408000px;}
.y64{bottom:565.183500px;}
.y227{bottom:565.990500px;}
.y157{bottom:566.481000px;}
.y138{bottom:568.887000px;}
.y96{bottom:571.464000px;}
.y1c1{bottom:574.150500px;}
.y1ab{bottom:576.339000px;}
.yb2{bottom:576.507000px;}
.y175{bottom:578.244000px;}
.y3f{bottom:580.959000px;}
.y13{bottom:581.547000px;}
.y195{bottom:584.731500px;}
.y1ef{bottom:585.442500px;}
.y63{bottom:585.507000px;}
.y226{bottom:586.314000px;}
.y11c{bottom:588.906000px;}
.y137{bottom:589.210500px;}
.y87{bottom:589.990500px;}
.y95{bottom:591.789000px;}
.y1c0{bottom:594.474000px;}
.yb1{bottom:596.830500px;}
.y156{bottom:596.967000px;}
.yf3{bottom:597.666000px;}
.y12{bottom:601.870500px;}
.yc0{bottom:602.287500px;}
.y194{bottom:605.055000px;}
.y62{bottom:605.830500px;}
.yd6{bottom:607.345500px;}
.y174{bottom:608.730000px;}
.y136{bottom:609.534000px;}
.y86{bottom:610.314000px;}
.y94{bottom:612.112500px;}
.y1bf{bottom:614.797500px;}
.y3e{bottom:615.928500px;}
.y225{bottom:616.800000px;}
.yfe{bottom:617.016000px;}
.y155{bottom:617.290500px;}
.y1aa{bottom:617.392500px;}
.y1ee{bottom:620.412000px;}
.y209{bottom:620.704500px;}
.y11{bottom:622.195500px;}
.y11b{bottom:623.875500px;}
.y61{bottom:626.155500px;}
.yd5{bottom:627.669000px;}
.y173{bottom:629.053500px;}
.y135{bottom:629.859000px;}
.y85{bottom:630.637500px;}
.y93{bottom:632.436000px;}
.y1b6{bottom:635.121000px;}
.y3d{bottom:636.252000px;}
.y224{bottom:637.123500px;}
.yfd{bottom:637.341000px;}
.y154{bottom:637.614000px;}
.yb0{bottom:637.884000px;}
.y208{bottom:641.028000px;}
.y10{bottom:642.519000px;}
.yf2{bottom:644.356500px;}
.y193{bottom:646.108500px;}
.y60{bottom:646.479000px;}
.yd4{bottom:647.992500px;}
.ybf{bottom:649.575000px;}
.y84{bottom:650.962500px;}
.y92{bottom:652.759500px;}
.y1ed{bottom:655.380000px;}
.y1b5{bottom:655.444500px;}
.y3c{bottom:656.575500px;}
.y134{bottom:658.392000px;}
.y207{bottom:661.351500px;}
.y172{bottom:664.023000px;}
.y11a{bottom:664.929000px;}
.y1cd{bottom:665.607000px;}
.y5f{bottom:666.802500px;}
.yfc{bottom:667.825500px;}
.y153{bottom:668.100000px;}
.yd3{bottom:668.316000px;}
.y83{bottom:671.286000px;}
.y1a9{bottom:671.373000px;}
.y223{bottom:672.093000px;}
.y91{bottom:673.083000px;}
.y1b4{bottom:675.769500px;}
.yf{bottom:679.206000px;}
.y206{bottom:681.675000px;}
.y171{bottom:684.346500px;}
.y133{bottom:684.595500px;}
.y1ec{bottom:685.866000px;}
.y1be{bottom:685.930500px;}
.y5e{bottom:687.126000px;}
.y3b{bottom:688.107000px;}
.y152{bottom:688.423500px;}
.yd2{bottom:688.639500px;}
.yaf{bottom:690.855000px;}
.y82{bottom:691.609500px;}
.y1a8{bottom:691.696500px;}
.y222{bottom:692.416500px;}
.y90{bottom:693.406500px;}
.y1b3{bottom:696.093000px;}
.yfb{bottom:698.311500px;}
.y192{bottom:699.492000px;}
.y1d3{bottom:701.772000px;}
.ybe{bottom:701.998500px;}
.y170{bottom:704.670000px;}
.yf1{bottom:706.075500px;}
.y1eb{bottom:706.189500px;}
.y1bd{bottom:706.254000px;}
.y5d{bottom:707.449500px;}
.y3a{bottom:708.432000px;}
.y150{bottom:708.747000px;}
.y151{bottom:708.748500px;}
.yd1{bottom:708.964500px;}
.yae{bottom:711.178500px;}
.y81{bottom:711.933000px;}
.y1a7{bottom:712.021500px;}
.y205{bottom:712.161000px;}
.y8f{bottom:713.731500px;}
.ye{bottom:715.893000px;}
.y1b2{bottom:716.416500px;}
.y119{bottom:718.909500px;}
.y191{bottom:719.815500px;}
.y1d2{bottom:722.095500px;}
.yf0{bottom:726.400500px;}
.y1ea{bottom:726.513000px;}
.y1bc{bottom:726.579000px;}
.y221{bottom:727.386000px;}
.y5c{bottom:727.774500px;}
.yfa{bottom:728.797500px;}
.yd0{bottom:729.288000px;}
.y132{bottom:730.981500px;}
.yad{bottom:731.503500px;}
.y80{bottom:732.256500px;}
.y1a6{bottom:732.345000px;}
.y8e{bottom:734.055000px;}
.y16f{bottom:735.156000px;}
.y1cc{bottom:736.740000px;}
.y39{bottom:739.963500px;}
.y190{bottom:740.139000px;}
.y1d1{bottom:742.419000px;}
.y14f{bottom:743.716500px;}
.yef{bottom:746.724000px;}
.y1e9{bottom:746.838000px;}
.y1b1{bottom:746.902500px;}
.y204{bottom:747.130500px;}
.y5b{bottom:748.098000px;}
.yf9{bottom:749.121000px;}
.y118{bottom:749.395500px;}
.ycf{bottom:749.611500px;}
.y131{bottom:751.305000px;}
.yac{bottom:751.827000px;}
.yd{bottom:752.581500px;}
.y1a5{bottom:752.668500px;}
.y8d{bottom:754.378500px;}
.y1bb{bottom:757.063500px;}
.y38{bottom:760.287000px;}
.y18f{bottom:760.462500px;}
.y220{bottom:762.354000px;}
.y1d0{bottom:762.742500px;}
.y14e{bottom:764.040000px;}
.yee{bottom:767.047500px;}
.y1b0{bottom:767.226000px;}
.y5a{bottom:768.421500px;}
.yce{bottom:769.935000px;}
.y16e{bottom:770.125500px;}
.y130{bottom:771.628500px;}
.yab{bottom:772.150500px;}
.y7f{bottom:772.905000px;}
.y8c{bottom:774.702000px;}
.y1ba{bottom:777.388500px;}
.yf8{bottom:779.607000px;}
.y117{bottom:779.881500px;}
.y37{bottom:780.610500px;}
.y1e8{bottom:781.806000px;}
.y203{bottom:782.098500px;}
.yed{bottom:787.371000px;}
.y1af{bottom:787.549500px;}
.yc{bottom:789.268500px;}
.y16d{bottom:790.449000px;}
.y18e{bottom:790.948500px;}
.y12f{bottom:791.952000px;}
.yaa{bottom:792.474000px;}
.y7e{bottom:793.228500px;}
.y1a4{bottom:793.722000px;}
.y14d{bottom:794.526000px;}
.y1e4{bottom:794.932500px;}
.y8b{bottom:795.025500px;}
.y21f{bottom:797.323500px;}
.y7a{bottom:797.712000px;}
.y36{bottom:800.934000px;}
.y59{bottom:803.391000px;}
.yec{bottom:807.694500px;}
.y1b9{bottom:807.873000px;}
.yb{bottom:809.592000px;}
.yf7{bottom:810.093000px;}
.y116{bottom:810.366000px;}
.y16c{bottom:810.772500px;}
.ycd{bottom:810.988500px;}
.y18d{bottom:811.272000px;}
.y202{bottom:812.584500px;}
.y7d{bottom:813.552000px;}
.y14c{bottom:814.849500px;}
.y1e3{bottom:815.256000px;}
.y8a{bottom:815.350500px;}
.y1e7{bottom:816.775500px;}
.y79{bottom:818.035500px;}
.y3{bottom:818.409000px;}
.y35{bottom:821.259000px;}
.y29{bottom:822.654000px;}
.y58{bottom:823.714500px;}
.yeb{bottom:828.019500px;}
.y1b8{bottom:828.198000px;}
.ya{bottom:829.915500px;}
.yf6{bottom:830.416500px;}
.y16b{bottom:831.096000px;}
.y18c{bottom:831.597000px;}
.y21e{bottom:832.291500px;}
.y12e{bottom:833.007000px;}
.ya9{bottom:833.527500px;}
.y7c{bottom:833.875500px;}
.y14b{bottom:835.173000px;}
.y1e2{bottom:835.579500px;}
.y78{bottom:838.359000px;}
.y115{bottom:840.852000px;}
.y34{bottom:841.582500px;}
.y201{bottom:843.070500px;}
.y89{bottom:843.883500px;}
.y57{bottom:844.038000px;}
.y2d{bottom:845.256000px;}
.y1a3{bottom:847.702500px;}
.yea{bottom:848.343000px;}
.y1b7{bottom:848.521500px;}
.y16a{bottom:851.421000px;}
.y1e6{bottom:851.743500px;}
.y18b{bottom:851.920500px;}
.y1cf{bottom:854.200500px;}
.y14a{bottom:855.498000px;}
.y1e1{bottom:855.903000px;}
.y77{bottom:858.682500px;}
.y28{bottom:859.341000px;}
.y114{bottom:861.175500px;}
.y200{bottom:863.394000px;}
.ycc{bottom:863.412000px;}
.y56{bottom:864.361500px;}
.yf5{bottom:865.386000px;}
.y9{bottom:866.604000px;}
.y21d{bottom:867.261000px;}
.y1a2{bottom:868.026000px;}
.ye9{bottom:868.666500px;}
.y7b{bottom:868.845000px;}
.y2{bottom:869.854500px;}
.y88{bottom:870.087000px;}
.y169{bottom:871.744500px;}
.y1e5{bottom:872.068500px;}
.y18a{bottom:872.244000px;}
.y1e0{bottom:876.228000px;}
.y33{bottom:876.550500px;}
.y76{bottom:879.007500px;}
.ya8{bottom:880.815000px;}
.y55{bottom:884.685000px;}
.y149{bottom:885.982500px;}
.y12d{bottom:886.389000px;}
.y1a1{bottom:888.351000px;}
.ye8{bottom:888.990000px;}
.y1ae{bottom:889.168500px;}
.y168{bottom:892.068000px;}
.y1ff{bottom:893.880000px;}
.y27{bottom:896.028000px;}
.y113{bottom:896.145000px;}
.y21c{bottom:897.747000px;}
.y75{bottom:899.331000px;}
.y32{bottom:900.819000px;}
.y189{bottom:902.730000px;}
.y8{bottom:903.291000px;}
.y2c{bottom:903.891000px;}
.y54{bottom:905.010000px;}
.y148{bottom:906.307500px;}
.yf4{bottom:906.439500px;}
.y12c{bottom:906.712500px;}
.y2f{bottom:907.036500px;}
.y1ad{bottom:909.492000px;}
.y167{bottom:912.391500px;}
.y1fe{bottom:914.203500px;}
.y112{bottom:916.468500px;}
.y21b{bottom:918.070500px;}
.y74{bottom:919.654500px;}
.y233{bottom:922.942500px;}
.y188{bottom:923.053500px;}
.y7{bottom:923.614500px;}
.y2b{bottom:924.214500px;}
.y1ce{bottom:925.333500px;}
.y147{bottom:926.631000px;}
.y52{bottom:927.037500px;}
.y30{bottom:929.352000px;}
.y1a0{bottom:929.404500px;}
.ye7{bottom:930.043500px;}
.y26{bottom:932.715000px;}
.y53{bottom:939.978000px;}
.y187{bottom:943.377000px;}
.y1fd{bottom:944.689500px;}
.y1{bottom:945.844500px;}
.y111{bottom:946.954500px;}
.y51{bottom:947.361000px;}
.y21a{bottom:948.556500px;}
.y31{bottom:949.675500px;}
.ya7{bottom:951.742500px;}
.y2a{bottom:952.749000px;}
.y166{bottom:953.040000px;}
.y2e{bottom:953.727000px;}
.y6{bottom:960.301500px;}
.y186{bottom:963.700500px;}
.y110{bottom:967.278000px;}
.y50{bottom:967.684500px;}
.y219{bottom:968.880000px;}
.y25{bottom:969.403500px;}
.ya6{bottom:972.066000px;}
.y19f{bottom:976.692000px;}
.y146{bottom:977.440500px;}
.y165{bottom:983.524500px;}
.ye6{bottom:984.025500px;}
.y10f{bottom:987.601500px;}
.y4f{bottom:988.008000px;}
.y232{bottom:988.486500px;}
.y1fc{bottom:991.380000px;}
.ya5{bottom:992.389500px;}
.y145{bottom:997.764000px;}
.y218{bottom:999.366000px;}
.y164{bottom:1003.849500px;}
.y185{bottom:1004.754000px;}
.y24{bottom:1006.090500px;}
.y4e{bottom:1008.331500px;}
.ya4{bottom:1012.713000px;}
.y10e{bottom:1018.087500px;}
.y163{bottom:1024.173000px;}
.ye5{bottom:1025.079000px;}
.y5{bottom:1025.847000px;}
.y4d{bottom:1028.656500px;}
.y217{bottom:1029.852000px;}
.ya3{bottom:1033.038000px;}
.y10d{bottom:1038.411000px;}
.y1df{bottom:1038.817500px;}
.y23{bottom:1042.777500px;}
.y162{bottom:1044.496500px;}
.y184{bottom:1045.809000px;}
.y73{bottom:1047.264000px;}
.y4c{bottom:1048.980000px;}
.y216{bottom:1050.175500px;}
.y1fb{bottom:1053.099000px;}
.y10c{bottom:1058.736000px;}
.y12b{bottom:1059.141000px;}
.ya2{bottom:1061.571000px;}
.y72{bottom:1067.587500px;}
.y4b{bottom:1069.303500px;}
.y1fa{bottom:1073.422500px;}
.ye4{bottom:1079.059500px;}
.y22{bottom:1079.466000px;}
.y215{bottom:1085.143500px;}
.ya1{bottom:1087.774500px;}
.y71{bottom:1087.911000px;}
.y21{bottom:1099.789500px;}
.ya0{bottom:1108.098000px;}
.y70{bottom:1116.444000px;}
.y20{bottom:1120.113000px;}
.h4{height:49.090950px;}
.h5{height:53.798400px;}
.h3{height:64.557900px;}
.h2{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:132.022500px;}
.x5{left:133.936500px;}
.x2{left:142.903500px;}
.xc{left:153.936000px;}
.x1a{left:157.209000px;}
.x6{left:158.482500px;}
.xe{left:172.932000px;}
.x1{left:174.291000px;}
.x1e{left:180.342000px;}
.x1c{left:183.181500px;}
.x1d{left:185.076000px;}
.xf{left:193.255500px;}
.x17{left:197.706000px;}
.x18{left:207.615000px;}
.x1b{left:210.846000px;}
.x11{left:214.395000px;}
.x12{left:226.099500px;}
.x8{left:241.117500px;}
.x16{left:244.434000px;}
.x15{left:261.933000px;}
.x14{left:301.315500px;}
.x4{left:303.208500px;}
.x9{left:386.523000px;}
.x3{left:397.291500px;}
.x19{left:415.281000px;}
.x13{left:438.274500px;}
.x7{left:442.366500px;}
.xa{left:499.650000px;}
.xd{left:575.121000px;}
.xb{left:613.629000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:7.738188pt;}
.ls3{letter-spacing:20.654563pt;}
.ls7{letter-spacing:25.832749pt;}
.ls2{letter-spacing:26.938204pt;}
.ls5{letter-spacing:27.636387pt;}
.ls1{letter-spacing:29.090933pt;}
.ls4{letter-spacing:31.301844pt;}
.ws5{word-spacing:-43.985491pt;}
.wsc{word-spacing:-40.552761pt;}
.wsb{word-spacing:-35.374575pt;}
.ws14{word-spacing:-33.454573pt;}
.ws20{word-spacing:-29.736752pt;}
.wsd{word-spacing:-29.090933pt;}
.wscf{word-spacing:-23.362400pt;}
.wscd{word-spacing:-22.480800pt;}
.ws4e{word-spacing:-20.276800pt;}
.ws0{word-spacing:-20.166600pt;}
.wsce{word-spacing:-19.505400pt;}
.ws2b{word-spacing:-19.432743pt;}
.ws85{word-spacing:-18.036379pt;}
.ws39{word-spacing:-15.883650pt;}
.ws98{word-spacing:-15.825468pt;}
.ws64{word-spacing:-15.650922pt;}
.ws37{word-spacing:-14.836376pt;}
.wsaf{word-spacing:-14.778194pt;}
.ws2e{word-spacing:-14.370921pt;}
.ws6c{word-spacing:-14.312739pt;}
.ws21{word-spacing:-14.254557pt;}
.ws25{word-spacing:-14.080012pt;}
.ws13{word-spacing:-14.078404pt;}
.ws68{word-spacing:-14.001891pt;}
.ws15{word-spacing:-13.847284pt;}
.ws5a{word-spacing:-13.614557pt;}
.ws43{word-spacing:-13.556375pt;}
.wsc1{word-spacing:-13.440011pt;}
.ws6e{word-spacing:-13.090920pt;}
.ws9e{word-spacing:-13.032738pt;}
.ws3e{word-spacing:-12.922193pt;}
.wsbf{word-spacing:-12.858193pt;}
.ws16{word-spacing:-12.800011pt;}
.wsab{word-spacing:-12.741829pt;}
.ws9f{word-spacing:-12.683647pt;}
.ws1a{word-spacing:-12.625465pt;}
.ws4b{word-spacing:-12.450919pt;}
.ws5c{word-spacing:-12.392738pt;}
.ws9a{word-spacing:-12.160010pt;}
.ws52{word-spacing:-11.927283pt;}
.ws67{word-spacing:-11.869101pt;}
.ws5d{word-spacing:-11.732036pt;}
.wsba{word-spacing:-11.700373pt;}
.ws96{word-spacing:-11.694555pt;}
.ws57{word-spacing:-11.668275pt;}
.ws9d{word-spacing:-11.636373pt;}
.ws33{word-spacing:-11.520010pt;}
.ws8c{word-spacing:-11.229100pt;}
.ws8a{word-spacing:-11.170918pt;}
.ws86{word-spacing:-11.112737pt;}
.ws59{word-spacing:-11.054555pt;}
.wsad{word-spacing:-10.996373pt;}
.ws84{word-spacing:-10.880009pt;}
.ws6f{word-spacing:-10.821827pt;}
.ws4{word-spacing:-10.705463pt;}
.ws7{word-spacing:-10.647282pt;}
.ws3d{word-spacing:-10.589100pt;}
.ws5b{word-spacing:-10.530918pt;}
.ws2d{word-spacing:-10.472736pt;}
.ws99{word-spacing:-10.414554pt;}
.ws4d{word-spacing:-10.298190pt;}
.ws54{word-spacing:-10.240009pt;}
.wsa1{word-spacing:-10.181827pt;}
.ws44{word-spacing:-10.123645pt;}
.ws30{word-spacing:-10.065463pt;}
.ws34{word-spacing:-10.007281pt;}
.ws41{word-spacing:-9.949099pt;}
.ws22{word-spacing:-9.890917pt;}
.ws1c{word-spacing:-9.832735pt;}
.ws26{word-spacing:-9.774554pt;}
.ws10{word-spacing:-9.716372pt;}
.wsf{word-spacing:-9.658190pt;}
.ws4c{word-spacing:-9.600008pt;}
.wsc2{word-spacing:-9.547644pt;}
.ws32{word-spacing:-9.541826pt;}
.ws35{word-spacing:-9.483644pt;}
.ws31{word-spacing:-9.425462pt;}
.ws4a{word-spacing:-9.367281pt;}
.wsc0{word-spacing:-9.314917pt;}
.ws5f{word-spacing:-9.309099pt;}
.wsae{word-spacing:-9.250917pt;}
.wsc3{word-spacing:-9.198553pt;}
.ws1d{word-spacing:-9.082189pt;}
.ws3a{word-spacing:-9.018189pt;}
.ws19{word-spacing:-8.965826pt;}
.ws71{word-spacing:-8.960007pt;}
.ws2a{word-spacing:-8.907644pt;}
.wsa6{word-spacing:-8.901826pt;}
.ws70{word-spacing:-8.843644pt;}
.ws8d{word-spacing:-8.785462pt;}
.wsb4{word-spacing:-8.733098pt;}
.ws51{word-spacing:-8.610916pt;}
.ws5e{word-spacing:-8.552734pt;}
.ws8e{word-spacing:-8.436371pt;}
.ws82{word-spacing:-8.378189pt;}
.ws36{word-spacing:-8.320007pt;}
.ws1b{word-spacing:-8.261825pt;}
.ws27{word-spacing:-8.145461pt;}
.ws1e{word-spacing:-8.093098pt;}
.ws55{word-spacing:-8.087279pt;}
.wsb0{word-spacing:-8.029098pt;}
.ws49{word-spacing:-7.970916pt;}
.wsb2{word-spacing:-7.912734pt;}
.wsb7{word-spacing:-7.738188pt;}
.ws63{word-spacing:-7.680006pt;}
.ws29{word-spacing:-7.621825pt;}
.ws28{word-spacing:-7.569461pt;}
.wsb1{word-spacing:-7.563643pt;}
.ws23{word-spacing:-7.511279pt;}
.wsa3{word-spacing:-7.447279pt;}
.ws6b{word-spacing:-7.389097pt;}
.ws24{word-spacing:-7.336733pt;}
.ws46{word-spacing:-7.330915pt;}
.ws7c{word-spacing:-7.272733pt;}
.wsb6{word-spacing:-7.162188pt;}
.ws45{word-spacing:-7.156370pt;}
.ws6d{word-spacing:-7.098188pt;}
.ws58{word-spacing:-7.040006pt;}
.wsbe{word-spacing:-6.981824pt;}
.ws42{word-spacing:-6.749097pt;}
.ws87{word-spacing:-6.690915pt;}
.ws73{word-spacing:-6.632733pt;}
.wsb5{word-spacing:-6.580369pt;}
.ws89{word-spacing:-6.574551pt;}
.wsb3{word-spacing:-6.516369pt;}
.ws88{word-spacing:-6.341823pt;}
.wsbb{word-spacing:-6.289460pt;}
.ws79{word-spacing:-6.283642pt;}
.ws8b{word-spacing:-6.225460pt;}
.ws56{word-spacing:-6.109096pt;}
.ws50{word-spacing:-6.050914pt;}
.ws62{word-spacing:-5.992732pt;}
.ws83{word-spacing:-5.934550pt;}
.ws61{word-spacing:-5.818187pt;}
.ws3f{word-spacing:-5.701823pt;}
.ws94{word-spacing:-5.643641pt;}
.ws65{word-spacing:-5.469095pt;}
.ws2f{word-spacing:-5.352732pt;}
.wscc{word-spacing:-5.294550pt;}
.ws2c{word-spacing:-5.236368pt;}
.ws38{word-spacing:-4.829095pt;}
.ws66{word-spacing:-4.654549pt;}
.ws92{word-spacing:-4.538186pt;}
.ws1f{word-spacing:-4.363640pt;}
.ws3b{word-spacing:-4.189094pt;}
.ws9b{word-spacing:-4.130913pt;}
.wsb8{word-spacing:-3.956367pt;}
.wsc9{word-spacing:-3.840003pt;}
.ws9c{word-spacing:-3.549094pt;}
.wsb9{word-spacing:-3.490912pt;}
.wsbd{word-spacing:-3.316366pt;}
.wsa0{word-spacing:-3.258185pt;}
.wsa9{word-spacing:-3.141821pt;}
.wsac{word-spacing:-2.850911pt;}
.ws7a{word-spacing:-2.560002pt;}
.ws60{word-spacing:-2.501820pt;}
.ws3c{word-spacing:-2.327275pt;}
.ws40{word-spacing:-1.920002pt;}
.wsa5{word-spacing:-1.861820pt;}
.ws72{word-spacing:-1.570910pt;}
.ws76{word-spacing:-1.221819pt;}
.ws75{word-spacing:-1.163637pt;}
.ws97{word-spacing:-1.047274pt;}
.ws80{word-spacing:-0.872728pt;}
.ws7b{word-spacing:-0.581819pt;}
.ws2{word-spacing:0.000000pt;}
.wsc7{word-spacing:0.174546pt;}
.ws8f{word-spacing:0.523637pt;}
.ws77{word-spacing:0.930910pt;}
.wsbc{word-spacing:1.105455pt;}
.wsca{word-spacing:1.221819pt;}
.ws93{word-spacing:1.745456pt;}
.ws81{word-spacing:2.036365pt;}
.ws95{word-spacing:2.094547pt;}
.ws90{word-spacing:2.152729pt;}
.ws91{word-spacing:2.210911pt;}
.ws69{word-spacing:2.501820pt;}
.ws74{word-spacing:2.618184pt;}
.ws7f{word-spacing:2.734548pt;}
.wscb{word-spacing:3.258185pt;}
.ws6a{word-spacing:3.374548pt;}
.ws53{word-spacing:3.723639pt;}
.wsa7{word-spacing:3.840003pt;}
.wsa8{word-spacing:3.898185pt;}
.wsc6{word-spacing:4.421822pt;}
.wsa2{word-spacing:4.770913pt;}
.wsa4{word-spacing:4.945459pt;}
.wsc4{word-spacing:5.410914pt;}
.ws6{word-spacing:5.527277pt;}
.wsc5{word-spacing:6.283642pt;}
.wsaa{word-spacing:6.690915pt;}
.wsc8{word-spacing:8.029098pt;}
.ws17{word-spacing:11.054555pt;}
.ws18{word-spacing:15.418195pt;}
.ws1{word-spacing:24.866747pt;}
.ws4f{word-spacing:25.716385pt;}
.ws7e{word-spacing:38.225486pt;}
.ws7d{word-spacing:38.923669pt;}
.ws11{word-spacing:52.014589pt;}
.ws47{word-spacing:54.283682pt;}
.wse{word-spacing:96.232807pt;}
.ws78{word-spacing:105.250997pt;}
.ws12{word-spacing:137.251023pt;}
.ws48{word-spacing:171.985598pt;}
.ws9{word-spacing:1673.950486pt;}
.ws8{word-spacing:1781.994212pt;}
.wsa{word-spacing:1829.761525pt;}
.ws3{word-spacing:1900.419152pt;}
._1d{margin-left:-30.661844pt;}
._9{margin-left:-29.090933pt;}
._1e{margin-left:-27.520023pt;}
._23{margin-left:-10.007281pt;}
._4{margin-left:-6.678237pt;}
._2c{margin-left:-4.829095pt;}
._0{margin-left:-3.416200pt;}
._3{margin-left:-1.989340pt;}
._21{margin-left:-0.919754pt;}
._12{width:1.134150pt;}
._5{width:2.065853pt;}
._1{width:3.526400pt;}
._60{width:4.457092pt;}
._20{width:5.527277pt;}
._18{width:8.087279pt;}
._3b{width:9.024980pt;}
._3c{width:10.000491pt;}
._3a{width:12.317018pt;}
._39{width:15.167929pt;}
._40{width:16.687833pt;}
._1a{width:17.920015pt;}
._f{width:19.432743pt;}
._38{width:20.520661pt;}
._37{width:21.552412pt;}
._19{width:22.749110pt;}
._24{width:24.029111pt;}
._3f{width:25.127391pt;}
._a{width:26.181840pt;}
._3d{width:27.461841pt;}
._7{width:28.450933pt;}
._51{width:30.091181pt;}
._10{width:31.662092pt;}
._25{width:32.871362pt;}
._2b{width:33.920028pt;}
._13{width:35.374575pt;}
._6{width:37.527304pt;}
._1b{width:38.539716pt;}
._67{width:40.360677pt;}
._36{width:42.082187pt;}
._e{width:43.287309pt;}
._63{width:45.655227pt;}
._61{width:46.661857pt;}
._5d{width:47.586385pt;}
._3e{width:49.320685pt;}
._52{width:50.932454pt;}
._b{width:51.840043pt;}
._5f{width:52.735877pt;}
._32{width:53.887800pt;}
._6a{width:54.989800pt;}
._69{width:56.314265pt;}
._26{width:59.251453pt;}
._31{width:60.610000pt;}
._62{width:61.520546pt;}
._53{width:63.778482pt;}
._2{width:65.212287pt;}
._65{width:67.573261pt;}
._68{width:68.614752pt;}
._64{width:69.618981pt;}
._66{width:71.895634pt;}
._11{width:80.930977pt;}
._46{width:93.625780pt;}
._4f{width:106.298270pt;}
._43{width:110.894638pt;}
._44{width:121.076465pt;}
._5e{width:122.367622pt;}
._42{width:126.836469pt;}
._4d{width:131.840110pt;}
._45{width:136.611023pt;}
._47{width:138.589206pt;}
._2e{width:156.160130pt;}
._30{width:173.789236pt;}
._49{width:177.105602pt;}
._50{width:179.781968pt;}
._35{width:186.472883pt;}
._2d{width:190.458737pt;}
._57{width:191.564193pt;}
._41{width:195.113286pt;}
._5b{width:209.221993pt;}
._4c{width:211.316540pt;}
._2f{width:213.061996pt;}
._5a{width:230.585894pt;}
._5c{width:235.054741pt;}
._48{width:236.334742pt;}
._56{width:238.254744pt;}
._55{width:244.596567pt;}
._58{width:249.600208pt;}
._59{width:262.702284pt;}
._4b{width:275.898412pt;}
._54{width:279.302447pt;}
._4a{width:296.960247pt;}
._4e{width:321.163904pt;}
._33{width:522.309773pt;}
._34{width:690.153302pt;}
._29{width:807.546771pt;}
._2a{width:857.216547pt;}
._27{width:890.106840pt;}
._28{width:962.972057pt;}
._8{width:1254.121292pt;}
._22{width:1258.357412pt;}
._14{width:1313.292251pt;}
._16{width:1482.340061pt;}
._c{width:1651.736169pt;}
._17{width:1663.332692pt;}
._1f{width:1697.478273pt;}
._1c{width:1798.063564pt;}
._d{width:1814.819941pt;}
._15{width:1854.169214pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:155.605333pt;}
.ybd{bottom:218.836000pt;}
.y6f{bottom:219.981333pt;}
.y183{bottom:220.961333pt;}
.y231{bottom:223.293333pt;}
.y12a{bottom:230.437333pt;}
.y1e{bottom:230.937333pt;}
.y1f9{bottom:233.544000pt;}
.y214{bottom:234.601333pt;}
.ybc{bottom:236.901333pt;}
.y6e{bottom:238.046667pt;}
.y182{bottom:239.026667pt;}
.y4a{bottom:239.388000pt;}
.y230{bottom:241.358667pt;}
.ye1{bottom:244.453333pt;}
.y10b{bottom:247.197333pt;}
.y129{bottom:248.502667pt;}
.y1d{bottom:249.002667pt;}
.y1f8{bottom:251.609333pt;}
.y213{bottom:252.666667pt;}
.y144{bottom:254.836000pt;}
.ybb{bottom:254.966667pt;}
.y6d{bottom:256.112000pt;}
.y181{bottom:257.092000pt;}
.y49{bottom:257.453333pt;}
.ye0{bottom:262.518667pt;}
.y10a{bottom:265.262667pt;}
.y161{bottom:266.037333pt;}
.y1c{bottom:267.068000pt;}
.y22f{bottom:269.386667pt;}
.ycb{bottom:269.874667pt;}
.y143{bottom:272.901333pt;}
.yba{bottom:273.032000pt;}
.y6c{bottom:274.178667pt;}
.y180{bottom:275.157333pt;}
.y128{bottom:275.601333pt;}
.y1f7{bottom:279.637333pt;}
.y1de{bottom:280.550667pt;}
.ydf{bottom:280.584000pt;}
.y109{bottom:283.328000pt;}
.y212{bottom:283.749333pt;}
.y1b{bottom:285.133333pt;}
.y1cb{bottom:285.598667pt;}
.yca{bottom:287.940000pt;}
.y142{bottom:290.966667pt;}
.y17f{bottom:293.222667pt;}
.y127{bottom:293.666667pt;}
.y22e{bottom:297.414667pt;}
.y1dd{bottom:298.616000pt;}
.yde{bottom:298.649333pt;}
.y48{bottom:298.956000pt;}
.y6b{bottom:299.541333pt;}
.y108{bottom:301.393333pt;}
.y160{bottom:302.529333pt;}
.y1ca{bottom:303.664000pt;}
.yc9{bottom:306.005333pt;}
.y1f6{bottom:307.665333pt;}
.y141{bottom:309.033333pt;}
.y19e{bottom:309.358667pt;}
.yb9{bottom:309.524000pt;}
.y211{bottom:310.848000pt;}
.y126{bottom:311.733333pt;}
.y22d{bottom:315.481333pt;}
.y1dc{bottom:316.681333pt;}
.y1a{bottom:317.744000pt;}
.y107{bottom:319.458667pt;}
.y17e{bottom:320.321333pt;}
.y6a{bottom:322.833333pt;}
.yc8{bottom:324.070667pt;}
.y140{bottom:327.098667pt;}
.y19d{bottom:327.424000pt;}
.y125{bottom:329.798667pt;}
.y1c9{bottom:330.762667pt;}
.y1db{bottom:334.746667pt;}
.ydd{bottom:335.141333pt;}
.y106{bottom:337.525333pt;}
.y210{bottom:337.946667pt;}
.y17d{bottom:338.386667pt;}
.y69{bottom:340.898667pt;}
.yc7{bottom:342.136000pt;}
.y22c{bottom:343.509333pt;}
.y13f{bottom:345.164000pt;}
.y9f{bottom:345.378667pt;}
.y19c{bottom:345.489333pt;}
.y124{bottom:347.864000pt;}
.y1c8{bottom:348.828000pt;}
.y1f5{bottom:349.168000pt;}
.y15f{bottom:349.981333pt;}
.y19{bottom:350.356000pt;}
.y1da{bottom:352.813333pt;}
.y47{bottom:353.817333pt;}
.y17c{bottom:356.453333pt;}
.yb8{bottom:356.609333pt;}
.yc6{bottom:360.202667pt;}
.y13e{bottom:363.229333pt;}
.y9e{bottom:363.444000pt;}
.y19b{bottom:363.554667pt;}
.y105{bottom:364.622667pt;}
.y20f{bottom:365.045333pt;}
.y123{bottom:365.929333pt;}
.y15e{bottom:368.046667pt;}
.y46{bottom:371.884000pt;}
.y17b{bottom:374.518667pt;}
.yb7{bottom:374.676000pt;}
.yc5{bottom:378.268000pt;}
.y1c7{bottom:379.910667pt;}
.y9d{bottom:381.509333pt;}
.y19a{bottom:381.620000pt;}
.y104{bottom:382.689333pt;}
.y18{bottom:382.966667pt;}
.y20e{bottom:383.110667pt;}
.ydc{bottom:383.125333pt;}
.y122{bottom:383.994667pt;}
.y68{bottom:384.958667pt;}
.y22b{bottom:385.010667pt;}
.y15d{bottom:386.112000pt;}
.y4{bottom:386.294667pt;}
.y45{bottom:389.949333pt;}
.ye2{bottom:392.108000pt;}
.y17a{bottom:392.584000pt;}
.yb6{bottom:392.741333pt;}
.ye3{bottom:393.138667pt;}
.y1d9{bottom:397.977333pt;}
.y9c{bottom:399.574667pt;}
.y199{bottom:399.685333pt;}
.y103{bottom:400.754667pt;}
.ydb{bottom:401.190667pt;}
.y121{bottom:402.061333pt;}
.y67{bottom:403.024000pt;}
.y1f4{bottom:404.029333pt;}
.y20d{bottom:410.209333pt;}
.y1c6{bottom:410.994667pt;}
.y15c{bottom:413.210667pt;}
.yc4{bottom:414.760000pt;}
.y13d{bottom:415.349333pt;}
.y17{bottom:415.577333pt;}
.y1d8{bottom:416.042667pt;}
.y44{bottom:417.048000pt;}
.y9b{bottom:417.640000pt;}
.y198{bottom:417.752000pt;}
.y102{bottom:418.820000pt;}
.yda{bottom:419.256000pt;}
.y1f3{bottom:422.094667pt;}
.y179{bottom:423.666667pt;}
.y20c{bottom:428.274667pt;}
.y1c5{bottom:429.060000pt;}
.yb5{bottom:429.233333pt;}
.y66{bottom:430.122667pt;}
.y15b{bottom:431.276000pt;}
.y120{bottom:433.144000pt;}
.y13c{bottom:433.414667pt;}
.y1d7{bottom:434.108000pt;}
.y43{bottom:435.113333pt;}
.y9a{bottom:435.706667pt;}
.y101{bottom:436.885333pt;}
.yd9{bottom:437.321333pt;}
.y22a{bottom:439.873333pt;}
.y1f2{bottom:440.161333pt;}
.y1c4{bottom:447.125333pt;}
.y65{bottom:448.188000pt;}
.y16{bottom:448.189333pt;}
.y15a{bottom:449.342667pt;}
.y178{bottom:450.765333pt;}
.y13b{bottom:451.480000pt;}
.y42{bottom:453.178667pt;}
.y99{bottom:453.772000pt;}
.y197{bottom:454.244000pt;}
.y20b{bottom:455.373333pt;}
.yd8{bottom:455.386667pt;}
.y229{bottom:457.938667pt;}
.y11f{bottom:460.242667pt;}
.y1d6{bottom:461.206667pt;}
.yc3{bottom:462.742667pt;}
.y100{bottom:463.984000pt;}
.y1c3{bottom:465.192000pt;}
.y15{bottom:466.254667pt;}
.y159{bottom:467.408000pt;}
.y177{bottom:468.830667pt;}
.y13a{bottom:469.546667pt;}
.y1f1{bottom:471.244000pt;}
.y98{bottom:471.837333pt;}
.y228{bottom:476.004000pt;}
.yb4{bottom:476.318667pt;}
.y11e{bottom:478.308000pt;}
.y1d5{bottom:479.272000pt;}
.y41{bottom:480.277333pt;}
.yc2{bottom:480.808000pt;}
.y1c2{bottom:483.257333pt;}
.y14{bottom:484.320000pt;}
.y158{bottom:485.473333pt;}
.y139{bottom:487.612000pt;}
.y1f0{bottom:489.309333pt;}
.y97{bottom:489.902667pt;}
.yd7{bottom:491.880000pt;}
.y1ac{bottom:494.236000pt;}
.yb3{bottom:494.384000pt;}
.y176{bottom:495.929333pt;}
.y11d{bottom:496.373333pt;}
.y20a{bottom:496.874667pt;}
.y1d4{bottom:497.337333pt;}
.y40{bottom:498.342667pt;}
.yc1{bottom:498.873333pt;}
.yff{bottom:500.476000pt;}
.y196{bottom:501.696000pt;}
.y64{bottom:502.385333pt;}
.y227{bottom:503.102667pt;}
.y157{bottom:503.538667pt;}
.y138{bottom:505.677333pt;}
.y96{bottom:507.968000pt;}
.y1c1{bottom:510.356000pt;}
.y1ab{bottom:512.301333pt;}
.yb2{bottom:512.450667pt;}
.y175{bottom:513.994667pt;}
.y3f{bottom:516.408000pt;}
.y13{bottom:516.930667pt;}
.y195{bottom:519.761333pt;}
.y1ef{bottom:520.393333pt;}
.y63{bottom:520.450667pt;}
.y226{bottom:521.168000pt;}
.y11c{bottom:523.472000pt;}
.y137{bottom:523.742667pt;}
.y87{bottom:524.436000pt;}
.y95{bottom:526.034667pt;}
.y1c0{bottom:528.421333pt;}
.yb1{bottom:530.516000pt;}
.y156{bottom:530.637333pt;}
.yf3{bottom:531.258667pt;}
.y12{bottom:534.996000pt;}
.yc0{bottom:535.366667pt;}
.y194{bottom:537.826667pt;}
.y62{bottom:538.516000pt;}
.yd6{bottom:539.862667pt;}
.y174{bottom:541.093333pt;}
.y136{bottom:541.808000pt;}
.y86{bottom:542.501333pt;}
.y94{bottom:544.100000pt;}
.y1bf{bottom:546.486667pt;}
.y3e{bottom:547.492000pt;}
.y225{bottom:548.266667pt;}
.yfe{bottom:548.458667pt;}
.y155{bottom:548.702667pt;}
.y1aa{bottom:548.793333pt;}
.y1ee{bottom:551.477333pt;}
.y209{bottom:551.737333pt;}
.y11{bottom:553.062667pt;}
.y11b{bottom:554.556000pt;}
.y61{bottom:556.582667pt;}
.yd5{bottom:557.928000pt;}
.y173{bottom:559.158667pt;}
.y135{bottom:559.874667pt;}
.y85{bottom:560.566667pt;}
.y93{bottom:562.165333pt;}
.y1b6{bottom:564.552000pt;}
.y3d{bottom:565.557333pt;}
.y224{bottom:566.332000pt;}
.yfd{bottom:566.525333pt;}
.y154{bottom:566.768000pt;}
.yb0{bottom:567.008000pt;}
.y208{bottom:569.802667pt;}
.y10{bottom:571.128000pt;}
.yf2{bottom:572.761333pt;}
.y193{bottom:574.318667pt;}
.y60{bottom:574.648000pt;}
.yd4{bottom:575.993333pt;}
.ybf{bottom:577.400000pt;}
.y84{bottom:578.633333pt;}
.y92{bottom:580.230667pt;}
.y1ed{bottom:582.560000pt;}
.y1b5{bottom:582.617333pt;}
.y3c{bottom:583.622667pt;}
.y134{bottom:585.237333pt;}
.y207{bottom:587.868000pt;}
.y172{bottom:590.242667pt;}
.y11a{bottom:591.048000pt;}
.y1cd{bottom:591.650667pt;}
.y5f{bottom:592.713333pt;}
.yfc{bottom:593.622667pt;}
.y153{bottom:593.866667pt;}
.yd3{bottom:594.058667pt;}
.y83{bottom:596.698667pt;}
.y1a9{bottom:596.776000pt;}
.y223{bottom:597.416000pt;}
.y91{bottom:598.296000pt;}
.y1b4{bottom:600.684000pt;}
.yf{bottom:603.738667pt;}
.y206{bottom:605.933333pt;}
.y171{bottom:608.308000pt;}
.y133{bottom:608.529333pt;}
.y1ec{bottom:609.658667pt;}
.y1be{bottom:609.716000pt;}
.y5e{bottom:610.778667pt;}
.y3b{bottom:611.650667pt;}
.y152{bottom:611.932000pt;}
.yd2{bottom:612.124000pt;}
.yaf{bottom:614.093333pt;}
.y82{bottom:614.764000pt;}
.y1a8{bottom:614.841333pt;}
.y222{bottom:615.481333pt;}
.y90{bottom:616.361333pt;}
.y1b3{bottom:618.749333pt;}
.yfb{bottom:620.721333pt;}
.y192{bottom:621.770667pt;}
.y1d3{bottom:623.797333pt;}
.ybe{bottom:623.998667pt;}
.y170{bottom:626.373333pt;}
.yf1{bottom:627.622667pt;}
.y1eb{bottom:627.724000pt;}
.y1bd{bottom:627.781333pt;}
.y5d{bottom:628.844000pt;}
.y3a{bottom:629.717333pt;}
.y150{bottom:629.997333pt;}
.y151{bottom:629.998667pt;}
.yd1{bottom:630.190667pt;}
.yae{bottom:632.158667pt;}
.y81{bottom:632.829333pt;}
.y1a7{bottom:632.908000pt;}
.y205{bottom:633.032000pt;}
.y8f{bottom:634.428000pt;}
.ye{bottom:636.349333pt;}
.y1b2{bottom:636.814667pt;}
.y119{bottom:639.030667pt;}
.y191{bottom:639.836000pt;}
.y1d2{bottom:641.862667pt;}
.yf0{bottom:645.689333pt;}
.y1ea{bottom:645.789333pt;}
.y1bc{bottom:645.848000pt;}
.y221{bottom:646.565333pt;}
.y5c{bottom:646.910667pt;}
.yfa{bottom:647.820000pt;}
.yd0{bottom:648.256000pt;}
.y132{bottom:649.761333pt;}
.yad{bottom:650.225333pt;}
.y80{bottom:650.894667pt;}
.y1a6{bottom:650.973333pt;}
.y8e{bottom:652.493333pt;}
.y16f{bottom:653.472000pt;}
.y1cc{bottom:654.880000pt;}
.y39{bottom:657.745333pt;}
.y190{bottom:657.901333pt;}
.y1d1{bottom:659.928000pt;}
.y14f{bottom:661.081333pt;}
.yef{bottom:663.754667pt;}
.y1e9{bottom:663.856000pt;}
.y1b1{bottom:663.913333pt;}
.y204{bottom:664.116000pt;}
.y5b{bottom:664.976000pt;}
.yf9{bottom:665.885333pt;}
.y118{bottom:666.129333pt;}
.ycf{bottom:666.321333pt;}
.y131{bottom:667.826667pt;}
.yac{bottom:668.290667pt;}
.yd{bottom:668.961333pt;}
.y1a5{bottom:669.038667pt;}
.y8d{bottom:670.558667pt;}
.y1bb{bottom:672.945333pt;}
.y38{bottom:675.810667pt;}
.y18f{bottom:675.966667pt;}
.y220{bottom:677.648000pt;}
.y1d0{bottom:677.993333pt;}
.y14e{bottom:679.146667pt;}
.yee{bottom:681.820000pt;}
.y1b0{bottom:681.978667pt;}
.y5a{bottom:683.041333pt;}
.yce{bottom:684.386667pt;}
.y16e{bottom:684.556000pt;}
.y130{bottom:685.892000pt;}
.yab{bottom:686.356000pt;}
.y7f{bottom:687.026667pt;}
.y8c{bottom:688.624000pt;}
.y1ba{bottom:691.012000pt;}
.yf8{bottom:692.984000pt;}
.y117{bottom:693.228000pt;}
.y37{bottom:693.876000pt;}
.y1e8{bottom:694.938667pt;}
.y203{bottom:695.198667pt;}
.yed{bottom:699.885333pt;}
.y1af{bottom:700.044000pt;}
.yc{bottom:701.572000pt;}
.y16d{bottom:702.621333pt;}
.y18e{bottom:703.065333pt;}
.y12f{bottom:703.957333pt;}
.yaa{bottom:704.421333pt;}
.y7e{bottom:705.092000pt;}
.y1a4{bottom:705.530667pt;}
.y14d{bottom:706.245333pt;}
.y1e4{bottom:706.606667pt;}
.y8b{bottom:706.689333pt;}
.y21f{bottom:708.732000pt;}
.y7a{bottom:709.077333pt;}
.y36{bottom:711.941333pt;}
.y59{bottom:714.125333pt;}
.yec{bottom:717.950667pt;}
.y1b9{bottom:718.109333pt;}
.yb{bottom:719.637333pt;}
.yf7{bottom:720.082667pt;}
.y116{bottom:720.325333pt;}
.y16c{bottom:720.686667pt;}
.ycd{bottom:720.878667pt;}
.y18d{bottom:721.130667pt;}
.y202{bottom:722.297333pt;}
.y7d{bottom:723.157333pt;}
.y14c{bottom:724.310667pt;}
.y1e3{bottom:724.672000pt;}
.y8a{bottom:724.756000pt;}
.y1e7{bottom:726.022667pt;}
.y79{bottom:727.142667pt;}
.y3{bottom:727.474667pt;}
.y35{bottom:730.008000pt;}
.y29{bottom:731.248000pt;}
.y58{bottom:732.190667pt;}
.yeb{bottom:736.017333pt;}
.y1b8{bottom:736.176000pt;}
.ya{bottom:737.702667pt;}
.yf6{bottom:738.148000pt;}
.y16b{bottom:738.752000pt;}
.y18c{bottom:739.197333pt;}
.y21e{bottom:739.814667pt;}
.y12e{bottom:740.450667pt;}
.ya9{bottom:740.913333pt;}
.y7c{bottom:741.222667pt;}
.y14b{bottom:742.376000pt;}
.y1e2{bottom:742.737333pt;}
.y78{bottom:745.208000pt;}
.y115{bottom:747.424000pt;}
.y34{bottom:748.073333pt;}
.y201{bottom:749.396000pt;}
.y89{bottom:750.118667pt;}
.y57{bottom:750.256000pt;}
.y2d{bottom:751.338667pt;}
.y1a3{bottom:753.513333pt;}
.yea{bottom:754.082667pt;}
.y1b7{bottom:754.241333pt;}
.y16a{bottom:756.818667pt;}
.y1e6{bottom:757.105333pt;}
.y18b{bottom:757.262667pt;}
.y1cf{bottom:759.289333pt;}
.y14a{bottom:760.442667pt;}
.y1e1{bottom:760.802667pt;}
.y77{bottom:763.273333pt;}
.y28{bottom:763.858667pt;}
.y114{bottom:765.489333pt;}
.y200{bottom:767.461333pt;}
.ycc{bottom:767.477333pt;}
.y56{bottom:768.321333pt;}
.yf5{bottom:769.232000pt;}
.y9{bottom:770.314667pt;}
.y21d{bottom:770.898667pt;}
.y1a2{bottom:771.578667pt;}
.ye9{bottom:772.148000pt;}
.y7b{bottom:772.306667pt;}
.y2{bottom:773.204000pt;}
.y88{bottom:773.410667pt;}
.y169{bottom:774.884000pt;}
.y1e5{bottom:775.172000pt;}
.y18a{bottom:775.328000pt;}
.y1e0{bottom:778.869333pt;}
.y33{bottom:779.156000pt;}
.y76{bottom:781.340000pt;}
.ya8{bottom:782.946667pt;}
.y55{bottom:786.386667pt;}
.y149{bottom:787.540000pt;}
.y12d{bottom:787.901333pt;}
.y1a1{bottom:789.645333pt;}
.ye8{bottom:790.213333pt;}
.y1ae{bottom:790.372000pt;}
.y168{bottom:792.949333pt;}
.y1ff{bottom:794.560000pt;}
.y27{bottom:796.469333pt;}
.y113{bottom:796.573333pt;}
.y21c{bottom:797.997333pt;}
.y75{bottom:799.405333pt;}
.y32{bottom:800.728000pt;}
.y189{bottom:802.426667pt;}
.y8{bottom:802.925333pt;}
.y2c{bottom:803.458667pt;}
.y54{bottom:804.453333pt;}
.y148{bottom:805.606667pt;}
.yf4{bottom:805.724000pt;}
.y12c{bottom:805.966667pt;}
.y2f{bottom:806.254667pt;}
.y1ad{bottom:808.437333pt;}
.y167{bottom:811.014667pt;}
.y1fe{bottom:812.625333pt;}
.y112{bottom:814.638667pt;}
.y21b{bottom:816.062667pt;}
.y74{bottom:817.470667pt;}
.y233{bottom:820.393333pt;}
.y188{bottom:820.492000pt;}
.y7{bottom:820.990667pt;}
.y2b{bottom:821.524000pt;}
.y1ce{bottom:822.518667pt;}
.y147{bottom:823.672000pt;}
.y52{bottom:824.033333pt;}
.y30{bottom:826.090667pt;}
.y1a0{bottom:826.137333pt;}
.ye7{bottom:826.705333pt;}
.y26{bottom:829.080000pt;}
.y53{bottom:835.536000pt;}
.y187{bottom:838.557333pt;}
.y1fd{bottom:839.724000pt;}
.y1{bottom:840.750667pt;}
.y111{bottom:841.737333pt;}
.y51{bottom:842.098667pt;}
.y21a{bottom:843.161333pt;}
.y31{bottom:844.156000pt;}
.ya7{bottom:845.993333pt;}
.y2a{bottom:846.888000pt;}
.y166{bottom:847.146667pt;}
.y2e{bottom:847.757333pt;}
.y6{bottom:853.601333pt;}
.y186{bottom:856.622667pt;}
.y110{bottom:859.802667pt;}
.y50{bottom:860.164000pt;}
.y219{bottom:861.226667pt;}
.y25{bottom:861.692000pt;}
.ya6{bottom:864.058667pt;}
.y19f{bottom:868.170667pt;}
.y146{bottom:868.836000pt;}
.y165{bottom:874.244000pt;}
.ye6{bottom:874.689333pt;}
.y10f{bottom:877.868000pt;}
.y4f{bottom:878.229333pt;}
.y232{bottom:878.654667pt;}
.y1fc{bottom:881.226667pt;}
.ya5{bottom:882.124000pt;}
.y145{bottom:886.901333pt;}
.y218{bottom:888.325333pt;}
.y164{bottom:892.310667pt;}
.y185{bottom:893.114667pt;}
.y24{bottom:894.302667pt;}
.y4e{bottom:896.294667pt;}
.ya4{bottom:900.189333pt;}
.y10e{bottom:904.966667pt;}
.y163{bottom:910.376000pt;}
.ye5{bottom:911.181333pt;}
.y5{bottom:911.864000pt;}
.y4d{bottom:914.361333pt;}
.y217{bottom:915.424000pt;}
.ya3{bottom:918.256000pt;}
.y10d{bottom:923.032000pt;}
.y1df{bottom:923.393333pt;}
.y23{bottom:926.913333pt;}
.y162{bottom:928.441333pt;}
.y184{bottom:929.608000pt;}
.y73{bottom:930.901333pt;}
.y4c{bottom:932.426667pt;}
.y216{bottom:933.489333pt;}
.y1fb{bottom:936.088000pt;}
.y10c{bottom:941.098667pt;}
.y12b{bottom:941.458667pt;}
.ya2{bottom:943.618667pt;}
.y72{bottom:948.966667pt;}
.y4b{bottom:950.492000pt;}
.y1fa{bottom:954.153333pt;}
.ye4{bottom:959.164000pt;}
.y22{bottom:959.525333pt;}
.y215{bottom:964.572000pt;}
.ya1{bottom:966.910667pt;}
.y71{bottom:967.032000pt;}
.y21{bottom:977.590667pt;}
.ya0{bottom:984.976000pt;}
.y70{bottom:992.394667pt;}
.y20{bottom:995.656000pt;}
.h4{height:43.636400pt;}
.h5{height:47.820800pt;}
.h3{height:57.384800pt;}
.h2{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:117.353333pt;}
.x5{left:119.054667pt;}
.x2{left:127.025333pt;}
.xc{left:136.832000pt;}
.x1a{left:139.741333pt;}
.x6{left:140.873333pt;}
.xe{left:153.717333pt;}
.x1{left:154.925333pt;}
.x1e{left:160.304000pt;}
.x1c{left:162.828000pt;}
.x1d{left:164.512000pt;}
.xf{left:171.782667pt;}
.x17{left:175.738667pt;}
.x18{left:184.546667pt;}
.x1b{left:187.418667pt;}
.x11{left:190.573333pt;}
.x12{left:200.977333pt;}
.x8{left:214.326667pt;}
.x16{left:217.274667pt;}
.x15{left:232.829333pt;}
.x14{left:267.836000pt;}
.x4{left:269.518667pt;}
.x9{left:343.576000pt;}
.x3{left:353.148000pt;}
.x19{left:369.138667pt;}
.x13{left:389.577333pt;}
.x7{left:393.214667pt;}
.xa{left:444.133333pt;}
.xd{left:511.218667pt;}
.xb{left:545.448000pt;}
}




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