
    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_3ae62f32b2509b25187100b0.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_debccdc0f5bc077ec8aa3d3c.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_7d3acadfb535f5d48125e151.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_09aaeedaa497201859c21a70.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_724218207be0c0d6b4c54a6c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.962000;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_cf02f2f2b8ac2becb648d9bd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.555000;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;}
.mc{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);}
.m2c{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);}
.m3{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);}
.m1f{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);}
.m22{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);}
.m21{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);}
.m2a{transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m7{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);}
.m16{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);}
.ma{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.mb{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);}
.m31{transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247992,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m1c{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);}
.m15{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);}
.m6{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);}
.m17{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);}
.m24{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);}
.m14{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);}
.md{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);}
.m2d{transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m1d{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);}
.m11{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);}
.m13{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);}
.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);}
.m12{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);}
.m20{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);}
.m9{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);}
.mf{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);}
.m1a{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);}
.m1{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);}
.m10{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);}
.m28{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);}
.m26{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);}
.m30{transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m19{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);}
.m2b{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);}
.m2{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:24.948000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls2c{letter-spacing:-328.036824px;}
.ls2b{letter-spacing:-240.597000px;}
.ls27{letter-spacing:-102.356838px;}
.ls2d{letter-spacing:-100.019610px;}
.ls29{letter-spacing:-99.263448px;}
.ls26{letter-spacing:-89.020890px;}
.ls2e{letter-spacing:-71.697906px;}
.ls2a{letter-spacing:-63.792576px;}
.ls28{letter-spacing:-59.049378px;}
.ls2f{letter-spacing:-14.985756px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:2.474712px;}
.ls1b{letter-spacing:2.543454px;}
.ls0{letter-spacing:2.988780px;}
.ls17{letter-spacing:16.704306px;}
.ls1d{letter-spacing:16.773048px;}
.ls21{letter-spacing:16.775301px;}
.ls6{letter-spacing:16.841790px;}
.ls15{letter-spacing:16.910532px;}
.ls18{letter-spacing:16.979274px;}
.ls8{letter-spacing:17.048016px;}
.ls20{letter-spacing:17.050204px;}
.ls1a{letter-spacing:17.116758px;}
.ls23{letter-spacing:17.182500px;}
.ls9{letter-spacing:17.185500px;}
.ls22{letter-spacing:17.188500px;}
.ls7{letter-spacing:17.254242px;}
.lsa{letter-spacing:17.322984px;}
.ls1c{letter-spacing:17.391726px;}
.ls14{letter-spacing:17.460468px;}
.ls1f{letter-spacing:17.526681px;}
.lsc{letter-spacing:17.529210px;}
.ls19{letter-spacing:18.147888px;}
.lsf{letter-spacing:18.972792px;}
.lsb{letter-spacing:19.041534px;}
.lsd{letter-spacing:19.385244px;}
.ls30{letter-spacing:20.003922px;}
.ls5{letter-spacing:20.177100px;}
.ls16{letter-spacing:20.347632px;}
.ls1e{letter-spacing:22.062029px;}
.ls25{letter-spacing:22.267914px;}
.ls13{letter-spacing:22.409892px;}
.ls11{letter-spacing:23.028570px;}
.ls24{letter-spacing:24.747000px;}
.ls31{letter-spacing:25.228314px;}
.lse{letter-spacing:26.534412px;}
.ls32{letter-spacing:26.809380px;}
.ls12{letter-spacing:26.878122px;}
.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;}
}
.wsa6{word-spacing:-17.185500px;}
.wse1{word-spacing:-6.530490px;}
.ws118{word-spacing:-3.856500px;}
.ws9b{word-spacing:-3.849552px;}
.ws32{word-spacing:-3.780810px;}
.ws5a{word-spacing:-3.574584px;}
.ws35{word-spacing:-3.505842px;}
.wse6{word-spacing:-3.437100px;}
.wsd3{word-spacing:-3.299616px;}
.ws2e{word-spacing:-3.162132px;}
.wsaa{word-spacing:-3.093390px;}
.ws10{word-spacing:-2.988780px;}
.wscb{word-spacing:-2.955906px;}
.ws29{word-spacing:-2.818422px;}
.ws39{word-spacing:-2.749680px;}
.wsef{word-spacing:-2.685371px;}
.wsa8{word-spacing:-2.680938px;}
.wsdd{word-spacing:-2.612196px;}
.wsd0{word-spacing:-2.543454px;}
.ws2b{word-spacing:-2.474712px;}
.ws2c{word-spacing:-2.337228px;}
.ws6a{word-spacing:-2.268486px;}
.ws57{word-spacing:-2.199744px;}
.ws8a{word-spacing:-2.062260px;}
.ws48{word-spacing:-1.924776px;}
.ws105{word-spacing:-1.921960px;}
.ws10f{word-spacing:-1.860271px;}
.ws86{word-spacing:-1.856034px;}
.ws110{word-spacing:-1.796206px;}
.ws92{word-spacing:-1.787292px;}
.wsab{word-spacing:-1.718550px;}
.ws60{word-spacing:-1.649808px;}
.wsa3{word-spacing:-1.581066px;}
.wsbd{word-spacing:-1.512324px;}
.ws46{word-spacing:-1.374840px;}
.ws113{word-spacing:-1.309233px;}
.ws115{word-spacing:-1.308767px;}
.ws30{word-spacing:-1.306098px;}
.ws27{word-spacing:-1.168614px;}
.ws33{word-spacing:-1.099872px;}
.ws72{word-spacing:-1.031130px;}
.wsa4{word-spacing:-0.962388px;}
.ws75{word-spacing:-0.893646px;}
.wse0{word-spacing:-0.824904px;}
.wsd6{word-spacing:-0.756162px;}
.ws117{word-spacing:-0.695232px;}
.ws116{word-spacing:-0.692318px;}
.ws58{word-spacing:-0.687420px;}
.wsa0{word-spacing:-0.618678px;}
.ws43{word-spacing:-0.549936px;}
.ws11d{word-spacing:-0.481836px;}
.wsac{word-spacing:-0.481194px;}
.ws11c{word-spacing:-0.475506px;}
.wsfa{word-spacing:-0.421023px;}
.wsf9{word-spacing:-0.417521px;}
.ws34{word-spacing:-0.412452px;}
.ws37{word-spacing:-0.343710px;}
.ws15{word-spacing:-0.274968px;}
.ws108{word-spacing:-0.273662px;}
.ws109{word-spacing:-0.271086px;}
.ws7{word-spacing:-0.239102px;}
.ws1b{word-spacing:-0.206226px;}
.ws10a{word-spacing:-0.202579px;}
.ws4{word-spacing:-0.179327px;}
.wsf6{word-spacing:-0.138237px;}
.ws36{word-spacing:-0.137484px;}
.wsf1{word-spacing:-0.136096px;}
.wsf7{word-spacing:-0.135296px;}
.wsf5{word-spacing:-0.134072px;}
.wsc7{word-spacing:-0.071731px;}
.ws2a{word-spacing:-0.068742px;}
.wsf4{word-spacing:-0.066388px;}
.ws1{word-spacing:-0.047821px;}
.wse8{word-spacing:-0.002862px;}
.ws112{word-spacing:-0.002172px;}
.ws10b{word-spacing:-0.001086px;}
.ws2{word-spacing:0.000000px;}
.ws128{word-spacing:0.000102px;}
.ws103{word-spacing:0.000828px;}
.ws111{word-spacing:0.001224px;}
.ws129{word-spacing:0.003828px;}
.ws3f{word-spacing:0.068742px;}
.ws11{word-spacing:0.107597px;}
.ws9{word-spacing:0.119551px;}
.ws107{word-spacing:0.129966px;}
.ws106{word-spacing:0.134227px;}
.ws1c{word-spacing:0.137484px;}
.ws126{word-spacing:0.204603px;}
.ws24{word-spacing:0.206226px;}
.wsff{word-spacing:0.210006px;}
.ws6{word-spacing:0.239102px;}
.ws44{word-spacing:0.274968px;}
.ws8{word-spacing:0.298878px;}
.ws73{word-spacing:0.343710px;}
.wsf2{word-spacing:0.344122px;}
.wse9{word-spacing:0.344624px;}
.wsf3{word-spacing:0.347063px;}
.ws3e{word-spacing:0.412452px;}
.wsc0{word-spacing:0.481194px;}
.wscd{word-spacing:0.549936px;}
.wsca{word-spacing:0.618678px;}
.wsb8{word-spacing:0.687420px;}
.ws5{word-spacing:0.717307px;}
.ws93{word-spacing:0.756162px;}
.ws3b{word-spacing:0.824904px;}
.wsc{word-spacing:0.836858px;}
.ws6e{word-spacing:0.893646px;}
.ws87{word-spacing:0.962388px;}
.ws71{word-spacing:1.031130px;}
.wsfd{word-spacing:1.098790px;}
.ws5b{word-spacing:1.099872px;}
.wsbc{word-spacing:1.168614px;}
.ws70{word-spacing:1.237356px;}
.ws9c{word-spacing:1.306098px;}
.wsa{word-spacing:1.374839px;}
.ws54{word-spacing:1.443582px;}
.wsa7{word-spacing:1.512324px;}
.ws66{word-spacing:1.581066px;}
.ws5f{word-spacing:1.649808px;}
.ws7a{word-spacing:1.718550px;}
.ws101{word-spacing:1.786939px;}
.ws102{word-spacing:1.787033px;}
.ws47{word-spacing:1.787292px;}
.wsd{word-spacing:1.793268px;}
.wsad{word-spacing:1.856034px;}
.wsbf{word-spacing:1.924776px;}
.ws2f{word-spacing:1.993518px;}
.ws17{word-spacing:2.062260px;}
.ws4e{word-spacing:2.131002px;}
.ws49{word-spacing:2.199744px;}
.ws5c{word-spacing:2.268486px;}
.ws7c{word-spacing:2.337228px;}
.ws52{word-spacing:2.405970px;}
.wsdf{word-spacing:2.474712px;}
.ws7b{word-spacing:2.543454px;}
.ws8b{word-spacing:2.612196px;}
.ws7d{word-spacing:2.680938px;}
.ws28{word-spacing:2.749680px;}
.ws11f{word-spacing:2.751751px;}
.ws121{word-spacing:2.751915px;}
.ws9a{word-spacing:2.818422px;}
.ws2d{word-spacing:2.887164px;}
.ws63{word-spacing:2.955906px;}
.ws1f{word-spacing:3.024648px;}
.ws11b{word-spacing:3.092931px;}
.ws45{word-spacing:3.093390px;}
.wse5{word-spacing:3.162132px;}
.ws119{word-spacing:3.166450px;}
.ws96{word-spacing:3.230874px;}
.wse{word-spacing:3.287658px;}
.wsd2{word-spacing:3.299616px;}
.ws51{word-spacing:3.368358px;}
.wsb{word-spacing:3.407209px;}
.ws59{word-spacing:3.437100px;}
.wsd9{word-spacing:3.505842px;}
.ws26{word-spacing:3.574584px;}
.wsb9{word-spacing:3.643326px;}
.wsa5{word-spacing:3.712068px;}
.ws55{word-spacing:3.780810px;}
.ws4b{word-spacing:3.849552px;}
.wsa2{word-spacing:3.918294px;}
.ws6f{word-spacing:3.987036px;}
.ws8d{word-spacing:4.055778px;}
.ws8f{word-spacing:4.124520px;}
.wsf8{word-spacing:4.192944px;}
.ws83{word-spacing:4.193262px;}
.ws25{word-spacing:4.262004px;}
.ws4f{word-spacing:4.330746px;}
.ws79{word-spacing:4.399488px;}
.ws127{word-spacing:4.399559px;}
.ws6c{word-spacing:4.468230px;}
.ws42{word-spacing:4.536972px;}
.ws99{word-spacing:4.605714px;}
.ws3a{word-spacing:4.674456px;}
.ws97{word-spacing:4.811940px;}
.wsec{word-spacing:4.814893px;}
.wsed{word-spacing:4.818434px;}
.ws56{word-spacing:4.880682px;}
.ws22{word-spacing:4.949424px;}
.wsce{word-spacing:5.018166px;}
.ws125{word-spacing:5.082414px;}
.ws6b{word-spacing:5.086908px;}
.wsfe{word-spacing:5.088661px;}
.ws124{word-spacing:5.091885px;}
.ws64{word-spacing:5.155650px;}
.wsea{word-spacing:5.223098px;}
.ws4d{word-spacing:5.224392px;}
.wseb{word-spacing:5.291958px;}
.ws9f{word-spacing:5.293134px;}
.wsaf{word-spacing:5.361876px;}
.ws68{word-spacing:5.430618px;}
.ws19{word-spacing:5.499360px;}
.ws1e{word-spacing:5.568102px;}
.ws67{word-spacing:5.636844px;}
.wsc1{word-spacing:5.705586px;}
.wsf{word-spacing:5.738458px;}
.ws81{word-spacing:5.774328px;}
.ws3d{word-spacing:5.843070px;}
.ws5d{word-spacing:5.911812px;}
.wsd4{word-spacing:5.980554px;}
.wscc{word-spacing:6.049296px;}
.ws85{word-spacing:6.118038px;}
.ws1d{word-spacing:6.186780px;}
.ws5e{word-spacing:6.255522px;}
.wsfc{word-spacing:6.255957px;}
.wsfb{word-spacing:6.258040px;}
.wsc2{word-spacing:6.324264px;}
.ws69{word-spacing:6.393006px;}
.ws4a{word-spacing:6.461748px;}
.ws3c{word-spacing:6.530490px;}
.ws88{word-spacing:6.599232px;}
.ws40{word-spacing:6.667974px;}
.ws8e{word-spacing:6.736716px;}
.ws8c{word-spacing:6.805458px;}
.ws89{word-spacing:6.874200px;}
.ws6d{word-spacing:6.942942px;}
.ws53{word-spacing:7.011684px;}
.ws122{word-spacing:7.148368px;}
.ws76{word-spacing:7.149168px;}
.ws123{word-spacing:7.150944px;}
.ws84{word-spacing:7.217910px;}
.ws9e{word-spacing:7.286652px;}
.ws38{word-spacing:7.355394px;}
.wsba{word-spacing:7.424136px;}
.ws20{word-spacing:7.492878px;}
.wse2{word-spacing:7.558518px;}
.wsee{word-spacing:7.560138px;}
.ws74{word-spacing:7.561620px;}
.ws31{word-spacing:7.630362px;}
.ws9d{word-spacing:7.905330px;}
.ws23{word-spacing:7.974072px;}
.ws12b{word-spacing:8.042814px;}
.ws94{word-spacing:8.111556px;}
.ws77{word-spacing:8.180298px;}
.ws78{word-spacing:8.386524px;}
.ws95{word-spacing:8.455266px;}
.ws82{word-spacing:8.524008px;}
.ws50{word-spacing:8.592750px;}
.wsd1{word-spacing:8.661492px;}
.ws1a{word-spacing:8.730234px;}
.ws61{word-spacing:8.798976px;}
.wsc4{word-spacing:8.867718px;}
.wsde{word-spacing:8.936460px;}
.wsc8{word-spacing:9.005202px;}
.wsc9{word-spacing:9.073944px;}
.ws21{word-spacing:9.211428px;}
.wsb4{word-spacing:9.280170px;}
.ws41{word-spacing:9.417654px;}
.ws10e{word-spacing:9.485278px;}
.ws10c{word-spacing:9.487125px;}
.ws65{word-spacing:9.555138px;}
.wse4{word-spacing:9.623880px;}
.wse3{word-spacing:9.692622px;}
.ws98{word-spacing:9.761364px;}
.wsbe{word-spacing:9.830106px;}
.wsa9{word-spacing:9.898848px;}
.wsae{word-spacing:9.967590px;}
.ws18{word-spacing:10.242558px;}
.wsb1{word-spacing:10.380042px;}
.wsd8{word-spacing:10.448784px;}
.wsb3{word-spacing:10.517526px;}
.wsb6{word-spacing:10.998720px;}
.wsdb{word-spacing:11.342430px;}
.wsb2{word-spacing:11.411172px;}
.ws120{word-spacing:11.459291px;}
.wsd7{word-spacing:11.548656px;}
.wsbb{word-spacing:12.167334px;}
.ws91{word-spacing:12.786012px;}
.ws4c{word-spacing:13.267206px;}
.ws90{word-spacing:13.679658px;}
.ws14{word-spacing:14.504562px;}
.ws62{word-spacing:16.429338px;}
.ws12a{word-spacing:16.879206px;}
.ws0{word-spacing:16.880672px;}
.wsa1{word-spacing:17.116758px;}
.ws16{word-spacing:17.254242px;}
.ws13{word-spacing:17.460468px;}
.wsb0{word-spacing:17.804178px;}
.ws3{word-spacing:18.291334px;}
.wsb5{word-spacing:19.349392px;}
.wsdc{word-spacing:20.622600px;}
.ws80{word-spacing:23.097312px;}
.ws7f{word-spacing:28.184220px;}
.ws7e{word-spacing:28.252962px;}
.wsb7{word-spacing:32.721192px;}
.wsda{word-spacing:35.677098px;}
.wsc5{word-spacing:38.564262px;}
.wscf{word-spacing:50.181660px;}
.wsd5{word-spacing:50.319144px;}
.ws12{word-spacing:77.630692px;}
.ws104{word-spacing:95.778229px;}
.ws114{word-spacing:104.831550px;}
.ws11e{word-spacing:119.927293px;}
.wsf0{word-spacing:153.060937px;}
.wsc6{word-spacing:155.013210px;}
.ws10d{word-spacing:172.652407px;}
.ws11a{word-spacing:174.123486px;}
.ws100{word-spacing:178.619213px;}
.wse7{word-spacing:601.458129px;}
.ws12c{word-spacing:940.539258px;}
.wsc3{word-spacing:943.119258px;}
._2e{margin-left:-30.590190px;}
._2d{margin-left:-26.671896px;}
._2f{margin-left:-24.815862px;}
._31{margin-left:-8.867718px;}
._22{margin-left:-7.630362px;}
._45{margin-left:-6.485660px;}
._d{margin-left:-5.385787px;}
._5{margin-left:-3.825638px;}
._1{margin-left:-2.450800px;}
._3{margin-left:-1.075961px;}
._0{width:1.386797px;}
._44{width:2.955906px;}
._49{width:4.650545px;}
._48{width:5.798240px;}
._46{width:7.032600px;}
._4a{width:8.918750px;}
._47{width:11.363345px;}
._8{width:16.079636px;}
._2{width:17.872904px;}
._4{width:19.905275px;}
._7{width:21.638767px;}
._6{width:23.252708px;}
._10{width:25.022088px;}
._18{width:26.740638px;}
._9{width:28.632512px;}
._1a{width:29.636792px;}
._15{width:31.071384px;}
._b{width:32.446639px;}
._c{width:33.468798px;}
._12{width:34.714710px;}
._30{width:35.814582px;}
._13{width:36.959284px;}
._1b{width:38.358036px;}
._f{width:40.557780px;}
._14{width:41.588910px;}
._1c{width:43.513686px;}
._11{width:44.544816px;}
._1e{width:46.514420px;}
._e{width:48.256884px;}
._16{width:50.181660px;}
._43{width:53.343792px;}
._42{width:56.207044px;}
._a{width:59.775600px;}
._17{width:61.180380px;}
._4e{width:64.641392px;}
._19{width:67.367160px;}
._24{width:68.398290px;}
._1d{width:69.979356px;}
._50{width:71.826118px;}
._4c{width:74.284435px;}
._25{width:77.708400px;}
._4f{width:79.672174px;}
._3f{width:103.456710px;}
._3b{width:104.694066px;}
._3a{width:109.162296px;}
._4b{width:119.408498px;}
._4d{width:126.245785px;}
._1f{width:135.215514px;}
._3c{width:149.307624px;}
._40{width:151.734511px;}
._41{width:154.666638px;}
._3d{width:172.129968px;}
._38{width:193.233762px;}
._36{width:203.888772px;}
._39{width:208.357002px;}
._3e{width:215.368686px;}
._23{width:242.109324px;}
._20{width:244.467472px;}
._21{width:272.630772px;}
._37{width:281.017296px;}
._28{width:291.603564px;}
._33{width:319.970099px;}
._35{width:379.937034px;}
._29{width:387.636138px;}
._32{width:443.430731px;}
._27{width:444.829482px;}
._2b{width:491.869927px;}
._2a{width:555.504102px;}
._34{width:639.781794px;}
._26{width:790.464258px;}
._2c{width:870.686172px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:47.820000px;}
.fs0{font-size:47.820600px;}
.fs6{font-size:50.869800px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs7{font-size:71.731200px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.308500px;}
.y94{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.ycb{bottom:87.576000px;}
.ye5{bottom:88.590000px;}
.y93{bottom:89.719500px;}
.y52{bottom:90.733500px;}
.y25{bottom:93.150000px;}
.y110{bottom:94.444500px;}
.y137{bottom:94.861500px;}
.y117{bottom:95.458500px;}
.ya5{bottom:96.529500px;}
.y194{bottom:104.295000px;}
.y16b{bottom:107.202000px;}
.y17f{bottom:108.145500px;}
.y18f{bottom:109.159500px;}
.y15b{bottom:109.290000px;}
.yca{bottom:110.373000px;}
.ye4{bottom:111.387000px;}
.y92{bottom:112.516500px;}
.y51{bottom:113.530500px;}
.y24{bottom:115.947000px;}
.y10f{bottom:117.241500px;}
.y136{bottom:117.658500px;}
.y116{bottom:118.255500px;}
.ya4{bottom:119.326500px;}
.y193{bottom:127.092000px;}
.y16a{bottom:129.999000px;}
.y17e{bottom:130.942500px;}
.y18e{bottom:131.956500px;}
.y15a{bottom:132.087000px;}
.yc9{bottom:133.170000px;}
.ye3{bottom:134.184000px;}
.y91{bottom:135.313500px;}
.y50{bottom:136.327500px;}
.y23{bottom:138.744000px;}
.y10e{bottom:140.038500px;}
.y135{bottom:140.455500px;}
.y115{bottom:141.052500px;}
.ya3{bottom:142.123500px;}
.y67{bottom:148.638000px;}
.y192{bottom:149.889000px;}
.y169{bottom:152.796000px;}
.y17d{bottom:153.739500px;}
.y18d{bottom:154.753500px;}
.y159{bottom:154.884000px;}
.yc8{bottom:155.967000px;}
.ye2{bottom:156.981000px;}
.y90{bottom:158.110500px;}
.y4f{bottom:159.124500px;}
.y22{bottom:161.541000px;}
.y10d{bottom:162.835500px;}
.y134{bottom:163.252500px;}
.y114{bottom:163.849500px;}
.ya2{bottom:164.920500px;}
.y66{bottom:171.435000px;}
.y191{bottom:172.686000px;}
.y168{bottom:175.593000px;}
.y17c{bottom:176.536500px;}
.y18c{bottom:177.550500px;}
.y158{bottom:177.681000px;}
.yc7{bottom:178.764000px;}
.ye1{bottom:179.778000px;}
.y8f{bottom:180.907500px;}
.y4e{bottom:181.921500px;}
.y21{bottom:184.338000px;}
.y10c{bottom:185.632500px;}
.y133{bottom:186.049500px;}
.y113{bottom:186.646500px;}
.y65{bottom:194.232000px;}
.y167{bottom:198.390000px;}
.y17b{bottom:199.333500px;}
.y18b{bottom:200.347500px;}
.y157{bottom:200.478000px;}
.yc6{bottom:201.561000px;}
.ye0{bottom:202.575000px;}
.y8e{bottom:203.704500px;}
.y4d{bottom:204.718500px;}
.y190{bottom:205.944000px;}
.y20{bottom:207.135000px;}
.y10b{bottom:208.429500px;}
.y112{bottom:209.443500px;}
.ya1{bottom:216.259500px;}
.y17a{bottom:222.130500px;}
.y18a{bottom:223.144500px;}
.y156{bottom:223.275000px;}
.yc5{bottom:224.358000px;}
.ydf{bottom:225.372000px;}
.y8d{bottom:226.501500px;}
.y64{bottom:227.490000px;}
.y4c{bottom:227.515500px;}
.y1f{bottom:229.932000px;}
.y10a{bottom:231.226500px;}
.y111{bottom:232.240500px;}
.ya0{bottom:239.056500px;}
.y132{bottom:244.711500px;}
.y179{bottom:244.927500px;}
.y189{bottom:245.941500px;}
.y155{bottom:246.072000px;}
.y166{bottom:246.558000px;}
.yc4{bottom:247.155000px;}
.yde{bottom:248.169000px;}
.y8c{bottom:249.298500px;}
.y4b{bottom:250.312500px;}
.y1e{bottom:252.729000px;}
.y9f{bottom:264.843000px;}
.y131{bottom:267.508500px;}
.y178{bottom:267.726000px;}
.y188{bottom:268.740000px;}
.y154{bottom:268.869000px;}
.yc3{bottom:269.952000px;}
.ydd{bottom:270.966000px;}
.y8b{bottom:272.097000px;}
.y165{bottom:272.941500px;}
.y109{bottom:272.971500px;}
.y4a{bottom:273.109500px;}
.y19b{bottom:273.196500px;}
.y1d{bottom:275.526000px;}
.y9e{bottom:287.640000px;}
.y63{bottom:289.791000px;}
.y130{bottom:290.307000px;}
.y177{bottom:290.523000px;}
.y187{bottom:291.537000px;}
.yc2{bottom:292.749000px;}
.ydc{bottom:293.763000px;}
.y8a{bottom:294.894000px;}
.y108{bottom:295.768500px;}
.y49{bottom:295.908000px;}
.y199{bottom:295.993500px;}
.y1c{bottom:298.323000px;}
.y164{bottom:299.325000px;}
.y62{bottom:312.589500px;}
.y12f{bottom:313.104000px;}
.y176{bottom:313.320000px;}
.y9d{bottom:313.425000px;}
.y186{bottom:314.334000px;}
.yc1{bottom:315.546000px;}
.ydb{bottom:316.560000px;}
.y153{bottom:317.037000px;}
.y89{bottom:317.691000px;}
.y107{bottom:318.565500px;}
.y48{bottom:318.705000px;}
.y1b{bottom:321.120000px;}
.y163{bottom:325.110000px;}
.y61{bottom:335.386500px;}
.y12e{bottom:335.901000px;}
.y175{bottom:336.117000px;}
.y9c{bottom:336.222000px;}
.y185{bottom:337.131000px;}
.yc0{bottom:338.343000px;}
.yda{bottom:339.357000px;}
.y88{bottom:340.488000px;}
.y106{bottom:341.362500px;}
.y47{bottom:341.502000px;}
.y195{bottom:341.587500px;}
.y152{bottom:342.822000px;}
.y162{bottom:350.896500px;}
.y60{bottom:358.183500px;}
.y12d{bottom:358.698000px;}
.y174{bottom:358.914000px;}
.y184{bottom:359.928000px;}
.ybf{bottom:361.140000px;}
.y9b{bottom:362.008500px;}
.yd9{bottom:362.154000px;}
.y87{bottom:363.285000px;}
.y105{bottom:364.159500px;}
.y46{bottom:364.299000px;}
.y151{bottom:368.608500px;}
.y1a{bottom:372.312000px;}
.y161{bottom:373.693500px;}
.y5f{bottom:380.980500px;}
.y12c{bottom:381.495000px;}
.y173{bottom:381.711000px;}
.y183{bottom:382.725000px;}
.ybe{bottom:383.938500px;}
.y9a{bottom:384.805500px;}
.yd8{bottom:384.952500px;}
.y86{bottom:386.082000px;}
.y104{bottom:386.956500px;}
.y45{bottom:387.096000px;}
.y150{bottom:394.992000px;}
.y160{bottom:399.480000px;}
.y5e{bottom:403.777500px;}
.y12b{bottom:404.292000px;}
.y172{bottom:404.508000px;}
.y182{bottom:405.522000px;}
.ybd{bottom:406.735500px;}
.yd7{bottom:407.749500px;}
.y85{bottom:408.879000px;}
.y44{bottom:409.893000px;}
.y99{bottom:410.592000px;}
.y19{bottom:413.485500px;}
.y103{bottom:420.214500px;}
.y14f{bottom:420.777000px;}
.y15f{bottom:425.863500px;}
.y5d{bottom:426.574500px;}
.y12a{bottom:427.089000px;}
.y171{bottom:427.305000px;}
.y181{bottom:428.319000px;}
.ybc{bottom:429.532500px;}
.yd6{bottom:430.546500px;}
.y84{bottom:431.676000px;}
.y18{bottom:432.060000px;}
.y43{bottom:432.690000px;}
.y98{bottom:433.389000px;}
.y14e{bottom:446.563500px;}
.y5c{bottom:449.371500px;}
.y129{bottom:449.886000px;}
.y170{bottom:450.102000px;}
.y180{bottom:451.116000px;}
.ybb{bottom:452.329500px;}
.yd5{bottom:453.343500px;}
.y17{bottom:453.882000px;}
.y83{bottom:454.473000px;}
.y42{bottom:455.487000px;}
.y102{bottom:465.216000px;}
.y97{bottom:466.677000px;}
.y15e{bottom:467.190000px;}
.y5b{bottom:472.168500px;}
.y14d{bottom:472.350000px;}
.y128{bottom:472.683000px;}
.yba{bottom:475.126500px;}
.yd4{bottom:476.140500px;}
.y82{bottom:477.270000px;}
.y41{bottom:478.284000px;}
.yf3{bottom:486.999000px;}
.y16{bottom:487.533000px;}
.y101{bottom:488.013000px;}
.y15d{bottom:489.987000px;}
.y16f{bottom:491.845500px;}
.y5a{bottom:494.965500px;}
.y127{bottom:495.480000px;}
.yb9{bottom:497.923500px;}
.y14c{bottom:498.135000px;}
.yd3{bottom:498.937500px;}
.y81{bottom:500.067000px;}
.y40{bottom:501.081000px;}
.y198{bottom:501.166500px;}
.yf2{bottom:509.796000px;}
.y100{bottom:510.810000px;}
.y96{bottom:512.785500px;}
.y16e{bottom:514.642500px;}
.y59{bottom:517.762500px;}
.y126{bottom:518.277000px;}
.yb8{bottom:520.720500px;}
.yd2{bottom:521.734500px;}
.y80{bottom:522.864000px;}
.y15{bottom:522.934500px;}
.y3f{bottom:523.878000px;}
.y14b{bottom:524.518500px;}
.yf1{bottom:532.593000px;}
.yff{bottom:533.607000px;}
.y95{bottom:535.582500px;}
.y16d{bottom:537.439500px;}
.y58{bottom:540.559500px;}
.y125{bottom:541.074000px;}
.yb7{bottom:543.517500px;}
.yd1{bottom:544.531500px;}
.y14{bottom:544.887000px;}
.y7f{bottom:545.661000px;}
.y3e{bottom:546.675000px;}
.yf0{bottom:555.390000px;}
.yfe{bottom:556.404000px;}
.y57{bottom:563.356500px;}
.y124{bottom:563.871000px;}
.y14a{bottom:565.846500px;}
.yb6{bottom:566.314500px;}
.y13{bottom:566.841000px;}
.yd0{bottom:567.328500px;}
.y7e{bottom:568.458000px;}
.y3d{bottom:569.472000px;}
.y19a{bottom:569.559000px;}
.y16c{bottom:570.697500px;}
.yef{bottom:578.187000px;}
.yfd{bottom:579.201000px;}
.y56{bottom:586.153500px;}
.y123{bottom:586.668000px;}
.y149{bottom:588.643500px;}
.y12{bottom:588.793500px;}
.yb5{bottom:589.111500px;}
.ycf{bottom:590.125500px;}
.y7d{bottom:591.256500px;}
.y3c{bottom:592.269000px;}
.y197{bottom:592.270500px;}
.yee{bottom:600.984000px;}
.yfc{bottom:601.998000px;}
.y55{bottom:607.938000px;}
.y122{bottom:609.466500px;}
.y11{bottom:610.746000px;}
.yb4{bottom:611.908500px;}
.yce{bottom:612.922500px;}
.y7c{bottom:614.053500px;}
.y3b{bottom:615.067500px;}
.y148{bottom:622.534500px;}
.yed{bottom:623.781000px;}
.yfb{bottom:624.795000px;}
.y121{bottom:632.263500px;}
.y10{bottom:632.698500px;}
.yb3{bottom:634.705500px;}
.ycd{bottom:635.719500px;}
.y7b{bottom:636.850500px;}
.y3a{bottom:637.864500px;}
.y147{bottom:645.331500px;}
.yec{bottom:646.578000px;}
.yfa{bottom:647.592000px;}
.yf{bottom:654.651000px;}
.yb2{bottom:657.502500px;}
.ycc{bottom:658.516500px;}
.y7a{bottom:659.647500px;}
.y39{bottom:660.661500px;}
.y146{bottom:668.128500px;}
.yeb{bottom:669.376500px;}
.yf9{bottom:670.390500px;}
.y120{bottom:673.233000px;}
.ye{bottom:676.603500px;}
.y79{bottom:682.444500px;}
.y38{bottom:683.458500px;}
.y196{bottom:683.544000px;}
.y145{bottom:690.925500px;}
.yea{bottom:692.173500px;}
.yf8{bottom:693.187500px;}
.y11f{bottom:696.030000px;}
.yd{bottom:698.557500px;}
.y78{bottom:705.241500px;}
.y37{bottom:706.255500px;}
.yb1{bottom:706.684500px;}
.y144{bottom:713.722500px;}
.ye9{bottom:714.970500px;}
.yf7{bottom:715.984500px;}
.y11e{bottom:718.827000px;}
.yc{bottom:720.510000px;}
.y77{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.yb0{bottom:729.481500px;}
.y143{bottom:736.519500px;}
.ye8{bottom:737.767500px;}
.yf6{bottom:738.781500px;}
.yb{bottom:742.462500px;}
.y76{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.y11d{bottom:752.278500px;}
.yaf{bottom:755.266500px;}
.y142{bottom:759.316500px;}
.ye7{bottom:760.564500px;}
.yf5{bottom:761.578500px;}
.ya{bottom:764.415000px;}
.y75{bottom:773.632500px;}
.y34{bottom:774.646500px;}
.yae{bottom:778.063500px;}
.y141{bottom:782.113500px;}
.ye6{bottom:783.361500px;}
.yf4{bottom:784.375500px;}
.y9{bottom:786.367500px;}
.y74{bottom:796.429500px;}
.y140{bottom:797.298000px;}
.y33{bottom:797.443500px;}
.yad{bottom:803.850000px;}
.y8{bottom:808.321500px;}
.y73{bottom:819.226500px;}
.y13f{bottom:820.095000px;}
.y32{bottom:820.240500px;}
.yac{bottom:826.647000px;}
.y11c{bottom:829.635000px;}
.y7{bottom:830.274000px;}
.y72{bottom:842.023500px;}
.y13e{bottom:842.892000px;}
.y31{bottom:843.037500px;}
.y6{bottom:852.226500px;}
.yab{bottom:852.433500px;}
.y11b{bottom:855.421500px;}
.y71{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.yaa{bottom:875.230500px;}
.y13d{bottom:876.343500px;}
.y11a{bottom:881.805000px;}
.y70{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.y15c{bottom:888.718500px;}
.ya9{bottom:901.015500px;}
.y13c{bottom:902.128500px;}
.y6f{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y5{bottom:917.967000px;}
.y119{bottom:923.133000px;}
.ya8{bottom:923.812500px;}
.y13b{bottom:927.915000px;}
.y6e{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.y118{bottom:945.930000px;}
.ya7{bottom:950.196000px;}
.y13a{bottom:953.701500px;}
.y6d{bottom:956.010000px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.y6c{bottom:978.807000px;}
.y139{bottom:979.486500px;}
.y2b{bottom:979.821000px;}
.ya6{bottom:991.524000px;}
.y3{bottom:996.498000px;}
.y6b{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.y138{bottom:1005.870000px;}
.y6a{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.y69{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y68{bottom:1069.995000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.h10{height:35.865000px;}
.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:47.569464px;}
.hd{height:50.869080px;}
.h3{height:53.463379px;}
.h7{height:53.774213px;}
.he{height:60.149902px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.hf{height:92.541000px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:126.270000px;}
.xb{left:127.558500px;}
.x3{left:132.292500px;}
.x19{left:139.950000px;}
.x13{left:141.303000px;}
.x20{left:142.881000px;}
.x2e{left:149.689500px;}
.xc{left:153.070500px;}
.x34{left:154.834500px;}
.x2a{left:156.924000px;}
.x35{left:162.465000px;}
.x4{left:169.954500px;}
.x6{left:178.044000px;}
.x2f{left:181.129500px;}
.x9{left:182.308500px;}
.x18{left:183.823500px;}
.x36{left:216.958500px;}
.x3b{left:224.460000px;}
.x37{left:226.513500px;}
.x8{left:242.647500px;}
.x38{left:245.023500px;}
.x39{left:251.709000px;}
.x40{left:255.988500px;}
.x31{left:258.789000px;}
.x30{left:260.224500px;}
.x33{left:282.154500px;}
.x32{left:283.590000px;}
.x47{left:285.405000px;}
.x16{left:286.795500px;}
.x15{left:293.887500px;}
.x11{left:315.294000px;}
.x24{left:317.808000px;}
.x23{left:319.242000px;}
.x41{left:320.619000px;}
.x26{left:340.417500px;}
.x25{left:341.853000px;}
.x2b{left:344.935500px;}
.x3a{left:349.407000px;}
.x1b{left:354.957000px;}
.x1c{left:367.905000px;}
.x5{left:384.304500px;}
.x21{left:394.774500px;}
.x1d{left:398.533500px;}
.x3d{left:400.254000px;}
.x3c{left:401.689500px;}
.xe{left:404.373000px;}
.x1e{left:408.088500px;}
.x7{left:410.130000px;}
.x2c{left:411.625500px;}
.x1a{left:423.430500px;}
.x1f{left:426.598500px;}
.x2d{left:429.852000px;}
.xa{left:432.832500px;}
.x22{left:447.636000px;}
.xf{left:452.577000px;}
.xd{left:464.346000px;}
.x14{left:474.807000px;}
.x12{left:489.858000px;}
.x44{left:557.440500px;}
.x43{left:558.876000px;}
.x42{left:562.747500px;}
.x3e{left:566.562000px;}
.x2{left:573.774000px;}
.x10{left:578.070000px;}
.x28{left:590.449500px;}
.x27{left:593.931000px;}
.x29{left:608.130000px;}
.x3f{left:616.672500px;}
.x1{left:696.322500px;}
.x46{left:768.058500px;}
.x45{left:769.494000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:22.176000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls2c{letter-spacing:-291.588288pt;}
.ls2b{letter-spacing:-213.864000pt;}
.ls27{letter-spacing:-90.983856pt;}
.ls2d{letter-spacing:-88.906320pt;}
.ls29{letter-spacing:-88.234176pt;}
.ls26{letter-spacing:-79.129680pt;}
.ls2e{letter-spacing:-63.731472pt;}
.ls2a{letter-spacing:-56.704512pt;}
.ls28{letter-spacing:-52.488336pt;}
.ls2f{letter-spacing:-13.320672pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:2.199744pt;}
.ls1b{letter-spacing:2.260848pt;}
.ls0{letter-spacing:2.656693pt;}
.ls17{letter-spacing:14.848272pt;}
.ls1d{letter-spacing:14.909376pt;}
.ls21{letter-spacing:14.911379pt;}
.ls6{letter-spacing:14.970480pt;}
.ls15{letter-spacing:15.031584pt;}
.ls18{letter-spacing:15.092688pt;}
.ls8{letter-spacing:15.153792pt;}
.ls20{letter-spacing:15.155737pt;}
.ls1a{letter-spacing:15.214896pt;}
.ls23{letter-spacing:15.273333pt;}
.ls9{letter-spacing:15.276000pt;}
.ls22{letter-spacing:15.278667pt;}
.ls7{letter-spacing:15.337104pt;}
.lsa{letter-spacing:15.398208pt;}
.ls1c{letter-spacing:15.459312pt;}
.ls14{letter-spacing:15.520416pt;}
.ls1f{letter-spacing:15.579272pt;}
.lsc{letter-spacing:15.581520pt;}
.ls19{letter-spacing:16.131456pt;}
.lsf{letter-spacing:16.864704pt;}
.lsb{letter-spacing:16.925808pt;}
.lsd{letter-spacing:17.231328pt;}
.ls30{letter-spacing:17.781264pt;}
.ls5{letter-spacing:17.935200pt;}
.ls16{letter-spacing:18.086784pt;}
.ls1e{letter-spacing:19.610692pt;}
.ls25{letter-spacing:19.793701pt;}
.ls13{letter-spacing:19.919904pt;}
.ls11{letter-spacing:20.469840pt;}
.ls24{letter-spacing:21.997333pt;}
.ls31{letter-spacing:22.425168pt;}
.lse{letter-spacing:23.586144pt;}
.ls32{letter-spacing:23.830560pt;}
.ls12{letter-spacing:23.891664pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.wsa6{word-spacing:-15.276000pt;}
.wse1{word-spacing:-5.804880pt;}
.ws118{word-spacing:-3.428000pt;}
.ws9b{word-spacing:-3.421824pt;}
.ws32{word-spacing:-3.360720pt;}
.ws5a{word-spacing:-3.177408pt;}
.ws35{word-spacing:-3.116304pt;}
.wse6{word-spacing:-3.055200pt;}
.wsd3{word-spacing:-2.932992pt;}
.ws2e{word-spacing:-2.810784pt;}
.wsaa{word-spacing:-2.749680pt;}
.ws10{word-spacing:-2.656693pt;}
.wscb{word-spacing:-2.627472pt;}
.ws29{word-spacing:-2.505264pt;}
.ws39{word-spacing:-2.444160pt;}
.wsef{word-spacing:-2.386996pt;}
.wsa8{word-spacing:-2.383056pt;}
.wsdd{word-spacing:-2.321952pt;}
.wsd0{word-spacing:-2.260848pt;}
.ws2b{word-spacing:-2.199744pt;}
.ws2c{word-spacing:-2.077536pt;}
.ws6a{word-spacing:-2.016432pt;}
.ws57{word-spacing:-1.955328pt;}
.ws8a{word-spacing:-1.833120pt;}
.ws48{word-spacing:-1.710912pt;}
.ws105{word-spacing:-1.708409pt;}
.ws10f{word-spacing:-1.653574pt;}
.ws86{word-spacing:-1.649808pt;}
.ws110{word-spacing:-1.596628pt;}
.ws92{word-spacing:-1.588704pt;}
.wsab{word-spacing:-1.527600pt;}
.ws60{word-spacing:-1.466496pt;}
.wsa3{word-spacing:-1.405392pt;}
.wsbd{word-spacing:-1.344288pt;}
.ws46{word-spacing:-1.222080pt;}
.ws113{word-spacing:-1.163762pt;}
.ws115{word-spacing:-1.163349pt;}
.ws30{word-spacing:-1.160976pt;}
.ws27{word-spacing:-1.038768pt;}
.ws33{word-spacing:-0.977664pt;}
.ws72{word-spacing:-0.916560pt;}
.wsa4{word-spacing:-0.855456pt;}
.ws75{word-spacing:-0.794352pt;}
.wse0{word-spacing:-0.733248pt;}
.wsd6{word-spacing:-0.672144pt;}
.ws117{word-spacing:-0.617984pt;}
.ws116{word-spacing:-0.615394pt;}
.ws58{word-spacing:-0.611040pt;}
.wsa0{word-spacing:-0.549936pt;}
.ws43{word-spacing:-0.488832pt;}
.ws11d{word-spacing:-0.428299pt;}
.wsac{word-spacing:-0.427728pt;}
.ws11c{word-spacing:-0.422672pt;}
.wsfa{word-spacing:-0.374243pt;}
.wsf9{word-spacing:-0.371130pt;}
.ws34{word-spacing:-0.366624pt;}
.ws37{word-spacing:-0.305520pt;}
.ws15{word-spacing:-0.244416pt;}
.ws108{word-spacing:-0.243255pt;}
.ws109{word-spacing:-0.240965pt;}
.ws7{word-spacing:-0.212535pt;}
.ws1b{word-spacing:-0.183312pt;}
.ws10a{word-spacing:-0.180070pt;}
.ws4{word-spacing:-0.159402pt;}
.wsf6{word-spacing:-0.122877pt;}
.ws36{word-spacing:-0.122208pt;}
.wsf1{word-spacing:-0.120974pt;}
.wsf7{word-spacing:-0.120263pt;}
.wsf5{word-spacing:-0.119175pt;}
.wsc7{word-spacing:-0.063761pt;}
.ws2a{word-spacing:-0.061104pt;}
.wsf4{word-spacing:-0.059012pt;}
.ws1{word-spacing:-0.042507pt;}
.wse8{word-spacing:-0.002544pt;}
.ws112{word-spacing:-0.001931pt;}
.ws10b{word-spacing:-0.000965pt;}
.ws2{word-spacing:0.000000pt;}
.ws128{word-spacing:0.000091pt;}
.ws103{word-spacing:0.000736pt;}
.ws111{word-spacing:0.001088pt;}
.ws129{word-spacing:0.003403pt;}
.ws3f{word-spacing:0.061104pt;}
.ws11{word-spacing:0.095642pt;}
.ws9{word-spacing:0.106268pt;}
.ws107{word-spacing:0.115525pt;}
.ws106{word-spacing:0.119313pt;}
.ws1c{word-spacing:0.122208pt;}
.ws126{word-spacing:0.181870pt;}
.ws24{word-spacing:0.183312pt;}
.wsff{word-spacing:0.186672pt;}
.ws6{word-spacing:0.212535pt;}
.ws44{word-spacing:0.244416pt;}
.ws8{word-spacing:0.265669pt;}
.ws73{word-spacing:0.305520pt;}
.wsf2{word-spacing:0.305886pt;}
.wse9{word-spacing:0.306332pt;}
.wsf3{word-spacing:0.308500pt;}
.ws3e{word-spacing:0.366624pt;}
.wsc0{word-spacing:0.427728pt;}
.wscd{word-spacing:0.488832pt;}
.wsca{word-spacing:0.549936pt;}
.wsb8{word-spacing:0.611040pt;}
.ws5{word-spacing:0.637606pt;}
.ws93{word-spacing:0.672144pt;}
.ws3b{word-spacing:0.733248pt;}
.wsc{word-spacing:0.743874pt;}
.ws6e{word-spacing:0.794352pt;}
.ws87{word-spacing:0.855456pt;}
.ws71{word-spacing:0.916560pt;}
.wsfd{word-spacing:0.976702pt;}
.ws5b{word-spacing:0.977664pt;}
.wsbc{word-spacing:1.038768pt;}
.ws70{word-spacing:1.099872pt;}
.ws9c{word-spacing:1.160976pt;}
.wsa{word-spacing:1.222079pt;}
.ws54{word-spacing:1.283184pt;}
.wsa7{word-spacing:1.344288pt;}
.ws66{word-spacing:1.405392pt;}
.ws5f{word-spacing:1.466496pt;}
.ws7a{word-spacing:1.527600pt;}
.ws101{word-spacing:1.588390pt;}
.ws102{word-spacing:1.588474pt;}
.ws47{word-spacing:1.588704pt;}
.wsd{word-spacing:1.594016pt;}
.wsad{word-spacing:1.649808pt;}
.wsbf{word-spacing:1.710912pt;}
.ws2f{word-spacing:1.772016pt;}
.ws17{word-spacing:1.833120pt;}
.ws4e{word-spacing:1.894224pt;}
.ws49{word-spacing:1.955328pt;}
.ws5c{word-spacing:2.016432pt;}
.ws7c{word-spacing:2.077536pt;}
.ws52{word-spacing:2.138640pt;}
.wsdf{word-spacing:2.199744pt;}
.ws7b{word-spacing:2.260848pt;}
.ws8b{word-spacing:2.321952pt;}
.ws7d{word-spacing:2.383056pt;}
.ws28{word-spacing:2.444160pt;}
.ws11f{word-spacing:2.446001pt;}
.ws121{word-spacing:2.446147pt;}
.ws9a{word-spacing:2.505264pt;}
.ws2d{word-spacing:2.566368pt;}
.ws63{word-spacing:2.627472pt;}
.ws1f{word-spacing:2.688576pt;}
.ws11b{word-spacing:2.749272pt;}
.ws45{word-spacing:2.749680pt;}
.wse5{word-spacing:2.810784pt;}
.ws119{word-spacing:2.814622pt;}
.ws96{word-spacing:2.871888pt;}
.wse{word-spacing:2.922363pt;}
.wsd2{word-spacing:2.932992pt;}
.ws51{word-spacing:2.994096pt;}
.wsb{word-spacing:3.028630pt;}
.ws59{word-spacing:3.055200pt;}
.wsd9{word-spacing:3.116304pt;}
.ws26{word-spacing:3.177408pt;}
.wsb9{word-spacing:3.238512pt;}
.wsa5{word-spacing:3.299616pt;}
.ws55{word-spacing:3.360720pt;}
.ws4b{word-spacing:3.421824pt;}
.wsa2{word-spacing:3.482928pt;}
.ws6f{word-spacing:3.544032pt;}
.ws8d{word-spacing:3.605136pt;}
.ws8f{word-spacing:3.666240pt;}
.wsf8{word-spacing:3.727062pt;}
.ws83{word-spacing:3.727344pt;}
.ws25{word-spacing:3.788448pt;}
.ws4f{word-spacing:3.849552pt;}
.ws79{word-spacing:3.910656pt;}
.ws127{word-spacing:3.910719pt;}
.ws6c{word-spacing:3.971760pt;}
.ws42{word-spacing:4.032864pt;}
.ws99{word-spacing:4.093968pt;}
.ws3a{word-spacing:4.155072pt;}
.ws97{word-spacing:4.277280pt;}
.wsec{word-spacing:4.279905pt;}
.wsed{word-spacing:4.283053pt;}
.ws56{word-spacing:4.338384pt;}
.ws22{word-spacing:4.399488pt;}
.wsce{word-spacing:4.460592pt;}
.ws125{word-spacing:4.517701pt;}
.ws6b{word-spacing:4.521696pt;}
.wsfe{word-spacing:4.523254pt;}
.ws124{word-spacing:4.526120pt;}
.ws64{word-spacing:4.582800pt;}
.wsea{word-spacing:4.642754pt;}
.ws4d{word-spacing:4.643904pt;}
.wseb{word-spacing:4.703962pt;}
.ws9f{word-spacing:4.705008pt;}
.wsaf{word-spacing:4.766112pt;}
.ws68{word-spacing:4.827216pt;}
.ws19{word-spacing:4.888320pt;}
.ws1e{word-spacing:4.949424pt;}
.ws67{word-spacing:5.010528pt;}
.wsc1{word-spacing:5.071632pt;}
.wsf{word-spacing:5.100851pt;}
.ws81{word-spacing:5.132736pt;}
.ws3d{word-spacing:5.193840pt;}
.ws5d{word-spacing:5.254944pt;}
.wsd4{word-spacing:5.316048pt;}
.wscc{word-spacing:5.377152pt;}
.ws85{word-spacing:5.438256pt;}
.ws1d{word-spacing:5.499360pt;}
.ws5e{word-spacing:5.560464pt;}
.wsfc{word-spacing:5.560851pt;}
.wsfb{word-spacing:5.562702pt;}
.wsc2{word-spacing:5.621568pt;}
.ws69{word-spacing:5.682672pt;}
.ws4a{word-spacing:5.743776pt;}
.ws3c{word-spacing:5.804880pt;}
.ws88{word-spacing:5.865984pt;}
.ws40{word-spacing:5.927088pt;}
.ws8e{word-spacing:5.988192pt;}
.ws8c{word-spacing:6.049296pt;}
.ws89{word-spacing:6.110400pt;}
.ws6d{word-spacing:6.171504pt;}
.ws53{word-spacing:6.232608pt;}
.ws122{word-spacing:6.354105pt;}
.ws76{word-spacing:6.354816pt;}
.ws123{word-spacing:6.356395pt;}
.ws84{word-spacing:6.415920pt;}
.ws9e{word-spacing:6.477024pt;}
.ws38{word-spacing:6.538128pt;}
.wsba{word-spacing:6.599232pt;}
.ws20{word-spacing:6.660336pt;}
.wse2{word-spacing:6.718683pt;}
.wsee{word-spacing:6.720123pt;}
.ws74{word-spacing:6.721440pt;}
.ws31{word-spacing:6.782544pt;}
.ws9d{word-spacing:7.026960pt;}
.ws23{word-spacing:7.088064pt;}
.ws12b{word-spacing:7.149168pt;}
.ws94{word-spacing:7.210272pt;}
.ws77{word-spacing:7.271376pt;}
.ws78{word-spacing:7.454688pt;}
.ws95{word-spacing:7.515792pt;}
.ws82{word-spacing:7.576896pt;}
.ws50{word-spacing:7.638000pt;}
.wsd1{word-spacing:7.699104pt;}
.ws1a{word-spacing:7.760208pt;}
.ws61{word-spacing:7.821312pt;}
.wsc4{word-spacing:7.882416pt;}
.wsde{word-spacing:7.943520pt;}
.wsc8{word-spacing:8.004624pt;}
.wsc9{word-spacing:8.065728pt;}
.ws21{word-spacing:8.187936pt;}
.wsb4{word-spacing:8.249040pt;}
.ws41{word-spacing:8.371248pt;}
.ws10e{word-spacing:8.431359pt;}
.ws10c{word-spacing:8.433000pt;}
.ws65{word-spacing:8.493456pt;}
.wse4{word-spacing:8.554560pt;}
.wse3{word-spacing:8.615664pt;}
.ws98{word-spacing:8.676768pt;}
.wsbe{word-spacing:8.737872pt;}
.wsa9{word-spacing:8.798976pt;}
.wsae{word-spacing:8.860080pt;}
.ws18{word-spacing:9.104496pt;}
.wsb1{word-spacing:9.226704pt;}
.wsd8{word-spacing:9.287808pt;}
.wsb3{word-spacing:9.348912pt;}
.wsb6{word-spacing:9.776640pt;}
.wsdb{word-spacing:10.082160pt;}
.wsb2{word-spacing:10.143264pt;}
.ws120{word-spacing:10.186037pt;}
.wsd7{word-spacing:10.265472pt;}
.wsbb{word-spacing:10.815408pt;}
.ws91{word-spacing:11.365344pt;}
.ws4c{word-spacing:11.793072pt;}
.ws90{word-spacing:12.159696pt;}
.ws14{word-spacing:12.892944pt;}
.ws62{word-spacing:14.603856pt;}
.ws12a{word-spacing:15.003739pt;}
.ws0{word-spacing:15.005042pt;}
.wsa1{word-spacing:15.214896pt;}
.ws16{word-spacing:15.337104pt;}
.ws13{word-spacing:15.520416pt;}
.wsb0{word-spacing:15.825936pt;}
.ws3{word-spacing:16.258963pt;}
.wsb5{word-spacing:17.199459pt;}
.wsdc{word-spacing:18.331200pt;}
.ws80{word-spacing:20.530944pt;}
.ws7f{word-spacing:25.052640pt;}
.ws7e{word-spacing:25.113744pt;}
.wsb7{word-spacing:29.085504pt;}
.wsda{word-spacing:31.712976pt;}
.wsc5{word-spacing:34.279344pt;}
.wscf{word-spacing:44.605920pt;}
.wsd5{word-spacing:44.728128pt;}
.ws12{word-spacing:69.005059pt;}
.ws104{word-spacing:85.136203pt;}
.ws114{word-spacing:93.183600pt;}
.ws11e{word-spacing:106.602038pt;}
.wsf0{word-spacing:136.054166pt;}
.wsc6{word-spacing:137.789520pt;}
.ws10d{word-spacing:153.468806pt;}
.ws11a{word-spacing:154.776432pt;}
.ws100{word-spacing:158.772634pt;}
.wse7{word-spacing:534.629448pt;}
.ws12c{word-spacing:836.034896pt;}
.wsc3{word-spacing:838.328229pt;}
._2e{margin-left:-27.191280pt;}
._2d{margin-left:-23.708352pt;}
._2f{margin-left:-22.058544pt;}
._31{margin-left:-7.882416pt;}
._22{margin-left:-6.782544pt;}
._45{margin-left:-5.765031pt;}
._d{margin-left:-4.787366pt;}
._5{margin-left:-3.400567pt;}
._1{margin-left:-2.178489pt;}
._3{margin-left:-0.956410pt;}
._0{width:1.232709pt;}
._44{width:2.627472pt;}
._49{width:4.133818pt;}
._48{width:5.153991pt;}
._46{width:6.251200pt;}
._4a{width:7.927778pt;}
._47{width:10.100751pt;}
._8{width:14.293010pt;}
._2{width:15.887026pt;}
._4{width:17.693578pt;}
._7{width:19.234460pt;}
._6{width:20.669074pt;}
._10{width:22.241856pt;}
._18{width:23.769456pt;}
._9{width:25.451122pt;}
._1a{width:26.343815pt;}
._15{width:27.619008pt;}
._b{width:28.841457pt;}
._c{width:29.750043pt;}
._12{width:30.857520pt;}
._30{width:31.835184pt;}
._13{width:32.852697pt;}
._1b{width:34.096032pt;}
._f{width:36.051360pt;}
._14{width:36.967920pt;}
._1c{width:38.678832pt;}
._11{width:39.595392pt;}
._1e{width:41.346151pt;}
._e{width:42.895008pt;}
._16{width:44.605920pt;}
._43{width:47.416704pt;}
._42{width:49.961817pt;}
._a{width:53.133867pt;}
._17{width:54.382560pt;}
._4e{width:57.459015pt;}
._19{width:59.881920pt;}
._24{width:60.798480pt;}
._1d{width:62.203872pt;}
._50{width:63.845438pt;}
._4c{width:66.030609pt;}
._25{width:69.074133pt;}
._4f{width:70.819710pt;}
._3f{width:91.961520pt;}
._3b{width:93.061392pt;}
._3a{width:97.033152pt;}
._4b{width:106.140887pt;}
._4d{width:112.218476pt;}
._1f{width:120.191568pt;}
._3c{width:132.717888pt;}
._40{width:134.875121pt;}
._41{width:137.481456pt;}
._3d{width:153.004416pt;}
._38{width:171.763344pt;}
._36{width:181.234464pt;}
._39{width:185.206224pt;}
._3e{width:191.438832pt;}
._23{width:215.208288pt;}
._20{width:217.304419pt;}
._21{width:242.338464pt;}
._37{width:249.793152pt;}
._28{width:259.203168pt;}
._33{width:284.417866pt;}
._35{width:337.721808pt;}
._29{width:344.565456pt;}
._32{width:394.160650pt;}
._27{width:395.403984pt;}
._2b{width:437.217713pt;}
._2a{width:493.781424pt;}
._34{width:568.694928pt;}
._26{width:702.634896pt;}
._2c{width:773.943264pt;}
.fs8{font-size:42.506667pt;}
.fs0{font-size:42.507200pt;}
.fs6{font-size:45.217600pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs7{font-size:63.761067pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:36.718667pt;}
.y94{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.ycb{bottom:77.845333pt;}
.ye5{bottom:78.746667pt;}
.y93{bottom:79.750667pt;}
.y52{bottom:80.652000pt;}
.y25{bottom:82.800000pt;}
.y110{bottom:83.950667pt;}
.y137{bottom:84.321333pt;}
.y117{bottom:84.852000pt;}
.ya5{bottom:85.804000pt;}
.y194{bottom:92.706667pt;}
.y16b{bottom:95.290667pt;}
.y17f{bottom:96.129333pt;}
.y18f{bottom:97.030667pt;}
.y15b{bottom:97.146667pt;}
.yca{bottom:98.109333pt;}
.ye4{bottom:99.010667pt;}
.y92{bottom:100.014667pt;}
.y51{bottom:100.916000pt;}
.y24{bottom:103.064000pt;}
.y10f{bottom:104.214667pt;}
.y136{bottom:104.585333pt;}
.y116{bottom:105.116000pt;}
.ya4{bottom:106.068000pt;}
.y193{bottom:112.970667pt;}
.y16a{bottom:115.554667pt;}
.y17e{bottom:116.393333pt;}
.y18e{bottom:117.294667pt;}
.y15a{bottom:117.410667pt;}
.yc9{bottom:118.373333pt;}
.ye3{bottom:119.274667pt;}
.y91{bottom:120.278667pt;}
.y50{bottom:121.180000pt;}
.y23{bottom:123.328000pt;}
.y10e{bottom:124.478667pt;}
.y135{bottom:124.849333pt;}
.y115{bottom:125.380000pt;}
.ya3{bottom:126.332000pt;}
.y67{bottom:132.122667pt;}
.y192{bottom:133.234667pt;}
.y169{bottom:135.818667pt;}
.y17d{bottom:136.657333pt;}
.y18d{bottom:137.558667pt;}
.y159{bottom:137.674667pt;}
.yc8{bottom:138.637333pt;}
.ye2{bottom:139.538667pt;}
.y90{bottom:140.542667pt;}
.y4f{bottom:141.444000pt;}
.y22{bottom:143.592000pt;}
.y10d{bottom:144.742667pt;}
.y134{bottom:145.113333pt;}
.y114{bottom:145.644000pt;}
.ya2{bottom:146.596000pt;}
.y66{bottom:152.386667pt;}
.y191{bottom:153.498667pt;}
.y168{bottom:156.082667pt;}
.y17c{bottom:156.921333pt;}
.y18c{bottom:157.822667pt;}
.y158{bottom:157.938667pt;}
.yc7{bottom:158.901333pt;}
.ye1{bottom:159.802667pt;}
.y8f{bottom:160.806667pt;}
.y4e{bottom:161.708000pt;}
.y21{bottom:163.856000pt;}
.y10c{bottom:165.006667pt;}
.y133{bottom:165.377333pt;}
.y113{bottom:165.908000pt;}
.y65{bottom:172.650667pt;}
.y167{bottom:176.346667pt;}
.y17b{bottom:177.185333pt;}
.y18b{bottom:178.086667pt;}
.y157{bottom:178.202667pt;}
.yc6{bottom:179.165333pt;}
.ye0{bottom:180.066667pt;}
.y8e{bottom:181.070667pt;}
.y4d{bottom:181.972000pt;}
.y190{bottom:183.061333pt;}
.y20{bottom:184.120000pt;}
.y10b{bottom:185.270667pt;}
.y112{bottom:186.172000pt;}
.ya1{bottom:192.230667pt;}
.y17a{bottom:197.449333pt;}
.y18a{bottom:198.350667pt;}
.y156{bottom:198.466667pt;}
.yc5{bottom:199.429333pt;}
.ydf{bottom:200.330667pt;}
.y8d{bottom:201.334667pt;}
.y64{bottom:202.213333pt;}
.y4c{bottom:202.236000pt;}
.y1f{bottom:204.384000pt;}
.y10a{bottom:205.534667pt;}
.y111{bottom:206.436000pt;}
.ya0{bottom:212.494667pt;}
.y132{bottom:217.521333pt;}
.y179{bottom:217.713333pt;}
.y189{bottom:218.614667pt;}
.y155{bottom:218.730667pt;}
.y166{bottom:219.162667pt;}
.yc4{bottom:219.693333pt;}
.yde{bottom:220.594667pt;}
.y8c{bottom:221.598667pt;}
.y4b{bottom:222.500000pt;}
.y1e{bottom:224.648000pt;}
.y9f{bottom:235.416000pt;}
.y131{bottom:237.785333pt;}
.y178{bottom:237.978667pt;}
.y188{bottom:238.880000pt;}
.y154{bottom:238.994667pt;}
.yc3{bottom:239.957333pt;}
.ydd{bottom:240.858667pt;}
.y8b{bottom:241.864000pt;}
.y165{bottom:242.614667pt;}
.y109{bottom:242.641333pt;}
.y4a{bottom:242.764000pt;}
.y19b{bottom:242.841333pt;}
.y1d{bottom:244.912000pt;}
.y9e{bottom:255.680000pt;}
.y63{bottom:257.592000pt;}
.y130{bottom:258.050667pt;}
.y177{bottom:258.242667pt;}
.y187{bottom:259.144000pt;}
.yc2{bottom:260.221333pt;}
.ydc{bottom:261.122667pt;}
.y8a{bottom:262.128000pt;}
.y108{bottom:262.905333pt;}
.y49{bottom:263.029333pt;}
.y199{bottom:263.105333pt;}
.y1c{bottom:265.176000pt;}
.y164{bottom:266.066667pt;}
.y62{bottom:277.857333pt;}
.y12f{bottom:278.314667pt;}
.y176{bottom:278.506667pt;}
.y9d{bottom:278.600000pt;}
.y186{bottom:279.408000pt;}
.yc1{bottom:280.485333pt;}
.ydb{bottom:281.386667pt;}
.y153{bottom:281.810667pt;}
.y89{bottom:282.392000pt;}
.y107{bottom:283.169333pt;}
.y48{bottom:283.293333pt;}
.y1b{bottom:285.440000pt;}
.y163{bottom:288.986667pt;}
.y61{bottom:298.121333pt;}
.y12e{bottom:298.578667pt;}
.y175{bottom:298.770667pt;}
.y9c{bottom:298.864000pt;}
.y185{bottom:299.672000pt;}
.yc0{bottom:300.749333pt;}
.yda{bottom:301.650667pt;}
.y88{bottom:302.656000pt;}
.y106{bottom:303.433333pt;}
.y47{bottom:303.557333pt;}
.y195{bottom:303.633333pt;}
.y152{bottom:304.730667pt;}
.y162{bottom:311.908000pt;}
.y60{bottom:318.385333pt;}
.y12d{bottom:318.842667pt;}
.y174{bottom:319.034667pt;}
.y184{bottom:319.936000pt;}
.ybf{bottom:321.013333pt;}
.y9b{bottom:321.785333pt;}
.yd9{bottom:321.914667pt;}
.y87{bottom:322.920000pt;}
.y105{bottom:323.697333pt;}
.y46{bottom:323.821333pt;}
.y151{bottom:327.652000pt;}
.y1a{bottom:330.944000pt;}
.y161{bottom:332.172000pt;}
.y5f{bottom:338.649333pt;}
.y12c{bottom:339.106667pt;}
.y173{bottom:339.298667pt;}
.y183{bottom:340.200000pt;}
.ybe{bottom:341.278667pt;}
.y9a{bottom:342.049333pt;}
.yd8{bottom:342.180000pt;}
.y86{bottom:343.184000pt;}
.y104{bottom:343.961333pt;}
.y45{bottom:344.085333pt;}
.y150{bottom:351.104000pt;}
.y160{bottom:355.093333pt;}
.y5e{bottom:358.913333pt;}
.y12b{bottom:359.370667pt;}
.y172{bottom:359.562667pt;}
.y182{bottom:360.464000pt;}
.ybd{bottom:361.542667pt;}
.yd7{bottom:362.444000pt;}
.y85{bottom:363.448000pt;}
.y44{bottom:364.349333pt;}
.y99{bottom:364.970667pt;}
.y19{bottom:367.542667pt;}
.y103{bottom:373.524000pt;}
.y14f{bottom:374.024000pt;}
.y15f{bottom:378.545333pt;}
.y5d{bottom:379.177333pt;}
.y12a{bottom:379.634667pt;}
.y171{bottom:379.826667pt;}
.y181{bottom:380.728000pt;}
.ybc{bottom:381.806667pt;}
.yd6{bottom:382.708000pt;}
.y84{bottom:383.712000pt;}
.y18{bottom:384.053333pt;}
.y43{bottom:384.613333pt;}
.y98{bottom:385.234667pt;}
.y14e{bottom:396.945333pt;}
.y5c{bottom:399.441333pt;}
.y129{bottom:399.898667pt;}
.y170{bottom:400.090667pt;}
.y180{bottom:400.992000pt;}
.ybb{bottom:402.070667pt;}
.yd5{bottom:402.972000pt;}
.y17{bottom:403.450667pt;}
.y83{bottom:403.976000pt;}
.y42{bottom:404.877333pt;}
.y102{bottom:413.525333pt;}
.y97{bottom:414.824000pt;}
.y15e{bottom:415.280000pt;}
.y5b{bottom:419.705333pt;}
.y14d{bottom:419.866667pt;}
.y128{bottom:420.162667pt;}
.yba{bottom:422.334667pt;}
.yd4{bottom:423.236000pt;}
.y82{bottom:424.240000pt;}
.y41{bottom:425.141333pt;}
.yf3{bottom:432.888000pt;}
.y16{bottom:433.362667pt;}
.y101{bottom:433.789333pt;}
.y15d{bottom:435.544000pt;}
.y16f{bottom:437.196000pt;}
.y5a{bottom:439.969333pt;}
.y127{bottom:440.426667pt;}
.yb9{bottom:442.598667pt;}
.y14c{bottom:442.786667pt;}
.yd3{bottom:443.500000pt;}
.y81{bottom:444.504000pt;}
.y40{bottom:445.405333pt;}
.y198{bottom:445.481333pt;}
.yf2{bottom:453.152000pt;}
.y100{bottom:454.053333pt;}
.y96{bottom:455.809333pt;}
.y16e{bottom:457.460000pt;}
.y59{bottom:460.233333pt;}
.y126{bottom:460.690667pt;}
.yb8{bottom:462.862667pt;}
.yd2{bottom:463.764000pt;}
.y80{bottom:464.768000pt;}
.y15{bottom:464.830667pt;}
.y3f{bottom:465.669333pt;}
.y14b{bottom:466.238667pt;}
.yf1{bottom:473.416000pt;}
.yff{bottom:474.317333pt;}
.y95{bottom:476.073333pt;}
.y16d{bottom:477.724000pt;}
.y58{bottom:480.497333pt;}
.y125{bottom:480.954667pt;}
.yb7{bottom:483.126667pt;}
.yd1{bottom:484.028000pt;}
.y14{bottom:484.344000pt;}
.y7f{bottom:485.032000pt;}
.y3e{bottom:485.933333pt;}
.yf0{bottom:493.680000pt;}
.yfe{bottom:494.581333pt;}
.y57{bottom:500.761333pt;}
.y124{bottom:501.218667pt;}
.y14a{bottom:502.974667pt;}
.yb6{bottom:503.390667pt;}
.y13{bottom:503.858667pt;}
.yd0{bottom:504.292000pt;}
.y7e{bottom:505.296000pt;}
.y3d{bottom:506.197333pt;}
.y19a{bottom:506.274667pt;}
.y16c{bottom:507.286667pt;}
.yef{bottom:513.944000pt;}
.yfd{bottom:514.845333pt;}
.y56{bottom:521.025333pt;}
.y123{bottom:521.482667pt;}
.y149{bottom:523.238667pt;}
.y12{bottom:523.372000pt;}
.yb5{bottom:523.654667pt;}
.ycf{bottom:524.556000pt;}
.y7d{bottom:525.561333pt;}
.y3c{bottom:526.461333pt;}
.y197{bottom:526.462667pt;}
.yee{bottom:534.208000pt;}
.yfc{bottom:535.109333pt;}
.y55{bottom:540.389333pt;}
.y122{bottom:541.748000pt;}
.y11{bottom:542.885333pt;}
.yb4{bottom:543.918667pt;}
.yce{bottom:544.820000pt;}
.y7c{bottom:545.825333pt;}
.y3b{bottom:546.726667pt;}
.y148{bottom:553.364000pt;}
.yed{bottom:554.472000pt;}
.yfb{bottom:555.373333pt;}
.y121{bottom:562.012000pt;}
.y10{bottom:562.398667pt;}
.yb3{bottom:564.182667pt;}
.ycd{bottom:565.084000pt;}
.y7b{bottom:566.089333pt;}
.y3a{bottom:566.990667pt;}
.y147{bottom:573.628000pt;}
.yec{bottom:574.736000pt;}
.yfa{bottom:575.637333pt;}
.yf{bottom:581.912000pt;}
.yb2{bottom:584.446667pt;}
.ycc{bottom:585.348000pt;}
.y7a{bottom:586.353333pt;}
.y39{bottom:587.254667pt;}
.y146{bottom:593.892000pt;}
.yeb{bottom:595.001333pt;}
.yf9{bottom:595.902667pt;}
.y120{bottom:598.429333pt;}
.ye{bottom:601.425333pt;}
.y79{bottom:606.617333pt;}
.y38{bottom:607.518667pt;}
.y196{bottom:607.594667pt;}
.y145{bottom:614.156000pt;}
.yea{bottom:615.265333pt;}
.yf8{bottom:616.166667pt;}
.y11f{bottom:618.693333pt;}
.yd{bottom:620.940000pt;}
.y78{bottom:626.881333pt;}
.y37{bottom:627.782667pt;}
.yb1{bottom:628.164000pt;}
.y144{bottom:634.420000pt;}
.ye9{bottom:635.529333pt;}
.yf7{bottom:636.430667pt;}
.y11e{bottom:638.957333pt;}
.yc{bottom:640.453333pt;}
.y77{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.yb0{bottom:648.428000pt;}
.y143{bottom:654.684000pt;}
.ye8{bottom:655.793333pt;}
.yf6{bottom:656.694667pt;}
.yb{bottom:659.966667pt;}
.y76{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.y11d{bottom:668.692000pt;}
.yaf{bottom:671.348000pt;}
.y142{bottom:674.948000pt;}
.ye7{bottom:676.057333pt;}
.yf5{bottom:676.958667pt;}
.ya{bottom:679.480000pt;}
.y75{bottom:687.673333pt;}
.y34{bottom:688.574667pt;}
.yae{bottom:691.612000pt;}
.y141{bottom:695.212000pt;}
.ye6{bottom:696.321333pt;}
.yf4{bottom:697.222667pt;}
.y9{bottom:698.993333pt;}
.y74{bottom:707.937333pt;}
.y140{bottom:708.709333pt;}
.y33{bottom:708.838667pt;}
.yad{bottom:714.533333pt;}
.y8{bottom:718.508000pt;}
.y73{bottom:728.201333pt;}
.y13f{bottom:728.973333pt;}
.y32{bottom:729.102667pt;}
.yac{bottom:734.797333pt;}
.y11c{bottom:737.453333pt;}
.y7{bottom:738.021333pt;}
.y72{bottom:748.465333pt;}
.y13e{bottom:749.237333pt;}
.y31{bottom:749.366667pt;}
.y6{bottom:757.534667pt;}
.yab{bottom:757.718667pt;}
.y11b{bottom:760.374667pt;}
.y71{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.yaa{bottom:777.982667pt;}
.y13d{bottom:778.972000pt;}
.y11a{bottom:783.826667pt;}
.y70{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.y15c{bottom:789.972000pt;}
.ya9{bottom:800.902667pt;}
.y13c{bottom:801.892000pt;}
.y6f{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y5{bottom:815.970667pt;}
.y119{bottom:820.562667pt;}
.ya8{bottom:821.166667pt;}
.y13b{bottom:824.813333pt;}
.y6e{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.y118{bottom:840.826667pt;}
.ya7{bottom:844.618667pt;}
.y13a{bottom:847.734667pt;}
.y6d{bottom:849.786667pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.y6c{bottom:870.050667pt;}
.y139{bottom:870.654667pt;}
.y2b{bottom:870.952000pt;}
.ya6{bottom:881.354667pt;}
.y3{bottom:885.776000pt;}
.y6b{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.y138{bottom:894.106667pt;}
.y6a{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.y69{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y68{bottom:951.106667pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.h10{height:31.880000pt;}
.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:42.283968pt;}
.hd{height:45.216960pt;}
.h3{height:47.523004pt;}
.h7{height:47.799300pt;}
.he{height:53.466579pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.hf{height:82.258667pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:112.240000pt;}
.xb{left:113.385333pt;}
.x3{left:117.593333pt;}
.x19{left:124.400000pt;}
.x13{left:125.602667pt;}
.x20{left:127.005333pt;}
.x2e{left:133.057333pt;}
.xc{left:136.062667pt;}
.x34{left:137.630667pt;}
.x2a{left:139.488000pt;}
.x35{left:144.413333pt;}
.x4{left:151.070667pt;}
.x6{left:158.261333pt;}
.x2f{left:161.004000pt;}
.x9{left:162.052000pt;}
.x18{left:163.398667pt;}
.x36{left:192.852000pt;}
.x3b{left:199.520000pt;}
.x37{left:201.345333pt;}
.x8{left:215.686667pt;}
.x38{left:217.798667pt;}
.x39{left:223.741333pt;}
.x40{left:227.545333pt;}
.x31{left:230.034667pt;}
.x30{left:231.310667pt;}
.x33{left:250.804000pt;}
.x32{left:252.080000pt;}
.x47{left:253.693333pt;}
.x16{left:254.929333pt;}
.x15{left:261.233333pt;}
.x11{left:280.261333pt;}
.x24{left:282.496000pt;}
.x23{left:283.770667pt;}
.x41{left:284.994667pt;}
.x26{left:302.593333pt;}
.x25{left:303.869333pt;}
.x2b{left:306.609333pt;}
.x3a{left:310.584000pt;}
.x1b{left:315.517333pt;}
.x1c{left:327.026667pt;}
.x5{left:341.604000pt;}
.x21{left:350.910667pt;}
.x1d{left:354.252000pt;}
.x3d{left:355.781333pt;}
.x3c{left:357.057333pt;}
.xe{left:359.442667pt;}
.x1e{left:362.745333pt;}
.x7{left:364.560000pt;}
.x2c{left:365.889333pt;}
.x1a{left:376.382667pt;}
.x1f{left:379.198667pt;}
.x2d{left:382.090667pt;}
.xa{left:384.740000pt;}
.x22{left:397.898667pt;}
.xf{left:402.290667pt;}
.xd{left:412.752000pt;}
.x14{left:422.050667pt;}
.x12{left:435.429333pt;}
.x44{left:495.502667pt;}
.x43{left:496.778667pt;}
.x42{left:500.220000pt;}
.x3e{left:503.610667pt;}
.x2{left:510.021333pt;}
.x10{left:513.840000pt;}
.x28{left:524.844000pt;}
.x27{left:527.938667pt;}
.x29{left:540.560000pt;}
.x3f{left:548.153333pt;}
.x1{left:618.953333pt;}
.x46{left:682.718667pt;}
.x45{left:683.994667pt;}
}




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