
    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_6c4f01fb684cd3282ada3f85.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e7dceac7f18edcbdf004094c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_ece03606b09484b872a88912.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.431000;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_41edca2ae9f4fdd71ec6bdae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_311022e0586378da1e2d1b1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_7fd9470becb8c1f624b06066.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_d656ab65b8d5120368b621dc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ffe90255074005541b6d8a54.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_b9a8cc981d32991fd4555593.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.710000;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_ff9ae7bcdce88e8ae83d91ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.792000;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_92fdb08721eedc2e56c4f580.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_58bbe3f906f9cc16bd5e5c01.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.683000;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_ea326e3c3fe964a233470a0d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;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:ffe;src:url('chunks/assets/font_b9fc52bb3677c39ff29cdd50.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_42dbd1737e494ef42c3adb11.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;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:ff10;src:url('chunks/assets/font_f794b533b5b071a6486825f6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675000;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:ff11;src:url('chunks/assets/font_7c49b0474777b1b8b81c1e02.woff2')format("woff");}.ff11{font-family:ff11;line-height:2.243000;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:ff12;src:url('chunks/assets/font_9e2fb10fd14d759b872b9257.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.685000;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;}
.mb{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m4{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);}
.m0{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);}
.m1e{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);}
.m7{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);}
.m12{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.md{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);}
.m26{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);}
.m24{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);}
.m17{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);}
.m10{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);}
.m25{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);}
.m6{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m11{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);}
.m19{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);}
.m9{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);}
.mf{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);}
.m2{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);}
.m15{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);}
.m14{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.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);}
.m5{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);}
.m22{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);}
.m13{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);}
.m20{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);}
.m1c{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);}
.m1d{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m27{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);}
.m1b{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);}
.ma{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-35.868000px;}
.v8{vertical-align:-14.940000px;}
.v2{vertical-align:-8.964000px;}
.v4{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:24.330000px;}
.v6{vertical-align:28.572000px;}
.v5{vertical-align:34.584000px;}
.va{vertical-align:40.158000px;}
.v9{vertical-align:50.808000px;}
.ls8{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.000312px;}
.ls33{letter-spacing:0.000648px;}
.ls4c{letter-spacing:0.001908px;}
.ls3e{letter-spacing:0.002245px;}
.ls22{letter-spacing:0.002685px;}
.ls34{letter-spacing:0.002793px;}
.lsc{letter-spacing:0.003269px;}
.ls2f{letter-spacing:0.003954px;}
.ls21{letter-spacing:0.004200px;}
.ls50{letter-spacing:0.004893px;}
.ls48{letter-spacing:0.005023px;}
.ls2a{letter-spacing:0.005602px;}
.ls35{letter-spacing:0.006993px;}
.ls54{letter-spacing:0.458387px;}
.ls2b{letter-spacing:1.006868px;}
.ls15{letter-spacing:1.012868px;}
.lsa{letter-spacing:2.964877px;}
.ls53{letter-spacing:2.982648px;}
.ls27{letter-spacing:2.984525px;}
.ls51{letter-spacing:2.986181px;}
.ls32{letter-spacing:2.988648px;}
.ls37{letter-spacing:2.988775px;}
.lsb{letter-spacing:2.988780px;}
.ls36{letter-spacing:3.441652px;}
.ls7{letter-spacing:3.584074px;}
.ls25{letter-spacing:3.994868px;}
.ls13{letter-spacing:4.000868px;}
.ls4d{letter-spacing:4.275333px;}
.ls12{letter-spacing:4.688646px;}
.ls14{letter-spacing:4.694646px;}
.ls1{letter-spacing:5.123296px;}
.ls5{letter-spacing:5.161426px;}
.ls2{letter-spacing:5.164349px;}
.ls3{letter-spacing:5.166516px;}
.ls4{letter-spacing:5.167426px;}
.ls0{letter-spacing:5.168944px;}
.ls3d{letter-spacing:6.433866px;}
.ls42{letter-spacing:8.298312px;}
.ls40{letter-spacing:8.304312px;}
.ls3b{letter-spacing:8.752065px;}
.ls30{letter-spacing:9.426479px;}
.ls20{letter-spacing:9.958200px;}
.ls24{letter-spacing:9.962338px;}
.ls3f{letter-spacing:9.963269px;}
.ls1c{letter-spacing:9.964200px;}
.ls57{letter-spacing:13.278538px;}
.ls56{letter-spacing:13.280338px;}
.ls38{letter-spacing:13.281269px;}
.ls4a{letter-spacing:13.282200px;}
.ls39{letter-spacing:13.282896px;}
.ls1f{letter-spacing:13.284538px;}
.ls1e{letter-spacing:13.286685px;}
.ls6{letter-spacing:14.942100px;}
.ls29{letter-spacing:14.942685px;}
.lsd{letter-spacing:14.943269px;}
.ls19{letter-spacing:14.948685px;}
.ls49{letter-spacing:16.268525px;}
.ls55{letter-spacing:16.274525px;}
.ls52{letter-spacing:16.600618px;}
.ls45{letter-spacing:16.601023px;}
.ls1b{letter-spacing:16.602538px;}
.ls28{letter-spacing:16.604338px;}
.ls10{letter-spacing:16.604400px;}
.ls1d{letter-spacing:16.604685px;}
.ls3a{letter-spacing:16.604793px;}
.ls23{letter-spacing:16.605269px;}
.ls46{letter-spacing:16.607607px;}
.ls9{letter-spacing:17.928017px;}
.ls4b{letter-spacing:17.930525px;}
.ls11{letter-spacing:19.586525px;}
.ls31{letter-spacing:19.590648px;}
.lsf{letter-spacing:19.592525px;}
.ls4f{letter-spacing:20.036338px;}
.ls4e{letter-spacing:20.038618px;}
.ls2c{letter-spacing:21.293915px;}
.ls47{letter-spacing:21.463690px;}
.ls1a{letter-spacing:23.125690px;}
.ls2e{letter-spacing:23.238052px;}
.ls44{letter-spacing:24.090538px;}
.lse{letter-spacing:25.360065px;}
.ls3c{letter-spacing:26.566677px;}
.ls43{letter-spacing:27.078648px;}
.ls2d{letter-spacing:28.144065px;}
.ls18{letter-spacing:76.376338px;}
.ls16{letter-spacing:1116.368338px;}
.ls17{letter-spacing:1144.940338px;}
.ls26{letter-spacing:1258.238338px;}
.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;}
}
.ws6d{word-spacing:-47.324343px;}
.ws63{word-spacing:-43.217759px;}
.ws62{word-spacing:-43.191683px;}
.ws56{word-spacing:-43.171200px;}
.ws50{word-spacing:-43.157983px;}
.ws65{word-spacing:-43.149330px;}
.ws4f{word-spacing:-38.937826px;}
.ws64{word-spacing:-31.633157px;}
.ws2d{word-spacing:-29.015076px;}
.ws94{word-spacing:-28.955301px;}
.ws5a{word-spacing:-26.552136px;}
.ws59{word-spacing:-26.546136px;}
.ws2{word-spacing:-25.823100px;}
.ws4{word-spacing:-25.781746px;}
.ws7c{word-spacing:-22.336781px;}
.ws58{word-spacing:-22.324786px;}
.ws1{word-spacing:-20.658450px;}
.ws3f{word-spacing:-14.943900px;}
.ws25{word-spacing:-2.988780px;}
.ws6e{word-spacing:-2.630126px;}
.ws88{word-spacing:-2.510575px;}
.ws4e{word-spacing:-2.450800px;}
.ws3c{word-spacing:-2.092146px;}
.ws4a{word-spacing:-2.032370px;}
.ws6b{word-spacing:-1.793268px;}
.ws31{word-spacing:-1.673717px;}
.ws97{word-spacing:-1.666676px;}
.ws99{word-spacing:-1.662575px;}
.ws98{word-spacing:-1.660775px;}
.ws36{word-spacing:-1.554166px;}
.ws83{word-spacing:-1.434614px;}
.ws28{word-spacing:-1.374839px;}
.ws34{word-spacing:-1.255288px;}
.ws1f{word-spacing:-1.075961px;}
.ws40{word-spacing:-1.016185px;}
.ws1b{word-spacing:-0.896634px;}
.ws44{word-spacing:-0.836858px;}
.ws7d{word-spacing:-0.777083px;}
.ws48{word-spacing:-0.657532px;}
.ws5c{word-spacing:-0.597756px;}
.ws2f{word-spacing:-0.418429px;}
.ws12{word-spacing:-0.358654px;}
.ws16{word-spacing:-0.298878px;}
.ws32{word-spacing:-0.239102px;}
.wsc{word-spacing:-0.179327px;}
.wsd{word-spacing:-0.119551px;}
.ws9c{word-spacing:-0.071731px;}
.ws9{word-spacing:-0.059776px;}
.wsb{word-spacing:-0.057385px;}
.ws52{word-spacing:-0.041843px;}
.ws22{word-spacing:-0.016097px;}
.ws66{word-spacing:-0.005546px;}
.ws90{word-spacing:-0.004909px;}
.ws2c{word-spacing:-0.002232px;}
.ws3b{word-spacing:-0.000683px;}
.wsa{word-spacing:0.000000px;}
.ws24{word-spacing:0.020780px;}
.ws2b{word-spacing:0.059776px;}
.ws14{word-spacing:0.119551px;}
.ws0{word-spacing:0.165268px;}
.ws10{word-spacing:0.179327px;}
.ws11{word-spacing:0.239102px;}
.wsf{word-spacing:0.298878px;}
.ws41{word-spacing:0.358654px;}
.ws26{word-spacing:0.418429px;}
.ws86{word-spacing:0.478205px;}
.ws53{word-spacing:0.597756px;}
.wse{word-spacing:0.657532px;}
.ws68{word-spacing:0.777083px;}
.ws6c{word-spacing:0.836858px;}
.ws35{word-spacing:0.896634px;}
.ws73{word-spacing:0.956410px;}
.ws1c{word-spacing:1.075961px;}
.ws33{word-spacing:1.195512px;}
.ws19{word-spacing:1.315063px;}
.ws42{word-spacing:1.374839px;}
.ws67{word-spacing:1.434614px;}
.ws7f{word-spacing:1.494390px;}
.ws46{word-spacing:1.554166px;}
.ws74{word-spacing:1.613941px;}
.ws85{word-spacing:1.673717px;}
.ws39{word-spacing:1.733492px;}
.ws1d{word-spacing:1.912819px;}
.ws71{word-spacing:2.032370px;}
.ws20{word-spacing:2.151922px;}
.ws75{word-spacing:2.211697px;}
.ws9b{word-spacing:2.271473px;}
.ws1e{word-spacing:2.510575px;}
.ws76{word-spacing:2.689902px;}
.ws27{word-spacing:2.809453px;}
.ws23{word-spacing:2.988780px;}
.ws49{word-spacing:3.108331px;}
.ws47{word-spacing:3.168107px;}
.ws79{word-spacing:3.347434px;}
.ws84{word-spacing:3.466985px;}
.ws7a{word-spacing:3.526760px;}
.ws8e{word-spacing:3.646312px;}
.ws80{word-spacing:3.825638px;}
.ws7b{word-spacing:3.885414px;}
.ws3d{word-spacing:4.064741px;}
.ws38{word-spacing:4.483170px;}
.ws29{word-spacing:4.542946px;}
.ws1a{word-spacing:4.602721px;}
.ws78{word-spacing:4.722272px;}
.ws21{word-spacing:4.734259px;}
.ws37{word-spacing:5.080926px;}
.ws15{word-spacing:5.200477px;}
.ws89{word-spacing:5.260253px;}
.ws30{word-spacing:5.379804px;}
.ws18{word-spacing:5.439580px;}
.ws3e{word-spacing:5.678682px;}
.ws69{word-spacing:6.336214px;}
.ws9a{word-spacing:6.455765px;}
.ws9e{word-spacing:6.574867px;}
.ws2a{word-spacing:6.694867px;}
.ws8f{word-spacing:7.113296px;}
.ws9f{word-spacing:7.471950px;}
.ws13{word-spacing:8.189257px;}
.ws6a{word-spacing:8.308808px;}
.ws5f{word-spacing:9.145728px;}
.ws7{word-spacing:10.246591px;}
.ws6{word-spacing:10.277686px;}
.ws3{word-spacing:10.460508px;}
.ws5{word-spacing:11.775334px;}
.ws87{word-spacing:12.373549px;}
.ws57{word-spacing:13.210408px;}
.ws82{word-spacing:13.449510px;}
.ws61{word-spacing:13.628837px;}
.ws9d{word-spacing:14.405920px;}
.ws2e{word-spacing:14.434606px;}
.ws77{word-spacing:14.485167px;}
.ws43{word-spacing:14.557186px;}
.ws8a{word-spacing:14.704798px;}
.ws6f{word-spacing:14.824349px;}
.ws8{word-spacing:14.884124px;}
.ws81{word-spacing:14.942400px;}
.ws3a{word-spacing:14.947091px;}
.ws55{word-spacing:15.003676px;}
.ws4b{word-spacing:15.063451px;}
.ws70{word-spacing:15.123227px;}
.ws72{word-spacing:15.242778px;}
.ws5e{word-spacing:15.278746px;}
.ws54{word-spacing:16.258391px;}
.ws7e{word-spacing:16.378514px;}
.ws91{word-spacing:16.438290px;}
.ws51{word-spacing:16.524415px;}
.ws5b{word-spacing:16.530415px;}
.ws4c{word-spacing:16.557841px;}
.ws45{word-spacing:16.824510px;}
.ws8c{word-spacing:17.095822px;}
.ws4d{word-spacing:17.861069px;}
.ws92{word-spacing:18.709763px;}
.ws5d{word-spacing:19.307519px;}
.ws93{word-spacing:19.550547px;}
.ws95{word-spacing:30.820299px;}
.ws8b{word-spacing:31.979946px;}
.ws8d{word-spacing:58.545904px;}
.ws96{word-spacing:59.712592px;}
.ws17{word-spacing:71.659469px;}
.ws60{word-spacing:673.307952px;}
._2c{margin-left:-24.448220px;}
._2e{margin-left:-19.606397px;}
._1b{margin-left:-10.573103px;}
._4{margin-left:-9.095710px;}
._35{margin-left:-7.651277px;}
._15{margin-left:-6.635092px;}
._6{margin-left:-4.782048px;}
._10{margin-left:-3.745846px;}
._7{margin-left:-2.391024px;}
._3{margin-left:-1.082228px;}
._1{width:1.735310px;}
._5{width:3.557845px;}
._0{width:4.960025px;}
._2{width:6.148510px;}
._18{width:9.921556px;}
._12{width:12.552876px;}
._d{width:14.113309px;}
._11{width:16.139412px;}
._a{width:17.992456px;}
._9{width:19.427070px;}
._30{width:20.562806px;}
._8{width:22.057196px;}
._13{width:23.612208px;}
._c{width:25.105752px;}
._2f{width:26.221471px;}
._b{width:27.317449px;}
._16{width:29.887800px;}
._2d{width:31.675980px;}
._f{width:32.816804px;}
._e{width:34.550297px;}
._34{width:37.605120px;}
._1a{width:43.170538px;}
._36{width:46.624968px;}
._33{width:52.961182px;}
._31{width:58.570653px;}
._14{width:59.775600px;}
._32{width:60.963901px;}
._17{width:71.731200px;}
._29{width:83.566289px;}
._27{width:103.531339px;}
._20{width:106.759222px;}
._22{width:120.148956px;}
._1e{width:173.229689px;}
._1c{width:205.634331px;}
._24{width:216.447448px;}
._28{width:250.220662px;}
._25{width:256.138446px;}
._21{width:272.756063px;}
._26{width:332.644947px;}
._23{width:335.879096px;}
._2a{width:339.943837px;}
._1f{width:428.059339px;}
._1d{width:612.699900px;}
._19{width:1068.819493px;}
._2b{width:1934.165462px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs5{font-size:57.384600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:82.633800px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5c{bottom:63.168000px;}
.y2b{bottom:108.000000px;}
.y2a{bottom:122.944500px;}
.y5b{bottom:124.363500px;}
.y29{bottom:128.658000px;}
.y8b{bottom:129.333000px;}
.yf7{bottom:132.583500px;}
.y5a{bottom:140.727000px;}
.y28{bottom:148.123500px;}
.yde{bottom:148.947000px;}
.y12c{bottom:154.326000px;}
.y1a3{bottom:155.152500px;}
.y59{bottom:157.090500px;}
.y8a{bottom:158.865000px;}
.y27{bottom:164.487000px;}
.ydd{bottom:165.310500px;}
.y58{bottom:173.454000px;}
.yf6{bottom:173.529000px;}
.y89{bottom:175.230000px;}
.y1a2{bottom:177.949500px;}
.y26{bottom:180.850500px;}
.y152{bottom:181.674000px;}
.y57{bottom:189.817500px;}
.ydc{bottom:189.892500px;}
.y12b{bottom:190.566000px;}
.y88{bottom:191.593500px;}
.y1cb{bottom:193.723500px;}
.y151{bottom:198.037500px;}
.y1a1{bottom:200.745000px;}
.y25{bottom:205.434000px;}
.yb6{bottom:206.182500px;}
.ydb{bottom:206.256000px;}
.y12a{bottom:206.929500px;}
.y1ca{bottom:210.087000px;}
.y179{bottom:214.401000px;}
.y87{bottom:216.175500px;}
.y24{bottom:221.797500px;}
.yf5{bottom:222.619500px;}
.y56{bottom:223.423500px;}
.y1c9{bottom:226.450500px;}
.y178{bottom:230.764500px;}
.yda{bottom:230.839500px;}
.y128{bottom:231.270000px;}
.y1a0{bottom:231.534000px;}
.yb5{bottom:236.145000px;}
.y23{bottom:238.161000px;}
.y150{bottom:238.984500px;}
.y129{bottom:239.907000px;}
.y86{bottom:240.759000px;}
.y1c8{bottom:242.814000px;}
.yd9{bottom:247.203000px;}
.y14f{bottom:255.348000px;}
.y85{bottom:257.122500px;}
.y127{bottom:258.619500px;}
.yf4{bottom:259.339500px;}
.y177{bottom:261.898500px;}
.y22{bottom:262.743000px;}
.yd8{bottom:263.566500px;}
.y19f{bottom:266.716500px;}
.y55{bottom:269.217000px;}
.y1c7{bottom:271.545000px;}
.y14e{bottom:271.711500px;}
.yb4{bottom:271.818000px;}
.y84{bottom:273.486000px;}
.y21{bottom:279.106500px;}
.yd7{bottom:279.930000px;}
.y126{bottom:283.203000px;}
.y14d{bottom:288.075000px;}
.yb3{bottom:288.181500px;}
.y83{bottom:289.849500px;}
.y20{bottom:295.471500px;}
.y19e{bottom:297.505500px;}
.y125{bottom:299.566500px;}
.y176{bottom:301.515000px;}
.yd6{bottom:304.513500px;}
.yb2{bottom:304.545000px;}
.y82{bottom:306.213000px;}
.yf3{bottom:306.444000px;}
.y1c6{bottom:308.178000px;}
.y54{bottom:309.349500px;}
.y1f{bottom:311.835000px;}
.y14c{bottom:312.657000px;}
.y1eb{bottom:313.077000px;}
.y175{bottom:317.878500px;}
.y19d{bottom:320.301000px;}
.yd5{bottom:320.877000px;}
.yb1{bottom:320.908500px;}
.y81{bottom:322.576500px;}
.yf2{bottom:322.807500px;}
.y1e{bottom:328.198500px;}
.y14b{bottom:329.020500px;}
.y1ea{bottom:329.440500px;}
.y124{bottom:329.529000px;}
.y1c5{bottom:332.760000px;}
.y174{bottom:334.242000px;}
.yd4{bottom:337.240500px;}
.yb0{bottom:337.272000px;}
.y19c{bottom:343.098000px;}
.y1d{bottom:344.562000px;}
.y1e9{bottom:345.804000px;}
.y80{bottom:347.160000px;}
.yf1{bottom:347.391000px;}
.y1c4{bottom:349.125000px;}
.yd3{bottom:353.604000px;}
.yaf{bottom:353.635500px;}
.y173{bottom:358.824000px;}
.y1c{bottom:360.925500px;}
.y53{bottom:361.045500px;}
.y1e8{bottom:362.167500px;}
.y7f{bottom:363.523500px;}
.y1c3{bottom:365.488500px;}
.y19b{bottom:365.895000px;}
.y14a{bottom:369.967500px;}
.y123{bottom:374.286000px;}
.y172{bottom:375.187500px;}
.y1b{bottom:377.289000px;}
.y52{bottom:377.410500px;}
.yd2{bottom:378.186000px;}
.yae{bottom:378.219000px;}
.y1e7{bottom:378.531000px;}
.yf0{bottom:384.109500px;}
.y1c2{bottom:390.070500px;}
.y171{bottom:391.551000px;}
.y7e{bottom:393.486000px;}
.y1a{bottom:393.652500px;}
.y51{bottom:393.774000px;}
.y149{bottom:394.551000px;}
.yad{bottom:394.582500px;}
.y1e6{bottom:394.894500px;}
.y19a{bottom:396.684000px;}
.y1c1{bottom:406.434000px;}
.y170{bottom:407.916000px;}
.yd1{bottom:409.353000px;}
.y148{bottom:410.914500px;}
.yac{bottom:410.946000px;}
.y1e5{bottom:411.258000px;}
.y50{bottom:418.356000px;}
.y1c0{bottom:422.797500px;}
.y16f{bottom:424.279500px;}
.yab{bottom:427.309500px;}
.y1e4{bottom:427.621500px;}
.y19{bottom:427.672500px;}
.y7d{bottom:429.265500px;}
.yef{bottom:431.215500px;}
.y199{bottom:431.866500px;}
.y122{bottom:433.803000px;}
.y4f{bottom:434.719500px;}
.y147{bottom:435.496500px;}
.y1bf{bottom:439.161000px;}
.y119{bottom:442.245000px;}
.yaa{bottom:443.673000px;}
.yee{bottom:447.579000px;}
.y198{bottom:448.230000px;}
.y16e{bottom:448.861500px;}
.yd0{bottom:449.047500px;}
.y4e{bottom:451.083000px;}
.y7c{bottom:453.847500px;}
.y118{bottom:458.608500px;}
.y1e3{bottom:462.291000px;}
.y1be{bottom:463.744500px;}
.y16d{bottom:465.225000px;}
.ycf{bottom:465.412500px;}
.y146{bottom:465.459000px;}
.ya9{bottom:468.256500px;}
.y18{bottom:469.614000px;}
.y7b{bottom:470.212500px;}
.y197{bottom:472.813500px;}
.y117{bottom:474.972000px;}
.y4d{bottom:475.666500px;}
.y1bd{bottom:480.108000px;}
.y16c{bottom:481.588500px;}
.yce{bottom:481.776000px;}
.yed{bottom:484.297500px;}
.ya8{bottom:484.620000px;}
.y17{bottom:485.977500px;}
.y7a{bottom:486.576000px;}
.y196{bottom:489.177000px;}
.y116{bottom:491.335500px;}
.y4c{bottom:492.030000px;}
.y1bc{bottom:496.471500px;}
.y16b{bottom:497.952000px;}
.y145{bottom:502.113000px;}
.y16{bottom:502.341000px;}
.y79{bottom:502.939500px;}
.y1e2{bottom:504.882000px;}
.y195{bottom:505.540500px;}
.y115{bottom:507.699000px;}
.y1bb{bottom:512.835000px;}
.ya7{bottom:514.582500px;}
.ycd{bottom:516.346500px;}
.y4b{bottom:516.613500px;}
.y144{bottom:518.476500px;}
.y15{bottom:518.704500px;}
.y78{bottom:519.303000px;}
.y1e1{bottom:521.245500px;}
.y194{bottom:521.904000px;}
.y16a{bottom:529.086000px;}
.y1ba{bottom:529.198500px;}
.y114{bottom:532.282500px;}
.y4a{bottom:532.977000px;}
.y143{bottom:534.840000px;}
.y14{bottom:535.068000px;}
.y193{bottom:538.267500px;}
.yec{bottom:543.540000px;}
.y77{bottom:543.885000px;}
.y1b9{bottom:545.562000px;}
.y1e0{bottom:545.829000px;}
.y113{bottom:548.646000px;}
.y121{bottom:550.236000px;}
.ya6{bottom:550.255500px;}
.y142{bottom:551.203500px;}
.y13{bottom:551.431500px;}
.y49{bottom:557.559000px;}
.y76{bottom:560.248500px;}
.ycc{bottom:561.304500px;}
.y1b8{bottom:561.925500px;}
.y1df{bottom:562.192500px;}
.y112{bottom:565.009500px;}
.y120{bottom:565.179000px;}
.ya5{bottom:566.619000px;}
.y141{bottom:567.567000px;}
.y12{bottom:567.796500px;}
.y169{bottom:568.702500px;}
.y192{bottom:573.450000px;}
.y48{bottom:573.922500px;}
.y75{bottom:576.613500px;}
.y1b7{bottom:578.290500px;}
.y111{bottom:581.373000px;}
.ya4{bottom:582.982500px;}
.y11{bottom:584.160000px;}
.y168{bottom:585.066000px;}
.y1de{bottom:586.774500px;}
.y191{bottom:589.813500px;}
.y47{bottom:590.286000px;}
.yeb{bottom:590.644500px;}
.y140{bottom:592.150500px;}
.y1b6{bottom:594.654000px;}
.ycb{bottom:595.875000px;}
.y110{bottom:597.736500px;}
.ya3{bottom:599.346000px;}
.y74{bottom:601.195500px;}
.y167{bottom:601.429500px;}
.y1dd{bottom:603.138000px;}
.y10{bottom:603.151500px;}
.y190{bottom:606.177000px;}
.y46{bottom:606.649500px;}
.y13f{bottom:608.514000px;}
.y10f{bottom:614.100000px;}
.ya2{bottom:615.709500px;}
.y73{bottom:617.559000px;}
.y166{bottom:617.793000px;}
.y1b5{bottom:619.236000px;}
.yf{bottom:619.515000px;}
.y45{bottom:623.014500px;}
.y13e{bottom:624.877500px;}
.yea{bottom:629.794500px;}
.y1dc{bottom:629.962500px;}
.y10e{bottom:630.463500px;}
.ya1{bottom:632.074500px;}
.y18f{bottom:634.327500px;}
.y1b4{bottom:635.599500px;}
.ye{bottom:635.878500px;}
.y44{bottom:639.378000px;}
.yca{bottom:640.833000px;}
.y72{bottom:642.142500px;}
.y165{bottom:642.376500px;}
.y10d{bottom:646.827000px;}
.ya0{bottom:648.438000px;}
.y1b3{bottom:651.963000px;}
.yd{bottom:652.242000px;}
.y1db{bottom:656.787000px;}
.yc9{bottom:657.196500px;}
.y71{bottom:658.506000px;}
.y164{bottom:658.740000px;}
.ye9{bottom:660.724500px;}
.y10c{bottom:663.190500px;}
.y43{bottom:663.960000px;}
.y13d{bottom:664.216500px;}
.y9f{bottom:664.801500px;}
.yc{bottom:668.605500px;}
.y18e{bottom:669.510000px;}
.yc8{bottom:673.560000px;}
.y11e{bottom:674.365500px;}
.y70{bottom:674.869500px;}
.y163{bottom:675.103500px;}
.y1b2{bottom:676.546500px;}
.y13c{bottom:678.150000px;}
.y10b{bottom:679.554000px;}
.y11f{bottom:680.223000px;}
.y42{bottom:680.323500px;}
.y9e{bottom:681.165000px;}
.y18d{bottom:685.873500px;}
.yb{bottom:687.597000px;}
.y11d{bottom:689.308500px;}
.y6f{bottom:691.233000px;}
.y1da{bottom:691.456500px;}
.y162{bottom:691.467000px;}
.ye8{bottom:691.654500px;}
.y13b{bottom:694.513500px;}
.y41{bottom:696.687000px;}
.y9d{bottom:697.528500px;}
.yc7{bottom:698.143500px;}
.y1b1{bottom:701.128500px;}
.y18c{bottom:702.237000px;}
.ya{bottom:703.960500px;}
.y10a{bottom:704.137500px;}
.y1d9{bottom:707.821500px;}
.y161{bottom:707.830500px;}
.y40{bottom:713.050500px;}
.y9c{bottom:713.892000px;}
.yc6{bottom:714.507000px;}
.y1fc{bottom:714.769500px;}
.y6e{bottom:715.816500px;}
.y1b0{bottom:717.493500px;}
.y18b{bottom:718.600500px;}
.y13a{bottom:719.097000px;}
.y9{bottom:720.324000px;}
.y109{bottom:720.501000px;}
.ye7{bottom:722.584500px;}
.y160{bottom:724.194000px;}
.y9b{bottom:730.255500px;}
.yc5{bottom:730.870500px;}
.y1fb{bottom:731.133000px;}
.y6d{bottom:732.180000px;}
.y1af{bottom:733.857000px;}
.y1d8{bottom:734.646000px;}
.y18a{bottom:734.964000px;}
.y139{bottom:735.460500px;}
.y8{bottom:736.687500px;}
.y108{bottom:736.864500px;}
.y3f{bottom:737.634000px;}
.yc4{bottom:747.234000px;}
.y15f{bottom:748.777500px;}
.y189{bottom:751.327500px;}
.y138{bottom:751.824000px;}
.y7{bottom:753.051000px;}
.y107{bottom:753.228000px;}
.y1fa{bottom:753.474000px;}
.ye6{bottom:753.514500px;}
.y3e{bottom:753.997500px;}
.y9a{bottom:754.839000px;}
.y6c{bottom:756.762000px;}
.y1ae{bottom:758.439000px;}
.y1d7{bottom:761.469000px;}
.yc3{bottom:763.597500px;}
.y15e{bottom:765.141000px;}
.y137{bottom:768.187500px;}
.y187{bottom:769.615500px;}
.y1f9{bottom:769.837500px;}
.y1ad{bottom:774.802500px;}
.y106{bottom:777.811500px;}
.y3d{bottom:778.581000px;}
.y99{bottom:779.421000px;}
.yc2{bottom:779.961000px;}
.y6b{bottom:781.345500px;}
.y15d{bottom:781.504500px;}
.y188{bottom:783.231000px;}
.y6{bottom:783.303000px;}
.ye5{bottom:784.444500px;}
.y136{bottom:784.551000px;}
.y1ac{bottom:791.166000px;}
.y1f8{bottom:792.180000px;}
.y105{bottom:794.175000px;}
.y3c{bottom:794.944500px;}
.y11c{bottom:795.624000px;}
.y98{bottom:795.784500px;}
.y1d6{bottom:796.140000px;}
.y15c{bottom:797.868000px;}
.y186{bottom:803.572500px;}
.yc1{bottom:804.544500px;}
.y6a{bottom:805.927500px;}
.y1ab{bottom:807.529500px;}
.y1f7{bottom:808.543500px;}
.y185{bottom:809.469000px;}
.y104{bottom:810.538500px;}
.y3b{bottom:811.308000px;}
.y1d5{bottom:812.503500px;}
.y15b{bottom:814.231500px;}
.y135{bottom:814.513500px;}
.y97{bottom:820.368000px;}
.yc0{bottom:820.908000px;}
.ye4{bottom:821.164500px;}
.y69{bottom:822.291000px;}
.y5{bottom:823.425000px;}
.y1aa{bottom:823.894500px;}
.y184{bottom:825.832500px;}
.y103{bottom:826.902000px;}
.y3a{bottom:827.671500px;}
.y1d4{bottom:828.867000px;}
.y15a{bottom:830.595000px;}
.y1f6{bottom:830.884500px;}
.y96{bottom:836.731500px;}
.ybf{bottom:837.271500px;}
.y68{bottom:838.654500px;}
.y183{bottom:842.196000px;}
.y39{bottom:844.035000px;}
.y159{bottom:846.958500px;}
.y134{bottom:851.167500px;}
.y1a9{bottom:852.624000px;}
.y95{bottom:853.095000px;}
.y1f5{bottom:853.225500px;}
.ybe{bottom:853.635000px;}
.y102{bottom:856.864500px;}
.y182{bottom:858.559500px;}
.y38{bottom:860.398500px;}
.y67{bottom:863.238000px;}
.y158{bottom:863.322000px;}
.y1d3{bottom:863.536500px;}
.y133{bottom:867.531000px;}
.ye3{bottom:868.269000px;}
.y1f4{bottom:869.589000px;}
.ybd{bottom:869.998500px;}
.y181{bottom:874.923000px;}
.y66{bottom:879.601500px;}
.y1d2{bottom:879.900000px;}
.y94{bottom:882.333000px;}
.y4{bottom:883.159500px;}
.y132{bottom:883.894500px;}
.ye2{bottom:884.632500px;}
.y37{bottom:884.982000px;}
.ybc{bottom:886.362000px;}
.y157{bottom:887.905500px;}
.y1a8{bottom:889.257000px;}
.y180{bottom:891.288000px;}
.y1f3{bottom:891.930000px;}
.y65{bottom:895.965000px;}
.y3{bottom:899.523000px;}
.y131{bottom:900.258000px;}
.y36{bottom:901.345500px;}
.y11b{bottom:902.635500px;}
.ybb{bottom:902.725500px;}
.y156{bottom:904.269000px;}
.y1a7{bottom:905.620500px;}
.y1f2{bottom:908.293500px;}
.y93{bottom:911.571000px;}
.y64{bottom:912.328500px;}
.y101{bottom:913.075500px;}
.y1d1{bottom:914.571000px;}
.y17f{bottom:915.870000px;}
.y130{bottom:916.621500px;}
.y35{bottom:917.709000px;}
.y155{bottom:920.632500px;}
.ye1{bottom:923.922000px;}
.y92{bottom:927.934500px;}
.y63{bottom:928.692000px;}
.y1f1{bottom:930.634500px;}
.y17e{bottom:932.233500px;}
.y12f{bottom:932.985000px;}
.yba{bottom:933.892500px;}
.y34{bottom:934.072500px;}
.y1a6{bottom:936.369000px;}
.y100{bottom:936.441000px;}
.y154{bottom:936.996000px;}
.ye0{bottom:940.285500px;}
.y91{bottom:944.298000px;}
.y62{bottom:945.055500px;}
.y1d0{bottom:945.130500px;}
.y1f0{bottom:946.999500px;}
.y17d{bottom:948.597000px;}
.y33{bottom:950.436000px;}
.yff{bottom:952.804500px;}
.y90{bottom:960.661500px;}
.y12e{bottom:962.947500px;}
.y17c{bottom:964.960500px;}
.y32{bottom:966.799500px;}
.y1cf{bottom:967.471500px;}
.y153{bottom:968.130000px;}
.yfe{bottom:969.168000px;}
.y1ef{bottom:969.340500px;}
.y61{bottom:969.639000px;}
.yb9{bottom:970.366500px;}
.y1a5{bottom:975.018000px;}
.ydf{bottom:977.004000px;}
.y8f{bottom:977.025000px;}
.y17b{bottom:981.324000px;}
.y31{bottom:983.163000px;}
.yfd{bottom:985.531500px;}
.y1ee{bottom:985.704000px;}
.y60{bottom:986.002500px;}
.y1ce{bottom:989.812500px;}
.y1a4{bottom:991.383000px;}
.y2{bottom:991.944000px;}
.y8e{bottom:993.388500px;}
.y12d{bottom:999.601500px;}
.yfc{bottom:1001.895000px;}
.y5f{bottom:1002.366000px;}
.y30{bottom:1007.746500px;}
.y1ed{bottom:1008.045000px;}
.y11a{bottom:1010.806500px;}
.y17a{bottom:1011.492000px;}
.y1cd{bottom:1012.155000px;}
.yb8{bottom:1015.965000px;}
.yfb{bottom:1018.258500px;}
.y5e{bottom:1018.729500px;}
.y1{bottom:1021.831500px;}
.y8d{bottom:1022.626500px;}
.y2f{bottom:1024.110000px;}
.y1ec{bottom:1030.386000px;}
.yb7{bottom:1032.328500px;}
.y1cc{bottom:1034.496000px;}
.yfa{bottom:1034.623500px;}
.y5d{bottom:1035.093000px;}
.y8c{bottom:1043.841000px;}
.y2e{bottom:1048.692000px;}
.yf9{bottom:1050.987000px;}
.y2d{bottom:1065.055500px;}
.yf8{bottom:1067.947500px;}
.y2c{bottom:1122.739500px;}
.he{height:14.679331px;}
.h5{height:16.677504px;}
.hb{height:29.457331px;}
.hd{height:34.181700px;}
.h6{height:37.013299px;}
.h9{height:40.348800px;}
.h3{height:41.125613px;}
.h2{height:41.484266px;}
.h8{height:42.799330px;}
.h7{height:44.831700px;}
.h4{height:49.781453px;}
.ha{height:61.343299px;}
.hc{height:64.041331px;}
.h1{height:71.065171px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:106.251000px;}
.x8{left:107.536500px;}
.x1{left:108.645000px;}
.x65{left:115.471500px;}
.x36{left:116.967000px;}
.x4c{left:124.359000px;}
.x9{left:125.733000px;}
.x40{left:127.363500px;}
.xa{left:132.210000px;}
.x4d{left:139.896000px;}
.x2f{left:143.905500px;}
.x2c{left:147.598500px;}
.x10{left:149.095500px;}
.x7{left:161.799000px;}
.x2d{left:163.152000px;}
.x1f{left:165.120000px;}
.x46{left:178.171500px;}
.x50{left:208.821000px;}
.x28{left:211.890000px;}
.x51{left:220.302000px;}
.x5e{left:225.222000px;}
.x29{left:232.180500px;}
.x41{left:234.544500px;}
.x2{left:236.845500px;}
.x37{left:242.344500px;}
.x18{left:252.085500px;}
.x27{left:255.364500px;}
.x19{left:263.293500px;}
.x52{left:268.639500px;}
.x47{left:279.231000px;}
.x4{left:318.000000px;}
.x53{left:328.398000px;}
.x3c{left:332.224500px;}
.x61{left:338.311500px;}
.x3d{left:343.717500px;}
.x64{left:349.858500px;}
.x24{left:354.541500px;}
.x20{left:365.911500px;}
.x4b{left:370.681500px;}
.x57{left:371.697000px;}
.x63{left:372.718500px;}
.x58{left:379.999500px;}
.x25{left:384.127500px;}
.x21{left:386.341500px;}
.x42{left:388.851000px;}
.x1c{left:391.612500px;}
.x59{left:395.134500px;}
.x62{left:398.488500px;}
.x5{left:400.278000px;}
.x1d{left:403.515000px;}
.x2a{left:405.591000px;}
.x11{left:407.394000px;}
.x13{left:409.296000px;}
.x1e{left:410.658000px;}
.x2b{left:412.381500px;}
.x6{left:415.944000px;}
.x3{left:419.967000px;}
.x14{left:424.441500px;}
.x3f{left:427.461000px;}
.x30{left:429.381000px;}
.x1a{left:434.362500px;}
.x3e{left:436.210500px;}
.x26{left:438.984000px;}
.x31{left:441.195000px;}
.x44{left:442.198500px;}
.x43{left:445.939500px;}
.x1b{left:448.743000px;}
.x56{left:450.967500px;}
.xe{left:455.263500px;}
.x32{left:464.538000px;}
.x15{left:467.181000px;}
.x33{left:471.753000px;}
.x2e{left:475.071000px;}
.x34{left:479.494500px;}
.x35{left:486.709500px;}
.x45{left:493.896000px;}
.x4e{left:496.843500px;}
.x12{left:503.655000px;}
.x4f{left:516.693000px;}
.x5f{left:524.512500px;}
.x16{left:561.513000px;}
.x17{left:576.660000px;}
.xb{left:585.111000px;}
.x54{left:590.628000px;}
.x38{left:594.145500px;}
.x48{left:607.552500px;}
.xc{left:613.867500px;}
.x60{left:625.584000px;}
.x55{left:650.386500px;}
.x49{left:658.137000px;}
.xd{left:678.805500px;}
.x39{left:688.069500px;}
.x5c{left:694.386000px;}
.x22{left:726.621000px;}
.x23{left:738.666000px;}
.x5a{left:749.194500px;}
.x5d{left:757.876500px;}
.x3a{left:769.449000px;}
.x4a{left:770.938500px;}
.x3b{left:785.575500px;}
.x5b{left:808.954500px;}
@media print{
.v7{vertical-align:-31.882667pt;}
.v8{vertical-align:-13.280000pt;}
.v2{vertical-align:-7.968000pt;}
.v4{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:21.626667pt;}
.v6{vertical-align:25.397333pt;}
.v5{vertical-align:30.741333pt;}
.va{vertical-align:35.696000pt;}
.v9{vertical-align:45.162667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.000278pt;}
.ls33{letter-spacing:0.000576pt;}
.ls4c{letter-spacing:0.001696pt;}
.ls3e{letter-spacing:0.001995pt;}
.ls22{letter-spacing:0.002387pt;}
.ls34{letter-spacing:0.002482pt;}
.lsc{letter-spacing:0.002906pt;}
.ls2f{letter-spacing:0.003514pt;}
.ls21{letter-spacing:0.003733pt;}
.ls50{letter-spacing:0.004349pt;}
.ls48{letter-spacing:0.004465pt;}
.ls2a{letter-spacing:0.004980pt;}
.ls35{letter-spacing:0.006216pt;}
.ls54{letter-spacing:0.407455pt;}
.ls2b{letter-spacing:0.894993pt;}
.ls15{letter-spacing:0.900327pt;}
.lsa{letter-spacing:2.635446pt;}
.ls53{letter-spacing:2.651242pt;}
.ls27{letter-spacing:2.652911pt;}
.ls51{letter-spacing:2.654383pt;}
.ls32{letter-spacing:2.656576pt;}
.ls37{letter-spacing:2.656689pt;}
.lsb{letter-spacing:2.656693pt;}
.ls36{letter-spacing:3.059246pt;}
.ls7{letter-spacing:3.185843pt;}
.ls25{letter-spacing:3.550993pt;}
.ls13{letter-spacing:3.556327pt;}
.ls4d{letter-spacing:3.800296pt;}
.ls12{letter-spacing:4.167686pt;}
.ls14{letter-spacing:4.173019pt;}
.ls1{letter-spacing:4.554041pt;}
.ls5{letter-spacing:4.587934pt;}
.ls2{letter-spacing:4.590533pt;}
.ls3{letter-spacing:4.592459pt;}
.ls4{letter-spacing:4.593267pt;}
.ls0{letter-spacing:4.594617pt;}
.ls3d{letter-spacing:5.718992pt;}
.ls42{letter-spacing:7.376277pt;}
.ls40{letter-spacing:7.381610pt;}
.ls3b{letter-spacing:7.779613pt;}
.ls30{letter-spacing:8.379092pt;}
.ls20{letter-spacing:8.851733pt;}
.ls24{letter-spacing:8.855412pt;}
.ls3f{letter-spacing:8.856239pt;}
.ls1c{letter-spacing:8.857067pt;}
.ls57{letter-spacing:11.803145pt;}
.ls56{letter-spacing:11.804745pt;}
.ls38{letter-spacing:11.805573pt;}
.ls4a{letter-spacing:11.806400pt;}
.ls39{letter-spacing:11.807018pt;}
.ls1f{letter-spacing:11.808479pt;}
.ls1e{letter-spacing:11.810387pt;}
.ls6{letter-spacing:13.281867pt;}
.ls29{letter-spacing:13.282387pt;}
.lsd{letter-spacing:13.282906pt;}
.ls19{letter-spacing:13.287720pt;}
.ls49{letter-spacing:14.460911pt;}
.ls55{letter-spacing:14.466245pt;}
.ls52{letter-spacing:14.756105pt;}
.ls45{letter-spacing:14.756465pt;}
.ls1b{letter-spacing:14.757812pt;}
.ls28{letter-spacing:14.759412pt;}
.ls10{letter-spacing:14.759467pt;}
.ls1d{letter-spacing:14.759720pt;}
.ls3a{letter-spacing:14.759816pt;}
.ls23{letter-spacing:14.760239pt;}
.ls46{letter-spacing:14.762318pt;}
.ls9{letter-spacing:15.936015pt;}
.ls4b{letter-spacing:15.938245pt;}
.ls11{letter-spacing:17.410245pt;}
.ls31{letter-spacing:17.413909pt;}
.lsf{letter-spacing:17.415578pt;}
.ls4f{letter-spacing:17.810079pt;}
.ls4e{letter-spacing:17.812105pt;}
.ls2c{letter-spacing:18.927925pt;}
.ls47{letter-spacing:19.078836pt;}
.ls1a{letter-spacing:20.556169pt;}
.ls2e{letter-spacing:20.656046pt;}
.ls44{letter-spacing:21.413812pt;}
.lse{letter-spacing:22.542280pt;}
.ls3c{letter-spacing:23.614824pt;}
.ls43{letter-spacing:24.069909pt;}
.ls2d{letter-spacing:25.016946pt;}
.ls18{letter-spacing:67.890079pt;}
.ls16{letter-spacing:992.327412pt;}
.ls17{letter-spacing:1017.724745pt;}
.ls26{letter-spacing:1118.434079pt;}
.ws6d{word-spacing:-42.066082pt;}
.ws63{word-spacing:-38.415786pt;}
.ws62{word-spacing:-38.392607pt;}
.ws56{word-spacing:-38.374400pt;}
.ws50{word-spacing:-38.362652pt;}
.ws65{word-spacing:-38.354960pt;}
.ws4f{word-spacing:-34.611401pt;}
.ws64{word-spacing:-28.118362pt;}
.ws2d{word-spacing:-25.791179pt;}
.ws94{word-spacing:-25.738045pt;}
.ws5a{word-spacing:-23.601899pt;}
.ws59{word-spacing:-23.596566pt;}
.ws2{word-spacing:-22.953867pt;}
.ws4{word-spacing:-22.917107pt;}
.ws7c{word-spacing:-19.854916pt;}
.ws58{word-spacing:-19.844254pt;}
.ws1{word-spacing:-18.363067pt;}
.ws3f{word-spacing:-13.283467pt;}
.ws25{word-spacing:-2.656693pt;}
.ws6e{word-spacing:-2.337890pt;}
.ws88{word-spacing:-2.231622pt;}
.ws4e{word-spacing:-2.178489pt;}
.ws3c{word-spacing:-1.859685pt;}
.ws4a{word-spacing:-1.806551pt;}
.ws6b{word-spacing:-1.594016pt;}
.ws31{word-spacing:-1.487748pt;}
.ws97{word-spacing:-1.481490pt;}
.ws99{word-spacing:-1.477844pt;}
.ws98{word-spacing:-1.476244pt;}
.ws36{word-spacing:-1.381481pt;}
.ws83{word-spacing:-1.275213pt;}
.ws28{word-spacing:-1.222079pt;}
.ws34{word-spacing:-1.115811pt;}
.ws1f{word-spacing:-0.956410pt;}
.ws40{word-spacing:-0.903276pt;}
.ws1b{word-spacing:-0.797008pt;}
.ws44{word-spacing:-0.743874pt;}
.ws7d{word-spacing:-0.690740pt;}
.ws48{word-spacing:-0.584473pt;}
.ws5c{word-spacing:-0.531339pt;}
.ws2f{word-spacing:-0.371937pt;}
.ws12{word-spacing:-0.318803pt;}
.ws16{word-spacing:-0.265669pt;}
.ws32{word-spacing:-0.212535pt;}
.wsc{word-spacing:-0.159402pt;}
.wsd{word-spacing:-0.106268pt;}
.ws9c{word-spacing:-0.063761pt;}
.ws9{word-spacing:-0.053134pt;}
.wsb{word-spacing:-0.051009pt;}
.ws52{word-spacing:-0.037194pt;}
.ws22{word-spacing:-0.014309pt;}
.ws66{word-spacing:-0.004930pt;}
.ws90{word-spacing:-0.004364pt;}
.ws2c{word-spacing:-0.001984pt;}
.ws3b{word-spacing:-0.000607pt;}
.wsa{word-spacing:0.000000pt;}
.ws24{word-spacing:0.018471pt;}
.ws2b{word-spacing:0.053134pt;}
.ws14{word-spacing:0.106268pt;}
.ws0{word-spacing:0.146905pt;}
.ws10{word-spacing:0.159402pt;}
.ws11{word-spacing:0.212535pt;}
.wsf{word-spacing:0.265669pt;}
.ws41{word-spacing:0.318803pt;}
.ws26{word-spacing:0.371937pt;}
.ws86{word-spacing:0.425071pt;}
.ws53{word-spacing:0.531339pt;}
.wse{word-spacing:0.584473pt;}
.ws68{word-spacing:0.690740pt;}
.ws6c{word-spacing:0.743874pt;}
.ws35{word-spacing:0.797008pt;}
.ws73{word-spacing:0.850142pt;}
.ws1c{word-spacing:0.956410pt;}
.ws33{word-spacing:1.062677pt;}
.ws19{word-spacing:1.168945pt;}
.ws42{word-spacing:1.222079pt;}
.ws67{word-spacing:1.275213pt;}
.ws7f{word-spacing:1.328347pt;}
.ws46{word-spacing:1.381481pt;}
.ws74{word-spacing:1.434614pt;}
.ws85{word-spacing:1.487748pt;}
.ws39{word-spacing:1.540882pt;}
.ws1d{word-spacing:1.700284pt;}
.ws71{word-spacing:1.806551pt;}
.ws20{word-spacing:1.912819pt;}
.ws75{word-spacing:1.965953pt;}
.ws9b{word-spacing:2.019087pt;}
.ws1e{word-spacing:2.231622pt;}
.ws76{word-spacing:2.391024pt;}
.ws27{word-spacing:2.497292pt;}
.ws23{word-spacing:2.656693pt;}
.ws49{word-spacing:2.762961pt;}
.ws47{word-spacing:2.816095pt;}
.ws79{word-spacing:2.975497pt;}
.ws84{word-spacing:3.081764pt;}
.ws7a{word-spacing:3.134898pt;}
.ws8e{word-spacing:3.241166pt;}
.ws80{word-spacing:3.400567pt;}
.ws7b{word-spacing:3.453701pt;}
.ws3d{word-spacing:3.613103pt;}
.ws38{word-spacing:3.985040pt;}
.ws29{word-spacing:4.038174pt;}
.ws1a{word-spacing:4.091308pt;}
.ws78{word-spacing:4.197575pt;}
.ws21{word-spacing:4.208230pt;}
.ws37{word-spacing:4.516379pt;}
.ws15{word-spacing:4.622646pt;}
.ws89{word-spacing:4.675780pt;}
.ws30{word-spacing:4.782048pt;}
.ws18{word-spacing:4.835182pt;}
.ws3e{word-spacing:5.047717pt;}
.ws69{word-spacing:5.632190pt;}
.ws9a{word-spacing:5.738458pt;}
.ws9e{word-spacing:5.844326pt;}
.ws2a{word-spacing:5.950993pt;}
.ws8f{word-spacing:6.322930pt;}
.ws9f{word-spacing:6.641733pt;}
.ws13{word-spacing:7.279340pt;}
.ws6a{word-spacing:7.385607pt;}
.ws5f{word-spacing:8.129536pt;}
.ws7{word-spacing:9.108081pt;}
.ws6{word-spacing:9.135721pt;}
.ws3{word-spacing:9.298229pt;}
.ws5{word-spacing:10.466963pt;}
.ws87{word-spacing:10.998710pt;}
.ws57{word-spacing:11.742585pt;}
.ws82{word-spacing:11.955120pt;}
.ws61{word-spacing:12.114522pt;}
.ws9d{word-spacing:12.805262pt;}
.ws2e{word-spacing:12.830761pt;}
.ws77{word-spacing:12.875704pt;}
.ws43{word-spacing:12.939721pt;}
.ws8a{word-spacing:13.070931pt;}
.ws6f{word-spacing:13.177199pt;}
.ws8{word-spacing:13.230333pt;}
.ws81{word-spacing:13.282133pt;}
.ws3a{word-spacing:13.286303pt;}
.ws55{word-spacing:13.336601pt;}
.ws4b{word-spacing:13.389734pt;}
.ws70{word-spacing:13.442868pt;}
.ws72{word-spacing:13.549136pt;}
.ws5e{word-spacing:13.581107pt;}
.ws54{word-spacing:14.451903pt;}
.ws7e{word-spacing:14.558679pt;}
.ws91{word-spacing:14.611813pt;}
.ws51{word-spacing:14.688369pt;}
.ws5b{word-spacing:14.693702pt;}
.ws4c{word-spacing:14.718081pt;}
.ws45{word-spacing:14.955120pt;}
.ws8c{word-spacing:15.196286pt;}
.ws4d{word-spacing:15.876506pt;}
.ws92{word-spacing:16.630900pt;}
.ws5d{word-spacing:17.162239pt;}
.ws93{word-spacing:17.378264pt;}
.ws95{word-spacing:27.395822pt;}
.ws8b{word-spacing:28.426619pt;}
.ws8d{word-spacing:52.040804pt;}
.ws96{word-spacing:53.077859pt;}
.ws17{word-spacing:63.697306pt;}
.ws60{word-spacing:598.495957pt;}
._2c{margin-left:-21.731751pt;}
._2e{margin-left:-17.427908pt;}
._1b{margin-left:-9.398314pt;}
._4{margin-left:-8.085075pt;}
._35{margin-left:-6.801135pt;}
._15{margin-left:-5.897859pt;}
._6{margin-left:-4.250709pt;}
._10{margin-left:-3.329641pt;}
._7{margin-left:-2.125355pt;}
._3{margin-left:-0.961981pt;}
._1{width:1.542498pt;}
._5{width:3.162529pt;}
._0{width:4.408911pt;}
._2{width:5.465342pt;}
._18{width:8.819161pt;}
._12{width:11.158112pt;}
._d{width:12.545164pt;}
._11{width:14.346144pt;}
._a{width:15.993294pt;}
._9{width:17.268507pt;}
._30{width:18.278050pt;}
._8{width:19.606397pt;}
._13{width:20.988629pt;}
._c{width:22.316224pt;}
._2f{width:23.307974pt;}
._b{width:24.282177pt;}
._16{width:26.566933pt;}
._2d{width:28.156426pt;}
._f{width:29.170493pt;}
._e{width:30.711375pt;}
._34{width:33.426773pt;}
._1a{width:38.373812pt;}
._36{width:41.444416pt;}
._33{width:47.076606pt;}
._31{width:52.062803pt;}
._14{width:53.133867pt;}
._32{width:54.190134pt;}
._17{width:63.761067pt;}
._29{width:74.281146pt;}
._27{width:92.027857pt;}
._20{width:94.897086pt;}
._22{width:106.799072pt;}
._1e{width:153.981946pt;}
._1c{width:182.786072pt;}
._24{width:192.397731pt;}
._28{width:222.418366pt;}
._25{width:227.678619pt;}
._21{width:242.449834pt;}
._26{width:295.684397pt;}
._23{width:298.559197pt;}
._2a{width:302.172300pt;}
._1f{width:380.497190pt;}
._1d{width:544.622133pt;}
._19{width:950.061771pt;}
._2b{width:1719.258189pt;}
.fs9{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs5{font-size:51.008533pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:73.452267pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:56.149333pt;}
.y2b{bottom:96.000000pt;}
.y2a{bottom:109.284000pt;}
.y5b{bottom:110.545333pt;}
.y29{bottom:114.362667pt;}
.y8b{bottom:114.962667pt;}
.yf7{bottom:117.852000pt;}
.y5a{bottom:125.090667pt;}
.y28{bottom:131.665333pt;}
.yde{bottom:132.397333pt;}
.y12c{bottom:137.178667pt;}
.y1a3{bottom:137.913333pt;}
.y59{bottom:139.636000pt;}
.y8a{bottom:141.213333pt;}
.y27{bottom:146.210667pt;}
.ydd{bottom:146.942667pt;}
.y58{bottom:154.181333pt;}
.yf6{bottom:154.248000pt;}
.y89{bottom:155.760000pt;}
.y1a2{bottom:158.177333pt;}
.y26{bottom:160.756000pt;}
.y152{bottom:161.488000pt;}
.y57{bottom:168.726667pt;}
.ydc{bottom:168.793333pt;}
.y12b{bottom:169.392000pt;}
.y88{bottom:170.305333pt;}
.y1cb{bottom:172.198667pt;}
.y151{bottom:176.033333pt;}
.y1a1{bottom:178.440000pt;}
.y25{bottom:182.608000pt;}
.yb6{bottom:183.273333pt;}
.ydb{bottom:183.338667pt;}
.y12a{bottom:183.937333pt;}
.y1ca{bottom:186.744000pt;}
.y179{bottom:190.578667pt;}
.y87{bottom:192.156000pt;}
.y24{bottom:197.153333pt;}
.yf5{bottom:197.884000pt;}
.y56{bottom:198.598667pt;}
.y1c9{bottom:201.289333pt;}
.y178{bottom:205.124000pt;}
.yda{bottom:205.190667pt;}
.y128{bottom:205.573333pt;}
.y1a0{bottom:205.808000pt;}
.yb5{bottom:209.906667pt;}
.y23{bottom:211.698667pt;}
.y150{bottom:212.430667pt;}
.y129{bottom:213.250667pt;}
.y86{bottom:214.008000pt;}
.y1c8{bottom:215.834667pt;}
.yd9{bottom:219.736000pt;}
.y14f{bottom:226.976000pt;}
.y85{bottom:228.553333pt;}
.y127{bottom:229.884000pt;}
.yf4{bottom:230.524000pt;}
.y177{bottom:232.798667pt;}
.y22{bottom:233.549333pt;}
.yd8{bottom:234.281333pt;}
.y19f{bottom:237.081333pt;}
.y55{bottom:239.304000pt;}
.y1c7{bottom:241.373333pt;}
.y14e{bottom:241.521333pt;}
.yb4{bottom:241.616000pt;}
.y84{bottom:243.098667pt;}
.y21{bottom:248.094667pt;}
.yd7{bottom:248.826667pt;}
.y126{bottom:251.736000pt;}
.y14d{bottom:256.066667pt;}
.yb3{bottom:256.161333pt;}
.y83{bottom:257.644000pt;}
.y20{bottom:262.641333pt;}
.y19e{bottom:264.449333pt;}
.y125{bottom:266.281333pt;}
.y176{bottom:268.013333pt;}
.yd6{bottom:270.678667pt;}
.yb2{bottom:270.706667pt;}
.y82{bottom:272.189333pt;}
.yf3{bottom:272.394667pt;}
.y1c6{bottom:273.936000pt;}
.y54{bottom:274.977333pt;}
.y1f{bottom:277.186667pt;}
.y14c{bottom:277.917333pt;}
.y1eb{bottom:278.290667pt;}
.y175{bottom:282.558667pt;}
.y19d{bottom:284.712000pt;}
.yd5{bottom:285.224000pt;}
.yb1{bottom:285.252000pt;}
.y81{bottom:286.734667pt;}
.yf2{bottom:286.940000pt;}
.y1e{bottom:291.732000pt;}
.y14b{bottom:292.462667pt;}
.y1ea{bottom:292.836000pt;}
.y124{bottom:292.914667pt;}
.y1c5{bottom:295.786667pt;}
.y174{bottom:297.104000pt;}
.yd4{bottom:299.769333pt;}
.yb0{bottom:299.797333pt;}
.y19c{bottom:304.976000pt;}
.y1d{bottom:306.277333pt;}
.y1e9{bottom:307.381333pt;}
.y80{bottom:308.586667pt;}
.yf1{bottom:308.792000pt;}
.y1c4{bottom:310.333333pt;}
.yd3{bottom:314.314667pt;}
.yaf{bottom:314.342667pt;}
.y173{bottom:318.954667pt;}
.y1c{bottom:320.822667pt;}
.y53{bottom:320.929333pt;}
.y1e8{bottom:321.926667pt;}
.y7f{bottom:323.132000pt;}
.y1c3{bottom:324.878667pt;}
.y19b{bottom:325.240000pt;}
.y14a{bottom:328.860000pt;}
.y123{bottom:332.698667pt;}
.y172{bottom:333.500000pt;}
.y1b{bottom:335.368000pt;}
.y52{bottom:335.476000pt;}
.yd2{bottom:336.165333pt;}
.yae{bottom:336.194667pt;}
.y1e7{bottom:336.472000pt;}
.yf0{bottom:341.430667pt;}
.y1c2{bottom:346.729333pt;}
.y171{bottom:348.045333pt;}
.y7e{bottom:349.765333pt;}
.y1a{bottom:349.913333pt;}
.y51{bottom:350.021333pt;}
.y149{bottom:350.712000pt;}
.yad{bottom:350.740000pt;}
.y1e6{bottom:351.017333pt;}
.y19a{bottom:352.608000pt;}
.y1c1{bottom:361.274667pt;}
.y170{bottom:362.592000pt;}
.yd1{bottom:363.869333pt;}
.y148{bottom:365.257333pt;}
.yac{bottom:365.285333pt;}
.y1e5{bottom:365.562667pt;}
.y50{bottom:371.872000pt;}
.y1c0{bottom:375.820000pt;}
.y16f{bottom:377.137333pt;}
.yab{bottom:379.830667pt;}
.y1e4{bottom:380.108000pt;}
.y19{bottom:380.153333pt;}
.y7d{bottom:381.569333pt;}
.yef{bottom:383.302667pt;}
.y199{bottom:383.881333pt;}
.y122{bottom:385.602667pt;}
.y4f{bottom:386.417333pt;}
.y147{bottom:387.108000pt;}
.y1bf{bottom:390.365333pt;}
.y119{bottom:393.106667pt;}
.yaa{bottom:394.376000pt;}
.yee{bottom:397.848000pt;}
.y198{bottom:398.426667pt;}
.y16e{bottom:398.988000pt;}
.yd0{bottom:399.153333pt;}
.y4e{bottom:400.962667pt;}
.y7c{bottom:403.420000pt;}
.y118{bottom:407.652000pt;}
.y1e3{bottom:410.925333pt;}
.y1be{bottom:412.217333pt;}
.y16d{bottom:413.533333pt;}
.ycf{bottom:413.700000pt;}
.y146{bottom:413.741333pt;}
.ya9{bottom:416.228000pt;}
.y18{bottom:417.434667pt;}
.y7b{bottom:417.966667pt;}
.y197{bottom:420.278667pt;}
.y117{bottom:422.197333pt;}
.y4d{bottom:422.814667pt;}
.y1bd{bottom:426.762667pt;}
.y16c{bottom:428.078667pt;}
.yce{bottom:428.245333pt;}
.yed{bottom:430.486667pt;}
.ya8{bottom:430.773333pt;}
.y17{bottom:431.980000pt;}
.y7a{bottom:432.512000pt;}
.y196{bottom:434.824000pt;}
.y116{bottom:436.742667pt;}
.y4c{bottom:437.360000pt;}
.y1bc{bottom:441.308000pt;}
.y16b{bottom:442.624000pt;}
.y145{bottom:446.322667pt;}
.y16{bottom:446.525333pt;}
.y79{bottom:447.057333pt;}
.y1e2{bottom:448.784000pt;}
.y195{bottom:449.369333pt;}
.y115{bottom:451.288000pt;}
.y1bb{bottom:455.853333pt;}
.ya7{bottom:457.406667pt;}
.ycd{bottom:458.974667pt;}
.y4b{bottom:459.212000pt;}
.y144{bottom:460.868000pt;}
.y15{bottom:461.070667pt;}
.y78{bottom:461.602667pt;}
.y1e1{bottom:463.329333pt;}
.y194{bottom:463.914667pt;}
.y16a{bottom:470.298667pt;}
.y1ba{bottom:470.398667pt;}
.y114{bottom:473.140000pt;}
.y4a{bottom:473.757333pt;}
.y143{bottom:475.413333pt;}
.y14{bottom:475.616000pt;}
.y193{bottom:478.460000pt;}
.yec{bottom:483.146667pt;}
.y77{bottom:483.453333pt;}
.y1b9{bottom:484.944000pt;}
.y1e0{bottom:485.181333pt;}
.y113{bottom:487.685333pt;}
.y121{bottom:489.098667pt;}
.ya6{bottom:489.116000pt;}
.y142{bottom:489.958667pt;}
.y13{bottom:490.161333pt;}
.y49{bottom:495.608000pt;}
.y76{bottom:497.998667pt;}
.ycc{bottom:498.937333pt;}
.y1b8{bottom:499.489333pt;}
.y1df{bottom:499.726667pt;}
.y112{bottom:502.230667pt;}
.y120{bottom:502.381333pt;}
.ya5{bottom:503.661333pt;}
.y141{bottom:504.504000pt;}
.y12{bottom:504.708000pt;}
.y169{bottom:505.513333pt;}
.y192{bottom:509.733333pt;}
.y48{bottom:510.153333pt;}
.y75{bottom:512.545333pt;}
.y1b7{bottom:514.036000pt;}
.y111{bottom:516.776000pt;}
.ya4{bottom:518.206667pt;}
.y11{bottom:519.253333pt;}
.y168{bottom:520.058667pt;}
.y1de{bottom:521.577333pt;}
.y191{bottom:524.278667pt;}
.y47{bottom:524.698667pt;}
.yeb{bottom:525.017333pt;}
.y140{bottom:526.356000pt;}
.y1b6{bottom:528.581333pt;}
.ycb{bottom:529.666667pt;}
.y110{bottom:531.321333pt;}
.ya3{bottom:532.752000pt;}
.y74{bottom:534.396000pt;}
.y167{bottom:534.604000pt;}
.y1dd{bottom:536.122667pt;}
.y10{bottom:536.134667pt;}
.y190{bottom:538.824000pt;}
.y46{bottom:539.244000pt;}
.y13f{bottom:540.901333pt;}
.y10f{bottom:545.866667pt;}
.ya2{bottom:547.297333pt;}
.y73{bottom:548.941333pt;}
.y166{bottom:549.149333pt;}
.y1b5{bottom:550.432000pt;}
.yf{bottom:550.680000pt;}
.y45{bottom:553.790667pt;}
.y13e{bottom:555.446667pt;}
.yea{bottom:559.817333pt;}
.y1dc{bottom:559.966667pt;}
.y10e{bottom:560.412000pt;}
.ya1{bottom:561.844000pt;}
.y18f{bottom:563.846667pt;}
.y1b4{bottom:564.977333pt;}
.ye{bottom:565.225333pt;}
.y44{bottom:568.336000pt;}
.yca{bottom:569.629333pt;}
.y72{bottom:570.793333pt;}
.y165{bottom:571.001333pt;}
.y10d{bottom:574.957333pt;}
.ya0{bottom:576.389333pt;}
.y1b3{bottom:579.522667pt;}
.yd{bottom:579.770667pt;}
.y1db{bottom:583.810667pt;}
.yc9{bottom:584.174667pt;}
.y71{bottom:585.338667pt;}
.y164{bottom:585.546667pt;}
.ye9{bottom:587.310667pt;}
.y10c{bottom:589.502667pt;}
.y43{bottom:590.186667pt;}
.y13d{bottom:590.414667pt;}
.y9f{bottom:590.934667pt;}
.yc{bottom:594.316000pt;}
.y18e{bottom:595.120000pt;}
.yc8{bottom:598.720000pt;}
.y11e{bottom:599.436000pt;}
.y70{bottom:599.884000pt;}
.y163{bottom:600.092000pt;}
.y1b2{bottom:601.374667pt;}
.y13c{bottom:602.800000pt;}
.y10b{bottom:604.048000pt;}
.y11f{bottom:604.642667pt;}
.y42{bottom:604.732000pt;}
.y9e{bottom:605.480000pt;}
.y18d{bottom:609.665333pt;}
.yb{bottom:611.197333pt;}
.y11d{bottom:612.718667pt;}
.y6f{bottom:614.429333pt;}
.y1da{bottom:614.628000pt;}
.y162{bottom:614.637333pt;}
.ye8{bottom:614.804000pt;}
.y13b{bottom:617.345333pt;}
.y41{bottom:619.277333pt;}
.y9d{bottom:620.025333pt;}
.yc7{bottom:620.572000pt;}
.y1b1{bottom:623.225333pt;}
.y18c{bottom:624.210667pt;}
.ya{bottom:625.742667pt;}
.y10a{bottom:625.900000pt;}
.y1d9{bottom:629.174667pt;}
.y161{bottom:629.182667pt;}
.y40{bottom:633.822667pt;}
.y9c{bottom:634.570667pt;}
.yc6{bottom:635.117333pt;}
.y1fc{bottom:635.350667pt;}
.y6e{bottom:636.281333pt;}
.y1b0{bottom:637.772000pt;}
.y18b{bottom:638.756000pt;}
.y13a{bottom:639.197333pt;}
.y9{bottom:640.288000pt;}
.y109{bottom:640.445333pt;}
.ye7{bottom:642.297333pt;}
.y160{bottom:643.728000pt;}
.y9b{bottom:649.116000pt;}
.yc5{bottom:649.662667pt;}
.y1fb{bottom:649.896000pt;}
.y6d{bottom:650.826667pt;}
.y1af{bottom:652.317333pt;}
.y1d8{bottom:653.018667pt;}
.y18a{bottom:653.301333pt;}
.y139{bottom:653.742667pt;}
.y8{bottom:654.833333pt;}
.y108{bottom:654.990667pt;}
.y3f{bottom:655.674667pt;}
.yc4{bottom:664.208000pt;}
.y15f{bottom:665.580000pt;}
.y189{bottom:667.846667pt;}
.y138{bottom:668.288000pt;}
.y7{bottom:669.378667pt;}
.y107{bottom:669.536000pt;}
.y1fa{bottom:669.754667pt;}
.ye6{bottom:669.790667pt;}
.y3e{bottom:670.220000pt;}
.y9a{bottom:670.968000pt;}
.y6c{bottom:672.677333pt;}
.y1ae{bottom:674.168000pt;}
.y1d7{bottom:676.861333pt;}
.yc3{bottom:678.753333pt;}
.y15e{bottom:680.125333pt;}
.y137{bottom:682.833333pt;}
.y187{bottom:684.102667pt;}
.y1f9{bottom:684.300000pt;}
.y1ad{bottom:688.713333pt;}
.y106{bottom:691.388000pt;}
.y3d{bottom:692.072000pt;}
.y99{bottom:692.818667pt;}
.yc2{bottom:693.298667pt;}
.y6b{bottom:694.529333pt;}
.y15d{bottom:694.670667pt;}
.y188{bottom:696.205333pt;}
.y6{bottom:696.269333pt;}
.ye5{bottom:697.284000pt;}
.y136{bottom:697.378667pt;}
.y1ac{bottom:703.258667pt;}
.y1f8{bottom:704.160000pt;}
.y105{bottom:705.933333pt;}
.y3c{bottom:706.617333pt;}
.y11c{bottom:707.221333pt;}
.y98{bottom:707.364000pt;}
.y1d6{bottom:707.680000pt;}
.y15c{bottom:709.216000pt;}
.y186{bottom:714.286667pt;}
.yc1{bottom:715.150667pt;}
.y6a{bottom:716.380000pt;}
.y1ab{bottom:717.804000pt;}
.y1f7{bottom:718.705333pt;}
.y185{bottom:719.528000pt;}
.y104{bottom:720.478667pt;}
.y3b{bottom:721.162667pt;}
.y1d5{bottom:722.225333pt;}
.y15b{bottom:723.761333pt;}
.y135{bottom:724.012000pt;}
.y97{bottom:729.216000pt;}
.yc0{bottom:729.696000pt;}
.ye4{bottom:729.924000pt;}
.y69{bottom:730.925333pt;}
.y5{bottom:731.933333pt;}
.y1aa{bottom:732.350667pt;}
.y184{bottom:734.073333pt;}
.y103{bottom:735.024000pt;}
.y3a{bottom:735.708000pt;}
.y1d4{bottom:736.770667pt;}
.y15a{bottom:738.306667pt;}
.y1f6{bottom:738.564000pt;}
.y96{bottom:743.761333pt;}
.ybf{bottom:744.241333pt;}
.y68{bottom:745.470667pt;}
.y183{bottom:748.618667pt;}
.y39{bottom:750.253333pt;}
.y159{bottom:752.852000pt;}
.y134{bottom:756.593333pt;}
.y1a9{bottom:757.888000pt;}
.y95{bottom:758.306667pt;}
.y1f5{bottom:758.422667pt;}
.ybe{bottom:758.786667pt;}
.y102{bottom:761.657333pt;}
.y182{bottom:763.164000pt;}
.y38{bottom:764.798667pt;}
.y67{bottom:767.322667pt;}
.y158{bottom:767.397333pt;}
.y1d3{bottom:767.588000pt;}
.y133{bottom:771.138667pt;}
.ye3{bottom:771.794667pt;}
.y1f4{bottom:772.968000pt;}
.ybd{bottom:773.332000pt;}
.y181{bottom:777.709333pt;}
.y66{bottom:781.868000pt;}
.y1d2{bottom:782.133333pt;}
.y94{bottom:784.296000pt;}
.y4{bottom:785.030667pt;}
.y132{bottom:785.684000pt;}
.ye2{bottom:786.340000pt;}
.y37{bottom:786.650667pt;}
.ybc{bottom:787.877333pt;}
.y157{bottom:789.249333pt;}
.y1a8{bottom:790.450667pt;}
.y180{bottom:792.256000pt;}
.y1f3{bottom:792.826667pt;}
.y65{bottom:796.413333pt;}
.y3{bottom:799.576000pt;}
.y131{bottom:800.229333pt;}
.y36{bottom:801.196000pt;}
.y11b{bottom:802.342667pt;}
.ybb{bottom:802.422667pt;}
.y156{bottom:803.794667pt;}
.y1a7{bottom:804.996000pt;}
.y1f2{bottom:807.372000pt;}
.y93{bottom:810.285333pt;}
.y64{bottom:810.958667pt;}
.y101{bottom:811.622667pt;}
.y1d1{bottom:812.952000pt;}
.y17f{bottom:814.106667pt;}
.y130{bottom:814.774667pt;}
.y35{bottom:815.741333pt;}
.y155{bottom:818.340000pt;}
.ye1{bottom:821.264000pt;}
.y92{bottom:824.830667pt;}
.y63{bottom:825.504000pt;}
.y1f1{bottom:827.230667pt;}
.y17e{bottom:828.652000pt;}
.y12f{bottom:829.320000pt;}
.yba{bottom:830.126667pt;}
.y34{bottom:830.286667pt;}
.y1a6{bottom:832.328000pt;}
.y100{bottom:832.392000pt;}
.y154{bottom:832.885333pt;}
.ye0{bottom:835.809333pt;}
.y91{bottom:839.376000pt;}
.y62{bottom:840.049333pt;}
.y1d0{bottom:840.116000pt;}
.y1f0{bottom:841.777333pt;}
.y17d{bottom:843.197333pt;}
.y33{bottom:844.832000pt;}
.yff{bottom:846.937333pt;}
.y90{bottom:853.921333pt;}
.y12e{bottom:855.953333pt;}
.y17c{bottom:857.742667pt;}
.y32{bottom:859.377333pt;}
.y1cf{bottom:859.974667pt;}
.y153{bottom:860.560000pt;}
.yfe{bottom:861.482667pt;}
.y1ef{bottom:861.636000pt;}
.y61{bottom:861.901333pt;}
.yb9{bottom:862.548000pt;}
.y1a5{bottom:866.682667pt;}
.ydf{bottom:868.448000pt;}
.y8f{bottom:868.466667pt;}
.y17b{bottom:872.288000pt;}
.y31{bottom:873.922667pt;}
.yfd{bottom:876.028000pt;}
.y1ee{bottom:876.181333pt;}
.y60{bottom:876.446667pt;}
.y1ce{bottom:879.833333pt;}
.y1a4{bottom:881.229333pt;}
.y2{bottom:881.728000pt;}
.y8e{bottom:883.012000pt;}
.y12d{bottom:888.534667pt;}
.yfc{bottom:890.573333pt;}
.y5f{bottom:890.992000pt;}
.y30{bottom:895.774667pt;}
.y1ed{bottom:896.040000pt;}
.y11a{bottom:898.494667pt;}
.y17a{bottom:899.104000pt;}
.y1cd{bottom:899.693333pt;}
.yb8{bottom:903.080000pt;}
.yfb{bottom:905.118667pt;}
.y5e{bottom:905.537333pt;}
.y1{bottom:908.294667pt;}
.y8d{bottom:909.001333pt;}
.y2f{bottom:910.320000pt;}
.y1ec{bottom:915.898667pt;}
.yb7{bottom:917.625333pt;}
.y1cc{bottom:919.552000pt;}
.yfa{bottom:919.665333pt;}
.y5d{bottom:920.082667pt;}
.y8c{bottom:927.858667pt;}
.y2e{bottom:932.170667pt;}
.yf9{bottom:934.210667pt;}
.y2d{bottom:946.716000pt;}
.yf8{bottom:949.286667pt;}
.y2c{bottom:997.990667pt;}
.he{height:13.048294pt;}
.h5{height:14.824448pt;}
.hb{height:26.184294pt;}
.hd{height:30.383733pt;}
.h6{height:32.900710pt;}
.h9{height:35.865600pt;}
.h3{height:36.556100pt;}
.h2{height:36.874903pt;}
.h8{height:38.043849pt;}
.h7{height:39.850400pt;}
.h4{height:44.250180pt;}
.ha{height:54.527377pt;}
.hc{height:56.925628pt;}
.h1{height:63.169041pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:94.445333pt;}
.x8{left:95.588000pt;}
.x1{left:96.573333pt;}
.x65{left:102.641333pt;}
.x36{left:103.970667pt;}
.x4c{left:110.541333pt;}
.x9{left:111.762667pt;}
.x40{left:113.212000pt;}
.xa{left:117.520000pt;}
.x4d{left:124.352000pt;}
.x2f{left:127.916000pt;}
.x2c{left:131.198667pt;}
.x10{left:132.529333pt;}
.x7{left:143.821333pt;}
.x2d{left:145.024000pt;}
.x1f{left:146.773333pt;}
.x46{left:158.374667pt;}
.x50{left:185.618667pt;}
.x28{left:188.346667pt;}
.x51{left:195.824000pt;}
.x5e{left:200.197333pt;}
.x29{left:206.382667pt;}
.x41{left:208.484000pt;}
.x2{left:210.529333pt;}
.x37{left:215.417333pt;}
.x18{left:224.076000pt;}
.x27{left:226.990667pt;}
.x19{left:234.038667pt;}
.x52{left:238.790667pt;}
.x47{left:248.205333pt;}
.x4{left:282.666667pt;}
.x53{left:291.909333pt;}
.x3c{left:295.310667pt;}
.x61{left:300.721333pt;}
.x3d{left:305.526667pt;}
.x64{left:310.985333pt;}
.x24{left:315.148000pt;}
.x20{left:325.254667pt;}
.x4b{left:329.494667pt;}
.x57{left:330.397333pt;}
.x63{left:331.305333pt;}
.x58{left:337.777333pt;}
.x25{left:341.446667pt;}
.x21{left:343.414667pt;}
.x42{left:345.645333pt;}
.x1c{left:348.100000pt;}
.x59{left:351.230667pt;}
.x62{left:354.212000pt;}
.x5{left:355.802667pt;}
.x1d{left:358.680000pt;}
.x2a{left:360.525333pt;}
.x11{left:362.128000pt;}
.x13{left:363.818667pt;}
.x1e{left:365.029333pt;}
.x2b{left:366.561333pt;}
.x6{left:369.728000pt;}
.x3{left:373.304000pt;}
.x14{left:377.281333pt;}
.x3f{left:379.965333pt;}
.x30{left:381.672000pt;}
.x1a{left:386.100000pt;}
.x3e{left:387.742667pt;}
.x26{left:390.208000pt;}
.x31{left:392.173333pt;}
.x44{left:393.065333pt;}
.x43{left:396.390667pt;}
.x1b{left:398.882667pt;}
.x56{left:400.860000pt;}
.xe{left:404.678667pt;}
.x32{left:412.922667pt;}
.x15{left:415.272000pt;}
.x33{left:419.336000pt;}
.x2e{left:422.285333pt;}
.x34{left:426.217333pt;}
.x35{left:432.630667pt;}
.x45{left:439.018667pt;}
.x4e{left:441.638667pt;}
.x12{left:447.693333pt;}
.x4f{left:459.282667pt;}
.x5f{left:466.233333pt;}
.x16{left:499.122667pt;}
.x17{left:512.586667pt;}
.xb{left:520.098667pt;}
.x54{left:525.002667pt;}
.x38{left:528.129333pt;}
.x48{left:540.046667pt;}
.xc{left:545.660000pt;}
.x60{left:556.074667pt;}
.x55{left:578.121333pt;}
.x49{left:585.010667pt;}
.xd{left:603.382667pt;}
.x39{left:611.617333pt;}
.x5c{left:617.232000pt;}
.x22{left:645.885333pt;}
.x23{left:656.592000pt;}
.x5a{left:665.950667pt;}
.x5d{left:673.668000pt;}
.x3a{left:683.954667pt;}
.x4a{left:685.278667pt;}
.x3b{left:698.289333pt;}
.x5b{left:719.070667pt;}
}




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