
    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_cd46ab332f4b3017f36d5532.woff')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_684de7be1cdc90a58d04f1ce.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_1482e029b5ece16a2a4e67aa.woff')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_c648f53d1cf3899ba0f4bd03.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4dbb52b28672843334a436f7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.106000;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_305ac461fbf1d274b3d568dc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.482000;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;}
.m7{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);}
.m1f{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);}
.m1a{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);}
.m25{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);}
.m1{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);}
.m26{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);}
.m1e{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);}
.m11{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);}
.md{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);}
.mc{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);}
.m6{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);}
.m28{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);}
.m14{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);}
.m23{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);}
.m27{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);}
.m1d{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);}
.m21{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);}
.mf{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);}
.m1c{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);}
.m10{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);}
.m13{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);}
.m5{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);}
.m15{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);}
.m4{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);}
.m2{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);}
.m17{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);}
.m19{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);}
.mb{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);}
.me{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);}
.m8{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);}
.ma{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);}
.m1b{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);}
.m22{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);}
.m20{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);}
.m9{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);}
.m18{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);}
.m16{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);}
.m24{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);}
.m29{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;}
.v3{vertical-align:21.696000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:1.443582px;}
.lsa{letter-spacing:2.543454px;}
.ls0{letter-spacing:2.988780px;}
.ls5{letter-spacing:8.308808px;}
.ls15{letter-spacing:13.954626px;}
.ls17{letter-spacing:16.566822px;}
.ls7{letter-spacing:16.773048px;}
.ls13{letter-spacing:16.910532px;}
.ls8{letter-spacing:16.979274px;}
.lse{letter-spacing:17.116758px;}
.ls9{letter-spacing:17.185500px;}
.ls16{letter-spacing:17.254242px;}
.ls10{letter-spacing:17.391726px;}
.ls12{letter-spacing:17.597952px;}
.lsf{letter-spacing:18.835308px;}
.ls11{letter-spacing:19.316502px;}
.lsd{letter-spacing:19.797696px;}
.lsb{letter-spacing:21.928698px;}
.ls14{letter-spacing:26.121960px;}
.ls6{letter-spacing:85.788284px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.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;}
}
.ws4b{word-spacing:-17.185500px;}
.wscf{word-spacing:-14.943900px;}
.ws102{word-spacing:-7.630362px;}
.wsce{word-spacing:-6.694867px;}
.ws81{word-spacing:-3.780810px;}
.ws5d{word-spacing:-3.712068px;}
.ws28{word-spacing:-3.505842px;}
.wsbd{word-spacing:-3.437100px;}
.wse5{word-spacing:-3.230874px;}
.wse4{word-spacing:-3.093390px;}
.ws13{word-spacing:-2.988780px;}
.ws101{word-spacing:-2.955906px;}
.wsd8{word-spacing:-2.818422px;}
.ws5e{word-spacing:-2.612196px;}
.ws82{word-spacing:-2.543454px;}
.ws69{word-spacing:-2.405970px;}
.ws24{word-spacing:-2.337228px;}
.wsff{word-spacing:-2.268486px;}
.ws77{word-spacing:-2.199744px;}
.wsc3{word-spacing:-2.131002px;}
.wsb2{word-spacing:-2.062260px;}
.wsf5{word-spacing:-1.993518px;}
.ws59{word-spacing:-1.924776px;}
.ws7d{word-spacing:-1.856034px;}
.wse3{word-spacing:-1.787292px;}
.wsa0{word-spacing:-1.718550px;}
.ws88{word-spacing:-1.581066px;}
.ws5c{word-spacing:-1.512324px;}
.ws75{word-spacing:-1.443582px;}
.wsa2{word-spacing:-1.374840px;}
.ws8f{word-spacing:-1.306098px;}
.ws80{word-spacing:-1.237356px;}
.wsc5{word-spacing:-1.168614px;}
.ws3a{word-spacing:-1.031130px;}
.ws6a{word-spacing:-0.962388px;}
.ws18{word-spacing:-0.893646px;}
.wsc9{word-spacing:-0.824904px;}
.ws47{word-spacing:-0.756162px;}
.ws7c{word-spacing:-0.687420px;}
.ws41{word-spacing:-0.618678px;}
.wsa1{word-spacing:-0.549936px;}
.ws94{word-spacing:-0.481194px;}
.wsb{word-spacing:-0.478205px;}
.ws3d{word-spacing:-0.412452px;}
.ws30{word-spacing:-0.343710px;}
.wsf{word-spacing:-0.298878px;}
.ws16{word-spacing:-0.274968px;}
.ws3b{word-spacing:-0.206226px;}
.ws5{word-spacing:-0.179327px;}
.ws22{word-spacing:-0.137484px;}
.ws8{word-spacing:-0.119551px;}
.ws25{word-spacing:-0.068742px;}
.ws12{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047821px;}
.wsd0{word-spacing:-0.044234px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:0.059776px;}
.ws34{word-spacing:0.068742px;}
.ws14{word-spacing:0.107597px;}
.ws20{word-spacing:0.137484px;}
.ws2a{word-spacing:0.206226px;}
.ws36{word-spacing:0.274968px;}
.ws29{word-spacing:0.343710px;}
.ws21{word-spacing:0.412452px;}
.ws3{word-spacing:0.413170px;}
.ws57{word-spacing:0.481194px;}
.wse{word-spacing:0.537980px;}
.ws5b{word-spacing:0.549936px;}
.ws3f{word-spacing:0.618678px;}
.ws2c{word-spacing:0.687420px;}
.ws73{word-spacing:0.756162px;}
.wsed{word-spacing:0.824904px;}
.wsf1{word-spacing:0.893646px;}
.ws8b{word-spacing:0.962388px;}
.ws8a{word-spacing:1.031130px;}
.ws7f{word-spacing:1.099872px;}
.wsa{word-spacing:1.135736px;}
.wsa8{word-spacing:1.168614px;}
.wsa6{word-spacing:1.237356px;}
.ws96{word-spacing:1.306098px;}
.ws9d{word-spacing:1.374840px;}
.ws2f{word-spacing:1.443582px;}
.wsd9{word-spacing:1.512324px;}
.ws2d{word-spacing:1.581066px;}
.ws61{word-spacing:1.649808px;}
.ws31{word-spacing:1.718550px;}
.ws9e{word-spacing:1.787292px;}
.ws10{word-spacing:1.853044px;}
.ws3e{word-spacing:1.856034px;}
.ws62{word-spacing:1.924776px;}
.ws11{word-spacing:1.972595px;}
.ws2e{word-spacing:1.993518px;}
.wsda{word-spacing:2.062260px;}
.wsf8{word-spacing:2.131002px;}
.ws6b{word-spacing:2.199744px;}
.ws67{word-spacing:2.268486px;}
.ws33{word-spacing:2.337228px;}
.ws4d{word-spacing:2.405970px;}
.wsbc{word-spacing:2.474712px;}
.ws52{word-spacing:2.543454px;}
.wsa7{word-spacing:2.612196px;}
.ws66{word-spacing:2.749680px;}
.ws1f{word-spacing:2.818422px;}
.wsb4{word-spacing:2.887164px;}
.ws5a{word-spacing:2.955906px;}
.ws63{word-spacing:3.024648px;}
.ws27{word-spacing:3.093390px;}
.ws6c{word-spacing:3.162132px;}
.ws84{word-spacing:3.230874px;}
.ws37{word-spacing:3.299616px;}
.ws68{word-spacing:3.368358px;}
.ws1c{word-spacing:3.437100px;}
.ws9a{word-spacing:3.505842px;}
.wsfe{word-spacing:3.574584px;}
.wsd4{word-spacing:3.643326px;}
.ws8d{word-spacing:3.712068px;}
.ws43{word-spacing:3.780810px;}
.ws4f{word-spacing:3.849552px;}
.ws42{word-spacing:3.918294px;}
.ws72{word-spacing:3.987036px;}
.ws55{word-spacing:4.055778px;}
.ws95{word-spacing:4.124520px;}
.wsc{word-spacing:4.184292px;}
.ws7e{word-spacing:4.193262px;}
.wsdc{word-spacing:4.262004px;}
.ws76{word-spacing:4.330746px;}
.wscb{word-spacing:4.399488px;}
.ws6f{word-spacing:4.468230px;}
.ws9f{word-spacing:4.536972px;}
.ws6{word-spacing:4.602721px;}
.ws90{word-spacing:4.605714px;}
.ws2b{word-spacing:4.674456px;}
.ws17{word-spacing:4.743198px;}
.ws40{word-spacing:4.811940px;}
.ws32{word-spacing:4.880682px;}
.ws9b{word-spacing:4.949424px;}
.ws1a{word-spacing:5.018166px;}
.ws98{word-spacing:5.086908px;}
.ws7b{word-spacing:5.155650px;}
.wseb{word-spacing:5.224392px;}
.wsd{word-spacing:5.260253px;}
.ws4c{word-spacing:5.293134px;}
.ws8e{word-spacing:5.361876px;}
.ws4a{word-spacing:5.430618px;}
.ws7{word-spacing:5.439580px;}
.ws56{word-spacing:5.499360px;}
.ws51{word-spacing:5.568102px;}
.ws87{word-spacing:5.636844px;}
.ws49{word-spacing:5.705586px;}
.ws91{word-spacing:5.774328px;}
.ws70{word-spacing:5.911812px;}
.ws4e{word-spacing:5.980554px;}
.ws1b{word-spacing:6.049296px;}
.ws35{word-spacing:6.118038px;}
.ws54{word-spacing:6.186780px;}
.ws9c{word-spacing:6.324264px;}
.ws53{word-spacing:6.393006px;}
.ws7a{word-spacing:6.461748px;}
.ws79{word-spacing:6.530490px;}
.ws8c{word-spacing:6.667974px;}
.ws50{word-spacing:6.736716px;}
.ws93{word-spacing:6.805458px;}
.wsc0{word-spacing:6.874200px;}
.ws99{word-spacing:6.942942px;}
.wsd5{word-spacing:7.011684px;}
.ws65{word-spacing:7.080426px;}
.ws60{word-spacing:7.149168px;}
.wsc7{word-spacing:7.217910px;}
.wsab{word-spacing:7.286652px;}
.ws26{word-spacing:7.355394px;}
.ws5f{word-spacing:7.424136px;}
.ws85{word-spacing:7.492878px;}
.ws103{word-spacing:7.527060px;}
.ws1e{word-spacing:7.561620px;}
.wsa9{word-spacing:7.630362px;}
.wsb7{word-spacing:7.699104px;}
.ws3c{word-spacing:7.767846px;}
.wsec{word-spacing:7.836588px;}
.wsf7{word-spacing:7.905330px;}
.ws39{word-spacing:7.974072px;}
.ws92{word-spacing:8.042814px;}
.ws64{word-spacing:8.111556px;}
.wsaa{word-spacing:8.180298px;}
.ws44{word-spacing:8.249040px;}
.ws6e{word-spacing:8.317782px;}
.wsef{word-spacing:8.386524px;}
.ws23{word-spacing:8.455266px;}
.wsad{word-spacing:8.524008px;}
.ws74{word-spacing:8.592750px;}
.wsb0{word-spacing:8.730234px;}
.ws58{word-spacing:8.798976px;}
.ws78{word-spacing:8.867718px;}
.ws48{word-spacing:8.936460px;}
.wsc1{word-spacing:9.005202px;}
.wsac{word-spacing:9.073944px;}
.ws19{word-spacing:9.142686px;}
.wsea{word-spacing:9.211428px;}
.ws45{word-spacing:9.280170px;}
.ws46{word-spacing:9.348912px;}
.wsc2{word-spacing:9.417654px;}
.wsee{word-spacing:9.486396px;}
.wsdd{word-spacing:9.555138px;}
.ws38{word-spacing:9.623880px;}
.wsdf{word-spacing:9.692622px;}
.ws100{word-spacing:9.761364px;}
.wsfd{word-spacing:9.830106px;}
.ws97{word-spacing:9.898848px;}
.ws86{word-spacing:10.173816px;}
.wsb6{word-spacing:10.242558px;}
.ws83{word-spacing:10.311300px;}
.wsc4{word-spacing:10.380042px;}
.wsf4{word-spacing:10.448784px;}
.wse7{word-spacing:10.517526px;}
.wsf9{word-spacing:10.586268px;}
.wsba{word-spacing:10.655010px;}
.wsf2{word-spacing:10.723752px;}
.wse9{word-spacing:10.998720px;}
.wsdb{word-spacing:11.273688px;}
.wsde{word-spacing:11.342430px;}
.wsc8{word-spacing:11.823624px;}
.wsbb{word-spacing:12.098592px;}
.ws1d{word-spacing:12.167334px;}
.wsf3{word-spacing:12.304818px;}
.ws6d{word-spacing:12.373560px;}
.wsca{word-spacing:12.511044px;}
.wsb5{word-spacing:12.579786px;}
.wsd7{word-spacing:12.923496px;}
.wse8{word-spacing:13.610916px;}
.wsbe{word-spacing:13.817142px;}
.wsfa{word-spacing:13.954626px;}
.ws71{word-spacing:14.023368px;}
.wsb9{word-spacing:14.092110px;}
.wse2{word-spacing:14.504562px;}
.wsbf{word-spacing:14.642046px;}
.wsc6{word-spacing:14.779530px;}
.wsa3{word-spacing:14.884124px;}
.wsb1{word-spacing:15.948144px;}
.wse6{word-spacing:16.360596px;}
.wsb8{word-spacing:16.566822px;}
.ws0{word-spacing:16.880672px;}
.wsfc{word-spacing:16.910532px;}
.ws4{word-spacing:18.351109px;}
.wsb3{word-spacing:19.349392px;}
.wsaf{word-spacing:23.097312px;}
.wsae{word-spacing:23.166054px;}
.wse0{word-spacing:24.059700px;}
.ws89{word-spacing:33.271128px;}
.wsfb{word-spacing:35.677098px;}
.wsa5{word-spacing:42.207588px;}
.wsf6{word-spacing:50.181660px;}
.wsf0{word-spacing:52.587630px;}
.wse1{word-spacing:56.786820px;}
.wsd3{word-spacing:59.835376px;}
.wsd2{word-spacing:63.670934px;}
.wsa4{word-spacing:71.670944px;}
.wsd1{word-spacing:74.779276px;}
.ws15{word-spacing:77.630692px;}
.wscd{word-spacing:85.837762px;}
.wscc{word-spacing:132.642056px;}
.ws104{word-spacing:940.539258px;}
.wsd6{word-spacing:943.119258px;}
._13{margin-left:-30.521448px;}
._1d{margin-left:-9.501930px;}
._1e{margin-left:-8.379348px;}
._3{margin-left:-6.714006px;}
._11{margin-left:-5.568102px;}
._1{margin-left:-4.131696px;}
._4{margin-left:-3.098772px;}
._2{margin-left:-1.549386px;}
._0{width:1.386797px;}
._53{width:3.267936px;}
._58{width:4.517831px;}
._54{width:5.705586px;}
._57{width:6.810840px;}
._56{width:9.343530px;}
._55{width:10.935360px;}
._c{width:14.568599px;}
._a{width:16.236349px;}
._51{width:17.365428px;}
._6{width:18.590212px;}
._f{width:20.315952px;}
._7{width:21.693763px;}
._17{width:23.028570px;}
._8{width:24.089567px;}
._1f{width:25.441716px;}
._10{width:26.740638px;}
._29{width:27.840510px;}
._12{width:28.940382px;}
._50{width:30.008574px;}
._18{width:31.071384px;}
._b{width:33.002454px;}
._1b{width:34.096032px;}
._5{width:35.387155px;}
._19{width:36.470322px;}
._15{width:38.569644px;}
._d{width:39.870360px;}
._14{width:41.932620px;}
._41{width:43.101234px;}
._e{width:44.476074px;}
._20{width:45.544266px;}
._1a{width:46.882044px;}
._1c{width:48.188142px;}
._52{width:49.219272px;}
._37{width:50.800338px;}
._38{width:52.968402px;}
._4f{width:55.131084px;}
._42{width:56.617110px;}
._2d{width:58.155732px;}
._9{width:59.586714px;}
._2a{width:66.336030px;}
._16{width:67.367160px;}
._2b{width:70.492230px;}
._25{width:71.730720px;}
._2c{width:77.708400px;}
._43{width:80.154300px;}
._44{width:81.175265px;}
._46{width:82.550104px;}
._4d{width:84.393588px;}
._49{width:85.837762px;}
._45{width:91.337117px;}
._32{width:92.472853px;}
._4a{width:95.282306px;}
._22{width:96.413263px;}
._28{width:100.183906px;}
._47{width:109.518458px;}
._48{width:110.764187px;}
._2f{width:118.884109px;}
._4e{width:124.871228px;}
._3a{width:142.385479px;}
._23{width:153.085312px;}
._26{width:154.759028px;}
._27{width:160.731809px;}
._21{width:164.084022px;}
._4c{width:170.415456px;}
._4b{width:179.027922px;}
._39{width:183.690419px;}
._3b{width:187.097628px;}
._2e{width:211.187195px;}
._24{width:216.985428px;}
._30{width:240.238136px;}
._33{width:244.960409px;}
._3d{width:294.650580px;}
._34{width:338.389672px;}
._35{width:489.562164px;}
._3c{width:497.627090px;}
._31{width:563.973227px;}
._40{width:684.311069px;}
._3f{width:695.907535px;}
._3e{width:778.687182px;}
._36{width:1150.699439px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:41.245800px;}
.fs6{font-size:44.233800px;}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.308500px;}
.yb8{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.ye4{bottom:89.719500px;}
.y52{bottom:90.733500px;}
.y15c{bottom:92.563500px;}
.y16c{bottom:93.577500px;}
.y13d{bottom:94.444500px;}
.y146{bottom:95.458500px;}
.y1c7{bottom:99.745500px;}
.y25{bottom:99.769500px;}
.y1a0{bottom:100.692000px;}
.y1e3{bottom:100.759500px;}
.y188{bottom:103.536000px;}
.y100{bottom:105.937500px;}
.y94{bottom:106.497000px;}
.y110{bottom:106.951500px;}
.yb7{bottom:107.511000px;}
.ye3{bottom:112.516500px;}
.y51{bottom:113.530500px;}
.y15b{bottom:115.360500px;}
.y16b{bottom:116.374500px;}
.y13c{bottom:117.241500px;}
.y145{bottom:118.255500px;}
.y1c6{bottom:122.542500px;}
.y24{bottom:122.566500px;}
.y19f{bottom:123.489000px;}
.y1e2{bottom:123.556500px;}
.y187{bottom:126.333000px;}
.y1f4{bottom:127.092000px;}
.yff{bottom:128.734500px;}
.y93{bottom:129.294000px;}
.y10f{bottom:129.748500px;}
.yb6{bottom:130.308000px;}
.ye2{bottom:135.313500px;}
.y50{bottom:136.327500px;}
.y15a{bottom:138.157500px;}
.y16a{bottom:139.171500px;}
.y13b{bottom:140.038500px;}
.y144{bottom:141.052500px;}
.y18b{bottom:142.767000px;}
.y1c5{bottom:145.339500px;}
.y23{bottom:145.363500px;}
.y19e{bottom:146.286000px;}
.y1e1{bottom:146.353500px;}
.y186{bottom:149.130000px;}
.y1f3{bottom:149.889000px;}
.yfe{bottom:151.531500px;}
.y92{bottom:152.091000px;}
.y10e{bottom:152.545500px;}
.yb5{bottom:153.105000px;}
.ye1{bottom:158.110500px;}
.y4f{bottom:159.124500px;}
.y159{bottom:160.954500px;}
.y169{bottom:161.968500px;}
.y13a{bottom:162.835500px;}
.y143{bottom:163.849500px;}
.y1c4{bottom:168.136500px;}
.y22{bottom:168.160500px;}
.y19d{bottom:169.083000px;}
.y1e0{bottom:169.150500px;}
.y185{bottom:171.927000px;}
.y18a{bottom:172.678500px;}
.y1f2{bottom:172.686000px;}
.yfd{bottom:174.328500px;}
.y91{bottom:174.888000px;}
.y10d{bottom:175.342500px;}
.yb4{bottom:175.902000px;}
.ye0{bottom:180.907500px;}
.y4e{bottom:181.921500px;}
.y158{bottom:183.751500px;}
.y6a{bottom:183.856500px;}
.y168{bottom:184.765500px;}
.y139{bottom:185.632500px;}
.y142{bottom:186.646500px;}
.y1c3{bottom:190.933500px;}
.y19c{bottom:191.880000px;}
.y1df{bottom:191.947500px;}
.y184{bottom:194.724000px;}
.y1f1{bottom:195.483000px;}
.yfc{bottom:197.125500px;}
.y90{bottom:197.685000px;}
.y10c{bottom:198.139500px;}
.yb3{bottom:198.699000px;}
.ydf{bottom:203.704500px;}
.y4d{bottom:204.718500px;}
.y157{bottom:206.548500px;}
.y69{bottom:206.653500px;}
.y167{bottom:207.562500px;}
.y138{bottom:208.429500px;}
.y141{bottom:209.443500px;}
.y1c2{bottom:213.730500px;}
.y19b{bottom:214.677000px;}
.y1de{bottom:214.744500px;}
.y189{bottom:216.423000px;}
.y183{bottom:217.521000px;}
.y1f0{bottom:218.280000px;}
.y21{bottom:219.351000px;}
.yfb{bottom:219.922500px;}
.y8f{bottom:220.482000px;}
.y10b{bottom:220.936500px;}
.yb2{bottom:221.496000px;}
.yde{bottom:226.501500px;}
.y4c{bottom:227.515500px;}
.y156{bottom:229.345500px;}
.y68{bottom:229.450500px;}
.y166{bottom:230.359500px;}
.y137{bottom:231.226500px;}
.y140{bottom:232.240500px;}
.y1c1{bottom:236.527500px;}
.y19a{bottom:237.474000px;}
.y1dd{bottom:237.541500px;}
.y1ef{bottom:241.078500px;}
.yfa{bottom:242.719500px;}
.y8e{bottom:243.280500px;}
.y10a{bottom:243.733500px;}
.yb1{bottom:244.294500px;}
.ydd{bottom:249.298500px;}
.y4b{bottom:250.312500px;}
.y155{bottom:252.142500px;}
.y67{bottom:252.247500px;}
.y165{bottom:253.156500px;}
.y136{bottom:254.023500px;}
.y13f{bottom:255.037500px;}
.y1c0{bottom:259.324500px;}
.y199{bottom:260.271000px;}
.y1dc{bottom:260.338500px;}
.y182{bottom:260.374500px;}
.y20{bottom:260.524500px;}
.y1ee{bottom:263.875500px;}
.yf9{bottom:265.516500px;}
.y8d{bottom:266.077500px;}
.y109{bottom:266.530500px;}
.yb0{bottom:267.091500px;}
.ydc{bottom:272.097000px;}
.y4a{bottom:273.109500px;}
.y154{bottom:274.939500px;}
.y66{bottom:275.044500px;}
.y164{bottom:275.953500px;}
.y135{bottom:276.822000px;}
.y13e{bottom:277.834500px;}
.y1f{bottom:279.100500px;}
.y1bf{bottom:282.121500px;}
.y181{bottom:282.783000px;}
.y198{bottom:283.068000px;}
.y1db{bottom:283.135500px;}
.y1ed{bottom:286.672500px;}
.yf8{bottom:288.313500px;}
.y8c{bottom:288.874500px;}
.y108{bottom:289.327500px;}
.yaf{bottom:289.888500px;}
.ydb{bottom:294.894000px;}
.y49{bottom:295.908000px;}
.y1e{bottom:295.990500px;}
.y153{bottom:297.736500px;}
.y65{bottom:297.841500px;}
.y163{bottom:298.750500px;}
.y1f6{bottom:299.653500px;}
.y1be{bottom:304.918500px;}
.y180{bottom:305.191500px;}
.y197{bottom:305.865000px;}
.y1da{bottom:305.932500px;}
.y1ec{bottom:309.469500px;}
.yf7{bottom:311.112000px;}
.y8b{bottom:311.671500px;}
.y107{bottom:312.124500px;}
.yae{bottom:312.685500px;}
.yda{bottom:317.691000px;}
.y1d{bottom:317.944500px;}
.y134{bottom:318.565500px;}
.y48{bottom:318.705000px;}
.y152{bottom:320.535000px;}
.y64{bottom:320.638500px;}
.y162{bottom:321.547500px;}
.y1bd{bottom:327.715500px;}
.y196{bottom:328.662000px;}
.y1d9{bottom:328.729500px;}
.y1eb{bottom:332.266500px;}
.yf6{bottom:333.909000px;}
.y8a{bottom:334.468500px;}
.y106{bottom:334.923000px;}
.y17f{bottom:335.103000px;}
.yad{bottom:335.482500px;}
.yd9{bottom:340.488000px;}
.y1c{bottom:340.617000px;}
.y133{bottom:341.362500px;}
.y47{bottom:341.502000px;}
.y151{bottom:343.332000px;}
.y63{bottom:343.435500px;}
.y161{bottom:344.346000px;}
.y1bc{bottom:350.512500px;}
.y195{bottom:351.460500px;}
.y1d8{bottom:351.526500px;}
.y1ea{bottom:355.063500px;}
.yf5{bottom:356.706000px;}
.y89{bottom:357.265500px;}
.y105{bottom:357.720000px;}
.yac{bottom:358.279500px;}
.yd8{bottom:363.285000px;}
.y132{bottom:364.159500px;}
.y46{bottom:364.299000px;}
.y150{bottom:366.129000px;}
.y62{bottom:366.232500px;}
.y160{bottom:367.143000px;}
.y1bb{bottom:373.309500px;}
.y194{bottom:374.257500px;}
.y1d7{bottom:374.323500px;}
.y1b{bottom:376.020000px;}
.y1e9{bottom:377.860500px;}
.y17e{bottom:378.846000px;}
.yf4{bottom:379.503000px;}
.y88{bottom:380.062500px;}
.y104{bottom:380.517000px;}
.yab{bottom:381.076500px;}
.yd7{bottom:386.082000px;}
.y131{bottom:386.956500px;}
.y45{bottom:387.096000px;}
.y14f{bottom:388.926000px;}
.y61{bottom:389.029500px;}
.y15f{bottom:389.940000px;}
.y1ba{bottom:396.106500px;}
.y193{bottom:397.054500px;}
.y1d6{bottom:397.120500px;}
.y1a{bottom:397.972500px;}
.y1e8{bottom:400.657500px;}
.yf3{bottom:402.300000px;}
.y87{bottom:402.859500px;}
.y103{bottom:403.314000px;}
.yaa{bottom:403.873500px;}
.yd6{bottom:408.879000px;}
.y130{bottom:409.753500px;}
.y44{bottom:409.893000px;}
.y14e{bottom:411.723000px;}
.y60{bottom:411.828000px;}
.y15e{bottom:412.737000px;}
.y1b9{bottom:418.905000px;}
.y192{bottom:419.851500px;}
.y1d5{bottom:419.919000px;}
.y19{bottom:419.925000px;}
.y1e7{bottom:423.454500px;}
.yf2{bottom:425.097000px;}
.y86{bottom:425.656500px;}
.y102{bottom:426.111000px;}
.ya9{bottom:426.670500px;}
.yd5{bottom:431.676000px;}
.y12f{bottom:432.550500px;}
.y43{bottom:432.690000px;}
.y14d{bottom:434.520000px;}
.y5f{bottom:434.625000px;}
.y15d{bottom:435.534000px;}
.y1b8{bottom:441.702000px;}
.y18{bottom:441.879000px;}
.y191{bottom:442.648500px;}
.y1d4{bottom:442.716000px;}
.y1e6{bottom:446.251500px;}
.yf1{bottom:447.894000px;}
.y85{bottom:448.453500px;}
.y101{bottom:448.908000px;}
.ya8{bottom:449.467500px;}
.yd4{bottom:454.473000px;}
.y42{bottom:455.487000px;}
.y5e{bottom:457.422000px;}
.y17d{bottom:458.331000px;}
.y17{bottom:463.831500px;}
.y1b7{bottom:464.499000px;}
.y1d3{bottom:465.513000px;}
.y12e{bottom:465.808500px;}
.y1e5{bottom:469.048500px;}
.y84{bottom:471.250500px;}
.ya7{bottom:472.264500px;}
.yd3{bottom:477.270000px;}
.y41{bottom:478.284000px;}
.y14c{bottom:478.387500px;}
.y5d{bottom:480.219000px;}
.y17c{bottom:481.128000px;}
.y190{bottom:485.502000px;}
.y16{bottom:485.784000px;}
.y1b6{bottom:487.296000px;}
.y1d2{bottom:488.310000px;}
.yf0{bottom:491.761500px;}
.y83{bottom:494.047500px;}
.ya6{bottom:495.061500px;}
.yd2{bottom:500.067000px;}
.y40{bottom:501.081000px;}
.y1e4{bottom:502.306500px;}
.y5c{bottom:503.016000px;}
.y17b{bottom:503.925000px;}
.y15{bottom:507.736500px;}
.y18f{bottom:507.910500px;}
.y14b{bottom:508.299000px;}
.y1b5{bottom:510.093000px;}
.y12d{bottom:510.810000px;}
.y1d1{bottom:511.107000px;}
.y82{bottom:516.844500px;}
.yef{bottom:517.158000px;}
.ya5{bottom:517.858500px;}
.yd1{bottom:522.864000px;}
.y3f{bottom:523.878000px;}
.y5b{bottom:525.813000px;}
.y17a{bottom:526.722000px;}
.y14{bottom:529.689000px;}
.y18e{bottom:530.319000px;}
.y14a{bottom:530.707500px;}
.y11e{bottom:532.593000px;}
.y1b4{bottom:532.890000px;}
.y12c{bottom:533.607000px;}
.y1d0{bottom:533.904000px;}
.y81{bottom:539.643000px;}
.ya4{bottom:540.655500px;}
.yee{bottom:542.556000px;}
.yd0{bottom:545.661000px;}
.y3e{bottom:546.675000px;}
.y5a{bottom:548.610000px;}
.y179{bottom:549.519000px;}
.y13{bottom:551.641500px;}
.y149{bottom:553.116000px;}
.y11d{bottom:555.390000px;}
.y1b3{bottom:555.687000px;}
.y12b{bottom:556.404000px;}
.y1cf{bottom:556.701000px;}
.y18d{bottom:560.230500px;}
.y80{bottom:562.440000px;}
.ya3{bottom:563.454000px;}
.ycf{bottom:568.458000px;}
.y3d{bottom:569.472000px;}
.y59{bottom:571.407000px;}
.y178{bottom:572.316000px;}
.yed{bottom:572.467500px;}
.y12{bottom:573.595500px;}
.y11c{bottom:578.187000px;}
.y1b2{bottom:578.484000px;}
.y12a{bottom:579.201000px;}
.y1ce{bottom:579.498000px;}
.y148{bottom:583.027500px;}
.y7f{bottom:585.237000px;}
.ya2{bottom:586.251000px;}
.yce{bottom:591.256500px;}
.y3c{bottom:592.269000px;}
.y58{bottom:594.204000px;}
.y177{bottom:595.113000px;}
.y11{bottom:595.548000px;}
.y11b{bottom:600.984000px;}
.y1b1{bottom:601.281000px;}
.y129{bottom:601.998000px;}
.y1cd{bottom:602.295000px;}
.y18c{bottom:603.973500px;}
.y7e{bottom:608.034000px;}
.ya1{bottom:609.048000px;}
.ycd{bottom:614.053500px;}
.y3b{bottom:615.067500px;}
.yec{bottom:616.210500px;}
.y57{bottom:617.001000px;}
.y10{bottom:617.500500px;}
.y176{bottom:617.910000px;}
.y11a{bottom:623.781000px;}
.y1b0{bottom:624.078000px;}
.y128{bottom:624.795000px;}
.y1cc{bottom:625.092000px;}
.y147{bottom:626.770500px;}
.y7d{bottom:630.831000px;}
.ya0{bottom:631.845000px;}
.ycc{bottom:636.850500px;}
.y3a{bottom:637.864500px;}
.yf{bottom:639.453000px;}
.y56{bottom:639.798000px;}
.y175{bottom:640.708500px;}
.y119{bottom:646.578000px;}
.y1af{bottom:646.875000px;}
.y127{bottom:647.592000px;}
.y1cb{bottom:647.889000px;}
.y7c{bottom:653.628000px;}
.y9f{bottom:654.642000px;}
.yeb{bottom:656.700000px;}
.ycb{bottom:659.647500px;}
.y39{bottom:660.661500px;}
.ye{bottom:661.405500px;}
.y55{bottom:661.581000px;}
.y174{bottom:663.505500px;}
.y118{bottom:669.376500px;}
.y1ae{bottom:669.672000px;}
.y126{bottom:670.390500px;}
.y1ca{bottom:670.686000px;}
.y7b{bottom:676.425000px;}
.y9e{bottom:677.439000px;}
.yea{bottom:682.098000px;}
.yca{bottom:682.444500px;}
.yd{bottom:683.359500px;}
.y38{bottom:683.458500px;}
.y173{bottom:686.302500px;}
.y117{bottom:692.173500px;}
.y1ad{bottom:692.469000px;}
.y125{bottom:693.187500px;}
.y1c9{bottom:693.483000px;}
.y7a{bottom:699.222000px;}
.y9d{bottom:700.236000px;}
.yc9{bottom:705.241500px;}
.yc{bottom:705.312000px;}
.y37{bottom:706.255500px;}
.ye9{bottom:707.494500px;}
.y116{bottom:714.970500px;}
.y1ac{bottom:715.267500px;}
.y124{bottom:715.984500px;}
.y1c8{bottom:716.280000px;}
.y79{bottom:722.019000px;}
.y9c{bottom:723.033000px;}
.yb{bottom:727.264500px;}
.yc8{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.y172{bottom:729.154500px;}
.ye8{bottom:732.892500px;}
.y115{bottom:737.767500px;}
.y123{bottom:738.781500px;}
.y78{bottom:744.816000px;}
.y9b{bottom:745.830000px;}
.ya{bottom:749.217000px;}
.yc7{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.y1ab{bottom:757.011000px;}
.ye7{bottom:758.289000px;}
.y171{bottom:759.066000px;}
.y114{bottom:760.564500px;}
.y122{bottom:761.578500px;}
.y77{bottom:767.613000px;}
.y9a{bottom:768.627000px;}
.y9{bottom:771.169500px;}
.yc6{bottom:773.632500px;}
.y34{bottom:774.646500px;}
.y1aa{bottom:779.808000px;}
.y170{bottom:781.474500px;}
.y113{bottom:783.361500px;}
.y121{bottom:784.375500px;}
.ye6{bottom:788.200500px;}
.y76{bottom:790.410000px;}
.y99{bottom:791.424000px;}
.y8{bottom:793.122000px;}
.yc5{bottom:796.429500px;}
.y33{bottom:797.443500px;}
.y1a9{bottom:802.605000px;}
.y16f{bottom:803.883000px;}
.y112{bottom:806.158500px;}
.y120{bottom:807.172500px;}
.y75{bottom:813.207000px;}
.y98{bottom:814.221000px;}
.y7{bottom:815.076000px;}
.yc4{bottom:819.226500px;}
.y32{bottom:820.240500px;}
.y1a8{bottom:825.402000px;}
.y111{bottom:828.955500px;}
.y11f{bottom:829.969500px;}
.ye5{bottom:831.945000px;}
.y16e{bottom:833.794500px;}
.y74{bottom:836.004000px;}
.y97{bottom:837.018000px;}
.yc3{bottom:842.023500px;}
.y31{bottom:843.037500px;}
.y1a7{bottom:848.199000px;}
.y73{bottom:858.802500px;}
.y96{bottom:859.815000px;}
.yc2{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.y1a6{bottom:870.996000px;}
.y16d{bottom:877.539000px;}
.y6{bottom:880.816500px;}
.y72{bottom:881.599500px;}
.y95{bottom:882.613500px;}
.y1f5{bottom:886.234500px;}
.yc1{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.y1a5{bottom:893.793000px;}
.yc0{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y1a4{bottom:916.590000px;}
.y5{bottom:922.197000px;}
.y71{bottom:923.343000px;}
.ybf{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.y70{bottom:946.140000px;}
.y1a3{bottom:949.848000px;}
.ybe{bottom:956.010000px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.y6f{bottom:968.937000px;}
.ybd{bottom:978.807000px;}
.y2b{bottom:979.821000px;}
.y6e{bottom:991.734000px;}
.y1a2{bottom:996.340500px;}
.y3{bottom:996.498000px;}
.ybc{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.y6d{bottom:1014.531000px;}
.ybb{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.y1a1{bottom:1026.252000px;}
.y6c{bottom:1037.328000px;}
.yba{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.yb9{bottom:1069.995000px;}
.y6b{bottom:1070.586000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.hd{height:28.377110px;}
.h1{height:35.865450px;}
.h6{height:37.013299px;}
.h5{height:41.125613px;}
.h4{height:41.364715px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.hc{height:52.128854px;}
.h3{height:53.463379px;}
.h7{height:53.774213px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:127.558500px;}
.x16{left:136.525500px;}
.x1e{left:148.227000px;}
.x20{left:149.661000px;}
.x17{left:151.044000px;}
.xd{left:153.070500px;}
.x22{left:157.599000px;}
.x3{left:162.570000px;}
.x19{left:171.390000px;}
.x7{left:178.044000px;}
.x21{left:180.270000px;}
.xb{left:182.308500px;}
.x18{left:197.685000px;}
.x9{left:222.988500px;}
.x1b{left:232.047000px;}
.x5{left:233.208000px;}
.x23{left:270.534000px;}
.x1a{left:276.385500px;}
.x1d{left:287.839500px;}
.x12{left:295.183500px;}
.x13{left:304.738500px;}
.x14{left:315.294000px;}
.xa{left:316.492500px;}
.x6{left:371.608500px;}
.xf{left:404.373000px;}
.x8{left:410.130000px;}
.xc{left:432.832500px;}
.x1c{left:447.636000px;}
.x10{left:452.577000px;}
.x1f{left:461.493000px;}
.xe{left:464.346000px;}
.x15{left:489.858000px;}
.x2{left:573.774000px;}
.x11{left:578.070000px;}
.x1{left:696.322500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:1.283184pt;}
.lsa{letter-spacing:2.260848pt;}
.ls0{letter-spacing:2.656693pt;}
.ls5{letter-spacing:7.385607pt;}
.ls15{letter-spacing:12.404112pt;}
.ls17{letter-spacing:14.726064pt;}
.ls7{letter-spacing:14.909376pt;}
.ls13{letter-spacing:15.031584pt;}
.ls8{letter-spacing:15.092688pt;}
.lse{letter-spacing:15.214896pt;}
.ls9{letter-spacing:15.276000pt;}
.ls16{letter-spacing:15.337104pt;}
.ls10{letter-spacing:15.459312pt;}
.ls12{letter-spacing:15.642624pt;}
.lsf{letter-spacing:16.742496pt;}
.ls11{letter-spacing:17.170224pt;}
.lsd{letter-spacing:17.597952pt;}
.lsb{letter-spacing:19.492176pt;}
.ls14{letter-spacing:23.219520pt;}
.ls6{letter-spacing:76.256253pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws4b{word-spacing:-15.276000pt;}
.wscf{word-spacing:-13.283467pt;}
.ws102{word-spacing:-6.782544pt;}
.wsce{word-spacing:-5.950993pt;}
.ws81{word-spacing:-3.360720pt;}
.ws5d{word-spacing:-3.299616pt;}
.ws28{word-spacing:-3.116304pt;}
.wsbd{word-spacing:-3.055200pt;}
.wse5{word-spacing:-2.871888pt;}
.wse4{word-spacing:-2.749680pt;}
.ws13{word-spacing:-2.656693pt;}
.ws101{word-spacing:-2.627472pt;}
.wsd8{word-spacing:-2.505264pt;}
.ws5e{word-spacing:-2.321952pt;}
.ws82{word-spacing:-2.260848pt;}
.ws69{word-spacing:-2.138640pt;}
.ws24{word-spacing:-2.077536pt;}
.wsff{word-spacing:-2.016432pt;}
.ws77{word-spacing:-1.955328pt;}
.wsc3{word-spacing:-1.894224pt;}
.wsb2{word-spacing:-1.833120pt;}
.wsf5{word-spacing:-1.772016pt;}
.ws59{word-spacing:-1.710912pt;}
.ws7d{word-spacing:-1.649808pt;}
.wse3{word-spacing:-1.588704pt;}
.wsa0{word-spacing:-1.527600pt;}
.ws88{word-spacing:-1.405392pt;}
.ws5c{word-spacing:-1.344288pt;}
.ws75{word-spacing:-1.283184pt;}
.wsa2{word-spacing:-1.222080pt;}
.ws8f{word-spacing:-1.160976pt;}
.ws80{word-spacing:-1.099872pt;}
.wsc5{word-spacing:-1.038768pt;}
.ws3a{word-spacing:-0.916560pt;}
.ws6a{word-spacing:-0.855456pt;}
.ws18{word-spacing:-0.794352pt;}
.wsc9{word-spacing:-0.733248pt;}
.ws47{word-spacing:-0.672144pt;}
.ws7c{word-spacing:-0.611040pt;}
.ws41{word-spacing:-0.549936pt;}
.wsa1{word-spacing:-0.488832pt;}
.ws94{word-spacing:-0.427728pt;}
.wsb{word-spacing:-0.425071pt;}
.ws3d{word-spacing:-0.366624pt;}
.ws30{word-spacing:-0.305520pt;}
.wsf{word-spacing:-0.265669pt;}
.ws16{word-spacing:-0.244416pt;}
.ws3b{word-spacing:-0.183312pt;}
.ws5{word-spacing:-0.159402pt;}
.ws22{word-spacing:-0.122208pt;}
.ws8{word-spacing:-0.106268pt;}
.ws25{word-spacing:-0.061104pt;}
.ws12{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.wsd0{word-spacing:-0.039319pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:0.053134pt;}
.ws34{word-spacing:0.061104pt;}
.ws14{word-spacing:0.095642pt;}
.ws20{word-spacing:0.122208pt;}
.ws2a{word-spacing:0.183312pt;}
.ws36{word-spacing:0.244416pt;}
.ws29{word-spacing:0.305520pt;}
.ws21{word-spacing:0.366624pt;}
.ws3{word-spacing:0.367262pt;}
.ws57{word-spacing:0.427728pt;}
.wse{word-spacing:0.478205pt;}
.ws5b{word-spacing:0.488832pt;}
.ws3f{word-spacing:0.549936pt;}
.ws2c{word-spacing:0.611040pt;}
.ws73{word-spacing:0.672144pt;}
.wsed{word-spacing:0.733248pt;}
.wsf1{word-spacing:0.794352pt;}
.ws8b{word-spacing:0.855456pt;}
.ws8a{word-spacing:0.916560pt;}
.ws7f{word-spacing:0.977664pt;}
.wsa{word-spacing:1.009543pt;}
.wsa8{word-spacing:1.038768pt;}
.wsa6{word-spacing:1.099872pt;}
.ws96{word-spacing:1.160976pt;}
.ws9d{word-spacing:1.222080pt;}
.ws2f{word-spacing:1.283184pt;}
.wsd9{word-spacing:1.344288pt;}
.ws2d{word-spacing:1.405392pt;}
.ws61{word-spacing:1.466496pt;}
.ws31{word-spacing:1.527600pt;}
.ws9e{word-spacing:1.588704pt;}
.ws10{word-spacing:1.647150pt;}
.ws3e{word-spacing:1.649808pt;}
.ws62{word-spacing:1.710912pt;}
.ws11{word-spacing:1.753418pt;}
.ws2e{word-spacing:1.772016pt;}
.wsda{word-spacing:1.833120pt;}
.wsf8{word-spacing:1.894224pt;}
.ws6b{word-spacing:1.955328pt;}
.ws67{word-spacing:2.016432pt;}
.ws33{word-spacing:2.077536pt;}
.ws4d{word-spacing:2.138640pt;}
.wsbc{word-spacing:2.199744pt;}
.ws52{word-spacing:2.260848pt;}
.wsa7{word-spacing:2.321952pt;}
.ws66{word-spacing:2.444160pt;}
.ws1f{word-spacing:2.505264pt;}
.wsb4{word-spacing:2.566368pt;}
.ws5a{word-spacing:2.627472pt;}
.ws63{word-spacing:2.688576pt;}
.ws27{word-spacing:2.749680pt;}
.ws6c{word-spacing:2.810784pt;}
.ws84{word-spacing:2.871888pt;}
.ws37{word-spacing:2.932992pt;}
.ws68{word-spacing:2.994096pt;}
.ws1c{word-spacing:3.055200pt;}
.ws9a{word-spacing:3.116304pt;}
.wsfe{word-spacing:3.177408pt;}
.wsd4{word-spacing:3.238512pt;}
.ws8d{word-spacing:3.299616pt;}
.ws43{word-spacing:3.360720pt;}
.ws4f{word-spacing:3.421824pt;}
.ws42{word-spacing:3.482928pt;}
.ws72{word-spacing:3.544032pt;}
.ws55{word-spacing:3.605136pt;}
.ws95{word-spacing:3.666240pt;}
.wsc{word-spacing:3.719371pt;}
.ws7e{word-spacing:3.727344pt;}
.wsdc{word-spacing:3.788448pt;}
.ws76{word-spacing:3.849552pt;}
.wscb{word-spacing:3.910656pt;}
.ws6f{word-spacing:3.971760pt;}
.ws9f{word-spacing:4.032864pt;}
.ws6{word-spacing:4.091308pt;}
.ws90{word-spacing:4.093968pt;}
.ws2b{word-spacing:4.155072pt;}
.ws17{word-spacing:4.216176pt;}
.ws40{word-spacing:4.277280pt;}
.ws32{word-spacing:4.338384pt;}
.ws9b{word-spacing:4.399488pt;}
.ws1a{word-spacing:4.460592pt;}
.ws98{word-spacing:4.521696pt;}
.ws7b{word-spacing:4.582800pt;}
.wseb{word-spacing:4.643904pt;}
.wsd{word-spacing:4.675780pt;}
.ws4c{word-spacing:4.705008pt;}
.ws8e{word-spacing:4.766112pt;}
.ws4a{word-spacing:4.827216pt;}
.ws7{word-spacing:4.835182pt;}
.ws56{word-spacing:4.888320pt;}
.ws51{word-spacing:4.949424pt;}
.ws87{word-spacing:5.010528pt;}
.ws49{word-spacing:5.071632pt;}
.ws91{word-spacing:5.132736pt;}
.ws70{word-spacing:5.254944pt;}
.ws4e{word-spacing:5.316048pt;}
.ws1b{word-spacing:5.377152pt;}
.ws35{word-spacing:5.438256pt;}
.ws54{word-spacing:5.499360pt;}
.ws9c{word-spacing:5.621568pt;}
.ws53{word-spacing:5.682672pt;}
.ws7a{word-spacing:5.743776pt;}
.ws79{word-spacing:5.804880pt;}
.ws8c{word-spacing:5.927088pt;}
.ws50{word-spacing:5.988192pt;}
.ws93{word-spacing:6.049296pt;}
.wsc0{word-spacing:6.110400pt;}
.ws99{word-spacing:6.171504pt;}
.wsd5{word-spacing:6.232608pt;}
.ws65{word-spacing:6.293712pt;}
.ws60{word-spacing:6.354816pt;}
.wsc7{word-spacing:6.415920pt;}
.wsab{word-spacing:6.477024pt;}
.ws26{word-spacing:6.538128pt;}
.ws5f{word-spacing:6.599232pt;}
.ws85{word-spacing:6.660336pt;}
.ws103{word-spacing:6.690720pt;}
.ws1e{word-spacing:6.721440pt;}
.wsa9{word-spacing:6.782544pt;}
.wsb7{word-spacing:6.843648pt;}
.ws3c{word-spacing:6.904752pt;}
.wsec{word-spacing:6.965856pt;}
.wsf7{word-spacing:7.026960pt;}
.ws39{word-spacing:7.088064pt;}
.ws92{word-spacing:7.149168pt;}
.ws64{word-spacing:7.210272pt;}
.wsaa{word-spacing:7.271376pt;}
.ws44{word-spacing:7.332480pt;}
.ws6e{word-spacing:7.393584pt;}
.wsef{word-spacing:7.454688pt;}
.ws23{word-spacing:7.515792pt;}
.wsad{word-spacing:7.576896pt;}
.ws74{word-spacing:7.638000pt;}
.wsb0{word-spacing:7.760208pt;}
.ws58{word-spacing:7.821312pt;}
.ws78{word-spacing:7.882416pt;}
.ws48{word-spacing:7.943520pt;}
.wsc1{word-spacing:8.004624pt;}
.wsac{word-spacing:8.065728pt;}
.ws19{word-spacing:8.126832pt;}
.wsea{word-spacing:8.187936pt;}
.ws45{word-spacing:8.249040pt;}
.ws46{word-spacing:8.310144pt;}
.wsc2{word-spacing:8.371248pt;}
.wsee{word-spacing:8.432352pt;}
.wsdd{word-spacing:8.493456pt;}
.ws38{word-spacing:8.554560pt;}
.wsdf{word-spacing:8.615664pt;}
.ws100{word-spacing:8.676768pt;}
.wsfd{word-spacing:8.737872pt;}
.ws97{word-spacing:8.798976pt;}
.ws86{word-spacing:9.043392pt;}
.wsb6{word-spacing:9.104496pt;}
.ws83{word-spacing:9.165600pt;}
.wsc4{word-spacing:9.226704pt;}
.wsf4{word-spacing:9.287808pt;}
.wse7{word-spacing:9.348912pt;}
.wsf9{word-spacing:9.410016pt;}
.wsba{word-spacing:9.471120pt;}
.wsf2{word-spacing:9.532224pt;}
.wse9{word-spacing:9.776640pt;}
.wsdb{word-spacing:10.021056pt;}
.wsde{word-spacing:10.082160pt;}
.wsc8{word-spacing:10.509888pt;}
.wsbb{word-spacing:10.754304pt;}
.ws1d{word-spacing:10.815408pt;}
.wsf3{word-spacing:10.937616pt;}
.ws6d{word-spacing:10.998720pt;}
.wsca{word-spacing:11.120928pt;}
.wsb5{word-spacing:11.182032pt;}
.wsd7{word-spacing:11.487552pt;}
.wse8{word-spacing:12.098592pt;}
.wsbe{word-spacing:12.281904pt;}
.wsfa{word-spacing:12.404112pt;}
.ws71{word-spacing:12.465216pt;}
.wsb9{word-spacing:12.526320pt;}
.wse2{word-spacing:12.892944pt;}
.wsbf{word-spacing:13.015152pt;}
.wsc6{word-spacing:13.137360pt;}
.wsa3{word-spacing:13.230333pt;}
.wsb1{word-spacing:14.176128pt;}
.wse6{word-spacing:14.542752pt;}
.wsb8{word-spacing:14.726064pt;}
.ws0{word-spacing:15.005042pt;}
.wsfc{word-spacing:15.031584pt;}
.ws4{word-spacing:16.312097pt;}
.wsb3{word-spacing:17.199459pt;}
.wsaf{word-spacing:20.530944pt;}
.wsae{word-spacing:20.592048pt;}
.wse0{word-spacing:21.386400pt;}
.ws89{word-spacing:29.574336pt;}
.wsfb{word-spacing:31.712976pt;}
.wsa5{word-spacing:37.517856pt;}
.wsf6{word-spacing:44.605920pt;}
.wsf0{word-spacing:46.744560pt;}
.wse1{word-spacing:50.477173pt;}
.wsd3{word-spacing:53.187001pt;}
.wsd2{word-spacing:56.596386pt;}
.wsa4{word-spacing:63.707506pt;}
.wsd1{word-spacing:66.470467pt;}
.ws15{word-spacing:69.005059pt;}
.wscd{word-spacing:76.300233pt;}
.wscc{word-spacing:117.904050pt;}
.ws104{word-spacing:836.034896pt;}
.wsd6{word-spacing:838.328229pt;}
._13{margin-left:-27.130176pt;}
._1d{margin-left:-8.446160pt;}
._1e{margin-left:-7.448309pt;}
._3{margin-left:-5.968005pt;}
._11{margin-left:-4.949424pt;}
._1{margin-left:-3.672619pt;}
._4{margin-left:-2.754464pt;}
._2{margin-left:-1.377232pt;}
._0{width:1.232709pt;}
._53{width:2.904832pt;}
._58{width:4.015850pt;}
._54{width:5.071632pt;}
._57{width:6.054080pt;}
._56{width:8.305360pt;}
._55{width:9.720320pt;}
._c{width:12.949866pt;}
._a{width:14.432310pt;}
._51{width:15.435936pt;}
._6{width:16.524633pt;}
._f{width:18.058624pt;}
._7{width:19.283345pt;}
._17{width:20.469840pt;}
._8{width:21.412948pt;}
._1f{width:22.614859pt;}
._10{width:23.769456pt;}
._29{width:24.747120pt;}
._12{width:25.724784pt;}
._50{width:26.674288pt;}
._18{width:27.619008pt;}
._b{width:29.335515pt;}
._1b{width:30.307584pt;}
._5{width:31.455249pt;}
._19{width:32.418064pt;}
._15{width:34.284128pt;}
._d{width:35.440320pt;}
._14{width:37.273440pt;}
._41{width:38.312208pt;}
._e{width:39.534288pt;}
._20{width:40.483792pt;}
._1a{width:41.672928pt;}
._1c{width:42.833904pt;}
._52{width:43.750464pt;}
._37{width:45.155856pt;}
._38{width:47.083024pt;}
._4f{width:49.005408pt;}
._42{width:50.326320pt;}
._2d{width:51.693984pt;}
._9{width:52.965968pt;}
._2a{width:58.965360pt;}
._16{width:59.881920pt;}
._2b{width:62.659760pt;}
._25{width:63.760640pt;}
._2c{width:69.074133pt;}
._43{width:71.248267pt;}
._44{width:72.155791pt;}
._46{width:73.377870pt;}
._4d{width:75.016523pt;}
._49{width:76.300233pt;}
._45{width:81.188548pt;}
._32{width:82.198092pt;}
._4a{width:84.695383pt;}
._22{width:85.700678pt;}
._28{width:89.052361pt;}
._47{width:97.349741pt;}
._48{width:98.457055pt;}
._2f{width:105.674764pt;}
._4e{width:110.996647pt;}
._3a{width:126.564870pt;}
._23{width:136.075833pt;}
._26{width:137.563581pt;}
._27{width:142.872719pt;}
._21{width:145.852464pt;}
._4c{width:151.480405pt;}
._4b{width:159.135931pt;}
._39{width:163.280372pt;}
._3b{width:166.309003pt;}
._2e{width:187.721951pt;}
._24{width:192.875936pt;}
._30{width:213.545010pt;}
._33{width:217.742586pt;}
._3d{width:261.911627pt;}
._34{width:300.790819pt;}
._35{width:435.166368pt;}
._3c{width:442.335191pt;}
._31{width:501.309535pt;}
._40{width:608.276506pt;}
._3f{width:618.584476pt;}
._3e{width:692.166384pt;}
._36{width:1022.843946pt;}
.fs7{font-size:36.662933pt;}
.fs6{font-size:39.318933pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:36.718667pt;}
.yb8{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.ye4{bottom:79.750667pt;}
.y52{bottom:80.652000pt;}
.y15c{bottom:82.278667pt;}
.y16c{bottom:83.180000pt;}
.y13d{bottom:83.950667pt;}
.y146{bottom:84.852000pt;}
.y1c7{bottom:88.662667pt;}
.y25{bottom:88.684000pt;}
.y1a0{bottom:89.504000pt;}
.y1e3{bottom:89.564000pt;}
.y188{bottom:92.032000pt;}
.y100{bottom:94.166667pt;}
.y94{bottom:94.664000pt;}
.y110{bottom:95.068000pt;}
.yb7{bottom:95.565333pt;}
.ye3{bottom:100.014667pt;}
.y51{bottom:100.916000pt;}
.y15b{bottom:102.542667pt;}
.y16b{bottom:103.444000pt;}
.y13c{bottom:104.214667pt;}
.y145{bottom:105.116000pt;}
.y1c6{bottom:108.926667pt;}
.y24{bottom:108.948000pt;}
.y19f{bottom:109.768000pt;}
.y1e2{bottom:109.828000pt;}
.y187{bottom:112.296000pt;}
.y1f4{bottom:112.970667pt;}
.yff{bottom:114.430667pt;}
.y93{bottom:114.928000pt;}
.y10f{bottom:115.332000pt;}
.yb6{bottom:115.829333pt;}
.ye2{bottom:120.278667pt;}
.y50{bottom:121.180000pt;}
.y15a{bottom:122.806667pt;}
.y16a{bottom:123.708000pt;}
.y13b{bottom:124.478667pt;}
.y144{bottom:125.380000pt;}
.y18b{bottom:126.904000pt;}
.y1c5{bottom:129.190667pt;}
.y23{bottom:129.212000pt;}
.y19e{bottom:130.032000pt;}
.y1e1{bottom:130.092000pt;}
.y186{bottom:132.560000pt;}
.y1f3{bottom:133.234667pt;}
.yfe{bottom:134.694667pt;}
.y92{bottom:135.192000pt;}
.y10e{bottom:135.596000pt;}
.yb5{bottom:136.093333pt;}
.ye1{bottom:140.542667pt;}
.y4f{bottom:141.444000pt;}
.y159{bottom:143.070667pt;}
.y169{bottom:143.972000pt;}
.y13a{bottom:144.742667pt;}
.y143{bottom:145.644000pt;}
.y1c4{bottom:149.454667pt;}
.y22{bottom:149.476000pt;}
.y19d{bottom:150.296000pt;}
.y1e0{bottom:150.356000pt;}
.y185{bottom:152.824000pt;}
.y18a{bottom:153.492000pt;}
.y1f2{bottom:153.498667pt;}
.yfd{bottom:154.958667pt;}
.y91{bottom:155.456000pt;}
.y10d{bottom:155.860000pt;}
.yb4{bottom:156.357333pt;}
.ye0{bottom:160.806667pt;}
.y4e{bottom:161.708000pt;}
.y158{bottom:163.334667pt;}
.y6a{bottom:163.428000pt;}
.y168{bottom:164.236000pt;}
.y139{bottom:165.006667pt;}
.y142{bottom:165.908000pt;}
.y1c3{bottom:169.718667pt;}
.y19c{bottom:170.560000pt;}
.y1df{bottom:170.620000pt;}
.y184{bottom:173.088000pt;}
.y1f1{bottom:173.762667pt;}
.yfc{bottom:175.222667pt;}
.y90{bottom:175.720000pt;}
.y10c{bottom:176.124000pt;}
.yb3{bottom:176.621333pt;}
.ydf{bottom:181.070667pt;}
.y4d{bottom:181.972000pt;}
.y157{bottom:183.598667pt;}
.y69{bottom:183.692000pt;}
.y167{bottom:184.500000pt;}
.y138{bottom:185.270667pt;}
.y141{bottom:186.172000pt;}
.y1c2{bottom:189.982667pt;}
.y19b{bottom:190.824000pt;}
.y1de{bottom:190.884000pt;}
.y189{bottom:192.376000pt;}
.y183{bottom:193.352000pt;}
.y1f0{bottom:194.026667pt;}
.y21{bottom:194.978667pt;}
.yfb{bottom:195.486667pt;}
.y8f{bottom:195.984000pt;}
.y10b{bottom:196.388000pt;}
.yb2{bottom:196.885333pt;}
.yde{bottom:201.334667pt;}
.y4c{bottom:202.236000pt;}
.y156{bottom:203.862667pt;}
.y68{bottom:203.956000pt;}
.y166{bottom:204.764000pt;}
.y137{bottom:205.534667pt;}
.y140{bottom:206.436000pt;}
.y1c1{bottom:210.246667pt;}
.y19a{bottom:211.088000pt;}
.y1dd{bottom:211.148000pt;}
.y1ef{bottom:214.292000pt;}
.yfa{bottom:215.750667pt;}
.y8e{bottom:216.249333pt;}
.y10a{bottom:216.652000pt;}
.yb1{bottom:217.150667pt;}
.ydd{bottom:221.598667pt;}
.y4b{bottom:222.500000pt;}
.y155{bottom:224.126667pt;}
.y67{bottom:224.220000pt;}
.y165{bottom:225.028000pt;}
.y136{bottom:225.798667pt;}
.y13f{bottom:226.700000pt;}
.y1c0{bottom:230.510667pt;}
.y199{bottom:231.352000pt;}
.y1dc{bottom:231.412000pt;}
.y182{bottom:231.444000pt;}
.y20{bottom:231.577333pt;}
.y1ee{bottom:234.556000pt;}
.yf9{bottom:236.014667pt;}
.y8d{bottom:236.513333pt;}
.y109{bottom:236.916000pt;}
.yb0{bottom:237.414667pt;}
.ydc{bottom:241.864000pt;}
.y4a{bottom:242.764000pt;}
.y154{bottom:244.390667pt;}
.y66{bottom:244.484000pt;}
.y164{bottom:245.292000pt;}
.y135{bottom:246.064000pt;}
.y13e{bottom:246.964000pt;}
.y1f{bottom:248.089333pt;}
.y1bf{bottom:250.774667pt;}
.y181{bottom:251.362667pt;}
.y198{bottom:251.616000pt;}
.y1db{bottom:251.676000pt;}
.y1ed{bottom:254.820000pt;}
.yf8{bottom:256.278667pt;}
.y8c{bottom:256.777333pt;}
.y108{bottom:257.180000pt;}
.yaf{bottom:257.678667pt;}
.ydb{bottom:262.128000pt;}
.y49{bottom:263.029333pt;}
.y1e{bottom:263.102667pt;}
.y153{bottom:264.654667pt;}
.y65{bottom:264.748000pt;}
.y163{bottom:265.556000pt;}
.y1f6{bottom:266.358667pt;}
.y1be{bottom:271.038667pt;}
.y180{bottom:271.281333pt;}
.y197{bottom:271.880000pt;}
.y1da{bottom:271.940000pt;}
.y1ec{bottom:275.084000pt;}
.yf7{bottom:276.544000pt;}
.y8b{bottom:277.041333pt;}
.y107{bottom:277.444000pt;}
.yae{bottom:277.942667pt;}
.yda{bottom:282.392000pt;}
.y1d{bottom:282.617333pt;}
.y134{bottom:283.169333pt;}
.y48{bottom:283.293333pt;}
.y152{bottom:284.920000pt;}
.y64{bottom:285.012000pt;}
.y162{bottom:285.820000pt;}
.y1bd{bottom:291.302667pt;}
.y196{bottom:292.144000pt;}
.y1d9{bottom:292.204000pt;}
.y1eb{bottom:295.348000pt;}
.yf6{bottom:296.808000pt;}
.y8a{bottom:297.305333pt;}
.y106{bottom:297.709333pt;}
.y17f{bottom:297.869333pt;}
.yad{bottom:298.206667pt;}
.yd9{bottom:302.656000pt;}
.y1c{bottom:302.770667pt;}
.y133{bottom:303.433333pt;}
.y47{bottom:303.557333pt;}
.y151{bottom:305.184000pt;}
.y63{bottom:305.276000pt;}
.y161{bottom:306.085333pt;}
.y1bc{bottom:311.566667pt;}
.y195{bottom:312.409333pt;}
.y1d8{bottom:312.468000pt;}
.y1ea{bottom:315.612000pt;}
.yf5{bottom:317.072000pt;}
.y89{bottom:317.569333pt;}
.y105{bottom:317.973333pt;}
.yac{bottom:318.470667pt;}
.yd8{bottom:322.920000pt;}
.y132{bottom:323.697333pt;}
.y46{bottom:323.821333pt;}
.y150{bottom:325.448000pt;}
.y62{bottom:325.540000pt;}
.y160{bottom:326.349333pt;}
.y1bb{bottom:331.830667pt;}
.y194{bottom:332.673333pt;}
.y1d7{bottom:332.732000pt;}
.y1b{bottom:334.240000pt;}
.y1e9{bottom:335.876000pt;}
.y17e{bottom:336.752000pt;}
.yf4{bottom:337.336000pt;}
.y88{bottom:337.833333pt;}
.y104{bottom:338.237333pt;}
.yab{bottom:338.734667pt;}
.yd7{bottom:343.184000pt;}
.y131{bottom:343.961333pt;}
.y45{bottom:344.085333pt;}
.y14f{bottom:345.712000pt;}
.y61{bottom:345.804000pt;}
.y15f{bottom:346.613333pt;}
.y1ba{bottom:352.094667pt;}
.y193{bottom:352.937333pt;}
.y1d6{bottom:352.996000pt;}
.y1a{bottom:353.753333pt;}
.y1e8{bottom:356.140000pt;}
.yf3{bottom:357.600000pt;}
.y87{bottom:358.097333pt;}
.y103{bottom:358.501333pt;}
.yaa{bottom:358.998667pt;}
.yd6{bottom:363.448000pt;}
.y130{bottom:364.225333pt;}
.y44{bottom:364.349333pt;}
.y14e{bottom:365.976000pt;}
.y60{bottom:366.069333pt;}
.y15e{bottom:366.877333pt;}
.y1b9{bottom:372.360000pt;}
.y192{bottom:373.201333pt;}
.y1d5{bottom:373.261333pt;}
.y19{bottom:373.266667pt;}
.y1e7{bottom:376.404000pt;}
.yf2{bottom:377.864000pt;}
.y86{bottom:378.361333pt;}
.y102{bottom:378.765333pt;}
.ya9{bottom:379.262667pt;}
.yd5{bottom:383.712000pt;}
.y12f{bottom:384.489333pt;}
.y43{bottom:384.613333pt;}
.y14d{bottom:386.240000pt;}
.y5f{bottom:386.333333pt;}
.y15d{bottom:387.141333pt;}
.y1b8{bottom:392.624000pt;}
.y18{bottom:392.781333pt;}
.y191{bottom:393.465333pt;}
.y1d4{bottom:393.525333pt;}
.y1e6{bottom:396.668000pt;}
.yf1{bottom:398.128000pt;}
.y85{bottom:398.625333pt;}
.y101{bottom:399.029333pt;}
.ya8{bottom:399.526667pt;}
.yd4{bottom:403.976000pt;}
.y42{bottom:404.877333pt;}
.y5e{bottom:406.597333pt;}
.y17d{bottom:407.405333pt;}
.y17{bottom:412.294667pt;}
.y1b7{bottom:412.888000pt;}
.y1d3{bottom:413.789333pt;}
.y12e{bottom:414.052000pt;}
.y1e5{bottom:416.932000pt;}
.y84{bottom:418.889333pt;}
.ya7{bottom:419.790667pt;}
.yd3{bottom:424.240000pt;}
.y41{bottom:425.141333pt;}
.y14c{bottom:425.233333pt;}
.y5d{bottom:426.861333pt;}
.y17c{bottom:427.669333pt;}
.y190{bottom:431.557333pt;}
.y16{bottom:431.808000pt;}
.y1b6{bottom:433.152000pt;}
.y1d2{bottom:434.053333pt;}
.yf0{bottom:437.121333pt;}
.y83{bottom:439.153333pt;}
.ya6{bottom:440.054667pt;}
.yd2{bottom:444.504000pt;}
.y40{bottom:445.405333pt;}
.y1e4{bottom:446.494667pt;}
.y5c{bottom:447.125333pt;}
.y17b{bottom:447.933333pt;}
.y15{bottom:451.321333pt;}
.y18f{bottom:451.476000pt;}
.y14b{bottom:451.821333pt;}
.y1b5{bottom:453.416000pt;}
.y12d{bottom:454.053333pt;}
.y1d1{bottom:454.317333pt;}
.y82{bottom:459.417333pt;}
.yef{bottom:459.696000pt;}
.ya5{bottom:460.318667pt;}
.yd1{bottom:464.768000pt;}
.y3f{bottom:465.669333pt;}
.y5b{bottom:467.389333pt;}
.y17a{bottom:468.197333pt;}
.y14{bottom:470.834667pt;}
.y18e{bottom:471.394667pt;}
.y14a{bottom:471.740000pt;}
.y11e{bottom:473.416000pt;}
.y1b4{bottom:473.680000pt;}
.y12c{bottom:474.317333pt;}
.y1d0{bottom:474.581333pt;}
.y81{bottom:479.682667pt;}
.ya4{bottom:480.582667pt;}
.yee{bottom:482.272000pt;}
.yd0{bottom:485.032000pt;}
.y3e{bottom:485.933333pt;}
.y5a{bottom:487.653333pt;}
.y179{bottom:488.461333pt;}
.y13{bottom:490.348000pt;}
.y149{bottom:491.658667pt;}
.y11d{bottom:493.680000pt;}
.y1b3{bottom:493.944000pt;}
.y12b{bottom:494.581333pt;}
.y1cf{bottom:494.845333pt;}
.y18d{bottom:497.982667pt;}
.y80{bottom:499.946667pt;}
.ya3{bottom:500.848000pt;}
.ycf{bottom:505.296000pt;}
.y3d{bottom:506.197333pt;}
.y59{bottom:507.917333pt;}
.y178{bottom:508.725333pt;}
.yed{bottom:508.860000pt;}
.y12{bottom:509.862667pt;}
.y11c{bottom:513.944000pt;}
.y1b2{bottom:514.208000pt;}
.y12a{bottom:514.845333pt;}
.y1ce{bottom:515.109333pt;}
.y148{bottom:518.246667pt;}
.y7f{bottom:520.210667pt;}
.ya2{bottom:521.112000pt;}
.yce{bottom:525.561333pt;}
.y3c{bottom:526.461333pt;}
.y58{bottom:528.181333pt;}
.y177{bottom:528.989333pt;}
.y11{bottom:529.376000pt;}
.y11b{bottom:534.208000pt;}
.y1b1{bottom:534.472000pt;}
.y129{bottom:535.109333pt;}
.y1cd{bottom:535.373333pt;}
.y18c{bottom:536.865333pt;}
.y7e{bottom:540.474667pt;}
.ya1{bottom:541.376000pt;}
.ycd{bottom:545.825333pt;}
.y3b{bottom:546.726667pt;}
.yec{bottom:547.742667pt;}
.y57{bottom:548.445333pt;}
.y10{bottom:548.889333pt;}
.y176{bottom:549.253333pt;}
.y11a{bottom:554.472000pt;}
.y1b0{bottom:554.736000pt;}
.y128{bottom:555.373333pt;}
.y1cc{bottom:555.637333pt;}
.y147{bottom:557.129333pt;}
.y7d{bottom:560.738667pt;}
.ya0{bottom:561.640000pt;}
.ycc{bottom:566.089333pt;}
.y3a{bottom:566.990667pt;}
.yf{bottom:568.402667pt;}
.y56{bottom:568.709333pt;}
.y175{bottom:569.518667pt;}
.y119{bottom:574.736000pt;}
.y1af{bottom:575.000000pt;}
.y127{bottom:575.637333pt;}
.y1cb{bottom:575.901333pt;}
.y7c{bottom:581.002667pt;}
.y9f{bottom:581.904000pt;}
.yeb{bottom:583.733333pt;}
.ycb{bottom:586.353333pt;}
.y39{bottom:587.254667pt;}
.ye{bottom:587.916000pt;}
.y55{bottom:588.072000pt;}
.y174{bottom:589.782667pt;}
.y118{bottom:595.001333pt;}
.y1ae{bottom:595.264000pt;}
.y126{bottom:595.902667pt;}
.y1ca{bottom:596.165333pt;}
.y7b{bottom:601.266667pt;}
.y9e{bottom:602.168000pt;}
.yea{bottom:606.309333pt;}
.yca{bottom:606.617333pt;}
.yd{bottom:607.430667pt;}
.y38{bottom:607.518667pt;}
.y173{bottom:610.046667pt;}
.y117{bottom:615.265333pt;}
.y1ad{bottom:615.528000pt;}
.y125{bottom:616.166667pt;}
.y1c9{bottom:616.429333pt;}
.y7a{bottom:621.530667pt;}
.y9d{bottom:622.432000pt;}
.yc9{bottom:626.881333pt;}
.yc{bottom:626.944000pt;}
.y37{bottom:627.782667pt;}
.ye9{bottom:628.884000pt;}
.y116{bottom:635.529333pt;}
.y1ac{bottom:635.793333pt;}
.y124{bottom:636.430667pt;}
.y1c8{bottom:636.693333pt;}
.y79{bottom:641.794667pt;}
.y9c{bottom:642.696000pt;}
.yb{bottom:646.457333pt;}
.yc8{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.y172{bottom:648.137333pt;}
.ye8{bottom:651.460000pt;}
.y115{bottom:655.793333pt;}
.y123{bottom:656.694667pt;}
.y78{bottom:662.058667pt;}
.y9b{bottom:662.960000pt;}
.ya{bottom:665.970667pt;}
.yc7{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.y1ab{bottom:672.898667pt;}
.ye7{bottom:674.034667pt;}
.y171{bottom:674.725333pt;}
.y114{bottom:676.057333pt;}
.y122{bottom:676.958667pt;}
.y77{bottom:682.322667pt;}
.y9a{bottom:683.224000pt;}
.y9{bottom:685.484000pt;}
.yc6{bottom:687.673333pt;}
.y34{bottom:688.574667pt;}
.y1aa{bottom:693.162667pt;}
.y170{bottom:694.644000pt;}
.y113{bottom:696.321333pt;}
.y121{bottom:697.222667pt;}
.ye6{bottom:700.622667pt;}
.y76{bottom:702.586667pt;}
.y99{bottom:703.488000pt;}
.y8{bottom:704.997333pt;}
.yc5{bottom:707.937333pt;}
.y33{bottom:708.838667pt;}
.y1a9{bottom:713.426667pt;}
.y16f{bottom:714.562667pt;}
.y112{bottom:716.585333pt;}
.y120{bottom:717.486667pt;}
.y75{bottom:722.850667pt;}
.y98{bottom:723.752000pt;}
.y7{bottom:724.512000pt;}
.yc4{bottom:728.201333pt;}
.y32{bottom:729.102667pt;}
.y1a8{bottom:733.690667pt;}
.y111{bottom:736.849333pt;}
.y11f{bottom:737.750667pt;}
.ye5{bottom:739.506667pt;}
.y16e{bottom:741.150667pt;}
.y74{bottom:743.114667pt;}
.y97{bottom:744.016000pt;}
.yc3{bottom:748.465333pt;}
.y31{bottom:749.366667pt;}
.y1a7{bottom:753.954667pt;}
.y73{bottom:763.380000pt;}
.y96{bottom:764.280000pt;}
.yc2{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.y1a6{bottom:774.218667pt;}
.y16d{bottom:780.034667pt;}
.y6{bottom:782.948000pt;}
.y72{bottom:783.644000pt;}
.y95{bottom:784.545333pt;}
.y1f5{bottom:787.764000pt;}
.yc1{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.y1a5{bottom:794.482667pt;}
.yc0{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y1a4{bottom:814.746667pt;}
.y5{bottom:819.730667pt;}
.y71{bottom:820.749333pt;}
.ybf{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.y70{bottom:841.013333pt;}
.y1a3{bottom:844.309333pt;}
.ybe{bottom:849.786667pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.y6f{bottom:861.277333pt;}
.ybd{bottom:870.050667pt;}
.y2b{bottom:870.952000pt;}
.y6e{bottom:881.541333pt;}
.y1a2{bottom:885.636000pt;}
.y3{bottom:885.776000pt;}
.ybc{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.y6d{bottom:901.805333pt;}
.ybb{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.y1a1{bottom:912.224000pt;}
.y6c{bottom:922.069333pt;}
.yba{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.yb9{bottom:951.106667pt;}
.y6b{bottom:951.632000pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.hd{height:25.224098pt;}
.h1{height:31.880400pt;}
.h6{height:32.900710pt;}
.h5{height:36.556100pt;}
.h4{height:36.768636pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.hc{height:46.336759pt;}
.h3{height:47.523004pt;}
.h7{height:47.799300pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.385333pt;}
.x16{left:121.356000pt;}
.x1e{left:131.757333pt;}
.x20{left:133.032000pt;}
.x17{left:134.261333pt;}
.xd{left:136.062667pt;}
.x22{left:140.088000pt;}
.x3{left:144.506667pt;}
.x19{left:152.346667pt;}
.x7{left:158.261333pt;}
.x21{left:160.240000pt;}
.xb{left:162.052000pt;}
.x18{left:175.720000pt;}
.x9{left:198.212000pt;}
.x1b{left:206.264000pt;}
.x5{left:207.296000pt;}
.x23{left:240.474667pt;}
.x1a{left:245.676000pt;}
.x1d{left:255.857333pt;}
.x12{left:262.385333pt;}
.x13{left:270.878667pt;}
.x14{left:280.261333pt;}
.xa{left:281.326667pt;}
.x6{left:330.318667pt;}
.xf{left:359.442667pt;}
.x8{left:364.560000pt;}
.xc{left:384.740000pt;}
.x1c{left:397.898667pt;}
.x10{left:402.290667pt;}
.x1f{left:410.216000pt;}
.xe{left:412.752000pt;}
.x15{left:435.429333pt;}
.x2{left:510.021333pt;}
.x11{left:513.840000pt;}
.x1{left:618.953333pt;}
}




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