
    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_63de780326dd95bd86511c8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918000;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_5e0aec12fc9c5f6b6b44478a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d56c3a2f74c5d511b23101fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_25b6d17e3738550c4bb3b865.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_1bdb20f6d3dd8d0be760b85c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.159000;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_e2ed694c1ee65ca7a511f194.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.156000;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_c0ee27044631085cfb39184e.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_a3714629d59b5e24ad92e5ca.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1367ddf5b0884e1637ceae7c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_25e4928c8f4b944334fd1705.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5a46f2b897ed12b683d7c688.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.159000;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_0d8f8caeedc3ecca25b79e8e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.159000;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_4bf8bb9ca99a4701c8d78ae9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.156000;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_696f4fb6cec62fe8083de858.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.918000;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_705bc8ba866cd62577a36b13.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_5cfcc01173db151867ceed0a.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b426cc11c49edc4e676f2234.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_8584f5e9bd2e5f4c1250f12f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.004000;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:ff13;src:url('chunks/assets/font_17ce0030b4967d67fdfd752f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.159000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m13{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);}
.m12{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);}
.m25{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);}
.m17{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);}
.m6{transform:matrix(0.246766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246766,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m11{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);}
.m27{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);}
.m9{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);}
.m1f{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);}
.m14{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);}
.mf{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);}
.m18{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);}
.m26{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);}
.m2a{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);}
.m16{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);}
.m1c{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);}
.m1a{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);}
.m3{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m10{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);}
.m1b{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);}
.m4{transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.md{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);}
.m19{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);}
.m5{transform:matrix(0.252259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252259,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m22{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);}
.m29{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);}
.m21{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);}
.ma{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);}
.m8{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);}
.mb{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);}
.me{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);}
.m2b{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);}
.m7{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);}
.m1{transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls2{letter-spacing:-13.502796px;}
.ls3{letter-spacing:-0.484164px;}
.ls4{letter-spacing:-0.001829px;}
.ls1{letter-spacing:-0.000191px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.004046px;}
.ls7{letter-spacing:2.988532px;}
.ls9{letter-spacing:17.388929px;}
.ls8{letter-spacing:19.629746px;}
.ls5{letter-spacing:21.549888px;}
.lsb{letter-spacing:22.915861px;}
.lsa{letter-spacing:23.723863px;}
.ls6{letter-spacing:24.888569px;}
.lsd{letter-spacing:30.294452px;}
.lse{letter-spacing:32.860941px;}
.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;}
}
.ws3{word-spacing:-43.038000px;}
.ws18{word-spacing:-31.831093px;}
.ws90{word-spacing:-30.551309px;}
.ws9{word-spacing:-29.889000px;}
.wsf8{word-spacing:-29.887800px;}
.ws1a{word-spacing:-28.226761px;}
.wsf0{word-spacing:-27.646998px;}
.wsc{word-spacing:-27.645764px;}
.ws55{word-spacing:-26.234381px;}
.ws0{word-spacing:-26.234052px;}
.wse6{word-spacing:-17.454475px;}
.ws5b{word-spacing:-15.601432px;}
.ws4a{word-spacing:-15.362329px;}
.ws3f{word-spacing:-14.884124px;}
.ws109{word-spacing:-14.824349px;}
.ws81{word-spacing:-14.704798px;}
.ws60{word-spacing:-14.107042px;}
.ws2{word-spacing:-14.086963px;}
.ws4{word-spacing:-14.076602px;}
.ws75{word-spacing:-13.867939px;}
.ws67{word-spacing:-13.628837px;}
.ws10a{word-spacing:-13.515263px;}
.ws58{word-spacing:-13.509286px;}
.ws88{word-spacing:-13.449510px;}
.ws40{word-spacing:-13.389734px;}
.ws80{word-spacing:-12.971305px;}
.wsbc{word-spacing:-12.911530px;}
.ws7a{word-spacing:-12.851754px;}
.ws44{word-spacing:-12.672427px;}
.ws74{word-spacing:-12.567283px;}
.wsb6{word-spacing:-12.493100px;}
.ws10{word-spacing:-12.478902px;}
.wsff{word-spacing:-12.433325px;}
.ws117{word-spacing:-12.373549px;}
.ws5a{word-spacing:-12.313774px;}
.ws107{word-spacing:-12.194222px;}
.wsb2{word-spacing:-12.134447px;}
.wsf6{word-spacing:-12.014896px;}
.ws63{word-spacing:-11.955120px;}
.wsb8{word-spacing:-11.895344px;}
.ws2a{word-spacing:-11.886665px;}
.wse5{word-spacing:-11.835569px;}
.ws15{word-spacing:-11.724262px;}
.ws102{word-spacing:-11.716018px;}
.wsca{word-spacing:-11.488586px;}
.wse3{word-spacing:-11.476915px;}
.wse2{word-spacing:-11.461718px;}
.wsf9{word-spacing:-11.458569px;}
.ws61{word-spacing:-11.357364px;}
.wsf7{word-spacing:-11.178037px;}
.wsd2{word-spacing:-11.071228px;}
.ws59{word-spacing:-11.006299px;}
.ws71{word-spacing:-10.998710px;}
.ws93{word-spacing:-10.938935px;}
.ws5{word-spacing:-10.761000px;}
.ws62{word-spacing:-10.759608px;}
.wsb7{word-spacing:-10.641581px;}
.ws11c{word-spacing:-10.640057px;}
.ws6a{word-spacing:-10.580281px;}
.ws68{word-spacing:-10.552825px;}
.ws11e{word-spacing:-10.520506px;}
.wsd5{word-spacing:-10.460730px;}
.wsd3{word-spacing:-10.457319px;}
.ws39{word-spacing:-10.400954px;}
.ws36{word-spacing:-10.341179px;}
.ws3c{word-spacing:-10.281403px;}
.wsb9{word-spacing:-10.257272px;}
.wsac{word-spacing:-10.245135px;}
.ws6c{word-spacing:-10.221628px;}
.ws65{word-spacing:-10.161852px;}
.ws43{word-spacing:-10.102076px;}
.ws8c{word-spacing:-10.086554px;}
.ws8a{word-spacing:-10.042301px;}
.wsa9{word-spacing:-10.021099px;}
.ws94{word-spacing:-10.003466px;}
.ws6{word-spacing:-9.995396px;}
.wsd6{word-spacing:-9.992526px;}
.ws8{word-spacing:-9.985328px;}
.ws3d{word-spacing:-9.982525px;}
.wsd{word-spacing:-9.950323px;}
.wsf{word-spacing:-9.944923px;}
.ws33{word-spacing:-9.922750px;}
.ws38{word-spacing:-9.862974px;}
.ws66{word-spacing:-9.803198px;}
.ws11d{word-spacing:-9.749400px;}
.ws5f{word-spacing:-9.743423px;}
.wsd0{word-spacing:-9.689625px;}
.ws52{word-spacing:-9.683647px;}
.wsd4{word-spacing:-9.640805px;}
.ws128{word-spacing:-9.629849px;}
.ws5e{word-spacing:-9.623872px;}
.ws95{word-spacing:-9.596065px;}
.ws115{word-spacing:-9.570074px;}
.ws3e{word-spacing:-9.564096px;}
.wsad{word-spacing:-9.510298px;}
.ws8d{word-spacing:-9.504320px;}
.ws22{word-spacing:-9.463456px;}
.ws54{word-spacing:-9.450522px;}
.ws100{word-spacing:-9.444545px;}
.ws19{word-spacing:-9.375824px;}
.ws29{word-spacing:-9.356303px;}
.ws1b{word-spacing:-9.352083px;}
.wse1{word-spacing:-9.330971px;}
.ws6d{word-spacing:-9.324994px;}
.wsa0{word-spacing:-9.301743px;}
.ws10d{word-spacing:-9.271196px;}
.ws1e{word-spacing:-9.247529px;}
.ws1c{word-spacing:-9.242561px;}
.ws2e{word-spacing:-9.237979px;}
.ws17{word-spacing:-9.236143px;}
.ws7{word-spacing:-9.216952px;}
.wsa3{word-spacing:-9.214312px;}
.ws97{word-spacing:-9.211420px;}
.ws77{word-spacing:-9.205442px;}
.wsa5{word-spacing:-9.194147px;}
.ws1f{word-spacing:-9.193708px;}
.wsd7{word-spacing:-9.151644px;}
.wsf4{word-spacing:-9.151196px;}
.wse4{word-spacing:-9.145667px;}
.ws10b{word-spacing:-9.091869px;}
.wsa2{word-spacing:-9.086550px;}
.wsc1{word-spacing:-9.085891px;}
.ws21{word-spacing:-9.042696px;}
.ws2b{word-spacing:-9.037758px;}
.ws2d{word-spacing:-9.036421px;}
.ws114{word-spacing:-9.032093px;}
.ws48{word-spacing:-9.026116px;}
.wsd1{word-spacing:-9.016335px;}
.ws101{word-spacing:-8.966340px;}
.ws123{word-spacing:-8.912542px;}
.ws34{word-spacing:-8.906564px;}
.ws53{word-spacing:-8.852766px;}
.ws37{word-spacing:-8.846789px;}
.wsa6{word-spacing:-8.817558px;}
.ws98{word-spacing:-8.792991px;}
.wsc8{word-spacing:-8.727238px;}
.ws45{word-spacing:-8.667462px;}
.ws96{word-spacing:-8.665179px;}
.wscd{word-spacing:-8.613664px;}
.wsc3{word-spacing:-8.607686px;}
.wsab{word-spacing:-8.547911px;}
.wsb4{word-spacing:-8.488135px;}
.wsa4{word-spacing:-8.484008px;}
.ws1{word-spacing:-8.480448px;}
.ws31{word-spacing:-8.478592px;}
.ws2f{word-spacing:-8.477376px;}
.ws24{word-spacing:-8.449220px;}
.ws9f{word-spacing:-8.428360px;}
.ws5d{word-spacing:-8.368584px;}
.ws11a{word-spacing:-8.314786px;}
.wsf1{word-spacing:-8.249033px;}
.wscb{word-spacing:-8.129482px;}
.wsc0{word-spacing:-8.069706px;}
.ws69{word-spacing:-8.044083px;}
.ws10f{word-spacing:-7.956132px;}
.ws41{word-spacing:-7.950155px;}
.ws3b{word-spacing:-7.890379px;}
.ws57{word-spacing:-7.871271px;}
.wsf5{word-spacing:-7.830604px;}
.wsba{word-spacing:-7.771976px;}
.ws50{word-spacing:-7.770828px;}
.wsa1{word-spacing:-7.741590px;}
.ws106{word-spacing:-7.727772px;}
.ws8b{word-spacing:-7.711052px;}
.ws118{word-spacing:-7.651277px;}
.ws28{word-spacing:-7.606802px;}
.wsa8{word-spacing:-7.534769px;}
.wsaa{word-spacing:-7.531726px;}
.wse{word-spacing:-7.488158px;}
.ws125{word-spacing:-7.477928px;}
.ws64{word-spacing:-7.412174px;}
.ws7d{word-spacing:-7.352399px;}
.ws27{word-spacing:-7.319797px;}
.ws25{word-spacing:-7.314589px;}
.ws1d{word-spacing:-7.261392px;}
.wsce{word-spacing:-7.238825px;}
.ws89{word-spacing:-7.232848px;}
.wsec{word-spacing:-7.203202px;}
.ws47{word-spacing:-7.173072px;}
.wscf{word-spacing:-7.144043px;}
.ws4e{word-spacing:-7.113296px;}
.ws110{word-spacing:-6.999723px;}
.wsf2{word-spacing:-6.993745px;}
.wsc9{word-spacing:-6.989844px;}
.wsee{word-spacing:-6.933970px;}
.ws20{word-spacing:-6.895024px;}
.wsbe{word-spacing:-6.874194px;}
.ws56{word-spacing:-6.724745px;}
.wsc7{word-spacing:-6.694867px;}
.wsc5{word-spacing:-6.693480px;}
.ws2c{word-spacing:-6.672953px;}
.ws26{word-spacing:-6.600177px;}
.ws76{word-spacing:-6.575316px;}
.wsed{word-spacing:-6.455765px;}
.ws6e{word-spacing:-6.395989px;}
.ws46{word-spacing:-6.336214px;}
.ws5c{word-spacing:-6.276438px;}
.ws83{word-spacing:-6.216662px;}
.ws92{word-spacing:-6.156887px;}
.ws87{word-spacing:-6.156314px;}
.ws10c{word-spacing:-6.097111px;}
.ws72{word-spacing:-5.917784px;}
.ws86{word-spacing:-5.858009px;}
.wsfe{word-spacing:-5.439580px;}
.ws23{word-spacing:-5.437833px;}
.wse8{word-spacing:-5.393394px;}
.ws9b{word-spacing:-5.379804px;}
.wsb5{word-spacing:-5.140702px;}
.ws7e{word-spacing:-5.080926px;}
.ws4c{word-spacing:-5.021150px;}
.wsbf{word-spacing:-4.862961px;}
.ws9e{word-spacing:-4.841824px;}
.ws9a{word-spacing:-4.782048px;}
.ws99{word-spacing:-4.760241px;}
.ws7b{word-spacing:-4.722272px;}
.wse9{word-spacing:-4.710957px;}
.ws108{word-spacing:-4.662497px;}
.ws12{word-spacing:-4.629073px;}
.wsb3{word-spacing:-4.602721px;}
.ws14{word-spacing:-4.574382px;}
.wsc2{word-spacing:-4.542946px;}
.wsc4{word-spacing:-4.483170px;}
.ws35{word-spacing:-4.423394px;}
.ws49{word-spacing:-4.363619px;}
.ws3a{word-spacing:-4.244068px;}
.ws7f{word-spacing:-4.210187px;}
.ws8f{word-spacing:-4.138503px;}
.wsdb{word-spacing:-4.124516px;}
.wsd8{word-spacing:-4.064741px;}
.wsb0{word-spacing:-4.004965px;}
.ws111{word-spacing:-3.996210px;}
.ws112{word-spacing:-3.983940px;}
.ws11b{word-spacing:-3.945190px;}
.ws7c{word-spacing:-3.885414px;}
.ws124{word-spacing:-3.765863px;}
.wsa7{word-spacing:-3.706087px;}
.wsb1{word-spacing:-3.705670px;}
.wsea{word-spacing:-3.601469px;}
.ws13{word-spacing:-3.598855px;}
.ws78{word-spacing:-3.586536px;}
.wsef{word-spacing:-3.545315px;}
.ws73{word-spacing:-3.531133px;}
.wsbb{word-spacing:-3.526760px;}
.ws6b{word-spacing:-3.466985px;}
.ws10e{word-spacing:-3.413187px;}
.wsfa{word-spacing:-3.347434px;}
.ws9d{word-spacing:-3.287658px;}
.wsfd{word-spacing:-3.227882px;}
.ws91{word-spacing:-3.168107px;}
.ws122{word-spacing:-3.065015px;}
.ws116{word-spacing:-3.032195px;}
.ws4f{word-spacing:-2.988780px;}
.wse7{word-spacing:-2.975454px;}
.ws51{word-spacing:-2.869229px;}
.ws4d{word-spacing:-2.809453px;}
.ws9c{word-spacing:-2.749678px;}
.wsc6{word-spacing:-2.723382px;}
.ws42{word-spacing:-2.689902px;}
.wsf3{word-spacing:-2.510575px;}
.ws85{word-spacing:-2.211697px;}
.wsb{word-spacing:-2.141081px;}
.ws79{word-spacing:-1.793268px;}
.ws84{word-spacing:-1.733492px;}
.wsdf{word-spacing:-1.613941px;}
.ws4b{word-spacing:-1.554166px;}
.wsde{word-spacing:-1.500368px;}
.wsdc{word-spacing:-1.214199px;}
.ws119{word-spacing:-1.195512px;}
.wseb{word-spacing:-1.090670px;}
.wsdd{word-spacing:-0.956410px;}
.ws103{word-spacing:-0.717307px;}
.ws70{word-spacing:-0.657532px;}
.wsbd{word-spacing:-0.059776px;}
.wse0{word-spacing:-0.003062px;}
.ws30{word-spacing:0.000000px;}
.ws11{word-spacing:0.317720px;}
.ws104{word-spacing:0.418429px;}
.ws11f{word-spacing:0.836858px;}
.wsa{word-spacing:1.075221px;}
.ws82{word-spacing:1.075961px;}
.wsae{word-spacing:1.374839px;}
.wsfb{word-spacing:1.434614px;}
.ws105{word-spacing:1.959335px;}
.wsfc{word-spacing:1.972595px;}
.ws6f{word-spacing:2.391024px;}
.ws127{word-spacing:2.504598px;}
.ws126{word-spacing:2.809453px;}
.ws16{word-spacing:2.901124px;}
.ws121{word-spacing:3.221905px;}
.ws8e{word-spacing:4.244068px;}
.wsaf{word-spacing:6.395989px;}
.wsd9{word-spacing:6.754643px;}
.ws120{word-spacing:7.053521px;}
.wsda{word-spacing:7.516727px;}
.wscc{word-spacing:12.194305px;}
.ws113{word-spacing:13.261852px;}
.ws32{word-spacing:37.636395px;}
._26{margin-left:-8.362238px;}
._29{margin-left:-6.545563px;}
._4{margin-left:-4.954208px;}
._0{margin-left:-3.921240px;}
._3{margin-left:-2.890452px;}
._1{margin-left:-1.397082px;}
._5{width:1.397082px;}
._2{width:2.406226px;}
._b{width:3.807809px;}
._2b{width:4.974319px;}
._2a{width:5.988702px;}
._27{width:8.751689px;}
._7{width:16.432826px;}
._18{width:18.077575px;}
._c{width:19.191034px;}
._13{width:20.845375px;}
._25{width:22.050667px;}
._d{width:23.474601px;}
._12{width:24.769342px;}
._10{width:26.301264px;}
._e{width:27.863639px;}
._16{width:28.871615px;}
._8{width:29.988714px;}
._11{width:31.300171px;}
._15{width:32.958599px;}
._1a{width:34.229176px;}
._23{width:35.528950px;}
._22{width:37.718404px;}
._9{width:38.942835px;}
._14{width:40.886510px;}
._6{width:42.380728px;}
._2c{width:43.397086px;}
._1d{width:45.130578px;}
._19{width:46.271228px;}
._1b{width:47.468906px;}
._1e{width:48.679582px;}
._20{width:51.746775px;}
._24{width:53.080733px;}
._28{width:54.707315px;}
._1f{width:60.036946px;}
._a{width:61.587439px;}
._2e{width:64.726085px;}
._21{width:66.894601px;}
._2d{width:68.574666px;}
._1c{width:75.272790px;}
._17{width:116.474522px;}
._f{width:559.118455px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fs0{font-size:47.820000px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.796000px;}
.fs9{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:59.778000px;}
.fs6{font-size:65.454600px;}
.fs2{font-size:71.730000px;}
.fs1{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:66.190500px;}
.y4c{bottom:100.207500px;}
.yd8{bottom:113.757000px;}
.y19f{bottom:116.200500px;}
.y4b{bottom:116.566500px;}
.yb7{bottom:116.644500px;}
.y15f{bottom:118.444500px;}
.y182{bottom:118.599000px;}
.yfe{bottom:118.732500px;}
.y1bb{bottom:118.887000px;}
.y13b{bottom:122.358000px;}
.y120{bottom:122.544000px;}
.y1e{bottom:130.251000px;}
.yd7{bottom:132.438000px;}
.y4a{bottom:132.925500px;}
.yb6{bottom:133.083000px;}
.y19e{bottom:134.880000px;}
.y15e{bottom:136.681500px;}
.y181{bottom:136.990500px;}
.y1ba{bottom:137.566500px;}
.yb5{bottom:138.796500px;}
.y13a{bottom:139.195500px;}
.y11f{bottom:140.629500px;}
.yfd{bottom:141.510000px;}
.y1d{bottom:146.688000px;}
.y49{bottom:149.284500px;}
.yb4{bottom:149.920500px;}
.yd6{bottom:151.117500px;}
.y15d{bottom:154.918500px;}
.y19d{bottom:157.812000px;}
.y92{bottom:158.349000px;}
.y11e{bottom:158.715000px;}
.y180{bottom:159.634500px;}
.yfc{bottom:160.035000px;}
.y48{bottom:165.643500px;}
.yb3{bottom:166.359000px;}
.yd5{bottom:169.797000px;}
.y6f{bottom:176.284500px;}
.y19c{bottom:176.491500px;}
.y11d{bottom:176.799000px;}
.y91{bottom:177.028500px;}
.y15c{bottom:177.406500px;}
.y17f{bottom:178.026000px;}
.yfb{bottom:178.560000px;}
.y47{bottom:182.002500px;}
.yb2{bottom:182.797500px;}
.y1c{bottom:185.311500px;}
.yd4{bottom:188.478000px;}
.y139{bottom:194.236500px;}
.y11c{bottom:194.884500px;}
.y6e{bottom:194.965500px;}
.y19b{bottom:195.172500px;}
.y15b{bottom:195.643500px;}
.y90{bottom:195.709500px;}
.yfa{bottom:197.085000px;}
.y46{bottom:198.361500px;}
.yb1{bottom:199.236000px;}
.y17e{bottom:200.668500px;}
.y1b{bottom:201.750000px;}
.yb0{bottom:204.949500px;}
.yd3{bottom:207.157500px;}
.y138{bottom:212.611500px;}
.y11b{bottom:212.970000px;}
.y6d{bottom:213.645000px;}
.y19a{bottom:213.852000px;}
.y15a{bottom:213.880500px;}
.y8f{bottom:214.389000px;}
.y45{bottom:214.720500px;}
.yf9{bottom:215.610000px;}
.y1a{bottom:218.188500px;}
.y17d{bottom:219.061500px;}
.yd2{bottom:225.837000px;}
.y137{bottom:230.985000px;}
.y11a{bottom:231.055500px;}
.y44{bottom:231.079500px;}
.y159{bottom:232.117500px;}
.y6c{bottom:232.324500px;}
.y8e{bottom:233.068500px;}
.yf8{bottom:234.136500px;}
.y19{bottom:234.627000px;}
.y199{bottom:236.784000px;}
.y17c{bottom:237.453000px;}
.yd1{bottom:244.516500px;}
.y43{bottom:247.438500px;}
.y136{bottom:249.360000px;}
.y158{bottom:250.354500px;}
.y6b{bottom:251.005500px;}
.y18{bottom:251.065500px;}
.y8d{bottom:251.748000px;}
.yf7{bottom:252.661500px;}
.y198{bottom:255.463500px;}
.y17b{bottom:260.097000px;}
.yaf{bottom:260.787000px;}
.yd0{bottom:263.197500px;}
.y42{bottom:263.796000px;}
.y1b9{bottom:265.639500px;}
.y17{bottom:267.504000px;}
.y135{bottom:267.733500px;}
.y119{bottom:267.864000px;}
.y157{bottom:268.591500px;}
.y6a{bottom:269.685000px;}
.y8c{bottom:270.429000px;}
.yf6{bottom:271.186500px;}
.y197{bottom:274.143000px;}
.y17a{bottom:278.488500px;}
.yae{bottom:279.273000px;}
.y41{bottom:280.155000px;}
.y16{bottom:283.942500px;}
.y1b8{bottom:284.319000px;}
.y118{bottom:285.949500px;}
.y134{bottom:286.108500px;}
.ycf{bottom:286.129500px;}
.y156{bottom:286.828500px;}
.y69{bottom:288.364500px;}
.y8b{bottom:289.108500px;}
.yf5{bottom:289.711500px;}
.y179{bottom:296.880000px;}
.y196{bottom:297.075000px;}
.yad{bottom:297.760500px;}
.y15{bottom:300.381000px;}
.y40{bottom:300.766500px;}
.y133{bottom:304.482000px;}
.yce{bottom:304.809000px;}
.y155{bottom:305.065500px;}
.y68{bottom:307.045500px;}
.y1b7{bottom:307.251000px;}
.y8a{bottom:307.788000px;}
.yf4{bottom:308.236500px;}
.y178{bottom:315.271500px;}
.y195{bottom:315.756000px;}
.yac{bottom:316.246500px;}
.y14{bottom:316.818000px;}
.y3f{bottom:317.125500px;}
.y117{bottom:322.758000px;}
.y132{bottom:322.857000px;}
.ycd{bottom:323.488500px;}
.y67{bottom:325.725000px;}
.y89{bottom:326.469000px;}
.yf3{bottom:326.763000px;}
.y154{bottom:327.555000px;}
.y1b6{bottom:330.183000px;}
.y3e{bottom:333.484500px;}
.yab{bottom:334.732500px;}
.y177{bottom:337.915500px;}
.y194{bottom:338.688000px;}
.y116{bottom:340.843500px;}
.ycc{bottom:342.169500px;}
.y88{bottom:345.148500px;}
.yf2{bottom:345.288000px;}
.y153{bottom:345.792000px;}
.y66{bottom:348.657000px;}
.y1b5{bottom:348.864000px;}
.y3d{bottom:349.843500px;}
.yaa{bottom:353.218500px;}
.y176{bottom:356.307000px;}
.y193{bottom:357.367500px;}
.y115{bottom:358.929000px;}
.y13{bottom:359.028000px;}
.y131{bottom:360.475500px;}
.ycb{bottom:360.849000px;}
.y87{bottom:363.828000px;}
.y152{bottom:364.029000px;}
.y3c{bottom:366.202500px;}
.y65{bottom:367.336500px;}
.y1b4{bottom:367.543500px;}
.yf1{bottom:368.065500px;}
.ya9{bottom:371.704500px;}
.y175{bottom:374.698500px;}
.y12{bottom:375.466500px;}
.y130{bottom:378.849000px;}
.yca{bottom:379.528500px;}
.y192{bottom:380.299500px;}
.y114{bottom:381.265500px;}
.y151{bottom:382.266000px;}
.y86{bottom:382.509000px;}
.y3b{bottom:382.561500px;}
.y64{bottom:386.016000px;}
.y1b3{bottom:386.223000px;}
.yf0{bottom:386.590500px;}
.ya8{bottom:390.192000px;}
.y174{bottom:393.090000px;}
.yc9{bottom:398.208000px;}
.y3a{bottom:398.920500px;}
.y191{bottom:398.979000px;}
.y113{bottom:399.351000px;}
.y150{bottom:400.503000px;}
.y85{bottom:401.188500px;}
.y63{bottom:404.697000px;}
.yef{bottom:405.115500px;}
.y1b2{bottom:409.155000px;}
.ya7{bottom:412.929000px;}
.y11{bottom:414.090000px;}
.y39{bottom:415.279500px;}
.y173{bottom:415.734000px;}
.y12f{bottom:416.467500px;}
.yc8{bottom:416.889000px;}
.y112{bottom:417.436500px;}
.y190{bottom:417.658500px;}
.y14f{bottom:418.740000px;}
.y84{bottom:419.868000px;}
.y62{bottom:423.376500px;}
.yee{bottom:423.640500px;}
.y1b1{bottom:427.834500px;}
.y10{bottom:430.528500px;}
.ya6{bottom:431.416500px;}
.y38{bottom:431.638500px;}
.y172{bottom:434.125500px;}
.y111{bottom:435.522000px;}
.yc7{bottom:435.568500px;}
.y18f{bottom:436.339500px;}
.y14e{bottom:436.977000px;}
.y83{bottom:438.547500px;}
.y61{bottom:442.056000px;}
.yed{bottom:442.167000px;}
.y1b0{bottom:446.515500px;}
.yf{bottom:446.967000px;}
.y37{bottom:447.997500px;}
.ya5{bottom:449.902500px;}
.y171{bottom:452.517000px;}
.y110{bottom:453.607500px;}
.y12e{bottom:454.086000px;}
.yc6{bottom:454.248000px;}
.y14d{bottom:455.214000px;}
.y82{bottom:457.228500px;}
.y18e{bottom:459.271500px;}
.yec{bottom:460.692000px;}
.y60{bottom:460.737000px;}
.ye{bottom:463.404000px;}
.y36{bottom:464.356500px;}
.y1af{bottom:469.447500px;}
.y12d{bottom:472.459500px;}
.y14c{bottom:473.451000px;}
.y81{bottom:475.908000px;}
.y10f{bottom:475.944000px;}
.y18d{bottom:477.951000px;}
.yeb{bottom:479.217000px;}
.y5f{bottom:479.416500px;}
.yd{bottom:479.842500px;}
.y35{bottom:480.715500px;}
.yc5{bottom:486.831000px;}
.ya3{bottom:487.834500px;}
.y1ae{bottom:488.127000px;}
.y170{bottom:489.960000px;}
.y12c{bottom:490.834500px;}
.y14b{bottom:491.688000px;}
.ya4{bottom:493.257000px;}
.y10e{bottom:494.029500px;}
.y80{bottom:494.587500px;}
.yc{bottom:496.281000px;}
.yea{bottom:497.742000px;}
.y5e{bottom:498.096000px;}
.y18c{bottom:500.883000px;}
.y34{bottom:501.327000px;}
.ya2{bottom:506.320500px;}
.y12b{bottom:509.208000px;}
.y1ad{bottom:511.059000px;}
.y10d{bottom:512.115000px;}
.yb{bottom:512.719500px;}
.ye9{bottom:516.267000px;}
.y5d{bottom:516.777000px;}
.y7f{bottom:517.519500px;}
.y33{bottom:517.686000px;}
.y18b{bottom:519.562500px;}
.ya1{bottom:524.806500px;}
.y14a{bottom:528.975000px;}
.ya{bottom:529.158000px;}
.y1ac{bottom:529.738500px;}
.y10c{bottom:530.200500px;}
.yc4{bottom:532.318500px;}
.y32{bottom:534.045000px;}
.ye8{bottom:534.793500px;}
.y5c{bottom:535.456500px;}
.y7e{bottom:536.200500px;}
.y16f{bottom:536.931000px;}
.y18a{bottom:538.242000px;}
.ya0{bottom:543.292500px;}
.y12a{bottom:546.826500px;}
.y1ab{bottom:548.418000px;}
.y31{bottom:550.404000px;}
.yc3{bottom:550.998000px;}
.y10b{bottom:552.537000px;}
.ye7{bottom:553.318500px;}
.y5b{bottom:554.136000px;}
.y7d{bottom:554.880000px;}
.y16e{bottom:555.322500px;}
.y189{bottom:556.923000px;}
.y9f{bottom:561.778500px;}
.y30{bottom:566.763000px;}
.yc2{bottom:569.679000px;}
.y10a{bottom:570.622500px;}
.y1aa{bottom:571.350000px;}
.y9{bottom:571.368000px;}
.ye6{bottom:571.843500px;}
.y5a{bottom:572.815500px;}
.y7c{bottom:573.559500px;}
.y16d{bottom:573.714000px;}
.y149{bottom:575.880000px;}
.y188{bottom:579.855000px;}
.y2f{bottom:583.122000px;}
.y129{bottom:584.445000px;}
.yc1{bottom:588.358500px;}
.y109{bottom:588.708000px;}
.y1a9{bottom:590.031000px;}
.y8{bottom:590.047500px;}
.ye5{bottom:590.368500px;}
.y59{bottom:591.496500px;}
.y16c{bottom:592.105500px;}
.y7b{bottom:592.239000px;}
.y148{bottom:594.117000px;}
.y187{bottom:598.534500px;}
.y2e{bottom:599.481000px;}
.y9e{bottom:599.710500px;}
.y128{bottom:602.818500px;}
.y108{bottom:606.793500px;}
.yc0{bottom:607.038000px;}
.y58{bottom:610.176000px;}
.y16b{bottom:610.497000px;}
.y7a{bottom:610.920000px;}
.y147{bottom:612.354000px;}
.y1a8{bottom:612.963000px;}
.y7{bottom:612.979500px;}
.ye4{bottom:613.146000px;}
.y186{bottom:617.214000px;}
.y9d{bottom:618.198000px;}
.y2d{bottom:620.091000px;}
.y127{bottom:621.193500px;}
.y107{bottom:624.877500px;}
.ybf{bottom:625.719000px;}
.y57{bottom:628.855500px;}
.y16a{bottom:628.888500px;}
.y79{bottom:629.599500px;}
.y146{bottom:630.591000px;}
.y1a7{bottom:631.642500px;}
.ye3{bottom:631.671000px;}
.y2c{bottom:636.450000px;}
.y9c{bottom:636.684000px;}
.y185{bottom:640.146000px;}
.ybe{bottom:644.398500px;}
.y169{bottom:647.281500px;}
.y56{bottom:647.536500px;}
.y78{bottom:648.279000px;}
.y145{bottom:648.828000px;}
.ye2{bottom:650.196000px;}
.y2b{bottom:652.809000px;}
.y1a6{bottom:654.574500px;}
.y9b{bottom:655.170000px;}
.y126{bottom:658.812000px;}
.y184{bottom:658.827000px;}
.y106{bottom:662.014500px;}
.ybd{bottom:663.078000px;}
.y168{bottom:665.673000px;}
.y55{bottom:666.216000px;}
.y77{bottom:666.960000px;}
.y144{bottom:667.065000px;}
.ye1{bottom:668.722500px;}
.y2a{bottom:669.168000px;}
.y1a5{bottom:673.254000px;}
.y9a{bottom:673.656000px;}
.y183{bottom:677.506500px;}
.ybc{bottom:681.757500px;}
.y167{bottom:684.064500px;}
.y54{bottom:684.895500px;}
.y143{bottom:685.302000px;}
.y29{bottom:685.527000px;}
.y76{bottom:685.639500px;}
.y6{bottom:686.935500px;}
.ye0{bottom:687.247500px;}
.y99{bottom:692.142000px;}
.y1a4{bottom:696.186000px;}
.y125{bottom:696.430500px;}
.ybb{bottom:700.438500px;}
.y28{bottom:701.886000px;}
.y166{bottom:702.456000px;}
.y142{bottom:703.539000px;}
.y53{bottom:703.576500px;}
.y75{bottom:704.319000px;}
.ydf{bottom:705.772500px;}
.y5{bottom:708.604500px;}
.y105{bottom:708.853500px;}
.y98{bottom:710.629500px;}
.y124{bottom:714.804000px;}
.y1a3{bottom:714.865500px;}
.y27{bottom:718.245000px;}
.yba{bottom:719.118000px;}
.y165{bottom:720.847500px;}
.y141{bottom:721.776000px;}
.y74{bottom:723.000000px;}
.yde{bottom:724.297500px;}
.y104{bottom:726.939000px;}
.y97{bottom:729.115500px;}
.y1a2{bottom:733.546500px;}
.y26{bottom:734.604000px;}
.y4{bottom:734.755500px;}
.y123{bottom:737.508000px;}
.yb9{bottom:737.797500px;}
.y164{bottom:739.239000px;}
.y140{bottom:740.013000px;}
.y73{bottom:741.679500px;}
.y52{bottom:742.050000px;}
.ydd{bottom:742.822500px;}
.y103{bottom:745.023000px;}
.y96{bottom:747.601500px;}
.y25{bottom:750.963000px;}
.yb8{bottom:756.478500px;}
.y13f{bottom:758.250000px;}
.y72{bottom:760.359000px;}
.y51{bottom:760.729500px;}
.ydc{bottom:761.349000px;}
.y3{bottom:761.655000px;}
.y163{bottom:761.883000px;}
.y102{bottom:763.108500px;}
.y95{bottom:766.087500px;}
.y24{bottom:767.322000px;}
.y122{bottom:775.126500px;}
.y1a1{bottom:775.158000px;}
.y13e{bottom:776.487000px;}
.y71{bottom:779.038500px;}
.y50{bottom:779.410500px;}
.ydb{bottom:779.874000px;}
.y162{bottom:780.274500px;}
.y101{bottom:781.194000px;}
.y23{bottom:783.681000px;}
.y94{bottom:784.573500px;}
.y1a0{bottom:793.837500px;}
.y13d{bottom:794.724000px;}
.y70{bottom:797.719500px;}
.y4f{bottom:798.090000px;}
.yda{bottom:798.399000px;}
.y161{bottom:798.666000px;}
.y100{bottom:799.279500px;}
.y22{bottom:800.040000px;}
.y93{bottom:803.059500px;}
.y121{bottom:812.745000px;}
.y4e{bottom:816.769500px;}
.yd9{bottom:816.924000px;}
.y160{bottom:817.057500px;}
.y13c{bottom:817.212000px;}
.yff{bottom:817.365000px;}
.y21{bottom:835.449000px;}
.y2{bottom:849.939000px;}
.y20{bottom:864.277500px;}
.y1{bottom:864.285000px;}
.y4d{bottom:882.210000px;}
.hb{height:26.899200px;}
.h2{height:35.865000px;}
.h7{height:35.865450px;}
.h6{height:40.347000px;}
.hc{height:40.348800px;}
.h4{height:53.797500px;}
.hd{height:54.156694px;}
.h9{height:54.336020px;}
.h5{height:54.338202px;}
.ha{height:59.301868px;}
.h8{height:59.498231px;}
.h3{height:64.557000px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x34{left:82.696500px;}
.x10{left:84.408000px;}
.xe{left:85.584000px;}
.x32{left:90.067500px;}
.x16{left:92.802000px;}
.x15{left:94.551000px;}
.x20{left:96.376500px;}
.x1b{left:103.630500px;}
.x24{left:105.343500px;}
.xf{left:108.000000px;}
.x1c{left:109.857000px;}
.x5{left:112.789500px;}
.x1d{left:114.364500px;}
.x14{left:116.967000px;}
.x21{left:122.944500px;}
.x33{left:124.410000px;}
.x18{left:130.764000px;}
.x13{left:131.910000px;}
.x12{left:141.177000px;}
.x2f{left:150.703500px;}
.xa{left:153.006000px;}
.x9{left:154.623000px;}
.x3{left:159.891000px;}
.x26{left:164.488500px;}
.x29{left:193.554000px;}
.x1{left:199.509000px;}
.x4{left:218.319000px;}
.x22{left:224.425500px;}
.x2{left:232.294500px;}
.xb{left:234.019500px;}
.x7{left:237.310500px;}
.x11{left:244.792500px;}
.x17{left:253.759500px;}
.x2a{left:264.972000px;}
.xc{left:267.369000px;}
.x8{left:269.835000px;}
.xd{left:296.181000px;}
.x6{left:300.565500px;}
.x2b{left:338.458500px;}
.x23{left:372.076500px;}
.x27{left:375.858000px;}
.x2c{left:387.306000px;}
.x19{left:393.204000px;}
.x1a{left:399.430500px;}
.x28{left:435.588000px;}
.x1e{left:495.912000px;}
.x2d{left:509.041500px;}
.x1f{left:541.065000px;}
.x30{left:551.341500px;}
.x2e{left:558.844500px;}
.x25{left:561.724500px;}
.x31{left:584.137500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls2{letter-spacing:-12.002485pt;}
.ls3{letter-spacing:-0.430368pt;}
.ls4{letter-spacing:-0.001626pt;}
.ls1{letter-spacing:-0.000170pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.003596pt;}
.ls7{letter-spacing:2.656473pt;}
.ls9{letter-spacing:15.456826pt;}
.ls8{letter-spacing:17.448663pt;}
.ls5{letter-spacing:19.155456pt;}
.lsb{letter-spacing:20.369654pt;}
.lsa{letter-spacing:21.087879pt;}
.ls6{letter-spacing:22.123173pt;}
.lsd{letter-spacing:26.928401pt;}
.lse{letter-spacing:29.209725pt;}
.ws3{word-spacing:-38.256000pt;}
.ws18{word-spacing:-28.294305pt;}
.ws90{word-spacing:-27.156719pt;}
.ws9{word-spacing:-26.568000pt;}
.wsf8{word-spacing:-26.566933pt;}
.ws1a{word-spacing:-25.090454pt;}
.wsf0{word-spacing:-24.575109pt;}
.wsc{word-spacing:-24.574013pt;}
.ws55{word-spacing:-23.319450pt;}
.ws0{word-spacing:-23.319157pt;}
.wse6{word-spacing:-15.515089pt;}
.ws5b{word-spacing:-13.867939pt;}
.ws4a{word-spacing:-13.655404pt;}
.ws3f{word-spacing:-13.230333pt;}
.ws109{word-spacing:-13.177199pt;}
.ws81{word-spacing:-13.070931pt;}
.ws60{word-spacing:-12.539593pt;}
.ws2{word-spacing:-12.521745pt;}
.ws4{word-spacing:-12.512535pt;}
.ws75{word-spacing:-12.327057pt;}
.ws67{word-spacing:-12.114522pt;}
.ws10a{word-spacing:-12.013567pt;}
.ws58{word-spacing:-12.008254pt;}
.ws88{word-spacing:-11.955120pt;}
.ws40{word-spacing:-11.901986pt;}
.ws80{word-spacing:-11.530049pt;}
.wsbc{word-spacing:-11.476915pt;}
.ws7a{word-spacing:-11.423781pt;}
.ws44{word-spacing:-11.264380pt;}
.ws74{word-spacing:-11.170918pt;}
.wsb6{word-spacing:-11.104978pt;}
.ws10{word-spacing:-11.092357pt;}
.wsff{word-spacing:-11.051844pt;}
.ws117{word-spacing:-10.998710pt;}
.ws5a{word-spacing:-10.945577pt;}
.ws107{word-spacing:-10.839309pt;}
.wsb2{word-spacing:-10.786175pt;}
.wsf6{word-spacing:-10.679907pt;}
.ws63{word-spacing:-10.626773pt;}
.wsb8{word-spacing:-10.573639pt;}
.ws2a{word-spacing:-10.565924pt;}
.wse5{word-spacing:-10.520506pt;}
.ws15{word-spacing:-10.421567pt;}
.ws102{word-spacing:-10.414238pt;}
.wsca{word-spacing:-10.212077pt;}
.wse3{word-spacing:-10.201702pt;}
.wse2{word-spacing:-10.188193pt;}
.wsf9{word-spacing:-10.185394pt;}
.ws61{word-spacing:-10.095435pt;}
.wsf7{word-spacing:-9.936033pt;}
.wsd2{word-spacing:-9.841091pt;}
.ws59{word-spacing:-9.783377pt;}
.ws71{word-spacing:-9.776631pt;}
.ws93{word-spacing:-9.723498pt;}
.ws5{word-spacing:-9.565333pt;}
.ws62{word-spacing:-9.564096pt;}
.wsb7{word-spacing:-9.459183pt;}
.ws11c{word-spacing:-9.457828pt;}
.ws6a{word-spacing:-9.404694pt;}
.ws68{word-spacing:-9.380289pt;}
.ws11e{word-spacing:-9.351561pt;}
.wsd5{word-spacing:-9.298427pt;}
.wsd3{word-spacing:-9.295394pt;}
.ws39{word-spacing:-9.245293pt;}
.ws36{word-spacing:-9.192159pt;}
.ws3c{word-spacing:-9.139025pt;}
.wsb9{word-spacing:-9.117575pt;}
.wsac{word-spacing:-9.106787pt;}
.ws6c{word-spacing:-9.085891pt;}
.ws65{word-spacing:-9.032757pt;}
.ws43{word-spacing:-8.979623pt;}
.ws8c{word-spacing:-8.965826pt;}
.ws8a{word-spacing:-8.926490pt;}
.wsa9{word-spacing:-8.907644pt;}
.ws94{word-spacing:-8.891970pt;}
.ws6{word-spacing:-8.884797pt;}
.wsd6{word-spacing:-8.882245pt;}
.ws8{word-spacing:-8.875847pt;}
.ws3d{word-spacing:-8.873356pt;}
.wsd{word-spacing:-8.844731pt;}
.wsf{word-spacing:-8.839932pt;}
.ws33{word-spacing:-8.820222pt;}
.ws38{word-spacing:-8.767088pt;}
.ws66{word-spacing:-8.713954pt;}
.ws11d{word-spacing:-8.666134pt;}
.ws5f{word-spacing:-8.660820pt;}
.wsd0{word-spacing:-8.613000pt;}
.ws52{word-spacing:-8.607686pt;}
.wsd4{word-spacing:-8.569604pt;}
.ws128{word-spacing:-8.559866pt;}
.ws5e{word-spacing:-8.554553pt;}
.ws95{word-spacing:-8.529835pt;}
.ws115{word-spacing:-8.506732pt;}
.ws3e{word-spacing:-8.501419pt;}
.wsad{word-spacing:-8.453598pt;}
.ws8d{word-spacing:-8.448285pt;}
.ws22{word-spacing:-8.411961pt;}
.ws54{word-spacing:-8.400464pt;}
.ws100{word-spacing:-8.395151pt;}
.ws19{word-spacing:-8.334065pt;}
.ws29{word-spacing:-8.316714pt;}
.ws1b{word-spacing:-8.312962pt;}
.wse1{word-spacing:-8.294197pt;}
.ws6d{word-spacing:-8.288883pt;}
.wsa0{word-spacing:-8.268216pt;}
.ws10d{word-spacing:-8.241063pt;}
.ws1e{word-spacing:-8.220026pt;}
.ws1c{word-spacing:-8.215610pt;}
.ws2e{word-spacing:-8.211537pt;}
.ws17{word-spacing:-8.209905pt;}
.ws7{word-spacing:-8.192846pt;}
.wsa3{word-spacing:-8.190500pt;}
.ws97{word-spacing:-8.187929pt;}
.ws77{word-spacing:-8.182615pt;}
.wsa5{word-spacing:-8.172575pt;}
.ws1f{word-spacing:-8.172185pt;}
.wsd7{word-spacing:-8.134795pt;}
.wsf4{word-spacing:-8.134397pt;}
.wse4{word-spacing:-8.129482pt;}
.ws10b{word-spacing:-8.081661pt;}
.wsa2{word-spacing:-8.076933pt;}
.wsc1{word-spacing:-8.076348pt;}
.ws21{word-spacing:-8.037952pt;}
.ws2b{word-spacing:-8.033563pt;}
.ws2d{word-spacing:-8.032374pt;}
.ws114{word-spacing:-8.028527pt;}
.ws48{word-spacing:-8.023214pt;}
.wsd1{word-spacing:-8.014520pt;}
.ws101{word-spacing:-7.970080pt;}
.ws123{word-spacing:-7.922260pt;}
.ws34{word-spacing:-7.916946pt;}
.ws53{word-spacing:-7.869126pt;}
.ws37{word-spacing:-7.863812pt;}
.wsa6{word-spacing:-7.837829pt;}
.ws98{word-spacing:-7.815992pt;}
.wsc8{word-spacing:-7.757545pt;}
.ws45{word-spacing:-7.704411pt;}
.ws96{word-spacing:-7.702381pt;}
.wscd{word-spacing:-7.656590pt;}
.wsc3{word-spacing:-7.651277pt;}
.wsab{word-spacing:-7.598143pt;}
.wsb4{word-spacing:-7.545009pt;}
.wsa4{word-spacing:-7.541340pt;}
.ws1{word-spacing:-7.538176pt;}
.ws31{word-spacing:-7.536527pt;}
.ws2f{word-spacing:-7.535445pt;}
.ws24{word-spacing:-7.510418pt;}
.ws9f{word-spacing:-7.491875pt;}
.ws5d{word-spacing:-7.438741pt;}
.ws11a{word-spacing:-7.390921pt;}
.wsf1{word-spacing:-7.332474pt;}
.wscb{word-spacing:-7.226206pt;}
.wsc0{word-spacing:-7.173072pt;}
.ws69{word-spacing:-7.150296pt;}
.ws10f{word-spacing:-7.072118pt;}
.ws41{word-spacing:-7.066804pt;}
.ws3b{word-spacing:-7.013670pt;}
.ws57{word-spacing:-6.996685pt;}
.wsf5{word-spacing:-6.960537pt;}
.wsba{word-spacing:-6.908424pt;}
.ws50{word-spacing:-6.907403pt;}
.wsa1{word-spacing:-6.881413pt;}
.ws106{word-spacing:-6.869131pt;}
.ws8b{word-spacing:-6.854269pt;}
.ws118{word-spacing:-6.801135pt;}
.ws28{word-spacing:-6.761602pt;}
.wsa8{word-spacing:-6.697572pt;}
.wsaa{word-spacing:-6.694867pt;}
.wse{word-spacing:-6.656141pt;}
.ws125{word-spacing:-6.647047pt;}
.ws64{word-spacing:-6.588599pt;}
.ws7d{word-spacing:-6.535466pt;}
.ws27{word-spacing:-6.506486pt;}
.ws25{word-spacing:-6.501857pt;}
.ws1d{word-spacing:-6.454571pt;}
.wsce{word-spacing:-6.434511pt;}
.ws89{word-spacing:-6.429198pt;}
.wsec{word-spacing:-6.402847pt;}
.ws47{word-spacing:-6.376064pt;}
.wscf{word-spacing:-6.350261pt;}
.ws4e{word-spacing:-6.322930pt;}
.ws110{word-spacing:-6.221976pt;}
.wsf2{word-spacing:-6.216662pt;}
.wsc9{word-spacing:-6.213195pt;}
.wsee{word-spacing:-6.163529pt;}
.ws20{word-spacing:-6.128910pt;}
.wsbe{word-spacing:-6.110395pt;}
.ws56{word-spacing:-5.977551pt;}
.wsc7{word-spacing:-5.950993pt;}
.wsc5{word-spacing:-5.949760pt;}
.ws2c{word-spacing:-5.931514pt;}
.ws26{word-spacing:-5.866824pt;}
.ws76{word-spacing:-5.844725pt;}
.wsed{word-spacing:-5.738458pt;}
.ws6e{word-spacing:-5.685324pt;}
.ws46{word-spacing:-5.632190pt;}
.ws5c{word-spacing:-5.579056pt;}
.ws83{word-spacing:-5.525922pt;}
.ws92{word-spacing:-5.472788pt;}
.ws87{word-spacing:-5.472279pt;}
.ws10c{word-spacing:-5.419654pt;}
.ws72{word-spacing:-5.260253pt;}
.ws86{word-spacing:-5.207119pt;}
.wsfe{word-spacing:-4.835182pt;}
.ws23{word-spacing:-4.833630pt;}
.wse8{word-spacing:-4.794128pt;}
.ws9b{word-spacing:-4.782048pt;}
.wsb5{word-spacing:-4.569513pt;}
.ws7e{word-spacing:-4.516379pt;}
.ws4c{word-spacing:-4.463245pt;}
.wsbf{word-spacing:-4.322632pt;}
.ws9e{word-spacing:-4.303843pt;}
.ws9a{word-spacing:-4.250709pt;}
.ws99{word-spacing:-4.231325pt;}
.ws7b{word-spacing:-4.197575pt;}
.wse9{word-spacing:-4.187517pt;}
.ws108{word-spacing:-4.144442pt;}
.ws12{word-spacing:-4.114732pt;}
.wsb3{word-spacing:-4.091308pt;}
.ws14{word-spacing:-4.066118pt;}
.wsc2{word-spacing:-4.038174pt;}
.wsc4{word-spacing:-3.985040pt;}
.ws35{word-spacing:-3.931906pt;}
.ws49{word-spacing:-3.878772pt;}
.ws3a{word-spacing:-3.772505pt;}
.ws7f{word-spacing:-3.742388pt;}
.ws8f{word-spacing:-3.678670pt;}
.wsdb{word-spacing:-3.666237pt;}
.wsd8{word-spacing:-3.613103pt;}
.wsb0{word-spacing:-3.559969pt;}
.ws111{word-spacing:-3.552187pt;}
.ws112{word-spacing:-3.541280pt;}
.ws11b{word-spacing:-3.506835pt;}
.ws7c{word-spacing:-3.453701pt;}
.ws124{word-spacing:-3.347434pt;}
.wsa7{word-spacing:-3.294300pt;}
.wsb1{word-spacing:-3.293929pt;}
.wsea{word-spacing:-3.201305pt;}
.ws13{word-spacing:-3.198982pt;}
.ws78{word-spacing:-3.188032pt;}
.wsef{word-spacing:-3.151391pt;}
.ws73{word-spacing:-3.138785pt;}
.wsbb{word-spacing:-3.134898pt;}
.ws6b{word-spacing:-3.081764pt;}
.ws10e{word-spacing:-3.033944pt;}
.wsfa{word-spacing:-2.975497pt;}
.ws9d{word-spacing:-2.922363pt;}
.wsfd{word-spacing:-2.869229pt;}
.ws91{word-spacing:-2.816095pt;}
.ws122{word-spacing:-2.724458pt;}
.ws116{word-spacing:-2.695284pt;}
.ws4f{word-spacing:-2.656693pt;}
.wse7{word-spacing:-2.644848pt;}
.ws51{word-spacing:-2.550426pt;}
.ws4d{word-spacing:-2.497292pt;}
.ws9c{word-spacing:-2.444158pt;}
.wsc6{word-spacing:-2.420784pt;}
.ws42{word-spacing:-2.391024pt;}
.wsf3{word-spacing:-2.231622pt;}
.ws85{word-spacing:-1.965953pt;}
.wsb{word-spacing:-1.903183pt;}
.ws79{word-spacing:-1.594016pt;}
.ws84{word-spacing:-1.540882pt;}
.wsdf{word-spacing:-1.434614pt;}
.ws4b{word-spacing:-1.381481pt;}
.wsde{word-spacing:-1.333660pt;}
.wsdc{word-spacing:-1.079288pt;}
.ws119{word-spacing:-1.062677pt;}
.wseb{word-spacing:-0.969484pt;}
.wsdd{word-spacing:-0.850142pt;}
.ws103{word-spacing:-0.637606pt;}
.ws70{word-spacing:-0.584473pt;}
.wsbd{word-spacing:-0.053134pt;}
.wse0{word-spacing:-0.002721pt;}
.ws30{word-spacing:0.000000pt;}
.ws11{word-spacing:0.282418pt;}
.ws104{word-spacing:0.371937pt;}
.ws11f{word-spacing:0.743874pt;}
.wsa{word-spacing:0.955752pt;}
.ws82{word-spacing:0.956410pt;}
.wsae{word-spacing:1.222079pt;}
.wsfb{word-spacing:1.275213pt;}
.ws105{word-spacing:1.741631pt;}
.wsfc{word-spacing:1.753418pt;}
.ws6f{word-spacing:2.125355pt;}
.ws127{word-spacing:2.226309pt;}
.ws126{word-spacing:2.497292pt;}
.ws16{word-spacing:2.578777pt;}
.ws121{word-spacing:2.863915pt;}
.ws8e{word-spacing:3.772505pt;}
.wsaf{word-spacing:5.685324pt;}
.wsd9{word-spacing:6.004127pt;}
.ws120{word-spacing:6.269796pt;}
.wsda{word-spacing:6.681535pt;}
.wscc{word-spacing:10.839383pt;}
.ws113{word-spacing:11.788313pt;}
.ws32{word-spacing:33.454573pt;}
._26{margin-left:-7.433100pt;}
._29{margin-left:-5.818279pt;}
._4{margin-left:-4.403740pt;}
._0{margin-left:-3.485547pt;}
._3{margin-left:-2.569291pt;}
._1{margin-left:-1.241851pt;}
._5{width:1.241851pt;}
._2{width:2.138867pt;}
._b{width:3.384719pt;}
._2b{width:4.421617pt;}
._2a{width:5.323291pt;}
._27{width:7.779279pt;}
._7{width:14.606956pt;}
._18{width:16.068956pt;}
._c{width:17.058697pt;}
._13{width:18.529222pt;}
._25{width:19.600593pt;}
._d{width:20.866312pt;}
._12{width:22.017193pt;}
._10{width:23.378901pt;}
._e{width:24.767679pt;}
._16{width:25.663658pt;}
._8{width:26.656634pt;}
._11{width:27.822374pt;}
._15{width:29.296532pt;}
._1a{width:30.425934pt;}
._23{width:31.581289pt;}
._22{width:33.527470pt;}
._9{width:34.615853pt;}
._14{width:36.343565pt;}
._6{width:37.671758pt;}
._2c{width:38.575187pt;}
._1d{width:40.116069pt;}
._19{width:41.129981pt;}
._1b{width:42.194583pt;}
._1e{width:43.270739pt;}
._20{width:45.997133pt;}
._24{width:47.182874pt;}
._28{width:48.628724pt;}
._1f{width:53.366174pt;}
._a{width:54.744391pt;}
._2e{width:57.534298pt;}
._21{width:59.461868pt;}
._2d{width:60.955258pt;}
._1c{width:66.909147pt;}
._17{width:103.532908pt;}
._f{width:496.994182pt;}
.fs8{font-size:31.880533pt;}
.fs0{font-size:42.506667pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.818667pt;}
.fs9{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.136000pt;}
.fs6{font-size:58.181867pt;}
.fs2{font-size:63.760000pt;}
.fs1{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:58.836000pt;}
.y4c{bottom:89.073333pt;}
.yd8{bottom:101.117333pt;}
.y19f{bottom:103.289333pt;}
.y4b{bottom:103.614667pt;}
.yb7{bottom:103.684000pt;}
.y15f{bottom:105.284000pt;}
.y182{bottom:105.421333pt;}
.yfe{bottom:105.540000pt;}
.y1bb{bottom:105.677333pt;}
.y13b{bottom:108.762667pt;}
.y120{bottom:108.928000pt;}
.y1e{bottom:115.778667pt;}
.yd7{bottom:117.722667pt;}
.y4a{bottom:118.156000pt;}
.yb6{bottom:118.296000pt;}
.y19e{bottom:119.893333pt;}
.y15e{bottom:121.494667pt;}
.y181{bottom:121.769333pt;}
.y1ba{bottom:122.281333pt;}
.yb5{bottom:123.374667pt;}
.y13a{bottom:123.729333pt;}
.y11f{bottom:125.004000pt;}
.yfd{bottom:125.786667pt;}
.y1d{bottom:130.389333pt;}
.y49{bottom:132.697333pt;}
.yb4{bottom:133.262667pt;}
.yd6{bottom:134.326667pt;}
.y15d{bottom:137.705333pt;}
.y19d{bottom:140.277333pt;}
.y92{bottom:140.754667pt;}
.y11e{bottom:141.080000pt;}
.y180{bottom:141.897333pt;}
.yfc{bottom:142.253333pt;}
.y48{bottom:147.238667pt;}
.yb3{bottom:147.874667pt;}
.yd5{bottom:150.930667pt;}
.y6f{bottom:156.697333pt;}
.y19c{bottom:156.881333pt;}
.y11d{bottom:157.154667pt;}
.y91{bottom:157.358667pt;}
.y15c{bottom:157.694667pt;}
.y17f{bottom:158.245333pt;}
.yfb{bottom:158.720000pt;}
.y47{bottom:161.780000pt;}
.yb2{bottom:162.486667pt;}
.y1c{bottom:164.721333pt;}
.yd4{bottom:167.536000pt;}
.y139{bottom:172.654667pt;}
.y11c{bottom:173.230667pt;}
.y6e{bottom:173.302667pt;}
.y19b{bottom:173.486667pt;}
.y15b{bottom:173.905333pt;}
.y90{bottom:173.964000pt;}
.yfa{bottom:175.186667pt;}
.y46{bottom:176.321333pt;}
.yb1{bottom:177.098667pt;}
.y17e{bottom:178.372000pt;}
.y1b{bottom:179.333333pt;}
.yb0{bottom:182.177333pt;}
.yd3{bottom:184.140000pt;}
.y138{bottom:188.988000pt;}
.y11b{bottom:189.306667pt;}
.y6d{bottom:189.906667pt;}
.y19a{bottom:190.090667pt;}
.y15a{bottom:190.116000pt;}
.y8f{bottom:190.568000pt;}
.y45{bottom:190.862667pt;}
.yf9{bottom:191.653333pt;}
.y1a{bottom:193.945333pt;}
.y17d{bottom:194.721333pt;}
.yd2{bottom:200.744000pt;}
.y137{bottom:205.320000pt;}
.y11a{bottom:205.382667pt;}
.y44{bottom:205.404000pt;}
.y159{bottom:206.326667pt;}
.y6c{bottom:206.510667pt;}
.y8e{bottom:207.172000pt;}
.yf8{bottom:208.121333pt;}
.y19{bottom:208.557333pt;}
.y199{bottom:210.474667pt;}
.y17c{bottom:211.069333pt;}
.yd1{bottom:217.348000pt;}
.y43{bottom:219.945333pt;}
.y136{bottom:221.653333pt;}
.y158{bottom:222.537333pt;}
.y6b{bottom:223.116000pt;}
.y18{bottom:223.169333pt;}
.y8d{bottom:223.776000pt;}
.yf7{bottom:224.588000pt;}
.y198{bottom:227.078667pt;}
.y17b{bottom:231.197333pt;}
.yaf{bottom:231.810667pt;}
.yd0{bottom:233.953333pt;}
.y42{bottom:234.485333pt;}
.y1b9{bottom:236.124000pt;}
.y17{bottom:237.781333pt;}
.y135{bottom:237.985333pt;}
.y119{bottom:238.101333pt;}
.y157{bottom:238.748000pt;}
.y6a{bottom:239.720000pt;}
.y8c{bottom:240.381333pt;}
.yf6{bottom:241.054667pt;}
.y197{bottom:243.682667pt;}
.y17a{bottom:247.545333pt;}
.yae{bottom:248.242667pt;}
.y41{bottom:249.026667pt;}
.y16{bottom:252.393333pt;}
.y1b8{bottom:252.728000pt;}
.y118{bottom:254.177333pt;}
.y134{bottom:254.318667pt;}
.ycf{bottom:254.337333pt;}
.y156{bottom:254.958667pt;}
.y69{bottom:256.324000pt;}
.y8b{bottom:256.985333pt;}
.yf5{bottom:257.521333pt;}
.y179{bottom:263.893333pt;}
.y196{bottom:264.066667pt;}
.yad{bottom:264.676000pt;}
.y15{bottom:267.005333pt;}
.y40{bottom:267.348000pt;}
.y133{bottom:270.650667pt;}
.yce{bottom:270.941333pt;}
.y155{bottom:271.169333pt;}
.y68{bottom:272.929333pt;}
.y1b7{bottom:273.112000pt;}
.y8a{bottom:273.589333pt;}
.yf4{bottom:273.988000pt;}
.y178{bottom:280.241333pt;}
.y195{bottom:280.672000pt;}
.yac{bottom:281.108000pt;}
.y14{bottom:281.616000pt;}
.y3f{bottom:281.889333pt;}
.y117{bottom:286.896000pt;}
.y132{bottom:286.984000pt;}
.ycd{bottom:287.545333pt;}
.y67{bottom:289.533333pt;}
.y89{bottom:290.194667pt;}
.yf3{bottom:290.456000pt;}
.y154{bottom:291.160000pt;}
.y1b6{bottom:293.496000pt;}
.y3e{bottom:296.430667pt;}
.yab{bottom:297.540000pt;}
.y177{bottom:300.369333pt;}
.y194{bottom:301.056000pt;}
.y116{bottom:302.972000pt;}
.ycc{bottom:304.150667pt;}
.y88{bottom:306.798667pt;}
.yf2{bottom:306.922667pt;}
.y153{bottom:307.370667pt;}
.y66{bottom:309.917333pt;}
.y1b5{bottom:310.101333pt;}
.y3d{bottom:310.972000pt;}
.yaa{bottom:313.972000pt;}
.y176{bottom:316.717333pt;}
.y193{bottom:317.660000pt;}
.y115{bottom:319.048000pt;}
.y13{bottom:319.136000pt;}
.y131{bottom:320.422667pt;}
.ycb{bottom:320.754667pt;}
.y87{bottom:323.402667pt;}
.y152{bottom:323.581333pt;}
.y3c{bottom:325.513333pt;}
.y65{bottom:326.521333pt;}
.y1b4{bottom:326.705333pt;}
.yf1{bottom:327.169333pt;}
.ya9{bottom:330.404000pt;}
.y175{bottom:333.065333pt;}
.y12{bottom:333.748000pt;}
.y130{bottom:336.754667pt;}
.yca{bottom:337.358667pt;}
.y192{bottom:338.044000pt;}
.y114{bottom:338.902667pt;}
.y151{bottom:339.792000pt;}
.y86{bottom:340.008000pt;}
.y3b{bottom:340.054667pt;}
.y64{bottom:343.125333pt;}
.y1b3{bottom:343.309333pt;}
.yf0{bottom:343.636000pt;}
.ya8{bottom:346.837333pt;}
.y174{bottom:349.413333pt;}
.yc9{bottom:353.962667pt;}
.y3a{bottom:354.596000pt;}
.y191{bottom:354.648000pt;}
.y113{bottom:354.978667pt;}
.y150{bottom:356.002667pt;}
.y85{bottom:356.612000pt;}
.y63{bottom:359.730667pt;}
.yef{bottom:360.102667pt;}
.y1b2{bottom:363.693333pt;}
.ya7{bottom:367.048000pt;}
.y11{bottom:368.080000pt;}
.y39{bottom:369.137333pt;}
.y173{bottom:369.541333pt;}
.y12f{bottom:370.193333pt;}
.yc8{bottom:370.568000pt;}
.y112{bottom:371.054667pt;}
.y190{bottom:371.252000pt;}
.y14f{bottom:372.213333pt;}
.y84{bottom:373.216000pt;}
.y62{bottom:376.334667pt;}
.yee{bottom:376.569333pt;}
.y1b1{bottom:380.297333pt;}
.y10{bottom:382.692000pt;}
.ya6{bottom:383.481333pt;}
.y38{bottom:383.678667pt;}
.y172{bottom:385.889333pt;}
.y111{bottom:387.130667pt;}
.yc7{bottom:387.172000pt;}
.y18f{bottom:387.857333pt;}
.y14e{bottom:388.424000pt;}
.y83{bottom:389.820000pt;}
.y61{bottom:392.938667pt;}
.yed{bottom:393.037333pt;}
.y1b0{bottom:396.902667pt;}
.yf{bottom:397.304000pt;}
.y37{bottom:398.220000pt;}
.ya5{bottom:399.913333pt;}
.y171{bottom:402.237333pt;}
.y110{bottom:403.206667pt;}
.y12e{bottom:403.632000pt;}
.yc6{bottom:403.776000pt;}
.y14d{bottom:404.634667pt;}
.y82{bottom:406.425333pt;}
.y18e{bottom:408.241333pt;}
.yec{bottom:409.504000pt;}
.y60{bottom:409.544000pt;}
.ye{bottom:411.914667pt;}
.y36{bottom:412.761333pt;}
.y1af{bottom:417.286667pt;}
.y12d{bottom:419.964000pt;}
.y14c{bottom:420.845333pt;}
.y81{bottom:423.029333pt;}
.y10f{bottom:423.061333pt;}
.y18d{bottom:424.845333pt;}
.yeb{bottom:425.970667pt;}
.y5f{bottom:426.148000pt;}
.yd{bottom:426.526667pt;}
.y35{bottom:427.302667pt;}
.yc5{bottom:432.738667pt;}
.ya3{bottom:433.630667pt;}
.y1ae{bottom:433.890667pt;}
.y170{bottom:435.520000pt;}
.y12c{bottom:436.297333pt;}
.y14b{bottom:437.056000pt;}
.ya4{bottom:438.450667pt;}
.y10e{bottom:439.137333pt;}
.y80{bottom:439.633333pt;}
.yc{bottom:441.138667pt;}
.yea{bottom:442.437333pt;}
.y5e{bottom:442.752000pt;}
.y18c{bottom:445.229333pt;}
.y34{bottom:445.624000pt;}
.ya2{bottom:450.062667pt;}
.y12b{bottom:452.629333pt;}
.y1ad{bottom:454.274667pt;}
.y10d{bottom:455.213333pt;}
.yb{bottom:455.750667pt;}
.ye9{bottom:458.904000pt;}
.y5d{bottom:459.357333pt;}
.y7f{bottom:460.017333pt;}
.y33{bottom:460.165333pt;}
.y18b{bottom:461.833333pt;}
.ya1{bottom:466.494667pt;}
.y14a{bottom:470.200000pt;}
.ya{bottom:470.362667pt;}
.y1ac{bottom:470.878667pt;}
.y10c{bottom:471.289333pt;}
.yc4{bottom:473.172000pt;}
.y32{bottom:474.706667pt;}
.ye8{bottom:475.372000pt;}
.y5c{bottom:475.961333pt;}
.y7e{bottom:476.622667pt;}
.y16f{bottom:477.272000pt;}
.y18a{bottom:478.437333pt;}
.ya0{bottom:482.926667pt;}
.y12a{bottom:486.068000pt;}
.y1ab{bottom:487.482667pt;}
.y31{bottom:489.248000pt;}
.yc3{bottom:489.776000pt;}
.y10b{bottom:491.144000pt;}
.ye7{bottom:491.838667pt;}
.y5b{bottom:492.565333pt;}
.y7d{bottom:493.226667pt;}
.y16e{bottom:493.620000pt;}
.y189{bottom:495.042667pt;}
.y9f{bottom:499.358667pt;}
.y30{bottom:503.789333pt;}
.yc2{bottom:506.381333pt;}
.y10a{bottom:507.220000pt;}
.y1aa{bottom:507.866667pt;}
.y9{bottom:507.882667pt;}
.ye6{bottom:508.305333pt;}
.y5a{bottom:509.169333pt;}
.y7c{bottom:509.830667pt;}
.y16d{bottom:509.968000pt;}
.y149{bottom:511.893333pt;}
.y188{bottom:515.426667pt;}
.y2f{bottom:518.330667pt;}
.y129{bottom:519.506667pt;}
.yc1{bottom:522.985333pt;}
.y109{bottom:523.296000pt;}
.y1a9{bottom:524.472000pt;}
.y8{bottom:524.486667pt;}
.ye5{bottom:524.772000pt;}
.y59{bottom:525.774667pt;}
.y16c{bottom:526.316000pt;}
.y7b{bottom:526.434667pt;}
.y148{bottom:528.104000pt;}
.y187{bottom:532.030667pt;}
.y2e{bottom:532.872000pt;}
.y9e{bottom:533.076000pt;}
.y128{bottom:535.838667pt;}
.y108{bottom:539.372000pt;}
.yc0{bottom:539.589333pt;}
.y58{bottom:542.378667pt;}
.y16b{bottom:542.664000pt;}
.y7a{bottom:543.040000pt;}
.y147{bottom:544.314667pt;}
.y1a8{bottom:544.856000pt;}
.y7{bottom:544.870667pt;}
.ye4{bottom:545.018667pt;}
.y186{bottom:548.634667pt;}
.y9d{bottom:549.509333pt;}
.y2d{bottom:551.192000pt;}
.y127{bottom:552.172000pt;}
.y107{bottom:555.446667pt;}
.ybf{bottom:556.194667pt;}
.y57{bottom:558.982667pt;}
.y16a{bottom:559.012000pt;}
.y79{bottom:559.644000pt;}
.y146{bottom:560.525333pt;}
.y1a7{bottom:561.460000pt;}
.ye3{bottom:561.485333pt;}
.y2c{bottom:565.733333pt;}
.y9c{bottom:565.941333pt;}
.y185{bottom:569.018667pt;}
.ybe{bottom:572.798667pt;}
.y169{bottom:575.361333pt;}
.y56{bottom:575.588000pt;}
.y78{bottom:576.248000pt;}
.y145{bottom:576.736000pt;}
.ye2{bottom:577.952000pt;}
.y2b{bottom:580.274667pt;}
.y1a6{bottom:581.844000pt;}
.y9b{bottom:582.373333pt;}
.y126{bottom:585.610667pt;}
.y184{bottom:585.624000pt;}
.y106{bottom:588.457333pt;}
.ybd{bottom:589.402667pt;}
.y168{bottom:591.709333pt;}
.y55{bottom:592.192000pt;}
.y77{bottom:592.853333pt;}
.y144{bottom:592.946667pt;}
.ye1{bottom:594.420000pt;}
.y2a{bottom:594.816000pt;}
.y1a5{bottom:598.448000pt;}
.y9a{bottom:598.805333pt;}
.y183{bottom:602.228000pt;}
.ybc{bottom:606.006667pt;}
.y167{bottom:608.057333pt;}
.y54{bottom:608.796000pt;}
.y143{bottom:609.157333pt;}
.y29{bottom:609.357333pt;}
.y76{bottom:609.457333pt;}
.y6{bottom:610.609333pt;}
.ye0{bottom:610.886667pt;}
.y99{bottom:615.237333pt;}
.y1a4{bottom:618.832000pt;}
.y125{bottom:619.049333pt;}
.ybb{bottom:622.612000pt;}
.y28{bottom:623.898667pt;}
.y166{bottom:624.405333pt;}
.y142{bottom:625.368000pt;}
.y53{bottom:625.401333pt;}
.y75{bottom:626.061333pt;}
.ydf{bottom:627.353333pt;}
.y5{bottom:629.870667pt;}
.y105{bottom:630.092000pt;}
.y98{bottom:631.670667pt;}
.y124{bottom:635.381333pt;}
.y1a3{bottom:635.436000pt;}
.y27{bottom:638.440000pt;}
.yba{bottom:639.216000pt;}
.y165{bottom:640.753333pt;}
.y141{bottom:641.578667pt;}
.y74{bottom:642.666667pt;}
.yde{bottom:643.820000pt;}
.y104{bottom:646.168000pt;}
.y97{bottom:648.102667pt;}
.y1a2{bottom:652.041333pt;}
.y26{bottom:652.981333pt;}
.y4{bottom:653.116000pt;}
.y123{bottom:655.562667pt;}
.yb9{bottom:655.820000pt;}
.y164{bottom:657.101333pt;}
.y140{bottom:657.789333pt;}
.y73{bottom:659.270667pt;}
.y52{bottom:659.600000pt;}
.ydd{bottom:660.286667pt;}
.y103{bottom:662.242667pt;}
.y96{bottom:664.534667pt;}
.y25{bottom:667.522667pt;}
.yb8{bottom:672.425333pt;}
.y13f{bottom:674.000000pt;}
.y72{bottom:675.874667pt;}
.y51{bottom:676.204000pt;}
.ydc{bottom:676.754667pt;}
.y3{bottom:677.026667pt;}
.y163{bottom:677.229333pt;}
.y102{bottom:678.318667pt;}
.y95{bottom:680.966667pt;}
.y24{bottom:682.064000pt;}
.y122{bottom:689.001333pt;}
.y1a1{bottom:689.029333pt;}
.y13e{bottom:690.210667pt;}
.y71{bottom:692.478667pt;}
.y50{bottom:692.809333pt;}
.ydb{bottom:693.221333pt;}
.y162{bottom:693.577333pt;}
.y101{bottom:694.394667pt;}
.y23{bottom:696.605333pt;}
.y94{bottom:697.398667pt;}
.y1a0{bottom:705.633333pt;}
.y13d{bottom:706.421333pt;}
.y70{bottom:709.084000pt;}
.y4f{bottom:709.413333pt;}
.yda{bottom:709.688000pt;}
.y161{bottom:709.925333pt;}
.y100{bottom:710.470667pt;}
.y22{bottom:711.146667pt;}
.y93{bottom:713.830667pt;}
.y121{bottom:722.440000pt;}
.y4e{bottom:726.017333pt;}
.yd9{bottom:726.154667pt;}
.y160{bottom:726.273333pt;}
.y13c{bottom:726.410667pt;}
.yff{bottom:726.546667pt;}
.y21{bottom:742.621333pt;}
.y2{bottom:755.501333pt;}
.y20{bottom:768.246667pt;}
.y1{bottom:768.253333pt;}
.y4d{bottom:784.186667pt;}
.hb{height:23.910400pt;}
.h2{height:31.880000pt;}
.h7{height:31.880400pt;}
.h6{height:35.864000pt;}
.hc{height:35.865600pt;}
.h4{height:47.820000pt;}
.hd{height:48.139283pt;}
.h9{height:48.298685pt;}
.h5{height:48.300624pt;}
.ha{height:52.712771pt;}
.h8{height:52.887317pt;}
.h3{height:57.384000pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x34{left:73.508000pt;}
.x10{left:75.029333pt;}
.xe{left:76.074667pt;}
.x32{left:80.060000pt;}
.x16{left:82.490667pt;}
.x15{left:84.045333pt;}
.x20{left:85.668000pt;}
.x1b{left:92.116000pt;}
.x24{left:93.638667pt;}
.xf{left:96.000000pt;}
.x1c{left:97.650667pt;}
.x5{left:100.257333pt;}
.x1d{left:101.657333pt;}
.x14{left:103.970667pt;}
.x21{left:109.284000pt;}
.x33{left:110.586667pt;}
.x18{left:116.234667pt;}
.x13{left:117.253333pt;}
.x12{left:125.490667pt;}
.x2f{left:133.958667pt;}
.xa{left:136.005333pt;}
.x9{left:137.442667pt;}
.x3{left:142.125333pt;}
.x26{left:146.212000pt;}
.x29{left:172.048000pt;}
.x1{left:177.341333pt;}
.x4{left:194.061333pt;}
.x22{left:199.489333pt;}
.x2{left:206.484000pt;}
.xb{left:208.017333pt;}
.x7{left:210.942667pt;}
.x11{left:217.593333pt;}
.x17{left:225.564000pt;}
.x2a{left:235.530667pt;}
.xc{left:237.661333pt;}
.x8{left:239.853333pt;}
.xd{left:263.272000pt;}
.x6{left:267.169333pt;}
.x2b{left:300.852000pt;}
.x23{left:330.734667pt;}
.x27{left:334.096000pt;}
.x2c{left:344.272000pt;}
.x19{left:349.514667pt;}
.x1a{left:355.049333pt;}
.x28{left:387.189333pt;}
.x1e{left:440.810667pt;}
.x2d{left:452.481333pt;}
.x1f{left:480.946667pt;}
.x30{left:490.081333pt;}
.x2e{left:496.750667pt;}
.x25{left:499.310667pt;}
.x31{left:519.233333pt;}
}




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