
    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_f0bac060d6f1b5a27c1243c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_c5d8c3e5a15a2ff681679abe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.213000;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_d1545f01b23955d4ce8ce98e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.200000;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_f5962a967f64e3cb066254e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.723000;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_6b6973c3a17c1e957b813499.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.226000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;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:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;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:ff8;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;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:ff9;src:url('chunks/assets/font_f429285a4cf0e8e600e89446.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_15176af5d009e1fca4e5d843.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.116000;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:ffb;src:url('chunks/assets/font_d63a8e8d7860a260176f4325.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bc5830b2a08d844f9af70474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.916000;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:ffd;src:url('chunks/assets/font_1f614df53396d4f8626239c0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.869000;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;}
.m1{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);}
.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);}
.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);}
.m1c{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m22{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);}
.m10{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);}
.mb{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);}
.m27{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);}
.m28{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m1e{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);}
.m16{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);}
.m12{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);}
.me{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);}
.m1f{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);}
.m29{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);}
.m1a{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);}
.m1d{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);}
.m17{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);}
.m24{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);}
.mf{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);}
.m18{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);}
.m13{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);}
.m5{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);}
.m21{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);}
.m9{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);}
.m4{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);}
.md{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);}
.m26{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m19{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);}
.m14{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);}
.mc{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);}
.m6{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);}
.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);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v8{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.242780px;}
.v3{vertical-align:15.038100px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:25.312980px;}
.v4{vertical-align:26.560380px;}
.v7{vertical-align:50.630580px;}
.lsa{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000154px;}
.ls34{letter-spacing:0.000500px;}
.ls31{letter-spacing:0.000649px;}
.ls15{letter-spacing:0.001331px;}
.ls13{letter-spacing:0.001518px;}
.ls3a{letter-spacing:0.001553px;}
.ls29{letter-spacing:0.001981px;}
.ls28{letter-spacing:0.002210px;}
.ls1c{letter-spacing:0.002239px;}
.ls35{letter-spacing:0.002338px;}
.ls3b{letter-spacing:0.002573px;}
.ls2{letter-spacing:0.002672px;}
.lsd{letter-spacing:0.002782px;}
.ls39{letter-spacing:0.002832px;}
.ls3f{letter-spacing:0.002870px;}
.ls1d{letter-spacing:0.002958px;}
.ls32{letter-spacing:0.003049px;}
.ls9{letter-spacing:0.003488px;}
.ls7{letter-spacing:0.003494px;}
.ls21{letter-spacing:0.003643px;}
.ls22{letter-spacing:0.004350px;}
.ls24{letter-spacing:0.004435px;}
.ls33{letter-spacing:0.005200px;}
.ls36{letter-spacing:0.524565px;}
.ls38{letter-spacing:0.526362px;}
.ls3d{letter-spacing:0.528270px;}
.ls37{letter-spacing:0.532273px;}
.ls3c{letter-spacing:0.534193px;}
.ls3e{letter-spacing:0.537859px;}
.lsb{letter-spacing:1.275394px;}
.ls6{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.998354px;}
.ls8{letter-spacing:11.954850px;}
.lsc{letter-spacing:12.791978px;}
.ls10{letter-spacing:14.704798px;}
.ls18{letter-spacing:14.764573px;}
.ls16{letter-spacing:14.769755px;}
.ls17{letter-spacing:14.824349px;}
.ls30{letter-spacing:14.941200px;}
.ls14{letter-spacing:14.943900px;}
.ls1e{letter-spacing:14.944435px;}
.ls1a{letter-spacing:15.123227px;}
.ls23{letter-spacing:15.362329px;}
.ls12{letter-spacing:15.541656px;}
.ls11{letter-spacing:15.661207px;}
.ls1{letter-spacing:17.935200px;}
.lsf{letter-spacing:18.052231px;}
.ls20{letter-spacing:19.666172px;}
.ls1f{letter-spacing:19.725948px;}
.ls19{letter-spacing:22.138788px;}
.ls1b{letter-spacing:22.654952px;}
.ls27{letter-spacing:23.970016px;}
.ls25{letter-spacing:27.056435px;}
.ls26{letter-spacing:33.235234px;}
.ls0{letter-spacing:57.415200px;}
.ls4{letter-spacing:70.236600px;}
.ls5{letter-spacing:72.353510px;}
.ls2a{letter-spacing:201.649602px;}
.ls2b{letter-spacing:382.051362px;}
.ls2c{letter-spacing:587.927802px;}
.ls2d{letter-spacing:645.677802px;}
.ls2e{letter-spacing:657.523482px;}
.ls2f{letter-spacing:877.694202px;}
.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;}
}
.ws0{word-spacing:-22.718660px;}
.ws23{word-spacing:-17.394700px;}
.wsc4{word-spacing:-15.655334px;}
.ws20{word-spacing:-14.943900px;}
.ws5{word-spacing:-14.355754px;}
.ws1d{word-spacing:-13.915795px;}
.wsc7{word-spacing:-13.449600px;}
.ws87{word-spacing:-12.054607px;}
.ws1c{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws8f{word-spacing:-10.356192px;}
.ws78{word-spacing:-3.885414px;}
.ws40{word-spacing:-3.706087px;}
.wsc9{word-spacing:-3.550694px;}
.ws6c{word-spacing:-3.407209px;}
.ws21{word-spacing:-3.347434px;}
.ws5a{word-spacing:-3.287658px;}
.ws53{word-spacing:-2.929004px;}
.ws73{word-spacing:-2.869229px;}
.wsd4{word-spacing:-2.851315px;}
.ws22{word-spacing:-2.809453px;}
.wsf3{word-spacing:-2.797517px;}
.wsfe{word-spacing:-2.689920px;}
.wsac{word-spacing:-2.689902px;}
.ws44{word-spacing:-2.630126px;}
.wsbe{word-spacing:-2.570351px;}
.ws5c{word-spacing:-2.391024px;}
.wsfd{word-spacing:-2.313331px;}
.ws91{word-spacing:-2.271473px;}
.ws29{word-spacing:-2.211697px;}
.ws28{word-spacing:-2.151922px;}
.wsab{word-spacing:-2.092146px;}
.wsb{word-spacing:-2.032370px;}
.ws92{word-spacing:-1.972595px;}
.ws7f{word-spacing:-1.912819px;}
.ws8{word-spacing:-1.908367px;}
.ws80{word-spacing:-1.853044px;}
.wsba{word-spacing:-1.793268px;}
.wsfb{word-spacing:-1.775347px;}
.ws9{word-spacing:-1.733492px;}
.ws6d{word-spacing:-1.613941px;}
.wsad{word-spacing:-1.554166px;}
.ws10d{word-spacing:-1.506355px;}
.ws60{word-spacing:-1.494390px;}
.ws7b{word-spacing:-1.434614px;}
.ws7e{word-spacing:-1.374839px;}
.ws7{word-spacing:-1.322630px;}
.wsb8{word-spacing:-1.315063px;}
.wsd{word-spacing:-1.255288px;}
.wsf9{word-spacing:-1.237363px;}
.wsa9{word-spacing:-1.195512px;}
.ws82{word-spacing:-1.075961px;}
.wseb{word-spacing:-1.022170px;}
.wsb9{word-spacing:-0.956410px;}
.wsb1{word-spacing:-0.896634px;}
.wsb6{word-spacing:-0.777083px;}
.ws103{word-spacing:-0.753178px;}
.ws68{word-spacing:-0.717307px;}
.wse7{word-spacing:-0.699379px;}
.ws26{word-spacing:-0.657532px;}
.ws74{word-spacing:-0.597756px;}
.ws55{word-spacing:-0.537980px;}
.wsdc{word-spacing:-0.484186px;}
.ws88{word-spacing:-0.455672px;}
.ws2f{word-spacing:-0.418429px;}
.ws8c{word-spacing:-0.372823px;}
.ws58{word-spacing:-0.358654px;}
.ws12{word-spacing:-0.298878px;}
.ws100{word-spacing:-0.268992px;}
.wsf{word-spacing:-0.239102px;}
.wscb{word-spacing:-0.215194px;}
.ws27{word-spacing:-0.179327px;}
.wsda{word-spacing:-0.161395px;}
.ws11{word-spacing:-0.119551px;}
.wscf{word-spacing:-0.107597px;}
.ws33{word-spacing:-0.059776px;}
.wsce{word-spacing:-0.053798px;}
.ws8a{word-spacing:-0.041425px;}
.wsd3{word-spacing:-0.013843px;}
.wse2{word-spacing:-0.012806px;}
.wsc6{word-spacing:-0.010339px;}
.wse9{word-spacing:-0.007066px;}
.ws89{word-spacing:-0.006305px;}
.ws10a{word-spacing:-0.004339px;}
.wsd0{word-spacing:-0.003888px;}
.ws8b{word-spacing:-0.002580px;}
.ws1b{word-spacing:-0.001225px;}
.ws4{word-spacing:-0.000808px;}
.wsff{word-spacing:-0.000749px;}
.ws2{word-spacing:-0.000258px;}
.ws1{word-spacing:0.000000px;}
.ws85{word-spacing:0.001005px;}
.ws8e{word-spacing:0.041425px;}
.wsc3{word-spacing:0.053798px;}
.ws2b{word-spacing:0.059776px;}
.wsde{word-spacing:0.107597px;}
.ws15{word-spacing:0.119551px;}
.wsd5{word-spacing:0.161395px;}
.ws86{word-spacing:0.165699px;}
.wsc{word-spacing:0.179327px;}
.wsf8{word-spacing:0.215194px;}
.ws1f{word-spacing:0.239102px;}
.wsc2{word-spacing:0.268992px;}
.ws3e{word-spacing:0.298878px;}
.wsf2{word-spacing:0.322790px;}
.wse{word-spacing:0.358654px;}
.ws3d{word-spacing:0.418429px;}
.wsd6{word-spacing:0.484186px;}
.ws35{word-spacing:0.537980px;}
.wsd9{word-spacing:0.537984px;}
.ws10{word-spacing:0.597756px;}
.ws93{word-spacing:0.657532px;}
.wsb3{word-spacing:0.717307px;}
.wsd8{word-spacing:0.753178px;}
.ws37{word-spacing:0.777083px;}
.ws46{word-spacing:0.836858px;}
.wse5{word-spacing:0.860774px;}
.ws31{word-spacing:0.896634px;}
.ws32{word-spacing:0.956410px;}
.wscd{word-spacing:0.968371px;}
.ws64{word-spacing:1.016185px;}
.wsaa{word-spacing:1.075961px;}
.ws6e{word-spacing:1.135736px;}
.ws4b{word-spacing:1.195512px;}
.ws19{word-spacing:1.255288px;}
.ws111{word-spacing:1.291162px;}
.ws45{word-spacing:1.315063px;}
.ws10e{word-spacing:1.344960px;}
.ws90{word-spacing:1.434614px;}
.wsa8{word-spacing:1.494390px;}
.ws4a{word-spacing:1.554166px;}
.ws107{word-spacing:1.560154px;}
.ws7d{word-spacing:1.613941px;}
.ws4e{word-spacing:1.673717px;}
.ws59{word-spacing:1.733492px;}
.wsf1{word-spacing:1.775347px;}
.ws17{word-spacing:1.793268px;}
.ws1a{word-spacing:1.853044px;}
.wsc0{word-spacing:1.972595px;}
.ws4d{word-spacing:2.092146px;}
.ws10f{word-spacing:2.098138px;}
.wsaf{word-spacing:2.151922px;}
.wsc8{word-spacing:2.205734px;}
.wsb0{word-spacing:2.211697px;}
.wscc{word-spacing:2.259533px;}
.ws99{word-spacing:2.271473px;}
.ws3c{word-spacing:2.391024px;}
.ws66{word-spacing:2.391030px;}
.wse4{word-spacing:2.474726px;}
.ws79{word-spacing:2.510575px;}
.ws52{word-spacing:2.570351px;}
.ws5b{word-spacing:2.630126px;}
.wsa7{word-spacing:2.689902px;}
.wsfc{word-spacing:2.689920px;}
.wsdf{word-spacing:2.743718px;}
.ws2a{word-spacing:2.749678px;}
.ws38{word-spacing:2.809453px;}
.ws18{word-spacing:2.929004px;}
.ws7c{word-spacing:2.988780px;}
.ws10c{word-spacing:3.012710px;}
.ws3b{word-spacing:3.048556px;}
.ws94{word-spacing:3.108331px;}
.ws13{word-spacing:3.168107px;}
.ws71{word-spacing:3.227882px;}
.ws109{word-spacing:3.227904px;}
.wsb5{word-spacing:3.287658px;}
.wsdb{word-spacing:3.335501px;}
.ws97{word-spacing:3.347434px;}
.ws6b{word-spacing:3.407209px;}
.ws9b{word-spacing:3.466985px;}
.ws14{word-spacing:3.526760px;}
.ws9e{word-spacing:3.586536px;}
.ws57{word-spacing:3.646312px;}
.ws48{word-spacing:3.706087px;}
.ws105{word-spacing:3.712090px;}
.ws70{word-spacing:3.765863px;}
.ws3a{word-spacing:3.825638px;}
.ws25{word-spacing:3.885414px;}
.ws24{word-spacing:3.945190px;}
.ws34{word-spacing:4.004965px;}
.ws9c{word-spacing:4.064741px;}
.ws108{word-spacing:4.088678px;}
.wsbf{word-spacing:4.124516px;}
.wsa0{word-spacing:4.184292px;}
.ws5e{word-spacing:4.244068px;}
.ws2c{word-spacing:4.303843px;}
.wsd2{word-spacing:4.357670px;}
.wsb7{word-spacing:4.423394px;}
.wsca{word-spacing:4.519066px;}
.wsb4{word-spacing:4.602721px;}
.wsdd{word-spacing:4.626662px;}
.ws41{word-spacing:4.722272px;}
.ws104{word-spacing:4.734259px;}
.ws6f{word-spacing:4.841824px;}
.ws76{word-spacing:4.961375px;}
.ws101{word-spacing:5.003251px;}
.ws63{word-spacing:5.021150px;}
.ws6a{word-spacing:5.080926px;}
.ws67{word-spacing:5.140702px;}
.wsa6{word-spacing:5.200477px;}
.ws98{word-spacing:5.260253px;}
.wsb2{word-spacing:5.320028px;}
.wse3{word-spacing:5.377392px;}
.wsc1{word-spacing:5.378822px;}
.wse8{word-spacing:5.379446px;}
.ws39{word-spacing:5.379804px;}
.ws6{word-spacing:5.379840px;}
.wsc5{word-spacing:5.379907px;}
.ws102{word-spacing:5.541235px;}
.ws5f{word-spacing:5.559131px;}
.wsed{word-spacing:5.595034px;}
.ws65{word-spacing:5.642831px;}
.ws95{word-spacing:5.678682px;}
.wse6{word-spacing:5.702630px;}
.ws77{word-spacing:5.738458px;}
.ws75{word-spacing:5.798233px;}
.ws36{word-spacing:5.858009px;}
.ws54{word-spacing:5.917784px;}
.ws16{word-spacing:5.977560px;}
.wsfa{word-spacing:6.079219px;}
.ws10b{word-spacing:6.133018px;}
.wsa{word-spacing:6.216662px;}
.wse1{word-spacing:6.240614px;}
.wsbc{word-spacing:6.276438px;}
.wsbd{word-spacing:6.395989px;}
.ws2d{word-spacing:6.515540px;}
.ws49{word-spacing:6.575316px;}
.ws9d{word-spacing:6.694867px;}
.ws61{word-spacing:6.754643px;}
.ws43{word-spacing:6.993745px;}
.ws56{word-spacing:7.173072px;}
.wse0{word-spacing:7.208986px;}
.ws7a{word-spacing:7.232848px;}
.ws5d{word-spacing:7.352399px;}
.ws69{word-spacing:7.471950px;}
.wsf5{word-spacing:7.639373px;}
.wsf4{word-spacing:7.693171px;}
.ws62{word-spacing:7.890379px;}
.wsec{word-spacing:7.908365px;}
.wsee{word-spacing:8.015962px;}
.wsbb{word-spacing:8.069706px;}
.wsef{word-spacing:8.069760px;}
.wsea{word-spacing:8.231155px;}
.ws96{word-spacing:8.488135px;}
.ws30{word-spacing:8.547911px;}
.ws2e{word-spacing:8.607686px;}
.ws9f{word-spacing:8.787013px;}
.wsa1{word-spacing:8.846789px;}
.ws83{word-spacing:9.026116px;}
.wsae{word-spacing:9.564096px;}
.ws51{word-spacing:9.743423px;}
.ws110{word-spacing:9.791309px;}
.ws3f{word-spacing:9.862974px;}
.ws4c{word-spacing:10.042301px;}
.wsa4{word-spacing:10.341179px;}
.ws9a{word-spacing:10.460730px;}
.wsf0{word-spacing:11.082470px;}
.ws50{word-spacing:11.476915px;}
.wsa3{word-spacing:11.716018px;}
.wsd7{word-spacing:12.050842px;}
.ws81{word-spacing:12.134447px;}
.wsa5{word-spacing:12.313774px;}
.wsf6{word-spacing:12.642624px;}
.ws72{word-spacing:13.509286px;}
.ws42{word-spacing:14.226593px;}
.ws4f{word-spacing:14.645022px;}
.ws47{word-spacing:15.840534px;}
.wsa2{word-spacing:15.900310px;}
.ws106{word-spacing:17.000294px;}
.wsd1{word-spacing:18.829440px;}
.wsf7{word-spacing:43.684301px;}
.ws8d{word-spacing:415.946095px;}
.ws1e{word-spacing:956.077256px;}
.ws84{word-spacing:1299.992069px;}
._4{margin-left:-6.939994px;}
._3{margin-left:-4.949453px;}
._2{margin-left:-3.002778px;}
._6{margin-left:-1.322630px;}
._7{width:1.091170px;}
._0{width:2.993778px;}
._16{width:9.803198px;}
._1e{width:11.006278px;}
._a{width:12.679994px;}
._12{width:14.054833px;}
._15{width:15.661081px;}
._f{width:16.737210px;}
._1d{width:17.753353px;}
._5{width:18.829440px;}
._9{width:20.748157px;}
._b{width:21.832211px;}
._8{width:23.021173px;}
._13{width:24.212330px;}
._d{width:25.823059px;}
._e{width:27.443024px;}
._1a{width:28.586328px;}
._1c{width:30.007351px;}
._c{width:31.800619px;}
._11{width:33.173070px;}
._19{width:34.550297px;}
._1f{width:36.605369px;}
._14{width:38.364013px;}
._33{width:40.356097px;}
._18{width:42.022247px;}
._20{width:43.755739px;}
._35{width:44.908566px;}
._30{width:46.445641px;}
._32{width:47.760704px;}
._34{width:50.996154px;}
._31{width:52.677786px;}
._1{width:54.405546px;}
._1b{width:55.651084px;}
._36{width:57.080102px;}
._21{width:62.106848px;}
._17{width:64.139219px;}
._27{width:180.224367px;}
._26{width:429.528918px;}
._28{width:512.237562px;}
._2e{width:523.768269px;}
._2d{width:553.559175px;}
._2b{width:577.875514px;}
._2a{width:749.181551px;}
._24{width:799.777945px;}
._25{width:955.252718px;}
._2c{width:1009.852994px;}
._23{width:1164.672011px;}
._29{width:1402.139050px;}
._2f{width:2070.585600px;}
._10{width:2094.495600px;}
._22{width:3550.269600px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(81,125,151);}
.fsb{font-size:32.218956px;}
.fs9{font-size:35.865600px;}
.fsa{font-size:41.424768px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:90.874640px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y12{bottom:3.425340px;}
.y3{bottom:9.233944px;}
.y11{bottom:14.151273px;}
.y2{bottom:26.903761px;}
.y30{bottom:63.780000px;}
.y198{bottom:108.957000px;}
.yac{bottom:112.818000px;}
.y140{bottom:114.156000px;}
.ya7{bottom:119.863500px;}
.y90{bottom:122.314500px;}
.y164{bottom:122.631000px;}
.y63{bottom:123.121500px;}
.yab{bottom:127.014000px;}
.y197{bottom:128.325000px;}
.y2f{bottom:134.341500px;}
.y13d{bottom:134.419500px;}
.y10d{bottom:138.720000px;}
.ya6{bottom:140.128500px;}
.yaa{bottom:141.211500px;}
.y163{bottom:141.997500px;}
.y8f{bottom:142.579500px;}
.y62{bottom:143.386500px;}
.ya9{bottom:145.551000px;}
.y196{bottom:147.691500px;}
.yca{bottom:148.527000px;}
.y10c{bottom:154.082730px;}
.y2e{bottom:154.605000px;}
.y13c{bottom:154.683000px;}
.ya5{bottom:160.392000px;}
.y162{bottom:161.365500px;}
.y8e{bottom:162.843000px;}
.y61{bottom:163.650000px;}
.y10b{bottom:166.740375px;}
.y195{bottom:167.059500px;}
.yc9{bottom:168.792000px;}
.y108{bottom:173.068620px;}
.y2d{bottom:174.868500px;}
.y13b{bottom:174.948000px;}
.y10a{bottom:179.398020px;}
.ya4{bottom:180.657000px;}
.y161{bottom:180.732000px;}
.y60{bottom:183.913500px;}
.y194{bottom:186.427500px;}
.y109{bottom:192.055665px;}
.y8d{bottom:192.073500px;}
.y2c{bottom:195.133500px;}
.y13a{bottom:195.211500px;}
.yc8{bottom:198.021000px;}
.y160{bottom:200.100000px;}
.ya3{bottom:200.920500px;}
.y5f{bottom:204.178500px;}
.y193{bottom:205.794000px;}
.y107{bottom:210.533355px;}
.y2b{bottom:215.397000px;}
.y139{bottom:215.476500px;}
.y15f{bottom:219.468000px;}
.ya2{bottom:221.184000px;}
.y5e{bottom:224.442000px;}
.y192{bottom:225.162000px;}
.y8c{bottom:226.893000px;}
.y106{bottom:228.737310px;}
.y105{bottom:235.065555px;}
.y2a{bottom:235.662000px;}
.y138{bottom:235.740000px;}
.y15e{bottom:238.834500px;}
.ya1{bottom:241.449000px;}
.y191{bottom:244.528500px;}
.y5d{bottom:244.707000px;}
.y8b{bottom:247.158000px;}
.yc7{bottom:250.774500px;}
.y29{bottom:255.925500px;}
.y137{bottom:256.003500px;}
.y15d{bottom:258.202500px;}
.y104{bottom:259.872645px;}
.ya0{bottom:261.712500px;}
.y190{bottom:263.896500px;}
.y5c{bottom:264.970500px;}
.y8a{bottom:267.421500px;}
.yc6{bottom:271.038000px;}
.y28{bottom:276.189000px;}
.y136{bottom:276.268500px;}
.y15c{bottom:277.569000px;}
.y103{bottom:278.076600px;}
.y9f{bottom:281.977500px;}
.y18f{bottom:283.264500px;}
.y5b{bottom:285.234000px;}
.y89{bottom:287.685000px;}
.ya8{bottom:290.659500px;}
.y102{bottom:290.734245px;}
.y27{bottom:296.454000px;}
.y135{bottom:296.532000px;}
.y15b{bottom:296.937000px;}
.yff{bottom:297.062490px;}
.y9e{bottom:302.241000px;}
.y18e{bottom:302.631000px;}
.y101{bottom:303.391890px;}
.y5a{bottom:305.499000px;}
.y88{bottom:307.950000px;}
.yc5{bottom:309.235500px;}
.y13e{bottom:311.208000px;}
.y100{bottom:316.048380px;}
.y15a{bottom:316.305000px;}
.y26{bottom:316.717500px;}
.y134{bottom:316.797000px;}
.y18d{bottom:321.999000px;}
.y9d{bottom:322.504500px;}
.y59{bottom:325.762500px;}
.y87{bottom:328.213500px;}
.yc4{bottom:329.499000px;}
.yfe{bottom:334.252335px;}
.y159{bottom:335.671500px;}
.y25{bottom:336.982500px;}
.y133{bottom:337.060500px;}
.yfc{bottom:340.580580px;}
.y18c{bottom:341.367000px;}
.y9c{bottom:342.769500px;}
.y58{bottom:346.027500px;}
.yfd{bottom:346.909980px;}
.y86{bottom:348.478500px;}
.y158{bottom:355.039500px;}
.y132{bottom:357.324000px;}
.y18b{bottom:360.733500px;}
.y9b{bottom:363.033000px;}
.yfb{bottom:365.387670px;}
.y24{bottom:366.213000px;}
.y57{bottom:366.291000px;}
.ydc{bottom:366.411000px;}
.yc3{bottom:367.696500px;}
.y85{bottom:368.742000px;}
.y157{bottom:374.406000px;}
.y131{bottom:377.589000px;}
.y18a{bottom:380.101500px;}
.y9a{bottom:383.298000px;}
.yf8{bottom:383.591625px;}
.y56{bottom:386.554500px;}
.ydb{bottom:386.674500px;}
.yc2{bottom:387.960000px;}
.y84{bottom:389.005500px;}
.yfa{bottom:389.919870px;}
.y156{bottom:393.774000px;}
.yf7{bottom:396.249270px;}
.y130{bottom:397.852500px;}
.y189{bottom:399.468000px;}
.yf9{bottom:402.577515px;}
.y99{bottom:403.561500px;}
.y55{bottom:406.819500px;}
.yda{bottom:406.938000px;}
.yc1{bottom:408.223500px;}
.y83{bottom:409.270500px;}
.y155{bottom:413.142000px;}
.y12f{bottom:418.117500px;}
.y188{bottom:418.836000px;}
.y98{bottom:423.825000px;}
.y54{bottom:427.083000px;}
.yf6{bottom:427.109715px;}
.yd9{bottom:427.203000px;}
.yc0{bottom:428.488500px;}
.y82{bottom:429.534000px;}
.y154{bottom:432.508500px;}
.yf4{bottom:433.439115px;}
.y187{bottom:438.204000px;}
.y12e{bottom:438.381000px;}
.yf5{bottom:439.767360px;}
.y23{bottom:442.629000px;}
.y97{bottom:444.090000px;}
.y53{bottom:447.348000px;}
.yd8{bottom:447.466500px;}
.ybf{bottom:448.752000px;}
.y81{bottom:449.799000px;}
.y153{bottom:451.876500px;}
.y186{bottom:457.570500px;}
.yf3{bottom:458.246205px;}
.y12d{bottom:458.644500px;}
.y22{bottom:462.892500px;}
.y96{bottom:464.353500px;}
.y52{bottom:467.611500px;}
.yd7{bottom:467.731500px;}
.ybe{bottom:469.017000px;}
.y80{bottom:470.062500px;}
.y152{bottom:471.243000px;}
.yf2{bottom:476.449005px;}
.y185{bottom:476.938500px;}
.y12c{bottom:478.909500px;}
.y95{bottom:484.618500px;}
.y51{bottom:487.875000px;}
.yd6{bottom:487.995000px;}
.ybd{bottom:489.280500px;}
.y7f{bottom:490.326000px;}
.y151{bottom:490.611000px;}
.yf1{bottom:495.274350px;}
.y184{bottom:496.305000px;}
.y12b{bottom:499.173000px;}
.y21{bottom:501.090000px;}
.y94{bottom:504.882000px;}
.y50{bottom:508.140000px;}
.yd5{bottom:508.258500px;}
.ybc{bottom:509.544000px;}
.y150{bottom:509.979000px;}
.y7e{bottom:510.591000px;}
.yf0{bottom:514.099695px;}
.y183{bottom:515.673000px;}
.y12a{bottom:519.438000px;}
.y20{bottom:521.353500px;}
.y93{bottom:525.145500px;}
.y4f{bottom:528.403500px;}
.yd4{bottom:528.523500px;}
.y14f{bottom:529.345500px;}
.ybb{bottom:529.809000px;}
.y7d{bottom:530.854500px;}
.yef{bottom:532.925040px;}
.y13f{bottom:534.112500px;}
.y182{bottom:535.041000px;}
.y129{bottom:539.701500px;}
.y1f{bottom:541.617000px;}
.y92{bottom:545.410500px;}
.y4e{bottom:548.667000px;}
.y14e{bottom:548.713500px;}
.yd3{bottom:548.787000px;}
.y7c{bottom:551.119500px;}
.yee{bottom:551.750385px;}
.y181{bottom:554.407500px;}
.y128{bottom:559.965000px;}
.y1e{bottom:561.882000px;}
.yba{bottom:568.005000px;}
.y14d{bottom:568.080000px;}
.y4d{bottom:568.932000px;}
.yd2{bottom:569.052000px;}
.yed{bottom:570.575730px;}
.y7b{bottom:571.383000px;}
.y180{bottom:573.775500px;}
.y91{bottom:574.641000px;}
.yec{bottom:576.593280px;}
.y127{bottom:580.230000px;}
.y1d{bottom:582.145500px;}
.y14c{bottom:587.448000px;}
.yb9{bottom:588.270000px;}
.y4c{bottom:589.195500px;}
.yd1{bottom:589.315500px;}
.y7a{bottom:591.646500px;}
.y17f{bottom:593.142000px;}
.y126{bottom:600.493500px;}
.yeb{bottom:601.436175px;}
.y1c{bottom:602.409000px;}
.y14b{bottom:606.816000px;}
.ye8{bottom:607.765575px;}
.y4b{bottom:609.460500px;}
.yd0{bottom:609.579000px;}
.y79{bottom:611.911500px;}
.y17e{bottom:612.510000px;}
.ye6{bottom:613.783125px;}
.yea{bottom:614.093820px;}
.y19b{bottom:618.388500px;}
.ye7{bottom:620.423220px;}
.y125{bottom:620.758500px;}
.y1b{bottom:622.674000px;}
.y14a{bottom:626.182500px;}
.yb8{bottom:626.466000px;}
.ye9{bottom:626.751465px;}
.y4a{bottom:629.724000px;}
.ycf{bottom:629.844000px;}
.y17d{bottom:631.878000px;}
.y78{bottom:632.175000px;}
.y19a{bottom:637.755000px;}
.y124{bottom:641.022000px;}
.y1a{bottom:642.937500px;}
.ye5{bottom:644.955420px;}
.y149{bottom:645.550500px;}
.yb7{bottom:646.731000px;}
.y49{bottom:649.987500px;}
.yce{bottom:650.107500px;}
.y17c{bottom:651.244500px;}
.y77{bottom:652.438500px;}
.y199{bottom:657.123000px;}
.ye4{bottom:657.613065px;}
.y123{bottom:661.285500px;}
.y19{bottom:663.202500px;}
.ye1{bottom:663.941310px;}
.y148{bottom:664.918500px;}
.yb6{bottom:666.994500px;}
.y48{bottom:670.252500px;}
.ye3{bottom:670.269555px;}
.ycd{bottom:670.372500px;}
.y17b{bottom:670.612500px;}
.y76{bottom:672.703500px;}
.y122{bottom:681.550500px;}
.ye2{bottom:682.927200px;}
.y18{bottom:683.466000px;}
.y147{bottom:684.285000px;}
.yb5{bottom:687.258000px;}
.y17a{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y75{bottom:692.967000px;}
.ycc{bottom:699.603000px;}
.ye0{bottom:701.406045px;}
.y121{bottom:701.814000px;}
.y17{bottom:703.729500px;}
.yb4{bottom:707.523000px;}
.y179{bottom:709.347000px;}
.y46{bottom:710.781000px;}
.y146{bottom:712.618500px;}
.y74{bottom:713.232000px;}
.ycb{bottom:716.488500px;}
.ydf{bottom:719.884890px;}
.y120{bottom:722.077500px;}
.y16{bottom:723.994500px;}
.yb3{bottom:727.786500px;}
.y178{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.y73{bottom:733.495500px;}
.y11f{bottom:742.342500px;}
.y15{bottom:744.258000px;}
.yde{bottom:747.622500px;}
.yb2{bottom:748.051500px;}
.y177{bottom:748.081500px;}
.y44{bottom:751.308000px;}
.y145{bottom:752.071500px;}
.y72{bottom:753.759000px;}
.y11e{bottom:762.606000px;}
.y14{bottom:764.523000px;}
.y176{bottom:767.449500px;}
.yb1{bottom:768.315000px;}
.y43{bottom:771.573000px;}
.y71{bottom:774.024000px;}
.y144{bottom:776.235000px;}
.y11d{bottom:782.871000px;}
.y13{bottom:784.786500px;}
.y175{bottom:786.816000px;}
.yb0{bottom:788.578500px;}
.y143{bottom:791.433000px;}
.y42{bottom:791.836500px;}
.y70{bottom:794.287500px;}
.ydd{bottom:798.445500px;}
.y11c{bottom:803.134500px;}
.y174{bottom:806.184000px;}
.yaf{bottom:808.843500px;}
.y41{bottom:812.101500px;}
.y6f{bottom:814.552500px;}
.y142{bottom:815.598000px;}
.y10{bottom:820.219464px;}
.yf{bottom:820.986000px;}
.y11b{bottom:823.398000px;}
.y173{bottom:825.552000px;}
.yae{bottom:829.107000px;}
.y40{bottom:832.365000px;}
.y6e{bottom:834.816000px;}
.y141{bottom:839.763000px;}
.y11a{bottom:843.663000px;}
.y172{bottom:844.918500px;}
.y3f{bottom:852.628500px;}
.y6d{bottom:855.079500px;}
.yad{bottom:858.337500px;}
.ye{bottom:859.990500px;}
.y119{bottom:863.926500px;}
.y171{bottom:864.286500px;}
.y3e{bottom:872.893500px;}
.y6c{bottom:875.344500px;}
.yd{bottom:883.030500px;}
.y170{bottom:883.653000px;}
.y118{bottom:884.191500px;}
.y3d{bottom:893.157000px;}
.y6b{bottom:895.608000px;}
.yc{bottom:901.188000px;}
.y16f{bottom:903.021000px;}
.y117{bottom:904.455000px;}
.y3c{bottom:913.422000px;}
.y6a{bottom:915.873000px;}
.yb{bottom:919.344000px;}
.y16e{bottom:922.389000px;}
.y116{bottom:924.718500px;}
.y3b{bottom:933.685500px;}
.y69{bottom:936.136500px;}
.ya{bottom:937.501500px;}
.y16d{bottom:941.755500px;}
.y115{bottom:944.983500px;}
.y9{bottom:950.776500px;}
.y3a{bottom:953.949000px;}
.y68{bottom:956.400000px;}
.y16c{bottom:961.123500px;}
.y114{bottom:965.247000px;}
.y8{bottom:973.815000px;}
.y39{bottom:974.214000px;}
.y67{bottom:976.665000px;}
.y16b{bottom:980.490000px;}
.y113{bottom:985.512000px;}
.y38{bottom:994.477500px;}
.y7{bottom:996.057000px;}
.y66{bottom:996.928500px;}
.y16a{bottom:999.858000px;}
.y112{bottom:1005.775500px;}
.y37{bottom:1014.742500px;}
.y169{bottom:1019.226000px;}
.y111{bottom:1026.039000px;}
.y65{bottom:1026.159000px;}
.y36{bottom:1035.006000px;}
.y168{bottom:1038.592500px;}
.y6{bottom:1040.848500px;}
.y110{bottom:1046.304000px;}
.y35{bottom:1055.269500px;}
.y167{bottom:1057.960500px;}
.y64{bottom:1060.978500px;}
.y10f{bottom:1066.567500px;}
.y5{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y166{bottom:1077.327000px;}
.y10e{bottom:1086.832500px;}
.y33{bottom:1095.798000px;}
.y165{bottom:1096.695000px;}
.y4{bottom:1100.145000px;}
.y32{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.hf{height:6.635092px;}
.h9{height:25.508090px;}
.hb{height:33.112997px;}
.h11{height:33.821261px;}
.ha{height:34.199443px;}
.h1e{height:37.927872px;}
.h14{height:38.690733px;}
.h15{height:38.815008px;}
.h16{height:39.063556px;}
.h7{height:39.457760px;}
.h10{height:42.840113px;}
.he{height:45.094826px;}
.h17{height:45.420576px;}
.h1d{height:49.117939px;}
.h1c{height:50.247706px;}
.h8{height:50.731891px;}
.h2{height:50.930649px;}
.hc{height:55.830410px;}
.h4{height:56.009737px;}
.hd{height:56.368391px;}
.h3{height:61.613006px;}
.h6{height:64.127246px;}
.h19{height:64.376536px;}
.h1b{height:64.381156px;}
.h18{height:65.623936px;}
.h1a{height:89.694136px;}
.h5{height:100.495411px;}
.h12{height:892.914000px;}
.h13{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:197.527766px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:58.054042px;}
.x1a{left:112.561500px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x10{left:136.063500px;}
.x14{left:140.733435px;}
.x4{left:146.170500px;}
.x8{left:188.703000px;}
.x9{left:202.000500px;}
.x11{left:214.651500px;}
.x12{left:229.347000px;}
.x19{left:238.866000px;}
.x1d{left:251.667000px;}
.xc{left:253.650000px;}
.x1e{left:267.238500px;}
.xd{left:317.517000px;}
.xa{left:322.341000px;}
.xb{left:344.775000px;}
.x18{left:350.614500px;}
.x1b{left:390.549000px;}
.x1c{left:401.011500px;}
.x15{left:405.929520px;}
.xe{left:464.701500px;}
.xf{left:476.352000px;}
.x17{left:528.021000px;}
.x13{left:563.111160px;}
.x6{left:701.339982px;}
.x16{left:770.916450px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v8{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.104693pt;}
.v3{vertical-align:13.367200pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:22.500427pt;}
.v4{vertical-align:23.609227pt;}
.v7{vertical-align:45.004960pt;}
.lsa{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000137pt;}
.ls34{letter-spacing:0.000444pt;}
.ls31{letter-spacing:0.000577pt;}
.ls15{letter-spacing:0.001183pt;}
.ls13{letter-spacing:0.001349pt;}
.ls3a{letter-spacing:0.001381pt;}
.ls29{letter-spacing:0.001761pt;}
.ls28{letter-spacing:0.001965pt;}
.ls1c{letter-spacing:0.001990pt;}
.ls35{letter-spacing:0.002078pt;}
.ls3b{letter-spacing:0.002287pt;}
.ls2{letter-spacing:0.002375pt;}
.lsd{letter-spacing:0.002473pt;}
.ls39{letter-spacing:0.002517pt;}
.ls3f{letter-spacing:0.002551pt;}
.ls1d{letter-spacing:0.002630pt;}
.ls32{letter-spacing:0.002710pt;}
.ls9{letter-spacing:0.003100pt;}
.ls7{letter-spacing:0.003106pt;}
.ls21{letter-spacing:0.003239pt;}
.ls22{letter-spacing:0.003866pt;}
.ls24{letter-spacing:0.003942pt;}
.ls33{letter-spacing:0.004622pt;}
.ls36{letter-spacing:0.466280pt;}
.ls38{letter-spacing:0.467877pt;}
.ls3d{letter-spacing:0.469573pt;}
.ls37{letter-spacing:0.473132pt;}
.ls3c{letter-spacing:0.474838pt;}
.ls3e{letter-spacing:0.478097pt;}
.lsb{letter-spacing:1.133683pt;}
.ls6{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.665203pt;}
.ls8{letter-spacing:10.626533pt;}
.lsc{letter-spacing:11.370647pt;}
.ls10{letter-spacing:13.070931pt;}
.ls18{letter-spacing:13.124065pt;}
.ls16{letter-spacing:13.128671pt;}
.ls17{letter-spacing:13.177199pt;}
.ls30{letter-spacing:13.281067pt;}
.ls14{letter-spacing:13.283467pt;}
.ls1e{letter-spacing:13.283942pt;}
.ls1a{letter-spacing:13.442868pt;}
.ls23{letter-spacing:13.655404pt;}
.ls12{letter-spacing:13.814805pt;}
.ls11{letter-spacing:13.921073pt;}
.ls1{letter-spacing:15.942400pt;}
.lsf{letter-spacing:16.046428pt;}
.ls20{letter-spacing:17.481042pt;}
.ls1f{letter-spacing:17.534176pt;}
.ls19{letter-spacing:19.678923pt;}
.ls1b{letter-spacing:20.137735pt;}
.ls27{letter-spacing:21.306681pt;}
.ls25{letter-spacing:24.050165pt;}
.ls26{letter-spacing:29.542430pt;}
.ls0{letter-spacing:51.035733pt;}
.ls4{letter-spacing:62.432533pt;}
.ls5{letter-spacing:64.314231pt;}
.ls2a{letter-spacing:179.244091pt;}
.ls2b{letter-spacing:339.601211pt;}
.ls2c{letter-spacing:522.602491pt;}
.ls2d{letter-spacing:573.935824pt;}
.ls2e{letter-spacing:584.465317pt;}
.ls2f{letter-spacing:780.172624pt;}
.ws0{word-spacing:-20.194365pt;}
.ws23{word-spacing:-15.461955pt;}
.wsc4{word-spacing:-13.915853pt;}
.ws20{word-spacing:-13.283467pt;}
.ws5{word-spacing:-12.760670pt;}
.ws1d{word-spacing:-12.369595pt;}
.wsc7{word-spacing:-11.955200pt;}
.ws87{word-spacing:-10.715207pt;}
.ws1c{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws8f{word-spacing:-9.205504pt;}
.ws78{word-spacing:-3.453701pt;}
.ws40{word-spacing:-3.294300pt;}
.wsc9{word-spacing:-3.156173pt;}
.ws6c{word-spacing:-3.028630pt;}
.ws21{word-spacing:-2.975497pt;}
.ws5a{word-spacing:-2.922363pt;}
.ws53{word-spacing:-2.603559pt;}
.ws73{word-spacing:-2.550426pt;}
.wsd4{word-spacing:-2.534502pt;}
.ws22{word-spacing:-2.497292pt;}
.wsf3{word-spacing:-2.486682pt;}
.wsfe{word-spacing:-2.391040pt;}
.wsac{word-spacing:-2.391024pt;}
.ws44{word-spacing:-2.337890pt;}
.wsbe{word-spacing:-2.284756pt;}
.ws5c{word-spacing:-2.125355pt;}
.wsfd{word-spacing:-2.056294pt;}
.ws91{word-spacing:-2.019087pt;}
.ws29{word-spacing:-1.965953pt;}
.ws28{word-spacing:-1.912819pt;}
.wsab{word-spacing:-1.859685pt;}
.wsb{word-spacing:-1.806551pt;}
.ws92{word-spacing:-1.753418pt;}
.ws7f{word-spacing:-1.700284pt;}
.ws8{word-spacing:-1.696326pt;}
.ws80{word-spacing:-1.647150pt;}
.wsba{word-spacing:-1.594016pt;}
.wsfb{word-spacing:-1.578086pt;}
.ws9{word-spacing:-1.540882pt;}
.ws6d{word-spacing:-1.434614pt;}
.wsad{word-spacing:-1.381481pt;}
.ws10d{word-spacing:-1.338982pt;}
.ws60{word-spacing:-1.328347pt;}
.ws7b{word-spacing:-1.275213pt;}
.ws7e{word-spacing:-1.222079pt;}
.ws7{word-spacing:-1.175671pt;}
.wsb8{word-spacing:-1.168945pt;}
.wsd{word-spacing:-1.115811pt;}
.wsf9{word-spacing:-1.099878pt;}
.wsa9{word-spacing:-1.062677pt;}
.ws82{word-spacing:-0.956410pt;}
.wseb{word-spacing:-0.908595pt;}
.wsb9{word-spacing:-0.850142pt;}
.wsb1{word-spacing:-0.797008pt;}
.wsb6{word-spacing:-0.690740pt;}
.ws103{word-spacing:-0.669491pt;}
.ws68{word-spacing:-0.637606pt;}
.wse7{word-spacing:-0.621670pt;}
.ws26{word-spacing:-0.584473pt;}
.ws74{word-spacing:-0.531339pt;}
.ws55{word-spacing:-0.478205pt;}
.wsdc{word-spacing:-0.430387pt;}
.ws88{word-spacing:-0.405042pt;}
.ws2f{word-spacing:-0.371937pt;}
.ws8c{word-spacing:-0.331398pt;}
.ws58{word-spacing:-0.318803pt;}
.ws12{word-spacing:-0.265669pt;}
.ws100{word-spacing:-0.239104pt;}
.wsf{word-spacing:-0.212535pt;}
.wscb{word-spacing:-0.191283pt;}
.ws27{word-spacing:-0.159402pt;}
.wsda{word-spacing:-0.143462pt;}
.ws11{word-spacing:-0.106268pt;}
.wscf{word-spacing:-0.095642pt;}
.ws33{word-spacing:-0.053134pt;}
.wsce{word-spacing:-0.047821pt;}
.ws8a{word-spacing:-0.036822pt;}
.wsd3{word-spacing:-0.012305pt;}
.wse2{word-spacing:-0.011383pt;}
.wsc6{word-spacing:-0.009190pt;}
.wse9{word-spacing:-0.006281pt;}
.ws89{word-spacing:-0.005605pt;}
.ws10a{word-spacing:-0.003857pt;}
.wsd0{word-spacing:-0.003456pt;}
.ws8b{word-spacing:-0.002293pt;}
.ws1b{word-spacing:-0.001089pt;}
.ws4{word-spacing:-0.000718pt;}
.wsff{word-spacing:-0.000666pt;}
.ws2{word-spacing:-0.000229pt;}
.ws1{word-spacing:0.000000pt;}
.ws85{word-spacing:0.000894pt;}
.ws8e{word-spacing:0.036822pt;}
.wsc3{word-spacing:0.047821pt;}
.ws2b{word-spacing:0.053134pt;}
.wsde{word-spacing:0.095642pt;}
.ws15{word-spacing:0.106268pt;}
.wsd5{word-spacing:0.143462pt;}
.ws86{word-spacing:0.147288pt;}
.wsc{word-spacing:0.159402pt;}
.wsf8{word-spacing:0.191283pt;}
.ws1f{word-spacing:0.212535pt;}
.wsc2{word-spacing:0.239104pt;}
.ws3e{word-spacing:0.265669pt;}
.wsf2{word-spacing:0.286925pt;}
.wse{word-spacing:0.318803pt;}
.ws3d{word-spacing:0.371937pt;}
.wsd6{word-spacing:0.430387pt;}
.ws35{word-spacing:0.478205pt;}
.wsd9{word-spacing:0.478208pt;}
.ws10{word-spacing:0.531339pt;}
.ws93{word-spacing:0.584473pt;}
.wsb3{word-spacing:0.637606pt;}
.wsd8{word-spacing:0.669491pt;}
.ws37{word-spacing:0.690740pt;}
.ws46{word-spacing:0.743874pt;}
.wse5{word-spacing:0.765133pt;}
.ws31{word-spacing:0.797008pt;}
.ws32{word-spacing:0.850142pt;}
.wscd{word-spacing:0.860774pt;}
.ws64{word-spacing:0.903276pt;}
.wsaa{word-spacing:0.956410pt;}
.ws6e{word-spacing:1.009543pt;}
.ws4b{word-spacing:1.062677pt;}
.ws19{word-spacing:1.115811pt;}
.ws111{word-spacing:1.147699pt;}
.ws45{word-spacing:1.168945pt;}
.ws10e{word-spacing:1.195520pt;}
.ws90{word-spacing:1.275213pt;}
.wsa8{word-spacing:1.328347pt;}
.ws4a{word-spacing:1.381481pt;}
.ws107{word-spacing:1.386803pt;}
.ws7d{word-spacing:1.434614pt;}
.ws4e{word-spacing:1.487748pt;}
.ws59{word-spacing:1.540882pt;}
.wsf1{word-spacing:1.578086pt;}
.ws17{word-spacing:1.594016pt;}
.ws1a{word-spacing:1.647150pt;}
.wsc0{word-spacing:1.753418pt;}
.ws4d{word-spacing:1.859685pt;}
.ws10f{word-spacing:1.865011pt;}
.wsaf{word-spacing:1.912819pt;}
.wsc8{word-spacing:1.960653pt;}
.wsb0{word-spacing:1.965953pt;}
.wscc{word-spacing:2.008474pt;}
.ws99{word-spacing:2.019087pt;}
.ws3c{word-spacing:2.125355pt;}
.ws66{word-spacing:2.125360pt;}
.wse4{word-spacing:2.199757pt;}
.ws79{word-spacing:2.231622pt;}
.ws52{word-spacing:2.284756pt;}
.ws5b{word-spacing:2.337890pt;}
.wsa7{word-spacing:2.391024pt;}
.wsfc{word-spacing:2.391040pt;}
.wsdf{word-spacing:2.438861pt;}
.ws2a{word-spacing:2.444158pt;}
.ws38{word-spacing:2.497292pt;}
.ws18{word-spacing:2.603559pt;}
.ws7c{word-spacing:2.656693pt;}
.ws10c{word-spacing:2.677965pt;}
.ws3b{word-spacing:2.709827pt;}
.ws94{word-spacing:2.762961pt;}
.ws13{word-spacing:2.816095pt;}
.ws71{word-spacing:2.869229pt;}
.ws109{word-spacing:2.869248pt;}
.wsb5{word-spacing:2.922363pt;}
.wsdb{word-spacing:2.964890pt;}
.ws97{word-spacing:2.975497pt;}
.ws6b{word-spacing:3.028630pt;}
.ws9b{word-spacing:3.081764pt;}
.ws14{word-spacing:3.134898pt;}
.ws9e{word-spacing:3.188032pt;}
.ws57{word-spacing:3.241166pt;}
.ws48{word-spacing:3.294300pt;}
.ws105{word-spacing:3.299635pt;}
.ws70{word-spacing:3.347434pt;}
.ws3a{word-spacing:3.400567pt;}
.ws25{word-spacing:3.453701pt;}
.ws24{word-spacing:3.506835pt;}
.ws34{word-spacing:3.559969pt;}
.ws9c{word-spacing:3.613103pt;}
.ws108{word-spacing:3.634381pt;}
.wsbf{word-spacing:3.666237pt;}
.wsa0{word-spacing:3.719371pt;}
.ws5e{word-spacing:3.772505pt;}
.ws2c{word-spacing:3.825638pt;}
.wsd2{word-spacing:3.873485pt;}
.wsb7{word-spacing:3.931906pt;}
.wsca{word-spacing:4.016947pt;}
.wsb4{word-spacing:4.091308pt;}
.wsdd{word-spacing:4.112589pt;}
.ws41{word-spacing:4.197575pt;}
.ws104{word-spacing:4.208230pt;}
.ws6f{word-spacing:4.303843pt;}
.ws76{word-spacing:4.410111pt;}
.ws101{word-spacing:4.447334pt;}
.ws63{word-spacing:4.463245pt;}
.ws6a{word-spacing:4.516379pt;}
.ws67{word-spacing:4.569513pt;}
.wsa6{word-spacing:4.622646pt;}
.ws98{word-spacing:4.675780pt;}
.wsb2{word-spacing:4.728914pt;}
.wse3{word-spacing:4.779904pt;}
.wsc1{word-spacing:4.781175pt;}
.wse8{word-spacing:4.781730pt;}
.ws39{word-spacing:4.782048pt;}
.ws6{word-spacing:4.782080pt;}
.wsc5{word-spacing:4.782140pt;}
.ws102{word-spacing:4.925542pt;}
.ws5f{word-spacing:4.941450pt;}
.wsed{word-spacing:4.973363pt;}
.ws65{word-spacing:5.015850pt;}
.ws95{word-spacing:5.047717pt;}
.wse6{word-spacing:5.069005pt;}
.ws77{word-spacing:5.100851pt;}
.ws75{word-spacing:5.153985pt;}
.ws36{word-spacing:5.207119pt;}
.ws54{word-spacing:5.260253pt;}
.ws16{word-spacing:5.313387pt;}
.wsfa{word-spacing:5.403750pt;}
.ws10b{word-spacing:5.451571pt;}
.wsa{word-spacing:5.525922pt;}
.wse1{word-spacing:5.547213pt;}
.wsbc{word-spacing:5.579056pt;}
.wsbd{word-spacing:5.685324pt;}
.ws2d{word-spacing:5.791591pt;}
.ws49{word-spacing:5.844725pt;}
.ws9d{word-spacing:5.950993pt;}
.ws61{word-spacing:6.004127pt;}
.ws43{word-spacing:6.216662pt;}
.ws56{word-spacing:6.376064pt;}
.wse0{word-spacing:6.407987pt;}
.ws7a{word-spacing:6.429198pt;}
.ws5d{word-spacing:6.535466pt;}
.ws69{word-spacing:6.641733pt;}
.wsf5{word-spacing:6.790554pt;}
.wsf4{word-spacing:6.838374pt;}
.ws62{word-spacing:7.013670pt;}
.wsec{word-spacing:7.029658pt;}
.wsee{word-spacing:7.125299pt;}
.wsbb{word-spacing:7.173072pt;}
.wsef{word-spacing:7.173120pt;}
.wsea{word-spacing:7.316582pt;}
.ws96{word-spacing:7.545009pt;}
.ws30{word-spacing:7.598143pt;}
.ws2e{word-spacing:7.651277pt;}
.ws9f{word-spacing:7.810678pt;}
.wsa1{word-spacing:7.863812pt;}
.ws83{word-spacing:8.023214pt;}
.wsae{word-spacing:8.501419pt;}
.ws51{word-spacing:8.660820pt;}
.ws110{word-spacing:8.703386pt;}
.ws3f{word-spacing:8.767088pt;}
.ws4c{word-spacing:8.926490pt;}
.wsa4{word-spacing:9.192159pt;}
.ws9a{word-spacing:9.298427pt;}
.wsf0{word-spacing:9.851085pt;}
.ws50{word-spacing:10.201702pt;}
.wsa3{word-spacing:10.414238pt;}
.wsd7{word-spacing:10.711859pt;}
.ws81{word-spacing:10.786175pt;}
.wsa5{word-spacing:10.945577pt;}
.wsf6{word-spacing:11.237888pt;}
.ws72{word-spacing:12.008254pt;}
.ws42{word-spacing:12.645860pt;}
.ws4f{word-spacing:13.017797pt;}
.ws47{word-spacing:14.080475pt;}
.wsa2{word-spacing:14.133609pt;}
.ws106{word-spacing:15.111373pt;}
.wsd1{word-spacing:16.737280pt;}
.wsf7{word-spacing:38.830490pt;}
.ws8d{word-spacing:369.729863pt;}
.ws1e{word-spacing:849.846450pt;}
.ws84{word-spacing:1155.548506pt;}
._4{margin-left:-6.168883pt;}
._3{margin-left:-4.399514pt;}
._2{margin-left:-2.669136pt;}
._6{margin-left:-1.175671pt;}
._7{width:0.969929pt;}
._0{width:2.661136pt;}
._16{width:8.713954pt;}
._1e{width:9.783358pt;}
._a{width:11.271106pt;}
._12{width:12.493185pt;}
._15{width:13.920961pt;}
._f{width:14.877520pt;}
._1d{width:15.780758pt;}
._5{width:16.737280pt;}
._9{width:18.442806pt;}
._b{width:19.406410pt;}
._8{width:20.463265pt;}
._13{width:21.522071pt;}
._d{width:22.953830pt;}
._e{width:24.393799pt;}
._1a{width:25.410069pt;}
._1c{width:26.673201pt;}
._c{width:28.267217pt;}
._11{width:29.487173pt;}
._19{width:30.711375pt;}
._1f{width:32.538106pt;}
._14{width:34.101345pt;}
._33{width:35.872086pt;}
._18{width:37.353108pt;}
._20{width:38.893990pt;}
._35{width:39.918725pt;}
._30{width:41.285014pt;}
._32{width:42.453959pt;}
._34{width:45.329915pt;}
._31{width:46.824698pt;}
._1{width:48.360485pt;}
._1b{width:49.467630pt;}
._36{width:50.737869pt;}
._21{width:55.206087pt;}
._17{width:57.012639pt;}
._27{width:160.199437pt;}
._26{width:381.803482pt;}
._28{width:455.322277pt;}
._2e{width:465.571795pt;}
._2d{width:492.052600pt;}
._2b{width:513.667123pt;}
._2a{width:665.939156pt;}
._24{width:710.913729pt;}
._25{width:849.113527pt;}
._2c{width:897.647106pt;}
._23{width:1035.264009pt;}
._29{width:1246.345822pt;}
._2f{width:1840.520533pt;}
._10{width:1861.773867pt;}
._22{width:3155.795200pt;}
.fsb{font-size:28.639072pt;}
.fs9{font-size:31.880533pt;}
.fsa{font-size:36.822016pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:80.777458pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:3.044747pt;}
.y3{bottom:8.207950pt;}
.y11{bottom:12.578910pt;}
.y2{bottom:23.914454pt;}
.y30{bottom:56.693333pt;}
.y198{bottom:96.850667pt;}
.yac{bottom:100.282667pt;}
.y140{bottom:101.472000pt;}
.ya7{bottom:106.545333pt;}
.y90{bottom:108.724000pt;}
.y164{bottom:109.005333pt;}
.y63{bottom:109.441333pt;}
.yab{bottom:112.901333pt;}
.y197{bottom:114.066667pt;}
.y2f{bottom:119.414667pt;}
.y13d{bottom:119.484000pt;}
.y10d{bottom:123.306667pt;}
.ya6{bottom:124.558667pt;}
.yaa{bottom:125.521333pt;}
.y163{bottom:126.220000pt;}
.y8f{bottom:126.737333pt;}
.y62{bottom:127.454667pt;}
.ya9{bottom:129.378667pt;}
.y196{bottom:131.281333pt;}
.yca{bottom:132.024000pt;}
.y10c{bottom:136.962427pt;}
.y2e{bottom:137.426667pt;}
.y13c{bottom:137.496000pt;}
.ya5{bottom:142.570667pt;}
.y162{bottom:143.436000pt;}
.y8e{bottom:144.749333pt;}
.y61{bottom:145.466667pt;}
.y10b{bottom:148.213667pt;}
.y195{bottom:148.497333pt;}
.yc9{bottom:150.037333pt;}
.y108{bottom:153.838773pt;}
.y2d{bottom:155.438667pt;}
.y13b{bottom:155.509333pt;}
.y10a{bottom:159.464907pt;}
.ya4{bottom:160.584000pt;}
.y161{bottom:160.650667pt;}
.y60{bottom:163.478667pt;}
.y194{bottom:165.713333pt;}
.y109{bottom:170.716147pt;}
.y8d{bottom:170.732000pt;}
.y2c{bottom:173.452000pt;}
.y13a{bottom:173.521333pt;}
.yc8{bottom:176.018667pt;}
.y160{bottom:177.866667pt;}
.ya3{bottom:178.596000pt;}
.y5f{bottom:181.492000pt;}
.y193{bottom:182.928000pt;}
.y107{bottom:187.140760pt;}
.y2b{bottom:191.464000pt;}
.y139{bottom:191.534667pt;}
.y15f{bottom:195.082667pt;}
.ya2{bottom:196.608000pt;}
.y5e{bottom:199.504000pt;}
.y192{bottom:200.144000pt;}
.y8c{bottom:201.682667pt;}
.y106{bottom:203.322053pt;}
.y105{bottom:208.947160pt;}
.y2a{bottom:209.477333pt;}
.y138{bottom:209.546667pt;}
.y15e{bottom:212.297333pt;}
.ya1{bottom:214.621333pt;}
.y191{bottom:217.358667pt;}
.y5d{bottom:217.517333pt;}
.y8b{bottom:219.696000pt;}
.yc7{bottom:222.910667pt;}
.y29{bottom:227.489333pt;}
.y137{bottom:227.558667pt;}
.y15d{bottom:229.513333pt;}
.y104{bottom:230.997907pt;}
.ya0{bottom:232.633333pt;}
.y190{bottom:234.574667pt;}
.y5c{bottom:235.529333pt;}
.y8a{bottom:237.708000pt;}
.yc6{bottom:240.922667pt;}
.y28{bottom:245.501333pt;}
.y136{bottom:245.572000pt;}
.y15c{bottom:246.728000pt;}
.y103{bottom:247.179200pt;}
.y9f{bottom:250.646667pt;}
.y18f{bottom:251.790667pt;}
.y5b{bottom:253.541333pt;}
.y89{bottom:255.720000pt;}
.ya8{bottom:258.364000pt;}
.y102{bottom:258.430440pt;}
.y27{bottom:263.514667pt;}
.y135{bottom:263.584000pt;}
.y15b{bottom:263.944000pt;}
.yff{bottom:264.055547pt;}
.y9e{bottom:268.658667pt;}
.y18e{bottom:269.005333pt;}
.y101{bottom:269.681680pt;}
.y5a{bottom:271.554667pt;}
.y88{bottom:273.733333pt;}
.yc5{bottom:274.876000pt;}
.y13e{bottom:276.629333pt;}
.y100{bottom:280.931893pt;}
.y15a{bottom:281.160000pt;}
.y26{bottom:281.526667pt;}
.y134{bottom:281.597333pt;}
.y18d{bottom:286.221333pt;}
.y9d{bottom:286.670667pt;}
.y59{bottom:289.566667pt;}
.y87{bottom:291.745333pt;}
.yc4{bottom:292.888000pt;}
.yfe{bottom:297.113187pt;}
.y159{bottom:298.374667pt;}
.y25{bottom:299.540000pt;}
.y133{bottom:299.609333pt;}
.yfc{bottom:302.738293pt;}
.y18c{bottom:303.437333pt;}
.y9c{bottom:304.684000pt;}
.y58{bottom:307.580000pt;}
.yfd{bottom:308.364427pt;}
.y86{bottom:309.758667pt;}
.y158{bottom:315.590667pt;}
.y132{bottom:317.621333pt;}
.y18b{bottom:320.652000pt;}
.y9b{bottom:322.696000pt;}
.yfb{bottom:324.789040pt;}
.y24{bottom:325.522667pt;}
.y57{bottom:325.592000pt;}
.ydc{bottom:325.698667pt;}
.yc3{bottom:326.841333pt;}
.y85{bottom:327.770667pt;}
.y157{bottom:332.805333pt;}
.y131{bottom:335.634667pt;}
.y18a{bottom:337.868000pt;}
.y9a{bottom:340.709333pt;}
.yf8{bottom:340.970333pt;}
.y56{bottom:343.604000pt;}
.ydb{bottom:343.710667pt;}
.yc2{bottom:344.853333pt;}
.y84{bottom:345.782667pt;}
.yfa{bottom:346.595440pt;}
.y156{bottom:350.021333pt;}
.yf7{bottom:352.221573pt;}
.y130{bottom:353.646667pt;}
.y189{bottom:355.082667pt;}
.yf9{bottom:357.846680pt;}
.y99{bottom:358.721333pt;}
.y55{bottom:361.617333pt;}
.yda{bottom:361.722667pt;}
.yc1{bottom:362.865333pt;}
.y83{bottom:363.796000pt;}
.y155{bottom:367.237333pt;}
.y12f{bottom:371.660000pt;}
.y188{bottom:372.298667pt;}
.y98{bottom:376.733333pt;}
.y54{bottom:379.629333pt;}
.yf6{bottom:379.653080pt;}
.yd9{bottom:379.736000pt;}
.yc0{bottom:380.878667pt;}
.y82{bottom:381.808000pt;}
.y154{bottom:384.452000pt;}
.yf4{bottom:385.279213pt;}
.y187{bottom:389.514667pt;}
.y12e{bottom:389.672000pt;}
.yf5{bottom:390.904320pt;}
.y23{bottom:393.448000pt;}
.y97{bottom:394.746667pt;}
.y53{bottom:397.642667pt;}
.yd8{bottom:397.748000pt;}
.ybf{bottom:398.890667pt;}
.y81{bottom:399.821333pt;}
.y153{bottom:401.668000pt;}
.y186{bottom:406.729333pt;}
.yf3{bottom:407.329960pt;}
.y12d{bottom:407.684000pt;}
.y22{bottom:411.460000pt;}
.y96{bottom:412.758667pt;}
.y52{bottom:415.654667pt;}
.yd7{bottom:415.761333pt;}
.ybe{bottom:416.904000pt;}
.y80{bottom:417.833333pt;}
.y152{bottom:418.882667pt;}
.yf2{bottom:423.510227pt;}
.y185{bottom:423.945333pt;}
.y12c{bottom:425.697333pt;}
.y95{bottom:430.772000pt;}
.y51{bottom:433.666667pt;}
.yd6{bottom:433.773333pt;}
.ybd{bottom:434.916000pt;}
.y7f{bottom:435.845333pt;}
.y151{bottom:436.098667pt;}
.yf1{bottom:440.243867pt;}
.y184{bottom:441.160000pt;}
.y12b{bottom:443.709333pt;}
.y21{bottom:445.413333pt;}
.y94{bottom:448.784000pt;}
.y50{bottom:451.680000pt;}
.yd5{bottom:451.785333pt;}
.ybc{bottom:452.928000pt;}
.y150{bottom:453.314667pt;}
.y7e{bottom:453.858667pt;}
.yf0{bottom:456.977507pt;}
.y183{bottom:458.376000pt;}
.y12a{bottom:461.722667pt;}
.y20{bottom:463.425333pt;}
.y93{bottom:466.796000pt;}
.y4f{bottom:469.692000pt;}
.yd4{bottom:469.798667pt;}
.y14f{bottom:470.529333pt;}
.ybb{bottom:470.941333pt;}
.y7d{bottom:471.870667pt;}
.yef{bottom:473.711147pt;}
.y13f{bottom:474.766667pt;}
.y182{bottom:475.592000pt;}
.y129{bottom:479.734667pt;}
.y1f{bottom:481.437333pt;}
.y92{bottom:484.809333pt;}
.y4e{bottom:487.704000pt;}
.y14e{bottom:487.745333pt;}
.yd3{bottom:487.810667pt;}
.y7c{bottom:489.884000pt;}
.yee{bottom:490.444787pt;}
.y181{bottom:492.806667pt;}
.y128{bottom:497.746667pt;}
.y1e{bottom:499.450667pt;}
.yba{bottom:504.893333pt;}
.y14d{bottom:504.960000pt;}
.y4d{bottom:505.717333pt;}
.yd2{bottom:505.824000pt;}
.yed{bottom:507.178427pt;}
.y7b{bottom:507.896000pt;}
.y180{bottom:510.022667pt;}
.y91{bottom:510.792000pt;}
.yec{bottom:512.527360pt;}
.y127{bottom:515.760000pt;}
.y1d{bottom:517.462667pt;}
.y14c{bottom:522.176000pt;}
.yb9{bottom:522.906667pt;}
.y4c{bottom:523.729333pt;}
.yd1{bottom:523.836000pt;}
.y7a{bottom:525.908000pt;}
.y17f{bottom:527.237333pt;}
.y126{bottom:533.772000pt;}
.yeb{bottom:534.609933pt;}
.y1c{bottom:535.474667pt;}
.y14b{bottom:539.392000pt;}
.ye8{bottom:540.236067pt;}
.y4b{bottom:541.742667pt;}
.yd0{bottom:541.848000pt;}
.y79{bottom:543.921333pt;}
.y17e{bottom:544.453333pt;}
.ye6{bottom:545.585000pt;}
.yea{bottom:545.861173pt;}
.y19b{bottom:549.678667pt;}
.ye7{bottom:551.487307pt;}
.y125{bottom:551.785333pt;}
.y1b{bottom:553.488000pt;}
.y14a{bottom:556.606667pt;}
.yb8{bottom:556.858667pt;}
.ye9{bottom:557.112413pt;}
.y4a{bottom:559.754667pt;}
.ycf{bottom:559.861333pt;}
.y17d{bottom:561.669333pt;}
.y78{bottom:561.933333pt;}
.y19a{bottom:566.893333pt;}
.y124{bottom:569.797333pt;}
.y1a{bottom:571.500000pt;}
.ye5{bottom:573.293707pt;}
.y149{bottom:573.822667pt;}
.yb7{bottom:574.872000pt;}
.y49{bottom:577.766667pt;}
.yce{bottom:577.873333pt;}
.y17c{bottom:578.884000pt;}
.y77{bottom:579.945333pt;}
.y199{bottom:584.109333pt;}
.ye4{bottom:584.544947pt;}
.y123{bottom:587.809333pt;}
.y19{bottom:589.513333pt;}
.ye1{bottom:590.170053pt;}
.y148{bottom:591.038667pt;}
.yb6{bottom:592.884000pt;}
.y48{bottom:595.780000pt;}
.ye3{bottom:595.795160pt;}
.ycd{bottom:595.886667pt;}
.y17b{bottom:596.100000pt;}
.y76{bottom:597.958667pt;}
.y122{bottom:605.822667pt;}
.ye2{bottom:607.046400pt;}
.y18{bottom:607.525333pt;}
.y147{bottom:608.253333pt;}
.yb5{bottom:610.896000pt;}
.y17a{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y75{bottom:615.970667pt;}
.ycc{bottom:621.869333pt;}
.ye0{bottom:623.472040pt;}
.y121{bottom:623.834667pt;}
.y17{bottom:625.537333pt;}
.yb4{bottom:628.909333pt;}
.y179{bottom:630.530667pt;}
.y46{bottom:631.805333pt;}
.y146{bottom:633.438667pt;}
.y74{bottom:633.984000pt;}
.ycb{bottom:636.878667pt;}
.ydf{bottom:639.897680pt;}
.y120{bottom:641.846667pt;}
.y16{bottom:643.550667pt;}
.yb3{bottom:646.921333pt;}
.y178{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.y73{bottom:651.996000pt;}
.y11f{bottom:659.860000pt;}
.y15{bottom:661.562667pt;}
.yde{bottom:664.553333pt;}
.yb2{bottom:664.934667pt;}
.y177{bottom:664.961333pt;}
.y44{bottom:667.829333pt;}
.y145{bottom:668.508000pt;}
.y72{bottom:670.008000pt;}
.y11e{bottom:677.872000pt;}
.y14{bottom:679.576000pt;}
.y176{bottom:682.177333pt;}
.yb1{bottom:682.946667pt;}
.y43{bottom:685.842667pt;}
.y71{bottom:688.021333pt;}
.y144{bottom:689.986667pt;}
.y11d{bottom:695.885333pt;}
.y13{bottom:697.588000pt;}
.y175{bottom:699.392000pt;}
.yb0{bottom:700.958667pt;}
.y143{bottom:703.496000pt;}
.y42{bottom:703.854667pt;}
.y70{bottom:706.033333pt;}
.ydd{bottom:709.729333pt;}
.y11c{bottom:713.897333pt;}
.y174{bottom:716.608000pt;}
.yaf{bottom:718.972000pt;}
.y41{bottom:721.868000pt;}
.y6f{bottom:724.046667pt;}
.y142{bottom:724.976000pt;}
.y10{bottom:729.083968pt;}
.yf{bottom:729.765333pt;}
.y11b{bottom:731.909333pt;}
.y173{bottom:733.824000pt;}
.yae{bottom:736.984000pt;}
.y40{bottom:739.880000pt;}
.y6e{bottom:742.058667pt;}
.y141{bottom:746.456000pt;}
.y11a{bottom:749.922667pt;}
.y172{bottom:751.038667pt;}
.y3f{bottom:757.892000pt;}
.y6d{bottom:760.070667pt;}
.yad{bottom:762.966667pt;}
.ye{bottom:764.436000pt;}
.y119{bottom:767.934667pt;}
.y171{bottom:768.254667pt;}
.y3e{bottom:775.905333pt;}
.y6c{bottom:778.084000pt;}
.yd{bottom:784.916000pt;}
.y170{bottom:785.469333pt;}
.y118{bottom:785.948000pt;}
.y3d{bottom:793.917333pt;}
.y6b{bottom:796.096000pt;}
.yc{bottom:801.056000pt;}
.y16f{bottom:802.685333pt;}
.y117{bottom:803.960000pt;}
.y3c{bottom:811.930667pt;}
.y6a{bottom:814.109333pt;}
.yb{bottom:817.194667pt;}
.y16e{bottom:819.901333pt;}
.y116{bottom:821.972000pt;}
.y3b{bottom:829.942667pt;}
.y69{bottom:832.121333pt;}
.ya{bottom:833.334667pt;}
.y16d{bottom:837.116000pt;}
.y115{bottom:839.985333pt;}
.y9{bottom:845.134667pt;}
.y3a{bottom:847.954667pt;}
.y68{bottom:850.133333pt;}
.y16c{bottom:854.332000pt;}
.y114{bottom:857.997333pt;}
.y8{bottom:865.613333pt;}
.y39{bottom:865.968000pt;}
.y67{bottom:868.146667pt;}
.y16b{bottom:871.546667pt;}
.y113{bottom:876.010667pt;}
.y38{bottom:883.980000pt;}
.y7{bottom:885.384000pt;}
.y66{bottom:886.158667pt;}
.y16a{bottom:888.762667pt;}
.y112{bottom:894.022667pt;}
.y37{bottom:901.993333pt;}
.y169{bottom:905.978667pt;}
.y111{bottom:912.034667pt;}
.y65{bottom:912.141333pt;}
.y36{bottom:920.005333pt;}
.y168{bottom:923.193333pt;}
.y6{bottom:925.198667pt;}
.y110{bottom:930.048000pt;}
.y35{bottom:938.017333pt;}
.y167{bottom:940.409333pt;}
.y64{bottom:943.092000pt;}
.y10f{bottom:948.060000pt;}
.y5{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y166{bottom:957.624000pt;}
.y10e{bottom:966.073333pt;}
.y33{bottom:974.042667pt;}
.y165{bottom:974.840000pt;}
.y4{bottom:977.906667pt;}
.y32{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.hf{height:5.897859pt;}
.h9{height:22.673858pt;}
.hb{height:29.433775pt;}
.h11{height:30.063343pt;}
.ha{height:30.399505pt;}
.h1e{height:33.713664pt;}
.h14{height:34.391763pt;}
.h15{height:34.502229pt;}
.h16{height:34.723161pt;}
.h7{height:35.073565pt;}
.h10{height:38.080100pt;}
.he{height:40.084290pt;}
.h17{height:40.373845pt;}
.h1d{height:43.660390pt;}
.h1c{height:44.664627pt;}
.h8{height:45.095014pt;}
.h2{height:45.271688pt;}
.hc{height:49.627031pt;}
.h4{height:49.786433pt;}
.hd{height:50.105236pt;}
.h3{height:54.767117pt;}
.h6{height:57.001997pt;}
.h19{height:57.223588pt;}
.h1b{height:57.227694pt;}
.h18{height:58.332388pt;}
.h1a{height:79.728121pt;}
.h5{height:89.329254pt;}
.h12{height:793.701333pt;}
.h13{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:175.580236pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:51.603593pt;}
.x1a{left:100.054667pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x10{left:120.945333pt;}
.x14{left:125.096387pt;}
.x4{left:129.929333pt;}
.x8{left:167.736000pt;}
.x9{left:179.556000pt;}
.x11{left:190.801333pt;}
.x12{left:203.864000pt;}
.x19{left:212.325333pt;}
.x1d{left:223.704000pt;}
.xc{left:225.466667pt;}
.x1e{left:237.545333pt;}
.xd{left:282.237333pt;}
.xa{left:286.525333pt;}
.xb{left:306.466667pt;}
.x18{left:311.657333pt;}
.x1b{left:347.154667pt;}
.x1c{left:356.454667pt;}
.x15{left:360.826240pt;}
.xe{left:413.068000pt;}
.xf{left:423.424000pt;}
.x17{left:469.352000pt;}
.x13{left:500.543253pt;}
.x6{left:623.413317pt;}
.x16{left:685.259067pt;}
}




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