
    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_9d2410a32fbf60261028ad60.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_ccbda8fc291568c0fd6efc28.woff2')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_48357a23efdd8c34090b1e40.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_aa119d3754024ce75150678a.woff2')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;}
.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);}
.m2a{transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.245243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245243,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m25{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);}
.m17{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);}
.m1f{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m12{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);}
.m1e{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);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m8{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);}
.m18{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);}
.m1c{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);}
.m33{transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m27{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);}
.m15{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);}
.m22{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);}
.m2b{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,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);}
.m7{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);}
.m20{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);}
.m1a{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);}
.m13{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);}
.m9{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);}
.m2d{transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251746,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m11{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);}
.md{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);}
.m23{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);}
.m32{transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m34{transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m21{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);}
.m26{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);}
.mf{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);}
.m31{transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mb{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);}
.m30{transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);}
.m5{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;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls12{letter-spacing:-89.020890px;}
.ls14{letter-spacing:-85.858758px;}
.ls15{letter-spacing:-61.455348px;}
.ls17{letter-spacing:-56.712150px;}
.ls13{letter-spacing:-15.741918px;}
.ls16{letter-spacing:-0.756162px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.003000px;}
.ls11{letter-spacing:1.443000px;}
.ls21{letter-spacing:1.443582px;}
.lsf{letter-spacing:1.446524px;}
.lsc{letter-spacing:1.446701px;}
.ls1a{letter-spacing:2.474712px;}
.lsd{letter-spacing:2.541000px;}
.ls1b{letter-spacing:2.543454px;}
.ls0{letter-spacing:2.988780px;}
.ls7{letter-spacing:15.048792px;}
.ls18{letter-spacing:16.773048px;}
.ls25{letter-spacing:16.841790px;}
.lsb{letter-spacing:16.906832px;}
.ls6{letter-spacing:16.910532px;}
.ls22{letter-spacing:16.979274px;}
.ls26{letter-spacing:17.116758px;}
.ls10{letter-spacing:17.182500px;}
.ls5{letter-spacing:17.185500px;}
.ls8{letter-spacing:17.188500px;}
.ls1d{letter-spacing:17.254242px;}
.ls1f{letter-spacing:17.322984px;}
.ls1e{letter-spacing:17.460468px;}
.lse{letter-spacing:17.463795px;}
.ls27{letter-spacing:17.529210px;}
.lsa{letter-spacing:17.531075px;}
.ls23{letter-spacing:17.804178px;}
.ls20{letter-spacing:18.697824px;}
.ls19{letter-spacing:19.247760px;}
.ls1c{letter-spacing:20.416374px;}
.ls28{letter-spacing:22.547376px;}
.ls24{letter-spacing:23.234796px;}
.ls2a{letter-spacing:23.303538px;}
.ls29{letter-spacing:23.578506px;}
.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;}
}
.ws7e{word-spacing:-17.185500px;}
.ws12a{word-spacing:-3.853323px;}
.ws129{word-spacing:-3.851438px;}
.wseb{word-spacing:-3.780810px;}
.wsf2{word-spacing:-3.712068px;}
.wsbd{word-spacing:-3.643326px;}
.wsbf{word-spacing:-3.574584px;}
.wsb4{word-spacing:-3.505842px;}
.wse3{word-spacing:-3.437100px;}
.ws4e{word-spacing:-3.368358px;}
.ws59{word-spacing:-3.299616px;}
.wsce{word-spacing:-3.230874px;}
.wsa5{word-spacing:-3.162132px;}
.wse7{word-spacing:-3.093390px;}
.wse0{word-spacing:-3.024648px;}
.wsf{word-spacing:-2.988780px;}
.wsa8{word-spacing:-2.955906px;}
.ws85{word-spacing:-2.887164px;}
.ws23{word-spacing:-2.818422px;}
.wsd4{word-spacing:-2.749680px;}
.wsb2{word-spacing:-2.680938px;}
.wsc5{word-spacing:-2.612196px;}
.ws46{word-spacing:-2.543454px;}
.ws81{word-spacing:-2.474712px;}
.wse2{word-spacing:-2.405970px;}
.ws15{word-spacing:-2.337228px;}
.ws152{word-spacing:-2.268486px;}
.ws154{word-spacing:-2.199744px;}
.ws117{word-spacing:-2.132937px;}
.wse4{word-spacing:-2.131002px;}
.ws118{word-spacing:-2.130586px;}
.wsd2{word-spacing:-2.062260px;}
.ws124{word-spacing:-1.993542px;}
.ws44{word-spacing:-1.993518px;}
.wsbc{word-spacing:-1.924776px;}
.wsda{word-spacing:-1.856034px;}
.wsd7{word-spacing:-1.787292px;}
.ws7f{word-spacing:-1.718550px;}
.ws4a{word-spacing:-1.649808px;}
.ws153{word-spacing:-1.581066px;}
.ws4c{word-spacing:-1.512324px;}
.ws6d{word-spacing:-1.443582px;}
.ws64{word-spacing:-1.374840px;}
.wsa4{word-spacing:-1.306098px;}
.wse6{word-spacing:-1.237356px;}
.ws115{word-spacing:-1.172189px;}
.ws113{word-spacing:-1.171724px;}
.wsa7{word-spacing:-1.168614px;}
.ws3c{word-spacing:-1.099872px;}
.wsee{word-spacing:-1.031130px;}
.ws8f{word-spacing:-0.962388px;}
.ws14{word-spacing:-0.893646px;}
.ws73{word-spacing:-0.824904px;}
.ws78{word-spacing:-0.756162px;}
.ws97{word-spacing:-0.687420px;}
.wsbb{word-spacing:-0.618678px;}
.ws7b{word-spacing:-0.549936px;}
.ws9a{word-spacing:-0.481194px;}
.ws116{word-spacing:-0.417742px;}
.ws12{word-spacing:-0.412452px;}
.wse{word-spacing:-0.358654px;}
.ws12f{word-spacing:-0.352100px;}
.ws12e{word-spacing:-0.350334px;}
.ws18{word-spacing:-0.343710px;}
.wsd{word-spacing:-0.298878px;}
.ws11d{word-spacing:-0.284129px;}
.ws11e{word-spacing:-0.280992px;}
.ws13a{word-spacing:-0.277615px;}
.ws131{word-spacing:-0.277139px;}
.ws133{word-spacing:-0.276486px;}
.ws17{word-spacing:-0.274968px;}
.ws132{word-spacing:-0.274921px;}
.ws14a{word-spacing:-0.272646px;}
.ws5{word-spacing:-0.239102px;}
.ws16{word-spacing:-0.206226px;}
.ws11f{word-spacing:-0.205155px;}
.ws121{word-spacing:-0.202944px;}
.ws128{word-spacing:-0.202800px;}
.ws1a{word-spacing:-0.137484px;}
.ws4{word-spacing:-0.119551px;}
.ws27{word-spacing:-0.068742px;}
.wsc{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047821px;}
.ws127{word-spacing:-0.005172px;}
.ws125{word-spacing:-0.004776px;}
.ws146{word-spacing:-0.004500px;}
.ws13e{word-spacing:-0.004224px;}
.ws122{word-spacing:-0.003552px;}
.ws14c{word-spacing:-0.003312px;}
.ws141{word-spacing:-0.003138px;}
.ws135{word-spacing:-0.003036px;}
.ws123{word-spacing:-0.003000px;}
.ws130{word-spacing:-0.002880px;}
.ws112{word-spacing:-0.002862px;}
.ws11b{word-spacing:-0.002172px;}
.ws145{word-spacing:-0.002034px;}
.ws11a{word-spacing:-0.001776px;}
.ws126{word-spacing:-0.001494px;}
.ws14e{word-spacing:-0.000690px;}
.ws140{word-spacing:-0.000120px;}
.ws2{word-spacing:0.000000px;}
.ws14b{word-spacing:0.002208px;}
.ws142{word-spacing:0.003828px;}
.ws119{word-spacing:0.005371px;}
.wsb{word-spacing:0.059776px;}
.ws35{word-spacing:0.068742px;}
.ws10{word-spacing:0.107597px;}
.ws7{word-spacing:0.119551px;}
.ws143{word-spacing:0.134719px;}
.ws2f{word-spacing:0.137484px;}
.ws134{word-spacing:0.139955px;}
.ws6{word-spacing:0.179327px;}
.ws36{word-spacing:0.206226px;}
.ws107{word-spacing:0.215194px;}
.ws1f{word-spacing:0.274968px;}
.ws137{word-spacing:0.276234px;}
.ws138{word-spacing:0.277121px;}
.ws139{word-spacing:0.280289px;}
.ws12b{word-spacing:0.284724px;}
.ws3d{word-spacing:0.343710px;}
.ws12c{word-spacing:0.344401px;}
.ws12d{word-spacing:0.347569px;}
.ws65{word-spacing:0.412452px;}
.ws94{word-spacing:0.481194px;}
.ws5f{word-spacing:0.549936px;}
.ws13d{word-spacing:0.617419px;}
.wsbe{word-spacing:0.618678px;}
.ws13b{word-spacing:0.622549px;}
.wsa6{word-spacing:0.687420px;}
.wsc3{word-spacing:0.756162px;}
.ws49{word-spacing:0.824904px;}
.ws7c{word-spacing:0.893646px;}
.ws53{word-spacing:0.962388px;}
.ws93{word-spacing:1.031130px;}
.ws6c{word-spacing:1.099872px;}
.wsa1{word-spacing:1.168614px;}
.ws8a{word-spacing:1.237356px;}
.wsec{word-spacing:1.237363px;}
.wsae{word-spacing:1.306098px;}
.ws1c{word-spacing:1.374840px;}
.ws76{word-spacing:1.443582px;}
.ws5c{word-spacing:1.512324px;}
.ws90{word-spacing:1.581066px;}
.wsd0{word-spacing:1.649808px;}
.ws144{word-spacing:1.682191px;}
.ws84{word-spacing:1.718550px;}
.ws48{word-spacing:1.787292px;}
.wsa{word-spacing:1.793268px;}
.ws57{word-spacing:1.856034px;}
.ws25{word-spacing:1.924776px;}
.ws8d{word-spacing:1.993518px;}
.ws50{word-spacing:2.062260px;}
.ws61{word-spacing:2.131002px;}
.ws51{word-spacing:2.199744px;}
.ws4d{word-spacing:2.268486px;}
.ws62{word-spacing:2.337228px;}
.ws86{word-spacing:2.405970px;}
.ws74{word-spacing:2.474712px;}
.ws7a{word-spacing:2.543454px;}
.ws8{word-spacing:2.570351px;}
.ws8e{word-spacing:2.612196px;}
.ws2b{word-spacing:2.680938px;}
.ws70{word-spacing:2.749680px;}
.wsb8{word-spacing:2.818422px;}
.ws43{word-spacing:2.887164px;}
.wsba{word-spacing:2.955906px;}
.ws56{word-spacing:3.024648px;}
.ws83{word-spacing:3.093390px;}
.ws13{word-spacing:3.162132px;}
.wsc6{word-spacing:3.230874px;}
.ws41{word-spacing:3.299616px;}
.ws14f{word-spacing:3.300040px;}
.ws150{word-spacing:3.302122px;}
.ws54{word-spacing:3.368358px;}
.ws92{word-spacing:3.437100px;}
.ws91{word-spacing:3.505842px;}
.ws3b{word-spacing:3.574584px;}
.ws8b{word-spacing:3.643326px;}
.ws11c{word-spacing:3.710950px;}
.wsb9{word-spacing:3.712068px;}
.ws40{word-spacing:3.780810px;}
.wsc0{word-spacing:3.849552px;}
.ws96{word-spacing:3.918294px;}
.ws3f{word-spacing:3.987036px;}
.ws136{word-spacing:4.051766px;}
.wsc2{word-spacing:4.055778px;}
.wsa0{word-spacing:4.124520px;}
.ws55{word-spacing:4.193262px;}
.ws32{word-spacing:4.262004px;}
.wsaf{word-spacing:4.330746px;}
.ws9{word-spacing:4.363619px;}
.wse5{word-spacing:4.399488px;}
.wsd5{word-spacing:4.468230px;}
.wsc7{word-spacing:4.536972px;}
.wsc1{word-spacing:4.605714px;}
.ws58{word-spacing:4.674456px;}
.ws34{word-spacing:4.743198px;}
.wsac{word-spacing:4.811940px;}
.ws4f{word-spacing:4.880682px;}
.ws2d{word-spacing:4.949424px;}
.ws68{word-spacing:5.018166px;}
.ws67{word-spacing:5.086908px;}
.ws14d{word-spacing:5.153368px;}
.ws2a{word-spacing:5.155650px;}
.ws29{word-spacing:5.224392px;}
.wsad{word-spacing:5.293134px;}
.ws45{word-spacing:5.361876px;}
.ws60{word-spacing:5.430618px;}
.wsb0{word-spacing:5.499360px;}
.wsf0{word-spacing:5.568102px;}
.ws31{word-spacing:5.636844px;}
.ws42{word-spacing:5.705586px;}
.ws2c{word-spacing:5.774328px;}
.ws6f{word-spacing:5.843070px;}
.ws37{word-spacing:5.911812px;}
.wsb6{word-spacing:5.980554px;}
.ws3a{word-spacing:6.049296px;}
.ws99{word-spacing:6.118038px;}
.ws5e{word-spacing:6.186780px;}
.ws3e{word-spacing:6.255522px;}
.ws30{word-spacing:6.324264px;}
.wsed{word-spacing:6.393006px;}
.ws24{word-spacing:6.461748px;}
.ws6a{word-spacing:6.530490px;}
.ws22{word-spacing:6.599232px;}
.ws26{word-spacing:6.667974px;}
.ws38{word-spacing:6.736716px;}
.ws5a{word-spacing:6.805458px;}
.ws20{word-spacing:6.874200px;}
.wsa9{word-spacing:6.942942px;}
.wsdd{word-spacing:7.011684px;}
.wsaa{word-spacing:7.080426px;}
.ws63{word-spacing:7.149168px;}
.ws33{word-spacing:7.217910px;}
.ws1b{word-spacing:7.286652px;}
.ws87{word-spacing:7.355394px;}
.wsb7{word-spacing:7.424136px;}
.ws149{word-spacing:7.427289px;}
.wsb3{word-spacing:7.492878px;}
.ws147{word-spacing:7.494937px;}
.wsfb{word-spacing:7.531776px;}
.wsd8{word-spacing:7.561620px;}
.ws80{word-spacing:7.630362px;}
.wsb5{word-spacing:7.767846px;}
.ws98{word-spacing:7.836588px;}
.ws13f{word-spacing:7.903765px;}
.ws5d{word-spacing:7.905330px;}
.wse1{word-spacing:7.974072px;}
.ws4b{word-spacing:8.042814px;}
.ws66{word-spacing:8.111556px;}
.wscf{word-spacing:8.180298px;}
.ws52{word-spacing:8.249040px;}
.ws5b{word-spacing:8.317782px;}
.ws82{word-spacing:8.386524px;}
.wse8{word-spacing:8.455266px;}
.ws77{word-spacing:8.524008px;}
.wsef{word-spacing:8.661492px;}
.ws19{word-spacing:8.730234px;}
.ws28{word-spacing:8.798976px;}
.ws6e{word-spacing:8.867718px;}
.ws155{word-spacing:9.005202px;}
.ws1d{word-spacing:9.073944px;}
.ws9e{word-spacing:9.142686px;}
.wsa3{word-spacing:9.211428px;}
.wscb{word-spacing:9.280170px;}
.ws21{word-spacing:9.348912px;}
.wsde{word-spacing:9.417654px;}
.ws1e{word-spacing:9.555138px;}
.ws72{word-spacing:9.623880px;}
.wsf3{word-spacing:9.692622px;}
.ws88{word-spacing:9.761364px;}
.ws8c{word-spacing:9.830106px;}
.wsf4{word-spacing:9.898848px;}
.wsf8{word-spacing:9.967590px;}
.ws79{word-spacing:10.036332px;}
.ws9f{word-spacing:10.173816px;}
.wsca{word-spacing:10.242558px;}
.ws69{word-spacing:10.311300px;}
.wsea{word-spacing:10.380042px;}
.wsd6{word-spacing:10.448784px;}
.ws39{word-spacing:10.517526px;}
.wsf7{word-spacing:10.586268px;}
.ws95{word-spacing:10.655010px;}
.ws47{word-spacing:10.723752px;}
.wsc4{word-spacing:10.792494px;}
.wsf1{word-spacing:10.861236px;}
.wsdc{word-spacing:10.998720px;}
.ws2e{word-spacing:11.067462px;}
.ws10b{word-spacing:11.136204px;}
.ws10f{word-spacing:11.204946px;}
.wsf9{word-spacing:11.342430px;}
.wsab{word-spacing:11.411172px;}
.wse9{word-spacing:11.548656px;}
.wsf6{word-spacing:11.617398px;}
.wsfa{word-spacing:11.686140px;}
.wsc8{word-spacing:11.754882px;}
.wsc9{word-spacing:11.823624px;}
.ws111{word-spacing:11.961108px;}
.wsff{word-spacing:12.167334px;}
.ws106{word-spacing:12.236076px;}
.ws10c{word-spacing:12.373560px;}
.ws103{word-spacing:12.648528px;}
.ws75{word-spacing:12.717270px;}
.wsfe{word-spacing:12.786012px;}
.wsf5{word-spacing:12.923496px;}
.ws10e{word-spacing:12.992238px;}
.ws89{word-spacing:13.060980px;}
.ws6b{word-spacing:13.129722px;}
.wsfd{word-spacing:13.542174px;}
.ws9c{word-spacing:13.748400px;}
.ws10d{word-spacing:14.435820px;}
.ws7d{word-spacing:14.504562px;}
.wsdf{word-spacing:14.710788px;}
.ws71{word-spacing:14.779530px;}
.ws105{word-spacing:14.985756px;}
.ws9d{word-spacing:15.879402px;}
.ws109{word-spacing:16.223112px;}
.ws151{word-spacing:16.879206px;}
.ws0{word-spacing:16.880672px;}
.ws110{word-spacing:17.529210px;}
.wsd3{word-spacing:18.147888px;}
.ws3{word-spacing:18.351109px;}
.wsb1{word-spacing:18.354114px;}
.ws102{word-spacing:18.697824px;}
.wsd9{word-spacing:19.247760px;}
.wsdb{word-spacing:19.349392px;}
.wsa2{word-spacing:19.385244px;}
.ws100{word-spacing:20.485116px;}
.wsfc{word-spacing:22.959828px;}
.wscd{word-spacing:24.265926px;}
.ws101{word-spacing:24.472152px;}
.wscc{word-spacing:32.858676px;}
.ws9b{word-spacing:50.181660px;}
.ws10a{word-spacing:51.006564px;}
.ws108{word-spacing:52.931340px;}
.ws11{word-spacing:77.630692px;}
.ws148{word-spacing:91.282502px;}
.ws13c{word-spacing:100.335823px;}
.ws120{word-spacing:147.025390px;}
.ws114{word-spacing:153.060937px;}
.ws104{word-spacing:940.539258px;}
.wsd1{word-spacing:943.119258px;}
._30{margin-left:-9.641814px;}
._27{margin-left:-8.383536px;}
._1{margin-left:-7.230468px;}
._20{margin-left:-6.186780px;}
._8{margin-left:-4.722272px;}
._c{margin-left:-3.586536px;}
._3{margin-left:-2.582310px;}
._4{margin-left:-1.494390px;}
._0{width:1.386797px;}
._31{width:2.719794px;}
._37{width:3.753906px;}
._38{width:6.730734px;}
._39{width:7.917294px;}
._36{width:9.584447px;}
._b{width:13.867939px;}
._28{width:14.934944px;}
._e{width:16.181353px;}
._6{width:17.932680px;}
._5{width:19.092335px;}
._9{width:20.562806px;}
._17{width:21.564062px;}
._11{width:22.568298px;}
._a{width:24.507996px;}
._12{width:25.640766px;}
._7{width:26.839244px;}
._10{width:28.811868px;}
._19{width:30.658932px;}
._2{width:32.020644px;}
._f{width:33.165413px;}
._14{width:34.783452px;}
._1b{width:35.814582px;}
._23{width:37.120680px;}
._25{width:38.474598px;}
._15{width:39.526650px;}
._16{width:40.878204px;}
._26{width:42.138846px;}
._1c{width:43.444944px;}
._2f{width:44.751042px;}
._1a{width:46.057140px;}
._21{width:47.088270px;}
._1e{width:48.600594px;}
._2d{width:50.919888px;}
._24{width:52.635446px;}
._18{width:54.099954px;}
._13{width:55.199826px;}
._29{width:57.450378px;}
._d{width:59.775600px;}
._2e{width:61.093704px;}
._2c{width:65.660562px;}
._1d{width:67.367160px;}
._2a{width:68.398290px;}
._1f{width:70.116840px;}
._2b{width:77.708400px;}
._22{width:78.778332px;}
._35{width:81.400179px;}
._34{width:86.353218px;}
._33{width:102.924817px;}
._32{width:104.253005px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs6{font-size:47.820000px;}
.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;}
.ycc{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.y1ef{bottom:89.226000px;}
.ye5{bottom:89.659500px;}
.y1ae{bottom:89.719500px;}
.y1fc{bottom:90.240000px;}
.yed{bottom:90.673500px;}
.y52{bottom:90.733500px;}
.y25{bottom:93.150000px;}
.y63{bottom:94.584000px;}
.y72{bottom:95.598000px;}
.yb9{bottom:99.448500px;}
.ycb{bottom:100.462500px;}
.y217{bottom:104.295000px;}
.y1c8{bottom:106.230000px;}
.y142{bottom:106.497000px;}
.y1d4{bottom:107.244000px;}
.y167{bottom:107.511000px;}
.y9e{bottom:108.163500px;}
.y100{bottom:108.544500px;}
.ya7{bottom:109.177500px;}
.y103{bottom:109.558500px;}
.y182{bottom:109.633500px;}
.y1ee{bottom:112.023000px;}
.ye4{bottom:112.456500px;}
.y1ad{bottom:112.516500px;}
.y1fb{bottom:113.037000px;}
.yec{bottom:113.470500px;}
.y51{bottom:113.530500px;}
.y24{bottom:115.947000px;}
.y62{bottom:117.381000px;}
.y71{bottom:118.395000px;}
.yb8{bottom:122.245500px;}
.y118{bottom:123.136500px;}
.yca{bottom:123.259500px;}
.y216{bottom:127.092000px;}
.y1c7{bottom:129.027000px;}
.y141{bottom:129.294000px;}
.y1d3{bottom:130.041000px;}
.y166{bottom:130.308000px;}
.y9d{bottom:130.960500px;}
.yff{bottom:131.341500px;}
.ya6{bottom:131.974500px;}
.y102{bottom:132.355500px;}
.y181{bottom:132.430500px;}
.y1ed{bottom:134.820000px;}
.ye3{bottom:135.253500px;}
.y1ac{bottom:135.313500px;}
.y1fa{bottom:135.834000px;}
.yeb{bottom:136.267500px;}
.y50{bottom:136.327500px;}
.y23{bottom:138.744000px;}
.y61{bottom:140.178000px;}
.y70{bottom:141.192000px;}
.y10f{bottom:144.919500px;}
.yb7{bottom:145.042500px;}
.y117{bottom:145.933500px;}
.yc9{bottom:146.056500px;}
.y215{bottom:149.889000px;}
.y1c6{bottom:151.824000px;}
.y140{bottom:152.091000px;}
.y1d2{bottom:152.838000px;}
.y165{bottom:153.105000px;}
.y9c{bottom:153.757500px;}
.yfe{bottom:154.138500px;}
.ya5{bottom:154.771500px;}
.y101{bottom:155.152500px;}
.y180{bottom:155.227500px;}
.y1ec{bottom:157.617000px;}
.ye2{bottom:158.050500px;}
.y1ab{bottom:158.110500px;}
.y1f9{bottom:158.631000px;}
.yea{bottom:159.064500px;}
.y4f{bottom:159.124500px;}
.y22{bottom:161.541000px;}
.y60{bottom:162.975000px;}
.y6f{bottom:163.989000px;}
.y10e{bottom:167.716500px;}
.yb6{bottom:167.839500px;}
.y116{bottom:168.730500px;}
.yc8{bottom:168.853500px;}
.y214{bottom:172.686000px;}
.y1c5{bottom:174.621000px;}
.y13f{bottom:174.888000px;}
.y1d1{bottom:175.635000px;}
.y164{bottom:175.902000px;}
.y9b{bottom:176.554500px;}
.ya4{bottom:177.568500px;}
.y17f{bottom:178.024500px;}
.y1eb{bottom:180.414000px;}
.ye1{bottom:180.847500px;}
.y1aa{bottom:180.907500px;}
.y1f8{bottom:181.428000px;}
.ye9{bottom:181.861500px;}
.y4e{bottom:181.921500px;}
.y21{bottom:184.338000px;}
.y5f{bottom:185.772000px;}
.y6e{bottom:186.786000px;}
.y10d{bottom:190.513500px;}
.yb5{bottom:190.636500px;}
.y115{bottom:191.527500px;}
.yc7{bottom:191.650500px;}
.y213{bottom:195.483000px;}
.y1c4{bottom:197.418000px;}
.y13e{bottom:197.685000px;}
.y1d0{bottom:198.432000px;}
.y163{bottom:198.699000px;}
.y9a{bottom:199.351500px;}
.ya3{bottom:200.365500px;}
.y17e{bottom:200.821500px;}
.y1ea{bottom:203.211000px;}
.ye0{bottom:203.644500px;}
.y1a9{bottom:203.704500px;}
.y1f7{bottom:204.225000px;}
.ye8{bottom:204.658500px;}
.y4d{bottom:204.718500px;}
.y20{bottom:207.135000px;}
.y5e{bottom:208.569000px;}
.y6d{bottom:209.583000px;}
.y10c{bottom:213.310500px;}
.yb4{bottom:213.433500px;}
.y114{bottom:214.324500px;}
.yc6{bottom:214.447500px;}
.y212{bottom:218.280000px;}
.y1c3{bottom:220.215000px;}
.y13d{bottom:220.482000px;}
.y1cf{bottom:221.229000px;}
.y162{bottom:221.496000px;}
.y99{bottom:222.148500px;}
.ya2{bottom:223.162500px;}
.y17d{bottom:223.618500px;}
.y1e9{bottom:226.008000px;}
.ydf{bottom:226.441500px;}
.y1a8{bottom:226.501500px;}
.y1f6{bottom:227.022000px;}
.ye7{bottom:227.455500px;}
.y4c{bottom:227.515500px;}
.y1f{bottom:229.932000px;}
.y5d{bottom:231.366000px;}
.y6c{bottom:232.380000px;}
.y10b{bottom:236.107500px;}
.yb3{bottom:236.230500px;}
.y113{bottom:237.121500px;}
.yc5{bottom:237.244500px;}
.y211{bottom:241.078500px;}
.y1c2{bottom:243.012000px;}
.y13c{bottom:243.280500px;}
.y1ce{bottom:244.026000px;}
.y161{bottom:244.294500px;}
.y98{bottom:244.945500px;}
.ya1{bottom:245.959500px;}
.y17c{bottom:246.415500px;}
.y1e8{bottom:248.805000px;}
.yde{bottom:249.238500px;}
.y1a7{bottom:249.298500px;}
.y1f5{bottom:249.819000px;}
.ye6{bottom:250.252500px;}
.y4b{bottom:250.312500px;}
.y1e{bottom:252.729000px;}
.y5c{bottom:254.163000px;}
.y6b{bottom:255.177000px;}
.y10a{bottom:258.904500px;}
.yb2{bottom:259.027500px;}
.y112{bottom:259.918500px;}
.yc4{bottom:260.041500px;}
.y20f{bottom:263.875500px;}
.y210{bottom:263.961000px;}
.y1c1{bottom:265.809000px;}
.y13b{bottom:266.077500px;}
.y1cd{bottom:266.823000px;}
.y160{bottom:267.091500px;}
.y97{bottom:267.742500px;}
.ya0{bottom:268.756500px;}
.y17b{bottom:269.212500px;}
.y1e7{bottom:271.603500px;}
.y1a6{bottom:272.097000px;}
.y1f4{bottom:272.616000px;}
.y4a{bottom:273.109500px;}
.y1d{bottom:275.526000px;}
.y5b{bottom:276.960000px;}
.y6a{bottom:277.974000px;}
.y109{bottom:281.703000px;}
.yb1{bottom:281.824500px;}
.y111{bottom:282.717000px;}
.yc3{bottom:282.838500px;}
.y20e{bottom:286.672500px;}
.y1c0{bottom:288.606000px;}
.y13a{bottom:288.874500px;}
.y1cc{bottom:289.620000px;}
.y15f{bottom:289.888500px;}
.y96{bottom:290.539500px;}
.ydd{bottom:290.982000px;}
.y9f{bottom:291.553500px;}
.y17a{bottom:292.009500px;}
.y1e6{bottom:294.400500px;}
.y1a5{bottom:294.894000px;}
.y1f3{bottom:295.414500px;}
.y49{bottom:295.908000px;}
.y1c{bottom:298.323000px;}
.y5a{bottom:299.757000px;}
.y69{bottom:300.771000px;}
.y108{bottom:304.500000px;}
.yb0{bottom:304.621500px;}
.y110{bottom:305.514000px;}
.yc2{bottom:305.635500px;}
.y20c{bottom:309.469500px;}
.y20d{bottom:309.555000px;}
.y1bf{bottom:311.403000px;}
.y139{bottom:311.671500px;}
.y1cb{bottom:312.417000px;}
.y15e{bottom:312.685500px;}
.ydc{bottom:313.780500px;}
.y179{bottom:314.806500px;}
.y1e5{bottom:317.197500px;}
.y1a4{bottom:317.691000px;}
.y1f2{bottom:318.211500px;}
.y48{bottom:318.705000px;}
.y1b{bottom:321.120000px;}
.y59{bottom:322.555500px;}
.y68{bottom:323.569500px;}
.yaf{bottom:327.418500px;}
.yc1{bottom:328.432500px;}
.y20b{bottom:332.266500px;}
.y1be{bottom:334.200000px;}
.y138{bottom:334.468500px;}
.y1ca{bottom:335.214000px;}
.y15d{bottom:335.482500px;}
.ydb{bottom:336.577500px;}
.y178{bottom:337.605000px;}
.y1e4{bottom:339.994500px;}
.y1a3{bottom:340.488000px;}
.y1f1{bottom:341.008500px;}
.y47{bottom:341.502000px;}
.y58{bottom:345.352500px;}
.y107{bottom:346.243500px;}
.y67{bottom:346.366500px;}
.y88{bottom:350.217000px;}
.y95{bottom:351.229500px;}
.y20a{bottom:355.063500px;}
.y1bd{bottom:356.998500px;}
.y137{bottom:357.265500px;}
.y1c9{bottom:358.011000px;}
.y15c{bottom:358.279500px;}
.yda{bottom:359.374500px;}
.y177{bottom:360.402000px;}
.y1e3{bottom:362.791500px;}
.y1a2{bottom:363.285000px;}
.y1f0{bottom:363.805500px;}
.y46{bottom:364.299000px;}
.y21a{bottom:364.384500px;}
.y57{bottom:368.149500px;}
.y66{bottom:369.163500px;}
.y1a{bottom:372.312000px;}
.y87{bottom:373.014000px;}
.y94{bottom:374.028000px;}
.y209{bottom:377.860500px;}
.y136{bottom:380.062500px;}
.y15b{bottom:381.076500px;}
.yd9{bottom:382.171500px;}
.y176{bottom:383.199000px;}
.y1a1{bottom:386.082000px;}
.y45{bottom:387.096000px;}
.y56{bottom:390.946500px;}
.y65{bottom:391.960500px;}
.y86{bottom:395.811000px;}
.y93{bottom:396.825000px;}
.y208{bottom:400.657500px;}
.y135{bottom:402.859500px;}
.y15a{bottom:403.873500px;}
.y1e2{bottom:404.535000px;}
.yd8{bottom:404.968500px;}
.y175{bottom:405.996000px;}
.y1a0{bottom:408.879000px;}
.y44{bottom:409.893000px;}
.y19{bottom:413.485500px;}
.y55{bottom:413.743500px;}
.y64{bottom:414.757500px;}
.y1bc{bottom:416.674500px;}
.y85{bottom:418.608000px;}
.y92{bottom:419.622000px;}
.y207{bottom:423.454500px;}
.y134{bottom:425.656500px;}
.y159{bottom:426.670500px;}
.y1e1{bottom:427.332000px;}
.yd7{bottom:427.765500px;}
.y174{bottom:428.793000px;}
.y106{bottom:430.692000px;}
.y19f{bottom:431.676000px;}
.y18{bottom:432.060000px;}
.y43{bottom:432.690000px;}
.y1bb{bottom:439.471500px;}
.y84{bottom:441.405000px;}
.y91{bottom:442.419000px;}
.y206{bottom:446.251500px;}
.y133{bottom:448.453500px;}
.y158{bottom:449.467500px;}
.y1e0{bottom:450.129000px;}
.y173{bottom:451.590000px;}
.y105{bottom:453.489000px;}
.y17{bottom:453.882000px;}
.y19e{bottom:454.473000px;}
.y42{bottom:455.487000px;}
.yd6{bottom:461.023500px;}
.y1ba{bottom:462.268500px;}
.y83{bottom:464.202000px;}
.y90{bottom:465.216000px;}
.y205{bottom:469.048500px;}
.y132{bottom:471.250500px;}
.y157{bottom:472.264500px;}
.y1df{bottom:472.926000px;}
.y172{bottom:474.387000px;}
.y104{bottom:475.272000px;}
.y19d{bottom:477.270000px;}
.y41{bottom:478.284000px;}
.y1b9{bottom:485.065500px;}
.y82{bottom:486.999000px;}
.y16{bottom:487.533000px;}
.y8f{bottom:488.013000px;}
.y204{bottom:491.845500px;}
.y131{bottom:494.047500px;}
.y156{bottom:495.061500px;}
.y1de{bottom:495.723000px;}
.y171{bottom:497.184000px;}
.y19c{bottom:500.067000px;}
.y40{bottom:501.081000px;}
.y1b8{bottom:507.862500px;}
.y81{bottom:509.796000px;}
.y8e{bottom:510.810000px;}
.y203{bottom:514.642500px;}
.y130{bottom:516.844500px;}
.y155{bottom:517.858500px;}
.y1dd{bottom:518.520000px;}
.y170{bottom:519.981000px;}
.y19b{bottom:522.864000px;}
.y15{bottom:522.934500px;}
.yd5{bottom:523.324500px;}
.y3f{bottom:523.878000px;}
.y1b7{bottom:530.659500px;}
.y80{bottom:532.593000px;}
.y8d{bottom:533.607000px;}
.y202{bottom:537.439500px;}
.y12f{bottom:539.643000px;}
.y154{bottom:540.655500px;}
.y1dc{bottom:541.317000px;}
.y16f{bottom:542.778000px;}
.y14{bottom:544.887000px;}
.y19a{bottom:545.661000px;}
.yd4{bottom:546.121500px;}
.y3e{bottom:546.675000px;}
.y1d5{bottom:546.762000px;}
.y1b6{bottom:553.456500px;}
.y7f{bottom:555.390000px;}
.y8c{bottom:556.404000px;}
.y201{bottom:560.238000px;}
.y12e{bottom:562.440000px;}
.y153{bottom:563.454000px;}
.y1db{bottom:564.115500px;}
.y16e{bottom:565.575000px;}
.y13{bottom:566.841000px;}
.y199{bottom:568.458000px;}
.yd3{bottom:568.918500px;}
.y3d{bottom:569.472000px;}
.y219{bottom:569.559000px;}
.y1b5{bottom:576.253500px;}
.y7e{bottom:578.187000px;}
.y8b{bottom:579.201000px;}
.y200{bottom:583.035000px;}
.y12d{bottom:585.237000px;}
.y152{bottom:586.251000px;}
.y1da{bottom:586.912500px;}
.y16d{bottom:588.372000px;}
.y12{bottom:588.793500px;}
.y198{bottom:591.256500px;}
.yd2{bottom:591.715500px;}
.y3c{bottom:592.269000px;}
.y1b4{bottom:599.050500px;}
.y7d{bottom:600.984000px;}
.y8a{bottom:601.998000px;}
.y1ff{bottom:605.832000px;}
.y12c{bottom:608.034000px;}
.y151{bottom:609.048000px;}
.y11{bottom:610.746000px;}
.y16c{bottom:611.169000px;}
.y197{bottom:614.053500px;}
.yd1{bottom:614.512500px;}
.y3b{bottom:615.067500px;}
.y1d9{bottom:620.170500px;}
.y1b3{bottom:621.849000px;}
.y7c{bottom:623.781000px;}
.y89{bottom:624.795000px;}
.y1fe{bottom:628.629000px;}
.y12b{bottom:630.831000px;}
.y150{bottom:631.845000px;}
.y10{bottom:632.698500px;}
.y16b{bottom:633.966000px;}
.y196{bottom:636.850500px;}
.yd0{bottom:637.309500px;}
.y3a{bottom:637.864500px;}
.y1d8{bottom:642.376500px;}
.y1b2{bottom:644.646000px;}
.yae{bottom:646.578000px;}
.yc0{bottom:647.592000px;}
.y12a{bottom:653.628000px;}
.y14f{bottom:654.642000px;}
.yf{bottom:654.651000px;}
.y16a{bottom:655.750500px;}
.y195{bottom:659.647500px;}
.ycf{bottom:660.108000px;}
.y39{bottom:660.661500px;}
.y168{bottom:660.747000px;}
.y1fd{bottom:661.887000px;}
.y1d7{bottom:665.173500px;}
.y7b{bottom:665.526000px;}
.y1b1{bottom:667.443000px;}
.yad{bottom:669.376500px;}
.ybf{bottom:670.390500px;}
.y129{bottom:676.425000px;}
.ye{bottom:676.603500px;}
.y14e{bottom:677.439000px;}
.y169{bottom:678.547500px;}
.y194{bottom:682.444500px;}
.yce{bottom:682.905000px;}
.y38{bottom:683.458500px;}
.y7a{bottom:688.323000px;}
.y1b0{bottom:689.226000px;}
.yac{bottom:692.173500px;}
.ybe{bottom:693.187500px;}
.yd{bottom:698.557500px;}
.y128{bottom:699.222000px;}
.y14d{bottom:700.236000px;}
.ycd{bottom:704.688000px;}
.y193{bottom:705.241500px;}
.y37{bottom:706.255500px;}
.y79{bottom:711.120000px;}
.y1af{bottom:712.023000px;}
.yab{bottom:714.970500px;}
.ybd{bottom:715.984500px;}
.yc{bottom:720.510000px;}
.y127{bottom:722.019000px;}
.y14c{bottom:723.033000px;}
.y192{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.y78{bottom:733.917000px;}
.yaa{bottom:737.767500px;}
.ybc{bottom:738.781500px;}
.yb{bottom:742.462500px;}
.y126{bottom:744.816000px;}
.y14b{bottom:745.830000px;}
.y191{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.y77{bottom:756.714000px;}
.ya9{bottom:760.564500px;}
.ybb{bottom:761.578500px;}
.ya{bottom:764.415000px;}
.y125{bottom:767.613000px;}
.y14a{bottom:768.627000px;}
.y190{bottom:773.632500px;}
.y34{bottom:774.646500px;}
.y76{bottom:779.511000px;}
.ya8{bottom:783.361500px;}
.yba{bottom:784.375500px;}
.y9{bottom:786.367500px;}
.y124{bottom:790.410000px;}
.y149{bottom:791.424000px;}
.y18f{bottom:796.429500px;}
.y33{bottom:797.443500px;}
.y75{bottom:802.308000px;}
.yf3{bottom:806.158500px;}
.yf9{bottom:807.172500px;}
.y8{bottom:808.321500px;}
.y123{bottom:813.207000px;}
.y148{bottom:814.221000px;}
.y18e{bottom:819.226500px;}
.y32{bottom:820.240500px;}
.y74{bottom:825.105000px;}
.yf2{bottom:828.955500px;}
.yf8{bottom:829.969500px;}
.y7{bottom:830.274000px;}
.y122{bottom:836.004000px;}
.y147{bottom:837.018000px;}
.y18d{bottom:842.023500px;}
.y31{bottom:843.037500px;}
.y73{bottom:847.902000px;}
.yf1{bottom:851.752500px;}
.y6{bottom:852.226500px;}
.yf7{bottom:852.766500px;}
.y121{bottom:858.802500px;}
.y146{bottom:859.815000px;}
.y18c{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.yf0{bottom:874.549500px;}
.yf6{bottom:875.563500px;}
.y120{bottom:881.599500px;}
.y145{bottom:882.613500px;}
.y18b{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.yef{bottom:897.346500px;}
.yf5{bottom:898.360500px;}
.y11f{bottom:904.396500px;}
.y144{bottom:905.410500px;}
.y18a{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y1d6{bottom:911.515500px;}
.y5{bottom:917.967000px;}
.yee{bottom:920.143500px;}
.yf4{bottom:921.157500px;}
.y11e{bottom:927.193500px;}
.y143{bottom:928.207500px;}
.y189{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.yfb{bottom:942.940500px;}
.yfd{bottom:943.954500px;}
.y188{bottom:956.010000px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.yfa{bottom:965.739000px;}
.yfc{bottom:966.751500px;}
.y11d{bottom:968.937000px;}
.y187{bottom:978.807000px;}
.y2b{bottom:979.821000px;}
.y218{bottom:979.906500px;}
.y11c{bottom:991.734000px;}
.y3{bottom:996.498000px;}
.y186{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.y11b{bottom:1014.531000px;}
.y185{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.y11a{bottom:1037.328000px;}
.y184{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y183{bottom:1069.995000px;}
.y119{bottom:1070.586000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.hd{height:35.865000px;}
.h1{height:35.865450px;}
.h6{height:37.013299px;}
.h5{height:41.125613px;}
.h4{height:41.304940px;}
.hb{height:47.157012px;}
.h8{height:47.294496px;}
.h3{height:53.463379px;}
.h7{height:53.696504px;}
.h2{height:71.065171px;}
.ha{height:91.407450px;}
.hc{height:92.541000px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:126.510000px;}
.xb{left:127.558500px;}
.x3{left:139.303500px;}
.x1a{left:147.034500px;}
.x19{left:148.468500px;}
.x11{left:151.072500px;}
.xc{left:153.070500px;}
.x6{left:178.044000px;}
.x20{left:181.129500px;}
.x9{left:182.308500px;}
.x13{left:190.990500px;}
.x12{left:194.805000px;}
.x26{left:210.534000px;}
.x25{left:211.968000px;}
.x4{left:218.928000px;}
.x8{left:263.262000px;}
.x2d{left:269.463000px;}
.x2c{left:270.897000px;}
.x2b{left:278.748000px;}
.x2a{left:280.182000px;}
.x18{left:310.987500px;}
.x16{left:315.294000px;}
.x27{left:329.665500px;}
.x5{left:381.060000px;}
.xe{left:404.373000px;}
.x7{left:410.130000px;}
.x2e{left:415.159500px;}
.x2f{left:420.882000px;}
.xa{left:432.832500px;}
.x28{left:446.359500px;}
.x17{left:447.636000px;}
.xf{left:452.577000px;}
.x15{left:463.057500px;}
.xd{left:464.346000px;}
.x14{left:489.858000px;}
.x21{left:516.346500px;}
.x22{left:522.069000px;}
.x1f{left:531.876000px;}
.x1e{left:533.311500px;}
.x30{left:534.880500px;}
.x31{left:540.603000px;}
.x29{left:542.670000px;}
.x2{left:573.774000px;}
.x10{left:578.070000px;}
.x1{left:696.322500px;}
.x23{left:745.147500px;}
.x24{left:750.870000px;}
.x1d{left:760.750500px;}
.x1c{left:762.184500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls12{letter-spacing:-79.129680pt;}
.ls14{letter-spacing:-76.318896pt;}
.ls15{letter-spacing:-54.626976pt;}
.ls17{letter-spacing:-50.410800pt;}
.ls13{letter-spacing:-13.992816pt;}
.ls16{letter-spacing:-0.672144pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.002667pt;}
.ls11{letter-spacing:1.282667pt;}
.ls21{letter-spacing:1.283184pt;}
.lsf{letter-spacing:1.285799pt;}
.lsc{letter-spacing:1.285956pt;}
.ls1a{letter-spacing:2.199744pt;}
.lsd{letter-spacing:2.258667pt;}
.ls1b{letter-spacing:2.260848pt;}
.ls0{letter-spacing:2.656693pt;}
.ls7{letter-spacing:13.376704pt;}
.ls18{letter-spacing:14.909376pt;}
.ls25{letter-spacing:14.970480pt;}
.lsb{letter-spacing:15.028295pt;}
.ls6{letter-spacing:15.031584pt;}
.ls22{letter-spacing:15.092688pt;}
.ls26{letter-spacing:15.214896pt;}
.ls10{letter-spacing:15.273333pt;}
.ls5{letter-spacing:15.276000pt;}
.ls8{letter-spacing:15.278667pt;}
.ls1d{letter-spacing:15.337104pt;}
.ls1f{letter-spacing:15.398208pt;}
.ls1e{letter-spacing:15.520416pt;}
.lse{letter-spacing:15.523374pt;}
.ls27{letter-spacing:15.581520pt;}
.lsa{letter-spacing:15.583178pt;}
.ls23{letter-spacing:15.825936pt;}
.ls20{letter-spacing:16.620288pt;}
.ls19{letter-spacing:17.109120pt;}
.ls1c{letter-spacing:18.147888pt;}
.ls28{letter-spacing:20.042112pt;}
.ls24{letter-spacing:20.653152pt;}
.ls2a{letter-spacing:20.714256pt;}
.ls29{letter-spacing:20.958672pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws7e{word-spacing:-15.276000pt;}
.ws12a{word-spacing:-3.425176pt;}
.ws129{word-spacing:-3.423500pt;}
.wseb{word-spacing:-3.360720pt;}
.wsf2{word-spacing:-3.299616pt;}
.wsbd{word-spacing:-3.238512pt;}
.wsbf{word-spacing:-3.177408pt;}
.wsb4{word-spacing:-3.116304pt;}
.wse3{word-spacing:-3.055200pt;}
.ws4e{word-spacing:-2.994096pt;}
.ws59{word-spacing:-2.932992pt;}
.wsce{word-spacing:-2.871888pt;}
.wsa5{word-spacing:-2.810784pt;}
.wse7{word-spacing:-2.749680pt;}
.wse0{word-spacing:-2.688576pt;}
.wsf{word-spacing:-2.656693pt;}
.wsa8{word-spacing:-2.627472pt;}
.ws85{word-spacing:-2.566368pt;}
.ws23{word-spacing:-2.505264pt;}
.wsd4{word-spacing:-2.444160pt;}
.wsb2{word-spacing:-2.383056pt;}
.wsc5{word-spacing:-2.321952pt;}
.ws46{word-spacing:-2.260848pt;}
.ws81{word-spacing:-2.199744pt;}
.wse2{word-spacing:-2.138640pt;}
.ws15{word-spacing:-2.077536pt;}
.ws152{word-spacing:-2.016432pt;}
.ws154{word-spacing:-1.955328pt;}
.ws117{word-spacing:-1.895944pt;}
.wse4{word-spacing:-1.894224pt;}
.ws118{word-spacing:-1.893854pt;}
.wsd2{word-spacing:-1.833120pt;}
.ws124{word-spacing:-1.772038pt;}
.ws44{word-spacing:-1.772016pt;}
.wsbc{word-spacing:-1.710912pt;}
.wsda{word-spacing:-1.649808pt;}
.wsd7{word-spacing:-1.588704pt;}
.ws7f{word-spacing:-1.527600pt;}
.ws4a{word-spacing:-1.466496pt;}
.ws153{word-spacing:-1.405392pt;}
.ws4c{word-spacing:-1.344288pt;}
.ws6d{word-spacing:-1.283184pt;}
.ws64{word-spacing:-1.222080pt;}
.wsa4{word-spacing:-1.160976pt;}
.wse6{word-spacing:-1.099872pt;}
.ws115{word-spacing:-1.041946pt;}
.ws113{word-spacing:-1.041533pt;}
.wsa7{word-spacing:-1.038768pt;}
.ws3c{word-spacing:-0.977664pt;}
.wsee{word-spacing:-0.916560pt;}
.ws8f{word-spacing:-0.855456pt;}
.ws14{word-spacing:-0.794352pt;}
.ws73{word-spacing:-0.733248pt;}
.ws78{word-spacing:-0.672144pt;}
.ws97{word-spacing:-0.611040pt;}
.wsbb{word-spacing:-0.549936pt;}
.ws7b{word-spacing:-0.488832pt;}
.ws9a{word-spacing:-0.427728pt;}
.ws116{word-spacing:-0.371326pt;}
.ws12{word-spacing:-0.366624pt;}
.wse{word-spacing:-0.318803pt;}
.ws12f{word-spacing:-0.312978pt;}
.ws12e{word-spacing:-0.311408pt;}
.ws18{word-spacing:-0.305520pt;}
.wsd{word-spacing:-0.265669pt;}
.ws11d{word-spacing:-0.252559pt;}
.ws11e{word-spacing:-0.249770pt;}
.ws13a{word-spacing:-0.246769pt;}
.ws131{word-spacing:-0.246346pt;}
.ws133{word-spacing:-0.245765pt;}
.ws17{word-spacing:-0.244416pt;}
.ws132{word-spacing:-0.244374pt;}
.ws14a{word-spacing:-0.242352pt;}
.ws5{word-spacing:-0.212535pt;}
.ws16{word-spacing:-0.183312pt;}
.ws11f{word-spacing:-0.182360pt;}
.ws121{word-spacing:-0.180394pt;}
.ws128{word-spacing:-0.180267pt;}
.ws1a{word-spacing:-0.122208pt;}
.ws4{word-spacing:-0.106268pt;}
.ws27{word-spacing:-0.061104pt;}
.wsc{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.ws127{word-spacing:-0.004597pt;}
.ws125{word-spacing:-0.004245pt;}
.ws146{word-spacing:-0.004000pt;}
.ws13e{word-spacing:-0.003755pt;}
.ws122{word-spacing:-0.003157pt;}
.ws14c{word-spacing:-0.002944pt;}
.ws141{word-spacing:-0.002789pt;}
.ws135{word-spacing:-0.002699pt;}
.ws123{word-spacing:-0.002667pt;}
.ws130{word-spacing:-0.002560pt;}
.ws112{word-spacing:-0.002544pt;}
.ws11b{word-spacing:-0.001931pt;}
.ws145{word-spacing:-0.001808pt;}
.ws11a{word-spacing:-0.001579pt;}
.ws126{word-spacing:-0.001328pt;}
.ws14e{word-spacing:-0.000613pt;}
.ws140{word-spacing:-0.000107pt;}
.ws2{word-spacing:0.000000pt;}
.ws14b{word-spacing:0.001963pt;}
.ws142{word-spacing:0.003403pt;}
.ws119{word-spacing:0.004774pt;}
.wsb{word-spacing:0.053134pt;}
.ws35{word-spacing:0.061104pt;}
.ws10{word-spacing:0.095642pt;}
.ws7{word-spacing:0.106268pt;}
.ws143{word-spacing:0.119750pt;}
.ws2f{word-spacing:0.122208pt;}
.ws134{word-spacing:0.124404pt;}
.ws6{word-spacing:0.159402pt;}
.ws36{word-spacing:0.183312pt;}
.ws107{word-spacing:0.191283pt;}
.ws1f{word-spacing:0.244416pt;}
.ws137{word-spacing:0.245541pt;}
.ws138{word-spacing:0.246330pt;}
.ws139{word-spacing:0.249146pt;}
.ws12b{word-spacing:0.253088pt;}
.ws3d{word-spacing:0.305520pt;}
.ws12c{word-spacing:0.306134pt;}
.ws12d{word-spacing:0.308951pt;}
.ws65{word-spacing:0.366624pt;}
.ws94{word-spacing:0.427728pt;}
.ws5f{word-spacing:0.488832pt;}
.ws13d{word-spacing:0.548817pt;}
.wsbe{word-spacing:0.549936pt;}
.ws13b{word-spacing:0.553377pt;}
.wsa6{word-spacing:0.611040pt;}
.wsc3{word-spacing:0.672144pt;}
.ws49{word-spacing:0.733248pt;}
.ws7c{word-spacing:0.794352pt;}
.ws53{word-spacing:0.855456pt;}
.ws93{word-spacing:0.916560pt;}
.ws6c{word-spacing:0.977664pt;}
.wsa1{word-spacing:1.038768pt;}
.ws8a{word-spacing:1.099872pt;}
.wsec{word-spacing:1.099878pt;}
.wsae{word-spacing:1.160976pt;}
.ws1c{word-spacing:1.222080pt;}
.ws76{word-spacing:1.283184pt;}
.ws5c{word-spacing:1.344288pt;}
.ws90{word-spacing:1.405392pt;}
.wsd0{word-spacing:1.466496pt;}
.ws144{word-spacing:1.495281pt;}
.ws84{word-spacing:1.527600pt;}
.ws48{word-spacing:1.588704pt;}
.wsa{word-spacing:1.594016pt;}
.ws57{word-spacing:1.649808pt;}
.ws25{word-spacing:1.710912pt;}
.ws8d{word-spacing:1.772016pt;}
.ws50{word-spacing:1.833120pt;}
.ws61{word-spacing:1.894224pt;}
.ws51{word-spacing:1.955328pt;}
.ws4d{word-spacing:2.016432pt;}
.ws62{word-spacing:2.077536pt;}
.ws86{word-spacing:2.138640pt;}
.ws74{word-spacing:2.199744pt;}
.ws7a{word-spacing:2.260848pt;}
.ws8{word-spacing:2.284756pt;}
.ws8e{word-spacing:2.321952pt;}
.ws2b{word-spacing:2.383056pt;}
.ws70{word-spacing:2.444160pt;}
.wsb8{word-spacing:2.505264pt;}
.ws43{word-spacing:2.566368pt;}
.wsba{word-spacing:2.627472pt;}
.ws56{word-spacing:2.688576pt;}
.ws83{word-spacing:2.749680pt;}
.ws13{word-spacing:2.810784pt;}
.wsc6{word-spacing:2.871888pt;}
.ws41{word-spacing:2.932992pt;}
.ws14f{word-spacing:2.933368pt;}
.ws150{word-spacing:2.935219pt;}
.ws54{word-spacing:2.994096pt;}
.ws92{word-spacing:3.055200pt;}
.ws91{word-spacing:3.116304pt;}
.ws3b{word-spacing:3.177408pt;}
.ws8b{word-spacing:3.238512pt;}
.ws11c{word-spacing:3.298623pt;}
.wsb9{word-spacing:3.299616pt;}
.ws40{word-spacing:3.360720pt;}
.wsc0{word-spacing:3.421824pt;}
.ws96{word-spacing:3.482928pt;}
.ws3f{word-spacing:3.544032pt;}
.ws136{word-spacing:3.601570pt;}
.wsc2{word-spacing:3.605136pt;}
.wsa0{word-spacing:3.666240pt;}
.ws55{word-spacing:3.727344pt;}
.ws32{word-spacing:3.788448pt;}
.wsaf{word-spacing:3.849552pt;}
.ws9{word-spacing:3.878772pt;}
.wse5{word-spacing:3.910656pt;}
.wsd5{word-spacing:3.971760pt;}
.wsc7{word-spacing:4.032864pt;}
.wsc1{word-spacing:4.093968pt;}
.ws58{word-spacing:4.155072pt;}
.ws34{word-spacing:4.216176pt;}
.wsac{word-spacing:4.277280pt;}
.ws4f{word-spacing:4.338384pt;}
.ws2d{word-spacing:4.399488pt;}
.ws68{word-spacing:4.460592pt;}
.ws67{word-spacing:4.521696pt;}
.ws14d{word-spacing:4.580771pt;}
.ws2a{word-spacing:4.582800pt;}
.ws29{word-spacing:4.643904pt;}
.wsad{word-spacing:4.705008pt;}
.ws45{word-spacing:4.766112pt;}
.ws60{word-spacing:4.827216pt;}
.wsb0{word-spacing:4.888320pt;}
.wsf0{word-spacing:4.949424pt;}
.ws31{word-spacing:5.010528pt;}
.ws42{word-spacing:5.071632pt;}
.ws2c{word-spacing:5.132736pt;}
.ws6f{word-spacing:5.193840pt;}
.ws37{word-spacing:5.254944pt;}
.wsb6{word-spacing:5.316048pt;}
.ws3a{word-spacing:5.377152pt;}
.ws99{word-spacing:5.438256pt;}
.ws5e{word-spacing:5.499360pt;}
.ws3e{word-spacing:5.560464pt;}
.ws30{word-spacing:5.621568pt;}
.wsed{word-spacing:5.682672pt;}
.ws24{word-spacing:5.743776pt;}
.ws6a{word-spacing:5.804880pt;}
.ws22{word-spacing:5.865984pt;}
.ws26{word-spacing:5.927088pt;}
.ws38{word-spacing:5.988192pt;}
.ws5a{word-spacing:6.049296pt;}
.ws20{word-spacing:6.110400pt;}
.wsa9{word-spacing:6.171504pt;}
.wsdd{word-spacing:6.232608pt;}
.wsaa{word-spacing:6.293712pt;}
.ws63{word-spacing:6.354816pt;}
.ws33{word-spacing:6.415920pt;}
.ws1b{word-spacing:6.477024pt;}
.ws87{word-spacing:6.538128pt;}
.wsb7{word-spacing:6.599232pt;}
.ws149{word-spacing:6.602035pt;}
.wsb3{word-spacing:6.660336pt;}
.ws147{word-spacing:6.662166pt;}
.wsfb{word-spacing:6.694912pt;}
.wsd8{word-spacing:6.721440pt;}
.ws80{word-spacing:6.782544pt;}
.wsb5{word-spacing:6.904752pt;}
.ws98{word-spacing:6.965856pt;}
.ws13f{word-spacing:7.025569pt;}
.ws5d{word-spacing:7.026960pt;}
.wse1{word-spacing:7.088064pt;}
.ws4b{word-spacing:7.149168pt;}
.ws66{word-spacing:7.210272pt;}
.wscf{word-spacing:7.271376pt;}
.ws52{word-spacing:7.332480pt;}
.ws5b{word-spacing:7.393584pt;}
.ws82{word-spacing:7.454688pt;}
.wse8{word-spacing:7.515792pt;}
.ws77{word-spacing:7.576896pt;}
.wsef{word-spacing:7.699104pt;}
.ws19{word-spacing:7.760208pt;}
.ws28{word-spacing:7.821312pt;}
.ws6e{word-spacing:7.882416pt;}
.ws155{word-spacing:8.004624pt;}
.ws1d{word-spacing:8.065728pt;}
.ws9e{word-spacing:8.126832pt;}
.wsa3{word-spacing:8.187936pt;}
.wscb{word-spacing:8.249040pt;}
.ws21{word-spacing:8.310144pt;}
.wsde{word-spacing:8.371248pt;}
.ws1e{word-spacing:8.493456pt;}
.ws72{word-spacing:8.554560pt;}
.wsf3{word-spacing:8.615664pt;}
.ws88{word-spacing:8.676768pt;}
.ws8c{word-spacing:8.737872pt;}
.wsf4{word-spacing:8.798976pt;}
.wsf8{word-spacing:8.860080pt;}
.ws79{word-spacing:8.921184pt;}
.ws9f{word-spacing:9.043392pt;}
.wsca{word-spacing:9.104496pt;}
.ws69{word-spacing:9.165600pt;}
.wsea{word-spacing:9.226704pt;}
.wsd6{word-spacing:9.287808pt;}
.ws39{word-spacing:9.348912pt;}
.wsf7{word-spacing:9.410016pt;}
.ws95{word-spacing:9.471120pt;}
.ws47{word-spacing:9.532224pt;}
.wsc4{word-spacing:9.593328pt;}
.wsf1{word-spacing:9.654432pt;}
.wsdc{word-spacing:9.776640pt;}
.ws2e{word-spacing:9.837744pt;}
.ws10b{word-spacing:9.898848pt;}
.ws10f{word-spacing:9.959952pt;}
.wsf9{word-spacing:10.082160pt;}
.wsab{word-spacing:10.143264pt;}
.wse9{word-spacing:10.265472pt;}
.wsf6{word-spacing:10.326576pt;}
.wsfa{word-spacing:10.387680pt;}
.wsc8{word-spacing:10.448784pt;}
.wsc9{word-spacing:10.509888pt;}
.ws111{word-spacing:10.632096pt;}
.wsff{word-spacing:10.815408pt;}
.ws106{word-spacing:10.876512pt;}
.ws10c{word-spacing:10.998720pt;}
.ws103{word-spacing:11.243136pt;}
.ws75{word-spacing:11.304240pt;}
.wsfe{word-spacing:11.365344pt;}
.wsf5{word-spacing:11.487552pt;}
.ws10e{word-spacing:11.548656pt;}
.ws89{word-spacing:11.609760pt;}
.ws6b{word-spacing:11.670864pt;}
.wsfd{word-spacing:12.037488pt;}
.ws9c{word-spacing:12.220800pt;}
.ws10d{word-spacing:12.831840pt;}
.ws7d{word-spacing:12.892944pt;}
.wsdf{word-spacing:13.076256pt;}
.ws71{word-spacing:13.137360pt;}
.ws105{word-spacing:13.320672pt;}
.ws9d{word-spacing:14.115024pt;}
.ws109{word-spacing:14.420544pt;}
.ws151{word-spacing:15.003739pt;}
.ws0{word-spacing:15.005042pt;}
.ws110{word-spacing:15.581520pt;}
.wsd3{word-spacing:16.131456pt;}
.ws3{word-spacing:16.312097pt;}
.wsb1{word-spacing:16.314768pt;}
.ws102{word-spacing:16.620288pt;}
.wsd9{word-spacing:17.109120pt;}
.wsdb{word-spacing:17.199459pt;}
.wsa2{word-spacing:17.231328pt;}
.ws100{word-spacing:18.208992pt;}
.wsfc{word-spacing:20.408736pt;}
.wscd{word-spacing:21.569712pt;}
.ws101{word-spacing:21.753024pt;}
.wscc{word-spacing:29.207712pt;}
.ws9b{word-spacing:44.605920pt;}
.ws10a{word-spacing:45.339168pt;}
.ws108{word-spacing:47.050080pt;}
.ws11{word-spacing:69.005059pt;}
.ws148{word-spacing:81.140002pt;}
.ws13c{word-spacing:89.187398pt;}
.ws120{word-spacing:130.689235pt;}
.ws114{word-spacing:136.054166pt;}
.ws104{word-spacing:836.034896pt;}
.wsd1{word-spacing:838.328229pt;}
._30{margin-left:-8.570501pt;}
._27{margin-left:-7.452032pt;}
._1{margin-left:-6.427083pt;}
._20{margin-left:-5.499360pt;}
._8{margin-left:-4.197575pt;}
._c{margin-left:-3.188032pt;}
._3{margin-left:-2.295387pt;}
._4{margin-left:-1.328347pt;}
._0{width:1.232709pt;}
._31{width:2.417595pt;}
._37{width:3.336805pt;}
._38{width:5.982875pt;}
._39{width:7.037595pt;}
._36{width:8.519509pt;}
._b{width:12.327057pt;}
._28{width:13.275506pt;}
._e{width:14.383425pt;}
._6{width:15.940160pt;}
._5{width:16.970964pt;}
._9{width:18.278050pt;}
._17{width:19.168055pt;}
._11{width:20.060709pt;}
._a{width:21.784885pt;}
._12{width:22.791792pt;}
._7{width:23.857106pt;}
._10{width:25.610549pt;}
._19{width:27.252384pt;}
._2{width:28.462795pt;}
._f{width:29.480367pt;}
._14{width:30.918624pt;}
._1b{width:31.835184pt;}
._23{width:32.996160pt;}
._25{width:34.199643pt;}
._15{width:35.134800pt;}
._16{width:36.336181pt;}
._26{width:37.456752pt;}
._1c{width:38.617728pt;}
._2f{width:39.778704pt;}
._1a{width:40.939680pt;}
._21{width:41.856240pt;}
._1e{width:43.200528pt;}
._2d{width:45.262123pt;}
._24{width:46.787063pt;}
._18{width:48.088848pt;}
._13{width:49.066512pt;}
._29{width:51.067003pt;}
._d{width:53.133867pt;}
._2e{width:54.305515pt;}
._2c{width:58.364944pt;}
._1d{width:59.881920pt;}
._2a{width:60.798480pt;}
._1f{width:62.326080pt;}
._2b{width:69.074133pt;}
._22{width:70.025184pt;}
._35{width:72.355714pt;}
._34{width:76.758416pt;}
._33{width:91.488726pt;}
._32{width:92.669338pt;}
.fs6{font-size:42.506667pt;}
.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;}
.ycc{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.y1ef{bottom:79.312000pt;}
.ye5{bottom:79.697333pt;}
.y1ae{bottom:79.750667pt;}
.y1fc{bottom:80.213333pt;}
.yed{bottom:80.598667pt;}
.y52{bottom:80.652000pt;}
.y25{bottom:82.800000pt;}
.y63{bottom:84.074667pt;}
.y72{bottom:84.976000pt;}
.yb9{bottom:88.398667pt;}
.ycb{bottom:89.300000pt;}
.y217{bottom:92.706667pt;}
.y1c8{bottom:94.426667pt;}
.y142{bottom:94.664000pt;}
.y1d4{bottom:95.328000pt;}
.y167{bottom:95.565333pt;}
.y9e{bottom:96.145333pt;}
.y100{bottom:96.484000pt;}
.ya7{bottom:97.046667pt;}
.y103{bottom:97.385333pt;}
.y182{bottom:97.452000pt;}
.y1ee{bottom:99.576000pt;}
.ye4{bottom:99.961333pt;}
.y1ad{bottom:100.014667pt;}
.y1fb{bottom:100.477333pt;}
.yec{bottom:100.862667pt;}
.y51{bottom:100.916000pt;}
.y24{bottom:103.064000pt;}
.y62{bottom:104.338667pt;}
.y71{bottom:105.240000pt;}
.yb8{bottom:108.662667pt;}
.y118{bottom:109.454667pt;}
.yca{bottom:109.564000pt;}
.y216{bottom:112.970667pt;}
.y1c7{bottom:114.690667pt;}
.y141{bottom:114.928000pt;}
.y1d3{bottom:115.592000pt;}
.y166{bottom:115.829333pt;}
.y9d{bottom:116.409333pt;}
.yff{bottom:116.748000pt;}
.ya6{bottom:117.310667pt;}
.y102{bottom:117.649333pt;}
.y181{bottom:117.716000pt;}
.y1ed{bottom:119.840000pt;}
.ye3{bottom:120.225333pt;}
.y1ac{bottom:120.278667pt;}
.y1fa{bottom:120.741333pt;}
.yeb{bottom:121.126667pt;}
.y50{bottom:121.180000pt;}
.y23{bottom:123.328000pt;}
.y61{bottom:124.602667pt;}
.y70{bottom:125.504000pt;}
.y10f{bottom:128.817333pt;}
.yb7{bottom:128.926667pt;}
.y117{bottom:129.718667pt;}
.yc9{bottom:129.828000pt;}
.y215{bottom:133.234667pt;}
.y1c6{bottom:134.954667pt;}
.y140{bottom:135.192000pt;}
.y1d2{bottom:135.856000pt;}
.y165{bottom:136.093333pt;}
.y9c{bottom:136.673333pt;}
.yfe{bottom:137.012000pt;}
.ya5{bottom:137.574667pt;}
.y101{bottom:137.913333pt;}
.y180{bottom:137.980000pt;}
.y1ec{bottom:140.104000pt;}
.ye2{bottom:140.489333pt;}
.y1ab{bottom:140.542667pt;}
.y1f9{bottom:141.005333pt;}
.yea{bottom:141.390667pt;}
.y4f{bottom:141.444000pt;}
.y22{bottom:143.592000pt;}
.y60{bottom:144.866667pt;}
.y6f{bottom:145.768000pt;}
.y10e{bottom:149.081333pt;}
.yb6{bottom:149.190667pt;}
.y116{bottom:149.982667pt;}
.yc8{bottom:150.092000pt;}
.y214{bottom:153.498667pt;}
.y1c5{bottom:155.218667pt;}
.y13f{bottom:155.456000pt;}
.y1d1{bottom:156.120000pt;}
.y164{bottom:156.357333pt;}
.y9b{bottom:156.937333pt;}
.ya4{bottom:157.838667pt;}
.y17f{bottom:158.244000pt;}
.y1eb{bottom:160.368000pt;}
.ye1{bottom:160.753333pt;}
.y1aa{bottom:160.806667pt;}
.y1f8{bottom:161.269333pt;}
.ye9{bottom:161.654667pt;}
.y4e{bottom:161.708000pt;}
.y21{bottom:163.856000pt;}
.y5f{bottom:165.130667pt;}
.y6e{bottom:166.032000pt;}
.y10d{bottom:169.345333pt;}
.yb5{bottom:169.454667pt;}
.y115{bottom:170.246667pt;}
.yc7{bottom:170.356000pt;}
.y213{bottom:173.762667pt;}
.y1c4{bottom:175.482667pt;}
.y13e{bottom:175.720000pt;}
.y1d0{bottom:176.384000pt;}
.y163{bottom:176.621333pt;}
.y9a{bottom:177.201333pt;}
.ya3{bottom:178.102667pt;}
.y17e{bottom:178.508000pt;}
.y1ea{bottom:180.632000pt;}
.ye0{bottom:181.017333pt;}
.y1a9{bottom:181.070667pt;}
.y1f7{bottom:181.533333pt;}
.ye8{bottom:181.918667pt;}
.y4d{bottom:181.972000pt;}
.y20{bottom:184.120000pt;}
.y5e{bottom:185.394667pt;}
.y6d{bottom:186.296000pt;}
.y10c{bottom:189.609333pt;}
.yb4{bottom:189.718667pt;}
.y114{bottom:190.510667pt;}
.yc6{bottom:190.620000pt;}
.y212{bottom:194.026667pt;}
.y1c3{bottom:195.746667pt;}
.y13d{bottom:195.984000pt;}
.y1cf{bottom:196.648000pt;}
.y162{bottom:196.885333pt;}
.y99{bottom:197.465333pt;}
.ya2{bottom:198.366667pt;}
.y17d{bottom:198.772000pt;}
.y1e9{bottom:200.896000pt;}
.ydf{bottom:201.281333pt;}
.y1a8{bottom:201.334667pt;}
.y1f6{bottom:201.797333pt;}
.ye7{bottom:202.182667pt;}
.y4c{bottom:202.236000pt;}
.y1f{bottom:204.384000pt;}
.y5d{bottom:205.658667pt;}
.y6c{bottom:206.560000pt;}
.y10b{bottom:209.873333pt;}
.yb3{bottom:209.982667pt;}
.y113{bottom:210.774667pt;}
.yc5{bottom:210.884000pt;}
.y211{bottom:214.292000pt;}
.y1c2{bottom:216.010667pt;}
.y13c{bottom:216.249333pt;}
.y1ce{bottom:216.912000pt;}
.y161{bottom:217.150667pt;}
.y98{bottom:217.729333pt;}
.ya1{bottom:218.630667pt;}
.y17c{bottom:219.036000pt;}
.y1e8{bottom:221.160000pt;}
.yde{bottom:221.545333pt;}
.y1a7{bottom:221.598667pt;}
.y1f5{bottom:222.061333pt;}
.ye6{bottom:222.446667pt;}
.y4b{bottom:222.500000pt;}
.y1e{bottom:224.648000pt;}
.y5c{bottom:225.922667pt;}
.y6b{bottom:226.824000pt;}
.y10a{bottom:230.137333pt;}
.yb2{bottom:230.246667pt;}
.y112{bottom:231.038667pt;}
.yc4{bottom:231.148000pt;}
.y20f{bottom:234.556000pt;}
.y210{bottom:234.632000pt;}
.y1c1{bottom:236.274667pt;}
.y13b{bottom:236.513333pt;}
.y1cd{bottom:237.176000pt;}
.y160{bottom:237.414667pt;}
.y97{bottom:237.993333pt;}
.ya0{bottom:238.894667pt;}
.y17b{bottom:239.300000pt;}
.y1e7{bottom:241.425333pt;}
.y1a6{bottom:241.864000pt;}
.y1f4{bottom:242.325333pt;}
.y4a{bottom:242.764000pt;}
.y1d{bottom:244.912000pt;}
.y5b{bottom:246.186667pt;}
.y6a{bottom:247.088000pt;}
.y109{bottom:250.402667pt;}
.yb1{bottom:250.510667pt;}
.y111{bottom:251.304000pt;}
.yc3{bottom:251.412000pt;}
.y20e{bottom:254.820000pt;}
.y1c0{bottom:256.538667pt;}
.y13a{bottom:256.777333pt;}
.y1cc{bottom:257.440000pt;}
.y15f{bottom:257.678667pt;}
.y96{bottom:258.257333pt;}
.ydd{bottom:258.650667pt;}
.y9f{bottom:259.158667pt;}
.y17a{bottom:259.564000pt;}
.y1e6{bottom:261.689333pt;}
.y1a5{bottom:262.128000pt;}
.y1f3{bottom:262.590667pt;}
.y49{bottom:263.029333pt;}
.y1c{bottom:265.176000pt;}
.y5a{bottom:266.450667pt;}
.y69{bottom:267.352000pt;}
.y108{bottom:270.666667pt;}
.yb0{bottom:270.774667pt;}
.y110{bottom:271.568000pt;}
.yc2{bottom:271.676000pt;}
.y20c{bottom:275.084000pt;}
.y20d{bottom:275.160000pt;}
.y1bf{bottom:276.802667pt;}
.y139{bottom:277.041333pt;}
.y1cb{bottom:277.704000pt;}
.y15e{bottom:277.942667pt;}
.ydc{bottom:278.916000pt;}
.y179{bottom:279.828000pt;}
.y1e5{bottom:281.953333pt;}
.y1a4{bottom:282.392000pt;}
.y1f2{bottom:282.854667pt;}
.y48{bottom:283.293333pt;}
.y1b{bottom:285.440000pt;}
.y59{bottom:286.716000pt;}
.y68{bottom:287.617333pt;}
.yaf{bottom:291.038667pt;}
.yc1{bottom:291.940000pt;}
.y20b{bottom:295.348000pt;}
.y1be{bottom:297.066667pt;}
.y138{bottom:297.305333pt;}
.y1ca{bottom:297.968000pt;}
.y15d{bottom:298.206667pt;}
.ydb{bottom:299.180000pt;}
.y178{bottom:300.093333pt;}
.y1e4{bottom:302.217333pt;}
.y1a3{bottom:302.656000pt;}
.y1f1{bottom:303.118667pt;}
.y47{bottom:303.557333pt;}
.y58{bottom:306.980000pt;}
.y107{bottom:307.772000pt;}
.y67{bottom:307.881333pt;}
.y88{bottom:311.304000pt;}
.y95{bottom:312.204000pt;}
.y20a{bottom:315.612000pt;}
.y1bd{bottom:317.332000pt;}
.y137{bottom:317.569333pt;}
.y1c9{bottom:318.232000pt;}
.y15c{bottom:318.470667pt;}
.yda{bottom:319.444000pt;}
.y177{bottom:320.357333pt;}
.y1e3{bottom:322.481333pt;}
.y1a2{bottom:322.920000pt;}
.y1f0{bottom:323.382667pt;}
.y46{bottom:323.821333pt;}
.y21a{bottom:323.897333pt;}
.y57{bottom:327.244000pt;}
.y66{bottom:328.145333pt;}
.y1a{bottom:330.944000pt;}
.y87{bottom:331.568000pt;}
.y94{bottom:332.469333pt;}
.y209{bottom:335.876000pt;}
.y136{bottom:337.833333pt;}
.y15b{bottom:338.734667pt;}
.yd9{bottom:339.708000pt;}
.y176{bottom:340.621333pt;}
.y1a1{bottom:343.184000pt;}
.y45{bottom:344.085333pt;}
.y56{bottom:347.508000pt;}
.y65{bottom:348.409333pt;}
.y86{bottom:351.832000pt;}
.y93{bottom:352.733333pt;}
.y208{bottom:356.140000pt;}
.y135{bottom:358.097333pt;}
.y15a{bottom:358.998667pt;}
.y1e2{bottom:359.586667pt;}
.yd8{bottom:359.972000pt;}
.y175{bottom:360.885333pt;}
.y1a0{bottom:363.448000pt;}
.y44{bottom:364.349333pt;}
.y19{bottom:367.542667pt;}
.y55{bottom:367.772000pt;}
.y64{bottom:368.673333pt;}
.y1bc{bottom:370.377333pt;}
.y85{bottom:372.096000pt;}
.y92{bottom:372.997333pt;}
.y207{bottom:376.404000pt;}
.y134{bottom:378.361333pt;}
.y159{bottom:379.262667pt;}
.y1e1{bottom:379.850667pt;}
.yd7{bottom:380.236000pt;}
.y174{bottom:381.149333pt;}
.y106{bottom:382.837333pt;}
.y19f{bottom:383.712000pt;}
.y18{bottom:384.053333pt;}
.y43{bottom:384.613333pt;}
.y1bb{bottom:390.641333pt;}
.y84{bottom:392.360000pt;}
.y91{bottom:393.261333pt;}
.y206{bottom:396.668000pt;}
.y133{bottom:398.625333pt;}
.y158{bottom:399.526667pt;}
.y1e0{bottom:400.114667pt;}
.y173{bottom:401.413333pt;}
.y105{bottom:403.101333pt;}
.y17{bottom:403.450667pt;}
.y19e{bottom:403.976000pt;}
.y42{bottom:404.877333pt;}
.yd6{bottom:409.798667pt;}
.y1ba{bottom:410.905333pt;}
.y83{bottom:412.624000pt;}
.y90{bottom:413.525333pt;}
.y205{bottom:416.932000pt;}
.y132{bottom:418.889333pt;}
.y157{bottom:419.790667pt;}
.y1df{bottom:420.378667pt;}
.y172{bottom:421.677333pt;}
.y104{bottom:422.464000pt;}
.y19d{bottom:424.240000pt;}
.y41{bottom:425.141333pt;}
.y1b9{bottom:431.169333pt;}
.y82{bottom:432.888000pt;}
.y16{bottom:433.362667pt;}
.y8f{bottom:433.789333pt;}
.y204{bottom:437.196000pt;}
.y131{bottom:439.153333pt;}
.y156{bottom:440.054667pt;}
.y1de{bottom:440.642667pt;}
.y171{bottom:441.941333pt;}
.y19c{bottom:444.504000pt;}
.y40{bottom:445.405333pt;}
.y1b8{bottom:451.433333pt;}
.y81{bottom:453.152000pt;}
.y8e{bottom:454.053333pt;}
.y203{bottom:457.460000pt;}
.y130{bottom:459.417333pt;}
.y155{bottom:460.318667pt;}
.y1dd{bottom:460.906667pt;}
.y170{bottom:462.205333pt;}
.y19b{bottom:464.768000pt;}
.y15{bottom:464.830667pt;}
.yd5{bottom:465.177333pt;}
.y3f{bottom:465.669333pt;}
.y1b7{bottom:471.697333pt;}
.y80{bottom:473.416000pt;}
.y8d{bottom:474.317333pt;}
.y202{bottom:477.724000pt;}
.y12f{bottom:479.682667pt;}
.y154{bottom:480.582667pt;}
.y1dc{bottom:481.170667pt;}
.y16f{bottom:482.469333pt;}
.y14{bottom:484.344000pt;}
.y19a{bottom:485.032000pt;}
.yd4{bottom:485.441333pt;}
.y3e{bottom:485.933333pt;}
.y1d5{bottom:486.010667pt;}
.y1b6{bottom:491.961333pt;}
.y7f{bottom:493.680000pt;}
.y8c{bottom:494.581333pt;}
.y201{bottom:497.989333pt;}
.y12e{bottom:499.946667pt;}
.y153{bottom:500.848000pt;}
.y1db{bottom:501.436000pt;}
.y16e{bottom:502.733333pt;}
.y13{bottom:503.858667pt;}
.y199{bottom:505.296000pt;}
.yd3{bottom:505.705333pt;}
.y3d{bottom:506.197333pt;}
.y219{bottom:506.274667pt;}
.y1b5{bottom:512.225333pt;}
.y7e{bottom:513.944000pt;}
.y8b{bottom:514.845333pt;}
.y200{bottom:518.253333pt;}
.y12d{bottom:520.210667pt;}
.y152{bottom:521.112000pt;}
.y1da{bottom:521.700000pt;}
.y16d{bottom:522.997333pt;}
.y12{bottom:523.372000pt;}
.y198{bottom:525.561333pt;}
.yd2{bottom:525.969333pt;}
.y3c{bottom:526.461333pt;}
.y1b4{bottom:532.489333pt;}
.y7d{bottom:534.208000pt;}
.y8a{bottom:535.109333pt;}
.y1ff{bottom:538.517333pt;}
.y12c{bottom:540.474667pt;}
.y151{bottom:541.376000pt;}
.y11{bottom:542.885333pt;}
.y16c{bottom:543.261333pt;}
.y197{bottom:545.825333pt;}
.yd1{bottom:546.233333pt;}
.y3b{bottom:546.726667pt;}
.y1d9{bottom:551.262667pt;}
.y1b3{bottom:552.754667pt;}
.y7c{bottom:554.472000pt;}
.y89{bottom:555.373333pt;}
.y1fe{bottom:558.781333pt;}
.y12b{bottom:560.738667pt;}
.y150{bottom:561.640000pt;}
.y10{bottom:562.398667pt;}
.y16b{bottom:563.525333pt;}
.y196{bottom:566.089333pt;}
.yd0{bottom:566.497333pt;}
.y3a{bottom:566.990667pt;}
.y1d8{bottom:571.001333pt;}
.y1b2{bottom:573.018667pt;}
.yae{bottom:574.736000pt;}
.yc0{bottom:575.637333pt;}
.y12a{bottom:581.002667pt;}
.y14f{bottom:581.904000pt;}
.yf{bottom:581.912000pt;}
.y16a{bottom:582.889333pt;}
.y195{bottom:586.353333pt;}
.ycf{bottom:586.762667pt;}
.y39{bottom:587.254667pt;}
.y168{bottom:587.330667pt;}
.y1fd{bottom:588.344000pt;}
.y1d7{bottom:591.265333pt;}
.y7b{bottom:591.578667pt;}
.y1b1{bottom:593.282667pt;}
.yad{bottom:595.001333pt;}
.ybf{bottom:595.902667pt;}
.y129{bottom:601.266667pt;}
.ye{bottom:601.425333pt;}
.y14e{bottom:602.168000pt;}
.y169{bottom:603.153333pt;}
.y194{bottom:606.617333pt;}
.yce{bottom:607.026667pt;}
.y38{bottom:607.518667pt;}
.y7a{bottom:611.842667pt;}
.y1b0{bottom:612.645333pt;}
.yac{bottom:615.265333pt;}
.ybe{bottom:616.166667pt;}
.yd{bottom:620.940000pt;}
.y128{bottom:621.530667pt;}
.y14d{bottom:622.432000pt;}
.ycd{bottom:626.389333pt;}
.y193{bottom:626.881333pt;}
.y37{bottom:627.782667pt;}
.y79{bottom:632.106667pt;}
.y1af{bottom:632.909333pt;}
.yab{bottom:635.529333pt;}
.ybd{bottom:636.430667pt;}
.yc{bottom:640.453333pt;}
.y127{bottom:641.794667pt;}
.y14c{bottom:642.696000pt;}
.y192{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.y78{bottom:652.370667pt;}
.yaa{bottom:655.793333pt;}
.ybc{bottom:656.694667pt;}
.yb{bottom:659.966667pt;}
.y126{bottom:662.058667pt;}
.y14b{bottom:662.960000pt;}
.y191{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.y77{bottom:672.634667pt;}
.ya9{bottom:676.057333pt;}
.ybb{bottom:676.958667pt;}
.ya{bottom:679.480000pt;}
.y125{bottom:682.322667pt;}
.y14a{bottom:683.224000pt;}
.y190{bottom:687.673333pt;}
.y34{bottom:688.574667pt;}
.y76{bottom:692.898667pt;}
.ya8{bottom:696.321333pt;}
.yba{bottom:697.222667pt;}
.y9{bottom:698.993333pt;}
.y124{bottom:702.586667pt;}
.y149{bottom:703.488000pt;}
.y18f{bottom:707.937333pt;}
.y33{bottom:708.838667pt;}
.y75{bottom:713.162667pt;}
.yf3{bottom:716.585333pt;}
.yf9{bottom:717.486667pt;}
.y8{bottom:718.508000pt;}
.y123{bottom:722.850667pt;}
.y148{bottom:723.752000pt;}
.y18e{bottom:728.201333pt;}
.y32{bottom:729.102667pt;}
.y74{bottom:733.426667pt;}
.yf2{bottom:736.849333pt;}
.yf8{bottom:737.750667pt;}
.y7{bottom:738.021333pt;}
.y122{bottom:743.114667pt;}
.y147{bottom:744.016000pt;}
.y18d{bottom:748.465333pt;}
.y31{bottom:749.366667pt;}
.y73{bottom:753.690667pt;}
.yf1{bottom:757.113333pt;}
.y6{bottom:757.534667pt;}
.yf7{bottom:758.014667pt;}
.y121{bottom:763.380000pt;}
.y146{bottom:764.280000pt;}
.y18c{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.yf0{bottom:777.377333pt;}
.yf6{bottom:778.278667pt;}
.y120{bottom:783.644000pt;}
.y145{bottom:784.545333pt;}
.y18b{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.yef{bottom:797.641333pt;}
.yf5{bottom:798.542667pt;}
.y11f{bottom:803.908000pt;}
.y144{bottom:804.809333pt;}
.y18a{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y1d6{bottom:810.236000pt;}
.y5{bottom:815.970667pt;}
.yee{bottom:817.905333pt;}
.yf4{bottom:818.806667pt;}
.y11e{bottom:824.172000pt;}
.y143{bottom:825.073333pt;}
.y189{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.yfb{bottom:838.169333pt;}
.yfd{bottom:839.070667pt;}
.y188{bottom:849.786667pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.yfa{bottom:858.434667pt;}
.yfc{bottom:859.334667pt;}
.y11d{bottom:861.277333pt;}
.y187{bottom:870.050667pt;}
.y2b{bottom:870.952000pt;}
.y218{bottom:871.028000pt;}
.y11c{bottom:881.541333pt;}
.y3{bottom:885.776000pt;}
.y186{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.y11b{bottom:901.805333pt;}
.y185{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.y11a{bottom:922.069333pt;}
.y184{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y183{bottom:951.106667pt;}
.y119{bottom:951.632000pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.hd{height:31.880000pt;}
.h1{height:31.880400pt;}
.h6{height:32.900710pt;}
.h5{height:36.556100pt;}
.h4{height:36.715502pt;}
.hb{height:41.917344pt;}
.h8{height:42.039552pt;}
.h3{height:47.523004pt;}
.h7{height:47.730226pt;}
.h2{height:63.169041pt;}
.ha{height:81.251067pt;}
.hc{height:82.258667pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:112.453333pt;}
.xb{left:113.385333pt;}
.x3{left:123.825333pt;}
.x1a{left:130.697333pt;}
.x19{left:131.972000pt;}
.x11{left:134.286667pt;}
.xc{left:136.062667pt;}
.x6{left:158.261333pt;}
.x20{left:161.004000pt;}
.x9{left:162.052000pt;}
.x13{left:169.769333pt;}
.x12{left:173.160000pt;}
.x26{left:187.141333pt;}
.x25{left:188.416000pt;}
.x4{left:194.602667pt;}
.x8{left:234.010667pt;}
.x2d{left:239.522667pt;}
.x2c{left:240.797333pt;}
.x2b{left:247.776000pt;}
.x2a{left:249.050667pt;}
.x18{left:276.433333pt;}
.x16{left:280.261333pt;}
.x27{left:293.036000pt;}
.x5{left:338.720000pt;}
.xe{left:359.442667pt;}
.x7{left:364.560000pt;}
.x2e{left:369.030667pt;}
.x2f{left:374.117333pt;}
.xa{left:384.740000pt;}
.x28{left:396.764000pt;}
.x17{left:397.898667pt;}
.xf{left:402.290667pt;}
.x15{left:411.606667pt;}
.xd{left:412.752000pt;}
.x14{left:435.429333pt;}
.x21{left:458.974667pt;}
.x22{left:464.061333pt;}
.x1f{left:472.778667pt;}
.x1e{left:474.054667pt;}
.x30{left:475.449333pt;}
.x31{left:480.536000pt;}
.x29{left:482.373333pt;}
.x2{left:510.021333pt;}
.x10{left:513.840000pt;}
.x1{left:618.953333pt;}
.x23{left:662.353333pt;}
.x24{left:667.440000pt;}
.x1d{left:676.222667pt;}
.x1c{left:677.497333pt;}
}




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