
    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_51ee1db538e58e81c8325918.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6d10d31cafb33251752f2661.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910000;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_6d5f6ddd393a363121a396d1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.846000;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_37d8114c704bfcf6a1249e1c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1711d1cfb0aeadac6134efff.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4ab47933838715f34dd59884.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_e0e0db6e20754c28ba2b1c51.woff')format("woff");}.ff7{font-family:ff7;line-height:0.902000;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_3c940f0e70172a5c8b1771a9.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f7e8b47c62abf0120eabd2a0.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b805dae3dbf3deadd2e3ecab.woff')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_8313c2157b723db46f228665.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_346721f9e8d6ea88adae5052.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2fa10f412abfd3405f32d8a4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.876000;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_b73cbd31f62938d396c0b79c.woff')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_8e3111baa587b4f5539913ce.woff')format("woff");}.fff{font-family:fff;line-height:0.665000;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_492a5f24f6ba5d4d9dbdc0c1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.665000;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_32e7809b2d9626798397c033.woff')format("woff");}.ff11{font-family:ff11;line-height:0.542000;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_3d33c71586fadd433db2da3d.woff')format("woff");}.ff12{font-family:ff12;line-height:0.778000;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;}
.ma{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);}
.m11{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);}
.m21{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);}
.m25{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);}
.m9{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);}
.m18{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);}
.m1a{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);}
.m28{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);}
.m1{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);}
.m27{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);}
.m23{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);}
.m1e{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);}
.m26{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);}
.mf{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.mc{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);}
.m4{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);}
.m22{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);}
.m10{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);}
.m2{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);}
.m8{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);}
.m17{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);}
.m1c{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);}
.m13{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);}
.md{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);}
.m14{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);}
.m1f{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);}
.mb{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);}
.m1d{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);}
.m15{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);}
.m6{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);}
.m7{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);}
.m16{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);}
.m19{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);}
.m20{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);}
.v1{vertical-align:-10.668000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.002147px;}
.ls7{letter-spacing:2.984915px;}
.ls9{letter-spacing:2.988479px;}
.ls8{letter-spacing:2.990915px;}
.lsb{letter-spacing:21.694349px;}
.lsa{letter-spacing:21.700349px;}
.ls5{letter-spacing:26.202261px;}
.ls2{letter-spacing:29.681966px;}
.ls3{letter-spacing:30.515230px;}
.ls4{letter-spacing:31.901181px;}
.ls1{letter-spacing:31.960004px;}
.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;}
}
.ws31{word-spacing:-33.192028px;}
.ws99{word-spacing:-32.544027px;}
.ws68{word-spacing:-17.947651px;}
.ws75{word-spacing:-16.834923px;}
.ws73{word-spacing:-16.822362px;}
.ws105{word-spacing:-16.769469px;}
.wsa5{word-spacing:-16.376741px;}
.ws8b{word-spacing:-16.114923px;}
.wse8{word-spacing:-15.984013px;}
.ws2a{word-spacing:-15.918559px;}
.ws28{word-spacing:-15.853104px;}
.ws8e{word-spacing:-15.722195px;}
.wsc9{word-spacing:-15.656740px;}
.ws55{word-spacing:-15.591286px;}
.wsec{word-spacing:-15.394922px;}
.ws95{word-spacing:-15.329467px;}
.ws111{word-spacing:-15.264013px;}
.ws2c{word-spacing:-15.067649px;}
.wsa4{word-spacing:-15.002194px;}
.wsbd{word-spacing:-14.805831px;}
.wsbb{word-spacing:-14.740376px;}
.ws23{word-spacing:-14.674921px;}
.wsb0{word-spacing:-14.609467px;}
.ws6f{word-spacing:-14.478558px;}
.wsc4{word-spacing:-14.347648px;}
.wsf6{word-spacing:-14.282194px;}
.ws69{word-spacing:-14.275648px;}
.wsc2{word-spacing:-14.216739px;}
.wsc0{word-spacing:-14.151285px;}
.ws12b{word-spacing:-14.085830px;}
.ws115{word-spacing:-13.882921px;}
.ws30{word-spacing:-13.824012px;}
.wseb{word-spacing:-13.627648px;}
.wsf7{word-spacing:-13.562193px;}
.ws57{word-spacing:-13.442427px;}
.ws97{word-spacing:-13.365829px;}
.wsbe{word-spacing:-13.234920px;}
.ws47{word-spacing:-13.104011px;}
.wsc1{word-spacing:-12.966556px;}
.ws9b{word-spacing:-12.907647px;}
.ws60{word-spacing:-12.901102px;}
.wsa0{word-spacing:-12.776738px;}
.ws51{word-spacing:-12.645829px;}
.wsc7{word-spacing:-12.580374px;}
.wsa3{word-spacing:-12.514920px;}
.ws6c{word-spacing:-12.449465px;}
.ws103{word-spacing:-12.384010px;}
.ws48{word-spacing:-12.318556px;}
.ws119{word-spacing:-12.253101px;}
.ws45{word-spacing:-12.187647px;}
.ws94{word-spacing:-12.122192px;}
.ws6a{word-spacing:-11.984737px;}
.ws61{word-spacing:-11.925828px;}
.ws1e{word-spacing:-11.860374px;}
.ws37{word-spacing:-11.794919px;}
.ws4a{word-spacing:-11.729464px;}
.wse5{word-spacing:-11.664010px;}
.wsa8{word-spacing:-11.657464px;}
.ws25{word-spacing:-11.598555px;}
.wscb{word-spacing:-11.533101px;}
.ws1c{word-spacing:-11.467646px;}
.ws120{word-spacing:-11.461100px;}
.ws46{word-spacing:-11.402191px;}
.ws10b{word-spacing:-11.346011px;}
.wsb4{word-spacing:-11.336737px;}
.ws56{word-spacing:-11.271282px;}
.ws4c{word-spacing:-11.205828px;}
.ws11a{word-spacing:-11.199282px;}
.ws1a{word-spacing:-11.140373px;}
.ws44{word-spacing:-11.133827px;}
.ws8c{word-spacing:-11.127749px;}
.ws19{word-spacing:-11.074918px;}
.ws1b{word-spacing:-11.009464px;}
.ws87{word-spacing:-10.998336px;}
.wsf3{word-spacing:-10.981175px;}
.ws78{word-spacing:-10.960162px;}
.ws36{word-spacing:-10.944009px;}
.ws124{word-spacing:-10.879600px;}
.ws129{word-spacing:-10.879573px;}
.ws126{word-spacing:-10.879124px;}
.ws1f{word-spacing:-10.878555px;}
.ws116{word-spacing:-10.855346px;}
.wsd4{word-spacing:-10.850296px;}
.ws125{word-spacing:-10.849760px;}
.ws76{word-spacing:-10.821868px;}
.ws38{word-spacing:-10.813415px;}
.ws22{word-spacing:-10.813100px;}
.ws20{word-spacing:-10.747645px;}
.ws49{word-spacing:-10.741100px;}
.ws3c{word-spacing:-10.713467px;}
.wsa6{word-spacing:-10.690660px;}
.ws3e{word-spacing:-10.682191px;}
.ws11f{word-spacing:-10.675645px;}
.ws70{word-spacing:-10.656625px;}
.ws27{word-spacing:-10.616736px;}
.wse9{word-spacing:-10.615242px;}
.wse4{word-spacing:-10.610191px;}
.ws18{word-spacing:-10.551282px;}
.ws74{word-spacing:-10.534079px;}
.ws32{word-spacing:-10.485827px;}
.ws10c{word-spacing:-10.479281px;}
.ws26{word-spacing:-10.420372px;}
.ws9f{word-spacing:-10.413827px;}
.wsb{word-spacing:-10.394977px;}
.ws62{word-spacing:-10.354918px;}
.ws6d{word-spacing:-10.348372px;}
.ws11{word-spacing:-10.335201px;}
.ws24{word-spacing:-10.289463px;}
.ws5e{word-spacing:-10.282918px;}
.wse{word-spacing:-10.275426px;}
.wsb2{word-spacing:-10.224009px;}
.ws67{word-spacing:-10.217463px;}
.ws7b{word-spacing:-10.158554px;}
.ws7c{word-spacing:-10.152008px;}
.ws4{word-spacing:-10.096099px;}
.wsd7{word-spacing:-10.093099px;}
.ws5d{word-spacing:-10.086554px;}
.ws7d{word-spacing:-10.027645px;}
.wse6{word-spacing:-10.021099px;}
.ws9{word-spacing:-9.976548px;}
.ws2b{word-spacing:-9.962190px;}
.ws5c{word-spacing:-9.955645px;}
.wsa{word-spacing:-9.916772px;}
.wsb5{word-spacing:-9.896736px;}
.ws39{word-spacing:-9.890190px;}
.ws14{word-spacing:-9.856996px;}
.wsc6{word-spacing:-9.824735px;}
.wsf0{word-spacing:-9.765826px;}
.ws71{word-spacing:-9.759281px;}
.wsfd{word-spacing:-9.700372px;}
.wsea{word-spacing:-9.693826px;}
.ws3{word-spacing:-9.677670px;}
.ws96{word-spacing:-9.634917px;}
.ws33{word-spacing:-9.628372px;}
.ws12{word-spacing:-9.617894px;}
.ws29{word-spacing:-9.599077px;}
.wse0{word-spacing:-9.569463px;}
.ws6b{word-spacing:-9.562917px;}
.ws6e{word-spacing:-9.504008px;}
.wsd3{word-spacing:-9.497462px;}
.wsc{word-spacing:-9.438567px;}
.ws63{word-spacing:-9.432008px;}
.ws4e{word-spacing:-9.373099px;}
.wsb1{word-spacing:-9.361511px;}
.wsf4{word-spacing:-9.307644px;}
.wsbf{word-spacing:-9.242190px;}
.ws112{word-spacing:-9.170189px;}
.wsd{word-spacing:-9.079914px;}
.ws3f{word-spacing:-9.045826px;}
.ws85{word-spacing:-8.980371px;}
.ws35{word-spacing:-8.914917px;}
.ws42{word-spacing:-8.849462px;}
.ws40{word-spacing:-8.820741px;}
.ws4d{word-spacing:-8.784007px;}
.ws5{word-spacing:-8.781036px;}
.ws8a{word-spacing:-8.718553px;}
.ws11b{word-spacing:-8.653098px;}
.ws64{word-spacing:-8.581098px;}
.ws80{word-spacing:-8.536679px;}
.ws82{word-spacing:-8.522189px;}
.ws43{word-spacing:-8.456734px;}
.ws90{word-spacing:-8.408179px;}
.ws92{word-spacing:-8.391280px;}
.ws12a{word-spacing:-8.388566px;}
.ws5b{word-spacing:-8.384734px;}
.ws7{word-spacing:-8.362606px;}
.wsab{word-spacing:-8.325825px;}
.ws89{word-spacing:-8.260371px;}
.ws41{word-spacing:-8.188370px;}
.ws84{word-spacing:-8.129461px;}
.wsca{word-spacing:-7.998552px;}
.wsb7{word-spacing:-7.933098px;}
.ws127{word-spacing:-7.867643px;}
.wse7{word-spacing:-7.802188px;}
.ws34{word-spacing:-7.736734px;}
.wsc8{word-spacing:-7.717430px;}
.wsa1{word-spacing:-7.671279px;}
.ws3b{word-spacing:-7.540370px;}
.ws58{word-spacing:-7.409461px;}
.wsb8{word-spacing:-7.337461px;}
.ws21{word-spacing:-7.278552px;}
.ws128{word-spacing:-7.272006px;}
.ws118{word-spacing:-7.213097px;}
.wsce{word-spacing:-7.147642px;}
.ws52{word-spacing:-7.082188px;}
.wse1{word-spacing:-7.016733px;}
.ws13{word-spacing:-6.927992px;}
.ws72{word-spacing:-6.886146px;}
.ws9d{word-spacing:-6.843547px;}
.ws3a{word-spacing:-6.820369px;}
.wsad{word-spacing:-6.754915px;}
.ws53{word-spacing:-6.748369px;}
.wscf{word-spacing:-6.689460px;}
.wsc5{word-spacing:-6.624006px;}
.ws4f{word-spacing:-6.560951px;}
.ws65{word-spacing:-6.558551px;}
.wsaf{word-spacing:-6.548803px;}
.wsaa{word-spacing:-6.540127px;}
.ws123{word-spacing:-6.537009px;}
.ws79{word-spacing:-6.493096px;}
.ws59{word-spacing:-6.427642px;}
.ws3d{word-spacing:-6.390489px;}
.ws4b{word-spacing:-6.377221px;}
.ws9e{word-spacing:-6.375006px;}
.ws88{word-spacing:-6.317403px;}
.ws5f{word-spacing:-6.290187px;}
.ws8d{word-spacing:-6.263176px;}
.ws98{word-spacing:-6.231278px;}
.wsd0{word-spacing:-6.218280px;}
.wsfc{word-spacing:-6.202017px;}
.ws10a{word-spacing:-6.147437px;}
.wsd1{word-spacing:-6.121430px;}
.wsda{word-spacing:-6.110967px;}
.ws77{word-spacing:-6.108772px;}
.wsfb{word-spacing:-6.105339px;}
.wsd5{word-spacing:-6.100369px;}
.ws66{word-spacing:-6.093823px;}
.ws50{word-spacing:-6.090822px;}
.wsd9{word-spacing:-5.969460px;}
.ws5a{word-spacing:-5.962914px;}
.ws86{word-spacing:-5.927671px;}
.wsfa{word-spacing:-5.919321px;}
.wsa7{word-spacing:-5.904005px;}
.wsde{word-spacing:-5.838550px;}
.wsd8{word-spacing:-5.831688px;}
.ws10d{word-spacing:-5.809661px;}
.wsdf{word-spacing:-5.773096px;}
.wsdc{word-spacing:-5.764457px;}
.ws2d{word-spacing:-5.707641px;}
.wsd6{word-spacing:-5.701096px;}
.ws100{word-spacing:-5.700864px;}
.wsdb{word-spacing:-5.700849px;}
.wsac{word-spacing:-5.668024px;}
.ws83{word-spacing:-5.642187px;}
.wsdd{word-spacing:-5.606166px;}
.ws106{word-spacing:-5.585904px;}
.wsa2{word-spacing:-5.576732px;}
.wse3{word-spacing:-5.373823px;}
.wse2{word-spacing:-5.336833px;}
.ws93{word-spacing:-5.315520px;}
.wsb3{word-spacing:-5.174692px;}
.ws117{word-spacing:-5.053095px;}
.wsa9{word-spacing:-4.981084px;}
.ws10f{word-spacing:-4.922186px;}
.ws11c{word-spacing:-4.856731px;}
.wsb9{word-spacing:-4.836570px;}
.wsd2{word-spacing:-4.732461px;}
.ws110{word-spacing:-4.588367px;}
.ws9c{word-spacing:-4.398549px;}
.ws7e{word-spacing:-4.333095px;}
.wsc3{word-spacing:-4.136731px;}
.ws7f{word-spacing:-4.064731px;}
.ws10e{word-spacing:-3.940367px;}
.ws81{word-spacing:-3.890379px;}
.ws11d{word-spacing:-3.874912px;}
.ws2e{word-spacing:-3.809458px;}
.ws107{word-spacing:-3.678549px;}
.ws54{word-spacing:-3.547639px;}
.ws113{word-spacing:-3.416730px;}
.ws109{word-spacing:-3.410185px;}
.ws8{word-spacing:-3.401232px;}
.ws114{word-spacing:-3.213821px;}
.wsae{word-spacing:-3.053692px;}
.wsf8{word-spacing:-3.024003px;}
.ws121{word-spacing:-2.762184px;}
.ws122{word-spacing:-2.624729px;}
.wsee{word-spacing:-2.500366px;}
.ws91{word-spacing:-2.409196px;}
.wsed{word-spacing:-2.296100px;}
.ws6{word-spacing:-2.205720px;}
.ws9a{word-spacing:-2.173093px;}
.wsf5{word-spacing:-1.845217px;}
.wsb6{word-spacing:-1.714911px;}
.wsff{word-spacing:-1.366681px;}
.ws7a{word-spacing:-0.798546px;}
.wsf2{word-spacing:-0.696848px;}
.ws8f{word-spacing:-0.667637px;}
.ws102{word-spacing:-0.499825px;}
.wsfe{word-spacing:-0.227723px;}
.ws11e{word-spacing:-0.086077px;}
.ws2{word-spacing:-0.071731px;}
.wsbc{word-spacing:-0.065455px;}
.wsf{word-spacing:-0.059776px;}
.wsba{word-spacing:-0.047821px;}
.ws1d{word-spacing:0.000000px;}
.ws101{word-spacing:0.135098px;}
.ws16{word-spacing:0.663509px;}
.ws2f{word-spacing:0.871618px;}
.ws108{word-spacing:2.604539px;}
.ws104{word-spacing:3.921532px;}
.wsf1{word-spacing:4.178856px;}
.wscd{word-spacing:5.749349px;}
.wsf9{word-spacing:7.002801px;}
.wscc{word-spacing:10.865464px;}
.ws10{word-spacing:21.160562px;}
.ws1{word-spacing:23.312640px;}
.wsef{word-spacing:31.418178px;}
.ws17{word-spacing:31.504255px;}
.ws0{word-spacing:32.227229px;}
.ws15{word-spacing:43.599582px;}
._23{margin-left:-8.005180px;}
._11{margin-left:-6.543496px;}
._6{margin-left:-4.901599px;}
._15{margin-left:-3.704188px;}
._1{margin-left:-2.685602px;}
._3{margin-left:-1.673717px;}
._5{width:1.673717px;}
._0{width:2.685602px;}
._f{width:4.574537px;}
._22{width:6.174289px;}
._1f{width:17.021538px;}
._12{width:18.652597px;}
._9{width:20.503031px;}
._14{width:21.520786px;}
._10{width:22.583801px;}
._19{width:24.033844px;}
._2{width:25.225303px;}
._4{width:26.250088px;}
._a{width:27.910906px;}
._c{width:29.225969px;}
._7{width:30.664883px;}
._1a{width:31.745481px;}
._13{width:33.084640px;}
._1b{width:34.431083px;}
._18{width:35.557781px;}
._b{width:36.992497px;}
._17{width:38.531885px;}
._21{width:39.599204px;}
._e{width:42.005674px;}
._20{width:44.029591px;}
._1d{width:45.635890px;}
._24{width:47.520040px;}
._8{width:50.625634px;}
._25{width:51.868146px;}
._1c{width:59.432777px;}
._1e{width:74.814608px;}
._16{width:80.697600px;}
._d{width:94.684920px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y26{bottom:61.467000px;}
.y25{bottom:106.299000px;}
.y14e{bottom:107.955000px;}
.yda{bottom:111.726000px;}
.yfd{bottom:115.314000px;}
.y81{bottom:117.550500px;}
.y134{bottom:118.728000px;}
.yee{bottom:119.797500px;}
.y19b{bottom:120.282000px;}
.ye0{bottom:120.531000px;}
.yc4{bottom:125.814000px;}
.y50{bottom:129.336000px;}
.y24{bottom:130.951500px;}
.y14d{bottom:132.607500px;}
.yd9{bottom:136.380000px;}
.yfc{bottom:139.966500px;}
.y80{bottom:142.203000px;}
.y133{bottom:143.382000px;}
.yed{bottom:144.450000px;}
.y19a{bottom:144.934500px;}
.ydf{bottom:145.183500px;}
.yc3{bottom:150.466500px;}
.y16c{bottom:153.415500px;}
.y4f{bottom:153.988500px;}
.y23{bottom:155.604000px;}
.yd8{bottom:161.032500px;}
.y7f{bottom:166.855500px;}
.y14c{bottom:167.826000px;}
.y5d{bottom:167.965500px;}
.y132{bottom:168.034500px;}
.y9e{bottom:169.102500px;}
.y199{bottom:169.588500px;}
.yde{bottom:169.837500px;}
.yc2{bottom:175.119000px;}
.yfb{bottom:178.068000px;}
.y4e{bottom:178.642500px;}
.y22{bottom:180.258000px;}
.yd7{bottom:185.685000px;}
.y7e{bottom:191.508000px;}
.y5c{bottom:192.618000px;}
.y131{bottom:192.687000px;}
.y9d{bottom:193.755000px;}
.y198{bottom:194.241000px;}
.ydd{bottom:194.490000px;}
.yc1{bottom:199.771500px;}
.yfa{bottom:202.720500px;}
.y4d{bottom:203.295000px;}
.y21{bottom:204.910500px;}
.yd6{bottom:210.337500px;}
.y14b{bottom:215.370000px;}
.y7d{bottom:216.160500px;}
.y5b{bottom:217.270500px;}
.y130{bottom:217.339500px;}
.y9c{bottom:218.407500px;}
.y197{bottom:218.893500px;}
.ydc{bottom:219.142500px;}
.yc0{bottom:224.424000px;}
.y16b{bottom:227.374500px;}
.y4c{bottom:227.947500px;}
.y186{bottom:229.563000px;}
.yd5{bottom:234.990000px;}
.y14a{bottom:240.024000px;}
.y7c{bottom:240.814500px;}
.yf9{bottom:240.823500px;}
.y5a{bottom:241.923000px;}
.y12f{bottom:241.992000px;}
.y9b{bottom:243.060000px;}
.y196{bottom:243.546000px;}
.y105{bottom:243.795000px;}
.y20{bottom:245.763000px;}
.y16a{bottom:252.027000px;}
.y4b{bottom:252.600000px;}
.y1a3{bottom:254.215500px;}
.ydb{bottom:254.361000px;}
.ybf{bottom:259.642500px;}
.y149{bottom:264.676500px;}
.y7b{bottom:265.467000px;}
.yf8{bottom:265.476000px;}
.y12e{bottom:266.644500px;}
.y185{bottom:266.971500px;}
.y9a{bottom:267.712500px;}
.y195{bottom:268.198500px;}
.y104{bottom:268.447500px;}
.y169{bottom:276.679500px;}
.y4a{bottom:277.252500px;}
.y1a2{bottom:278.868000px;}
.y59{bottom:278.935500px;}
.yd4{bottom:284.295000px;}
.y148{bottom:289.329000px;}
.y12d{bottom:291.297000px;}
.y184{bottom:291.624000px;}
.y99{bottom:292.365000px;}
.y194{bottom:292.851000px;}
.y103{bottom:293.100000px;}
.y168{bottom:301.332000px;}
.y49{bottom:301.905000px;}
.y1f{bottom:302.388000px;}
.y1a1{bottom:303.520500px;}
.yf7{bottom:303.579000px;}
.y58{bottom:303.588000px;}
.ybe{bottom:307.188000px;}
.y7a{bottom:308.052000px;}
.y147{bottom:313.981500px;}
.y12c{bottom:315.951000px;}
.y183{bottom:316.276500px;}
.y98{bottom:317.019000px;}
.y193{bottom:317.503500px;}
.y102{bottom:317.752500px;}
.yd3{bottom:319.513500px;}
.y1e{bottom:324.141000px;}
.y167{bottom:325.984500px;}
.y48{bottom:326.557500px;}
.y1a0{bottom:328.173000px;}
.yf6{bottom:328.231500px;}
.y57{bottom:328.240500px;}
.ybd{bottom:331.840500px;}
.y79{bottom:332.704500px;}
.y12b{bottom:340.603500px;}
.y182{bottom:340.929000px;}
.yec{bottom:341.671500px;}
.y192{bottom:342.157500px;}
.y101{bottom:342.406500px;}
.y1d{bottom:345.894000px;}
.y146{bottom:349.200000px;}
.y166{bottom:350.637000px;}
.y47{bottom:351.210000px;}
.y19f{bottom:352.825500px;}
.y56{bottom:352.894500px;}
.ybc{bottom:356.493000px;}
.y78{bottom:357.357000px;}
.y97{bottom:359.604000px;}
.y12a{bottom:365.256000px;}
.y181{bottom:365.581500px;}
.yeb{bottom:366.324000px;}
.yf5{bottom:366.333000px;}
.y191{bottom:366.810000px;}
.yd2{bottom:367.059000px;}
.y1c{bottom:367.645500px;}
.y165{bottom:375.289500px;}
.y46{bottom:375.864000px;}
.y19e{bottom:377.479500px;}
.ybb{bottom:381.145500px;}
.y77{bottom:382.009500px;}
.y96{bottom:384.256500px;}
.y1b{bottom:389.398500px;}
.y55{bottom:389.907000px;}
.y180{bottom:390.235500px;}
.yea{bottom:390.976500px;}
.yf4{bottom:390.985500px;}
.y190{bottom:391.462500px;}
.yd1{bottom:391.711500px;}
.y145{bottom:396.744000px;}
.y164{bottom:399.943500px;}
.y129{bottom:400.474500px;}
.y45{bottom:400.516500px;}
.y19d{bottom:402.132000px;}
.yba{bottom:405.798000px;}
.y76{bottom:406.663500px;}
.y95{bottom:408.909000px;}
.y1a{bottom:411.150000px;}
.y54{bottom:414.559500px;}
.ye9{bottom:415.629000px;}
.yf3{bottom:415.639500px;}
.y18f{bottom:416.115000px;}
.yd0{bottom:416.364000px;}
.y144{bottom:421.396500px;}
.y163{bottom:424.596000px;}
.y44{bottom:425.169000px;}
.y1a6{bottom:426.784500px;}
.y17f{bottom:427.644000px;}
.yb9{bottom:430.450500px;}
.y19{bottom:432.903000px;}
.y94{bottom:433.561500px;}
.y53{bottom:439.212000px;}
.yf2{bottom:440.292000px;}
.y18e{bottom:440.767500px;}
.ycf{bottom:441.016500px;}
.y19c{bottom:442.984500px;}
.y75{bottom:444.765000px;}
.y143{bottom:446.050500px;}
.y128{bottom:448.743000px;}
.y162{bottom:449.248500px;}
.y43{bottom:449.821500px;}
.y1a5{bottom:451.437000px;}
.y17e{bottom:452.296500px;}
.y18{bottom:454.656000px;}
.yb8{bottom:455.104500px;}
.ye8{bottom:458.214000px;}
.yf1{bottom:464.944500px;}
.y18d{bottom:465.420000px;}
.yce{bottom:465.669000px;}
.y74{bottom:469.417500px;}
.y142{bottom:470.703000px;}
.y93{bottom:471.664500px;}
.y127{bottom:473.397000px;}
.y161{bottom:473.901000px;}
.y52{bottom:474.430500px;}
.y42{bottom:474.474000px;}
.y17{bottom:476.407500px;}
.y17d{bottom:476.949000px;}
.yb7{bottom:479.757000px;}
.ye7{bottom:482.868000px;}
.yf0{bottom:489.597000px;}
.y18c{bottom:490.072500px;}
.ycd{bottom:490.321500px;}
.y1a4{bottom:492.289500px;}
.y73{bottom:494.070000px;}
.y141{bottom:495.355500px;}
.y92{bottom:496.317000px;}
.y126{bottom:498.049500px;}
.y16{bottom:498.160500px;}
.y160{bottom:498.553500px;}
.y41{bottom:499.126500px;}
.y17c{bottom:501.601500px;}
.yb6{bottom:504.409500px;}
.ye6{bottom:507.520500px;}
.ycc{bottom:514.974000px;}
.y51{bottom:516.009000px;}
.y72{bottom:518.722500px;}
.y15{bottom:519.912000px;}
.y91{bottom:520.969500px;}
.y125{bottom:522.702000px;}
.y15f{bottom:523.206000px;}
.y40{bottom:523.779000px;}
.yef{bottom:524.815500px;}
.y17b{bottom:526.254000px;}
.yb5{bottom:529.062000px;}
.y140{bottom:530.574000px;}
.y18b{bottom:530.926500px;}
.ye5{bottom:532.173000px;}
.ycb{bottom:539.628000px;}
.y14{bottom:541.665000px;}
.y71{bottom:543.376500px;}
.y90{bottom:545.622000px;}
.y124{bottom:547.354500px;}
.y15e{bottom:547.858500px;}
.y3f{bottom:548.433000px;}
.yb4{bottom:553.714500px;}
.ye4{bottom:556.825500px;}
.y13{bottom:563.418000px;}
.y17a{bottom:563.662500px;}
.yca{bottom:564.280500px;}
.y8f{bottom:570.274500px;}
.y123{bottom:572.007000px;}
.y15d{bottom:572.511000px;}
.y3e{bottom:573.085500px;}
.y13f{bottom:578.118000px;}
.yb3{bottom:578.367000px;}
.y70{bottom:581.478000px;}
.y12{bottom:585.169500px;}
.y18a{bottom:588.207000px;}
.y179{bottom:588.316500px;}
.yc9{bottom:588.933000px;}
.y8e{bottom:594.927000px;}
.y122{bottom:596.659500px;}
.y15c{bottom:597.165000px;}
.y3d{bottom:597.738000px;}
.y13e{bottom:602.770500px;}
.yb2{bottom:603.019500px;}
.y6f{bottom:606.130500px;}
.y11{bottom:606.922500px;}
.y189{bottom:612.861000px;}
.y178{bottom:612.969000px;}
.yc8{bottom:613.585500px;}
.y8d{bottom:619.581000px;}
.y121{bottom:621.312000px;}
.y3c{bottom:622.390500px;}
.y13d{bottom:627.423000px;}
.yb1{bottom:627.672000px;}
.y10{bottom:628.674000px;}
.y6e{bottom:630.783000px;}
.y15b{bottom:632.382000px;}
.y188{bottom:637.513500px;}
.y177{bottom:637.621500px;}
.yc7{bottom:638.238000px;}
.y8c{bottom:644.233500px;}
.y120{bottom:645.966000px;}
.y3b{bottom:647.043000px;}
.yf{bottom:650.427000px;}
.y13c{bottom:652.077000px;}
.yb0{bottom:652.326000px;}
.y6d{bottom:655.435500px;}
.y187{bottom:662.166000px;}
.y176{bottom:662.274000px;}
.yc6{bottom:662.890500px;}
.y11f{bottom:670.618500px;}
.y3a{bottom:671.695500px;}
.ye{bottom:672.178500px;}
.y13b{bottom:676.729500px;}
.yaf{bottom:676.978500px;}
.y15a{bottom:680.652000px;}
.y8b{bottom:686.818500px;}
.y175{bottom:686.926500px;}
.y100{bottom:687.543000px;}
.yd{bottom:693.931500px;}
.y11e{bottom:695.271000px;}
.y39{bottom:696.348000px;}
.y6c{bottom:698.022000px;}
.yc5{bottom:698.109000px;}
.y13a{bottom:701.382000px;}
.yae{bottom:701.631000px;}
.y159{bottom:705.304500px;}
.y8a{bottom:711.471000px;}
.y10e{bottom:712.197000px;}
.yc{bottom:715.684500px;}
.y11d{bottom:719.923500px;}
.y38{bottom:721.000500px;}
.y6b{bottom:722.674500px;}
.yff{bottom:722.761500px;}
.y174{bottom:724.335000px;}
.yad{bottom:726.283500px;}
.y158{bottom:729.958500px;}
.y89{bottom:736.123500px;}
.y139{bottom:736.600500px;}
.y10d{bottom:736.849500px;}
.yb{bottom:737.436000px;}
.y11c{bottom:744.576000px;}
.y37{bottom:745.654500px;}
.y6a{bottom:747.327000px;}
.y173{bottom:748.987500px;}
.yac{bottom:750.936000px;}
.y157{bottom:754.611000px;}
.ya{bottom:759.189000px;}
.y88{bottom:760.776000px;}
.y10c{bottom:761.502000px;}
.y11b{bottom:769.228500px;}
.y36{bottom:770.307000px;}
.y69{bottom:771.979500px;}
.yab{bottom:775.588500px;}
.y156{bottom:779.263500px;}
.y9{bottom:780.940500px;}
.y138{bottom:784.144500px;}
.y87{bottom:785.430000px;}
.y10b{bottom:786.154500px;}
.y172{bottom:790.558500px;}
.y11a{bottom:793.881000px;}
.y35{bottom:794.959500px;}
.y68{bottom:796.632000px;}
.yaa{bottom:800.241000px;}
.y8{bottom:802.693500px;}
.y155{bottom:803.916000px;}
.y137{bottom:808.797000px;}
.y86{bottom:810.082500px;}
.y10a{bottom:810.807000px;}
.y119{bottom:818.533500px;}
.y34{bottom:819.612000px;}
.y67{bottom:821.284500px;}
.ya9{bottom:824.895000px;}
.y171{bottom:828.322500px;}
.y7{bottom:829.612500px;}
.y85{bottom:834.735000px;}
.y109{bottom:835.459500px;}
.y154{bottom:842.019000px;}
.y118{bottom:843.187500px;}
.y136{bottom:844.015500px;}
.y33{bottom:844.264500px;}
.y66{bottom:845.938500px;}
.ya8{bottom:849.547500px;}
.y170{bottom:852.975000px;}
.y84{bottom:859.387500px;}
.y108{bottom:860.112000px;}
.y153{bottom:866.671500px;}
.y117{bottom:867.840000px;}
.y32{bottom:868.917000px;}
.y65{bottom:870.591000px;}
.ya7{bottom:874.200000px;}
.y83{bottom:884.040000px;}
.y107{bottom:884.764500px;}
.y135{bottom:885.594000px;}
.y6{bottom:889.528500px;}
.y16f{bottom:890.739000px;}
.y152{bottom:891.324000px;}
.y116{bottom:892.492500px;}
.y31{bottom:893.569500px;}
.y64{bottom:895.243500px;}
.ya6{bottom:898.852500px;}
.ye3{bottom:908.692500px;}
.y151{bottom:915.976500px;}
.y115{bottom:917.145000px;}
.y30{bottom:918.223500px;}
.y82{bottom:919.258500px;}
.y63{bottom:919.896000px;}
.y106{bottom:919.983000px;}
.y5{bottom:927.256500px;}
.y16e{bottom:932.310000px;}
.ye2{bottom:933.345000px;}
.ya5{bottom:934.071000px;}
.y150{bottom:940.629000px;}
.y2f{bottom:942.876000px;}
.y114{bottom:952.363500px;}
.y4{bottom:952.635000px;}
.y62{bottom:955.114500px;}
.y16d{bottom:956.962500px;}
.yfe{bottom:965.073000px;}
.y2e{bottom:967.528500px;}
.ye1{bottom:968.563500px;}
.y3{bottom:978.012000px;}
.y14f{bottom:978.732000px;}
.ya4{bottom:981.615000px;}
.y2d{bottom:992.181000px;}
.y113{bottom:1000.633500px;}
.y61{bottom:1003.384500px;}
.ya3{bottom:1006.267500px;}
.y2c{bottom:1016.833500px;}
.y112{bottom:1025.286000px;}
.y2{bottom:1027.797000px;}
.y60{bottom:1028.037000px;}
.ya2{bottom:1030.920000px;}
.y2b{bottom:1041.486000px;}
.y111{bottom:1049.938500px;}
.y5f{bottom:1052.689500px;}
.ya1{bottom:1055.574000px;}
.y2a{bottom:1066.138500px;}
.y1{bottom:1067.676000px;}
.y110{bottom:1074.591000px;}
.y5e{bottom:1077.342000px;}
.ya0{bottom:1080.226500px;}
.y29{bottom:1090.791000px;}
.y10f{bottom:1099.243500px;}
.y9f{bottom:1104.879000px;}
.y28{bottom:1115.445000px;}
.y27{bottom:1140.097500px;}
.hb{height:31.848520px;}
.h5{height:41.783144px;}
.h4{height:44.329882px;}
.ha{height:44.705492px;}
.h6{height:44.891476px;}
.hc{height:45.490947px;}
.h8{height:49.156405px;}
.h9{height:50.283571px;}
.h3{height:50.642227px;}
.h7{height:60.426194px;}
.h2{height:77.469300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:103.858500px;}
.xf{left:105.171000px;}
.xb{left:106.299000px;}
.x11{left:126.369000px;}
.x1{left:128.020500px;}
.x2e{left:129.148500px;}
.x2c{left:130.492500px;}
.xe{left:131.704500px;}
.x17{left:136.065000px;}
.x10{left:141.798000px;}
.xa{left:146.208000px;}
.x9{left:147.208500px;}
.x14{left:155.034000px;}
.x8{left:169.618500px;}
.x1f{left:208.042500px;}
.x12{left:228.250500px;}
.x1c{left:234.820500px;}
.x13{left:263.430000px;}
.x1d{left:269.049000px;}
.x2{left:278.898000px;}
.x28{left:307.744500px;}
.x18{left:321.732000px;}
.x1e{left:325.480500px;}
.x20{left:330.493500px;}
.x29{left:342.951000px;}
.x4{left:354.615000px;}
.x5{left:358.813500px;}
.x26{left:362.766000px;}
.x3{left:368.380500px;}
.x19{left:371.050500px;}
.x6{left:395.230500px;}
.x27{left:397.977000px;}
.x7{left:413.818500px;}
.x21{left:438.321000px;}
.xd{left:442.389000px;}
.x2a{left:455.049000px;}
.x2b{left:490.248000px;}
.x2d{left:521.887500px;}
.x2f{left:546.943500px;}
.x24{left:548.316000px;}
.x25{left:583.507500px;}
.x22{left:657.109500px;}
.x23{left:664.206000px;}
.x1a{left:671.797500px;}
.x15{left:679.507500px;}
.x1b{left:707.578500px;}
.x16{left:713.625000px;}
.x30{left:785.202000px;}
@media print{
.v1{vertical-align:-9.482667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.001908pt;}
.ls7{letter-spacing:2.653258pt;}
.ls9{letter-spacing:2.656426pt;}
.ls8{letter-spacing:2.658591pt;}
.lsb{letter-spacing:19.283865pt;}
.lsa{letter-spacing:19.289199pt;}
.ls5{letter-spacing:23.290899pt;}
.ls2{letter-spacing:26.383970pt;}
.ls3{letter-spacing:27.124649pt;}
.ls4{letter-spacing:28.356605pt;}
.ls1{letter-spacing:28.408893pt;}
.ws31{word-spacing:-29.504025pt;}
.ws99{word-spacing:-28.928024pt;}
.ws68{word-spacing:-15.953468pt;}
.ws75{word-spacing:-14.964376pt;}
.ws73{word-spacing:-14.953210pt;}
.ws105{word-spacing:-14.906194pt;}
.wsa5{word-spacing:-14.557103pt;}
.ws8b{word-spacing:-14.324376pt;}
.wse8{word-spacing:-14.208012pt;}
.ws2a{word-spacing:-14.149830pt;}
.ws28{word-spacing:-14.091648pt;}
.ws8e{word-spacing:-13.975284pt;}
.wsc9{word-spacing:-13.917103pt;}
.ws55{word-spacing:-13.858921pt;}
.wsec{word-spacing:-13.684375pt;}
.ws95{word-spacing:-13.626193pt;}
.ws111{word-spacing:-13.568011pt;}
.ws2c{word-spacing:-13.393466pt;}
.wsa4{word-spacing:-13.335284pt;}
.wsbd{word-spacing:-13.160738pt;}
.wsbb{word-spacing:-13.102556pt;}
.ws23{word-spacing:-13.044375pt;}
.wsb0{word-spacing:-12.986193pt;}
.ws6f{word-spacing:-12.869829pt;}
.wsc4{word-spacing:-12.753465pt;}
.wsf6{word-spacing:-12.695283pt;}
.ws69{word-spacing:-12.689465pt;}
.wsc2{word-spacing:-12.637101pt;}
.wsc0{word-spacing:-12.578920pt;}
.ws12b{word-spacing:-12.520738pt;}
.ws115{word-spacing:-12.340374pt;}
.ws30{word-spacing:-12.288010pt;}
.wseb{word-spacing:-12.113465pt;}
.wsf7{word-spacing:-12.055283pt;}
.ws57{word-spacing:-11.948824pt;}
.ws97{word-spacing:-11.880737pt;}
.wsbe{word-spacing:-11.764373pt;}
.ws47{word-spacing:-11.648010pt;}
.wsc1{word-spacing:-11.525828pt;}
.ws9b{word-spacing:-11.473464pt;}
.ws60{word-spacing:-11.467646pt;}
.wsa0{word-spacing:-11.357100pt;}
.ws51{word-spacing:-11.240737pt;}
.wsc7{word-spacing:-11.182555pt;}
.wsa3{word-spacing:-11.124373pt;}
.ws6c{word-spacing:-11.066191pt;}
.ws103{word-spacing:-11.008009pt;}
.ws48{word-spacing:-10.949827pt;}
.ws119{word-spacing:-10.891645pt;}
.ws45{word-spacing:-10.833464pt;}
.ws94{word-spacing:-10.775282pt;}
.ws6a{word-spacing:-10.653100pt;}
.ws61{word-spacing:-10.600736pt;}
.ws1e{word-spacing:-10.542554pt;}
.ws37{word-spacing:-10.484372pt;}
.ws4a{word-spacing:-10.426191pt;}
.wse5{word-spacing:-10.368009pt;}
.wsa8{word-spacing:-10.362190pt;}
.ws25{word-spacing:-10.309827pt;}
.wscb{word-spacing:-10.251645pt;}
.ws1c{word-spacing:-10.193463pt;}
.ws120{word-spacing:-10.187645pt;}
.ws46{word-spacing:-10.135281pt;}
.ws10b{word-spacing:-10.085343pt;}
.wsb4{word-spacing:-10.077099pt;}
.ws56{word-spacing:-10.018917pt;}
.ws4c{word-spacing:-9.960736pt;}
.ws11a{word-spacing:-9.954917pt;}
.ws1a{word-spacing:-9.902554pt;}
.ws44{word-spacing:-9.896736pt;}
.ws8c{word-spacing:-9.891332pt;}
.ws19{word-spacing:-9.844372pt;}
.ws1b{word-spacing:-9.786190pt;}
.ws87{word-spacing:-9.776299pt;}
.wsf3{word-spacing:-9.761044pt;}
.ws78{word-spacing:-9.742367pt;}
.ws36{word-spacing:-9.728008pt;}
.ws124{word-spacing:-9.670756pt;}
.ws129{word-spacing:-9.670732pt;}
.ws126{word-spacing:-9.670332pt;}
.ws1f{word-spacing:-9.669826pt;}
.ws116{word-spacing:-9.649196pt;}
.wsd4{word-spacing:-9.644708pt;}
.ws125{word-spacing:-9.644231pt;}
.ws76{word-spacing:-9.619438pt;}
.ws38{word-spacing:-9.611924pt;}
.ws22{word-spacing:-9.611644pt;}
.ws20{word-spacing:-9.553463pt;}
.ws49{word-spacing:-9.547644pt;}
.ws3c{word-spacing:-9.523082pt;}
.wsa6{word-spacing:-9.502809pt;}
.ws3e{word-spacing:-9.495281pt;}
.ws11f{word-spacing:-9.489462pt;}
.ws70{word-spacing:-9.472555pt;}
.ws27{word-spacing:-9.437099pt;}
.wse9{word-spacing:-9.435771pt;}
.wse4{word-spacing:-9.431281pt;}
.ws18{word-spacing:-9.378917pt;}
.ws74{word-spacing:-9.363626pt;}
.ws32{word-spacing:-9.320735pt;}
.ws10c{word-spacing:-9.314917pt;}
.ws26{word-spacing:-9.262553pt;}
.ws9f{word-spacing:-9.256735pt;}
.wsb{word-spacing:-9.239979pt;}
.ws62{word-spacing:-9.204371pt;}
.ws6d{word-spacing:-9.198553pt;}
.ws11{word-spacing:-9.186846pt;}
.ws24{word-spacing:-9.146189pt;}
.ws5e{word-spacing:-9.140371pt;}
.wse{word-spacing:-9.133712pt;}
.wsb2{word-spacing:-9.088008pt;}
.ws67{word-spacing:-9.082189pt;}
.ws7b{word-spacing:-9.029826pt;}
.ws7c{word-spacing:-9.024008pt;}
.ws4{word-spacing:-8.974310pt;}
.wsd7{word-spacing:-8.971644pt;}
.ws5d{word-spacing:-8.965826pt;}
.ws7d{word-spacing:-8.913462pt;}
.wse6{word-spacing:-8.907644pt;}
.ws9{word-spacing:-8.868042pt;}
.ws2b{word-spacing:-8.855280pt;}
.ws5c{word-spacing:-8.849462pt;}
.wsa{word-spacing:-8.814908pt;}
.wsb5{word-spacing:-8.797098pt;}
.ws39{word-spacing:-8.791280pt;}
.ws14{word-spacing:-8.761775pt;}
.wsc6{word-spacing:-8.733098pt;}
.wsf0{word-spacing:-8.680735pt;}
.ws71{word-spacing:-8.674916pt;}
.wsfd{word-spacing:-8.622553pt;}
.wsea{word-spacing:-8.616734pt;}
.ws3{word-spacing:-8.602373pt;}
.ws96{word-spacing:-8.564371pt;}
.ws33{word-spacing:-8.558553pt;}
.ws12{word-spacing:-8.549239pt;}
.ws29{word-spacing:-8.532513pt;}
.wse0{word-spacing:-8.506189pt;}
.ws6b{word-spacing:-8.500371pt;}
.ws6e{word-spacing:-8.448007pt;}
.wsd3{word-spacing:-8.442189pt;}
.wsc{word-spacing:-8.389838pt;}
.ws63{word-spacing:-8.384007pt;}
.ws4e{word-spacing:-8.331643pt;}
.wsb1{word-spacing:-8.321343pt;}
.wsf4{word-spacing:-8.273461pt;}
.wsbf{word-spacing:-8.215280pt;}
.ws112{word-spacing:-8.151280pt;}
.wsd{word-spacing:-8.071034pt;}
.ws3f{word-spacing:-8.040734pt;}
.ws85{word-spacing:-7.982552pt;}
.ws35{word-spacing:-7.924370pt;}
.ws42{word-spacing:-7.866188pt;}
.ws40{word-spacing:-7.840658pt;}
.ws4d{word-spacing:-7.808007pt;}
.ws5{word-spacing:-7.805365pt;}
.ws8a{word-spacing:-7.749825pt;}
.ws11b{word-spacing:-7.691643pt;}
.ws64{word-spacing:-7.627643pt;}
.ws80{word-spacing:-7.588159pt;}
.ws82{word-spacing:-7.575279pt;}
.ws43{word-spacing:-7.517097pt;}
.ws90{word-spacing:-7.473937pt;}
.ws92{word-spacing:-7.458915pt;}
.ws12a{word-spacing:-7.456503pt;}
.ws5b{word-spacing:-7.453097pt;}
.ws7{word-spacing:-7.433428pt;}
.wsab{word-spacing:-7.400733pt;}
.ws89{word-spacing:-7.342552pt;}
.ws41{word-spacing:-7.278552pt;}
.ws84{word-spacing:-7.226188pt;}
.wsca{word-spacing:-7.109824pt;}
.wsb7{word-spacing:-7.051642pt;}
.ws127{word-spacing:-6.993460pt;}
.wse7{word-spacing:-6.935279pt;}
.ws34{word-spacing:-6.877097pt;}
.wsc8{word-spacing:-6.859938pt;}
.wsa1{word-spacing:-6.818915pt;}
.ws3b{word-spacing:-6.702551pt;}
.ws58{word-spacing:-6.586187pt;}
.wsb8{word-spacing:-6.522187pt;}
.ws21{word-spacing:-6.469824pt;}
.ws128{word-spacing:-6.464005pt;}
.ws118{word-spacing:-6.411642pt;}
.wsce{word-spacing:-6.353460pt;}
.ws52{word-spacing:-6.295278pt;}
.wse1{word-spacing:-6.237096pt;}
.ws13{word-spacing:-6.158215pt;}
.ws72{word-spacing:-6.121018pt;}
.ws9d{word-spacing:-6.083153pt;}
.ws3a{word-spacing:-6.062551pt;}
.wsad{word-spacing:-6.004369pt;}
.ws53{word-spacing:-5.998550pt;}
.wscf{word-spacing:-5.946187pt;}
.wsc5{word-spacing:-5.888005pt;}
.ws4f{word-spacing:-5.831956pt;}
.ws65{word-spacing:-5.829823pt;}
.wsaf{word-spacing:-5.821158pt;}
.wsaa{word-spacing:-5.813446pt;}
.ws123{word-spacing:-5.810675pt;}
.ws79{word-spacing:-5.771641pt;}
.ws59{word-spacing:-5.713459pt;}
.ws3d{word-spacing:-5.680435pt;}
.ws4b{word-spacing:-5.668641pt;}
.ws9e{word-spacing:-5.666672pt;}
.ws88{word-spacing:-5.615469pt;}
.ws5f{word-spacing:-5.591277pt;}
.ws8d{word-spacing:-5.567267pt;}
.ws98{word-spacing:-5.538914pt;}
.wsd0{word-spacing:-5.527360pt;}
.wsfc{word-spacing:-5.512904pt;}
.ws10a{word-spacing:-5.464388pt;}
.wsd1{word-spacing:-5.441271pt;}
.wsda{word-spacing:-5.431971pt;}
.ws77{word-spacing:-5.430019pt;}
.wsfb{word-spacing:-5.426968pt;}
.wsd5{word-spacing:-5.422550pt;}
.ws66{word-spacing:-5.416732pt;}
.ws50{word-spacing:-5.414064pt;}
.wsd9{word-spacing:-5.306186pt;}
.ws5a{word-spacing:-5.300368pt;}
.ws86{word-spacing:-5.269041pt;}
.wsfa{word-spacing:-5.261619pt;}
.wsa7{word-spacing:-5.248004pt;}
.wsde{word-spacing:-5.189823pt;}
.wsd8{word-spacing:-5.183723pt;}
.ws10d{word-spacing:-5.164143pt;}
.wsdf{word-spacing:-5.131641pt;}
.wsdc{word-spacing:-5.123961pt;}
.ws2d{word-spacing:-5.073459pt;}
.wsd6{word-spacing:-5.067641pt;}
.ws100{word-spacing:-5.067435pt;}
.wsdb{word-spacing:-5.067421pt;}
.wsac{word-spacing:-5.038244pt;}
.ws83{word-spacing:-5.015277pt;}
.wsdd{word-spacing:-4.983259pt;}
.ws106{word-spacing:-4.965248pt;}
.wsa2{word-spacing:-4.957095pt;}
.wse3{word-spacing:-4.776731pt;}
.wse2{word-spacing:-4.743852pt;}
.ws93{word-spacing:-4.724906pt;}
.wsb3{word-spacing:-4.599726pt;}
.ws117{word-spacing:-4.491640pt;}
.wsa9{word-spacing:-4.427630pt;}
.ws10f{word-spacing:-4.375276pt;}
.ws11c{word-spacing:-4.317095pt;}
.wsb9{word-spacing:-4.299174pt;}
.wsd2{word-spacing:-4.206632pt;}
.ws110{word-spacing:-4.078549pt;}
.ws9c{word-spacing:-3.909821pt;}
.ws7e{word-spacing:-3.851640pt;}
.wsc3{word-spacing:-3.677094pt;}
.ws7f{word-spacing:-3.613094pt;}
.ws10e{word-spacing:-3.502548pt;}
.ws81{word-spacing:-3.458115pt;}
.ws11d{word-spacing:-3.444367pt;}
.ws2e{word-spacing:-3.386185pt;}
.ws107{word-spacing:-3.269821pt;}
.ws54{word-spacing:-3.153457pt;}
.ws113{word-spacing:-3.037093pt;}
.ws109{word-spacing:-3.031275pt;}
.ws8{word-spacing:-3.023317pt;}
.ws114{word-spacing:-2.856730pt;}
.wsae{word-spacing:-2.714393pt;}
.wsf8{word-spacing:-2.688002pt;}
.ws121{word-spacing:-2.455275pt;}
.ws122{word-spacing:-2.333093pt;}
.wsee{word-spacing:-2.222547pt;}
.ws91{word-spacing:-2.141508pt;}
.wsed{word-spacing:-2.040978pt;}
.ws6{word-spacing:-1.960640pt;}
.ws9a{word-spacing:-1.931638pt;}
.wsf5{word-spacing:-1.640193pt;}
.wsb6{word-spacing:-1.524365pt;}
.wsff{word-spacing:-1.214828pt;}
.ws7a{word-spacing:-0.709819pt;}
.wsf2{word-spacing:-0.619420pt;}
.ws8f{word-spacing:-0.593455pt;}
.ws102{word-spacing:-0.444289pt;}
.wsfe{word-spacing:-0.202421pt;}
.ws11e{word-spacing:-0.076513pt;}
.ws2{word-spacing:-0.063761pt;}
.wsbc{word-spacing:-0.058182pt;}
.wsf{word-spacing:-0.053134pt;}
.wsba{word-spacing:-0.042507pt;}
.ws1d{word-spacing:0.000000pt;}
.ws101{word-spacing:0.120087pt;}
.ws16{word-spacing:0.589786pt;}
.ws2f{word-spacing:0.774772pt;}
.ws108{word-spacing:2.315146pt;}
.ws104{word-spacing:3.485806pt;}
.wsf1{word-spacing:3.714539pt;}
.wscd{word-spacing:5.110533pt;}
.wsf9{word-spacing:6.224712pt;}
.wscc{word-spacing:9.658190pt;}
.ws10{word-spacing:18.809389pt;}
.ws1{word-spacing:20.722347pt;}
.wsef{word-spacing:27.927269pt;}
.ws17{word-spacing:28.003782pt;}
.ws0{word-spacing:28.646426pt;}
.ws15{word-spacing:38.755184pt;}
._23{margin-left:-7.115715pt;}
._11{margin-left:-5.816441pt;}
._6{margin-left:-4.356977pt;}
._15{margin-left:-3.292611pt;}
._1{margin-left:-2.387202pt;}
._3{margin-left:-1.487748pt;}
._5{width:1.487748pt;}
._0{width:2.387202pt;}
._f{width:4.066255pt;}
._22{width:5.488257pt;}
._1f{width:15.130256pt;}
._12{width:16.580086pt;}
._9{width:18.224916pt;}
._14{width:19.129588pt;}
._10{width:20.074490pt;}
._19{width:21.363417pt;}
._2{width:22.422492pt;}
._4{width:23.333411pt;}
._a{width:24.809694pt;}
._c{width:25.978639pt;}
._7{width:27.257674pt;}
._1a{width:28.218205pt;}
._13{width:29.408569pt;}
._1b{width:30.605407pt;}
._18{width:31.606916pt;}
._b{width:32.882220pt;}
._17{width:34.250564pt;}
._21{width:35.199292pt;}
._e{width:37.338377pt;}
._20{width:39.137414pt;}
._1d{width:40.565235pt;}
._24{width:42.240035pt;}
._8{width:45.000563pt;}
._25{width:46.105019pt;}
._1c{width:52.829135pt;}
._1e{width:66.501874pt;}
._16{width:71.731200pt;}
._d{width:84.164373pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:54.637333pt;}
.y25{bottom:94.488000pt;}
.y14e{bottom:95.960000pt;}
.yda{bottom:99.312000pt;}
.yfd{bottom:102.501333pt;}
.y81{bottom:104.489333pt;}
.y134{bottom:105.536000pt;}
.yee{bottom:106.486667pt;}
.y19b{bottom:106.917333pt;}
.ye0{bottom:107.138667pt;}
.yc4{bottom:111.834667pt;}
.y50{bottom:114.965333pt;}
.y24{bottom:116.401333pt;}
.y14d{bottom:117.873333pt;}
.yd9{bottom:121.226667pt;}
.yfc{bottom:124.414667pt;}
.y80{bottom:126.402667pt;}
.y133{bottom:127.450667pt;}
.yed{bottom:128.400000pt;}
.y19a{bottom:128.830667pt;}
.ydf{bottom:129.052000pt;}
.yc3{bottom:133.748000pt;}
.y16c{bottom:136.369333pt;}
.y4f{bottom:136.878667pt;}
.y23{bottom:138.314667pt;}
.yd8{bottom:143.140000pt;}
.y7f{bottom:148.316000pt;}
.y14c{bottom:149.178667pt;}
.y5d{bottom:149.302667pt;}
.y132{bottom:149.364000pt;}
.y9e{bottom:150.313333pt;}
.y199{bottom:150.745333pt;}
.yde{bottom:150.966667pt;}
.yc2{bottom:155.661333pt;}
.yfb{bottom:158.282667pt;}
.y4e{bottom:158.793333pt;}
.y22{bottom:160.229333pt;}
.yd7{bottom:165.053333pt;}
.y7e{bottom:170.229333pt;}
.y5c{bottom:171.216000pt;}
.y131{bottom:171.277333pt;}
.y9d{bottom:172.226667pt;}
.y198{bottom:172.658667pt;}
.ydd{bottom:172.880000pt;}
.yc1{bottom:177.574667pt;}
.yfa{bottom:180.196000pt;}
.y4d{bottom:180.706667pt;}
.y21{bottom:182.142667pt;}
.yd6{bottom:186.966667pt;}
.y14b{bottom:191.440000pt;}
.y7d{bottom:192.142667pt;}
.y5b{bottom:193.129333pt;}
.y130{bottom:193.190667pt;}
.y9c{bottom:194.140000pt;}
.y197{bottom:194.572000pt;}
.ydc{bottom:194.793333pt;}
.yc0{bottom:199.488000pt;}
.y16b{bottom:202.110667pt;}
.y4c{bottom:202.620000pt;}
.y186{bottom:204.056000pt;}
.yd5{bottom:208.880000pt;}
.y14a{bottom:213.354667pt;}
.y7c{bottom:214.057333pt;}
.yf9{bottom:214.065333pt;}
.y5a{bottom:215.042667pt;}
.y12f{bottom:215.104000pt;}
.y9b{bottom:216.053333pt;}
.y196{bottom:216.485333pt;}
.y105{bottom:216.706667pt;}
.y20{bottom:218.456000pt;}
.y16a{bottom:224.024000pt;}
.y4b{bottom:224.533333pt;}
.y1a3{bottom:225.969333pt;}
.ydb{bottom:226.098667pt;}
.ybf{bottom:230.793333pt;}
.y149{bottom:235.268000pt;}
.y7b{bottom:235.970667pt;}
.yf8{bottom:235.978667pt;}
.y12e{bottom:237.017333pt;}
.y185{bottom:237.308000pt;}
.y9a{bottom:237.966667pt;}
.y195{bottom:238.398667pt;}
.y104{bottom:238.620000pt;}
.y169{bottom:245.937333pt;}
.y4a{bottom:246.446667pt;}
.y1a2{bottom:247.882667pt;}
.y59{bottom:247.942667pt;}
.yd4{bottom:252.706667pt;}
.y148{bottom:257.181333pt;}
.y12d{bottom:258.930667pt;}
.y184{bottom:259.221333pt;}
.y99{bottom:259.880000pt;}
.y194{bottom:260.312000pt;}
.y103{bottom:260.533333pt;}
.y168{bottom:267.850667pt;}
.y49{bottom:268.360000pt;}
.y1f{bottom:268.789333pt;}
.y1a1{bottom:269.796000pt;}
.yf7{bottom:269.848000pt;}
.y58{bottom:269.856000pt;}
.ybe{bottom:273.056000pt;}
.y7a{bottom:273.824000pt;}
.y147{bottom:279.094667pt;}
.y12c{bottom:280.845333pt;}
.y183{bottom:281.134667pt;}
.y98{bottom:281.794667pt;}
.y193{bottom:282.225333pt;}
.y102{bottom:282.446667pt;}
.yd3{bottom:284.012000pt;}
.y1e{bottom:288.125333pt;}
.y167{bottom:289.764000pt;}
.y48{bottom:290.273333pt;}
.y1a0{bottom:291.709333pt;}
.yf6{bottom:291.761333pt;}
.y57{bottom:291.769333pt;}
.ybd{bottom:294.969333pt;}
.y79{bottom:295.737333pt;}
.y12b{bottom:302.758667pt;}
.y182{bottom:303.048000pt;}
.yec{bottom:303.708000pt;}
.y192{bottom:304.140000pt;}
.y101{bottom:304.361333pt;}
.y1d{bottom:307.461333pt;}
.y146{bottom:310.400000pt;}
.y166{bottom:311.677333pt;}
.y47{bottom:312.186667pt;}
.y19f{bottom:313.622667pt;}
.y56{bottom:313.684000pt;}
.ybc{bottom:316.882667pt;}
.y78{bottom:317.650667pt;}
.y97{bottom:319.648000pt;}
.y12a{bottom:324.672000pt;}
.y181{bottom:324.961333pt;}
.yeb{bottom:325.621333pt;}
.yf5{bottom:325.629333pt;}
.y191{bottom:326.053333pt;}
.yd2{bottom:326.274667pt;}
.y1c{bottom:326.796000pt;}
.y165{bottom:333.590667pt;}
.y46{bottom:334.101333pt;}
.y19e{bottom:335.537333pt;}
.ybb{bottom:338.796000pt;}
.y77{bottom:339.564000pt;}
.y96{bottom:341.561333pt;}
.y1b{bottom:346.132000pt;}
.y55{bottom:346.584000pt;}
.y180{bottom:346.876000pt;}
.yea{bottom:347.534667pt;}
.yf4{bottom:347.542667pt;}
.y190{bottom:347.966667pt;}
.yd1{bottom:348.188000pt;}
.y145{bottom:352.661333pt;}
.y164{bottom:355.505333pt;}
.y129{bottom:355.977333pt;}
.y45{bottom:356.014667pt;}
.y19d{bottom:357.450667pt;}
.yba{bottom:360.709333pt;}
.y76{bottom:361.478667pt;}
.y95{bottom:363.474667pt;}
.y1a{bottom:365.466667pt;}
.y54{bottom:368.497333pt;}
.ye9{bottom:369.448000pt;}
.yf3{bottom:369.457333pt;}
.y18f{bottom:369.880000pt;}
.yd0{bottom:370.101333pt;}
.y144{bottom:374.574667pt;}
.y163{bottom:377.418667pt;}
.y44{bottom:377.928000pt;}
.y1a6{bottom:379.364000pt;}
.y17f{bottom:380.128000pt;}
.yb9{bottom:382.622667pt;}
.y19{bottom:384.802667pt;}
.y94{bottom:385.388000pt;}
.y53{bottom:390.410667pt;}
.yf2{bottom:391.370667pt;}
.y18e{bottom:391.793333pt;}
.ycf{bottom:392.014667pt;}
.y19c{bottom:393.764000pt;}
.y75{bottom:395.346667pt;}
.y143{bottom:396.489333pt;}
.y128{bottom:398.882667pt;}
.y162{bottom:399.332000pt;}
.y43{bottom:399.841333pt;}
.y1a5{bottom:401.277333pt;}
.y17e{bottom:402.041333pt;}
.y18{bottom:404.138667pt;}
.yb8{bottom:404.537333pt;}
.ye8{bottom:407.301333pt;}
.yf1{bottom:413.284000pt;}
.y18d{bottom:413.706667pt;}
.yce{bottom:413.928000pt;}
.y74{bottom:417.260000pt;}
.y142{bottom:418.402667pt;}
.y93{bottom:419.257333pt;}
.y127{bottom:420.797333pt;}
.y161{bottom:421.245333pt;}
.y52{bottom:421.716000pt;}
.y42{bottom:421.754667pt;}
.y17{bottom:423.473333pt;}
.y17d{bottom:423.954667pt;}
.yb7{bottom:426.450667pt;}
.ye7{bottom:429.216000pt;}
.yf0{bottom:435.197333pt;}
.y18c{bottom:435.620000pt;}
.ycd{bottom:435.841333pt;}
.y1a4{bottom:437.590667pt;}
.y73{bottom:439.173333pt;}
.y141{bottom:440.316000pt;}
.y92{bottom:441.170667pt;}
.y126{bottom:442.710667pt;}
.y16{bottom:442.809333pt;}
.y160{bottom:443.158667pt;}
.y41{bottom:443.668000pt;}
.y17c{bottom:445.868000pt;}
.yb6{bottom:448.364000pt;}
.ye6{bottom:451.129333pt;}
.ycc{bottom:457.754667pt;}
.y51{bottom:458.674667pt;}
.y72{bottom:461.086667pt;}
.y15{bottom:462.144000pt;}
.y91{bottom:463.084000pt;}
.y125{bottom:464.624000pt;}
.y15f{bottom:465.072000pt;}
.y40{bottom:465.581333pt;}
.yef{bottom:466.502667pt;}
.y17b{bottom:467.781333pt;}
.yb5{bottom:470.277333pt;}
.y140{bottom:471.621333pt;}
.y18b{bottom:471.934667pt;}
.ye5{bottom:473.042667pt;}
.ycb{bottom:479.669333pt;}
.y14{bottom:481.480000pt;}
.y71{bottom:483.001333pt;}
.y90{bottom:484.997333pt;}
.y124{bottom:486.537333pt;}
.y15e{bottom:486.985333pt;}
.y3f{bottom:487.496000pt;}
.yb4{bottom:492.190667pt;}
.ye4{bottom:494.956000pt;}
.y13{bottom:500.816000pt;}
.y17a{bottom:501.033333pt;}
.yca{bottom:501.582667pt;}
.y8f{bottom:506.910667pt;}
.y123{bottom:508.450667pt;}
.y15d{bottom:508.898667pt;}
.y3e{bottom:509.409333pt;}
.y13f{bottom:513.882667pt;}
.yb3{bottom:514.104000pt;}
.y70{bottom:516.869333pt;}
.y12{bottom:520.150667pt;}
.y18a{bottom:522.850667pt;}
.y179{bottom:522.948000pt;}
.yc9{bottom:523.496000pt;}
.y8e{bottom:528.824000pt;}
.y122{bottom:530.364000pt;}
.y15c{bottom:530.813333pt;}
.y3d{bottom:531.322667pt;}
.y13e{bottom:535.796000pt;}
.yb2{bottom:536.017333pt;}
.y6f{bottom:538.782667pt;}
.y11{bottom:539.486667pt;}
.y189{bottom:544.765333pt;}
.y178{bottom:544.861333pt;}
.yc8{bottom:545.409333pt;}
.y8d{bottom:550.738667pt;}
.y121{bottom:552.277333pt;}
.y3c{bottom:553.236000pt;}
.y13d{bottom:557.709333pt;}
.yb1{bottom:557.930667pt;}
.y10{bottom:558.821333pt;}
.y6e{bottom:560.696000pt;}
.y15b{bottom:562.117333pt;}
.y188{bottom:566.678667pt;}
.y177{bottom:566.774667pt;}
.yc7{bottom:567.322667pt;}
.y8c{bottom:572.652000pt;}
.y120{bottom:574.192000pt;}
.y3b{bottom:575.149333pt;}
.yf{bottom:578.157333pt;}
.y13c{bottom:579.624000pt;}
.yb0{bottom:579.845333pt;}
.y6d{bottom:582.609333pt;}
.y187{bottom:588.592000pt;}
.y176{bottom:588.688000pt;}
.yc6{bottom:589.236000pt;}
.y11f{bottom:596.105333pt;}
.y3a{bottom:597.062667pt;}
.ye{bottom:597.492000pt;}
.y13b{bottom:601.537333pt;}
.yaf{bottom:601.758667pt;}
.y15a{bottom:605.024000pt;}
.y8b{bottom:610.505333pt;}
.y175{bottom:610.601333pt;}
.y100{bottom:611.149333pt;}
.yd{bottom:616.828000pt;}
.y11e{bottom:618.018667pt;}
.y39{bottom:618.976000pt;}
.y6c{bottom:620.464000pt;}
.yc5{bottom:620.541333pt;}
.y13a{bottom:623.450667pt;}
.yae{bottom:623.672000pt;}
.y159{bottom:626.937333pt;}
.y8a{bottom:632.418667pt;}
.y10e{bottom:633.064000pt;}
.yc{bottom:636.164000pt;}
.y11d{bottom:639.932000pt;}
.y38{bottom:640.889333pt;}
.y6b{bottom:642.377333pt;}
.yff{bottom:642.454667pt;}
.y174{bottom:643.853333pt;}
.yad{bottom:645.585333pt;}
.y158{bottom:648.852000pt;}
.y89{bottom:654.332000pt;}
.y139{bottom:654.756000pt;}
.y10d{bottom:654.977333pt;}
.yb{bottom:655.498667pt;}
.y11c{bottom:661.845333pt;}
.y37{bottom:662.804000pt;}
.y6a{bottom:664.290667pt;}
.y173{bottom:665.766667pt;}
.yac{bottom:667.498667pt;}
.y157{bottom:670.765333pt;}
.ya{bottom:674.834667pt;}
.y88{bottom:676.245333pt;}
.y10c{bottom:676.890667pt;}
.y11b{bottom:683.758667pt;}
.y36{bottom:684.717333pt;}
.y69{bottom:686.204000pt;}
.yab{bottom:689.412000pt;}
.y156{bottom:692.678667pt;}
.y9{bottom:694.169333pt;}
.y138{bottom:697.017333pt;}
.y87{bottom:698.160000pt;}
.y10b{bottom:698.804000pt;}
.y172{bottom:702.718667pt;}
.y11a{bottom:705.672000pt;}
.y35{bottom:706.630667pt;}
.y68{bottom:708.117333pt;}
.yaa{bottom:711.325333pt;}
.y8{bottom:713.505333pt;}
.y155{bottom:714.592000pt;}
.y137{bottom:718.930667pt;}
.y86{bottom:720.073333pt;}
.y10a{bottom:720.717333pt;}
.y119{bottom:727.585333pt;}
.y34{bottom:728.544000pt;}
.y67{bottom:730.030667pt;}
.ya9{bottom:733.240000pt;}
.y171{bottom:736.286667pt;}
.y7{bottom:737.433333pt;}
.y85{bottom:741.986667pt;}
.y109{bottom:742.630667pt;}
.y154{bottom:748.461333pt;}
.y118{bottom:749.500000pt;}
.y136{bottom:750.236000pt;}
.y33{bottom:750.457333pt;}
.y66{bottom:751.945333pt;}
.ya8{bottom:755.153333pt;}
.y170{bottom:758.200000pt;}
.y84{bottom:763.900000pt;}
.y108{bottom:764.544000pt;}
.y153{bottom:770.374667pt;}
.y117{bottom:771.413333pt;}
.y32{bottom:772.370667pt;}
.y65{bottom:773.858667pt;}
.ya7{bottom:777.066667pt;}
.y83{bottom:785.813333pt;}
.y107{bottom:786.457333pt;}
.y135{bottom:787.194667pt;}
.y6{bottom:790.692000pt;}
.y16f{bottom:791.768000pt;}
.y152{bottom:792.288000pt;}
.y116{bottom:793.326667pt;}
.y31{bottom:794.284000pt;}
.y64{bottom:795.772000pt;}
.ya6{bottom:798.980000pt;}
.ye3{bottom:807.726667pt;}
.y151{bottom:814.201333pt;}
.y115{bottom:815.240000pt;}
.y30{bottom:816.198667pt;}
.y82{bottom:817.118667pt;}
.y63{bottom:817.685333pt;}
.y106{bottom:817.762667pt;}
.y5{bottom:824.228000pt;}
.y16e{bottom:828.720000pt;}
.ye2{bottom:829.640000pt;}
.ya5{bottom:830.285333pt;}
.y150{bottom:836.114667pt;}
.y2f{bottom:838.112000pt;}
.y114{bottom:846.545333pt;}
.y4{bottom:846.786667pt;}
.y62{bottom:848.990667pt;}
.y16d{bottom:850.633333pt;}
.yfe{bottom:857.842667pt;}
.y2e{bottom:860.025333pt;}
.ye1{bottom:860.945333pt;}
.y3{bottom:869.344000pt;}
.y14f{bottom:869.984000pt;}
.ya4{bottom:872.546667pt;}
.y2d{bottom:881.938667pt;}
.y113{bottom:889.452000pt;}
.y61{bottom:891.897333pt;}
.ya3{bottom:894.460000pt;}
.y2c{bottom:903.852000pt;}
.y112{bottom:911.365333pt;}
.y2{bottom:913.597333pt;}
.y60{bottom:913.810667pt;}
.ya2{bottom:916.373333pt;}
.y2b{bottom:925.765333pt;}
.y111{bottom:933.278667pt;}
.y5f{bottom:935.724000pt;}
.ya1{bottom:938.288000pt;}
.y2a{bottom:947.678667pt;}
.y1{bottom:949.045333pt;}
.y110{bottom:955.192000pt;}
.y5e{bottom:957.637333pt;}
.ya0{bottom:960.201333pt;}
.y29{bottom:969.592000pt;}
.y10f{bottom:977.105333pt;}
.y9f{bottom:982.114667pt;}
.y28{bottom:991.506667pt;}
.y27{bottom:1013.420000pt;}
.hb{height:28.309795pt;}
.h5{height:37.140573pt;}
.h4{height:39.404339pt;}
.ha{height:39.738215pt;}
.h6{height:39.903534pt;}
.hc{height:40.436397pt;}
.h8{height:43.694582pt;}
.h9{height:44.696508pt;}
.h3{height:45.015313pt;}
.h7{height:53.712173pt;}
.h2{height:68.861600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:92.318667pt;}
.xf{left:93.485333pt;}
.xb{left:94.488000pt;}
.x11{left:112.328000pt;}
.x1{left:113.796000pt;}
.x2e{left:114.798667pt;}
.x2c{left:115.993333pt;}
.xe{left:117.070667pt;}
.x17{left:120.946667pt;}
.x10{left:126.042667pt;}
.xa{left:129.962667pt;}
.x9{left:130.852000pt;}
.x14{left:137.808000pt;}
.x8{left:150.772000pt;}
.x1f{left:184.926667pt;}
.x12{left:202.889333pt;}
.x1c{left:208.729333pt;}
.x13{left:234.160000pt;}
.x1d{left:239.154667pt;}
.x2{left:247.909333pt;}
.x28{left:273.550667pt;}
.x18{left:285.984000pt;}
.x1e{left:289.316000pt;}
.x20{left:293.772000pt;}
.x29{left:304.845333pt;}
.x4{left:315.213333pt;}
.x5{left:318.945333pt;}
.x26{left:322.458667pt;}
.x3{left:327.449333pt;}
.x19{left:329.822667pt;}
.x6{left:351.316000pt;}
.x27{left:353.757333pt;}
.x7{left:367.838667pt;}
.x21{left:389.618667pt;}
.xd{left:393.234667pt;}
.x2a{left:404.488000pt;}
.x2b{left:435.776000pt;}
.x2d{left:463.900000pt;}
.x2f{left:486.172000pt;}
.x24{left:487.392000pt;}
.x25{left:518.673333pt;}
.x22{left:584.097333pt;}
.x23{left:590.405333pt;}
.x1a{left:597.153333pt;}
.x15{left:604.006667pt;}
.x1b{left:628.958667pt;}
.x16{left:634.333333pt;}
.x30{left:697.957333pt;}
}




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